From 596f52bdb260cd070571f4fa2f3ca0a5539017e6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 9 Sep 2015 14:33:58 -0700 Subject: [PATCH 001/460] Adds scaling variable alpha --- src/CurrentInjector.cpp | 4 +++- src/CurrentInjector.h | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/CurrentInjector.cpp b/src/CurrentInjector.cpp index a6f51df6..e5435057 100644 --- a/src/CurrentInjector.cpp +++ b/src/CurrentInjector.cpp @@ -35,6 +35,8 @@ CurrentInjector::CurrentInjector(NeuronGroup * target, string neuron_state_name, currents = auryn_vector_float_alloc(dst->get_vector_size()); auryn_vector_float_set_all( currents, initial_current ); + + alpha = dt; } @@ -53,7 +55,7 @@ CurrentInjector::~CurrentInjector() void CurrentInjector::propagate() { if ( dst->evolve_locally() ) { - auryn_vector_float_saxpy(dt, currents, target_vector); + auryn_vector_float_saxpy(alpha, currents, target_vector); } } diff --git a/src/CurrentInjector.h b/src/CurrentInjector.h index c3945da4..10eef3f5 100644 --- a/src/CurrentInjector.h +++ b/src/CurrentInjector.h @@ -58,6 +58,9 @@ class CurrentInjector : protected Monitor /*! Returns the lambda parameter of the pmf for Current. */ AurynFloat get_lambda(); + /*! Scale factor which should include dt and any respective resistance. */ + AurynFloat alpha; + protected: /*! The target NeuronGroup */ @@ -65,6 +68,7 @@ class CurrentInjector : protected Monitor public: + /*! Default Constructor * @param[target] Initializes all currents with this value * @param[initial_current] Initializes all currents with this value From 83147ce7ce322b79de5211827b89a8d84c901a9f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 16 Nov 2015 19:19:41 +0000 Subject: [PATCH 002/460] Introduces and auryn namespace Squashed commit of the following: commit f81bd1189dcacf4cf13570febb85691aed1ebd33 Author: Friedemann Zenke Date: Mon Nov 16 18:48:32 2015 +0000 Updates aube to new auryn namespace commit 69c7d4b3e7e5610329a67b5f61351a0923aea501 Author: Friedemann Zenke Date: Mon Nov 16 18:45:06 2015 +0000 Updates example simulations to auryn namespace commit 0441b05f9edf19e9ddc5d72ce90fbf7721cd6e69 Author: Friedemann Zenke Date: Mon Nov 16 17:11:32 2015 +0000 Adds two more sims commit aa92901a8208e5a63f652d8110eb42444a05d973 Author: Friedemann Zenke Date: Mon Nov 16 17:05:52 2015 +0000 Updates three more sims commit 81496939510e3fa318815c17ad49a7fc992b3d61 Author: Friedemann Zenke Date: Mon Nov 16 16:44:00 2015 +0000 Updates sim_background commit 338f212b3f2634b96653acc9ddddbe22b360db51 Author: Friedemann Zenke Date: Mon Nov 16 16:27:17 2015 +0000 Another backup commit 723d963e8d34ef7d3a744c3b02483f6ef6d4cbb0 Author: Friedemann Zenke Date: Mon Nov 16 16:01:11 2015 +0000 Making backup commit c91e7381dec059f4831f401497b61a2de8ad1adf Author: Friedemann Zenke Date: Mon Nov 16 16:00:57 2015 +0000 Making backup commit 85c5ff094f88eecf1c3b20748e6258f86bbb17b4 Author: Friedemann Zenke Date: Mon Nov 16 14:48:54 2015 +0000 Replaces a lot of statements to include auryn nsp --- examples/sim_background.cpp | 183 +++++------ examples/sim_bg_lowpass.cpp | 174 +++++----- examples/sim_bg_static.cpp | 48 +-- examples/sim_brunel2k.cpp | 64 ++-- examples/sim_brunel2k_pl.cpp | 16 +- examples/sim_coba_benchmark.cpp | 16 +- examples/sim_coba_binmon.cpp | 19 +- examples/sim_dense.cpp | 16 +- examples/sim_epsp.cpp | 2 +- examples/sim_epsp_stp.cpp | 2 +- examples/sim_isp_big.cpp | 20 +- examples/sim_isp_orig.cpp | 38 +-- examples/sim_poisson.cpp | 18 +- src/ABSConnection.cpp | 20 +- src/ABSConnection.h | 6 +- src/AIF2Group.cpp | 4 +- src/AIF2Group.h | 4 + src/AIFGroup.cpp | 4 +- src/AIFGroup.h | 3 + src/AdExGroup.cpp | 8 +- src/AdExGroup.h | 6 +- src/AmpaMonitor.cpp | 14 +- src/AmpaMonitor.h | 8 +- src/AuditoryBeepGroup.cpp | 12 +- src/AuditoryBeepGroup.h | 4 +- src/BinarySpikeMonitor.cpp | 22 +- src/BinarySpikeMonitor.h | 15 +- src/Checker.cpp | 2 + src/Checker.h | 4 +- src/ComplexMatrix.h | 8 +- src/Connection.cpp | 8 +- src/Connection.h | 17 +- src/CorrelatedPoissonGroup.cpp | 34 +- src/CorrelatedPoissonGroup.h | 4 +- src/CubaIFGroup.cpp | 8 +- src/CubaIFGroup.h | 7 +- src/CurrentInjector.cpp | 8 +- src/CurrentInjector.h | 8 +- src/DelayedSpikeMonitor.cpp | 16 +- src/DelayedSpikeMonitor.h | 12 +- src/DuplexConnection.cpp | 18 +- src/DuplexConnection.h | 6 +- src/EulerTrace.cpp | 2 + src/EulerTrace.h | 7 +- src/FileInputGroup.cpp | 29 +- src/FileInputGroup.h | 6 +- src/FileModulatedPoissonGroup.cpp | 20 +- src/FileModulatedPoissonGroup.h | 6 +- src/GabaMonitor.cpp | 14 +- src/GabaMonitor.h | 29 +- src/IFGroup.cpp | 1 + src/IFGroup.h | 108 +++---- src/IafPscDeltaGroup.cpp | 8 +- src/IafPscDeltaGroup.h | 3 + src/IdentityConnection.cpp | 26 +- src/IdentityConnection.h | 6 +- src/LPTripletConnection.cpp | 6 +- src/LPTripletConnection.h | 4 +- src/LinearTrace.cpp | 4 +- src/LinearTrace.h | 4 +- src/Logger.cpp | 42 +-- src/Logger.h | 21 +- src/Monitor.cpp | 13 +- src/Monitor.h | 89 +++--- src/NeuronGroup.cpp | 16 +- src/NeuronGroup.h | 8 +- src/NmdaMonitor.cpp | 14 +- src/NmdaMonitor.h | 4 +- src/NormalStimulator.cpp | 18 +- src/NormalStimulator.h | 4 +- src/PairInteractionConnection.cpp | 34 +- src/PairInteractionConnection.h | 4 +- src/PatternMonitor.cpp | 140 ++++---- src/PatternMonitor.h | 6 +- src/PatternStimulator.cpp | 150 ++++----- src/PatternStimulator.h | 8 +- src/PoissonGroup.cpp | 12 +- src/PoissonGroup.h | 4 +- src/PoissonStimulator.cpp | 14 +- src/PoissonStimulator.h | 4 +- src/PopulationRateMonitor.cpp | 16 +- src/PopulationRateMonitor.h | 4 +- src/ProfilePoissonGroup.cpp | 22 +- src/ProfilePoissonGroup.h | 4 +- src/RateChecker.cpp | 4 +- src/RateChecker.h | 4 +- src/RateModulatedConnection.cpp | 24 +- src/RateModulatedConnection.h | 4 +- src/RateMonitor.cpp | 18 +- src/RateMonitor.h | 4 +- src/RealTimeMonitor.cpp | 20 +- src/RealTimeMonitor.h | 6 +- src/SIFGroup.cpp | 8 +- src/SIFGroup.h | 3 + src/STDPConnection.cpp | 10 +- src/STDPConnection.h | 4 +- src/STDPwdConnection.cpp | 12 +- src/STDPwdConnection.h | 4 +- src/STPConnection.cpp | 6 +- src/STPConnection.h | 4 +- src/SimpleMatrix.h | 8 +- src/SparseConnection.cpp | 230 +++++++------- src/SparseConnection.h | 12 +- src/SpikeDelay.cpp | 2 + src/SpikeDelay.h | 4 +- src/SpikeMonitor.cpp | 16 +- src/SpikeMonitor.h | 12 +- src/SpikingGroup.cpp | 186 +++++------ src/SpikingGroup.h | 43 ++- src/StateMonitor.cpp | 26 +- src/StateMonitor.h | 4 +- src/StimulusGroup.cpp | 210 ++++++------ src/StimulusGroup.h | 16 +- src/StructuredPoissonGroup.cpp | 28 +- src/StructuredPoissonGroup.h | 6 +- src/SymmetricSTDPConnection.cpp | 4 +- src/SymmetricSTDPConnection.h | 4 +- src/SyncBuffer.cpp | 16 +- src/SyncBuffer.h | 70 ++-- src/System.cpp | 166 +++++----- src/System.h | 321 ++++++++++--------- src/TIFGroup.cpp | 8 +- src/TIFGroup.h | 3 + src/TripletConnection.cpp | 4 +- src/TripletConnection.h | 4 +- src/TripletDecayConnection.cpp | 6 +- src/TripletDecayConnection.h | 4 +- src/VoltageMonitor.cpp | 18 +- src/VoltageMonitor.h | 4 +- src/WeightMatrixMonitor.cpp | 12 +- src/WeightMatrixMonitor.h | 4 +- src/WeightMonitor.cpp | 94 +++--- src/WeightMonitor.h | 12 +- src/WeightPatternMonitor.cpp | 48 +-- src/WeightPatternMonitor.h | 10 +- src/WeightStatsMonitor.cpp | 14 +- src/WeightStatsMonitor.h | 4 +- src/WeightSumMonitor.cpp | 14 +- src/WeightSumMonitor.h | 4 +- src/auryn_definitions.cpp | 3 + src/auryn_definitions.h | 512 +++++++++++++++--------------- src/auryn_global.cpp | 9 +- src/auryn_global.h | 9 +- tools/aube.cpp | 76 ++--- 144 files changed, 2251 insertions(+), 1984 deletions(-) diff --git a/examples/sim_background.cpp b/examples/sim_background.cpp index d43dbc4c..9fdc1374 100644 --- a/examples/sim_background.cpp +++ b/examples/sim_background.cpp @@ -23,11 +23,12 @@ #define N_REC_WEIGHTS 5000 -using namespace std; namespace po = boost::program_options; namespace mpi = boost::mpi; +using namespace auryn; + int main(int ac, char* av[]) { @@ -68,9 +69,9 @@ int main(int ac, char* av[]) NeuronID hsize = 100; NeuronID offset = 0; - string patfile = ""; - string prefile = ""; - string currentfile = ""; + std::string patfile = ""; + std::string prefile = ""; + std::string currentfile = ""; double stimfreq = 10; @@ -99,15 +100,15 @@ int main(int ac, char* av[]) int n_strengthen = 0; - vector corr_connections; - string dir = "."; - string stimfile = ""; - string label = ""; - string infilename = ""; + std::vector corr_connections; + std::string dir = "."; + std::string stimfile = ""; + std::string label = ""; + std::string infilename = ""; const char * file_prefix = "bg2"; char strbuf [255]; - string msg; + std::string msg; int errcode = 0; @@ -119,9 +120,9 @@ int main(int ac, char* av[]) ("quiet", "quiet mode") ("scaling", "scaling mode") ("balance", "activate load balance") - ("load", po::value(), "input weight matrix") - ("patfile", po::value(), "pattern file for StimulusGroup") - ("prefile", po::value(), "pattern file for loading patterns") + ("load", po::value(), "input weight matrix") + ("patfile", po::value(), "pattern file for StimulusGroup") + ("prefile", po::value(), "pattern file for loading patterns") ("onperiod", po::value(), "mean stimulus on period") ("offperiod", po::value(), "mean stimulus off period") ("wmat", "wmat dump mode") @@ -132,8 +133,8 @@ int main(int ac, char* av[]) ("tau_hom", po::value(), "homeostatic time constant") ("kappa", po::value(), "target rate") ("simtime", po::value(), "simulation time") - ("dir", po::value(), "output dir") - ("label", po::value(), "output label") + ("dir", po::value(), "output dir") + ("label", po::value(), "output label") ("wee", po::value(), "wee") ("wei", po::value(), "wei") ("wie", po::value(), "wie") @@ -142,7 +143,7 @@ int main(int ac, char* av[]) ("ampa", po::value(), "ampa nmda ratio") ("strengthen", po::value(), "connections to strengthen by 10") ("ne", po::value(), "no of exc units") - ("stimfile", po::value(), "stimulus ras file") + ("stimfile", po::value(), "stimulus ras file") ("wstim", po::value(), "weight of stimulus connections") ("stimtime", po::value(), "time of stimulus on") ("decay", "decay triplet connections") @@ -171,7 +172,7 @@ int main(int ac, char* av[]) po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -184,285 +185,285 @@ int main(int ac, char* av[]) } if (vm.count("balance")) { - cout << "load balancing active" << endl; + std::cout << "load balancing active" << std::endl; loadbalance = true; } if (vm.count("load")) { - cout << "load from matrix " - << vm["load"].as() << ".\n"; - infilename = vm["load"].as(); + std::cout << "load from matrix " + << vm["load"].as() << ".\n"; + infilename = vm["load"].as(); } if (vm.count("patfile")) { - cout << "PatternFile is " - << vm["patfile"].as() << ".\n"; - patfile = vm["patfile"].as(); + std::cout << "PatternFile is " + << vm["patfile"].as() << ".\n"; + patfile = vm["patfile"].as(); } if (vm.count("prefile")) { - cout << "Preload patternfile is " - << vm["prefile"].as() << ".\n"; - prefile = vm["prefile"].as(); + std::cout << "Preload patternfile is " + << vm["prefile"].as() << ".\n"; + prefile = vm["prefile"].as(); } if (vm.count("wmat")) { wmatdump = true; - cout << "wmat dump mode" << endl; + std::cout << "wmat dump mode" << std::endl; } if (vm.count("onperiod")) { - cout << "onperiod set to " + std::cout << "onperiod set to " << vm["onperiod"].as() << ".\n"; onperiod = vm["onperiod"].as(); } if (vm.count("offperiod")) { - cout << "offperiod set to " + std::cout << "offperiod set to " << vm["offperiod"].as() << ".\n"; offperiod = vm["offperiod"].as(); } if (vm.count("eta")) { - cout << "eta set to " + std::cout << "eta set to " << vm["eta"].as() << ".\n"; eta = vm["eta"].as(); } if (vm.count("bgrate")) { - cout << "bgrate set to " + std::cout << "bgrate set to " << vm["bgrate"].as() << ".\n"; bg_rate = vm["bgrate"].as(); } if (vm.count("sparseness")) { - cout << "sparseness set to " + std::cout << "sparseness set to " << vm["sparseness"].as() << ".\n"; sparseness = vm["sparseness"].as(); } if (vm.count("scale")) { - cout << "scale set to " + std::cout << "scale set to " << vm["scale"].as() << ".\n"; scale = vm["scale"].as(); } if (vm.count("tau_hom")) { - cout << "tau_hom set to " + std::cout << "tau_hom set to " << vm["tau_hom"].as() << ".\n"; tau_hom = vm["tau_hom"].as(); } if (vm.count("kappa")) { - cout << "kappa set to " + std::cout << "kappa set to " << vm["kappa"].as() << ".\n"; kappa = vm["kappa"].as(); } if (vm.count("simtime")) { - cout << "simtime set to " + std::cout << "simtime set to " << vm["simtime"].as() << ".\n"; simtime = vm["simtime"].as(); stimtime = simtime; } if (vm.count("dir")) { - cout << "dir set to " - << vm["dir"].as() << ".\n"; - dir = vm["dir"].as(); + std::cout << "dir set to " + << vm["dir"].as() << ".\n"; + dir = vm["dir"].as(); } if (vm.count("label")) { - cout << "label set to " - << vm["label"].as() << ".\n"; - label = vm["label"].as(); + std::cout << "label set to " + << vm["label"].as() << ".\n"; + label = vm["label"].as(); } if (vm.count("wee")) { - cout << "wee set to " + std::cout << "wee set to " << vm["wee"].as() << ".\n"; w_ee = vm["wee"].as(); } if (vm.count("wei")) { - cout << "wei set to " + std::cout << "wei set to " << vm["wei"].as() << ".\n"; w_ei = vm["wei"].as(); } if (vm.count("wie")) { - cout << "wie set to " + std::cout << "wie set to " << vm["wie"].as() << ".\n"; w_ie = vm["wie"].as(); } if (vm.count("wii")) { - cout << "wii set to " + std::cout << "wii set to " << vm["wii"].as() << ".\n"; w_ii = vm["wii"].as(); } if (vm.count("wmax")) { - cout << "wmax set to " + std::cout << "wmax set to " << vm["wmax"].as() << ".\n"; wmax = vm["wmax"].as(); } if (vm.count("ampa")) { - cout << "ampa set to " + std::cout << "ampa set to " << vm["ampa"].as() << ".\n"; ampa_nmda_ratio = vm["ampa"].as(); } if (vm.count("strengthen")) { - cout << "strengthen set to " + std::cout << "strengthen set to " << vm["strengthen"].as() << ".\n"; n_strengthen = vm["strengthen"].as(); } if (vm.count("ne")) { - cout << "ne set to " + std::cout << "ne set to " << vm["ne"].as() << ".\n"; ne = vm["ne"].as(); ni = ne/4; } if (vm.count("stimfile")) { - cout << "stimfile set to " - << vm["stimfile"].as() << ".\n"; - stimfile = vm["stimfile"].as(); + std::cout << "stimfile set to " + << vm["stimfile"].as() << ".\n"; + stimfile = vm["stimfile"].as(); } if (vm.count("wstim")) { - cout << "wstim set to " + std::cout << "wstim set to " << vm["wstim"].as() << ".\n"; wstim = vm["wstim"].as(); } if (vm.count("stimtime")) { - cout << "stimtime set to " + std::cout << "stimtime set to " << vm["stimtime"].as() << ".\n"; stimtime = vm["stimtime"].as(); } if (vm.count("corr")) { - cout << "enabling corr " << endl; + std::cout << "enabling corr " << std::endl; corr = true; } if (vm.count("ampl")) { - cout << "ampl set to " + std::cout << "ampl set to " << vm["ampl"].as() << ".\n"; ampl = vm["ampl"].as(); } if (vm.count("psize")) { - cout << "psize set to " + std::cout << "psize set to " << vm["psize"].as() << ".\n"; psize = vm["psize"].as(); } if (vm.count("plen")) { - cout << "plen set to " + std::cout << "plen set to " << vm["plen"].as() << ".\n"; plen = vm["plen"].as(); } if (vm.count("hsize")) { - cout << "hsize set to " + std::cout << "hsize set to " << vm["hsize"].as() << ".\n"; hsize = vm["hsize"].as(); } if (vm.count("hlen")) { - cout << "hlen set to " + std::cout << "hlen set to " << vm["hlen"].as() << ".\n"; hlen = vm["hlen"].as(); } if (vm.count("offset")) { - cout << "offset set to " + std::cout << "offset set to " << vm["offset"].as() << ".\n"; offset = vm["offset"].as(); } if (vm.count("recall")) { - cout << "enabling recall " << endl; + std::cout << "enabling recall " << std::endl; recall = true; } if (vm.count("stimfreq")) { - cout << "stimfreq set to " + std::cout << "stimfreq set to " << vm["stimfreq"].as() << ".\n"; stimfreq = vm["stimfreq"].as(); } if (vm.count("decay")) { - cout << "weight decay on " << endl; + std::cout << "weight decay on " << std::endl; decay = true; } if (vm.count("dconstant")) { - cout << "dconstant set to " + std::cout << "dconstant set to " << vm["dconstant"].as() << ".\n"; tau_decay = vm["dconstant"].as(); } if (vm.count("wdecay")) { - cout << "wdecay set to " + std::cout << "wdecay set to " << vm["wdecay"].as() << ".\n"; wdecay = vm["wdecay"].as(); } if (vm.count("chk")) { - cout << "chk set to " + std::cout << "chk set to " << vm["chk"].as() << ".\n"; tau_chk = vm["chk"].as(); } if (vm.count("adapt")) { - cout << "adaptation on " << endl; + std::cout << "adaptation on " << std::endl; adapt = true; } if (vm.count("wall")) { - cout << "real time wall clock monitoring enabled " << endl; + std::cout << "real time wall clock monitoring enabled " << std::endl; wall = true; } if (vm.count("noisyweights")) { - cout << "noisyweights on " << endl; + std::cout << "noisyweights on " << std::endl; noisyweights = true; } if (vm.count("switchweights")) { - cout << "switchweights on " << endl; + std::cout << "switchweights on " << std::endl; switchweights = true; } if (vm.count("fast")) { - cout << "fast on " << endl; + std::cout << "fast on " << std::endl; fast = true; } if (vm.count("eiplastic")) { - cout << "eiplastic on " << endl; + std::cout << "eiplastic on " << std::endl; ei_plastic = true; } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } if (scale != 1.) { eta *= scale; tau_hom /= scale; simtime /= scale; - cout << "scaled by " << scale << endl; + std::cout << "scaled by " << scale << std::endl; } double primetime = 3*tau_hom; @@ -474,7 +475,7 @@ int main(int ac, char* av[]) communicator = &world; sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.log", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); - string logfile = strbuf; + std::string logfile = strbuf; logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); sys = new System(&world); @@ -484,7 +485,7 @@ int main(int ac, char* av[]) // END Global stuff if (!infilename.empty()) { - stringstream iss; + std::stringstream iss; iss << infilename << "." << world.rank(); infilename = iss.str(); } @@ -536,10 +537,10 @@ int main(int ac, char* av[]) w_ei, sparseness, tau_hom, eta, kappa, wmax, GLUT); } else { - string str; + std::string str; str = infilename; str += ".ei.wmat"; - stringstream oss; + std::stringstream oss; oss << "Loading weight matrix from " << str; logger->msg(oss.str(),PROGRESS,true); con_ei = new TripletConnection(neurons_e,neurons_i, @@ -569,10 +570,10 @@ int main(int ac, char* av[]) } } else { - string str; + std::string str; str = infilename; str += ".wmat"; - stringstream oss; + std::stringstream oss; oss << "Loading weight matrix from " << str; logger->msg(oss.str(),PROGRESS,true); if (decay) @@ -614,7 +615,7 @@ int main(int ac, char* av[]) WeightMonitor * wmon = new WeightMonitor( con_ee, strbuf, 10 ); for ( int i = 0 ; i < 5 ; ++i ) { for ( int j = 0 ; j < 5 ; ++j ) { - vector sublist = con_ee->get_block(i*psize,(i+1)*psize,j*psize,(j+1)*psize); + std::vector sublist = con_ee->get_block(i*psize,(i+1)*psize,j*psize,(j+1)*psize); sublist.resize(50); // only record a maximum of 50 connections from each block wmon->add_to_list(sublist); } @@ -653,7 +654,7 @@ int main(int ac, char* av[]) if ( scaling && (errcode==0) ) { - stringstream oss; + std::stringstream oss; oss << "Changing cell input ... "; logger->msg(oss.str(),PROGRESS,true); @@ -684,7 +685,7 @@ int main(int ac, char* av[]) if ( corr ) { - stringstream oss; + std::stringstream oss; oss << "Activating correlated input ... "; logger->msg(oss.str(),PROGRESS,true); @@ -731,7 +732,7 @@ int main(int ac, char* av[]) } else { if ( recall ) { - stringstream oss; + std::stringstream oss; oss << "Activating recall input ... "; logger->msg(oss.str(),PROGRESS,true); @@ -837,9 +838,9 @@ if ( patfile != "" ) { // save lifetime sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.lifetime", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); - ofstream killfile; + std::ofstream killfile; killfile.open(strbuf); - killfile << sys->get_time()-primetime << endl; + killfile << sys->get_time()-primetime << std::endl; killfile.close(); logger->msg("Freeing ...",PROGRESS,true); diff --git a/examples/sim_bg_lowpass.cpp b/examples/sim_bg_lowpass.cpp index f5aa2a91..fc101ac7 100644 --- a/examples/sim_bg_lowpass.cpp +++ b/examples/sim_bg_lowpass.cpp @@ -24,7 +24,7 @@ #define N_REC_WEIGHTS 5000 -using namespace std; +using namespace auryn; namespace po = boost::program_options; namespace mpi = boost::mpi; @@ -110,15 +110,15 @@ int main(int ac, char* av[]) int n_strengthen = 0; - vector corr_connections; - string dir = "."; - string stimfile = ""; - string label = ""; - string infilename = ""; + std::vector corr_connections; + std::string dir = "."; + std::string stimfile = ""; + std::string label = ""; + std::string infilename = ""; const char * file_prefix = "bg2"; char strbuf [255]; - string msg; + std::string msg; int errcode = 0; @@ -130,9 +130,9 @@ int main(int ac, char* av[]) ("quiet", "quiet mode") ("scaling", "scaling mode") ("balance", "activate load balance") - ("load", po::value(), "input weight matrix") - ("patfile", po::value(), "pattern file for StimulusGroup") - ("prefile", po::value(), "pattern file for loading patterns") + ("load", po::value(), "input weight matrix") + ("patfile", po::value(), "pattern file for StimulusGroup") + ("prefile", po::value(), "pattern file for loading patterns") ("onperiod", po::value(), "mean stimulus on period") ("offperiod", po::value(), "mean stimulus off period") ("wmat", "wmat dump mode") @@ -143,8 +143,8 @@ int main(int ac, char* av[]) ("tau_hom", po::value(), "homeostatic time constant") ("kappa", po::value(), "target rate") ("simtime", po::value(), "simulation time") - ("dir", po::value(), "output dir") - ("label", po::value(), "output label") + ("dir", po::value(), "output dir") + ("label", po::value(), "output label") ("wee", po::value(), "wee") ("wei", po::value(), "wei") ("wie", po::value(), "wie") @@ -153,7 +153,7 @@ int main(int ac, char* av[]) ("ampa", po::value(), "ampa nmda ratio") ("strengthen", po::value(), "connections to strengthen by 10") ("ne", po::value(), "no of exc units") - ("stimfile", po::value(), "stimulus ras file") + ("stimfile", po::value(), "stimulus ras file") ("wstim", po::value(), "weight of stimulus connections") ("stimtime", po::value(), "time of stimulus on") ("decay", "decay triplet connections") @@ -182,7 +182,7 @@ int main(int ac, char* av[]) po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -195,285 +195,285 @@ int main(int ac, char* av[]) } if (vm.count("balance")) { - cout << "load balancing active" << endl; + std::cout << "load balancing active" << std::endl; loadbalance = true; } if (vm.count("load")) { - cout << "load from matrix " - << vm["load"].as() << ".\n"; - infilename = vm["load"].as(); + std::cout << "load from matrix " + << vm["load"].as() << ".\n"; + infilename = vm["load"].as(); } if (vm.count("patfile")) { - cout << "PatternFile is " - << vm["patfile"].as() << ".\n"; - patfile = vm["patfile"].as(); + std::cout << "PatternFile is " + << vm["patfile"].as() << ".\n"; + patfile = vm["patfile"].as(); } if (vm.count("prefile")) { - cout << "Preload patternfile is " - << vm["prefile"].as() << ".\n"; - prefile = vm["prefile"].as(); + std::cout << "Preload patternfile is " + << vm["prefile"].as() << ".\n"; + prefile = vm["prefile"].as(); } if (vm.count("wmat")) { wmatdump = true; - cout << "wmat dump mode" << endl; + std::cout << "wmat dump mode" << std::endl; } if (vm.count("onperiod")) { - cout << "onperiod set to " + std::cout << "onperiod set to " << vm["onperiod"].as() << ".\n"; onperiod = vm["onperiod"].as(); } if (vm.count("offperiod")) { - cout << "offperiod set to " + std::cout << "offperiod set to " << vm["offperiod"].as() << ".\n"; offperiod = vm["offperiod"].as(); } if (vm.count("eta")) { - cout << "eta set to " + std::cout << "eta set to " << vm["eta"].as() << ".\n"; eta = vm["eta"].as(); } if (vm.count("bgrate")) { - cout << "bgrate set to " + std::cout << "bgrate set to " << vm["bgrate"].as() << ".\n"; bg_rate = vm["bgrate"].as(); } if (vm.count("sparseness")) { - cout << "sparseness set to " + std::cout << "sparseness set to " << vm["sparseness"].as() << ".\n"; sparseness = vm["sparseness"].as(); } if (vm.count("scale")) { - cout << "scale set to " + std::cout << "scale set to " << vm["scale"].as() << ".\n"; scale = vm["scale"].as(); } if (vm.count("tau_hom")) { - cout << "tau_hom set to " + std::cout << "tau_hom set to " << vm["tau_hom"].as() << ".\n"; tau_hom = vm["tau_hom"].as(); } if (vm.count("kappa")) { - cout << "kappa set to " + std::cout << "kappa set to " << vm["kappa"].as() << ".\n"; kappa = vm["kappa"].as(); } if (vm.count("simtime")) { - cout << "simtime set to " + std::cout << "simtime set to " << vm["simtime"].as() << ".\n"; simtime = vm["simtime"].as(); stimtime = simtime; } if (vm.count("dir")) { - cout << "dir set to " - << vm["dir"].as() << ".\n"; - dir = vm["dir"].as(); + std::cout << "dir set to " + << vm["dir"].as() << ".\n"; + dir = vm["dir"].as(); } if (vm.count("label")) { - cout << "label set to " - << vm["label"].as() << ".\n"; - label = vm["label"].as(); + std::cout << "label set to " + << vm["label"].as() << ".\n"; + label = vm["label"].as(); } if (vm.count("wee")) { - cout << "wee set to " + std::cout << "wee set to " << vm["wee"].as() << ".\n"; w_ee = vm["wee"].as(); } if (vm.count("wei")) { - cout << "wei set to " + std::cout << "wei set to " << vm["wei"].as() << ".\n"; w_ei = vm["wei"].as(); } if (vm.count("wie")) { - cout << "wie set to " + std::cout << "wie set to " << vm["wie"].as() << ".\n"; w_ie = vm["wie"].as(); } if (vm.count("wii")) { - cout << "wii set to " + std::cout << "wii set to " << vm["wii"].as() << ".\n"; w_ii = vm["wii"].as(); } if (vm.count("wmax")) { - cout << "wmax set to " + std::cout << "wmax set to " << vm["wmax"].as() << ".\n"; wmax = vm["wmax"].as(); } if (vm.count("ampa")) { - cout << "ampa set to " + std::cout << "ampa set to " << vm["ampa"].as() << ".\n"; ampa_nmda_ratio = vm["ampa"].as(); } if (vm.count("strengthen")) { - cout << "strengthen set to " + std::cout << "strengthen set to " << vm["strengthen"].as() << ".\n"; n_strengthen = vm["strengthen"].as(); } if (vm.count("ne")) { - cout << "ne set to " + std::cout << "ne set to " << vm["ne"].as() << ".\n"; ne = vm["ne"].as(); ni = ne/4; } if (vm.count("stimfile")) { - cout << "stimfile set to " - << vm["stimfile"].as() << ".\n"; - stimfile = vm["stimfile"].as(); + std::cout << "stimfile set to " + << vm["stimfile"].as() << ".\n"; + stimfile = vm["stimfile"].as(); } if (vm.count("wstim")) { - cout << "wstim set to " + std::cout << "wstim set to " << vm["wstim"].as() << ".\n"; wstim = vm["wstim"].as(); } if (vm.count("stimtime")) { - cout << "stimtime set to " + std::cout << "stimtime set to " << vm["stimtime"].as() << ".\n"; stimtime = vm["stimtime"].as(); } if (vm.count("corr")) { - cout << "enabling corr " << endl; + std::cout << "enabling corr " << std::endl; corr = true; } if (vm.count("ampl")) { - cout << "ampl set to " + std::cout << "ampl set to " << vm["ampl"].as() << ".\n"; ampl = vm["ampl"].as(); } if (vm.count("psize")) { - cout << "psize set to " + std::cout << "psize set to " << vm["psize"].as() << ".\n"; psize = vm["psize"].as(); } if (vm.count("plen")) { - cout << "plen set to " + std::cout << "plen set to " << vm["plen"].as() << ".\n"; plen = vm["plen"].as(); } if (vm.count("hsize")) { - cout << "hsize set to " + std::cout << "hsize set to " << vm["hsize"].as() << ".\n"; hsize = vm["hsize"].as(); } if (vm.count("hlen")) { - cout << "hlen set to " + std::cout << "hlen set to " << vm["hlen"].as() << ".\n"; hlen = vm["hlen"].as(); } if (vm.count("offset")) { - cout << "offset set to " + std::cout << "offset set to " << vm["offset"].as() << ".\n"; offset = vm["offset"].as(); } if (vm.count("recall")) { - cout << "enabling recall " << endl; + std::cout << "enabling recall " << std::endl; recall = true; } if (vm.count("stimfreq")) { - cout << "stimfreq set to " + std::cout << "stimfreq set to " << vm["stimfreq"].as() << ".\n"; stimfreq = vm["stimfreq"].as(); } if (vm.count("decay")) { - cout << "weight decay on " << endl; + std::cout << "weight decay on " << std::endl; decay = true; } if (vm.count("dconstant")) { - cout << "dconstant set to " + std::cout << "dconstant set to " << vm["dconstant"].as() << ".\n"; tau_decay = vm["dconstant"].as(); } if (vm.count("wdecay")) { - cout << "wdecay set to " + std::cout << "wdecay set to " << vm["wdecay"].as() << ".\n"; wdecay = vm["wdecay"].as(); } if (vm.count("chk")) { - cout << "chk set to " + std::cout << "chk set to " << vm["chk"].as() << ".\n"; tau_chk = vm["chk"].as(); } if (vm.count("adapt")) { - cout << "adaptation on " << endl; + std::cout << "adaptation on " << std::endl; adapt = true; } if (vm.count("wall")) { - cout << "real time wall clock monitoring enabled " << endl; + std::cout << "real time wall clock monitoring enabled " << std::endl; wall = true; } if (vm.count("noisyweights")) { - cout << "noisyweights on " << endl; + std::cout << "noisyweights on " << std::endl; noisyweights = true; } if (vm.count("switchweights")) { - cout << "switchweights on " << endl; + std::cout << "switchweights on " << std::endl; switchweights = true; } if (vm.count("fast")) { - cout << "fast on " << endl; + std::cout << "fast on " << std::endl; fast = true; } if (vm.count("eiplastic")) { - cout << "eiplastic on " << endl; + std::cout << "eiplastic on " << std::endl; ei_plastic = true; } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } if (scale != 1.) { eta *= scale; tau_hom /= scale; simtime /= scale; - cout << "scaled by " << scale << endl; + std::cout << "scaled by " << scale << std::endl; } double primetime = 3*tau_hom; @@ -485,7 +485,7 @@ int main(int ac, char* av[]) communicator = &world; sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.log", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); - string logfile = strbuf; + std::string logfile = strbuf; logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); sys = new System(&world); @@ -495,7 +495,7 @@ int main(int ac, char* av[]) // END Global stuff if (!infilename.empty()) { - stringstream iss; + std::stringstream iss; iss << infilename << "." << world.rank(); infilename = iss.str(); } @@ -547,10 +547,10 @@ int main(int ac, char* av[]) w_ei, sparseness, tau_hom, eta, kappa, wmax, GLUT); } else { - string str; + std::string str; str = infilename; str += ".ei.wmat"; - stringstream oss; + std::stringstream oss; oss << "Loading weight matrix from " << str; logger->msg(oss.str(),PROGRESS,true); con_ei = new LPTripletConnection(neurons_e,neurons_i, @@ -577,7 +577,7 @@ int main(int ac, char* av[]) string str; str = infilename; str += ".wmat"; - stringstream oss; + std::stringstream oss; oss << "Loading weight matrix from " << str; logger->msg(oss.str(),PROGRESS,true); con_ee = new LPTripletConnection(neurons_e,neurons_e, @@ -615,7 +615,7 @@ int main(int ac, char* av[]) WeightMonitor * wmon = new WeightMonitor( con_ee, strbuf, 10 ); for ( int i = 0 ; i < 5 ; ++i ) { for ( int j = 0 ; j < 5 ; ++j ) { - vector sublist = con_ee->get_block(i*psize,(i+1)*psize,j*psize,(j+1)*psize); + std::vector sublist = con_ee->get_block(i*psize,(i+1)*psize,j*psize,(j+1)*psize); wmon->add_to_list(sublist); } } @@ -649,7 +649,7 @@ int main(int ac, char* av[]) if ( scaling && (errcode==0) ) { - stringstream oss; + std::stringstream oss; oss << "Changing cell input ... "; logger->msg(oss.str(),PROGRESS,true); @@ -680,7 +680,7 @@ int main(int ac, char* av[]) if ( corr ) { - stringstream oss; + std::stringstream oss; oss << "Activating correlated input ... "; logger->msg(oss.str(),PROGRESS,true); @@ -727,7 +727,7 @@ int main(int ac, char* av[]) } else { if ( recall ) { - stringstream oss; + std::stringstream oss; oss << "Activating recall input ... "; logger->msg(oss.str(),PROGRESS,true); @@ -834,9 +834,9 @@ if ( patfile != "" ) { // save lifetime sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.lifetime", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); - ofstream killfile; + std::ofstream killfile; killfile.open(strbuf); - killfile << sys->get_time()-primetime << endl; + killfile << sys->get_time()-primetime << std::endl; killfile.close(); logger->msg("Freeing ...",PROGRESS,true); diff --git a/examples/sim_bg_static.cpp b/examples/sim_bg_static.cpp index d6959da5..fa9170a0 100644 --- a/examples/sim_bg_static.cpp +++ b/examples/sim_bg_static.cpp @@ -20,7 +20,7 @@ #include "auryn.h" -using namespace std; +using namespace auryn; namespace po = boost::program_options; namespace mpi = boost::mpi; @@ -112,7 +112,7 @@ int main(int ac, char* av[]) po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -125,120 +125,120 @@ int main(int ac, char* av[]) } if (vm.count("load")) { - cout << "load from matrix " + std::cout << "load from matrix " << vm["load"].as() << ".\n"; infilename = vm["load"].as(); } if (vm.count("patfile")) { - cout << "PatternFile is " + std::cout << "PatternFile is " << vm["patfile"].as() << ".\n"; patfile = vm["patfile"].as(); } if (vm.count("prefile")) { - cout << "Preload patternfile is " + std::cout << "Preload patternfile is " << vm["prefile"].as() << ".\n"; prefile = vm["prefile"].as(); } if (vm.count("wmat")) { wmatdump = true; - cout << "wmat dump mode" << endl; + std::cout << "wmat dump mode" << std::endl; } if (vm.count("bgrate")) { - cout << "bgrate set to " + std::cout << "bgrate set to " << vm["bgrate"].as() << ".\n"; bg_rate = vm["bgrate"].as(); } if (vm.count("sparseness")) { - cout << "sparseness set to " + std::cout << "sparseness set to " << vm["sparseness"].as() << ".\n"; sparseness = vm["sparseness"].as(); } if (vm.count("simtime")) { - cout << "simtime set to " + std::cout << "simtime set to " << vm["simtime"].as() << ".\n"; simtime = vm["simtime"].as(); stimtime = simtime; } if (vm.count("dir")) { - cout << "dir set to " + std::cout << "dir set to " << vm["dir"].as() << ".\n"; dir = vm["dir"].as(); } if (vm.count("wee")) { - cout << "wee set to " + std::cout << "wee set to " << vm["wee"].as() << ".\n"; w_ee = vm["wee"].as(); } if (vm.count("wei")) { - cout << "wei set to " + std::cout << "wei set to " << vm["wei"].as() << ".\n"; w_ei = vm["wei"].as(); } if (vm.count("wie")) { - cout << "wie set to " + std::cout << "wie set to " << vm["wie"].as() << ".\n"; w_ie = vm["wie"].as(); } if (vm.count("wii")) { - cout << "wii set to " + std::cout << "wii set to " << vm["wii"].as() << ".\n"; w_ii = vm["wii"].as(); } if (vm.count("ampa")) { - cout << "ampa set to " + std::cout << "ampa set to " << vm["ampa"].as() << ".\n"; ampa_nmda_ratio = vm["ampa"].as(); } if (vm.count("ne")) { - cout << "ne set to " + std::cout << "ne set to " << vm["ne"].as() << ".\n"; ne = vm["ne"].as(); ni = ne/4; } if (vm.count("stimfile")) { - cout << "stimfile set to " + std::cout << "stimfile set to " << vm["stimfile"].as() << ".\n"; stimfile = vm["stimfile"].as(); } if (vm.count("chk")) { - cout << "chk set to " + std::cout << "chk set to " << vm["chk"].as() << ".\n"; tau_chk = vm["chk"].as(); } if (vm.count("adapt")) { - cout << "adaptation on " << endl; + std::cout << "adaptation on " << std::endl; adapt = true; } if (vm.count("fast")) { - cout << "fast on " << endl; + std::cout << "fast on " << std::endl; fast = true; } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } @@ -255,7 +255,7 @@ int main(int ac, char* av[]) // END Global init if (!infilename.empty()) { - stringstream iss; + std::stringstream iss; iss << infilename << "." << world.rank(); infilename = iss.str(); } diff --git a/examples/sim_brunel2k.cpp b/examples/sim_brunel2k.cpp index d5530a2a..4029f3f2 100644 --- a/examples/sim_brunel2k.cpp +++ b/examples/sim_brunel2k.cpp @@ -20,17 +20,17 @@ #include "auryn.h" -using namespace std; +using namespace auryn; namespace po = boost::program_options; namespace mpi = boost::mpi; int main(int ac,char *av[]) { - string dir = "."; + std::string dir = "."; - stringstream oss; - string strbuf ; - string msg; + std::stringstream oss; + std::string strbuf ; + std::string msg; NeuronID ne = 8000; NeuronID ni = 2000; @@ -45,13 +45,13 @@ int main(int ac,char *av[]) { double gamma = 5.0; double poisson_rate = 20.0e3; - string load = ""; - string save = ""; + std::string load = ""; + std::string save = ""; - string fwmat_ee = ""; - string fwmat_ei = ""; - string fwmat_ie = ""; - string fwmat_ii = ""; + std::string fwmat_ee = ""; + std::string fwmat_ei = ""; + std::string fwmat_ie = ""; + std::string fwmat_ii = ""; int errcode = 0; @@ -65,13 +65,13 @@ int main(int ac,char *av[]) { ("simtime", po::value(), "duration of simulation") ("gamma", po::value(), "gamma factor for inhibitory weight") ("nu", po::value(), "the external firing rate nu") - ("dir", po::value(), "dir from file") - ("load", po::value(), "load from file") - ("save", po::value(), "save to file") - ("fee", po::value(), "file with EE connections") - ("fei", po::value(), "file with EI connections") - ("fie", po::value(), "file with IE connections") - ("fii", po::value(), "file with II connections") + ("dir", po::value(), "dir from file") + ("load", po::value(), "load from file") + ("save", po::value(), "save to file") + ("fee", po::value(), "file with EE connections") + ("fei", po::value(), "file with EI connections") + ("fie", po::value(), "file with IE connections") + ("fii", po::value(), "file with II connections") ; po::variables_map vm; @@ -79,7 +79,7 @@ int main(int ac,char *av[]) { po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -96,39 +96,39 @@ int main(int ac,char *av[]) { } if (vm.count("dir")) { - dir = vm["dir"].as(); + dir = vm["dir"].as(); } if (vm.count("load")) { - load = vm["load"].as(); + load = vm["load"].as(); } if (vm.count("save")) { - save = vm["save"].as(); + save = vm["save"].as(); } if (vm.count("fee")) { - fwmat_ee = vm["fee"].as(); + fwmat_ee = vm["fee"].as(); } if (vm.count("fie")) { - fwmat_ie = vm["fie"].as(); + fwmat_ie = vm["fie"].as(); } if (vm.count("fei")) { - fwmat_ei = vm["fei"].as(); + fwmat_ei = vm["fei"].as(); } if (vm.count("fii")) { - fwmat_ii = vm["fii"].as(); + fwmat_ii = vm["fii"].as(); } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } // BEGIN Auryn init @@ -137,9 +137,9 @@ int main(int ac,char *av[]) { communicator = &world; oss << dir << "/brunel." << world.rank() << "."; - string outputfile = oss.str(); + std::string outputfile = oss.str(); - stringstream logfile; + std::stringstream logfile; logfile << outputfile << "log"; logger = new Logger(logfile.str(),world.rank(),PROGRESS,EVERYTHING); @@ -204,7 +204,7 @@ int main(int ac,char *av[]) { msg = "Setting up monitors ..."; logger->msg(msg,PROGRESS,true); - stringstream filename; + std::stringstream filename; filename << outputfile << "e.ras"; SpikeMonitor * smon_e = new SpikeMonitor( neurons_e, filename.str().c_str(), nrec); diff --git a/examples/sim_brunel2k_pl.cpp b/examples/sim_brunel2k_pl.cpp index ac250297..466a7ec2 100644 --- a/examples/sim_brunel2k_pl.cpp +++ b/examples/sim_brunel2k_pl.cpp @@ -20,7 +20,7 @@ #include "auryn.h" -using namespace std; +using namespace auryn; namespace po = boost::program_options; namespace mpi = boost::mpi; @@ -28,7 +28,7 @@ namespace mpi = boost::mpi; int main(int ac,char *av[]) { string dir = "."; - stringstream oss; + std::stringstream oss; string strbuf ; string msg; @@ -84,7 +84,7 @@ int main(int ac,char *av[]) { po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -132,12 +132,12 @@ int main(int ac,char *av[]) { fwmat_ii = vm["fii"].as(); } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } // BEGIN Auryn init @@ -148,7 +148,7 @@ int main(int ac,char *av[]) { oss << dir << "/brunel." << world.rank() << "."; string outputfile = oss.str(); - stringstream logfile; + std::stringstream logfile; logfile << outputfile << "log"; logger = new Logger(logfile.str(),world.rank(),PROGRESS,EVERYTHING); @@ -225,7 +225,7 @@ int main(int ac,char *av[]) { msg = "Setting up monitors ..."; logger->msg(msg,PROGRESS,true); - stringstream filename; + std::stringstream filename; filename << outputfile << "e.ras"; SpikeMonitor * smon_e = new SpikeMonitor( neurons_e, filename.str().c_str(), nrec); diff --git a/examples/sim_coba_benchmark.cpp b/examples/sim_coba_benchmark.cpp index 54a85b9a..7082c714 100644 --- a/examples/sim_coba_benchmark.cpp +++ b/examples/sim_coba_benchmark.cpp @@ -20,7 +20,7 @@ #include "auryn.h" -using namespace std; +using namespace auryn; namespace po = boost::program_options; namespace mpi = boost::mpi; @@ -33,7 +33,7 @@ int main(int ac,char *av[]) { string fwmat_ie = ""; string fwmat_ii = ""; - stringstream oss; + std::stringstream oss; string strbuf ; string msg; @@ -72,7 +72,7 @@ int main(int ac,char *av[]) { po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -105,12 +105,12 @@ int main(int ac,char *av[]) { } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } // BEGIN Global stuff @@ -122,7 +122,7 @@ int main(int ac,char *av[]) { string outputfile = oss.str(); char tmp [255]; - stringstream logfile; + std::stringstream logfile; logfile << outputfile << "log"; logger = new Logger(logfile.str(),world.rank(),PROGRESS,EVERYTHING); @@ -171,7 +171,7 @@ int main(int ac,char *av[]) { msg = "Setting up monitors ..."; logger->msg(msg,PROGRESS,true); - stringstream filename; + std::stringstream filename; filename << outputfile << "e.ras"; SpikeMonitor * smon_e = new SpikeMonitor( neurons_e, filename.str().c_str() ); diff --git a/examples/sim_coba_binmon.cpp b/examples/sim_coba_binmon.cpp index b1a46881..a6c52a1e 100644 --- a/examples/sim_coba_binmon.cpp +++ b/examples/sim_coba_binmon.cpp @@ -23,7 +23,7 @@ #include "auryn.h" -using namespace std; +using namespace auryn; namespace po = boost::program_options; namespace mpi = boost::mpi; @@ -36,7 +36,7 @@ int main(int ac,char *av[]) { string fwmat_ie = ""; string fwmat_ii = ""; - stringstream oss; + std::stringstream oss; string strbuf ; string msg; @@ -75,7 +75,7 @@ int main(int ac,char *av[]) { po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -108,12 +108,12 @@ int main(int ac,char *av[]) { } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } // BEGIN Global stuff @@ -125,7 +125,7 @@ int main(int ac,char *av[]) { string outputfile = oss.str(); char tmp [255]; - stringstream logfile; + std::stringstream logfile; logfile << outputfile << "log"; logger = new Logger(logfile.str(),world.rank(),PROGRESS,EVERYTHING); @@ -137,6 +137,9 @@ int main(int ac,char *av[]) { TIFGroup * neurons_e = new TIFGroup( ne); TIFGroup * neurons_i = new TIFGroup( ni); + neurons_e->set_refractory_period(5.0e-3); // minimal ISI 5.1ms + neurons_i->set_refractory_period(5.0e-3); + neurons_e->set_state("bg_current",2e-2); // corresponding to 200pF for C=200pF and tau=20ms neurons_i->set_state("bg_current",2e-2); @@ -171,7 +174,7 @@ int main(int ac,char *av[]) { msg = "Setting up monitors ..."; logger->msg(msg,PROGRESS,true); - stringstream filename; + std::stringstream filename; filename << outputfile << "e.bras"; BinarySpikeMonitor * smon_e = new BinarySpikeMonitor( neurons_e, filename.str().c_str() ); diff --git a/examples/sim_dense.cpp b/examples/sim_dense.cpp index 69a86a02..c1df5f00 100644 --- a/examples/sim_dense.cpp +++ b/examples/sim_dense.cpp @@ -23,7 +23,7 @@ #define NE 20000 #define NI 20000/4 -using namespace std; +using namespace auryn; namespace po = boost::program_options; namespace mpi = boost::mpi; @@ -69,7 +69,7 @@ int main(int ac,char *av[]) { po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -90,12 +90,12 @@ int main(int ac,char *av[]) { } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } // BEGIN Global definitions @@ -103,12 +103,12 @@ int main(int ac,char *av[]) { mpi::communicator world; communicator = &world; - stringstream oss; + std::stringstream oss; oss << dir << "/" << simname << "." << world.rank() << "."; string outputfile = oss.str(); char tmp [255]; - stringstream logfile; + std::stringstream logfile; logfile << outputfile << "log"; logger = new Logger(logfile.str(),world.rank()); @@ -163,7 +163,7 @@ int main(int ac,char *av[]) { msg = "Setting up monitors ..."; logger->msg(msg,PROGRESS,true); - stringstream filename; + std::stringstream filename; filename << outputfile << "e.ras"; SpikeMonitor * smon_e = new SpikeMonitor( neurons_e, filename.str().c_str() ); diff --git a/examples/sim_epsp.cpp b/examples/sim_epsp.cpp index a3ac766a..947edb1e 100644 --- a/examples/sim_epsp.cpp +++ b/examples/sim_epsp.cpp @@ -22,7 +22,7 @@ #define N 1 -using namespace std; +using namespace auryn; namespace po = boost::program_options; namespace mpi = boost::mpi; diff --git a/examples/sim_epsp_stp.cpp b/examples/sim_epsp_stp.cpp index 56543cda..2eb651ff 100644 --- a/examples/sim_epsp_stp.cpp +++ b/examples/sim_epsp_stp.cpp @@ -22,7 +22,7 @@ #define N 1 -using namespace std; +using namespace auryn; namespace po = boost::program_options; namespace mpi = boost::mpi; diff --git a/examples/sim_isp_big.cpp b/examples/sim_isp_big.cpp index 63e4222b..567d6951 100644 --- a/examples/sim_isp_big.cpp +++ b/examples/sim_isp_big.cpp @@ -23,7 +23,7 @@ #define NE 160000 #define NI 40000 -using namespace std; +using namespace auryn; namespace po = boost::program_options; int main(int ac, char* av[]) @@ -95,7 +95,7 @@ int main(int ac, char* av[]) po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -169,12 +169,12 @@ int main(int ac, char* av[]) } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } // BEGIN Global stuff @@ -182,7 +182,7 @@ int main(int ac, char* av[]) mpi::communicator world; communicator = &world; - stringstream oss; + std::stringstream oss; oss << dir << "/" << simname << "." << world.rank(); outputfile = oss.str(); oss << ".log"; @@ -293,18 +293,18 @@ int main(int ac, char* av[]) if (!stimfile.empty() && poisson_stim==false) { logger->msg("Loading pattern ..." ,PROGRESS,true); char buffer[256]; - ifstream fin(stimfile.c_str()); + std::ifstream fin(stimfile.c_str()); if (!fin) { - cout << "There was a problem opening file " + std::cout << "There was a problem opening file " << stimfile << " for reading." - << endl; + << std::endl; logger->msg("There was a problem opening file." ,ERROR,true); return 1; } while ( fin.getline(buffer,256) ) { - istringstream iss( buffer ); + std::stringstream iss( buffer ); NeuronID id; iss >> id; diff --git a/examples/sim_isp_orig.cpp b/examples/sim_isp_orig.cpp index 8ce3a09d..e49a18c8 100644 --- a/examples/sim_isp_orig.cpp +++ b/examples/sim_isp_orig.cpp @@ -25,7 +25,7 @@ #define NP 1000 #define NSTIM 20 -using namespace std; +using namespace auryn; namespace po = boost::program_options; int main(int ac, char* av[]) @@ -89,7 +89,7 @@ int main(int ac, char* av[]) po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } @@ -98,85 +98,85 @@ int main(int ac, char* av[]) } if (vm.count("load")) { - cout << "input weight matrix " + std::cout << "input weight matrix " << vm["load"].as() << ".\n"; infilename = vm["load"].as(); } if (vm.count("out")) { - cout << "output filename " + std::cout << "output filename " << vm["out"].as() << ".\n"; outputfile = vm["out"].as(); } if (vm.count("stimfile")) { - cout << "stimfile filename " + std::cout << "stimfile filename " << vm["stimfile"].as() << ".\n"; stimfile = vm["stimfile"].as(); } if (vm.count("eta")) { - cout << "eta set to " + std::cout << "eta set to " << vm["eta"].as() << ".\n"; eta = vm["eta"].as(); } if (vm.count("kappa")) { - cout << "kappa set to " + std::cout << "kappa set to " << vm["kappa"].as() << ".\n"; kappa = vm["kappa"].as(); } if (vm.count("simtime")) { - cout << "simtime set to " + std::cout << "simtime set to " << vm["simtime"].as() << ".\n"; simtime = vm["simtime"].as(); } if (vm.count("active")) { - cout << "stdp active : " + std::cout << "stdp active : " << vm["active"].as() << ".\n"; stdp_active = vm["active"].as(); } if (vm.count("poisson")) { - cout << "poisson active : " + std::cout << "poisson active : " << vm["poisson"].as() << ".\n"; poisson_stim = vm["poisson"].as(); } if (vm.count("winh")) { - cout << "inhib weight multiplier : " + std::cout << "inhib weight multiplier : " << vm["winh"].as() << ".\n"; winh = vm["winh"].as(); } if (vm.count("wei")) { - cout << "ei weight multiplier : " + std::cout << "ei weight multiplier : " << vm["wei"].as() << ".\n"; wei = vm["wei"].as(); } if (vm.count("chi")) { - cout << "chi multiplier : " + std::cout << "chi multiplier : " << vm["chi"].as() << ".\n"; chi = vm["chi"].as(); } if (vm.count("seed")) { - cout << "seed set to " + std::cout << "seed set to " << vm["seed"].as() << ".\n"; seed = vm["seed"].as(); } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } // BEGIN Global definitions @@ -185,7 +185,7 @@ int main(int ac, char* av[]) communicator = &world; netstatfile = outputfile; - stringstream oss; + std::stringstream oss; oss << outputfile << "." << world.rank(); string basename = oss.str(); oss << ".log"; @@ -260,7 +260,7 @@ int main(int ac, char* av[]) if (!stimfile.empty()) { char ch; NeuronID counter = 0; - ifstream fin(stimfile.c_str()); + std::ifstream fin(stimfile.c_str()); while (!fin.eof() && counter() << ".\n"; kappa = vm["kappa"].as(); } if (vm.count("simtime")) { - cout << "simtime set to " + std::cout << "simtime set to " << vm["simtime"].as() << ".\n"; simtime = vm["simtime"].as(); } if (vm.count("size")) { - cout << "size set to " + std::cout << "size set to " << vm["size"].as() << ".\n"; size = vm["size"].as(); } if (vm.count("seed")) { - cout << "seed set to " + std::cout << "seed set to " << vm["seed"].as() << ".\n"; seed = vm["seed"].as(); } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } // BEGIN Global stuff diff --git a/src/ABSConnection.cpp b/src/ABSConnection.cpp index 42b77a06..a7479b1e 100644 --- a/src/ABSConnection.cpp +++ b/src/ABSConnection.cpp @@ -25,6 +25,8 @@ #include "ABSConnection.h" +using namespace auryn; + void ABSConnection::init(AurynWeight maxw) { stdp_active = true; @@ -61,7 +63,7 @@ ABSConnection::ABSConnection(SpikingGroup * source, NeuronGroup * destination, ABSConnection::ABSConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness, - AurynWeight maxweight , TransmitterType transmitter, string name) + AurynWeight maxweight , TransmitterType transmitter, std::string name) : DuplexConnection(source, destination, weight, sparseness, transmitter, name) { init(maxweight); @@ -113,8 +115,8 @@ void ABSConnection::propagate_forward() data[c-ind] += dw_fwd(*c); } } - // if ( sys->get_clock()%10000 == 0 ) - // cout << scientific << tr_post->get(1) << endl; + // if ( auryn::sys->get_clock()%10000 == 0 ) + // std::cout << std::ifstream << tr_post->get(1) << std::endl; tr_post->follow(); } @@ -133,15 +135,15 @@ void ABSConnection::load_curve_from_file( const char * filename , double scale ) { if ( dst->get_post_size() == 0 ) return; - stringstream oss; + std::stringstream oss; oss << "ABSConnection:: Loading ABS voltage curve from " << filename; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); - ifstream infile (filename); + std::ifstream infile (filename); if (!infile) { - stringstream oes; + std::stringstream oes; oes << "Can't open input file " << filename; - logger->msg(oes.str(),ERROR); + auryn::logger->msg(oes.str(),ERROR); return; } @@ -162,7 +164,7 @@ void ABSConnection::load_curve_from_file( const char * filename , double scale ) if ( ABS_VOLTAGE_CURVE_MIN <= voltage && voltage <= ABS_VOLTAGE_CURVE_MAX ) { int i = (voltage-ABS_VOLTAGE_CURVE_MIN)*ABS_VOLTAGE_CURVE_SIZE/(ABS_VOLTAGE_CURVE_MAX-ABS_VOLTAGE_CURVE_MIN); voltage_curve_post[i] = value*scale; - // cout << i << " " << value << endl; + // std::cout << i << " " << value << std::endl; } count++; } diff --git a/src/ABSConnection.h b/src/ABSConnection.h index c43ee7c7..a83884ef 100644 --- a/src/ABSConnection.h +++ b/src/ABSConnection.h @@ -34,7 +34,7 @@ #include "DuplexConnection.h" #include "EulerTrace.h" -using namespace std; +namespace auryn { class ABSConnection : public DuplexConnection @@ -65,7 +65,7 @@ class ABSConnection : public DuplexConnection ABSConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness=0.05, - AurynWeight maxweight=1. , TransmitterType transmitter=GLUT, string name="ABSConnection"); + AurynWeight maxweight=1. , TransmitterType transmitter=GLUT, std::string name="ABSConnection"); virtual ~ABSConnection(); void init(AurynWeight maxw); void free(); @@ -77,4 +77,6 @@ class ABSConnection : public DuplexConnection }; +} + #endif /*ABSCONNECTION_H_*/ diff --git a/src/AIF2Group.cpp b/src/AIF2Group.cpp index f700f5a6..4fbc32fc 100644 --- a/src/AIF2Group.cpp +++ b/src/AIF2Group.cpp @@ -25,10 +25,12 @@ #include "AIF2Group.h" +using namespace auryn; + AIF2Group::AIF2Group( NeuronID size, AurynFloat load, NeuronID total ) : AIFGroup(size,load,total) { - // sys->register_spiking_group(this); // already registered in AIFGroup + // auryn::sys->register_spiking_group(this); // already registered in AIFGroup if ( evolve_locally() ) init(); } diff --git a/src/AIF2Group.h b/src/AIF2Group.h index ab954291..2b30ca17 100644 --- a/src/AIF2Group.h +++ b/src/AIF2Group.h @@ -31,6 +31,8 @@ #include "System.h" +namespace auryn { + class AIF2Group : public AIFGroup { private: @@ -59,5 +61,7 @@ class AIF2Group : public AIFGroup virtual void evolve(); }; +} + #endif /*AIF2GROUP_H_*/ diff --git a/src/AIFGroup.cpp b/src/AIFGroup.cpp index 758e9714..1335799f 100644 --- a/src/AIFGroup.cpp +++ b/src/AIFGroup.cpp @@ -25,10 +25,12 @@ #include "AIFGroup.h" +using namespace auryn; + AIFGroup::AIFGroup( NeuronID size, AurynFloat load, NeuronID total ) : NeuronGroup(size,load,total) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); if ( evolve_locally() ) init(); } diff --git a/src/AIFGroup.h b/src/AIFGroup.h index e564a249..eba860b9 100644 --- a/src/AIFGroup.h +++ b/src/AIFGroup.h @@ -30,6 +30,7 @@ #include "NeuronGroup.h" #include "System.h" +namespace auryn { /*! \brief A simple extension of IFGroup with spike triggered adaptation */ class AIFGroup : public NeuronGroup @@ -82,5 +83,7 @@ class AIFGroup : public NeuronGroup void evolve(); }; +} + #endif /*AIFGROUP_H_*/ diff --git a/src/AdExGroup.cpp b/src/AdExGroup.cpp index 8693e509..04f4a7bb 100644 --- a/src/AdExGroup.cpp +++ b/src/AdExGroup.cpp @@ -25,9 +25,11 @@ #include "AdExGroup.h" +using namespace auryn; + AdExGroup::AdExGroup(NeuronID size) : NeuronGroup(size) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); if ( evolve_locally() ) init(); } @@ -193,9 +195,9 @@ AurynFloat AdExGroup::get_bg_current(NeuronID i) { return 0; } -string AdExGroup::get_output_line(NeuronID i) +std::string AdExGroup::get_output_line(NeuronID i) { - stringstream oss; + std::stringstream oss; oss << get_mem(i) << " " << get_ampa(i) << " " << get_gaba(i) << " " << auryn_vector_ushort_get (ref, i) << " " << auryn_vector_float_get (bg_current, i) <<"\n"; diff --git a/src/AdExGroup.h b/src/AdExGroup.h index c78da503..5743bd10 100644 --- a/src/AdExGroup.h +++ b/src/AdExGroup.h @@ -31,6 +31,8 @@ #include "System.h" +namespace auryn { + /*! \brief Conductance based Adaptive Exponential neuron model - Brette and Gerstner (2005). Default values are taken from Table 1 (4a) of Naud, Marcille, Clopath and Gerstner (2008) */ class AdExGroup : public NeuronGroup @@ -58,7 +60,7 @@ class AdExGroup : public NeuronGroup void calculate_scale_constants(); inline void integrate_state(); inline void check_thresholds(); - virtual string get_output_line(NeuronID i); + virtual std::string get_output_line(NeuronID i); virtual void load_input_line(NeuronID i, const char * buf); void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); @@ -107,5 +109,7 @@ class AdExGroup : public NeuronGroup void evolve(); }; +} + #endif /*ADEXGROUP_H_*/ diff --git a/src/AmpaMonitor.cpp b/src/AmpaMonitor.cpp index e27af0e6..0701e0ca 100644 --- a/src/AmpaMonitor.cpp +++ b/src/AmpaMonitor.cpp @@ -25,7 +25,9 @@ #include "AmpaMonitor.h" -AmpaMonitor::AmpaMonitor(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize) : Monitor(filename) +using namespace auryn; + +AmpaMonitor::AmpaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) : Monitor(filename) { init(source,id,filename,stepsize); } @@ -34,22 +36,22 @@ AmpaMonitor::~AmpaMonitor() { } -void AmpaMonitor::init(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize) +void AmpaMonitor::init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; ssize = stepsize; if ( ssize < 1 ) ssize = 1; nid = id; - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } void AmpaMonitor::propagate() { - if (sys->get_clock()%ssize==0) { - outfile << dt*(sys->get_clock()) << " " << src->get_ampa(nid) << "\n"; + if (auryn::sys->get_clock()%ssize==0) { + outfile << dt*(auryn::sys->get_clock()) << " " << src->get_ampa(nid) << "\n"; } } diff --git a/src/AmpaMonitor.h b/src/AmpaMonitor.h index 28f38a93..b3003f20 100644 --- a/src/AmpaMonitor.h +++ b/src/AmpaMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Records the AMPA conductance from one specific unit from the source group. */ class AmpaMonitor : protected Monitor @@ -42,12 +42,14 @@ class AmpaMonitor : protected Monitor NeuronGroup * src; NeuronID nid; AurynTime ssize; - void init(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize); + void init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize); public: - AmpaMonitor(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize=1); + AmpaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize=1); virtual ~AmpaMonitor(); void propagate(); }; +} + #endif /*AMPAMONITOR_H_*/ diff --git a/src/AuditoryBeepGroup.cpp b/src/AuditoryBeepGroup.cpp index 736f291f..40e1e4c9 100644 --- a/src/AuditoryBeepGroup.cpp +++ b/src/AuditoryBeepGroup.cpp @@ -25,6 +25,8 @@ #include "AuditoryBeepGroup.h" +using namespace auryn; + void AuditoryBeepGroup::init ( AurynFloat duration, AurynFloat interval, AurynFloat rate ) { stimulus_duration = duration/dt; @@ -45,12 +47,12 @@ void AuditoryBeepGroup::init ( AurynFloat duration, AurynFloat interval, AurynFl set_flat_profile(); - stringstream oss; + std::stringstream oss; oss << "AuditoryBeepGroup:: Set up with stimulus_duration=" << stimulus_duration << " and interval=" << stimulation_period; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } AuditoryBeepGroup::AuditoryBeepGroup(NeuronID n, AurynFloat duration, AurynFloat interval, AurynDouble rate ) : ProfilePoissonGroup( n , rate ) @@ -64,7 +66,7 @@ AuditoryBeepGroup::~AuditoryBeepGroup() void AuditoryBeepGroup::evolve() { - if ( sys->get_clock() >= next_event ) { + if ( auryn::sys->get_clock() >= next_event ) { if ( stimulus_active ) { stimulus_active = false; set_flat_profile(); @@ -72,7 +74,7 @@ void AuditoryBeepGroup::evolve() ProfilePoissonGroup::evolve(); - next_event = sys->get_clock()+stimulation_period; + next_event = auryn::sys->get_clock()+stimulation_period; } else { stimulus_active = true; @@ -87,7 +89,7 @@ void AuditoryBeepGroup::evolve() ProfilePoissonGroup::evolve(); set_rate(rate_on); - next_event = sys->get_clock()+stimulus_duration; + next_event = auryn::sys->get_clock()+stimulus_duration; } } else { ProfilePoissonGroup::evolve(); diff --git a/src/AuditoryBeepGroup.h b/src/AuditoryBeepGroup.h index e6c6b251..5794b380 100644 --- a/src/AuditoryBeepGroup.h +++ b/src/AuditoryBeepGroup.h @@ -36,7 +36,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief A special Poisson generator that mimicks thalamo-cortical input to * auditory cortex layer 3/4. @@ -92,4 +92,6 @@ class AuditoryBeepGroup : public ProfilePoissonGroup virtual void evolve(); }; +} + #endif /*AUDITORYBEEPGROUP_H_*/ diff --git a/src/BinarySpikeMonitor.cpp b/src/BinarySpikeMonitor.cpp index d71aebe3..a5903128 100644 --- a/src/BinarySpikeMonitor.cpp +++ b/src/BinarySpikeMonitor.cpp @@ -26,20 +26,22 @@ #include "BinarySpikeMonitor.h" +using namespace auryn; -BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, string filename, NeuronID from, NeuronID to) + +BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) : Monitor(filename) { init(source,filename,from,to); } -BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, string filename, NeuronID to) +BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to) : Monitor(filename) { init(source,filename,0,to); } -BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, string filename) +BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename) : Monitor(filename ) { init(source,filename,0,source->get_size()); @@ -50,22 +52,22 @@ BinarySpikeMonitor::~BinarySpikeMonitor() free(); } -void BinarySpikeMonitor::open_output_file(string filename) +void BinarySpikeMonitor::open_output_file(std::string filename) { if ( filename.empty() ) return; // stimulators do not necessary need an outputfile - outfile.open( filename.c_str(), ios::binary ); + outfile.open( filename.c_str(), std::ios::binary ); if (!outfile) { - stringstream oss; + std::stringstream oss; oss << "Can't open binary output file " << filename; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); exit(1); } } -void BinarySpikeMonitor::init(SpikingGroup * source, string filename, NeuronID from, NeuronID to) +void BinarySpikeMonitor::init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); // sys = system; n_from = from; @@ -101,7 +103,7 @@ void BinarySpikeMonitor::set_every(NeuronID every) void BinarySpikeMonitor::propagate() { struct SpikeEvent_type spikeData; - spikeData.time = sys->get_clock(); + spikeData.time = auryn::sys->get_clock(); for (it = src->get_spikes_immediate()->begin() ; it < src->get_spikes_immediate()->end() ; ++it ) { if (*it >= n_from ) { if ( *it < n_to && (*it%n_every==0) ) diff --git a/src/BinarySpikeMonitor.h b/src/BinarySpikeMonitor.h index 3fcc176b..44405a47 100644 --- a/src/BinarySpikeMonitor.h +++ b/src/BinarySpikeMonitor.h @@ -33,7 +33,7 @@ #include "System.h" #include -using namespace std; +namespace auryn { /*! \brief The standard Monitor object to record spikes from a * SpikingGroup and write them to file @@ -51,18 +51,21 @@ class BinarySpikeMonitor : Monitor SpikeContainer::const_iterator it; SpikingGroup * src; NeuronID offset; - void init(SpikingGroup * source, string filename, NeuronID from, NeuronID to); - virtual void open_output_file(string filename); + void init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to); + virtual void open_output_file(std::string filename); void free(); public: - BinarySpikeMonitor(SpikingGroup * source, string filename); - BinarySpikeMonitor(SpikingGroup * source, string filename, NeuronID to); - BinarySpikeMonitor(SpikingGroup * source, string filename, NeuronID from, NeuronID to); + BinarySpikeMonitor(SpikingGroup * source, std::string filename); + BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to); + BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to); void set_offset(NeuronID of); void set_every(NeuronID every); virtual ~BinarySpikeMonitor(); void propagate(); }; + +} + #endif /*BINARYSPIKEMONITOR_H_*/ diff --git a/src/Checker.cpp b/src/Checker.cpp index 0c2812ae..811692e5 100644 --- a/src/Checker.cpp +++ b/src/Checker.cpp @@ -25,6 +25,8 @@ #include "Checker.h" +using namespace auryn; + Checker::Checker(SpikingGroup * source) { src = source; diff --git a/src/Checker.h b/src/Checker.h index 3c5f47ae..95012bec 100644 --- a/src/Checker.h +++ b/src/Checker.h @@ -29,7 +29,7 @@ #include "auryn_definitions.h" #include "SpikingGroup.h" -using namespace std; +namespace auryn { class System; @@ -77,4 +77,6 @@ class Checker BOOST_SERIALIZATION_ASSUME_ABSTRACT(Checker) +} + #endif /*CHECKER_H_*/ diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 0194e894..29d4d0a6 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -28,12 +28,11 @@ #include "auryn_global.h" #include "auryn_definitions.h" -#include #include #include -using namespace std; +namespace auryn { /*! \brief Template for a sparse matrix with row major ordering and fast access * of rows and capability to store float values per matrix entry. @@ -528,7 +527,7 @@ T * ComplexMatrix::get_ptr(NeuronID i, NeuronID j) c = lo + (hi-lo)/2; if ( *c < j ) lo = c+1; else hi = c; - //cout << i << ":" << j << " " << *lo << ":" << *hi << endl; + //std::cout << i << ":" << j << " " << *lo << ":" << *hi << endl; } if ( *lo == j ) { @@ -730,7 +729,7 @@ void ComplexMatrix::print() { for (NeuronID i = 0 ; i < m_rows ; ++i) { for (NeuronID * r = get_row_begin(i) ; r != get_row_end(i) ; ++r ) { - cout << i << " " << *r << " " << elementdata[r-colinds] << "\n"; + std::cout << i << " " << *r << " " << elementdata[r-colinds] << "\n"; // FIXME not dumping the other states yet } } @@ -840,6 +839,7 @@ NeuronID ComplexMatrix::get_data_offset(NeuronID * r) return r-get_ind_begin(); } +} #endif /*COMPLEXMATRIX_H_*/ diff --git a/src/Connection.cpp b/src/Connection.cpp index a3851f04..0c61b644 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -25,6 +25,8 @@ #include "Connection.h" +using namespace auryn; + Connection::Connection() { init(); @@ -36,7 +38,7 @@ Connection::Connection(NeuronID rows, NeuronID cols) set_size(rows,cols); } -Connection::Connection(SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter, string name) +Connection::Connection(SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter, std::string name) { set_source(source); set_destination(destination); @@ -63,12 +65,12 @@ Connection::~Connection() { } -void Connection::set_name(string name) +void Connection::set_name(std::string name) { connection_name = name; } -string Connection::get_name() +std::string Connection::get_name() { return connection_name; } diff --git a/src/Connection.h b/src/Connection.h index f14f9067..b3bdc496 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -32,6 +32,8 @@ #include "SpikingGroup.h" #include "NeuronGroup.h" +namespace auryn { + class System; /*! \brief The abstract base class for all Connection objects in Auryn @@ -57,7 +59,7 @@ class Connection NeuronID m_rows,n_cols; - string connection_name; + std::string connection_name; protected: /*! Serialization function for saving the Connection state. Implement in derived classes to save @@ -86,7 +88,7 @@ class Connection public: Connection(); Connection(NeuronID rows, NeuronID cols); - Connection(SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter=GLUT, string name="Connection"); + Connection(SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter=GLUT, std::string name="Connection"); virtual ~Connection(); void set_size(NeuronID i, NeuronID j); @@ -94,10 +96,10 @@ class Connection /*! \brief Set name of connection * * The name will appear in error messages and save files */ - void set_name(string name); + void set_name(std::string name); /*! \brief Returns name of connection */ - string get_name(); + std::string get_name(); /*! \brief Get number of rows (presynaptic) in connection. * @@ -174,10 +176,10 @@ class Connection virtual void stats(AurynFloat &mean, AurynFloat &std) = 0; /*! \brief Implements save to file functionality. Also called in save_network_state from System class. */ - virtual bool write_to_file(string filename) = 0; + virtual bool write_to_file(std::string filename) = 0; /*! \brief Implements load from file functionality. Also called in save_network_state from System class. */ - virtual bool load_from_file(string filename) = 0; + virtual bool load_from_file(std::string filename) = 0; /*! \brief Transmits a spike to a postsynaptic partner * @@ -192,7 +194,7 @@ class Connection void safe_transmit(NeuronID id, AurynWeight amount); /*! Returns a vector of ConnectionsID of a block specified by the arguments. */ - virtual vector get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col) = 0; + virtual std::vector get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col) = 0; }; @@ -203,5 +205,6 @@ inline void Connection::transmit(NeuronID id, AurynWeight amount) NeuronID localid = dst->global2rank(id); target[localid]+=amount; } +} #endif /*CONNECTION_H_*/ diff --git a/src/CorrelatedPoissonGroup.cpp b/src/CorrelatedPoissonGroup.cpp index 10bce5b9..7d3ef38d 100644 --- a/src/CorrelatedPoissonGroup.cpp +++ b/src/CorrelatedPoissonGroup.cpp @@ -25,11 +25,13 @@ #include "CorrelatedPoissonGroup.h" +using namespace auryn; + boost::mt19937 CorrelatedPoissonGroup::gen = boost::mt19937(); void CorrelatedPoissonGroup::init(AurynDouble rate, NeuronID gsize, AurynDouble timedelay ) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); if ( evolve_locally() ) { lambda = rate; @@ -48,7 +50,7 @@ void CorrelatedPoissonGroup::init(AurynDouble rate, NeuronID gsize, AurynDouble timescale = 50e-3; set_stoptime(0); - stringstream oss; + std::stringstream oss; oss << "CorrelatedPoissonGroup:: Initializing with " << ngroups << " of size " << groupsize << " ( " @@ -56,7 +58,7 @@ void CorrelatedPoissonGroup::init(AurynDouble rate, NeuronID gsize, AurynDouble << " amplitude=" << amplitude << ", " << " timescale=" << timescale << " )"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); // delay_o = new AurynDouble [delay*(ngroups-1)]; o = 1.0; @@ -66,7 +68,7 @@ void CorrelatedPoissonGroup::init(AurynDouble rate, NeuronID gsize, AurynDouble dist = new boost::uniform_01<> (); die = new boost::variate_generator > ( gen, *dist ); - seed(communicator->rank()); // seeding problem + seed(auryn::communicator->rank()); // seeding problem x = new NeuronID [ngroups]; for ( int i = 0 ; i < ngroups ; ++i ) { @@ -75,8 +77,8 @@ void CorrelatedPoissonGroup::init(AurynDouble rate, NeuronID gsize, AurynDouble } oss.str(""); - oss << "CorrelatedPoissonGroup:: Seeding with " << communicator->rank(); - logger->msg(oss.str(),NOTIFICATION); + oss << "CorrelatedPoissonGroup:: Seeding with " << auryn::communicator->rank(); + auryn::logger->msg(oss.str(),NOTIFICATION); } } @@ -104,7 +106,7 @@ void CorrelatedPoissonGroup::set_rate(AurynDouble rate) void CorrelatedPoissonGroup::set_threshold(AurynDouble threshold) { - thr = max(1e-6,threshold); + thr = std::max(1e-6,threshold); } AurynDouble CorrelatedPoissonGroup::get_rate() @@ -116,7 +118,7 @@ AurynDouble CorrelatedPoissonGroup::get_rate() void CorrelatedPoissonGroup::evolve() { // check if the group has timed out - if ( tstop && sys->get_clock() > tstop ) return; + if ( tstop && auryn::sys->get_clock() > tstop ) return; // move amplitude amplitude += (target_amplitude-amplitude)*dt/tau_amplitude; @@ -128,10 +130,10 @@ void CorrelatedPoissonGroup::evolve() o += 2.0*((AurynDouble)(*die)()-0.5)*sqrt(dt/timescale)*amplitude; int len = delay*ngroups; - delay_o[sys->get_clock()%len] = max(thr,o*lambda); + delay_o[auryn::sys->get_clock()%len] = std::max(thr,o*lambda); for ( int g = 0 ; g < ngroups ; ++g ) { - AurynDouble grouprate = delay_o[(sys->get_clock()-(g+offset)*delay)%len]; + AurynDouble grouprate = delay_o[(auryn::sys->get_clock()-(g+offset)*delay)%len]; AurynDouble r = -log(1-(AurynDouble)(*die)())/(dt*grouprate); // think before tempering with this! // I already broke the corde here once! x[g] = (NeuronID)(r); @@ -151,35 +153,35 @@ void CorrelatedPoissonGroup::seed(int s) void CorrelatedPoissonGroup::set_amplitude(AurynDouble amp) { amplitude = amp; - logger->parameter("amplitude",amplitude); + auryn::logger->parameter("amplitude",amplitude); } void CorrelatedPoissonGroup::set_target_amplitude(AurynDouble amp) { target_amplitude = amp; - logger->parameter("target_amplitude",target_amplitude); + auryn::logger->parameter("target_amplitude",target_amplitude); } void CorrelatedPoissonGroup::set_timescale(AurynDouble scale) { timescale = scale; - logger->parameter("timescale",timescale); + auryn::logger->parameter("timescale",timescale); } void CorrelatedPoissonGroup::set_tau_amplitude(AurynDouble tau) { tau_amplitude = tau; - logger->parameter("tau_amplitude",tau_amplitude); + auryn::logger->parameter("tau_amplitude",tau_amplitude); } void CorrelatedPoissonGroup::set_offset(int off) { offset = off; - logger->parameter("offset",offset); + auryn::logger->parameter("offset",offset); } void CorrelatedPoissonGroup::set_stoptime(AurynDouble stoptime) { tstop = stoptime*dt; - logger->parameter("stoptime",stoptime); + auryn::logger->parameter("stoptime",stoptime); } diff --git a/src/CorrelatedPoissonGroup.h b/src/CorrelatedPoissonGroup.h index 661f09fa..9fcf868a 100644 --- a/src/CorrelatedPoissonGroup.h +++ b/src/CorrelatedPoissonGroup.h @@ -36,7 +36,7 @@ #define CORRELATEDPOISSON_LOAD_MULTIPLIER 0.01 -using namespace std; +namespace auryn { /*! \brief A PoissonGroup with multiple subpopulations that co-modulate their firing * rate according to an Ornstein Uhlenbeck process. @@ -108,4 +108,6 @@ class CorrelatedPoissonGroup : public SpikingGroup void seed(int s); }; +} + #endif /*NEURONGROUP_H_*/ diff --git a/src/CubaIFGroup.cpp b/src/CubaIFGroup.cpp index 01e31556..65fece0b 100644 --- a/src/CubaIFGroup.cpp +++ b/src/CubaIFGroup.cpp @@ -25,9 +25,11 @@ #include "CubaIFGroup.h" +using namespace auryn; + CubaIFGroup::CubaIFGroup(NeuronID size) : NeuronGroup(size) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); if ( evolve_locally() ) init(); } @@ -123,9 +125,9 @@ AurynFloat CubaIFGroup::get_bg_current(NeuronID i) { return 0; } -string CubaIFGroup::get_output_line(NeuronID i) +std::string CubaIFGroup::get_output_line(NeuronID i) { - stringstream oss; + std::stringstream oss; oss << get_mem(i) << " " << auryn_vector_ushort_get (ref, i) << "\n"; return oss.str(); } diff --git a/src/CubaIFGroup.h b/src/CubaIFGroup.h index 748ab6db..bcf8edf2 100644 --- a/src/CubaIFGroup.h +++ b/src/CubaIFGroup.h @@ -31,6 +31,9 @@ #include "System.h" + +namespace auryn { + /*! \brief Current based neuron model with absolute refractoriness * as used in Vogels and Abbott 2005. * @@ -56,7 +59,7 @@ class CubaIFGroup : public NeuronGroup void calculate_scale_constants(); inline void integrate_state(); inline void check_thresholds(); - virtual string get_output_line(NeuronID i); + virtual std::string get_output_line(NeuronID i); virtual void load_input_line(NeuronID i, const char * buf); public: /*! The default constructor of this NeuronGroup */ @@ -82,5 +85,7 @@ class CubaIFGroup : public NeuronGroup void evolve(); }; +} + #endif /*CUBAIFGROUP_H_*/ diff --git a/src/CurrentInjector.cpp b/src/CurrentInjector.cpp index a6f51df6..cba088c8 100644 --- a/src/CurrentInjector.cpp +++ b/src/CurrentInjector.cpp @@ -25,10 +25,12 @@ #include "CurrentInjector.h" +using namespace auryn; -CurrentInjector::CurrentInjector(NeuronGroup * target, string neuron_state_name, AurynFloat initial_current ) : Monitor( ) + +CurrentInjector::CurrentInjector(NeuronGroup * target, std::string neuron_state_name, AurynFloat initial_current ) : Monitor( ) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); dst = target; set_target_state(neuron_state_name); @@ -61,7 +63,7 @@ void CurrentInjector::set_current(NeuronID i, AurynFloat current) { auryn_vector_float_set(currents, i, current); } -void CurrentInjector::set_target_state(string state_name) { +void CurrentInjector::set_target_state(std::string state_name) { target_vector = dst->get_state_vector(state_name); } diff --git a/src/CurrentInjector.h b/src/CurrentInjector.h index c3945da4..a9d7aa7d 100644 --- a/src/CurrentInjector.h +++ b/src/CurrentInjector.h @@ -33,7 +33,7 @@ #include "NeuronGroup.h" -using namespace std; +namespace auryn { /*! \brief Stimulator class to add values in each timestep to arbitrary neuronal states. * @@ -69,10 +69,10 @@ class CurrentInjector : protected Monitor * @param[target] Initializes all currents with this value * @param[initial_current] Initializes all currents with this value */ - CurrentInjector(NeuronGroup * target, string neuron_state_name="mem", AurynFloat initial_current=0.0 ); + CurrentInjector(NeuronGroup * target, std::string neuron_state_name="mem", AurynFloat initial_current=0.0 ); /*! Sets the state to add the "current" in every timestep to */ - void set_target_state( string state_name = "mem" ); + void set_target_state( std::string state_name = "mem" ); /*! Default Destructor */ virtual ~CurrentInjector(); @@ -87,4 +87,6 @@ class CurrentInjector : protected Monitor }; +} + #endif /*CURRENTINJECTOR_H_*/ diff --git a/src/DelayedSpikeMonitor.cpp b/src/DelayedSpikeMonitor.cpp index 711218f4..4f7749e8 100644 --- a/src/DelayedSpikeMonitor.cpp +++ b/src/DelayedSpikeMonitor.cpp @@ -25,19 +25,21 @@ #include "DelayedSpikeMonitor.h" -DelayedSpikeMonitor::DelayedSpikeMonitor(SpikingGroup * source, string filename, NeuronID from, NeuronID to) +using namespace auryn; + +DelayedSpikeMonitor::DelayedSpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) : Monitor(filename) { init(source,filename,from,to); } -DelayedSpikeMonitor::DelayedSpikeMonitor(SpikingGroup * source, string filename, NeuronID to) +DelayedSpikeMonitor::DelayedSpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to) : Monitor(filename) { init(source,filename,0,to); } -DelayedSpikeMonitor::DelayedSpikeMonitor(SpikingGroup * source, string filename) +DelayedSpikeMonitor::DelayedSpikeMonitor(SpikingGroup * source, std::string filename) : Monitor(filename) { init(source,filename,0,source->get_size()); @@ -48,16 +50,16 @@ DelayedSpikeMonitor::~DelayedSpikeMonitor() free(); } -void DelayedSpikeMonitor::init(SpikingGroup * source, string filename, NeuronID from, NeuronID to) +void DelayedSpikeMonitor::init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); // sys = system; n_from = from; n_to = to; src = source; offset = 0; - outfile.setf(ios::fixed); + outfile.setf(std::ios::fixed); outfile.precision(5); } @@ -75,7 +77,7 @@ void DelayedSpikeMonitor::propagate() for (it = src->get_spikes()->begin() ; it != src->get_spikes()->end() ; ++it ) { if (*it >= n_from ) { if ( *it < n_to ) - outfile << dt*(sys->get_clock()) << " " << *it+offset << "\n"; + outfile << dt*(auryn::sys->get_clock()) << " " << *it+offset << "\n"; } } } diff --git a/src/DelayedSpikeMonitor.h b/src/DelayedSpikeMonitor.h index 62fc99f5..62fb6425 100644 --- a/src/DelayedSpikeMonitor.h +++ b/src/DelayedSpikeMonitor.h @@ -32,7 +32,7 @@ #include "System.h" #include -using namespace std; +namespace auryn { /*! \brief SpikeMonitor that reads the delayed spikes as they are * received by a postsynaptic neuron. @@ -48,16 +48,18 @@ class DelayedSpikeMonitor : Monitor SpikeContainer::const_iterator it; SpikingGroup * src; NeuronID offset; - void init(SpikingGroup * source, string filename, NeuronID from, NeuronID to); + void init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to); void free(); public: - DelayedSpikeMonitor(SpikingGroup * source, string filename); - DelayedSpikeMonitor(SpikingGroup * source, string filename, NeuronID to); - DelayedSpikeMonitor(SpikingGroup * source, string filename, NeuronID from, NeuronID to); + DelayedSpikeMonitor(SpikingGroup * source, std::string filename); + DelayedSpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to); + DelayedSpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to); void set_offset(NeuronID of); virtual ~DelayedSpikeMonitor(); void propagate(); }; +} + #endif /*DELAYEDSPIKEMONITOR_H_*/ diff --git a/src/DuplexConnection.cpp b/src/DuplexConnection.cpp index 723bd510..36107d16 100644 --- a/src/DuplexConnection.cpp +++ b/src/DuplexConnection.cpp @@ -25,6 +25,8 @@ #include "DuplexConnection.h" +using namespace auryn; + void DuplexConnection::init() { fwd = w; // for consistency declared here. fwd can be overwritten later though @@ -35,9 +37,9 @@ void DuplexConnection::init() void DuplexConnection::finalize() // finalize at this level is called only for reconnecting or non-Constructor building of the matrix { - stringstream oss; + std::stringstream oss; oss << "DuplexConnection: Finalizing ..."; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); bkw->clear(); if ( bkw->get_nonzero() > w->get_nonzero() ) { @@ -82,7 +84,7 @@ DuplexConnection::DuplexConnection(NeuronID rows, NeuronID cols) DuplexConnection::DuplexConnection( SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness, - TransmitterType transmitter, string name) + TransmitterType transmitter, std::string name) : SparseConnection(source,destination,weight,sparseness,transmitter, name) { if ( dst->get_post_size() > 0 ) @@ -108,13 +110,13 @@ void DuplexConnection::compute_reverse_matrix( int z ) if ( fwd->get_nonzero() <= bkw->get_datasize() ) { bkw->clear(); } else { - logger->msg("Bkw buffer too small reallocating..." ,VERBOSE); + auryn::logger->msg("Bkw buffer too small reallocating..." ,VERBOSE); bkw->resize_buffer_and_clear(fwd->get_datasize()); } - stringstream oss; + std::stringstream oss; oss << "DuplexConnection: ("<< get_name() << "): Computing transposed matrix view ..."; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); NeuronID maxrows = get_m_rows(); NeuronID maxcols = get_n_cols(); @@ -143,13 +145,13 @@ void DuplexConnection::compute_reverse_matrix( int z ) oss << "DuplexConnection: ("<< get_name() << "): " << bkw->get_nonzero() << " different number of non-zero elements in bkw and fwd matrix."; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); } else { oss.str(""); oss << "DuplexConnection: ("<< get_name() << "): " << bkw->get_nonzero() << " elements processed."; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); } } diff --git a/src/DuplexConnection.h b/src/DuplexConnection.h index a8682982..5ef9cabf 100644 --- a/src/DuplexConnection.h +++ b/src/DuplexConnection.h @@ -35,7 +35,7 @@ #include #include -using namespace std; +namespace auryn { /*! Definition of BackwardMatrix - a sparsematrix of pointers to weight values. */ typedef SimpleMatrix BackwardMatrix; @@ -66,11 +66,13 @@ class DuplexConnection : public SparseConnection DuplexConnection(NeuronID rows, NeuronID cols); DuplexConnection(SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter=GLUT); DuplexConnection(SpikingGroup * source, NeuronGroup * destination, const char * filename , TransmitterType transmitter=GLUT); - DuplexConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness=0.05, TransmitterType transmitter=GLUT, string name="DuplexConnection"); + DuplexConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness=0.05, TransmitterType transmitter=GLUT, std::string name="DuplexConnection"); virtual ~DuplexConnection(); virtual void finalize(); }; +} + #endif /*DUPLEXCONNECTION_H_*/ diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index 419ef61e..33545dc6 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -25,6 +25,8 @@ #include "EulerTrace.h" +using namespace auryn; + void EulerTrace::init(NeuronID n, AurynFloat timeconstant) { size = n; diff --git a/src/EulerTrace.h b/src/EulerTrace.h index 130b498b..b9c036f2 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -28,14 +28,11 @@ #include "auryn_definitions.h" - - -using namespace std; - /*! \brief Solves a set of identical linear differential equations with the Euler method. It is used to implement synaptic traces in most STDP models. * * This solver simultaneoulsy computes linear traces (mostly to implement synapses) using Euler's method. Another solver is readily available within the Auryn framework. The LinearTrace objects solves the same problem but using the analytic solution. This results in less updates. However - so far it turned out to be inferior in performance to the EulerTrace. */ +namespace auryn { class EulerTrace { private: @@ -127,5 +124,7 @@ inline AurynFloat EulerTrace::get(NeuronID i) return state->data[i]; } +} // namespace + #endif /*EULERTRACE_H_*/ diff --git a/src/FileInputGroup.cpp b/src/FileInputGroup.cpp index 7c7dbe49..6d0cf078 100644 --- a/src/FileInputGroup.cpp +++ b/src/FileInputGroup.cpp @@ -25,9 +25,12 @@ #include "FileInputGroup.h" -void FileInputGroup::init(string filename) +using namespace auryn; + + +void FileInputGroup::init(std::string filename) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); ftime = 0; lastspike = 0; @@ -36,15 +39,15 @@ void FileInputGroup::init(string filename) active = true; if ( evolve_locally() ) { - spkfile.open(filename.c_str(),ifstream::in); + spkfile.open(filename.c_str(),std::ifstream::in); if (!spkfile) { - cerr << "Can't open input file " << filename << endl; - exit(1); + std::cerr << "Can't open input file " << filename << std::endl; + std::exit(1); } } } -FileInputGroup::FileInputGroup(NeuronID n, string filename) : SpikingGroup(n, 0.0 ) // last 0 enforces RankLock +FileInputGroup::FileInputGroup(NeuronID n, std::string filename) : SpikingGroup(n, 0.0 ) // last 0 enforces RankLock { playinloop = false; dly = 0; @@ -52,7 +55,7 @@ FileInputGroup::FileInputGroup(NeuronID n, string filename) : SpikingGroup(n, 0. init(filename); } -FileInputGroup::FileInputGroup(NeuronID n, string filename, +FileInputGroup::FileInputGroup(NeuronID n, std::string filename, bool loop, AurynFloat delay) : SpikingGroup( n , 0.0 ) { @@ -75,19 +78,19 @@ void FileInputGroup::evolve() NeuronID i; AurynFloat t; - if (ftime == sys->get_clock() && therewasalastspike) { + if (ftime == auryn::sys->get_clock() && therewasalastspike) { if (localrank(lastspike)) spikes->push_back(lastspike); therewasalastspike = false; } - while (ftime <= sys->get_clock() && spkfile.getline(buffer, 256) ) { - istringstream line ( buffer ) ; + while (ftime <= auryn::sys->get_clock() && spkfile.getline(buffer, 256) ) { + std::stringstream line ( buffer ) ; line >> t; ftime = t/dt+off; line >> i; if ( i >= get_rank_size() ) continue; // ignore too large i - if (ftime == sys->get_clock()) { + if (ftime == auryn::sys->get_clock()) { if (localrank(lastspike)) spikes->push_back(i); } else { @@ -99,11 +102,11 @@ void FileInputGroup::evolve() if ( playinloop && spkfile.eof() ) { off = ftime+dly; spkfile.clear(); - spkfile.seekg(0,ios::beg); + spkfile.seekg(0,std::ios::beg); } } else { // keep track of time - off = sys->get_clock(); + off = auryn::sys->get_clock(); ftime = off; } } diff --git a/src/FileInputGroup.h b/src/FileInputGroup.h index 9af14b0c..2fa3fcf7 100644 --- a/src/FileInputGroup.h +++ b/src/FileInputGroup.h @@ -33,6 +33,8 @@ #include "System.h" #include "SpikingGroup.h" +namespace auryn { + /*! \brief Reads files from a ras file and emits them as SpikingGroup in a simulation. * * When the FileInputGroup reaches the end of a designated ras file it can @@ -49,7 +51,7 @@ class FileInputGroup : public SpikingGroup bool playinloop; AurynTime dly; AurynTime off; - ifstream spkfile; + std::ifstream spkfile; char buffer[255]; void init(string filename ); @@ -62,4 +64,6 @@ class FileInputGroup : public SpikingGroup }; +} + #endif /*FILEINPUTROUP_H_*/ diff --git a/src/FileModulatedPoissonGroup.cpp b/src/FileModulatedPoissonGroup.cpp index 489fb425..26e79d1e 100644 --- a/src/FileModulatedPoissonGroup.cpp +++ b/src/FileModulatedPoissonGroup.cpp @@ -25,21 +25,23 @@ #include "FileModulatedPoissonGroup.h" -void FileModulatedPoissonGroup::init ( string filename ) +using namespace auryn; + +void FileModulatedPoissonGroup::init ( std::string filename ) { if ( !evolve_locally() ) return; - inputfile.open(filename.c_str(),ifstream::in); + inputfile.open(filename.c_str(),std::ifstream::in); if (!inputfile) { - cerr << "Can't open input file " << filename << endl; - exit(1); + std::cerr << "Can't open input file " << filename << std::endl; + std::exit(1); } ftime = 0; } FileModulatedPoissonGroup::FileModulatedPoissonGroup(NeuronID n, - string filename ) : PoissonGroup( n , 0.0 ) + std::string filename ) : PoissonGroup( n , 0.0 ) { init(filename); } @@ -56,8 +58,8 @@ void FileModulatedPoissonGroup::evolve() AurynDouble r ; // if there are datapoints in the rate file update linear interpolation - while (ftime < sys->get_clock() && inputfile.getline(buffer, 256) ) { - istringstream line ( buffer ); + while (ftime < auryn::sys->get_clock() && inputfile.getline(buffer, 256) ) { + std::stringstream line ( buffer ); // save first interpolation point ltime = ftime; @@ -67,7 +69,7 @@ void FileModulatedPoissonGroup::evolve() ftime = (AurynTime) (t/dt+0.5); line >> r; - if ( ftime < sys->get_clock() || inputfile.eof() ) { // if the recently read point is already in the past -> reinit interpolation + if ( ftime < auryn::sys->get_clock() || inputfile.eof() ) { // if the recently read point is already in the past -> reinit interpolation rate_m = 0.0; rate_n = r; set_rate(r); @@ -76,7 +78,7 @@ void FileModulatedPoissonGroup::evolve() } } - AurynDouble rate = rate_m*(sys->get_clock()-ltime)+rate_n; + AurynDouble rate = rate_m*(auryn::sys->get_clock()-ltime)+rate_n; if ( last_rate != rate ) { // only redraw when rate changes set_rate(rate); diff --git a/src/FileModulatedPoissonGroup.h b/src/FileModulatedPoissonGroup.h index f51db07c..da08fc5f 100644 --- a/src/FileModulatedPoissonGroup.h +++ b/src/FileModulatedPoissonGroup.h @@ -36,7 +36,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief A special Poisson generator that reads its instantaneous * firing rate from a tiser file. Datapoints in the rate file are @@ -54,7 +54,7 @@ class FileModulatedPoissonGroup : public PoissonGroup char buffer[255]; bool stimulus_active; - ifstream inputfile; + std::ifstream inputfile; void init ( string filename ); @@ -64,4 +64,6 @@ class FileModulatedPoissonGroup : public PoissonGroup virtual void evolve(); }; +} // namespace + #endif /*FILEMODULATEDGROUP_H_*/ diff --git a/src/GabaMonitor.cpp b/src/GabaMonitor.cpp index f24f6fab..4a040a2c 100644 --- a/src/GabaMonitor.cpp +++ b/src/GabaMonitor.cpp @@ -25,7 +25,9 @@ #include "GabaMonitor.h" -GabaMonitor::GabaMonitor(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize) : Monitor(filename) +using namespace auryn; + +GabaMonitor::GabaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) : Monitor(filename) { init(source,id,filename,stepsize); } @@ -34,22 +36,22 @@ GabaMonitor::~GabaMonitor() { } -void GabaMonitor::init(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize) +void GabaMonitor::init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; ssize = stepsize; if ( ssize < 1 ) ssize = 1; nid = id; - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } void GabaMonitor::propagate() { - if (sys->get_clock()%ssize==0) { - outfile << dt*(sys->get_clock()) << " " << src->get_gaba(nid) << "\n"; + if (auryn::sys->get_clock()%ssize==0) { + outfile << dt*(auryn::sys->get_clock()) << " " << src->get_gaba(nid) << "\n"; } } diff --git a/src/GabaMonitor.h b/src/GabaMonitor.h index 9dc72bb5..3d555ddc 100644 --- a/src/GabaMonitor.h +++ b/src/GabaMonitor.h @@ -33,21 +33,22 @@ #include #include -using namespace std; /*! \brief Records the GABA conductance from one specific unit from the source group. */ -class GabaMonitor : protected Monitor -{ -protected: - NeuronGroup * src; - NeuronID nid; - AurynTime ssize; - void init(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize); - -public: - GabaMonitor(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize=1); - virtual ~GabaMonitor(); - void propagate(); -}; +namespace auryn { + class GabaMonitor : protected Monitor + { + protected: + NeuronGroup * src; + NeuronID nid; + AurynTime ssize; + void init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize); + + public: + GabaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize=1); + virtual ~GabaMonitor(); + void propagate(); + }; +} #endif /*GABAMONITOR_H_*/ diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index 4e73732c..23155a12 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -25,6 +25,7 @@ #include "IFGroup.h" +using namespace auryn; IFGroup::IFGroup( NeuronID size, AurynFloat load, NeuronID total ) : NeuronGroup(size,load,total) { diff --git a/src/IFGroup.h b/src/IFGroup.h index 6f4676d1..cf1bacf3 100644 --- a/src/IFGroup.h +++ b/src/IFGroup.h @@ -30,6 +30,7 @@ #include "NeuronGroup.h" #include "System.h" +namespace auryn { /*! \brief Implements the standard integrate and file model used in Auryn. * @@ -42,65 +43,66 @@ * ajusted via set_ampa_nmda_ratio. The voltage dependence of NMDA is * ignored in this model. */ -class IFGroup : public NeuronGroup -{ -private: - auryn_vector_float * t_leak; - auryn_vector_float * t_exc; - auryn_vector_float * t_inh; - AurynFloat scale_ampa,scale_gaba, scale_thr; - AurynFloat tau_ampa,tau_gaba,tau_nmda; - AurynFloat A_ampa,A_nmda; - AurynFloat e_rest,e_rev,thr_rest,tau_mem,tau_thr,dthr; - void init(); - void free(); - void calculate_scale_constants(); - void integrate_membrane(); - void integrate_linear_nmda_synapses(); - void check_thresholds(); -public: - AurynFloat e_reset; - /*! Default constructor. - * - * @param size the size of the group. @param load a load specifier that - * can in principle help to assign the right amount of neurons to a single - * node. However this feature is experimental. - * @param total the total number of neurons that are going to be assigned - * in this simulation. This is also part of the exerimental load balancing - * mechanism. - */ - IFGroup( NeuronID size, AurynFloat load = 1.0, NeuronID total = 0 ); - virtual ~IFGroup(); - /*! Sets the membrane time constant */ - void set_tau_mem(AurynFloat taum); - /*! Returns the membrane time constant */ - AurynFloat get_tau_mem(); + class IFGroup : public NeuronGroup + { + private: + auryn_vector_float * t_leak; + auryn_vector_float * t_exc; + auryn_vector_float * t_inh; + AurynFloat scale_ampa,scale_gaba, scale_thr; + AurynFloat tau_ampa,tau_gaba,tau_nmda; + AurynFloat A_ampa,A_nmda; + AurynFloat e_rest,e_rev,thr_rest,tau_mem,tau_thr,dthr; + void init(); + void free(); + void calculate_scale_constants(); + void integrate_membrane(); + void integrate_linear_nmda_synapses(); + void check_thresholds(); + public: + AurynFloat e_reset; + /*! Default constructor. + * + * @param size the size of the group. @param load a load specifier that + * can in principle help to assign the right amount of neurons to a single + * node. However this feature is experimental. + * @param total the total number of neurons that are going to be assigned + * in this simulation. This is also part of the exerimental load balancing + * mechanism. + */ + IFGroup( NeuronID size, AurynFloat load = 1.0, NeuronID total = 0 ); + virtual ~IFGroup(); + /*! Sets the membrane time constant */ + void set_tau_mem(AurynFloat taum); + /*! Returns the membrane time constant */ + AurynFloat get_tau_mem(); - /*! Sets the exponential decay time constant of the AMPA conductance (default=5ms). */ - void set_tau_ampa(AurynFloat tau); + /*! Sets the exponential decay time constant of the AMPA conductance (default=5ms). */ + void set_tau_ampa(AurynFloat tau); - /*! Returns the exponential decay time constant of the AMPA conductance. */ - AurynFloat get_tau_ampa(); + /*! Returns the exponential decay time constant of the AMPA conductance. */ + AurynFloat get_tau_ampa(); - /*! Sets the exponential decay time constant of the GABA conductance (default=10ms). */ - void set_tau_gaba(AurynFloat tau); + /*! Sets the exponential decay time constant of the GABA conductance (default=10ms). */ + void set_tau_gaba(AurynFloat tau); - /*! Returns the exponential decay time constant of the GABA conductance. */ - AurynFloat get_tau_gaba(); + /*! Returns the exponential decay time constant of the GABA conductance. */ + AurynFloat get_tau_gaba(); - /*! Sets the exponential decay time constant of the NMDA conductance (default=100ms). - * The rise is governed by tau_ampa if tau_ampa << tau_nmda. */ - void set_tau_nmda(AurynFloat tau); + /*! Sets the exponential decay time constant of the NMDA conductance (default=100ms). + * The rise is governed by tau_ampa if tau_ampa << tau_nmda. */ + void set_tau_nmda(AurynFloat tau); - /*! Returns the exponential decay time constant of the NMDA conductance. - * The rise is governed by tau_ampa if tau_ampa << tau_nmda. */ - AurynFloat get_tau_nmda(); - /*! Set ratio between ampa/nmda contribution to excitatory conductance. */ - void set_ampa_nmda_ratio(AurynFloat ratio); - void clear(); - /*! Internally used evolve function. Called by System. */ - virtual void evolve(); -}; + /*! Returns the exponential decay time constant of the NMDA conductance. + * The rise is governed by tau_ampa if tau_ampa << tau_nmda. */ + AurynFloat get_tau_nmda(); + /*! Set ratio between ampa/nmda contribution to excitatory conductance. */ + void set_ampa_nmda_ratio(AurynFloat ratio); + void clear(); + /*! Internally used evolve function. Called by System. */ + virtual void evolve(); + }; +} #endif /*IFGROUP_H_*/ diff --git a/src/IafPscDeltaGroup.cpp b/src/IafPscDeltaGroup.cpp index 412d5643..4014e596 100644 --- a/src/IafPscDeltaGroup.cpp +++ b/src/IafPscDeltaGroup.cpp @@ -25,9 +25,11 @@ #include "IafPscDeltaGroup.h" +using namespace auryn; + IafPscDeltaGroup::IafPscDeltaGroup(NeuronID size) : NeuronGroup(size) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); if ( evolve_locally() ) init(); } @@ -107,9 +109,9 @@ void IafPscDeltaGroup::set_tau_mem(AurynFloat taum) } -string IafPscDeltaGroup::get_output_line(NeuronID i) +std::string IafPscDeltaGroup::get_output_line(NeuronID i) { - stringstream oss; + std::stringstream oss; oss << get_mem(i) << " " << auryn_vector_ushort_get (ref, i) << "\n"; return oss.str(); } diff --git a/src/IafPscDeltaGroup.h b/src/IafPscDeltaGroup.h index 34c8ca04..388de6b3 100644 --- a/src/IafPscDeltaGroup.h +++ b/src/IafPscDeltaGroup.h @@ -30,6 +30,7 @@ #include "NeuronGroup.h" #include "System.h" +namespace auryn { /*! \brief Conductance based neuron model with absolute refractoriness as used in Vogels and Abbott 2005. */ @@ -71,5 +72,7 @@ class IafPscDeltaGroup : public NeuronGroup void evolve(); }; +} + #endif /*IAFPSCDELTAGROUP_H_*/ diff --git a/src/IdentityConnection.cpp b/src/IdentityConnection.cpp index 85e145d0..8fadb746 100644 --- a/src/IdentityConnection.cpp +++ b/src/IdentityConnection.cpp @@ -25,9 +25,11 @@ #include "IdentityConnection.h" +using namespace auryn; + IdentityConnection::IdentityConnection( SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, - TransmitterType transmitter, string name) + TransmitterType transmitter, std::string name) : Connection(source,destination,transmitter,name) { init(weight); @@ -39,7 +41,7 @@ IdentityConnection::IdentityConnection(SpikingGroup * source, NeuronGroup * dest NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col, TransmitterType transmitter, - string name) + std::string name) : Connection(source,destination,transmitter) { init(weight); @@ -57,11 +59,11 @@ IdentityConnection::~IdentityConnection() void IdentityConnection::init(AurynWeight weight) { if ( dst->evolve_locally() == true ) - sys->register_connection(this); + auryn::sys->register_connection(this); if ( src == dst ) { - stringstream oss; + std::stringstream oss; oss << "IdentityConnection: ("<< get_name() <<"): Detected recurrent connection. This seemingly does not make any sense!"; - logger->msg(oss.str(),WARNING); + auryn::logger->msg(oss.str(),WARNING); } connection_weight = weight; offset = 0 ; @@ -117,7 +119,7 @@ void IdentityConnection::set(NeuronID i, NeuronID j, AurynWeight value) AurynLong IdentityConnection::get_nonzero() { - return min(src->get_pre_size(),dst->get_post_size()); + return std::min(src->get_pre_size(),dst->get_post_size()); } void IdentityConnection::stats(AurynFloat &mean, AurynFloat &std) @@ -131,20 +133,20 @@ AurynDouble IdentityConnection::sum() return connection_weight*get_nonzero(); } -bool IdentityConnection::write_to_file(string filename) +bool IdentityConnection::write_to_file(std::string filename) { return true; // TODO fake but what else ? } -bool IdentityConnection::load_from_file(string filename) +bool IdentityConnection::load_from_file(std::string filename) { return true; // TODO fake but what else ? } -vector IdentityConnection::get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col) +std::vector IdentityConnection::get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col) { - vector clist; + std::vector clist; for ( NeuronID i = lo_row ; i < hi_row ; ++i ) { for ( NeuronID j = lo_col ; j < hi_col ; ++j ) { if ( i == j ) { @@ -168,14 +170,14 @@ AurynFloat IdentityConnection::mean() void IdentityConnection::set_offset(int off) { offset = off; - logger->parameter("offset",(int)offset); + auryn::logger->parameter("offset",(int)offset); } void IdentityConnection::set_every(NeuronID e) { if ( e != 0 ) { every = e; - logger->parameter("every",(int)every); + auryn::logger->parameter("every",(int)every); } } diff --git a/src/IdentityConnection.h b/src/IdentityConnection.h index a0baee5c..982883a0 100644 --- a/src/IdentityConnection.h +++ b/src/IdentityConnection.h @@ -40,7 +40,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Provides a unity matrix like connectivity */ class IdentityConnection : public Connection @@ -81,8 +81,10 @@ class IdentityConnection : public Connection virtual AurynFloat mean(); /*! Returns a vector of ConnectionsID of a block specified by the arguments */ - vector get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col); + std::vector get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col); }; +} + #endif /*IDENTITYCONNECTION_H_*/ diff --git a/src/LPTripletConnection.cpp b/src/LPTripletConnection.cpp index 979b5b7f..51118bdc 100644 --- a/src/LPTripletConnection.cpp +++ b/src/LPTripletConnection.cpp @@ -25,6 +25,8 @@ #include "LPTripletConnection.h" +using namespace auryn; + void LPTripletConnection::init(AurynFloat tau_hom, AurynFloat eta, AurynFloat kappa, AurynFloat maxweight) { if ( dst->get_post_size() == 0 ) return; // avoids to run this code on silent nodes with zero post neurons. @@ -109,7 +111,7 @@ LPTripletConnection::LPTripletConnection(SpikingGroup * source, NeuronGroup * de AurynFloat eta, AurynFloat kappa, AurynFloat maxweight , TransmitterType transmitter, - string name) + std::string name) : DuplexConnection(source, destination, weight, @@ -232,7 +234,7 @@ void LPTripletConnection::propagate() void LPTripletConnection::evolve() { - if ( sys->get_clock()%timestep_lp == 0 && stdp_active ) { + if ( auryn::sys->get_clock()%timestep_lp == 0 && stdp_active ) { AurynWeight * lpwval = w->get_data_begin(0); AurynWeight * wval = w->get_data_begin(1); w->state_sub(wval,lpwval,temp_state); diff --git a/src/LPTripletConnection.h b/src/LPTripletConnection.h index 34787a35..8a3e5d64 100644 --- a/src/LPTripletConnection.h +++ b/src/LPTripletConnection.h @@ -34,7 +34,7 @@ #define TRACE EulerTrace -using namespace std; +namespace auryn { /*! \brief Implements triplet STDP in which weight updates are low-pass filtered. @@ -158,4 +158,6 @@ class LPTripletConnection : public DuplexConnection }; +} + #endif /*LPTRIPLETCONNECTION_H_*/ diff --git a/src/LinearTrace.cpp b/src/LinearTrace.cpp index 2d5aaa1a..2ab24bfe 100644 --- a/src/LinearTrace.cpp +++ b/src/LinearTrace.cpp @@ -25,6 +25,8 @@ #include "LinearTrace.h" +using namespace auryn; + void LinearTrace::init(NeuronID n, AurynFloat timeconstant,AurynTime * clk) { size = n; @@ -34,7 +36,7 @@ void LinearTrace::init(NeuronID n, AurynFloat timeconstant,AurynTime * clk) zerotime_auryntime = zerointerval; - // clock = sys->get_clock_ptr(); + // clock = auryn::sys->get_clock_ptr(); clock = clk; state = new AurynFloat[size]; timestamp = new AurynTime[size]; diff --git a/src/LinearTrace.h b/src/LinearTrace.h index ed4970f1..f5b6dbae 100644 --- a/src/LinearTrace.h +++ b/src/LinearTrace.h @@ -28,7 +28,7 @@ #include "auryn_definitions.h" -using namespace std; +namespace auryn { class LinearTrace { @@ -59,6 +59,8 @@ class LinearTrace AurynFloat * get_state_ptr(); }; +} + #endif /*LINEARTRACE_H_*/ diff --git a/src/Logger.cpp b/src/Logger.cpp index df903114..ebdbbe8d 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -25,34 +25,36 @@ #include "Logger.h" -Logger::Logger(string filename, int rank, LogMessageType console, LogMessageType file) +using namespace auryn; + +Logger::Logger(std::string filename, int rank, LogMessageType console, LogMessageType file) { console_out = console; file_out = file; set_rank(rank); fname = filename; - outfile.open(fname.c_str(),ios::out); + outfile.open(fname.c_str(),std::ios::out); if (!outfile) { - cerr << "Can't open output file " << fname << endl; + std::cerr << "Can't open output file " << fname << std::endl; throw 1; } - stringstream oss; + std::stringstream oss; oss << "Logger started on Rank " << local_rank; msg(oss.str(),NOTIFICATION); } Logger::~Logger() { - stringstream oss; + std::stringstream oss; oss << "Logger stopped"; msg(oss.str(),NOTIFICATION); outfile.close(); } -void Logger::msg( string text, LogMessageType type, bool global, int line, string srcfile ) +void Logger::msg( std::string text, LogMessageType type, bool global, int line, std::string srcfile ) { time_t rawtime; struct tm * timeinfo; @@ -61,7 +63,7 @@ void Logger::msg( string text, LogMessageType type, bool global, int line, strin char tbuffer [80]; strftime (tbuffer,80,"%x %X",timeinfo); - stringstream oss; + std::stringstream oss; oss << tbuffer << ":: "; switch ( type ) { case WARNING: @@ -84,40 +86,40 @@ void Logger::msg( string text, LogMessageType type, bool global, int line, strin if ( last_message != text ) { if ( type >= CERRLEVEL ) if ( global ) { - cerr << "(!!) " << text << endl; + std::cerr << "(!!) " << text << std::endl; } else { - cerr << "(!!) " << "on rank " << local_rank << ": " << text << endl; + std::cerr << "(!!) " << "on rank " << local_rank << ": " << text << std::endl; } else - cout << "(" << setw(2) << local_rank << ") " << text << endl; + std::cout << "(" << std::setw(2) << local_rank << ") " << text << std::endl; } } if ( type >= file_out) - outfile << oss.str() << endl; + outfile << oss.str() << std::endl; last_message = text; } -void Logger::parameter(string name, double value) +void Logger::parameter(std::string name, double value) { - stringstream oss; - oss << scientific << " Parameter " << name << "=" << value; + std::stringstream oss; + oss << std::scientific << " Parameter " << name << "=" << value; msg(oss.str(),SETTINGS,true); } -void Logger::parameter(string name, int value) +void Logger::parameter(std::string name, int value) { - stringstream oss; - oss << scientific << "Setting " << name << "=" << value; + std::stringstream oss; + oss << std::scientific << "Setting " << name << "=" << value; msg(oss.str(),SETTINGS,true); } -void Logger::parameter(string name, string value) +void Logger::parameter(std::string name, std::string value) { - stringstream oss; + std::stringstream oss; oss.precision(9); - oss << scientific << "Setting " << name << "=" << value; + oss << std::scientific << "Setting " << name << "=" << value; msg(oss.str(),SETTINGS,true); } diff --git a/src/Logger.h b/src/Logger.h index cf0e1d07..61645436 100644 --- a/src/Logger.h +++ b/src/Logger.h @@ -35,8 +35,7 @@ #define CERRLEVEL WARNING -using namespace std; - +namespace auryn { /*! Enum type for significance level of a given message send to the logger */ enum LogMessageType { EVERYTHING, VERBOSE, NOTIFICATION, SETTINGS, PROGRESS, WARNING, ERROR, NONE }; @@ -48,23 +47,25 @@ enum LogMessageType { EVERYTHING, VERBOSE, NOTIFICATION, SETTINGS, PROGRESS, WAR class Logger { private: - string fname; - ofstream outfile; + std::string fname; + std::ofstream outfile; int local_rank; LogMessageType console_out; LogMessageType file_out; - string last_message; + std::string last_message; public: - Logger(string filename, int rank, LogMessageType console = PROGRESS, LogMessageType file = NOTIFICATION ); - void msg( string text, LogMessageType type=NOTIFICATION, bool global=false, int line=-1, string srcfile="" ); - void parameter( string name, double value ); - void parameter( string name, int value ); - void parameter( string name, string value ); + Logger(std::string filename, int rank, LogMessageType console = PROGRESS, LogMessageType file = NOTIFICATION ); + void msg( std::string text, LogMessageType type=NOTIFICATION, bool global=false, int line=-1, std::string srcfile="" ); + void parameter( std::string name, double value ); + void parameter( std::string name, int value ); + void parameter( std::string name, std::string value ); void set_rank(int rank); virtual ~Logger(); }; +} + #endif /*LOGGER_H_*/ diff --git a/src/Monitor.cpp b/src/Monitor.cpp index 854490fd..11ab9936 100644 --- a/src/Monitor.cpp +++ b/src/Monitor.cpp @@ -25,8 +25,9 @@ #include "Monitor.h" +using namespace auryn; -void Monitor::init(string filename) +void Monitor::init(std::string filename) { fname = filename; @@ -37,20 +38,20 @@ Monitor::Monitor() { } -void Monitor::open_output_file(string filename) +void Monitor::open_output_file(std::string filename) { if ( filename.empty() ) return; // stimulators do not necessary need an outputfile - outfile.open( filename.c_str(), ios::out ); + outfile.open( filename.c_str(), std::ios::out ); if (!outfile) { - stringstream oss; + std::stringstream oss; oss << "Can't open output file " << filename; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); exit(1); } } -Monitor::Monitor( string filename ) +Monitor::Monitor( std::string filename ) { init(filename); } diff --git a/src/Monitor.h b/src/Monitor.h index 020f05a1..38ae1b56 100644 --- a/src/Monitor.h +++ b/src/Monitor.h @@ -30,58 +30,59 @@ #include #include -using namespace std; +namespace auryn { -class System; + class System; -/*! \brief Abstract base class for all Monitor objects. - * - * This Class constitutes the base class for all Monitors in Auryn. Per default it openes a single text file for writing (outfile) named by the name supplied in the constructor. - * Classes inheriting from Monitor have to implement the method propagate. Unlike Checker objects propagate returns void. Use Checker if you need the Monitor to be able to interrupt a run. - */ + /*! \brief Abstract base class for all Monitor objects. + * + * This Class constitutes the base class for all Monitors in Auryn. Per default it openes a single text file for writing (outfile) named by the name supplied in the constructor. + * Classes inheriting from Monitor have to implement the method propagate. Unlike Checker objects propagate returns void. Use Checker if you need the Monitor to be able to interrupt a run. + */ -class Monitor -{ -private: - /*! Functions necesssary for serialization and loading saving to netstate files. */ - friend class boost::serialization::access; - template - void serialize(Archive & ar, const unsigned int version) + class Monitor { - virtual_serialize(ar, version); - } + private: + /*! Functions necesssary for serialization and loading saving to netstate files. */ + friend class boost::serialization::access; + template + void serialize(Archive & ar, const unsigned int version) + { + virtual_serialize(ar, version); + } -protected: - /*! Output filestream to be used in the derived classes */ - ofstream outfile; - /*! Stores output filename */ - string fname; - /*! Standard initializer to be called by the constructor */ - void init(string filename); - /*! Opens a text outputfile -- for binary files redefine this function in derived class. */ - virtual void open_output_file(string filename); - /*! Standard free function to be called by the destructor - closes the file stream. */ - void free(); + protected: + /*! Output filestream to be used in the derived classes */ + std::ofstream outfile; + /*! Stores output filename */ + std::string fname; + /*! Standard initializer to be called by the constructor */ + void init(std::string filename); + /*! Opens a text outputfile -- for binary files redefine this function in derived class. */ + virtual void open_output_file(std::string filename); + /*! Standard free function to be called by the destructor - closes the file stream. */ + void free(); - /*! Functions necesssary for serialization and loading saving to netstate files. */ - virtual void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) ; - virtual void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) ; - -public: - /*! Standard constructor */ - Monitor(); - /*! Standard constructor with file name*/ - Monitor(string filename); - /*! Standard destructor */ - virtual ~Monitor(); - /*! Virtual propagate function to be called in central simulation loop in System */ - virtual void propagate() = 0; -}; + /*! Functions necesssary for serialization and loading saving to netstate files. */ + virtual void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) ; + virtual void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) ; + + public: + /*! Standard constructor */ + Monitor(); + /*! Standard constructor with file name*/ + Monitor(std::string filename); + /*! Standard destructor */ + virtual ~Monitor(); + /*! Virtual propagate function to be called in central simulation loop in System */ + virtual void propagate() = 0; + }; -BOOST_SERIALIZATION_ASSUME_ABSTRACT(Checker) + BOOST_SERIALIZATION_ASSUME_ABSTRACT(Checker) -extern System * sys; -extern Logger * logger; + extern System * sys; + extern Logger * logger; +} #endif /*MONITOR_H_*/ diff --git a/src/NeuronGroup.cpp b/src/NeuronGroup.cpp index 3b63f8ce..ea8812da 100644 --- a/src/NeuronGroup.cpp +++ b/src/NeuronGroup.cpp @@ -25,6 +25,8 @@ #include "NeuronGroup.h" +using namespace auryn; + NeuronGroup::NeuronGroup(NeuronID n, double loadmultiplier, NeuronID total ) : SpikingGroup(n, loadmultiplier, total ) { if ( evolve_locally() ) init(); @@ -33,9 +35,9 @@ NeuronGroup::NeuronGroup(NeuronID n, double loadmultiplier, NeuronID total ) : S void NeuronGroup::init() { group_name = "NeuronGroup"; - // stringstream oss; - // oss << description_string << " init"; - // logger->msg(oss.str(),VERBOSE); + // std::stringstream oss; + // oss << description_std::string << " init"; + // auryn::logger->msg(oss.str(),VERBOSE); mem = get_state_vector("mem"); thr = get_state_vector("thr"); @@ -100,14 +102,14 @@ void NeuronGroup::set_mem(NeuronID i, AurynState val) set_val(mem,i,val); } -void NeuronGroup::set_state(string name, NeuronID i, AurynState val) +void NeuronGroup::set_state(std::string name, NeuronID i, AurynState val) { auryn_vector_float * tmp = get_state_vector(name); if ( tmp ) set_val(tmp,i,val); } -void NeuronGroup::set_state(string name, AurynState val) +void NeuronGroup::set_state(std::string name, AurynState val) { auryn_vector_float * tmp = get_state_vector(name); if ( tmp ) @@ -186,7 +188,7 @@ void NeuronGroup::random_mem(AurynState mean, AurynState sigma) void NeuronGroup::random_uniform_mem(AurynState lo, AurynState hi) { - boost::mt19937 ng_gen(42+communicator->rank()); // produces same series every time + boost::mt19937 ng_gen(42+auryn::communicator->rank()); // produces same series every time boost::uniform_01 die = boost::uniform_01 (ng_gen); AurynState rv; @@ -200,7 +202,7 @@ void NeuronGroup::random_uniform_mem(AurynState lo, AurynState hi) void NeuronGroup::random_nmda(AurynState mean, AurynState sigma) { - boost::mt19937 ng_gen(53+communicator->rank()); // produces same series every time + boost::mt19937 ng_gen(53+auryn::communicator->rank()); // produces same series every time boost::normal_distribution<> dist((double)mean, (double)sigma); boost::variate_generator > die(ng_gen, dist); AurynState rv; diff --git a/src/NeuronGroup.h b/src/NeuronGroup.h index c0109914..047bfce7 100644 --- a/src/NeuronGroup.h +++ b/src/NeuronGroup.h @@ -39,6 +39,8 @@ #include #include +namespace auryn { + /*! \brief Abstract base class for all neuron groups. * * This class constitutes the abstract forefather of all neuron groups in the simulator. It serves as target for Connection objects and is directly derived from SpikingGroup. It directly allocated the memory for mem (membrane potential) and the synaptic conductantes (g_ampa, g_gaba, g_nmda) as well as a vector to store the thresholds. @@ -90,8 +92,8 @@ class NeuronGroup : public SpikingGroup void set_mem(NeuronID i, AurynState val); - void set_state(string name, NeuronID i, AurynState val); - void set_state(string name, AurynState val); + void set_state(std::string name, NeuronID i, AurynState val); + void set_state(std::string name, AurynState val); AurynState get_ampa(NeuronID i); void set_ampa(NeuronID i,AurynState val); @@ -131,6 +133,6 @@ class NeuronGroup : public SpikingGroup }; - +} #endif /*NEURONGROUP_H_*/ diff --git a/src/NmdaMonitor.cpp b/src/NmdaMonitor.cpp index 406bbcf6..b6cb04f7 100644 --- a/src/NmdaMonitor.cpp +++ b/src/NmdaMonitor.cpp @@ -25,7 +25,9 @@ #include "NmdaMonitor.h" -NmdaMonitor::NmdaMonitor(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize) : Monitor(filename) +using namespace auryn; + +NmdaMonitor::NmdaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) : Monitor(filename) { init(source,id,filename,stepsize); } @@ -34,20 +36,20 @@ NmdaMonitor::~NmdaMonitor() { } -void NmdaMonitor::init(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize) +void NmdaMonitor::init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; ssize = stepsize; nid = id; - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } void NmdaMonitor::propagate() { - if (sys->get_clock()%ssize==0) { - outfile << dt*(sys->get_clock()) << " " << src->get_nmda(nid) << "\n"; + if (auryn::sys->get_clock()%ssize==0) { + outfile << dt*(auryn::sys->get_clock()) << " " << src->get_nmda(nid) << "\n"; } } diff --git a/src/NmdaMonitor.h b/src/NmdaMonitor.h index 93684cc0..f85629fd 100644 --- a/src/NmdaMonitor.h +++ b/src/NmdaMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Records the NMDA conductance from one specific unit from the source group. */ class NmdaMonitor : protected Monitor @@ -50,4 +50,6 @@ class NmdaMonitor : protected Monitor void propagate(); }; +} + #endif /*NMDAMONITOR_H_*/ diff --git a/src/NormalStimulator.cpp b/src/NormalStimulator.cpp index 83fccd8b..30959a0d 100644 --- a/src/NormalStimulator.cpp +++ b/src/NormalStimulator.cpp @@ -20,17 +20,19 @@ #include "NormalStimulator.h" +using namespace auryn; + boost::mt19937 NormalStimulator::gen = boost::mt19937(); -NormalStimulator::NormalStimulator(NeuronGroup * target, AurynWeight sigma, string target_state ) : Monitor( ) +NormalStimulator::NormalStimulator(NeuronGroup * target, AurynWeight sigma, std::string target_state ) : Monitor( ) { init(target, sigma, target_state); } -void NormalStimulator::init( NeuronGroup * target, AurynWeight sigma, string target_state ) +void NormalStimulator::init( NeuronGroup * target, AurynWeight sigma, std::string target_state ) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); dst = target; set_target_state(target_state); @@ -38,11 +40,11 @@ void NormalStimulator::init( NeuronGroup * target, AurynWeight sigma, string tar normal_sigma = sigma; - stringstream oss; - oss << scientific << "NormalStimulator:: initializing with mean " << get_lambda(); - logger->msg(oss.str(),NOTIFICATION); + std::stringstream oss; + oss << std::scientific << "NormalStimulator:: initializing with mean " << get_lambda(); + auryn::logger->msg(oss.str(),NOTIFICATION); - seed(61093*communicator->rank()); + seed(61093*auryn::communicator->rank()); dist = new boost::normal_distribution (0.0, get_lambda()); die = new boost::variate_generator > ( gen, *dist ); } @@ -83,7 +85,7 @@ AurynFloat NormalStimulator::get_lambda() { return get_sigma(); } -void NormalStimulator::set_target_state(string state_name) { +void NormalStimulator::set_target_state(std::string state_name) { target_vector = dst->get_state_vector(state_name); } diff --git a/src/NormalStimulator.h b/src/NormalStimulator.h index d4f864c5..48e0e02c 100644 --- a/src/NormalStimulator.h +++ b/src/NormalStimulator.h @@ -31,7 +31,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Stimulator class to inject timeseries of currents to patterns (subpopulations) of neurons * @@ -104,4 +104,6 @@ class NormalStimulator : protected Monitor }; +} + #endif /*POISSONSTIMULATOR_H_*/ diff --git a/src/PairInteractionConnection.cpp b/src/PairInteractionConnection.cpp index 65bbcc43..17ff3972 100644 --- a/src/PairInteractionConnection.cpp +++ b/src/PairInteractionConnection.cpp @@ -20,6 +20,8 @@ #include "PairInteractionConnection.h" +using namespace auryn; + void PairInteractionConnection::init(AurynWeight maxw) { last_spike_pre = new AurynTime[get_m_rows()]; @@ -65,7 +67,7 @@ PairInteractionConnection::PairInteractionConnection(SpikingGroup * source, Neur PairInteractionConnection::PairInteractionConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness, - AurynWeight maxweight , TransmitterType transmitter, string name) + AurynWeight maxweight , TransmitterType transmitter, std::string name) : DuplexConnection(source, destination, weight, sparseness, transmitter, name) { init(maxweight); @@ -78,7 +80,7 @@ PairInteractionConnection::~PairInteractionConnection() inline AurynWeight PairInteractionConnection::dw_fwd(NeuronID post) { - AurynTime diff = sys->get_clock()-last_spike_post[post]; + AurynTime diff = auryn::sys->get_clock()-last_spike_post[post]; if ( stdp_active ) { if ( diff >= WINDOW_MAX_SIZE ) diff = WINDOW_MAX_SIZE-1; double dw = window_post_pre[diff]; @@ -89,7 +91,7 @@ inline AurynWeight PairInteractionConnection::dw_fwd(NeuronID post) inline AurynWeight PairInteractionConnection::dw_bkw(NeuronID pre) { - AurynTime diff = sys->get_clock()-last_spike_pre[pre]; + AurynTime diff = auryn::sys->get_clock()-last_spike_pre[pre]; if ( stdp_active ) { if ( diff >= WINDOW_MAX_SIZE ) diff = WINDOW_MAX_SIZE-1; double dw = window_pre_post[diff]; @@ -115,7 +117,7 @@ inline void PairInteractionConnection::propagate_forward() data[c-ind] += dw_fwd(*c); } // update pre_trace - last_spike_pre[*spike] = sys->get_clock(); + last_spike_pre[*spike] = auryn::sys->get_clock(); } } @@ -131,7 +133,7 @@ inline void PairInteractionConnection::propagate_backward() *data[c-ind] += dw_bkw(*c); } // update post trace - last_spike_post[*spike] = sys->get_clock(); + last_spike_post[*spike] = auryn::sys->get_clock(); } } @@ -145,9 +147,9 @@ void PairInteractionConnection::propagate() void PairInteractionConnection::load_window_from_file( const char * filename , double scale ) { - stringstream oss; + std::stringstream oss; oss << "PairInteractionConnection:: Loading STDP window from " << filename; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); // default window all zeros for ( int i = 0 ; i < WINDOW_MAX_SIZE ; ++i ) { @@ -155,11 +157,11 @@ void PairInteractionConnection::load_window_from_file( const char * filename , d window_post_pre[i] = 0; } - ifstream infile (filename); + std::ifstream infile (filename); if (!infile) { - stringstream oes; + std::stringstream oes; oes << "Can't open input file " << filename; - logger->msg(oes.str(),ERROR); + auryn::logger->msg(oes.str(),ERROR); return; } @@ -174,10 +176,10 @@ void PairInteractionConnection::load_window_from_file( const char * filename , d sscanf (buffer,"# %u %f",&size,&timebinsize); if ( size > 2*WINDOW_MAX_SIZE ) - logger->msg("PairInteractionConnection:: STDP window too large ... truncating!",WARNING); + auryn::logger->msg("PairInteractionConnection:: STDP window too large ... truncating!",WARNING); if ( dt < timebinsize ) - logger->msg("PairInteractionConnection:: Timebinning of loaded STDP window is different from simulator timestep.",WARNING); + auryn::logger->msg("PairInteractionConnection:: Timebinning of loaded STDP window is different from simulator timestep.",WARNING); double sum_pre_post = 0 ; double sum_post_pre = 0 ; @@ -202,20 +204,20 @@ void PairInteractionConnection::load_window_from_file( const char * filename , d } // for ( int i = 0 ; i < WINDOW_MAX_SIZE ; ++i ) { - // cout << scientific << window_pre_post[i] << endl; + // std::cout << std::ifstream << window_pre_post[i] << std::endl; // } // for ( int i = 0 ; i < WINDOW_MAX_SIZE ; ++i ) { - // cout << scientific << window_post_pre[i] << endl; + // std::cout << std::ifstream << window_post_pre[i] << std::endl; // } oss.str(""); oss << "PairInteractionConnection:: sum_pre_post=" - << scientific + << std::scientific << sum_pre_post << " sum_post_pre=" << sum_post_pre; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); infile.close(); diff --git a/src/PairInteractionConnection.h b/src/PairInteractionConnection.h index 4445dc75..5eeddb34 100644 --- a/src/PairInteractionConnection.h +++ b/src/PairInteractionConnection.h @@ -27,7 +27,7 @@ #include "DuplexConnection.h" #include "EulerTrace.h" -using namespace std; +namespace auryn { class PairInteractionConnection : public DuplexConnection @@ -71,4 +71,6 @@ class PairInteractionConnection : public DuplexConnection }; +} + #endif /*PAIRINTERACTIONCONNECTION_H_*/ diff --git a/src/PatternMonitor.cpp b/src/PatternMonitor.cpp index a0319bd5..14eb6199 100644 --- a/src/PatternMonitor.cpp +++ b/src/PatternMonitor.cpp @@ -25,22 +25,24 @@ #include "PatternMonitor.h" -PatternMonitor::PatternMonitor(SpikingGroup * source, string filename, string patfile, NeuronID maximum_patterns, AurynFloat binsize) : Monitor(filename) +using namespace auryn; + +PatternMonitor::PatternMonitor(SpikingGroup * source, std::string filename, std::string patfile, NeuronID maximum_patterns, AurynFloat binsize) : Monitor(filename) { init(source,filename,maximum_patterns,binsize); load_patterns(patfile); } -PatternMonitor::PatternMonitor(SpikingGroup * source, string filename, StimulusGroup * stimgroup, NeuronID maximum_patterns, AurynFloat binsize) : Monitor(filename) +PatternMonitor::PatternMonitor(SpikingGroup * source, std::string filename, StimulusGroup * stimgroup, NeuronID maximum_patterns, AurynFloat binsize) : Monitor(filename) { init(source,filename,maximum_patterns,binsize); delete patterns; linked_to_stimgroup = true; patterns = stimgroup->get_patterns(); - stringstream oss; + std::stringstream oss; oss << "PatternMonitor:: Linked to StimulusGroup"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } PatternMonitor::~PatternMonitor() @@ -50,9 +52,9 @@ PatternMonitor::~PatternMonitor() delete patterns; } -void PatternMonitor::init(SpikingGroup * source, string filename, NeuronID maximum_patterns, AurynFloat binsize) +void PatternMonitor::init(SpikingGroup * source, std::string filename, NeuronID maximum_patterns, AurynFloat binsize) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); linked_to_stimgroup = false; @@ -64,16 +66,16 @@ void PatternMonitor::init(SpikingGroup * source, string filename, NeuronID maxim maxpat = maximum_patterns; counter = new NeuronID [src->get_rank_size()]; - patterns = new vector; + patterns = new std::vector; for ( int i = 0 ; i < src->get_rank_size() ; ++i ) counter[i] = 0; - stringstream oss; + std::stringstream oss; oss << "PatternMonitor:: Setting binsize " << bsize << "s"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } void PatternMonitor::propagate() @@ -84,9 +86,9 @@ void PatternMonitor::propagate() counter[src->global2rank(*iter)] += 1; // might be more memory efficent to count here in rankIDs (local) } - if (sys->get_clock()%ssize==0) { - outfile << dt*(sys->get_clock()); - for ( vector::iterator pattern = patterns->begin() ; + if (auryn::sys->get_clock()%ssize==0) { + outfile << dt*(auryn::sys->get_clock()); + for ( std::vector::iterator pattern = patterns->begin() ; pattern != patterns->end() ; ++pattern ) { double sum = 0.; NeuronID act = 0; @@ -113,72 +115,72 @@ void PatternMonitor::propagate() } } -void PatternMonitor::load_patterns( string filename ) +void PatternMonitor::load_patterns( std::string filename ) { // if ( not src->evolve_locally() ) return ; - ifstream fin (filename.c_str()); - if (!fin) { - stringstream oss; - oss << "PatternMonitor:: " - << "There was a problem opening file " - << filename - << " for reading." - << endl; - logger->msg(oss.str(),ERROR); - return; - } + std::ifstream fin (filename.c_str()); + if (!fin) { + std::stringstream oss; + oss << "PatternMonitor:: " + << "There was a problem opening file " + << filename + << " for reading." + << std::endl; + auryn::logger->msg(oss.str(),ERROR); + return; + } - char buffer[256]; - string line; - - type_pattern pattern; - int total_pattern_size = 0; - while( !fin.eof() && patterns->size() < maxpat ) { - - line.clear(); - fin.getline (buffer,255); - line = buffer; - - if (line[0] == '#') continue; - if (line == "") { - if ( total_pattern_size > 0 ) { - stringstream oss; - oss << "PatternMonitor:: Read pattern " - << patterns->size() - << " with pattern size " - << total_pattern_size - << " ( " - << pattern.size() - << " on rank )"; - logger->msg(oss.str(),VERBOSE); - - patterns->push_back(pattern); - pattern.clear(); - total_pattern_size = 0; - } - continue; + char buffer[256]; + std::string line; + + type_pattern pattern; + int total_pattern_size = 0; + while( !fin.eof() && patterns->size() < maxpat ) { + + line.clear(); + fin.getline (buffer,255); + line = buffer; + + if (line[0] == '#') continue; + if (line == "") { + if ( total_pattern_size > 0 ) { + std::stringstream oss; + oss << "PatternMonitor:: Read pattern " + << patterns->size() + << " with pattern size " + << total_pattern_size + << " ( " + << pattern.size() + << " on rank )"; + auryn::logger->msg(oss.str(),VERBOSE); + + patterns->push_back(pattern); + pattern.clear(); + total_pattern_size = 0; } + continue; + } - stringstream iss (line); - NeuronID i ; - iss >> i ; - if ( src->localrank( i ) ) { - pattern_member pm; - pm.gamma = 1 ; - iss >> pm.gamma ; - pm.i = src->global2rank( i ) ; - pattern.push_back( pm ) ; - } - total_pattern_size++; + std::stringstream iss (line); + NeuronID i ; + iss >> i ; + if ( src->localrank( i ) ) { + pattern_member pm; + pm.gamma = 1 ; + iss >> pm.gamma ; + pm.i = src->global2rank( i ) ; + pattern.push_back( pm ) ; } + total_pattern_size++; + } - fin.close(); + fin.close(); - stringstream oss; - oss << "PatternMonitor:: Finished loading " << patterns->size() << " patterns"; - logger->msg(oss.str(),NOTIFICATION); + std::stringstream oss; + oss << "PatternMonitor:: Finished loading " << patterns->size() << " patterns"; + auryn::logger->msg(oss.str(),NOTIFICATION); } void PatternMonitor::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) diff --git a/src/PatternMonitor.h b/src/PatternMonitor.h index b1cc72b7..244bccaf 100644 --- a/src/PatternMonitor.h +++ b/src/PatternMonitor.h @@ -34,7 +34,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Monitor class to record population firing rates * @@ -55,7 +55,7 @@ class PatternMonitor : protected Monitor /*! Maximum number of patterns to record from */ NeuronID maxpat; /*! Vector storing all the patterns */ - vector * patterns; + std::vector * patterns; bool linked_to_stimgroup; @@ -95,4 +95,6 @@ class PatternMonitor : protected Monitor void load_patterns( string filename ); }; +} + #endif /*PATTERNMONITOR_H_*/ diff --git a/src/PatternStimulator.cpp b/src/PatternStimulator.cpp index 994e25ae..c6202aa9 100644 --- a/src/PatternStimulator.cpp +++ b/src/PatternStimulator.cpp @@ -25,13 +25,15 @@ #include "PatternStimulator.h" -PatternStimulator::PatternStimulator(NeuronGroup * target, string filename, string patfile, AurynFloat scale, NeuronID maximum_patterns) : Monitor( "" ) +using namespace auryn; + +PatternStimulator::PatternStimulator(NeuronGroup * target, std::string filename, std::string patfile, AurynFloat scale, NeuronID maximum_patterns) : Monitor( "" ) { init(target,filename,scale,maximum_patterns); - string s = patfile; + std::string s = patfile; if ( s.empty() ) { - stringstream oss; - logger->msg("No patfile given assuming whole population",NOTIFICATION); + std::stringstream oss; + auryn::logger->msg("No patfile given assuming whole population",NOTIFICATION); load_1_pattern(); } else { load_patterns(patfile); @@ -47,24 +49,24 @@ PatternStimulator::~PatternStimulator() delete newcurrents; } -void PatternStimulator::init(NeuronGroup * target, string filename, AurynFloat scale, NeuronID maximum_patterns) +void PatternStimulator::init(NeuronGroup * target, std::string filename, AurynFloat scale, NeuronID maximum_patterns) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); dst = target; set_scale(scale); maxpat = maximum_patterns; - patterns = new vector; + patterns = new std::vector; mem = dst->get_mem_ptr(); filetime = 0; - timeseriesfile.open(filename.c_str(),ios::in); + timeseriesfile.open(filename.c_str(),std::ios::in); if (!timeseriesfile) { - stringstream oss; + std::stringstream oss; oss << "Can't open time series file " << filename; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); exit(1); } @@ -75,8 +77,8 @@ void PatternStimulator::propagate() if ( dst->evolve_locally() ) { char buffer[256]; - string line; - while( !timeseriesfile.eof() && filetime < sys->get_clock() ) { + std::string line; + while( !timeseriesfile.eof() && filetime < auryn::sys->get_clock() ) { line.clear(); timeseriesfile.getline (buffer,255); // FIXME This buffer can quickly become to small of read lots of columns @@ -86,7 +88,7 @@ void PatternStimulator::propagate() // machines with limited resources. line = buffer; if (line[0] == '#') continue; - stringstream iss (line); + std::stringstream iss (line); double time; iss >> time; filetime = time/dt; @@ -100,7 +102,7 @@ void PatternStimulator::propagate() } AurynState * cur_iter = currents; - for ( vector::const_iterator pattern = patterns->begin() ; + for ( std::vector::const_iterator pattern = patterns->begin() ; pattern != patterns->end() ; ++pattern ) { for ( type_pattern::const_iterator piter = pattern->begin() ; piter != pattern->end() ; ++piter ) { mem->data[piter->i] += *cur_iter * piter->gamma * scl * dt; @@ -126,75 +128,75 @@ void PatternStimulator::load_1_pattern( ) newcurrents[0] = 0; } -void PatternStimulator::load_patterns( string filename ) +void PatternStimulator::load_patterns( std::string filename ) { - ifstream fin (filename.c_str()); - if (!fin) { - stringstream oss; - oss << "PatternStimulator:: " - << "There was a problem opening file " - << filename - << " for reading." - << endl; - logger->msg(oss.str(),ERROR); - return; - } - - char buffer[256]; - string line; + std::ifstream fin (filename.c_str()); + if (!fin) { + std::stringstream oss; + oss << "PatternStimulator:: " + << "There was a problem opening file " + << filename + << " for reading." + << std::endl; + auryn::logger->msg(oss.str(),ERROR); + return; + } - type_pattern pattern; - int total_pattern_size = 0; - while( !fin.eof() && patterns->size() < maxpat ) { + char buffer[256]; + std::string line; - line.clear(); - fin.getline (buffer,255); - line = buffer; - - if (line[0] == '#') continue; - if (line == "") { - if ( total_pattern_size > 0 ) { - stringstream oss; - oss << "PatternStimulator:: Read pattern " - << patterns->size() - << " with pattern size " - << total_pattern_size - << " ( " - << pattern.size() - << " on rank )"; - logger->msg(oss.str(),VERBOSE); - patterns->push_back(pattern); - pattern.clear(); - total_pattern_size = 0; - } - continue; + type_pattern pattern; + int total_pattern_size = 0; + while( !fin.eof() && patterns->size() < maxpat ) { + + line.clear(); + fin.getline (buffer,255); + line = buffer; + + if (line[0] == '#') continue; + if (line == "") { + if ( total_pattern_size > 0 ) { + std::stringstream oss; + oss << "PatternStimulator:: Read pattern " + << patterns->size() + << " with pattern size " + << total_pattern_size + << " ( " + << pattern.size() + << " on rank )"; + auryn::logger->msg(oss.str(),VERBOSE); + patterns->push_back(pattern); + pattern.clear(); + total_pattern_size = 0; } + continue; + } - stringstream iss (line); - NeuronID i ; - iss >> i ; - if ( dst->localrank( i ) ) { - pattern_member pm; - pm.gamma = 1 ; - iss >> pm.gamma ; - pm.i = dst->global2rank( i ) ; - pattern.push_back( pm ) ; - } - total_pattern_size++; + std::stringstream iss (line); + NeuronID i ; + iss >> i ; + if ( dst->localrank( i ) ) { + pattern_member pm; + pm.gamma = 1 ; + iss >> pm.gamma ; + pm.i = dst->global2rank( i ) ; + pattern.push_back( pm ) ; } + total_pattern_size++; + } - fin.close(); + fin.close(); - currents = new AurynState[patterns->size()]; - newcurrents = new AurynState[patterns->size()]; - for ( unsigned int i = 0 ; i < patterns->size() ; ++i ) { - newcurrents[i] = 0; - currents[i] = 0; - } + currents = new AurynState[patterns->size()]; + newcurrents = new AurynState[patterns->size()]; + for ( unsigned int i = 0 ; i < patterns->size() ; ++i ) { + newcurrents[i] = 0; + currents[i] = 0; + } - stringstream oss; - oss << "PatternStimulator:: Finished loading " << patterns->size() << " patterns"; - logger->msg(oss.str(),NOTIFICATION); + std::stringstream oss; + oss << "PatternStimulator:: Finished loading " << patterns->size() << " patterns"; + auryn::logger->msg(oss.str(),NOTIFICATION); } void PatternStimulator::set_scale(AurynFloat scale) { diff --git a/src/PatternStimulator.h b/src/PatternStimulator.h index 608c59d3..579922d2 100644 --- a/src/PatternStimulator.h +++ b/src/PatternStimulator.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Stimulator class to inject timeseries of currents to patterns (subpopulations) of neurons * @@ -46,13 +46,13 @@ class PatternStimulator : protected Monitor /*! Maximum number of patterns to inject to */ NeuronID maxpat; /*! Vector storing all the patterns */ - vector * patterns; + std::vector * patterns; /*! Vector storing all the current values */ AurynState * currents; /*! Vector storing all new current values */ AurynState * newcurrents; /*! Input filestream for time series data */ - ifstream timeseriesfile; + std::ifstream timeseriesfile; /*! Target membrane */ auryn_vector_float * mem; @@ -92,4 +92,6 @@ class PatternStimulator : protected Monitor void load_1_pattern( ); }; +} + #endif /*PATTERNSTIMULATOR_H_*/ diff --git a/src/PoissonGroup.cpp b/src/PoissonGroup.cpp index 179df777..94a62660 100644 --- a/src/PoissonGroup.cpp +++ b/src/PoissonGroup.cpp @@ -25,11 +25,13 @@ #include "PoissonGroup.h" +using namespace auryn; + boost::mt19937 PoissonGroup::gen = boost::mt19937(); void PoissonGroup::init(AurynDouble rate) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); if ( evolve_locally() ) { dist = new boost::uniform_01<> (); @@ -38,9 +40,9 @@ void PoissonGroup::init(AurynDouble rate) x = 0; set_rate( rate ); - stringstream oss; - oss << "PoissonGroup:: Seeding with " << communicator->rank(); - logger->msg(oss.str(),NOTIFICATION); + std::stringstream oss; + oss << "PoissonGroup:: Seeding with " << auryn::communicator->rank(); + auryn::logger->msg(oss.str(),NOTIFICATION); } } @@ -94,6 +96,6 @@ void PoissonGroup::evolve() void PoissonGroup::seed(int s) { - gen.seed(s+communicator->rank()); // TODO solve seeding problem + gen.seed(s+auryn::communicator->rank()); // TODO solve seeding problem } diff --git a/src/PoissonGroup.h b/src/PoissonGroup.h index afbe1229..82e6a651 100644 --- a/src/PoissonGroup.h +++ b/src/PoissonGroup.h @@ -37,7 +37,7 @@ #define POISSON_LOAD_MULTIPLIER 0.01 -using namespace std; +namespace auryn { /*! \brief A SpikingGroup that creates poissonian spikes with a given rate. * @@ -86,4 +86,6 @@ class PoissonGroup : public SpikingGroup void seed(int s); }; +} + #endif /*NEURONGROUP_H_*/ diff --git a/src/PoissonStimulator.cpp b/src/PoissonStimulator.cpp index 1742eb34..5ecaf716 100644 --- a/src/PoissonStimulator.cpp +++ b/src/PoissonStimulator.cpp @@ -25,6 +25,8 @@ #include "PoissonStimulator.h" +using namespace auryn; + boost::mt19937 PoissonStimulator::gen = boost::mt19937(); PoissonStimulator::PoissonStimulator(NeuronGroup * target, AurynFloat rate, AurynWeight w ) : Monitor( ) @@ -35,7 +37,7 @@ PoissonStimulator::PoissonStimulator(NeuronGroup * target, AurynFloat rate, Aury void PoissonStimulator::init( NeuronGroup * target, AurynFloat rate, AurynWeight w ) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); dst = target; set_target_state(); @@ -44,11 +46,11 @@ void PoissonStimulator::init( NeuronGroup * target, AurynFloat rate, AurynWeight poisson_rate = rate; - stringstream oss; - oss << scientific << "PoissonStimulator:: initializing with mean " << get_lambda(); - logger->msg(oss.str(),NOTIFICATION); + std::stringstream oss; + oss << std::scientific << "PoissonStimulator:: initializing with mean " << get_lambda(); + auryn::logger->msg(oss.str(),NOTIFICATION); - seed(61093*communicator->rank()); + seed(61093*auryn::communicator->rank()); dist = new boost::poisson_distribution (get_lambda()); die = new boost::variate_generator > ( gen, *dist ); } @@ -89,7 +91,7 @@ AurynFloat PoissonStimulator::get_lambda() { return get_rate()*dt; } -void PoissonStimulator::set_target_state(string state_name) { +void PoissonStimulator::set_target_state(std::string state_name) { target_vector = dst->get_state_vector(state_name); } diff --git a/src/PoissonStimulator.h b/src/PoissonStimulator.h index e2fd40c8..3b215181 100644 --- a/src/PoissonStimulator.h +++ b/src/PoissonStimulator.h @@ -36,7 +36,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Stimulator class to inject timeseries of currents to patterns (subpopulations) of neurons * @@ -112,4 +112,6 @@ class PoissonStimulator : protected Monitor }; +} + #endif /*POISSONSTIMULATOR_H_*/ diff --git a/src/PopulationRateMonitor.cpp b/src/PopulationRateMonitor.cpp index 8846eb14..2b37be96 100644 --- a/src/PopulationRateMonitor.cpp +++ b/src/PopulationRateMonitor.cpp @@ -25,7 +25,9 @@ #include "PopulationRateMonitor.h" -PopulationRateMonitor::PopulationRateMonitor(SpikingGroup * source, string filename, AurynDouble binsize) : Monitor(filename) +using namespace auryn; + +PopulationRateMonitor::PopulationRateMonitor(SpikingGroup * source, std::string filename, AurynDouble binsize) : Monitor(filename) { init(source,filename,binsize); } @@ -34,9 +36,9 @@ PopulationRateMonitor::~PopulationRateMonitor() { } -void PopulationRateMonitor::init(SpikingGroup * source, string filename, AurynDouble binsize) +void PopulationRateMonitor::init(SpikingGroup * source, std::string filename, AurynDouble binsize) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; invbsize = 1.0/binsize; @@ -44,9 +46,9 @@ void PopulationRateMonitor::init(SpikingGroup * source, string filename, AurynDo if ( ssize < 1 ) ssize = 1; counter = 0; - stringstream oss; + std::stringstream oss; oss << "PopulationRateMonitor:: Setting binsize " << binsize << "s"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); // outfile << setiosflags(ios::fixed) << setprecision(6); } @@ -55,10 +57,10 @@ void PopulationRateMonitor::propagate() { if ( src->evolve_locally() ) { counter += src->get_spikes_immediate()->size(); - if (sys->get_clock()%ssize==0) { + if (auryn::sys->get_clock()%ssize==0) { double rate = invbsize*counter/src->get_rank_size(); counter = 0; - outfile << sys->get_time() << " " << rate << "\n"; + outfile << auryn::sys->get_time() << " " << rate << "\n"; } } } diff --git a/src/PopulationRateMonitor.h b/src/PopulationRateMonitor.h index e10546c4..06967165 100644 --- a/src/PopulationRateMonitor.h +++ b/src/PopulationRateMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Monitor class to record population firing rates * @@ -72,4 +72,6 @@ class PopulationRateMonitor : protected Monitor void propagate(); }; +} + #endif /*POPULATIONRATEMONITOR_H_*/ diff --git a/src/ProfilePoissonGroup.cpp b/src/ProfilePoissonGroup.cpp index 3518d9eb..19a38123 100644 --- a/src/ProfilePoissonGroup.cpp +++ b/src/ProfilePoissonGroup.cpp @@ -25,17 +25,19 @@ #include "ProfilePoissonGroup.h" +using namespace auryn; + boost::mt19937 ProfilePoissonGroup::gen = boost::mt19937(); void ProfilePoissonGroup::init(AurynDouble rate) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); if ( evolve_locally() ) { lambda = rate; dist = new boost::uniform_01<> (); die = new boost::variate_generator > ( gen, *dist ); - seed(communicator->rank()); // seeding problem + seed(auryn::communicator->rank()); // seeding problem x = 0; jumpsize = 0; @@ -43,9 +45,9 @@ void ProfilePoissonGroup::init(AurynDouble rate) profile = new AurynFloat[get_rank_size()]; set_flat_profile(); - stringstream oss; - oss << "ProfilePoissonGroup:: Seeding with " << communicator->rank(); - logger->msg(oss.str(),NOTIFICATION); + std::stringstream oss; + oss << "ProfilePoissonGroup:: Seeding with " << auryn::communicator->rank(); + auryn::logger->msg(oss.str(),NOTIFICATION); } } @@ -109,9 +111,9 @@ void ProfilePoissonGroup::set_profile( AurynFloat * newprofile ) normalize_profile(); - stringstream oss; + std::stringstream oss; oss << "ProfilePoissonGroup:: Successfully set external profile." ; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } void ProfilePoissonGroup::set_gaussian_profile(AurynDouble mean, AurynDouble sigma, AurynDouble floor) @@ -123,14 +125,14 @@ void ProfilePoissonGroup::set_gaussian_profile(AurynDouble mean, AurynDouble si normalize_profile(); - stringstream oss; + std::stringstream oss; oss << "ProfilePoissonGroup:: Set gaussian profile with mean=" << mean << " and sigma=" << sigma << " and floor=" << floor; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } AurynDouble ProfilePoissonGroup::get_rate() @@ -142,7 +144,7 @@ AurynDouble ProfilePoissonGroup::get_rate() void ProfilePoissonGroup::evolve() { while ( x < get_rank_size() ) { - // cout << x << endl; + // std::cout << x << std::endl; jumpsize -= profile[x]; if ( jumpsize < 0 ) { // reached jump target -> spike push_spike ( x ); diff --git a/src/ProfilePoissonGroup.h b/src/ProfilePoissonGroup.h index 20786a63..7f731901 100644 --- a/src/ProfilePoissonGroup.h +++ b/src/ProfilePoissonGroup.h @@ -37,7 +37,7 @@ #define PROFILEPOISSON_LOAD_MULTIPLIER 0.01 -using namespace std; +namespace auryn { /*! \brief A SpikingGroup that creates poissonian spikes with a given rate * and spatial profile. @@ -103,4 +103,6 @@ class ProfilePoissonGroup : public SpikingGroup void seed(int s); }; +} + #endif /*NEURONGROUP_H_*/ diff --git a/src/RateChecker.cpp b/src/RateChecker.cpp index 428b92e8..e29badde 100644 --- a/src/RateChecker.cpp +++ b/src/RateChecker.cpp @@ -25,6 +25,8 @@ #include "RateChecker.h" +using namespace auryn; + RateChecker::RateChecker(SpikingGroup * source, AurynFloat max) : Checker(source) { init(0.,max,1.); @@ -42,7 +44,7 @@ RateChecker::~RateChecker() void RateChecker::init(AurynFloat min, AurynFloat max, AurynFloat tau) { if ( src->evolve_locally() ) - sys->register_checker(this); + auryn::sys->register_checker(this); timeconstant = tau; size = src->get_size(); popmin = min; diff --git a/src/RateChecker.h b/src/RateChecker.h index 2a480d8a..634927fc 100644 --- a/src/RateChecker.h +++ b/src/RateChecker.h @@ -31,7 +31,7 @@ #include "Checker.h" #include "SpikingGroup.h" -using namespace std; +namespace auryn { /*! \brief A Checker class that tracks population firing rate as a moving * average and breaks a run if it goes out of bound. @@ -94,4 +94,6 @@ class RateChecker : public Checker void reset(); }; +} + #endif /*RATECHECKER_H_*/ diff --git a/src/RateModulatedConnection.cpp b/src/RateModulatedConnection.cpp index f9c387bf..ff71cc17 100644 --- a/src/RateModulatedConnection.cpp +++ b/src/RateModulatedConnection.cpp @@ -25,6 +25,8 @@ #include "RateModulatedConnection.h" +using namespace auryn; + void RateModulatedConnection::init() { rate_target = 5; @@ -76,7 +78,7 @@ RateModulatedConnection::RateModulatedConnection(NeuronID rows, NeuronID cols) RateModulatedConnection::RateModulatedConnection( SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness, - TransmitterType transmitter, string name) + TransmitterType transmitter, std::string name) : SparseConnection(source,destination,weight,sparseness,transmitter, name) { init(); @@ -142,16 +144,16 @@ void RateModulatedConnection::stats(AurynFloat &mean, AurynFloat &std) std *= rate_modulation_mul; } -bool RateModulatedConnection::write_to_file(string filename) +bool RateModulatedConnection::write_to_file(std::string filename) { - stringstream oss; + std::stringstream oss; oss << filename << ".cstate"; - ofstream outfile; - outfile.open(oss.str().c_str(),ios::out); + std::ofstream outfile; + outfile.open(oss.str().c_str(),std::ios::out); if (!outfile) { - cerr << "Can't open output file " << filename << endl; + std::cerr << "Can't open output file " << filename << std::endl; throw AurynOpenFileException(); } @@ -164,17 +166,17 @@ bool RateModulatedConnection::write_to_file(string filename) return SparseConnection::write_to_file(filename); } -bool RateModulatedConnection::load_from_file(string filename) +bool RateModulatedConnection::load_from_file(std::string filename) { - stringstream oss; + std::stringstream oss; oss << filename << ".cstate"; - ifstream infile (oss.str().c_str()); + std::ifstream infile (oss.str().c_str()); if (!infile) { - stringstream oes; + std::stringstream oes; oes << "Can't open input file " << filename; - logger->msg(oes.str(),ERROR); + auryn::logger->msg(oes.str(),ERROR); throw AurynOpenFileException(); } diff --git a/src/RateModulatedConnection.h b/src/RateModulatedConnection.h index f4456cf8..64d32a5d 100644 --- a/src/RateModulatedConnection.h +++ b/src/RateModulatedConnection.h @@ -35,7 +35,7 @@ #include #include -using namespace std; +namespace auryn { typedef SimpleMatrix BackwardMatrix; @@ -106,4 +106,6 @@ class RateModulatedConnection : public SparseConnection virtual bool write_to_file(string filename); }; +} + #endif /*RATEMODULATEDCONNECTION_H_*/ diff --git a/src/RateMonitor.cpp b/src/RateMonitor.cpp index 4bc6d403..a9f8b6cb 100644 --- a/src/RateMonitor.cpp +++ b/src/RateMonitor.cpp @@ -25,7 +25,9 @@ #include "RateMonitor.h" -RateMonitor::RateMonitor(SpikingGroup * source, string filename, AurynFloat samplinginterval) : Monitor(filename) +using namespace auryn; + +RateMonitor::RateMonitor(SpikingGroup * source, std::string filename, AurynFloat samplinginterval) : Monitor(filename) { init(source,filename,samplinginterval); } @@ -34,9 +36,9 @@ RateMonitor::~RateMonitor() { } -void RateMonitor::init(SpikingGroup * source, string filename, AurynFloat samplinginterval) +void RateMonitor::init(SpikingGroup * source, std::string filename, AurynFloat samplinginterval) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; ssize = samplinginterval/dt; @@ -46,18 +48,18 @@ void RateMonitor::init(SpikingGroup * source, string filename, AurynFloat sampli tr_post = source->get_post_trace(tau_filter); - stringstream oss; + std::stringstream oss; oss << "RateMonitor:: Setting sampling interval " << samplinginterval << "s"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } void RateMonitor::propagate() { if ( src->evolve_locally() ) { - if (sys->get_clock()%ssize==0) { - outfile << dt*(sys->get_clock()) << " "; + if (auryn::sys->get_clock()%ssize==0) { + outfile << dt*(auryn::sys->get_clock()) << " "; for (NeuronID i = 0 ; i < src->get_rank_size() ; ++i ) { outfile << tr_post->normalized_get(i) << " "; diff --git a/src/RateMonitor.h b/src/RateMonitor.h index 9ca03827..4708a7ad 100644 --- a/src/RateMonitor.h +++ b/src/RateMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Monitor class to record neural firing rates * @@ -78,4 +78,6 @@ class RateMonitor : protected Monitor void propagate(); }; +} + #endif /*RATEMONITOR_H_*/ diff --git a/src/RealTimeMonitor.cpp b/src/RealTimeMonitor.cpp index 0d055d08..394feb38 100644 --- a/src/RealTimeMonitor.cpp +++ b/src/RealTimeMonitor.cpp @@ -25,20 +25,22 @@ #include "RealTimeMonitor.h" -RealTimeMonitor::RealTimeMonitor(string filename, AurynDouble start, AurynDouble stop) : Monitor(filename) +using namespace auryn; + +RealTimeMonitor::RealTimeMonitor(std::string filename, AurynDouble start, AurynDouble stop) : Monitor(filename) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); t_start = start/dt; t_stop = stop/dt; - if (sys->get_com()->rank() == 0) { + if (auryn::sys->get_com()->rank() == 0) { ptime_offset = boost::posix_time::microsec_clock::local_time(); - string sendstring = boost::posix_time::to_iso_string(ptime_offset); - broadcast(*sys->get_com(), sendstring, 0); + std::string sendstring = boost::posix_time::to_iso_string(ptime_offset); + broadcast(*auryn::sys->get_com(), sendstring, 0); } else { - string timestring; - broadcast(*sys->get_com(), timestring , 0); + std::string timestring; + broadcast(*auryn::sys->get_com(), timestring , 0); ptime_offset = boost::posix_time::from_iso_string(timestring); } } @@ -49,9 +51,9 @@ RealTimeMonitor::~RealTimeMonitor() void RealTimeMonitor::propagate() { - if ( t_stop > sys->get_clock() && t_start < sys->get_clock() ) { + if ( t_stop > auryn::sys->get_clock() && t_start < auryn::sys->get_clock() ) { boost::posix_time::ptime now = boost::posix_time::microsec_clock::local_time(); boost::posix_time::time_duration diff = now - ptime_offset; - outfile << (sys->get_clock()) << " " << diff.total_microseconds() << "\n"; + outfile << (auryn::sys->get_clock()) << " " << diff.total_microseconds() << "\n"; } } diff --git a/src/RealTimeMonitor.h b/src/RealTimeMonitor.h index 505dd6e6..a24d5d16 100644 --- a/src/RealTimeMonitor.h +++ b/src/RealTimeMonitor.h @@ -34,7 +34,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Monitor class to record the system time in every timestep * @@ -60,7 +60,7 @@ class RealTimeMonitor : protected Monitor @param[filename] The filename to write to (should be different for each rank.) @param[start] Start time.) @param[stop] Stop time.*/ - RealTimeMonitor(string filename, AurynDouble start = 1e-3, AurynDouble stop = 100); + RealTimeMonitor(std::string filename, AurynDouble start = 1e-3, AurynDouble stop = 100); /*! Default Destructor */ virtual ~RealTimeMonitor(); @@ -69,4 +69,6 @@ class RealTimeMonitor : protected Monitor void propagate(); }; +} + #endif /*REALTIMEMONITOR_H_*/ diff --git a/src/SIFGroup.cpp b/src/SIFGroup.cpp index 47c06d0c..dfaf140e 100644 --- a/src/SIFGroup.cpp +++ b/src/SIFGroup.cpp @@ -20,9 +20,11 @@ #include "SIFGroup.h" +using namespace auryn; + SIFGroup::SIFGroup(NeuronID size) : NeuronGroup(size) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); if ( evolve_locally() ) init(); } @@ -136,9 +138,9 @@ AurynFloat SIFGroup::get_bg_current(NeuronID i) { return 0; } -string SIFGroup::get_output_line(NeuronID i) +std::string SIFGroup::get_output_line(NeuronID i) { - stringstream oss; + std::stringstream oss; oss << get_mem(i) << " " << get_ampa(i) << " " << get_gaba(i) << " " << auryn_vector_ushort_get (ref, i) << "\n"; return oss.str(); } diff --git a/src/SIFGroup.h b/src/SIFGroup.h index 9eb6a72a..dbd67a15 100644 --- a/src/SIFGroup.h +++ b/src/SIFGroup.h @@ -25,6 +25,7 @@ #include "NeuronGroup.h" #include "System.h" +namespace auryn { /*! \brief Conductance based neuron model with absolute refractoriness used for Neural Sampling */ @@ -85,5 +86,7 @@ class SIFGroup : public NeuronGroup void evolve(); }; +} + #endif /*SIFGROUP_H_*/ diff --git a/src/STDPConnection.cpp b/src/STDPConnection.cpp index 004122f7..4a546eef 100644 --- a/src/STDPConnection.cpp +++ b/src/STDPConnection.cpp @@ -20,6 +20,8 @@ #include "STDPConnection.h" +using namespace auryn; + void STDPConnection::init(AurynFloat eta, AurynFloat tau_pre, AurynFloat tau_post, AurynFloat maxweight) { if ( dst->get_post_size() == 0 ) return; @@ -27,9 +29,9 @@ void STDPConnection::init(AurynFloat eta, AurynFloat tau_pre, AurynFloat tau_pos A = eta; // post-pre B = eta; // pre-post - logger->parameter("eta",eta); - logger->parameter("A",A); - logger->parameter("B",B); + auryn::logger->parameter("eta",eta); + auryn::logger->parameter("A",A); + auryn::logger->parameter("B",B); tr_pre = src->get_pre_trace(tau_pre); tr_post = dst->get_post_trace(tau_post); @@ -75,7 +77,7 @@ STDPConnection::STDPConnection(SpikingGroup * source, NeuronGroup * destination, AurynFloat tau_post, AurynFloat maxweight, TransmitterType transmitter, - string name) + std::string name) : DuplexConnection(source, destination, weight, diff --git a/src/STDPConnection.h b/src/STDPConnection.h index 3fb1dde4..e20aa188 100644 --- a/src/STDPConnection.h +++ b/src/STDPConnection.h @@ -28,7 +28,7 @@ #include "SpikeDelay.h" -using namespace std; +namespace auryn { /*! \brief Double STDP All-to-All Connection @@ -91,4 +91,6 @@ class STDPConnection : public DuplexConnection }; +} + #endif /*STDPCONNECTION_H_*/ diff --git a/src/STDPwdConnection.cpp b/src/STDPwdConnection.cpp index 547427d0..eec88ed4 100644 --- a/src/STDPwdConnection.cpp +++ b/src/STDPwdConnection.cpp @@ -25,6 +25,8 @@ #include "STDPwdConnection.h" +using namespace auryn; + void STDPwdConnection::init(AurynWeight lambda, AurynWeight maxweight) { if ( dst->get_post_size() == 0 ) return; @@ -99,7 +101,7 @@ STDPwdConnection::STDPwdConnection(SpikingGroup * source, NeuronGroup * destinat AurynWeight lambda, AurynWeight maxweight , TransmitterType transmitter, - string name) + std::string name) : DuplexConnection(source, destination, weight, @@ -171,28 +173,28 @@ void STDPwdConnection::set_alpha(AurynWeight a) { param_alpha = a; compute_fudge_factors(); - logger->parameter("alpha",param_alpha); + auryn::logger->parameter("alpha",param_alpha); } void STDPwdConnection::set_lambda(AurynWeight l) { param_lambda = l; compute_fudge_factors(); - logger->parameter("lambda",param_lambda); + auryn::logger->parameter("lambda",param_lambda); } void STDPwdConnection::set_mu_plus(AurynWeight m) { param_mu_plus = m; compute_fudge_factors(); - logger->parameter("mu_plus",param_mu_plus); + auryn::logger->parameter("mu_plus",param_mu_plus); } void STDPwdConnection::set_mu_minus(AurynWeight m) { param_mu_minus = m; compute_fudge_factors(); - logger->parameter("mu_minus",param_mu_minus); + auryn::logger->parameter("mu_minus",param_mu_minus); } void STDPwdConnection::set_max_weight(AurynWeight wmax) diff --git a/src/STDPwdConnection.h b/src/STDPwdConnection.h index b6959b7b..c7d29667 100644 --- a/src/STDPwdConnection.h +++ b/src/STDPwdConnection.h @@ -33,7 +33,7 @@ #include "SpikeDelay.h" -using namespace std; +namespace auryn { /*! \brief Doublet STDP All-to-All as implemented in NEST as stdp_synapse_hom @@ -119,4 +119,6 @@ class STDPwdConnection : public DuplexConnection }; +} + #endif /*STDPWDCONNECTION_H_*/ diff --git a/src/STPConnection.cpp b/src/STPConnection.cpp index c8af7b31..07b1c649 100644 --- a/src/STPConnection.cpp +++ b/src/STPConnection.cpp @@ -25,6 +25,8 @@ #include "STPConnection.h" +using namespace auryn; + void STPConnection::init() { if ( src->get_rank_size() > 0 ) { @@ -83,7 +85,7 @@ STPConnection::STPConnection(NeuronID rows, NeuronID cols) STPConnection::STPConnection( SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness, - TransmitterType transmitter, string name) + TransmitterType transmitter, std::string name) : SparseConnection(source,destination,weight,sparseness,transmitter, name) { if ( dst->get_post_size() > 0 ) @@ -138,7 +140,7 @@ void STPConnection::evolve() // double x = auryn_vector_float_get( state_x, 0 ); // double u = auryn_vector_float_get( state_u, 0 ); - // cout << setprecision(5) << x << " " << u << " " << x*u << endl; + // std::cout << setprecision(5) << x << " " << u << " " << x*u << std::endl; } void STPConnection::propagate() diff --git a/src/STPConnection.h b/src/STPConnection.h index 65e5af20..13a0b7e6 100644 --- a/src/STPConnection.h +++ b/src/STPConnection.h @@ -30,7 +30,7 @@ #include "SparseConnection.h" -using namespace std; +namespace auryn { @@ -126,4 +126,6 @@ class STPConnection : public SparseConnection }; +} + #endif /*STPCONNECTION_H_*/ diff --git a/src/SimpleMatrix.h b/src/SimpleMatrix.h index 878a1bbe..9e6ee15c 100644 --- a/src/SimpleMatrix.h +++ b/src/SimpleMatrix.h @@ -32,7 +32,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Template for a sparse matrix with row major ordering and fast access of rows. * @@ -424,7 +424,7 @@ T * SimpleMatrix::get_ptr(NeuronID i, NeuronID j) c = lo + (hi-lo)/2; if ( *c < j ) lo = c+1; else hi = c; - //cout << i << ":" << j << " " << *lo << ":" << *hi << endl; + //std::cout << i << ":" << j << " " << *lo << ":" << *hi << endl; } if ( *lo == j ) { @@ -608,7 +608,7 @@ void SimpleMatrix::print() { for (NeuronID i = 0 ; i < m_rows ; ++i) { for (NeuronID * r = get_row_begin(i) ; r != get_row_end(i) ; ++r ) { - cout << i << " " << *r << " " << coldata[r-colinds] << "\n"; + std::cout << i << " " << *r << " " << coldata[r-colinds] << "\n"; } } } @@ -653,6 +653,8 @@ NeuronID SimpleMatrix::get_data_offset(NeuronID * r) return r-get_ind_begin(); } +} + #endif /*SIMPLEMATRIX_H_*/ diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 6ef8891c..71fdfc3a 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -25,6 +25,8 @@ #include "SparseConnection.h" +using namespace auryn; + // static members boost::mt19937 SparseConnection::sparse_connection_gen = boost::mt19937(); bool SparseConnection::has_been_seeded = false; @@ -61,15 +63,15 @@ SparseConnection::SparseConnection( AurynWeight weight, AurynFloat sparseness, TransmitterType transmitter, - string name) + std::string name) : Connection(source,destination,transmitter,name) { init(); - stringstream oss; + std::stringstream oss; AurynLong anticipatedsize = (AurynLong) (estimate_required_nonzero_entires ( sparseness*src->get_pre_size()*dst->get_post_size() ) ); oss << "SparseConnection: ("<< get_name() <<"): Assuming memory demand for pre #" << src->get_pre_size() << " and post #" << dst->get_post_size() - << std::scientific << setprecision(4) << " ( total " << anticipatedsize << ")"; - logger->msg(oss.str(),VERBOSE); + << std::scientific << std::setprecision(4) << " ( total " << anticipatedsize << ")"; + auryn::logger->msg(oss.str(),VERBOSE); allocate(anticipatedsize); connect_random(weight,sparseness,skip_diagonal); } @@ -99,7 +101,7 @@ SparseConnection::SparseConnection( SpikingGroup * source, NeuronGroup * destination, SparseConnection * con, - string name ) + std::string name ) : Connection(source,destination) { set_transmitter(con->get_transmitter()); @@ -118,18 +120,18 @@ SparseConnection::~SparseConnection() void SparseConnection::init() { if ( dst->evolve_locally() == true ) - sys->register_connection(this); + auryn::sys->register_connection(this); has_been_allocated = false; if ( src == dst ) { skip_diagonal = true; - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() <<"): Detected recurrent connection. skip_diagonal was activated!"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); } else skip_diagonal = false; if ( !has_been_seeded ) { // seed it only once - int rseed = 12345*communicator->rank() ; + int rseed = 12345*auryn::communicator->rank() ; seed(rseed); } @@ -145,9 +147,9 @@ void SparseConnection::init() void SparseConnection::seed(NeuronID randomseed) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() <<"): Seeding with " << randomseed; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); SparseConnection::sparse_connection_gen.seed(randomseed); has_been_seeded = true; } @@ -168,13 +170,13 @@ void SparseConnection::allocate(AurynLong bufsize) NeuronID m = get_m_rows(); NeuronID n = get_n_cols(); - stringstream oss; - oss << "SparseConnection: (" << get_name() << "): Allocating sparse matrix (" << m << ", " << n << ") with space for " << std::scientific << setprecision(4) << (double) bufsize << " nonzero elements "; - logger->msg(oss.str(),VERBOSE); + std::stringstream oss; + oss << "SparseConnection: (" << get_name() << "): Allocating sparse matrix (" << m << ", " << n << ") with space for " << std::scientific << std::setprecision(4) << (double) bufsize << " nonzero elements "; + auryn::logger->msg(oss.str(),VERBOSE); AurynLong maxsize = m*n; - w = new ForwardMatrix ( m, n , min(maxsize,bufsize) ); + w = new ForwardMatrix ( m, n , std::min(maxsize,bufsize) ); has_been_allocated = true; } @@ -207,9 +209,9 @@ AurynWeight SparseConnection::get_max_weight() void SparseConnection::random_data(AurynWeight mean, AurynWeight sigma) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: (" << get_name() << "): randomizing non-zero connections (gaussian) with mean=" << mean << " sigma=" << sigma ; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); boost::normal_distribution<> dist((double)mean, (double)sigma); boost::variate_generator > die(SparseConnection::sparse_connection_gen, dist); @@ -224,9 +226,9 @@ void SparseConnection::random_data(AurynWeight mean, AurynWeight sigma) void SparseConnection::sparse_set_data(AurynDouble sparseness, AurynWeight value) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: (" << get_name() << "): setting data sparsely with sparseness=" << sparseness << " value=" << value ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); boost::exponential_distribution<> dist(sparseness); boost::variate_generator > die(SparseConnection::sparse_connection_gen, dist); @@ -242,9 +244,9 @@ void SparseConnection::sparse_set_data(AurynDouble sparseness, AurynWeight value void SparseConnection::random_col_data(AurynWeight mean, AurynWeight sigma) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: (" << get_name() << "): Randomly scaling cols (gaussian) with mean=" << mean << " sigma=" << sigma ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); boost::normal_distribution<> dist((double)mean, (double)sigma); boost::variate_generator > die(SparseConnection::sparse_connection_gen, dist); @@ -260,7 +262,7 @@ void SparseConnection::random_col_data(AurynWeight mean, AurynWeight sigma) void SparseConnection::set_block(NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col, AurynWeight weight) { - AurynWeight temp = max(weight,get_min_weight()); + AurynWeight temp = std::max(weight,get_min_weight()); for ( NeuronID i = 0 ; i < get_m_rows() ; ++i ) { for ( NeuronID * j = w->get_row_begin(i) ; j != w->get_row_end(i) ; ++j ) @@ -284,7 +286,7 @@ void SparseConnection::scale_all(AurynFloat value) void SparseConnection::set_upper_triangular(AurynWeight weight) { w->set_all( 0.0 ); - AurynWeight temp = max(weight,get_min_weight()); + AurynWeight temp = std::max(weight,get_min_weight()); for ( NeuronID i = 0 ; i < get_m_rows() ; ++i ) { for ( NeuronID * j = w->get_row_begin(i) ; j != w->get_row_end(i) ; ++j ) @@ -306,18 +308,18 @@ void SparseConnection::connect_block_random(AurynWeight weight, { // do some sanity checks if ( sparseness <= 0.0 ) { - logger->msg("Trying to set up a SparseConnection with sparseness smaller or equal to zero, which doesn't make sense",ERROR); + auryn::logger->msg("Trying to set up a SparseConnection with sparseness smaller or equal to zero, which doesn't make sense",ERROR); throw AurynGenericException(); } if ( sparseness > 1.0 ) { - logger->msg("Sparseness larger than 1 not allowed. Setting to 1.",WARNING); + auryn::logger->msg("Sparseness larger than 1 not allowed. Setting to 1.",WARNING); sparseness = 1.0; } int r = 0; // these variables are used to speed up building the matrix if the destination is distributed int s = 1; - r = communicator->rank()-dst->get_locked_rank(); + r = auryn::communicator->rank()-dst->get_locked_rank(); s = dst->get_locked_range(); // correction for "refractoriness" @@ -349,7 +351,7 @@ void SparseConnection::connect_block_random(AurynWeight weight, } catch ( AurynMatrixDimensionalityException ) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: (" << get_name() <<"): Trying to add elements outside of matrix (i=" @@ -359,30 +361,30 @@ void SparseConnection::connect_block_random(AurynWeight weight, << ", " << count << "th element) "; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); return; } catch ( AurynMatrixPushBackException ) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() << "): Failed pushing back element. Maybe due to out of order pushing? " << " (" << i << "," << j << ") " << " with count=" << count << " in connect_block_random ( fill_level= " << w->get_fill_level() << " )"; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); return; } catch ( AurynMatrixBufferException ) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: (" << get_name() <<"): Buffer full after pushing " << count << " elements." << " There are pruned connections!"; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); return; } } @@ -395,21 +397,21 @@ void SparseConnection::connect_block_random(AurynWeight weight, } } - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() <<"): Finished connect_block_random [" << lo_row << ", " << hi_row << ", " << lo_col << ", " << hi_col << "] " << " (stop count " - << std::scientific << setprecision(4) << (double) stop + << std::scientific << std::setprecision(4) << (double) stop << ") and successfully pushed " << (double) count << " entries. " << "Resulting overall sparseness " << 1.*get_nonzero()/src->get_pre_size()/dst->get_post_size(); - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); } void SparseConnection::connect_random(AurynWeight weight, float sparseness, bool skip_diag) { if ( dst->evolve_locally() ) { // if there are no local units there is no need for synapses - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() <<"): Randomfill with weight "<< weight << " and sparseness " << sparseness; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); w->clear(); connect_block_random(weight,sparseness,0,get_m_rows(),0,get_n_cols(),skip_diag); } @@ -420,14 +422,14 @@ void SparseConnection::finalize() { w->fill_zeros(); if ( dst->evolve_locally() ) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() <<"): Finalized with fill level " << w->get_fill_level(); - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); if (w->get_fill_level()get_fill_level() << ")! Make sure everything is in order!"; - logger->msg(oss2.str(),WARNING); + auryn::logger->msg(oss2.str(),WARNING); } } } @@ -478,26 +480,26 @@ void SparseConnection::sanity_check() total_weight += sum[i]; if ( sum[i] == 0 && dst->localrank(i) ) { unconnected_count++; - stringstream oss; + std::stringstream oss; oss << "Sanity check: Neuron " << i << " local (" << dst->global2rank(i) << ") has no inputs." ; - logger->msg(oss.str(),WARNING); + auryn::logger->msg(oss.str(),WARNING); } } - logger->parameter("sanity_check:total weight",total_weight); + auryn::logger->parameter("sanity_check:total weight",total_weight); if ( unconnected_count ) { - stringstream oss; + std::stringstream oss; oss << "Sanity check failed (" << get_name() << "). Found " << unconnected_count << " unconnected neurons."; - logger->msg(oss.str(),WARNING); + auryn::logger->msg(oss.str(),WARNING); } delete [] sum; @@ -518,15 +520,15 @@ void SparseConnection::sanity_check() for ( NeuronID i = 0 ; i < src->get_size() ; ++i ) { if ( sum_rows[i] == 0 ) { - stringstream oss; + std::stringstream oss; oss << "Sanity check: Neuron " << i << " local (" << src->global2rank(i) << ") has no outputs on this rank. This might be normal when run distributed." ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); if ( w->get_row_begin(i) != w->get_row_end(i) ) { - logger->msg("wmat inconsistency",ERROR); + auryn::logger->msg("wmat inconsistency",ERROR); } } } @@ -595,9 +597,9 @@ AurynWeight * SparseConnection::get_ptr(NeuronID i, NeuronID j) return w->get_ptr(i,j); } -void SparseConnection::set(vector element_list, AurynWeight value) +void SparseConnection::set(std::vector element_list, AurynWeight value) { - for (vector::iterator iter = element_list.begin() ; iter != element_list.end() ; ++iter) + for (std::vector::iterator iter = element_list.begin() ; iter != element_list.end() ; ++iter) { w->set((*iter).i, (*iter).j,value); } @@ -605,20 +607,20 @@ void SparseConnection::set(vector element_list, AurynWeight value) void SparseConnection::set(NeuronID i, NeuronID j, AurynWeight value) { - value = max(value,get_min_weight()); + value = std::max(value,get_min_weight()); w->set(i,j,value); } -bool SparseConnection::write_to_file(ForwardMatrix * m, string filename ) +bool SparseConnection::write_to_file(ForwardMatrix * m, std::string filename ) { if ( !dst->evolve_locally() ) return true; - ofstream outfile; - outfile.open(filename.c_str(),ios::out); + std::ofstream outfile; + outfile.open(filename.c_str(),std::ios::out); if (!outfile) { - stringstream oss; + std::stringstream oss; oss << "Can't open output file " << filename; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); throw AurynOpenFileException(); } @@ -627,14 +629,14 @@ bool SparseConnection::write_to_file(ForwardMatrix * m, string filename ) << "% Connection name: " << get_name() << "\n" << "% Locked range: " << dst->get_locked_range() << "\n" << "%\n" - << get_m_rows() << " " << get_n_cols() << " " << m->get_nonzero() << endl; + << get_m_rows() << " " << get_n_cols() << " " << m->get_nonzero() << std::endl; for ( NeuronID i = 0 ; i < get_m_rows() ; ++i ) { - outfile << setprecision(7); + outfile << std::setprecision(7); for ( NeuronID * j = m->get_row_begin(i) ; j != m->get_row_end(i) ; ++j ) { - outfile << i+1 << " " << *j+1 << " " << scientific << m->get_data_begin()[j-m->get_row_begin(0)] << fixed << "\n"; + outfile << i+1 << " " << *j+1 << " " << std::scientific << m->get_data_begin()[j-m->get_row_begin(0)] << std::fixed << "\n"; } } @@ -642,21 +644,21 @@ bool SparseConnection::write_to_file(ForwardMatrix * m, string filename ) return true; } -bool SparseConnection::write_to_file(string filename) +bool SparseConnection::write_to_file(std::string filename) { return write_to_file(w,filename.c_str()); } -AurynLong SparseConnection::dryrun_from_file(string filename) +AurynLong SparseConnection::dryrun_from_file(std::string filename) { if ( !dst->evolve_locally() ) return 0; char buffer[256]; - ifstream infile (filename.c_str()); + std::ifstream infile (filename.c_str()); if (!infile) { - stringstream oss; + std::stringstream oss; oss << "Can't open input file " << filename; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); throw AurynOpenFileException(); } @@ -668,12 +670,12 @@ AurynLong SparseConnection::dryrun_from_file(string filename) // read connection details infile.getline (buffer,256); count++; - string header("%%MatrixMarket matrix coordinate real general"); + std::string header("%%MatrixMarket matrix coordinate real general"); if (header.compare(buffer)!=0) { - stringstream oss; + std::stringstream oss; oss << "Input format not recognized."; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); return false; } while ( buffer[0]=='%' ) { @@ -696,16 +698,16 @@ AurynLong SparseConnection::dryrun_from_file(string filename) return pushback_count; } -bool SparseConnection::load_from_file(ForwardMatrix * m, string filename, AurynLong data_size ) +bool SparseConnection::load_from_file(ForwardMatrix * m, std::string filename, AurynLong data_size ) { if ( !dst->evolve_locally() ) return true; char buffer[256]; - ifstream infile (filename.c_str()); + std::ifstream infile (filename.c_str()); if (!infile) { - stringstream oss; + std::stringstream oss; oss << "Can't open input file " << filename; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); throw AurynOpenFileException(); } @@ -719,12 +721,12 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, string filename, AurynL // read connection details infile.getline (buffer,256); count++; - string header("%%MatrixMarket matrix coordinate real general"); + std::string header("%%MatrixMarket matrix coordinate real general"); if (header.compare(buffer)!=0) { - stringstream oss; + std::stringstream oss; oss << "Input format not recognized."; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); return false; } while ( buffer[0]=='%' ) { @@ -742,22 +744,22 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, string filename, AurynL if ( m->get_datasize() >= k ) { m->clear(); } else { - stringstream oss; + std::stringstream oss; oss << "Buffer too small (" << m->get_datasize() << " -> " << k << " elements). Reallocating."; - logger->msg(oss.str() ,NOTIFICATION); + auryn::logger->msg(oss.str() ,NOTIFICATION); m->resize_buffer_and_clear(k); } - stringstream oss; + std::stringstream oss; oss << get_name() << ": Reading from file (" << get_m_rows()<<"x"<get_size()*dst->get_rank_size())<<")"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); while ( infile.getline (buffer,255) ) @@ -772,30 +774,30 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, string filename, AurynL } catch ( AurynMatrixPushBackException ) { - stringstream oss; + std::stringstream oss; oss << "Push back failed. Error in line=" << count << ", " << " i=" << i << " j=" << j << " v=" << val << ". " << " After pushing " << pushback_count << " elements. " << " Bad row major order?"; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); throw AurynMMFileException(); return false; } catch ( AurynMatrixBufferException ) { - stringstream oss; + std::stringstream oss; oss << get_name() << ": Buffer full after pushing " << count << " elements." << " There are pruned connections!"; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); return false; } catch ( AurynMatrixDimensionalityException ) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: (" << get_name() <<"): Trying to add elements outside of matrix (i=" @@ -805,7 +807,7 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, string filename, AurynL << ", " << count << "th element) "; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); return false; } } @@ -820,13 +822,13 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, string filename, AurynL << " elements pushed, but only " << m->get_nonzero() << " in matrix matrix."; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); } else { oss.str(""); oss << get_name() << ": OK, " << pushback_count << " elements pushed."; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); } m->fill_zeros(); @@ -835,21 +837,21 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, string filename, AurynL return true; } -bool SparseConnection::load_from_complete_file(string filename) +bool SparseConnection::load_from_complete_file(std::string filename) { AurynLong datasize = dryrun_from_file(filename); - stringstream oss; + std::stringstream oss; oss << "Loading from complete wmat file \ (all ranks in the same file). Element count: " << datasize << "."; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); bool returnvalue = load_from_file(w,filename,datasize); finalize(); return returnvalue; } -bool SparseConnection::load_from_file(string filename) +bool SparseConnection::load_from_file(std::string filename) { bool result = load_from_file(w,filename); finalize(); @@ -870,9 +872,9 @@ AurynLong SparseConnection::get_nonzero() void SparseConnection::put_pattern( type_pattern * pattern, AurynWeight strength, bool overwrite ) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() <<"): Putting assembly ( size " << pattern->size() << " )"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); put_pattern( pattern, pattern, strength, overwrite ); } @@ -904,36 +906,36 @@ void SparseConnection::put_pattern( type_pattern * pattern1, type_pattern * patt } } -void SparseConnection::load_patterns( string filename, AurynWeight strength, bool overwrite, bool chainmode ) +void SparseConnection::load_patterns( std::string filename, AurynWeight strength, bool overwrite, bool chainmode ) { load_patterns( filename, strength, 1000000, overwrite, chainmode ); } -void SparseConnection::load_patterns( string filename, AurynWeight strength, int n, bool overwrite, bool chainmode ) +void SparseConnection::load_patterns( std::string filename, AurynWeight strength, int n, bool overwrite, bool chainmode ) { - ifstream fin (filename.c_str()); + std::ifstream fin (filename.c_str()); if (!fin) { - stringstream oss2; + std::stringstream oss2; oss2 << "SparseConnection: There was a problem opening file " << filename << " for reading."; - logger->msg(oss2.str(),WARNING); + auryn::logger->msg(oss2.str(),WARNING); return; } else { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() <<"): Loading patterns from " << filename << " ..."; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } unsigned int patcount = 0 ; - NeuronID mindimension = min( get_m_rows()*patterns_every_pre, get_n_cols()*patterns_every_post ); + NeuronID mindimension = std::min( get_m_rows()*patterns_every_pre, get_n_cols()*patterns_every_post ); bool istoolarge = false; type_pattern pattern; - vector patterns; + std::vector patterns; char buffer[256]; - string line; + std::string line; while(!fin.eof()) { line.clear(); @@ -953,13 +955,13 @@ void SparseConnection::load_patterns( string filename, AurynWeight strength, int } pattern_member pm; - stringstream iss (line); + std::stringstream iss (line); pm.gamma = 1 ; iss >> pm.i ; if ( !wrap_patterns && !istoolarge && pm.i > mindimension ) { - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() <<"): Some elements of pattern " << patcount << " are larger than the underlying NeuronGroups!"; - logger->msg(oss.str(),WARNING); + auryn::logger->msg(oss.str(),WARNING); istoolarge = true; } iss >> pm.gamma ; @@ -981,14 +983,14 @@ void SparseConnection::load_patterns( string filename, AurynWeight strength, int // put_pattern( &pattern, strength ); fin.close(); - stringstream oss; + std::stringstream oss; oss << "SparseConnection: ("<< get_name() <<"): Added " << patcount << " patterns"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } -vector SparseConnection::get_block(NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col) +std::vector SparseConnection::get_block(NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col) { - vector clist; + std::vector clist; for ( NeuronID i = 0 ; i < get_m_rows() ; ++i ) { for ( NeuronID * j = w->get_row_begin(i) ; j != w->get_row_end(i) ; ++j ) @@ -1004,9 +1006,9 @@ vector SparseConnection::get_block(NeuronID lo_row, NeuronID hi_row return clist; } -vector SparseConnection::get_post_partners(NeuronID i) +std::vector SparseConnection::get_post_partners(NeuronID i) { - vector clist; + std::vector clist; for ( NeuronID * j = w->get_row_begin(i) ; j != w->get_row_end(i) ; ++j ) { neuron_pair a; @@ -1017,9 +1019,9 @@ vector SparseConnection::get_post_partners(NeuronID i) return clist; } -vector SparseConnection::get_pre_partners(NeuronID j) +std::vector SparseConnection::get_pre_partners(NeuronID j) { - vector clist; + std::vector clist; for ( NeuronID i = 0 ; i < get_m_rows() ; ++i ) { if ( get_ptr(i,j) != NULL ) { diff --git a/src/SparseConnection.h b/src/SparseConnection.h index 1601e8d2..17b3ccd9 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -45,7 +45,7 @@ #define WARN_FILL_LEVEL 0.8 -using namespace std; +namespace auryn { typedef ComplexMatrix ForwardMatrix; @@ -189,7 +189,7 @@ class SparseConnection : public Connection virtual void set(NeuronID i, NeuronID j, AurynWeight value); /*! \brief Sets a list of connection to value if they exists */ - virtual void set(vector element_list, AurynWeight value); + virtual void set(std::vector element_list, AurynWeight value); /*! \brief Synonym for random_data_lognormal */ void random_data(AurynWeight mean, AurynWeight sigma); @@ -348,13 +348,15 @@ class SparseConnection : public Connection AurynWeight get_max_weight(); /*! \brief Returns a vector of ConnectionsID of a block specified by the arguments */ - vector get_block(NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col); + std::vector get_block(NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col); /*! \brief Returns a vector of ConnectionsID of postsynaptic parterns of neuron i */ - vector get_post_partners(NeuronID i); + std::vector get_post_partners(NeuronID i); /*! \brief Returns a vector of ConnectionsID of presynaptic parterns of neuron i */ - vector get_pre_partners(NeuronID j); + std::vector get_pre_partners(NeuronID j); }; +} // namespace + #endif /*SPARSECONNECTION_H_*/ diff --git a/src/SpikeDelay.cpp b/src/SpikeDelay.cpp index e5aeaa51..eb35f27a 100644 --- a/src/SpikeDelay.cpp +++ b/src/SpikeDelay.cpp @@ -25,6 +25,8 @@ #include "SpikeDelay.h" +using namespace auryn; + AurynTime * SpikeDelay::clock_ptr = NULL; SpikeDelay::SpikeDelay( int delay ) diff --git a/src/SpikeDelay.h b/src/SpikeDelay.h index cd882091..62374212 100644 --- a/src/SpikeDelay.h +++ b/src/SpikeDelay.h @@ -32,7 +32,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Delay object for spikes which is synchronized between @@ -128,5 +128,7 @@ class SpikeDelay void clear(); }; +} + #endif /*SPIKEDELAY_H_*/ diff --git a/src/SpikeMonitor.cpp b/src/SpikeMonitor.cpp index adfb7f54..15f06c29 100644 --- a/src/SpikeMonitor.cpp +++ b/src/SpikeMonitor.cpp @@ -25,19 +25,21 @@ #include "SpikeMonitor.h" -SpikeMonitor::SpikeMonitor(SpikingGroup * source, string filename, NeuronID from, NeuronID to) +using namespace auryn; + +SpikeMonitor::SpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) : Monitor(filename) { init(source,filename,from,to); } -SpikeMonitor::SpikeMonitor(SpikingGroup * source, string filename, NeuronID to) +SpikeMonitor::SpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to) : Monitor(filename) { init(source,filename,0,to); } -SpikeMonitor::SpikeMonitor(SpikingGroup * source, string filename) +SpikeMonitor::SpikeMonitor(SpikingGroup * source, std::string filename) : Monitor(filename) { init(source,filename,0,source->get_size()); @@ -48,9 +50,9 @@ SpikeMonitor::~SpikeMonitor() free(); } -void SpikeMonitor::init(SpikingGroup * source, string filename, NeuronID from, NeuronID to) +void SpikeMonitor::init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); // sys = system; active = true; @@ -58,7 +60,7 @@ void SpikeMonitor::init(SpikingGroup * source, string filename, NeuronID from, N n_to = to; n_every = 1; src = source; - outfile.setf(ios::fixed); + outfile.setf(std::ios::fixed); outfile.precision(log(dt)/log(10)+1 ); } @@ -81,7 +83,7 @@ void SpikeMonitor::propagate() if ( *it < n_to && (*it%n_every==0) ) { // using the good old stdio.h for formatting seems a bit faster char buffer[255]; - int n = sprintf(buffer,"%f %i\n",sys->get_time(), *it); + int n = sprintf(buffer,"%f %i\n",auryn::sys->get_time(), *it); outfile.write(buffer,n); } } diff --git a/src/SpikeMonitor.h b/src/SpikeMonitor.h index 5ab72052..5d0f39d4 100644 --- a/src/SpikeMonitor.h +++ b/src/SpikeMonitor.h @@ -32,7 +32,7 @@ #include "System.h" #include -using namespace std; +namespace auryn { /*! \brief The standard Monitor object to record spikes from a * SpikingGroup and write them to a text file @@ -56,7 +56,7 @@ class SpikeMonitor : Monitor NeuronID n_every; SpikeContainer::const_iterator it; SpikingGroup * src; - void init(SpikingGroup * source, string filename, NeuronID from, NeuronID to); + void init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to); void free(); public: @@ -69,7 +69,7 @@ class SpikeMonitor : Monitor * \param filename Specifies the filename to write to. * This filename needs to be rank specific to avoid problems in parallelm mode * */ - SpikeMonitor(SpikingGroup * source, string filename); + SpikeMonitor(SpikingGroup * source, std::string filename); /*! \brief Default constructor which records from limited number of neurons * @@ -78,7 +78,7 @@ class SpikeMonitor : Monitor * This filename needs to be rank specific to avoid problems in parallelm mode * \param to The last NeuronID to record from starting from 0. * */ - SpikeMonitor(SpikingGroup * source, string filename, NeuronID to); + SpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to); /*! \brief Default constructor which records from a range of neurons * @@ -88,7 +88,7 @@ class SpikeMonitor : Monitor * \param from The first NeuronID to record from. * \param to The last NeuronID to record from. * */ - SpikeMonitor(SpikingGroup * source, string filename, NeuronID from, NeuronID to); + SpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to); /*!\brief Sets every parameter that ellow to record only from every X neuron. * @@ -102,4 +102,6 @@ class SpikeMonitor : Monitor void propagate(); }; +} + #endif /*SPIKEMONITOR_H_*/ diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index af312ba4..bb132a0d 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -25,6 +25,8 @@ #include "SpikingGroup.h" +using namespace auryn; + int SpikingGroup::last_locked_rank = 0; NeuronID SpikingGroup::unique_id_count = 0; @@ -32,7 +34,7 @@ NeuronID SpikingGroup::unique_id_count = 0; AurynTime * SpikingGroup::clock_ptr = NULL; -vector SpikingGroup::reqs; +std::vector SpikingGroup::reqs; NeuronID SpikingGroup::anticipated_total = 0; @@ -57,15 +59,15 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) if ( total > 0 ) { anticipated_total = total; - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Anticipating " << anticipated_total << " units in total." ; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } // setting up default values evolve_locally_bool = true; locked_rank = 0; - locked_range = communicator->size(); + locked_range = auryn::communicator->size(); rank_size = calculate_rank_size(); // set the rank size double fraction = (double)calculate_rank_size(0)*effective_load_multiplier/DEFAULT_MINDISTRIBUTEDSIZE; @@ -77,18 +79,18 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) lock_range( fraction ); } else { // ROUNDROBIN which is default locked_rank = 0; - locked_range = communicator->size(); + locked_range = auryn::communicator->size(); - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Size " << get_rank_size() << " (ROUNDROBIN)"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Registering SpikeDelay (MINDELAY=" << MINDELAY << ")"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); delay = new SpikeDelay( ); set_delay(MINDELAY+1); @@ -98,51 +100,51 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) void SpikingGroup::lock_range( double rank_fraction ) { - locked_rank = last_locked_rank%communicator->size(); // TODO might cause a bug with the block lock stuff + locked_rank = last_locked_rank%auryn::communicator->size(); // TODO might cause a bug with the block lock stuff // TODO get the loads for the different ranks and try to minimize this if ( rank_fraction == 0 ) { // this is the classical rank lock to one single rank - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Groups demands to run on single rank only (RANKLOCK)."; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); locked_range = 1; } else { // this is for multiple rank ranges - unsigned int free_ranks = communicator->size()-last_locked_rank; + unsigned int free_ranks = auryn::communicator->size()-last_locked_rank; - locked_range = rank_fraction*communicator->size()+0.5; + locked_range = rank_fraction*auryn::communicator->size()+0.5; if ( locked_range == 0 ) { // needs at least one rank locked_range = 1; } if ( locked_range > free_ranks ) { - stringstream oss; + std::stringstream oss; // oss << "SpikingGroup:: Not enough free ranks to put SpikingGroup defaulting to ROUNDROBIN distribution."; oss << get_name() << ":: Not enough free ranks for RANGELOCK. Starting to fill at zero again."; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); locked_rank = 0; - free_ranks = communicator->size(); + free_ranks = auryn::communicator->size(); // return; } } - unsigned int rank = (unsigned int) communicator->rank(); + unsigned int rank = (unsigned int) auryn::communicator->rank(); evolve_locally_bool = ( rank >= locked_rank && rank < (locked_rank+locked_range) ); - last_locked_rank = (locked_rank+locked_range)%communicator->size(); + last_locked_rank = (locked_rank+locked_range)%auryn::communicator->size(); rank_size = calculate_rank_size(); // recalculate the rank size // logging if ( evolve_locally_bool ) { - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Size "<< get_rank_size() <<" (BLOCKLOCK: ["<< locked_rank << ":" << locked_rank+locked_range-1 << "] )"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } else { - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Passive on this rank (BLOCKLOCK: ["<< locked_rank << ":" << locked_rank+locked_range-1 << "] )"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); } } @@ -150,31 +152,31 @@ void SpikingGroup::lock_range( double rank_fraction ) void SpikingGroup::free() { - logger->msg("SpikingGroup:: Deleting delay",VERBOSE); + auryn::logger->msg("SpikingGroup:: Deleting delay",VERBOSE); delete delay; - logger->msg("SpikingGroup:: Freeing pretraces",VERBOSE); + auryn::logger->msg("SpikingGroup:: Freeing pretraces",VERBOSE); for ( NeuronID i = 0 ; i < pretraces.size() ; ++i ) delete pretraces[i]; - logger->msg("SpikingGroup:: Freeing posttraces",VERBOSE); + auryn::logger->msg("SpikingGroup:: Freeing posttraces",VERBOSE); for ( NeuronID i = 0 ; i < posttraces.size() ; ++i ) delete posttraces[i]; - logger->msg("SpikingGroup:: Freeing state traces",VERBOSE); + auryn::logger->msg("SpikingGroup:: Freeing state traces",VERBOSE); for ( NeuronID i = 0 ; i < post_state_traces.size() ; ++i ) { - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Freeing state trace " << post_state_traces_state_names[i] << " at " << i; - logger->msg(oss.str() ,VERBOSE); + auryn::logger->msg(oss.str() ,VERBOSE); delete post_state_traces[i]; } - logger->msg("SpikingGroup:: Freeing state vectors",VERBOSE); - for ( map::const_iterator iter = state_vectors.begin() ; + auryn::logger->msg("SpikingGroup:: Freeing state vectors",VERBOSE); + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector @@ -249,7 +251,7 @@ NeuronID SpikingGroup::calculate_rank_size(int rank) if ( rank >= 0 ) comrank = rank; else - comrank = (unsigned int) communicator->rank(); + comrank = (unsigned int) auryn::communicator->rank(); if ( comrank >= locked_rank && comrank < (locked_rank+locked_range) ) { if (comrank-locked_rank >= size%locked_range) @@ -288,7 +290,7 @@ AurynDouble SpikingGroup::get_effective_load() NeuronID SpikingGroup::rank2global(NeuronID i) { - return i*locked_range+(communicator->rank()-locked_rank); + return i*locked_range+(auryn::communicator->rank()-locked_rank); } bool SpikingGroup::evolve_locally() @@ -331,9 +333,9 @@ PRE_TRACE_MODEL * SpikingGroup::get_pre_trace( AurynFloat x ) { for ( int i = 0 ; i < pretraces.size() ; i++ ) { if ( pretraces[i]->get_tau() == x ) { - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Sharing pre trace with " << x << "s timeconstant." ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); return pretraces[i]; } } @@ -351,9 +353,9 @@ DEFAULT_TRACE_MODEL * SpikingGroup::get_post_trace( AurynFloat x ) { for ( NeuronID i = 0 ; i < posttraces.size() ; i++ ) { if ( posttraces[i]->get_tau() == x ) { - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Sharing post trace with " << x << "s timeconstant." ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); return posttraces[i]; } } @@ -364,11 +366,11 @@ DEFAULT_TRACE_MODEL * SpikingGroup::get_post_trace( AurynFloat x ) return tmp; } -EulerTrace * SpikingGroup::get_post_state_trace( AurynFloat tau, string state_name, AurynFloat b ) +EulerTrace * SpikingGroup::get_post_state_trace( AurynFloat tau, std::string state_name, AurynFloat b ) { // first let's check if a state with that name exists if ( find_state_vector( state_name ) == NULL ) { - logger->msg("A state vector with this name "+state_name+" does not exist", ERROR); + auryn::logger->msg("A state vector with this name "+state_name+" does not exist", ERROR); throw AurynStateVectorException(); } // good to go @@ -376,21 +378,21 @@ EulerTrace * SpikingGroup::get_post_state_trace( AurynFloat tau, string state_na if ( post_state_traces[i]->get_tau() == tau && post_state_traces_spike_biases[i] == b && post_state_traces_state_names[i] == state_name ) { - stringstream oss; + std::stringstream oss; oss << get_name() << ":: Sharing post state trace for " << state_name << " with " << tau << "s timeconstant." ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); return post_state_traces[i]; } } // trace does not exist yet, so we are creating // it and do the book keeping - logger->msg("Creating new post state trace",VERBOSE); + auryn::logger->msg("Creating new post state trace",VERBOSE); EulerTrace * tmp = new EulerTrace(get_post_size(),tau); tmp->set_target(get_state_vector(state_name)); post_state_traces.push_back(tmp); @@ -407,7 +409,7 @@ void SpikingGroup::evolve_traces() for (SpikeContainer::const_iterator spike = get_spikes()->begin() ; // spike = pre_spike spike != get_spikes()->end() ; ++spike ) { - // cout << " bar " << *spike << endl; + // std::cout << " bar " << *spike << std::endl; pretraces[i]->inc(*spike); } pretraces[i]->evolve(); @@ -419,7 +421,7 @@ void SpikingGroup::evolve_traces() spike != get_spikes_immediate()->end() ; ++spike ) { NeuronID translated_spike = global2rank(*spike); // only to be used for post traces - // cout << " foo " << translated_spike << endl; + // std::cout << " foo " << translated_spike << std::endl; posttraces[i]->inc(translated_spike); } posttraces[i]->evolve(); @@ -441,20 +443,20 @@ void SpikingGroup::evolve_traces() } } -void SpikingGroup::set_name( string s ) +void SpikingGroup::set_name( std::string s ) { group_name = s; } -string SpikingGroup::get_name() +std::string SpikingGroup::get_name() { return group_name; } bool SpikingGroup::localrank(NeuronID i) { - bool t = ( (i+locked_rank)%locked_range==communicator->rank() ) - && (int) communicator->rank() >= locked_rank - && (int) communicator->rank() < (locked_rank+locked_range) + bool t = ( (i+locked_rank)%locked_range==auryn::communicator->rank() ) + && (int) auryn::communicator->rank() >= locked_rank + && (int) auryn::communicator->rank() < (locked_rank+locked_range) && i/locked_range < get_rank_size(); return t; } @@ -464,28 +466,28 @@ bool SpikingGroup::write_to_file(const char * filename) { if ( !evolve_locally() ) return true; - ofstream outfile; - outfile.open(filename,ios::out); + std::ofstream outfile; + outfile.open(filename,std::ios::out); if (!outfile) { - cerr << "Can't open output file " << filename << endl; + std::cerr << "Can't open output file " << filename << std::endl; throw AurynOpenFileException(); } - outfile << "# Auryn SpikingGroup state file for n="<< get_rank_size() <<" neurons (ver. " << AURYNVERSION << ")" << endl; + outfile << "# Auryn SpikingGroup state file for n="<< get_rank_size() <<" neurons (ver. " << AURYNVERSION << ")" << std::endl; outfile << "# Default field order (might be overwritten): "; - for ( map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector - outfile << scientific << iter->first << " "; + outfile << std::scientific << iter->first << " "; } outfile << "(plus traces)"; - outfile << endl; + outfile << std::endl; boost::archive::text_oarchive oa(outfile); oa << *(delay); - outfile << endl; + outfile << std::endl; for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) { @@ -500,16 +502,16 @@ bool SpikingGroup::load_from_file(const char * filename) { if ( !evolve_locally() ) return true; - stringstream oss; + std::stringstream oss; oss << "Loading SpikingGroup from " << filename; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); - ifstream infile (filename); + std::ifstream infile (filename); if (!infile) { - stringstream oes; + std::stringstream oes; oes << "Can't open input file " << filename; - logger->msg(oes.str(),ERROR); + auryn::logger->msg(oes.str(),ERROR); throw AurynOpenFileException(); } @@ -532,11 +534,11 @@ bool SpikingGroup::load_from_file(const char * filename) if ( get_rank_size() != count ) { // issue warning - stringstream oes; + std::stringstream oes; oes << "SpikingGroup:: NeuronState file corrupted. Read " << count << " entries, but " << get_rank_size() << " expected in " << filename; - logger->msg(oes.str(),WARNING); + auryn::logger->msg(oes.str(),WARNING); } infile.close(); @@ -548,8 +550,8 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const ar & size & axonaldelay; ar & *delay; - logger->msg("SpikingGroup:: serializing state vectors",VERBOSE); - for ( map::const_iterator iter = state_vectors.begin() ; + auryn::logger->msg("SpikingGroup:: serializing state vectors",VERBOSE); + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector @@ -557,15 +559,15 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const ar & *(iter->second); } - logger->msg("SpikingGroup:: serializing pre traces",VERBOSE); + auryn::logger->msg("SpikingGroup:: serializing pre traces",VERBOSE); for ( NeuronID i = 0 ; i < pretraces.size() ; ++i ) ar & *(pretraces[i]); - logger->msg("SpikingGroup:: serializing post traces",VERBOSE); + auryn::logger->msg("SpikingGroup:: serializing post traces",VERBOSE); for ( NeuronID i = 0 ; i < posttraces.size() ; ++i ) ar & *(posttraces[i]); - logger->msg("NeuronGroup:: serializing state traces",VERBOSE); + auryn::logger->msg("NeuronGroup:: serializing state traces",VERBOSE); for ( NeuronID i = 0 ; i < post_state_traces.size() ; ++i ) ar & *(post_state_traces[i]); } @@ -575,46 +577,46 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const ar & size & axonaldelay ; ar & *delay; - logger->msg("SpikingGroup:: reading state vectors",VERBOSE); - for ( map::const_iterator iter = state_vectors.begin() ; + auryn::logger->msg("SpikingGroup:: reading state vectors",VERBOSE); + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector - string key; + std::string key; ar & key; auryn_vector_float * vect = get_state_vector(key); ar & *vect; } - logger->msg("SpikingGroup:: reading pre traces",VERBOSE); + auryn::logger->msg("SpikingGroup:: reading pre traces",VERBOSE); for ( NeuronID i = 0 ; i < pretraces.size() ; ++i ) ar & *(pretraces[i]); - logger->msg("SpikingGroup:: reading post traces",VERBOSE); + auryn::logger->msg("SpikingGroup:: reading post traces",VERBOSE); for ( NeuronID i = 0 ; i < posttraces.size() ; ++i ) ar & *(posttraces[i]); - logger->msg("NeuronGroup:: loading post state traces",VERBOSE); + auryn::logger->msg("NeuronGroup:: loading post state traces",VERBOSE); for ( NeuronID i = 0 ; i < post_state_traces.size() ; ++i ) ar & *(post_state_traces[i]); } -void SpikingGroup::add_state_vector(string key, auryn_vector_float * state_vector) +void SpikingGroup::add_state_vector(std::string key, auryn_vector_float * state_vector) { if ( key[0] == '_' ) { - stringstream oss; + std::stringstream oss; oss << "SpikingGroup:: State vector " << key << " marked as volatile alias vector." << " It will neither be saved nor freed."; - logger->msg(oss.str(), VERBOSE); + auryn::logger->msg(oss.str(), VERBOSE); } state_vectors[key] = state_vector; } -auryn_vector_float * SpikingGroup::get_state_vector(string key) +auryn_vector_float * SpikingGroup::get_state_vector(std::string key) { if ( state_vectors.find(key) == state_vectors.end() ) { if ( get_vector_size() == 0 ) return NULL; @@ -627,7 +629,7 @@ auryn_vector_float * SpikingGroup::get_state_vector(string key) } } -auryn_vector_float * SpikingGroup::find_state_vector(string key) +auryn_vector_float * SpikingGroup::find_state_vector(std::string key) { if ( state_vectors.find(key) == state_vectors.end() ) { return NULL; @@ -636,9 +638,9 @@ auryn_vector_float * SpikingGroup::find_state_vector(string key) } } -void SpikingGroup::randomize_state_vector_gauss(string state_vector_name, AurynState mean, AurynState sigma, int seed) +void SpikingGroup::randomize_state_vector_gauss(std::string state_vector_name, AurynState mean, AurynState sigma, int seed) { - boost::mt19937 ng_gen(seed+communicator->rank()); // produces same series every time + boost::mt19937 ng_gen(seed+auryn::communicator->rank()); // produces same series every time boost::normal_distribution<> dist((double)mean, (double)sigma); boost::variate_generator > die(ng_gen, dist); AurynState rv; @@ -653,15 +655,15 @@ void SpikingGroup::randomize_state_vector_gauss(string state_vector_name, AurynS } -string SpikingGroup::get_output_line(NeuronID i) +std::string SpikingGroup::get_output_line(NeuronID i) { - stringstream oss; + std::stringstream oss; - for ( map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector - oss << scientific << auryn_vector_float_get( iter->second, i ) << " "; + oss << std::scientific << auryn_vector_float_get( iter->second, i ) << " "; } for ( NeuronID k = 0 ; k < pretraces.size() ; k++ ) { @@ -691,14 +693,14 @@ void SpikingGroup::load_input_line(NeuronID i, const char * buf) float temp; // read the state_vectors - for ( map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector if ( ( nums_now = sscanf( buf + bytes_consumed, "%f%n", & temp, & bytes_now ) ) <= 0 ) { // error handling - logger->msg("Expected additional fields for single neuron parameters. Corrupted nstate file? Aborting.",ERROR); + auryn::logger->msg("Expected additional fields for single neuron parameters. Corrupted nstate file? Aborting.",ERROR); return; } bytes_consumed += bytes_now; @@ -711,7 +713,7 @@ void SpikingGroup::load_input_line(NeuronID i, const char * buf) if ( ( nums_now = sscanf( buf + bytes_consumed, "%f%n", & temp, & bytes_now ) ) <= 0 ) { // error handling - logger->msg("Expected additional fields for pretrace values. Corrupted nstate file? Aborting.",ERROR); + auryn::logger->msg("Expected additional fields for pretrace values. Corrupted nstate file? Aborting.",ERROR); return; } bytes_consumed += bytes_now; @@ -720,7 +722,7 @@ void SpikingGroup::load_input_line(NeuronID i, const char * buf) if ( tset(t,temp); - // cout << temp << endl; + // std::cout << temp << std::endl; } } @@ -728,7 +730,7 @@ void SpikingGroup::load_input_line(NeuronID i, const char * buf) if ( ( nums_now = sscanf( buf + bytes_consumed, "%f%n", & temp, & bytes_now ) ) <= 0 ) { // error handling - logger->msg("Expected additional fields for posttrace values. Corrupted nstate file? Aborting.",ERROR); + auryn::logger->msg("Expected additional fields for posttrace values. Corrupted nstate file? Aborting.",ERROR); return; } bytes_consumed += bytes_now; @@ -741,7 +743,7 @@ void SpikingGroup::load_input_line(NeuronID i, const char * buf) if ( ( nums_now = sscanf( buf + bytes_consumed, "%f%n", & temp, & bytes_now ) ) > 0 ) { // error handling - logger->msg("There were unprocessed values in nstatefile.",WARNING); + auryn::logger->msg("There were unprocessed values in nstatefile.",WARNING); } } diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index cd38e0d4..5871b0b2 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -37,8 +37,7 @@ #include -using namespace std; -namespace mpi = boost::mpi; +namespace auryn { class System; @@ -64,7 +63,7 @@ class SpikingGroup /*! Stores the current value of the gid count */ static NeuronID unique_id_count; - static vector reqs; + static std::vector reqs; /*! Standard initialization of the object. */ void init(NeuronID size, double loadmultiplier, NeuronID total ); @@ -91,18 +90,18 @@ class SpikingGroup protected: /*! Pretraces */ - vector pretraces; + std::vector pretraces; /*! Posttraces */ - vector posttraces; + std::vector posttraces; /*! Post state traces */ - vector post_state_traces; - vector post_state_traces_spike_biases; - vector post_state_traces_state_names; + std::vector post_state_traces; + std::vector post_state_traces_spike_biases; + std::vector post_state_traces_state_names; /*! Identifying name for object */ - string group_name; + std::string group_name; /*! Stores the size of the group */ NeuronID size; @@ -118,7 +117,7 @@ class SpikingGroup /* Functions related to loading and storing the state from files */ virtual void load_input_line(NeuronID i, const char * buf); - virtual string get_output_line(NeuronID i); + virtual std::string get_output_line(NeuronID i); virtual void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); virtual void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); @@ -127,21 +126,21 @@ class SpikingGroup SpikeDelay * delay; /*! Can hold single neuron vectors such as target rates or STP states etc */ - map state_vectors; + std::map state_vectors; /*! \brief Returns existing state vector by name. * * If the state_vector does not exist the function returns NULL. */ - auryn_vector_float * find_state_vector(string key); + auryn_vector_float * find_state_vector(std::string key); /*! \brief Adds a state vector passed as an argument to the dictinary. */ - void add_state_vector( string key, auryn_vector_float * state_vector ); + void add_state_vector( std::string key, auryn_vector_float * state_vector ); /*! \brief Creates a new or returns an existing state vector by name. */ - auryn_vector_float * get_state_vector(string key); + auryn_vector_float * get_state_vector(std::string key); /*! Randomizes the content of a state vector with Gaussian random numbers. Seeding is MPI save. */ - void randomize_state_vector_gauss(string state_vector_name, AurynState mean, AurynState sigma, int seed=12239); + void randomize_state_vector_gauss(std::string state_vector_name, AurynState mean, AurynState sigma, int seed=12239); /*! Default constructor */ SpikingGroup(NeuronID size, double loadmultiplier = 1., NeuronID total = 0 ); @@ -152,10 +151,10 @@ class SpikingGroup virtual void evolve_traces(); /*! Give a name */ - void set_name(string s); + void set_name(std::string s); /*! Retrieves the groups name */ - string get_name(); + std::string get_name(); void set_num_spike_attributes(int x); int get_num_spike_attributes(); @@ -220,7 +219,7 @@ class SpikingGroup * which will be added instantaneously to the trace upon each * postsynaptic spike. * */ - EulerTrace * get_post_state_trace( AurynFloat tau, string state_name="mem", AurynFloat b=0.0 ); + EulerTrace * get_post_state_trace( AurynFloat tau, std::string state_name="mem", AurynFloat b=0.0 ); /*! Sets axonal delay for this SpikingGroup */ void set_delay( int d ); @@ -246,9 +245,9 @@ class SpikingGroup BOOST_SERIALIZATION_ASSUME_ABSTRACT(SpikingGroup) -extern System * sys; -extern Logger * logger; -extern mpi::communicator * communicator; + extern System * sys; + extern Logger * logger; + extern mpi::communicator * communicator; inline NeuronID SpikingGroup::global2rank(NeuronID i) { @@ -260,6 +259,6 @@ inline NeuronID SpikingGroup::get_rank_size() return rank_size; } - +} // closing namespace brackets #endif /*SPIKINGGROUP_H_*/ diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index 7c4d265f..ea608c86 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -25,39 +25,41 @@ #include "StateMonitor.h" +using namespace auryn; -StateMonitor::StateMonitor(SpikingGroup * source, NeuronID id, string statename, string filename, AurynDouble sampling_interval) + +StateMonitor::StateMonitor(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynDouble sampling_interval) { init(source,id,statename,filename,sampling_interval/dt); } -StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, string filename, AurynDouble sampling_interval) +StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string filename, AurynDouble sampling_interval) { if ( id >= state->size ) return; // do not register if neuron is out of vector range Monitor::init(filename); - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = NULL; nid = id; target_variable = state->data+nid; set_stop_time(10.0); ssize = sampling_interval/dt; - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } -void StateMonitor::init(SpikingGroup * source, NeuronID id, string statename, string filename, AurynTime stepsize) +void StateMonitor::init(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynTime stepsize) { if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank Monitor::init(filename); - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; nid = src->global2rank(id); set_stop_time(10.0); if ( nid >= src->get_rank_size() ) { - logger->msg("Error: StateMonitor trying to read from non-existing neuron.",ERROR); + auryn::logger->msg("Error: StateMonitor trying to read from non-existing neuron.",ERROR); throw AurynStateVectorException(); } @@ -69,7 +71,7 @@ void StateMonitor::init(SpikingGroup * source, NeuronID id, string statename, st } else { nid = src->get_rank_size() + 1; } - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << setiosflags(std::ios::fixed) << std::setprecision(6); } StateMonitor::~StateMonitor() @@ -78,9 +80,9 @@ StateMonitor::~StateMonitor() void StateMonitor::propagate() { - if ( sys->get_clock() < t_stop && sys->get_clock()%ssize==0 ) { + if ( auryn::sys->get_clock() < t_stop && auryn::sys->get_clock()%ssize==0 ) { char buffer[255]; - int n = sprintf(buffer,"%f %f\n",sys->get_time(), *target_variable); + int n = sprintf(buffer,"%f %f\n",auryn::sys->get_time(), *target_variable); outfile.write(buffer,n); } } @@ -88,9 +90,9 @@ void StateMonitor::propagate() void StateMonitor::set_stop_time(AurynDouble time) { if (time < 0) { - logger->msg("Warning: Negative stop times not supported -- ingoring.",WARNING); + auryn::logger->msg("Warning: Negative stop times not supported -- ingoring.",WARNING); } - else t_stop = sys->get_clock() + time/dt; + else t_stop = auryn::sys->get_clock() + time/dt; } void StateMonitor::record_for(AurynDouble time) diff --git a/src/StateMonitor.h b/src/StateMonitor.h index 6a1ddef2..887b095c 100644 --- a/src/StateMonitor.h +++ b/src/StateMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Records from an arbitray state vector of one unit from the source SpikingGroup to a file.*/ class StateMonitor : protected Monitor @@ -86,4 +86,6 @@ class StateMonitor : protected Monitor void propagate(); }; +} + #endif /*STATEMONITOR_H_*/ diff --git a/src/StimulusGroup.cpp b/src/StimulusGroup.cpp index 6fe9705e..07bfbe2b 100644 --- a/src/StimulusGroup.cpp +++ b/src/StimulusGroup.cpp @@ -25,13 +25,15 @@ #include "StimulusGroup.h" +using namespace auryn; + boost::mt19937 StimulusGroup::poisson_gen = boost::mt19937(); boost::mt19937 StimulusGroup::order_gen = boost::mt19937(); boost::uniform_01 StimulusGroup::order_die = boost::uniform_01 (order_gen); -void StimulusGroup::init(StimulusGroupModeType stimulusmode, string stimfile, AurynFloat baserate) +void StimulusGroup::init(StimulusGroupModeType stimulusmode, std::string stimfile, AurynFloat baserate) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); ttl = new AurynTime [get_rank_size()]; refractory_period = 1; // initialize with a default of one timestep (avoids two spikes in same time bin) @@ -68,31 +70,31 @@ void StimulusGroup::init(StimulusGroupModeType stimulusmode, string stimfile, Au // not supposed to be reading from it. if ( !stimfile.empty() && stimulus_order != STIMFILE ) { - tiserfile.open(stimfile.c_str(),ios::out); - tiserfile.setf(ios::fixed); + tiserfile.open(stimfile.c_str(),std::ios::out); + tiserfile.setf(std::ios::fixed); } else { if (stimulus_order==STIMFILE) { - tiserfile.open(stimfile.c_str(),ios::in); + tiserfile.open(stimfile.c_str(),std::ios::in); } } if (!tiserfile) { - stringstream oss; + std::stringstream oss; oss << "StimulusGroup:: Cannot open stimulus file " << stimfile << " for "; if (stimulus_order==STIMFILE) oss << "reading."; else oss << "writing."; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); throw AurynOpenFileException(); } - stringstream oss; + std::stringstream oss; oss << "StimulusGroup:: " << "size " << get_size() << " " << "(mode " << stimulus_order << ") "; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); cur_stim_index = 0; next_action_time = 0; @@ -101,13 +103,13 @@ void StimulusGroup::init(StimulusGroupModeType stimulusmode, string stimfile, Au } -StimulusGroup::StimulusGroup(NeuronID n, string filename, string stimfile, StimulusGroupModeType stimulusmode, AurynFloat baserate) : SpikingGroup( n, STIMULUSGROUP_LOAD_MULTIPLIER ) // Load multiplier is an empirical value +StimulusGroup::StimulusGroup(NeuronID n, std::string filename, std::string stimfile, StimulusGroupModeType stimulusmode, AurynFloat baserate) : SpikingGroup( n, STIMULUSGROUP_LOAD_MULTIPLIER ) // Load multiplier is an empirical value { init(stimulusmode, stimfile, baserate); load_patterns(filename); } -StimulusGroup::StimulusGroup(NeuronID n, string stimfile, StimulusGroupModeType stimulusmode, AurynFloat baserate) : SpikingGroup( n, STIMULUSGROUP_LOAD_MULTIPLIER ) // Load multiplier is an empirical value +StimulusGroup::StimulusGroup(NeuronID n, std::string stimfile, StimulusGroupModeType stimulusmode, AurynFloat baserate) : SpikingGroup( n, STIMULUSGROUP_LOAD_MULTIPLIER ) // Load multiplier is an empirical value { init(stimulusmode, stimfile, baserate); } @@ -125,7 +127,7 @@ void StimulusGroup::redraw() for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) { if (activity[i]>0) - ttl[i] = sys->get_clock() + (AurynTime)((AurynFloat)die()/(activity[i]*dt)); + ttl[i] = auryn::sys->get_clock() + (AurynTime)((AurynFloat)die()/(activity[i]*dt)); } } @@ -133,7 +135,7 @@ void StimulusGroup::set_baserate(AurynFloat baserate) { base_rate = baserate; redraw(); - logger->parameter("StimulusGroup:: baserate",baserate); + auryn::logger->parameter("StimulusGroup:: baserate",baserate); } void StimulusGroup::set_maxrate(AurynFloat baserate) @@ -144,13 +146,13 @@ void StimulusGroup::set_maxrate(AurynFloat baserate) void StimulusGroup::set_mean_off_period(AurynFloat period) { mean_off_period = period; - logger->parameter("StimulusGroup:: mean_off_period",mean_off_period); + auryn::logger->parameter("StimulusGroup:: mean_off_period",mean_off_period); } void StimulusGroup::set_mean_on_period(AurynFloat period) { mean_on_period = period; - logger->parameter("StimulusGroup:: mean_on_period",mean_on_period); + auryn::logger->parameter("StimulusGroup:: mean_on_period",mean_on_period); } void StimulusGroup::write_stimulus_file(AurynDouble time) { @@ -161,7 +163,7 @@ void StimulusGroup::write_stimulus_file(AurynDouble time) { if ( stimulus_active || off_pattern > -1 ) tiserfile << "1 "; else tiserfile << "0 "; tiserfile << cur_stim_index - << endl; + << std::endl; } } @@ -170,7 +172,7 @@ void StimulusGroup::read_next_stimulus_from_file(AurynDouble &time, int &active, if ( tiserfile.getline (buffer,256) ) { sscanf (buffer,"%lf %i %i",&time,&active,&stimulusid); } else { - time = sys->get_time()+1000; // TODO this is a bit weird as a condition but should do the job + time = auryn::sys->get_time()+1000; // TODO this is a bit weird as a condition but should do the job active = 0; stimulusid = 0; } @@ -220,10 +222,10 @@ void StimulusGroup::evolve() for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) { - if ( ttl[i] < sys->get_clock() && activity[i]>0.0 ) + if ( ttl[i] < auryn::sys->get_clock() && activity[i]>0.0 ) { push_spike ( i ); - ttl[i] = sys->get_clock() + refractory_period + (AurynTime)((AurynFloat)die()*(1.0/(activity[i]*dt)-refractory_period)); + ttl[i] = auryn::sys->get_clock() + refractory_period + (AurynTime)((AurynFloat)die()*(1.0/(activity[i]*dt)-refractory_period)); } } } @@ -242,14 +244,14 @@ void StimulusGroup::evolve() } // update stimulus properties - if ( sys->get_clock() >= next_action_time ) { // action required + if ( auryn::sys->get_clock() >= next_action_time ) { // action required if ( stimuli.size() == 0 ) { set_next_action_time(10); // TODO make this a bit smarter at some point -- i.e. could send this to the end of time return; } - write_stimulus_file(dt*(sys->get_clock())); + write_stimulus_file(dt*(auryn::sys->get_clock())); // if we have variable rate stimuli update curscale otherwise set to scale // this is only needed for binary stimuli -- otherwise the change is done in @@ -263,13 +265,13 @@ void StimulusGroup::evolve() if ( stimulus_order == STIMFILE ) { AurynDouble t = 0.0; int a,i; - while ( t <= sys->get_time() ) { + while ( t <= auryn::sys->get_time() ) { read_next_stimulus_from_file(t,a,i); next_action_time = (AurynTime) (t/dt); if (a==0) stimulus_active = true; else stimulus_active = false; cur_stim_index = i; - // cout << sys->get_time() << " " << t << " " << a << " " << i << endl; + // std::cout << auryn::sys->get_time() << " " << t << " " << a << " " << i << std::endl; } } else { // we have to generate stimulus times @@ -282,9 +284,9 @@ void StimulusGroup::evolve() if ( randomintervals ) { boost::exponential_distribution<> dist(1./mean_off_period); boost::variate_generator > die(order_gen, dist); - next_action_time = sys->get_clock() + (AurynTime)(max(0.0,die())/dt); + next_action_time = auryn::sys->get_clock() + (AurynTime)(std::max(0.0,die())/dt); } else { - next_action_time = sys->get_clock() + (AurynTime)(mean_off_period/dt); + next_action_time = auryn::sys->get_clock() + (AurynTime)(mean_off_period/dt); } } else { // stimulus was not active and is going active now if ( active && stimuli.size() ) { // the group is active and there are stimuli in the array @@ -298,11 +300,11 @@ void StimulusGroup::evolve() draw = order_die(); cummulative = 0; cur_stim_index = 0; - // cout.precision(5); - // cout << " draw " << draw << endl; + // std::cout.precision(5); + // std::cout << " draw " << draw << std::endl; for ( unsigned int i = 0 ; i < probabilities.size() ; ++i ) { cummulative += probabilities[i]; - // cout << cummulative << endl; + // std::cout << cummulative << std::endl; if ( draw <= cummulative ) { cur_stim_index = i; break; @@ -329,13 +331,13 @@ void StimulusGroup::evolve() if ( randomintervals && stimulus_order != STIMFILE ) { boost::normal_distribution<> dist(mean_on_period,mean_on_period/3); boost::variate_generator > die(order_gen, dist); - next_action_time = sys->get_clock() + (AurynTime)(max(0.0,die())/dt); + next_action_time = auryn::sys->get_clock() + (AurynTime)(std::max(0.0,die())/dt); } else { - next_action_time = sys->get_clock() + (AurynTime)(mean_on_period/dt); + next_action_time = auryn::sys->get_clock() + (AurynTime)(mean_on_period/dt); } } } - write_stimulus_file(dt*(sys->get_clock()+1)); + write_stimulus_file(dt*(auryn::sys->get_clock()+1)); } } } @@ -359,74 +361,74 @@ AurynFloat StimulusGroup::get_activity(NeuronID i) return 0; } -void StimulusGroup::load_patterns( string filename ) +void StimulusGroup::load_patterns( std::string filename ) { - ifstream fin (filename.c_str()); - if (!fin) { - stringstream oss; - oss << "StimulusGroup:: " - << "There was a problem opening file " - << filename - << " for reading." - << endl; - logger->msg(oss.str(),ERROR); - throw AurynOpenFileException(); - } - - char buffer[256]; - string line; - - stimuli.clear(); - - type_pattern pattern; - int total_pattern_size = 0; - while(!fin.eof()) { + std::ifstream fin (filename.c_str()); + if (!fin) { + std::stringstream oss; + oss << "StimulusGroup:: " + << "There was a problem opening file " + << filename + << " for reading." + << std::endl; + auryn::logger->msg(oss.str(),ERROR); + throw AurynOpenFileException(); + } - line.clear(); - fin.getline (buffer,255); - line = buffer; - - if (line[0] == '#') continue; - if (line == "") { - if ( total_pattern_size > 0 ) { - stringstream oss; - oss << "StimulusGroup:: Read pattern " - << stimuli.size() - << " with pattern size " - << total_pattern_size - << " ( " - << pattern.size() - << " on rank )"; - logger->msg(oss.str(),VERBOSE); - - stimuli.push_back(pattern); - pattern.clear(); - total_pattern_size = 0; - } - continue; + char buffer[256]; + std::string line; + + stimuli.clear(); + + type_pattern pattern; + int total_pattern_size = 0; + while(!fin.eof()) { + + line.clear(); + fin.getline (buffer,255); + line = buffer; + + if (line[0] == '#') continue; + if (line == "") { + if ( total_pattern_size > 0 ) { + std::stringstream oss; + oss << "StimulusGroup:: Read pattern " + << stimuli.size() + << " with pattern size " + << total_pattern_size + << " ( " + << pattern.size() + << " on rank )"; + auryn::logger->msg(oss.str(),VERBOSE); + + stimuli.push_back(pattern); + pattern.clear(); + total_pattern_size = 0; } + continue; + } - stringstream iss (line); - NeuronID i ; - iss >> i ; - if ( localrank( i ) ) { - pattern_member pm; - pm.gamma = 1.0 ; - iss >> pm.gamma ; - pm.i = global2rank( i ) ; - pattern.push_back( pm ) ; - } - total_pattern_size++; + std::stringstream iss (line); + NeuronID i ; + iss >> i ; + if ( localrank( i ) ) { + pattern_member pm; + pm.gamma = 1.0 ; + iss >> pm.gamma ; + pm.i = global2rank( i ) ; + pattern.push_back( pm ) ; } + total_pattern_size++; + } - fin.close(); + fin.close(); - // initializing all probabilities as a flat distribution - flat_distribution(); + // initializing all probabilities as a flat distribution + flat_distribution(); - stringstream oss; - oss << "StimulusGroup:: Finished loading " << stimuli.size() << " patterns"; - logger->msg(oss.str(),NOTIFICATION); + std::stringstream oss; + oss << "StimulusGroup:: Finished loading " << stimuli.size() << " patterns"; + auryn::logger->msg(oss.str(),NOTIFICATION); } void StimulusGroup::set_pattern_activity(unsigned int i) @@ -465,9 +467,9 @@ void StimulusGroup::set_pattern_activity(unsigned int i,AurynFloat setrate) void StimulusGroup::set_active_pattern(unsigned int i) { - stringstream oss; + std::stringstream oss; oss << "StimulusGroup:: Setting active pattern " << i ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); set_all( background_rate ); if ( i < stimuli.size() ) { @@ -476,7 +478,7 @@ void StimulusGroup::set_active_pattern(unsigned int i) redraw(); } -void StimulusGroup::set_distribution( vector probs ) +void StimulusGroup::set_distribution( std::vector probs ) { for ( unsigned int i = 0 ; i < stimuli.size() ; ++i ) { probabilities[i] = probs[i]; @@ -484,16 +486,16 @@ void StimulusGroup::set_distribution( vector probs ) normalize_distribution(); - stringstream oss; + std::stringstream oss; oss << "StimulusGroup: Set distribution ["; for ( unsigned int i = 0 ; i < stimuli.size() ; ++i ) { oss << " " << probabilities[i]; } oss << " ]"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } -vector StimulusGroup::get_distribution( ) +std::vector StimulusGroup::get_distribution( ) { return probabilities; } @@ -512,7 +514,7 @@ void StimulusGroup::flat_distribution( ) void StimulusGroup::normalize_distribution() { - stringstream oss; + std::stringstream oss; oss << "StimulusGroup: Normalizing distribution ["; double sum = 0 ; for ( unsigned int i = 0 ; i < stimuli.size() ; ++i ) { @@ -526,16 +528,16 @@ void StimulusGroup::normalize_distribution() } oss << " ]"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); } -vector * StimulusGroup::get_patterns() +std::vector * StimulusGroup::get_patterns() { return &stimuli; } void StimulusGroup::set_next_action_time( double time ) { - next_action_time = sys->get_clock() + time/dt; + next_action_time = auryn::sys->get_clock() + time/dt; } void StimulusGroup::set_stimulation_mode( StimulusGroupModeType mode ) { @@ -550,17 +552,17 @@ void StimulusGroup::seed(int rndseed) boost::variate_generator > die(order_gen, dist); NeuronID rnd = die(); - for (int i = 0 ; i < communicator->rank() ; ++i ) { + for (int i = 0 ; i < auryn::communicator->rank() ; ++i ) { rnd = die(); } order_gen.seed(rndseed); // has to be again here otherwise it is different on all ranks - stringstream oss; + std::stringstream oss; oss << "StimulusGroup:: " << "seeding poisson generator with " << rnd; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); poisson_gen.seed(rnd); // is now drawn differently but reproducibly so for each rank } diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index 85e8dcaa..583819e8 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -42,7 +42,7 @@ #define SOFTSTARTTIME 0.1 #define STIMULUSGROUP_LOAD_MULTIPLIER 0.1 -using namespace std; +namespace auryn { /*! \brief Provides a poisson stimulus at random intervals in one or more @@ -52,11 +52,11 @@ class StimulusGroup : public SpikingGroup private: AurynTime * clk; AurynTime * ttl; - vector stimuli; + std::vector stimuli; AurynFloat * activity; /*! Internal name for the stimfile (tiser stands for time series). */ - fstream tiserfile; + std::fstream tiserfile; AurynFloat base_rate; @@ -79,7 +79,7 @@ class StimulusGroup : public SpikingGroup StimulusGroupModeType stimulus_order ; /*! stimulus probabilities */ - vector probabilities ; + std::vector probabilities ; /*! current stimulus index */ unsigned int cur_stim_index ; @@ -177,9 +177,9 @@ class StimulusGroup : public SpikingGroup void set_next_action_time(double time); /*! Setter for pattern probability distribution */ - void set_distribution ( vector probs ); + void set_distribution ( std::vector probs ); /*! Getter for pattern probability distribution */ - vector get_distribution ( ); + std::vector get_distribution ( ); /*! Getter for pattern i of the probability distribution */ double get_distribution ( int i ); /*! Initialized distribution to be flat */ @@ -187,8 +187,10 @@ class StimulusGroup : public SpikingGroup /*! Normalizes the distribution */ void normalize_distribution( ); - vector * get_patterns(); + std::vector * get_patterns(); }; +} + #endif /*STIMULUSGROUP_H_*/ diff --git a/src/StructuredPoissonGroup.cpp b/src/StructuredPoissonGroup.cpp index af2a0456..17afd322 100644 --- a/src/StructuredPoissonGroup.cpp +++ b/src/StructuredPoissonGroup.cpp @@ -25,15 +25,17 @@ #include "StructuredPoissonGroup.h" +using namespace auryn; + boost::mt19937 StructuredPoissonGroup::interval_gen = boost::mt19937(); -void StructuredPoissonGroup::init ( AurynFloat duration, AurynFloat mean_interval, NeuronID no, string outputfile ) +void StructuredPoissonGroup::init ( AurynFloat duration, AurynFloat mean_interval, NeuronID no, std::string outputfile ) { no_of_stimuli = no; stimulus_duration = duration/dt; mean_isi = mean_interval/dt; - logger->parameter("duration", (int)duration); - logger->parameter("mean_isi", (int)mean_isi); + auryn::logger->parameter("duration", (int)duration); + auryn::logger->parameter("mean_isi", (int)mean_isi); stimulus_active = false; current_stimulus = 0; @@ -41,24 +43,24 @@ void StructuredPoissonGroup::init ( AurynFloat duration, AurynFloat mean_interva seedoffset = 0; - stringstream oss; + std::stringstream oss; oss << "StructuredPoissonGroup:: Set up with stimulus_duration=" << stimulus_duration << " and mean_isi=" << mean_isi; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); if ( evolve_locally() && !outputfile.empty() ) { - tiserfile.open(outputfile.c_str(),ios::out); + tiserfile.open(outputfile.c_str(),std::ios::out); if (!tiserfile) { - stringstream oss2; + std::stringstream oss2; oss2 << "StructuredPoissonGroup:: Can't open output file " << outputfile; - logger->msg(oss2.str(),ERROR); + auryn::logger->msg(oss2.str(),ERROR); exit(1); } - tiserfile.setf(ios::fixed); + tiserfile.setf(std::ios::fixed); tiserfile.precision(log(dt)/log(10)+1 ); } @@ -66,7 +68,7 @@ void StructuredPoissonGroup::init ( AurynFloat duration, AurynFloat mean_interva } StructuredPoissonGroup::StructuredPoissonGroup(NeuronID n, AurynFloat duration, AurynFloat interval, NeuronID stimuli, - AurynDouble rate , string tiserfile ) : PoissonGroup( n , rate ) + AurynDouble rate , std::string tiserfile ) : PoissonGroup( n , rate ) { init(duration, interval, stimuli, tiserfile ); } @@ -80,16 +82,16 @@ StructuredPoissonGroup::~StructuredPoissonGroup() void StructuredPoissonGroup::evolve() { - if ( sys->get_clock() >= next_event ) { + if ( auryn::sys->get_clock() >= next_event ) { if ( stimulus_active ) { stimulus_active = false; - seed(sys->get_clock()); + seed(auryn::sys->get_clock()); next_event += (mean_isi-stimulus_duration); } else { stimulus_active = true; current_stimulus = (current_stimulus+1)%no_of_stimuli; x = 0; - tiserfile << sys->get_time() << " " << current_stimulus << endl; + tiserfile << auryn::sys->get_time() << " " << current_stimulus << std::endl; seed(current_stimulus+seedoffset); next_event += stimulus_duration; } diff --git a/src/StructuredPoissonGroup.h b/src/StructuredPoissonGroup.h index e07f017b..50191628 100644 --- a/src/StructuredPoissonGroup.h +++ b/src/StructuredPoissonGroup.h @@ -36,7 +36,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief A special Poisson generator that can hide a fixed number of spatio-temporal patterns in the spike data * @@ -53,7 +53,7 @@ class StructuredPoissonGroup : public PoissonGroup NeuronID no_of_stimuli; AurynTime stimulus_duration; AurynTime mean_isi; - ofstream tiserfile; + std::ofstream tiserfile; AurynTime next_event; bool stimulus_active; @@ -70,4 +70,6 @@ class StructuredPoissonGroup : public PoissonGroup virtual void evolve(); }; +} + #endif /*STRUCTUREDPOISSONGROUP_H_*/ diff --git a/src/SymmetricSTDPConnection.cpp b/src/SymmetricSTDPConnection.cpp index e1633562..91f149ec 100644 --- a/src/SymmetricSTDPConnection.cpp +++ b/src/SymmetricSTDPConnection.cpp @@ -25,6 +25,8 @@ #include "SymmetricSTDPConnection.h" +using namespace auryn; + void SymmetricSTDPConnection::init(AurynFloat eta, AurynFloat kappa, AurynFloat tau_stdp, AurynWeight maxweight) { set_max_weight(maxweight); @@ -61,7 +63,7 @@ SymmetricSTDPConnection::SymmetricSTDPConnection(SpikingGroup * source, NeuronGr SymmetricSTDPConnection::SymmetricSTDPConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness, AurynFloat eta, AurynFloat kappa, AurynFloat tau_stdp, - AurynWeight maxweight , TransmitterType transmitter, string name) + AurynWeight maxweight , TransmitterType transmitter, std::string name) : DuplexConnection(source, destination, weight, sparseness, transmitter, name) { init(eta , kappa, tau_stdp, maxweight); diff --git a/src/SymmetricSTDPConnection.h b/src/SymmetricSTDPConnection.h index 42d0c6ea..75cdfb38 100644 --- a/src/SymmetricSTDPConnection.h +++ b/src/SymmetricSTDPConnection.h @@ -31,7 +31,7 @@ #include "EulerTrace.h" #include "LinearTrace.h" -using namespace std; +namespace auryn { /*! \brief Implements a symmetric STDP window with an optional @@ -102,4 +102,6 @@ class SymmetricSTDPConnection : public DuplexConnection }; +} + #endif /*SYMMETRICSTDPCONNECTION_H_*/ diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 5defe091..25a0e52d 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -25,6 +25,8 @@ #include "SyncBuffer.h" +using namespace auryn; + SyncBuffer::SyncBuffer( mpi::communicator * com ) { mpicom = com; @@ -91,8 +93,8 @@ void SyncBuffer::push(SpikeDelay * delay, NeuronID size) for ( NeuronID s = 0 ; s < count[i-1] ; ++s ) { // loop over spikes send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[i-1]*k)))); // if ( mpicom->rank() == 0 ) - // cout << " pushing attr " << " " << i << " " << k << " " << s << " " - // << scientific << ac->at(s+count[i-1]*k) << endl; + // std::cout << " pushing attr " << " " << i << " " << k << " " << s << " " + // << std::ifstream << ac->at(s+count[i-1]*k) << std::endl; } } } @@ -143,7 +145,7 @@ void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) iter++; ac->push_back(*attrib); // if ( mpicom->rank() == 0 ) - // cout << " reading attr " << " " << slice << " " << k << " " << s << " " << scientific << *attrib << endl; + // std::cout << " reading attr " << " " << slice << " " << k << " " << s << " " << std::ifstream << *attrib << std::endl; } } } @@ -213,12 +215,12 @@ void SyncBuffer::sync() if ( overflow ) { - // cout << "Overflow in SyncBuffer adapting buffersize to " + // std::cout << "Overflow in SyncBuffer adapting buffersize to " // << (new_send_size+1)*sizeof(NeuronID) // << " ( " // << mpicom->size()*(new_send_size+1)*sizeof(NeuronID) // << " total ) " - // << endl; + // << std::endl; max_send_size = new_send_size+1; recv_buf.resize(mpicom->size()*max_send_size); // sync(); // recursive retry was ausing problems @@ -229,10 +231,10 @@ void SyncBuffer::sync() // reset NeuronID largest_message = 0; - for (vector::iterator iter = pop_offsets.begin() ; + for (std::vector::iterator iter = pop_offsets.begin() ; iter != pop_offsets.end() ; ++iter ) { - largest_message = max(*iter,largest_message); + largest_message = std::max(*iter,largest_message); *iter = 1; } maxSendSum += largest_message; diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 11ac5f56..435212f0 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -36,63 +36,63 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Buffer object to capsulate native MPI_Allgather for SpikingGroups * * The class stores the recent history of transmission buffer sizes and tries * to determine an optimal size on-line. * */ + class SyncBuffer + { + private: + std::vector send_buf; + std::vector recv_buf; -class SyncBuffer -{ - private: - vector send_buf; - vector recv_buf; + // NeuronID size_history[SYNCBUFFER_SIZE_HIST_LEN]; + NeuronID maxSendSum; + NeuronID maxSendSum2; + NeuronID syncCount; - // NeuronID size_history[SYNCBUFFER_SIZE_HIST_LEN]; - NeuronID maxSendSum; - NeuronID maxSendSum2; - NeuronID syncCount; + /*! The send buffer size that all ranks agree upon */ + NeuronID max_send_size; - /*! The send buffer size that all ranks agree upon */ - NeuronID max_send_size; + mpi::communicator * mpicom; - mpi::communicator * mpicom; + NeuronID overflow_value; - NeuronID overflow_value; + NeuronID groupPushOffset1; + NeuronID groupPopOffset; - NeuronID groupPushOffset1; - NeuronID groupPopOffset; + NeuronID count[MINDELAY]; // needed to decode attributes - NeuronID count[MINDELAY]; // needed to decode attributes + /*! vector with offset values to allow to pop more than one delay */ + std::vector pop_offsets; - /*! vector with offset values to allow to pop more than one delay */ - vector pop_offsets; + void reset_send_buffer(); - void reset_send_buffer(); + void init(); + void free(); - void init(); - void free(); + public: - public: + SyncBuffer( mpi::communicator * com ); - SyncBuffer( mpi::communicator * com ); + void sync(); - void sync(); - - void push(SpikeDelay * delay, NeuronID size); - void pop(SpikeDelay * delay, NeuronID size); + void push(SpikeDelay * delay, NeuronID size); + void pop(SpikeDelay * delay, NeuronID size); #ifdef CODE_COLLECT_SYNC_TIMING_STATS - AurynDouble deltaT; - AurynDouble measurement_start; - AurynDouble get_relative_sync_time(); - AurynDouble get_sync_time(); - AurynDouble get_elapsed_wall_time(); - void reset_sync_time(); + AurynDouble deltaT; + AurynDouble measurement_start; + AurynDouble get_relative_sync_time(); + AurynDouble get_sync_time(); + AurynDouble get_elapsed_wall_time(); + void reset_sync_time(); #endif -}; + }; +} #endif /*SYNCBUFFER_H_*/ diff --git a/src/System.cpp b/src/System.cpp index 1916040f..feb3ad8d 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -25,6 +25,8 @@ #include "System.h" +using namespace auryn; + void System::init() { clock = 0; quiet = false; @@ -37,7 +39,7 @@ void System::init() { syncbuffer = new SyncBuffer(mpicom); - stringstream oss; + std::stringstream oss; oss.str(""); oss << "Auryn version " << AURYNVERSION @@ -50,18 +52,18 @@ void System::init() { } oss << " ( compiled " << __DATE__ << " " << __TIME__ << " )"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); oss.str(""); oss << "Current AurynTime good for simulations up to " << std::numeric_limits::max()*dt << "s " << "( " << std::numeric_limits::max()*dt/3600 << "h )"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); oss.str(""); oss << "Current NeuronID and sync are good for simulations up to " << std::numeric_limits::max()/MINDELAY << " cells."; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); } @@ -75,13 +77,13 @@ System::System(mpi::communicator * communicator) mpicom = communicator; init(); - stringstream oss; + std::stringstream oss; if ( mpicom->size() > 0 ) { oss << "MPI run rank " << mpicom->rank() << " of " << mpicom->size() << "."; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } if ( mpicom->size() > 0 && (mpicom->size() & (mpicom->size()-1)) ) { @@ -89,7 +91,7 @@ System::System(mpi::communicator * communicator) oss << "WARNING! The number of processes is not a power of two. " << "This causes impaired performance or even crashes " << "in some MPI implementations."; - logger->msg(oss.str(),WARNING,true); + auryn::logger->msg(oss.str(),WARNING,true); } } @@ -140,7 +142,7 @@ AurynTime * System::get_clock_ptr() AurynLong System::get_total_neurons() { AurynLong sum = 0; - vector::const_iterator iter; + std::vector::const_iterator iter; for ( iter = spiking_groups.begin() ; iter != spiking_groups.end() ; ++iter ) { sum += (*iter)->get_rank_size(); } @@ -150,7 +152,7 @@ AurynLong System::get_total_neurons() AurynDouble System::get_total_effective_load() { AurynDouble sum = 0.; - vector::const_iterator iter; + std::vector::const_iterator iter; for ( iter = spiking_groups.begin() ; iter != spiking_groups.end() ; ++iter ) { sum += (*iter)->get_effective_load(); } @@ -160,7 +162,7 @@ AurynDouble System::get_total_effective_load() AurynLong System::get_total_synapses() { AurynLong sum = 0; - vector::const_iterator iter; + std::vector::const_iterator iter; for ( iter = connections.begin() ; iter != connections.end() ; ++iter ) { sum += (*iter)->get_nonzero(); } @@ -196,7 +198,7 @@ void System::sync() T1 = MPI_Wtime(); /* start time */ #endif - vector::const_iterator iter; + std::vector::const_iterator iter; for ( iter = spiking_groups.begin() ; iter != spiking_groups.end() ; ++iter ) syncbuffer->push((*iter)->delay,(*iter)->get_size()); @@ -218,7 +220,7 @@ void System::sync() void System::evolve() { - vector::const_iterator iter; + std::vector::const_iterator iter; for ( iter = spiking_groups.begin() ; iter != spiking_groups.end() ; ++iter ) (*iter)->conditional_evolve(); // evolve only if existing on rank @@ -229,12 +231,12 @@ void System::evolve() void System::evolve_independent() { - for ( vector::const_iterator iter = spiking_groups.begin() ; + for ( std::vector::const_iterator iter = spiking_groups.begin() ; iter != spiking_groups.end() ; ++iter ) (*iter)->evolve_traces(); // evolve only if existing on rank - for ( vector::const_iterator iter = connections.begin() ; + for ( std::vector::const_iterator iter = connections.begin() ; iter != connections.end() ; ++iter ) (*iter)->evolve(); @@ -242,22 +244,22 @@ void System::evolve_independent() void System::propagate() { - vector::const_iterator iter; + std::vector::const_iterator iter; for ( iter = connections.begin() ; iter != connections.end() ; ++iter ) (*iter)->propagate(); } bool System::monitor(bool checking) { - vector::const_iterator iter; + std::vector::const_iterator iter; for ( iter = monitors.begin() ; iter != monitors.end() ; ++iter ) (*iter)->propagate(); for ( unsigned int i = 0 ; i < checkers.size() ; ++i ) if (!checkers[i]->propagate() && checking) { - stringstream oss; + std::stringstream oss; oss << "Checker " << i << " broke run!"; - logger->msg(oss.str(),WARNING); + auryn::logger->msg(oss.str(),WARNING); return false; } @@ -279,27 +281,27 @@ void System::progressbar ( double fraction, AurynTime clk ) { } } - cout << fixed << "\r" "[" << bar << "] "; - cout.width( 3 ); + std::cout << std::fixed << "\r" "[" << bar << "] "; + std::cout.width( 3 ); - string time = get_nice_time(clk); + std::string time = get_nice_time(clk); - cout<< percent << "% "<< setiosflags(ios::fixed) << " t=" << time ; + std::cout<< percent << "% "<< setiosflags(std::ios::fixed) << " t=" << time ; if ( online_rate_monitor_id >= 0 ) - cout << setprecision(1) << " f=" << online_rate_monitor_state << " Hz "; + std::cout << std::setprecision(1) << " f=" << online_rate_monitor_state << " Hz "; - cout << std::flush; + std::cout << std::flush; if ( fraction >= 1. ) - cout << endl; + std::cout << std::endl; } -string System::get_nice_time(AurynTime clk) +std::string System::get_nice_time(AurynTime clk) { const AurynTime hour = 3600/dt; const AurynTime day = 24*hour; - stringstream oss; + std::stringstream oss; if ( clk > day ) { int d = clk/day; oss << d <<"d "; @@ -310,7 +312,7 @@ string System::get_nice_time(AurynTime clk) oss << h <<"h "; clk -= h*hour; } - oss << fixed << setprecision(1) << clk*dt << "s"; + oss << std::fixed << std::setprecision(1) << clk*dt << "s"; return oss.str(); } @@ -318,22 +320,22 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, { // issue a warning if there are no units on the rank specified if ( get_total_neurons() == 0 ) { - logger->msg("There are no units assigned to this rank!",WARNING); + auryn::logger->msg("There are no units assigned to this rank!",WARNING); } double runtime = (stoptime - get_clock())*dt; - stringstream oss; + std::stringstream oss; oss << "Simulation triggered ( " << "runtime=" << runtime << "s )"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); oss.str(""); oss << "On this rank: neurons_total="<< get_total_neurons() << ", effective_load=" << get_total_effective_load() << ", synapses_total=" << get_total_synapses(); - logger->msg(oss.str(),SETTINGS); + auryn::logger->msg(oss.str(),SETTINGS); if (mpicom->rank() == 0) { @@ -346,7 +348,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, oss.str(""); oss << "On all ranks: neurons_total="<< all_ranks_total_neurons << ", synapses_total=" << all_ranks_total_synapses; - logger->msg(oss.str(),SETTINGS); + auryn::logger->msg(oss.str(),SETTINGS); } else { reduce(*mpicom, get_total_neurons(), std::plus(), 0); reduce(*mpicom, get_total_synapses(), std::plus(), 0); @@ -388,7 +390,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, << "min of runtime remaining"; } - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } evolve(); @@ -421,7 +423,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, << " (relative " << get_relative_sync_time() << " )"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); #else time_t t_now ; @@ -435,7 +437,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, << "s with SpeedFactor=" << elapsed/runtime << " (network clock=" << get_clock() << ")"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); #ifdef CODE_COLLECT_SYNC_TIMING_STATS @@ -456,7 +458,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, << minsync << " and maxsynctime " << maxsync; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } else { reduce(*mpicom, elapsed, mpi::minimum(), 0); reduce(*mpicom, syncbuffer->get_sync_time(), mpi::minimum(), 0); @@ -476,7 +478,7 @@ bool System::run(AurynFloat simulation_time, bool checking) // throw an exception if the stoptime is post the range of AurynTime if ( get_time() + simulation_time > std::numeric_limits::max()*dt ) { - logger->msg("The requested simulation time exceeds the number of possible timesteps limited by AurynTime datatype.",ERROR); + auryn::logger->msg("The requested simulation time exceeds the number of possible timesteps limited by AurynTime datatype.",ERROR); throw AurynTimeOverFlowException(); } @@ -489,7 +491,7 @@ bool System::run_chunk(AurynFloat chunk_time, AurynFloat interval_start, AurynFl // throw an exception if the stoptime is post the range of AurynTime if ( interval_end > std::numeric_limits::max()*dt ) { - logger->msg("The requested simulation time exceeds the number of possible timesteps limited by AurynTime datatype.",ERROR); + auryn::logger->msg("The requested simulation time exceeds the number of possible timesteps limited by AurynTime datatype.",ERROR); throw AurynTimeOverFlowException(); } @@ -502,18 +504,18 @@ mpi::communicator * System::get_com() return mpicom; } -void System::set_simulation_name(string name) +void System::set_simulation_name(std::string name) { simulation_name = name; } -void System::save_network_state(string basename) +void System::save_network_state(std::string basename) { - logger->msg("Saving network state", NOTIFICATION); + auryn::logger->msg("Saving network state", NOTIFICATION); - string netstate_filename; + std::string netstate_filename; { - stringstream oss; + std::stringstream oss; oss << basename << "." << mpicom->rank() << ".netstate"; @@ -540,57 +542,57 @@ void System::save_network_state(string basename) oa << tmp_int; - logger->msg("Saving Connections ...",VERBOSE); + auryn::logger->msg("Saving Connections ...",VERBOSE); for ( unsigned int i = 0 ; i < connections.size() ; ++i ) { - stringstream oss; + std::stringstream oss; oss << "Saving connection " << i << " \"" << connections[i]->get_name() << "\"" << " to stream"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); oa << *(connections[i]); } - logger->msg("Saving SpikingGroups ...",VERBOSE); + auryn::logger->msg("Saving SpikingGroups ...",VERBOSE); for ( unsigned int i = 0 ; i < spiking_groups.size() ; ++i ) { - stringstream oss; + std::stringstream oss; oss << "Saving SpikingGroup " << i << " (" << spiking_groups[i]->get_name() << ")" << " to stream"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); oa << *(spiking_groups[i]); } // Save Monitors - logger->msg("Saving Monitors ...",VERBOSE); + auryn::logger->msg("Saving Monitors ...",VERBOSE); for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) { - stringstream oss; + std::stringstream oss; oss << "Saving Monitor " << i << " to stream"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); oa << *(monitors[i]); } - logger->msg("Saving Checkers ...",VERBOSE); + auryn::logger->msg("Saving Checkers ...",VERBOSE); for ( unsigned int i = 0 ; i < checkers.size() ; ++i ) { - stringstream oss; + std::stringstream oss; oss << "Saving Checker " << i << " to stream"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); oa << *(checkers[i]); } @@ -598,18 +600,18 @@ void System::save_network_state(string basename) ofs.close(); } -void System::save_network_state_text(string basename) +void System::save_network_state_text(std::string basename) { - logger->msg("Saving network state to textfile", NOTIFICATION); + auryn::logger->msg("Saving network state to textfile", NOTIFICATION); char filename [255]; for ( unsigned int i = 0 ; i < connections.size() ; ++i ) { sprintf(filename, "%s.%d.%d.wmat", basename.c_str(), i, mpicom->rank()); - stringstream oss; + std::stringstream oss; oss << "Saving connection " << filename ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); connections[i]->write_to_file(filename); } @@ -617,23 +619,23 @@ void System::save_network_state_text(string basename) for ( unsigned int i = 0 ; i < spiking_groups.size() ; ++i ) { sprintf(filename, "%s.%d.%d.gstate", basename.c_str(), i, mpicom->rank()); - stringstream oss; + std::stringstream oss; oss << "Saving group " << filename ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); spiking_groups[i]->write_to_file(filename); } } -void System::load_network_state(string basename) +void System::load_network_state(std::string basename) { - logger->msg("Loading network state", NOTIFICATION); + auryn::logger->msg("Loading network state", NOTIFICATION); - string netstate_filename; + std::string netstate_filename; { - stringstream oss; + std::stringstream oss; oss << basename << "." << mpicom->rank() << ".netstate"; @@ -643,10 +645,10 @@ void System::load_network_state(string basename) std::ifstream ifs(netstate_filename.c_str()); if ( !ifs.is_open() ) { - stringstream oss; + std::stringstream oss; oss << "Error opening netstate file: " << netstate_filename; - logger->msg(oss.str(),ERROR); + auryn::logger->msg(oss.str(),ERROR); throw AurynOpenFileException(); } @@ -664,7 +666,7 @@ void System::load_network_state(string basename) pass_version = pass_version && AURYNREVISION==tmp_version; if ( !pass_version ) { - logger->msg("WARNING: Version check failed! Current Auryn version " + auryn::logger->msg("WARNING: Version check failed! Current Auryn version " "does not match the version which created the file. " "This could pose a problem. " "Proceed with caution!" ,WARNING); @@ -679,55 +681,55 @@ void System::load_network_state(string basename) pass_comm = pass_comm && (tmp_int == mpicom->rank()); if ( !pass_comm ) { - logger->msg("ERROR: Communicator size or rank do not match! " + auryn::logger->msg("ERROR: Communicator size or rank do not match! " "Presumably you are trying to load the network " "state netstate from a simulation which was run " "on a different number of cores." ,ERROR); } - logger->msg("Loading connections ...",VERBOSE); + auryn::logger->msg("Loading connections ...",VERBOSE); for ( unsigned int i = 0 ; i < connections.size() ; ++i ) { - stringstream oss; + std::stringstream oss; oss << "Loading connection " << i ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); ia >> *(connections[i]); connections[i]->finalize(); } - logger->msg("Loading SpikingGroups ...",VERBOSE); + auryn::logger->msg("Loading SpikingGroups ...",VERBOSE); for ( unsigned int i = 0 ; i < spiking_groups.size() ; ++i ) { - stringstream oss; + std::stringstream oss; oss << "Loading group " << i ; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); ia >> *(spiking_groups[i]); } // Loading Monitors states - logger->msg("Loading Monitors ...",VERBOSE); + auryn::logger->msg("Loading Monitors ...",VERBOSE); for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) { - stringstream oss; + std::stringstream oss; oss << "Loading Monitor " << i; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); ia >> *(monitors[i]); } - logger->msg("Loading Checkers ...",VERBOSE); + auryn::logger->msg("Loading Checkers ...",VERBOSE); for ( unsigned int i = 0 ; i < checkers.size() ; ++i ) { - stringstream oss; + std::stringstream oss; oss << "Loading Checker " << i; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); ia >> *(checkers[i]); } diff --git a/src/System.h b/src/System.h index 9feb8893..1dc86f8e 100644 --- a/src/System.h +++ b/src/System.h @@ -42,9 +42,7 @@ #define PROGRESSBAR_UPDATE_INTERVAL 1000 #define LOGGER_MARK_INTERVAL (10000*1000) // 1000s -using namespace std; -namespace mpi = boost::mpi; - +namespace auryn { /*! \brief Class that implements system wide variables and methods to manage and run simulations. * @@ -56,178 +54,179 @@ namespace mpi = boost::mpi; * evolve() and propagate() from each object in these vectors are called * alternatingly from within the run procedure. */ -class System -{ - -private: - AurynTime clock; - mpi::communicator * mpicom; - string simulation_name; - - SyncBuffer * syncbuffer; - - - vector spiking_groups; - vector connections; - vector monitors; - vector checkers; - - double simulation_time_realtime_ratio; - - int online_rate_monitor_id; - double online_rate_monitor_tau; - double online_rate_monitor_mul; - double online_rate_monitor_state; - - /*! Evolves the online rate monitor for the status bar. */ - void evolve_online_rate_monitor(); - - /*! Returns string with a human readable time. */ - string get_nice_time ( AurynTime clk ); - - /*! Draws the progress bar */ - void progressbar ( double fraction, AurynTime clk ); - - /*! Run simulation with given start and stop times and displays a progress bar. Mainly for internal use in System. - * \param starttime Start time used for display of progress bar. - * \param stoptime Stop time used for the display of the progress bar. The simulation stop when get_clock()>stoptime (this is the relevant one for the simulation) - * \param simulation_time again a time used for the display of the progress bar */ - bool run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, bool checking=true); - - /*! Synchronizes SpikingGroups */ - void sync(); - - /*! Evolves all objects that need integration. */ - void evolve(); - - /*! Propagates the spikes and evolves connection objects. */ - void propagate(); - - /*! Performs integration of Connection objects. - * Since this is independent of the SpikingGroup evolve we - * can do this while we are waiting for synchronization. */ - void evolve_independent(); - - /*! Calls all monitors. */ - bool monitor(bool checking); - -public: - /*! Switch to turn output to quiet mode (no progress bar). */ - bool quiet; - - System(); - System(mpi::communicator * communicator); - void init(); - void set_simulation_name(string name); - virtual ~System(); - void free(); + class System + { + + private: + AurynTime clock; + mpi::communicator * mpicom; + std::string simulation_name; + + SyncBuffer * syncbuffer; + + + std::vector spiking_groups; + std::vector connections; + std::vector monitors; + std::vector checkers; + + double simulation_time_realtime_ratio; + + int online_rate_monitor_id; + double online_rate_monitor_tau; + double online_rate_monitor_mul; + double online_rate_monitor_state; + + /*! Evolves the online rate monitor for the status bar. */ + void evolve_online_rate_monitor(); + + /*! Returns string with a human readable time. */ + std::string get_nice_time ( AurynTime clk ); + + /*! Draws the progress bar */ + void progressbar ( double fraction, AurynTime clk ); + + /*! Run simulation with given start and stop times and displays a progress bar. Mainly for internal use in System. + * \param starttime Start time used for display of progress bar. + * \param stoptime Stop time used for the display of the progress bar. The simulation stop when get_clock()>stoptime (this is the relevant one for the simulation) + * \param simulation_time again a time used for the display of the progress bar */ + bool run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, bool checking=true); + + /*! Synchronizes SpikingGroups */ + void sync(); + + /*! Evolves all objects that need integration. */ + void evolve(); + + /*! Propagates the spikes and evolves connection objects. */ + void propagate(); + + /*! Performs integration of Connection objects. + * Since this is independent of the SpikingGroup evolve we + * can do this while we are waiting for synchronization. */ + void evolve_independent(); + + /*! Calls all monitors. */ + bool monitor(bool checking); + + public: + /*! Switch to turn output to quiet mode (no progress bar). */ + bool quiet; + + System(); + System(mpi::communicator * communicator); + void init(); + void set_simulation_name(std::string name); + virtual ~System(); + void free(); - /*! Implements integration and spike propagation of a single integration step. */ - void step(); + /*! Implements integration and spike propagation of a single integration step. */ + void step(); - /*! Initialializes the recvs for all the MPI sync */ - void sync_prepare(); + /*! Initialializes the recvs for all the MPI sync */ + void sync_prepare(); - /*! Sets the SpikingGroup ID used to display the rate estimate in the - * progressbar (this typically is reflected by the order in - * which you define the SpikingGroup and NeuronGroup classes. It starts - * numbering from 0.). */ - void set_online_rate_monitor_id( int id=0 ); + /*! Sets the SpikingGroup ID used to display the rate estimate in the + * progressbar (this typically is reflected by the order in + * which you define the SpikingGroup and NeuronGroup classes. It starts + * numbering from 0.). */ + void set_online_rate_monitor_id( int id=0 ); - /*! Sets the timeconstant to compute the online rate average for the status bar. */ - void set_online_rate_monitor_tau( AurynDouble tau=100e-3 ); + /*! Sets the timeconstant to compute the online rate average for the status bar. */ + void set_online_rate_monitor_tau( AurynDouble tau=100e-3 ); - /*! \brief Saves network state to a netstate file - * - * This function saves the network state to one serialized file. The network - * state includes the internal state variables of all neurons and the synaptic - * connections. It currently does not save the state of any random number - * generators (v0.5) but this is planned to change in the future. Note that - * netstate files do not contain any parameters either. This was done to - * allow to run a simulation with a certain parameter set for a given amount - * of time. Save the network state and then continue the simulation from - * that point with a changed parameter set (e.g. a new stimulus set or - * similar). - * - * \param Prefix (including directory path) of the netstate file without extension - */ - void save_network_state(string basename); + /*! \brief Saves network state to a netstate file + * + * This function saves the network state to one serialized file. The network + * state includes the internal state variables of all neurons and the synaptic + * connections. It currently does not save the state of any random number + * generators (v0.5) but this is planned to change in the future. Note that + * netstate files do not contain any parameters either. This was done to + * allow to run a simulation with a certain parameter set for a given amount + * of time. Save the network state and then continue the simulation from + * that point with a changed parameter set (e.g. a new stimulus set or + * similar). + * + * \param Prefix (including directory path) of the netstate file without extension + */ + void save_network_state(std::string basename); - /*! \brief Loads network state from a netstate file - * - * \param Basename (directory and prefix of file) of the netstate file without extension - */ - void load_network_state(string basename); + /*! \brief Loads network state from a netstate file + * + * \param Basename (directory and prefix of file) of the netstate file without extension + */ + void load_network_state(std::string basename); - /*! \brief Saves the network state to human readable text files - * - * This deprecated method of saving the network state generates a large number of files - * because each Connection object or SpikingGroup creates their own respective file. This - * function might still be useful if you have code in which you analaze these files offline. - * In most cases you will want to use save_network_state and only dump a limited subset (e.g. - * all the plastic connections) in human-readable text files for analysis. - * - * \param Basename (directory and prefix of file) of the netstate file without extension - */ - void save_network_state_text(string basename); + /*! \brief Saves the network state to human readable text files + * + * This deprecated method of saving the network state generates a large number of files + * because each Connection object or SpikingGroup creates their own respective file. This + * function might still be useful if you have code in which you analaze these files offline. + * In most cases you will want to use save_network_state and only dump a limited subset (e.g. + * all the plastic connections) in human-readable text files for analysis. + * + * \param Basename (directory and prefix of file) of the netstate file without extension + */ + void save_network_state_text(std::string basename); - /*! Registers an instance of SpikingGroup to the spiking_groups vector. */ - void register_spiking_group(SpikingGroup * spiking_group); - - /*! Registers an instance of Connection to the connections vector. */ - void register_connection(Connection * connection); + /*! Registers an instance of SpikingGroup to the spiking_groups vector. */ + void register_spiking_group(SpikingGroup * spiking_group); + + /*! Registers an instance of Connection to the connections vector. */ + void register_connection(Connection * connection); - /*! Registers an instance of Monitor to the monitors vector. */ - void register_monitor(Monitor * monitor); + /*! Registers an instance of Monitor to the monitors vector. */ + void register_monitor(Monitor * monitor); - /*! Registers an instance of Checker to the checkers vector. - * - * Note: The first checker that is registered is by default used by System for the rate output in the progress bar.*/ - void register_checker(Checker * checker); - - - /*! Run simulation for a given time. - * \param simulation_time time to run the simulation - * \param checking true if checkers can break the run (e.g. if a frequency get's to high and the network explodes) */ - bool run(AurynFloat simulation_time, bool checking=true); - - /*! This and interface to run a single progress bar, but cut it in different chunks to turn on - * and off stuff in the simulation without perturbing the output. interval_start and end define - * the total duration of the simulation (this is used to build the progress bar, while chung_time - * is the actual time that is simulated for each call.*/ - bool run_chunk(AurynFloat chunk_time, AurynFloat interval_start, AurynFloat interval_end, bool checking=true); - - /*! Get the current system time in [s] */ - AurynDouble get_time(); - - /*! Get the current clock value in AurynTime */ - AurynTime get_clock(); - - /*! Get a pointer to the current clock. */ - AurynTime * get_clock_ptr(); - - /*! Get total number of registered neurons */ - AurynLong get_total_neurons(); - - /*! Get total effective load */ - AurynDouble get_total_effective_load(); - - /*! Get total number of registered synapses */ - AurynLong get_total_synapses(); - - - mpi::communicator * get_com(); + /*! Registers an instance of Checker to the checkers vector. + * + * Note: The first checker that is registered is by default used by System for the rate output in the progress bar.*/ + void register_checker(Checker * checker); + + + /*! Run simulation for a given time. + * \param simulation_time time to run the simulation + * \param checking true if checkers can break the run (e.g. if a frequency get's to high and the network explodes) */ + bool run(AurynFloat simulation_time, bool checking=true); + + /*! This and interface to run a single progress bar, but cut it in different chunks to turn on + * and off stuff in the simulation without perturbing the output. interval_start and end define + * the total duration of the simulation (this is used to build the progress bar, while chung_time + * is the actual time that is simulated for each call.*/ + bool run_chunk(AurynFloat chunk_time, AurynFloat interval_start, AurynFloat interval_end, bool checking=true); + + /*! Get the current system time in [s] */ + AurynDouble get_time(); + + /*! Get the current clock value in AurynTime */ + AurynTime get_clock(); + + /*! Get a pointer to the current clock. */ + AurynTime * get_clock_ptr(); + + /*! Get total number of registered neurons */ + AurynLong get_total_neurons(); + + /*! Get total effective load */ + AurynDouble get_total_effective_load(); + + /*! Get total number of registered synapses */ + AurynLong get_total_synapses(); + + + mpi::communicator * get_com(); #ifdef CODE_COLLECT_SYNC_TIMING_STATS - AurynDouble deltaT; - AurynDouble measurement_start; - AurynDouble get_relative_sync_time(); - AurynDouble get_sync_time(); - AurynDouble get_elapsed_wall_time(); - void reset_sync_time(); + AurynDouble deltaT; + AurynDouble measurement_start; + AurynDouble get_relative_sync_time(); + AurynDouble get_sync_time(); + AurynDouble get_elapsed_wall_time(); + void reset_sync_time(); #endif -}; + }; +} // end of namespace brackets #endif /*SYSTEM_H_*/ diff --git a/src/TIFGroup.cpp b/src/TIFGroup.cpp index b4d142f5..e96e0ea3 100644 --- a/src/TIFGroup.cpp +++ b/src/TIFGroup.cpp @@ -25,9 +25,11 @@ #include "TIFGroup.h" +using namespace auryn; + TIFGroup::TIFGroup(NeuronID size) : NeuronGroup(size) { - sys->register_spiking_group(this); + auryn::sys->register_spiking_group(this); if ( evolve_locally() ) init(); } @@ -151,9 +153,9 @@ AurynFloat TIFGroup::get_bg_current(NeuronID i) { return 0; } -string TIFGroup::get_output_line(NeuronID i) +std::string TIFGroup::get_output_line(NeuronID i) { - stringstream oss; + std::stringstream oss; oss << get_mem(i) << " " << get_ampa(i) << " " << get_gaba(i) << " " << auryn_vector_ushort_get (ref, i) << " " << auryn_vector_float_get (bg_current, i) <<"\n"; diff --git a/src/TIFGroup.h b/src/TIFGroup.h index 17cb2446..00d40f95 100644 --- a/src/TIFGroup.h +++ b/src/TIFGroup.h @@ -30,6 +30,7 @@ #include "NeuronGroup.h" #include "System.h" +namespace auryn { /*! \brief Conductance based LIF neuron model with absolute refractoriness as used in Vogels and Abbott 2005. */ @@ -94,5 +95,7 @@ class TIFGroup : public NeuronGroup void evolve(); }; +} + #endif /*TIFGROUP_H_*/ diff --git a/src/TripletConnection.cpp b/src/TripletConnection.cpp index 203fe2ee..393c24e2 100644 --- a/src/TripletConnection.cpp +++ b/src/TripletConnection.cpp @@ -25,6 +25,8 @@ #include "TripletConnection.h" +using namespace auryn; + void TripletConnection::init(AurynFloat tau_hom, AurynFloat eta, AurynFloat kappa, AurynFloat maxweight) { if ( dst->get_post_size() == 0 ) return; // avoids to run this code on silent nodes with zero post neurons. @@ -102,7 +104,7 @@ TripletConnection::TripletConnection(SpikingGroup * source, NeuronGroup * destin AurynFloat eta, AurynFloat kappa, AurynFloat maxweight , TransmitterType transmitter, - string name) + std::string name) : DuplexConnection(source, destination, weight, diff --git a/src/TripletConnection.h b/src/TripletConnection.h index 823cb606..d1f2607f 100644 --- a/src/TripletConnection.h +++ b/src/TripletConnection.h @@ -34,8 +34,8 @@ #define TRACE EulerTrace -using namespace std; +namespace auryn { /*! \brief Implements triplet STDP as described by Pfister and Gerstner 2006. * @@ -170,4 +170,6 @@ class TripletConnection : public DuplexConnection }; +} + #endif /*TRIPLETCONNECTION_H_*/ diff --git a/src/TripletDecayConnection.cpp b/src/TripletDecayConnection.cpp index e4c89525..e01c5055 100644 --- a/src/TripletDecayConnection.cpp +++ b/src/TripletDecayConnection.cpp @@ -25,6 +25,8 @@ #include "TripletDecayConnection.h" +using namespace auryn; + void TripletDecayConnection::init(AurynFloat decay, AurynWeight wrest) { tau_decay = decay; @@ -34,11 +36,11 @@ void TripletDecayConnection::init(AurynFloat decay, AurynWeight wrest) decay_timestep = -log(TRIPLETDECAYCONNECTION_EULERUPGRADE_STEP)*tau_decay/dt; decay_count = decay_timestep; - stringstream oss; + std::stringstream oss; oss << "TripletDecayConnection: (" << get_name() << "):" << " decay_timestep= " << decay_timestep << ", mul_decay= " << mul_decay; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); } void TripletDecayConnection::free() diff --git a/src/TripletDecayConnection.h b/src/TripletDecayConnection.h index b8742afe..24670ce7 100644 --- a/src/TripletDecayConnection.h +++ b/src/TripletDecayConnection.h @@ -32,7 +32,7 @@ #define TRIPLETDECAYCONNECTION_EULERUPGRADE_STEP 0.999 -using namespace std; +namespace auryn { class TripletDecayConnection : public TripletConnection @@ -70,4 +70,6 @@ class TripletDecayConnection : public TripletConnection }; +} + #endif /*TRIPLETDECAYCONNECTION_H_*/ diff --git a/src/VoltageMonitor.cpp b/src/VoltageMonitor.cpp index e44b6550..76c71a6b 100644 --- a/src/VoltageMonitor.cpp +++ b/src/VoltageMonitor.cpp @@ -25,7 +25,9 @@ #include "VoltageMonitor.h" -VoltageMonitor::VoltageMonitor(NeuronGroup * source, NeuronID id, string filename, AurynDouble stepsize) : Monitor(filename) +using namespace auryn; + +VoltageMonitor::VoltageMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynDouble stepsize) : Monitor(filename) { init(source,id,filename,(AurynTime)(stepsize/dt)); } @@ -34,7 +36,7 @@ VoltageMonitor::~VoltageMonitor() { } -void VoltageMonitor::init(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize) +void VoltageMonitor::init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) { // only register if the neuron exists on this rank src = source; @@ -48,15 +50,15 @@ void VoltageMonitor::init(NeuronGroup * source, NeuronID id, string filename, Au tStop = -1; // at the end of all times ... if ( nid < src->get_post_size() ) { - sys->register_monitor(this); - outfile << setiosflags(ios::fixed) << setprecision(6); + auryn::sys->register_monitor(this); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); outfile << "# Recording from neuron " << gid << "\n"; } } void VoltageMonitor::propagate() { - if ( sys->get_clock() < tStop && (sys->get_clock())%ssize==0 ) { + if ( auryn::sys->get_clock() < tStop && (auryn::sys->get_clock())%ssize==0 ) { double voltage = src->get_mem(nid); if ( paste_spikes ) { SpikeContainer * spikes = src->get_spikes_immediate(); @@ -67,7 +69,7 @@ void VoltageMonitor::propagate() } } } - outfile << (sys->get_time()) << " " << voltage << "\n"; + outfile << (auryn::sys->get_time()) << " " << voltage << "\n"; } } @@ -81,7 +83,7 @@ void VoltageMonitor::record_for(AurynDouble time) void VoltageMonitor::set_stop_time(AurynDouble time) { if (time < 0) { - logger->msg("Warning: Negative stop times not supported -- ingoring.",WARNING); + auryn::logger->msg("Warning: Negative stop times not supported -- ingoring.",WARNING); } - else tStop = sys->get_clock() + time/dt; + else tStop = auryn::sys->get_clock() + time/dt; } diff --git a/src/VoltageMonitor.h b/src/VoltageMonitor.h index 35cbc2a8..9edf5b20 100644 --- a/src/VoltageMonitor.h +++ b/src/VoltageMonitor.h @@ -35,7 +35,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Records the membrane potential from one unit from the source neuron group to a file. * @@ -87,4 +87,6 @@ class VoltageMonitor : protected Monitor void propagate(); }; +} + #endif /*VOLTAGEMONITOR_H_*/ diff --git a/src/WeightMatrixMonitor.cpp b/src/WeightMatrixMonitor.cpp index a1db6e5c..716ea82d 100644 --- a/src/WeightMatrixMonitor.cpp +++ b/src/WeightMatrixMonitor.cpp @@ -25,7 +25,9 @@ #include "WeightMatrixMonitor.h" -WeightMatrixMonitor::WeightMatrixMonitor(Connection * source, string filename, AurynFloat stepsize) : Monitor(filename) +using namespace auryn; + +WeightMatrixMonitor::WeightMatrixMonitor(Connection * source, std::string filename, AurynFloat stepsize) : Monitor(filename) { init(source,stepsize); } @@ -36,18 +38,18 @@ WeightMatrixMonitor::~WeightMatrixMonitor() void WeightMatrixMonitor::init(Connection * source, AurynFloat stepsize) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; ssize = (AurynTime) (stepsize/dt); - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); filecount = 0; } void WeightMatrixMonitor::propagate() { - if (sys->get_clock()%ssize==0) { + if (auryn::sys->get_clock()%ssize==0) { AurynFloat mean,std; src->stats(mean,std); @@ -56,7 +58,7 @@ void WeightMatrixMonitor::propagate() src->write_to_file(wmatfilename); filecount++; - outfile << dt*(sys->get_clock()) << " " << mean << " " << std << " " << wmatfilename << endl; + outfile << dt*(auryn::sys->get_clock()) << " " << mean << " " << std << " " << wmatfilename << std::endl; } } diff --git a/src/WeightMatrixMonitor.h b/src/WeightMatrixMonitor.h index bdf34ff4..9f1ee115 100644 --- a/src/WeightMatrixMonitor.h +++ b/src/WeightMatrixMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Saves the weight matrix of a given connection in regular time intervals. */ @@ -51,4 +51,6 @@ class WeightMatrixMonitor : protected Monitor void propagate(); }; +} + #endif /*WEIGHTMATRIXMONITOR_H_*/ diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 0a20167e..909e0a65 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -25,18 +25,20 @@ #include "WeightMonitor.h" -WeightMonitor::WeightMonitor(SparseConnection * source, string filename, AurynDouble interval ) : Monitor(filename) +using namespace auryn; + +WeightMonitor::WeightMonitor(SparseConnection * source, std::string filename, AurynDouble interval ) : Monitor(filename) { init(source,0,0,filename,interval/dt); } -WeightMonitor::WeightMonitor(SparseConnection * source, ForwardMatrix * m, string filename, AurynDouble interval ) : Monitor(filename) +WeightMonitor::WeightMonitor(SparseConnection * source, ForwardMatrix * m, std::string filename, AurynDouble interval ) : Monitor(filename) { init(source,0,0,filename,interval/dt); set_mat(m); } -WeightMonitor::WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynDouble interval, RecordingMode mode ) : Monitor(filename) +WeightMonitor::WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, std::string filename, AurynDouble interval, RecordingMode mode ) : Monitor(filename) { init(source,i,j,filename,interval/dt); @@ -62,25 +64,25 @@ WeightMonitor::~WeightMonitor() } -void WeightMonitor::init(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynTime stepsize) +void WeightMonitor::init(SparseConnection * source, NeuronID i, NeuronID j, std::string filename, AurynTime stepsize) { - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; set_mat(src->w); ssize = stepsize; if ( ssize < 1 ) ssize = 1; - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); - stringstream oss; + std::stringstream oss; oss << "WeightMonitor:: " << "Initialized. Writing to file " << fname; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); // default behavior recordingmode = ELEMENTLIST; - element_list = new vector; + element_list = new std::vector; group_indices.push_back(0); // important for group mode elem_i = 0; elem_j = 0; @@ -103,42 +105,42 @@ void WeightMonitor::add_to_list(NeuronID i, NeuronID j) add_to_list( mat->get_data_index(i,j) ); } -void WeightMonitor::add_to_list( vector vec, string label ) +void WeightMonitor::add_to_list( std::vector vec, std::string label ) { if ( recordingmode == ELEMENTLIST || recordingmode == GROUPS ) { - stringstream oss; + std::stringstream oss; oss << "WeightMonitor:: Adding " << vec.size() << " elements to index list " << label; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); if ( label.empty() ) - outfile << "# Added list with " << vec.size() << " elements." << endl; + outfile << "# Added list with " << vec.size() << " elements." << std::endl; else - outfile << "# Added list " << label << " with " << vec.size() << " elements." << endl; + outfile << "# Added list " << label << " with " << vec.size() << " elements." << std::endl; - for (vector::iterator iter = vec.begin() ; iter != vec.end() ; ++iter) + for (std::vector::iterator iter = vec.begin() ; iter != vec.end() ; ++iter) { add_to_list( (*iter).i, (*iter).j ); } } else { - stringstream oss; + std::stringstream oss; oss << "WeightMonitor:: " << "Cannot add weight list. Not in ELEMENTLIST or GROUP mode." - << endl; - logger->msg(oss.str(),ERROR); + << std::endl; + auryn::logger->msg(oss.str(),ERROR); } } void WeightMonitor::add_equally_spaced(NeuronID number, NeuronID z) { if ( z >= mat->get_z_values() ) { - logger->msg("WeightMonitor:: z too large. Trying to monitor complex " + auryn::logger->msg("WeightMonitor:: z too large. Trying to monitor complex " "synaptic values which do not exist." ,ERROR); return; } if ( number > src->get_nonzero() ) { - logger->msg("WeightMonitor:: add_equally_spaced: \ + auryn::logger->msg("WeightMonitor:: add_equally_spaced: \ Not enough elements in this Connection object",WARNING); number = src->get_nonzero(); } @@ -146,12 +148,12 @@ void WeightMonitor::add_equally_spaced(NeuronID number, NeuronID z) for ( NeuronID i = 0 ; i < number ; ++i ) add_to_list(mat->get_data_begin(z)+i*mat->get_nonzero()/number); - stringstream oss; + std::stringstream oss; oss << "WeightMonitor:: " << "Adding " << number << " equally spaced values."; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); } void WeightMonitor::load_data_range( NeuronID i, NeuronID j ) @@ -160,38 +162,38 @@ void WeightMonitor::load_data_range( NeuronID i, NeuronID j ) if ( j > mat->get_nonzero() ) j = mat->get_nonzero(); - stringstream oss; + std::stringstream oss; oss << "WeightMonitor:: " << "Adding data range i=" << i << " j=" << j; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); for ( NeuronID a = i ; a < j ; ++a ) element_list->push_back( a ); - outfile << "# Added data range " << i << "-" << j << "." << endl; + outfile << "# Added data range " << i << "-" << j << "." << std::endl; } -vector * WeightMonitor::load_patfile( string filename, int maxpat ) +std::vector * WeightMonitor::load_patfile( std::string filename, int maxpat ) { - vector * patterns = new vector; + std::vector * patterns = new std::vector; - ifstream fin (filename.c_str()); + std::ifstream fin (filename.c_str()); if (!fin) { - stringstream oss; + std::stringstream oss; oss << "WeightMonitor:: " << "There was a problem opening file " << filename << " for reading." - << endl; - logger->msg(oss.str(),ERROR); + << std::endl; + auryn::logger->msg(oss.str(),ERROR); throw AurynOpenFileException(); } char buffer[256]; - string line; + std::string line; type_pattern pattern; @@ -205,7 +207,7 @@ vector * WeightMonitor::load_patfile( string filename, int maxpat if (line[0] == '#') continue; if (line == "") { if ( total_pattern_size > 0 ) { - stringstream oss; + std::stringstream oss; oss << "WeightMonitor:: Read pattern " << patterns->size() << " with pattern size " @@ -213,7 +215,7 @@ vector * WeightMonitor::load_patfile( string filename, int maxpat << " ( " << pattern.size() << " on rank )"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); patterns->push_back(pattern); pattern.clear(); @@ -222,7 +224,7 @@ vector * WeightMonitor::load_patfile( string filename, int maxpat continue; } - stringstream iss (line); + std::stringstream iss (line); NeuronID i ; iss >> i ; pattern_member pm; @@ -239,18 +241,18 @@ vector * WeightMonitor::load_patfile( string filename, int maxpat return patterns; } -void WeightMonitor::load_pattern_connections( string filename , int maxcon, int maxpat, PatternMode patmod ) +void WeightMonitor::load_pattern_connections( std::string filename , int maxcon, int maxpat, PatternMode patmod ) { load_pattern_connections( filename, filename, maxcon, maxpat, patmod ); } -void WeightMonitor::load_pattern_connections( string filename_pre, string filename_post , int maxcon, int maxpat, PatternMode patmod ) +void WeightMonitor::load_pattern_connections( std::string filename_pre, std::string filename_post , int maxcon, int maxpat, PatternMode patmod ) { if ( !src->get_destination()->evolve_locally() ) return ; - vector * patterns_pre = load_patfile(filename_pre, maxpat); - vector * patterns_post = patterns_pre; + std::vector * patterns_pre = load_patfile(filename_pre, maxpat); + std::vector * patterns_post = patterns_pre; if ( filename_pre.compare(filename_post) ) patterns_pre = load_patfile(filename_post, maxpat); @@ -260,7 +262,7 @@ void WeightMonitor::load_pattern_connections( string filename_pre, string filena for ( int i = 0 ; i < patterns_pre->size() ; ++i ) { for ( int j = 0 ; j < patterns_post->size() ; ++j ) { if ( patmod==ASSEMBLIES_ONLY && i != j ) continue; - vector list; + std::vector list; for ( int k = 0 ; k < patterns_pre->at(i).size() ; ++k ) { for ( int l = 0 ; l < patterns_post->at(j).size() ; ++l ) { neuron_pair p; @@ -276,7 +278,7 @@ void WeightMonitor::load_pattern_connections( string filename_pre, string filena } - stringstream oss; + std::stringstream oss; oss << "(connections " << i << " to " << j << ")"; add_to_list(list,oss.str()); group_indices.push_back(element_list->size()); @@ -285,13 +287,13 @@ void WeightMonitor::load_pattern_connections( string filename_pre, string filena - stringstream oss; + std::stringstream oss; oss << "WeightMonitor:: Finished loading connections from n_pre=" << patterns_pre->size() << " and n_post=" << patterns_post->size() << " patterns"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); if ( patterns_pre != patterns_post ) @@ -303,7 +305,7 @@ void WeightMonitor::load_pattern_connections( string filename_pre, string filena void WeightMonitor::record_single_synapses() { - for (vector::iterator iter = element_list->begin() ; iter != element_list->end() ; ++iter) + for (std::vector::iterator iter = element_list->begin() ; iter != element_list->end() ; ++iter) outfile << mat->get_data( (*iter) ) << " "; } @@ -328,8 +330,8 @@ void WeightMonitor::record_synapse_groups() void WeightMonitor::propagate() { if ( src->get_destination()->evolve_locally() ) { - if (sys->get_clock()%ssize==0) { - outfile << fixed << dt*(sys->get_clock()) << scientific << " "; + if (auryn::sys->get_clock()%ssize==0) { + outfile << std::fixed << dt*(auryn::sys->get_clock()) << std::scientific << " "; if ( recordingmode == GROUPS ) record_synapse_groups(); else record_single_synapses(); outfile << "\n"; diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index 1da477c7..a70c1a6f 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! RecordingMode determines the default recording behavior of the monitor. @@ -75,14 +75,14 @@ class WeightMonitor : protected Monitor NeuronID elem_i; NeuronID elem_j; AurynTime ssize; - vector * element_list; - vector group_indices; + std::vector * element_list; + std::vector group_indices; void init(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynTime interval); void record_single_synapses(); void record_synapse_groups(); - vector * load_patfile( string filename, int maxpat ); + std::vector * load_patfile( string filename, int maxpat ); public: WeightMonitor(SparseConnection * source, string filename, AurynDouble interval=1); @@ -104,7 +104,7 @@ class WeightMonitor : protected Monitor * can for instance be generated by a SparseConnection with the get_block * function. */ - void add_to_list( vector vec , string label = ""); + void add_to_list( std::vector vec , string label = ""); /*! \brief Adds number of elements to the recording list that are equally spaced in the * data vector of SimpleMatrix. @@ -129,4 +129,6 @@ class WeightMonitor : protected Monitor void load_data_range(NeuronID i, NeuronID j); }; +} + #endif /*WEIGHTMONITOR_H_*/ diff --git a/src/WeightPatternMonitor.cpp b/src/WeightPatternMonitor.cpp index 6c4fa35a..07c8ec0b 100644 --- a/src/WeightPatternMonitor.cpp +++ b/src/WeightPatternMonitor.cpp @@ -25,7 +25,9 @@ #include "WeightPatternMonitor.h" -WeightPatternMonitor::WeightPatternMonitor(Connection * source, string filename, AurynDouble binsize) : Monitor(filename) +using namespace auryn; + +WeightPatternMonitor::WeightPatternMonitor(Connection * source, std::string filename, AurynDouble binsize) : Monitor(filename) { init(source,filename,binsize/dt); } @@ -34,17 +36,17 @@ WeightPatternMonitor::~WeightPatternMonitor() { } -void WeightPatternMonitor::init(Connection * source, string filename,AurynTime stepsize) +void WeightPatternMonitor::init(Connection * source, std::string filename,AurynTime stepsize) { if ( !source->get_destination()->evolve_locally() ) return; - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; ssize = stepsize; if ( ssize < 1 ) ssize = 1; - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << setiosflags(std::ios::fixed) << std::setprecision(6); max_patterns = 5; } @@ -73,39 +75,39 @@ AurynWeight WeightPatternMonitor::compute_pattern_mean(const NeuronID i, const N void WeightPatternMonitor::propagate() { - if (sys->get_clock()%ssize==0) { - outfile << fixed << (sys->get_time()) << " "; + if (auryn::sys->get_clock()%ssize==0) { + outfile << std::fixed << (auryn::sys->get_time()) << " "; - int p = min(min(pre_patterns.size(),post_patterns.size()),max_patterns); + int p = std::min(std::min(pre_patterns.size(),post_patterns.size()),max_patterns); for ( int i = 0 ; i < p ; ++i ) { for ( int j = 0 ; j < p ; ++j ) { - outfile << scientific + outfile << std::scientific << compute_pattern_mean(i,j) << " "; } } - outfile << endl; + outfile << std::endl; } } -void WeightPatternMonitor::load_patterns( string filename, vector & patterns ) +void WeightPatternMonitor::load_patterns( std::string filename, std::vector & patterns ) { - ifstream fin (filename.c_str()); + std::ifstream fin (filename.c_str()); if (!fin) { - stringstream oss; + std::stringstream oss; oss << "WeightPatternMonitor:: " << "There was a problem opening file " << filename << " for reading." - << endl; - logger->msg(oss.str(),ERROR); + << std::endl; + auryn::logger->msg(oss.str(),ERROR); throw AurynOpenFileException(); } char buffer[256]; - string line; + std::string line; patterns.clear(); @@ -120,7 +122,7 @@ void WeightPatternMonitor::load_patterns( string filename, vector if (line[0] == '#') continue; if (line == "") { if ( total_pattern_size > 0 ) { - stringstream oss; + std::stringstream oss; oss << "WeightPatternMonitor:: Read pattern " << patterns.size() << " with pattern size " @@ -128,7 +130,7 @@ void WeightPatternMonitor::load_patterns( string filename, vector << " ( " << pattern.size() << " on rank )"; - logger->msg(oss.str(),VERBOSE); + auryn::logger->msg(oss.str(),VERBOSE); patterns.push_back(pattern); pattern.clear(); @@ -137,7 +139,7 @@ void WeightPatternMonitor::load_patterns( string filename, vector continue; } - stringstream iss (line); + std::stringstream iss (line); NeuronID i ; iss >> i ; pattern_member pm; @@ -150,22 +152,22 @@ void WeightPatternMonitor::load_patterns( string filename, vector fin.close(); - stringstream oss; + std::stringstream oss; oss << "WeightPatternMonitor:: Finished loading " << patterns.size() << " patterns"; - logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),NOTIFICATION); } -void WeightPatternMonitor::load_pre_patterns( string filename ) +void WeightPatternMonitor::load_pre_patterns( std::string filename ) { load_patterns(filename,pre_patterns); } -void WeightPatternMonitor::load_post_patterns( string filename ) +void WeightPatternMonitor::load_post_patterns( std::string filename ) { load_patterns(filename,post_patterns); } -void WeightPatternMonitor::load_patterns( string filename ) +void WeightPatternMonitor::load_patterns( std::string filename ) { load_pre_patterns(filename); load_post_patterns(filename); diff --git a/src/WeightPatternMonitor.h b/src/WeightPatternMonitor.h index 4f3b65bd..71181d93 100644 --- a/src/WeightPatternMonitor.h +++ b/src/WeightPatternMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Records mean weights from a connection specified by one or two * pattern files. Can be used to easily monitor the mean synaptic weight @@ -47,15 +47,15 @@ class WeightPatternMonitor : protected Monitor - vector pre_patterns; - vector post_patterns; + std::vector pre_patterns; + std::vector post_patterns; void init(Connection * source, string filename, AurynTime stepsize); AurynWeight compute_pattern_mean(const NeuronID i, const NeuronID j); /*! Mother function for loading patterns */ - void load_patterns(string filename, vector & patterns ); + void load_patterns(std::string filename, std::vector & patterns ); public: /*! Maximum number of patterns to record from */ @@ -76,4 +76,6 @@ size_t max_patterns; void propagate(); }; +} + #endif /*WEIGHTPATTERNMONITOR_H_*/ diff --git a/src/WeightStatsMonitor.cpp b/src/WeightStatsMonitor.cpp index 59eaacbe..e685ac41 100644 --- a/src/WeightStatsMonitor.cpp +++ b/src/WeightStatsMonitor.cpp @@ -25,7 +25,9 @@ #include "WeightStatsMonitor.h" -WeightStatsMonitor::WeightStatsMonitor(Connection * source, string filename, AurynDouble binsize) : Monitor(filename) +using namespace auryn; + +WeightStatsMonitor::WeightStatsMonitor(Connection * source, std::string filename, AurynDouble binsize) : Monitor(filename) { init(source,filename,binsize/dt); } @@ -34,25 +36,25 @@ WeightStatsMonitor::~WeightStatsMonitor() { } -void WeightStatsMonitor::init(Connection * source, string filename,AurynTime stepsize) +void WeightStatsMonitor::init(Connection * source, std::string filename,AurynTime stepsize) { if ( !source->get_destination()->evolve_locally() ) return; - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; ssize = stepsize; if ( ssize < 1 ) ssize = 1; - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } void WeightStatsMonitor::propagate() { - if (sys->get_clock()%ssize==0) { + if (auryn::sys->get_clock()%ssize==0) { AurynFloat mean,std; src->stats(mean,std); - outfile << (sys->get_time()) << " " << mean << " " << std << endl; + outfile << (auryn::sys->get_time()) << " " << mean << " " << std << std::endl; } } diff --git a/src/WeightStatsMonitor.h b/src/WeightStatsMonitor.h index 73195e6b..fd6e5a4a 100644 --- a/src/WeightStatsMonitor.h +++ b/src/WeightStatsMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Records mean and standard deviation of a weight matrix in predefined * intervals. @@ -52,4 +52,6 @@ class WeightStatsMonitor : protected Monitor void propagate(); }; +} + #endif /*WEIGHTSTATSMONITOR_H_*/ diff --git a/src/WeightSumMonitor.cpp b/src/WeightSumMonitor.cpp index 72792b19..a832f643 100644 --- a/src/WeightSumMonitor.cpp +++ b/src/WeightSumMonitor.cpp @@ -25,7 +25,9 @@ #include "WeightSumMonitor.h" -WeightSumMonitor::WeightSumMonitor(Connection * source, string filename, AurynDouble binsize) : Monitor(filename) +using namespace auryn; + +WeightSumMonitor::WeightSumMonitor(Connection * source, std::string filename, AurynDouble binsize) : Monitor(filename) { init(source,filename,binsize/dt); } @@ -34,24 +36,24 @@ WeightSumMonitor::~WeightSumMonitor() { } -void WeightSumMonitor::init(Connection * source, string filename,AurynTime stepsize) +void WeightSumMonitor::init(Connection * source, std::string filename,AurynTime stepsize) { if ( !source->get_destination()->evolve_locally() ) return; - sys->register_monitor(this); + auryn::sys->register_monitor(this); src = source; ssize = stepsize; if ( ssize < 1 ) ssize = 1; - outfile << setiosflags(ios::fixed) << setprecision(6); + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } void WeightSumMonitor::propagate() { - if (sys->get_clock()%ssize==0) { + if (auryn::sys->get_clock()%ssize==0) { AurynDouble weightsum = src->sum(); - outfile << (sys->get_time()) << " " << weightsum << endl; + outfile << (auryn::sys->get_time()) << " " << weightsum << std::endl; } } diff --git a/src/WeightSumMonitor.h b/src/WeightSumMonitor.h index 8d87782c..04585888 100644 --- a/src/WeightSumMonitor.h +++ b/src/WeightSumMonitor.h @@ -33,7 +33,7 @@ #include #include -using namespace std; +namespace auryn { /*! \brief Records sum of all weights in synaptic weight matrix in predefined * intervals. @@ -52,4 +52,6 @@ class WeightSumMonitor : protected Monitor void propagate(); }; +} + #endif /*WEIGHTSUMMONITOR_H_*/ diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index 35be7d4a..8997ea58 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -25,6 +25,8 @@ #include "auryn_definitions.h" +namespace auryn { + int auryn_AlignOffset // copied from ATLAS (const int N, /* max return value */ const void *vp, /* pointer to be aligned */ @@ -351,3 +353,4 @@ void auryn_vector_ushort_copy ( auryn_vector_ushort * src, auryn_vector_ushort * dst->data[i] = src->data[i]; } +} diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index c9325da7..671be7cf 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -58,7 +58,6 @@ #include "Logger.h" -using namespace std; namespace mpi = boost::mpi; @@ -93,8 +92,6 @@ namespace mpi = boost::mpi; // #define CODE_COLLECT_SYNC_TIMING_STATS //!< toggle collection of timing data on sync/all_gather -/*! System wide integration time step */ -const double dt = 1.0e-4; /*! System wide minimum delay which determines * the sync interval between nodes in units of dt. @@ -123,257 +120,264 @@ const double dt = 1.0e-4; // #undef PRE_TRACE_MODEL // #define PRE_TRACE_MODEL LinearTrace -/*! Specifies the different transmitter types - * that Auryn knows. */ -enum TransmitterType { - GLUT, //!< Standard Glutamatergic (excitatory) transmission. - GABA, //!< Standard Gabaergic (inhibitory) transmission. - AMPA, //!< Only targets AMPA channels. - NMDA, //!< Only targets NMDA. - MEM, //!< Current based synapse. Adds the transmitted quantity directly to membrane voltage. - CURSYN //!< Current based synapse with dynamics. -}; - -enum StimulusGroupModeType { MANUAL, RANDOM, SEQUENTIAL, SEQUENTIAL_REV, STIMFILE }; - - -typedef unsigned int NeuronID; //!< NeuronID is an unsigned integeger type used to index neurons in Auryn. -typedef NeuronID AurynInt; -typedef unsigned int StateID; //!< StateID is an unsigned integeger type used to index synaptic states in Auryn. -typedef unsigned long AurynLong; //!< An unsigned long type used to count synapses or similar. -typedef NeuronID AurynTime; //!< Defines Auryns discrete time unit of the System clock. Change to AurynLong if 120h of simtime are not sufficient -typedef float AurynFloat; //!< Low precision floating point datatype. -typedef double AurynDouble; //!< Higher precision floating point datatype. -typedef AurynFloat AurynWeight; //!< Unit of synaptic weights. -typedef AurynFloat AurynState; //!< Type for Auryn state variables (default single precision since it needs to be compatible with auryn_vector_float). -typedef vector SpikeContainer; //!< Spike container type. Used for storing spikes. -typedef vector AttributeContainer; //!< Attribute container type. Used for storing spike attributes that are needed for efficient STP implementations. - - -//! Auryn vector template -- copies the core of GSL vector functionality -template -struct auryn_vector { - NeuronID size; - T * data; - - template - void serialize(Archive & ar, const unsigned int version) + +namespace auryn { + /*! System wide integration time step */ + const double dt = 1.0e-4; + + /*! Specifies the different transmitter types + * that Auryn knows. */ + enum TransmitterType { + GLUT, //!< Standard Glutamatergic (excitatory) transmission. + GABA, //!< Standard Gabaergic (inhibitory) transmission. + AMPA, //!< Only targets AMPA channels. + NMDA, //!< Only targets NMDA. + MEM, //!< Current based synapse. Adds the transmitted quantity directly to membrane voltage. + CURSYN //!< Current based synapse with dynamics. + }; + + enum StimulusGroupModeType { MANUAL, RANDOM, SEQUENTIAL, SEQUENTIAL_REV, STIMFILE }; + + + typedef unsigned int NeuronID; //!< NeuronID is an unsigned integeger type used to index neurons in Auryn. + typedef NeuronID AurynInt; + typedef unsigned int StateID; //!< StateID is an unsigned integeger type used to index synaptic states in Auryn. + typedef unsigned long AurynLong; //!< An unsigned long type used to count synapses or similar. + typedef NeuronID AurynTime; //!< Defines Auryns discrete time unit of the System clock. Change to AurynLong if 120h of simtime are not sufficient + typedef std::string string; //!< Standard library string type which is imported into Auryn namespace. + typedef float AurynFloat; //!< Low precision floating point datatype. + typedef double AurynDouble; //!< Higher precision floating point datatype. + typedef AurynFloat AurynWeight; //!< Unit of synaptic weights. + typedef AurynFloat AurynState; //!< Type for Auryn state variables (default single precision since it needs to be compatible with auryn_vector_float). + typedef std::vector SpikeContainer; //!< Spike container type. Used for storing spikes. + typedef std::vector AttributeContainer; //!< Attribute container type. Used for storing spike attributes that are needed for efficient STP implementations. + + + //! Auryn vector template -- copies the core of GSL vector functionality + template + struct auryn_vector { + NeuronID size; + T * data; + + template + void serialize(Archive & ar, const unsigned int version) + { + ar & size; + for ( NeuronID i = 0 ; i < size ; ++i ) + ar & data[i]; + } + }; + + typedef auryn_vector auryn_vector_float; //!< Reimplements a simplified version of the GSL vector. + + typedef auryn_vector auryn_vector_ushort; //!< Reimplements a simplified version of the GSL vector for ushort. + + struct neuron_pair { + NeuronID i,j; + } ; + + struct pattern_member { + NeuronID i; + AurynDouble gamma; + } ; + typedef std::vector type_pattern; + + + + /*! Determines memory alignment (adapted from ATLAS library) + @param N max return value + @param *vp Pointer to be aligned + @param inc size of element, in bytes + @param align required alignment, in bytes */ + int auryn_AlignOffset (const int N, const void *vp, const int inc, const int align); + + /*! Rounds vector size to multiple of four to allow using the SSE optimizations. */ + NeuronID calculate_vector_size(NeuronID i); + + + // Float vector functions + + /*! Allocates an auryn_vector_float */ + auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); + /*! Frees an auryn_vector_float */ + void auryn_vector_float_free (auryn_vector_float * v); + /*! Initializes an auryn_vector_float with zeros */ + void auryn_vector_float_set_zero (auryn_vector_float * v); + /*! Sets all elements in an auryn_vector_float to value x */ + void auryn_vector_float_set_all (auryn_vector_float * v, AurynFloat x); + + /*! \brief Copies vector src to dst assuming they have the same size. + * + * Otherwise this will lead to undefined results. No checking of size is + * performed for performance reasons. */ + void auryn_vector_float_copy (auryn_vector_float * src, auryn_vector_float * dst ); + + /*! Auryn vector getter */ + AurynFloat auryn_vector_float_get (const auryn_vector_float * v, const NeuronID i); + + /*! Auryn vector setter */ + void auryn_vector_float_set (auryn_vector_float * v, const NeuronID i, AurynFloat x); + + /*! Auryn vector gets pointer to designed element. */ + AurynFloat * auryn_vector_float_ptr (const auryn_vector_float * v, const NeuronID i); + + /*! Internal version of auryn_vector_float_mul of gsl operations */ + void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b); + + /*! \brief Computes a := a + b + * + * Internal version of auryn_vector_float_add between a constant and a vector */ + void auryn_vector_float_add_constant( auryn_vector_float * a, float b ); + + /*! Computes y := a*x+y + * + * Internal SAXPY version */ + void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ); + /*! Internal version to scale a vector with a constant b */ + void auryn_vector_float_scale(const float a, const auryn_vector_float * b ); + /*! Internal version to clip all the elements of a vector between [a:b] */ + void auryn_vector_float_clip(auryn_vector_float * v, const float a , const float b ); + + /*! Internal version to clip all the elements of a vector between [a:0] */ + void auryn_vector_float_clip(auryn_vector_float * v, const float a ); + + /*! \brief Internal version of to add GSL vectors. + * + * Add vectors a and b and store the result in a. */ + void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b); + + /*! \brief Computes a := a-b + * + * Internal version of to subtract GSL vectors.*/ + void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b); + + /*! \brief Computes r := a-b */ + void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r); + + + + // ushort vector functions + /*! Allocates an auryn_vector_ushort */ + auryn_vector_ushort * auryn_vector_ushort_alloc(const NeuronID n); + /*! Frees an auryn_vector_ushort */ + void auryn_vector_ushort_free (auryn_vector_ushort * v); + /*! Initializes an auryn_vector_ushort with zeros */ + void auryn_vector_ushort_set_zero (auryn_vector_ushort * v); + /*! Sets all elements in an auryn_vector_ushort to value x */ + void auryn_vector_ushort_set_all (auryn_vector_ushort * v, unsigned short x); + /*! Copies vector src to dst assuming they have the same size. + * Otherwise this will lead to undefined results. No checking of size is + * performed for performance reasons. */ + void auryn_vector_ushort_copy (auryn_vector_ushort * src, auryn_vector_ushort * dst ); + /*! Auryn vector getter */ + unsigned short auryn_vector_ushort_get (const auryn_vector_ushort * v, const NeuronID i); + /*! Auryn vector setter */ + void auryn_vector_ushort_set (auryn_vector_ushort * v, const NeuronID i, unsigned short x); + /*! Auryn vector gets pointer to designed element. */ + unsigned short * auryn_vector_ushort_ptr (const auryn_vector_ushort * v, const NeuronID i); + /*! Auryn spike event for binary monitors */ + struct SpikeEvent_type + { + AurynTime time; + NeuronID neuronID; + }; + + /*! Tag for header in binary encoded spike monitor files. The first digits are 28796 for Auryn in + * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn + * version */ + const NeuronID tag_binary_spike_monitor = 287960000+100*AURYNVERSION+10*AURYNSUBVERSION+1*AURYNREVISION; + const NeuronID tag_binary_state_monitor = 287961000+100*AURYNVERSION+10*AURYNSUBVERSION+1*AURYNREVISION; + + // Exceptions + class AurynOpenFileException: public std::exception + { + virtual const char* what() const throw() + { + return "Failed opening file."; + } + }; + + class AurynMMFileException: public std::exception + { + virtual const char* what() const throw() + { + return "Problem reading MatrixMarket file. Not row major format?"; + } + }; + + class AurynMatrixDimensionalityException: public std::exception + { + virtual const char* what() const throw() + { + return "Cannot add data outside of matrix."; + } + }; + + class AurynMatrixBufferException: public std::exception + { + virtual const char* what() const throw() + { + return "Buffer full."; + } + }; + + class AurynMatrixPushBackException: public std::exception + { + virtual const char* what() const throw() + { + return "Could not push_back in SimpleMatrix. Out of order execution?"; + } + }; + + class AurynConnectionAllocationException: public std::exception + { + virtual const char* what() const throw() + { + return "Buffer has not been allocated."; + } + }; + + + class AurynMemoryAlignmentException: public std::exception + { + virtual const char* what() const throw() + { + return "Memory not aligned to 16bytes."; + } + }; + + class AurynDelayTooSmallException: public std::exception + { + virtual const char* what() const throw() + { + return "One of the SpikeDelays was chosen shorter than the current value of MINDELAY."; + } + }; + + class AurynTimeOverFlowException: public std::exception + { + virtual const char* what() const throw() + { + return "Trying to simulate more timesteps than are available in AurynTime."; + } + }; + + class AurynStateVectorException: public std::exception + { + virtual const char* what() const throw() + { + return "Auryn encountered an undefined problem when dealing with StateVectors."; + } + }; + + class AurynGenericException: public std::exception { - ar & size; - for ( NeuronID i = 0 ; i < size ; ++i ) - ar & data[i]; - } -}; - -typedef auryn_vector auryn_vector_float; //!< Reimplements a simplified version of the GSL vector. - -typedef auryn_vector auryn_vector_ushort; //!< Reimplements a simplified version of the GSL vector for ushort. - -struct neuron_pair { - NeuronID i,j; -} ; - -struct pattern_member { - NeuronID i; - AurynDouble gamma; -} ; -typedef vector type_pattern; - - - -/*! Determines memory alignment (adapted from ATLAS library) - @param N max return value - @param *vp Pointer to be aligned - @param inc size of element, in bytes - @param align required alignment, in bytes */ -int auryn_AlignOffset (const int N, const void *vp, const int inc, const int align); - -/*! Rounds vector size to multiple of four to allow using the SSE optimizations. */ -NeuronID calculate_vector_size(NeuronID i); - - -// Float vector functions - -/*! Allocates an auryn_vector_float */ -auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); -/*! Frees an auryn_vector_float */ -void auryn_vector_float_free (auryn_vector_float * v); -/*! Initializes an auryn_vector_float with zeros */ -void auryn_vector_float_set_zero (auryn_vector_float * v); -/*! Sets all elements in an auryn_vector_float to value x */ -void auryn_vector_float_set_all (auryn_vector_float * v, AurynFloat x); - -/*! \brief Copies vector src to dst assuming they have the same size. - * - * Otherwise this will lead to undefined results. No checking of size is - * performed for performance reasons. */ -void auryn_vector_float_copy (auryn_vector_float * src, auryn_vector_float * dst ); - -/*! Auryn vector getter */ -AurynFloat auryn_vector_float_get (const auryn_vector_float * v, const NeuronID i); - -/*! Auryn vector setter */ -void auryn_vector_float_set (auryn_vector_float * v, const NeuronID i, AurynFloat x); - -/*! Auryn vector gets pointer to designed element. */ -AurynFloat * auryn_vector_float_ptr (const auryn_vector_float * v, const NeuronID i); - -/*! Internal version of auryn_vector_float_mul of gsl operations */ -void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b); - -/*! \brief Computes a := a + b - * - * Internal version of auryn_vector_float_add between a constant and a vector */ -void auryn_vector_float_add_constant( auryn_vector_float * a, float b ); - -/*! Computes y := a*x+y - * - * Internal SAXPY version */ -void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ); -/*! Internal version to scale a vector with a constant b */ -void auryn_vector_float_scale(const float a, const auryn_vector_float * b ); -/*! Internal version to clip all the elements of a vector between [a:b] */ -void auryn_vector_float_clip(auryn_vector_float * v, const float a , const float b ); - -/*! Internal version to clip all the elements of a vector between [a:0] */ -void auryn_vector_float_clip(auryn_vector_float * v, const float a ); - -/*! \brief Internal version of to add GSL vectors. - * - * Add vectors a and b and store the result in a. */ -void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b); - -/*! \brief Computes a := a-b - * - * Internal version of to subtract GSL vectors.*/ -void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b); - -/*! \brief Computes r := a-b */ -void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r); - - - -// ushort vector functions -/*! Allocates an auryn_vector_ushort */ -auryn_vector_ushort * auryn_vector_ushort_alloc(const NeuronID n); -/*! Frees an auryn_vector_ushort */ -void auryn_vector_ushort_free (auryn_vector_ushort * v); -/*! Initializes an auryn_vector_ushort with zeros */ -void auryn_vector_ushort_set_zero (auryn_vector_ushort * v); -/*! Sets all elements in an auryn_vector_ushort to value x */ -void auryn_vector_ushort_set_all (auryn_vector_ushort * v, unsigned short x); -/*! Copies vector src to dst assuming they have the same size. - * Otherwise this will lead to undefined results. No checking of size is - * performed for performance reasons. */ -void auryn_vector_ushort_copy (auryn_vector_ushort * src, auryn_vector_ushort * dst ); -/*! Auryn vector getter */ -unsigned short auryn_vector_ushort_get (const auryn_vector_ushort * v, const NeuronID i); -/*! Auryn vector setter */ -void auryn_vector_ushort_set (auryn_vector_ushort * v, const NeuronID i, unsigned short x); -/*! Auryn vector gets pointer to designed element. */ -unsigned short * auryn_vector_ushort_ptr (const auryn_vector_ushort * v, const NeuronID i); -/*! Auryn spike event for binary monitors */ -struct SpikeEvent_type -{ - AurynTime time; - NeuronID neuronID; -}; - -/*! Tag for header in binary encoded spike monitor files. The first digits are 28796 for Auryn in - * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn - * version */ -const NeuronID tag_binary_spike_monitor = 287960000+100*AURYNVERSION+10*AURYNSUBVERSION+1*AURYNREVISION; -const NeuronID tag_binary_state_monitor = 287961000+100*AURYNVERSION+10*AURYNSUBVERSION+1*AURYNREVISION; - -// Exceptions -class AurynOpenFileException: public exception -{ - virtual const char* what() const throw() - { - return "Failed opening file."; - } -}; - -class AurynMMFileException: public exception -{ - virtual const char* what() const throw() - { - return "Problem reading MatrixMarket file. Not row major format?"; - } -}; - -class AurynMatrixDimensionalityException: public exception -{ - virtual const char* what() const throw() - { - return "Cannot add data outside of matrix."; - } -}; - -class AurynMatrixBufferException: public exception -{ - virtual const char* what() const throw() - { - return "Buffer full."; - } -}; - -class AurynMatrixPushBackException: public exception -{ - virtual const char* what() const throw() - { - return "Could not push_back in SimpleMatrix. Out of order execution?"; - } -}; - -class AurynConnectionAllocationException: public exception -{ - virtual const char* what() const throw() - { - return "Buffer has not been allocated."; - } -}; - - -class AurynMemoryAlignmentException: public exception -{ - virtual const char* what() const throw() - { - return "Memory not aligned to 16bytes."; - } -}; - -class AurynDelayTooSmallException: public exception -{ - virtual const char* what() const throw() - { - return "One of the SpikeDelays was chosen shorter than the current value of MINDELAY."; - } -}; - -class AurynTimeOverFlowException: public exception -{ - virtual const char* what() const throw() - { - return "Trying to simulate more timesteps than are available in AurynTime."; - } -}; - -class AurynStateVectorException: public exception -{ - virtual const char* what() const throw() - { - return "Auryn encountered an undefined problem when dealing with StateVectors."; - } -}; - -class AurynGenericException: public exception -{ - virtual const char* what() const throw() - { - return "Auryn encountered a problem which it deemed serious enough to break the run. \ - To debug set logger vebosity to VERBOSE or EVERYTHING and analyze the log files."; - } -}; + virtual const char* what() const throw() + { + return "Auryn encountered a problem which it deemed serious enough to break the run. \ + To debug set logger vebosity to VERBOSE or EVERYTHING and analyze the log files."; + } + }; +} // namespace #endif /*AURYN_DEFINITIONS_H__*/ diff --git a/src/auryn_global.cpp b/src/auryn_global.cpp index 8e635962..b7f01287 100644 --- a/src/auryn_global.cpp +++ b/src/auryn_global.cpp @@ -25,6 +25,9 @@ #include "auryn_global.h" -System * sys; -Logger * logger; -mpi::communicator * communicator; + +namespace auryn { + System * sys; + Logger * logger; + mpi::communicator * communicator; +} diff --git a/src/auryn_global.h b/src/auryn_global.h index 5792d54c..e338528f 100644 --- a/src/auryn_global.h +++ b/src/auryn_global.h @@ -31,8 +31,11 @@ // Global variables that are exported here. -extern System * sys; -extern Logger * logger; -extern mpi::communicator * communicator; +namespace auryn { + + extern System * sys; + extern Logger * logger; + extern mpi::communicator * communicator; +} #endif /*AURYN_GLOBAL_H__*/ diff --git a/tools/aube.cpp b/tools/aube.cpp index f0f43582..66750324 100644 --- a/tools/aube.cpp +++ b/tools/aube.cpp @@ -24,14 +24,14 @@ #include #include -using namespace std; +using namespace auryn; namespace po = boost::program_options; /*! Perform binary search on ifstream to extract frame number * from a target time reference that should be given in discrete time. */ -AurynLong find_frame( ifstream * file, AurynTime target ) +AurynLong find_frame( std::ifstream * file, AurynTime target ) { // get number of elements file->seekg (0, file->end); @@ -55,7 +55,7 @@ AurynLong find_frame( ifstream * file, AurynTime target ) } -void read_header( ifstream * input, double& dt, double& last_time, string filename ) +void read_header( std::ifstream * input, double& dt, double& last_time, std::string filename ) { // get length of the file SpikeEvent_type spike_data; @@ -70,16 +70,16 @@ void read_header( ifstream * input, double& dt, double& last_time, string filena // do some version checking NeuronID tag = spike_data.neuronID; if ( tag/1000 != tag_binary_spike_monitor/1000 ) { - cerr << "Header not recognized. " + std::cerr << "Header not recognized. " "Not a binary Auryn monitor file?" - << endl; + << std::endl; exit(EXIT_FAILURE); } if ( tag != tag_binary_spike_monitor ) { - cerr << "# Either the Auryn version does not match " + std::cerr << "# Either the Auryn version does not match " "the version of this tool or this is not a spike " - "raster file." << endl; + "raster file." << std::endl; // TODO tell user if it is a state file } @@ -93,10 +93,10 @@ void read_header( ifstream * input, double& dt, double& last_time, string filena int main(int ac, char* av[]) { - vector input_filenames; - vector inputs; + std::vector input_filenames; + std::vector inputs; - string output_file_name = ""; + std::string output_file_name = ""; double from_time = 0.0; double to_time = -1.0; double seconds_to_extract_from_end = -1.0; // negative means disabled @@ -107,8 +107,8 @@ int main(int ac, char* av[]) desc.add_options() ("help,h", "produce help message") ("version,v", "show version information") - ("inputs,i", po::value< vector >()->multitoken(), "input files") - ("output,o", po::value(), "output file (output to stout if not given)") + ("inputs,i", po::value< std::vector >()->multitoken(), "input files") + ("output,o", po::value(), "output file (output to stout if not given)") ("from,f", po::value(), "from time in seconds") ("to,t", po::value(), "to time in seconds") ("last,l", po::value(), "last x seconds (overrides start/end)") @@ -120,12 +120,12 @@ int main(int ac, char* av[]) po::notify(vm); if (vm.count("help")) { - cout << desc << "\n"; + std::cout << desc << "\n"; return 1; } if (vm.count("version")) { - cout << "Auryn Binary Extract version " + std::cout << "Auryn Binary Extract version " << AURYNVERSION << "." << AURYNSUBVERSION << "." << AURYNREVISION << "\n"; @@ -133,11 +133,11 @@ int main(int ac, char* av[]) } if (vm.count("inputs")) { - input_filenames = vm["inputs"].as< vector >(); + input_filenames = vm["inputs"].as< std::vector >(); } if (vm.count("output")) { - output_file_name = vm["output"].as(); + output_file_name = vm["output"].as(); } if (vm.count("from")) { @@ -156,36 +156,36 @@ int main(int ac, char* av[]) maxid = vm["maxid"].as(); } } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; return 1; } catch(...) { - cerr << "Exception of unknown type!\n"; + std::cerr << "Exception of unknown type!\n"; } #ifdef DEBUG - cout << "# Number of input files " << input_filenames.size() << endl; + std::cout << "# Number of input files " << input_filenames.size() << std::endl; #endif // DEBUG double last_time = 0.0; double dt = 0.0; if ( input_filenames.size() == 0 ) { - cerr << "Missing input file." << endl; + std::cerr << "Missing input file." << std::endl; exit(EXIT_FAILURE); } for ( int i = 0 ; i < input_filenames.size() ; ++i ) { - ifstream * tmp = new ifstream( input_filenames[i].c_str(), ios::binary ); + std::ifstream * tmp = new std::ifstream( input_filenames[i].c_str(), std::ios::binary ); inputs.push_back(tmp); if (!(*tmp)) { std::cerr << "Unable to open input file " << input_filenames[i] - << endl; + << std::endl; exit(EXIT_FAILURE); } @@ -197,7 +197,7 @@ int main(int ac, char* av[]) dt = tmp_dt; } else { if ( dt != tmp_dt ) { // should not happen - cerr << "Not all input file headers match." << endl; + std::cerr << "Not all input file headers match." << std::endl; exit(EXIT_FAILURE); } } @@ -218,8 +218,8 @@ int main(int ac, char* av[]) if ( from_time < 0 ) from_time = 0.0 ; if ( from_time > to_time || from_time < 0 ) { - cerr << "Times must be positive and start " - "time needs to be < to time." << endl; + std::cerr << "Times must be positive and start " + "time needs to be < to time." << std::endl; exit(EXIT_FAILURE); } @@ -228,12 +228,12 @@ int main(int ac, char* av[]) #ifdef DEBUG - cerr << "# Timestep: " << dt << endl; - cerr << "# Maxid: " << maxid << endl; - cerr << "# Sizeof SpikeEvent struct: " << sizeof(SpikeEvent_type) << endl; - cerr << "# Time of last event in files: " << last_time << endl; - cerr << "# From time: " << from_time << endl; - cerr << "# To time: " << to_time << endl; + std::cerr << "# Timestep: " << dt << std::endl; + std::cerr << "# Maxid: " << maxid << std::endl; + std::cerr << "# Sizeof SpikeEvent struct: " << sizeof(SpikeEvent_type) << std::endl; + std::cerr << "# Time of last event in files: " << last_time << std::endl; + std::cerr << "# From time: " << from_time << std::endl; + std::cerr << "# To time: " << to_time << std::endl; #endif // DEBUG @@ -246,15 +246,15 @@ int main(int ac, char* av[]) inputs[i]->seekg (start_frame*sizeof(SpikeEvent_type), inputs[i]->beg); inputs[i]->clear(); #ifdef DEBUG - cerr << "# Start frame stream " + std::cerr << "# Start frame stream " << i << ": " - << start_frame << endl; + << start_frame << std::endl; #endif // DEBUG } // read first frames from all files - vector frames(inputs.size()); + std::vector frames(inputs.size()); for ( int i = 0 ; i < frames.size() ; ++i ) { inputs[i]->read((char*)&frames[i], sizeof(SpikeEvent_type)); } @@ -287,15 +287,15 @@ int main(int ac, char* av[]) if ( time_reference >= to_auryn_time || eofs ) break; #ifdef DEBUG - cout << "# current_stream " << current_stream << endl; - cout << "# time_reference " << time_reference << endl; + std::cout << "# current_stream " << current_stream << std::endl; + std::cout << "# time_reference " << time_reference << std::endl; #endif // DEBUG // output from next_stream while ( frames[current_stream].time <= time_reference && !inputs[current_stream]->eof() ) { if ( frames[current_stream].neuronID < maxid) { if ( write_to_stdout ) - cout << frames[current_stream].time*dt << " " << frames[current_stream].neuronID << "\n"; + std::cout << frames[current_stream].time*dt << " " << frames[current_stream].neuronID << "\n"; else of << frames[current_stream].time*dt << " " << frames[current_stream].neuronID << "\n"; From bec0e5ff5300c1d5f22593267314bff238b0d635 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 2 Dec 2015 17:22:51 -0800 Subject: [PATCH 003/460] Changes to progressbar in System Makes progressbar update interval configurable in System --- src/System.cpp | 5 ++++- src/System.h | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index feb3ad8d..24a77252 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -37,6 +37,9 @@ void System::init() { online_rate_monitor_id = 0; online_rate_monitor_state = 0.0; + + progressbar_update_interval = PROGRESSBAR_DEFAULT_UPDATE_INTERVAL; + syncbuffer = new SyncBuffer(mpicom); std::stringstream oss; @@ -364,7 +367,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, while ( get_clock() < stoptime ) { - if ( (mpicom->rank()==0) && (not quiet) && ( (get_clock()%PROGRESSBAR_UPDATE_INTERVAL==0) || get_clock()==(stoptime-1) ) ) { + if ( (mpicom->rank()==0) && (not quiet) && ( (get_clock()%progressbar_update_interval==0) || get_clock()==(stoptime-1) ) ) { double fraction = 1.0*(get_clock()-starttime+1)*dt/total_time; progressbar(fraction,get_clock()); // TODO find neat solution for the rate } diff --git a/src/System.h b/src/System.h index 1dc86f8e..35860dd8 100644 --- a/src/System.h +++ b/src/System.h @@ -39,7 +39,7 @@ #include #include -#define PROGRESSBAR_UPDATE_INTERVAL 1000 +#define PROGRESSBAR_DEFAULT_UPDATE_INTERVAL 1000 #define LOGGER_MARK_INTERVAL (10000*1000) // 1000s namespace auryn { @@ -113,6 +113,8 @@ namespace auryn { /*! Switch to turn output to quiet mode (no progress bar). */ bool quiet; + unsigned int progressbar_update_interval; + System(); System(mpi::communicator * communicator); void init(); From 92389e6658f7b06210559261435eb12c78f745d9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 3 Dec 2015 10:55:14 -0800 Subject: [PATCH 004/460] Fixes to tool/aube At very long times aube was dropping decimal places in the output precision. This is fixed now to one more digit than needed from the dt point of view. --- tools/aube.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/aube.cpp b/tools/aube.cpp index 66750324..15d71e72 100644 --- a/tools/aube.cpp +++ b/tools/aube.cpp @@ -101,6 +101,8 @@ int main(int ac, char* av[]) double to_time = -1.0; double seconds_to_extract_from_end = -1.0; // negative means disabled NeuronID maxid = std::numeric_limits::max(); + // one more decimal than neede to show values are not rounded + int decimal_places = -std::log(dt)/std::log(10)+2; try { po::options_description desc("Allowed options"); @@ -267,7 +269,10 @@ int main(int ac, char* av[]) if( !output_file_name.empty() ) { write_to_stdout = false; of.open( output_file_name.c_str(), std::ofstream::out ); + of << std::fixed << std::setprecision(decimal_places); } + // sets output format to right number of decimal places + std::cout << std::fixed << std::setprecision(decimal_places); while ( true ) { // find smallest time reference From c86adafc46983865c2dee436223c1408b4b64b25 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 3 Dec 2015 14:59:49 -0800 Subject: [PATCH 005/460] Adds cflag to CMakeLists Adds the pipe flag for compiling the release version per default to CMakeLists. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ce90e206..02e66a11 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ set (Auryn_VERSION_MAJOR 0) set (Auryn_VERSION_MINOR 6) # Important GCC Compiler flags for Auryn's performance -set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -march=native -ffast-math") +set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -march=native -ffast-math -pipe") set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -pedantic") # Display flags (for debugging only) From 8432c70f9e2e6ce139c32695b6ee1e8dc7baa15a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 7 Dec 2015 14:17:17 -0800 Subject: [PATCH 006/460] Adds novel set_transmitter implementation Adds novel set_transmitter implementation to Connection.h. Can now use string name of state_vector to set target state for connections. --- src/Connection.cpp | 5 +++++ src/Connection.h | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/Connection.cpp b/src/Connection.cpp index 0c61b644..ef0a0c6b 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -105,6 +105,11 @@ void Connection::set_transmitter(TransmitterType transmitter) } else set_transmitter((AurynWeight *)NULL); } +void Connection::set_transmitter(string state_name) +{ + set_transmitter(dst->get_state_vector(state_name)); +} + void Connection::set_transmitter(AurynWeight * ptr) { target = ptr; diff --git a/src/Connection.h b/src/Connection.h index b3bdc496..95505df3 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -128,6 +128,9 @@ class Connection /*! \brief Sets target state of this connection as one of Auryn's default transmitter types */ void set_transmitter(TransmitterType transmitter); + /*! \brief Sets target state of this connection directly the name of a state vector */ + void set_transmitter(string state_name); + /*! \brief Sets source SpikingGroup of this connection. */ void set_source(SpikingGroup * source); From 9725f0873c8f98c7927eadd90397e97f29532f33 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 7 Dec 2015 19:05:27 -0800 Subject: [PATCH 007/460] Adds a remove_state_vector function to SpikingGroup --- src/SpikingGroup.cpp | 5 +++++ src/SpikingGroup.h | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index bb132a0d..ea6f783c 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -616,6 +616,11 @@ void SpikingGroup::add_state_vector(std::string key, auryn_vector_float * state_ state_vectors[key] = state_vector; } +void SpikingGroup::remove_state_vector( std::string key ) +{ + state_vectors.erase(key); +} + auryn_vector_float * SpikingGroup::get_state_vector(std::string key) { if ( state_vectors.find(key) == state_vectors.end() ) { diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 5871b0b2..b4b20ee4 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -136,6 +136,11 @@ class SpikingGroup /*! \brief Adds a state vector passed as an argument to the dictinary. */ void add_state_vector( std::string key, auryn_vector_float * state_vector ); + /*! \brief Removes a state vector passed as an argument to the dictinary. + * + * The state vector is not freed automatically! */ + void remove_state_vector( std::string key ); + /*! \brief Creates a new or returns an existing state vector by name. */ auryn_vector_float * get_state_vector(std::string key); From aa0848faaec49e18d424555953354a2a2e1211bb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 7 Dec 2015 19:06:24 -0800 Subject: [PATCH 008/460] Adds more liberal set_profile function to ProfilePoissonGroup The function now accepts a state_vector as an argument --- src/ProfilePoissonGroup.cpp | 14 ++++++++++++++ src/ProfilePoissonGroup.h | 13 +++++++++++++ 2 files changed, 27 insertions(+) diff --git a/src/ProfilePoissonGroup.cpp b/src/ProfilePoissonGroup.cpp index 19a38123..f82d97ff 100644 --- a/src/ProfilePoissonGroup.cpp +++ b/src/ProfilePoissonGroup.cpp @@ -116,6 +116,20 @@ void ProfilePoissonGroup::set_profile( AurynFloat * newprofile ) auryn::logger->msg(oss.str(),NOTIFICATION); } +void ProfilePoissonGroup::set_profile( auryn_vector_float * newprofile ) +{ + for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) { + profile[i] = newprofile->data[i]; + } + + // normalize_profile(); + + std::stringstream oss; + oss << "ProfilePoissonGroup:: Successfully set external profile." ; + auryn::logger->msg(oss.str(),NOTIFICATION); +} + + void ProfilePoissonGroup::set_gaussian_profile(AurynDouble mean, AurynDouble sigma, AurynDouble floor) { for ( NeuronID i = 0 ; i < get_size() ; ++i ) { diff --git a/src/ProfilePoissonGroup.h b/src/ProfilePoissonGroup.h index 7f731901..61f7a92e 100644 --- a/src/ProfilePoissonGroup.h +++ b/src/ProfilePoissonGroup.h @@ -92,7 +92,20 @@ class ProfilePoissonGroup : public SpikingGroup void set_rate(AurynDouble rate); void normalize_profile(); + + /*! \begin Sets firing rate profile to the array elements given in newprofile + * + * Expects a vector of the size n of the SpikingGroup. */ void set_profile(AurynFloat * newprofile); + + /*! \begin Sets firing rate profile to a state vector + * + * Note, does not normalize the profile to a probability distribution! + * Net firing rate can change! Expects a state vector with appropriate + * size on the rank which is smaller than or equal to the size of this + * group.*/ + void set_profile(auryn_vector_float * newprofile); + void set_flat_profile(); void set_gaussian_profile(AurynDouble mean, AurynDouble sigma, AurynDouble floor=0.0); From edbef19d7f32d03f13f8b3e6948f8f09517ada42 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 7 Dec 2015 19:06:43 -0800 Subject: [PATCH 009/460] Adds last_stimulus_stime StimulusGroup --- src/StimulusGroup.cpp | 12 ++++++++++++ src/StimulusGroup.h | 13 ++++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/src/StimulusGroup.cpp b/src/StimulusGroup.cpp index 07bfbe2b..bedad09b 100644 --- a/src/StimulusGroup.cpp +++ b/src/StimulusGroup.cpp @@ -98,6 +98,7 @@ void StimulusGroup::init(StimulusGroupModeType stimulusmode, std::string stimfil cur_stim_index = 0; next_action_time = 0; + last_action_time = 0; active = true; off_pattern = -1; @@ -245,6 +246,7 @@ void StimulusGroup::evolve() // update stimulus properties if ( auryn::sys->get_clock() >= next_action_time ) { // action required + last_action_time = next_action_time; // store last time before updating next_action_time if ( stimuli.size() == 0 ) { set_next_action_time(10); // TODO make this a bit smarter at some point -- i.e. could send this to the end of time @@ -566,3 +568,13 @@ void StimulusGroup::seed(int rndseed) poisson_gen.seed(rnd); // is now drawn differently but reproducibly so for each rank } + +AurynTime StimulusGroup::get_last_action_time() +{ + return last_action_time; +} + +unsigned int StimulusGroup::get_cur_stim() +{ + return cur_stim_index; +} diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index 583819e8..1d88d5dd 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -81,13 +81,17 @@ class StimulusGroup : public SpikingGroup /*! stimulus probabilities */ std::vector probabilities ; +protected: /*! current stimulus index */ unsigned int cur_stim_index ; bool stimulus_active; - /*! next stimulus time requiring change in rates */ + /*! \brief next stimulus time requiring change in rates */ AurynTime next_action_time ; + /*! \brief last stimulus time requiring change in rates */ + AurynTime last_action_time ; + /*! Standard initialization */ void init(StimulusGroupModeType stimulusmode, string stimfile, AurynFloat baserate); /*! Draw all Time-To-Live (ttls) typically after changing the any of the activiteis */ @@ -182,6 +186,13 @@ class StimulusGroup : public SpikingGroup std::vector get_distribution ( ); /*! Getter for pattern i of the probability distribution */ double get_distribution ( int i ); + + /*! \brief returns the last action (stim on/off) time in units of AurynTime */ + AurynTime get_last_action_time(); + + /*! \brief returns the index of the current (or last -- if not active anymore) active stimulus */ + unsigned int get_cur_stim(); + /*! Initialized distribution to be flat */ void flat_distribution( ); /*! Normalizes the distribution */ From 977566f797a858a4db9d8588107a2d891e191457 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 8 Dec 2015 12:40:12 -0800 Subject: [PATCH 010/460] Small improvement to rand_data in SparseConnection --- src/SparseConnection.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 71fdfc3a..ff23f9a5 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -220,6 +220,7 @@ void SparseConnection::random_data(AurynWeight mean, AurynWeight sigma) for ( AurynLong i = 0 ; iget_nonzero() ; ++i ) { rv = die(); if ( rvget_max_weight() ) rv = get_max_weight(); w->set_data(i,rv); } } From 1fbfbe7e208eb02fe98d8e887bee8821bd87507c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 8 Dec 2015 19:43:34 -0800 Subject: [PATCH 011/460] Adds WeichtChecker and closes #9 --- examples/sim_background.cpp | 2 + src/Checker.cpp | 11 +++++- src/Checker.h | 12 ++---- src/RateChecker.cpp | 8 ++-- src/RateChecker.h | 14 +++---- src/WeightChecker.cpp | 77 +++++++++++++++++++++++++++++++++++++ src/WeightChecker.h | 73 +++++++++++++++++++++++++++++++++++ src/auryn.h | 1 + 8 files changed, 174 insertions(+), 24 deletions(-) create mode 100644 src/WeightChecker.cpp create mode 100644 src/WeightChecker.h diff --git a/examples/sim_background.cpp b/examples/sim_background.cpp index 9fdc1374..ea708e75 100644 --- a/examples/sim_background.cpp +++ b/examples/sim_background.cpp @@ -646,6 +646,8 @@ int main(int ac, char* av[]) // SpikeMonitor * smon_i = new SpikeMonitor( neurons_i, strbuf , 500); RateChecker * chk = new RateChecker( neurons_e , 0.1 , 20.*kappa , tau_chk); + // To add a weight checker uncomment the following line + // WeightChecker * wchk = new WeightChecker( con_ee, 0.159, 0.161 ); // Use the same time constant for the online rate estimate in the progress bar sys->set_online_rate_monitor_id(0); diff --git a/src/Checker.cpp b/src/Checker.cpp index 811692e5..c0cf9c3c 100644 --- a/src/Checker.cpp +++ b/src/Checker.cpp @@ -27,11 +27,18 @@ using namespace auryn; -Checker::Checker(SpikingGroup * source) +Checker::Checker() { - src = source; } Checker::~Checker() { } + +void Checker::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) +{ +} + +void Checker::virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) +{ +} diff --git a/src/Checker.h b/src/Checker.h index 95012bec..c4199117 100644 --- a/src/Checker.h +++ b/src/Checker.h @@ -54,25 +54,19 @@ class Checker virtual_serialize(ar, version); } - virtual void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) = 0; - virtual void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) = 0; + virtual void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); + virtual void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); protected: - SpikingGroup * src; public: - Checker(SpikingGroup * source); + Checker(); virtual ~Checker(); /*! The propagate function of Checkers is for internal use. * It is called by System and returns true to signal a break. * If checking is enabled for it will stop the current run. */ virtual bool propagate() = 0 ; - /*! The propagate function of Checkers returns a bool value. - * When true this signals a break to System, which if checking - * is enabled will stop the current run. - */ - virtual AurynFloat get_property() = 0 ; }; BOOST_SERIALIZATION_ASSUME_ABSTRACT(Checker) diff --git a/src/RateChecker.cpp b/src/RateChecker.cpp index e29badde..574f200e 100644 --- a/src/RateChecker.cpp +++ b/src/RateChecker.cpp @@ -27,13 +27,11 @@ using namespace auryn; -RateChecker::RateChecker(SpikingGroup * source, AurynFloat max) : Checker(source) -{ - init(0.,max,1.); -} -RateChecker::RateChecker(SpikingGroup * source, AurynFloat min, AurynFloat max, AurynFloat tau) : Checker(source) + +RateChecker::RateChecker(SpikingGroup * source, AurynFloat min, AurynFloat max, AurynFloat tau) : Checker() { + src = source; init(min,max,tau); } diff --git a/src/RateChecker.h b/src/RateChecker.h index 634927fc..ac57b5ee 100644 --- a/src/RateChecker.h +++ b/src/RateChecker.h @@ -68,19 +68,17 @@ class RateChecker : public Checker virtual void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); virtual void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); +protected: + SpikingGroup * src; + public: - /*! The default constructor. - * @param source the source group to monitor. - * @param max the maximum firing rate above which the Checker signals a break of the simulation. - */ - RateChecker(SpikingGroup * source, AurynFloat max); - /*! A more elaborate constructor specifying also a minimum rate to guard against silend networks. + /*! A more elaborate constructor specifying also a minimum rate to guard against silent networks. * @param source the source group to monitor. - * @param min the minimum firing rate above which the Checker signals a break of the simulation. + * @param min the minimum firing rate below which the Checker signals a break of the simulation. * @param max the maximum firing rate above which the Checker signals a break of the simulation. * @param tau the time constant over which to compute the moving average of the rate. */ - RateChecker(SpikingGroup * source, AurynFloat min, AurynFloat max, AurynFloat tau); + RateChecker(SpikingGroup * source, AurynFloat min, AurynFloat max, AurynFloat tau=1.0); virtual ~RateChecker(); /*! The propagate function required for internal use. */ virtual bool propagate(); diff --git a/src/WeightChecker.cpp b/src/WeightChecker.cpp new file mode 100644 index 00000000..46461cf5 --- /dev/null +++ b/src/WeightChecker.cpp @@ -0,0 +1,77 @@ +/* +* Copyright 2014-2015 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "WeightChecker.h" + +using namespace auryn; + +WeightChecker::WeightChecker(Connection * source, AurynFloat max) : Checker() +{ + init(source,0.,max,10.); +} + +WeightChecker::WeightChecker(Connection * source, AurynFloat min, AurynFloat max, AurynFloat timestep) : Checker() +{ + init(source,min,max,timestep); +} + +WeightChecker::~WeightChecker() +{ +} + +void WeightChecker::init(Connection * source, AurynFloat min, AurynFloat max, AurynFloat timestep) +{ + auryn::sys->register_checker(this); + logger->msg("WeightChecker:: Initializing", VERBOSE); + + source_ = source; + wmin = min; + wmax = max; + + if (timestep<0.0) { + logger->msg("WeightChecker:: Minimally allowed timestep is 1dt", WARNING); + timestep = 1; + } else timestep_ = timestep/dt; + +} + + +bool WeightChecker::propagate() +{ + + if ( (sys->get_clock()%timestep_) == 0 ) { + AurynWeight mean, std; + source_->stats(mean, std); + if ( meanwmax ) { + std::stringstream oss; + oss << "WeightChecker:: Detected mean weight of " << mean ; + logger->msg(oss.str(),WARNING); + return false; // break run + } + } + + return true; +} + diff --git a/src/WeightChecker.h b/src/WeightChecker.h new file mode 100644 index 00000000..557b892d --- /dev/null +++ b/src/WeightChecker.h @@ -0,0 +1,73 @@ +/* +* Copyright 2014-2015 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef WEIGHTCHECKER_H_ +#define WEIGHTCHECKER_H_ + +#include "auryn_definitions.h" +#include "System.h" +#include "Checker.h" +#include "Connection.h" + +namespace auryn { + +/*! \brief A Checker class that tracks the meain weight of a Connection + * and breaks a run if it goes out of bound. + * + */ + +class WeightChecker : public Checker +{ +private: + AurynWeight wmin; + AurynWeight wmax; + AurynTime timestep_; + Connection * source_; + void init(Connection * source, AurynFloat min, AurynFloat max, AurynFloat timestep); + +public: + /*! \brief The default constructor. + * + * @param source the source group to monitor. + * @param max the maximum mean weight above which the Checker signals a break of the simulation. + */ + WeightChecker(Connection * source, AurynFloat max); + /*! \brief A more elaborate constructor specifying also a minimum weight to guard + * against silent networks. + * + * @param source the source group to monitor. + * @param min the minimum mean weight below which the Checker signals a break of the simulation. + * @param max the maximum mean weight above which the Checker signals a break of the simulation. + * @param timestep Check weights every timestep seconds (default = 10s because weight checking is expensive). + */ + WeightChecker(Connection * source, AurynFloat min, AurynFloat max, AurynFloat timestep=10.0); + virtual ~WeightChecker(); + /*! The propagate function required for internal use. */ + virtual bool propagate(); +}; + +} + +#endif /*WEIGHTCHECKER_H_*/ diff --git a/src/auryn.h b/src/auryn.h index 970b0aba..56ac6fcd 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -85,6 +85,7 @@ // Checker definitions #include "Checker.h" #include "RateChecker.h" +#include "WeightChecker.h" // Monitor and stimulator definitions #include "Monitor.h" From ca4f17fc3369d090ab4d87ceaa422c0256f85177 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 8 Dec 2015 19:44:14 -0800 Subject: [PATCH 012/460] Changes doxystrings in Matrix classes --- src/ComplexMatrix.h | 1 + src/SimpleMatrix.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 29d4d0a6..b13184ad 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -248,6 +248,7 @@ class ComplexMatrix NeuronID get_z_values(); NeuronID ** get_rowptrs(); T * get_data_begin(const StateID z=0); + /*! \brief Returns the data value corresponding to the element behind the last nonzero element. */ T * get_data_end(const StateID z=0); /*! Returns the data value to an item that is i-th in the colindex array */ T get_value(NeuronID i); diff --git a/src/SimpleMatrix.h b/src/SimpleMatrix.h index 9e6ee15c..ae0d3c95 100644 --- a/src/SimpleMatrix.h +++ b/src/SimpleMatrix.h @@ -180,6 +180,7 @@ class SimpleMatrix NeuronID get_n_cols(); NeuronID ** get_rowptrs(); T * get_data_begin(); + /*! \brief Returns value behind last element in data array corresponding to a nonzero value. */ T * get_data_end(); /*! Returns the data value to an item that is i-th in the colindex array */ T get_value(NeuronID i); From 0699c5416777e6909ca49c3fb217da34119bbeea Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 8 Dec 2015 19:45:20 -0800 Subject: [PATCH 013/460] Hotfix for stats function in SparseConnection --- src/SparseConnection.cpp | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index ff23f9a5..683163f9 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -540,29 +540,22 @@ void SparseConnection::sanity_check() void SparseConnection::stats(AurynFloat &mean, AurynFloat &std) { - NeuronID count = 0; - AurynFloat sum = 0; - AurynFloat sum2 = 0; - // for ( NeuronID i = 0 ; i < get_m_rows() ; ++i ) - // { - // for ( NeuronID * j = w->get_row_begin(i) ; j != w->get_row_end(i) ; ++j ) - // { - // count++; - // t = w->get_data_begin()[j-w->get_row_begin(0)]; - // sum += t; - // sum2 += (t*t); - // } - // } + double sum = 0; // needs double here -- machine precision really matters here + double sum2 = 0; + for ( AurynWeight * iter = w->get_data_begin() ; iter != w->get_data_end() ; ++iter ) { sum += *iter; sum2 += (*iter * *iter); } - count = w->get_nonzero(); + + NeuronID count = w->get_nonzero(); + if ( count <= 1 ) { mean = sum; std = 0; return; } + mean = sum/count; std = sqrt(sum2/count-mean*mean); } @@ -632,15 +625,21 @@ bool SparseConnection::write_to_file(ForwardMatrix * m, std::string filename ) << "%\n" << get_m_rows() << " " << get_n_cols() << " " << m->get_nonzero() << std::endl; + AurynLong count = 0; for ( NeuronID i = 0 ; i < get_m_rows() ; ++i ) { outfile << std::setprecision(7); for ( NeuronID * j = m->get_row_begin(i) ; j != m->get_row_end(i) ; ++j ) { outfile << i+1 << " " << *j+1 << " " << std::scientific << m->get_data_begin()[j-m->get_row_begin(0)] << std::fixed << "\n"; + ++count; } } + if ( count != m->get_nonzero() ) { + logger->msg("SparseConnection:: count inconsistency while writing MatrixMarket to file.", WARNING); + } + outfile.close(); return true; } From 239b8fcb90eae90460794db0775d9a7d4309e675 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 9 Dec 2015 14:07:26 -0800 Subject: [PATCH 014/460] Bumps version number to next subversion Namespaces and all these new additions will go into v0.8.x --- src/auryn_definitions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 671be7cf..1972937a 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -64,7 +64,7 @@ namespace mpi = boost::mpi; /*! The current Auryn version/revision number. * Should be all ints. */ #define AURYNVERSION 0 -#define AURYNSUBVERSION 7 +#define AURYNSUBVERSION 8 #define AURYNREVISION 0 From 7315b2857c8c4f663492e51c4cf8cd2702d93afc Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 9 Dec 2015 14:14:48 -0800 Subject: [PATCH 015/460] Bumps version number for doxygen docs --- src/Doxyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Doxyfile b/src/Doxyfile index 37a29b67..d4757434 100644 --- a/src/Doxyfile +++ b/src/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = Auryn # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.7 +PROJECT_NUMBER = 0.8 # Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that appears at the top of each page and should give viewer a quick idea about the purpose of the project. Keep the description short. From 1921f7e90a1f3505d95a40acf1978f930a86c408 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 16 Dec 2015 11:38:36 -0800 Subject: [PATCH 016/460] Adds clip function for matrix states --- src/ComplexMatrix.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index b13184ad..07e59427 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -209,6 +209,8 @@ class ComplexMatrix void state_scale(T a, AurynWeight * x); /*! Adds constant a to all values in x */ void state_add_const(T a, AurynWeight * x); + /*! Clips state values to interval [a,b] */ + void state_clip(AurynWeight * x, T a, T b); T get_value(AurynLong data_index); void add_value(AurynLong data_index, T value); @@ -810,6 +812,15 @@ void ComplexMatrix::state_add_const(T a, AurynWeight * y) } } +template +void ComplexMatrix::state_clip(AurynWeight * x, T a, T b) +{ + for (AurynLong i = 0 ; i < get_nonzero() ; ++i ) { + if ( x[i] < a ) x[i] = a; + else if ( x[i] > b ) x[i] = b; + } +} + template T ComplexMatrix::get_value(NeuronID i) { From b9074469ec65fd387a2bb3af366ef7fb6377c74f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 16 Dec 2015 11:39:05 -0800 Subject: [PATCH 017/460] Adds meaningful exception for open file error --- src/Logger.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Logger.cpp b/src/Logger.cpp index ebdbbe8d..bd93f25b 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -24,6 +24,7 @@ */ #include "Logger.h" +#include "auryn_definitions.h" using namespace auryn; @@ -36,8 +37,8 @@ Logger::Logger(std::string filename, int rank, LogMessageType console, LogMessag outfile.open(fname.c_str(),std::ios::out); if (!outfile) { - std::cerr << "Can't open output file " << fname << std::endl; - throw 1; + std::cerr << "Can't open output logger output file " << fname << std::endl; + throw AurynOpenFileException(); } From 7d834eb6d2be03a411031d4e12a876f44227109f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 16 Dec 2015 11:39:19 -0800 Subject: [PATCH 018/460] Introduces Logger exception handling in examples --- examples/sim_epsp.cpp | 14 +++++++++++--- examples/sim_poisson.cpp | 22 ++++++++++++++++++---- 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/examples/sim_epsp.cpp b/examples/sim_epsp.cpp index 947edb1e..abe1310f 100644 --- a/examples/sim_epsp.cpp +++ b/examples/sim_epsp.cpp @@ -41,9 +41,17 @@ int main(int ac, char* av[]) mpi::communicator world; communicator = &world; - sprintf(strbuf, "out_epsp.%d.log", world.rank()); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + try + { + sprintf(strbuf, "out_epsp.%d.log", world.rank()); + string logfile = strbuf; + logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + } + catch ( AurynOpenFileException excpt ) + { + std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; + env.abort(1); + } sys = new System(&world); // END Global definitions diff --git a/examples/sim_poisson.cpp b/examples/sim_poisson.cpp index 2a4603f2..4dde38bd 100644 --- a/examples/sim_poisson.cpp +++ b/examples/sim_poisson.cpp @@ -48,6 +48,7 @@ int main(int ac, char* av[]) ("help", "produce help message") ("simtime", po::value(), "simulation time") ("kappa", po::value(), "poisson group rate") + ("dir", po::value(), "output directory") ("size", po::value(), "poisson group size") ("seed", po::value(), "random seed") ; @@ -61,13 +62,18 @@ int main(int ac, char* av[]) return 1; } - if (vm.count("kappa")) { std::cout << "kappa set to " << vm["kappa"].as() << ".\n"; kappa = vm["kappa"].as(); } + if (vm.count("dir")) { + std::cout << "dir set to " + << vm["dir"].as() << ".\n"; + dir = vm["dir"].as(); + } + if (vm.count("simtime")) { std::cout << "simtime set to " << vm["simtime"].as() << ".\n"; @@ -99,9 +105,17 @@ int main(int ac, char* av[]) mpi::communicator world; communicator = &world; - sprintf(strbuf, "%s/%s.%d.log", dir.c_str(), file_prefix.c_str(), world.rank()); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + try + { + sprintf(strbuf, "%s/%s.%d.log", dir.c_str(), file_prefix.c_str(), world.rank() ); + string logfile = strbuf; + logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + } + catch ( AurynOpenFileException excpt ) + { + std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; + env.abort(1); + } sys = new System(&world); // END Global stuff From 7c42336bc886eae34cee34c9a945291810dd51b3 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 30 Jan 2016 15:27:49 -0800 Subject: [PATCH 019/460] Fixes version number to last stable version number --- CMakeLists.txt | 2 +- src/Doxyfile | 2 +- src/System.cpp | 33 ++++++++++++++++++++++----------- src/System.h | 3 +++ src/auryn_definitions.h | 3 ++- 5 files changed, 29 insertions(+), 14 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 02e66a11..d16d557b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ project (Auryn) # The version number. set (Auryn_VERSION_MAJOR 0) -set (Auryn_VERSION_MINOR 6) +set (Auryn_VERSION_MINOR 7) # Important GCC Compiler flags for Auryn's performance set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -march=native -ffast-math -pipe") diff --git a/src/Doxyfile b/src/Doxyfile index d4757434..582fad0c 100644 --- a/src/Doxyfile +++ b/src/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = Auryn # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.8 +PROJECT_NUMBER = 0.7-dev # Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that appears at the top of each page and should give viewer a quick idea about the purpose of the project. Keep the description short. diff --git a/src/System.cpp b/src/System.cpp index 24a77252..9dc23c6c 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -43,16 +43,8 @@ void System::init() { syncbuffer = new SyncBuffer(mpicom); std::stringstream oss; - oss.str(""); oss << "Auryn version " - << AURYNVERSION - << "." - << AURYNSUBVERSION; - - if ( AURYNREVISION ) { - oss << "." - << AURYNREVISION; - } + << get_version_string(); oss << " ( compiled " << __DATE__ << " " << __TIME__ << " )"; auryn::logger->msg(oss.str(),NOTIFICATION); @@ -70,6 +62,25 @@ void System::init() { } +string System::get_version_string() +{ + std::stringstream oss; + oss << AURYNVERSION + << "." + << AURYNSUBVERSION; + + if ( AURYNREVISION ) { + oss << "." + << AURYNREVISION; + } + +#ifdef AURYNVERSIONSUFFIX + oss << AURYNVERSIONSUFFIX; +#endif + + return oss.str(); +} + System::System() { init(); @@ -84,8 +95,8 @@ System::System(mpi::communicator * communicator) if ( mpicom->size() > 0 ) { oss << "MPI run rank " - << mpicom->rank() << " of " - << mpicom->size() << "."; + << mpicom->rank() << " out of " + << mpicom->size() << " ranks total."; auryn::logger->msg(oss.str(),NOTIFICATION); } diff --git a/src/System.h b/src/System.h index 35860dd8..8cb8da80 100644 --- a/src/System.h +++ b/src/System.h @@ -128,6 +128,9 @@ namespace auryn { /*! Initialializes the recvs for all the MPI sync */ void sync_prepare(); + /*! Return formatted version string. */ + string get_version_string(); + /*! Sets the SpikingGroup ID used to display the rate estimate in the * progressbar (this typically is reflected by the order in * which you define the SpikingGroup and NeuronGroup classes. It starts diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 1972937a..0096912b 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -64,8 +64,9 @@ namespace mpi = boost::mpi; /*! The current Auryn version/revision number. * Should be all ints. */ #define AURYNVERSION 0 -#define AURYNSUBVERSION 8 +#define AURYNSUBVERSION 7 #define AURYNREVISION 0 +#define AURYNVERSIONSUFFIX "-dev" /*! Toggle between memory alignment for From a356ddc50dc237b48f483abad97fd5214fb951b2 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 30 Jan 2016 15:47:08 -0800 Subject: [PATCH 020/460] Reduces log-level in example sim_poisson --- examples/sim_poisson.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sim_poisson.cpp b/examples/sim_poisson.cpp index 4dde38bd..33166483 100644 --- a/examples/sim_poisson.cpp +++ b/examples/sim_poisson.cpp @@ -109,7 +109,7 @@ int main(int ac, char* av[]) { sprintf(strbuf, "%s/%s.%d.log", dir.c_str(), file_prefix.c_str(), world.rank() ); string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + logger = new Logger(logfile,world.rank(),PROGRESS); } catch ( AurynOpenFileException excpt ) { From a9dcf1e1b3b9a00bee95d88a6ffb8b424ea62ef8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 30 Jan 2016 23:28:16 -0800 Subject: [PATCH 021/460] Changes warning output text in aube --- tools/aube.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/aube.cpp b/tools/aube.cpp index 15d71e72..e315364a 100644 --- a/tools/aube.cpp +++ b/tools/aube.cpp @@ -77,7 +77,7 @@ void read_header( std::ifstream * input, double& dt, double& last_time, std::str } if ( tag != tag_binary_spike_monitor ) { - std::cerr << "# Either the Auryn version does not match " + std::cerr << "# Warning: Either the Auryn version does not match " "the version of this tool or this is not a spike " "raster file." << std::endl; // TODO tell user if it is a state file From 6de197050e93b3b823fa175bcd3e30203689eda5 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 14:36:51 -0800 Subject: [PATCH 022/460] Implements more convenient spike attribg handling --- src/Connection.cpp | 46 +++++++++++++++++++++++++++++++++++++++++ src/Connection.h | 34 ++++++++++++++++++++++++++++++ src/STPConnection.cpp | 35 +++++++++++++++++-------------- src/SpikingGroup.cpp | 2 +- src/SpikingGroup.h | 8 ++++++- src/auryn_definitions.h | 9 ++++++++ 6 files changed, 117 insertions(+), 17 deletions(-) diff --git a/src/Connection.cpp b/src/Connection.cpp index ef0a0c6b..e0b223dd 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -52,6 +52,13 @@ void Connection::init(TransmitterType transmitter) { set_transmitter(transmitter); set_name("Unspecified"); + + number_of_spike_attributes = 0; + + // Here we store how many spike attributes have already been + // added to the stack due to other connections having the same + // source SpikingGroup. + spike_attribute_offset = src->get_num_spike_attributes(); } void Connection::set_size(NeuronID i, NeuronID j) @@ -163,6 +170,45 @@ void Connection::safe_transmit(NeuronID id, AurynWeight amount) transmit( id, amount ); } +void Connection::add_number_of_spike_attributes(int x) +{ + if ( x <= 0 ) { + throw AurynSpikeAttributeSizeException(); + } + + number_of_spike_attributes += x; // we remember how many attributes are due to this connection + src->inc_num_spike_attributes(x); +} + +SpikeContainer * Connection::get_pre_spikes() +{ + src->get_spikes(); +} + +SpikeContainer * Connection::get_post_spikes() +{ + dst->get_spikes_immediate(); +} + + +AurynFloat Connection::get_spike_attribute(const NeuronID spike_array_pos, const int attribute_id) +{ + // We need to skip attributes by other Connection objects (spike_attribute_offset) + // and other attributes from this Connection. Note that if attribute_id is larger + // then number_of_spike_attributes the behavior will be undefined, but for performance + // reasons we do not check for this here. + NeuronID stackpos = spike_array_pos + (spike_attribute_offset+attribute_id)*src->get_spikes()->size(); + + #ifdef DEBUG + std::cout << "stack pos " << stackpos + << " value: " << std::setprecision(5) + << src->get_attributes()->at(stackpos) + << std::endl; + #endif //DEBUG + + return src->get_attributes()->at(stackpos); +} + void Connection::evolve() { diff --git a/src/Connection.h b/src/Connection.h index 95505df3..da10a555 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -83,6 +83,15 @@ class Connection TransmitterType trans; AurynFloat * target; + /*! \brief Number of spike attributes to expect with each spike transmitted through this connection. + * + * Should only be set through methods called during init. + */ + NeuronID number_of_spike_attributes; + + /*! \brief Stores spike attribute offset in attribute array */ + NeuronID spike_attribute_offset; + void init(TransmitterType transmitter=GLUT); public: @@ -199,6 +208,31 @@ class Connection /*! Returns a vector of ConnectionsID of a block specified by the arguments. */ virtual std::vector get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col) = 0; + + /*! \brief Supplies pointer to SpikeContainer of all presynaptic spikes. + * + * This includes spikes from this group from all other nodes. + * This also means that these spikes have gone through the axonal dealy. + * Equivalent to calling src->get_spikes(). */ + SpikeContainer * get_pre_spikes(); + + /*! \brief Returns pointer to SpikeContainer for postsynaptic spikes on this node. + * + * This corresponds to calling get_spikes_immediate() from the SpikingGroup. + * These spikes have been generated postsynaptically in the same timestep and have not + * been delayed yet. + * Equivalent to calling dst->get_spikes_immediate(). */ + SpikeContainer * get_post_spikes(); + + /*! \brief Set up spike delay to accomodate x additional spike attributes. + * + * Spike attribute numbers can only be increased. + * This function can only be run during initialization. + */ + void add_number_of_spike_attributes(int x); + + /*! \brief Returns spike attribute belonging to the spike at position i in the get_spikes() SpikeContainer. */ + AurynFloat get_spike_attribute(const NeuronID i, const int attribute_id=0); }; BOOST_SERIALIZATION_ASSUME_ABSTRACT(Connection) diff --git a/src/STPConnection.cpp b/src/STPConnection.cpp index 07b1c649..d624a0fb 100644 --- a/src/STPConnection.cpp +++ b/src/STPConnection.cpp @@ -49,7 +49,7 @@ void STPConnection::init() // registering the right amount of spike attributes // this line is very important finding bugs due to // this being wrong or missing is hard - src->set_num_spike_attributes(1); + add_number_of_spike_attributes(1); } @@ -121,7 +121,8 @@ void STPConnection::push_attributes() auryn_vector_float_set( state_x, spk, x-u*x ); auryn_vector_float_set( state_u, spk, u+Ujump*(1-u) ); - // TODO spike translation or introduce local_spikes function in SpikingGroup and implement this there ... (better option) + // TODO spike translation or introduce local_spikes + // function in SpikingGroup and implement this there ... (better option) src->push_attribute( x*u ); } } @@ -150,19 +151,23 @@ void STPConnection::propagate() } if ( dst->evolve_locally() ) { // necessary - - if (src->get_spikes()->size()>0) { - NeuronID * ind = w->get_row_begin(0); // first element of index array - AurynWeight * data = w->get_data_begin(); - AttributeContainer::const_iterator attr = src->get_attributes()->begin(); - SpikeContainer::const_iterator spikes_end = src->get_spikes()->end(); - for (SpikeContainer::const_iterator spike = src->get_spikes()->begin() ; - spike != spikes_end ; ++spike ) { - for (NeuronID * c = w->get_row_begin(*spike) ; c != w->get_row_end(*spike) ; ++c ) { - AurynWeight value = data[c-ind] * *attr; - transmit( *c , value ); - } - ++attr; + NeuronID * ind = w->get_row_begin(0); // first element of index array + AurynWeight * data = w->get_data_begin(); // first element of data array + + // loop over spikes + for (int i = 0 ; i < src->get_spikes()->size() ; ++i ) { + // get spike at pos i in SpikeContainer + NeuronID spike = src->get_spikes()->at(i); + + // extract spike attribute from attribute stack; + AurynFloat attribute = get_spike_attribute(i); + + // loop over postsynaptic targets + for (NeuronID * c = w->get_row_begin(spike) ; + c != w->get_row_end(spike) ; + ++c ) { + AurynWeight value = data[c-ind] * attribute; + transmit( *c , value ); } } } diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index ea6f783c..f25b37b3 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -757,7 +757,7 @@ NeuronID SpikingGroup::get_vector_size() return calculate_vector_size(get_rank_size()); } -void SpikingGroup::set_num_spike_attributes(int x) +void SpikingGroup::inc_num_spike_attributes(int x) { delay->inc_num_attributes(x); } diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index b4b20ee4..4ddf04a1 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -161,7 +161,13 @@ class SpikingGroup /*! Retrieves the groups name */ std::string get_name(); - void set_num_spike_attributes(int x); + /*! \brief Instructs SpikingGroup to increase the number of spike attributes by x. + * + * The reason we only increment the size is that multiple Connection objects such as + * STPConnection might want to add an attribute to a spike. These might be different + * to allow synaptic type dependent plasticity and hence will all have to be transmitted + * without knowledge about the other synapses which might want to submit a different value.*/ + void inc_num_spike_attributes(int x); int get_num_spike_attributes(); /*! Frees potentially allocated memory */ diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 0096912b..27b18a0d 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -379,6 +379,15 @@ namespace auryn { To debug set logger vebosity to VERBOSE or EVERYTHING and analyze the log files."; } }; + + class AurynSpikeAttributeSizeException: public std::exception + { + virtual const char* what() const throw() + { + return "The number of spike attributes can only be increased."; + } + }; + } // namespace #endif /*AURYN_DEFINITIONS_H__*/ From e51e6092933f5712e88fdc1909c4981dcbf013b4 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 16:49:43 -0800 Subject: [PATCH 023/460] Fixes potential bug in localrank in SpikingGroup --- src/SpikingGroup.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index f25b37b3..e3a17dc0 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -454,7 +454,16 @@ std::string SpikingGroup::get_name() } bool SpikingGroup::localrank(NeuronID i) { - bool t = ( (i+locked_rank)%locked_range==auryn::communicator->rank() ) + +#ifdef DEBUG + std::cout << ( (i%locked_range+locked_rank)==auryn::communicator->rank() ) << " " + << ( (int) auryn::communicator->rank() >= locked_rank) << " " + << ( (int) auryn::communicator->rank() >= locked_rank) << " " + << ( (int) auryn::communicator->rank() < (locked_rank+locked_range) ) << " " + << ( i/locked_range < get_rank_size() ) << std::endl; +#endif //DEBUG + + bool t = ( (i%locked_range+locked_rank)==auryn::communicator->rank() ) && (int) auryn::communicator->rank() >= locked_rank && (int) auryn::communicator->rank() < (locked_rank+locked_range) && i/locked_range < get_rank_size(); From 21b68026f6d58330f1aaa07f48bcaf05275f12a0 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 16:50:44 -0800 Subject: [PATCH 024/460] Changes strategy for registering Connections This change to SparseConnection changes the register process. Now all connections are registered even if they do not have acive (evolve_locally) targets or destinations. This ensures that connections which have to do work pre or postsynaptically can do them. Classic example is for instance STPConnection for which the presynaptic group is BLOCKLOCKED to a single rank, but no postsynaptic partners are integrated on this rank. In this case the old behavior would cause problems. However, this pathologic case would only arise in very few specific cases. --- src/SparseConnection.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 683163f9..242d0504 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -119,8 +119,7 @@ SparseConnection::~SparseConnection() void SparseConnection::init() { - if ( dst->evolve_locally() == true ) - auryn::sys->register_connection(this); + auryn::sys->register_connection(this); has_been_allocated = false; if ( src == dst ) { skip_diagonal = true; @@ -156,7 +155,7 @@ void SparseConnection::seed(NeuronID randomseed) AurynLong SparseConnection::estimate_required_nonzero_entires( AurynLong nonzero, double sigma ) { - return nonzero + sigma*sqrt(nonzero) ; + return std::min( (NeuronID)(nonzero + sigma*sqrt(nonzero)), get_m_rows()*get_n_cols()) ; } void SparseConnection::free() From 66eca9a18944bd5ed632de98a8549bad7b058d22 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 16:53:20 -0800 Subject: [PATCH 025/460] Changes to register procedure of this group Now registers this group irrespectively of post evolve status. This ensures that in complicated RANKLOCK or BLOCKLOCK scenarios all presynaptic state variables are integrated. --- src/STPConnection.cpp | 50 ++++++++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 22 deletions(-) diff --git a/src/STPConnection.cpp b/src/STPConnection.cpp index d624a0fb..1d59ea88 100644 --- a/src/STPConnection.cpp +++ b/src/STPConnection.cpp @@ -46,7 +46,7 @@ void STPConnection::init() } - // registering the right amount of spike attributes + // Registering the right amount of spike attributes // this line is very important finding bugs due to // this being wrong or missing is hard add_number_of_spike_attributes(1); @@ -57,8 +57,7 @@ void STPConnection::init() STPConnection::STPConnection(const char * filename) : SparseConnection(filename) { - if ( dst->get_post_size() > 0 ) - init(); + init(); } STPConnection::STPConnection(SpikingGroup * source, NeuronGroup * destination, @@ -72,8 +71,7 @@ STPConnection::STPConnection(SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter) : SparseConnection(source, destination, filename, transmitter) { - if ( dst->get_post_size() > 0 ) - init(); + init(); } @@ -88,8 +86,7 @@ STPConnection::STPConnection( SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter, std::string name) : SparseConnection(source,destination,weight,sparseness,transmitter, name) { - if ( dst->get_post_size() > 0 ) - init(); + init(); } void STPConnection::free() @@ -105,12 +102,12 @@ void STPConnection::free() STPConnection::~STPConnection() { - if ( dst->get_post_size() > 0 ) - free(); + free(); } void STPConnection::push_attributes() { + // need to push one attribute for each spike SpikeContainer * spikes = src->get_spikes_immediate(); for (SpikeContainer::const_iterator spike = spikes->begin() ; spike != spikes->end() ; ++spike ) { @@ -124,24 +121,33 @@ void STPConnection::push_attributes() // TODO spike translation or introduce local_spikes // function in SpikingGroup and implement this there ... (better option) src->push_attribute( x*u ); + } + + // If we had two spike attributes in this connection we push + // the second attribute for each spike here: + // + // SpikeContainer * spikes = src->get_spikes_immediate(); + // for (SpikeContainer::const_iterator spike = spikes->begin() ; + // spike != spikes->end() ; ++spike ) { + // AurynFloat other_attribute = foo+bar; + // src->push_attribute( other_attribute ); + // } } void STPConnection::evolve() { - // dynamics of x - auryn_vector_float_set_all( state_temp, 1); - auryn_vector_float_saxpy(-1,state_x,state_temp); - auryn_vector_float_saxpy(dt/tau_d,state_temp,state_x); - - // dynamics of u - auryn_vector_float_set_all( state_temp, Ujump); - auryn_vector_float_saxpy(-1,state_u,state_temp); - auryn_vector_float_saxpy(dt/tau_f,state_temp,state_u); - - // double x = auryn_vector_float_get( state_x, 0 ); - // double u = auryn_vector_float_get( state_u, 0 ); - // std::cout << setprecision(5) << x << " " << u << " " << x*u << std::endl; + if ( src->evolve_locally() ) { + // dynamics of x + auryn_vector_float_set_all( state_temp, 1); + auryn_vector_float_saxpy(-1,state_x,state_temp); + auryn_vector_float_saxpy(dt/tau_d,state_temp,state_x); + + // dynamics of u + auryn_vector_float_set_all( state_temp, Ujump); + auryn_vector_float_saxpy(-1,state_u,state_temp); + auryn_vector_float_saxpy(dt/tau_f,state_temp,state_u); + } } void STPConnection::propagate() From 45869c0d0d4361424023c5500b4a44aad250c5aa Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 16:55:16 -0800 Subject: [PATCH 026/460] Fixes a problem with spike_attribute buffer The spike attribute buffer was not cleared correctly with each sync. This might have caused trouble with STPConnection objects or other Connections implementing short-term plasticity when run in distributed mode. --- src/SyncBuffer.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 25a0e52d..34ec7e13 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -35,10 +35,6 @@ SyncBuffer::SyncBuffer( mpi::communicator * com ) void SyncBuffer::init() { - // for ( NeuronID i = 0 ; i < SYNCBUFFER_SIZE_HIST_LEN ; ++i ) - // size_history[i] = 0; - // size_history_ptr = 0; - for ( NeuronID i = 0 ; i < mpicom->size() ; ++i ) pop_offsets.push_back(1); @@ -94,7 +90,7 @@ void SyncBuffer::push(SpikeDelay * delay, NeuronID size) send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[i-1]*k)))); // if ( mpicom->rank() == 0 ) // std::cout << " pushing attr " << " " << i << " " << k << " " << s << " " - // << std::ifstream << ac->at(s+count[i-1]*k) << std::endl; + // << std::setprecision(5) << ac->at(s+count[i-1]*k) << std::endl; } } } @@ -107,7 +103,7 @@ void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) { for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { delay->get_spikes(i)->clear(); - delay->get_spikes(i)->clear(); + delay->get_attributes(i)->clear(); } From 9ed1fd3f76f8e9b72567b8d8f829db865f34bcc6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 17:18:24 -0800 Subject: [PATCH 027/460] Adds brief doxystring to class --- src/PairInteractionConnection.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PairInteractionConnection.h b/src/PairInteractionConnection.h index 5eeddb34..9fd5a177 100644 --- a/src/PairInteractionConnection.h +++ b/src/PairInteractionConnection.h @@ -30,6 +30,8 @@ namespace auryn { +/*! \brief STDP Connection class to simulate arbitrary nearest-neighbor STDP windows. + */ class PairInteractionConnection : public DuplexConnection { From cfb92a00ae25f11976fe45b11c707ee82d84bdc0 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 17:20:38 -0800 Subject: [PATCH 028/460] Changes doxystrings in LinearTrace and EulerTrace --- src/EulerTrace.h | 12 +++++++++--- src/LinearTrace.h | 7 +++++++ 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/EulerTrace.h b/src/EulerTrace.h index b9c036f2..c1d31c66 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -28,11 +28,17 @@ #include "auryn_definitions.h" -/*! \brief Solves a set of identical linear differential equations with the Euler method. It is used to implement synaptic traces in most STDP models. +namespace auryn { + +/*! \brief Solves a set of identical linear differential equations with the + * Euler method. It is used to implement synaptic traces in most STDP models. * - * This solver simultaneoulsy computes linear traces (mostly to implement synapses) using Euler's method. Another solver is readily available within the Auryn framework. The LinearTrace objects solves the same problem but using the analytic solution. This results in less updates. However - so far it turned out to be inferior in performance to the EulerTrace. + * This solver simultaneoulsy computes linear traces (mostly to implement + * synapses) using Euler's method. Another solver is readily available within + * the Auryn framework. The LinearTrace objects solves the same problem but + * using the analytic solution. This results in less updates. However - so far + * it turned out to be inferior in performance to the EulerTrace. */ -namespace auryn { class EulerTrace { private: diff --git a/src/LinearTrace.h b/src/LinearTrace.h index f5b6dbae..a3366ee0 100644 --- a/src/LinearTrace.h +++ b/src/LinearTrace.h @@ -30,6 +30,13 @@ namespace auryn { + +/*! \brief Exponential synaptic trace which exactly solves in an event-based manner. + * + * Since this trace is normally slower than brut-force computing all traces + * with forward Euler, it is disabled by default. + */ + class LinearTrace { private: From a9ef246e46a89919ceccbf11bed60e9e5c749a9b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 17:23:50 -0800 Subject: [PATCH 029/460] Adds doxystring to AIF2Group --- src/AIF2Group.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/AIF2Group.h b/src/AIF2Group.h index 2b30ca17..e1aca79a 100644 --- a/src/AIF2Group.h +++ b/src/AIF2Group.h @@ -33,6 +33,8 @@ namespace auryn { +/*! \brief An adaptive integrate and fire group comparable to AIFGroup but with two independent adaptation timescales + */ class AIF2Group : public AIFGroup { private: From 1de58a1df70209607143770ed406cb55b8f008f2 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 17:26:05 -0800 Subject: [PATCH 030/460] Adds and updates doxystrings --- src/StructuredPoissonGroup.h | 14 +++++++++----- src/TripletDecayConnection.h | 6 ++++++ 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/src/StructuredPoissonGroup.h b/src/StructuredPoissonGroup.h index 50191628..d6822869 100644 --- a/src/StructuredPoissonGroup.h +++ b/src/StructuredPoissonGroup.h @@ -38,12 +38,16 @@ namespace auryn { -/*! \brief A special Poisson generator that can hide a fixed number of spatio-temporal patterns in the spike data +/*! \brief A special Poisson generator that can hide a fixed number of + * spatio-temporal patterns in the spike data * - * This class achieves inserting a fixed number of spatio temporal patterns that are injected at intervals that vary stochastically. - * In detail this means, aftern an interval drawn from an exponential distribution the PoissonGroup is seeded to a fixed value from a - * set determinded by the no_of_stimuli variable. The PoissonGroup is then left running for a time determined by stimulus_duration - * and then reseeded pseudo randomly from get_clock() - therefore a seed cannot repeat due to causality. + * This class achieves inserting a fixed number of spatio temporal patterns + * that are injected at intervals that vary stochastically. In detail this + * means, aftern an interval drawn from an exponential distribution the + * PoissonGroup is seeded to a fixed value from a set determinded by the + * no_of_stimuli variable. The PoissonGroup is then left running for a time + * determined by stimulus_duration and then reseeded pseudo randomly from + * get_clock() - therefore a seed cannot repeat due to causality. */ class StructuredPoissonGroup : public PoissonGroup { diff --git a/src/TripletDecayConnection.h b/src/TripletDecayConnection.h index 24670ce7..f86a7f49 100644 --- a/src/TripletDecayConnection.h +++ b/src/TripletDecayConnection.h @@ -35,6 +35,12 @@ namespace auryn { +/*! \brief Implements triplet STDP with an exponential weight decay + * + * This is one of the Connection objects used for most simulations in Zenke et + * al. 2013 to simulate large plastic recurrent networks with homeostatic + * triplet STDP. + */ class TripletDecayConnection : public TripletConnection { From ce23f2fb513cb551504daab94a411b6bf640fa29 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 30 Jan 2016 17:35:11 -0800 Subject: [PATCH 031/460] Fixes bug in spike attribute reset in SyncBuffer --- src/SyncBuffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 34ec7e13..9d99a1b6 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -196,7 +196,7 @@ void SyncBuffer::sync() deltaT += (T2-T1); #endif - /* Detect over flow */ + /* Detect overflow */ bool overflow = false; NeuronID new_send_size = 0; for (int r = 0 ; r < mpicom->size() ; ++r ) { From 00bfdecacfcf9271db611df7ee12e58ad7103d8d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 30 Jan 2016 18:24:26 -0800 Subject: [PATCH 032/460] Adds debug code back in with precompile switch --- src/SyncBuffer.cpp | 39 +++++++++++++++++++++++++-------------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 9d99a1b6..9d4db3c1 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -63,7 +63,7 @@ void SyncBuffer::init() void SyncBuffer::push(SpikeDelay * delay, NeuronID size) { - + // loop over circular different delay bins for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { SpikeContainer * sc = delay->get_spikes(i); @@ -72,7 +72,8 @@ void SyncBuffer::push(SpikeDelay * delay, NeuronID size) count[i-1] = 0; for (SpikeContainer::const_iterator spike = sc->begin() ; - spike != sc->end() ; ++spike ) { + spike != sc->end() ; + ++spike ) { NeuronID compressed = *spike + groupPushOffset1 + (i-1)*size; send_buf.push_back(compressed); count[i-1]++; @@ -88,9 +89,12 @@ void SyncBuffer::push(SpikeDelay * delay, NeuronID size) for ( NeuronID k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes for ( NeuronID s = 0 ; s < count[i-1] ; ++s ) { // loop over spikes send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[i-1]*k)))); - // if ( mpicom->rank() == 0 ) - // std::cout << " pushing attr " << " " << i << " " << k << " " << s << " " - // << std::setprecision(5) << ac->at(s+count[i-1]*k) << std::endl; +#ifdef DEBUG + if ( mpicom->rank() == 0 ) + std::cout << " pushing attr " + << i << " " << k << " " << s << " " + << ac->at(s+count[i-1]*k) << std::endl; +#endif // DEBUG } } } @@ -140,8 +144,13 @@ void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) attrib = (AurynFloat*)(iter); iter++; ac->push_back(*attrib); - // if ( mpicom->rank() == 0 ) - // std::cout << " reading attr " << " " << slice << " " << k << " " << s << " " << std::ifstream << *attrib << std::endl; +#ifdef DEBUG + if ( mpicom->rank() == 0 ) + std::cout << " reading attr " + << " " << slice << " " + << k << " " << s << std::setprecision(5) + << " " << *attrib << std::endl; +#endif // DEBUG } } } @@ -211,15 +220,17 @@ void SyncBuffer::sync() if ( overflow ) { - // std::cout << "Overflow in SyncBuffer adapting buffersize to " - // << (new_send_size+1)*sizeof(NeuronID) - // << " ( " - // << mpicom->size()*(new_send_size+1)*sizeof(NeuronID) - // << " total ) " - // << std::endl; +#ifdef DEBUG + std::cerr << "Overflow in SyncBuffer adapting buffersize to " + << (new_send_size+1)*sizeof(NeuronID) + << " ( " + << mpicom->size()*(new_send_size+1)*sizeof(NeuronID) + << " total ) " + << std::endl; +#endif //DEBUG max_send_size = new_send_size+1; recv_buf.resize(mpicom->size()*max_send_size); - // sync(); // recursive retry was ausing problems + // sync(); // recursive retry was causing problems // resend full buffer ierr = MPI_Allgather(send_buf.data(), send_buf.size(), MPI_UNSIGNED, recv_buf.data(), max_send_size, MPI_UNSIGNED, *mpicom); From cef8164a4ba780f38c6b720dd6a0f17f94e5b283 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 30 Jan 2016 21:55:01 -0800 Subject: [PATCH 033/460] Adds function to read out send buffer size Also adds more debug output --- src/SyncBuffer.cpp | 47 +++++++++++++++++++++++++++++++++------------- src/SyncBuffer.h | 7 +++++++ 2 files changed, 41 insertions(+), 13 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 9d4db3c1..3ca1fc6c 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -89,12 +89,12 @@ void SyncBuffer::push(SpikeDelay * delay, NeuronID size) for ( NeuronID k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes for ( NeuronID s = 0 ; s < count[i-1] ; ++s ) { // loop over spikes send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[i-1]*k)))); -#ifdef DEBUG - if ( mpicom->rank() == 0 ) - std::cout << " pushing attr " - << i << " " << k << " " << s << " " - << ac->at(s+count[i-1]*k) << std::endl; -#endif // DEBUG +// #ifdef DEBUG +// if ( mpicom->rank() == 0 ) +// std::cout << " pushing attr " +// << i << " " << k << " " << s << " " +// << ac->at(s+count[i-1]*k) << std::endl; +// #endif // DEBUG } } } @@ -144,13 +144,13 @@ void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) attrib = (AurynFloat*)(iter); iter++; ac->push_back(*attrib); -#ifdef DEBUG - if ( mpicom->rank() == 0 ) - std::cout << " reading attr " - << " " << slice << " " - << k << " " << s << std::setprecision(5) - << " " << *attrib << std::endl; -#endif // DEBUG +// #ifdef DEBUG +// if ( mpicom->rank() == 0 ) +// std::cout << " reading attr " +// << " " << slice << " " +// << k << " " << s << std::setprecision(5) +// << " " << *attrib << std::endl; +// #endif // DEBUG } } } @@ -162,6 +162,17 @@ void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) groupPopOffset += size*MINDELAY; +#ifdef DEBUG + if ( mpicom->rank() == 0 ) { + for ( NeuronID slice = 0 ; slice < MINDELAY ; ++slice ) { + if ( delay->get_attributes(slice+1)->size() != delay->get_num_attributes()*delay->get_spikes(slice+1)->size() ) { + std::cout << " " << delay->get_spikes(slice+1)->size() << " spikes extracted in time slice " << slice+1 << std::endl + << " " << delay->get_attributes(slice+1)->size() << " attributes extracted in time slice " << slice+1 + << std::endl; + } + } + } +#endif // DEBUG } @@ -175,6 +186,11 @@ void SyncBuffer::sync() if ( max_send_size > upper_estimate && max_send_size > 2 ) { max_send_size = (max_send_size+upper_estimate)/2; recv_buf.resize(mpicom->size()*max_send_size); +#ifdef DEBUG + std::cerr << "Reducing maximum send buffer size to " + << max_send_size + << std::endl; +#endif //DEBUG } maxSendSum = 0; maxSendSum2 = 0; @@ -261,6 +277,11 @@ void SyncBuffer::reset_send_buffer() groupPopOffset = 0; } +int SyncBuffer::get_max_send_buffer_size() +{ + return max_send_size; +} + #ifdef CODE_COLLECT_SYNC_TIMING_STATS AurynDouble SyncBuffer::get_relative_sync_time() { diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 435212f0..53c7f26c 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -26,6 +26,8 @@ #ifndef SYNCBUFFER_H_ #define SYNCBUFFER_H_ +#define DEBUG + #define SYNCBUFFER_SIZE_MARGIN_MULTIPLIER 3 //!< Safety margin for receive buffer size -- a value of 3 should make overflows rare in AI state #define SYNCBUFFER_SIZE_HIST_LEN 512 //!< Accumulate history over this number of timesteps before updating the sendbuffer size in the absence of overflows @@ -65,6 +67,8 @@ namespace auryn { NeuronID groupPushOffset1; NeuronID groupPopOffset; + NeuronID current_array_pos; + NeuronID count[MINDELAY]; // needed to decode attributes /*! vector with offset values to allow to pop more than one delay */ @@ -84,6 +88,9 @@ namespace auryn { void push(SpikeDelay * delay, NeuronID size); void pop(SpikeDelay * delay, NeuronID size); + /*! Return max_send_size value which determines the size of the MPI AllGather operation. */ + int get_max_send_buffer_size(); + #ifdef CODE_COLLECT_SYNC_TIMING_STATS AurynDouble deltaT; AurynDouble measurement_start; From 0a975b749cfc4ea8de7feddb3a3dddb9c82eb9e1 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 30 Jan 2016 21:58:01 -0800 Subject: [PATCH 034/460] Removes deprecated comment line --- src/SpikingGroup.cpp | 4 ++++ src/SyncBuffer.cpp | 2 +- src/auryn_definitions.h | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index e3a17dc0..48087393 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -768,6 +768,10 @@ NeuronID SpikingGroup::get_vector_size() void SpikingGroup::inc_num_spike_attributes(int x) { + std::stringstream oss; + oss << get_name() << ":: Registering " << x << " spike attributes." ; + auryn::logger->msg(oss.str(),VERBOSE); + delay->inc_num_attributes(x); } diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 3ca1fc6c..8331be96 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -179,7 +179,7 @@ void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) void SyncBuffer::sync() { if ( syncCount >= SYNCBUFFER_SIZE_HIST_LEN ) { // update the estimate of maximum send size - NeuronID mean_send_size = maxSendSum/syncCount; // allow for 5 times the max mean + NeuronID mean_send_size = maxSendSum/syncCount; NeuronID var_send_size = (maxSendSum2-mean_send_size*mean_send_size)/syncCount; NeuronID upper_estimate = mean_send_size+SYNCBUFFER_SIZE_MARGIN_MULTIPLIER*sqrt(var_send_size); diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 27b18a0d..9ee77aaf 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -60,7 +60,6 @@ namespace mpi = boost::mpi; - /*! The current Auryn version/revision number. * Should be all ints. */ #define AURYNVERSION 0 From 9057d2852d05104d3f5e68206425d0d73c30fedd Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 30 Jan 2016 21:58:28 -0800 Subject: [PATCH 035/460] Remove DEBUG flag --- src/SyncBuffer.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 53c7f26c..b7b7f953 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -26,8 +26,6 @@ #ifndef SYNCBUFFER_H_ #define SYNCBUFFER_H_ -#define DEBUG - #define SYNCBUFFER_SIZE_MARGIN_MULTIPLIER 3 //!< Safety margin for receive buffer size -- a value of 3 should make overflows rare in AI state #define SYNCBUFFER_SIZE_HIST_LEN 512 //!< Accumulate history over this number of timesteps before updating the sendbuffer size in the absence of overflows From da0890bd07660c8d9d0c72b67829335776cbbec0 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jan 2016 17:40:11 -0800 Subject: [PATCH 036/460] Removes uneeded variable in SyncBuffer --- src/SyncBuffer.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index b7b7f953..9a29f8db 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -65,8 +65,6 @@ namespace auryn { NeuronID groupPushOffset1; NeuronID groupPopOffset; - NeuronID current_array_pos; - NeuronID count[MINDELAY]; // needed to decode attributes /*! vector with offset values to allow to pop more than one delay */ From 9e308fd275adfbdb0afae167d0a09f36dd947e7c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 4 Feb 2016 16:32:28 -0800 Subject: [PATCH 037/460] API change swaps argument order in get_post_state_trace --- src/SpikingGroup.cpp | 2 +- src/SpikingGroup.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 48087393..c4d4713f 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -366,7 +366,7 @@ DEFAULT_TRACE_MODEL * SpikingGroup::get_post_trace( AurynFloat x ) return tmp; } -EulerTrace * SpikingGroup::get_post_state_trace( AurynFloat tau, std::string state_name, AurynFloat b ) +EulerTrace * SpikingGroup::get_post_state_trace( std::string state_name, AurynFloat tau, AurynFloat b ) { // first let's check if a state with that name exists if ( find_state_vector( state_name ) == NULL ) { diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 4ddf04a1..592a99ef 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -230,7 +230,7 @@ class SpikingGroup * which will be added instantaneously to the trace upon each * postsynaptic spike. * */ - EulerTrace * get_post_state_trace( AurynFloat tau, std::string state_name="mem", AurynFloat b=0.0 ); + EulerTrace * get_post_state_trace( std::string state_name="mem", AurynFloat tau=10e-3, AurynFloat b=0.0 ); /*! Sets axonal delay for this SpikingGroup */ void set_delay( int d ); From eca9ffad4ff1c613eb3dc0c7834f5f1190115e83 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 4 Feb 2016 17:19:52 -0800 Subject: [PATCH 038/460] Adds new Trace constructor to StateMonitor --- src/StateMonitor.cpp | 14 ++++++++++++++ src/StateMonitor.h | 9 ++++++++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index ea608c86..cd6f5ef5 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -47,6 +47,20 @@ StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } +StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval) +{ + if ( id >= trace->get_state_ptr()->size ) return; // do not register if neuron is out of vector range + + Monitor::init(filename); + auryn::sys->register_monitor(this); + src = NULL; + nid = id; + target_variable = trace->get_state_ptr()->data+nid; + set_stop_time(10.0); + ssize = sampling_interval/dt; + outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); +} + void StateMonitor::init(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynTime stepsize) { if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank diff --git a/src/StateMonitor.h b/src/StateMonitor.h index 887b095c..5da3d72e 100644 --- a/src/StateMonitor.h +++ b/src/StateMonitor.h @@ -65,12 +65,19 @@ class StateMonitor : protected Monitor StateMonitor(SpikingGroup * source, NeuronID id, string statename, string filename, AurynDouble sampling_interval=dt); /*! Alternative constructor - * \param state The soure state vector + * \param state The source state vector * \param filename The filename of the file to dump the output to * \param sampling_interval The sampling interval in seconds */ StateMonitor(auryn_vector_float * state, NeuronID id, string filename, AurynDouble sampling_interval=dt); + /*! EulerTrace constructor + * \param trace The source synaptic trace + * \param filename The filename of the file to dump the output to + * \param sampling_interval The sampling interval in seconds + */ + StateMonitor(EulerTrace * trace, NeuronID id, string filename, AurynDouble sampling_interval=dt); + /*! \brief Sets relative time at which to stop recording * * The time is given in seconds and interpreted as relative time with From f8dfca3a13f3bd2bb6947756c7f44f65b0213d60 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 8 Feb 2016 13:43:51 -0800 Subject: [PATCH 039/460] Changes to StimulusGroup interace Adds getter for wheter a stimulus is active currently or not. --- src/StimulusGroup.cpp | 5 +++++ src/StimulusGroup.h | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/StimulusGroup.cpp b/src/StimulusGroup.cpp index bedad09b..f1421181 100644 --- a/src/StimulusGroup.cpp +++ b/src/StimulusGroup.cpp @@ -574,6 +574,11 @@ AurynTime StimulusGroup::get_last_action_time() return last_action_time; } +bool StimulusGroup::get_stim_active() +{ + return stimulus_active; +} + unsigned int StimulusGroup::get_cur_stim() { return cur_stim_index; diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index 1d88d5dd..2acf1ba2 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -193,6 +193,9 @@ class StimulusGroup : public SpikingGroup /*! \brief returns the index of the current (or last -- if not active anymore) active stimulus */ unsigned int get_cur_stim(); + /*! \brief Returns true if currently a stimulus is active and false otherwise. */ + bool get_stim_active(); + /*! Initialized distribution to be flat */ void flat_distribution( ); /*! Normalizes the distribution */ From cee1e531d4d810f41503aa67909a97edbabac70a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 15 Feb 2016 13:37:55 -0800 Subject: [PATCH 040/460] Adds new random initializer to SparseConnection --- src/SparseConnection.cpp | 21 +++++++++++++++++++++ src/SparseConnection.h | 7 +++++++ src/auryn_definitions.h | 10 +++++++++- 3 files changed, 37 insertions(+), 1 deletion(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 242d0504..93120c3b 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -224,6 +224,27 @@ void SparseConnection::random_data(AurynWeight mean, AurynWeight sigma) } } +void SparseConnection::init_random_binary(AurynFloat prob, AurynWeight wlo, AurynWeight whi) +{ + std::stringstream oss; + oss << "SparseConnection: (" << get_name() << "): randomizing non-zero connections (gaussian) with binary weights between " + << wlo << " and " << whi ; + auryn::logger->msg(oss.str(),NOTIFICATION); + + boost::uniform_real<> dist(0.0, 1.0); + boost::variate_generator > die(SparseConnection::sparse_connection_gen, dist); + AurynWeight rv; + + for ( AurynLong i = 0 ; iget_nonzero() ; ++i ) { + rv = die(); + if ( rvset_data(i,whi); + } else { + w->set_data(i,wlo); + } + } +} + void SparseConnection::sparse_set_data(AurynDouble sparseness, AurynWeight value) { std::stringstream oss; diff --git a/src/SparseConnection.h b/src/SparseConnection.h index 17b3ccd9..6a2305c5 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -38,6 +38,7 @@ #include #include +#include #include #include #include @@ -194,6 +195,12 @@ class SparseConnection : public Connection /*! \brief Synonym for random_data_lognormal */ void random_data(AurynWeight mean, AurynWeight sigma); + /*! \brief Initialize with random binary at wlo and whi. + * \param wlo The lower weight value. + * \param whi The higher weight value. + * \param prob the probability for the higher value. */ + void init_random_binary(AurynFloat prob=0.5, AurynWeight wlo=0.0, AurynWeight whi=1.0); + /*! \brief Set weights of all existing connections randomly using a normal distrubtion */ void random_data_normal(AurynWeight mean, AurynWeight sigma); diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 9ee77aaf..c8640340 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -248,7 +248,7 @@ namespace auryn { /*! \brief Computes a := a-b * - * Internal version of to subtract GSL vectors.*/ + * Internal version of to subtract GSL vectors. */ void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b); /*! \brief Computes r := a-b */ @@ -379,6 +379,14 @@ namespace auryn { } }; + class AurynVectorDimensionalityException: public std::exception + { + virtual const char* what() const throw() + { + return "Dimensions do not match. Are the vectors zero padded to a multiples of four dimension?"; + } + }; + class AurynSpikeAttributeSizeException: public std::exception { virtual const char* what() const throw() From 6783b03c22c3f285b3d10978a268832771b857b0 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 15 Feb 2016 14:12:58 -0800 Subject: [PATCH 041/460] Initial commit of MovingBumpGroup --- src/MovingBumpGroup.cpp | 95 +++++++++++++++++++++++++++++++++++++++++ src/MovingBumpGroup.h | 86 +++++++++++++++++++++++++++++++++++++ src/auryn.h | 1 + 3 files changed, 182 insertions(+) create mode 100644 src/MovingBumpGroup.cpp create mode 100644 src/MovingBumpGroup.h diff --git a/src/MovingBumpGroup.cpp b/src/MovingBumpGroup.cpp new file mode 100644 index 00000000..589f4f81 --- /dev/null +++ b/src/MovingBumpGroup.cpp @@ -0,0 +1,95 @@ +/* +* Copyright 2014-2015 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "MovingBumpGroup.h" + +using namespace auryn; + +boost::mt19937 MovingBumpGroup::order_gen = boost::mt19937(); + +void MovingBumpGroup::init ( AurynFloat duration, NeuronID width, std::string outputfile ) +{ + width = 100; // TODO + floor = 0.1; // TODO + + stimulus_duration = duration/dt; + auryn::logger->parameter("duration", (int)duration); + next_event = 0; + + std::stringstream oss; + oss << "MovingBumpGroup:: Set up with stimulus_duration=" + << stimulus_duration + << " and width=" + << width; + auryn::logger->msg(oss.str(),NOTIFICATION); + + if ( !outputfile.empty() ) { + + tiserfile.open(outputfile.c_str(),std::ios::out); + if (!tiserfile) { + std::stringstream oss2; + oss2 << "MovingBumpGroup:: Can't open output file " << outputfile; + auryn::logger->msg(oss2.str(),ERROR); + exit(1); + } + tiserfile.setf(std::ios::fixed); + tiserfile.precision(log(dt)/log(10)+1 ); + } + + +} + +MovingBumpGroup::MovingBumpGroup( + NeuronID n, + AurynFloat duration, + NeuronID width, + AurynDouble rate, + std::string tiserfile + ) : ProfilePoissonGroup( n , rate ) +{ + init(duration, width, tiserfile ); +} + +MovingBumpGroup::~MovingBumpGroup() +{ + tiserfile.close(); +} + +void MovingBumpGroup::evolve() +{ + if ( auryn::sys->get_clock() >= next_event ) { + next_event += stimulus_duration; + + boost::uniform_int<> dist(0,get_size()); + boost::variate_generator > die(order_gen, dist); + + NeuronID mean = die(); + + tiserfile << auryn::sys->get_time() << " " << mean << std::endl; + + set_gaussian_profile(mean, width, floor); + } + ProfilePoissonGroup::evolve(); +} diff --git a/src/MovingBumpGroup.h b/src/MovingBumpGroup.h new file mode 100644 index 00000000..ad85b444 --- /dev/null +++ b/src/MovingBumpGroup.h @@ -0,0 +1,86 @@ +/* +* Copyright 2014-2015 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef MOVINGBUMPGROUP_H_ +#define MOVINGBUMPGROUP_H_ + +#include "auryn_definitions.h" +#include "System.h" +#include "SpikingGroup.h" +#include "ProfilePoissonGroup.h" + +#include +#include +#include +#include + +namespace auryn { + +/*! \brief A special PoissonGroup that generates jumping Gaussian bumps in the firing rate profile + * + */ +class MovingBumpGroup : public ProfilePoissonGroup +{ +private: + static boost::mt19937 order_gen; + + AurynTime stimulus_duration; + AurynTime mean_isi; + + /*! Width of the Gaussian in number of neurons */ + NeuronID width; + + /*! Floor firing rate relative to max */ + AurynFloat floor; + + std::ofstream tiserfile; + + AurynTime next_event; + + + void init ( AurynFloat duration, NeuronID width, string outputfile ); + +public: + + /*! \brief Default constructor + * \param n Size of the group + * \param duration Duration of constant stimulation with a given stimulus profile in s + * \param width Width of stimulus in units of neurons + * \param rate Base firing rate + * \param tiserfile Timeseries file for logging of bump position + */ + MovingBumpGroup(NeuronID n, + AurynFloat duration, + NeuronID width, + AurynDouble rate=5.0, + string tiserfile = "stimulus.dat" ); + + virtual ~MovingBumpGroup(); + virtual void evolve(); +}; + +} + +#endif /*MOVINGBUMPGROUP_H_*/ diff --git a/src/auryn.h b/src/auryn.h index 56ac6fcd..7dc95e26 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -76,6 +76,7 @@ #include "ProfilePoissonGroup.h" #include "StructuredPoissonGroup.h" #include "CorrelatedPoissonGroup.h" +#include "MovingBumpGroup.h" #include "FileModulatedPoissonGroup.h" #include "AuditoryBeepGroup.h" #include "StimulusGroup.h" From a9afc2eef7d36766c858799243aef73e751dcf8f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 15 Feb 2016 14:20:47 -0800 Subject: [PATCH 042/460] Changes loglevel for a message in ProfilePoissonGroup --- src/ProfilePoissonGroup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ProfilePoissonGroup.cpp b/src/ProfilePoissonGroup.cpp index f82d97ff..33974e76 100644 --- a/src/ProfilePoissonGroup.cpp +++ b/src/ProfilePoissonGroup.cpp @@ -140,13 +140,13 @@ void ProfilePoissonGroup::set_gaussian_profile(AurynDouble mean, AurynDouble si normalize_profile(); std::stringstream oss; - oss << "ProfilePoissonGroup:: Set gaussian profile with mean=" + oss << "ProfilePoissonGroup:: Setting gaussian profile with mean=" << mean << " and sigma=" << sigma << " and floor=" << floor; - auryn::logger->msg(oss.str(),NOTIFICATION); + auryn::logger->msg(oss.str(),DEBUG); } AurynDouble ProfilePoissonGroup::get_rate() From bf3eb71d2f7dee6bd3151afa150176249cf3f769 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 15 Feb 2016 14:21:23 -0800 Subject: [PATCH 043/460] Bugfixes to MovingBumpGroup --- src/MovingBumpGroup.cpp | 6 +++--- src/MovingBumpGroup.h | 2 +- src/ProfilePoissonGroup.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/MovingBumpGroup.cpp b/src/MovingBumpGroup.cpp index 589f4f81..1f757f5d 100644 --- a/src/MovingBumpGroup.cpp +++ b/src/MovingBumpGroup.cpp @@ -31,7 +31,7 @@ boost::mt19937 MovingBumpGroup::order_gen = boost::mt19937(); void MovingBumpGroup::init ( AurynFloat duration, NeuronID width, std::string outputfile ) { - width = 100; // TODO + profile_width = 100; // TODO floor = 0.1; // TODO stimulus_duration = duration/dt; @@ -42,7 +42,7 @@ void MovingBumpGroup::init ( AurynFloat duration, NeuronID width, std::string ou oss << "MovingBumpGroup:: Set up with stimulus_duration=" << stimulus_duration << " and width=" - << width; + << profile_width; auryn::logger->msg(oss.str(),NOTIFICATION); if ( !outputfile.empty() ) { @@ -89,7 +89,7 @@ void MovingBumpGroup::evolve() tiserfile << auryn::sys->get_time() << " " << mean << std::endl; - set_gaussian_profile(mean, width, floor); + set_gaussian_profile(mean, profile_width, floor); } ProfilePoissonGroup::evolve(); } diff --git a/src/MovingBumpGroup.h b/src/MovingBumpGroup.h index ad85b444..2e9e198f 100644 --- a/src/MovingBumpGroup.h +++ b/src/MovingBumpGroup.h @@ -50,7 +50,7 @@ class MovingBumpGroup : public ProfilePoissonGroup AurynTime mean_isi; /*! Width of the Gaussian in number of neurons */ - NeuronID width; + NeuronID profile_width; /*! Floor firing rate relative to max */ AurynFloat floor; diff --git a/src/ProfilePoissonGroup.cpp b/src/ProfilePoissonGroup.cpp index 33974e76..e1399fd5 100644 --- a/src/ProfilePoissonGroup.cpp +++ b/src/ProfilePoissonGroup.cpp @@ -146,7 +146,7 @@ void ProfilePoissonGroup::set_gaussian_profile(AurynDouble mean, AurynDouble si << sigma << " and floor=" << floor; - auryn::logger->msg(oss.str(),DEBUG); + auryn::logger->msg(oss.str(),VERBOSE); } AurynDouble ProfilePoissonGroup::get_rate() From dac726696c1c7d4d7e2aa4a941aa408626961826 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 15 Feb 2016 14:31:31 -0800 Subject: [PATCH 044/460] Updates logmessage in SpikingGroup --- src/SpikingGroup.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index c4d4713f..36062253 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -152,6 +152,12 @@ void SpikingGroup::lock_range( double rank_fraction ) void SpikingGroup::free() { + std::stringstream oss; + oss << "SpikingGroup:: " << + get_name() + << " freeing ..."; + auryn::logger->msg(oss.str(),VERBOSE); + auryn::logger->msg("SpikingGroup:: Deleting delay",VERBOSE); delete delay; From c6d6e0d9610959e21d5d922afa540c06f5251c94 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 15 Feb 2016 14:48:12 -0800 Subject: [PATCH 045/460] Adds some setters to MovingBumpGroup --- src/MovingBumpGroup.cpp | 18 ++++++++++++++---- src/MovingBumpGroup.h | 14 +++++++++++++- 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/src/MovingBumpGroup.cpp b/src/MovingBumpGroup.cpp index 1f757f5d..fbe78712 100644 --- a/src/MovingBumpGroup.cpp +++ b/src/MovingBumpGroup.cpp @@ -31,10 +31,10 @@ boost::mt19937 MovingBumpGroup::order_gen = boost::mt19937(); void MovingBumpGroup::init ( AurynFloat duration, NeuronID width, std::string outputfile ) { - profile_width = 100; // TODO - floor = 0.1; // TODO - stimulus_duration = duration/dt; + set_width(0.1*get_size()); + set_floor(0.1); + auryn::logger->parameter("duration", (int)duration); next_event = 0; @@ -77,6 +77,16 @@ MovingBumpGroup::~MovingBumpGroup() tiserfile.close(); } +void MovingBumpGroup::set_floor( AurynFloat floor ) +{ + floor_ = floor; +} + +void MovingBumpGroup::set_width( NeuronID width ) +{ + profile_width = width; +} + void MovingBumpGroup::evolve() { if ( auryn::sys->get_clock() >= next_event ) { @@ -89,7 +99,7 @@ void MovingBumpGroup::evolve() tiserfile << auryn::sys->get_time() << " " << mean << std::endl; - set_gaussian_profile(mean, profile_width, floor); + set_gaussian_profile(mean, profile_width, floor_); } ProfilePoissonGroup::evolve(); } diff --git a/src/MovingBumpGroup.h b/src/MovingBumpGroup.h index 2e9e198f..d79db612 100644 --- a/src/MovingBumpGroup.h +++ b/src/MovingBumpGroup.h @@ -53,7 +53,7 @@ class MovingBumpGroup : public ProfilePoissonGroup NeuronID profile_width; /*! Floor firing rate relative to max */ - AurynFloat floor; + AurynFloat floor_; std::ofstream tiserfile; @@ -77,6 +77,18 @@ class MovingBumpGroup : public ProfilePoissonGroup AurynDouble rate=5.0, string tiserfile = "stimulus.dat" ); + /*! \brief Sets firing rate floor + * + * Floor is given in relative units with respect to the maximum amplitude in the Gaussian + */ + void set_floor(AurynFloat floor); + + /*! \brief Sets width of Gaussian rate profile + * + * Width is given in relative units of neurons and characterizes the stdev of the Gaussian dist + */ + void set_width(NeuronID width); + virtual ~MovingBumpGroup(); virtual void evolve(); }; From 9b48bed26ca78cd823556b5780fad3bc04843d86 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 15 Feb 2016 14:56:28 -0800 Subject: [PATCH 046/460] Adds setter for duration to MovingBumpGroup --- src/MovingBumpGroup.cpp | 5 +++++ src/MovingBumpGroup.h | 12 +++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/MovingBumpGroup.cpp b/src/MovingBumpGroup.cpp index fbe78712..c265a45e 100644 --- a/src/MovingBumpGroup.cpp +++ b/src/MovingBumpGroup.cpp @@ -87,6 +87,11 @@ void MovingBumpGroup::set_width( NeuronID width ) profile_width = width; } +void MovingBumpGroup::set_duration( AurynFloat duration ) +{ + stimulus_duration = duration; +} + void MovingBumpGroup::evolve() { if ( auryn::sys->get_clock() >= next_event ) { diff --git a/src/MovingBumpGroup.h b/src/MovingBumpGroup.h index d79db612..26102949 100644 --- a/src/MovingBumpGroup.h +++ b/src/MovingBumpGroup.h @@ -39,6 +39,9 @@ namespace auryn { /*! \brief A special PoissonGroup that generates jumping Gaussian bumps in the firing rate profile + * + * This type of stimulation can be used as a standart sanity test for plastic Connection classes to + * see whether or not they develop selectivity through some sort of competitive mechanism. * */ class MovingBumpGroup : public ProfilePoissonGroup @@ -46,8 +49,8 @@ class MovingBumpGroup : public ProfilePoissonGroup private: static boost::mt19937 order_gen; + /*! Stimulus duration after which the bump switches to a new random location. */ AurynTime stimulus_duration; - AurynTime mean_isi; /*! Width of the Gaussian in number of neurons */ NeuronID profile_width; @@ -55,6 +58,7 @@ class MovingBumpGroup : public ProfilePoissonGroup /*! Floor firing rate relative to max */ AurynFloat floor_; + /*! File stream handle for output file of stimulation time series */ std::ofstream tiserfile; AurynTime next_event; @@ -89,6 +93,12 @@ class MovingBumpGroup : public ProfilePoissonGroup */ void set_width(NeuronID width); + /*! \brief Sets stimulus duration + * + * duration is given in units of s + */ + void set_duration(AurynFloat duration); + virtual ~MovingBumpGroup(); virtual void evolve(); }; From eca1f243f68f1be2f64f06915037e3b9d359f349 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 16 Feb 2016 21:13:00 -0800 Subject: [PATCH 047/460] Changes to SparseConnection Increases safety margin for buffer size estimation --- src/SparseConnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 93120c3b..51e843d2 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -68,7 +68,7 @@ SparseConnection::SparseConnection( { init(); std::stringstream oss; - AurynLong anticipatedsize = (AurynLong) (estimate_required_nonzero_entires ( sparseness*src->get_pre_size()*dst->get_post_size() ) ); + AurynLong anticipatedsize = (AurynLong) (estimate_required_nonzero_entires ( sparseness*src->get_pre_size()*dst->get_post_size(), 6 ) ); oss << "SparseConnection: ("<< get_name() <<"): Assuming memory demand for pre #" << src->get_pre_size() << " and post #" << dst->get_post_size() << std::scientific << std::setprecision(4) << " ( total " << anticipatedsize << ")"; auryn::logger->msg(oss.str(),VERBOSE); From 00798a782c214b3b4e9f46ef6a67ae4ddd9d178a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 16 Feb 2016 21:13:36 -0800 Subject: [PATCH 048/460] Adds setter for tau thr in IFGroup --- src/IFGroup.cpp | 7 +++++++ src/IFGroup.h | 22 ++++++++++++++-------- 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index 23155a12..0a93c648 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -194,6 +194,13 @@ void IFGroup::set_tau_nmda(AurynFloat taum) calculate_scale_constants(); } +void IFGroup::set_tau_thr(AurynFloat tau) +{ + tau_thr = tau; + calculate_scale_constants(); +} + + AurynFloat IFGroup::get_tau_nmda() { return tau_nmda; diff --git a/src/IFGroup.h b/src/IFGroup.h index cf1bacf3..7d6a36ea 100644 --- a/src/IFGroup.h +++ b/src/IFGroup.h @@ -61,7 +61,7 @@ namespace auryn { void check_thresholds(); public: AurynFloat e_reset; - /*! Default constructor. + /*! \brief Default constructor. * * @param size the size of the group. @param load a load specifier that * can in principle help to assign the right amount of neurons to a single @@ -72,27 +72,33 @@ namespace auryn { */ IFGroup( NeuronID size, AurynFloat load = 1.0, NeuronID total = 0 ); virtual ~IFGroup(); - /*! Sets the membrane time constant */ + /*! \brief Sets the membrane time constant */ void set_tau_mem(AurynFloat taum); - /*! Returns the membrane time constant */ + /*! \brief Returns the membrane time constant */ AurynFloat get_tau_mem(); - /*! Sets the exponential decay time constant of the AMPA conductance (default=5ms). */ + /*! \brief Sets the exponential decay time constant of the AMPA conductance (default=5ms). */ void set_tau_ampa(AurynFloat tau); - /*! Returns the exponential decay time constant of the AMPA conductance. */ + /*! \brief Returns the exponential decay time constant of the AMPA conductance. */ AurynFloat get_tau_ampa(); - /*! Sets the exponential decay time constant of the GABA conductance (default=10ms). */ + /*! \brief Sets the exponential decay time constant of the GABA conductance (default=10ms). */ void set_tau_gaba(AurynFloat tau); - /*! Returns the exponential decay time constant of the GABA conductance. */ + /*! \brief Returns the exponential decay time constant of the GABA conductance. */ AurynFloat get_tau_gaba(); - /*! Sets the exponential decay time constant of the NMDA conductance (default=100ms). + /*! \brief Sets the exponential decay time constant of the NMDA conductance (default=100ms). + * * The rise is governed by tau_ampa if tau_ampa << tau_nmda. */ void set_tau_nmda(AurynFloat tau); + /*! \brief Sets the exponential decay time constant of the threshold (default=5). + * + * Reflects absolute and relative refractory period. */ + void set_tau_thr(AurynFloat tau); + /*! Returns the exponential decay time constant of the NMDA conductance. * The rise is governed by tau_ampa if tau_ampa << tau_nmda. */ AurynFloat get_tau_nmda(); From 68cb536b8a3719428ef068fa9caeb580fce2f73a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 16 Feb 2016 21:19:33 -0800 Subject: [PATCH 049/460] Modifcation to SparseConnection Changes to casat type in estimate for buffer size --- src/SparseConnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 242d0504..1153a12c 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -155,7 +155,7 @@ void SparseConnection::seed(NeuronID randomseed) AurynLong SparseConnection::estimate_required_nonzero_entires( AurynLong nonzero, double sigma ) { - return std::min( (NeuronID)(nonzero + sigma*sqrt(nonzero)), get_m_rows()*get_n_cols()) ; + return std::min( (AurynLong)(nonzero + sigma*sqrt(nonzero)), (AurynLong)(get_m_rows()*get_n_cols()) ) ; } void SparseConnection::free() From c9fb853cf0cd197a2d84373bd55f7b9dcb24ecba Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 17 Feb 2016 01:15:15 -0800 Subject: [PATCH 050/460] Improves SparseConnection Changes to connect_block_random to improve precision when building relatively dense matrices. This introcues a bias so far which was significant for sparsness values larger or equal to ~0.5. --- src/SparseConnection.cpp | 35 ++++++++++++++++++++++++++--------- src/SparseConnection.h | 19 ++++++++++++------- 2 files changed, 38 insertions(+), 16 deletions(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 232fb589..5a1325e5 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -61,14 +61,15 @@ SparseConnection::SparseConnection( SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, - AurynFloat sparseness, + AurynDouble sparseness, TransmitterType transmitter, std::string name) : Connection(source,destination,transmitter,name) { init(); std::stringstream oss; - AurynLong anticipatedsize = (AurynLong) (estimate_required_nonzero_entires ( sparseness*src->get_pre_size()*dst->get_post_size(), 6 ) ); + + AurynLong anticipatedsize = (AurynLong) (estimate_required_nonzero_entires ( sparseness*src->get_pre_size()*dst->get_post_size() ) ); oss << "SparseConnection: ("<< get_name() <<"): Assuming memory demand for pre #" << src->get_pre_size() << " and post #" << dst->get_post_size() << std::scientific << std::setprecision(4) << " ( total " << anticipatedsize << ")"; auryn::logger->msg(oss.str(),VERBOSE); @@ -79,7 +80,7 @@ SparseConnection::SparseConnection( SparseConnection::SparseConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, - AurynFloat sparseness, + AurynDouble sparseness, NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, @@ -105,7 +106,7 @@ SparseConnection::SparseConnection( : Connection(source,destination) { set_transmitter(con->get_transmitter()); - double sparseness = get_nonzero()/(con->get_m_rows()*con->get_n_cols()); + AurynDouble sparseness = get_nonzero()/(con->get_m_rows()*con->get_n_cols()); AurynFloat mean,std; con->stats(mean,std); AurynLong anticipatedsize = (AurynLong) (estimate_required_nonzero_entires ( sparseness*src->get_pre_size()*dst->get_post_size() ) ); allocate(anticipatedsize); @@ -155,7 +156,7 @@ void SparseConnection::seed(NeuronID randomseed) AurynLong SparseConnection::estimate_required_nonzero_entires( AurynLong nonzero, double sigma ) { - return std::min( (AurynLong)(nonzero + sigma*sqrt(nonzero)), (AurynLong)(get_m_rows()*get_n_cols()) ) ; + return std::min( (AurynLong)( nonzero + sigma*sqrt(1.0*nonzero) ), (AurynLong)(get_m_rows()*get_n_cols()) ) ; } void SparseConnection::free() @@ -320,7 +321,7 @@ void SparseConnection::set_upper_triangular(AurynWeight weight) void SparseConnection::connect_block_random(AurynWeight weight, - double sparseness, + AurynDouble sparseness, NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, @@ -356,7 +357,12 @@ void SparseConnection::connect_block_random(AurynWeight weight, if ( (hi_col-lo_col)%s > r ) { // some ranks have one more "carry" neuron jdim += 1; } + + // we keep track of the real valued jump size ... + AurynDouble jump = 0.0; + // ... and the discretized position along the weight matrix AurynLong x = (AurynLong) die(); + if ( sparseness == 1.0 ) x = 0; // for dense matrices AurynLong stop = idim*jdim; AurynLong count = 0; @@ -411,8 +417,19 @@ void SparseConnection::connect_block_random(AurynWeight weight, } if ( sparseness < 1.0 ) { - AurynLong jump = (AurynLong) (die()+1.5); - x += jump ; + // here we add our random exponential jump which was corrected + // for the 1.0 "refractory period" to account for the fact that + // we can have only one connection per "slot" + jump += die()+1.0; + + // here we discretize this jump + AurynLong discrete_jump = jump; + + // but keep the rest for the next jump to avoid discretization biases + jump -= discrete_jump; + + // now we added discrete_jump to x and we are ready for the next connection + x += discrete_jump; } else { // dense matrices x += 1 ; } @@ -427,7 +444,7 @@ void SparseConnection::connect_block_random(AurynWeight weight, auryn::logger->msg(oss.str(),VERBOSE); } -void SparseConnection::connect_random(AurynWeight weight, float sparseness, bool skip_diag) +void SparseConnection::connect_random(AurynWeight weight, AurynDouble sparseness, bool skip_diag) { if ( dst->evolve_locally() ) { // if there are no local units there is no need for synapses std::stringstream oss; diff --git a/src/SparseConnection.h b/src/SparseConnection.h index 6a2305c5..25878bae 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -152,15 +152,20 @@ class SparseConnection : public Connection * allocate the approximately right amount of memory inadvance. It is good habit to specify at time of initialization also * a connection name and the transmitter type. Both can be set separately with set_transmitter and set_name if the function call gets * too long and ugly. A connection name is often handy during debugging and the transmitter type is a crucial for obvious resons ... */ - SparseConnection(SpikingGroup * source, NeuronGroup * destination, - AurynWeight weight, AurynFloat sparseness=0.05, - TransmitterType transmitter=GLUT, string name="SparseConnection"); + SparseConnection( + SpikingGroup * source, + NeuronGroup * destination, + AurynWeight weight, + AurynDouble sparseness=0.05, + TransmitterType transmitter=GLUT, + string name="SparseConnection" + ); /*! \brief This constructor tries to clone a connection by guessing all parameters * except source and destination from another connection instance. */ SparseConnection(SpikingGroup * source, NeuronGroup * destination, SparseConnection * con, string name="SparseConnection"); - SparseConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynFloat sparseness, NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col, TransmitterType transmitter=GLUT); + SparseConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynDouble sparseness, NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col, TransmitterType transmitter=GLUT); /*! \brief The default destructor */ virtual ~SparseConnection(); @@ -169,7 +174,7 @@ class SparseConnection : public Connection void allocate_manually(AurynLong expected_size); /*! \brief This function estimates the required size of the nonzero entry buffer. */ - AurynLong estimate_required_nonzero_entires( AurynLong nonzero , double sigma = 5.); + AurynLong estimate_required_nonzero_entires( AurynLong nonzero , double sigma = 6.); /*! \brief This function seeds the generator for all random fill operatios */ void seed(NeuronID randomseed); @@ -231,7 +236,7 @@ class SparseConnection : public Connection /*! \brief Connect src and dst SpikingGroup and NeuronGroup randomly with given sparseness * * This function should be usually called from the constructor directly. */ - void connect_random(AurynWeight weight=1.0, float sparseness=0.05, bool skip_diag=false); + void connect_random(AurynWeight weight=1.0, AurynDouble sparseness=0.05, bool skip_diag=false); /*! \brief Underlying sparse fill method. * @@ -239,7 +244,7 @@ class SparseConnection : public Connection * matrix independent of the number of ranks. */ void connect_block_random(AurynWeight weight, - double sparseness, + AurynDouble sparseness, NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, From c8c1ef55891f58e34a73dc90536bafe3944c2a88 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 17 Feb 2016 01:20:27 -0800 Subject: [PATCH 051/460] Undoes earlier commit and reverts to 5 sigma in SparseConnection --- src/SparseConnection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SparseConnection.h b/src/SparseConnection.h index 25878bae..abfb3c1a 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -174,7 +174,7 @@ class SparseConnection : public Connection void allocate_manually(AurynLong expected_size); /*! \brief This function estimates the required size of the nonzero entry buffer. */ - AurynLong estimate_required_nonzero_entires( AurynLong nonzero , double sigma = 6.); + AurynLong estimate_required_nonzero_entires( AurynLong nonzero , double sigma = 5.); /*! \brief This function seeds the generator for all random fill operatios */ void seed(NeuronID randomseed); From d9aed651461c7c7736db1b1fccfe4b6e287c8598 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 18 Feb 2016 15:35:00 -0800 Subject: [PATCH 052/460] Adds function to ComplexMatrix Adds state_get_data_ptr to the template. --- src/ComplexMatrix.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 07e59427..7094acc4 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -211,6 +211,8 @@ class ComplexMatrix void state_add_const(T a, AurynWeight * x); /*! Clips state values to interval [a,b] */ void state_clip(AurynWeight * x, T a, T b); + /*! Get data pointer for that state */ + T * state_get_data_ptr(AurynWeight * x, NeuronID i); T get_value(AurynLong data_index); void add_value(AurynLong data_index, T value); @@ -503,6 +505,7 @@ T * ComplexMatrix::get_state_begin(NeuronID z) return get_ptr(get_datasize()*z); } + template T * ComplexMatrix::get_state_end(NeuronID z) { @@ -821,6 +824,12 @@ void ComplexMatrix::state_clip(AurynWeight * x, T a, T b) } } +template +T * ComplexMatrix::state_get_data_ptr(AurynWeight * x, NeuronID i) +{ + return x+i; +} + template T ComplexMatrix::get_value(NeuronID i) { From 66566d271e4854b19bd44a1271ba0ee3f422307b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 18 Feb 2016 15:36:06 -0800 Subject: [PATCH 053/460] Generalizes ComplexMatrix For some reason I had pointers to AurynWeight in ComplexMatrix this is now replaced with the template data type T. --- src/ComplexMatrix.h | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 7094acc4..58f4eefa 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -194,25 +194,25 @@ class ComplexMatrix /*! Gets pointer for the element behind the last of a given synaptic state vector */ T * get_state_end(StateID z=0); /*! Sets all values in state x to value. */ - void state_set_all(AurynWeight * x, T value); + void state_set_all(T * x, T value); /*! Computes a*x + y and stores result in y */ - void state_saxpy(T a, AurynWeight * x, AurynWeight * y); + void state_saxpy(T a, T * x, T * y); /*! Multiplies x and y and stores result in y */ - void state_mul(AurynWeight * x, AurynWeight * y); + void state_mul(T * x, T * y); /*! Adds x and y and stores result in y */ - void state_add(AurynWeight * x, AurynWeight * y); + void state_add(T * x, T * y); /*! Computes x-y and stores result in y */ - void state_sub(AurynWeight * x, AurynWeight * y); + void state_sub(T * x, T * y); /*! Computes x-y and stores result in res */ - void state_sub(AurynWeight * x, AurynWeight * y, AurynWeight * res); + void state_sub(T * x, T * y, T * res); /*! Scale state x by a. */ - void state_scale(T a, AurynWeight * x); + void state_scale(T a, T * x); /*! Adds constant a to all values in x */ - void state_add_const(T a, AurynWeight * x); + void state_add_const(T a, T * x); /*! Clips state values to interval [a,b] */ - void state_clip(AurynWeight * x, T a, T b); + void state_clip(T * x, T a, T b); /*! Get data pointer for that state */ - T * state_get_data_ptr(AurynWeight * x, NeuronID i); + T * state_get_data_ptr(T * x, NeuronID i); T get_value(AurynLong data_index); void add_value(AurynLong data_index, T value); @@ -752,7 +752,7 @@ double ComplexMatrix::mean() } template -void ComplexMatrix::state_set_all(AurynWeight * x, T value) +void ComplexMatrix::state_set_all(T * x, T value) { for (T * iter=x; iter!=x+get_nonzero(); @@ -762,7 +762,7 @@ void ComplexMatrix::state_set_all(AurynWeight * x, T value) } template -void ComplexMatrix::state_saxpy(T a, AurynWeight * x, AurynWeight * y) +void ComplexMatrix::state_saxpy(T a, T * x, T * y) { for (AurynLong i = 0 ; i < get_nonzero() ; ++i ) { y[i] = a*x[i]+y[i]; @@ -770,7 +770,7 @@ void ComplexMatrix::state_saxpy(T a, AurynWeight * x, AurynWeight * y) } template -void ComplexMatrix::state_mul(AurynWeight * x, AurynWeight * y) +void ComplexMatrix::state_mul(T * x, T * y) { for (AurynLong i = 0 ; i < get_nonzero() ; ++i ) { y[i] = x[i]*y[i]; @@ -778,7 +778,7 @@ void ComplexMatrix::state_mul(AurynWeight * x, AurynWeight * y) } template -void ComplexMatrix::state_add(AurynWeight * x, AurynWeight * y) +void ComplexMatrix::state_add(T * x, T * y) { for (AurynLong i = 0 ; i < get_nonzero() ; ++i ) { y[i] = x[i]+y[i]; @@ -786,7 +786,7 @@ void ComplexMatrix::state_add(AurynWeight * x, AurynWeight * y) } template -void ComplexMatrix::state_sub(AurynWeight * x, AurynWeight * y, AurynWeight * res) +void ComplexMatrix::state_sub(T * x, T * y, T * res) { for (AurynLong i = 0 ; i < get_nonzero() ; ++i ) { res[i] = x[i]-y[i]; @@ -794,13 +794,13 @@ void ComplexMatrix::state_sub(AurynWeight * x, AurynWeight * y, AurynWeight * } template -void ComplexMatrix::state_sub(AurynWeight * x, AurynWeight * y) +void ComplexMatrix::state_sub(T * x, T * y) { state_sub(x,y,y); } template -void ComplexMatrix::state_scale(T a, AurynWeight * y) +void ComplexMatrix::state_scale(T a, T * y) { for (AurynLong i = 0 ; i < get_nonzero() ; ++i ) { y[i] = a*y[i]; @@ -808,7 +808,7 @@ void ComplexMatrix::state_scale(T a, AurynWeight * y) } template -void ComplexMatrix::state_add_const(T a, AurynWeight * y) +void ComplexMatrix::state_add_const(T a, T * y) { for (AurynLong i = 0 ; i < get_nonzero() ; ++i ) { y[i] = a+y[i]; @@ -816,7 +816,7 @@ void ComplexMatrix::state_add_const(T a, AurynWeight * y) } template -void ComplexMatrix::state_clip(AurynWeight * x, T a, T b) +void ComplexMatrix::state_clip(T * x, T a, T b) { for (AurynLong i = 0 ; i < get_nonzero() ; ++i ) { if ( x[i] < a ) x[i] = a; @@ -825,7 +825,7 @@ void ComplexMatrix::state_clip(AurynWeight * x, T a, T b) } template -T * ComplexMatrix::state_get_data_ptr(AurynWeight * x, NeuronID i) +T * ComplexMatrix::state_get_data_ptr(T * x, NeuronID i) { return x+i; } From e48566b7403f6833bb5f55b520b3a851f0616e1f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 19 Feb 2016 15:53:00 -0800 Subject: [PATCH 054/460] Changes interface for stats in Connection This switches the stats datatype to double. --- src/ComplexMatrix.h | 19 ++++++++++++++----- src/Connection.h | 2 +- src/IdentityConnection.cpp | 4 ++-- src/IdentityConnection.h | 2 +- src/RateModulatedConnection.cpp | 4 ++-- src/RateModulatedConnection.h | 2 +- src/SparseConnection.cpp | 11 ++++++++--- src/SparseConnection.h | 6 +++++- src/WeightChecker.cpp | 2 +- src/WeightMatrixMonitor.cpp | 2 +- src/WeightStatsMonitor.cpp | 2 +- 11 files changed, 37 insertions(+), 19 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 58f4eefa..355cb6b8 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -161,10 +161,10 @@ class ComplexMatrix void copy(ComplexMatrix * mat); void set_data(AurynLong i, T value); void scale_data(AurynLong i, T value); - /*! Gets the matching data ptr for a given index i and state z*/ - T * get_data_ptr(AurynLong i, StateID z=0); /*! Gets the matching data entry for a given index i and state z*/ T get_data(AurynLong i, StateID z=0); + /*! Gets the matching data ptr for a given index i and state z*/ + T * get_data_ptr(AurynLong i, StateID z=0); /*! Gets the matching data ptr for a given index pointer and state z*/ T * get_data_ptr(const NeuronID * ind_ptr, StateID z=0); /*! Gets the matching data value for a given index pointer and state z*/ @@ -184,8 +184,11 @@ class ComplexMatrix /*! Returns data index to a particular element specifed by i and j */ AurynLong get_data_index(NeuronID i, NeuronID j, NeuronID z=0); - /*! Returns data index to a particular element specifed by a data pointer */ - AurynLong get_data_index(T * ptr); + /*! \brief Returns data index to a particular element specifed by an index pointer */ + AurynLong get_data_index(const NeuronID * ind_ptr); + + /*! \brief Returns data index to a particular element specifed by a data pointer */ + AurynLong get_data_index(const T * ptr); /* Methods concerning synaptic state vectors. */ void set_num_synapse_states(StateID zsize); @@ -550,7 +553,13 @@ AurynLong ComplexMatrix::get_data_index(NeuronID i, NeuronID j, NeuronID z) } template -AurynLong ComplexMatrix::get_data_index(T * ptr) +AurynLong ComplexMatrix::get_data_index(const NeuronID * ind_ptr) +{ + return ind_ptr - get_ind_begin(); +} + +template +AurynLong ComplexMatrix::get_data_index(const T * ptr) { return ptr - get_data_begin(); } diff --git a/src/Connection.h b/src/Connection.h index da10a555..c5e4f89a 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -185,7 +185,7 @@ class Connection virtual AurynDouble sum() = 0; /*! \brief Computes mean synaptic weight and std dev of all weights in this connection. */ - virtual void stats(AurynFloat &mean, AurynFloat &std) = 0; + virtual void stats(AurynDouble &mean, AurynDouble &std) = 0; /*! \brief Implements save to file functionality. Also called in save_network_state from System class. */ virtual bool write_to_file(std::string filename) = 0; diff --git a/src/IdentityConnection.cpp b/src/IdentityConnection.cpp index 8fadb746..2b5e7e82 100644 --- a/src/IdentityConnection.cpp +++ b/src/IdentityConnection.cpp @@ -122,7 +122,7 @@ AurynLong IdentityConnection::get_nonzero() return std::min(src->get_pre_size(),dst->get_post_size()); } -void IdentityConnection::stats(AurynFloat &mean, AurynFloat &std) +void IdentityConnection::stats(AurynDouble &mean, AurynDouble &std) { mean = connection_weight; std = 0; @@ -162,7 +162,7 @@ std::vector IdentityConnection::get_block(NeuronID lo_row, NeuronID AurynFloat IdentityConnection::mean() { - AurynFloat m,s; + AurynDouble m,s; stats(m,s); return m; } diff --git a/src/IdentityConnection.h b/src/IdentityConnection.h index 982883a0..1737aede 100644 --- a/src/IdentityConnection.h +++ b/src/IdentityConnection.h @@ -75,7 +75,7 @@ class IdentityConnection : public Connection virtual void propagate(); virtual AurynDouble sum(); - virtual void stats(AurynFloat &mean, AurynFloat &std); + virtual void stats(AurynDouble &mean, AurynDouble &std); virtual bool write_to_file(string filename); virtual bool load_from_file(string filename); virtual AurynFloat mean(); diff --git a/src/RateModulatedConnection.cpp b/src/RateModulatedConnection.cpp index ff71cc17..d92706bb 100644 --- a/src/RateModulatedConnection.cpp +++ b/src/RateModulatedConnection.cpp @@ -137,9 +137,9 @@ void RateModulatedConnection::set_eta(AurynFloat value) eta = value; } -void RateModulatedConnection::stats(AurynFloat &mean, AurynFloat &std) +void RateModulatedConnection::stats(AurynDouble &mean, AurynDouble &std) { - SparseConnection::stats(mean,std); + SparseConnection::stats(mean, std); mean *= rate_modulation_mul; std *= rate_modulation_mul; } diff --git a/src/RateModulatedConnection.h b/src/RateModulatedConnection.h index 64d32a5d..99df42ed 100644 --- a/src/RateModulatedConnection.h +++ b/src/RateModulatedConnection.h @@ -93,7 +93,7 @@ class RateModulatedConnection : public SparseConnection string name="RateModulatedConnection"); virtual ~RateModulatedConnection(); - virtual void stats(AurynFloat &mean, AurynFloat &std); + virtual void stats(AurynDouble &mean, AurynDouble &std); void set_eta(AurynFloat value); diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 5a1325e5..2f013513 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -107,7 +107,7 @@ SparseConnection::SparseConnection( { set_transmitter(con->get_transmitter()); AurynDouble sparseness = get_nonzero()/(con->get_m_rows()*con->get_n_cols()); - AurynFloat mean,std; con->stats(mean,std); + AurynDouble mean,std; con->stats(mean,std); AurynLong anticipatedsize = (AurynLong) (estimate_required_nonzero_entires ( sparseness*src->get_pre_size()*dst->get_post_size() ) ); allocate(anticipatedsize); connect_random(mean,sparseness,con->skip_diagonal); @@ -575,12 +575,17 @@ void SparseConnection::sanity_check() delete [] sum_rows; } -void SparseConnection::stats(AurynFloat &mean, AurynFloat &std) +void SparseConnection::stats(AurynDouble &mean, AurynDouble &std) +{ + stats(mean, std, 0); +} + +void SparseConnection::stats(AurynDouble &mean, AurynDouble &std, NeuronID zid) { double sum = 0; // needs double here -- machine precision really matters here double sum2 = 0; - for ( AurynWeight * iter = w->get_data_begin() ; iter != w->get_data_end() ; ++iter ) { + for ( AurynWeight * iter = w->get_data_begin(zid) ; iter != w->get_data_end(zid) ; ++iter ) { sum += *iter; sum2 += (*iter * *iter); } diff --git a/src/SparseConnection.h b/src/SparseConnection.h index abfb3c1a..b88e75fc 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -301,7 +301,11 @@ class SparseConnection : public Connection * * Returns mean and variance of default weight matrix (typically referenced as w * in a given SparseConnection */ - virtual void stats(AurynFloat &mean, AurynFloat &std); + virtual void stats(AurynDouble &mean, AurynDouble &std); + + /*! \brief Computes mean and variance of weights for matrix state zid + */ + virtual void stats(AurynDouble &mean, AurynDouble &std, NeuronID zid); /*! \brief Writes rank specific weight matrix on the same rank to a file diff --git a/src/WeightChecker.cpp b/src/WeightChecker.cpp index 46461cf5..c8e940fd 100644 --- a/src/WeightChecker.cpp +++ b/src/WeightChecker.cpp @@ -62,7 +62,7 @@ bool WeightChecker::propagate() { if ( (sys->get_clock()%timestep_) == 0 ) { - AurynWeight mean, std; + AurynDouble mean, std; source_->stats(mean, std); if ( meanwmax ) { std::stringstream oss; diff --git a/src/WeightMatrixMonitor.cpp b/src/WeightMatrixMonitor.cpp index 716ea82d..0079da64 100644 --- a/src/WeightMatrixMonitor.cpp +++ b/src/WeightMatrixMonitor.cpp @@ -50,7 +50,7 @@ void WeightMatrixMonitor::init(Connection * source, AurynFloat stepsize) void WeightMatrixMonitor::propagate() { if (auryn::sys->get_clock()%ssize==0) { - AurynFloat mean,std; + AurynDouble mean,std; src->stats(mean,std); char wmatfilename [255]; diff --git a/src/WeightStatsMonitor.cpp b/src/WeightStatsMonitor.cpp index e685ac41..a82b688b 100644 --- a/src/WeightStatsMonitor.cpp +++ b/src/WeightStatsMonitor.cpp @@ -52,7 +52,7 @@ void WeightStatsMonitor::init(Connection * source, std::string filename,AurynTim void WeightStatsMonitor::propagate() { if (auryn::sys->get_clock()%ssize==0) { - AurynFloat mean,std; + AurynDouble mean,std; src->stats(mean,std); outfile << (auryn::sys->get_time()) << " " << mean << " " << std << std::endl; } From c42491d66743775f73260952db169ac5ea38166f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 21 Feb 2016 16:02:03 -0800 Subject: [PATCH 055/460] Changes to access rights in StimulusGroup --- src/StimulusGroup.h | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index 2acf1ba2..ff7fe9db 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -52,8 +52,6 @@ class StimulusGroup : public SpikingGroup private: AurynTime * clk; AurynTime * ttl; - std::vector stimuli; - AurynFloat * activity; /*! Internal name for the stimfile (tiser stands for time series). */ std::fstream tiserfile; @@ -62,12 +60,24 @@ class StimulusGroup : public SpikingGroup int off_pattern; + + +protected: + std::vector stimuli; + AurynFloat * activity; + + /*! Stimulus order */ + StimulusGroupModeType stimulus_order ; + /*! Foreground Poisson field pointer */ NeuronID fgx; /*! Background Poisson field pointer */ NeuronID bgx; + /*! stimulus probabilities */ + std::vector probabilities ; + /*! pseudo random number generators */ static boost::mt19937 poisson_gen; @@ -75,13 +85,7 @@ class StimulusGroup : public SpikingGroup static boost::mt19937 order_gen; static boost::uniform_01 order_die; - /*! Stimulus order */ - StimulusGroupModeType stimulus_order ; - - /*! stimulus probabilities */ - std::vector probabilities ; -protected: /*! current stimulus index */ unsigned int cur_stim_index ; bool stimulus_active; From 5fe13dfcfe05581d0522da1eac93aa290cf73cb2 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 24 Feb 2016 09:30:00 -0800 Subject: [PATCH 056/460] Changes access rights to ttl in StimulusGroup --- src/StimulusGroup.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index ff7fe9db..c166dc5d 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -51,7 +51,6 @@ class StimulusGroup : public SpikingGroup { private: AurynTime * clk; - AurynTime * ttl; /*! Internal name for the stimfile (tiser stands for time series). */ std::fstream tiserfile; @@ -63,6 +62,8 @@ class StimulusGroup : public SpikingGroup protected: + AurynTime * ttl; + std::vector stimuli; AurynFloat * activity; @@ -98,8 +99,9 @@ class StimulusGroup : public SpikingGroup /*! Standard initialization */ void init(StimulusGroupModeType stimulusmode, string stimfile, AurynFloat baserate); + /*! Draw all Time-To-Live (ttls) typically after changing the any of the activiteis */ - void redraw(); + virtual void redraw(); /*! write current stimulus to stimfile */ void write_stimulus_file(AurynDouble time); From 174a1953d90e483deef9e40aa1f156e538189bf7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 26 Feb 2016 13:56:55 -0800 Subject: [PATCH 057/460] Adds filename formating function to System --- src/System.cpp | 18 +++++++++++++++++- src/System.h | 13 +++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/src/System.cpp b/src/System.cpp index 9dc23c6c..162e3f13 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -31,6 +31,7 @@ void System::init() { clock = 0; quiet = false; set_simulation_name("default"); + set_output_dir("."); set_online_rate_monitor_tau(); // assumes that we have at least one spiking group in the sim @@ -523,6 +524,20 @@ void System::set_simulation_name(std::string name) simulation_name = name; } +void System::set_output_dir(std::string path) +{ + outputdir = path; +} + +const char * System::fn(std::string name, std::string extension) +{ + std::stringstream oss; + oss << outputdir << "/" << name + << "." << mpicom->rank() + << "." << extension; + return oss.str().c_str(); +} + void System::save_network_state(std::string basename) { auryn::logger->msg("Saving network state", NOTIFICATION); @@ -530,7 +545,8 @@ void System::save_network_state(std::string basename) std::string netstate_filename; { std::stringstream oss; - oss << basename + oss << outputdir + << "/" << basename << "." << mpicom->rank() << ".netstate"; netstate_filename = oss.str(); diff --git a/src/System.h b/src/System.h index 8cb8da80..7c1d604c 100644 --- a/src/System.h +++ b/src/System.h @@ -70,6 +70,8 @@ namespace auryn { std::vector monitors; std::vector checkers; + string outputdir; + double simulation_time_realtime_ratio; int online_rate_monitor_id; @@ -219,7 +221,18 @@ namespace auryn { /*! Get total number of registered synapses */ AurynLong get_total_synapses(); + /*! \brief Format output file name + * + * Formats output files according to the following convention: + * /.. + * and returns it as a c string; + * */ + const char * fn(std::string name, std::string extension); + + /*! \brief Set output dir for fn function */ + void set_output_dir(std::string path); + /*! \brief Returns global mpi communicator */ mpi::communicator * get_com(); #ifdef CODE_COLLECT_SYNC_TIMING_STATS From 9387ae8fa124e1311149f7fde007e3a45c8522b4 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 26 Feb 2016 13:58:49 -0800 Subject: [PATCH 058/460] Adds an "active" member to Monitor Can be used by Monitor clases to be switch on and off between runs. However, currently only BinarySpikeMonitor implements this. --- src/BinarySpikeMonitor.cpp | 2 ++ src/BinarySpikeMonitor.h | 2 +- src/Monitor.cpp | 2 ++ src/Monitor.h | 9 ++++++--- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/BinarySpikeMonitor.cpp b/src/BinarySpikeMonitor.cpp index a5903128..96764b46 100644 --- a/src/BinarySpikeMonitor.cpp +++ b/src/BinarySpikeMonitor.cpp @@ -102,6 +102,8 @@ void BinarySpikeMonitor::set_every(NeuronID every) void BinarySpikeMonitor::propagate() { + if ( !active ) return; + struct SpikeEvent_type spikeData; spikeData.time = auryn::sys->get_clock(); for (it = src->get_spikes_immediate()->begin() ; it < src->get_spikes_immediate()->end() ; ++it ) { diff --git a/src/BinarySpikeMonitor.h b/src/BinarySpikeMonitor.h index 44405a47..93d2d4b9 100644 --- a/src/BinarySpikeMonitor.h +++ b/src/BinarySpikeMonitor.h @@ -42,7 +42,7 @@ namespace auryn { * and writes all or a specified range of the neurons spikes to a * file that has to be given at construction time. */ -class BinarySpikeMonitor : Monitor +class BinarySpikeMonitor : public Monitor { private: NeuronID n_from; diff --git a/src/Monitor.cpp b/src/Monitor.cpp index 11ab9936..a3b2bb95 100644 --- a/src/Monitor.cpp +++ b/src/Monitor.cpp @@ -31,6 +31,8 @@ void Monitor::init(std::string filename) { fname = filename; + active = true; + open_output_file(filename); } diff --git a/src/Monitor.h b/src/Monitor.h index 38ae1b56..28313643 100644 --- a/src/Monitor.h +++ b/src/Monitor.h @@ -69,11 +69,14 @@ namespace auryn { virtual void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) ; public: - /*! Standard constructor */ + /*! \brief Standard active switch */ + bool active; + + /*! \brief Standard constructor */ Monitor(); - /*! Standard constructor with file name*/ + /*! \brief Standard constructor with file name*/ Monitor(std::string filename); - /*! Standard destructor */ + /*! \brief Standard destructor */ virtual ~Monitor(); /*! Virtual propagate function to be called in central simulation loop in System */ virtual void propagate() = 0; From a8a53a26ea02e53f8f91ec64041640748144bb76 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 26 Feb 2016 15:47:39 -0800 Subject: [PATCH 059/460] Updates new filename function in System Now using string instead of cstring. --- src/System.cpp | 4 ++-- src/System.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index 162e3f13..359a6695 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -529,13 +529,13 @@ void System::set_output_dir(std::string path) outputdir = path; } -const char * System::fn(std::string name, std::string extension) +string System::fn(std::string name, std::string extension) { std::stringstream oss; oss << outputdir << "/" << name << "." << mpicom->rank() << "." << extension; - return oss.str().c_str(); + return oss.str(); } void System::save_network_state(std::string basename) diff --git a/src/System.h b/src/System.h index 7c1d604c..76284b9e 100644 --- a/src/System.h +++ b/src/System.h @@ -227,7 +227,7 @@ namespace auryn { * /.. * and returns it as a c string; * */ - const char * fn(std::string name, std::string extension); + string fn(std::string name, std::string extension); /*! \brief Set output dir for fn function */ void set_output_dir(std::string path); From fb95203e1e212b93fc0257cf4e74a51e25e8d04d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 26 Feb 2016 18:26:04 -0800 Subject: [PATCH 060/460] Fixes typo --- src/SparseConnection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SparseConnection.h b/src/SparseConnection.h index b88e75fc..f65733eb 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -134,7 +134,7 @@ class SparseConnection : public Connection * function. */ bool wrap_patterns; - /*! A pointer that points per defalt to the SimpleMatrix + /*! A pointer that points per default to the ComplexMatrix * that stores the connectinos. */ ForwardMatrix * w; From 28c209e5bdc6182c4f30f7206be053d75d82fcc8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 26 Feb 2016 18:55:37 -0800 Subject: [PATCH 061/460] Adds a warning to SparseConnection --- src/SparseConnection.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 2f013513..f4e08147 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -136,7 +136,7 @@ void SparseConnection::init() } set_min_weight(0.0); - set_max_weight(1e16); // just make it large + set_max_weight(std::numeric_limits::max()); // just make it large patterns_ignore_gamma = false; wrap_patterns = false; @@ -338,6 +338,11 @@ void SparseConnection::connect_block_random(AurynWeight weight, sparseness = 1.0; } + if ( weight < get_min_weight() ) { + auryn::logger->msg("Weight smaller than minimal weight. Updating minimal weight and proceeding.",WARNING); + set_min_weight(weight); + } + int r = 0; // these variables are used to speed up building the matrix if the destination is distributed int s = 1; From c368158c3de82639e972d19b4eb9fa73a0f76d28 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 26 Feb 2016 19:39:35 -0800 Subject: [PATCH 062/460] Improves ProfilePoissonGroup --- src/ProfilePoissonGroup.cpp | 17 ++++++++--------- src/ProfilePoissonGroup.h | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/src/ProfilePoissonGroup.cpp b/src/ProfilePoissonGroup.cpp index e1399fd5..4d04cf8b 100644 --- a/src/ProfilePoissonGroup.cpp +++ b/src/ProfilePoissonGroup.cpp @@ -42,7 +42,7 @@ void ProfilePoissonGroup::init(AurynDouble rate) jumpsize = 0; // creates flat profile - profile = new AurynFloat[get_rank_size()]; + profile = get_state_vector("firing_rate_profile"); set_flat_profile(); std::stringstream oss; @@ -61,7 +61,6 @@ ProfilePoissonGroup::~ProfilePoissonGroup() if ( evolve_locally() ) { delete dist; delete die; - delete [] profile; } } @@ -86,19 +85,19 @@ void ProfilePoissonGroup::normalize_profile() { AurynDouble sum = 0.0; for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) { - sum += profile[i]; + sum += profile->data[i]; } AurynDouble normalization_factor = get_rank_size()/sum; for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) { - profile[i] *= normalization_factor ; + profile->data[i] *= normalization_factor ; } } void ProfilePoissonGroup::set_flat_profile() { for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) { - profile[i] = 1.0; + profile->data[i] = 1.0; } } @@ -106,7 +105,7 @@ void ProfilePoissonGroup::set_profile( AurynFloat * newprofile ) { for ( NeuronID i = 0 ; i < get_size() ; ++i ) { if ( localrank( i ) ) - profile[global2rank(i)] = newprofile[i]; + profile->data[global2rank(i)] = newprofile[i]; } normalize_profile(); @@ -119,7 +118,7 @@ void ProfilePoissonGroup::set_profile( AurynFloat * newprofile ) void ProfilePoissonGroup::set_profile( auryn_vector_float * newprofile ) { for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) { - profile[i] = newprofile->data[i]; + profile->data[i] = newprofile->data[i]; } // normalize_profile(); @@ -134,7 +133,7 @@ void ProfilePoissonGroup::set_gaussian_profile(AurynDouble mean, AurynDouble si { for ( NeuronID i = 0 ; i < get_size() ; ++i ) { if ( localrank(i) ) - profile[global2rank(i)] = exp(-pow((i-mean),2)/(2*sigma*sigma))*(1.0-floor)+floor; + profile->data[global2rank(i)] = exp(-pow((i-mean),2)/(2*sigma*sigma))*(1.0-floor)+floor; } normalize_profile(); @@ -159,7 +158,7 @@ void ProfilePoissonGroup::evolve() { while ( x < get_rank_size() ) { // std::cout << x << std::endl; - jumpsize -= profile[x]; + jumpsize -= profile->data[x]; if ( jumpsize < 0 ) { // reached jump target -> spike push_spike ( x ); AurynDouble r = -log((*die)()+1e-20)/lambda; diff --git a/src/ProfilePoissonGroup.h b/src/ProfilePoissonGroup.h index 61f7a92e..c9e059b4 100644 --- a/src/ProfilePoissonGroup.h +++ b/src/ProfilePoissonGroup.h @@ -69,7 +69,7 @@ class ProfilePoissonGroup : public SpikingGroup boost::uniform_01<> * dist; boost::variate_generator > * die; - AurynFloat * profile; //!< stores the spatial distribution of relative firing rates + auryn_vector_float * profile; //!< stores the spatial distribution of relative firing rates public: /*! Standard constructor. From 22a2d5a271d4df4e1f24e9a3d6c2f02eb23d67cb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 29 Feb 2016 12:18:26 -0800 Subject: [PATCH 063/460] Testing new .travis.yml --- .travis.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9c5da43c..646b6868 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,13 +2,8 @@ language: cpp compiler: - gcc before_install: - - sudo add-apt-repository ppa:boost-latest/ppa -y - - sudo add-apt-repository ppa:dns/gnu -y - - sudo add-apt-repository ppa:yjwong/cmake -y - - sudo apt-get update -qq -y - - sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install build-essential libtool m4 --force-yes - - sudo apt-get install libboost1.54-all-dev mpich2 libmpich2-dev libcr-dev -y - - sudo apt-get install cmake cmake-data -y + - sudo apt-get install libboost-all-dev mpich2 libopenmpi-dev -y + - sudo apt-get install cmake -y script: - CFLAGS="${CFLAGS:--O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4 -m64 -mtune=generic}" ; export CFLAGS ; - CXXFLAGS="${CXXFLAGS:--O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4 -m64 -mtune=generic}" ; export CXXFLAGS ; @@ -18,7 +13,6 @@ script: notifications: email: recipients: - - ankursinha@fedoraproject.org - fzenke@stanford.edu on_success: change on_failure: always From 4230ce4229767982a9534c33f766fe52638767f6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 29 Feb 2016 12:25:55 -0800 Subject: [PATCH 064/460] Updates copyright notice year --- README.md | 2 +- src/ABSConnection.cpp | 2 +- src/ABSConnection.h | 2 +- src/AIF2Group.cpp | 2 +- src/AIF2Group.h | 2 +- src/AIFGroup.cpp | 2 +- src/AIFGroup.h | 2 +- src/AdExGroup.cpp | 2 +- src/AdExGroup.h | 2 +- src/AmpaMonitor.cpp | 2 +- src/AmpaMonitor.h | 2 +- src/AuditoryBeepGroup.cpp | 2 +- src/AuditoryBeepGroup.h | 2 +- src/BinarySpikeMonitor.cpp | 2 +- src/BinarySpikeMonitor.h | 2 +- src/Checker.cpp | 2 +- src/Checker.h | 2 +- src/ComplexMatrix.h | 2 +- src/Connection.cpp | 2 +- src/Connection.h | 2 +- src/CorrelatedPoissonGroup.cpp | 2 +- src/CorrelatedPoissonGroup.h | 2 +- src/CubaIFGroup.cpp | 2 +- src/CubaIFGroup.h | 2 +- src/CurrentInjector.cpp | 2 +- src/CurrentInjector.h | 2 +- src/DelayedSpikeMonitor.cpp | 2 +- src/DelayedSpikeMonitor.h | 2 +- src/DuplexConnection.cpp | 2 +- src/DuplexConnection.h | 2 +- src/EulerTrace.cpp | 2 +- src/EulerTrace.h | 2 +- src/FileInputGroup.cpp | 2 +- src/FileInputGroup.h | 2 +- src/FileModulatedPoissonGroup.cpp | 2 +- src/FileModulatedPoissonGroup.h | 2 +- src/GabaMonitor.cpp | 2 +- src/GabaMonitor.h | 2 +- src/IFGroup.cpp | 2 +- src/IFGroup.h | 2 +- src/IafPscDeltaGroup.cpp | 2 +- src/IafPscDeltaGroup.h | 2 +- src/IdentityConnection.cpp | 2 +- src/IdentityConnection.h | 2 +- src/LPTripletConnection.cpp | 2 +- src/LPTripletConnection.h | 2 +- src/LinearTrace.cpp | 2 +- src/LinearTrace.h | 2 +- src/Logger.cpp | 2 +- src/Logger.h | 2 +- src/Monitor.cpp | 2 +- src/Monitor.h | 2 +- src/MovingBumpGroup.cpp | 2 +- src/MovingBumpGroup.h | 2 +- src/NeuronGroup.cpp | 2 +- src/NeuronGroup.h | 2 +- src/NmdaMonitor.cpp | 2 +- src/NmdaMonitor.h | 2 +- src/PairInteractionConnection.cpp | 2 +- src/PairInteractionConnection.h | 2 +- src/PatternMonitor.cpp | 2 +- src/PatternMonitor.h | 2 +- src/PatternStimulator.cpp | 2 +- src/PatternStimulator.h | 2 +- src/PoissonGroup.cpp | 2 +- src/PoissonGroup.h | 2 +- src/PoissonStimulator.cpp | 2 +- src/PoissonStimulator.h | 2 +- src/PopulationRateMonitor.cpp | 2 +- src/PopulationRateMonitor.h | 2 +- src/ProfilePoissonGroup.cpp | 2 +- src/ProfilePoissonGroup.h | 2 +- src/RateChecker.cpp | 2 +- src/RateChecker.h | 2 +- src/RateModulatedConnection.cpp | 2 +- src/RateModulatedConnection.h | 2 +- src/RateMonitor.cpp | 2 +- src/RateMonitor.h | 2 +- src/RealTimeMonitor.cpp | 2 +- src/RealTimeMonitor.h | 2 +- src/STDPConnection.cpp | 2 +- src/STDPConnection.h | 2 +- src/STDPwdConnection.cpp | 2 +- src/STDPwdConnection.h | 2 +- src/STPConnection.cpp | 2 +- src/STPConnection.h | 2 +- src/SimpleMatrix.h | 2 +- src/SparseConnection.cpp | 2 +- src/SparseConnection.h | 2 +- src/SpikeDelay.cpp | 2 +- src/SpikeDelay.h | 2 +- src/SpikeMonitor.cpp | 2 +- src/SpikeMonitor.h | 2 +- src/SpikingGroup.cpp | 2 +- src/SpikingGroup.h | 2 +- src/StateMonitor.cpp | 2 +- src/StateMonitor.h | 2 +- src/StimulusGroup.cpp | 2 +- src/StimulusGroup.h | 2 +- src/StructuredPoissonGroup.cpp | 2 +- src/StructuredPoissonGroup.h | 2 +- src/SymmetricSTDPConnection.cpp | 2 +- src/SymmetricSTDPConnection.h | 2 +- src/SyncBuffer.cpp | 2 +- src/SyncBuffer.h | 2 +- src/System.cpp | 2 +- src/System.h | 2 +- src/TIFGroup.cpp | 2 +- src/TIFGroup.h | 2 +- src/TripletConnection.cpp | 2 +- src/TripletConnection.h | 2 +- src/TripletDecayConnection.cpp | 2 +- src/TripletDecayConnection.h | 2 +- src/VoltageMonitor.cpp | 2 +- src/VoltageMonitor.h | 2 +- src/WeightChecker.cpp | 2 +- src/WeightChecker.h | 2 +- src/WeightMatrixMonitor.cpp | 2 +- src/WeightMatrixMonitor.h | 2 +- src/WeightMonitor.cpp | 2 +- src/WeightMonitor.h | 2 +- src/WeightPatternMonitor.cpp | 2 +- src/WeightPatternMonitor.h | 2 +- src/WeightStatsMonitor.cpp | 2 +- src/WeightStatsMonitor.h | 2 +- src/WeightSumMonitor.cpp | 2 +- src/WeightSumMonitor.h | 2 +- src/auryn.h | 2 +- src/auryn_definitions.cpp | 2 +- src/auryn_definitions.h | 2 +- src/auryn_global.cpp | 2 +- src/auryn_global.h | 2 +- 132 files changed, 132 insertions(+), 132 deletions(-) diff --git a/README.md b/README.md index e2723622..741fe3ae 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,6 @@ doi: 10.3389/fninf.2014.00076 -Copyright 2014-2015 Friedemann Zenke. +Copyright 2014-2016 Friedemann Zenke. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/src/ABSConnection.cpp b/src/ABSConnection.cpp index a7479b1e..4041b0ca 100644 --- a/src/ABSConnection.cpp +++ b/src/ABSConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/ABSConnection.h b/src/ABSConnection.h index a83884ef..f17bdd1a 100644 --- a/src/ABSConnection.h +++ b/src/ABSConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AIF2Group.cpp b/src/AIF2Group.cpp index 4fbc32fc..dc238e86 100644 --- a/src/AIF2Group.cpp +++ b/src/AIF2Group.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AIF2Group.h b/src/AIF2Group.h index e1aca79a..d7c2d373 100644 --- a/src/AIF2Group.h +++ b/src/AIF2Group.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AIFGroup.cpp b/src/AIFGroup.cpp index 1335799f..746a56b8 100644 --- a/src/AIFGroup.cpp +++ b/src/AIFGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AIFGroup.h b/src/AIFGroup.h index eba860b9..a6a99b2b 100644 --- a/src/AIFGroup.h +++ b/src/AIFGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AdExGroup.cpp b/src/AdExGroup.cpp index 04f4a7bb..08cec464 100644 --- a/src/AdExGroup.cpp +++ b/src/AdExGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Ankur Sinha and Friedemann Zenke +* Copyright 2014-2016 Ankur Sinha and Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AdExGroup.h b/src/AdExGroup.h index 5743bd10..f862d9ac 100644 --- a/src/AdExGroup.h +++ b/src/AdExGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Ankur Sinha and Friedemann Zenke +* Copyright 2014-2016 Ankur Sinha and Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AmpaMonitor.cpp b/src/AmpaMonitor.cpp index 0701e0ca..fd3c38dd 100644 --- a/src/AmpaMonitor.cpp +++ b/src/AmpaMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AmpaMonitor.h b/src/AmpaMonitor.h index b3003f20..35a5b010 100644 --- a/src/AmpaMonitor.h +++ b/src/AmpaMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AuditoryBeepGroup.cpp b/src/AuditoryBeepGroup.cpp index 40e1e4c9..4d606fbe 100644 --- a/src/AuditoryBeepGroup.cpp +++ b/src/AuditoryBeepGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/AuditoryBeepGroup.h b/src/AuditoryBeepGroup.h index 5794b380..174411bc 100644 --- a/src/AuditoryBeepGroup.h +++ b/src/AuditoryBeepGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/BinarySpikeMonitor.cpp b/src/BinarySpikeMonitor.cpp index 96764b46..b3e5972d 100644 --- a/src/BinarySpikeMonitor.cpp +++ b/src/BinarySpikeMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * Contributed by Ankur Sinha * * This file is part of Auryn, a simulation package for plastic diff --git a/src/BinarySpikeMonitor.h b/src/BinarySpikeMonitor.h index 93d2d4b9..42ff3564 100644 --- a/src/BinarySpikeMonitor.h +++ b/src/BinarySpikeMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * Contributed by Ankur Sinha * * This file is part of Auryn, a simulation package for plastic diff --git a/src/Checker.cpp b/src/Checker.cpp index c0cf9c3c..311fa9a5 100644 --- a/src/Checker.cpp +++ b/src/Checker.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/Checker.h b/src/Checker.h index c4199117..b9fe59f6 100644 --- a/src/Checker.h +++ b/src/Checker.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 355cb6b8..ca50f809 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/Connection.cpp b/src/Connection.cpp index e0b223dd..4470225d 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/Connection.h b/src/Connection.h index c5e4f89a..a6a33e29 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/CorrelatedPoissonGroup.cpp b/src/CorrelatedPoissonGroup.cpp index 7d3ef38d..0637e91a 100644 --- a/src/CorrelatedPoissonGroup.cpp +++ b/src/CorrelatedPoissonGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/CorrelatedPoissonGroup.h b/src/CorrelatedPoissonGroup.h index 9fcf868a..e9ee5252 100644 --- a/src/CorrelatedPoissonGroup.h +++ b/src/CorrelatedPoissonGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/CubaIFGroup.cpp b/src/CubaIFGroup.cpp index 65fece0b..f5ea6e97 100644 --- a/src/CubaIFGroup.cpp +++ b/src/CubaIFGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/CubaIFGroup.h b/src/CubaIFGroup.h index bcf8edf2..e0884c5f 100644 --- a/src/CubaIFGroup.h +++ b/src/CubaIFGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/CurrentInjector.cpp b/src/CurrentInjector.cpp index 7371e98f..5a1d81ac 100644 --- a/src/CurrentInjector.cpp +++ b/src/CurrentInjector.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/CurrentInjector.h b/src/CurrentInjector.h index 54714cce..a512c355 100644 --- a/src/CurrentInjector.h +++ b/src/CurrentInjector.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/DelayedSpikeMonitor.cpp b/src/DelayedSpikeMonitor.cpp index 4f7749e8..063e3802 100644 --- a/src/DelayedSpikeMonitor.cpp +++ b/src/DelayedSpikeMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/DelayedSpikeMonitor.h b/src/DelayedSpikeMonitor.h index 62fb6425..92183316 100644 --- a/src/DelayedSpikeMonitor.h +++ b/src/DelayedSpikeMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/DuplexConnection.cpp b/src/DuplexConnection.cpp index 36107d16..80799c7f 100644 --- a/src/DuplexConnection.cpp +++ b/src/DuplexConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/DuplexConnection.h b/src/DuplexConnection.h index 5ef9cabf..c3e11983 100644 --- a/src/DuplexConnection.h +++ b/src/DuplexConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index 33545dc6..cb56aeae 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/EulerTrace.h b/src/EulerTrace.h index c1d31c66..769ac657 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/FileInputGroup.cpp b/src/FileInputGroup.cpp index 6d0cf078..d96ef594 100644 --- a/src/FileInputGroup.cpp +++ b/src/FileInputGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/FileInputGroup.h b/src/FileInputGroup.h index 2fa3fcf7..0fd66ed7 100644 --- a/src/FileInputGroup.h +++ b/src/FileInputGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/FileModulatedPoissonGroup.cpp b/src/FileModulatedPoissonGroup.cpp index 26e79d1e..5a020484 100644 --- a/src/FileModulatedPoissonGroup.cpp +++ b/src/FileModulatedPoissonGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/FileModulatedPoissonGroup.h b/src/FileModulatedPoissonGroup.h index da08fc5f..96eca240 100644 --- a/src/FileModulatedPoissonGroup.h +++ b/src/FileModulatedPoissonGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/GabaMonitor.cpp b/src/GabaMonitor.cpp index 4a040a2c..21d968f4 100644 --- a/src/GabaMonitor.cpp +++ b/src/GabaMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/GabaMonitor.h b/src/GabaMonitor.h index 3d555ddc..a75feba8 100644 --- a/src/GabaMonitor.h +++ b/src/GabaMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index 0a93c648..074c1b44 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/IFGroup.h b/src/IFGroup.h index 7d6a36ea..eff24623 100644 --- a/src/IFGroup.h +++ b/src/IFGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/IafPscDeltaGroup.cpp b/src/IafPscDeltaGroup.cpp index 4014e596..016ca65f 100644 --- a/src/IafPscDeltaGroup.cpp +++ b/src/IafPscDeltaGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/IafPscDeltaGroup.h b/src/IafPscDeltaGroup.h index 388de6b3..f0d3d255 100644 --- a/src/IafPscDeltaGroup.h +++ b/src/IafPscDeltaGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/IdentityConnection.cpp b/src/IdentityConnection.cpp index 2b5e7e82..f218464a 100644 --- a/src/IdentityConnection.cpp +++ b/src/IdentityConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/IdentityConnection.h b/src/IdentityConnection.h index 1737aede..7020b300 100644 --- a/src/IdentityConnection.h +++ b/src/IdentityConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/LPTripletConnection.cpp b/src/LPTripletConnection.cpp index 51118bdc..1e67f0ea 100644 --- a/src/LPTripletConnection.cpp +++ b/src/LPTripletConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/LPTripletConnection.h b/src/LPTripletConnection.h index 8a3e5d64..297a6dc2 100644 --- a/src/LPTripletConnection.h +++ b/src/LPTripletConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/LinearTrace.cpp b/src/LinearTrace.cpp index 2ab24bfe..460adba7 100644 --- a/src/LinearTrace.cpp +++ b/src/LinearTrace.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/LinearTrace.h b/src/LinearTrace.h index a3366ee0..ee1852bf 100644 --- a/src/LinearTrace.h +++ b/src/LinearTrace.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/Logger.cpp b/src/Logger.cpp index bd93f25b..ff13eee7 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/Logger.h b/src/Logger.h index 61645436..88f05b4a 100644 --- a/src/Logger.h +++ b/src/Logger.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/Monitor.cpp b/src/Monitor.cpp index a3b2bb95..fad115a8 100644 --- a/src/Monitor.cpp +++ b/src/Monitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/Monitor.h b/src/Monitor.h index 28313643..128d7ca1 100644 --- a/src/Monitor.h +++ b/src/Monitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/MovingBumpGroup.cpp b/src/MovingBumpGroup.cpp index c265a45e..adb92749 100644 --- a/src/MovingBumpGroup.cpp +++ b/src/MovingBumpGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/MovingBumpGroup.h b/src/MovingBumpGroup.h index 26102949..ef54f52a 100644 --- a/src/MovingBumpGroup.h +++ b/src/MovingBumpGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/NeuronGroup.cpp b/src/NeuronGroup.cpp index ea8812da..ce0f86b2 100644 --- a/src/NeuronGroup.cpp +++ b/src/NeuronGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/NeuronGroup.h b/src/NeuronGroup.h index 047bfce7..7b58f347 100644 --- a/src/NeuronGroup.h +++ b/src/NeuronGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/NmdaMonitor.cpp b/src/NmdaMonitor.cpp index b6cb04f7..43a6ff1c 100644 --- a/src/NmdaMonitor.cpp +++ b/src/NmdaMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/NmdaMonitor.h b/src/NmdaMonitor.h index f85629fd..ddf095ed 100644 --- a/src/NmdaMonitor.h +++ b/src/NmdaMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PairInteractionConnection.cpp b/src/PairInteractionConnection.cpp index 17ff3972..b9f38a28 100644 --- a/src/PairInteractionConnection.cpp +++ b/src/PairInteractionConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PairInteractionConnection.h b/src/PairInteractionConnection.h index 9fd5a177..12b04daa 100644 --- a/src/PairInteractionConnection.h +++ b/src/PairInteractionConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PatternMonitor.cpp b/src/PatternMonitor.cpp index 14eb6199..5abfcb23 100644 --- a/src/PatternMonitor.cpp +++ b/src/PatternMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PatternMonitor.h b/src/PatternMonitor.h index 244bccaf..45399090 100644 --- a/src/PatternMonitor.h +++ b/src/PatternMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PatternStimulator.cpp b/src/PatternStimulator.cpp index c6202aa9..4187f5b6 100644 --- a/src/PatternStimulator.cpp +++ b/src/PatternStimulator.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PatternStimulator.h b/src/PatternStimulator.h index 579922d2..2232a018 100644 --- a/src/PatternStimulator.h +++ b/src/PatternStimulator.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PoissonGroup.cpp b/src/PoissonGroup.cpp index 94a62660..581aa060 100644 --- a/src/PoissonGroup.cpp +++ b/src/PoissonGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PoissonGroup.h b/src/PoissonGroup.h index 82e6a651..ebe05997 100644 --- a/src/PoissonGroup.h +++ b/src/PoissonGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PoissonStimulator.cpp b/src/PoissonStimulator.cpp index 5ecaf716..1755ffde 100644 --- a/src/PoissonStimulator.cpp +++ b/src/PoissonStimulator.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PoissonStimulator.h b/src/PoissonStimulator.h index 3b215181..2aaa83e2 100644 --- a/src/PoissonStimulator.h +++ b/src/PoissonStimulator.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PopulationRateMonitor.cpp b/src/PopulationRateMonitor.cpp index 2b37be96..e5cb4733 100644 --- a/src/PopulationRateMonitor.cpp +++ b/src/PopulationRateMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/PopulationRateMonitor.h b/src/PopulationRateMonitor.h index 06967165..77a8348a 100644 --- a/src/PopulationRateMonitor.h +++ b/src/PopulationRateMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/ProfilePoissonGroup.cpp b/src/ProfilePoissonGroup.cpp index 4d04cf8b..825421fa 100644 --- a/src/ProfilePoissonGroup.cpp +++ b/src/ProfilePoissonGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/ProfilePoissonGroup.h b/src/ProfilePoissonGroup.h index c9e059b4..d69ec03a 100644 --- a/src/ProfilePoissonGroup.h +++ b/src/ProfilePoissonGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/RateChecker.cpp b/src/RateChecker.cpp index 574f200e..0e45d241 100644 --- a/src/RateChecker.cpp +++ b/src/RateChecker.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/RateChecker.h b/src/RateChecker.h index ac57b5ee..92ca7122 100644 --- a/src/RateChecker.h +++ b/src/RateChecker.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/RateModulatedConnection.cpp b/src/RateModulatedConnection.cpp index d92706bb..4ef78486 100644 --- a/src/RateModulatedConnection.cpp +++ b/src/RateModulatedConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/RateModulatedConnection.h b/src/RateModulatedConnection.h index 99df42ed..fe78a262 100644 --- a/src/RateModulatedConnection.h +++ b/src/RateModulatedConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/RateMonitor.cpp b/src/RateMonitor.cpp index a9f8b6cb..652c6528 100644 --- a/src/RateMonitor.cpp +++ b/src/RateMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/RateMonitor.h b/src/RateMonitor.h index 4708a7ad..07e136f1 100644 --- a/src/RateMonitor.h +++ b/src/RateMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/RealTimeMonitor.cpp b/src/RealTimeMonitor.cpp index 394feb38..0c7ff1af 100644 --- a/src/RealTimeMonitor.cpp +++ b/src/RealTimeMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/RealTimeMonitor.h b/src/RealTimeMonitor.h index a24d5d16..a2951ac9 100644 --- a/src/RealTimeMonitor.h +++ b/src/RealTimeMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/STDPConnection.cpp b/src/STDPConnection.cpp index 4a546eef..7b0b16cc 100644 --- a/src/STDPConnection.cpp +++ b/src/STDPConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/STDPConnection.h b/src/STDPConnection.h index e20aa188..db6bf37b 100644 --- a/src/STDPConnection.h +++ b/src/STDPConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/STDPwdConnection.cpp b/src/STDPwdConnection.cpp index eec88ed4..22cd2ff4 100644 --- a/src/STDPwdConnection.cpp +++ b/src/STDPwdConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/STDPwdConnection.h b/src/STDPwdConnection.h index c7d29667..cb8a536c 100644 --- a/src/STDPwdConnection.h +++ b/src/STDPwdConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/STPConnection.cpp b/src/STPConnection.cpp index 1d59ea88..eaaf1caa 100644 --- a/src/STPConnection.cpp +++ b/src/STPConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/STPConnection.h b/src/STPConnection.h index 13a0b7e6..4dd6200e 100644 --- a/src/STPConnection.h +++ b/src/STPConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SimpleMatrix.h b/src/SimpleMatrix.h index ae0d3c95..d97326bf 100644 --- a/src/SimpleMatrix.h +++ b/src/SimpleMatrix.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index f4e08147..4242b938 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SparseConnection.h b/src/SparseConnection.h index f65733eb..e9241154 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SpikeDelay.cpp b/src/SpikeDelay.cpp index eb35f27a..f4f6f398 100644 --- a/src/SpikeDelay.cpp +++ b/src/SpikeDelay.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SpikeDelay.h b/src/SpikeDelay.h index 62374212..c9f8acb0 100644 --- a/src/SpikeDelay.h +++ b/src/SpikeDelay.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SpikeMonitor.cpp b/src/SpikeMonitor.cpp index 15f06c29..6805b411 100644 --- a/src/SpikeMonitor.cpp +++ b/src/SpikeMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SpikeMonitor.h b/src/SpikeMonitor.h index 5d0f39d4..0e6d18fd 100644 --- a/src/SpikeMonitor.h +++ b/src/SpikeMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 36062253..29e2a899 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 592a99ef..84f48c17 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index cd6f5ef5..1f2b8a92 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/StateMonitor.h b/src/StateMonitor.h index 5da3d72e..1bf84c06 100644 --- a/src/StateMonitor.h +++ b/src/StateMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/StimulusGroup.cpp b/src/StimulusGroup.cpp index f1421181..7f9b181d 100644 --- a/src/StimulusGroup.cpp +++ b/src/StimulusGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index c166dc5d..41473ccc 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/StructuredPoissonGroup.cpp b/src/StructuredPoissonGroup.cpp index 17afd322..88562ef0 100644 --- a/src/StructuredPoissonGroup.cpp +++ b/src/StructuredPoissonGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/StructuredPoissonGroup.h b/src/StructuredPoissonGroup.h index d6822869..c6c567ea 100644 --- a/src/StructuredPoissonGroup.h +++ b/src/StructuredPoissonGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SymmetricSTDPConnection.cpp b/src/SymmetricSTDPConnection.cpp index 91f149ec..3edcb79d 100644 --- a/src/SymmetricSTDPConnection.cpp +++ b/src/SymmetricSTDPConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SymmetricSTDPConnection.h b/src/SymmetricSTDPConnection.h index 75cdfb38..2f4f8525 100644 --- a/src/SymmetricSTDPConnection.h +++ b/src/SymmetricSTDPConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 8331be96..552b2488 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 9a29f8db..aa5b1a0a 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/System.cpp b/src/System.cpp index 359a6695..ca8bc069 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/System.h b/src/System.h index 76284b9e..cd4952ca 100644 --- a/src/System.h +++ b/src/System.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/TIFGroup.cpp b/src/TIFGroup.cpp index e96e0ea3..64b56560 100644 --- a/src/TIFGroup.cpp +++ b/src/TIFGroup.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/TIFGroup.h b/src/TIFGroup.h index 00d40f95..1ef4da85 100644 --- a/src/TIFGroup.h +++ b/src/TIFGroup.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/TripletConnection.cpp b/src/TripletConnection.cpp index 393c24e2..139a0214 100644 --- a/src/TripletConnection.cpp +++ b/src/TripletConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/TripletConnection.h b/src/TripletConnection.h index d1f2607f..a0d2e651 100644 --- a/src/TripletConnection.h +++ b/src/TripletConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/TripletDecayConnection.cpp b/src/TripletDecayConnection.cpp index e01c5055..34c09c9a 100644 --- a/src/TripletDecayConnection.cpp +++ b/src/TripletDecayConnection.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/TripletDecayConnection.h b/src/TripletDecayConnection.h index f86a7f49..27c56fef 100644 --- a/src/TripletDecayConnection.h +++ b/src/TripletDecayConnection.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/VoltageMonitor.cpp b/src/VoltageMonitor.cpp index 76c71a6b..2d1e7e0b 100644 --- a/src/VoltageMonitor.cpp +++ b/src/VoltageMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/VoltageMonitor.h b/src/VoltageMonitor.h index 9edf5b20..d8b33d32 100644 --- a/src/VoltageMonitor.h +++ b/src/VoltageMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightChecker.cpp b/src/WeightChecker.cpp index c8e940fd..b449464c 100644 --- a/src/WeightChecker.cpp +++ b/src/WeightChecker.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightChecker.h b/src/WeightChecker.h index 557b892d..b79b06b3 100644 --- a/src/WeightChecker.h +++ b/src/WeightChecker.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightMatrixMonitor.cpp b/src/WeightMatrixMonitor.cpp index 0079da64..7532d5b4 100644 --- a/src/WeightMatrixMonitor.cpp +++ b/src/WeightMatrixMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightMatrixMonitor.h b/src/WeightMatrixMonitor.h index 9f1ee115..f9f93166 100644 --- a/src/WeightMatrixMonitor.h +++ b/src/WeightMatrixMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 909e0a65..be54ae3e 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index a70c1a6f..cf0ea2ee 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightPatternMonitor.cpp b/src/WeightPatternMonitor.cpp index 07c8ec0b..97e4f386 100644 --- a/src/WeightPatternMonitor.cpp +++ b/src/WeightPatternMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightPatternMonitor.h b/src/WeightPatternMonitor.h index 71181d93..55adfb40 100644 --- a/src/WeightPatternMonitor.h +++ b/src/WeightPatternMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightStatsMonitor.cpp b/src/WeightStatsMonitor.cpp index a82b688b..92e2a0c6 100644 --- a/src/WeightStatsMonitor.cpp +++ b/src/WeightStatsMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightStatsMonitor.h b/src/WeightStatsMonitor.h index fd6e5a4a..51411373 100644 --- a/src/WeightStatsMonitor.h +++ b/src/WeightStatsMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightSumMonitor.cpp b/src/WeightSumMonitor.cpp index a832f643..570306ad 100644 --- a/src/WeightSumMonitor.cpp +++ b/src/WeightSumMonitor.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/WeightSumMonitor.h b/src/WeightSumMonitor.h index 04585888..16a71bf3 100644 --- a/src/WeightSumMonitor.h +++ b/src/WeightSumMonitor.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/auryn.h b/src/auryn.h index 7dc95e26..0c65c7c6 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index 8997ea58..27f6d679 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index c8640340..216b0c54 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/auryn_global.cpp b/src/auryn_global.cpp index b7f01287..64946d5d 100644 --- a/src/auryn_global.cpp +++ b/src/auryn_global.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/src/auryn_global.h b/src/auryn_global.h index e338528f..a7e1767f 100644 --- a/src/auryn_global.h +++ b/src/auryn_global.h @@ -1,5 +1,5 @@ /* -* Copyright 2014-2015 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. From 1d204493a0f7872e43513c6d46ad892b0b6d420b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 29 Feb 2016 12:54:21 -0800 Subject: [PATCH 065/460] Changes to trusty travis ci build environment --- .travis.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 646b6868..eeb81b84 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,14 @@ language: cpp +sudo: required +dist: trusty compiler: - gcc -before_install: - - sudo apt-get install libboost-all-dev mpich2 libopenmpi-dev -y - - sudo apt-get install cmake -y +install: + - sudo apt-get update -qq + - sudo apt-get install -y -qq libboost-all-dev mpich2 libopenmpi-dev + - sudo apt-get install -y -qq cmake script: - - CFLAGS="${CFLAGS:--O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4 -m64 -mtune=generic}" ; export CFLAGS ; - - CXXFLAGS="${CXXFLAGS:--O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4 -m64 -mtune=generic}" ; export CXXFLAGS ; - - LDFLAGS="${LDFLAGS:--Wl,-z,relro}";export LDFLAGS ; - - cmake -DCMAKE_C_FLAGS_RELEASE:STRING="-DNDEBUG" -DCMAKE_CXX_FLAGS_RELEASE:STRING="-DNDEBUG" -DCMAKE_Fortran_FLAGS_RELEASE:STRING="-DNDEBUG" -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr -DINCLUDE_INSTALL_DIR:PATH=/usr/include -DLIB_INSTALL_DIR:PATH=/usr/lib64 -DSYSCONF_INSTALL_DIR:PATH=/etc -DSHARE_INSTALL_PREFIX:PATH=/usr/share -DLIB_SUFFIX=64 -DBUILD_SHARED_LIBS:BOOL=ON && make + - mkdir build && cd build && cmake ../ -DCMAKE_BUILD_TYPE=Release && make notifications: email: From 7258bd9e408e0b5ee222d2b9e1a788e28ae2543e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 29 Feb 2016 13:04:27 -0800 Subject: [PATCH 066/460] Updates .travis.yml to openmpi --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index eeb81b84..9571b94f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ compiler: - gcc install: - sudo apt-get update -qq - - sudo apt-get install -y -qq libboost-all-dev mpich2 libopenmpi-dev + - sudo apt-get install -y -qq libboost-all-dev openmpi-bin libopenmpi-dev - sudo apt-get install -y -qq cmake script: - mkdir build && cd build && cmake ../ -DCMAKE_BUILD_TYPE=Release && make From 2a1206887b8552404b17e598ee8a6fc9aca809c6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 27 Mar 2016 11:28:28 -0700 Subject: [PATCH 067/460] Adds sim_current_stim.cpp example --- examples/CMakeLists.txt | 3 ++ examples/sim_current_stim.cpp | 90 +++++++++++++++++++++++++++++++++++ src/PoissonStimulator.h | 4 +- 3 files changed, 95 insertions(+), 2 deletions(-) create mode 100644 examples/sim_current_stim.cpp diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index defc9058..6f603e16 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -36,3 +36,6 @@ TARGET_LINK_LIBRARIES( sim_poisson auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) ADD_EXECUTABLE( sim_coba_binmon sim_coba_binmon.cpp ) TARGET_LINK_LIBRARIES( sim_coba_binmon auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) + +ADD_EXECUTABLE( sim_current_stim sim_current_stim.cpp ) +TARGET_LINK_LIBRARIES( sim_current_stim auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) diff --git a/examples/sim_current_stim.cpp b/examples/sim_current_stim.cpp new file mode 100644 index 00000000..0c744663 --- /dev/null +++ b/examples/sim_current_stim.cpp @@ -0,0 +1,90 @@ +/* +* Copyright 2014 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + + +/*! \brief Example illustrating the use of PoissonStimulator + * + * This example shows how one can add independent random Poisson currents to + * each neuron in a Neurongroup. The example also works for NormalStimulator + * in which the random currents follow a normal distribution + */ + +#include "auryn.h" + +using namespace auryn; + +namespace po = boost::program_options; +namespace mpi = boost::mpi; + +int main(int ac, char* av[]) +{ + + int errcode = 0; + char strbuf [255]; + string outputfile = "out_current_stim"; + string tmpstr; + AurynWeight w = 1.0; + AurynFloat rate = 100.0; + + // BEGIN Global definitions + mpi::environment env(ac, av); + mpi::communicator world; + communicator = &world; + + try + { + sprintf(strbuf, "out_current_stim.%d.log", world.rank()); + string logfile = strbuf; + logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + } + catch ( AurynOpenFileException excpt ) + { + std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; + env.abort(1); + } + + sys = new System(&world); + // END Global definitions + + IFGroup * neurons = new IFGroup(2); + PoissonStimulator * stim = new PoissonStimulator(neurons, rate, w); + // NormalStimulator * stim = new NormalStimulator(neurons); + stim->set_target_state("mem"); + + + tmpstr = outputfile; + tmpstr += ".mem0"; + VoltageMonitor * vmon = new VoltageMonitor( neurons, 0, tmpstr.c_str() ); + + tmpstr = outputfile; + tmpstr += ".mem1"; + VoltageMonitor * vmon = new VoltageMonitor( neurons, 1, tmpstr.c_str() ); + + + logger->msg("Running ...",PROGRESS); + sys->run(10); + + logger->msg("Freeing ...",PROGRESS,true); + delete sys; + + if (errcode) + env.abort(errcode); + return errcode; +} diff --git a/src/PoissonStimulator.h b/src/PoissonStimulator.h index 3b215181..d42a7656 100644 --- a/src/PoissonStimulator.h +++ b/src/PoissonStimulator.h @@ -38,9 +38,9 @@ namespace auryn { -/*! \brief Stimulator class to inject timeseries of currents to patterns (subpopulations) of neurons +/*! \brief Stimulator class to inject timeseries of currents NeuronGroups * - * Instances of this class inject currents that vary over time to subpopulations of the NeuronGroup assigned. + * Instances of this class inject independent currents from a Poisson distribution to the NeuronGroup assigned. */ class PoissonStimulator : protected Monitor From 9c8f6b64613d9b7498dbf6f9ce01888f3bbfee21 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 27 Mar 2016 11:50:13 -0700 Subject: [PATCH 068/460] Fixes to current stim example --- examples/sim_current_stim.cpp | 14 ++++++-------- src/PoissonStimulator.h | 24 ++++++++++++++++-------- 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/examples/sim_current_stim.cpp b/examples/sim_current_stim.cpp index 0c744663..50bb1069 100644 --- a/examples/sim_current_stim.cpp +++ b/examples/sim_current_stim.cpp @@ -40,8 +40,6 @@ int main(int ac, char* av[]) char strbuf [255]; string outputfile = "out_current_stim"; string tmpstr; - AurynWeight w = 1.0; - AurynFloat rate = 100.0; // BEGIN Global definitions mpi::environment env(ac, av); @@ -64,22 +62,22 @@ int main(int ac, char* av[]) // END Global definitions IFGroup * neurons = new IFGroup(2); - PoissonStimulator * stim = new PoissonStimulator(neurons, rate, w); - // NormalStimulator * stim = new NormalStimulator(neurons); - stim->set_target_state("mem"); + AurynWeight weight = 1e-2; // weight in mV if the target of the stimulator is "mem" + AurynFloat rate = 100.0; // + PoissonStimulator * stim = new PoissonStimulator(neurons, rate, weight); tmpstr = outputfile; tmpstr += ".mem0"; - VoltageMonitor * vmon = new VoltageMonitor( neurons, 0, tmpstr.c_str() ); + VoltageMonitor * vmon0 = new VoltageMonitor( neurons, 0, tmpstr.c_str() ); tmpstr = outputfile; tmpstr += ".mem1"; - VoltageMonitor * vmon = new VoltageMonitor( neurons, 1, tmpstr.c_str() ); + VoltageMonitor * vmon1 = new VoltageMonitor( neurons, 1, tmpstr.c_str() ); logger->msg("Running ...",PROGRESS); - sys->run(10); + sys->run(1); logger->msg("Freeing ...",PROGRESS,true); delete sys; diff --git a/src/PoissonStimulator.h b/src/PoissonStimulator.h index d42a7656..0110ed9d 100644 --- a/src/PoissonStimulator.h +++ b/src/PoissonStimulator.h @@ -82,32 +82,40 @@ class PoissonStimulator : protected Monitor public: - /*! Default Constructor + /*! \brief Default Constructor * @param[target] The target spiking group. * @param[rate] The firing rate of each the Poisson process. * @param[weight] The weight or unit of amount of change on the state variable */ PoissonStimulator(NeuronGroup * target, AurynFloat rate=100.0, AurynWeight w = 0.1 ); - /*! Default Destructor */ + /*! \brief Default Destructor */ virtual ~PoissonStimulator(); - /*! Sets the event rate of the underlying Poisson generator */ + /*! \brief Sets the event rate of the underlying Poisson generator + * + * @param[rate] The Poisson rate */ void set_rate(AurynFloat rate); - /*! Returns the event rate of the underlying Poisson generator */ + /*! \brief Returns the event rate of the underlying Poisson generator. */ AurynFloat get_rate(); - /*! Seeds the random number generator of all PoissonStimulator objects */ + /*! \brief Seeds the random number generator of all PoissonStimulator objects on this rank + * + * @param[s] The random seed. + * Note, that this seeding function is not rank save. To ensure that the currents are + * independent on different ranks you need to give a different seed on each rank when + * running parallel simulations. */ void seed(int s); - /*! Sets the state that is stimulated with Poisson input. - * This must be a valid state vector name (default = mem) */ + /*! \brief Sets the state that is stimulated + * + * This must be a valid state vector name (default = mem). */ void set_target_state( string state_name = "mem" ); - /*! Implementation of necessary propagate() function. */ + /*! \brief Implementation of necessary propagate() function. */ void propagate(); }; From 51c1a90a918ee251d50a13b5be5436f8736f3c5c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 27 Mar 2016 11:50:15 -0700 Subject: [PATCH 069/460] Adds NormalStimulator to auryn.h --- src/auryn.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auryn.h b/src/auryn.h index 7dc95e26..89d03237 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -108,6 +108,7 @@ #include "WeightMonitor.h" #include "WeightMatrixMonitor.h" #include "PoissonStimulator.h" +#include "NormalStimulator.h" #include "PatternStimulator.h" #include "CurrentInjector.h" From db1d04dd12e41c1ffb4fdd6022372c002a51a91e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 27 Mar 2016 12:07:43 -0700 Subject: [PATCH 070/460] Adds SIFGroup to auryn.h --- src/auryn.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auryn.h b/src/auryn.h index 78035f76..f443eeee 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -70,6 +70,7 @@ #include "AdExGroup.h" #include "CubaIFGroup.h" #include "TIFGroup.h" +#include "SIFGroup.h" #include "SpikingGroup.h" #include "NeuronGroup.h" #include "PoissonGroup.h" From 1cd92ac94d50f93b3f999417cc49a69cc59c26ab Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 27 Mar 2016 12:31:57 -0700 Subject: [PATCH 071/460] Updates copyright notice dates in examples --- examples/sim_background.cpp | 2 +- examples/sim_bg_lowpass.cpp | 2 +- examples/sim_bg_static.cpp | 2 +- examples/sim_brunel2k.cpp | 2 +- examples/sim_brunel2k_pl.cpp | 2 +- examples/sim_coba_benchmark.cpp | 2 +- examples/sim_coba_binmon.cpp | 2 +- examples/sim_current_stim.cpp | 2 +- examples/sim_dense.cpp | 2 +- examples/sim_epsp.cpp | 2 +- examples/sim_epsp_stp.cpp | 2 +- examples/sim_isp_big.cpp | 2 +- examples/sim_isp_orig.cpp | 2 +- examples/sim_poisson.cpp | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/examples/sim_background.cpp b/examples/sim_background.cpp index ea708e75..cac116d8 100644 --- a/examples/sim_background.cpp +++ b/examples/sim_background.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_bg_lowpass.cpp b/examples/sim_bg_lowpass.cpp index fc101ac7..edb5df72 100644 --- a/examples/sim_bg_lowpass.cpp +++ b/examples/sim_bg_lowpass.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_bg_static.cpp b/examples/sim_bg_static.cpp index fa9170a0..b80bcf43 100644 --- a/examples/sim_bg_static.cpp +++ b/examples/sim_bg_static.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_brunel2k.cpp b/examples/sim_brunel2k.cpp index 4029f3f2..675c968d 100644 --- a/examples/sim_brunel2k.cpp +++ b/examples/sim_brunel2k.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_brunel2k_pl.cpp b/examples/sim_brunel2k_pl.cpp index 466a7ec2..f7a47539 100644 --- a/examples/sim_brunel2k_pl.cpp +++ b/examples/sim_brunel2k_pl.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_coba_benchmark.cpp b/examples/sim_coba_benchmark.cpp index 7082c714..daf93885 100644 --- a/examples/sim_coba_benchmark.cpp +++ b/examples/sim_coba_benchmark.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_coba_binmon.cpp b/examples/sim_coba_binmon.cpp index a6c52a1e..e4c96953 100644 --- a/examples/sim_coba_binmon.cpp +++ b/examples/sim_coba_binmon.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_current_stim.cpp b/examples/sim_current_stim.cpp index 50bb1069..14ab11f6 100644 --- a/examples/sim_current_stim.cpp +++ b/examples/sim_current_stim.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_dense.cpp b/examples/sim_dense.cpp index c1df5f00..263f7f50 100644 --- a/examples/sim_dense.cpp +++ b/examples/sim_dense.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_epsp.cpp b/examples/sim_epsp.cpp index abe1310f..fc2adc77 100644 --- a/examples/sim_epsp.cpp +++ b/examples/sim_epsp.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_epsp_stp.cpp b/examples/sim_epsp_stp.cpp index 2eb651ff..dc9ed96a 100644 --- a/examples/sim_epsp_stp.cpp +++ b/examples/sim_epsp_stp.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_isp_big.cpp b/examples/sim_isp_big.cpp index 567d6951..fca780de 100644 --- a/examples/sim_isp_big.cpp +++ b/examples/sim_isp_big.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_isp_orig.cpp b/examples/sim_isp_orig.cpp index e49a18c8..4aba4438 100644 --- a/examples/sim_isp_orig.cpp +++ b/examples/sim_isp_orig.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. diff --git a/examples/sim_poisson.cpp b/examples/sim_poisson.cpp index 33166483..d025b6ba 100644 --- a/examples/sim_poisson.cpp +++ b/examples/sim_poisson.cpp @@ -1,5 +1,5 @@ /* -* Copyright 2014 Friedemann Zenke +* Copyright 2014-2016 Friedemann Zenke * * This file is part of Auryn, a simulation package for plastic * spiking neural networks. From 25ddadd8292a39851c3f4a07c01d4ecac82d6dbb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 27 Mar 2016 12:52:28 -0700 Subject: [PATCH 072/460] Updates doxystrings in TIFGroup --- src/TIFGroup.h | 39 +++++++++++++++++++++++++-------------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/src/TIFGroup.h b/src/TIFGroup.h index 1ef4da85..6e2b73e8 100644 --- a/src/TIFGroup.h +++ b/src/TIFGroup.h @@ -60,38 +60,49 @@ class TIFGroup : public NeuronGroup void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); public: - /*! The default constructor of this NeuronGroup */ + /*! \brief The default constructor of this NeuronGroup */ TIFGroup(NeuronID size); virtual ~TIFGroup(); - /*! Controls the constant current input (per default set so zero) to neuron i */ + /*! \brief Controls the constant current input (per default set so zero) to neuron i */ void set_bg_current(NeuronID i, AurynFloat current); - /*! Controls the constant current input to all neurons */ + /*! \brief Controls the constant current input to all neurons */ void set_bg_currents(AurynFloat current); - /*! Setter for refractory time [s] */ + /*! \brief Setter for refractory time [s] */ void set_refractory_period(AurynDouble t); - /*! Gets the current background current value for neuron i */ + /*! \brief Gets the current background current value for neuron i */ AurynFloat get_bg_current(NeuronID i); - /*! Sets the membrane time constant (default 20ms) */ + + /*! \brief Sets the membrane time constant (default 20ms) */ void set_tau_mem(AurynFloat taum); - /*! Sets the membrane resistance (default 100 M-ohm) */ + + /*! \brief Sets the membrane resistance (default 100 M-ohm) */ void set_r_mem(AurynFloat rm); - /*! Sets the membrane capacitance (default 200pF) */ + + /*! \brief Sets the membrane capacitance (default 200pF) */ void set_c_mem(AurynFloat cm); - /*! Sets the exponential time constant for the AMPA channel (default 5ms) */ + + /*! \brief Sets the exponential time constant for the AMPA channel (default 5ms) */ void set_tau_ampa(AurynFloat tau); - /*! Gets the exponential time constant for the AMPA channel */ + + /*! \brief Gets the exponential time constant for the AMPA channel */ AurynFloat get_tau_ampa(); - /*! Sets the exponential time constant for the GABA channel (default 10ms) */ + + /*! \brief Sets the exponential time constant for the GABA channel (default 10ms) */ void set_tau_gaba(AurynFloat tau); - /*! Gets the exponential time constant for the GABA channel */ + + /*! \brief Gets the exponential time constant for the GABA channel */ AurynFloat get_tau_gaba(); - /*! Resets all neurons to defined and identical initial state. */ + + /*! \brief Resets all neurons to defined and identical initial state. */ void clear(); - /*! The evolve method internally used by System. */ + + /*! \brief Integrates the NeuronGroup state + * + * The evolve method internally used by System. */ void evolve(); }; From 9a81c8ec9cd06c80dddf86976e8623777cfe1a94 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 27 Mar 2016 16:12:29 -0700 Subject: [PATCH 073/460] Updates doxystring in BinarySpikeMonitor.h --- src/BinarySpikeMonitor.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/BinarySpikeMonitor.h b/src/BinarySpikeMonitor.h index 42ff3564..f4d3716e 100644 --- a/src/BinarySpikeMonitor.h +++ b/src/BinarySpikeMonitor.h @@ -36,11 +36,13 @@ namespace auryn { /*! \brief The standard Monitor object to record spikes from a - * SpikingGroup and write them to file + * SpikingGroup and write them to a binary file * * BinarySpikeMonitor is specified with a source group of type SpikingGroup * and writes all or a specified range of the neurons spikes to a * file that has to be given at construction time. + * The output files can be read and converted to ascii ras files using the tool + * aube (Auryn Binary Extractor) which compiles in the tools folder. */ class BinarySpikeMonitor : public Monitor { From 7044672eb13861292610636f0b40083ea7c9582f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 28 Mar 2016 17:14:43 -0700 Subject: [PATCH 074/460] Fixes logger output string --- src/SparseConnection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 4242b938..8669d903 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -888,8 +888,8 @@ bool SparseConnection::load_from_complete_file(std::string filename) { AurynLong datasize = dryrun_from_file(filename); std::stringstream oss; - oss << "Loading from complete wmat file \ - (all ranks in the same file). Element count: " + oss << "Loading from complete wmat file " + << "(all ranks in the same file). Element count: " << datasize << "."; auryn::logger->msg(oss.str(),NOTIFICATION); From 63b30ebd29defcca52845b6290ea0407c3119b59 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 28 Mar 2016 17:52:50 -0700 Subject: [PATCH 075/460] Extends functions to complex matrix elements --- src/ComplexMatrix.h | 22 ++++++++++++++++++---- src/WeightMonitor.cpp | 14 ++++++++++++-- src/WeightMonitor.h | 8 +++++--- 3 files changed, 35 insertions(+), 9 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index ca50f809..2b841a15 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -172,10 +172,14 @@ class ComplexMatrix void fill_zeros(); AurynDouble get_fill_level(); T get(NeuronID i, NeuronID j, NeuronID z=0); - bool exists(NeuronID i, NeuronID j); + + /*! \brief Returns true if the matrix element exists. */ + bool exists(NeuronID i, NeuronID j, NeuronID z=0); + /*! Returns the pointer to a particular element */ T * get_ptr(NeuronID i, NeuronID j); + /*! Returns the pointer to a particular element */ T * get_ptr(NeuronID i, NeuronID j, NeuronID z); /*! Returns the pointer to a particular element given * its position in the data array. */ @@ -487,9 +491,9 @@ T ComplexMatrix::get(NeuronID i, NeuronID j, NeuronID z) } template -bool ComplexMatrix::exists(NeuronID i, NeuronID j) +bool ComplexMatrix::exists(NeuronID i, NeuronID j, NeuronID z) { - if ( get_ptr(i,j) == NULL ) + if ( get_ptr(i,j) == NULL || z >= get_z_values() ) return false; else return true; @@ -536,13 +540,23 @@ T * ComplexMatrix::get_ptr(NeuronID i, NeuronID j) c = lo + (hi-lo)/2; if ( *c < j ) lo = c+1; else hi = c; - //std::cout << i << ":" << j << " " << *lo << ":" << *hi << endl; +#ifdef DEBUG + std::cout << i << ":" << j << " " << *lo << ":" << *hi << std::endl; +#endif // DEBUG } if ( *lo == j ) { +#ifdef DEBUG + std::cout << "found element at data array position " + << (lo-colinds) << std::endl; +#endif // DEBUG return elementdata+(lo-colinds); } +#ifdef DEBUG + std::cout << "element not found" << std::endl; +#endif // DEBUG + return NULL; } diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index be54ae3e..254bc44e 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -100,9 +100,19 @@ void WeightMonitor::add_to_list(AurynWeight * ptr) } } -void WeightMonitor::add_to_list(NeuronID i, NeuronID j) +void WeightMonitor::add_to_list(NeuronID i, NeuronID j, NeuronID z) { - add_to_list( mat->get_data_index(i,j) ); + if ( mat->exists(i, j, z) ) { + add_to_list( mat->get_data_index(i, j, z) ); + } else { + std::stringstream oss; + oss << "WeightMonitor:: Tried adding element " + << i << ", " + << j << " " + "z=" << z << " " + << " but element does not exist"; + logger->msg(oss.str()); + } } void WeightMonitor::add_to_list( std::vector vec, std::string label ) diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index cf0ea2ee..e9c60f58 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -93,13 +93,15 @@ class WeightMonitor : protected Monitor void set_mat(ForwardMatrix * m); - /*! Adds a single element to the recording list which is identified by its data index. */ void add_to_list( AurynLong index ); + /*! Adds a single element to the recording list which is identified by a pointer. */ void add_to_list( AurynWeight * ptr ); - /*! Adds a single element identified matrix coordinates (row,col) to the recording list. */ - void add_to_list( NeuronID i, NeuronID j ); + + /*! \brief Adds a single element identified matrix coordinates (row,col,z) to the recording list. */ + void add_to_list( NeuronID i, NeuronID j, NeuronID z=0 ); + /*! Adds a list vector vec the the recording list. Such a list * can for instance be generated by a SparseConnection with the get_block * function. From ad6229592a83868a4fc717156c7f5b74bf32b923 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 28 Mar 2016 18:51:42 -0700 Subject: [PATCH 076/460] Changes logger message --- src/WeightMonitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 254bc44e..0ac98b0f 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -160,7 +160,7 @@ void WeightMonitor::add_equally_spaced(NeuronID number, NeuronID z) std::stringstream oss; oss << "WeightMonitor:: " - << "Adding " + << "Added " << number << " equally spaced values."; auryn::logger->msg(oss.str(),VERBOSE); From ad78fc77d1c2018dfebe1c637e6fb9badeb732ef Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 29 Mar 2016 23:01:59 -0700 Subject: [PATCH 077/460] Adds TripletScalingConnection and sim_bg_scaling example --- examples/CMakeLists.txt | 3 + examples/sim_bg_scaling.cpp | 460 +++++++++++++++++++++++++++++++ src/TripletScalingConnection.cpp | 264 ++++++++++++++++++ src/TripletScalingConnection.h | 124 +++++++++ src/auryn.h | 3 +- 5 files changed, 853 insertions(+), 1 deletion(-) create mode 100644 examples/sim_bg_scaling.cpp create mode 100644 src/TripletScalingConnection.cpp create mode 100644 src/TripletScalingConnection.h diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 6f603e16..2dc7209f 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,6 +1,9 @@ ADD_EXECUTABLE( sim_background sim_background.cpp ) TARGET_LINK_LIBRARIES( sim_background auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) +ADD_EXECUTABLE( sim_bg_scaling sim_bg_scaling.cpp ) +TARGET_LINK_LIBRARIES( sim_bg_scaling auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) + ADD_EXECUTABLE( sim_bg_lowpass sim_bg_lowpass.cpp ) TARGET_LINK_LIBRARIES( sim_bg_lowpass auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) diff --git a/examples/sim_bg_scaling.cpp b/examples/sim_bg_scaling.cpp new file mode 100644 index 00000000..e0ae0bdd --- /dev/null +++ b/examples/sim_bg_scaling.cpp @@ -0,0 +1,460 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + +/*! \brief Example simulation that simulates a balanced network with + * triplet STDP with homeostatic scaling */ + +#include "auryn.h" + +#define N_REC_WEIGHTS 5000 +#define NE 20000 +#define NI 5000 + + +using namespace auryn; + +namespace po = boost::program_options; +namespace mpi = boost::mpi; + +int main(int ac, char* av[]) +{ + + double w = 0.16; + double w_ext = w; + double wmax = 1; + + double w_ee = w; + double w_ei = w; + + double gamma = 1.0; + double w_ie = gamma; + double w_ii = gamma; + + + double sparseness = 0.05; + double kappa = 3; + + bool quiet = false; + bool wmatdump = false; + double simtime = 3600.; + double stimtime = simtime; + double wmat_interval = 600.; + double wstim = 0.1; + + string patfile = "/home/zenke/stim/2block.pat"; + string currentfile = "updown.cur"; + + // string corr_file = "/home/zenke/projects/2012-bcmstab/learn/corr.wmat"; + string corr_pat_file = "/home/zenke/projects/2012-bcmstab/learn/corr.pat"; + double stimfreq = 100; + + bool corr = false; + bool adapt = false; + bool noisyweights = false; + bool fast = false; + AurynWeight wdecay = w; + double tau_decay = 3600.; + + double tau_hom = 50.; + double eta = 1; + double beta_scaling = 1; + + int n_strengthen = 0; + + string dir = "/lcncluster/zenke/auryn/"; + string stimfile = ""; + string label = ""; + string infilename = ""; + + const char * file_prefix = "bg_scaling"; + char strbuf [255]; + string msg; + + int errcode = 0; + + try { + + po::options_description desc("Allowed options"); + desc.add_options() + ("help", "produce help message") + ("quiet", "quiet mode") + ("load", po::value(), "input weight matrix") + ("wmat", "wmat dump mode") + ("eta", po::value(), "learning rate") + ("scaling", po::value(), "learning rate") + ("tau_hom", po::value(), "homeostatic time constant") + ("kappa", po::value(), "target rate") + ("simtime", po::value(), "simulation time") + ("dir", po::value(), "output dir") + ("label", po::value(), "output label") + ("we", po::value(), "we") + ("strengthen", po::value(), "connections to strengthen by 10") + ("stimfile", po::value(), "stimulus ras file") + ("wstim", po::value(), "weight of stimulus connections") + ("stimtime", po::value(), "time of stimulus on") + ("adapt", "adapting excitatory neurons") + ("corr", "add correlated inputs") + ("stimfreq", po::value(), "CorrelatedPoissonGroup frequency default = 100") + ("noisyweights", "enables noisyweights for mean field checks") + ("fast", "turn off some of the monitors to run faster") + ; + + po::variables_map vm; + po::store(po::parse_command_line(ac, av, desc), vm); + po::notify(vm); + + if (vm.count("help")) { + std::cout << desc << "\n"; + return 1; + } + + if (vm.count("quiet")) { + quiet = true; + } + + if (vm.count("load")) { + std::cout << "load from matrix " + << vm["load"].as() << ".\n"; + infilename = vm["load"].as(); + } + + if (vm.count("wmat")) { + wmatdump = true; + std::cout << "wmat dump mode" << std::endl; + } + + if (vm.count("eta")) { + std::cout << "eta set to " + << vm["eta"].as() << ".\n"; + eta = vm["eta"].as(); + } + + if (vm.count("scaling")) { + std::cout << "scaling set to " + << vm["scaling"].as() << ".\n"; + beta_scaling = vm["scaling"].as(); + } + + if (vm.count("tau_hom")) { + std::cout << "tau_hom set to " + << vm["tau_hom"].as() << ".\n"; + tau_hom = vm["tau_hom"].as(); + } + + if (vm.count("kappa")) { + std::cout << "kappa set to " + << vm["kappa"].as() << ".\n"; + kappa = vm["kappa"].as(); + } + + if (vm.count("simtime")) { + std::cout << "simtime set to " + << vm["simtime"].as() << ".\n"; + simtime = vm["simtime"].as(); + stimtime = simtime; + } + + if (vm.count("corr")) { + std::cout << "enabling corr " << std::endl; + corr = true; + } + + if (vm.count("stimfreq")) { + std::cout << "stimfreq set to " + << vm["stimfreq"].as() << ".\n"; + stimfreq = vm["stimfreq"].as(); + } + + if (vm.count("dir")) { + std::cout << "dir set to " + << vm["dir"].as() << ".\n"; + dir = vm["dir"].as(); + } + + if (vm.count("label")) { + std::cout << "label set to " + << vm["label"].as() << ".\n"; + label = vm["label"].as(); + } + + if (vm.count("we")) { + std::cout << "we set to " + << vm["we"].as() << ".\n"; + w_ee = vm["we"].as(); + } + + if (vm.count("strengthen")) { + std::cout << "strengthen set to " + << vm["strengthen"].as() << ".\n"; + n_strengthen = vm["strengthen"].as(); + } + + if (vm.count("stimfile")) { + std::cout << "stimfile set to " + << vm["stimfile"].as() << ".\n"; + stimfile = vm["stimfile"].as(); + } + + if (vm.count("wstim")) { + std::cout << "wstim set to " + << vm["wstim"].as() << ".\n"; + wstim = vm["wstim"].as(); + } + + if (vm.count("stimtime")) { + std::cout << "stimtime set to " + << vm["stimtime"].as() << ".\n"; + stimtime = vm["stimtime"].as(); + } + + if (vm.count("adapt")) { + std::cout << "adaptation on " << std::endl; + adapt = true; + } + + if (vm.count("noisyweights")) { + std::cout << "noisyweights on " << std::endl; + noisyweights = true; + } + + if (vm.count("fast")) { + std::cout << "fast on " << std::endl; + fast = true; + } + } + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; + return 1; + } + catch(...) { + std::cerr << "Exception of unknown type!\n"; + } + + + // double primetime = 3.0/(beta_scaling*eta*1.24488e-5); + double primetime = 3.0*tau_hom; + + + // BEGIN Global stuff + mpi::environment env(ac, av); + mpi::communicator world; + communicator = &world; + + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.log", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank()); + string logfile = strbuf; + logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + + sys = new System(&world); + // boost::filesystem::path p = av[0]; + // string binaryname = p.stem().string(); + // sys->set_simulation_name(binaryname); + // END Global stuff + + if (!infilename.empty()) { + std::stringstream iss; + iss << infilename << "." << world.rank(); + infilename = iss.str(); + } + + logger->msg("Setting up neuron groups ...",PROGRESS,true); + + + NeuronGroup * neurons_e; + if ( adapt ) + neurons_e = new AIFGroup(20000); + else + neurons_e = new IFGroup(20000,25000); + IFGroup * neurons_i = new IFGroup(5000); + + // initialize membranes + neurons_i->set_tau_mem(10e-3); + neurons_e->random_mem(-60e-3,10e-3); + neurons_i->random_mem(-60e-3,10e-3); + + + SpikingGroup * poisson = new PoissonGroup(2500,2); + SparseConnection * con_exte = new SparseConnection(poisson, neurons_e, w_ext, sparseness, GLUT); + + + + msg = "Setting up I connections ..."; + logger->msg(msg,PROGRESS,true); + SparseConnection * con_ie = new SparseConnection(neurons_i,neurons_e, + w_ie,sparseness,GABA); + SparseConnection * con_ii = new SparseConnection(neurons_i,neurons_i, + w_ii,sparseness,GABA); + + msg = "Setting up E connections ..."; + logger->msg(msg,PROGRESS,true); + SparseConnection * con_ei = new SparseConnection(neurons_e,neurons_i, + w_ei, sparseness,GLUT); + + TripletScalingConnection * con_ee; + + if (infilename.empty()) { + con_ee = new TripletScalingConnection(neurons_e,neurons_e, + w_ee, sparseness,tau_hom,eta,kappa,beta_scaling,wmax,GLUT); + if ( noisyweights ) + con_ee->random_data(w_ee,w_ee/4); + for ( int i = 0 ; i < n_strengthen ; ++i ) { + con_ee->set_data(i,i*(wmax/n_strengthen)); + } + } + else { + string str; + str = infilename; + str += ".wmat"; + std::stringstream oss; + oss << "Loading weight matrix from " << str; + logger->msg(oss.str(),PROGRESS,true); + con_ee = new TripletScalingConnection(neurons_e,neurons_e, + str.c_str(),tau_hom,eta,kappa,beta_scaling,wmax,GLUT); + + + str = infilename; + str += ".e.nstate"; + neurons_e->load_from_file(str.c_str()); + str = infilename; + str += ".i.nstate"; + neurons_i->load_from_file(str.c_str()); + + } + + msg = "Initializing traces ..."; + logger->msg(msg,PROGRESS,true); + con_ee->set_hom_trace(kappa); + + // TODO + // con_ee->w->set_col(0,2*w_ee); + + msg = "Setting up monitors ..."; + logger->msg(msg,PROGRESS,true); + + if (wmatdump) { + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.weight", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank()); + WeightMatrixMonitor * wmatmon = new WeightMatrixMonitor( con_ee, strbuf , wmat_interval ); + } + + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.syn", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + // WeightMonitor * wmon = new WeightMonitor( con_ee, strbuf, 10 ); + // wmon->load_pattern_connections(corr_pat_file,200); + + if ( !fast ) { + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank(), 'e'); + SpikeMonitor * smon_e = new SpikeMonitor( neurons_e, strbuf , 2500); + + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.prate", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank(), 'e'); + PopulationRateMonitor * pmon_e = new PopulationRateMonitor( neurons_e, strbuf, 50e-3 ); + } + + RateChecker * chk = new RateChecker( neurons_e , 0.1 , 20.*kappa , 100e-3); + + + + FileInputGroup * filegroup; + SparseConnection * con_stim; + if (!stimfile.empty()) { + msg = "Setting up stimulus ..."; + logger->msg(msg,PROGRESS,true); + filegroup = new FileInputGroup(2000,stimfile.c_str(),true,1); + con_stim = new SparseConnection( filegroup, neurons_e, GLUT); + con_stim->set_name("Stimulus Connection"); + con_stim->allocate_manually(4*500*100*sparseness); + con_stim->connect_block_random(wstim, sparseness, 0, 500, 0, 100); + con_stim->connect_block_random(wstim, sparseness, 500, 1000, 100, 200); + con_stim->connect_block_random(wstim, sparseness, 1000, 1500, 200, 300); + con_stim->connect_block_random(wstim, sparseness, 1500, 2000, 300, 400); + con_stim->finalize(); + + logger->msg("Saving weight matrix ...",PROGRESS,true); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d_stim.wmat", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank()); + con_stim->write_to_file(strbuf); + } + + if (primetime>0) { + msg = "Priming ..."; + // con_ee->set_beta(400); + logger->msg(msg,PROGRESS,true); + con_ee->stdp_active = false; + sys->run(primetime,true); + } + if ( corr ) { + const NeuronID size = 150; + + std::stringstream oss; + oss << " Activating correlated input ... "; + logger->msg(oss.str(),PROGRESS,true); + + if (eta > 0) + con_ee->stdp_active = true; + // con_exte->set_block(0,2500,0,size,0); + + CorrelatedPoissonGroup * corr_e = new CorrelatedPoissonGroup(size,stimfreq,50,10e-3); + // CorrelatedPoissonGroup * corr_i = new CorrelatedPoissonGroup(size,50,50,10e-3); + corr_e->set_amplitude(50.); + corr_e->set_timescale(5e-3); + // corr->set_offset(2); + + // SparseConnection * con_corr_e = new SparseConnection(corr_e,neurons_e,corr_file.c_str(),GLUT); + IdentityConnection * con_corr_e = new IdentityConnection(corr_e,neurons_e,w); + + // disabling external random input + con_exte->set_block(0,2500,0,size,0.0); + + // set up Weight monitor + + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank(), 'c'); + SpikeMonitor * smon_c = new SpikeMonitor( corr_e, strbuf , size ); + } + + logger->msg("Simulating ...",PROGRESS,true); + con_ee->set_beta(beta_scaling); + if (eta > 0) + con_ee->stdp_active = true; + + if (!sys->run(simtime,true)) + errcode = 1; + + + + logger->msg("Saving neurons state ...",PROGRESS,true); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.e.nstate", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank()); + neurons_e->write_to_file(strbuf); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.i.nstate", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank()); + neurons_i->write_to_file(strbuf); + + logger->msg("Saving weight matrix ...",PROGRESS,true); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.wmat", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank()); + con_ee->write_to_file(strbuf); + + // save lifetime + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.lifetime", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank()); + std::ofstream killfile; + killfile.open(strbuf); + killfile << sys->get_time()-primetime << std::endl; + killfile.close(); + + logger->msg("Freeing ...",PROGRESS,true); + delete sys; + + if (errcode) + env.abort(errcode); + return errcode; +} diff --git a/src/TripletScalingConnection.cpp b/src/TripletScalingConnection.cpp new file mode 100644 index 00000000..6fee6226 --- /dev/null +++ b/src/TripletScalingConnection.cpp @@ -0,0 +1,264 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + +#include "TripletScalingConnection.h" + +using namespace auryn; + +void TripletScalingConnection::init(AurynFloat tau_hom, AurynFloat eta, AurynFloat kappa, AurynFloat beta, AurynFloat maxweight) +{ + if ( dst->get_post_size() == 0 ) return; + + A3_plus = 6.5e-3; + A3_plus *= eta; + + tau_plus = 16.8e-3; + tau_minus = 33.7e-3; + tau_long = 114e-3; + + tau_homeostatic = tau_hom; + set_beta(beta); + + tr_pre = src->get_pre_trace(tau_plus); + tr_post = dst->get_post_trace(tau_minus); + tr_post2 = dst->get_post_trace(tau_long); + tr_post_hom = dst->get_post_trace(tau_hom); + + target_rate = kappa; + hom_fudge = A3_plus*(tau_plus*tau_long)/(tau_minus)*target_rate; + logger->parameter("hom_fudge",hom_fudge); + + w_min = 0.0; + w_max = maxweight; + + stdp_active = true; + + set_name("TripletScalingConnection"); +} + +void TripletScalingConnection::init_shortcuts() +{ + if ( dst->get_post_size() == 0 ) return; // if there are no target neurons on this rank + + fwd_ind = w->get_row_begin(0); + fwd_data = w->get_data_begin(); + + bkw_ind = bkw->get_row_begin(0); + bkw_data = bkw->get_data_begin(); +} + +void TripletScalingConnection::finalize() { + DuplexConnection::finalize(); + init_shortcuts(); +} + +void TripletScalingConnection::free() +{ +} + +TripletScalingConnection::TripletScalingConnection(SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter) : DuplexConnection(source, destination, transmitter) +{ +} + +TripletScalingConnection::TripletScalingConnection(SpikingGroup * source, NeuronGroup * destination, + const char * filename, + AurynFloat tau_hom, + AurynFloat eta, + AurynFloat kappa, + AurynFloat beta, + AurynFloat maxweight , + TransmitterType transmitter) +: DuplexConnection(source, + destination, + filename, + transmitter) +{ + init(tau_hom, eta, kappa, beta, maxweight); + init_shortcuts(); +} + +TripletScalingConnection::TripletScalingConnection(SpikingGroup * source, NeuronGroup * destination, + AurynWeight weight, AurynFloat sparseness, + AurynFloat tau_hom, + AurynFloat eta, + AurynFloat kappa, + AurynFloat beta, + AurynFloat maxweight , + TransmitterType transmitter, + string name) +: DuplexConnection(source, + destination, + weight, + sparseness, + transmitter, + name) +{ + init(tau_hom, eta, kappa, beta, maxweight); + init_shortcuts(); +} + +TripletScalingConnection::~TripletScalingConnection() +{ + if ( dst->get_post_size() > 0 ) + free(); +} + +void TripletScalingConnection::set_hom_trace(AurynFloat freq) +{ + if ( dst->get_post_size() > 0 ) + tr_post_hom->set_all(freq*tr_post_hom->get_tau()); +} + + +AurynWeight TripletScalingConnection::get_hom(NeuronID i) +{ + return pow(tr_post_hom->get(i),2); +} + + +AurynWeight TripletScalingConnection::dw_pre(NeuronID post) +{ + NeuronID translated_spike = dst->global2rank(post); // only to be used for post traces + AurynDouble dw = hom_fudge*(tr_post->get(translated_spike)); + // cout << "pre" << dw << endl; + return dw; +} + +AurynWeight TripletScalingConnection::dw_post(NeuronID pre, NeuronID post) +{ + // post translation is done in loop below + AurynDouble dw = A3_plus*tr_pre->get(pre)*tr_post2->get(post); + // cout << "post" << dw << endl; + return dw; +} + + +void TripletScalingConnection::propagate_forward() +{ + for (SpikeContainer::const_iterator spike = src->get_spikes()->begin() ; // spike = pre_spike + spike != src->get_spikes()->end() ; ++spike ) { + for (NeuronID * c = w->get_row_begin(*spike) ; c != w->get_row_end(*spike) ; ++c ) { // c = post index + AurynWeight value = fwd_data[c-fwd_ind]; + transmit( *c , value ); + if ( stdp_active ) { + fwd_data[c-fwd_ind] -= dw_pre(*c); + if ( fwd_data[c-fwd_ind] < w_min ) + fwd_data[c-fwd_ind] = w_min; + } + } + // update pre_trace + // tr_pre->inc(*spike); + } +} + +void TripletScalingConnection::propagate_backward() +{ + SpikeContainer::const_iterator spikes_end = dst->get_spikes_immediate()->end(); + // process spikes + for (SpikeContainer::const_iterator spike = dst->get_spikes_immediate()->begin() ; // spike = post_spike + spike != spikes_end ; ++spike ) { + NeuronID translated_spike = dst->global2rank(*spike); // only to be used for post traces + if (stdp_active) { + for (NeuronID * c = bkw->get_row_begin(*spike) ; c != bkw->get_row_end(*spike) ; ++c ) { + *bkw_data[c-bkw_ind] = *bkw_data[c-bkw_ind] + dw_post(*c,translated_spike); + if (*bkw_data[c-bkw_ind]>w_max) *bkw_data[c-bkw_ind]=w_max; + } + } + } +} + +void TripletScalingConnection::propagate() +{ + propagate_forward(); + propagate_backward(); +} + +void TripletScalingConnection::evolve() +{ + evolve_scaling(); +} + +void TripletScalingConnection::set_min_weight(AurynWeight min) +{ + w_min = min; +} + +void TripletScalingConnection::set_max_weight(AurynWeight max) +{ + w_max = max; +} + +AurynWeight TripletScalingConnection::get_wmin() +{ + return w_min; +} + +void TripletScalingConnection::evolve_scaling() +{ + // if ( !stdp_active ) return; + NeuronID i = sys->get_clock()%scal_timestep; + while ( i < dst->get_rank_size() ) { + AurynFloat diff = 1.0-pow(tr_post_hom->normalized_get(i)/target_rate,3); + NeuronID neuron = dst->rank2global(i); + for (NeuronID * c = bkw->get_row_begin(neuron) ; c != bkw->get_row_end(neuron) ; ++c ) { + *bkw_data[c-bkw_ind] += scal_mul*diff*(*bkw_data[c-bkw_ind]); + } + i += scal_timestep; + } + // NeuronID i = sys->get_clock()%scal_timestep; + // while ( i < dst->get_size() ) { + // for (NeuronID * j = fwd->get_row_begin(i) ; + // j != fwd->get_row_end(i) ; + // ++j ) { + // AurynWeight * cor = fwd->get_value_ptr(j); + // AurynFloat diff = target_rate-tr_post_hom->normalized_get(dst->global2rank(*j)); + // *cor += (TRIPLETSCALINGCONNECTION_EULERUPGRADE_STEP)*diff*(*cor); + // } + // i += scal_timestep; + // } + // if ( sys->get_clock()%scal_timestep == 0 ) { + // for ( NeuronID i = 0 ; i < dst->get_size() ; ++i ) { + // for (NeuronID * j = fwd->get_row_begin(i) ; + // j != fwd->get_row_end(i) ; + // ++j ) { + // AurynWeight * cor = fwd->get_value_ptr(j); + // AurynFloat diff = target_rate-tr_post_hom->normalized_get(dst->global2rank(*j)); + // *cor += (TRIPLETSCALINGCONNECTION_EULERUPGRADE_STEP)*diff*(*cor); + // } + // } + // } +} + +void TripletScalingConnection::set_beta(AurynFloat beta) +{ + scal_beta = beta; + scal_beta *= A3_plus*tau_plus*tau_long; + logger->parameter("beta",beta); + logger->parameter("scal_beta",scal_beta); + + double tmp = -log(1.0-TRIPLETSCALINGCONNECTION_EULERUPGRADE_STEP)/scal_beta/dt; + if ( tmp < 1 ) + scal_timestep = 1; + else + scal_timestep = tmp; + scal_mul = 1.0-exp(-scal_beta*scal_timestep*dt); + + logger->parameter("scaling_timestep",(int)scal_timestep); +} diff --git a/src/TripletScalingConnection.h b/src/TripletScalingConnection.h new file mode 100644 index 00000000..f1e4a0db --- /dev/null +++ b/src/TripletScalingConnection.h @@ -0,0 +1,124 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + +#ifndef TRIPLETSCALINGCONNECTION_H_ +#define TRIPLETSCALINGCONNECTION_H_ + +#include "auryn_definitions.h" +#include "DuplexConnection.h" +#include "EulerTrace.h" + +#define TRIPLETSCALINGCONNECTION_EULERUPGRADE_STEP 0.001 + + +namespace auryn { + class TripletScalingConnection : public DuplexConnection + { + + private: + void init(AurynFloat tau_hom, AurynFloat eta, AurynFloat kappa, AurynFloat beta, AurynFloat maxweight); + void init_shortcuts(); + + virtual AurynWeight get_hom(NeuronID i); + + protected: + + AurynFloat tau_plus; + AurynFloat tau_minus; + AurynFloat tau_long; + + AurynFloat tau_homeostatic; + + AurynTime scal_timestep; + AurynFloat scal_beta; + AurynFloat scal_mul; + + NeuronID * fwd_ind; + AurynWeight * fwd_data; + + NeuronID * bkw_ind; + AurynWeight ** bkw_data; + + AurynDouble hom_fudge; + AurynDouble target_rate; + + PRE_TRACE_MODEL * tr_pre; + DEFAULT_TRACE_MODEL * tr_post; + DEFAULT_TRACE_MODEL * tr_post2; + DEFAULT_TRACE_MODEL * tr_post_hom; + + void propagate_forward(); + void propagate_backward(); + inline void evolve_scaling(); + void sort_spikes(); + + AurynWeight dw_pre(NeuronID post); + AurynWeight dw_post(NeuronID pre, NeuronID post); + + public: + AurynFloat A3_plus; + + AurynFloat w_min; + AurynFloat w_max; + + + + bool stdp_active; + + TripletScalingConnection(SpikingGroup * source, NeuronGroup * destination, + TransmitterType transmitter=GLUT); + + TripletScalingConnection(SpikingGroup * source, NeuronGroup * destination, + const char * filename, + AurynFloat tau_hom=10, + AurynFloat eta=1, + AurynFloat kappa=3., + AurynFloat beta=1.0, // TODO put sensical number + AurynFloat maxweight=1. , + TransmitterType transmitter=GLUT); + + TripletScalingConnection(SpikingGroup * source, NeuronGroup * destination, + AurynWeight weight, AurynFloat sparseness=0.05, + AurynFloat tau_hom=10, + AurynFloat eta=1, + AurynFloat kappa=3., + AurynFloat beta=1.0, // TODO put sensical number + AurynFloat maxweight=1. , + TransmitterType transmitter=GLUT, + string name = "TripletScalingConnection" ); + + virtual ~TripletScalingConnection(); + virtual void finalize(); + void free(); + + void set_min_weight(AurynWeight min); + void set_max_weight(AurynWeight max); + void set_hom_trace(AurynFloat freq); + void set_beta(AurynFloat beta); + + AurynWeight get_wmin(); + + virtual void propagate(); + virtual void evolve(); + + }; +} + +#endif /*TRIPLETSCALINGCONNECTION_H_*/ diff --git a/src/auryn.h b/src/auryn.h index f443eeee..225751d1 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -57,9 +57,10 @@ #include "SymmetricSTDPConnection.h" #include "STPConnection.h" #include "ABSConnection.h" -#include "TripletConnection.h" #include "DuplexConnection.h" +#include "TripletConnection.h" #include "TripletDecayConnection.h" +#include "TripletScalingConnection.h" #include "IdentityConnection.h" // Spiking and Neuron group definitions From eaf2023d2689914f952b7f388813396ca00fe3f7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 29 Mar 2016 23:10:56 -0700 Subject: [PATCH 078/460] Removes hardcoded unneeded strings --- examples/sim_bg_scaling.cpp | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/examples/sim_bg_scaling.cpp b/examples/sim_bg_scaling.cpp index e0ae0bdd..041a5441 100644 --- a/examples/sim_bg_scaling.cpp +++ b/examples/sim_bg_scaling.cpp @@ -19,7 +19,12 @@ */ /*! \brief Example simulation that simulates a balanced network with - * triplet STDP with homeostatic scaling */ + * triplet STDP with homeostatic scaling + * + * This simulation code is based on the code used in Zenke, F., Hennequin, G., + * and Gerstner, W. (2013). Synaptic Plasticity in Neural Networks Needs + * Homeostasis with a Fast Rate Detector. PLoS Comput Biol 9, e1003330. + * */ #include "auryn.h" @@ -58,11 +63,6 @@ int main(int ac, char* av[]) double wmat_interval = 600.; double wstim = 0.1; - string patfile = "/home/zenke/stim/2block.pat"; - string currentfile = "updown.cur"; - - // string corr_file = "/home/zenke/projects/2012-bcmstab/learn/corr.wmat"; - string corr_pat_file = "/home/zenke/projects/2012-bcmstab/learn/corr.pat"; double stimfreq = 100; bool corr = false; @@ -70,7 +70,6 @@ int main(int ac, char* av[]) bool noisyweights = false; bool fast = false; AurynWeight wdecay = w; - double tau_decay = 3600.; double tau_hom = 50.; double eta = 1; @@ -78,7 +77,7 @@ int main(int ac, char* av[]) int n_strengthen = 0; - string dir = "/lcncluster/zenke/auryn/"; + string dir = "/tmp"; string stimfile = ""; string label = ""; string infilename = ""; @@ -352,10 +351,6 @@ int main(int ac, char* av[]) WeightMatrixMonitor * wmatmon = new WeightMatrixMonitor( con_ee, strbuf , wmat_interval ); } - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.syn", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); - // WeightMonitor * wmon = new WeightMonitor( con_ee, strbuf, 10 ); - // wmon->load_pattern_connections(corr_pat_file,200); - if ( !fast ) { sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank(), 'e'); SpikeMonitor * smon_e = new SpikeMonitor( neurons_e, strbuf , 2500); From 325b7696ab4a4097ea70c72e20b971849294b626 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 7 Apr 2016 18:26:44 -0700 Subject: [PATCH 079/460] Fixes minimum version number in CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d16d557b..3097153b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 2.6) +cmake_minimum_required (VERSION 2.8.11) project (Auryn) # The version number. From eedea6f870ea30d46b7817d778e8f7aea0d0d672 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 11 Apr 2016 23:25:50 -0700 Subject: [PATCH 080/460] Changes cmake macro in examples Changes cmake macro in examples to build all files in examples as executables --- examples/CMakeLists.txt | 50 ++++++----------------------------------- 1 file changed, 7 insertions(+), 43 deletions(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 2dc7209f..b812f970 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,44 +1,8 @@ -ADD_EXECUTABLE( sim_background sim_background.cpp ) -TARGET_LINK_LIBRARIES( sim_background auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) +file( GLOB SIM_SOURCES *.cpp ) +foreach( sourcepath ${SIM_SOURCES} ) + get_filename_component( sourcefile ${sourcepath} NAME ) + string( REPLACE ".cpp" "" simname ${sourcefile} ) + add_executable( ${simname} ${sourcefile} ) + target_link_libraries( ${simname} auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) +endforeach( sourcepath ${SIM_SOURCES} ) -ADD_EXECUTABLE( sim_bg_scaling sim_bg_scaling.cpp ) -TARGET_LINK_LIBRARIES( sim_bg_scaling auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_bg_lowpass sim_bg_lowpass.cpp ) -TARGET_LINK_LIBRARIES( sim_bg_lowpass auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_bg_static sim_bg_static.cpp ) -TARGET_LINK_LIBRARIES( sim_bg_static auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_brunel2k sim_brunel2k.cpp ) -TARGET_LINK_LIBRARIES( sim_brunel2k auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_brunel2k_pl sim_brunel2k_pl.cpp ) -TARGET_LINK_LIBRARIES( sim_brunel2k_pl auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_coba_benchmark sim_coba_benchmark.cpp ) -TARGET_LINK_LIBRARIES( sim_coba_benchmark auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_dense sim_dense.cpp ) -TARGET_LINK_LIBRARIES( sim_dense auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_epsp sim_epsp.cpp ) -TARGET_LINK_LIBRARIES( sim_epsp auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_epsp_stp sim_epsp_stp.cpp ) -TARGET_LINK_LIBRARIES( sim_epsp_stp auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_isp_big sim_isp_big.cpp ) -TARGET_LINK_LIBRARIES( sim_isp_big auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_isp_orig sim_isp_orig.cpp ) -TARGET_LINK_LIBRARIES( sim_isp_orig auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_poisson sim_poisson.cpp ) -TARGET_LINK_LIBRARIES( sim_poisson auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_coba_binmon sim_coba_binmon.cpp ) -TARGET_LINK_LIBRARIES( sim_coba_binmon auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) - -ADD_EXECUTABLE( sim_current_stim sim_current_stim.cpp ) -TARGET_LINK_LIBRARIES( sim_current_stim auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) From 384b8d9337ce1f0e2feee928643aa8257d007631 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Apr 2016 05:10:37 +0100 Subject: [PATCH 081/460] Modifications to VoltageMonitor Now pastes every spike in the output which allows to go to lower sampling rates without "missing" a spike due to the discontinuity. --- examples/sim_epsp.cpp | 2 +- src/VoltageMonitor.cpp | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/examples/sim_epsp.cpp b/examples/sim_epsp.cpp index fc2adc77..e2587350 100644 --- a/examples/sim_epsp.cpp +++ b/examples/sim_epsp.cpp @@ -67,7 +67,7 @@ int main(int ac, char* av[]) tmpstr = outputfile; tmpstr += ".mem"; - VoltageMonitor * vmon = new VoltageMonitor( neuron, 0, tmpstr.c_str() ); + VoltageMonitor * vmon = new VoltageMonitor( neuron, 0, tmpstr.c_str(), 1e-3 ); tmpstr = outputfile; tmpstr += ".ampa"; diff --git a/src/VoltageMonitor.cpp b/src/VoltageMonitor.cpp index 2d1e7e0b..80281cac 100644 --- a/src/VoltageMonitor.cpp +++ b/src/VoltageMonitor.cpp @@ -58,18 +58,23 @@ void VoltageMonitor::init(NeuronGroup * source, NeuronID id, std::string filenam void VoltageMonitor::propagate() { - if ( auryn::sys->get_clock() < tStop && (auryn::sys->get_clock())%ssize==0 ) { + if ( auryn::sys->get_clock() < tStop ) { + // we output spikes irrespectively of the sampling interval, because + // the membrane potential isn't a smooth function for most IF models when + // they spike, so it's easy to "miss" a spike otherwise double voltage = src->get_mem(nid); if ( paste_spikes ) { SpikeContainer * spikes = src->get_spikes_immediate(); for ( int i = 0 ; i < spikes->size() ; ++i ) { if ( spikes->at(i) == gid ) { voltage = VOLTAGEMONITOR_PASTED_SPIKE_HEIGHT; - break; + outfile << (auryn::sys->get_time()) << " " << voltage << "\n"; + return; } } } - outfile << (auryn::sys->get_time()) << " " << voltage << "\n"; + if ( (auryn::sys->get_clock())%ssize==0 ) + outfile << (auryn::sys->get_time()) << " " << voltage << "\n"; } } From abf349cbf2f1c38b1ac369c34f7402b66bb05704 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 24 Apr 2016 10:00:27 -0700 Subject: [PATCH 082/460] Adds verbose logger output to save netstate --- src/System.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index ca8bc069..4eeda677 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -552,6 +552,7 @@ void System::save_network_state(std::string basename) netstate_filename = oss.str(); } // oss goes out of focus + auryn::logger->msg("Opening output stream ...",VERBOSE); std::ofstream ofs(netstate_filename.c_str()); boost::archive::binary_oarchive oa(ofs); @@ -560,11 +561,13 @@ void System::save_network_state(std::string basename) const int auryn_subversion = AURYNSUBVERSION; const int auryn_revision = AURYNREVISION; + auryn::logger->msg("Saving version information ...",VERBOSE); // save simulator version information oa << auryn_version; oa << auryn_subversion; oa << auryn_revision; + auryn::logger->msg("Saving communicator information ...",VERBOSE); // save communicator information int tmp_int = mpicom->size(); oa << tmp_int; @@ -578,9 +581,9 @@ void System::save_network_state(std::string basename) std::stringstream oss; oss << "Saving connection " << i - << " \"" + << " '" << connections[i]->get_name() - << "\"" + << "' " << " to stream"; auryn::logger->msg(oss.str(),VERBOSE); From 15495b63b8d76fa1019e16201543ec57eff840f9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 26 Apr 2016 13:46:49 +0200 Subject: [PATCH 083/460] Changes bras extension to spk --- examples/sim_coba_binmon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/sim_coba_binmon.cpp b/examples/sim_coba_binmon.cpp index e4c96953..0a65f094 100644 --- a/examples/sim_coba_binmon.cpp +++ b/examples/sim_coba_binmon.cpp @@ -175,12 +175,12 @@ int main(int ac,char *av[]) { logger->msg(msg,PROGRESS,true); std::stringstream filename; - filename << outputfile << "e.bras"; + filename << outputfile << "e.spk"; BinarySpikeMonitor * smon_e = new BinarySpikeMonitor( neurons_e, filename.str().c_str() ); filename.str(""); filename.clear(); - filename << outputfile << "i.bras"; + filename << outputfile << "i.spk"; BinarySpikeMonitor * smon_i = new BinarySpikeMonitor( neurons_i, filename.str().c_str() ); } From 512aea0bf7e8b89377600ad36b7d8bd791cb1d03 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 26 Apr 2016 14:04:01 +0200 Subject: [PATCH 084/460] Adds function to StimulusGroup Adds a get_next_action_time() function to StimulusGroup --- src/StimulusGroup.cpp | 5 +++++ src/StimulusGroup.h | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/StimulusGroup.cpp b/src/StimulusGroup.cpp index 7f9b181d..f077d658 100644 --- a/src/StimulusGroup.cpp +++ b/src/StimulusGroup.cpp @@ -574,6 +574,11 @@ AurynTime StimulusGroup::get_last_action_time() return last_action_time; } +AurynTime StimulusGroup::get_next_action_time() +{ + return next_action_time; +} + bool StimulusGroup::get_stim_active() { return stimulus_active; diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index 41473ccc..c5f90c1c 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -196,6 +196,9 @@ class StimulusGroup : public SpikingGroup /*! \brief returns the last action (stim on/off) time in units of AurynTime */ AurynTime get_last_action_time(); + /*! \brief returns the next action (stim on/off) time in units of AurynTime */ + AurynTime get_next_action_time(); + /*! \brief returns the index of the current (or last -- if not active anymore) active stimulus */ unsigned int get_cur_stim(); From 5ba47d972f29b3c7b25f111ca4c867dbc1a3903d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 26 Apr 2016 17:02:05 +0200 Subject: [PATCH 085/460] Implements compression feature in StateMonitor When enabled the StateMonitor will only output datapoints which are needed to get the right plot with gnuplot with lines function. i.e. the ones where the derivative changes between three consecutive data points. --- src/StateMonitor.cpp | 23 +++++++++++++++++++++-- src/StateMonitor.h | 23 +++++++++++++++++++---- 2 files changed, 40 insertions(+), 6 deletions(-) diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index 1f2b8a92..85293f56 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -71,6 +71,9 @@ void StateMonitor::init(SpikingGroup * source, NeuronID id, std::string statenam src = source; nid = src->global2rank(id); set_stop_time(10.0); + enable_compression = true; + lastval = 0; + lastder = 0; if ( nid >= src->get_rank_size() ) { auryn::logger->msg("Error: StateMonitor trying to read from non-existing neuron.",ERROR); @@ -96,8 +99,24 @@ void StateMonitor::propagate() { if ( auryn::sys->get_clock() < t_stop && auryn::sys->get_clock()%ssize==0 ) { char buffer[255]; - int n = sprintf(buffer,"%f %f\n",auryn::sys->get_time(), *target_variable); - outfile.write(buffer,n); + if ( enable_compression ) { + AurynState value = *target_variable; + AurynState deriv = value-lastval; + + if ( deriv == lastder ) { + return; + } + + int n = sprintf(buffer,"%f %f\n",(auryn::sys->get_clock()-ssize)*dt, lastval); + outfile.write(buffer,n); + + lastval = value; + lastder = deriv; + + } else { + int n = sprintf(buffer,"%f %f\n",auryn::sys->get_time(), *target_variable); + outfile.write(buffer,n); + } } } diff --git a/src/StateMonitor.h b/src/StateMonitor.h index 1bf84c06..63157d95 100644 --- a/src/StateMonitor.h +++ b/src/StateMonitor.h @@ -45,6 +45,10 @@ class StateMonitor : protected Monitor /*! Target variable */ AurynState * target_variable; + /*! Last value (used for compression) */ + AurynState lastval; + AurynState lastder; + /*! The source neuron id to record from */ NeuronID nid; /*! The step size (sampling interval) in units of dt */ @@ -55,7 +59,18 @@ class StateMonitor : protected Monitor void init(SpikingGroup * source, NeuronID id, string statename, string filename, AurynTime stepsize); public: - /*! Standard constructor + /*! \brief Switch to enable/disable output compression + * + * When set to true, Auryn will compute the derivative of two consecutive datapoints of the state + * and only a value if the derivative changes. The correct function can then be recovered with linear + * interpolation (i.e. plotting in gnuplot with lines will yield the correct output). + * When compression is enabled the last value written to file always by one timestep with respect to + * the simulation clock. + * enable_compression is true by default. + */ + bool enable_compression; + + /*! \brief Standard constructor * \param source The neuron group to record from * \param id The neuron id in the group to record from * \param statename The name of the StateVector to record from @@ -64,14 +79,14 @@ class StateMonitor : protected Monitor */ StateMonitor(SpikingGroup * source, NeuronID id, string statename, string filename, AurynDouble sampling_interval=dt); - /*! Alternative constructor + /*! \brief Alternative constructor * \param state The source state vector * \param filename The filename of the file to dump the output to * \param sampling_interval The sampling interval in seconds */ StateMonitor(auryn_vector_float * state, NeuronID id, string filename, AurynDouble sampling_interval=dt); - /*! EulerTrace constructor + /*! \brief EulerTrace constructor * \param trace The source synaptic trace * \param filename The filename of the file to dump the output to * \param sampling_interval The sampling interval in seconds @@ -86,7 +101,7 @@ class StateMonitor : protected Monitor * snippets. */ void record_for(AurynDouble time=10.0); - /*! \brief Same as record_for(time) */ + /*! \brief Set an absolute simulation time when to stop. */ void set_stop_time(AurynDouble time=10.0); virtual ~StateMonitor(); From 262fa9489a4e0e57c560d469cbf9af7d9ecec4ad Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 27 Apr 2016 08:44:45 +0200 Subject: [PATCH 086/460] Small fixes in StateMonitor --- src/StateMonitor.cpp | 23 +++++++++++------------ src/StateMonitor.h | 2 +- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index 85293f56..c0c729ba 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -72,8 +72,8 @@ void StateMonitor::init(SpikingGroup * source, NeuronID id, std::string statenam nid = src->global2rank(id); set_stop_time(10.0); enable_compression = true; - lastval = 0; - lastder = 0; + lastval = 0.0; + lastder = 0.0; if ( nid >= src->get_rank_size() ) { auryn::logger->msg("Error: StateMonitor trying to read from non-existing neuron.",ERROR); @@ -103,13 +103,11 @@ void StateMonitor::propagate() AurynState value = *target_variable; AurynState deriv = value-lastval; - if ( deriv == lastder ) { - return; + if ( deriv != lastder ) { + int n = sprintf(buffer,"%f %f\n",(auryn::sys->get_clock()-ssize)*dt, lastval); + outfile.write(buffer,n); } - int n = sprintf(buffer,"%f %f\n",(auryn::sys->get_clock()-ssize)*dt, lastval); - outfile.write(buffer,n); - lastval = value; lastder = deriv; @@ -121,14 +119,15 @@ void StateMonitor::propagate() } void StateMonitor::set_stop_time(AurynDouble time) +{ + AurynDouble stoptime = std::min( time, std::numeric_limits::max()*dt ); + t_stop = stoptime/dt; +} + +void StateMonitor::record_for(AurynDouble time) { if (time < 0) { auryn::logger->msg("Warning: Negative stop times not supported -- ingoring.",WARNING); } else t_stop = auryn::sys->get_clock() + time/dt; } - -void StateMonitor::record_for(AurynDouble time) -{ - set_stop_time(time); -} diff --git a/src/StateMonitor.h b/src/StateMonitor.h index 63157d95..04a8ce73 100644 --- a/src/StateMonitor.h +++ b/src/StateMonitor.h @@ -101,7 +101,7 @@ class StateMonitor : protected Monitor * snippets. */ void record_for(AurynDouble time=10.0); - /*! \brief Set an absolute simulation time when to stop. */ + /*! \brief Set an absolute time when to stop recording. */ void set_stop_time(AurynDouble time=10.0); virtual ~StateMonitor(); From 39fe0b1624e3e0c3811220f25b1c7e68afb57f2b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 27 Apr 2016 10:11:05 +0200 Subject: [PATCH 087/460] Fixes init bug in StateMonitor --- src/StateMonitor.cpp | 59 +++++++++++++++++++++----------------------- src/StateMonitor.h | 22 +++++++++++------ 2 files changed, 42 insertions(+), 39 deletions(-) diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index c0c729ba..2d9ac05c 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -30,65 +30,62 @@ using namespace auryn; StateMonitor::StateMonitor(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynDouble sampling_interval) { - init(source,id,statename,filename,sampling_interval/dt); + + if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank + + init(filename, sampling_interval); + auryn::sys->register_monitor(this); + src = source; + nid = src->global2rank(id); + + if ( nid >= src->get_rank_size() ) { + auryn::logger->msg("Error: StateMonitor trying to read from non-existing neuron.",ERROR); + throw AurynStateVectorException(); + } + + if ( source->evolve_locally() ) { + target_variable = src->get_state_vector(statename)->data+nid; + } else { + nid = src->get_rank_size() + 1; + } } StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string filename, AurynDouble sampling_interval) { if ( id >= state->size ) return; // do not register if neuron is out of vector range - Monitor::init(filename); + init(filename, sampling_interval); + auryn::sys->register_monitor(this); src = NULL; nid = id; target_variable = state->data+nid; - set_stop_time(10.0); - ssize = sampling_interval/dt; - outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval) { if ( id >= trace->get_state_ptr()->size ) return; // do not register if neuron is out of vector range - Monitor::init(filename); + init(filename, sampling_interval); + auryn::sys->register_monitor(this); src = NULL; nid = id; target_variable = trace->get_state_ptr()->data+nid; - set_stop_time(10.0); - ssize = sampling_interval/dt; - outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } -void StateMonitor::init(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynTime stepsize) +void StateMonitor::init(std::string filename, AurynDouble sampling_interval) { - if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank - - Monitor::init(filename); - auryn::sys->register_monitor(this); - src = source; - nid = src->global2rank(id); + outfile << setiosflags(std::ios::fixed) << std::setprecision(6); + set_stop_time(10.0); + ssize = sampling_interval/dt; + if ( ssize < 1 ) ssize = 1; + enable_compression = true; lastval = 0.0; lastder = 0.0; - - if ( nid >= src->get_rank_size() ) { - auryn::logger->msg("Error: StateMonitor trying to read from non-existing neuron.",ERROR); - throw AurynStateVectorException(); - } - - ssize = stepsize; - if ( ssize < 1 ) ssize = 1; - - if ( source->evolve_locally() ) { - target_variable = src->get_state_vector(statename)->data+nid; - } else { - nid = src->get_rank_size() + 1; - } - outfile << setiosflags(std::ios::fixed) << std::setprecision(6); } StateMonitor::~StateMonitor() diff --git a/src/StateMonitor.h b/src/StateMonitor.h index 04a8ce73..5f41135b 100644 --- a/src/StateMonitor.h +++ b/src/StateMonitor.h @@ -39,24 +39,27 @@ namespace auryn { class StateMonitor : protected Monitor { protected: - /*! The source SpikingGroup to record from */ + /*! \brief The source SpikingGroup to record from */ SpikingGroup * src; - /*! Target variable */ + /*! \brief Target variable */ AurynState * target_variable; - /*! Last value (used for compression) */ + /*! \brief Last value (used for compression) */ AurynState lastval; AurynState lastder; - /*! The source neuron id to record from */ + /*! \brief The source neuron id to record from */ NeuronID nid; - /*! The step size (sampling interval) in units of dt */ + + /*! \brief The step size (sampling interval) in units of dt */ AurynTime ssize; - /*! Defines the maximum recording time in AurynTime to save space. */ + + /*! \brief Defines the maximum recording time in AurynTime to save space. */ AurynTime t_stop; - /*! Standard initialization */ - void init(SpikingGroup * source, NeuronID id, string statename, string filename, AurynTime stepsize); + + /*! \brief Standard initialization */ + void init(string filename, AurynDouble stepsize); public: /*! \brief Switch to enable/disable output compression @@ -71,6 +74,7 @@ class StateMonitor : protected Monitor bool enable_compression; /*! \brief Standard constructor + * * \param source The neuron group to record from * \param id The neuron id in the group to record from * \param statename The name of the StateVector to record from @@ -80,6 +84,7 @@ class StateMonitor : protected Monitor StateMonitor(SpikingGroup * source, NeuronID id, string statename, string filename, AurynDouble sampling_interval=dt); /*! \brief Alternative constructor + * * \param state The source state vector * \param filename The filename of the file to dump the output to * \param sampling_interval The sampling interval in seconds @@ -87,6 +92,7 @@ class StateMonitor : protected Monitor StateMonitor(auryn_vector_float * state, NeuronID id, string filename, AurynDouble sampling_interval=dt); /*! \brief EulerTrace constructor + * * \param trace The source synaptic trace * \param filename The filename of the file to dump the output to * \param sampling_interval The sampling interval in seconds From d86a6a2228ec8289a6e24b6b47447ef5264c75c3 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 27 Apr 2016 13:19:34 +0200 Subject: [PATCH 088/460] Adds bootstrap file for build --- build/home/bootstrap.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 build/home/bootstrap.sh diff --git a/build/home/bootstrap.sh b/build/home/bootstrap.sh new file mode 100755 index 00000000..c129612d --- /dev/null +++ b/build/home/bootstrap.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cmake ../../ -DCMAKE_BUILD_TYPE=Release && make + From d92568ce767b758a97a13bf34fd09b6dc795bf57 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 2 May 2016 22:11:28 +0200 Subject: [PATCH 089/460] Updates aube command line help Conflicts: tools/aube.cpp --- tools/aube.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/aube.cpp b/tools/aube.cpp index e315364a..d6ef9bd7 100644 --- a/tools/aube.cpp +++ b/tools/aube.cpp @@ -111,9 +111,9 @@ int main(int ac, char* av[]) ("version,v", "show version information") ("inputs,i", po::value< std::vector >()->multitoken(), "input files") ("output,o", po::value(), "output file (output to stout if not given)") - ("from,f", po::value(), "from time in seconds") - ("to,t", po::value(), "to time in seconds") - ("last,l", po::value(), "last x seconds (overrides start/end)") + ("from,f", po::value(), "'from time' in seconds") + ("to,t", po::value(), "'to time' in seconds") + ("last,l", po::value(), "last x seconds (overrides from/to)") ("maxid,m", po::value(), "maximum neuron id to extract") ; From bf73ba4adc0ec63f4e8d421a523cbaa12f9334f6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 3 May 2016 15:12:51 +0200 Subject: [PATCH 090/460] Adds AurynVector class to replace auryn_vector_float --- src/AurynVector.cpp | 331 ++++++++++++++++++++++++++++++++++++++ src/AurynVector.h | 163 +++++++++++++++++++ src/EulerTrace.h | 1 + src/TIFGroup.cpp | 6 +- src/auryn.h | 1 + src/auryn_definitions.cpp | 300 ---------------------------------- src/auryn_definitions.h | 98 +---------- 7 files changed, 501 insertions(+), 399 deletions(-) create mode 100644 src/AurynVector.cpp create mode 100644 src/AurynVector.h diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp new file mode 100644 index 00000000..edf01444 --- /dev/null +++ b/src/AurynVector.cpp @@ -0,0 +1,331 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "AurynVector.h" + +using namespace auryn; + + +inline __m128 sse_load( float * i ) +{ +#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS + return _mm_load_ps( i ); +#else + return _mm_loadu_ps( i ); +#endif +} + +inline void sse_store( float * i, __m128 d ) +{ +#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS + _mm_store_ps( i, d ); +#else + _mm_storeu_ps( i, d ); +#endif +} + +void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + a->data[0:a->size:1] = a->data[0:a->size:1] * b->data[0:b->size:1]; + #else + float * bd = b->data; + for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( i ); + __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_mul_ps(chunk_a, chunk_b); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + a->data[i] *= b->data[i]; + } +#endif +} + +void auryn_vector_float_add_constant( auryn_vector_float * a, const float b ) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + a->data[0:a->size:1] = b + a->data[0:a->size:1]; + #else + const __m128 scalar = _mm_set1_ps(b); + for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + // _mm_prefetch((i + SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS), _MM_HINT_NTA); + __m128 chunk = sse_load( i ); + __m128 result = _mm_add_ps(chunk, scalar); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + a->data[i] += b; + } +#endif +} + +void auryn_vector_float_scale( const float a, const auryn_vector_float * b ) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + b->data[0:b->size:1] = a * b->data[0:b->size:1]; + #else + const __m128 scalar = _mm_set1_ps(a); + for ( float * i = b->data ; i != b->data+b->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( i ); + __m128 result = _mm_mul_ps(chunk, scalar); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < b->size ; ++i ) { + b->data[i] *= a; + } +#endif /* CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY */ +} + +void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + y->data[0:y->size:1] = a * x->data[0:x->size:1] + y->data[0:y->size:1]; + #else + float * xp = x->data; + const __m128 alpha = _mm_set1_ps(a); + for ( float * i = y->data ; i < y->data+y->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( xp ); xp += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_mul_ps( alpha, chunk ); + + chunk = sse_load( i ); + result = _mm_add_ps( result, chunk ); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < y->size ; ++i ) { + y->data[i] += a * x->data[i]; + } +#endif +} + +void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + a->data[0:a->size:1] = a->data[0:a->size:1] + b->data[0:b->size:1]; + #else + float * bd = b->data; + for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( i ); + __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_add_ps(chunk_a, chunk_b); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + a->data[i] += b->data[i]; + } +#endif +} + +void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + a->data[0:a->size:1] = a->data[0:a->size:1] - b->data[0:b->size:1]; + #else + float * bd = b->data; + for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( i ); + __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_sub_ps(chunk_a, chunk_b); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + a->data[i] -= b->data[i]; + } +#endif +} + +void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + float * bd = b->data; + for ( NeuronID i = 0 ; i < a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( a->data+i ); + __m128 chunk_b = sse_load( b->data+i ); + __m128 result = _mm_sub_ps(chunk_a, chunk_b); + sse_store( r->data+i, result ); + } +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + r->data[i] = a->data[i] - b->data[i]; + } +#endif +} + +void auryn_vector_float_clip( auryn_vector_float * v, const float a, const float b ) { +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + for ( NeuronID i = 0 ; i < v->size ; ++i ) { + if ( v->data[i] < a ) { + v->data[i] = a; + } else + if ( v->data[i] > b ) + v->data[i] = b; + } + #else + const __m128 lo = _mm_set1_ps(a); + const __m128 hi = _mm_set1_ps(b); + for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( i ); + __m128 result = _mm_min_ps(chunk, hi); + result = _mm_max_ps(result, lo); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < v->size ; ++i ) { + if ( v->data[i] < a ) { + v->data[i] = a; + } else + if ( v->data[i] > b ) + v->data[i] = b; + } +#endif +} + +void auryn_vector_float_clip( auryn_vector_float * v, const float a ) { +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + auryn_vector_float_clip( v, a, 1e16 ); + #else + const __m128 lo = _mm_set1_ps(a); + const __m128 hi = _mm_set1_ps(0.); + for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( i ); + __m128 result = _mm_min_ps(chunk, hi); + result = _mm_max_ps(result, lo); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + auryn_vector_float_clip( v, a, 1e16 ); +#endif +} + +auryn_vector_float * auryn_vector_float_alloc( const NeuronID n ) { + AurynFloat * data = new AurynFloat [n]; + auryn_vector_float * vec = new auryn_vector_float(); + vec->size = n; + vec->data = data; + return vec; +} + +void auryn_vector_float_free ( auryn_vector_float * v ) { + delete [] v->data; + delete v; +} + +void auryn_vector_float_set_all ( auryn_vector_float * v, AurynFloat x ) { + for ( NeuronID i = 0 ; i < v->size ; ++ i ) + v->data[i] = x; +} + +void auryn_vector_float_set_zero ( auryn_vector_float * v ) { + auryn_vector_float_set_all(v, 0.0); +} + +AurynFloat auryn_vector_float_get ( const auryn_vector_float * v, const NeuronID i ) { + return v->data[i]; +} + +AurynFloat * auryn_vector_float_ptr ( const auryn_vector_float * v, const NeuronID i ) { + return v->data+i; +} + +void auryn_vector_float_set ( auryn_vector_float * v, const NeuronID i, AurynFloat x ) { + v->data[i] = x; +} + +void auryn_vector_float_copy ( auryn_vector_float * src, auryn_vector_float * dst ) { + // TODO make this a fast memcpy + for ( NeuronID i = 0 ; i < dst->size ; ++i ) + dst->data[i] = src->data[i]; +} + + +auryn_vector_ushort * auryn_vector_ushort_alloc( const NeuronID n ) { + unsigned short * data = new unsigned short [n]; + auryn_vector_ushort * vec = new auryn_vector_ushort(); + vec->size = n; + vec->data = data; + return vec; +} + +void auryn_vector_ushort_free ( auryn_vector_ushort * v ) { + delete [] v->data; + delete v; +} + +void auryn_vector_ushort_set_all ( auryn_vector_ushort * v, unsigned short x ) { + for ( NeuronID i = 0 ; i < v->size ; ++ i ) + v->data[i] = x; +} + +void auryn_vector_ushort_set_zero ( auryn_vector_ushort * v ) { + auryn_vector_ushort_set_all(v, 0); +} + +unsigned short auryn_vector_ushort_get ( const auryn_vector_ushort * v, const NeuronID i ) { + return v->data[i]; +} + +unsigned short * auryn_vector_ushort_ptr ( const auryn_vector_ushort * v, const NeuronID i ) { + return v->data+i; +} + +void auryn_vector_ushort_set ( auryn_vector_ushort * v, const NeuronID i, unsigned short x ) { + v->data[i] = x; +} + +void auryn_vector_ushort_copy ( auryn_vector_ushort * src, auryn_vector_ushort * dst ) { + for ( NeuronID i = 0 ; i < dst->size ; ++i ) + dst->data[i] = src->data[i]; +} diff --git a/src/AurynVector.h b/src/AurynVector.h new file mode 100644 index 00000000..cc3f5d98 --- /dev/null +++ b/src/AurynVector.h @@ -0,0 +1,163 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef AURYNVECTOR_H_ +#define AURYNVECTOR_H_ + +#include + +#include +#include +#include +#include + +#include +#include + + +#include "auryn_definitions.h" + + +namespace auryn { + + /*! \brief Auryn vector template + * + * Copies the core of GSL vector functionality + * */ + template + class AurynVector { + private: + friend class boost::serialization::access; + template + void serialize(Archive & ar, const unsigned int version) + { + ar & size; + for ( NeuronID i = 0 ; i < size ; ++i ) + ar & data[i]; + } + + + public: + NeuronID size; + T * data; + + /*! \brief Scales all vector elements by a. */ + void scale(AurynFloat a) { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] *= a; + } + } + + }; + + typedef AurynVector auryn_vector_float; //!< Reimplements a simplified version of the GSL vector. + + typedef AurynVector auryn_vector_ushort; //!< Reimplements a simplified version of the GSL vector for ushort. + + // Float vector functions + + /*! Allocates an auryn_vector_float */ + auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); + /*! Frees an auryn_vector_float */ + void auryn_vector_float_free (auryn_vector_float * v); + /*! Initializes an auryn_vector_float with zeros */ + void auryn_vector_float_set_zero (auryn_vector_float * v); + /*! Sets all elements in an auryn_vector_float to value x */ + void auryn_vector_float_set_all (auryn_vector_float * v, AurynFloat x); + + /*! \brief Copies vector src to dst assuming they have the same size. + * + * Otherwise this will lead to undefined results. No checking of size is + * performed for performance reasons. */ + void auryn_vector_float_copy (auryn_vector_float * src, auryn_vector_float * dst ); + + /*! Auryn vector getter */ + AurynFloat auryn_vector_float_get (const auryn_vector_float * v, const NeuronID i); + + /*! Auryn vector setter */ + void auryn_vector_float_set (auryn_vector_float * v, const NeuronID i, AurynFloat x); + + /*! Auryn vector gets pointer to designed element. */ + AurynFloat * auryn_vector_float_ptr (const auryn_vector_float * v, const NeuronID i); + + /*! Internal version of auryn_vector_float_mul of gsl operations */ + void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b); + + /*! \brief Computes a := a + b + * + * Internal version of auryn_vector_float_add between a constant and a vector */ + void auryn_vector_float_add_constant( auryn_vector_float * a, float b ); + + /*! Computes y := a*x+y + * + * Internal SAXPY version */ + void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ); + /*! Internal version to scale a vector with a constant b */ + void auryn_vector_float_scale(const float a, const auryn_vector_float * b ); + /*! Internal version to clip all the elements of a vector between [a:b] */ + void auryn_vector_float_clip(auryn_vector_float * v, const float a , const float b ); + + /*! Internal version to clip all the elements of a vector between [a:0] */ + void auryn_vector_float_clip(auryn_vector_float * v, const float a ); + + /*! \brief Internal version of to add GSL vectors. + * + * Add vectors a and b and store the result in a. */ + void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b); + + /*! \brief Computes a := a-b + * + * Internal version of to subtract GSL vectors. */ + void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b); + + /*! \brief Computes r := a-b */ + void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r); + + + + // ushort vector functions + /*! Allocates an auryn_vector_ushort */ + auryn_vector_ushort * auryn_vector_ushort_alloc(const NeuronID n); + /*! Frees an auryn_vector_ushort */ + void auryn_vector_ushort_free (auryn_vector_ushort * v); + /*! Initializes an auryn_vector_ushort with zeros */ + void auryn_vector_ushort_set_zero (auryn_vector_ushort * v); + /*! Sets all elements in an auryn_vector_ushort to value x */ + void auryn_vector_ushort_set_all (auryn_vector_ushort * v, unsigned short x); + /*! Copies vector src to dst assuming they have the same size. + * Otherwise this will lead to undefined results. No checking of size is + * performed for performance reasons. */ + void auryn_vector_ushort_copy (auryn_vector_ushort * src, auryn_vector_ushort * dst ); + /*! Auryn vector getter */ + unsigned short auryn_vector_ushort_get (const auryn_vector_ushort * v, const NeuronID i); + /*! Auryn vector setter */ + void auryn_vector_ushort_set (auryn_vector_ushort * v, const NeuronID i, unsigned short x); + /*! Auryn vector gets pointer to designed element. */ + unsigned short * auryn_vector_ushort_ptr (const auryn_vector_ushort * v, const NeuronID i); + +} + + +#endif /*AURYNVECTOR_H_*/ diff --git a/src/EulerTrace.h b/src/EulerTrace.h index 769ac657..19d96926 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -27,6 +27,7 @@ #define EULERTRACE_H_ #include "auryn_definitions.h" +#include "AurynVector.h" namespace auryn { diff --git a/src/TIFGroup.cpp b/src/TIFGroup.cpp index 64b56560..d0abbef7 100644 --- a/src/TIFGroup.cpp +++ b/src/TIFGroup.cpp @@ -112,8 +112,10 @@ void TIFGroup::evolve() } - auryn_vector_float_scale(scale_ampa,g_ampa); - auryn_vector_float_scale(scale_gaba,g_gaba); + // auryn_vector_float_scale(scale_ampa,g_ampa); + g_ampa->scale(scale_ampa); + // auryn_vector_float_scale(scale_gaba,g_gaba); + g_gaba->scale(scale_gaba); } void TIFGroup::set_bg_current(NeuronID i, AurynFloat current) { diff --git a/src/auryn.h b/src/auryn.h index 225751d1..909dfd07 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -43,6 +43,7 @@ #include "SyncBuffer.h" #include "Logger.h" #include "SpikeDelay.h" +#include "AurynVector.h" // Trace definitions #include "LinearTrace.h" diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index 27f6d679..f86baadc 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -51,306 +51,6 @@ NeuronID calculate_vector_size(NeuronID i) return i+(SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS-i%SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS); } -inline __m128 sse_load( float * i ) -{ -#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS - return _mm_load_ps( i ); -#else - return _mm_loadu_ps( i ); -#endif -} - -inline void sse_store( float * i, __m128 d ) -{ -#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS - _mm_store_ps( i, d ); -#else - _mm_storeu_ps( i, d ); -#endif -} - -void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = a->data[0:a->size:1] * b->data[0:b->size:1]; - #else - float * bd = b->data; - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( i ); - __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_mul_ps(chunk_a, chunk_b); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] *= b->data[i]; - } -#endif -} - -void auryn_vector_float_add_constant( auryn_vector_float * a, const float b ) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = b + a->data[0:a->size:1]; - #else - const __m128 scalar = _mm_set1_ps(b); - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - // _mm_prefetch((i + SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS), _MM_HINT_NTA); - __m128 chunk = sse_load( i ); - __m128 result = _mm_add_ps(chunk, scalar); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] += b; - } -#endif -} - -void auryn_vector_float_scale( const float a, const auryn_vector_float * b ) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - b->data[0:b->size:1] = a * b->data[0:b->size:1]; - #else - const __m128 scalar = _mm_set1_ps(a); - for ( float * i = b->data ; i != b->data+b->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( i ); - __m128 result = _mm_mul_ps(chunk, scalar); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < b->size ; ++i ) { - b->data[i] *= a; - } -#endif /* CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY */ -} - -void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - y->data[0:y->size:1] = a * x->data[0:x->size:1] + y->data[0:y->size:1]; - #else - float * xp = x->data; - const __m128 alpha = _mm_set1_ps(a); - for ( float * i = y->data ; i < y->data+y->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( xp ); xp += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_mul_ps( alpha, chunk ); - - chunk = sse_load( i ); - result = _mm_add_ps( result, chunk ); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < y->size ; ++i ) { - y->data[i] += a * x->data[i]; - } -#endif -} - -void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = a->data[0:a->size:1] + b->data[0:b->size:1]; - #else - float * bd = b->data; - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( i ); - __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_add_ps(chunk_a, chunk_b); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] += b->data[i]; - } -#endif -} - -void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = a->data[0:a->size:1] - b->data[0:b->size:1]; - #else - float * bd = b->data; - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( i ); - __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_sub_ps(chunk_a, chunk_b); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] -= b->data[i]; - } -#endif -} - -void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - float * bd = b->data; - for ( NeuronID i = 0 ; i < a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( a->data+i ); - __m128 chunk_b = sse_load( b->data+i ); - __m128 result = _mm_sub_ps(chunk_a, chunk_b); - sse_store( r->data+i, result ); - } -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - r->data[i] = a->data[i] - b->data[i]; - } -#endif -} - -void auryn_vector_float_clip( auryn_vector_float * v, const float a, const float b ) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - for ( NeuronID i = 0 ; i < v->size ; ++i ) { - if ( v->data[i] < a ) { - v->data[i] = a; - } else - if ( v->data[i] > b ) - v->data[i] = b; - } - #else - const __m128 lo = _mm_set1_ps(a); - const __m128 hi = _mm_set1_ps(b); - for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( i ); - __m128 result = _mm_min_ps(chunk, hi); - result = _mm_max_ps(result, lo); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < v->size ; ++i ) { - if ( v->data[i] < a ) { - v->data[i] = a; - } else - if ( v->data[i] > b ) - v->data[i] = b; - } -#endif -} - -void auryn_vector_float_clip( auryn_vector_float * v, const float a ) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - auryn_vector_float_clip( v, a, 1e16 ); - #else - const __m128 lo = _mm_set1_ps(a); - const __m128 hi = _mm_set1_ps(0.); - for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( i ); - __m128 result = _mm_min_ps(chunk, hi); - result = _mm_max_ps(result, lo); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - auryn_vector_float_clip( v, a, 1e16 ); -#endif -} - -auryn_vector_float * auryn_vector_float_alloc( const NeuronID n ) { - AurynFloat * data = new AurynFloat [n]; - auryn_vector_float * vec = new auryn_vector_float(); - vec->size = n; - vec->data = data; - return vec; -} - -void auryn_vector_float_free ( auryn_vector_float * v ) { - delete [] v->data; - delete v; -} - -void auryn_vector_float_set_all ( auryn_vector_float * v, AurynFloat x ) { - for ( NeuronID i = 0 ; i < v->size ; ++ i ) - v->data[i] = x; -} - -void auryn_vector_float_set_zero ( auryn_vector_float * v ) { - auryn_vector_float_set_all(v, 0.0); -} - -AurynFloat auryn_vector_float_get ( const auryn_vector_float * v, const NeuronID i ) { - return v->data[i]; -} -AurynFloat * auryn_vector_float_ptr ( const auryn_vector_float * v, const NeuronID i ) { - return v->data+i; -} - -void auryn_vector_float_set ( auryn_vector_float * v, const NeuronID i, AurynFloat x ) { - v->data[i] = x; -} - -void auryn_vector_float_copy ( auryn_vector_float * src, auryn_vector_float * dst ) { - // TODO make this a fast memcpy - for ( NeuronID i = 0 ; i < dst->size ; ++i ) - dst->data[i] = src->data[i]; -} - - -auryn_vector_ushort * auryn_vector_ushort_alloc( const NeuronID n ) { - unsigned short * data = new unsigned short [n]; - auryn_vector_ushort * vec = new auryn_vector_ushort(); - vec->size = n; - vec->data = data; - return vec; -} - -void auryn_vector_ushort_free ( auryn_vector_ushort * v ) { - delete [] v->data; - delete v; -} - -void auryn_vector_ushort_set_all ( auryn_vector_ushort * v, unsigned short x ) { - for ( NeuronID i = 0 ; i < v->size ; ++ i ) - v->data[i] = x; -} - -void auryn_vector_ushort_set_zero ( auryn_vector_ushort * v ) { - auryn_vector_ushort_set_all(v, 0); -} - -unsigned short auryn_vector_ushort_get ( const auryn_vector_ushort * v, const NeuronID i ) { - return v->data[i]; -} - -unsigned short * auryn_vector_ushort_ptr ( const auryn_vector_ushort * v, const NeuronID i ) { - return v->data+i; -} - -void auryn_vector_ushort_set ( auryn_vector_ushort * v, const NeuronID i, unsigned short x ) { - v->data[i] = x; -} - -void auryn_vector_ushort_copy ( auryn_vector_ushort * src, auryn_vector_ushort * dst ) { - for ( NeuronID i = 0 ; i < dst->size ; ++i ) - dst->data[i] = src->data[i]; -} } diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 216b0c54..983e150b 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -36,6 +36,7 @@ #include + #ifndef CODE_ACTIVATE_CILK_INSTRUCTIONS #include // SIMD intrinsics #else // XMM registers are not supported on the phi platform @@ -153,24 +154,7 @@ namespace auryn { typedef std::vector AttributeContainer; //!< Attribute container type. Used for storing spike attributes that are needed for efficient STP implementations. - //! Auryn vector template -- copies the core of GSL vector functionality - template - struct auryn_vector { - NeuronID size; - T * data; - - template - void serialize(Archive & ar, const unsigned int version) - { - ar & size; - for ( NeuronID i = 0 ; i < size ; ++i ) - ar & data[i]; - } - }; - - typedef auryn_vector auryn_vector_float; //!< Reimplements a simplified version of the GSL vector. - typedef auryn_vector auryn_vector_ushort; //!< Reimplements a simplified version of the GSL vector for ushort. struct neuron_pair { NeuronID i,j; @@ -195,86 +179,6 @@ namespace auryn { NeuronID calculate_vector_size(NeuronID i); - // Float vector functions - - /*! Allocates an auryn_vector_float */ - auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); - /*! Frees an auryn_vector_float */ - void auryn_vector_float_free (auryn_vector_float * v); - /*! Initializes an auryn_vector_float with zeros */ - void auryn_vector_float_set_zero (auryn_vector_float * v); - /*! Sets all elements in an auryn_vector_float to value x */ - void auryn_vector_float_set_all (auryn_vector_float * v, AurynFloat x); - - /*! \brief Copies vector src to dst assuming they have the same size. - * - * Otherwise this will lead to undefined results. No checking of size is - * performed for performance reasons. */ - void auryn_vector_float_copy (auryn_vector_float * src, auryn_vector_float * dst ); - - /*! Auryn vector getter */ - AurynFloat auryn_vector_float_get (const auryn_vector_float * v, const NeuronID i); - - /*! Auryn vector setter */ - void auryn_vector_float_set (auryn_vector_float * v, const NeuronID i, AurynFloat x); - - /*! Auryn vector gets pointer to designed element. */ - AurynFloat * auryn_vector_float_ptr (const auryn_vector_float * v, const NeuronID i); - - /*! Internal version of auryn_vector_float_mul of gsl operations */ - void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b); - - /*! \brief Computes a := a + b - * - * Internal version of auryn_vector_float_add between a constant and a vector */ - void auryn_vector_float_add_constant( auryn_vector_float * a, float b ); - - /*! Computes y := a*x+y - * - * Internal SAXPY version */ - void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ); - /*! Internal version to scale a vector with a constant b */ - void auryn_vector_float_scale(const float a, const auryn_vector_float * b ); - /*! Internal version to clip all the elements of a vector between [a:b] */ - void auryn_vector_float_clip(auryn_vector_float * v, const float a , const float b ); - - /*! Internal version to clip all the elements of a vector between [a:0] */ - void auryn_vector_float_clip(auryn_vector_float * v, const float a ); - - /*! \brief Internal version of to add GSL vectors. - * - * Add vectors a and b and store the result in a. */ - void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b); - - /*! \brief Computes a := a-b - * - * Internal version of to subtract GSL vectors. */ - void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b); - - /*! \brief Computes r := a-b */ - void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r); - - - - // ushort vector functions - /*! Allocates an auryn_vector_ushort */ - auryn_vector_ushort * auryn_vector_ushort_alloc(const NeuronID n); - /*! Frees an auryn_vector_ushort */ - void auryn_vector_ushort_free (auryn_vector_ushort * v); - /*! Initializes an auryn_vector_ushort with zeros */ - void auryn_vector_ushort_set_zero (auryn_vector_ushort * v); - /*! Sets all elements in an auryn_vector_ushort to value x */ - void auryn_vector_ushort_set_all (auryn_vector_ushort * v, unsigned short x); - /*! Copies vector src to dst assuming they have the same size. - * Otherwise this will lead to undefined results. No checking of size is - * performed for performance reasons. */ - void auryn_vector_ushort_copy (auryn_vector_ushort * src, auryn_vector_ushort * dst ); - /*! Auryn vector getter */ - unsigned short auryn_vector_ushort_get (const auryn_vector_ushort * v, const NeuronID i); - /*! Auryn vector setter */ - void auryn_vector_ushort_set (auryn_vector_ushort * v, const NeuronID i, unsigned short x); - /*! Auryn vector gets pointer to designed element. */ - unsigned short * auryn_vector_ushort_ptr (const auryn_vector_ushort * v, const NeuronID i); /*! Auryn spike event for binary monitors */ struct SpikeEvent_type { From ff42657a68cd1bcc71d0075e4296ba0bdf351bca Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 3 May 2016 15:37:44 +0200 Subject: [PATCH 091/460] Implements some class functions in AurynVector --- src/AurynVector.cpp | 25 ++++++------------------- src/AurynVector.h | 38 ++++++++++++++++++++++++++++++++++++-- 2 files changed, 42 insertions(+), 21 deletions(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index edf01444..5a80feed 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -27,7 +27,6 @@ using namespace auryn; - inline __m128 sse_load( float * i ) { #ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS @@ -251,25 +250,19 @@ void auryn_vector_float_clip( auryn_vector_float * v, const float a ) { } auryn_vector_float * auryn_vector_float_alloc( const NeuronID n ) { - AurynFloat * data = new AurynFloat [n]; - auryn_vector_float * vec = new auryn_vector_float(); - vec->size = n; - vec->data = data; - return vec; + return new auryn_vector_float(n); } void auryn_vector_float_free ( auryn_vector_float * v ) { - delete [] v->data; delete v; } void auryn_vector_float_set_all ( auryn_vector_float * v, AurynFloat x ) { - for ( NeuronID i = 0 ; i < v->size ; ++ i ) - v->data[i] = x; + v->set_all(x); } void auryn_vector_float_set_zero ( auryn_vector_float * v ) { - auryn_vector_float_set_all(v, 0.0); + v->set_zero(); } AurynFloat auryn_vector_float_get ( const auryn_vector_float * v, const NeuronID i ) { @@ -292,25 +285,19 @@ void auryn_vector_float_copy ( auryn_vector_float * src, auryn_vector_float * ds auryn_vector_ushort * auryn_vector_ushort_alloc( const NeuronID n ) { - unsigned short * data = new unsigned short [n]; - auryn_vector_ushort * vec = new auryn_vector_ushort(); - vec->size = n; - vec->data = data; - return vec; + return new auryn_vector_ushort(n); } void auryn_vector_ushort_free ( auryn_vector_ushort * v ) { - delete [] v->data; delete v; } void auryn_vector_ushort_set_all ( auryn_vector_ushort * v, unsigned short x ) { - for ( NeuronID i = 0 ; i < v->size ; ++ i ) - v->data[i] = x; + v->set_all(x); } void auryn_vector_ushort_set_zero ( auryn_vector_ushort * v ) { - auryn_vector_ushort_set_all(v, 0); + v->set_zero(); } unsigned short auryn_vector_ushort_get ( const auryn_vector_ushort * v, const NeuronID i ) { diff --git a/src/AurynVector.h b/src/AurynVector.h index cc3f5d98..e2cc1ed9 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -63,8 +63,37 @@ namespace auryn { NeuronID size; T * data; + /*! \brief Default constructor */ + AurynVector(NeuronID n) + { + T * data = new T [n]; + size = n; + data = data; + } + + /*! \brief Default destructor */ + ~AurynVector() + { + delete data; + } + + /*! \brief Set all elements to value v. */ + void set_all(T v) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] = v; + } + } + + /*! \brief Set all elements to zero. */ + void set_zero(T v) + { + set_all(0.0); + } + /*! \brief Scales all vector elements by a. */ - void scale(AurynFloat a) { + void scale(AurynFloat a) + { for ( NeuronID i = 0 ; i < size ; ++i ) { data[i] *= a; } @@ -76,14 +105,17 @@ namespace auryn { typedef AurynVector auryn_vector_ushort; //!< Reimplements a simplified version of the GSL vector for ushort. - // Float vector functions + // Float vector legacy functions /*! Allocates an auryn_vector_float */ auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); + /*! Frees an auryn_vector_float */ void auryn_vector_float_free (auryn_vector_float * v); + /*! Initializes an auryn_vector_float with zeros */ void auryn_vector_float_set_zero (auryn_vector_float * v); + /*! Sets all elements in an auryn_vector_float to value x */ void auryn_vector_float_set_all (auryn_vector_float * v, AurynFloat x); @@ -144,8 +176,10 @@ namespace auryn { void auryn_vector_ushort_free (auryn_vector_ushort * v); /*! Initializes an auryn_vector_ushort with zeros */ void auryn_vector_ushort_set_zero (auryn_vector_ushort * v); + /*! Sets all elements in an auryn_vector_ushort to value x */ void auryn_vector_ushort_set_all (auryn_vector_ushort * v, unsigned short x); + /*! Copies vector src to dst assuming they have the same size. * Otherwise this will lead to undefined results. No checking of size is * performed for performance reasons. */ From f616cec3ab0655ef1e3bbb7805767f9cd6d45e87 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 3 May 2016 16:00:46 +0200 Subject: [PATCH 092/460] Fixes bug in AurynVector --- src/AurynVector.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index e2cc1ed9..688b0257 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -38,6 +38,7 @@ #include "auryn_definitions.h" +#include "AurynVector.h" namespace auryn { @@ -86,7 +87,7 @@ namespace auryn { } /*! \brief Set all elements to zero. */ - void set_zero(T v) + void set_zero() { set_all(0.0); } From 97de0be19b29e2af705e398453656864a0d0910b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 3 May 2016 16:00:54 +0200 Subject: [PATCH 093/460] Includes AurynVector class separately --- src/ABSConnection.h | 1 + src/AIF2Group.h | 1 + src/AIFGroup.h | 1 + src/AdExGroup.h | 1 + src/AmpaMonitor.h | 1 + src/AuditoryBeepGroup.h | 1 + src/BinarySpikeMonitor.h | 1 + src/Checker.h | 1 + src/ComplexMatrix.h | 1 + src/Connection.h | 1 + src/CorrelatedPoissonGroup.h | 1 + src/CubaIFGroup.h | 1 + src/CurrentInjector.h | 1 + src/DelayedSpikeMonitor.h | 1 + src/DuplexConnection.h | 1 + src/EulerTrace.h | 1 + src/FileInputGroup.h | 1 + src/FileModulatedPoissonGroup.h | 1 + src/GabaMonitor.h | 1 + src/IFGroup.h | 1 + src/IafPscDeltaGroup.h | 1 + src/IdentityConnection.h | 1 + src/LPTripletConnection.h | 1 + src/LinearTrace.h | 1 + src/Monitor.h | 1 + src/MovingBumpGroup.h | 1 + src/NeuronGroup.h | 1 + src/NmdaMonitor.h | 1 + src/NormalStimulator.h | 1 + src/PairInteractionConnection.h | 1 + src/PatternMonitor.h | 1 + src/PatternStimulator.h | 1 + src/PoissonGroup.h | 1 + src/PoissonStimulator.h | 1 + src/PopulationRateMonitor.h | 1 + src/ProfilePoissonGroup.h | 1 + src/RateChecker.h | 1 + src/RateModulatedConnection.h | 1 + src/RateMonitor.h | 1 + src/RealTimeMonitor.h | 1 + src/SIFGroup.h | 1 + src/STDPConnection.h | 1 + src/STDPwdConnection.h | 1 + src/STPConnection.h | 1 + src/SparseConnection.h | 1 + src/SpikeDelay.h | 1 + src/SpikeMonitor.h | 1 + src/SpikingGroup.h | 1 + src/StateMonitor.h | 1 + src/StimulusGroup.h | 1 + src/StructuredPoissonGroup.h | 1 + src/SymmetricSTDPConnection.h | 1 + src/SyncBuffer.h | 1 + src/System.h | 1 + src/TIFGroup.h | 1 + src/TripletConnection.h | 1 + src/TripletDecayConnection.h | 1 + src/TripletScalingConnection.h | 1 + src/VoltageMonitor.h | 1 + src/WeightChecker.h | 1 + src/WeightMatrixMonitor.h | 1 + src/WeightMonitor.h | 1 + src/WeightPatternMonitor.h | 1 + src/WeightStatsMonitor.h | 1 + src/WeightSumMonitor.h | 1 + src/auryn.h | 2 +- src/auryn_definitions.h | 1 + 67 files changed, 67 insertions(+), 1 deletion(-) diff --git a/src/ABSConnection.h b/src/ABSConnection.h index f17bdd1a..2412201d 100644 --- a/src/ABSConnection.h +++ b/src/ABSConnection.h @@ -31,6 +31,7 @@ #define ABS_VOLTAGE_CURVE_MAX -40e-3 #include "auryn_definitions.h" +#include "AurynVector.h" #include "DuplexConnection.h" #include "EulerTrace.h" diff --git a/src/AIF2Group.h b/src/AIF2Group.h index d7c2d373..30c77298 100644 --- a/src/AIF2Group.h +++ b/src/AIF2Group.h @@ -27,6 +27,7 @@ #define AIF2GROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "AIFGroup.h" #include "System.h" diff --git a/src/AIFGroup.h b/src/AIFGroup.h index a6a99b2b..f0d23306 100644 --- a/src/AIFGroup.h +++ b/src/AIFGroup.h @@ -27,6 +27,7 @@ #define AIFGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "NeuronGroup.h" #include "System.h" diff --git a/src/AdExGroup.h b/src/AdExGroup.h index f862d9ac..75c38e7b 100644 --- a/src/AdExGroup.h +++ b/src/AdExGroup.h @@ -27,6 +27,7 @@ #define ADEXGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "NeuronGroup.h" #include "System.h" diff --git a/src/AmpaMonitor.h b/src/AmpaMonitor.h index 35a5b010..97cd7ab0 100644 --- a/src/AmpaMonitor.h +++ b/src/AmpaMonitor.h @@ -27,6 +27,7 @@ #define AMPAMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "Connection.h" diff --git a/src/AuditoryBeepGroup.h b/src/AuditoryBeepGroup.h index 174411bc..ffbde16d 100644 --- a/src/AuditoryBeepGroup.h +++ b/src/AuditoryBeepGroup.h @@ -27,6 +27,7 @@ #define AUDITORYBEEPGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SpikingGroup.h" #include "ProfilePoissonGroup.h" diff --git a/src/BinarySpikeMonitor.h b/src/BinarySpikeMonitor.h index f4d3716e..b7611152 100644 --- a/src/BinarySpikeMonitor.h +++ b/src/BinarySpikeMonitor.h @@ -28,6 +28,7 @@ #define BINARYSPIKEMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "SpikingGroup.h" #include "Monitor.h" #include "System.h" diff --git a/src/Checker.h b/src/Checker.h index b9fe59f6..4611c7a2 100644 --- a/src/Checker.h +++ b/src/Checker.h @@ -27,6 +27,7 @@ #define CHECKER_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "SpikingGroup.h" namespace auryn { diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 2b841a15..e3dc88d2 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -28,6 +28,7 @@ #include "auryn_global.h" #include "auryn_definitions.h" +#include "AurynVector.h" #include #include diff --git a/src/Connection.h b/src/Connection.h index a6a33e29..51b2a73a 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -29,6 +29,7 @@ #include #include "auryn_definitions.h" +#include "AurynVector.h" #include "SpikingGroup.h" #include "NeuronGroup.h" diff --git a/src/CorrelatedPoissonGroup.h b/src/CorrelatedPoissonGroup.h index e9ee5252..5a7ef909 100644 --- a/src/CorrelatedPoissonGroup.h +++ b/src/CorrelatedPoissonGroup.h @@ -27,6 +27,7 @@ #define CORRELATEDPOISSONGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SpikingGroup.h" diff --git a/src/CubaIFGroup.h b/src/CubaIFGroup.h index e0884c5f..6d31087b 100644 --- a/src/CubaIFGroup.h +++ b/src/CubaIFGroup.h @@ -27,6 +27,7 @@ #define CUBAIFGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "NeuronGroup.h" #include "System.h" diff --git a/src/CurrentInjector.h b/src/CurrentInjector.h index a512c355..65cdb105 100644 --- a/src/CurrentInjector.h +++ b/src/CurrentInjector.h @@ -27,6 +27,7 @@ #define CURRENTINJECTOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "Logger.h" #include "Monitor.h" diff --git a/src/DelayedSpikeMonitor.h b/src/DelayedSpikeMonitor.h index 92183316..dd825365 100644 --- a/src/DelayedSpikeMonitor.h +++ b/src/DelayedSpikeMonitor.h @@ -27,6 +27,7 @@ #define DELAYEDSPIKEMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "SpikingGroup.h" #include "Monitor.h" #include "System.h" diff --git a/src/DuplexConnection.h b/src/DuplexConnection.h index c3e11983..8ee73f58 100644 --- a/src/DuplexConnection.h +++ b/src/DuplexConnection.h @@ -27,6 +27,7 @@ #define DUPLEXCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "SparseConnection.h" #include "SimpleMatrix.h" diff --git a/src/EulerTrace.h b/src/EulerTrace.h index 19d96926..b3bab5d8 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -28,6 +28,7 @@ #include "auryn_definitions.h" #include "AurynVector.h" +#include "AurynVector.h" namespace auryn { diff --git a/src/FileInputGroup.h b/src/FileInputGroup.h index 0fd66ed7..2e783796 100644 --- a/src/FileInputGroup.h +++ b/src/FileInputGroup.h @@ -30,6 +30,7 @@ #include #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SpikingGroup.h" diff --git a/src/FileModulatedPoissonGroup.h b/src/FileModulatedPoissonGroup.h index 96eca240..62c1e227 100644 --- a/src/FileModulatedPoissonGroup.h +++ b/src/FileModulatedPoissonGroup.h @@ -27,6 +27,7 @@ #define FILEMODULATEDGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SpikingGroup.h" #include "PoissonGroup.h" diff --git a/src/GabaMonitor.h b/src/GabaMonitor.h index a75feba8..dcb88c31 100644 --- a/src/GabaMonitor.h +++ b/src/GabaMonitor.h @@ -27,6 +27,7 @@ #define GABAMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "Connection.h" diff --git a/src/IFGroup.h b/src/IFGroup.h index eff24623..79b3de25 100644 --- a/src/IFGroup.h +++ b/src/IFGroup.h @@ -27,6 +27,7 @@ #define IFGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "NeuronGroup.h" #include "System.h" diff --git a/src/IafPscDeltaGroup.h b/src/IafPscDeltaGroup.h index f0d3d255..3ff79833 100644 --- a/src/IafPscDeltaGroup.h +++ b/src/IafPscDeltaGroup.h @@ -27,6 +27,7 @@ #define IAFPSCDELTAGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "NeuronGroup.h" #include "System.h" diff --git a/src/IdentityConnection.h b/src/IdentityConnection.h index 7020b300..26f8445c 100644 --- a/src/IdentityConnection.h +++ b/src/IdentityConnection.h @@ -27,6 +27,7 @@ #define IDENTITYCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Connection.h" #include "System.h" diff --git a/src/LPTripletConnection.h b/src/LPTripletConnection.h index 297a6dc2..500c975d 100644 --- a/src/LPTripletConnection.h +++ b/src/LPTripletConnection.h @@ -27,6 +27,7 @@ #define LPTRIPLETCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "DuplexConnection.h" #include "EulerTrace.h" #include "LinearTrace.h" diff --git a/src/LinearTrace.h b/src/LinearTrace.h index ee1852bf..83ed3593 100644 --- a/src/LinearTrace.h +++ b/src/LinearTrace.h @@ -27,6 +27,7 @@ #define LINEARTRACE_H_ #include "auryn_definitions.h" +#include "AurynVector.h" namespace auryn { diff --git a/src/Monitor.h b/src/Monitor.h index 128d7ca1..8a6c43e5 100644 --- a/src/Monitor.h +++ b/src/Monitor.h @@ -27,6 +27,7 @@ #define MONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include #include diff --git a/src/MovingBumpGroup.h b/src/MovingBumpGroup.h index ef54f52a..02315d19 100644 --- a/src/MovingBumpGroup.h +++ b/src/MovingBumpGroup.h @@ -27,6 +27,7 @@ #define MOVINGBUMPGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SpikingGroup.h" #include "ProfilePoissonGroup.h" diff --git a/src/NeuronGroup.h b/src/NeuronGroup.h index 7b58f347..4ee7ae60 100644 --- a/src/NeuronGroup.h +++ b/src/NeuronGroup.h @@ -27,6 +27,7 @@ #define NEURONGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "SpikingGroup.h" #include diff --git a/src/NmdaMonitor.h b/src/NmdaMonitor.h index ddf095ed..6d250417 100644 --- a/src/NmdaMonitor.h +++ b/src/NmdaMonitor.h @@ -27,6 +27,7 @@ #define NMDAMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "Connection.h" diff --git a/src/NormalStimulator.h b/src/NormalStimulator.h index 48e0e02c..029d03f7 100644 --- a/src/NormalStimulator.h +++ b/src/NormalStimulator.h @@ -22,6 +22,7 @@ #define NORMALSTIMULATOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "Logger.h" #include "Monitor.h" diff --git a/src/PairInteractionConnection.h b/src/PairInteractionConnection.h index 12b04daa..41fe165d 100644 --- a/src/PairInteractionConnection.h +++ b/src/PairInteractionConnection.h @@ -24,6 +24,7 @@ #define WINDOW_MAX_SIZE 60000 #include "auryn_definitions.h" +#include "AurynVector.h" #include "DuplexConnection.h" #include "EulerTrace.h" diff --git a/src/PatternMonitor.h b/src/PatternMonitor.h index 45399090..dad9c287 100644 --- a/src/PatternMonitor.h +++ b/src/PatternMonitor.h @@ -27,6 +27,7 @@ #define PATTERNMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "SpikingGroup.h" diff --git a/src/PatternStimulator.h b/src/PatternStimulator.h index 2232a018..9348dc39 100644 --- a/src/PatternStimulator.h +++ b/src/PatternStimulator.h @@ -27,6 +27,7 @@ #define PATTERNSTIMULATOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "Monitor.h" #include "NeuronGroup.h" diff --git a/src/PoissonGroup.h b/src/PoissonGroup.h index ebe05997..fe352d93 100644 --- a/src/PoissonGroup.h +++ b/src/PoissonGroup.h @@ -27,6 +27,7 @@ #define POISSONGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SpikingGroup.h" diff --git a/src/PoissonStimulator.h b/src/PoissonStimulator.h index 44e01be4..1bb09d87 100644 --- a/src/PoissonStimulator.h +++ b/src/PoissonStimulator.h @@ -27,6 +27,7 @@ #define POISSONSTIMULATOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "Logger.h" #include "Monitor.h" diff --git a/src/PopulationRateMonitor.h b/src/PopulationRateMonitor.h index 77a8348a..185d1fd8 100644 --- a/src/PopulationRateMonitor.h +++ b/src/PopulationRateMonitor.h @@ -27,6 +27,7 @@ #define POPULATIONRATEMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "SpikingGroup.h" diff --git a/src/ProfilePoissonGroup.h b/src/ProfilePoissonGroup.h index d69ec03a..b3ca31e9 100644 --- a/src/ProfilePoissonGroup.h +++ b/src/ProfilePoissonGroup.h @@ -27,6 +27,7 @@ #define PROFILEPOISSONGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SpikingGroup.h" diff --git a/src/RateChecker.h b/src/RateChecker.h index 92ca7122..1feab15d 100644 --- a/src/RateChecker.h +++ b/src/RateChecker.h @@ -27,6 +27,7 @@ #define RATECHECKER_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "Checker.h" #include "SpikingGroup.h" diff --git a/src/RateModulatedConnection.h b/src/RateModulatedConnection.h index fe78a262..b3dd2a77 100644 --- a/src/RateModulatedConnection.h +++ b/src/RateModulatedConnection.h @@ -27,6 +27,7 @@ #define RATEMODULATEDCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "SparseConnection.h" #include "SimpleMatrix.h" diff --git a/src/RateMonitor.h b/src/RateMonitor.h index 07e136f1..83794333 100644 --- a/src/RateMonitor.h +++ b/src/RateMonitor.h @@ -27,6 +27,7 @@ #define RATEMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "SpikingGroup.h" diff --git a/src/RealTimeMonitor.h b/src/RealTimeMonitor.h index a2951ac9..ea6c032e 100644 --- a/src/RealTimeMonitor.h +++ b/src/RealTimeMonitor.h @@ -27,6 +27,7 @@ #define REALTIMEMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "SpikingGroup.h" diff --git a/src/SIFGroup.h b/src/SIFGroup.h index dbd67a15..80edaee8 100644 --- a/src/SIFGroup.h +++ b/src/SIFGroup.h @@ -22,6 +22,7 @@ #define SIFGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "NeuronGroup.h" #include "System.h" diff --git a/src/STDPConnection.h b/src/STDPConnection.h index db6bf37b..b889bac9 100644 --- a/src/STDPConnection.h +++ b/src/STDPConnection.h @@ -22,6 +22,7 @@ #define STDPCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "DuplexConnection.h" #include "EulerTrace.h" #include "LinearTrace.h" diff --git a/src/STDPwdConnection.h b/src/STDPwdConnection.h index cb8a536c..66894d11 100644 --- a/src/STDPwdConnection.h +++ b/src/STDPwdConnection.h @@ -27,6 +27,7 @@ #define STDPWDCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "DuplexConnection.h" #include "EulerTrace.h" #include "LinearTrace.h" diff --git a/src/STPConnection.h b/src/STPConnection.h index 4dd6200e..19821626 100644 --- a/src/STPConnection.h +++ b/src/STPConnection.h @@ -27,6 +27,7 @@ #define STPCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "SparseConnection.h" diff --git a/src/SparseConnection.h b/src/SparseConnection.h index e9241154..2f44fdfb 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -27,6 +27,7 @@ #define SPARSECONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Connection.h" #include "System.h" #include "ComplexMatrix.h" diff --git a/src/SpikeDelay.h b/src/SpikeDelay.h index c9f8acb0..6525f79b 100644 --- a/src/SpikeDelay.h +++ b/src/SpikeDelay.h @@ -27,6 +27,7 @@ #define SPIKEDELAY_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include #include diff --git a/src/SpikeMonitor.h b/src/SpikeMonitor.h index 0e6d18fd..71b07820 100644 --- a/src/SpikeMonitor.h +++ b/src/SpikeMonitor.h @@ -27,6 +27,7 @@ #define SPIKEMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "SpikingGroup.h" #include "Monitor.h" #include "System.h" diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 84f48c17..48a03a4b 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -27,6 +27,7 @@ #define SPIKINGGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" // #include "SpikeContainer.h" #include "SpikeDelay.h" #include "EulerTrace.h" diff --git a/src/StateMonitor.h b/src/StateMonitor.h index 5f41135b..04bb5533 100644 --- a/src/StateMonitor.h +++ b/src/StateMonitor.h @@ -27,6 +27,7 @@ #define STATEMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "Connection.h" diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index c5f90c1c..6bd14667 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -28,6 +28,7 @@ #define STIMULUSGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SpikingGroup.h" diff --git a/src/StructuredPoissonGroup.h b/src/StructuredPoissonGroup.h index c6c567ea..8a5006b1 100644 --- a/src/StructuredPoissonGroup.h +++ b/src/StructuredPoissonGroup.h @@ -27,6 +27,7 @@ #define STRUCTUREDPOISSONGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SpikingGroup.h" #include "PoissonGroup.h" diff --git a/src/SymmetricSTDPConnection.h b/src/SymmetricSTDPConnection.h index 2f4f8525..70b4b132 100644 --- a/src/SymmetricSTDPConnection.h +++ b/src/SymmetricSTDPConnection.h @@ -27,6 +27,7 @@ #define SYMMETRICSTDPCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "DuplexConnection.h" #include "EulerTrace.h" #include "LinearTrace.h" diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index aa5b1a0a..af0a7bcc 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -30,6 +30,7 @@ #define SYNCBUFFER_SIZE_HIST_LEN 512 //!< Accumulate history over this number of timesteps before updating the sendbuffer size in the absence of overflows #include "auryn_definitions.h" +#include "AurynVector.h" #include "SpikeDelay.h" #include #include diff --git a/src/System.h b/src/System.h index cd4952ca..ffe1d0c7 100644 --- a/src/System.h +++ b/src/System.h @@ -27,6 +27,7 @@ #define SYSTEM_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "SpikingGroup.h" #include "Connection.h" #include "Monitor.h" diff --git a/src/TIFGroup.h b/src/TIFGroup.h index 6e2b73e8..c3f6dec5 100644 --- a/src/TIFGroup.h +++ b/src/TIFGroup.h @@ -27,6 +27,7 @@ #define TIFGROUP_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "NeuronGroup.h" #include "System.h" diff --git a/src/TripletConnection.h b/src/TripletConnection.h index a0d2e651..a908ca66 100644 --- a/src/TripletConnection.h +++ b/src/TripletConnection.h @@ -27,6 +27,7 @@ #define TRIPLETCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "DuplexConnection.h" #include "EulerTrace.h" #include "LinearTrace.h" diff --git a/src/TripletDecayConnection.h b/src/TripletDecayConnection.h index 27c56fef..124d1611 100644 --- a/src/TripletDecayConnection.h +++ b/src/TripletDecayConnection.h @@ -27,6 +27,7 @@ #define TRIPLETDECAYCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "TripletConnection.h" #include "EulerTrace.h" diff --git a/src/TripletScalingConnection.h b/src/TripletScalingConnection.h index f1e4a0db..c349af10 100644 --- a/src/TripletScalingConnection.h +++ b/src/TripletScalingConnection.h @@ -22,6 +22,7 @@ #define TRIPLETSCALINGCONNECTION_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "DuplexConnection.h" #include "EulerTrace.h" diff --git a/src/VoltageMonitor.h b/src/VoltageMonitor.h index d8b33d32..b7513448 100644 --- a/src/VoltageMonitor.h +++ b/src/VoltageMonitor.h @@ -29,6 +29,7 @@ #define VOLTAGEMONITOR_PASTED_SPIKE_HEIGHT 20e-3 #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "Connection.h" diff --git a/src/WeightChecker.h b/src/WeightChecker.h index b79b06b3..55df5152 100644 --- a/src/WeightChecker.h +++ b/src/WeightChecker.h @@ -27,6 +27,7 @@ #define WEIGHTCHECKER_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "Checker.h" #include "Connection.h" diff --git a/src/WeightMatrixMonitor.h b/src/WeightMatrixMonitor.h index f9f93166..4e0882f2 100644 --- a/src/WeightMatrixMonitor.h +++ b/src/WeightMatrixMonitor.h @@ -27,6 +27,7 @@ #define WEIGHTMATRIXMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "Connection.h" diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index e9c60f58..a911649c 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -27,6 +27,7 @@ #define WEIGHTMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "SparseConnection.h" diff --git a/src/WeightPatternMonitor.h b/src/WeightPatternMonitor.h index 55adfb40..63fb8be6 100644 --- a/src/WeightPatternMonitor.h +++ b/src/WeightPatternMonitor.h @@ -27,6 +27,7 @@ #define WEIGHTPATTERNMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "Connection.h" diff --git a/src/WeightStatsMonitor.h b/src/WeightStatsMonitor.h index 51411373..ddd10250 100644 --- a/src/WeightStatsMonitor.h +++ b/src/WeightStatsMonitor.h @@ -27,6 +27,7 @@ #define WEIGHTSTATSMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "Connection.h" diff --git a/src/WeightSumMonitor.h b/src/WeightSumMonitor.h index 16a71bf3..e4c4dd4e 100644 --- a/src/WeightSumMonitor.h +++ b/src/WeightSumMonitor.h @@ -27,6 +27,7 @@ #define WEIGHTSUMMONITOR_H_ #include "auryn_definitions.h" +#include "AurynVector.h" #include "Monitor.h" #include "System.h" #include "Connection.h" diff --git a/src/auryn.h b/src/auryn.h index 909dfd07..17166107 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -39,11 +39,11 @@ // Core simulator definitions #include "auryn_global.h" #include "auryn_definitions.h" +#include "AurynVector.h" #include "System.h" #include "SyncBuffer.h" #include "Logger.h" #include "SpikeDelay.h" -#include "AurynVector.h" // Trace definitions #include "LinearTrace.h" diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 983e150b..29a9c416 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -57,6 +57,7 @@ #include #include + #include "Logger.h" namespace mpi = boost::mpi; From 7b5b08bfddac58758ff9f175a70ff32799488c74 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 3 May 2016 17:26:51 +0200 Subject: [PATCH 094/460] Moves code from AurynVector to auryn_definitions --- src/AurynVector.cpp | 289 -------------------------------------- src/AurynVector.h | 160 --------------------- src/ComplexMatrix.h | 1 - src/EulerTrace.h | 1 - src/auryn_definitions.cpp | 289 ++++++++++++++++++++++++++++++++++++++ src/auryn_definitions.h | 149 +++++++++++++++++++- 6 files changed, 437 insertions(+), 452 deletions(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 5a80feed..549e679a 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -27,292 +27,3 @@ using namespace auryn; -inline __m128 sse_load( float * i ) -{ -#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS - return _mm_load_ps( i ); -#else - return _mm_loadu_ps( i ); -#endif -} - -inline void sse_store( float * i, __m128 d ) -{ -#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS - _mm_store_ps( i, d ); -#else - _mm_storeu_ps( i, d ); -#endif -} - -void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = a->data[0:a->size:1] * b->data[0:b->size:1]; - #else - float * bd = b->data; - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( i ); - __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_mul_ps(chunk_a, chunk_b); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] *= b->data[i]; - } -#endif -} - -void auryn_vector_float_add_constant( auryn_vector_float * a, const float b ) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = b + a->data[0:a->size:1]; - #else - const __m128 scalar = _mm_set1_ps(b); - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - // _mm_prefetch((i + SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS), _MM_HINT_NTA); - __m128 chunk = sse_load( i ); - __m128 result = _mm_add_ps(chunk, scalar); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] += b; - } -#endif -} - -void auryn_vector_float_scale( const float a, const auryn_vector_float * b ) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - b->data[0:b->size:1] = a * b->data[0:b->size:1]; - #else - const __m128 scalar = _mm_set1_ps(a); - for ( float * i = b->data ; i != b->data+b->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( i ); - __m128 result = _mm_mul_ps(chunk, scalar); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < b->size ; ++i ) { - b->data[i] *= a; - } -#endif /* CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY */ -} - -void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - y->data[0:y->size:1] = a * x->data[0:x->size:1] + y->data[0:y->size:1]; - #else - float * xp = x->data; - const __m128 alpha = _mm_set1_ps(a); - for ( float * i = y->data ; i < y->data+y->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( xp ); xp += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_mul_ps( alpha, chunk ); - - chunk = sse_load( i ); - result = _mm_add_ps( result, chunk ); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < y->size ; ++i ) { - y->data[i] += a * x->data[i]; - } -#endif -} - -void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = a->data[0:a->size:1] + b->data[0:b->size:1]; - #else - float * bd = b->data; - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( i ); - __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_add_ps(chunk_a, chunk_b); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] += b->data[i]; - } -#endif -} - -void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = a->data[0:a->size:1] - b->data[0:b->size:1]; - #else - float * bd = b->data; - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( i ); - __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_sub_ps(chunk_a, chunk_b); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] -= b->data[i]; - } -#endif -} - -void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r) -{ -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - float * bd = b->data; - for ( NeuronID i = 0 ; i < a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( a->data+i ); - __m128 chunk_b = sse_load( b->data+i ); - __m128 result = _mm_sub_ps(chunk_a, chunk_b); - sse_store( r->data+i, result ); - } -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - r->data[i] = a->data[i] - b->data[i]; - } -#endif -} - -void auryn_vector_float_clip( auryn_vector_float * v, const float a, const float b ) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - for ( NeuronID i = 0 ; i < v->size ; ++i ) { - if ( v->data[i] < a ) { - v->data[i] = a; - } else - if ( v->data[i] > b ) - v->data[i] = b; - } - #else - const __m128 lo = _mm_set1_ps(a); - const __m128 hi = _mm_set1_ps(b); - for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( i ); - __m128 result = _mm_min_ps(chunk, hi); - result = _mm_max_ps(result, lo); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < v->size ; ++i ) { - if ( v->data[i] < a ) { - v->data[i] = a; - } else - if ( v->data[i] > b ) - v->data[i] = b; - } -#endif -} - -void auryn_vector_float_clip( auryn_vector_float * v, const float a ) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - auryn_vector_float_clip( v, a, 1e16 ); - #else - const __m128 lo = _mm_set1_ps(a); - const __m128 hi = _mm_set1_ps(0.); - for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( i ); - __m128 result = _mm_min_ps(chunk, hi); - result = _mm_max_ps(result, lo); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - auryn_vector_float_clip( v, a, 1e16 ); -#endif -} - -auryn_vector_float * auryn_vector_float_alloc( const NeuronID n ) { - return new auryn_vector_float(n); -} - -void auryn_vector_float_free ( auryn_vector_float * v ) { - delete v; -} - -void auryn_vector_float_set_all ( auryn_vector_float * v, AurynFloat x ) { - v->set_all(x); -} - -void auryn_vector_float_set_zero ( auryn_vector_float * v ) { - v->set_zero(); -} - -AurynFloat auryn_vector_float_get ( const auryn_vector_float * v, const NeuronID i ) { - return v->data[i]; -} - -AurynFloat * auryn_vector_float_ptr ( const auryn_vector_float * v, const NeuronID i ) { - return v->data+i; -} - -void auryn_vector_float_set ( auryn_vector_float * v, const NeuronID i, AurynFloat x ) { - v->data[i] = x; -} - -void auryn_vector_float_copy ( auryn_vector_float * src, auryn_vector_float * dst ) { - // TODO make this a fast memcpy - for ( NeuronID i = 0 ; i < dst->size ; ++i ) - dst->data[i] = src->data[i]; -} - - -auryn_vector_ushort * auryn_vector_ushort_alloc( const NeuronID n ) { - return new auryn_vector_ushort(n); -} - -void auryn_vector_ushort_free ( auryn_vector_ushort * v ) { - delete v; -} - -void auryn_vector_ushort_set_all ( auryn_vector_ushort * v, unsigned short x ) { - v->set_all(x); -} - -void auryn_vector_ushort_set_zero ( auryn_vector_ushort * v ) { - v->set_zero(); -} - -unsigned short auryn_vector_ushort_get ( const auryn_vector_ushort * v, const NeuronID i ) { - return v->data[i]; -} - -unsigned short * auryn_vector_ushort_ptr ( const auryn_vector_ushort * v, const NeuronID i ) { - return v->data+i; -} - -void auryn_vector_ushort_set ( auryn_vector_ushort * v, const NeuronID i, unsigned short x ) { - v->data[i] = x; -} - -void auryn_vector_ushort_copy ( auryn_vector_ushort * src, auryn_vector_ushort * dst ) { - for ( NeuronID i = 0 ; i < dst->size ; ++i ) - dst->data[i] = src->data[i]; -} diff --git a/src/AurynVector.h b/src/AurynVector.h index 688b0257..09f5cdff 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -26,171 +26,11 @@ #ifndef AURYNVECTOR_H_ #define AURYNVECTOR_H_ -#include - -#include -#include -#include -#include - -#include -#include - - #include "auryn_definitions.h" -#include "AurynVector.h" namespace auryn { - /*! \brief Auryn vector template - * - * Copies the core of GSL vector functionality - * */ - template - class AurynVector { - private: - friend class boost::serialization::access; - template - void serialize(Archive & ar, const unsigned int version) - { - ar & size; - for ( NeuronID i = 0 ; i < size ; ++i ) - ar & data[i]; - } - - - public: - NeuronID size; - T * data; - - /*! \brief Default constructor */ - AurynVector(NeuronID n) - { - T * data = new T [n]; - size = n; - data = data; - } - - /*! \brief Default destructor */ - ~AurynVector() - { - delete data; - } - - /*! \brief Set all elements to value v. */ - void set_all(T v) - { - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] = v; - } - } - - /*! \brief Set all elements to zero. */ - void set_zero() - { - set_all(0.0); - } - - /*! \brief Scales all vector elements by a. */ - void scale(AurynFloat a) - { - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] *= a; - } - } - - }; - - typedef AurynVector auryn_vector_float; //!< Reimplements a simplified version of the GSL vector. - - typedef AurynVector auryn_vector_ushort; //!< Reimplements a simplified version of the GSL vector for ushort. - - // Float vector legacy functions - - /*! Allocates an auryn_vector_float */ - auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); - - /*! Frees an auryn_vector_float */ - void auryn_vector_float_free (auryn_vector_float * v); - - /*! Initializes an auryn_vector_float with zeros */ - void auryn_vector_float_set_zero (auryn_vector_float * v); - - /*! Sets all elements in an auryn_vector_float to value x */ - void auryn_vector_float_set_all (auryn_vector_float * v, AurynFloat x); - - /*! \brief Copies vector src to dst assuming they have the same size. - * - * Otherwise this will lead to undefined results. No checking of size is - * performed for performance reasons. */ - void auryn_vector_float_copy (auryn_vector_float * src, auryn_vector_float * dst ); - - /*! Auryn vector getter */ - AurynFloat auryn_vector_float_get (const auryn_vector_float * v, const NeuronID i); - - /*! Auryn vector setter */ - void auryn_vector_float_set (auryn_vector_float * v, const NeuronID i, AurynFloat x); - - /*! Auryn vector gets pointer to designed element. */ - AurynFloat * auryn_vector_float_ptr (const auryn_vector_float * v, const NeuronID i); - - /*! Internal version of auryn_vector_float_mul of gsl operations */ - void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b); - - /*! \brief Computes a := a + b - * - * Internal version of auryn_vector_float_add between a constant and a vector */ - void auryn_vector_float_add_constant( auryn_vector_float * a, float b ); - - /*! Computes y := a*x+y - * - * Internal SAXPY version */ - void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ); - /*! Internal version to scale a vector with a constant b */ - void auryn_vector_float_scale(const float a, const auryn_vector_float * b ); - /*! Internal version to clip all the elements of a vector between [a:b] */ - void auryn_vector_float_clip(auryn_vector_float * v, const float a , const float b ); - - /*! Internal version to clip all the elements of a vector between [a:0] */ - void auryn_vector_float_clip(auryn_vector_float * v, const float a ); - - /*! \brief Internal version of to add GSL vectors. - * - * Add vectors a and b and store the result in a. */ - void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b); - - /*! \brief Computes a := a-b - * - * Internal version of to subtract GSL vectors. */ - void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b); - - /*! \brief Computes r := a-b */ - void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r); - - - - // ushort vector functions - /*! Allocates an auryn_vector_ushort */ - auryn_vector_ushort * auryn_vector_ushort_alloc(const NeuronID n); - /*! Frees an auryn_vector_ushort */ - void auryn_vector_ushort_free (auryn_vector_ushort * v); - /*! Initializes an auryn_vector_ushort with zeros */ - void auryn_vector_ushort_set_zero (auryn_vector_ushort * v); - - /*! Sets all elements in an auryn_vector_ushort to value x */ - void auryn_vector_ushort_set_all (auryn_vector_ushort * v, unsigned short x); - - /*! Copies vector src to dst assuming they have the same size. - * Otherwise this will lead to undefined results. No checking of size is - * performed for performance reasons. */ - void auryn_vector_ushort_copy (auryn_vector_ushort * src, auryn_vector_ushort * dst ); - /*! Auryn vector getter */ - unsigned short auryn_vector_ushort_get (const auryn_vector_ushort * v, const NeuronID i); - /*! Auryn vector setter */ - void auryn_vector_ushort_set (auryn_vector_ushort * v, const NeuronID i, unsigned short x); - /*! Auryn vector gets pointer to designed element. */ - unsigned short * auryn_vector_ushort_ptr (const auryn_vector_ushort * v, const NeuronID i); } diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index e3dc88d2..2b841a15 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -28,7 +28,6 @@ #include "auryn_global.h" #include "auryn_definitions.h" -#include "AurynVector.h" #include #include diff --git a/src/EulerTrace.h b/src/EulerTrace.h index b3bab5d8..19d96926 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -28,7 +28,6 @@ #include "auryn_definitions.h" #include "AurynVector.h" -#include "AurynVector.h" namespace auryn { diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index f86baadc..a3dd3b3c 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -52,5 +52,294 @@ NeuronID calculate_vector_size(NeuronID i) } +inline __m128 sse_load( float * i ) +{ +#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS + return _mm_load_ps( i ); +#else + return _mm_loadu_ps( i ); +#endif +} + +inline void sse_store( float * i, __m128 d ) +{ +#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS + _mm_store_ps( i, d ); +#else + _mm_storeu_ps( i, d ); +#endif +} + +void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + a->data[0:a->size:1] = a->data[0:a->size:1] * b->data[0:b->size:1]; + #else + float * bd = b->data; + for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( i ); + __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_mul_ps(chunk_a, chunk_b); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + a->data[i] *= b->data[i]; + } +#endif +} + +void auryn_vector_float_add_constant( auryn_vector_float * a, const float b ) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + a->data[0:a->size:1] = b + a->data[0:a->size:1]; + #else + const __m128 scalar = _mm_set1_ps(b); + for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + // _mm_prefetch((i + SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS), _MM_HINT_NTA); + __m128 chunk = sse_load( i ); + __m128 result = _mm_add_ps(chunk, scalar); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + a->data[i] += b; + } +#endif +} + +void auryn_vector_float_scale( const float a, const auryn_vector_float * b ) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + b->data[0:b->size:1] = a * b->data[0:b->size:1]; + #else + const __m128 scalar = _mm_set1_ps(a); + for ( float * i = b->data ; i != b->data+b->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( i ); + __m128 result = _mm_mul_ps(chunk, scalar); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < b->size ; ++i ) { + b->data[i] *= a; + } +#endif /* CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY */ +} + +void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + y->data[0:y->size:1] = a * x->data[0:x->size:1] + y->data[0:y->size:1]; + #else + float * xp = x->data; + const __m128 alpha = _mm_set1_ps(a); + for ( float * i = y->data ; i < y->data+y->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( xp ); xp += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_mul_ps( alpha, chunk ); + + chunk = sse_load( i ); + result = _mm_add_ps( result, chunk ); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < y->size ; ++i ) { + y->data[i] += a * x->data[i]; + } +#endif +} + +void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + a->data[0:a->size:1] = a->data[0:a->size:1] + b->data[0:b->size:1]; + #else + float * bd = b->data; + for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( i ); + __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_add_ps(chunk_a, chunk_b); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + a->data[i] += b->data[i]; + } +#endif +} + +void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + a->data[0:a->size:1] = a->data[0:a->size:1] - b->data[0:b->size:1]; + #else + float * bd = b->data; + for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( i ); + __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_sub_ps(chunk_a, chunk_b); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + a->data[i] -= b->data[i]; + } +#endif +} + +void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + float * bd = b->data; + for ( NeuronID i = 0 ; i < a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( a->data+i ); + __m128 chunk_b = sse_load( b->data+i ); + __m128 result = _mm_sub_ps(chunk_a, chunk_b); + sse_store( r->data+i, result ); + } +#else + for ( NeuronID i = 0 ; i < a->size ; ++i ) { + r->data[i] = a->data[i] - b->data[i]; + } +#endif +} + +void auryn_vector_float_clip( auryn_vector_float * v, const float a, const float b ) { +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + for ( NeuronID i = 0 ; i < v->size ; ++i ) { + if ( v->data[i] < a ) { + v->data[i] = a; + } else + if ( v->data[i] > b ) + v->data[i] = b; + } + #else + const __m128 lo = _mm_set1_ps(a); + const __m128 hi = _mm_set1_ps(b); + for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( i ); + __m128 result = _mm_min_ps(chunk, hi); + result = _mm_max_ps(result, lo); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < v->size ; ++i ) { + if ( v->data[i] < a ) { + v->data[i] = a; + } else + if ( v->data[i] > b ) + v->data[i] = b; + } +#endif +} + +void auryn_vector_float_clip( auryn_vector_float * v, const float a ) { +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + auryn_vector_float_clip( v, a, 1e16 ); + #else + const __m128 lo = _mm_set1_ps(a); + const __m128 hi = _mm_set1_ps(0.); + for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( i ); + __m128 result = _mm_min_ps(chunk, hi); + result = _mm_max_ps(result, lo); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + auryn_vector_float_clip( v, a, 1e16 ); +#endif +} + +auryn_vector_float * auryn_vector_float_alloc( const NeuronID n ) { + return new auryn_vector_float(n); +} + +void auryn_vector_float_free ( auryn_vector_float * v ) { + delete v; +} + +void auryn_vector_float_set_all ( auryn_vector_float * v, AurynFloat x ) { + v->set_all(x); +} + +void auryn_vector_float_set_zero ( auryn_vector_float * v ) { + v->set_zero(); +} + +AurynFloat auryn_vector_float_get ( const auryn_vector_float * v, const NeuronID i ) { + return v->data[i]; +} + +AurynFloat * auryn_vector_float_ptr ( const auryn_vector_float * v, const NeuronID i ) { + return v->data+i; +} + +void auryn_vector_float_set ( auryn_vector_float * v, const NeuronID i, AurynFloat x ) { + v->data[i] = x; +} + +void auryn_vector_float_copy ( auryn_vector_float * src, auryn_vector_float * dst ) { + // TODO make this a fast memcpy + for ( NeuronID i = 0 ; i < dst->size ; ++i ) + dst->data[i] = src->data[i]; +} + + +auryn_vector_ushort * auryn_vector_ushort_alloc( const NeuronID n ) { + return new auryn_vector_ushort(n); +} + +void auryn_vector_ushort_free ( auryn_vector_ushort * v ) { + delete v; +} + +void auryn_vector_ushort_set_all ( auryn_vector_ushort * v, unsigned short x ) { + v->set_all(x); +} + +void auryn_vector_ushort_set_zero ( auryn_vector_ushort * v ) { + v->set_zero(); +} + +unsigned short auryn_vector_ushort_get ( const auryn_vector_ushort * v, const NeuronID i ) { + return v->data[i]; +} + +unsigned short * auryn_vector_ushort_ptr ( const auryn_vector_ushort * v, const NeuronID i ) { + return v->data+i; +} + +void auryn_vector_ushort_set ( auryn_vector_ushort * v, const NeuronID i, unsigned short x ) { + v->data[i] = x; +} + +void auryn_vector_ushort_copy ( auryn_vector_ushort * src, auryn_vector_ushort * dst ) { + for ( NeuronID i = 0 ; i < dst->size ; ++i ) + dst->data[i] = src->data[i]; +} } diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 29a9c416..f19ad45e 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -57,7 +57,6 @@ #include #include - #include "Logger.h" namespace mpi = boost::mpi; @@ -300,6 +299,154 @@ namespace auryn { } }; + /*! \brief Auryn vector template + * + * Copies the core of GSL vector functionality + * */ + template + class AurynVector { + private: + friend class boost::serialization::access; + template + void serialize(Archive & ar, const unsigned int version) + { + ar & size; + for ( NeuronID i = 0 ; i < size ; ++i ) + ar & data[i]; + } + + + public: + NeuronID size; + T * data; + + /*! \brief Default constructor */ + AurynVector(NeuronID n) + { + size = n; + data = new T [n]; + } + + /*! \brief Default destructor */ + ~AurynVector() + { + delete data; + } + + /*! \brief Set all elements to value v. */ + void set_all(T v) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] = v; + } + } + + /*! \brief Set all elements to zero. */ + void set_zero() + { + set_all(0.0); + } + + /*! \brief Scales all vector elements by a. */ + void scale(AurynFloat a) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] *= a; + } + } + + }; + + typedef AurynVector auryn_vector_float; //!< Reimplements a simplified version of the GSL vector. + + typedef AurynVector auryn_vector_ushort; //!< Reimplements a simplified version of the GSL vector for ushort. + + // Float vector legacy functions + + /*! Allocates an auryn_vector_float */ + auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); + + /*! Frees an auryn_vector_float */ + void auryn_vector_float_free (auryn_vector_float * v); + + /*! Initializes an auryn_vector_float with zeros */ + void auryn_vector_float_set_zero (auryn_vector_float * v); + + /*! Sets all elements in an auryn_vector_float to value x */ + void auryn_vector_float_set_all (auryn_vector_float * v, AurynFloat x); + + /*! \brief Copies vector src to dst assuming they have the same size. + * + * Otherwise this will lead to undefined results. No checking of size is + * performed for performance reasons. */ + void auryn_vector_float_copy (auryn_vector_float * src, auryn_vector_float * dst ); + + /*! Auryn vector getter */ + AurynFloat auryn_vector_float_get (const auryn_vector_float * v, const NeuronID i); + + /*! Auryn vector setter */ + void auryn_vector_float_set (auryn_vector_float * v, const NeuronID i, AurynFloat x); + + /*! Auryn vector gets pointer to designed element. */ + AurynFloat * auryn_vector_float_ptr (const auryn_vector_float * v, const NeuronID i); + + /*! Internal version of auryn_vector_float_mul of gsl operations */ + void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b); + + /*! \brief Computes a := a + b + * + * Internal version of auryn_vector_float_add between a constant and a vector */ + void auryn_vector_float_add_constant( auryn_vector_float * a, float b ); + + /*! Computes y := a*x+y + * + * Internal SAXPY version */ + void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ); + /*! Internal version to scale a vector with a constant b */ + void auryn_vector_float_scale(const float a, const auryn_vector_float * b ); + /*! Internal version to clip all the elements of a vector between [a:b] */ + void auryn_vector_float_clip(auryn_vector_float * v, const float a , const float b ); + + /*! Internal version to clip all the elements of a vector between [a:0] */ + void auryn_vector_float_clip(auryn_vector_float * v, const float a ); + + /*! \brief Internal version of to add GSL vectors. + * + * Add vectors a and b and store the result in a. */ + void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b); + + /*! \brief Computes a := a-b + * + * Internal version of to subtract GSL vectors. */ + void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b); + + /*! \brief Computes r := a-b */ + void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r); + + + + // ushort vector functions + /*! Allocates an auryn_vector_ushort */ + auryn_vector_ushort * auryn_vector_ushort_alloc(const NeuronID n); + /*! Frees an auryn_vector_ushort */ + void auryn_vector_ushort_free (auryn_vector_ushort * v); + /*! Initializes an auryn_vector_ushort with zeros */ + void auryn_vector_ushort_set_zero (auryn_vector_ushort * v); + + /*! Sets all elements in an auryn_vector_ushort to value x */ + void auryn_vector_ushort_set_all (auryn_vector_ushort * v, unsigned short x); + + /*! Copies vector src to dst assuming they have the same size. + * Otherwise this will lead to undefined results. No checking of size is + * performed for performance reasons. */ + void auryn_vector_ushort_copy (auryn_vector_ushort * src, auryn_vector_ushort * dst ); + /*! Auryn vector getter */ + unsigned short auryn_vector_ushort_get (const auryn_vector_ushort * v, const NeuronID i); + /*! Auryn vector setter */ + void auryn_vector_ushort_set (auryn_vector_ushort * v, const NeuronID i, unsigned short x); + /*! Auryn vector gets pointer to designed element. */ + unsigned short * auryn_vector_ushort_ptr (const auryn_vector_ushort * v, const NeuronID i); + } // namespace #endif /*AURYN_DEFINITIONS_H__*/ From dc98d523658c302a9df8acdc233558bf085fdd1e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 3 May 2016 17:39:24 +0200 Subject: [PATCH 095/460] Changes doc strings --- src/auryn_definitions.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index f19ad45e..f9db51ae 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -357,11 +357,16 @@ namespace auryn { }; - typedef AurynVector auryn_vector_float; //!< Reimplements a simplified version of the GSL vector. - typedef AurynVector auryn_vector_ushort; //!< Reimplements a simplified version of the GSL vector for ushort. - // Float vector legacy functions + typedef AurynVector AurynVectorFloat; //!< Default Auryn state vector type + + // Legacy state vector types + typedef AurynVectorFloat auryn_vector_float; //!< Default legacy Auryn state vector type + typedef AurynVector auryn_vector_ushort; //!< Default legacy Auryn ushort vector type + + + // Legacy float vector functions /*! Allocates an auryn_vector_float */ auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); @@ -425,7 +430,7 @@ namespace auryn { - // ushort vector functions + // Legacy ushort vector functions /*! Allocates an auryn_vector_ushort */ auryn_vector_ushort * auryn_vector_ushort_alloc(const NeuronID n); /*! Frees an auryn_vector_ushort */ From 722ebeccff3ed3965ae08f55a5c1f87485ef3194 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 08:43:20 +0200 Subject: [PATCH 096/460] Swichtes to member methods for scale in IFGroup --- src/IFGroup.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index 074c1b44..9cc39d10 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -90,8 +90,10 @@ IFGroup::~IFGroup() void IFGroup::integrate_linear_nmda_synapses() { // decay of ampa and gaba channel, i.e. multiply by exp(-dt/tau) - auryn_vector_float_scale(scale_ampa,g_ampa); - auryn_vector_float_scale(scale_gaba,g_gaba); + // auryn_vector_float_scale(scale_ampa,g_ampa); + g_ampa->scale(scale_ampa); + // auryn_vector_float_scale(scale_gaba,g_gaba); + g_gaba->scale(scale_gaba); // compute dg_nmda = (g_ampa-g_nmda)*dt/tau_nmda and add to g_nmda AurynFloat mul_nmda = dt/tau_nmda; @@ -100,7 +102,8 @@ void IFGroup::integrate_linear_nmda_synapses() // excitatory auryn_vector_float_copy(g_ampa,t_exc); - auryn_vector_float_scale(-A_ampa,t_exc); + // auryn_vector_float_scale(-A_ampa,t_exc); + t_exc->scale(-A_ampa); auryn_vector_float_saxpy(-A_nmda,g_nmda,t_exc); auryn_vector_float_mul(t_exc,mem); @@ -117,7 +120,8 @@ void IFGroup::integrate_linear_nmda_synapses() void IFGroup::integrate_membrane() { // moving threshold - auryn_vector_float_scale(scale_thr,thr); + // auryn_vector_float_scale(scale_thr,thr); + thr->scale(scale_thr); // leak auryn_vector_float_copy(mem,t_leak); From aacccf8cafd9d368366be47ed14efc0c2da0e5ad Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 08:58:13 +0200 Subject: [PATCH 097/460] Switches to member scale --- src/EulerTrace.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index cb56aeae..43b04a1c 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -95,7 +95,8 @@ void EulerTrace::set_target( EulerTrace * target ) void EulerTrace::evolve() { - auryn_vector_float_scale(scale_const,state); // seems to be faster + // auryn_vector_float_scale(scale_const,state); // seems to be faster + state->scale(scale_const); // auryn_vector_float_mul_constant(state,scale_const); } From 6c16e1cb8fd8ebbd22ec57943373a451d967a4cc Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 09:40:00 +0200 Subject: [PATCH 098/460] Implements template functions in auryn_definitions --- src/auryn_definitions.h | 157 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 156 insertions(+), 1 deletion(-) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index f9db51ae..9867c702 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -287,7 +287,8 @@ namespace auryn { { virtual const char* what() const throw() { - return "Dimensions do not match. Are the vectors zero padded to a multiples of four dimension?"; + return "Dimensions do not match or trying to read beyond vector size." + "Are the vectors zero padded to a multiples of four dimension?"; } }; @@ -315,6 +316,29 @@ namespace auryn { ar & data[i]; } + /*! \brief Checks if argument is larger than size and throws and exception if so + * + * Check only enabled if NDEBUG is not defined.*/ + void check_size(NeuronID x) + { +#ifndef NDEBUG + if ( x => size ) { + throw AurynVectorDimensionalityException(); + } +#endif + } + + /*! \brief Checks if vector size matches to this instance + * + * Check only enabled if NDEBUG is not defined.*/ + void check_size(AurynVector * v) + { +#ifndef NDEBUG + if ( v->size != size ) { + throw AurynVectorDimensionalityException(); + } +#endif + } public: NeuronID size; @@ -355,6 +379,137 @@ namespace auryn { } } + /*! \brief Adds constant c to each vector element */ + void add(AurynFloat c) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] += c; + } + } + + /*! \brief Adds a vector v to the vector + * + * No checking of the dimensions match! */ + void add(AurynVector * v) + { + check_size(v); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] += v->data[i]; + } + } + + /*! \brief Subtract constant c to each vector element */ + void sub(AurynFloat c) + { + add(-c); + } + + /*! \brief Elementwise subtraction */ + void sub(AurynVector * v) + { + check_size(v); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] -= v->data[i]; + } + } + + /*! \brief Multiply all vector elements by constant */ + void mul(AurynFloat a) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] *= a; + } + } + + /*! \brief Element-wise vector multiply + * + * No size checking, be careful! */ + void mul(AurynVector * v) + { + check_size(v); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] *= v->data[i]; + } + } + + /*! \brief Copies vector v + * + * No size checking, be careful! */ + void copy(AurynVector * v) + { + check_size(v); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] = v->data[i]; + } + } + + + /*! \brief SAXPY operation as in GSL + * + * Computes a*x + y and stores the result to y where y is the present instance. + * \param a The scaling factor for the additional vector + * \param x The additional vector to add + * */ + void saxpy(T a, AurynVector * x) + { + check_size(x); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] += a * x->data[i]; + } + } + + /*! \brief SAXPY operation which adds to result vector + * + * Computes a*x + y and stores the result to 'result' where y is the present instance. + * \param a The scaling factor for the additional vector + * \param x The additional vector to add + * \param result The target vector + * */ + void saxpy(T a, AurynVector * x, AurynVector * result) + { + check_size(x); + check_size(result); + for ( NeuronID i = 0 ; i < size ; ++i ) { + result->data[i] += a * x->data[i] + data[i]; + } + } + + /*! \brief Gets element i from vector */ + T get(NeuronID i) + { + check_size(i); + return data[i]; + } + + /*! \brief Gets pointer to element i from vector */ + T ptr(NeuronID i) + { + check_size(i); + return data+i; + } + + /*! \brief Sets element i in vector to value */ + void set(NeuronID i, T value) + { + check_size(i); + data[i] = value; + } + + /*! \brief Clips all vector elements to the range min max + * + * \param min Minimum value + * \param max Maximum value + */ + void clip(T min, T max) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + if ( data[i] < min ) { + data[i] = min; + } else + if ( data[i] > max ) + data[i] = max; + } + } }; From 426a196fa0f839549d4b66d19e228e9417ece02d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 09:47:14 +0200 Subject: [PATCH 099/460] Adds zero init to AurynVector --- src/auryn_definitions.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 9867c702..e2778b25 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -349,6 +349,7 @@ namespace auryn { { size = n; data = new T [n]; + set_zero(); // let's give it a defined initial value } /*! \brief Default destructor */ From 5c6df7c3414fd5cace52d3d96b523c026ad7fb95 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 09:58:12 +0200 Subject: [PATCH 100/460] Changes to AurynVector member functions --- src/IFGroup.cpp | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index 9cc39d10..a7ab1950 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -70,13 +70,11 @@ void IFGroup::init() void IFGroup::clear() { clear_spikes(); - for (NeuronID i = 0; i < get_rank_size(); i++) { - auryn_vector_float_set (mem, i, e_rest); - auryn_vector_float_set (thr, i, 0.); - auryn_vector_float_set (g_ampa, i, 0.); - auryn_vector_float_set (g_gaba, i, 0.); - auryn_vector_float_set (g_nmda, i, 0.); - } + mem->set_all(e_rest); + thr->set_zero(); + g_ampa->set_zero(); + g_gaba->set_zero(); + g_nmda->set_zero(); } void IFGroup::free() { @@ -97,20 +95,28 @@ void IFGroup::integrate_linear_nmda_synapses() // compute dg_nmda = (g_ampa-g_nmda)*dt/tau_nmda and add to g_nmda AurynFloat mul_nmda = dt/tau_nmda; - auryn_vector_float_saxpy(mul_nmda,g_ampa,g_nmda); - auryn_vector_float_saxpy(-mul_nmda,g_nmda,g_nmda); + // auryn_vector_float_saxpy(mul_nmda,g_ampa,g_nmda); + // auryn_vector_float_saxpy(-mul_nmda,g_nmda,g_nmda); + g_nmda->saxpy(mul_nmda, g_ampa); + g_nmda->saxpy(-mul_nmda, g_nmda); // excitatory - auryn_vector_float_copy(g_ampa,t_exc); + // auryn_vector_float_copy(g_ampa,t_exc); // auryn_vector_float_scale(-A_ampa,t_exc); + t_exc->copy(g_ampa); t_exc->scale(-A_ampa); - auryn_vector_float_saxpy(-A_nmda,g_nmda,t_exc); - auryn_vector_float_mul(t_exc,mem); + // auryn_vector_float_saxpy(-A_nmda,g_nmda,t_exc); + t_exc->saxpy(-A_nmda,g_nmda); + // auryn_vector_float_mul(t_exc,mem); + t_exc->mul(mem); // inhibitory - auryn_vector_float_copy(mem,t_inh); - auryn_vector_float_add_constant(t_inh,-e_rev); - auryn_vector_float_mul(t_inh,g_gaba); + // auryn_vector_float_copy(mem,t_inh); + t_inh->copy(mem); + // auryn_vector_float_add_constant(t_inh,-e_rev); + t_inh->add(-e_rev); + // auryn_vector_float_mul(t_inh,g_gaba); + t_inh->mul(g_gaba); } /// Integrate the internal state From d610ef62feb44617cf4c6dced00f2dadc60b9199 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 09:58:38 +0200 Subject: [PATCH 101/460] Fixes bug in AurynVector debug code --- src/auryn_definitions.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index e2778b25..2b4fcfd9 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -322,7 +322,7 @@ namespace auryn { void check_size(NeuronID x) { #ifndef NDEBUG - if ( x => size ) { + if ( x >= size ) { throw AurynVectorDimensionalityException(); } #endif @@ -340,7 +340,8 @@ namespace auryn { #endif } - public: + public: + // We keep these params public for legacy compatibility reasons NeuronID size; T * data; From c5a0c831b583b1f7550b10077f285c7cdaeeb895 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 09:59:48 +0200 Subject: [PATCH 102/460] Fixes small bug in system --- src/System.cpp | 2 +- src/System.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index 4eeda677..15cafdd7 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -785,7 +785,7 @@ void System::evolve_online_rate_monitor() } } -void System::set_online_rate_monitor_id( int id ) +void System::set_online_rate_monitor_id( unsigned int id ) { online_rate_monitor_state = 0.0; if ( id < spiking_groups.size() ) diff --git a/src/System.h b/src/System.h index ffe1d0c7..98cf8b66 100644 --- a/src/System.h +++ b/src/System.h @@ -138,7 +138,7 @@ namespace auryn { * progressbar (this typically is reflected by the order in * which you define the SpikingGroup and NeuronGroup classes. It starts * numbering from 0.). */ - void set_online_rate_monitor_id( int id=0 ); + void set_online_rate_monitor_id( unsigned int id=0 ); /*! Sets the timeconstant to compute the online rate average for the status bar. */ void set_online_rate_monitor_tau( AurynDouble tau=100e-3 ); From 648d1f5a21a39643064b7ceff22a8c06a9a1d676 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:00:00 +0200 Subject: [PATCH 103/460] Fixes small bug in Connection --- src/Connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Connection.cpp b/src/Connection.cpp index 4470225d..73eec194 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -182,12 +182,12 @@ void Connection::add_number_of_spike_attributes(int x) SpikeContainer * Connection::get_pre_spikes() { - src->get_spikes(); + return src->get_spikes(); } SpikeContainer * Connection::get_post_spikes() { - dst->get_spikes_immediate(); + return dst->get_spikes_immediate(); } From e5d6484a9d48e334b98887961d52d8990eb1949e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:00:00 +0200 Subject: [PATCH 104/460] Fixes small bug in Connection --- src/Connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Connection.cpp b/src/Connection.cpp index 4470225d..73eec194 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -182,12 +182,12 @@ void Connection::add_number_of_spike_attributes(int x) SpikeContainer * Connection::get_pre_spikes() { - src->get_spikes(); + return src->get_spikes(); } SpikeContainer * Connection::get_post_spikes() { - dst->get_spikes_immediate(); + return dst->get_spikes_immediate(); } From 6c8943af761b185930c3c010bbfae8142352af28 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 09:59:48 +0200 Subject: [PATCH 105/460] Fixes small bug in system --- src/System.cpp | 2 +- src/System.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index 4eeda677..15cafdd7 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -785,7 +785,7 @@ void System::evolve_online_rate_monitor() } } -void System::set_online_rate_monitor_id( int id ) +void System::set_online_rate_monitor_id( unsigned int id ) { online_rate_monitor_state = 0.0; if ( id < spiking_groups.size() ) diff --git a/src/System.h b/src/System.h index cd4952ca..6b522043 100644 --- a/src/System.h +++ b/src/System.h @@ -137,7 +137,7 @@ namespace auryn { * progressbar (this typically is reflected by the order in * which you define the SpikingGroup and NeuronGroup classes. It starts * numbering from 0.). */ - void set_online_rate_monitor_id( int id=0 ); + void set_online_rate_monitor_id( unsigned int id=0 ); /*! Sets the timeconstant to compute the online rate average for the status bar. */ void set_online_rate_monitor_tau( AurynDouble tau=100e-3 ); From eadf27811135a7c711ab6ba1bf1947f911a3b64f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:05:41 +0200 Subject: [PATCH 106/460] Overloads ptr function of AurynVector --- src/auryn_definitions.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 2b4fcfd9..9ae21ad6 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -483,8 +483,11 @@ namespace auryn { return data[i]; } - /*! \brief Gets pointer to element i from vector */ - T ptr(NeuronID i) + /*! \brief Gets pointer to element i from vector + * + * When no argument is given the function returns the first element of + * data array of the vector. */ + T ptr(NeuronID i = 0) { check_size(i); return data+i; From 4ea2ebacda56b8c871495358814cb2b0d3f0ced6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:22:49 +0200 Subject: [PATCH 107/460] Adds a example bootstrap file for debugging --- build/debug/bootstrap.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 build/debug/bootstrap.sh diff --git a/build/debug/bootstrap.sh b/build/debug/bootstrap.sh new file mode 100755 index 00000000..f536d266 --- /dev/null +++ b/build/debug/bootstrap.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cmake ../../ -DCMAKE_BUILD_TYPE=Debug && make + From 8ad5549be6658f7a04fbfcfdabb20fa8f78a3402 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:30:06 +0200 Subject: [PATCH 108/460] Adds use of new get_log_name function in Connection --- src/SparseConnection.cpp | 70 +++++++++++++++++++--------------------- 1 file changed, 34 insertions(+), 36 deletions(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 8669d903..8d2c756f 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -70,7 +70,7 @@ SparseConnection::SparseConnection( std::stringstream oss; AurynLong anticipatedsize = (AurynLong) (estimate_required_nonzero_entires ( sparseness*src->get_pre_size()*dst->get_post_size() ) ); - oss << "SparseConnection: ("<< get_name() <<"): Assuming memory demand for pre #" << src->get_pre_size() << " and post #" << dst->get_post_size() + oss << get_log_name() << "Assuming memory demand for pre #" << src->get_pre_size() << " and post #" << dst->get_post_size() << std::scientific << std::setprecision(4) << " ( total " << anticipatedsize << ")"; auryn::logger->msg(oss.str(),VERBOSE); allocate(anticipatedsize); @@ -125,7 +125,7 @@ void SparseConnection::init() if ( src == dst ) { skip_diagonal = true; std::stringstream oss; - oss << "SparseConnection: ("<< get_name() <<"): Detected recurrent connection. skip_diagonal was activated!"; + oss << get_log_name() << "Detected recurrent connection. skip_diagonal was activated!"; auryn::logger->msg(oss.str(),VERBOSE); } else skip_diagonal = false; @@ -148,7 +148,7 @@ void SparseConnection::init() void SparseConnection::seed(NeuronID randomseed) { std::stringstream oss; - oss << "SparseConnection: ("<< get_name() <<"): Seeding with " << randomseed; + oss << get_log_name() << "Seeding with " << randomseed; auryn::logger->msg(oss.str(),VERBOSE); SparseConnection::sparse_connection_gen.seed(randomseed); has_been_seeded = true; @@ -171,7 +171,8 @@ void SparseConnection::allocate(AurynLong bufsize) NeuronID n = get_n_cols(); std::stringstream oss; - oss << "SparseConnection: (" << get_name() << "): Allocating sparse matrix (" << m << ", " << n << ") with space for " << std::scientific << std::setprecision(4) << (double) bufsize << " nonzero elements "; + oss << get_log_name() << "Allocating sparse matrix (" << m << ", " << n << ") with space for " << std::scientific << std::setprecision(4) << (double) bufsize << " nonzero elements "; + auryn::logger->msg(oss.str(),VERBOSE); AurynLong maxsize = m*n; @@ -210,7 +211,7 @@ AurynWeight SparseConnection::get_max_weight() void SparseConnection::random_data(AurynWeight mean, AurynWeight sigma) { std::stringstream oss; - oss << "SparseConnection: (" << get_name() << "): randomizing non-zero connections (gaussian) with mean=" << mean << " sigma=" << sigma ; + oss << get_log_name() << "randomizing non-zero connections (gaussian) with mean=" << mean << " sigma=" << sigma ; auryn::logger->msg(oss.str(),NOTIFICATION); boost::normal_distribution<> dist((double)mean, (double)sigma); @@ -228,7 +229,7 @@ void SparseConnection::random_data(AurynWeight mean, AurynWeight sigma) void SparseConnection::init_random_binary(AurynFloat prob, AurynWeight wlo, AurynWeight whi) { std::stringstream oss; - oss << "SparseConnection: (" << get_name() << "): randomizing non-zero connections (gaussian) with binary weights between " + oss << get_log_name() << "randomizing non-zero connections (gaussian) with binary weights between " << wlo << " and " << whi ; auryn::logger->msg(oss.str(),NOTIFICATION); @@ -249,7 +250,7 @@ void SparseConnection::init_random_binary(AurynFloat prob, AurynWeight wlo, Aury void SparseConnection::sparse_set_data(AurynDouble sparseness, AurynWeight value) { std::stringstream oss; - oss << "SparseConnection: (" << get_name() << "): setting data sparsely with sparseness=" << sparseness << " value=" << value ; + oss << get_log_name() << ": setting data sparsely with sparseness=" << sparseness << " value=" << value ; auryn::logger->msg(oss.str(),VERBOSE); boost::exponential_distribution<> dist(sparseness); @@ -267,7 +268,7 @@ void SparseConnection::sparse_set_data(AurynDouble sparseness, AurynWeight value void SparseConnection::random_col_data(AurynWeight mean, AurynWeight sigma) { std::stringstream oss; - oss << "SparseConnection: (" << get_name() << "): Randomly scaling cols (gaussian) with mean=" << mean << " sigma=" << sigma ; + oss << get_log_name() << "Randomly scaling cols (gaussian) with mean=" << mean << " sigma=" << sigma ; auryn::logger->msg(oss.str(),VERBOSE); boost::normal_distribution<> dist((double)mean, (double)sigma); @@ -384,9 +385,8 @@ void SparseConnection::connect_block_random(AurynWeight weight, catch ( AurynMatrixDimensionalityException ) { std::stringstream oss; - oss << "SparseConnection: (" - << get_name() - <<"): Trying to add elements outside of matrix (i=" + oss << get_log_name() + <<"Trying to add elements outside of matrix (i=" << i << "j=" << j @@ -399,8 +399,8 @@ void SparseConnection::connect_block_random(AurynWeight weight, catch ( AurynMatrixPushBackException ) { std::stringstream oss; - oss << "SparseConnection: ("<< get_name() - << "): Failed pushing back element. Maybe due to out of order pushing? " + oss << get_log_name() + << "Failed pushing back element. Maybe due to out of order pushing? " << " (" << i << "," << j << ") " << " with count=" << count << " in connect_block_random ( fill_level= " << w->get_fill_level() << " )"; @@ -410,9 +410,8 @@ void SparseConnection::connect_block_random(AurynWeight weight, catch ( AurynMatrixBufferException ) { std::stringstream oss; - oss << "SparseConnection: (" - << get_name() - <<"): Buffer full after pushing " + oss << get_log_name() + <<"Buffer full after pushing " << count << " elements." << " There are pruned connections!"; @@ -441,7 +440,7 @@ void SparseConnection::connect_block_random(AurynWeight weight, } std::stringstream oss; - oss << "SparseConnection: ("<< get_name() <<"): Finished connect_block_random [" + oss << get_log_name() << "Finished connect_block_random [" << lo_row << ", " << hi_row << ", " << lo_col << ", " << hi_col << "] " << " (stop count " << std::scientific << std::setprecision(4) << (double) stop << ") and successfully pushed " << (double) count << " entries. " @@ -453,7 +452,7 @@ void SparseConnection::connect_random(AurynWeight weight, AurynDouble sparseness { if ( dst->evolve_locally() ) { // if there are no local units there is no need for synapses std::stringstream oss; - oss << "SparseConnection: ("<< get_name() <<"): Randomfill with weight "<< weight << " and sparseness " << sparseness; + oss << get_log_name() <<"Randomfill with weight "<< weight << " and sparseness " << sparseness; auryn::logger->msg(oss.str(),VERBOSE); w->clear(); connect_block_random(weight,sparseness,0,get_m_rows(),0,get_n_cols(),skip_diag); @@ -466,12 +465,12 @@ void SparseConnection::finalize() w->fill_zeros(); if ( dst->evolve_locally() ) { std::stringstream oss; - oss << "SparseConnection: ("<< get_name() <<"): Finalized with fill level " << w->get_fill_level(); + oss << get_log_name() << "Finalized with fill level " << w->get_fill_level(); auryn::logger->msg(oss.str(),VERBOSE); if (w->get_fill_level()get_fill_level() << ")! Make sure everything is in order!"; + oss2 << get_log_name() <<"Wasteful fill level (" << w->get_fill_level() << ")! Make sure everything is in order!"; auryn::logger->msg(oss2.str(),WARNING); } } @@ -704,7 +703,7 @@ AurynLong SparseConnection::dryrun_from_file(std::string filename) std::ifstream infile (filename.c_str()); if (!infile) { std::stringstream oss; - oss << "Can't open input file " << filename; + oss << get_log_name() << "Can't open input file " << filename; auryn::logger->msg(oss.str(),ERROR); throw AurynOpenFileException(); } @@ -721,7 +720,7 @@ AurynLong SparseConnection::dryrun_from_file(std::string filename) if (header.compare(buffer)!=0) { std::stringstream oss; - oss << "Input format not recognized."; + oss << get_log_name() << "Input format not recognized."; auryn::logger->msg(oss.str(),ERROR); return false; } @@ -753,7 +752,7 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, std::string filename, A std::ifstream infile (filename.c_str()); if (!infile) { std::stringstream oss; - oss << "Can't open input file " << filename; + oss << get_log_name() << "Can't open input file " << filename; auryn::logger->msg(oss.str(),ERROR); throw AurynOpenFileException(); } @@ -772,7 +771,7 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, std::string filename, A if (header.compare(buffer)!=0) { std::stringstream oss; - oss << "Input format not recognized."; + oss << get_log_name() << "Input format not recognized."; auryn::logger->msg(oss.str(),ERROR); return false; } @@ -792,7 +791,7 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, std::string filename, A m->clear(); } else { std::stringstream oss; - oss << "Buffer too small (" + oss << get_log_name() << "Buffer too small (" << m->get_datasize() << " -> " << k @@ -822,7 +821,7 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, std::string filename, A catch ( AurynMatrixPushBackException ) { std::stringstream oss; - oss << "Push back failed. Error in line=" << count << ", " + oss << get_log_name() << "Push back failed. Error in line=" << count << ", " << " i=" << i << " j=" << j << " v=" << val << ". " @@ -845,9 +844,8 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, std::string filename, A catch ( AurynMatrixDimensionalityException ) { std::stringstream oss; - oss << "SparseConnection: (" - << get_name() - <<"): Trying to add elements outside of matrix (i=" + oss << get_log_name() + <<"Trying to add elements outside of matrix (i=" << i << ", j=" << j @@ -864,7 +862,7 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, std::string filename, A if ( pushback_count != m->get_nonzero() ) { // this should never happen without an exception above, but better be save than sorry oss.str(""); - oss << get_name() << ": " + oss << get_log_name() << pushback_count << " elements pushed, but only " << m->get_nonzero() @@ -872,7 +870,7 @@ bool SparseConnection::load_from_file(ForwardMatrix * m, std::string filename, A auryn::logger->msg(oss.str(),ERROR); } else { oss.str(""); - oss << get_name() << ": OK, " + oss << get_log_name() << "OK, " << pushback_count << " elements pushed."; auryn::logger->msg(oss.str(),VERBOSE); @@ -920,7 +918,7 @@ AurynLong SparseConnection::get_nonzero() void SparseConnection::put_pattern( type_pattern * pattern, AurynWeight strength, bool overwrite ) { std::stringstream oss; - oss << "SparseConnection: ("<< get_name() <<"): Putting assembly ( size " << pattern->size() << " )"; + oss << get_log_name() << "Putting assembly ( size " << pattern->size() << " )"; auryn::logger->msg(oss.str(),VERBOSE); put_pattern( pattern, pattern, strength, overwrite ); @@ -964,12 +962,12 @@ void SparseConnection::load_patterns( std::string filename, AurynWeight strength std::ifstream fin (filename.c_str()); if (!fin) { std::stringstream oss2; - oss2 << "SparseConnection: There was a problem opening file " << filename << " for reading."; + oss2 << get_log_name() << "There was a problem opening file " << filename << " for reading."; auryn::logger->msg(oss2.str(),WARNING); return; } else { std::stringstream oss; - oss << "SparseConnection: ("<< get_name() <<"): Loading patterns from " << filename << " ..."; + oss << get_log_name() << "Loading patterns from " << filename << " ..."; auryn::logger->msg(oss.str(),NOTIFICATION); } @@ -1007,7 +1005,7 @@ void SparseConnection::load_patterns( std::string filename, AurynWeight strength iss >> pm.i ; if ( !wrap_patterns && !istoolarge && pm.i > mindimension ) { std::stringstream oss; - oss << "SparseConnection: ("<< get_name() <<"): Some elements of pattern " << patcount << " are larger than the underlying NeuronGroups!"; + oss << get_log_name() << "Some elements of pattern " << patcount << " are larger than the underlying NeuronGroups!"; auryn::logger->msg(oss.str(),WARNING); istoolarge = true; } @@ -1031,7 +1029,7 @@ void SparseConnection::load_patterns( std::string filename, AurynWeight strength fin.close(); std::stringstream oss; - oss << "SparseConnection: ("<< get_name() <<"): Added " << patcount << " patterns"; + oss << get_log_name() << "Added " << patcount << " patterns"; auryn::logger->msg(oss.str(),NOTIFICATION); } From 1e04b4d8b3296254981373f22251faf89b5cc57d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:30:45 +0200 Subject: [PATCH 109/460] Adds new get_log_name function --- src/Connection.cpp | 14 ++++++++++++++ src/Connection.h | 7 +++++++ 2 files changed, 21 insertions(+) diff --git a/src/Connection.cpp b/src/Connection.cpp index 73eec194..ce6803c8 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -82,6 +82,20 @@ std::string Connection::get_name() return connection_name; } +std::string Connection::get_file_name() +{ + std::string filename (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__); + return filename; +} + +std::string Connection::get_log_name() +{ + std::stringstream oss; + oss << get_name() << " (" + << get_file_name() << "): "; + return oss.str(); +} + TransmitterType Connection::get_transmitter() { return trans; diff --git a/src/Connection.h b/src/Connection.h index 51b2a73a..0cf98ca9 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -26,6 +26,7 @@ #ifndef CONNECTION_H_ #define CONNECTION_H_ + #include #include "auryn_definitions.h" @@ -111,6 +112,12 @@ class Connection /*! \brief Returns name of connection */ std::string get_name(); + /*! \brief Extracts the class name of the connection from the file name */ + std::string get_file_name(); + + /*! \brief Returns a string which is the combination of file and connection name for logging. */ + std::string get_log_name(); + /*! \brief Get number of rows (presynaptic) in connection. * * Note that Matrices in Auryn have to be thought of as multiplied from the left. The number of rows thus From ba7820d1095275cf1b558a7bfe89c12143567af7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:31:12 +0200 Subject: [PATCH 110/460] Removes unused variable --- src/auryn_definitions.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index a3dd3b3c..67f4cbef 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -207,7 +207,6 @@ void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b) void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r) { #ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - float * bd = b->data; for ( NeuronID i = 0 ; i < a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) { __m128 chunk_a = sse_load( a->data+i ); From 720df448e84d8d09fedecd610d503bca100a7ffb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:49:34 +0200 Subject: [PATCH 111/460] Implements new get_log_name function --- src/SpikingGroup.cpp | 40 +++++++++++++++++++++++++++------------- src/SpikingGroup.h | 17 ++++++++++++----- 2 files changed, 39 insertions(+), 18 deletions(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 29e2a899..27335f3c 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -60,7 +60,7 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) if ( total > 0 ) { anticipated_total = total; std::stringstream oss; - oss << get_name() << ":: Anticipating " << anticipated_total << " units in total." ; + oss << get_log_name() << ":: Anticipating " << anticipated_total << " units in total." ; auryn::logger->msg(oss.str(),NOTIFICATION); } @@ -82,12 +82,12 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) locked_range = auryn::communicator->size(); std::stringstream oss; - oss << get_name() << ":: Size " << get_rank_size() << " (ROUNDROBIN)"; + oss << get_log_name() << ":: Size " << get_rank_size() << " (ROUNDROBIN)"; auryn::logger->msg(oss.str(),NOTIFICATION); } std::stringstream oss; - oss << get_name() + oss << get_log_name() << ":: Registering SpikeDelay (MINDELAY=" << MINDELAY << ")"; auryn::logger->msg(oss.str(),VERBOSE); @@ -106,7 +106,7 @@ void SpikingGroup::lock_range( double rank_fraction ) if ( rank_fraction == 0 ) { // this is the classical rank lock to one single rank std::stringstream oss; - oss << get_name() << ":: Groups demands to run on single rank only (RANKLOCK)."; + oss << get_log_name() << ":: Groups demands to run on single rank only (RANKLOCK)."; auryn::logger->msg(oss.str(),NOTIFICATION); locked_range = 1; } else { // this is for multiple rank ranges @@ -120,7 +120,7 @@ void SpikingGroup::lock_range( double rank_fraction ) if ( locked_range > free_ranks ) { std::stringstream oss; // oss << "SpikingGroup:: Not enough free ranks to put SpikingGroup defaulting to ROUNDROBIN distribution."; - oss << get_name() << ":: Not enough free ranks for RANGELOCK. Starting to fill at zero again."; + oss << get_log_name() << ":: Not enough free ranks for RANGELOCK. Starting to fill at zero again."; auryn::logger->msg(oss.str(),NOTIFICATION); locked_rank = 0; free_ranks = auryn::communicator->size(); @@ -137,12 +137,12 @@ void SpikingGroup::lock_range( double rank_fraction ) // logging if ( evolve_locally_bool ) { std::stringstream oss; - oss << get_name() << ":: Size "<< get_rank_size() <<" (BLOCKLOCK: ["<< locked_rank + oss << get_log_name() << ":: Size "<< get_rank_size() <<" (BLOCKLOCK: ["<< locked_rank << ":" << locked_rank+locked_range-1 << "] )"; auryn::logger->msg(oss.str(),NOTIFICATION); } else { std::stringstream oss; - oss << get_name() << ":: Passive on this rank (BLOCKLOCK: ["<< locked_rank + oss << get_log_name() << ":: Passive on this rank (BLOCKLOCK: ["<< locked_rank << ":" << locked_rank+locked_range-1 << "] )"; auryn::logger->msg(oss.str(),VERBOSE); } @@ -154,7 +154,7 @@ void SpikingGroup::free() { std::stringstream oss; oss << "SpikingGroup:: " << - get_name() + get_log_name() << " freeing ..."; auryn::logger->msg(oss.str(),VERBOSE); @@ -172,7 +172,7 @@ void SpikingGroup::free() auryn::logger->msg("SpikingGroup:: Freeing state traces",VERBOSE); for ( NeuronID i = 0 ; i < post_state_traces.size() ; ++i ) { std::stringstream oss; - oss << get_name() + oss << get_log_name() << ":: Freeing state trace " << post_state_traces_state_names[i] << " at " @@ -340,7 +340,7 @@ PRE_TRACE_MODEL * SpikingGroup::get_pre_trace( AurynFloat x ) for ( int i = 0 ; i < pretraces.size() ; i++ ) { if ( pretraces[i]->get_tau() == x ) { std::stringstream oss; - oss << get_name() << ":: Sharing pre trace with " << x << "s timeconstant." ; + oss << get_log_name() << ":: Sharing pre trace with " << x << "s timeconstant." ; auryn::logger->msg(oss.str(),VERBOSE); return pretraces[i]; } @@ -360,7 +360,7 @@ DEFAULT_TRACE_MODEL * SpikingGroup::get_post_trace( AurynFloat x ) for ( NeuronID i = 0 ; i < posttraces.size() ; i++ ) { if ( posttraces[i]->get_tau() == x ) { std::stringstream oss; - oss << get_name() << ":: Sharing post trace with " << x << "s timeconstant." ; + oss << get_log_name() << ":: Sharing post trace with " << x << "s timeconstant." ; auryn::logger->msg(oss.str(),VERBOSE); return posttraces[i]; } @@ -385,7 +385,7 @@ EulerTrace * SpikingGroup::get_post_state_trace( std::string state_name, AurynFl && post_state_traces_spike_biases[i] == b && post_state_traces_state_names[i] == state_name ) { std::stringstream oss; - oss << get_name() + oss << get_log_name() << ":: Sharing post state trace for " << state_name << " with " @@ -459,6 +459,20 @@ std::string SpikingGroup::get_name() return group_name; } +std::string Connection::get_file_name() +{ + std::string filename (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__); + return filename; +} + +std::string SpikingGroup::get_log_name() +{ + std::stringstream oss; + oss << get_name() << " (" + << get_file_name() << "): "; + return oss.str(); +} + bool SpikingGroup::localrank(NeuronID i) { #ifdef DEBUG @@ -775,7 +789,7 @@ NeuronID SpikingGroup::get_vector_size() void SpikingGroup::inc_num_spike_attributes(int x) { std::stringstream oss; - oss << get_name() << ":: Registering " << x << " spike attributes." ; + oss << get_log_name() << ":: Registering " << x << " spike attributes." ; auryn::logger->msg(oss.str(),VERBOSE); delay->inc_num_attributes(x); diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 48a03a4b..3ea4a1e7 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -148,20 +148,27 @@ class SpikingGroup /*! Randomizes the content of a state vector with Gaussian random numbers. Seeding is MPI save. */ void randomize_state_vector_gauss(std::string state_vector_name, AurynState mean, AurynState sigma, int seed=12239); - /*! Default constructor */ + /*! \brief Default constructor */ SpikingGroup(NeuronID size, double loadmultiplier = 1., NeuronID total = 0 ); - /*! Default destructor */ + + /*! \brief Default destructor */ virtual ~SpikingGroup(); - /*! Evolves traces */ + /*! \brief Evolves traces */ virtual void evolve_traces(); - /*! Give a name */ + /*! \brief Set connection name */ void set_name(std::string s); - /*! Retrieves the groups name */ + /*! \brief Retrieves the groups name */ std::string get_name(); + /*! \brief Extracts the class name of the connection from the file name */ + std::string get_file_name(); + + /*! \brief Returns a string which is the combination of file and connection name for logging. */ + std::string get_log_name(); + /*! \brief Instructs SpikingGroup to increase the number of spike attributes by x. * * The reason we only increment the size is that multiple Connection objects such as From f5644e5c4d5525d11e58cbde0d3f15edfcf8471c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:52:39 +0200 Subject: [PATCH 112/460] Removes CC bug --- src/SpikingGroup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 27335f3c..fdd5a77b 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -459,7 +459,7 @@ std::string SpikingGroup::get_name() return group_name; } -std::string Connection::get_file_name() +std::string SpikingGroup::get_file_name() { std::string filename (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__); return filename; From 810a04bd6a3c4154ee323b3833795c0eb2fb8626 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 10:59:23 +0200 Subject: [PATCH 113/460] Adds example release bootstrap script --- build/release/bootstrap.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 build/release/bootstrap.sh diff --git a/build/release/bootstrap.sh b/build/release/bootstrap.sh new file mode 100755 index 00000000..c129612d --- /dev/null +++ b/build/release/bootstrap.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cmake ../../ -DCMAKE_BUILD_TYPE=Release && make + From 3167d28979e371ceecc0bbb6e9b1472f1b0a0a30 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 11:11:44 +0200 Subject: [PATCH 114/460] Moves example bootstrap files --- build/home/bootstrap.sh | 4 ---- 1 file changed, 4 deletions(-) delete mode 100755 build/home/bootstrap.sh diff --git a/build/home/bootstrap.sh b/build/home/bootstrap.sh deleted file mode 100755 index c129612d..00000000 --- a/build/home/bootstrap.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -cmake ../../ -DCMAKE_BUILD_TYPE=Release && make - From dd408842ffcda97a9c4aab9eba00160801d15213 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 11:13:52 +0200 Subject: [PATCH 115/460] Starts replacing legacy code in SpikingGroup and IFGroup --- src/IFGroup.cpp | 3 ++- src/IFGroup.h | 6 +++--- src/SpikingGroup.cpp | 33 ++++++++++++++++----------------- src/SpikingGroup.h | 8 ++++---- 4 files changed, 25 insertions(+), 25 deletions(-) diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index a7ab1950..eeb84301 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -142,7 +142,8 @@ void IFGroup::integrate_membrane() void IFGroup::check_thresholds() { - auryn_vector_float_clip( mem, e_rev ); + // auryn_vector_float_clip( mem, e_rev ); + mem->clip( e_rev, 0.0 ); AurynState * thr_ptr = thr->data; for ( AurynState * i = mem->data ; i != mem->data+get_rank_size() ; ++i ) { // it's important to use rank_size here otherwise there might be spikes from units that do not exist diff --git a/src/IFGroup.h b/src/IFGroup.h index 79b3de25..5ca7a969 100644 --- a/src/IFGroup.h +++ b/src/IFGroup.h @@ -47,9 +47,9 @@ namespace auryn { class IFGroup : public NeuronGroup { private: - auryn_vector_float * t_leak; - auryn_vector_float * t_exc; - auryn_vector_float * t_inh; + AurynVectorFloat * t_leak; + AurynVectorFloat * t_exc; + AurynVectorFloat * t_inh; AurynFloat scale_ampa,scale_gaba, scale_thr; AurynFloat tau_ampa,tau_gaba,tau_nmda; AurynFloat A_ampa,A_nmda; diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index fdd5a77b..8be681ad 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -182,11 +182,11 @@ void SpikingGroup::free() } auryn::logger->msg("SpikingGroup:: Freeing state vectors",VERBOSE); - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector - auryn_vector_float_free ( iter->second ); + delete iter->second; } state_vectors.clear(); @@ -504,7 +504,7 @@ bool SpikingGroup::write_to_file(const char * filename) outfile << "# Auryn SpikingGroup state file for n="<< get_rank_size() <<" neurons (ver. " << AURYNVERSION << ")" << std::endl; outfile << "# Default field order (might be overwritten): "; - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector @@ -580,7 +580,7 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const ar & *delay; auryn::logger->msg("SpikingGroup:: serializing state vectors",VERBOSE); - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector @@ -607,13 +607,13 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const ar & *delay; auryn::logger->msg("SpikingGroup:: reading state vectors",VERBOSE); - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector std::string key; ar & key; - auryn_vector_float * vect = get_state_vector(key); + AurynVectorFloat * vect = get_state_vector(key); ar & *vect; } @@ -631,7 +631,7 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const } -void SpikingGroup::add_state_vector(std::string key, auryn_vector_float * state_vector) +void SpikingGroup::add_state_vector(std::string key, AurynVectorFloat * state_vector) { if ( key[0] == '_' ) { @@ -650,12 +650,11 @@ void SpikingGroup::remove_state_vector( std::string key ) state_vectors.erase(key); } -auryn_vector_float * SpikingGroup::get_state_vector(std::string key) +AurynVectorFloat * SpikingGroup::get_state_vector(std::string key) { if ( state_vectors.find(key) == state_vectors.end() ) { if ( get_vector_size() == 0 ) return NULL; - auryn_vector_float * vec = auryn_vector_float_alloc (get_vector_size()); - auryn_vector_float_set_zero( vec ); + AurynVectorFloat * vec = new AurynVectorFloat(get_vector_size()); add_state_vector(key, vec); return vec; } else { @@ -663,7 +662,7 @@ auryn_vector_float * SpikingGroup::get_state_vector(std::string key) } } -auryn_vector_float * SpikingGroup::find_state_vector(std::string key) +AurynVectorFloat * SpikingGroup::find_state_vector(std::string key) { if ( state_vectors.find(key) == state_vectors.end() ) { return NULL; @@ -679,12 +678,12 @@ void SpikingGroup::randomize_state_vector_gauss(std::string state_vector_name, A boost::variate_generator > die(ng_gen, dist); AurynState rv; - auryn_vector_float * vec = get_state_vector(state_vector_name); + AurynVectorFloat * vec = get_state_vector(state_vector_name); for ( AurynLong i = 0 ; iset( i, rv ); } } @@ -693,11 +692,11 @@ std::string SpikingGroup::get_output_line(NeuronID i) { std::stringstream oss; - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector - oss << std::scientific << auryn_vector_float_get( iter->second, i ) << " "; + oss << std::scientific << iter->second->get( i ) << " "; } for ( NeuronID k = 0 ; k < pretraces.size() ; k++ ) { @@ -727,7 +726,7 @@ void SpikingGroup::load_input_line(NeuronID i, const char * buf) float temp; // read the state_vectors - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector @@ -739,7 +738,7 @@ void SpikingGroup::load_input_line(NeuronID i, const char * buf) } bytes_consumed += bytes_now; nums_read += nums_now; - auryn_vector_float_set(iter->second, i, temp ); + iter->second->set( i, temp ); } for ( int k = 0 ; k < pretraces.size() ; k++ ) { diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 3ea4a1e7..9ac73e23 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -127,15 +127,15 @@ class SpikingGroup SpikeDelay * delay; /*! Can hold single neuron vectors such as target rates or STP states etc */ - std::map state_vectors; + std::map state_vectors; /*! \brief Returns existing state vector by name. * * If the state_vector does not exist the function returns NULL. */ - auryn_vector_float * find_state_vector(std::string key); + AurynVectorFloat * find_state_vector(std::string key); /*! \brief Adds a state vector passed as an argument to the dictinary. */ - void add_state_vector( std::string key, auryn_vector_float * state_vector ); + void add_state_vector( std::string key, AurynVectorFloat * state_vector ); /*! \brief Removes a state vector passed as an argument to the dictinary. * @@ -143,7 +143,7 @@ class SpikingGroup void remove_state_vector( std::string key ); /*! \brief Creates a new or returns an existing state vector by name. */ - auryn_vector_float * get_state_vector(std::string key); + AurynVectorFloat * get_state_vector(std::string key); /*! Randomizes the content of a state vector with Gaussian random numbers. Seeding is MPI save. */ void randomize_state_vector_gauss(std::string state_vector_name, AurynState mean, AurynState sigma, int seed=12239); From 2da674ab968b9692d18956f17591bff0c2024e65 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 11:29:06 +0200 Subject: [PATCH 116/460] Moves AurynVector template to its own file This moves the new code for the vector object to its own file and keeps the legacy code which now operates on the object in auryn_definitions. The AurynVector template is forward declared in auryn_definitions for now. Tests show that with a good compiler we do not even need to explicitly implement the SIMD instructions manually. The four loops are apparently detected and vectorized automatically without notable performance degradation. The use of the old functions is now discouraged. --- src/AurynVector.h | 217 +++++++++++++++++++++++++++++++++++++ src/auryn_definitions.cpp | 1 + src/auryn_definitions.h | 220 +------------------------------------- 3 files changed, 222 insertions(+), 216 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 09f5cdff..eb84cb9d 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -31,6 +31,223 @@ namespace auryn { + /*! \brief Auryn vector template + * + * Copies the core of GSL vector functionality + * */ + template + class AurynVector { + private: + friend class boost::serialization::access; + template + void serialize(Archive & ar, const unsigned int version) + { + ar & size; + for ( NeuronID i = 0 ; i < size ; ++i ) + ar & data[i]; + } + + /*! \brief Checks if argument is larger than size and throws and exception if so + * + * Check only enabled if NDEBUG is not defined.*/ + void check_size(NeuronID x) + { +#ifndef NDEBUG + if ( x >= size ) { + throw AurynVectorDimensionalityException(); + } +#endif + } + + /*! \brief Checks if vector size matches to this instance + * + * Check only enabled if NDEBUG is not defined.*/ + void check_size(AurynVector * v) + { +#ifndef NDEBUG + if ( v->size != size ) { + throw AurynVectorDimensionalityException(); + } +#endif + } + + public: + // We keep these params public for legacy compatibility reasons + NeuronID size; + T * data; + + /*! \brief Default constructor */ + AurynVector(NeuronID n) + { + size = n; + data = new T [n]; + set_zero(); // let's give it a defined initial value + } + + /*! \brief Default destructor */ + ~AurynVector() + { + delete data; + } + + /*! \brief Set all elements to value v. */ + void set_all(T v) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] = v; + } + } + + /*! \brief Set all elements to zero. */ + void set_zero() + { + set_all(0.0); + } + + /*! \brief Scales all vector elements by a. */ + void scale(AurynFloat a) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] *= a; + } + } + + /*! \brief Adds constant c to each vector element */ + void add(AurynFloat c) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] += c; + } + } + + /*! \brief Adds a vector v to the vector + * + * No checking of the dimensions match! */ + void add(AurynVector * v) + { + check_size(v); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] += v->data[i]; + } + } + + /*! \brief Subtract constant c to each vector element */ + void sub(AurynFloat c) + { + add(-c); + } + + /*! \brief Elementwise subtraction */ + void sub(AurynVector * v) + { + check_size(v); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] -= v->data[i]; + } + } + + /*! \brief Multiply all vector elements by constant */ + void mul(AurynFloat a) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] *= a; + } + } + + /*! \brief Element-wise vector multiply + * + * No size checking, be careful! */ + void mul(AurynVector * v) + { + check_size(v); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] *= v->data[i]; + } + } + + /*! \brief Copies vector v + * + * No size checking, be careful! */ + void copy(AurynVector * v) + { + check_size(v); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] = v->data[i]; + } + } + + + /*! \brief SAXPY operation as in GSL + * + * Computes a*x + y and stores the result to y where y is the present instance. + * \param a The scaling factor for the additional vector + * \param x The additional vector to add + * */ + void saxpy(T a, AurynVector * x) + { + check_size(x); + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] += a * x->data[i]; + } + } + + /*! \brief SAXPY operation which adds to result vector + * + * Computes a*x + y and stores the result to 'result' where y is the present instance. + * \param a The scaling factor for the additional vector + * \param x The additional vector to add + * \param result The target vector + * */ + void saxpy(T a, AurynVector * x, AurynVector * result) + { + check_size(x); + check_size(result); + for ( NeuronID i = 0 ; i < size ; ++i ) { + result->data[i] += a * x->data[i] + data[i]; + } + } + + /*! \brief Gets element i from vector */ + T get(NeuronID i) + { + check_size(i); + return data[i]; + } + + /*! \brief Gets pointer to element i from vector + * + * When no argument is given the function returns the first element of + * data array of the vector. */ + T ptr(NeuronID i = 0) + { + check_size(i); + return data+i; + } + + /*! \brief Sets element i in vector to value */ + void set(NeuronID i, T value) + { + check_size(i); + data[i] = value; + } + + /*! \brief Clips all vector elements to the range min max + * + * \param min Minimum value + * \param max Maximum value + */ + void clip(T min, T max) + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + if ( data[i] < min ) { + data[i] = min; + } else + if ( data[i] > max ) + data[i] = max; + } + } + }; + } diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index 67f4cbef..7bc56ab9 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -24,6 +24,7 @@ */ #include "auryn_definitions.h" +#include "AurynVector.h" // required for forward declaration of template namespace auryn { diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 9ae21ad6..eb7d94e1 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -300,224 +300,11 @@ namespace auryn { } }; - /*! \brief Auryn vector template - * - * Copies the core of GSL vector functionality - * */ - template - class AurynVector { - private: - friend class boost::serialization::access; - template - void serialize(Archive & ar, const unsigned int version) - { - ar & size; - for ( NeuronID i = 0 ; i < size ; ++i ) - ar & data[i]; - } - - /*! \brief Checks if argument is larger than size and throws and exception if so - * - * Check only enabled if NDEBUG is not defined.*/ - void check_size(NeuronID x) - { -#ifndef NDEBUG - if ( x >= size ) { - throw AurynVectorDimensionalityException(); - } -#endif - } - - /*! \brief Checks if vector size matches to this instance - * - * Check only enabled if NDEBUG is not defined.*/ - void check_size(AurynVector * v) - { -#ifndef NDEBUG - if ( v->size != size ) { - throw AurynVectorDimensionalityException(); - } -#endif - } - - public: - // We keep these params public for legacy compatibility reasons - NeuronID size; - T * data; - - /*! \brief Default constructor */ - AurynVector(NeuronID n) - { - size = n; - data = new T [n]; - set_zero(); // let's give it a defined initial value - } - - /*! \brief Default destructor */ - ~AurynVector() - { - delete data; - } - - /*! \brief Set all elements to value v. */ - void set_all(T v) - { - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] = v; - } - } - - /*! \brief Set all elements to zero. */ - void set_zero() - { - set_all(0.0); - } - - /*! \brief Scales all vector elements by a. */ - void scale(AurynFloat a) - { - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] *= a; - } - } - - /*! \brief Adds constant c to each vector element */ - void add(AurynFloat c) - { - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] += c; - } - } - - /*! \brief Adds a vector v to the vector - * - * No checking of the dimensions match! */ - void add(AurynVector * v) - { - check_size(v); - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] += v->data[i]; - } - } - - /*! \brief Subtract constant c to each vector element */ - void sub(AurynFloat c) - { - add(-c); - } - - /*! \brief Elementwise subtraction */ - void sub(AurynVector * v) - { - check_size(v); - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] -= v->data[i]; - } - } - - /*! \brief Multiply all vector elements by constant */ - void mul(AurynFloat a) - { - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] *= a; - } - } - - /*! \brief Element-wise vector multiply - * - * No size checking, be careful! */ - void mul(AurynVector * v) - { - check_size(v); - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] *= v->data[i]; - } - } - - /*! \brief Copies vector v - * - * No size checking, be careful! */ - void copy(AurynVector * v) - { - check_size(v); - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] = v->data[i]; - } - } - - - /*! \brief SAXPY operation as in GSL - * - * Computes a*x + y and stores the result to y where y is the present instance. - * \param a The scaling factor for the additional vector - * \param x The additional vector to add - * */ - void saxpy(T a, AurynVector * x) - { - check_size(x); - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] += a * x->data[i]; - } - } - - /*! \brief SAXPY operation which adds to result vector - * - * Computes a*x + y and stores the result to 'result' where y is the present instance. - * \param a The scaling factor for the additional vector - * \param x The additional vector to add - * \param result The target vector - * */ - void saxpy(T a, AurynVector * x, AurynVector * result) - { - check_size(x); - check_size(result); - for ( NeuronID i = 0 ; i < size ; ++i ) { - result->data[i] += a * x->data[i] + data[i]; - } - } - - /*! \brief Gets element i from vector */ - T get(NeuronID i) - { - check_size(i); - return data[i]; - } - - /*! \brief Gets pointer to element i from vector - * - * When no argument is given the function returns the first element of - * data array of the vector. */ - T ptr(NeuronID i = 0) - { - check_size(i); - return data+i; - } - - /*! \brief Sets element i in vector to value */ - void set(NeuronID i, T value) - { - check_size(i); - data[i] = value; - } - - /*! \brief Clips all vector elements to the range min max - * - * \param min Minimum value - * \param max Maximum value - */ - void clip(T min, T max) - { - for ( NeuronID i = 0 ; i < size ; ++i ) { - if ( data[i] < min ) { - data[i] = min; - } else - if ( data[i] > max ) - data[i] = max; - } - } - }; + // forward declartion of template class which is implemented in AurynVector.h + template + class AurynVector; typedef AurynVector AurynVectorFloat; //!< Default Auryn state vector type @@ -527,6 +314,7 @@ namespace auryn { // Legacy float vector functions + // These functions should not be used any more in the future. Instead use the member functions of AurynVectorFloat /*! Allocates an auryn_vector_float */ auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); From 1aa3a8aea91b8d8161d7ffb918a1c85b833fed5e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 11:44:42 +0200 Subject: [PATCH 117/460] Updates readme to point to the new bootstrap file --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7b78f656..6b52ffa7 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,8 @@ To download and compile the examples try: ``` sudo apt-get install cmake git build-essential libboost-all-dev -git clone https://github.com/fzenke/auryn.git && cd auryn -mkdir build && cd build -cmake ../ -DCMAKE_BUILD_TYPE=Release && make +git clone https://github.com/fzenke/auryn.git && cd auryn/build/release +./bootstrap ``` Documentation & Installation/Use From f3bd7a3390472a107d28f6face469d7b28bd8b78 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 12:08:31 +0200 Subject: [PATCH 118/460] Updates doxystring --- src/AurynVector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index eb84cb9d..4a790435 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -33,7 +33,7 @@ namespace auryn { /*! \brief Auryn vector template * - * Copies the core of GSL vector functionality + * Copies the core of GSL vector functionality and makes it a class for easier handling. * */ template class AurynVector { From d66bc153e554e2a44909e4b976d2a345e7f6835c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 12:56:08 +0200 Subject: [PATCH 119/460] Updates Travis script --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9571b94f..44eeefaa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ install: - sudo apt-get install -y -qq libboost-all-dev openmpi-bin libopenmpi-dev - sudo apt-get install -y -qq cmake script: - - mkdir build && cd build && cmake ../ -DCMAKE_BUILD_TYPE=Release && make + - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make notifications: email: From 9edd8e05b5f69f24e041b0eab806b4b4e55c8e7f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 13:10:53 +0200 Subject: [PATCH 120/460] Adds feature to System Adds a function to return the last elapsed time. --- src/System.cpp | 9 +++++++++ src/System.h | 6 ++++++ 2 files changed, 15 insertions(+) diff --git a/src/System.cpp b/src/System.cpp index 15cafdd7..6e43c44e 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -38,6 +38,7 @@ void System::init() { online_rate_monitor_id = 0; online_rate_monitor_state = 0.0; + last_elapsed_time = -1.0; progressbar_update_interval = PROGRESSBAR_DEFAULT_UPDATE_INTERVAL; @@ -446,6 +447,8 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, double elapsed = difftime(t_now,t_sim_start); #endif + last_elapsed_time = elapsed; + oss.str(""); oss << "Simulation finished. Ran for " << elapsed @@ -794,6 +797,11 @@ void System::set_online_rate_monitor_id( unsigned int id ) online_rate_monitor_id = -1; } +AurynDouble System::get_last_elapsed_time() +{ + return last_elapsed_time; +} + #ifdef CODE_COLLECT_SYNC_TIMING_STATS AurynDouble System::get_relative_sync_time() { @@ -812,6 +820,7 @@ AurynDouble System::get_elapsed_wall_time() return temp-measurement_start; } + void System::reset_sync_time() { AurynDouble temp = MPI_Wtime(); diff --git a/src/System.h b/src/System.h index 98cf8b66..53b45689 100644 --- a/src/System.h +++ b/src/System.h @@ -75,6 +75,9 @@ namespace auryn { double simulation_time_realtime_ratio; + /*! Store elapsed time for last call of run */ + double last_elapsed_time; + int online_rate_monitor_id; double online_rate_monitor_tau; double online_rate_monitor_mul; @@ -104,6 +107,9 @@ namespace auryn { /*! Propagates the spikes and evolves connection objects. */ void propagate(); + /*! Returns last elapsed time. */ + double get_last_elapsed_time(); + /*! Performs integration of Connection objects. * Since this is independent of the SpikingGroup evolve we * can do this while we are waiting for synchronization. */ From 17507905cfaaed9f19642710a88fe73a1587bb87 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 13:17:48 +0200 Subject: [PATCH 121/460] Adds elapsed time output to sim_coba_benchmark --- examples/sim_coba_benchmark.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/sim_coba_benchmark.cpp b/examples/sim_coba_benchmark.cpp index daf93885..36ab4468 100644 --- a/examples/sim_coba_benchmark.cpp +++ b/examples/sim_coba_benchmark.cpp @@ -124,7 +124,7 @@ int main(int ac,char *av[]) { char tmp [255]; std::stringstream logfile; logfile << outputfile << "log"; - logger = new Logger(logfile.str(),world.rank(),PROGRESS,EVERYTHING); + logger = new Logger(logfile.str(),world.rank()); sys = new System(&world); // END Global stuff @@ -189,10 +189,14 @@ int main(int ac,char *av[]) { errcode = 1; logger->msg("Freeing ..." ,PROGRESS,true); + logger->parameter("elapsed", sys->get_last_elapsed_time() ); + delete sys; if (errcode) env.abort(errcode); + + return errcode; } From 7d8edb2201cb51b8c4a07ec90031cc2f7841726e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 13:18:10 +0200 Subject: [PATCH 122/460] Adds verbose CLI switch to sim_background --- examples/sim_background.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/examples/sim_background.cpp b/examples/sim_background.cpp index cac116d8..02981c56 100644 --- a/examples/sim_background.cpp +++ b/examples/sim_background.cpp @@ -51,6 +51,7 @@ int main(int ac, char* av[]) double kappa = 3.; bool quiet = false; + bool verbose = false; bool scaling = false; bool wmatdump = false; bool loadbalance = false; @@ -118,6 +119,7 @@ int main(int ac, char* av[]) desc.add_options() ("help", "produce help message") ("quiet", "quiet mode") + ("verbose", "verbose mode") ("scaling", "scaling mode") ("balance", "activate load balance") ("load", po::value(), "input weight matrix") @@ -180,6 +182,10 @@ int main(int ac, char* av[]) quiet = true; } + if (vm.count("verbose")) { + verbose = true; + } + if (vm.count("scaling")) { scaling = true; } @@ -476,7 +482,10 @@ int main(int ac, char* av[]) sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.log", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); std::string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + + LogMessageType log_level_file = PROGRESS; + if ( verbose ) log_level_file = EVERYTHING; + logger = new Logger(logfile,world.rank(),PROGRESS,log_level_file); sys = new System(&world); // boost::filesystem::path p = av[0]; From 3cfc5d0bd8619cabd0d1aac848b0ca36814aca05 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 13:18:30 +0200 Subject: [PATCH 123/460] Fixes acess rights of new function in System --- src/System.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/System.h b/src/System.h index 53b45689..465e4d9a 100644 --- a/src/System.h +++ b/src/System.h @@ -107,8 +107,6 @@ namespace auryn { /*! Propagates the spikes and evolves connection objects. */ void propagate(); - /*! Returns last elapsed time. */ - double get_last_elapsed_time(); /*! Performs integration of Connection objects. * Since this is independent of the SpikingGroup evolve we @@ -149,6 +147,9 @@ namespace auryn { /*! Sets the timeconstant to compute the online rate average for the status bar. */ void set_online_rate_monitor_tau( AurynDouble tau=100e-3 ); + /*! Returns last elapsed time. */ + double get_last_elapsed_time(); + /*! \brief Saves network state to a netstate file * * This function saves the network state to one serialized file. The network From f51d1c0653d8da4a76a6d1e95e5f10cce94b5688 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 14:00:42 +0200 Subject: [PATCH 124/460] Adds benchmarking code --- build/release/run_benchmark.sh | 51 +++++++++++++++++++++++++++++++++ examples/sim_background.cpp | 11 +++++++ examples/sim_coba_benchmark.cpp | 12 ++++++-- 3 files changed, 72 insertions(+), 2 deletions(-) create mode 100755 build/release/run_benchmark.sh diff --git a/build/release/run_benchmark.sh b/build/release/run_benchmark.sh new file mode 100755 index 00000000..82435922 --- /dev/null +++ b/build/release/run_benchmark.sh @@ -0,0 +1,51 @@ +#!/bin/bash + +# Compile code +make clean +./bootstrap.sh + +# Benchmark parameters +SIMTIME=100 +STATRUNS="1 2 3 4 5" +REVISION=`git log --pretty=oneline -1 | cut -d " " -f 1` +TMPDIR=`mktemp -d` + +# Function declaration +function fun_benchmark() +{ + echo $1 + > $TMPDIR/times.dat + for VARIABLE in $STATRUNS; do + $1 + cat $TMPDIR/elapsed.dat >> $TMPDIR/times.dat + done + + awk '{ for (i=1;i<=NF;i++) { sum[i] += 1.0*$i; sum2[i] += 1.0*$i*$i; } } \ + END { for (i=1;i<=NF;i++) { mean = 1.*sum[i]/NR; var = 1.*sum2[i]/NR-mean*mean; std = sqrt(var); \ + printf "%f %f\t",mean,std } printf "\n" }' $TMPDIR/times.dat > $TMPDIR/result.dat + + FUNCTION_RESULT=`cat $TMPDIR/result.dat` +} + + +# Vogels-Abbott benchmark, single core +CMD_BENCHMARK1="examples/sim_coba_benchmark --fast --simtime $SIMTIME --dir $TMPDIR" +fun_benchmark "$CMD_BENCHMARK1" +RESULT_BENCHMARK1=$FUNCTION_RESULT + +# Zenke plasticity benchmark, single core +CMD_BENCHMARK2="examples/sim_background --fast --tau 10 --simtime $SIMTIME --dir $TMPDIR" +fun_benchmark "$CMD_BENCHMARK2" +RESULT_BENCHMARK2=$FUNCTION_RESULT + +# Zenke plasticity benchmark, two cores +CMD_BENCHMARK3="mpirun -n 2 examples/sim_background --fast --tau 10 --simtime $SIMTIME --dir $TMPDIR" +fun_benchmark "$CMD_BENCHMARK3" +RESULT_BENCHMARK3=$FUNCTION_RESULT + + +# Writ result to file +echo "$REVISION $RESULT_BENCHMARK1 $RESULT_BENCHMARK2 $RESULT_BENCHMARK3" >> benchmark_results.dat + +# Clean up +rm -r $TMPDIR diff --git a/examples/sim_background.cpp b/examples/sim_background.cpp index 02981c56..2e3be1e6 100644 --- a/examples/sim_background.cpp +++ b/examples/sim_background.cpp @@ -854,6 +854,17 @@ if ( patfile != "" ) { killfile << sys->get_time()-primetime << std::endl; killfile.close(); + + if ( world.rank() == 0 ) { + logger->msg("Saving elapsed time ..." ,PROGRESS,true); + char filenamebuf [255]; + sprintf(filenamebuf, "%s/elapsed.dat", dir.c_str(), world.rank()); + std::ofstream timefile; + timefile.open(filenamebuf); + timefile << sys->get_last_elapsed_time() << std::endl; + timefile.close(); + } + logger->msg("Freeing ...",PROGRESS,true); delete sys; diff --git a/examples/sim_coba_benchmark.cpp b/examples/sim_coba_benchmark.cpp index 36ab4468..19e18eb7 100644 --- a/examples/sim_coba_benchmark.cpp +++ b/examples/sim_coba_benchmark.cpp @@ -188,9 +188,17 @@ int main(int ac,char *av[]) { if (!sys->run(simtime,true)) errcode = 1; - logger->msg("Freeing ..." ,PROGRESS,true); - logger->parameter("elapsed", sys->get_last_elapsed_time() ); + if ( world.rank() == 0 ) { + logger->msg("Saving elapsed time ..." ,PROGRESS,true); + char filenamebuf [255]; + sprintf(filenamebuf, "%s/elapsed.dat", dir.c_str(), world.rank()); + std::ofstream timefile; + timefile.open(filenamebuf); + timefile << sys->get_last_elapsed_time() << std::endl; + timefile.close(); + } + logger->msg("Freeing ..." ,PROGRESS,true); delete sys; if (errcode) From 1dca56ed374fe4b29202bac830e814dcacdf97dd Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 14:07:08 +0200 Subject: [PATCH 125/460] Fixes probelm in benchmark extensions --- examples/sim_background.cpp | 2 +- examples/sim_coba_benchmark.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/sim_background.cpp b/examples/sim_background.cpp index 2e3be1e6..8b2daa9d 100644 --- a/examples/sim_background.cpp +++ b/examples/sim_background.cpp @@ -858,7 +858,7 @@ if ( patfile != "" ) { if ( world.rank() == 0 ) { logger->msg("Saving elapsed time ..." ,PROGRESS,true); char filenamebuf [255]; - sprintf(filenamebuf, "%s/elapsed.dat", dir.c_str(), world.rank()); + sprintf(filenamebuf, "%s/elapsed.dat", dir.c_str()); std::ofstream timefile; timefile.open(filenamebuf); timefile << sys->get_last_elapsed_time() << std::endl; diff --git a/examples/sim_coba_benchmark.cpp b/examples/sim_coba_benchmark.cpp index 19e18eb7..7182887e 100644 --- a/examples/sim_coba_benchmark.cpp +++ b/examples/sim_coba_benchmark.cpp @@ -191,7 +191,7 @@ int main(int ac,char *av[]) { if ( world.rank() == 0 ) { logger->msg("Saving elapsed time ..." ,PROGRESS,true); char filenamebuf [255]; - sprintf(filenamebuf, "%s/elapsed.dat", dir.c_str(), world.rank()); + sprintf(filenamebuf, "%s/elapsed.dat", dir.c_str()); std::ofstream timefile; timefile.open(filenamebuf); timefile << sys->get_last_elapsed_time() << std::endl; From 6f1ca3102889f548ea8bd1484154cebe2f681432 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 14:11:09 +0200 Subject: [PATCH 126/460] Adds feature that saves the hostname in benchmark --- build/release/run_benchmark.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/release/run_benchmark.sh b/build/release/run_benchmark.sh index 82435922..12408ea6 100755 --- a/build/release/run_benchmark.sh +++ b/build/release/run_benchmark.sh @@ -7,6 +7,7 @@ make clean # Benchmark parameters SIMTIME=100 STATRUNS="1 2 3 4 5" +HOSTNAME=`hostname` REVISION=`git log --pretty=oneline -1 | cut -d " " -f 1` TMPDIR=`mktemp -d` @@ -45,7 +46,7 @@ RESULT_BENCHMARK3=$FUNCTION_RESULT # Writ result to file -echo "$REVISION $RESULT_BENCHMARK1 $RESULT_BENCHMARK2 $RESULT_BENCHMARK3" >> benchmark_results.dat +echo "$HOSTNAME $REVISION $RESULT_BENCHMARK1 $RESULT_BENCHMARK2 $RESULT_BENCHMARK3" >> benchmark_results.dat # Clean up rm -r $TMPDIR From 3ecbd4bb780272efe02dbf82f1f0177ca45daeea Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 05:12:34 -0700 Subject: [PATCH 127/460] Adds features to save last benchmark result --- build/release/run_benchmark.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build/release/run_benchmark.sh b/build/release/run_benchmark.sh index 12408ea6..2d43c1ce 100755 --- a/build/release/run_benchmark.sh +++ b/build/release/run_benchmark.sh @@ -26,6 +26,7 @@ function fun_benchmark() printf "%f %f\t",mean,std } printf "\n" }' $TMPDIR/times.dat > $TMPDIR/result.dat FUNCTION_RESULT=`cat $TMPDIR/result.dat` + cp $TMPDIR/result.dat last_benchmark_result.dat } From 41768e04aed9f69fcb71797f7ecd4be78b59cd19 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 15:08:04 +0200 Subject: [PATCH 128/460] Adds coba test script --- tests/coba_checksums.ref | 2 ++ tests/run_coba_test.sh | 30 +++++++++++++++++++++++++++ tests/{ => src}/test_send.cpp | 0 tests/{ => src}/test_simplematrix.cpp | 0 tests/{ => src}/test_sync.cpp | 0 tests/{ => src}/test_traces.cpp | 0 6 files changed, 32 insertions(+) create mode 100644 tests/coba_checksums.ref create mode 100755 tests/run_coba_test.sh rename tests/{ => src}/test_send.cpp (100%) rename tests/{ => src}/test_simplematrix.cpp (100%) rename tests/{ => src}/test_sync.cpp (100%) rename tests/{ => src}/test_traces.cpp (100%) diff --git a/tests/coba_checksums.ref b/tests/coba_checksums.ref new file mode 100644 index 00000000..96bee963 --- /dev/null +++ b/tests/coba_checksums.ref @@ -0,0 +1,2 @@ +d5aa8376c0594f4fdd8e647b65f26aaa +83a929b0d93495615f429bd668110e80 diff --git a/tests/run_coba_test.sh b/tests/run_coba_test.sh new file mode 100755 index 00000000..bcba2f78 --- /dev/null +++ b/tests/run_coba_test.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +BUILDDIR="../build/release" + +# Compile code +$BUILDDIR/bootstrap.sh + +# Benchmark parameters +SIMTIME=10 +REVISION=`git log --pretty=oneline -1 | cut -d " " -f 1` + +# Vogels-Abbott benchmark, single core +TMPDIR=`mktemp -d` +$BUILDDIR/examples/sim_coba_benchmark --simtime $SIMTIME --dir $TMPDIR +$CMD_BENCHMARK1 +md5sum $TMPDIR/*.ras | cut -d " " -f 1 > coba_checksums.txt +rm -r $TMPDIR + + +# Writ result to file +diff coba_checksums.txt coba_checksums.ref +RETURNVALUE=$? + +echo "$REVISION coba-test $RETURNVALUE" >> test_results.dat + +if [ $? -ne 0 ] +then echo "The checksums for the coba-test are different!" +fi + +exit $RETURNVALUE diff --git a/tests/test_send.cpp b/tests/src/test_send.cpp similarity index 100% rename from tests/test_send.cpp rename to tests/src/test_send.cpp diff --git a/tests/test_simplematrix.cpp b/tests/src/test_simplematrix.cpp similarity index 100% rename from tests/test_simplematrix.cpp rename to tests/src/test_simplematrix.cpp diff --git a/tests/test_sync.cpp b/tests/src/test_sync.cpp similarity index 100% rename from tests/test_sync.cpp rename to tests/src/test_sync.cpp diff --git a/tests/test_traces.cpp b/tests/src/test_traces.cpp similarity index 100% rename from tests/test_traces.cpp rename to tests/src/test_traces.cpp From 3ca2a98a768eda4217ab6824edf82a6280f3fbd6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 06:29:08 -0700 Subject: [PATCH 129/460] Adds datetime column to benchmark output --- build/release/run_benchmark.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/release/run_benchmark.sh b/build/release/run_benchmark.sh index 2d43c1ce..e2a1cbab 100755 --- a/build/release/run_benchmark.sh +++ b/build/release/run_benchmark.sh @@ -8,6 +8,7 @@ make clean SIMTIME=100 STATRUNS="1 2 3 4 5" HOSTNAME=`hostname` +DATE=`date +"%Y-%m-%d"` REVISION=`git log --pretty=oneline -1 | cut -d " " -f 1` TMPDIR=`mktemp -d` @@ -47,7 +48,7 @@ RESULT_BENCHMARK3=$FUNCTION_RESULT # Writ result to file -echo "$HOSTNAME $REVISION $RESULT_BENCHMARK1 $RESULT_BENCHMARK2 $RESULT_BENCHMARK3" >> benchmark_results.dat +echo "$HOSTNAME $REVISION $RESULT_BENCHMARK1 $RESULT_BENCHMARK2 $RESULT_BENCHMARK3 $DATE" >> benchmark_results.dat # Clean up rm -r $TMPDIR From cf1903290f612c28269bd53ef80b7e51e16027b8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 18:19:56 +0200 Subject: [PATCH 130/460] Updates doxystrings and aligns data ptr --- src/AurynVector.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 4a790435..8933c038 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -74,7 +74,7 @@ namespace auryn { public: // We keep these params public for legacy compatibility reasons NeuronID size; - T * data; + T * data __attribute__((aligned(16))); /*! \brief Default constructor */ AurynVector(NeuronID n) @@ -156,7 +156,7 @@ namespace auryn { /*! \brief Element-wise vector multiply * - * No size checking, be careful! */ + * */ void mul(AurynVector * v) { check_size(v); @@ -167,7 +167,7 @@ namespace auryn { /*! \brief Copies vector v * - * No size checking, be careful! */ + * */ void copy(AurynVector * v) { check_size(v); From 545fecf7d93efa0aed7b700f7845c6d942fcb379 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 19:21:20 +0200 Subject: [PATCH 131/460] Adds interface for some helper functions in auryn_definitions --- src/auryn_definitions.cpp | 4 ++-- src/auryn_definitions.h | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index 7bc56ab9..ac244350 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -53,7 +53,7 @@ NeuronID calculate_vector_size(NeuronID i) } -inline __m128 sse_load( float * i ) +__m128 sse_load( float * i ) { #ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS return _mm_load_ps( i ); @@ -62,7 +62,7 @@ inline __m128 sse_load( float * i ) #endif } -inline void sse_store( float * i, __m128 d ) +void sse_store( float * i, __m128 d ) { #ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS _mm_store_ps( i, d ); diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index eb7d94e1..5bad2817 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -306,7 +306,8 @@ namespace auryn { template class AurynVector; - typedef AurynVector AurynVectorFloat; //!< Default Auryn state vector type + class AurynVectorFloat; + // Legacy state vector types typedef AurynVectorFloat auryn_vector_float; //!< Default legacy Auryn state vector type @@ -315,6 +316,8 @@ namespace auryn { // Legacy float vector functions // These functions should not be used any more in the future. Instead use the member functions of AurynVectorFloat + __m128 sse_load( float * i ) ; + void sse_store( float * i, __m128 d ) ; /*! Allocates an auryn_vector_float */ auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); From 0ef5ef67948b3b635438ccb32c1b4f596cbff4ca Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 19:22:21 +0200 Subject: [PATCH 132/460] Implements AurynVectorFloat as class This class allows to overwrite the template base class for datatype float to implement performance optimized SIMD instructions. --- src/AurynVector.cpp | 107 ++++++++++++++++++++++++++++++++++++++++++++ src/AurynVector.h | 44 +++++++++--------- 2 files changed, 131 insertions(+), 20 deletions(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 549e679a..e3bbdf5c 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -27,3 +27,110 @@ using namespace auryn; +AurynVectorFloat::AurynVectorFloat(NeuronID n) : AurynVector(n) +{ + +} + +void AurynVectorFloat::scale(AurynFloat a) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + data[0:size:1] = a * data[0:size:1]; + #else + const __m128 scalar = _mm_set1_ps(a); + for ( float * i = data ; i != data+size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( i ); + __m128 result = _mm_mul_ps(chunk, scalar); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < b->size ; ++i ) { + data[i] *= a; + } +#endif /* CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY */ +} + + +void AurynVectorFloat::saxpy(AurynFloat a, AurynVector * x) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + data[0:size:1] = a * x->data[0:x->size:1] + data[0:size:1]; + #else + float * xp = x->data; + const __m128 alpha = _mm_set1_ps(a); + for ( float * i = data ; i < data+size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( xp ); xp += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_mul_ps( alpha, chunk ); + + chunk = sse_load( i ); + result = _mm_add_ps( result, chunk ); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] += a * x->data[i]; + } +#endif +} + + +void AurynVectorFloat::clip(float min, float max) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + for ( NeuronID i = 0 ; i < size ; ++i ) { + if ( data[i] < min ) { + data[i] = min; + } else + if ( data[i] > max ) + data[i] = max; + } + #else + const __m128 lo = _mm_set1_ps(min); + const __m128 hi = _mm_set1_ps(max); + for ( float * i = data ; i != data+size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk = sse_load( i ); + __m128 result = _mm_min_ps(chunk, hi); + result = _mm_max_ps(result, lo); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < size ; ++i ) { + if ( data[i] < min ) { + data[i] = min; + } else + if ( data[i] > max ) + data[i] = max; + } +#endif +} + +void AurynVectorFloat::mul(AurynVector * v) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + data[0:size:1] = data[0:size:1] * v->data[0:v->size:1]; + #else + float * bd = v->data; + for ( float * i = data ; i != data+size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( i ); + __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_mul_ps(chunk_a, chunk_b); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] *= v->data[i]; + } +#endif +} diff --git a/src/AurynVector.h b/src/AurynVector.h index 8933c038..a9a47d2a 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -47,6 +47,7 @@ namespace auryn { ar & data[i]; } + protected: /*! \brief Checks if argument is larger than size and throws and exception if so * * Check only enabled if NDEBUG is not defined.*/ @@ -149,9 +150,7 @@ namespace auryn { /*! \brief Multiply all vector elements by constant */ void mul(AurynFloat a) { - for ( NeuronID i = 0 ; i < size ; ++i ) { - data[i] *= a; - } + scale(a); } /*! \brief Element-wise vector multiply @@ -183,7 +182,7 @@ namespace auryn { * \param a The scaling factor for the additional vector * \param x The additional vector to add * */ - void saxpy(T a, AurynVector * x) + void saxpy(AurynFloat a, AurynVector * x) { check_size(x); for ( NeuronID i = 0 ; i < size ; ++i ) { @@ -191,22 +190,6 @@ namespace auryn { } } - /*! \brief SAXPY operation which adds to result vector - * - * Computes a*x + y and stores the result to 'result' where y is the present instance. - * \param a The scaling factor for the additional vector - * \param x The additional vector to add - * \param result The target vector - * */ - void saxpy(T a, AurynVector * x, AurynVector * result) - { - check_size(x); - check_size(result); - for ( NeuronID i = 0 ; i < size ; ++i ) { - result->data[i] += a * x->data[i] + data[i]; - } - } - /*! \brief Gets element i from vector */ T get(NeuronID i) { @@ -248,6 +231,27 @@ namespace auryn { } }; + /*! \brief Derived AurynVectorFloat class for performance computatoin + * + * This class overwrites some of the functions defined in the template + * with SIMD intrinsics for higher performance. + */ + class AurynVectorFloat : public AurynVector + { + + public: + /*! \brief Default constructor */ + AurynVectorFloat(NeuronID n); + + void scale(AurynFloat a); + void saxpy(AurynFloat a, AurynVector * x); + void clip(float min, float max); + + + void mul(AurynFloat a) { scale(a); }; + void mul(AurynVectorFloat * v); + + }; } From 73c1e0ca7e747faf60161ea4263dff72712b906c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 19:26:25 +0200 Subject: [PATCH 133/460] Corrects datatypes in AurynVectorFloat --- src/AurynVector.cpp | 6 +++--- src/AurynVector.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index e3bbdf5c..75839424 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -32,7 +32,7 @@ AurynVectorFloat::AurynVectorFloat(NeuronID n) : AurynVector(n) } -void AurynVectorFloat::scale(AurynFloat a) +void AurynVectorFloat::scale(float a) { #ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS @@ -54,7 +54,7 @@ void AurynVectorFloat::scale(AurynFloat a) } -void AurynVectorFloat::saxpy(AurynFloat a, AurynVector * x) +void AurynVectorFloat::saxpy(float a, AurynVectorFloat * x) { #ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS @@ -113,7 +113,7 @@ void AurynVectorFloat::clip(float min, float max) #endif } -void AurynVectorFloat::mul(AurynVector * v) +void AurynVectorFloat::mul(AurynVectorFloat * v) { #ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS diff --git a/src/AurynVector.h b/src/AurynVector.h index a9a47d2a..1f557287 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -243,12 +243,12 @@ namespace auryn { /*! \brief Default constructor */ AurynVectorFloat(NeuronID n); - void scale(AurynFloat a); - void saxpy(AurynFloat a, AurynVector * x); + void scale(float a); + void saxpy(float a, AurynVectorFloat * x); void clip(float min, float max); - void mul(AurynFloat a) { scale(a); }; + void mul(float a) { scale(a); }; void mul(AurynVectorFloat * v); }; From f8a9effad9efc3cb04dda79af27a23fffdd77ce2 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 19:41:57 +0200 Subject: [PATCH 134/460] Inlines some intriscs in AurynVector and legacy code --- src/AurynVector.cpp | 18 ++++++++++++++++++ src/auryn_definitions.cpp | 4 ++-- src/auryn_definitions.h | 2 -- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 75839424..4357e874 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -27,6 +27,24 @@ using namespace auryn; +inline __m128 sse_load( float * i ) +{ +#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS + return _mm_load_ps( i ); +#else + return _mm_loadu_ps( i ); +#endif +} + +inline void sse_store( float * i, __m128 d ) +{ +#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS + _mm_store_ps( i, d ); +#else + _mm_storeu_ps( i, d ); +#endif +} + AurynVectorFloat::AurynVectorFloat(NeuronID n) : AurynVector(n) { diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index ac244350..7bc56ab9 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -53,7 +53,7 @@ NeuronID calculate_vector_size(NeuronID i) } -__m128 sse_load( float * i ) +inline __m128 sse_load( float * i ) { #ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS return _mm_load_ps( i ); @@ -62,7 +62,7 @@ __m128 sse_load( float * i ) #endif } -void sse_store( float * i, __m128 d ) +inline void sse_store( float * i, __m128 d ) { #ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS _mm_store_ps( i, d ); diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 5bad2817..9d2109b3 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -316,8 +316,6 @@ namespace auryn { // Legacy float vector functions // These functions should not be used any more in the future. Instead use the member functions of AurynVectorFloat - __m128 sse_load( float * i ) ; - void sse_store( float * i, __m128 d ) ; /*! Allocates an auryn_vector_float */ auryn_vector_float * auryn_vector_float_alloc(const NeuronID n); From 740eb6e7634ca3b5f1c7caf88af498fbaf608e86 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 20:15:17 +0200 Subject: [PATCH 135/460] Adds comment to auryn_definitions.h --- src/auryn_definitions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 9d2109b3..6d9a2a37 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -38,7 +38,7 @@ #ifndef CODE_ACTIVATE_CILK_INSTRUCTIONS -#include // SIMD intrinsics +#include // SIMD intrinsics (pulls everything you need) #else // XMM registers are not supported on the phi platform #include // AVX only #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ From ad2cbb300568e5b0786ecd7bb8b0a50359c33821 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 20:23:05 +0200 Subject: [PATCH 136/460] Adds optimized vector addition in SIMD to AurynVector.h --- src/AurynVector.cpp | 50 ++++++++++++++++++++++++++++++++++++++++++++- src/AurynVector.h | 2 ++ 2 files changed, 51 insertions(+), 1 deletion(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 4357e874..80bb5326 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -65,7 +65,7 @@ void AurynVectorFloat::scale(float a) } #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ #else - for ( NeuronID i = 0 ; i < b->size ; ++i ) { + for ( NeuronID i = 0 ; i < size ; ++i ) { data[i] *= a; } #endif /* CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY */ @@ -74,6 +74,7 @@ void AurynVectorFloat::scale(float a) void AurynVectorFloat::saxpy(float a, AurynVectorFloat * x) { + check_size(x); #ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS data[0:size:1] = a * x->data[0:x->size:1] + data[0:size:1]; @@ -133,6 +134,7 @@ void AurynVectorFloat::clip(float min, float max) void AurynVectorFloat::mul(AurynVectorFloat * v) { + check_size(v); #ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS data[0:size:1] = data[0:size:1] * v->data[0:v->size:1]; @@ -152,3 +154,49 @@ void AurynVectorFloat::mul(AurynVectorFloat * v) } #endif } + + +void AurynVectorFloat::add(float a) +{ +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + data[0:size:1] = a + data[0:size:1]; + #else + const __m128 scalar = _mm_set1_ps(a); + for ( float * i = data ; i != data+size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + // _mm_prefetch((i + SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS), _MM_HINT_NTA); + __m128 chunk = sse_load( i ); + __m128 result = _mm_add_ps(chunk, scalar); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] += a; + } +#endif +} + +void AurynVectorFloat::add(AurynVectorFloat * v) +{ + check_size(v); +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS + data[0:size:1] = data[0:size:1] + v->data[0:v->size:1]; + #else + float * bd = v->data; + for ( float * i = data ; i != data+size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( i ); + __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_add_ps(chunk_a, chunk_b); + sse_store( i, result ); + } + #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ +#else + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] += v->data[i]; + } +#endif +} diff --git a/src/AurynVector.h b/src/AurynVector.h index 1f557287..a488804a 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -246,6 +246,8 @@ namespace auryn { void scale(float a); void saxpy(float a, AurynVectorFloat * x); void clip(float min, float max); + void add(float c); + void add(AurynVectorFloat * v); void mul(float a) { scale(a); }; From 7e3aa40f7656e97973bd374d6ca7641d48a5a7d4 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 23:51:41 +0200 Subject: [PATCH 137/460] Adapts IFGroup to new AurynVector member routines --- src/IFGroup.cpp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index eeb84301..8ce58eaf 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -57,8 +57,6 @@ void IFGroup::init() calculate_scale_constants(); - // thr = auryn_vector_float_alloc (size); - t_leak = get_state_vector("t_leak"); t_exc = get_state_vector("t_exc"); t_inh = get_state_vector("t_inh"); @@ -130,14 +128,14 @@ void IFGroup::integrate_membrane() thr->scale(scale_thr); // leak - auryn_vector_float_copy(mem,t_leak); - auryn_vector_float_add_constant(t_leak,-e_rest); + t_leak->copy(mem); + t_leak->add(-e_rest); // membrane dynamics AurynFloat mul_tau_mem = dt/tau_mem; - auryn_vector_float_saxpy(mul_tau_mem,t_exc,mem); - auryn_vector_float_saxpy(-mul_tau_mem,t_inh,mem); - auryn_vector_float_saxpy(-mul_tau_mem,t_leak,mem); + mem->saxpy(mul_tau_mem,t_exc); + mem->saxpy(-mul_tau_mem,t_inh); + mem->saxpy(-mul_tau_mem,t_leak); } void IFGroup::check_thresholds() From 32dbe48d9fd9db17812580977f96ee9596807468 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 23:53:46 +0200 Subject: [PATCH 138/460] Adds comment to AurynVector with TODO --- src/AurynVector.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 80bb5326..196ed515 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -27,6 +27,7 @@ using namespace auryn; +// TODO on the long run we should get rid of the unaligned instructions inline __m128 sse_load( float * i ) { #ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS From 6da79f3b33fab04e30cb433345a07e98684b0eb7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 4 May 2016 23:55:51 +0200 Subject: [PATCH 139/460] Replaces legacy functions in EulerTrace --- src/EulerTrace.cpp | 24 ++++++++++++------------ src/EulerTrace.h | 18 +++++++++--------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index 43b04a1c..c64163b1 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -31,16 +31,16 @@ void EulerTrace::init(NeuronID n, AurynFloat timeconstant) { size = n; set_timeconstant(timeconstant); - state = auryn_vector_float_alloc ( calculate_vector_size(size) ); - temp = auryn_vector_float_alloc ( calculate_vector_size(size) ); // temp vector + state = new AurynVectorFloat ( calculate_vector_size(size) ); + temp = new AurynVectorFloat ( calculate_vector_size(size) ); // temp vector set_all(0.); target_ptr = NULL; } void EulerTrace::free() { - auryn_vector_float_free (state); - auryn_vector_float_free (temp); + delete state; + delete temp; } EulerTrace::EulerTrace(NeuronID n, AurynFloat timeconstant) @@ -61,7 +61,7 @@ void EulerTrace::set_timeconstant(AurynFloat timeconstant) void EulerTrace::set(NeuronID i , AurynFloat value) { - auryn_vector_float_set (state, i, value); + state->set( i, value); } void EulerTrace::set_all(AurynFloat value) @@ -70,9 +70,9 @@ void EulerTrace::set_all(AurynFloat value) set(i,value); } -void EulerTrace::add(auryn_vector_float * values) +void EulerTrace::add(AurynVectorFloat * values) { - auryn_vector_float_add ( state, values ); + state->add( values ); } void EulerTrace::add(NeuronID i, AurynFloat value) @@ -81,7 +81,7 @@ void EulerTrace::add(NeuronID i, AurynFloat value) state->data[i] += value; } -void EulerTrace::set_target( auryn_vector_float * target ) +void EulerTrace::set_target( AurynVectorFloat * target ) { if ( target != NULL ) { } @@ -102,12 +102,12 @@ void EulerTrace::evolve() void EulerTrace::follow() { - auryn_vector_float_copy( state, temp ); + state->copy( temp ); auryn_vector_float_saxpy( -1., target_ptr, temp ); auryn_vector_float_saxpy( -dt/tau, temp, state ); } -auryn_vector_float * EulerTrace::get_state_ptr() +AurynVectorFloat * EulerTrace::get_state_ptr() { return state; } @@ -126,11 +126,11 @@ void EulerTrace::inc(NeuronID i) AurynFloat EulerTrace::normalized_get(NeuronID i) { - return auryn_vector_float_get (state, i) / tau ; + return state->get( i ) / tau ; } void EulerTrace::clip(AurynState value) { - auryn_vector_float_clip( state, 0.0, value); + state->clip( 0.0, value); } diff --git a/src/EulerTrace.h b/src/EulerTrace.h index 19d96926..b1920438 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -56,11 +56,11 @@ class EulerTrace /*! The size of the group. */ NeuronID size; /*! The internal state vector. */ - auryn_vector_float * state; + AurynVectorFloat * state; /*! The target vector for follow operation. */ - auryn_vector_float * target_ptr; + AurynVectorFloat * target_ptr; /*! Temp update vector for follow operation. */ - auryn_vector_float * temp; + AurynVectorFloat * temp; /*! Multiplicative factor to downscale the values in every timestep. */ AurynFloat scale_const; /*! Decay time constant in [s]. */ @@ -80,10 +80,10 @@ class EulerTrace void set(NeuronID i , AurynFloat value); /*! Set all traces to same value */ void set_all( AurynFloat value); - /*! Add auryn_vector_float to state vector - * \param values auryn_vector_float to add + /*! Add AurynVectorFloat to state vector + * \param values AurynVectorFloat to add */ - void add(auryn_vector_float * values); + void add(AurynVectorFloat * values); /*! Add designated value to single trace in the group. * \param i index of trace to change * \param value value to add to the trace @@ -103,7 +103,7 @@ class EulerTrace void set_timeconstant( AurynFloat timeconstant ); /*! set the target vector for follow operation */ - void set_target( auryn_vector_float * target ); + void set_target( AurynVectorFloat * target ); /*! set the target vector for follow operation */ void set_target( EulerTrace * target ); @@ -122,8 +122,8 @@ class EulerTrace * \param i index of trace to get */ AurynFloat normalized_get(NeuronID i); - /*! Get pointer to state auryn_vector_float for fast processing within the GSL vector framekwork. */ - auryn_vector_float * get_state_ptr(); + /*! Get pointer to state AurynVectorFloat for fast processing within the GSL vector framekwork. */ + AurynVectorFloat * get_state_ptr(); }; inline AurynFloat EulerTrace::get(NeuronID i) From 2f2f791450b5b60ab1450a3cd8723eb228b53f27 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 00:00:33 +0200 Subject: [PATCH 140/460] Adds check for AVX2 in System --- src/System.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/System.cpp b/src/System.cpp index 6e43c44e..94af2850 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -62,6 +62,15 @@ void System::init() { << std::numeric_limits::max()/MINDELAY << " cells."; auryn::logger->msg(oss.str(),VERBOSE); + + oss.str(""); + if(__builtin_cpu_supports("avx2")) { + oss << "System supports AVX2"; + } else { + oss << "System does not support AVX2"; + } + auryn::logger->msg(oss.str(),VERBOSE); + } string System::get_version_string() From ec050c12a8e9eca7f893fae03534a5fea6d6c4f8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 09:42:22 +0200 Subject: [PATCH 141/460] Introduces AurynStateVector as default state vector for float types --- src/IFGroup.h | 6 ++-- src/NeuronGroup.cpp | 70 ++++++++++++++--------------------------- src/NeuronGroup.h | 55 +++++++++++++++++--------------- src/SpikingGroup.cpp | 29 ++++++++++------- src/SpikingGroup.h | 8 ++--- src/auryn_definitions.h | 8 +++-- 6 files changed, 82 insertions(+), 94 deletions(-) diff --git a/src/IFGroup.h b/src/IFGroup.h index 5ca7a969..9b561ab7 100644 --- a/src/IFGroup.h +++ b/src/IFGroup.h @@ -47,9 +47,9 @@ namespace auryn { class IFGroup : public NeuronGroup { private: - AurynVectorFloat * t_leak; - AurynVectorFloat * t_exc; - AurynVectorFloat * t_inh; + AurynStateVector * t_leak; + AurynStateVector * t_exc; + AurynStateVector * t_inh; AurynFloat scale_ampa,scale_gaba, scale_thr; AurynFloat tau_ampa,tau_gaba,tau_nmda; AurynFloat A_ampa,A_nmda; diff --git a/src/NeuronGroup.cpp b/src/NeuronGroup.cpp index ce0f86b2..d808f847 100644 --- a/src/NeuronGroup.cpp +++ b/src/NeuronGroup.cpp @@ -69,12 +69,12 @@ NeuronGroup::~NeuronGroup() if ( evolve_locally() ) free(); } -void NeuronGroup::print_val(auryn_vector_float * vec, NeuronID i, const char * name) +void NeuronGroup::print_val(AurynStateVector * vec, NeuronID i, const char * name) { - printf ("%s%d= %g\n",name, i, auryn_vector_float_get (vec, i)); + printf ("%s%d= %g\n",name, i, AurynStateVector_get (vec, i)); } -void NeuronGroup::print_vec(auryn_vector_float * vec, const char * name) +void NeuronGroup::print_vec(AurynStateVector * vec, const char * name) { for (NeuronID i = 0; i < get_rank_size(); i++) { @@ -84,7 +84,7 @@ void NeuronGroup::print_vec(auryn_vector_float * vec, const char * name) void NeuronGroup::print_state(NeuronID id) { - printf ("%g %g %g %g %g\n",auryn_vector_float_get (mem, id), auryn_vector_float_get (g_ampa, id), auryn_vector_float_get (g_gaba, id) ,auryn_vector_float_get (g_nmda, id), auryn_vector_float_get (g_cursyn, id)); + printf ("%g %g %g %g %g\n",AurynStateVector_get (mem, id), AurynStateVector_get (g_ampa, id), AurynStateVector_get (g_gaba, id) ,AurynStateVector_get (g_nmda, id), AurynStateVector_get (g_cursyn, id)); } AurynState NeuronGroup::get_mem(NeuronID i) @@ -92,7 +92,7 @@ AurynState NeuronGroup::get_mem(NeuronID i) return get_val(mem,i); } -auryn_vector_float * NeuronGroup::get_mem_ptr() +AurynStateVector * NeuronGroup::get_mem_ptr() { return mem; } @@ -104,14 +104,14 @@ void NeuronGroup::set_mem(NeuronID i, AurynState val) void NeuronGroup::set_state(std::string name, NeuronID i, AurynState val) { - auryn_vector_float * tmp = get_state_vector(name); + AurynStateVector * tmp = get_state_vector(name); if ( tmp ) set_val(tmp,i,val); } void NeuronGroup::set_state(std::string name, AurynState val) { - auryn_vector_float * tmp = get_state_vector(name); + AurynStateVector * tmp = get_state_vector(name); if ( tmp ) for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) set_val(tmp,i,val); @@ -130,12 +130,12 @@ AurynState NeuronGroup::get_cursyn(NeuronID i) return get_val(g_cursyn,i); } -auryn_vector_float * NeuronGroup::get_ampa_ptr() +AurynStateVector * NeuronGroup::get_ampa_ptr() { return g_ampa; } -auryn_vector_float * NeuronGroup::get_cursyn_ptr() +AurynStateVector * NeuronGroup::get_cursyn_ptr() { return g_cursyn; } @@ -145,7 +145,7 @@ AurynState NeuronGroup::get_gaba(NeuronID i) return get_val(g_gaba,i); } -auryn_vector_float * NeuronGroup::get_gaba_ptr() +AurynStateVector * NeuronGroup::get_gaba_ptr() { return g_gaba; } @@ -155,7 +155,7 @@ AurynState NeuronGroup::get_nmda(NeuronID i) return get_val(g_nmda,i); } -auryn_vector_float * NeuronGroup::get_nmda_ptr() +AurynStateVector * NeuronGroup::get_nmda_ptr() { return g_nmda; } @@ -215,29 +215,9 @@ void NeuronGroup::random_nmda(AurynState mean, AurynState sigma) init_state(); } -void NeuronGroup::print_mem() +void NeuronGroup::print_state_vector(string state_name) { - print_vec(mem,"mem"); -} - -void NeuronGroup::print_ampa() -{ - print_vec(g_ampa,"g_ampa"); -} - -void NeuronGroup::print_gaba() -{ - print_vec(g_gaba,"g_gaba"); -} - -void NeuronGroup::print_nmda() -{ - print_vec(g_nmda,"g_nmda"); -} - -void NeuronGroup::print_cursyn() -{ - print_vec(g_nmda,"g_cursyn"); + print_vec(mem,state_name); } void NeuronGroup::safe_tadd(NeuronID id, AurynWeight amount, TransmitterType t) @@ -252,30 +232,26 @@ void NeuronGroup::init_state() } - - - - -void NeuronGroup::set_val(auryn_vector_float * vec, NeuronID i, AurynState val) +void NeuronGroup::set_val(AurynStateVector * vec, NeuronID i, AurynState val) { - auryn_vector_float_set (vec, i, val); + AurynStateVector_set (vec, i, val); } -void NeuronGroup::add_val(auryn_vector_float * vec, NeuronID i, AurynState val) +void NeuronGroup::add_val(AurynStateVector * vec, NeuronID i, AurynState val) { - // auryn_vector_float_set(vec,i,auryn_vector_float_get(vec,i)+val); + // AurynStateVector_set(vec,i,AurynStateVector_get(vec,i)+val); vec->data[i] += val; } -void NeuronGroup::clip_val(auryn_vector_float * vec, NeuronID i, AurynState max) +void NeuronGroup::clip_val(AurynStateVector * vec, NeuronID i, AurynState max) { - if ( auryn_vector_float_get(vec,i) > max) - auryn_vector_float_set(vec,i,max); + if ( AurynStateVector_get(vec,i) > max) + AurynStateVector_set(vec,i,max); } -AurynState NeuronGroup::get_val(auryn_vector_float * vec, NeuronID i) +AurynState NeuronGroup::get_val(AurynStateVector * vec, NeuronID i) { - return auryn_vector_float_get (vec, i); + return AurynStateVector_get (vec, i); } void NeuronGroup::tadd(NeuronID id, AurynWeight amount, TransmitterType t) @@ -302,7 +278,7 @@ void NeuronGroup::tadd(NeuronID id, AurynWeight amount, TransmitterType t) } -void NeuronGroup::tadd(auryn_vector_float * state, NeuronID id, AurynWeight amount) +void NeuronGroup::tadd(AurynStateVector * state, NeuronID id, AurynWeight amount) { NeuronID localid = global2rank(id); add_val(state, localid, amount); diff --git a/src/NeuronGroup.h b/src/NeuronGroup.h index 4ee7ae60..5395cb76 100644 --- a/src/NeuronGroup.h +++ b/src/NeuronGroup.h @@ -62,17 +62,23 @@ class NeuronGroup : public SpikingGroup public: /*! Stores the membrane potentials. */ - auryn_vector_float * mem __attribute__((aligned(16))); + AurynStateVector * mem __attribute__((aligned(16))); /*! Stores the AMPA conductances of each point neuron. */ - auryn_vector_float * g_ampa __attribute__((aligned(16))); + AurynStateVector * g_ampa __attribute__((aligned(16))); /*! Stores the GABA conductances of each point neuron. */ - auryn_vector_float * g_gaba __attribute__((aligned(16))); + AurynStateVector * g_gaba __attribute__((aligned(16))); /*! Stores the NMDA conductances of each point neuron. */ - auryn_vector_float * g_nmda __attribute__((aligned(16))); - /*! Stores the CURSYN states of each point neuron. */ - auryn_vector_float * g_cursyn __attribute__((aligned(16))); - /*! Stores threshold terms for moving thresholds. */ - auryn_vector_float * thr __attribute__((aligned(16))); + AurynStateVector * g_nmda __attribute__((aligned(16))); + + /*! Stores the CURSYN states of each point neuron. + * + * TODO This should be removed from NeuronGroup and only + * added where its actually needed.*/ + AurynStateVector * g_cursyn __attribute__((aligned(16))); + /*! Stores threshold terms for moving thresholds. + * + * TODO Remove and move to downstream. */ + AurynStateVector * thr __attribute__((aligned(16))); /*! Default constructor */ NeuronGroup(NeuronID n, double loadmultiplier = 1. , NeuronID total = 0 ); @@ -82,14 +88,14 @@ class NeuronGroup : public SpikingGroup virtual void clear() = 0; - AurynState get_val(auryn_vector_float* vec, NeuronID i); - void set_val(auryn_vector_float* vec, NeuronID i, AurynState val); - void add_val(auryn_vector_float* vec, NeuronID i, AurynState val); - void clip_val(auryn_vector_float* vec, NeuronID i, AurynState max); - void print_val(auryn_vector_float* vec, NeuronID i, const char * name); - void print_vec(auryn_vector_float* vec, const char * name); + AurynState get_val(AurynStateVector* vec, NeuronID i); + void set_val(AurynStateVector* vec, NeuronID i, AurynState val); + void add_val(AurynStateVector* vec, NeuronID i, AurynState val); + void clip_val(AurynStateVector* vec, NeuronID i, AurynState max); + void print_val(AurynStateVector* vec, NeuronID i, const char * name); + void print_vec(AurynStateVector* vec, const char * name); AurynState get_mem(NeuronID i); - auryn_vector_float * get_mem_ptr(); + AurynStateVector * get_mem_ptr(); void set_mem(NeuronID i, AurynState val); @@ -98,19 +104,19 @@ class NeuronGroup : public SpikingGroup AurynState get_ampa(NeuronID i); void set_ampa(NeuronID i,AurynState val); - auryn_vector_float * get_ampa_ptr(); + AurynStateVector * get_ampa_ptr(); AurynState get_cursyn(NeuronID i); void set_cursyn(NeuronID i,AurynState val); - auryn_vector_float * get_cursyn_ptr(); + AurynStateVector * get_cursyn_ptr(); AurynState get_gaba(NeuronID i); void set_gaba(NeuronID i,AurynState val); - auryn_vector_float * get_gaba_ptr(); + AurynStateVector * get_gaba_ptr(); AurynState get_nmda(NeuronID i); void set_nmda(NeuronID i,AurynState val); - auryn_vector_float * get_nmda_ptr(); + AurynStateVector * get_nmda_ptr(); void random_mem(AurynState mean=-60e-3, AurynState sigma=5e-3); void random_uniform_mem(AurynState lo, AurynState hi); @@ -119,18 +125,15 @@ class NeuronGroup : public SpikingGroup virtual void init_state(); - void print_mem(); - void print_ampa(); - void print_gaba(); - void print_nmda(); - void print_cursyn(); - void print_state(NeuronID id); + /*! \brief Prints a state vector for debugging */ + void print_state_vector(string state_name); + void safe_tadd(NeuronID id, AurynWeight amount, TransmitterType t=GLUT); /*! Adds given transmitter to neuron as from a synaptic event. DEPRECATED. Moving slowly to SparseConnection transmit. */ void tadd(NeuronID id, AurynWeight amount, TransmitterType t=GLUT); /*! Adds given amount of transmitter to neuron state/id. */ - void tadd(auryn_vector_float * state, NeuronID id, AurynWeight amount); + void tadd(AurynStateVector * state, NeuronID id, AurynWeight amount); }; diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 8be681ad..1ecac885 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -182,7 +182,7 @@ void SpikingGroup::free() } auryn::logger->msg("SpikingGroup:: Freeing state vectors",VERBOSE); - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector @@ -504,7 +504,7 @@ bool SpikingGroup::write_to_file(const char * filename) outfile << "# Auryn SpikingGroup state file for n="<< get_rank_size() <<" neurons (ver. " << AURYNVERSION << ")" << std::endl; outfile << "# Default field order (might be overwritten): "; - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector @@ -580,7 +580,7 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const ar & *delay; auryn::logger->msg("SpikingGroup:: serializing state vectors",VERBOSE); - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector @@ -607,13 +607,13 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const ar & *delay; auryn::logger->msg("SpikingGroup:: reading state vectors",VERBOSE); - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector std::string key; ar & key; - AurynVectorFloat * vect = get_state_vector(key); + AurynStateVector * vect = get_state_vector(key); ar & *vect; } @@ -631,7 +631,7 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const } -void SpikingGroup::add_state_vector(std::string key, AurynVectorFloat * state_vector) +void SpikingGroup::add_state_vector(std::string key, AurynStateVector * state_vector) { if ( key[0] == '_' ) { @@ -650,19 +650,24 @@ void SpikingGroup::remove_state_vector( std::string key ) state_vectors.erase(key); } -AurynVectorFloat * SpikingGroup::get_state_vector(std::string key) +AurynStateVector * SpikingGroup::get_state_vector(std::string key) { if ( state_vectors.find(key) == state_vectors.end() ) { if ( get_vector_size() == 0 ) return NULL; - AurynVectorFloat * vec = new AurynVectorFloat(get_vector_size()); + AurynStateVector * vec = new AurynStateVector(get_vector_size()); add_state_vector(key, vec); + + if ( auryn_AlignOffset( vec->size, vec->data, sizeof(float), 16) ) { + throw AurynMemoryAlignmentException(); + } + return vec; } else { return state_vectors.find(key)->second; } } -AurynVectorFloat * SpikingGroup::find_state_vector(std::string key) +AurynStateVector * SpikingGroup::find_state_vector(std::string key) { if ( state_vectors.find(key) == state_vectors.end() ) { return NULL; @@ -678,7 +683,7 @@ void SpikingGroup::randomize_state_vector_gauss(std::string state_vector_name, A boost::variate_generator > die(ng_gen, dist); AurynState rv; - AurynVectorFloat * vec = get_state_vector(state_vector_name); + AurynStateVector * vec = get_state_vector(state_vector_name); for ( AurynLong i = 0 ; i::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector @@ -726,7 +731,7 @@ void SpikingGroup::load_input_line(NeuronID i, const char * buf) float temp; // read the state_vectors - for ( std::map::const_iterator iter = state_vectors.begin() ; + for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 9ac73e23..9e24f076 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -127,15 +127,15 @@ class SpikingGroup SpikeDelay * delay; /*! Can hold single neuron vectors such as target rates or STP states etc */ - std::map state_vectors; + std::map state_vectors; /*! \brief Returns existing state vector by name. * * If the state_vector does not exist the function returns NULL. */ - AurynVectorFloat * find_state_vector(std::string key); + AurynStateVector * find_state_vector(std::string key); /*! \brief Adds a state vector passed as an argument to the dictinary. */ - void add_state_vector( std::string key, AurynVectorFloat * state_vector ); + void add_state_vector( std::string key, AurynStateVector * state_vector ); /*! \brief Removes a state vector passed as an argument to the dictinary. * @@ -143,7 +143,7 @@ class SpikingGroup void remove_state_vector( std::string key ); /*! \brief Creates a new or returns an existing state vector by name. */ - AurynVectorFloat * get_state_vector(std::string key); + AurynStateVector * get_state_vector(std::string key); /*! Randomizes the content of a state vector with Gaussian random numbers. Seeding is MPI save. */ void randomize_state_vector_gauss(std::string state_vector_name, AurynState mean, AurynState sigma, int seed=12239); diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 6d9a2a37..f181357a 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -306,11 +306,15 @@ namespace auryn { template class AurynVector; - class AurynVectorFloat; + class AurynVectorFloat; // Forward declaration + /*! \brief Defines AurynStateVector type + * + * This typically needs to change when AurynState or AurynFloat types are changed. */ + typedef AurynVectorFloat AurynStateVector; // Legacy state vector types - typedef AurynVectorFloat auryn_vector_float; //!< Default legacy Auryn state vector type + typedef AurynStateVector auryn_vector_float; //!< Default legacy Auryn state vector type typedef AurynVector auryn_vector_ushort; //!< Default legacy Auryn ushort vector type From ec7aa35d57dae1ed1d568682c12cf6802f6592ef Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 19:47:54 +0200 Subject: [PATCH 142/460] Gets rid of a bunch of functions in NeuronGroup --- src/NeuronGroup.cpp | 29 ++++------------------------- src/NeuronGroup.h | 4 ---- 2 files changed, 4 insertions(+), 29 deletions(-) diff --git a/src/NeuronGroup.cpp b/src/NeuronGroup.cpp index d808f847..57a458c8 100644 --- a/src/NeuronGroup.cpp +++ b/src/NeuronGroup.cpp @@ -69,23 +69,7 @@ NeuronGroup::~NeuronGroup() if ( evolve_locally() ) free(); } -void NeuronGroup::print_val(AurynStateVector * vec, NeuronID i, const char * name) -{ - printf ("%s%d= %g\n",name, i, AurynStateVector_get (vec, i)); -} -void NeuronGroup::print_vec(AurynStateVector * vec, const char * name) -{ - for (NeuronID i = 0; i < get_rank_size(); i++) - { - print_val(vec,i,name); - } -} - -void NeuronGroup::print_state(NeuronID id) -{ - printf ("%g %g %g %g %g\n",AurynStateVector_get (mem, id), AurynStateVector_get (g_ampa, id), AurynStateVector_get (g_gaba, id) ,AurynStateVector_get (g_nmda, id), AurynStateVector_get (g_cursyn, id)); -} AurynState NeuronGroup::get_mem(NeuronID i) { @@ -215,10 +199,6 @@ void NeuronGroup::random_nmda(AurynState mean, AurynState sigma) init_state(); } -void NeuronGroup::print_state_vector(string state_name) -{ - print_vec(mem,state_name); -} void NeuronGroup::safe_tadd(NeuronID id, AurynWeight amount, TransmitterType t) { @@ -234,24 +214,23 @@ void NeuronGroup::init_state() void NeuronGroup::set_val(AurynStateVector * vec, NeuronID i, AurynState val) { - AurynStateVector_set (vec, i, val); + vec->set( i, val); } void NeuronGroup::add_val(AurynStateVector * vec, NeuronID i, AurynState val) { - // AurynStateVector_set(vec,i,AurynStateVector_get(vec,i)+val); vec->data[i] += val; } void NeuronGroup::clip_val(AurynStateVector * vec, NeuronID i, AurynState max) { - if ( AurynStateVector_get(vec,i) > max) - AurynStateVector_set(vec,i,max); + if ( vec->get(i) > max) + vec->set(i,max); } AurynState NeuronGroup::get_val(AurynStateVector * vec, NeuronID i) { - return AurynStateVector_get (vec, i); + return vec->get( i); } void NeuronGroup::tadd(NeuronID id, AurynWeight amount, TransmitterType t) diff --git a/src/NeuronGroup.h b/src/NeuronGroup.h index 5395cb76..b6000d48 100644 --- a/src/NeuronGroup.h +++ b/src/NeuronGroup.h @@ -92,8 +92,6 @@ class NeuronGroup : public SpikingGroup void set_val(AurynStateVector* vec, NeuronID i, AurynState val); void add_val(AurynStateVector* vec, NeuronID i, AurynState val); void clip_val(AurynStateVector* vec, NeuronID i, AurynState max); - void print_val(AurynStateVector* vec, NeuronID i, const char * name); - void print_vec(AurynStateVector* vec, const char * name); AurynState get_mem(NeuronID i); AurynStateVector * get_mem_ptr(); @@ -125,8 +123,6 @@ class NeuronGroup : public SpikingGroup virtual void init_state(); - /*! \brief Prints a state vector for debugging */ - void print_state_vector(string state_name); void safe_tadd(NeuronID id, AurynWeight amount, TransmitterType t=GLUT); /*! Adds given transmitter to neuron as from a synaptic event. DEPRECATED. Moving slowly to SparseConnection transmit. */ From 9fee360e5c52c507e91e6171344b285988ab52b6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 20:00:07 +0200 Subject: [PATCH 143/460] Removes NMDA Monitor --- src/GabaMonitor.cpp | 4 +++- src/GabaMonitor.h | 1 + src/NmdaMonitor.cpp | 55 -------------------------------------------- src/NmdaMonitor.h | 56 --------------------------------------------- src/auryn.h | 1 - 5 files changed, 4 insertions(+), 113 deletions(-) delete mode 100644 src/NmdaMonitor.cpp delete mode 100644 src/NmdaMonitor.h diff --git a/src/GabaMonitor.cpp b/src/GabaMonitor.cpp index 21d968f4..1027372d 100644 --- a/src/GabaMonitor.cpp +++ b/src/GabaMonitor.cpp @@ -44,6 +44,8 @@ void GabaMonitor::init(NeuronGroup * source, NeuronID id, std::string filename, ssize = stepsize; if ( ssize < 1 ) ssize = 1; + g_gaba = src->get_state_vector("g_gaba"); + nid = id; outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); } @@ -51,7 +53,7 @@ void GabaMonitor::init(NeuronGroup * source, NeuronID id, std::string filename, void GabaMonitor::propagate() { if (auryn::sys->get_clock()%ssize==0) { - outfile << dt*(auryn::sys->get_clock()) << " " << src->get_gaba(nid) << "\n"; + outfile << dt*(auryn::sys->get_clock()) << " " << g_gaba->get(nid) << "\n"; } } diff --git a/src/GabaMonitor.h b/src/GabaMonitor.h index dcb88c31..2afed45f 100644 --- a/src/GabaMonitor.h +++ b/src/GabaMonitor.h @@ -41,6 +41,7 @@ namespace auryn { { protected: NeuronGroup * src; + AurynStateVector * g_gaba; NeuronID nid; AurynTime ssize; void init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize); diff --git a/src/NmdaMonitor.cpp b/src/NmdaMonitor.cpp deleted file mode 100644 index 43a6ff1c..00000000 --- a/src/NmdaMonitor.cpp +++ /dev/null @@ -1,55 +0,0 @@ -/* -* Copyright 2014-2016 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include "NmdaMonitor.h" - -using namespace auryn; - -NmdaMonitor::NmdaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) : Monitor(filename) -{ - init(source,id,filename,stepsize); -} - -NmdaMonitor::~NmdaMonitor() -{ -} - -void NmdaMonitor::init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) -{ - auryn::sys->register_monitor(this); - - src = source; - ssize = stepsize; - nid = id; - - outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); -} - -void NmdaMonitor::propagate() -{ - if (auryn::sys->get_clock()%ssize==0) { - outfile << dt*(auryn::sys->get_clock()) << " " << src->get_nmda(nid) << "\n"; - } -} diff --git a/src/NmdaMonitor.h b/src/NmdaMonitor.h deleted file mode 100644 index 6d250417..00000000 --- a/src/NmdaMonitor.h +++ /dev/null @@ -1,56 +0,0 @@ -/* -* Copyright 2014-2016 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#ifndef NMDAMONITOR_H_ -#define NMDAMONITOR_H_ - -#include "auryn_definitions.h" -#include "AurynVector.h" -#include "Monitor.h" -#include "System.h" -#include "Connection.h" -#include -#include - -namespace auryn { - -/*! \brief Records the NMDA conductance from one specific unit from the source group. */ -class NmdaMonitor : protected Monitor -{ -protected: - NeuronGroup * src; - NeuronID nid; - AurynTime ssize; - void init(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize); - -public: - NmdaMonitor(NeuronGroup * source, NeuronID id, string filename, AurynTime stepsize=1); - virtual ~NmdaMonitor(); - void propagate(); -}; - -} - -#endif /*NMDAMONITOR_H_*/ diff --git a/src/auryn.h b/src/auryn.h index 17166107..9d2edba6 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -94,7 +94,6 @@ // Monitor and stimulator definitions #include "Monitor.h" #include "GabaMonitor.h" -#include "NmdaMonitor.h" #include "AmpaMonitor.h" #include "VoltageMonitor.h" #include "SpikeMonitor.h" From 86158658cd5b25f6ebd8116f0b8b4460f300ff79 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 20:09:58 +0200 Subject: [PATCH 144/460] Adds function to AurynVector and fixes a bug --- src/AurynVector.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index a488804a..373fc75b 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -121,6 +121,12 @@ namespace auryn { } } + /*! \brief Adds value a to specific vector element i */ + void add(NeuronID i, AurynFloat c) + { + data[i] += c; + } + /*! \brief Adds a vector v to the vector * * No checking of the dimensions match! */ @@ -201,7 +207,7 @@ namespace auryn { * * When no argument is given the function returns the first element of * data array of the vector. */ - T ptr(NeuronID i = 0) + T * ptr(NeuronID i = 0) { check_size(i); return data+i; From 183fe948afebc838001b3d175b7655d83db6649e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 20:27:10 +0200 Subject: [PATCH 145/460] Adds unit specific add to AurynVector --- src/AurynVector.cpp | 6 ++++++ src/AurynVector.h | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 196ed515..dabb1df0 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -179,6 +179,12 @@ void AurynVectorFloat::add(float a) #endif } +void AurynVectorFloat::add(NeuronID i, float c ) +{ + check_size(i); + data[i] += c; +} + void AurynVectorFloat::add(AurynVectorFloat * v) { check_size(v); diff --git a/src/AurynVector.h b/src/AurynVector.h index 373fc75b..a05ff4ad 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -124,6 +124,7 @@ namespace auryn { /*! \brief Adds value a to specific vector element i */ void add(NeuronID i, AurynFloat c) { + check_size(i); data[i] += c; } @@ -253,6 +254,7 @@ namespace auryn { void saxpy(float a, AurynVectorFloat * x); void clip(float min, float max); void add(float c); + void add(NeuronID i, float c); void add(AurynVectorFloat * v); From 977d49621547dc37c57472065cea024bb61c5f8e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 20:34:50 +0200 Subject: [PATCH 146/460] Removes AmpaMonitor now replaced by StateMonitor --- src/AmpaMonitor.cpp | 57 --------------------------------------------- src/AmpaMonitor.h | 56 -------------------------------------------- src/auryn.h | 1 - 3 files changed, 114 deletions(-) delete mode 100644 src/AmpaMonitor.cpp delete mode 100644 src/AmpaMonitor.h diff --git a/src/AmpaMonitor.cpp b/src/AmpaMonitor.cpp deleted file mode 100644 index fd3c38dd..00000000 --- a/src/AmpaMonitor.cpp +++ /dev/null @@ -1,57 +0,0 @@ -/* -* Copyright 2014-2016 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include "AmpaMonitor.h" - -using namespace auryn; - -AmpaMonitor::AmpaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) : Monitor(filename) -{ - init(source,id,filename,stepsize); -} - -AmpaMonitor::~AmpaMonitor() -{ -} - -void AmpaMonitor::init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) -{ - auryn::sys->register_monitor(this); - - src = source; - ssize = stepsize; - if ( ssize < 1 ) ssize = 1; - - nid = id; - outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); -} - -void AmpaMonitor::propagate() -{ - if (auryn::sys->get_clock()%ssize==0) { - outfile << dt*(auryn::sys->get_clock()) << " " << src->get_ampa(nid) << "\n"; - } - -} diff --git a/src/AmpaMonitor.h b/src/AmpaMonitor.h deleted file mode 100644 index 97cd7ab0..00000000 --- a/src/AmpaMonitor.h +++ /dev/null @@ -1,56 +0,0 @@ -/* -* Copyright 2014-2016 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#ifndef AMPAMONITOR_H_ -#define AMPAMONITOR_H_ - -#include "auryn_definitions.h" -#include "AurynVector.h" -#include "Monitor.h" -#include "System.h" -#include "Connection.h" -#include -#include - -namespace auryn { - -/*! \brief Records the AMPA conductance from one specific unit from the source group. */ -class AmpaMonitor : protected Monitor -{ -protected: - NeuronGroup * src; - NeuronID nid; - AurynTime ssize; - void init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize); - -public: - AmpaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize=1); - virtual ~AmpaMonitor(); - void propagate(); -}; - -} - -#endif /*AMPAMONITOR_H_*/ diff --git a/src/auryn.h b/src/auryn.h index 9d2edba6..7c231f68 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -94,7 +94,6 @@ // Monitor and stimulator definitions #include "Monitor.h" #include "GabaMonitor.h" -#include "AmpaMonitor.h" #include "VoltageMonitor.h" #include "SpikeMonitor.h" #include "BinarySpikeMonitor.h" From bafe1573619aca74be68b566acff4eb37f51c2d3 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 20:45:50 +0200 Subject: [PATCH 147/460] Bumps Auryn version number to 0.8 --- src/auryn_definitions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index f181357a..3d2f1e5a 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -64,7 +64,7 @@ namespace mpi = boost::mpi; /*! The current Auryn version/revision number. * Should be all ints. */ #define AURYNVERSION 0 -#define AURYNSUBVERSION 7 +#define AURYNSUBVERSION 8 #define AURYNREVISION 0 #define AURYNVERSIONSUFFIX "-dev" From 1822be09c917e064251403e7d0046cb14735efb7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 20:53:17 +0200 Subject: [PATCH 148/460] Adds new logger message functions --- src/Logger.cpp | 22 ++++++++++++++++++++++ src/Logger.h | 4 ++++ 2 files changed, 26 insertions(+) diff --git a/src/Logger.cpp b/src/Logger.cpp index ff13eee7..bd6ca824 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -102,6 +102,28 @@ void Logger::msg( std::string text, LogMessageType type, bool global, int line, last_message = text; } + +void Logger::info( std::string text ) +{ + msg(text, NOTIFICATION); +} + +void Logger::warning( std::string text ) +{ + msg(text, WARNING); +} + +void Logger::error( std::string text ) +{ + msg(text, ERROR); +} + +void Logger::verbose( std::string text, bool global, int line, std::string srcfile ) +{ + msg(text, VERBOSE, global, line, srcfile ); +} + + void Logger::parameter(std::string name, double value) { std::stringstream oss; diff --git a/src/Logger.h b/src/Logger.h index 88f05b4a..f19a4d81 100644 --- a/src/Logger.h +++ b/src/Logger.h @@ -59,6 +59,10 @@ class Logger public: Logger(std::string filename, int rank, LogMessageType console = PROGRESS, LogMessageType file = NOTIFICATION ); void msg( std::string text, LogMessageType type=NOTIFICATION, bool global=false, int line=-1, std::string srcfile="" ); + void info ( std::string text ); + void warning ( std::string text ); + void error ( std::string text ); + void verbose ( std::string text, bool global=false, int line=-1, std::string srcfile="" ); void parameter( std::string name, double value ); void parameter( std::string name, int value ); void parameter( std::string name, std::string value ); From 80ebb0f3ff61d44fef396f4ff03739ae38376f9a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 20:57:13 +0200 Subject: [PATCH 149/460] Removes state getters and setters from NeuronGroup Because we have classes for state vectors now which have these functions themselves we don't need the getters and setters in NeuronGroup any more. This had to come with quite a bit of cleaning up in the code. --- src/ABSConnection.cpp | 2 +- src/AIF2Group.cpp | 12 +-- src/AIFGroup.cpp | 8 +- src/AdExGroup.cpp | 24 +++--- src/AurynVector.cpp | 5 -- src/AurynVector.h | 5 +- src/Connection.cpp | 10 +-- src/CubaIFGroup.cpp | 18 ++--- src/IFGroup.cpp | 4 +- src/IafPscDeltaGroup.cpp | 4 +- src/NeuronGroup.cpp | 150 ++++++-------------------------------- src/NeuronGroup.h | 35 +-------- src/PatternStimulator.cpp | 2 +- src/SIFGroup.cpp | 11 +-- src/SIFGroup.h | 3 + src/TIFGroup.cpp | 16 ++-- src/VoltageMonitor.cpp | 2 +- src/VoltageMonitor.h | 1 - 18 files changed, 89 insertions(+), 223 deletions(-) diff --git a/src/ABSConnection.cpp b/src/ABSConnection.cpp index 4041b0ca..ec54224c 100644 --- a/src/ABSConnection.cpp +++ b/src/ABSConnection.cpp @@ -37,7 +37,7 @@ void ABSConnection::init(AurynWeight maxw) if ( dst->get_post_size() == 0 ) return; tr_post = new EulerTrace(dst->get_post_size(),tau_post); - tr_post->set_target(dst->get_mem_ptr()); + tr_post->set_target(dst->get_state_vector("mem")); voltage_curve_post = new AurynFloat[ABS_VOLTAGE_CURVE_SIZE]; diff --git a/src/AIF2Group.cpp b/src/AIF2Group.cpp index dc238e86..3e387a9d 100644 --- a/src/AIF2Group.cpp +++ b/src/AIF2Group.cpp @@ -70,10 +70,10 @@ void AIF2Group::random_adapt(AurynState mean, AurynState sigma) for ( AurynLong i = 0 ; i0 ) - set_val (g_adapt1, i, rv ); + g_adapt1->set( i, rv ); rv = die(); if ( rv>0 ) - set_val (g_adapt2, i, rv ); + g_adapt2->set( i, rv ); } init_state(); @@ -126,10 +126,10 @@ void AIF2Group::check_thresholds() if ( *i > ( thr_rest + *thr_ptr ) ) { NeuronID unit = i-mem->data; push_spike(unit); - set_val (mem, unit, e_rest); // reset - set_val (thr, unit, dthr); //refractory - add_val (g_adapt1, unit, dg_adapt1); - add_val (g_adapt2, unit, dg_adapt2); + mem->set( unit, e_rest); // reset + thr->set( unit, dthr); //refractory + g_adapt1->add_specific( unit, dg_adapt1); + g_adapt2->add_specific( unit, dg_adapt2); } thr_ptr++; } diff --git a/src/AIFGroup.cpp b/src/AIFGroup.cpp index 746a56b8..8b4698b7 100644 --- a/src/AIFGroup.cpp +++ b/src/AIFGroup.cpp @@ -94,7 +94,7 @@ void AIFGroup::random_adapt(AurynState mean, AurynState sigma) for ( AurynLong i = 0 ; i0 ) - set_val (g_adapt1, i, rv ); + g_adapt1->set( i, rv ); } init_state(); @@ -164,9 +164,9 @@ void AIFGroup::check_thresholds() if ( *i > ( thr_rest + *thr_ptr ) ) { NeuronID unit = i-mem->data; push_spike(unit); - set_val (mem, unit, e_rest); // reset - set_val (thr, unit, dthr); //refractory - add_val (g_adapt1, unit, dg_adapt1); + mem->set( unit, e_rest); // reset + thr->set( unit, dthr); //refractory + g_adapt1->add_specific( unit, dg_adapt1); } thr_ptr++; } diff --git a/src/AdExGroup.cpp b/src/AdExGroup.cpp index 08cec464..e623eb76 100644 --- a/src/AdExGroup.cpp +++ b/src/AdExGroup.cpp @@ -80,8 +80,8 @@ void AdExGroup::clear() { clear_spikes(); for (NeuronID i = 0; i < get_rank_size(); i++) { - auryn_vector_float_set (mem, i, e_rest); - auryn_vector_float_set (g_ampa, i, 0.); + mem->set( i, e_rest); + g_ampa->set( i, 0.); auryn_vector_ushort_set (ref, i, 0); auryn_vector_float_set (g_gaba, i, 0.); auryn_vector_float_set (bg_current, i, 0.); @@ -190,7 +190,7 @@ void AdExGroup::set_c_mem(AurynFloat cm) AurynFloat AdExGroup::get_bg_current(NeuronID i) { if ( localrank(i) ) - return auryn_vector_float_get ( bg_current , global2rank(i) ) ; + return bg_current->get( global2rank(i) ) ; else return 0; } @@ -198,9 +198,11 @@ AurynFloat AdExGroup::get_bg_current(NeuronID i) { std::string AdExGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << get_ampa(i) << " " << get_gaba(i) << " " - << auryn_vector_ushort_get (ref, i) << " " - << auryn_vector_float_get (bg_current, i) <<"\n"; + oss << mem->get(i) << " " + << g_ampa->get(i) << " " + << g_gaba->get(i) << " " + << ref->get(i) << " " + << bg_current->get( i) <<"\n"; return oss.str(); } @@ -211,11 +213,11 @@ void AdExGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %f %f %u %f",&vmem,&vampa,&vgaba,&vref,&vbgcur); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); - set_ampa(trans,vampa); - set_gaba(trans,vgaba); - auryn_vector_ushort_set (ref, trans, vref); - auryn_vector_float_set (bg_current, trans, vbgcur); + mem->set(trans,vmem); + g_ampa->set(trans,vampa); + g_gaba->set(trans,vgaba); + ref->set( trans, vref); + bg_current->set( trans, vbgcur); } } diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index dabb1df0..6da3ae30 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -179,11 +179,6 @@ void AurynVectorFloat::add(float a) #endif } -void AurynVectorFloat::add(NeuronID i, float c ) -{ - check_size(i); - data[i] += c; -} void AurynVectorFloat::add(AurynVectorFloat * v) { diff --git a/src/AurynVector.h b/src/AurynVector.h index a05ff4ad..c8d28b0e 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -121,8 +121,8 @@ namespace auryn { } } - /*! \brief Adds value a to specific vector element i */ - void add(NeuronID i, AurynFloat c) + /*! \brief Adds the value c to specific vector element i */ + void add_specific(NeuronID i, AurynFloat c) { check_size(i); data[i] += c; @@ -254,7 +254,6 @@ namespace auryn { void saxpy(float a, AurynVectorFloat * x); void clip(float min, float max); void add(float c); - void add(NeuronID i, float c); void add(AurynVectorFloat * v); diff --git a/src/Connection.cpp b/src/Connection.cpp index ce6803c8..6cf09db2 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -107,21 +107,21 @@ void Connection::set_transmitter(TransmitterType transmitter) if ( dst->evolve_locally() ) { switch ( transmitter ) { case GABA: - set_transmitter(dst->get_gaba_ptr()->data); + set_transmitter(dst->get_state_vector("g_gaba")->data); break; case MEM: - set_transmitter(dst->get_mem_ptr()->data); + set_transmitter(dst->get_state_vector("mem")->data); break; case CURSYN: - set_transmitter(dst->get_cursyn_ptr()->data); + set_transmitter(dst->get_state_vector("g_cursyn")->data); break; case NMDA: - set_transmitter(dst->get_nmda_ptr()->data); + set_transmitter(dst->get_state_vector("g_nmda")->data); break; case GLUT: case AMPA: default: - set_transmitter(dst->get_ampa_ptr()->data); + set_transmitter(dst->get_state_vector("g_ampa")->data); } } else set_transmitter((AurynWeight *)NULL); } diff --git a/src/CubaIFGroup.cpp b/src/CubaIFGroup.cpp index f5ea6e97..5d53ec02 100644 --- a/src/CubaIFGroup.cpp +++ b/src/CubaIFGroup.cpp @@ -51,9 +51,9 @@ void CubaIFGroup::init() ref = auryn_vector_ushort_alloc (get_vector_size()); bg_current = get_state_vector("bg_current"); - t_bg_cur = auryn_vector_float_ptr ( bg_current , 0 ); - t_mem = auryn_vector_float_ptr ( mem , 0 ); - t_ref = auryn_vector_ushort_ptr ( ref , 0 ); + t_bg_cur = bg_current->ptr(); + t_mem = mem->ptr(); + t_ref = ref->ptr(); clear(); @@ -63,9 +63,9 @@ void CubaIFGroup::clear() { clear_spikes(); for (NeuronID i = 0; i < get_rank_size(); i++) { - auryn_vector_float_set (mem, i, e_rest); - auryn_vector_ushort_set (ref, i, 0); - auryn_vector_float_set (bg_current, i, 0.); + mem->set( i, e_rest); + ref->set( i, 0); + bg_current->set( i, 0.); } } @@ -128,7 +128,7 @@ AurynFloat CubaIFGroup::get_bg_current(NeuronID i) { std::string CubaIFGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << auryn_vector_ushort_get (ref, i) << "\n"; + oss << mem->get(i) << " " << ref->get( i) << "\n"; return oss.str(); } @@ -139,8 +139,8 @@ void CubaIFGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %u",&vmem,&vref); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); - auryn_vector_ushort_set (ref, trans, vref); + mem->set(trans,vmem); + ref->set(trans, vref); } } diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index 8ce58eaf..b26a2fd4 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -148,8 +148,8 @@ void IFGroup::check_thresholds() if ( *i > ( thr_rest + *thr_ptr ) ) { NeuronID unit = i-mem->data; push_spike(unit); - set_val (mem, unit, e_reset); // reset - set_val (thr, unit, dthr); //refractory + mem->set( unit, e_reset); // reset + thr->set( unit, dthr); //refractory } thr_ptr++; } diff --git a/src/IafPscDeltaGroup.cpp b/src/IafPscDeltaGroup.cpp index 016ca65f..ea51d195 100644 --- a/src/IafPscDeltaGroup.cpp +++ b/src/IafPscDeltaGroup.cpp @@ -112,7 +112,7 @@ void IafPscDeltaGroup::set_tau_mem(AurynFloat taum) std::string IafPscDeltaGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << auryn_vector_ushort_get (ref, i) << "\n"; + oss << mem->get(i) << " " << ref->get( i) << "\n"; return oss.str(); } @@ -123,7 +123,7 @@ void IafPscDeltaGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %f %f %u",&vmem,&vampa,&vgaba,&vref); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); + mem->set(trans,vmem); auryn_vector_ushort_set (ref, trans, vref); } } diff --git a/src/NeuronGroup.cpp b/src/NeuronGroup.cpp index 57a458c8..d878a72f 100644 --- a/src/NeuronGroup.cpp +++ b/src/NeuronGroup.cpp @@ -43,7 +43,6 @@ void NeuronGroup::init() thr = get_state_vector("thr"); g_ampa = get_state_vector("g_ampa"); g_gaba = get_state_vector("g_gaba"); - g_cursyn = get_state_vector("g_cursyn"); g_nmda = get_state_vector("g_nmda"); #ifndef CODE_ALIGNED_SSE_INSTRUCTIONS @@ -53,7 +52,7 @@ void NeuronGroup::init() || auryn_AlignOffset( g_ampa->size, g_ampa->data, sizeof(float), 16) || auryn_AlignOffset( g_nmda->size, g_nmda->data, sizeof(float), 16) || auryn_AlignOffset( g_gaba->size, g_gaba->data, sizeof(float), 16) - || auryn_AlignOffset( g_cursyn->size, g_cursyn->data, sizeof(float), 16) ) + ) throw AurynMemoryAlignmentException(); #endif } @@ -70,100 +69,6 @@ NeuronGroup::~NeuronGroup() } - -AurynState NeuronGroup::get_mem(NeuronID i) -{ - return get_val(mem,i); -} - -AurynStateVector * NeuronGroup::get_mem_ptr() -{ - return mem; -} - -void NeuronGroup::set_mem(NeuronID i, AurynState val) -{ - set_val(mem,i,val); -} - -void NeuronGroup::set_state(std::string name, NeuronID i, AurynState val) -{ - AurynStateVector * tmp = get_state_vector(name); - if ( tmp ) - set_val(tmp,i,val); -} - -void NeuronGroup::set_state(std::string name, AurynState val) -{ - AurynStateVector * tmp = get_state_vector(name); - if ( tmp ) - for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) - set_val(tmp,i,val); -} - - - - -AurynState NeuronGroup::get_ampa(NeuronID i) -{ - return get_val(g_ampa,i); -} - -AurynState NeuronGroup::get_cursyn(NeuronID i) -{ - return get_val(g_cursyn,i); -} - -AurynStateVector * NeuronGroup::get_ampa_ptr() -{ - return g_ampa; -} - -AurynStateVector * NeuronGroup::get_cursyn_ptr() -{ - return g_cursyn; -} - -AurynState NeuronGroup::get_gaba(NeuronID i) -{ - return get_val(g_gaba,i); -} - -AurynStateVector * NeuronGroup::get_gaba_ptr() -{ - return g_gaba; -} - -AurynState NeuronGroup::get_nmda(NeuronID i) -{ - return get_val(g_nmda,i); -} - -AurynStateVector * NeuronGroup::get_nmda_ptr() -{ - return g_nmda; -} - -void NeuronGroup::set_ampa(NeuronID i, AurynState val) -{ - set_val(g_ampa,i,val); -} - -void NeuronGroup::set_cursyn(NeuronID i, AurynState val) -{ - set_val(g_cursyn,i,val); -} - -void NeuronGroup::set_gaba(NeuronID i, AurynState val) -{ - set_val(g_gaba,i,val); -} - -void NeuronGroup::set_nmda(NeuronID i, AurynState val) -{ - set_val(g_nmda,i,val); -} - void NeuronGroup::random_mem(AurynState mean, AurynState sigma) { randomize_state_vector_gauss("mem",mean,sigma,42); @@ -178,7 +83,7 @@ void NeuronGroup::random_uniform_mem(AurynState lo, AurynState hi) for ( AurynLong i = 0 ; iset(i,rv); } init_state(); @@ -193,7 +98,7 @@ void NeuronGroup::random_nmda(AurynState mean, AurynState sigma) for ( AurynLong i = 0 ; iset(i,rv); } init_state(); @@ -211,48 +116,23 @@ void NeuronGroup::init_state() } - -void NeuronGroup::set_val(AurynStateVector * vec, NeuronID i, AurynState val) -{ - vec->set( i, val); -} - -void NeuronGroup::add_val(AurynStateVector * vec, NeuronID i, AurynState val) -{ - vec->data[i] += val; -} - -void NeuronGroup::clip_val(AurynStateVector * vec, NeuronID i, AurynState max) -{ - if ( vec->get(i) > max) - vec->set(i,max); -} - -AurynState NeuronGroup::get_val(AurynStateVector * vec, NeuronID i) -{ - return vec->get( i); -} - void NeuronGroup::tadd(NeuronID id, AurynWeight amount, TransmitterType t) { NeuronID localid = global2rank(id); switch ( t ) { case GABA: - add_val(g_gaba,localid,amount); + g_gaba->add_specific(localid,amount); break; case MEM: - add_val(mem,localid,amount); - break; - case CURSYN: - add_val(g_cursyn,localid,amount); + mem->add_specific(localid,amount); break; case NMDA: - add_val(g_nmda,localid,amount); + g_nmda->add_specific(localid,amount); break; case GLUT: case AMPA: default: - add_val(g_ampa,localid,amount); + g_ampa->add_specific(localid,amount); } } @@ -260,5 +140,19 @@ void NeuronGroup::tadd(NeuronID id, AurynWeight amount, TransmitterType t) void NeuronGroup::tadd(AurynStateVector * state, NeuronID id, AurynWeight amount) { NeuronID localid = global2rank(id); - add_val(state, localid, amount); + state->add_specific( localid, amount); +} + +void NeuronGroup::set_state(std::string name, NeuronID i, AurynState val) +{ + AurynStateVector * tmp = find_state_vector(name); + if (tmp) { tmp->set(i,val); } + else { logger->warning("State not found."); } +} + +void NeuronGroup::set_state(std::string name, AurynState val) +{ + AurynStateVector * tmp = find_state_vector(name); + if (tmp) tmp->set_all(val); + else { logger->warning("State not found."); } } diff --git a/src/NeuronGroup.h b/src/NeuronGroup.h index b6000d48..aafb7e13 100644 --- a/src/NeuronGroup.h +++ b/src/NeuronGroup.h @@ -70,11 +70,6 @@ class NeuronGroup : public SpikingGroup /*! Stores the NMDA conductances of each point neuron. */ AurynStateVector * g_nmda __attribute__((aligned(16))); - /*! Stores the CURSYN states of each point neuron. - * - * TODO This should be removed from NeuronGroup and only - * added where its actually needed.*/ - AurynStateVector * g_cursyn __attribute__((aligned(16))); /*! Stores threshold terms for moving thresholds. * * TODO Remove and move to downstream. */ @@ -82,39 +77,18 @@ class NeuronGroup : public SpikingGroup /*! Default constructor */ NeuronGroup(NeuronID n, double loadmultiplier = 1. , NeuronID total = 0 ); + /*! Default destructor */ virtual ~NeuronGroup(); virtual void clear() = 0; - - AurynState get_val(AurynStateVector* vec, NeuronID i); - void set_val(AurynStateVector* vec, NeuronID i, AurynState val); - void add_val(AurynStateVector* vec, NeuronID i, AurynState val); - void clip_val(AurynStateVector* vec, NeuronID i, AurynState max); - AurynState get_mem(NeuronID i); - AurynStateVector * get_mem_ptr(); - - void set_mem(NeuronID i, AurynState val); - - void set_state(std::string name, NeuronID i, AurynState val); + /*! \brief Conveniently sets all values in a state vector identified by name in this group */ void set_state(std::string name, AurynState val); - AurynState get_ampa(NeuronID i); - void set_ampa(NeuronID i,AurynState val); - AurynStateVector * get_ampa_ptr(); - - AurynState get_cursyn(NeuronID i); - void set_cursyn(NeuronID i,AurynState val); - AurynStateVector * get_cursyn_ptr(); - - AurynState get_gaba(NeuronID i); - void set_gaba(NeuronID i,AurynState val); - AurynStateVector * get_gaba_ptr(); + /*! \brief Conveniently sets a single value of element i in a state vector identified by name in this group */ + void set_state(std::string name, NeuronID i, AurynState val); - AurynState get_nmda(NeuronID i); - void set_nmda(NeuronID i,AurynState val); - AurynStateVector * get_nmda_ptr(); void random_mem(AurynState mean=-60e-3, AurynState sigma=5e-3); void random_uniform_mem(AurynState lo, AurynState hi); @@ -123,7 +97,6 @@ class NeuronGroup : public SpikingGroup virtual void init_state(); - void safe_tadd(NeuronID id, AurynWeight amount, TransmitterType t=GLUT); /*! Adds given transmitter to neuron as from a synaptic event. DEPRECATED. Moving slowly to SparseConnection transmit. */ void tadd(NeuronID id, AurynWeight amount, TransmitterType t=GLUT); diff --git a/src/PatternStimulator.cpp b/src/PatternStimulator.cpp index 4187f5b6..af143706 100644 --- a/src/PatternStimulator.cpp +++ b/src/PatternStimulator.cpp @@ -59,7 +59,7 @@ void PatternStimulator::init(NeuronGroup * target, std::string filename, AurynFl patterns = new std::vector; - mem = dst->get_mem_ptr(); + mem = dst->mem; filetime = 0; timeseriesfile.open(filename.c_str(),std::ios::in); diff --git a/src/SIFGroup.cpp b/src/SIFGroup.cpp index dfaf140e..d05e8503 100644 --- a/src/SIFGroup.cpp +++ b/src/SIFGroup.cpp @@ -50,6 +50,7 @@ void SIFGroup::init() calculate_scale_constants(); ref = auryn_vector_ushort_alloc (get_vector_size()); + g_cursyn = get_state_vector("g_cursyn"); bg_current = get_state_vector("bg_current"); inj_current = get_state_vector("inj_current"); @@ -141,7 +142,7 @@ AurynFloat SIFGroup::get_bg_current(NeuronID i) { std::string SIFGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << get_ampa(i) << " " << get_gaba(i) << " " << auryn_vector_ushort_get (ref, i) << "\n"; + oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " << ref->get(i) << "\n"; return oss.str(); } @@ -152,10 +153,10 @@ void SIFGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %f %f %u",&vmem,&vampa,&vgaba,&vref); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); - set_ampa(trans,vampa); - set_gaba(trans,vgaba); - auryn_vector_ushort_set (ref, trans, vref); + mem->set(trans,vmem); + g_ampa->set(trans,vampa); + g_gaba->set(trans,vgaba); + ref->set( trans, vref); } } diff --git a/src/SIFGroup.h b/src/SIFGroup.h index 80edaee8..b80a06e1 100644 --- a/src/SIFGroup.h +++ b/src/SIFGroup.h @@ -59,6 +59,9 @@ class SIFGroup : public NeuronGroup void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); public: + /*! Stores the CURSYN states of each point neuron.*/ + AurynStateVector * g_cursyn __attribute__((aligned(16))); + /*! The default constructor of this NeuronGroup */ SIFGroup(NeuronID size); virtual ~SIFGroup(); diff --git a/src/TIFGroup.cpp b/src/TIFGroup.cpp index d0abbef7..c1b2eb67 100644 --- a/src/TIFGroup.cpp +++ b/src/TIFGroup.cpp @@ -158,9 +158,9 @@ AurynFloat TIFGroup::get_bg_current(NeuronID i) { std::string TIFGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << get_ampa(i) << " " << get_gaba(i) << " " - << auryn_vector_ushort_get (ref, i) << " " - << auryn_vector_float_get (bg_current, i) <<"\n"; + oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " + << ref->get(i) << " " + << bg_current->get(i) <<"\n"; return oss.str(); } @@ -171,11 +171,11 @@ void TIFGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %f %f %u %f",&vmem,&vampa,&vgaba,&vref,&vbgcur); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); - set_ampa(trans,vampa); - set_gaba(trans,vgaba); - auryn_vector_ushort_set (ref, trans, vref); - auryn_vector_float_set (bg_current, trans, vbgcur); + mem->set(trans,vmem); + g_ampa->set(trans,vampa); + g_gaba->set(trans,vgaba); + ref->set(trans, vref); + bg_current->set(trans, vbgcur); } } diff --git a/src/VoltageMonitor.cpp b/src/VoltageMonitor.cpp index 80281cac..1d649db4 100644 --- a/src/VoltageMonitor.cpp +++ b/src/VoltageMonitor.cpp @@ -62,7 +62,7 @@ void VoltageMonitor::propagate() // we output spikes irrespectively of the sampling interval, because // the membrane potential isn't a smooth function for most IF models when // they spike, so it's easy to "miss" a spike otherwise - double voltage = src->get_mem(nid); + double voltage = src->mem->get(nid); if ( paste_spikes ) { SpikeContainer * spikes = src->get_spikes_immediate(); for ( int i = 0 ; i < spikes->size() ; ++i ) { diff --git a/src/VoltageMonitor.h b/src/VoltageMonitor.h index b7513448..4f587c3d 100644 --- a/src/VoltageMonitor.h +++ b/src/VoltageMonitor.h @@ -51,7 +51,6 @@ class VoltageMonitor : protected Monitor /*! Global neuron id to record from */ NeuronID gid; - protected: /*! The source neuron group to record from */ NeuronGroup * src; From 0ae81e9c5a03bbd7519f484e4b5a041650e3af38 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 20:57:13 +0200 Subject: [PATCH 150/460] Removes state getters and setters from NeuronGroup Because we have classes for state vectors now which have these functions themselves we don't need the getters and setters in NeuronGroup any more. This had to come with quite a bit of cleaning up in the code. --- examples/sim_epsp.cpp | 4 +- examples/sim_epsp_stp.cpp | 4 +- examples/sim_isp_big.cpp | 4 +- src/ABSConnection.cpp | 2 +- src/AIF2Group.cpp | 12 +-- src/AIFGroup.cpp | 8 +- src/AdExGroup.cpp | 24 +++--- src/AurynVector.cpp | 5 -- src/AurynVector.h | 5 +- src/Connection.cpp | 10 +-- src/CubaIFGroup.cpp | 18 ++--- src/IFGroup.cpp | 4 +- src/IafPscDeltaGroup.cpp | 4 +- src/NeuronGroup.cpp | 150 ++++++-------------------------------- src/NeuronGroup.h | 35 +-------- src/PatternStimulator.cpp | 2 +- src/SIFGroup.cpp | 11 +-- src/SIFGroup.h | 3 + src/TIFGroup.cpp | 16 ++-- src/VoltageMonitor.cpp | 2 +- src/VoltageMonitor.h | 1 - 21 files changed, 95 insertions(+), 229 deletions(-) diff --git a/examples/sim_epsp.cpp b/examples/sim_epsp.cpp index e2587350..e966c994 100644 --- a/examples/sim_epsp.cpp +++ b/examples/sim_epsp.cpp @@ -71,11 +71,11 @@ int main(int ac, char* av[]) tmpstr = outputfile; tmpstr += ".ampa"; - AmpaMonitor * amon = new AmpaMonitor( neuron, 0, tmpstr.c_str() ); + StateMonitor * amon = new StateMonitor( neuron, 0, "g_ampa", tmpstr.c_str() ); tmpstr = outputfile; tmpstr += ".nmda"; - NmdaMonitor * nmon = new NmdaMonitor( neuron, 0, tmpstr.c_str() ); + StateMonitor * nmon = new StateMonitor( neuron, 0, "g_nmda", tmpstr.c_str() ); logger->msg("Running ...",PROGRESS); sys->run(10); diff --git a/examples/sim_epsp_stp.cpp b/examples/sim_epsp_stp.cpp index dc9ed96a..a8c38198 100644 --- a/examples/sim_epsp_stp.cpp +++ b/examples/sim_epsp_stp.cpp @@ -85,12 +85,12 @@ int main(int ac, char* av[]) // Records the postsynaptic AMPA conductance tmpstr = outputfile; tmpstr += ".ampa"; - AmpaMonitor * amon = new AmpaMonitor( neuron, 0, tmpstr.c_str() ); + StateMonitor * amon = new StateMonitor( neuron, 0, "g_ampa", tmpstr.c_str() ); // Records the postsynaptic NMDA conductance tmpstr = outputfile; tmpstr += ".nmda"; - NmdaMonitor * nmon = new NmdaMonitor( neuron, 0, tmpstr.c_str() ); + StateMonitor * nmon = new StateMonitor( neuron, 0, "g_nmda", tmpstr.c_str() ); // simulate for 5s logger->msg("Running ...",PROGRESS); diff --git a/examples/sim_isp_big.cpp b/examples/sim_isp_big.cpp index fca780de..8b8fb5f8 100644 --- a/examples/sim_isp_big.cpp +++ b/examples/sim_isp_big.cpp @@ -271,11 +271,11 @@ int main(int ac, char* av[]) strbuf = outputfile; strbuf += ".ampa"; - AmpaMonitor * amon = new AmpaMonitor( neurons_e, record_neuron, strbuf.c_str() ); + StateMonitor * amon = new StateMonitor( neurons_e, record_neuron, "g_ampa", strbuf.c_str() ); strbuf = outputfile; strbuf += ".gaba"; - GabaMonitor * gmon = new GabaMonitor( neurons_e, record_neuron, strbuf.c_str() ); + StateMonitor * gmon = new StateMonitor( neurons_e, record_neuron, "g_gaba", strbuf.c_str() ); } RateChecker * chk = new RateChecker( neurons_e , 0.001 , 1000. , 100e-3); diff --git a/src/ABSConnection.cpp b/src/ABSConnection.cpp index 4041b0ca..ec54224c 100644 --- a/src/ABSConnection.cpp +++ b/src/ABSConnection.cpp @@ -37,7 +37,7 @@ void ABSConnection::init(AurynWeight maxw) if ( dst->get_post_size() == 0 ) return; tr_post = new EulerTrace(dst->get_post_size(),tau_post); - tr_post->set_target(dst->get_mem_ptr()); + tr_post->set_target(dst->get_state_vector("mem")); voltage_curve_post = new AurynFloat[ABS_VOLTAGE_CURVE_SIZE]; diff --git a/src/AIF2Group.cpp b/src/AIF2Group.cpp index dc238e86..3e387a9d 100644 --- a/src/AIF2Group.cpp +++ b/src/AIF2Group.cpp @@ -70,10 +70,10 @@ void AIF2Group::random_adapt(AurynState mean, AurynState sigma) for ( AurynLong i = 0 ; i0 ) - set_val (g_adapt1, i, rv ); + g_adapt1->set( i, rv ); rv = die(); if ( rv>0 ) - set_val (g_adapt2, i, rv ); + g_adapt2->set( i, rv ); } init_state(); @@ -126,10 +126,10 @@ void AIF2Group::check_thresholds() if ( *i > ( thr_rest + *thr_ptr ) ) { NeuronID unit = i-mem->data; push_spike(unit); - set_val (mem, unit, e_rest); // reset - set_val (thr, unit, dthr); //refractory - add_val (g_adapt1, unit, dg_adapt1); - add_val (g_adapt2, unit, dg_adapt2); + mem->set( unit, e_rest); // reset + thr->set( unit, dthr); //refractory + g_adapt1->add_specific( unit, dg_adapt1); + g_adapt2->add_specific( unit, dg_adapt2); } thr_ptr++; } diff --git a/src/AIFGroup.cpp b/src/AIFGroup.cpp index 746a56b8..8b4698b7 100644 --- a/src/AIFGroup.cpp +++ b/src/AIFGroup.cpp @@ -94,7 +94,7 @@ void AIFGroup::random_adapt(AurynState mean, AurynState sigma) for ( AurynLong i = 0 ; i0 ) - set_val (g_adapt1, i, rv ); + g_adapt1->set( i, rv ); } init_state(); @@ -164,9 +164,9 @@ void AIFGroup::check_thresholds() if ( *i > ( thr_rest + *thr_ptr ) ) { NeuronID unit = i-mem->data; push_spike(unit); - set_val (mem, unit, e_rest); // reset - set_val (thr, unit, dthr); //refractory - add_val (g_adapt1, unit, dg_adapt1); + mem->set( unit, e_rest); // reset + thr->set( unit, dthr); //refractory + g_adapt1->add_specific( unit, dg_adapt1); } thr_ptr++; } diff --git a/src/AdExGroup.cpp b/src/AdExGroup.cpp index 08cec464..e623eb76 100644 --- a/src/AdExGroup.cpp +++ b/src/AdExGroup.cpp @@ -80,8 +80,8 @@ void AdExGroup::clear() { clear_spikes(); for (NeuronID i = 0; i < get_rank_size(); i++) { - auryn_vector_float_set (mem, i, e_rest); - auryn_vector_float_set (g_ampa, i, 0.); + mem->set( i, e_rest); + g_ampa->set( i, 0.); auryn_vector_ushort_set (ref, i, 0); auryn_vector_float_set (g_gaba, i, 0.); auryn_vector_float_set (bg_current, i, 0.); @@ -190,7 +190,7 @@ void AdExGroup::set_c_mem(AurynFloat cm) AurynFloat AdExGroup::get_bg_current(NeuronID i) { if ( localrank(i) ) - return auryn_vector_float_get ( bg_current , global2rank(i) ) ; + return bg_current->get( global2rank(i) ) ; else return 0; } @@ -198,9 +198,11 @@ AurynFloat AdExGroup::get_bg_current(NeuronID i) { std::string AdExGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << get_ampa(i) << " " << get_gaba(i) << " " - << auryn_vector_ushort_get (ref, i) << " " - << auryn_vector_float_get (bg_current, i) <<"\n"; + oss << mem->get(i) << " " + << g_ampa->get(i) << " " + << g_gaba->get(i) << " " + << ref->get(i) << " " + << bg_current->get( i) <<"\n"; return oss.str(); } @@ -211,11 +213,11 @@ void AdExGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %f %f %u %f",&vmem,&vampa,&vgaba,&vref,&vbgcur); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); - set_ampa(trans,vampa); - set_gaba(trans,vgaba); - auryn_vector_ushort_set (ref, trans, vref); - auryn_vector_float_set (bg_current, trans, vbgcur); + mem->set(trans,vmem); + g_ampa->set(trans,vampa); + g_gaba->set(trans,vgaba); + ref->set( trans, vref); + bg_current->set( trans, vbgcur); } } diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index dabb1df0..6da3ae30 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -179,11 +179,6 @@ void AurynVectorFloat::add(float a) #endif } -void AurynVectorFloat::add(NeuronID i, float c ) -{ - check_size(i); - data[i] += c; -} void AurynVectorFloat::add(AurynVectorFloat * v) { diff --git a/src/AurynVector.h b/src/AurynVector.h index a05ff4ad..c8d28b0e 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -121,8 +121,8 @@ namespace auryn { } } - /*! \brief Adds value a to specific vector element i */ - void add(NeuronID i, AurynFloat c) + /*! \brief Adds the value c to specific vector element i */ + void add_specific(NeuronID i, AurynFloat c) { check_size(i); data[i] += c; @@ -254,7 +254,6 @@ namespace auryn { void saxpy(float a, AurynVectorFloat * x); void clip(float min, float max); void add(float c); - void add(NeuronID i, float c); void add(AurynVectorFloat * v); diff --git a/src/Connection.cpp b/src/Connection.cpp index ce6803c8..6cf09db2 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -107,21 +107,21 @@ void Connection::set_transmitter(TransmitterType transmitter) if ( dst->evolve_locally() ) { switch ( transmitter ) { case GABA: - set_transmitter(dst->get_gaba_ptr()->data); + set_transmitter(dst->get_state_vector("g_gaba")->data); break; case MEM: - set_transmitter(dst->get_mem_ptr()->data); + set_transmitter(dst->get_state_vector("mem")->data); break; case CURSYN: - set_transmitter(dst->get_cursyn_ptr()->data); + set_transmitter(dst->get_state_vector("g_cursyn")->data); break; case NMDA: - set_transmitter(dst->get_nmda_ptr()->data); + set_transmitter(dst->get_state_vector("g_nmda")->data); break; case GLUT: case AMPA: default: - set_transmitter(dst->get_ampa_ptr()->data); + set_transmitter(dst->get_state_vector("g_ampa")->data); } } else set_transmitter((AurynWeight *)NULL); } diff --git a/src/CubaIFGroup.cpp b/src/CubaIFGroup.cpp index f5ea6e97..5d53ec02 100644 --- a/src/CubaIFGroup.cpp +++ b/src/CubaIFGroup.cpp @@ -51,9 +51,9 @@ void CubaIFGroup::init() ref = auryn_vector_ushort_alloc (get_vector_size()); bg_current = get_state_vector("bg_current"); - t_bg_cur = auryn_vector_float_ptr ( bg_current , 0 ); - t_mem = auryn_vector_float_ptr ( mem , 0 ); - t_ref = auryn_vector_ushort_ptr ( ref , 0 ); + t_bg_cur = bg_current->ptr(); + t_mem = mem->ptr(); + t_ref = ref->ptr(); clear(); @@ -63,9 +63,9 @@ void CubaIFGroup::clear() { clear_spikes(); for (NeuronID i = 0; i < get_rank_size(); i++) { - auryn_vector_float_set (mem, i, e_rest); - auryn_vector_ushort_set (ref, i, 0); - auryn_vector_float_set (bg_current, i, 0.); + mem->set( i, e_rest); + ref->set( i, 0); + bg_current->set( i, 0.); } } @@ -128,7 +128,7 @@ AurynFloat CubaIFGroup::get_bg_current(NeuronID i) { std::string CubaIFGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << auryn_vector_ushort_get (ref, i) << "\n"; + oss << mem->get(i) << " " << ref->get( i) << "\n"; return oss.str(); } @@ -139,8 +139,8 @@ void CubaIFGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %u",&vmem,&vref); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); - auryn_vector_ushort_set (ref, trans, vref); + mem->set(trans,vmem); + ref->set(trans, vref); } } diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index 8ce58eaf..b26a2fd4 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -148,8 +148,8 @@ void IFGroup::check_thresholds() if ( *i > ( thr_rest + *thr_ptr ) ) { NeuronID unit = i-mem->data; push_spike(unit); - set_val (mem, unit, e_reset); // reset - set_val (thr, unit, dthr); //refractory + mem->set( unit, e_reset); // reset + thr->set( unit, dthr); //refractory } thr_ptr++; } diff --git a/src/IafPscDeltaGroup.cpp b/src/IafPscDeltaGroup.cpp index 016ca65f..ea51d195 100644 --- a/src/IafPscDeltaGroup.cpp +++ b/src/IafPscDeltaGroup.cpp @@ -112,7 +112,7 @@ void IafPscDeltaGroup::set_tau_mem(AurynFloat taum) std::string IafPscDeltaGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << auryn_vector_ushort_get (ref, i) << "\n"; + oss << mem->get(i) << " " << ref->get( i) << "\n"; return oss.str(); } @@ -123,7 +123,7 @@ void IafPscDeltaGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %f %f %u",&vmem,&vampa,&vgaba,&vref); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); + mem->set(trans,vmem); auryn_vector_ushort_set (ref, trans, vref); } } diff --git a/src/NeuronGroup.cpp b/src/NeuronGroup.cpp index 57a458c8..d878a72f 100644 --- a/src/NeuronGroup.cpp +++ b/src/NeuronGroup.cpp @@ -43,7 +43,6 @@ void NeuronGroup::init() thr = get_state_vector("thr"); g_ampa = get_state_vector("g_ampa"); g_gaba = get_state_vector("g_gaba"); - g_cursyn = get_state_vector("g_cursyn"); g_nmda = get_state_vector("g_nmda"); #ifndef CODE_ALIGNED_SSE_INSTRUCTIONS @@ -53,7 +52,7 @@ void NeuronGroup::init() || auryn_AlignOffset( g_ampa->size, g_ampa->data, sizeof(float), 16) || auryn_AlignOffset( g_nmda->size, g_nmda->data, sizeof(float), 16) || auryn_AlignOffset( g_gaba->size, g_gaba->data, sizeof(float), 16) - || auryn_AlignOffset( g_cursyn->size, g_cursyn->data, sizeof(float), 16) ) + ) throw AurynMemoryAlignmentException(); #endif } @@ -70,100 +69,6 @@ NeuronGroup::~NeuronGroup() } - -AurynState NeuronGroup::get_mem(NeuronID i) -{ - return get_val(mem,i); -} - -AurynStateVector * NeuronGroup::get_mem_ptr() -{ - return mem; -} - -void NeuronGroup::set_mem(NeuronID i, AurynState val) -{ - set_val(mem,i,val); -} - -void NeuronGroup::set_state(std::string name, NeuronID i, AurynState val) -{ - AurynStateVector * tmp = get_state_vector(name); - if ( tmp ) - set_val(tmp,i,val); -} - -void NeuronGroup::set_state(std::string name, AurynState val) -{ - AurynStateVector * tmp = get_state_vector(name); - if ( tmp ) - for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) - set_val(tmp,i,val); -} - - - - -AurynState NeuronGroup::get_ampa(NeuronID i) -{ - return get_val(g_ampa,i); -} - -AurynState NeuronGroup::get_cursyn(NeuronID i) -{ - return get_val(g_cursyn,i); -} - -AurynStateVector * NeuronGroup::get_ampa_ptr() -{ - return g_ampa; -} - -AurynStateVector * NeuronGroup::get_cursyn_ptr() -{ - return g_cursyn; -} - -AurynState NeuronGroup::get_gaba(NeuronID i) -{ - return get_val(g_gaba,i); -} - -AurynStateVector * NeuronGroup::get_gaba_ptr() -{ - return g_gaba; -} - -AurynState NeuronGroup::get_nmda(NeuronID i) -{ - return get_val(g_nmda,i); -} - -AurynStateVector * NeuronGroup::get_nmda_ptr() -{ - return g_nmda; -} - -void NeuronGroup::set_ampa(NeuronID i, AurynState val) -{ - set_val(g_ampa,i,val); -} - -void NeuronGroup::set_cursyn(NeuronID i, AurynState val) -{ - set_val(g_cursyn,i,val); -} - -void NeuronGroup::set_gaba(NeuronID i, AurynState val) -{ - set_val(g_gaba,i,val); -} - -void NeuronGroup::set_nmda(NeuronID i, AurynState val) -{ - set_val(g_nmda,i,val); -} - void NeuronGroup::random_mem(AurynState mean, AurynState sigma) { randomize_state_vector_gauss("mem",mean,sigma,42); @@ -178,7 +83,7 @@ void NeuronGroup::random_uniform_mem(AurynState lo, AurynState hi) for ( AurynLong i = 0 ; iset(i,rv); } init_state(); @@ -193,7 +98,7 @@ void NeuronGroup::random_nmda(AurynState mean, AurynState sigma) for ( AurynLong i = 0 ; iset(i,rv); } init_state(); @@ -211,48 +116,23 @@ void NeuronGroup::init_state() } - -void NeuronGroup::set_val(AurynStateVector * vec, NeuronID i, AurynState val) -{ - vec->set( i, val); -} - -void NeuronGroup::add_val(AurynStateVector * vec, NeuronID i, AurynState val) -{ - vec->data[i] += val; -} - -void NeuronGroup::clip_val(AurynStateVector * vec, NeuronID i, AurynState max) -{ - if ( vec->get(i) > max) - vec->set(i,max); -} - -AurynState NeuronGroup::get_val(AurynStateVector * vec, NeuronID i) -{ - return vec->get( i); -} - void NeuronGroup::tadd(NeuronID id, AurynWeight amount, TransmitterType t) { NeuronID localid = global2rank(id); switch ( t ) { case GABA: - add_val(g_gaba,localid,amount); + g_gaba->add_specific(localid,amount); break; case MEM: - add_val(mem,localid,amount); - break; - case CURSYN: - add_val(g_cursyn,localid,amount); + mem->add_specific(localid,amount); break; case NMDA: - add_val(g_nmda,localid,amount); + g_nmda->add_specific(localid,amount); break; case GLUT: case AMPA: default: - add_val(g_ampa,localid,amount); + g_ampa->add_specific(localid,amount); } } @@ -260,5 +140,19 @@ void NeuronGroup::tadd(NeuronID id, AurynWeight amount, TransmitterType t) void NeuronGroup::tadd(AurynStateVector * state, NeuronID id, AurynWeight amount) { NeuronID localid = global2rank(id); - add_val(state, localid, amount); + state->add_specific( localid, amount); +} + +void NeuronGroup::set_state(std::string name, NeuronID i, AurynState val) +{ + AurynStateVector * tmp = find_state_vector(name); + if (tmp) { tmp->set(i,val); } + else { logger->warning("State not found."); } +} + +void NeuronGroup::set_state(std::string name, AurynState val) +{ + AurynStateVector * tmp = find_state_vector(name); + if (tmp) tmp->set_all(val); + else { logger->warning("State not found."); } } diff --git a/src/NeuronGroup.h b/src/NeuronGroup.h index b6000d48..aafb7e13 100644 --- a/src/NeuronGroup.h +++ b/src/NeuronGroup.h @@ -70,11 +70,6 @@ class NeuronGroup : public SpikingGroup /*! Stores the NMDA conductances of each point neuron. */ AurynStateVector * g_nmda __attribute__((aligned(16))); - /*! Stores the CURSYN states of each point neuron. - * - * TODO This should be removed from NeuronGroup and only - * added where its actually needed.*/ - AurynStateVector * g_cursyn __attribute__((aligned(16))); /*! Stores threshold terms for moving thresholds. * * TODO Remove and move to downstream. */ @@ -82,39 +77,18 @@ class NeuronGroup : public SpikingGroup /*! Default constructor */ NeuronGroup(NeuronID n, double loadmultiplier = 1. , NeuronID total = 0 ); + /*! Default destructor */ virtual ~NeuronGroup(); virtual void clear() = 0; - - AurynState get_val(AurynStateVector* vec, NeuronID i); - void set_val(AurynStateVector* vec, NeuronID i, AurynState val); - void add_val(AurynStateVector* vec, NeuronID i, AurynState val); - void clip_val(AurynStateVector* vec, NeuronID i, AurynState max); - AurynState get_mem(NeuronID i); - AurynStateVector * get_mem_ptr(); - - void set_mem(NeuronID i, AurynState val); - - void set_state(std::string name, NeuronID i, AurynState val); + /*! \brief Conveniently sets all values in a state vector identified by name in this group */ void set_state(std::string name, AurynState val); - AurynState get_ampa(NeuronID i); - void set_ampa(NeuronID i,AurynState val); - AurynStateVector * get_ampa_ptr(); - - AurynState get_cursyn(NeuronID i); - void set_cursyn(NeuronID i,AurynState val); - AurynStateVector * get_cursyn_ptr(); - - AurynState get_gaba(NeuronID i); - void set_gaba(NeuronID i,AurynState val); - AurynStateVector * get_gaba_ptr(); + /*! \brief Conveniently sets a single value of element i in a state vector identified by name in this group */ + void set_state(std::string name, NeuronID i, AurynState val); - AurynState get_nmda(NeuronID i); - void set_nmda(NeuronID i,AurynState val); - AurynStateVector * get_nmda_ptr(); void random_mem(AurynState mean=-60e-3, AurynState sigma=5e-3); void random_uniform_mem(AurynState lo, AurynState hi); @@ -123,7 +97,6 @@ class NeuronGroup : public SpikingGroup virtual void init_state(); - void safe_tadd(NeuronID id, AurynWeight amount, TransmitterType t=GLUT); /*! Adds given transmitter to neuron as from a synaptic event. DEPRECATED. Moving slowly to SparseConnection transmit. */ void tadd(NeuronID id, AurynWeight amount, TransmitterType t=GLUT); diff --git a/src/PatternStimulator.cpp b/src/PatternStimulator.cpp index 4187f5b6..af143706 100644 --- a/src/PatternStimulator.cpp +++ b/src/PatternStimulator.cpp @@ -59,7 +59,7 @@ void PatternStimulator::init(NeuronGroup * target, std::string filename, AurynFl patterns = new std::vector; - mem = dst->get_mem_ptr(); + mem = dst->mem; filetime = 0; timeseriesfile.open(filename.c_str(),std::ios::in); diff --git a/src/SIFGroup.cpp b/src/SIFGroup.cpp index dfaf140e..d05e8503 100644 --- a/src/SIFGroup.cpp +++ b/src/SIFGroup.cpp @@ -50,6 +50,7 @@ void SIFGroup::init() calculate_scale_constants(); ref = auryn_vector_ushort_alloc (get_vector_size()); + g_cursyn = get_state_vector("g_cursyn"); bg_current = get_state_vector("bg_current"); inj_current = get_state_vector("inj_current"); @@ -141,7 +142,7 @@ AurynFloat SIFGroup::get_bg_current(NeuronID i) { std::string SIFGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << get_ampa(i) << " " << get_gaba(i) << " " << auryn_vector_ushort_get (ref, i) << "\n"; + oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " << ref->get(i) << "\n"; return oss.str(); } @@ -152,10 +153,10 @@ void SIFGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %f %f %u",&vmem,&vampa,&vgaba,&vref); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); - set_ampa(trans,vampa); - set_gaba(trans,vgaba); - auryn_vector_ushort_set (ref, trans, vref); + mem->set(trans,vmem); + g_ampa->set(trans,vampa); + g_gaba->set(trans,vgaba); + ref->set( trans, vref); } } diff --git a/src/SIFGroup.h b/src/SIFGroup.h index 80edaee8..b80a06e1 100644 --- a/src/SIFGroup.h +++ b/src/SIFGroup.h @@ -59,6 +59,9 @@ class SIFGroup : public NeuronGroup void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); public: + /*! Stores the CURSYN states of each point neuron.*/ + AurynStateVector * g_cursyn __attribute__((aligned(16))); + /*! The default constructor of this NeuronGroup */ SIFGroup(NeuronID size); virtual ~SIFGroup(); diff --git a/src/TIFGroup.cpp b/src/TIFGroup.cpp index d0abbef7..c1b2eb67 100644 --- a/src/TIFGroup.cpp +++ b/src/TIFGroup.cpp @@ -158,9 +158,9 @@ AurynFloat TIFGroup::get_bg_current(NeuronID i) { std::string TIFGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << get_mem(i) << " " << get_ampa(i) << " " << get_gaba(i) << " " - << auryn_vector_ushort_get (ref, i) << " " - << auryn_vector_float_get (bg_current, i) <<"\n"; + oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " + << ref->get(i) << " " + << bg_current->get(i) <<"\n"; return oss.str(); } @@ -171,11 +171,11 @@ void TIFGroup::load_input_line(NeuronID i, const char * buf) sscanf (buf,"%f %f %f %u %f",&vmem,&vampa,&vgaba,&vref,&vbgcur); if ( localrank(i) ) { NeuronID trans = global2rank(i); - set_mem(trans,vmem); - set_ampa(trans,vampa); - set_gaba(trans,vgaba); - auryn_vector_ushort_set (ref, trans, vref); - auryn_vector_float_set (bg_current, trans, vbgcur); + mem->set(trans,vmem); + g_ampa->set(trans,vampa); + g_gaba->set(trans,vgaba); + ref->set(trans, vref); + bg_current->set(trans, vbgcur); } } diff --git a/src/VoltageMonitor.cpp b/src/VoltageMonitor.cpp index 80281cac..1d649db4 100644 --- a/src/VoltageMonitor.cpp +++ b/src/VoltageMonitor.cpp @@ -62,7 +62,7 @@ void VoltageMonitor::propagate() // we output spikes irrespectively of the sampling interval, because // the membrane potential isn't a smooth function for most IF models when // they spike, so it's easy to "miss" a spike otherwise - double voltage = src->get_mem(nid); + double voltage = src->mem->get(nid); if ( paste_spikes ) { SpikeContainer * spikes = src->get_spikes_immediate(); for ( int i = 0 ; i < spikes->size() ; ++i ) { diff --git a/src/VoltageMonitor.h b/src/VoltageMonitor.h index b7513448..4f587c3d 100644 --- a/src/VoltageMonitor.h +++ b/src/VoltageMonitor.h @@ -51,7 +51,6 @@ class VoltageMonitor : protected Monitor /*! Global neuron id to record from */ NeuronID gid; - protected: /*! The source neuron group to record from */ NeuronGroup * src; From 50cd98734a90b15b391a53678f7564cd9c4cae7b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 5 May 2016 21:09:34 +0200 Subject: [PATCH 151/460] Adds note in StateMonitor --- src/StateMonitor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index 2d9ac05c..3924b4ba 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -43,6 +43,7 @@ StateMonitor::StateMonitor(SpikingGroup * source, NeuronID id, std::string state throw AurynStateVectorException(); } + // TODO test if state exists -- use find_state_vector instead .. if ( source->evolve_locally() ) { target_variable = src->get_state_vector(statename)->data+nid; } else { From 83a1decdc2e4840f7188661d66b809e11157444b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 08:45:04 +0200 Subject: [PATCH 152/460] Bumps version number in Doxyfile --- src/Doxyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Doxyfile b/src/Doxyfile index 582fad0c..2cb4d532 100644 --- a/src/Doxyfile +++ b/src/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = Auryn # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.7-dev +PROJECT_NUMBER = 0.8-dev # Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that appears at the top of each page and should give viewer a quick idea about the purpose of the project. Keep the description short. From 7d4b4e4ce6ed5f68b7b93eddf4f08aac2b2ecb39 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 08:52:14 +0200 Subject: [PATCH 153/460] Updates doxystring in AurynVector.h --- src/AurynVector.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index c8d28b0e..99060bba 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -238,10 +238,11 @@ namespace auryn { } }; - /*! \brief Derived AurynVectorFloat class for performance computatoin + /*! \brief Derived AurynVectorFloat class for performance computation * - * This class overwrites some of the functions defined in the template - * with SIMD intrinsics for higher performance. + * This class inherits the template AurynVector and overwrites + * some of the functions defined in the template with SIMD intrinsics + * for higher performance. */ class AurynVectorFloat : public AurynVector { From 6687a7a11f1444f81db8d9952239a1a7022c5854 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 08:57:23 +0200 Subject: [PATCH 154/460] Updates doxystring in AurynVector --- src/AurynVector.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 99060bba..a35d3f3b 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -31,9 +31,16 @@ namespace auryn { - /*! \brief Auryn vector template + /*! \brief Default Auryn vector template * - * Copies the core of GSL vector functionality and makes it a class for easier handling. + * This essentially copies the core of GSL vector functionality and makes it a class for easier handling. + * For performance reasons, time critical functions of this template have to be reimplemented in derived + * classes with a specific template parameter T. For instance I will always provide a derived type AurynVectorFloat + * which will per default be synonymous to AurynStateVector which implements SSE instructions for labour + * intensive operations on the vectors. + * Note, that all Auryn vectors should initialized with multiple of 4 elements (later that number might change) when + * we add AVX support to the code. If you use get_vector_size functions from SpikingGroup this will automatically + * be taken care of... * */ template class AurynVector { From 5986ccb77f82f85da09b5992b0849a9f2338d65c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 10:06:03 +0200 Subject: [PATCH 155/460] Adds coba test for reproducibility comparison --- tests/coba_checksums.ref | 2 - tests/coba_test/coba_checksums.ref | 1 + tests/coba_test/pynn.ee.wmat | 204496 +++++++++++++++++++ tests/coba_test/pynn.ei.wmat | 51203 +++++ tests/coba_test/pynn.ie.wmat | 51126 +++++ tests/coba_test/pynn.ii.wmat | 12794 ++ tests/coba_test/run_coba_parallel_test.sh | 35 + tests/coba_test/run_coba_test.sh | 34 + tests/run_coba_test.sh | 30 - 9 files changed, 319689 insertions(+), 32 deletions(-) delete mode 100644 tests/coba_checksums.ref create mode 100644 tests/coba_test/coba_checksums.ref create mode 100644 tests/coba_test/pynn.ee.wmat create mode 100644 tests/coba_test/pynn.ei.wmat create mode 100644 tests/coba_test/pynn.ie.wmat create mode 100644 tests/coba_test/pynn.ii.wmat create mode 100755 tests/coba_test/run_coba_parallel_test.sh create mode 100755 tests/coba_test/run_coba_test.sh delete mode 100755 tests/run_coba_test.sh diff --git a/tests/coba_checksums.ref b/tests/coba_checksums.ref deleted file mode 100644 index 96bee963..00000000 --- a/tests/coba_checksums.ref +++ /dev/null @@ -1,2 +0,0 @@ -d5aa8376c0594f4fdd8e647b65f26aaa -83a929b0d93495615f429bd668110e80 diff --git a/tests/coba_test/coba_checksums.ref b/tests/coba_test/coba_checksums.ref new file mode 100644 index 00000000..751093ea --- /dev/null +++ b/tests/coba_test/coba_checksums.ref @@ -0,0 +1 @@ +ca36effd39c29ee2569667726fa6663d diff --git a/tests/coba_test/pynn.ee.wmat b/tests/coba_test/pynn.ee.wmat new file mode 100644 index 00000000..c2b99ef4 --- /dev/null +++ b/tests/coba_test/pynn.ee.wmat @@ -0,0 +1,204496 @@ +%%MatrixMarket matrix coordinate real general +% Auryn weight matrix. Has to be kept in row major order for load operation. +% Connection name: SparseConnection +% Locked range: 1 +% +3200 3200 204496 +1 84 0.400000 +1 125 0.400000 +1 173 0.400000 +1 175 0.400000 +1 240 0.400000 +1 429 0.400000 +1 439 0.400000 +1 463 0.400000 +1 480 0.400000 +1 481 0.400000 +1 484 0.400000 +1 539 0.400000 +1 546 0.400000 +1 548 0.400000 +1 621 0.400000 +1 654 0.400000 +1 669 0.400000 +1 752 0.400000 +1 799 0.400000 +1 805 0.400000 +1 1042 0.400000 +1 1065 0.400000 +1 1068 0.400000 +1 1098 0.400000 +1 1111 0.400000 +1 1123 0.400000 +1 1171 0.400000 +1 1213 0.400000 +1 1217 0.400000 +1 1310 0.400000 +1 1339 0.400000 +1 1348 0.400000 +1 1458 0.400000 +1 1526 0.400000 +1 1538 0.400000 +1 1542 0.400000 +1 1573 0.400000 +1 1588 0.400000 +1 1617 0.400000 +1 1644 0.400000 +1 1685 0.400000 +1 1797 0.400000 +1 1798 0.400000 +1 2017 0.400000 +1 2113 0.400000 +1 2121 0.400000 +1 2139 0.400000 +1 2169 0.400000 +1 2203 0.400000 +1 2341 0.400000 +1 2392 0.400000 +1 2473 0.400000 +1 2487 0.400000 +1 2572 0.400000 +1 2593 0.400000 +1 2635 0.400000 +1 2694 0.400000 +1 2720 0.400000 +1 2731 0.400000 +1 2767 0.400000 +1 2848 0.400000 +1 2899 0.400000 +1 3193 0.400000 +1 3197 0.400000 +2 167 0.400000 +2 192 0.400000 +2 207 0.400000 +2 292 0.400000 +2 444 0.400000 +2 465 0.400000 +2 468 0.400000 +2 503 0.400000 +2 515 0.400000 +2 533 0.400000 +2 538 0.400000 +2 579 0.400000 +2 580 0.400000 +2 604 0.400000 +2 654 0.400000 +2 722 0.400000 +2 723 0.400000 +2 763 0.400000 +2 764 0.400000 +2 888 0.400000 +2 921 0.400000 +2 923 0.400000 +2 931 0.400000 +2 982 0.400000 +2 999 0.400000 +2 1016 0.400000 +2 1200 0.400000 +2 1251 0.400000 +2 1256 0.400000 +2 1266 0.400000 +2 1286 0.400000 +2 1295 0.400000 +2 1347 0.400000 +2 1366 0.400000 +2 1460 0.400000 +2 1539 0.400000 +2 1588 0.400000 +2 1630 0.400000 +2 1633 0.400000 +2 1671 0.400000 +2 1706 0.400000 +2 1728 0.400000 +2 1889 0.400000 +2 1933 0.400000 +2 1944 0.400000 +2 1964 0.400000 +2 2037 0.400000 +2 2085 0.400000 +2 2109 0.400000 +2 2133 0.400000 +2 2323 0.400000 +2 2335 0.400000 +2 2414 0.400000 +2 2449 0.400000 +2 2458 0.400000 +2 2633 0.400000 +2 2670 0.400000 +2 2686 0.400000 +2 2711 0.400000 +2 2751 0.400000 +2 2787 0.400000 +2 2791 0.400000 +2 2872 0.400000 +2 2918 0.400000 +2 3002 0.400000 +2 3033 0.400000 +2 3048 0.400000 +2 3129 0.400000 +2 3155 0.400000 +2 3163 0.400000 +3 36 0.400000 +3 149 0.400000 +3 204 0.400000 +3 238 0.400000 +3 306 0.400000 +3 326 0.400000 +3 344 0.400000 +3 378 0.400000 +3 407 0.400000 +3 462 0.400000 +3 505 0.400000 +3 545 0.400000 +3 566 0.400000 +3 592 0.400000 +3 673 0.400000 +3 674 0.400000 +3 681 0.400000 +3 687 0.400000 +3 709 0.400000 +3 718 0.400000 +3 778 0.400000 +3 835 0.400000 +3 906 0.400000 +3 923 0.400000 +3 941 0.400000 +3 1030 0.400000 +3 1035 0.400000 +3 1049 0.400000 +3 1080 0.400000 +3 1084 0.400000 +3 1279 0.400000 +3 1328 0.400000 +3 1349 0.400000 +3 1385 0.400000 +3 1494 0.400000 +3 1641 0.400000 +3 1681 0.400000 +3 1767 0.400000 +3 1815 0.400000 +3 1863 0.400000 +3 1884 0.400000 +3 1894 0.400000 +3 1901 0.400000 +3 1939 0.400000 +3 1966 0.400000 +3 1992 0.400000 +3 2076 0.400000 +3 2092 0.400000 +3 2098 0.400000 +3 2222 0.400000 +3 2280 0.400000 +3 2287 0.400000 +3 2370 0.400000 +3 2428 0.400000 +3 2462 0.400000 +3 2493 0.400000 +3 2559 0.400000 +3 2586 0.400000 +3 2653 0.400000 +3 2685 0.400000 +3 2724 0.400000 +3 2769 0.400000 +3 2774 0.400000 +3 2801 0.400000 +3 2818 0.400000 +3 2843 0.400000 +3 2897 0.400000 +3 2944 0.400000 +3 2950 0.400000 +3 2970 0.400000 +3 2978 0.400000 +3 3097 0.400000 +3 3127 0.400000 +3 3181 0.400000 +4 18 0.400000 +4 31 0.400000 +4 60 0.400000 +4 79 0.400000 +4 116 0.400000 +4 160 0.400000 +4 192 0.400000 +4 209 0.400000 +4 230 0.400000 +4 239 0.400000 +4 246 0.400000 +4 251 0.400000 +4 283 0.400000 +4 319 0.400000 +4 445 0.400000 +4 495 0.400000 +4 520 0.400000 +4 596 0.400000 +4 617 0.400000 +4 626 0.400000 +4 700 0.400000 +4 807 0.400000 +4 813 0.400000 +4 828 0.400000 +4 843 0.400000 +4 996 0.400000 +4 1049 0.400000 +4 1074 0.400000 +4 1104 0.400000 +4 1137 0.400000 +4 1203 0.400000 +4 1262 0.400000 +4 1287 0.400000 +4 1363 0.400000 +4 1448 0.400000 +4 1452 0.400000 +4 1539 0.400000 +4 1567 0.400000 +4 1647 0.400000 +4 1691 0.400000 +4 1696 0.400000 +4 1789 0.400000 +4 1801 0.400000 +4 1897 0.400000 +4 1898 0.400000 +4 1908 0.400000 +4 1972 0.400000 +4 1977 0.400000 +4 2140 0.400000 +4 2252 0.400000 +4 2280 0.400000 +4 2291 0.400000 +4 2293 0.400000 +4 2297 0.400000 +4 2335 0.400000 +4 2616 0.400000 +4 2650 0.400000 +4 2709 0.400000 +4 2730 0.400000 +4 2833 0.400000 +4 2835 0.400000 +4 2899 0.400000 +4 2956 0.400000 +4 3003 0.400000 +4 3015 0.400000 +4 3164 0.400000 +5 123 0.400000 +5 213 0.400000 +5 292 0.400000 +5 297 0.400000 +5 299 0.400000 +5 321 0.400000 +5 354 0.400000 +5 356 0.400000 +5 412 0.400000 +5 426 0.400000 +5 479 0.400000 +5 517 0.400000 +5 520 0.400000 +5 620 0.400000 +5 679 0.400000 +5 712 0.400000 +5 755 0.400000 +5 761 0.400000 +5 795 0.400000 +5 816 0.400000 +5 826 0.400000 +5 971 0.400000 +5 993 0.400000 +5 1004 0.400000 +5 1070 0.400000 +5 1077 0.400000 +5 1094 0.400000 +5 1098 0.400000 +5 1110 0.400000 +5 1152 0.400000 +5 1260 0.400000 +5 1336 0.400000 +5 1341 0.400000 +5 1406 0.400000 +5 1433 0.400000 +5 1504 0.400000 +5 1655 0.400000 +5 1662 0.400000 +5 1668 0.400000 +5 1705 0.400000 +5 1756 0.400000 +5 1769 0.400000 +5 1791 0.400000 +5 1826 0.400000 +5 1840 0.400000 +5 1857 0.400000 +5 1880 0.400000 +5 1917 0.400000 +5 1922 0.400000 +5 1928 0.400000 +5 1985 0.400000 +5 2005 0.400000 +5 2023 0.400000 +5 2025 0.400000 +5 2044 0.400000 +5 2180 0.400000 +5 2184 0.400000 +5 2324 0.400000 +5 2477 0.400000 +5 2491 0.400000 +5 2578 0.400000 +5 2625 0.400000 +5 2635 0.400000 +5 2649 0.400000 +5 2687 0.400000 +5 2709 0.400000 +5 2710 0.400000 +5 2758 0.400000 +5 2878 0.400000 +5 2908 0.400000 +5 2910 0.400000 +5 2956 0.400000 +5 2976 0.400000 +5 3040 0.400000 +5 3093 0.400000 +5 3169 0.400000 +6 14 0.400000 +6 169 0.400000 +6 171 0.400000 +6 179 0.400000 +6 192 0.400000 +6 193 0.400000 +6 199 0.400000 +6 213 0.400000 +6 312 0.400000 +6 315 0.400000 +6 363 0.400000 +6 411 0.400000 +6 434 0.400000 +6 527 0.400000 +6 562 0.400000 +6 707 0.400000 +6 768 0.400000 +6 791 0.400000 +6 848 0.400000 +6 923 0.400000 +6 946 0.400000 +6 1010 0.400000 +6 1045 0.400000 +6 1071 0.400000 +6 1094 0.400000 +6 1319 0.400000 +6 1374 0.400000 +6 1443 0.400000 +6 1468 0.400000 +6 1511 0.400000 +6 1568 0.400000 +6 1577 0.400000 +6 1582 0.400000 +6 1587 0.400000 +6 1598 0.400000 +6 1659 0.400000 +6 1677 0.400000 +6 1714 0.400000 +6 1733 0.400000 +6 1738 0.400000 +6 1758 0.400000 +6 1806 0.400000 +6 1915 0.400000 +6 2034 0.400000 +6 2097 0.400000 +6 2216 0.400000 +6 2244 0.400000 +6 2375 0.400000 +6 2481 0.400000 +6 2500 0.400000 +6 2508 0.400000 +6 2527 0.400000 +6 2608 0.400000 +6 2613 0.400000 +6 2823 0.400000 +6 2881 0.400000 +6 2910 0.400000 +6 2964 0.400000 +6 3065 0.400000 +6 3080 0.400000 +6 3097 0.400000 +6 3099 0.400000 +7 3 0.400000 +7 35 0.400000 +7 82 0.400000 +7 101 0.400000 +7 121 0.400000 +7 135 0.400000 +7 235 0.400000 +7 314 0.400000 +7 385 0.400000 +7 466 0.400000 +7 477 0.400000 +7 512 0.400000 +7 535 0.400000 +7 613 0.400000 +7 738 0.400000 +7 759 0.400000 +7 815 0.400000 +7 835 0.400000 +7 916 0.400000 +7 962 0.400000 +7 1028 0.400000 +7 1070 0.400000 +7 1084 0.400000 +7 1089 0.400000 +7 1109 0.400000 +7 1110 0.400000 +7 1270 0.400000 +7 1271 0.400000 +7 1359 0.400000 +7 1410 0.400000 +7 1549 0.400000 +7 1617 0.400000 +7 1654 0.400000 +7 1695 0.400000 +7 1732 0.400000 +7 1738 0.400000 +7 1804 0.400000 +7 1910 0.400000 +7 1994 0.400000 +7 2038 0.400000 +7 2056 0.400000 +7 2064 0.400000 +7 2070 0.400000 +7 2200 0.400000 +7 2231 0.400000 +7 2239 0.400000 +7 2257 0.400000 +7 2288 0.400000 +7 2332 0.400000 +7 2338 0.400000 +7 2356 0.400000 +7 2443 0.400000 +7 2497 0.400000 +7 2498 0.400000 +7 2536 0.400000 +7 2551 0.400000 +7 2691 0.400000 +7 2718 0.400000 +7 2777 0.400000 +7 2785 0.400000 +7 2908 0.400000 +7 2929 0.400000 +7 2941 0.400000 +7 2953 0.400000 +7 2990 0.400000 +7 3040 0.400000 +7 3068 0.400000 +7 3146 0.400000 +8 59 0.400000 +8 97 0.400000 +8 111 0.400000 +8 115 0.400000 +8 166 0.400000 +8 176 0.400000 +8 304 0.400000 +8 315 0.400000 +8 391 0.400000 +8 400 0.400000 +8 514 0.400000 +8 747 0.400000 +8 819 0.400000 +8 856 0.400000 +8 925 0.400000 +8 979 0.400000 +8 988 0.400000 +8 1145 0.400000 +8 1160 0.400000 +8 1170 0.400000 +8 1234 0.400000 +8 1286 0.400000 +8 1368 0.400000 +8 1540 0.400000 +8 1622 0.400000 +8 1675 0.400000 +8 1680 0.400000 +8 1694 0.400000 +8 1697 0.400000 +8 1787 0.400000 +8 1810 0.400000 +8 1813 0.400000 +8 1837 0.400000 +8 1920 0.400000 +8 1929 0.400000 +8 1954 0.400000 +8 2001 0.400000 +8 2025 0.400000 +8 2134 0.400000 +8 2175 0.400000 +8 2271 0.400000 +8 2280 0.400000 +8 2356 0.400000 +8 2575 0.400000 +8 2598 0.400000 +8 2640 0.400000 +8 2704 0.400000 +8 2864 0.400000 +8 2867 0.400000 +8 2898 0.400000 +8 3138 0.400000 +8 3160 0.400000 +9 295 0.400000 +9 346 0.400000 +9 485 0.400000 +9 495 0.400000 +9 590 0.400000 +9 626 0.400000 +9 808 0.400000 +9 818 0.400000 +9 885 0.400000 +9 890 0.400000 +9 899 0.400000 +9 1005 0.400000 +9 1146 0.400000 +9 1255 0.400000 +9 1308 0.400000 +9 1312 0.400000 +9 1423 0.400000 +9 1463 0.400000 +9 1520 0.400000 +9 1544 0.400000 +9 1598 0.400000 +9 1630 0.400000 +9 1634 0.400000 +9 1664 0.400000 +9 1703 0.400000 +9 1706 0.400000 +9 1727 0.400000 +9 1782 0.400000 +9 1892 0.400000 +9 1921 0.400000 +9 1954 0.400000 +9 1955 0.400000 +9 2079 0.400000 +9 2081 0.400000 +9 2085 0.400000 +9 2109 0.400000 +9 2124 0.400000 +9 2155 0.400000 +9 2175 0.400000 +9 2179 0.400000 +9 2223 0.400000 +9 2241 0.400000 +9 2293 0.400000 +9 2335 0.400000 +9 2475 0.400000 +9 2479 0.400000 +9 2497 0.400000 +9 2512 0.400000 +9 2589 0.400000 +9 2612 0.400000 +9 2616 0.400000 +9 2733 0.400000 +9 2741 0.400000 +9 2780 0.400000 +9 2799 0.400000 +9 2807 0.400000 +9 2860 0.400000 +9 2965 0.400000 +9 2972 0.400000 +9 2979 0.400000 +9 3085 0.400000 +9 3089 0.400000 +9 3091 0.400000 +9 3108 0.400000 +9 3111 0.400000 +9 3143 0.400000 +9 3180 0.400000 +10 52 0.400000 +10 114 0.400000 +10 119 0.400000 +10 136 0.400000 +10 215 0.400000 +10 275 0.400000 +10 286 0.400000 +10 315 0.400000 +10 350 0.400000 +10 362 0.400000 +10 373 0.400000 +10 496 0.400000 +10 680 0.400000 +10 682 0.400000 +10 759 0.400000 +10 856 0.400000 +10 960 0.400000 +10 993 0.400000 +10 1005 0.400000 +10 1101 0.400000 +10 1162 0.400000 +10 1183 0.400000 +10 1189 0.400000 +10 1209 0.400000 +10 1221 0.400000 +10 1224 0.400000 +10 1245 0.400000 +10 1252 0.400000 +10 1257 0.400000 +10 1321 0.400000 +10 1450 0.400000 +10 1531 0.400000 +10 1591 0.400000 +10 1714 0.400000 +10 1726 0.400000 +10 1790 0.400000 +10 1886 0.400000 +10 1897 0.400000 +10 1992 0.400000 +10 2045 0.400000 +10 2058 0.400000 +10 2111 0.400000 +10 2192 0.400000 +10 2269 0.400000 +10 2305 0.400000 +10 2392 0.400000 +10 2720 0.400000 +10 2765 0.400000 +10 2811 0.400000 +10 2852 0.400000 +10 2928 0.400000 +10 2971 0.400000 +10 3040 0.400000 +10 3092 0.400000 +10 3105 0.400000 +11 3 0.400000 +11 26 0.400000 +11 65 0.400000 +11 197 0.400000 +11 223 0.400000 +11 247 0.400000 +11 337 0.400000 +11 345 0.400000 +11 365 0.400000 +11 413 0.400000 +11 432 0.400000 +11 465 0.400000 +11 519 0.400000 +11 552 0.400000 +11 568 0.400000 +11 571 0.400000 +11 572 0.400000 +11 607 0.400000 +11 647 0.400000 +11 713 0.400000 +11 719 0.400000 +11 766 0.400000 +11 784 0.400000 +11 797 0.400000 +11 835 0.400000 +11 881 0.400000 +11 950 0.400000 +11 1490 0.400000 +11 1491 0.400000 +11 1525 0.400000 +11 1560 0.400000 +11 1608 0.400000 +11 1614 0.400000 +11 1692 0.400000 +11 1709 0.400000 +11 1728 0.400000 +11 1750 0.400000 +11 1825 0.400000 +11 1910 0.400000 +11 1917 0.400000 +11 2086 0.400000 +11 2116 0.400000 +11 2181 0.400000 +11 2202 0.400000 +11 2230 0.400000 +11 2268 0.400000 +11 2342 0.400000 +11 2628 0.400000 +11 2639 0.400000 +11 2648 0.400000 +11 2651 0.400000 +11 2664 0.400000 +11 2678 0.400000 +11 2682 0.400000 +11 2711 0.400000 +11 2748 0.400000 +11 2790 0.400000 +11 2865 0.400000 +11 2867 0.400000 +11 2910 0.400000 +11 2971 0.400000 +11 3009 0.400000 +11 3083 0.400000 +12 104 0.400000 +12 157 0.400000 +12 178 0.400000 +12 364 0.400000 +12 386 0.400000 +12 402 0.400000 +12 428 0.400000 +12 446 0.400000 +12 557 0.400000 +12 558 0.400000 +12 678 0.400000 +12 775 0.400000 +12 879 0.400000 +12 906 0.400000 +12 939 0.400000 +12 980 0.400000 +12 981 0.400000 +12 1091 0.400000 +12 1283 0.400000 +12 1446 0.400000 +12 1464 0.400000 +12 1474 0.400000 +12 1485 0.400000 +12 1533 0.400000 +12 1573 0.400000 +12 1727 0.400000 +12 1749 0.400000 +12 1769 0.400000 +12 1940 0.400000 +12 1979 0.400000 +12 1989 0.400000 +12 1993 0.400000 +12 2078 0.400000 +12 2178 0.400000 +12 2183 0.400000 +12 2196 0.400000 +12 2197 0.400000 +12 2205 0.400000 +12 2246 0.400000 +12 2292 0.400000 +12 2352 0.400000 +12 2399 0.400000 +12 2461 0.400000 +12 2580 0.400000 +12 2583 0.400000 +12 2589 0.400000 +12 2652 0.400000 +12 2719 0.400000 +12 2720 0.400000 +12 2738 0.400000 +12 2796 0.400000 +12 2842 0.400000 +12 2861 0.400000 +12 2911 0.400000 +12 2912 0.400000 +12 2916 0.400000 +12 2924 0.400000 +12 2953 0.400000 +12 3023 0.400000 +12 3024 0.400000 +12 3114 0.400000 +13 15 0.400000 +13 100 0.400000 +13 103 0.400000 +13 189 0.400000 +13 225 0.400000 +13 292 0.400000 +13 319 0.400000 +13 448 0.400000 +13 464 0.400000 +13 641 0.400000 +13 683 0.400000 +13 766 0.400000 +13 920 0.400000 +13 1050 0.400000 +13 1087 0.400000 +13 1098 0.400000 +13 1101 0.400000 +13 1124 0.400000 +13 1125 0.400000 +13 1126 0.400000 +13 1269 0.400000 +13 1356 0.400000 +13 1363 0.400000 +13 1375 0.400000 +13 1382 0.400000 +13 1387 0.400000 +13 1413 0.400000 +13 1539 0.400000 +13 1666 0.400000 +13 1722 0.400000 +13 1850 0.400000 +13 1936 0.400000 +13 1958 0.400000 +13 2012 0.400000 +13 2016 0.400000 +13 2066 0.400000 +13 2088 0.400000 +13 2190 0.400000 +13 2231 0.400000 +13 2289 0.400000 +13 2302 0.400000 +13 2316 0.400000 +13 2413 0.400000 +13 2461 0.400000 +13 2464 0.400000 +13 2533 0.400000 +13 2559 0.400000 +13 2860 0.400000 +13 2996 0.400000 +13 3006 0.400000 +13 3151 0.400000 +13 3166 0.400000 +13 3178 0.400000 +14 10 0.400000 +14 63 0.400000 +14 122 0.400000 +14 135 0.400000 +14 150 0.400000 +14 194 0.400000 +14 278 0.400000 +14 290 0.400000 +14 338 0.400000 +14 343 0.400000 +14 346 0.400000 +14 510 0.400000 +14 536 0.400000 +14 590 0.400000 +14 613 0.400000 +14 657 0.400000 +14 679 0.400000 +14 746 0.400000 +14 829 0.400000 +14 856 0.400000 +14 926 0.400000 +14 943 0.400000 +14 984 0.400000 +14 1002 0.400000 +14 1030 0.400000 +14 1097 0.400000 +14 1122 0.400000 +14 1154 0.400000 +14 1164 0.400000 +14 1281 0.400000 +14 1292 0.400000 +14 1355 0.400000 +14 1439 0.400000 +14 1605 0.400000 +14 1608 0.400000 +14 1632 0.400000 +14 1782 0.400000 +14 1822 0.400000 +14 1845 0.400000 +14 1854 0.400000 +14 1864 0.400000 +14 1975 0.400000 +14 1993 0.400000 +14 2013 0.400000 +14 2043 0.400000 +14 2079 0.400000 +14 2090 0.400000 +14 2169 0.400000 +14 2192 0.400000 +14 2232 0.400000 +14 2312 0.400000 +14 2434 0.400000 +14 2472 0.400000 +14 2476 0.400000 +14 2584 0.400000 +14 2590 0.400000 +14 2628 0.400000 +14 2643 0.400000 +14 2806 0.400000 +14 2892 0.400000 +14 3007 0.400000 +14 3016 0.400000 +14 3021 0.400000 +14 3118 0.400000 +14 3141 0.400000 +14 3162 0.400000 +14 3173 0.400000 +15 5 0.400000 +15 98 0.400000 +15 162 0.400000 +15 183 0.400000 +15 316 0.400000 +15 317 0.400000 +15 372 0.400000 +15 505 0.400000 +15 579 0.400000 +15 700 0.400000 +15 706 0.400000 +15 737 0.400000 +15 790 0.400000 +15 794 0.400000 +15 850 0.400000 +15 856 0.400000 +15 883 0.400000 +15 968 0.400000 +15 980 0.400000 +15 1007 0.400000 +15 1186 0.400000 +15 1309 0.400000 +15 1398 0.400000 +15 1530 0.400000 +15 1538 0.400000 +15 1607 0.400000 +15 1619 0.400000 +15 1721 0.400000 +15 1955 0.400000 +15 1995 0.400000 +15 2109 0.400000 +15 2116 0.400000 +15 2146 0.400000 +15 2168 0.400000 +15 2236 0.400000 +15 2250 0.400000 +15 2270 0.400000 +15 2415 0.400000 +15 2421 0.400000 +15 2442 0.400000 +15 2467 0.400000 +15 2469 0.400000 +15 2487 0.400000 +15 2534 0.400000 +15 2569 0.400000 +15 2580 0.400000 +15 2601 0.400000 +15 2606 0.400000 +15 2691 0.400000 +15 2718 0.400000 +15 2867 0.400000 +15 2889 0.400000 +15 2991 0.400000 +15 3065 0.400000 +15 3091 0.400000 +15 3103 0.400000 +15 3125 0.400000 +16 31 0.400000 +16 232 0.400000 +16 239 0.400000 +16 267 0.400000 +16 270 0.400000 +16 298 0.400000 +16 400 0.400000 +16 587 0.400000 +16 656 0.400000 +16 767 0.400000 +16 814 0.400000 +16 841 0.400000 +16 898 0.400000 +16 913 0.400000 +16 922 0.400000 +16 964 0.400000 +16 990 0.400000 +16 1005 0.400000 +16 1062 0.400000 +16 1096 0.400000 +16 1275 0.400000 +16 1429 0.400000 +16 1508 0.400000 +16 1526 0.400000 +16 1549 0.400000 +16 1561 0.400000 +16 1607 0.400000 +16 1623 0.400000 +16 1638 0.400000 +16 1648 0.400000 +16 1656 0.400000 +16 1900 0.400000 +16 1908 0.400000 +16 1943 0.400000 +16 1953 0.400000 +16 1955 0.400000 +16 1968 0.400000 +16 2063 0.400000 +16 2181 0.400000 +16 2195 0.400000 +16 2327 0.400000 +16 2345 0.400000 +16 2361 0.400000 +16 2396 0.400000 +16 2447 0.400000 +16 2462 0.400000 +16 2497 0.400000 +16 2515 0.400000 +16 2569 0.400000 +16 2593 0.400000 +16 2640 0.400000 +16 2662 0.400000 +16 2726 0.400000 +16 2764 0.400000 +16 2775 0.400000 +16 2828 0.400000 +16 2832 0.400000 +16 2862 0.400000 +16 2916 0.400000 +16 3174 0.400000 +17 79 0.400000 +17 83 0.400000 +17 89 0.400000 +17 106 0.400000 +17 130 0.400000 +17 138 0.400000 +17 142 0.400000 +17 174 0.400000 +17 368 0.400000 +17 384 0.400000 +17 437 0.400000 +17 490 0.400000 +17 498 0.400000 +17 510 0.400000 +17 591 0.400000 +17 592 0.400000 +17 662 0.400000 +17 671 0.400000 +17 695 0.400000 +17 779 0.400000 +17 782 0.400000 +17 808 0.400000 +17 889 0.400000 +17 891 0.400000 +17 906 0.400000 +17 918 0.400000 +17 996 0.400000 +17 1062 0.400000 +17 1080 0.400000 +17 1115 0.400000 +17 1149 0.400000 +17 1260 0.400000 +17 1315 0.400000 +17 1333 0.400000 +17 1357 0.400000 +17 1383 0.400000 +17 1456 0.400000 +17 1491 0.400000 +17 1506 0.400000 +17 1550 0.400000 +17 1764 0.400000 +17 1940 0.400000 +17 2122 0.400000 +17 2249 0.400000 +17 2326 0.400000 +17 2355 0.400000 +17 2361 0.400000 +17 2399 0.400000 +17 2442 0.400000 +17 2569 0.400000 +17 2574 0.400000 +17 2590 0.400000 +17 2601 0.400000 +17 2617 0.400000 +17 2688 0.400000 +17 2691 0.400000 +17 2716 0.400000 +17 2800 0.400000 +17 2831 0.400000 +17 2897 0.400000 +17 2909 0.400000 +17 2936 0.400000 +17 2981 0.400000 +17 3034 0.400000 +17 3104 0.400000 +17 3133 0.400000 +17 3146 0.400000 +18 2 0.400000 +18 56 0.400000 +18 72 0.400000 +18 223 0.400000 +18 234 0.400000 +18 243 0.400000 +18 312 0.400000 +18 420 0.400000 +18 437 0.400000 +18 618 0.400000 +18 652 0.400000 +18 660 0.400000 +18 697 0.400000 +18 720 0.400000 +18 752 0.400000 +18 971 0.400000 +18 1012 0.400000 +18 1043 0.400000 +18 1075 0.400000 +18 1091 0.400000 +18 1247 0.400000 +18 1270 0.400000 +18 1336 0.400000 +18 1383 0.400000 +18 1389 0.400000 +18 1407 0.400000 +18 1503 0.400000 +18 1622 0.400000 +18 1646 0.400000 +18 1692 0.400000 +18 1699 0.400000 +18 1714 0.400000 +18 1746 0.400000 +18 1769 0.400000 +18 1794 0.400000 +18 1816 0.400000 +18 1905 0.400000 +18 1911 0.400000 +18 1927 0.400000 +18 2081 0.400000 +18 2108 0.400000 +18 2119 0.400000 +18 2135 0.400000 +18 2176 0.400000 +18 2184 0.400000 +18 2306 0.400000 +18 2459 0.400000 +18 2496 0.400000 +18 2515 0.400000 +18 2518 0.400000 +18 2576 0.400000 +18 2626 0.400000 +18 2774 0.400000 +18 2879 0.400000 +18 2886 0.400000 +18 2908 0.400000 +18 2965 0.400000 +18 3083 0.400000 +18 3097 0.400000 +18 3103 0.400000 +18 3120 0.400000 +18 3160 0.400000 +19 53 0.400000 +19 54 0.400000 +19 72 0.400000 +19 106 0.400000 +19 113 0.400000 +19 222 0.400000 +19 309 0.400000 +19 332 0.400000 +19 371 0.400000 +19 405 0.400000 +19 418 0.400000 +19 468 0.400000 +19 494 0.400000 +19 537 0.400000 +19 547 0.400000 +19 573 0.400000 +19 651 0.400000 +19 653 0.400000 +19 758 0.400000 +19 824 0.400000 +19 845 0.400000 +19 848 0.400000 +19 916 0.400000 +19 949 0.400000 +19 1029 0.400000 +19 1070 0.400000 +19 1115 0.400000 +19 1120 0.400000 +19 1166 0.400000 +19 1194 0.400000 +19 1213 0.400000 +19 1265 0.400000 +19 1276 0.400000 +19 1295 0.400000 +19 1335 0.400000 +19 1359 0.400000 +19 1403 0.400000 +19 1537 0.400000 +19 1541 0.400000 +19 1646 0.400000 +19 1656 0.400000 +19 1704 0.400000 +19 1794 0.400000 +19 1916 0.400000 +19 1917 0.400000 +19 1922 0.400000 +19 1946 0.400000 +19 2067 0.400000 +19 2096 0.400000 +19 2127 0.400000 +19 2136 0.400000 +19 2137 0.400000 +19 2166 0.400000 +19 2254 0.400000 +19 2304 0.400000 +19 2405 0.400000 +19 2439 0.400000 +19 2460 0.400000 +19 2646 0.400000 +19 2668 0.400000 +19 2692 0.400000 +19 2739 0.400000 +19 2741 0.400000 +19 2767 0.400000 +19 2807 0.400000 +19 2868 0.400000 +19 2961 0.400000 +19 2967 0.400000 +19 3087 0.400000 +19 3111 0.400000 +19 3113 0.400000 +19 3178 0.400000 +20 114 0.400000 +20 302 0.400000 +20 345 0.400000 +20 420 0.400000 +20 453 0.400000 +20 519 0.400000 +20 629 0.400000 +20 687 0.400000 +20 731 0.400000 +20 858 0.400000 +20 965 0.400000 +20 981 0.400000 +20 1010 0.400000 +20 1019 0.400000 +20 1218 0.400000 +20 1392 0.400000 +20 1397 0.400000 +20 1435 0.400000 +20 1439 0.400000 +20 1498 0.400000 +20 1508 0.400000 +20 1542 0.400000 +20 1557 0.400000 +20 1588 0.400000 +20 1623 0.400000 +20 1636 0.400000 +20 1656 0.400000 +20 1766 0.400000 +20 1788 0.400000 +20 1791 0.400000 +20 1886 0.400000 +20 1919 0.400000 +20 1923 0.400000 +20 1950 0.400000 +20 1984 0.400000 +20 1986 0.400000 +20 2001 0.400000 +20 2022 0.400000 +20 2085 0.400000 +20 2103 0.400000 +20 2214 0.400000 +20 2215 0.400000 +20 2255 0.400000 +20 2337 0.400000 +20 2574 0.400000 +20 2647 0.400000 +20 2653 0.400000 +20 2685 0.400000 +20 2708 0.400000 +20 2783 0.400000 +20 3021 0.400000 +20 3026 0.400000 +20 3165 0.400000 +21 25 0.400000 +21 232 0.400000 +21 272 0.400000 +21 275 0.400000 +21 321 0.400000 +21 379 0.400000 +21 409 0.400000 +21 534 0.400000 +21 646 0.400000 +21 655 0.400000 +21 709 0.400000 +21 805 0.400000 +21 849 0.400000 +21 858 0.400000 +21 866 0.400000 +21 874 0.400000 +21 963 0.400000 +21 968 0.400000 +21 982 0.400000 +21 1020 0.400000 +21 1052 0.400000 +21 1072 0.400000 +21 1073 0.400000 +21 1085 0.400000 +21 1097 0.400000 +21 1107 0.400000 +21 1118 0.400000 +21 1178 0.400000 +21 1197 0.400000 +21 1234 0.400000 +21 1247 0.400000 +21 1309 0.400000 +21 1350 0.400000 +21 1352 0.400000 +21 1498 0.400000 +21 1517 0.400000 +21 1519 0.400000 +21 1551 0.400000 +21 1691 0.400000 +21 1838 0.400000 +21 1953 0.400000 +21 1972 0.400000 +21 2087 0.400000 +21 2126 0.400000 +21 2131 0.400000 +21 2234 0.400000 +21 2250 0.400000 +21 2251 0.400000 +21 2274 0.400000 +21 2299 0.400000 +21 2441 0.400000 +21 2521 0.400000 +21 2541 0.400000 +21 2606 0.400000 +21 2657 0.400000 +21 2694 0.400000 +21 2716 0.400000 +21 2727 0.400000 +21 2731 0.400000 +21 2762 0.400000 +21 2766 0.400000 +21 2827 0.400000 +21 2841 0.400000 +21 2844 0.400000 +21 2990 0.400000 +21 3061 0.400000 +21 3069 0.400000 +21 3078 0.400000 +21 3083 0.400000 +21 3161 0.400000 +21 3194 0.400000 +22 45 0.400000 +22 57 0.400000 +22 76 0.400000 +22 163 0.400000 +22 266 0.400000 +22 269 0.400000 +22 273 0.400000 +22 290 0.400000 +22 430 0.400000 +22 491 0.400000 +22 578 0.400000 +22 598 0.400000 +22 646 0.400000 +22 693 0.400000 +22 729 0.400000 +22 744 0.400000 +22 868 0.400000 +22 898 0.400000 +22 927 0.400000 +22 995 0.400000 +22 1003 0.400000 +22 1146 0.400000 +22 1151 0.400000 +22 1201 0.400000 +22 1250 0.400000 +22 1291 0.400000 +22 1305 0.400000 +22 1312 0.400000 +22 1339 0.400000 +22 1414 0.400000 +22 1532 0.400000 +22 1604 0.400000 +22 1630 0.400000 +22 1636 0.400000 +22 1662 0.400000 +22 1669 0.400000 +22 1731 0.400000 +22 1767 0.400000 +22 1812 0.400000 +22 1888 0.400000 +22 1902 0.400000 +22 1916 0.400000 +22 1925 0.400000 +22 1929 0.400000 +22 1961 0.400000 +22 1968 0.400000 +22 1999 0.400000 +22 2019 0.400000 +22 2105 0.400000 +22 2108 0.400000 +22 2154 0.400000 +22 2220 0.400000 +22 2415 0.400000 +22 2422 0.400000 +22 2442 0.400000 +22 2510 0.400000 +22 2616 0.400000 +22 2618 0.400000 +22 2623 0.400000 +22 2749 0.400000 +22 2798 0.400000 +22 2843 0.400000 +22 2868 0.400000 +22 2908 0.400000 +22 2930 0.400000 +22 3011 0.400000 +22 3033 0.400000 +22 3035 0.400000 +22 3036 0.400000 +23 33 0.400000 +23 116 0.400000 +23 147 0.400000 +23 274 0.400000 +23 313 0.400000 +23 325 0.400000 +23 373 0.400000 +23 383 0.400000 +23 523 0.400000 +23 580 0.400000 +23 596 0.400000 +23 611 0.400000 +23 627 0.400000 +23 628 0.400000 +23 713 0.400000 +23 778 0.400000 +23 810 0.400000 +23 888 0.400000 +23 946 0.400000 +23 959 0.400000 +23 992 0.400000 +23 1004 0.400000 +23 1027 0.400000 +23 1127 0.400000 +23 1132 0.400000 +23 1228 0.400000 +23 1243 0.400000 +23 1256 0.400000 +23 1276 0.400000 +23 1301 0.400000 +23 1326 0.400000 +23 1333 0.400000 +23 1348 0.400000 +23 1435 0.400000 +23 1517 0.400000 +23 1529 0.400000 +23 1753 0.400000 +23 1784 0.400000 +23 1822 0.400000 +23 1987 0.400000 +23 2019 0.400000 +23 2024 0.400000 +23 2084 0.400000 +23 2119 0.400000 +23 2141 0.400000 +23 2166 0.400000 +23 2196 0.400000 +23 2229 0.400000 +23 2260 0.400000 +23 2364 0.400000 +23 2580 0.400000 +23 2601 0.400000 +23 2607 0.400000 +23 2609 0.400000 +23 2713 0.400000 +23 2873 0.400000 +23 2879 0.400000 +23 2896 0.400000 +23 2936 0.400000 +23 2997 0.400000 +23 3071 0.400000 +23 3098 0.400000 +24 283 0.400000 +24 303 0.400000 +24 309 0.400000 +24 325 0.400000 +24 384 0.400000 +24 398 0.400000 +24 416 0.400000 +24 463 0.400000 +24 483 0.400000 +24 500 0.400000 +24 606 0.400000 +24 629 0.400000 +24 657 0.400000 +24 663 0.400000 +24 684 0.400000 +24 733 0.400000 +24 775 0.400000 +24 789 0.400000 +24 797 0.400000 +24 837 0.400000 +24 846 0.400000 +24 856 0.400000 +24 917 0.400000 +24 918 0.400000 +24 945 0.400000 +24 953 0.400000 +24 972 0.400000 +24 1048 0.400000 +24 1084 0.400000 +24 1085 0.400000 +24 1111 0.400000 +24 1117 0.400000 +24 1196 0.400000 +24 1211 0.400000 +24 1299 0.400000 +24 1302 0.400000 +24 1373 0.400000 +24 1378 0.400000 +24 1577 0.400000 +24 1595 0.400000 +24 1610 0.400000 +24 1658 0.400000 +24 1662 0.400000 +24 1690 0.400000 +24 1775 0.400000 +24 1777 0.400000 +24 1797 0.400000 +24 1812 0.400000 +24 1818 0.400000 +24 1834 0.400000 +24 1923 0.400000 +24 1935 0.400000 +24 2171 0.400000 +24 2313 0.400000 +24 2354 0.400000 +24 2433 0.400000 +24 2454 0.400000 +24 2472 0.400000 +24 2705 0.400000 +24 2751 0.400000 +24 2800 0.400000 +24 2841 0.400000 +24 2842 0.400000 +24 2897 0.400000 +24 3145 0.400000 +24 3172 0.400000 +24 3197 0.400000 +25 29 0.400000 +25 104 0.400000 +25 122 0.400000 +25 134 0.400000 +25 175 0.400000 +25 203 0.400000 +25 257 0.400000 +25 278 0.400000 +25 351 0.400000 +25 365 0.400000 +25 473 0.400000 +25 556 0.400000 +25 587 0.400000 +25 591 0.400000 +25 706 0.400000 +25 716 0.400000 +25 749 0.400000 +25 761 0.400000 +25 818 0.400000 +25 877 0.400000 +25 890 0.400000 +25 947 0.400000 +25 951 0.400000 +25 1100 0.400000 +25 1291 0.400000 +25 1297 0.400000 +25 1377 0.400000 +25 1435 0.400000 +25 1487 0.400000 +25 1499 0.400000 +25 1515 0.400000 +25 1608 0.400000 +25 1655 0.400000 +25 1668 0.400000 +25 1672 0.400000 +25 1716 0.400000 +25 1809 0.400000 +25 1859 0.400000 +25 1861 0.400000 +25 1872 0.400000 +25 1878 0.400000 +25 2048 0.400000 +25 2051 0.400000 +25 2070 0.400000 +25 2081 0.400000 +25 2118 0.400000 +25 2131 0.400000 +25 2462 0.400000 +25 2484 0.400000 +25 2493 0.400000 +25 2650 0.400000 +25 2713 0.400000 +25 2721 0.400000 +25 2802 0.400000 +25 2819 0.400000 +25 2893 0.400000 +25 2894 0.400000 +25 2946 0.400000 +25 3024 0.400000 +25 3070 0.400000 +25 3081 0.400000 +25 3122 0.400000 +25 3127 0.400000 +25 3178 0.400000 +26 90 0.400000 +26 241 0.400000 +26 253 0.400000 +26 317 0.400000 +26 329 0.400000 +26 368 0.400000 +26 408 0.400000 +26 411 0.400000 +26 425 0.400000 +26 454 0.400000 +26 543 0.400000 +26 631 0.400000 +26 639 0.400000 +26 664 0.400000 +26 671 0.400000 +26 710 0.400000 +26 728 0.400000 +26 753 0.400000 +26 804 0.400000 +26 818 0.400000 +26 832 0.400000 +26 884 0.400000 +26 889 0.400000 +26 905 0.400000 +26 935 0.400000 +26 944 0.400000 +26 1015 0.400000 +26 1046 0.400000 +26 1070 0.400000 +26 1075 0.400000 +26 1100 0.400000 +26 1110 0.400000 +26 1160 0.400000 +26 1164 0.400000 +26 1213 0.400000 +26 1365 0.400000 +26 1478 0.400000 +26 1609 0.400000 +26 1668 0.400000 +26 1741 0.400000 +26 1832 0.400000 +26 1834 0.400000 +26 1835 0.400000 +26 1938 0.400000 +26 1946 0.400000 +26 1975 0.400000 +26 1995 0.400000 +26 2029 0.400000 +26 2192 0.400000 +26 2281 0.400000 +26 2335 0.400000 +26 2363 0.400000 +26 2401 0.400000 +26 2479 0.400000 +26 2482 0.400000 +26 2491 0.400000 +26 2518 0.400000 +26 2566 0.400000 +26 2619 0.400000 +26 2654 0.400000 +26 2718 0.400000 +26 2751 0.400000 +26 2807 0.400000 +26 2986 0.400000 +26 3008 0.400000 +26 3041 0.400000 +26 3143 0.400000 +27 8 0.400000 +27 13 0.400000 +27 59 0.400000 +27 67 0.400000 +27 69 0.400000 +27 268 0.400000 +27 270 0.400000 +27 320 0.400000 +27 337 0.400000 +27 594 0.400000 +27 618 0.400000 +27 625 0.400000 +27 686 0.400000 +27 691 0.400000 +27 786 0.400000 +27 796 0.400000 +27 868 0.400000 +27 887 0.400000 +27 889 0.400000 +27 912 0.400000 +27 1012 0.400000 +27 1036 0.400000 +27 1131 0.400000 +27 1217 0.400000 +27 1436 0.400000 +27 1514 0.400000 +27 1523 0.400000 +27 1536 0.400000 +27 1585 0.400000 +27 1622 0.400000 +27 1638 0.400000 +27 1675 0.400000 +27 1735 0.400000 +27 1748 0.400000 +27 1832 0.400000 +27 2012 0.400000 +27 2030 0.400000 +27 2055 0.400000 +27 2377 0.400000 +27 2615 0.400000 +27 2638 0.400000 +27 2704 0.400000 +27 2728 0.400000 +27 2744 0.400000 +27 2881 0.400000 +27 2961 0.400000 +27 2965 0.400000 +27 2988 0.400000 +27 3002 0.400000 +27 3050 0.400000 +27 3073 0.400000 +27 3093 0.400000 +27 3118 0.400000 +27 3155 0.400000 +27 3200 0.400000 +28 107 0.400000 +28 138 0.400000 +28 154 0.400000 +28 174 0.400000 +28 268 0.400000 +28 347 0.400000 +28 405 0.400000 +28 424 0.400000 +28 436 0.400000 +28 615 0.400000 +28 628 0.400000 +28 679 0.400000 +28 838 0.400000 +28 845 0.400000 +28 920 0.400000 +28 934 0.400000 +28 968 0.400000 +28 1020 0.400000 +28 1137 0.400000 +28 1177 0.400000 +28 1188 0.400000 +28 1303 0.400000 +28 1310 0.400000 +28 1316 0.400000 +28 1321 0.400000 +28 1400 0.400000 +28 1451 0.400000 +28 1475 0.400000 +28 1587 0.400000 +28 1588 0.400000 +28 1627 0.400000 +28 1649 0.400000 +28 1695 0.400000 +28 1722 0.400000 +28 1735 0.400000 +28 1802 0.400000 +28 1856 0.400000 +28 1924 0.400000 +28 1972 0.400000 +28 1975 0.400000 +28 1978 0.400000 +28 1980 0.400000 +28 1995 0.400000 +28 2014 0.400000 +28 2029 0.400000 +28 2110 0.400000 +28 2346 0.400000 +28 2356 0.400000 +28 2439 0.400000 +28 2550 0.400000 +28 2582 0.400000 +28 2608 0.400000 +28 2793 0.400000 +28 2844 0.400000 +28 2854 0.400000 +28 2909 0.400000 +28 3030 0.400000 +28 3039 0.400000 +28 3120 0.400000 +28 3122 0.400000 +28 3138 0.400000 +29 9 0.400000 +29 65 0.400000 +29 148 0.400000 +29 168 0.400000 +29 199 0.400000 +29 251 0.400000 +29 326 0.400000 +29 343 0.400000 +29 371 0.400000 +29 432 0.400000 +29 484 0.400000 +29 514 0.400000 +29 582 0.400000 +29 600 0.400000 +29 615 0.400000 +29 633 0.400000 +29 698 0.400000 +29 781 0.400000 +29 890 0.400000 +29 930 0.400000 +29 1064 0.400000 +29 1078 0.400000 +29 1129 0.400000 +29 1170 0.400000 +29 1197 0.400000 +29 1202 0.400000 +29 1204 0.400000 +29 1276 0.400000 +29 1314 0.400000 +29 1329 0.400000 +29 1344 0.400000 +29 1351 0.400000 +29 1470 0.400000 +29 1508 0.400000 +29 1580 0.400000 +29 1601 0.400000 +29 1635 0.400000 +29 1691 0.400000 +29 1810 0.400000 +29 1821 0.400000 +29 1880 0.400000 +29 1903 0.400000 +29 1953 0.400000 +29 2054 0.400000 +29 2094 0.400000 +29 2121 0.400000 +29 2137 0.400000 +29 2170 0.400000 +29 2178 0.400000 +29 2260 0.400000 +29 2360 0.400000 +29 2361 0.400000 +29 2369 0.400000 +29 2465 0.400000 +29 2469 0.400000 +29 2505 0.400000 +29 2551 0.400000 +29 2556 0.400000 +29 2735 0.400000 +29 2888 0.400000 +29 3016 0.400000 +29 3034 0.400000 +29 3052 0.400000 +29 3103 0.400000 +29 3107 0.400000 +30 46 0.400000 +30 66 0.400000 +30 81 0.400000 +30 100 0.400000 +30 104 0.400000 +30 109 0.400000 +30 138 0.400000 +30 170 0.400000 +30 192 0.400000 +30 278 0.400000 +30 304 0.400000 +30 354 0.400000 +30 435 0.400000 +30 469 0.400000 +30 540 0.400000 +30 548 0.400000 +30 559 0.400000 +30 610 0.400000 +30 613 0.400000 +30 616 0.400000 +30 736 0.400000 +30 863 0.400000 +30 924 0.400000 +30 953 0.400000 +30 968 0.400000 +30 1013 0.400000 +30 1049 0.400000 +30 1056 0.400000 +30 1079 0.400000 +30 1112 0.400000 +30 1171 0.400000 +30 1222 0.400000 +30 1239 0.400000 +30 1392 0.400000 +30 1527 0.400000 +30 1572 0.400000 +30 1684 0.400000 +30 1827 0.400000 +30 1833 0.400000 +30 1925 0.400000 +30 1946 0.400000 +30 2066 0.400000 +30 2080 0.400000 +30 2127 0.400000 +30 2187 0.400000 +30 2276 0.400000 +30 2343 0.400000 +30 2479 0.400000 +30 2524 0.400000 +30 2557 0.400000 +30 2707 0.400000 +30 2710 0.400000 +30 2775 0.400000 +30 2804 0.400000 +30 2891 0.400000 +30 2936 0.400000 +30 3163 0.400000 +30 3166 0.400000 +30 3200 0.400000 +31 13 0.400000 +31 46 0.400000 +31 95 0.400000 +31 121 0.400000 +31 175 0.400000 +31 191 0.400000 +31 292 0.400000 +31 363 0.400000 +31 438 0.400000 +31 673 0.400000 +31 714 0.400000 +31 730 0.400000 +31 741 0.400000 +31 745 0.400000 +31 760 0.400000 +31 843 0.400000 +31 867 0.400000 +31 894 0.400000 +31 943 0.400000 +31 1009 0.400000 +31 1082 0.400000 +31 1157 0.400000 +31 1190 0.400000 +31 1270 0.400000 +31 1298 0.400000 +31 1328 0.400000 +31 1401 0.400000 +31 1408 0.400000 +31 1472 0.400000 +31 1608 0.400000 +31 1687 0.400000 +31 1760 0.400000 +31 1790 0.400000 +31 1801 0.400000 +31 1860 0.400000 +31 1896 0.400000 +31 1909 0.400000 +31 1920 0.400000 +31 1984 0.400000 +31 2012 0.400000 +31 2106 0.400000 +31 2124 0.400000 +31 2125 0.400000 +31 2169 0.400000 +31 2174 0.400000 +31 2176 0.400000 +31 2192 0.400000 +31 2289 0.400000 +31 2329 0.400000 +31 2344 0.400000 +31 2351 0.400000 +31 2357 0.400000 +31 2365 0.400000 +31 2393 0.400000 +31 2439 0.400000 +31 2505 0.400000 +31 2543 0.400000 +31 2548 0.400000 +31 2704 0.400000 +31 2705 0.400000 +31 2740 0.400000 +31 2838 0.400000 +31 2950 0.400000 +31 3077 0.400000 +31 3100 0.400000 +31 3134 0.400000 +31 3162 0.400000 +32 9 0.400000 +32 105 0.400000 +32 121 0.400000 +32 186 0.400000 +32 320 0.400000 +32 364 0.400000 +32 465 0.400000 +32 478 0.400000 +32 482 0.400000 +32 489 0.400000 +32 536 0.400000 +32 540 0.400000 +32 594 0.400000 +32 598 0.400000 +32 615 0.400000 +32 627 0.400000 +32 641 0.400000 +32 658 0.400000 +32 676 0.400000 +32 805 0.400000 +32 838 0.400000 +32 844 0.400000 +32 859 0.400000 +32 935 0.400000 +32 1052 0.400000 +32 1064 0.400000 +32 1107 0.400000 +32 1112 0.400000 +32 1119 0.400000 +32 1146 0.400000 +32 1222 0.400000 +32 1262 0.400000 +32 1292 0.400000 +32 1367 0.400000 +32 1371 0.400000 +32 1398 0.400000 +32 1446 0.400000 +32 1447 0.400000 +32 1531 0.400000 +32 1610 0.400000 +32 1637 0.400000 +32 1823 0.400000 +32 1835 0.400000 +32 1839 0.400000 +32 1935 0.400000 +32 2026 0.400000 +32 2041 0.400000 +32 2189 0.400000 +32 2224 0.400000 +32 2339 0.400000 +32 2379 0.400000 +32 2406 0.400000 +32 2490 0.400000 +32 2606 0.400000 +32 2620 0.400000 +32 2644 0.400000 +32 2674 0.400000 +32 2819 0.400000 +32 2832 0.400000 +32 2860 0.400000 +32 2862 0.400000 +32 2970 0.400000 +32 3016 0.400000 +32 3071 0.400000 +32 3131 0.400000 +32 3143 0.400000 +33 20 0.400000 +33 79 0.400000 +33 80 0.400000 +33 201 0.400000 +33 207 0.400000 +33 301 0.400000 +33 405 0.400000 +33 408 0.400000 +33 464 0.400000 +33 485 0.400000 +33 488 0.400000 +33 611 0.400000 +33 639 0.400000 +33 664 0.400000 +33 668 0.400000 +33 743 0.400000 +33 749 0.400000 +33 769 0.400000 +33 797 0.400000 +33 813 0.400000 +33 815 0.400000 +33 834 0.400000 +33 867 0.400000 +33 876 0.400000 +33 879 0.400000 +33 951 0.400000 +33 995 0.400000 +33 1024 0.400000 +33 1087 0.400000 +33 1115 0.400000 +33 1184 0.400000 +33 1316 0.400000 +33 1359 0.400000 +33 1396 0.400000 +33 1402 0.400000 +33 1443 0.400000 +33 1514 0.400000 +33 1538 0.400000 +33 1619 0.400000 +33 1627 0.400000 +33 1643 0.400000 +33 1652 0.400000 +33 1714 0.400000 +33 1782 0.400000 +33 1813 0.400000 +33 1867 0.400000 +33 1981 0.400000 +33 1986 0.400000 +33 1995 0.400000 +33 1999 0.400000 +33 2016 0.400000 +33 2024 0.400000 +33 2106 0.400000 +33 2115 0.400000 +33 2128 0.400000 +33 2139 0.400000 +33 2246 0.400000 +33 2261 0.400000 +33 2310 0.400000 +33 2336 0.400000 +33 2339 0.400000 +33 2460 0.400000 +33 2578 0.400000 +33 2591 0.400000 +33 2619 0.400000 +33 2637 0.400000 +33 2672 0.400000 +33 2745 0.400000 +33 2746 0.400000 +33 2761 0.400000 +33 2823 0.400000 +33 2850 0.400000 +33 2902 0.400000 +33 2931 0.400000 +33 3061 0.400000 +33 3087 0.400000 +33 3111 0.400000 +33 3164 0.400000 +34 17 0.400000 +34 21 0.400000 +34 76 0.400000 +34 187 0.400000 +34 188 0.400000 +34 376 0.400000 +34 493 0.400000 +34 519 0.400000 +34 543 0.400000 +34 557 0.400000 +34 599 0.400000 +34 616 0.400000 +34 663 0.400000 +34 722 0.400000 +34 724 0.400000 +34 811 0.400000 +34 820 0.400000 +34 874 0.400000 +34 877 0.400000 +34 930 0.400000 +34 1018 0.400000 +34 1054 0.400000 +34 1071 0.400000 +34 1094 0.400000 +34 1148 0.400000 +34 1172 0.400000 +34 1181 0.400000 +34 1229 0.400000 +34 1269 0.400000 +34 1337 0.400000 +34 1395 0.400000 +34 1429 0.400000 +34 1488 0.400000 +34 1505 0.400000 +34 1535 0.400000 +34 1568 0.400000 +34 1657 0.400000 +34 1697 0.400000 +34 1705 0.400000 +34 1745 0.400000 +34 1794 0.400000 +34 1855 0.400000 +34 1959 0.400000 +34 1973 0.400000 +34 2072 0.400000 +34 2083 0.400000 +34 2134 0.400000 +34 2141 0.400000 +34 2143 0.400000 +34 2341 0.400000 +34 2445 0.400000 +34 2455 0.400000 +34 2508 0.400000 +34 2551 0.400000 +34 2562 0.400000 +34 2565 0.400000 +34 2620 0.400000 +34 2650 0.400000 +34 2742 0.400000 +34 2743 0.400000 +34 2763 0.400000 +34 2771 0.400000 +34 2824 0.400000 +34 2827 0.400000 +34 2877 0.400000 +34 2882 0.400000 +34 2905 0.400000 +34 2966 0.400000 +34 3143 0.400000 +34 3162 0.400000 +35 50 0.400000 +35 153 0.400000 +35 196 0.400000 +35 223 0.400000 +35 338 0.400000 +35 343 0.400000 +35 411 0.400000 +35 460 0.400000 +35 589 0.400000 +35 604 0.400000 +35 633 0.400000 +35 648 0.400000 +35 726 0.400000 +35 831 0.400000 +35 871 0.400000 +35 893 0.400000 +35 923 0.400000 +35 967 0.400000 +35 969 0.400000 +35 975 0.400000 +35 995 0.400000 +35 1098 0.400000 +35 1123 0.400000 +35 1174 0.400000 +35 1267 0.400000 +35 1286 0.400000 +35 1551 0.400000 +35 1622 0.400000 +35 1654 0.400000 +35 1699 0.400000 +35 1719 0.400000 +35 1742 0.400000 +35 1777 0.400000 +35 1829 0.400000 +35 1864 0.400000 +35 1879 0.400000 +35 1885 0.400000 +35 1961 0.400000 +35 1979 0.400000 +35 2073 0.400000 +35 2118 0.400000 +35 2167 0.400000 +35 2352 0.400000 +35 2362 0.400000 +35 2433 0.400000 +35 2459 0.400000 +35 2472 0.400000 +35 2494 0.400000 +35 2501 0.400000 +35 2545 0.400000 +35 2560 0.400000 +35 2571 0.400000 +35 2631 0.400000 +35 2764 0.400000 +35 2868 0.400000 +35 3023 0.400000 +35 3052 0.400000 +36 28 0.400000 +36 59 0.400000 +36 97 0.400000 +36 197 0.400000 +36 270 0.400000 +36 359 0.400000 +36 381 0.400000 +36 402 0.400000 +36 430 0.400000 +36 463 0.400000 +36 479 0.400000 +36 520 0.400000 +36 533 0.400000 +36 534 0.400000 +36 576 0.400000 +36 603 0.400000 +36 620 0.400000 +36 644 0.400000 +36 705 0.400000 +36 752 0.400000 +36 789 0.400000 +36 811 0.400000 +36 815 0.400000 +36 888 0.400000 +36 960 0.400000 +36 1009 0.400000 +36 1092 0.400000 +36 1114 0.400000 +36 1129 0.400000 +36 1185 0.400000 +36 1282 0.400000 +36 1286 0.400000 +36 1492 0.400000 +36 1508 0.400000 +36 1591 0.400000 +36 1603 0.400000 +36 1743 0.400000 +36 1814 0.400000 +36 1828 0.400000 +36 1845 0.400000 +36 1883 0.400000 +36 1898 0.400000 +36 1981 0.400000 +36 1985 0.400000 +36 2009 0.400000 +36 2029 0.400000 +36 2256 0.400000 +36 2267 0.400000 +36 2296 0.400000 +36 2350 0.400000 +36 2401 0.400000 +36 2499 0.400000 +36 2607 0.400000 +36 2692 0.400000 +36 2697 0.400000 +36 2709 0.400000 +36 2742 0.400000 +36 2756 0.400000 +36 2798 0.400000 +36 2826 0.400000 +36 2884 0.400000 +36 2914 0.400000 +36 2960 0.400000 +36 2965 0.400000 +36 2989 0.400000 +36 3046 0.400000 +36 3094 0.400000 +36 3105 0.400000 +36 3118 0.400000 +36 3159 0.400000 +36 3163 0.400000 +37 43 0.400000 +37 61 0.400000 +37 98 0.400000 +37 99 0.400000 +37 102 0.400000 +37 226 0.400000 +37 246 0.400000 +37 270 0.400000 +37 292 0.400000 +37 298 0.400000 +37 314 0.400000 +37 466 0.400000 +37 484 0.400000 +37 507 0.400000 +37 520 0.400000 +37 549 0.400000 +37 564 0.400000 +37 604 0.400000 +37 617 0.400000 +37 656 0.400000 +37 666 0.400000 +37 675 0.400000 +37 794 0.400000 +37 800 0.400000 +37 827 0.400000 +37 858 0.400000 +37 863 0.400000 +37 911 0.400000 +37 942 0.400000 +37 998 0.400000 +37 1024 0.400000 +37 1111 0.400000 +37 1218 0.400000 +37 1220 0.400000 +37 1227 0.400000 +37 1255 0.400000 +37 1282 0.400000 +37 1382 0.400000 +37 1430 0.400000 +37 1434 0.400000 +37 1443 0.400000 +37 1501 0.400000 +37 1532 0.400000 +37 1546 0.400000 +37 1606 0.400000 +37 1720 0.400000 +37 1833 0.400000 +37 1879 0.400000 +37 1899 0.400000 +37 1901 0.400000 +37 1929 0.400000 +37 2014 0.400000 +37 2228 0.400000 +37 2256 0.400000 +37 2265 0.400000 +37 2278 0.400000 +37 2292 0.400000 +37 2342 0.400000 +37 2348 0.400000 +37 2362 0.400000 +37 2460 0.400000 +37 2471 0.400000 +37 2482 0.400000 +37 2564 0.400000 +37 2585 0.400000 +37 2587 0.400000 +37 2615 0.400000 +37 2621 0.400000 +37 2650 0.400000 +37 2716 0.400000 +37 2763 0.400000 +37 2777 0.400000 +37 2812 0.400000 +37 2873 0.400000 +37 2883 0.400000 +37 3015 0.400000 +37 3060 0.400000 +37 3087 0.400000 +37 3105 0.400000 +38 3 0.400000 +38 156 0.400000 +38 198 0.400000 +38 202 0.400000 +38 358 0.400000 +38 375 0.400000 +38 467 0.400000 +38 470 0.400000 +38 473 0.400000 +38 500 0.400000 +38 551 0.400000 +38 604 0.400000 +38 609 0.400000 +38 626 0.400000 +38 682 0.400000 +38 728 0.400000 +38 806 0.400000 +38 869 0.400000 +38 885 0.400000 +38 961 0.400000 +38 970 0.400000 +38 1000 0.400000 +38 1028 0.400000 +38 1105 0.400000 +38 1150 0.400000 +38 1160 0.400000 +38 1164 0.400000 +38 1248 0.400000 +38 1306 0.400000 +38 1367 0.400000 +38 1440 0.400000 +38 1493 0.400000 +38 1542 0.400000 +38 1559 0.400000 +38 1614 0.400000 +38 1657 0.400000 +38 1701 0.400000 +38 1735 0.400000 +38 1757 0.400000 +38 1828 0.400000 +38 1844 0.400000 +38 1966 0.400000 +38 2072 0.400000 +38 2113 0.400000 +38 2146 0.400000 +38 2154 0.400000 +38 2193 0.400000 +38 2224 0.400000 +38 2400 0.400000 +38 2406 0.400000 +38 2425 0.400000 +38 2537 0.400000 +38 2549 0.400000 +38 2578 0.400000 +38 2644 0.400000 +38 2770 0.400000 +38 2925 0.400000 +38 2961 0.400000 +38 3043 0.400000 +38 3146 0.400000 +38 3157 0.400000 +38 3163 0.400000 +38 3176 0.400000 +39 48 0.400000 +39 85 0.400000 +39 129 0.400000 +39 139 0.400000 +39 152 0.400000 +39 169 0.400000 +39 176 0.400000 +39 283 0.400000 +39 323 0.400000 +39 353 0.400000 +39 436 0.400000 +39 502 0.400000 +39 513 0.400000 +39 547 0.400000 +39 613 0.400000 +39 688 0.400000 +39 736 0.400000 +39 737 0.400000 +39 740 0.400000 +39 867 0.400000 +39 880 0.400000 +39 895 0.400000 +39 1003 0.400000 +39 1058 0.400000 +39 1068 0.400000 +39 1093 0.400000 +39 1097 0.400000 +39 1191 0.400000 +39 1207 0.400000 +39 1465 0.400000 +39 1474 0.400000 +39 1497 0.400000 +39 1518 0.400000 +39 1529 0.400000 +39 1531 0.400000 +39 1546 0.400000 +39 1615 0.400000 +39 1685 0.400000 +39 1686 0.400000 +39 1719 0.400000 +39 2076 0.400000 +39 2126 0.400000 +39 2185 0.400000 +39 2190 0.400000 +39 2222 0.400000 +39 2229 0.400000 +39 2230 0.400000 +39 2272 0.400000 +39 2370 0.400000 +39 2424 0.400000 +39 2431 0.400000 +39 2439 0.400000 +39 2490 0.400000 +39 2642 0.400000 +39 2662 0.400000 +39 2841 0.400000 +39 2876 0.400000 +39 2892 0.400000 +39 3015 0.400000 +39 3071 0.400000 +39 3105 0.400000 +39 3197 0.400000 +40 31 0.400000 +40 98 0.400000 +40 133 0.400000 +40 156 0.400000 +40 206 0.400000 +40 220 0.400000 +40 304 0.400000 +40 344 0.400000 +40 497 0.400000 +40 498 0.400000 +40 515 0.400000 +40 540 0.400000 +40 557 0.400000 +40 568 0.400000 +40 577 0.400000 +40 584 0.400000 +40 655 0.400000 +40 658 0.400000 +40 668 0.400000 +40 702 0.400000 +40 709 0.400000 +40 785 0.400000 +40 843 0.400000 +40 1017 0.400000 +40 1068 0.400000 +40 1176 0.400000 +40 1178 0.400000 +40 1232 0.400000 +40 1289 0.400000 +40 1306 0.400000 +40 1343 0.400000 +40 1412 0.400000 +40 1422 0.400000 +40 1541 0.400000 +40 1551 0.400000 +40 1554 0.400000 +40 1578 0.400000 +40 1612 0.400000 +40 1652 0.400000 +40 1671 0.400000 +40 1677 0.400000 +40 1712 0.400000 +40 1832 0.400000 +40 1883 0.400000 +40 1994 0.400000 +40 2011 0.400000 +40 2074 0.400000 +40 2130 0.400000 +40 2223 0.400000 +40 2257 0.400000 +40 2265 0.400000 +40 2268 0.400000 +40 2284 0.400000 +40 2403 0.400000 +40 2436 0.400000 +40 2443 0.400000 +40 2464 0.400000 +40 2509 0.400000 +40 2517 0.400000 +40 2540 0.400000 +40 2698 0.400000 +40 2720 0.400000 +40 2822 0.400000 +40 2835 0.400000 +40 2882 0.400000 +40 2965 0.400000 +40 2989 0.400000 +40 3021 0.400000 +40 3042 0.400000 +40 3090 0.400000 +40 3129 0.400000 +40 3165 0.400000 +40 3166 0.400000 +41 33 0.400000 +41 215 0.400000 +41 286 0.400000 +41 315 0.400000 +41 344 0.400000 +41 358 0.400000 +41 361 0.400000 +41 369 0.400000 +41 378 0.400000 +41 391 0.400000 +41 478 0.400000 +41 541 0.400000 +41 579 0.400000 +41 630 0.400000 +41 663 0.400000 +41 767 0.400000 +41 784 0.400000 +41 819 0.400000 +41 893 0.400000 +41 981 0.400000 +41 1035 0.400000 +41 1055 0.400000 +41 1128 0.400000 +41 1147 0.400000 +41 1162 0.400000 +41 1193 0.400000 +41 1240 0.400000 +41 1280 0.400000 +41 1289 0.400000 +41 1294 0.400000 +41 1310 0.400000 +41 1347 0.400000 +41 1375 0.400000 +41 1382 0.400000 +41 1386 0.400000 +41 1458 0.400000 +41 1555 0.400000 +41 1670 0.400000 +41 1740 0.400000 +41 1767 0.400000 +41 1786 0.400000 +41 1864 0.400000 +41 1875 0.400000 +41 1901 0.400000 +41 1958 0.400000 +41 2031 0.400000 +41 2141 0.400000 +41 2192 0.400000 +41 2264 0.400000 +41 2298 0.400000 +41 2337 0.400000 +41 2475 0.400000 +41 2492 0.400000 +41 2527 0.400000 +41 2538 0.400000 +41 2543 0.400000 +41 2586 0.400000 +41 2619 0.400000 +41 2640 0.400000 +41 2658 0.400000 +41 2666 0.400000 +41 2699 0.400000 +41 2735 0.400000 +41 2900 0.400000 +41 2925 0.400000 +41 3130 0.400000 +41 3182 0.400000 +42 4 0.400000 +42 32 0.400000 +42 68 0.400000 +42 145 0.400000 +42 155 0.400000 +42 168 0.400000 +42 304 0.400000 +42 407 0.400000 +42 499 0.400000 +42 575 0.400000 +42 615 0.400000 +42 650 0.400000 +42 661 0.400000 +42 675 0.400000 +42 941 0.400000 +42 990 0.400000 +42 1036 0.400000 +42 1071 0.400000 +42 1106 0.400000 +42 1115 0.400000 +42 1127 0.400000 +42 1133 0.400000 +42 1261 0.400000 +42 1333 0.400000 +42 1345 0.400000 +42 1377 0.400000 +42 1388 0.400000 +42 1406 0.400000 +42 1471 0.400000 +42 1492 0.400000 +42 1523 0.400000 +42 1607 0.400000 +42 1750 0.400000 +42 1761 0.400000 +42 1886 0.400000 +42 1890 0.400000 +42 1896 0.400000 +42 1937 0.400000 +42 2031 0.400000 +42 2063 0.400000 +42 2083 0.400000 +42 2311 0.400000 +42 2414 0.400000 +42 2651 0.400000 +42 2723 0.400000 +42 2773 0.400000 +42 2775 0.400000 +42 2818 0.400000 +42 2820 0.400000 +42 2841 0.400000 +42 2928 0.400000 +42 2937 0.400000 +42 3093 0.400000 +42 3107 0.400000 +43 4 0.400000 +43 73 0.400000 +43 134 0.400000 +43 180 0.400000 +43 263 0.400000 +43 295 0.400000 +43 328 0.400000 +43 454 0.400000 +43 473 0.400000 +43 518 0.400000 +43 568 0.400000 +43 632 0.400000 +43 733 0.400000 +43 791 0.400000 +43 817 0.400000 +43 882 0.400000 +43 904 0.400000 +43 920 0.400000 +43 1076 0.400000 +43 1085 0.400000 +43 1099 0.400000 +43 1103 0.400000 +43 1113 0.400000 +43 1143 0.400000 +43 1379 0.400000 +43 1470 0.400000 +43 1474 0.400000 +43 1497 0.400000 +43 1518 0.400000 +43 1537 0.400000 +43 1565 0.400000 +43 1628 0.400000 +43 1759 0.400000 +43 1767 0.400000 +43 1772 0.400000 +43 1802 0.400000 +43 1826 0.400000 +43 1839 0.400000 +43 1857 0.400000 +43 1889 0.400000 +43 1897 0.400000 +43 1900 0.400000 +43 1984 0.400000 +43 2077 0.400000 +43 2098 0.400000 +43 2102 0.400000 +43 2153 0.400000 +43 2203 0.400000 +43 2234 0.400000 +43 2249 0.400000 +43 2280 0.400000 +43 2336 0.400000 +43 2347 0.400000 +43 2385 0.400000 +43 2431 0.400000 +43 2476 0.400000 +43 2514 0.400000 +43 2600 0.400000 +43 2698 0.400000 +43 2722 0.400000 +43 2806 0.400000 +43 2888 0.400000 +43 2891 0.400000 +43 3098 0.400000 +43 3143 0.400000 +44 43 0.400000 +44 121 0.400000 +44 152 0.400000 +44 155 0.400000 +44 197 0.400000 +44 243 0.400000 +44 341 0.400000 +44 427 0.400000 +44 582 0.400000 +44 587 0.400000 +44 621 0.400000 +44 671 0.400000 +44 831 0.400000 +44 854 0.400000 +44 870 0.400000 +44 888 0.400000 +44 894 0.400000 +44 960 0.400000 +44 969 0.400000 +44 970 0.400000 +44 976 0.400000 +44 1043 0.400000 +44 1050 0.400000 +44 1160 0.400000 +44 1213 0.400000 +44 1401 0.400000 +44 1422 0.400000 +44 1438 0.400000 +44 1559 0.400000 +44 1666 0.400000 +44 1669 0.400000 +44 1731 0.400000 +44 1737 0.400000 +44 1780 0.400000 +44 2001 0.400000 +44 2034 0.400000 +44 2072 0.400000 +44 2077 0.400000 +44 2090 0.400000 +44 2166 0.400000 +44 2269 0.400000 +44 2308 0.400000 +44 2524 0.400000 +44 2537 0.400000 +44 2558 0.400000 +44 2567 0.400000 +44 2615 0.400000 +44 2735 0.400000 +44 2750 0.400000 +44 2763 0.400000 +44 2764 0.400000 +44 2817 0.400000 +44 2835 0.400000 +44 2885 0.400000 +44 2916 0.400000 +44 3151 0.400000 +45 41 0.400000 +45 123 0.400000 +45 210 0.400000 +45 240 0.400000 +45 243 0.400000 +45 365 0.400000 +45 450 0.400000 +45 463 0.400000 +45 504 0.400000 +45 617 0.400000 +45 630 0.400000 +45 656 0.400000 +45 659 0.400000 +45 665 0.400000 +45 731 0.400000 +45 773 0.400000 +45 776 0.400000 +45 812 0.400000 +45 813 0.400000 +45 821 0.400000 +45 849 0.400000 +45 865 0.400000 +45 925 0.400000 +45 929 0.400000 +45 949 0.400000 +45 961 0.400000 +45 980 0.400000 +45 1042 0.400000 +45 1136 0.400000 +45 1141 0.400000 +45 1291 0.400000 +45 1405 0.400000 +45 1419 0.400000 +45 1426 0.400000 +45 1433 0.400000 +45 1514 0.400000 +45 1609 0.400000 +45 1619 0.400000 +45 1730 0.400000 +45 1736 0.400000 +45 1746 0.400000 +45 1792 0.400000 +45 1994 0.400000 +45 2010 0.400000 +45 2019 0.400000 +45 2038 0.400000 +45 2062 0.400000 +45 2100 0.400000 +45 2110 0.400000 +45 2127 0.400000 +45 2136 0.400000 +45 2291 0.400000 +45 2402 0.400000 +45 2424 0.400000 +45 2453 0.400000 +45 2549 0.400000 +45 2552 0.400000 +45 2658 0.400000 +45 2674 0.400000 +45 2766 0.400000 +45 2786 0.400000 +45 2799 0.400000 +45 2806 0.400000 +45 2821 0.400000 +45 2907 0.400000 +45 2968 0.400000 +45 3001 0.400000 +45 3069 0.400000 +45 3142 0.400000 +46 102 0.400000 +46 135 0.400000 +46 180 0.400000 +46 216 0.400000 +46 319 0.400000 +46 366 0.400000 +46 401 0.400000 +46 533 0.400000 +46 577 0.400000 +46 635 0.400000 +46 753 0.400000 +46 762 0.400000 +46 802 0.400000 +46 834 0.400000 +46 858 0.400000 +46 1091 0.400000 +46 1142 0.400000 +46 1166 0.400000 +46 1187 0.400000 +46 1197 0.400000 +46 1202 0.400000 +46 1270 0.400000 +46 1289 0.400000 +46 1340 0.400000 +46 1363 0.400000 +46 1437 0.400000 +46 1514 0.400000 +46 1533 0.400000 +46 1558 0.400000 +46 1559 0.400000 +46 1643 0.400000 +46 1684 0.400000 +46 1704 0.400000 +46 1708 0.400000 +46 1755 0.400000 +46 1839 0.400000 +46 1868 0.400000 +46 1906 0.400000 +46 1974 0.400000 +46 2001 0.400000 +46 2012 0.400000 +46 2015 0.400000 +46 2118 0.400000 +46 2192 0.400000 +46 2229 0.400000 +46 2259 0.400000 +46 2333 0.400000 +46 2336 0.400000 +46 2402 0.400000 +46 2443 0.400000 +46 2523 0.400000 +46 2558 0.400000 +46 2610 0.400000 +46 2666 0.400000 +46 2700 0.400000 +46 2719 0.400000 +46 2793 0.400000 +46 2847 0.400000 +46 2923 0.400000 +46 2978 0.400000 +46 3074 0.400000 +46 3137 0.400000 +47 54 0.400000 +47 61 0.400000 +47 80 0.400000 +47 296 0.400000 +47 393 0.400000 +47 532 0.400000 +47 540 0.400000 +47 558 0.400000 +47 563 0.400000 +47 601 0.400000 +47 605 0.400000 +47 633 0.400000 +47 658 0.400000 +47 669 0.400000 +47 684 0.400000 +47 756 0.400000 +47 804 0.400000 +47 837 0.400000 +47 847 0.400000 +47 862 0.400000 +47 876 0.400000 +47 920 0.400000 +47 985 0.400000 +47 1095 0.400000 +47 1108 0.400000 +47 1194 0.400000 +47 1217 0.400000 +47 1311 0.400000 +47 1320 0.400000 +47 1359 0.400000 +47 1384 0.400000 +47 1399 0.400000 +47 1405 0.400000 +47 1421 0.400000 +47 1501 0.400000 +47 1517 0.400000 +47 1544 0.400000 +47 1557 0.400000 +47 1583 0.400000 +47 1607 0.400000 +47 1666 0.400000 +47 1711 0.400000 +47 1723 0.400000 +47 1733 0.400000 +47 1763 0.400000 +47 1771 0.400000 +47 1896 0.400000 +47 1942 0.400000 +47 2004 0.400000 +47 2106 0.400000 +47 2154 0.400000 +47 2179 0.400000 +47 2193 0.400000 +47 2254 0.400000 +47 2448 0.400000 +47 2501 0.400000 +47 2534 0.400000 +47 2537 0.400000 +47 2540 0.400000 +47 2602 0.400000 +47 2692 0.400000 +47 2791 0.400000 +47 2805 0.400000 +47 2845 0.400000 +47 2978 0.400000 +47 3006 0.400000 +47 3027 0.400000 +47 3038 0.400000 +47 3079 0.400000 +48 87 0.400000 +48 126 0.400000 +48 158 0.400000 +48 353 0.400000 +48 386 0.400000 +48 424 0.400000 +48 426 0.400000 +48 456 0.400000 +48 473 0.400000 +48 504 0.400000 +48 638 0.400000 +48 659 0.400000 +48 687 0.400000 +48 702 0.400000 +48 758 0.400000 +48 826 0.400000 +48 905 0.400000 +48 924 0.400000 +48 940 0.400000 +48 963 0.400000 +48 972 0.400000 +48 1024 0.400000 +48 1089 0.400000 +48 1239 0.400000 +48 1260 0.400000 +48 1317 0.400000 +48 1385 0.400000 +48 1488 0.400000 +48 1522 0.400000 +48 1551 0.400000 +48 1582 0.400000 +48 1627 0.400000 +48 1632 0.400000 +48 1668 0.400000 +48 1697 0.400000 +48 1702 0.400000 +48 1879 0.400000 +48 1891 0.400000 +48 1902 0.400000 +48 1912 0.400000 +48 1971 0.400000 +48 1987 0.400000 +48 2008 0.400000 +48 2035 0.400000 +48 2160 0.400000 +48 2218 0.400000 +48 2243 0.400000 +48 2289 0.400000 +48 2443 0.400000 +48 2446 0.400000 +48 2455 0.400000 +48 2519 0.400000 +48 2528 0.400000 +48 2541 0.400000 +48 2551 0.400000 +48 2563 0.400000 +48 2615 0.400000 +48 2701 0.400000 +48 2760 0.400000 +48 2815 0.400000 +48 2830 0.400000 +48 2847 0.400000 +48 2862 0.400000 +48 2865 0.400000 +48 2906 0.400000 +48 2918 0.400000 +48 2919 0.400000 +48 2977 0.400000 +48 3007 0.400000 +48 3012 0.400000 +48 3049 0.400000 +48 3051 0.400000 +48 3073 0.400000 +48 3083 0.400000 +48 3162 0.400000 +49 111 0.400000 +49 144 0.400000 +49 145 0.400000 +49 174 0.400000 +49 225 0.400000 +49 272 0.400000 +49 299 0.400000 +49 335 0.400000 +49 348 0.400000 +49 390 0.400000 +49 406 0.400000 +49 447 0.400000 +49 541 0.400000 +49 552 0.400000 +49 809 0.400000 +49 812 0.400000 +49 835 0.400000 +49 871 0.400000 +49 894 0.400000 +49 936 0.400000 +49 1024 0.400000 +49 1051 0.400000 +49 1065 0.400000 +49 1123 0.400000 +49 1163 0.400000 +49 1183 0.400000 +49 1263 0.400000 +49 1306 0.400000 +49 1375 0.400000 +49 1505 0.400000 +49 1527 0.400000 +49 1538 0.400000 +49 1564 0.400000 +49 1570 0.400000 +49 1590 0.400000 +49 1619 0.400000 +49 1664 0.400000 +49 1676 0.400000 +49 1702 0.400000 +49 1714 0.400000 +49 1899 0.400000 +49 1904 0.400000 +49 2004 0.400000 +49 2022 0.400000 +49 2146 0.400000 +49 2202 0.400000 +49 2224 0.400000 +49 2252 0.400000 +49 2298 0.400000 +49 2318 0.400000 +49 2321 0.400000 +49 2342 0.400000 +49 2373 0.400000 +49 2476 0.400000 +49 2542 0.400000 +49 2555 0.400000 +49 2597 0.400000 +49 2598 0.400000 +49 2640 0.400000 +49 2654 0.400000 +49 2668 0.400000 +49 2696 0.400000 +49 2737 0.400000 +49 2831 0.400000 +49 2931 0.400000 +49 2967 0.400000 +49 2974 0.400000 +49 3195 0.400000 +50 75 0.400000 +50 80 0.400000 +50 172 0.400000 +50 192 0.400000 +50 241 0.400000 +50 246 0.400000 +50 316 0.400000 +50 323 0.400000 +50 341 0.400000 +50 348 0.400000 +50 404 0.400000 +50 482 0.400000 +50 489 0.400000 +50 542 0.400000 +50 621 0.400000 +50 765 0.400000 +50 796 0.400000 +50 822 0.400000 +50 847 0.400000 +50 960 0.400000 +50 973 0.400000 +50 989 0.400000 +50 1052 0.400000 +50 1075 0.400000 +50 1248 0.400000 +50 1297 0.400000 +50 1300 0.400000 +50 1345 0.400000 +50 1445 0.400000 +50 1502 0.400000 +50 1607 0.400000 +50 1608 0.400000 +50 1626 0.400000 +50 1800 0.400000 +50 1812 0.400000 +50 1842 0.400000 +50 1845 0.400000 +50 1938 0.400000 +50 2035 0.400000 +50 2038 0.400000 +50 2148 0.400000 +50 2185 0.400000 +50 2256 0.400000 +50 2321 0.400000 +50 2341 0.400000 +50 2401 0.400000 +50 2426 0.400000 +50 2477 0.400000 +50 2592 0.400000 +50 2705 0.400000 +50 2739 0.400000 +50 2797 0.400000 +50 2805 0.400000 +50 2813 0.400000 +50 2839 0.400000 +50 2875 0.400000 +50 2917 0.400000 +50 2941 0.400000 +50 2973 0.400000 +50 3031 0.400000 +50 3078 0.400000 +50 3100 0.400000 +50 3137 0.400000 +51 7 0.400000 +51 46 0.400000 +51 146 0.400000 +51 150 0.400000 +51 158 0.400000 +51 190 0.400000 +51 258 0.400000 +51 397 0.400000 +51 407 0.400000 +51 508 0.400000 +51 525 0.400000 +51 588 0.400000 +51 590 0.400000 +51 596 0.400000 +51 604 0.400000 +51 618 0.400000 +51 687 0.400000 +51 707 0.400000 +51 755 0.400000 +51 850 0.400000 +51 859 0.400000 +51 966 0.400000 +51 1009 0.400000 +51 1202 0.400000 +51 1230 0.400000 +51 1244 0.400000 +51 1251 0.400000 +51 1263 0.400000 +51 1414 0.400000 +51 1449 0.400000 +51 1456 0.400000 +51 1469 0.400000 +51 1558 0.400000 +51 1628 0.400000 +51 1635 0.400000 +51 1638 0.400000 +51 1822 0.400000 +51 1834 0.400000 +51 1838 0.400000 +51 1945 0.400000 +51 1956 0.400000 +51 2018 0.400000 +51 2025 0.400000 +51 2155 0.400000 +51 2230 0.400000 +51 2315 0.400000 +51 2374 0.400000 +51 2437 0.400000 +51 2461 0.400000 +51 2483 0.400000 +51 2494 0.400000 +51 2559 0.400000 +51 2680 0.400000 +51 2821 0.400000 +51 2828 0.400000 +51 2878 0.400000 +51 2986 0.400000 +51 3093 0.400000 +51 3159 0.400000 +51 3162 0.400000 +52 20 0.400000 +52 188 0.400000 +52 207 0.400000 +52 288 0.400000 +52 292 0.400000 +52 354 0.400000 +52 414 0.400000 +52 433 0.400000 +52 434 0.400000 +52 500 0.400000 +52 659 0.400000 +52 708 0.400000 +52 747 0.400000 +52 753 0.400000 +52 763 0.400000 +52 847 0.400000 +52 870 0.400000 +52 871 0.400000 +52 901 0.400000 +52 903 0.400000 +52 906 0.400000 +52 913 0.400000 +52 928 0.400000 +52 1005 0.400000 +52 1036 0.400000 +52 1040 0.400000 +52 1094 0.400000 +52 1145 0.400000 +52 1195 0.400000 +52 1236 0.400000 +52 1284 0.400000 +52 1345 0.400000 +52 1388 0.400000 +52 1437 0.400000 +52 1515 0.400000 +52 1521 0.400000 +52 1595 0.400000 +52 1659 0.400000 +52 1723 0.400000 +52 1814 0.400000 +52 1834 0.400000 +52 1840 0.400000 +52 1877 0.400000 +52 1894 0.400000 +52 1924 0.400000 +52 1928 0.400000 +52 1940 0.400000 +52 2009 0.400000 +52 2035 0.400000 +52 2178 0.400000 +52 2234 0.400000 +52 2255 0.400000 +52 2309 0.400000 +52 2415 0.400000 +52 2423 0.400000 +52 2528 0.400000 +52 2576 0.400000 +52 2622 0.400000 +52 2760 0.400000 +52 2767 0.400000 +52 2807 0.400000 +52 2822 0.400000 +52 2824 0.400000 +52 2910 0.400000 +52 2944 0.400000 +52 2948 0.400000 +52 2960 0.400000 +52 3027 0.400000 +52 3086 0.400000 +53 165 0.400000 +53 179 0.400000 +53 221 0.400000 +53 250 0.400000 +53 262 0.400000 +53 292 0.400000 +53 320 0.400000 +53 419 0.400000 +53 442 0.400000 +53 465 0.400000 +53 470 0.400000 +53 516 0.400000 +53 603 0.400000 +53 693 0.400000 +53 896 0.400000 +53 940 0.400000 +53 943 0.400000 +53 985 0.400000 +53 1012 0.400000 +53 1099 0.400000 +53 1105 0.400000 +53 1407 0.400000 +53 1441 0.400000 +53 1509 0.400000 +53 1512 0.400000 +53 1521 0.400000 +53 1574 0.400000 +53 1604 0.400000 +53 1786 0.400000 +53 1958 0.400000 +53 2055 0.400000 +53 2085 0.400000 +53 2112 0.400000 +53 2176 0.400000 +53 2256 0.400000 +53 2294 0.400000 +53 2299 0.400000 +53 2326 0.400000 +53 2380 0.400000 +53 2406 0.400000 +53 2430 0.400000 +53 2464 0.400000 +53 2477 0.400000 +53 2499 0.400000 +53 2550 0.400000 +53 2584 0.400000 +53 2712 0.400000 +53 2722 0.400000 +53 2723 0.400000 +53 2881 0.400000 +53 2919 0.400000 +53 2972 0.400000 +53 3006 0.400000 +53 3065 0.400000 +53 3086 0.400000 +53 3149 0.400000 +53 3175 0.400000 +54 60 0.400000 +54 65 0.400000 +54 152 0.400000 +54 226 0.400000 +54 256 0.400000 +54 309 0.400000 +54 373 0.400000 +54 419 0.400000 +54 455 0.400000 +54 472 0.400000 +54 511 0.400000 +54 657 0.400000 +54 738 0.400000 +54 795 0.400000 +54 948 0.400000 +54 1013 0.400000 +54 1030 0.400000 +54 1045 0.400000 +54 1110 0.400000 +54 1141 0.400000 +54 1157 0.400000 +54 1172 0.400000 +54 1203 0.400000 +54 1221 0.400000 +54 1334 0.400000 +54 1355 0.400000 +54 1456 0.400000 +54 1470 0.400000 +54 1587 0.400000 +54 1663 0.400000 +54 1714 0.400000 +54 1768 0.400000 +54 1841 0.400000 +54 1888 0.400000 +54 1949 0.400000 +54 2153 0.400000 +54 2202 0.400000 +54 2343 0.400000 +54 2383 0.400000 +54 2393 0.400000 +54 2450 0.400000 +54 2509 0.400000 +54 2629 0.400000 +54 2644 0.400000 +54 2646 0.400000 +54 2655 0.400000 +54 2660 0.400000 +54 2704 0.400000 +54 2727 0.400000 +54 2730 0.400000 +54 2782 0.400000 +54 2804 0.400000 +54 2903 0.400000 +54 3018 0.400000 +54 3028 0.400000 +54 3062 0.400000 +54 3063 0.400000 +54 3066 0.400000 +54 3117 0.400000 +55 17 0.400000 +55 109 0.400000 +55 132 0.400000 +55 133 0.400000 +55 234 0.400000 +55 396 0.400000 +55 447 0.400000 +55 513 0.400000 +55 520 0.400000 +55 604 0.400000 +55 630 0.400000 +55 669 0.400000 +55 724 0.400000 +55 778 0.400000 +55 806 0.400000 +55 843 0.400000 +55 939 0.400000 +55 1030 0.400000 +55 1046 0.400000 +55 1080 0.400000 +55 1179 0.400000 +55 1274 0.400000 +55 1285 0.400000 +55 1329 0.400000 +55 1390 0.400000 +55 1408 0.400000 +55 1517 0.400000 +55 1582 0.400000 +55 1675 0.400000 +55 1695 0.400000 +55 1710 0.400000 +55 1867 0.400000 +55 1923 0.400000 +55 1953 0.400000 +55 1987 0.400000 +55 2008 0.400000 +55 2011 0.400000 +55 2084 0.400000 +55 2106 0.400000 +55 2139 0.400000 +55 2155 0.400000 +55 2198 0.400000 +55 2213 0.400000 +55 2339 0.400000 +55 2341 0.400000 +55 2373 0.400000 +55 2389 0.400000 +55 2424 0.400000 +55 2458 0.400000 +55 2530 0.400000 +55 2593 0.400000 +55 2610 0.400000 +55 2615 0.400000 +55 2636 0.400000 +55 2663 0.400000 +55 2682 0.400000 +55 2709 0.400000 +55 2771 0.400000 +55 2832 0.400000 +55 2861 0.400000 +55 2945 0.400000 +55 2960 0.400000 +55 2998 0.400000 +55 3131 0.400000 +55 3180 0.400000 +55 3182 0.400000 +56 8 0.400000 +56 32 0.400000 +56 67 0.400000 +56 118 0.400000 +56 163 0.400000 +56 197 0.400000 +56 206 0.400000 +56 235 0.400000 +56 255 0.400000 +56 262 0.400000 +56 299 0.400000 +56 310 0.400000 +56 325 0.400000 +56 391 0.400000 +56 421 0.400000 +56 520 0.400000 +56 545 0.400000 +56 686 0.400000 +56 690 0.400000 +56 747 0.400000 +56 790 0.400000 +56 819 0.400000 +56 856 0.400000 +56 871 0.400000 +56 941 0.400000 +56 943 0.400000 +56 1057 0.400000 +56 1123 0.400000 +56 1126 0.400000 +56 1141 0.400000 +56 1200 0.400000 +56 1207 0.400000 +56 1308 0.400000 +56 1352 0.400000 +56 1362 0.400000 +56 1397 0.400000 +56 1408 0.400000 +56 1429 0.400000 +56 1464 0.400000 +56 1487 0.400000 +56 1519 0.400000 +56 1522 0.400000 +56 1646 0.400000 +56 1707 0.400000 +56 1795 0.400000 +56 1814 0.400000 +56 1846 0.400000 +56 1855 0.400000 +56 1902 0.400000 +56 1988 0.400000 +56 2027 0.400000 +56 2054 0.400000 +56 2066 0.400000 +56 2183 0.400000 +56 2185 0.400000 +56 2229 0.400000 +56 2467 0.400000 +56 2514 0.400000 +56 2533 0.400000 +56 2549 0.400000 +56 2603 0.400000 +56 2682 0.400000 +56 2740 0.400000 +56 2767 0.400000 +56 2786 0.400000 +56 2870 0.400000 +56 2942 0.400000 +56 2991 0.400000 +56 3090 0.400000 +56 3103 0.400000 +56 3153 0.400000 +56 3173 0.400000 +57 102 0.400000 +57 228 0.400000 +57 324 0.400000 +57 353 0.400000 +57 407 0.400000 +57 412 0.400000 +57 464 0.400000 +57 607 0.400000 +57 656 0.400000 +57 664 0.400000 +57 715 0.400000 +57 725 0.400000 +57 727 0.400000 +57 747 0.400000 +57 790 0.400000 +57 873 0.400000 +57 896 0.400000 +57 949 0.400000 +57 988 0.400000 +57 989 0.400000 +57 1003 0.400000 +57 1118 0.400000 +57 1127 0.400000 +57 1136 0.400000 +57 1153 0.400000 +57 1160 0.400000 +57 1213 0.400000 +57 1386 0.400000 +57 1469 0.400000 +57 1549 0.400000 +57 1550 0.400000 +57 1656 0.400000 +57 1669 0.400000 +57 1817 0.400000 +57 1864 0.400000 +57 1983 0.400000 +57 2034 0.400000 +57 2035 0.400000 +57 2191 0.400000 +57 2290 0.400000 +57 2331 0.400000 +57 2333 0.400000 +57 2366 0.400000 +57 2527 0.400000 +57 2554 0.400000 +57 2594 0.400000 +57 2621 0.400000 +57 2744 0.400000 +57 2788 0.400000 +57 2798 0.400000 +57 2886 0.400000 +57 2931 0.400000 +57 2938 0.400000 +57 2947 0.400000 +57 2953 0.400000 +57 2979 0.400000 +57 2983 0.400000 +57 3113 0.400000 +58 33 0.400000 +58 53 0.400000 +58 77 0.400000 +58 171 0.400000 +58 189 0.400000 +58 300 0.400000 +58 375 0.400000 +58 530 0.400000 +58 542 0.400000 +58 650 0.400000 +58 692 0.400000 +58 699 0.400000 +58 831 0.400000 +58 842 0.400000 +58 924 0.400000 +58 938 0.400000 +58 976 0.400000 +58 996 0.400000 +58 1009 0.400000 +58 1033 0.400000 +58 1078 0.400000 +58 1148 0.400000 +58 1234 0.400000 +58 1303 0.400000 +58 1352 0.400000 +58 1484 0.400000 +58 1489 0.400000 +58 1508 0.400000 +58 1640 0.400000 +58 1667 0.400000 +58 1668 0.400000 +58 1710 0.400000 +58 1775 0.400000 +58 1791 0.400000 +58 1898 0.400000 +58 2022 0.400000 +58 2031 0.400000 +58 2043 0.400000 +58 2052 0.400000 +58 2111 0.400000 +58 2147 0.400000 +58 2224 0.400000 +58 2270 0.400000 +58 2273 0.400000 +58 2329 0.400000 +58 2462 0.400000 +58 2487 0.400000 +58 2488 0.400000 +58 2588 0.400000 +58 2638 0.400000 +58 2703 0.400000 +58 2733 0.400000 +58 2746 0.400000 +58 2796 0.400000 +58 2830 0.400000 +58 2854 0.400000 +58 2857 0.400000 +58 2877 0.400000 +58 2929 0.400000 +58 2966 0.400000 +59 18 0.400000 +59 85 0.400000 +59 94 0.400000 +59 122 0.400000 +59 165 0.400000 +59 168 0.400000 +59 212 0.400000 +59 274 0.400000 +59 283 0.400000 +59 333 0.400000 +59 340 0.400000 +59 367 0.400000 +59 435 0.400000 +59 454 0.400000 +59 537 0.400000 +59 548 0.400000 +59 596 0.400000 +59 669 0.400000 +59 691 0.400000 +59 697 0.400000 +59 710 0.400000 +59 814 0.400000 +59 840 0.400000 +59 853 0.400000 +59 890 0.400000 +59 899 0.400000 +59 962 0.400000 +59 969 0.400000 +59 976 0.400000 +59 1017 0.400000 +59 1141 0.400000 +59 1155 0.400000 +59 1230 0.400000 +59 1242 0.400000 +59 1300 0.400000 +59 1328 0.400000 +59 1351 0.400000 +59 1448 0.400000 +59 1624 0.400000 +59 1708 0.400000 +59 1813 0.400000 +59 1817 0.400000 +59 1889 0.400000 +59 1955 0.400000 +59 1957 0.400000 +59 2051 0.400000 +59 2075 0.400000 +59 2200 0.400000 +59 2282 0.400000 +59 2333 0.400000 +59 2383 0.400000 +59 2401 0.400000 +59 2503 0.400000 +59 2534 0.400000 +59 2566 0.400000 +59 2589 0.400000 +59 2669 0.400000 +59 2677 0.400000 +59 2750 0.400000 +59 2763 0.400000 +59 2801 0.400000 +59 2843 0.400000 +59 2884 0.400000 +59 2947 0.400000 +59 2968 0.400000 +59 3055 0.400000 +59 3083 0.400000 +59 3150 0.400000 +59 3199 0.400000 +60 24 0.400000 +60 72 0.400000 +60 91 0.400000 +60 146 0.400000 +60 176 0.400000 +60 256 0.400000 +60 294 0.400000 +60 405 0.400000 +60 508 0.400000 +60 540 0.400000 +60 549 0.400000 +60 702 0.400000 +60 870 0.400000 +60 882 0.400000 +60 891 0.400000 +60 943 0.400000 +60 975 0.400000 +60 1020 0.400000 +60 1073 0.400000 +60 1092 0.400000 +60 1103 0.400000 +60 1158 0.400000 +60 1178 0.400000 +60 1203 0.400000 +60 1209 0.400000 +60 1210 0.400000 +60 1289 0.400000 +60 1324 0.400000 +60 1329 0.400000 +60 1339 0.400000 +60 1367 0.400000 +60 1398 0.400000 +60 1524 0.400000 +60 1690 0.400000 +60 1748 0.400000 +60 1824 0.400000 +60 1853 0.400000 +60 1935 0.400000 +60 1990 0.400000 +60 2067 0.400000 +60 2208 0.400000 +60 2365 0.400000 +60 2375 0.400000 +60 2469 0.400000 +60 2608 0.400000 +60 2670 0.400000 +60 2685 0.400000 +60 2766 0.400000 +60 2845 0.400000 +60 2984 0.400000 +60 3045 0.400000 +60 3049 0.400000 +60 3057 0.400000 +60 3087 0.400000 +60 3134 0.400000 +60 3169 0.400000 +61 10 0.400000 +61 24 0.400000 +61 32 0.400000 +61 165 0.400000 +61 203 0.400000 +61 242 0.400000 +61 247 0.400000 +61 250 0.400000 +61 367 0.400000 +61 446 0.400000 +61 713 0.400000 +61 730 0.400000 +61 770 0.400000 +61 776 0.400000 +61 806 0.400000 +61 824 0.400000 +61 850 0.400000 +61 912 0.400000 +61 1042 0.400000 +61 1120 0.400000 +61 1354 0.400000 +61 1480 0.400000 +61 1501 0.400000 +61 1507 0.400000 +61 1569 0.400000 +61 1583 0.400000 +61 1687 0.400000 +61 1690 0.400000 +61 1733 0.400000 +61 1810 0.400000 +61 1975 0.400000 +61 2077 0.400000 +61 2221 0.400000 +61 2252 0.400000 +61 2298 0.400000 +61 2319 0.400000 +61 2328 0.400000 +61 2427 0.400000 +61 2523 0.400000 +61 2557 0.400000 +61 2692 0.400000 +61 2720 0.400000 +61 2725 0.400000 +61 2752 0.400000 +61 2770 0.400000 +61 2846 0.400000 +61 2922 0.400000 +61 3032 0.400000 +61 3055 0.400000 +61 3088 0.400000 +61 3150 0.400000 +61 3152 0.400000 +61 3186 0.400000 +61 3200 0.400000 +62 72 0.400000 +62 304 0.400000 +62 327 0.400000 +62 388 0.400000 +62 574 0.400000 +62 627 0.400000 +62 640 0.400000 +62 840 0.400000 +62 848 0.400000 +62 909 0.400000 +62 949 0.400000 +62 990 0.400000 +62 1072 0.400000 +62 1172 0.400000 +62 1202 0.400000 +62 1242 0.400000 +62 1257 0.400000 +62 1258 0.400000 +62 1294 0.400000 +62 1317 0.400000 +62 1324 0.400000 +62 1342 0.400000 +62 1359 0.400000 +62 1384 0.400000 +62 1456 0.400000 +62 1505 0.400000 +62 1614 0.400000 +62 1632 0.400000 +62 1642 0.400000 +62 1668 0.400000 +62 1722 0.400000 +62 1723 0.400000 +62 1939 0.400000 +62 1948 0.400000 +62 2001 0.400000 +62 2016 0.400000 +62 2066 0.400000 +62 2083 0.400000 +62 2332 0.400000 +62 2490 0.400000 +62 2495 0.400000 +62 2578 0.400000 +62 2618 0.400000 +62 2751 0.400000 +62 2784 0.400000 +62 2808 0.400000 +62 2865 0.400000 +62 2882 0.400000 +62 2926 0.400000 +62 2957 0.400000 +62 3090 0.400000 +62 3168 0.400000 +63 21 0.400000 +63 42 0.400000 +63 112 0.400000 +63 148 0.400000 +63 204 0.400000 +63 243 0.400000 +63 275 0.400000 +63 348 0.400000 +63 420 0.400000 +63 421 0.400000 +63 431 0.400000 +63 566 0.400000 +63 657 0.400000 +63 697 0.400000 +63 753 0.400000 +63 841 0.400000 +63 850 0.400000 +63 861 0.400000 +63 1030 0.400000 +63 1074 0.400000 +63 1130 0.400000 +63 1363 0.400000 +63 1403 0.400000 +63 1491 0.400000 +63 1502 0.400000 +63 1560 0.400000 +63 1600 0.400000 +63 1638 0.400000 +63 1819 0.400000 +63 1843 0.400000 +63 1862 0.400000 +63 1927 0.400000 +63 1952 0.400000 +63 1986 0.400000 +63 2055 0.400000 +63 2159 0.400000 +63 2226 0.400000 +63 2245 0.400000 +63 2248 0.400000 +63 2321 0.400000 +63 2387 0.400000 +63 2501 0.400000 +63 2537 0.400000 +63 2642 0.400000 +63 2713 0.400000 +63 2756 0.400000 +63 2791 0.400000 +63 2812 0.400000 +63 2842 0.400000 +63 2861 0.400000 +63 2894 0.400000 +63 2925 0.400000 +63 2933 0.400000 +63 3139 0.400000 +64 71 0.400000 +64 108 0.400000 +64 109 0.400000 +64 142 0.400000 +64 226 0.400000 +64 417 0.400000 +64 438 0.400000 +64 581 0.400000 +64 602 0.400000 +64 604 0.400000 +64 714 0.400000 +64 775 0.400000 +64 824 0.400000 +64 868 0.400000 +64 891 0.400000 +64 928 0.400000 +64 994 0.400000 +64 996 0.400000 +64 1100 0.400000 +64 1121 0.400000 +64 1127 0.400000 +64 1331 0.400000 +64 1337 0.400000 +64 1339 0.400000 +64 1348 0.400000 +64 1356 0.400000 +64 1370 0.400000 +64 1395 0.400000 +64 1424 0.400000 +64 1434 0.400000 +64 1467 0.400000 +64 1481 0.400000 +64 1624 0.400000 +64 1652 0.400000 +64 1654 0.400000 +64 1713 0.400000 +64 1728 0.400000 +64 1771 0.400000 +64 1818 0.400000 +64 1846 0.400000 +64 1855 0.400000 +64 1881 0.400000 +64 1972 0.400000 +64 2029 0.400000 +64 2138 0.400000 +64 2149 0.400000 +64 2235 0.400000 +64 2285 0.400000 +64 2300 0.400000 +64 2494 0.400000 +64 2587 0.400000 +64 2625 0.400000 +64 2678 0.400000 +64 2712 0.400000 +64 2720 0.400000 +64 2741 0.400000 +64 2766 0.400000 +64 2775 0.400000 +64 2844 0.400000 +64 2850 0.400000 +64 2925 0.400000 +64 2941 0.400000 +64 2957 0.400000 +64 2967 0.400000 +64 3058 0.400000 +64 3067 0.400000 +64 3077 0.400000 +65 167 0.400000 +65 302 0.400000 +65 332 0.400000 +65 404 0.400000 +65 521 0.400000 +65 539 0.400000 +65 545 0.400000 +65 558 0.400000 +65 648 0.400000 +65 698 0.400000 +65 743 0.400000 +65 822 0.400000 +65 831 0.400000 +65 871 0.400000 +65 915 0.400000 +65 992 0.400000 +65 1025 0.400000 +65 1034 0.400000 +65 1134 0.400000 +65 1161 0.400000 +65 1180 0.400000 +65 1244 0.400000 +65 1259 0.400000 +65 1304 0.400000 +65 1309 0.400000 +65 1424 0.400000 +65 1457 0.400000 +65 1521 0.400000 +65 1524 0.400000 +65 1541 0.400000 +65 1598 0.400000 +65 1615 0.400000 +65 1616 0.400000 +65 1673 0.400000 +65 1683 0.400000 +65 1823 0.400000 +65 1894 0.400000 +65 1955 0.400000 +65 2119 0.400000 +65 2172 0.400000 +65 2182 0.400000 +65 2273 0.400000 +65 2302 0.400000 +65 2377 0.400000 +65 2386 0.400000 +65 2657 0.400000 +65 2661 0.400000 +65 2747 0.400000 +65 2792 0.400000 +65 2793 0.400000 +65 2812 0.400000 +65 2814 0.400000 +65 2854 0.400000 +65 2900 0.400000 +65 3000 0.400000 +65 3003 0.400000 +65 3037 0.400000 +65 3050 0.400000 +65 3062 0.400000 +65 3066 0.400000 +65 3147 0.400000 +65 3153 0.400000 +66 29 0.400000 +66 59 0.400000 +66 139 0.400000 +66 140 0.400000 +66 144 0.400000 +66 180 0.400000 +66 206 0.400000 +66 215 0.400000 +66 329 0.400000 +66 383 0.400000 +66 388 0.400000 +66 497 0.400000 +66 526 0.400000 +66 586 0.400000 +66 645 0.400000 +66 786 0.400000 +66 798 0.400000 +66 799 0.400000 +66 845 0.400000 +66 912 0.400000 +66 946 0.400000 +66 964 0.400000 +66 966 0.400000 +66 1048 0.400000 +66 1051 0.400000 +66 1076 0.400000 +66 1081 0.400000 +66 1100 0.400000 +66 1120 0.400000 +66 1179 0.400000 +66 1184 0.400000 +66 1199 0.400000 +66 1242 0.400000 +66 1266 0.400000 +66 1388 0.400000 +66 1412 0.400000 +66 1421 0.400000 +66 1432 0.400000 +66 1495 0.400000 +66 1533 0.400000 +66 1561 0.400000 +66 1592 0.400000 +66 1645 0.400000 +66 1680 0.400000 +66 1695 0.400000 +66 1702 0.400000 +66 1877 0.400000 +66 1904 0.400000 +66 1992 0.400000 +66 2006 0.400000 +66 2018 0.400000 +66 2027 0.400000 +66 2067 0.400000 +66 2084 0.400000 +66 2086 0.400000 +66 2099 0.400000 +66 2232 0.400000 +66 2242 0.400000 +66 2246 0.400000 +66 2282 0.400000 +66 2343 0.400000 +66 2379 0.400000 +66 2581 0.400000 +66 2614 0.400000 +66 2615 0.400000 +66 2622 0.400000 +66 2765 0.400000 +66 2797 0.400000 +66 2880 0.400000 +66 3137 0.400000 +66 3196 0.400000 +67 21 0.400000 +67 23 0.400000 +67 55 0.400000 +67 196 0.400000 +67 259 0.400000 +67 310 0.400000 +67 330 0.400000 +67 349 0.400000 +67 366 0.400000 +67 377 0.400000 +67 439 0.400000 +67 440 0.400000 +67 481 0.400000 +67 491 0.400000 +67 583 0.400000 +67 620 0.400000 +67 658 0.400000 +67 674 0.400000 +67 695 0.400000 +67 763 0.400000 +67 779 0.400000 +67 831 0.400000 +67 856 0.400000 +67 925 0.400000 +67 996 0.400000 +67 1037 0.400000 +67 1088 0.400000 +67 1096 0.400000 +67 1169 0.400000 +67 1200 0.400000 +67 1272 0.400000 +67 1330 0.400000 +67 1392 0.400000 +67 1452 0.400000 +67 1524 0.400000 +67 1530 0.400000 +67 1604 0.400000 +67 1699 0.400000 +67 1720 0.400000 +67 1736 0.400000 +67 1846 0.400000 +67 1848 0.400000 +67 1929 0.400000 +67 1930 0.400000 +67 1952 0.400000 +67 1963 0.400000 +67 1990 0.400000 +67 2005 0.400000 +67 2093 0.400000 +67 2126 0.400000 +67 2155 0.400000 +67 2157 0.400000 +67 2210 0.400000 +67 2224 0.400000 +67 2263 0.400000 +67 2308 0.400000 +67 2449 0.400000 +67 2582 0.400000 +67 2596 0.400000 +67 2655 0.400000 +67 2692 0.400000 +67 2771 0.400000 +67 2799 0.400000 +67 3158 0.400000 +68 154 0.400000 +68 169 0.400000 +68 269 0.400000 +68 320 0.400000 +68 372 0.400000 +68 482 0.400000 +68 520 0.400000 +68 556 0.400000 +68 567 0.400000 +68 627 0.400000 +68 666 0.400000 +68 745 0.400000 +68 787 0.400000 +68 814 0.400000 +68 826 0.400000 +68 864 0.400000 +68 971 0.400000 +68 991 0.400000 +68 1013 0.400000 +68 1115 0.400000 +68 1128 0.400000 +68 1204 0.400000 +68 1274 0.400000 +68 1287 0.400000 +68 1374 0.400000 +68 1377 0.400000 +68 1396 0.400000 +68 1420 0.400000 +68 1424 0.400000 +68 1465 0.400000 +68 1469 0.400000 +68 1531 0.400000 +68 1643 0.400000 +68 1702 0.400000 +68 1714 0.400000 +68 1844 0.400000 +68 1895 0.400000 +68 1907 0.400000 +68 1926 0.400000 +68 1972 0.400000 +68 1974 0.400000 +68 2010 0.400000 +68 2050 0.400000 +68 2095 0.400000 +68 2160 0.400000 +68 2161 0.400000 +68 2207 0.400000 +68 2373 0.400000 +68 2454 0.400000 +68 2549 0.400000 +68 2853 0.400000 +68 3027 0.400000 +68 3061 0.400000 +68 3106 0.400000 +68 3177 0.400000 +69 127 0.400000 +69 135 0.400000 +69 144 0.400000 +69 176 0.400000 +69 273 0.400000 +69 278 0.400000 +69 429 0.400000 +69 430 0.400000 +69 436 0.400000 +69 446 0.400000 +69 484 0.400000 +69 601 0.400000 +69 827 0.400000 +69 852 0.400000 +69 879 0.400000 +69 885 0.400000 +69 978 0.400000 +69 1016 0.400000 +69 1088 0.400000 +69 1155 0.400000 +69 1174 0.400000 +69 1224 0.400000 +69 1228 0.400000 +69 1268 0.400000 +69 1271 0.400000 +69 1275 0.400000 +69 1279 0.400000 +69 1301 0.400000 +69 1358 0.400000 +69 1391 0.400000 +69 1533 0.400000 +69 1613 0.400000 +69 1630 0.400000 +69 1642 0.400000 +69 1717 0.400000 +69 1718 0.400000 +69 1876 0.400000 +69 1880 0.400000 +69 1891 0.400000 +69 1898 0.400000 +69 1929 0.400000 +69 2020 0.400000 +69 2025 0.400000 +69 2081 0.400000 +69 2149 0.400000 +69 2153 0.400000 +69 2213 0.400000 +69 2235 0.400000 +69 2240 0.400000 +69 2320 0.400000 +69 2398 0.400000 +69 2415 0.400000 +69 2417 0.400000 +69 2426 0.400000 +69 2435 0.400000 +69 2455 0.400000 +69 2488 0.400000 +69 2595 0.400000 +69 2668 0.400000 +69 2755 0.400000 +69 2779 0.400000 +69 2792 0.400000 +69 2935 0.400000 +69 3101 0.400000 +69 3133 0.400000 +70 16 0.400000 +70 131 0.400000 +70 214 0.400000 +70 217 0.400000 +70 369 0.400000 +70 370 0.400000 +70 487 0.400000 +70 563 0.400000 +70 575 0.400000 +70 580 0.400000 +70 734 0.400000 +70 779 0.400000 +70 783 0.400000 +70 788 0.400000 +70 946 0.400000 +70 984 0.400000 +70 1092 0.400000 +70 1222 0.400000 +70 1313 0.400000 +70 1343 0.400000 +70 1388 0.400000 +70 1453 0.400000 +70 1471 0.400000 +70 1620 0.400000 +70 1895 0.400000 +70 1899 0.400000 +70 1987 0.400000 +70 2016 0.400000 +70 2032 0.400000 +70 2039 0.400000 +70 2075 0.400000 +70 2079 0.400000 +70 2143 0.400000 +70 2161 0.400000 +70 2178 0.400000 +70 2186 0.400000 +70 2261 0.400000 +70 2353 0.400000 +70 2432 0.400000 +70 2455 0.400000 +70 2500 0.400000 +70 2513 0.400000 +70 2519 0.400000 +70 2551 0.400000 +70 2688 0.400000 +70 2734 0.400000 +70 2782 0.400000 +70 2810 0.400000 +70 2822 0.400000 +70 2858 0.400000 +70 2891 0.400000 +70 2898 0.400000 +70 2973 0.400000 +70 3007 0.400000 +70 3020 0.400000 +70 3030 0.400000 +70 3042 0.400000 +70 3093 0.400000 +70 3145 0.400000 +71 55 0.400000 +71 88 0.400000 +71 103 0.400000 +71 104 0.400000 +71 140 0.400000 +71 191 0.400000 +71 210 0.400000 +71 212 0.400000 +71 308 0.400000 +71 355 0.400000 +71 393 0.400000 +71 415 0.400000 +71 432 0.400000 +71 484 0.400000 +71 524 0.400000 +71 565 0.400000 +71 673 0.400000 +71 684 0.400000 +71 725 0.400000 +71 739 0.400000 +71 832 0.400000 +71 923 0.400000 +71 1080 0.400000 +71 1225 0.400000 +71 1300 0.400000 +71 1457 0.400000 +71 1520 0.400000 +71 1523 0.400000 +71 1549 0.400000 +71 1567 0.400000 +71 1633 0.400000 +71 1726 0.400000 +71 1793 0.400000 +71 1798 0.400000 +71 1817 0.400000 +71 1850 0.400000 +71 1948 0.400000 +71 2024 0.400000 +71 2027 0.400000 +71 2041 0.400000 +71 2152 0.400000 +71 2223 0.400000 +71 2277 0.400000 +71 2421 0.400000 +71 2481 0.400000 +71 2509 0.400000 +71 2524 0.400000 +71 2567 0.400000 +71 2590 0.400000 +71 2758 0.400000 +71 2878 0.400000 +71 2942 0.400000 +71 2962 0.400000 +71 3055 0.400000 +71 3129 0.400000 +72 7 0.400000 +72 74 0.400000 +72 88 0.400000 +72 107 0.400000 +72 146 0.400000 +72 222 0.400000 +72 224 0.400000 +72 404 0.400000 +72 427 0.400000 +72 436 0.400000 +72 449 0.400000 +72 481 0.400000 +72 526 0.400000 +72 575 0.400000 +72 599 0.400000 +72 623 0.400000 +72 634 0.400000 +72 701 0.400000 +72 851 0.400000 +72 859 0.400000 +72 880 0.400000 +72 974 0.400000 +72 996 0.400000 +72 1002 0.400000 +72 1015 0.400000 +72 1065 0.400000 +72 1104 0.400000 +72 1114 0.400000 +72 1133 0.400000 +72 1139 0.400000 +72 1164 0.400000 +72 1169 0.400000 +72 1200 0.400000 +72 1212 0.400000 +72 1335 0.400000 +72 1351 0.400000 +72 1417 0.400000 +72 1473 0.400000 +72 1572 0.400000 +72 1584 0.400000 +72 1602 0.400000 +72 1669 0.400000 +72 1716 0.400000 +72 1733 0.400000 +72 1737 0.400000 +72 1739 0.400000 +72 1879 0.400000 +72 1885 0.400000 +72 1906 0.400000 +72 1926 0.400000 +72 1975 0.400000 +72 2031 0.400000 +72 2058 0.400000 +72 2073 0.400000 +72 2093 0.400000 +72 2094 0.400000 +72 2164 0.400000 +72 2166 0.400000 +72 2187 0.400000 +72 2191 0.400000 +72 2251 0.400000 +72 2370 0.400000 +72 2452 0.400000 +72 2460 0.400000 +72 2517 0.400000 +72 2519 0.400000 +72 2577 0.400000 +72 2594 0.400000 +72 2632 0.400000 +72 2909 0.400000 +72 3075 0.400000 +72 3090 0.400000 +72 3115 0.400000 +73 22 0.400000 +73 55 0.400000 +73 116 0.400000 +73 197 0.400000 +73 200 0.400000 +73 213 0.400000 +73 274 0.400000 +73 289 0.400000 +73 306 0.400000 +73 369 0.400000 +73 393 0.400000 +73 401 0.400000 +73 406 0.400000 +73 416 0.400000 +73 422 0.400000 +73 457 0.400000 +73 519 0.400000 +73 534 0.400000 +73 550 0.400000 +73 657 0.400000 +73 718 0.400000 +73 737 0.400000 +73 814 0.400000 +73 1027 0.400000 +73 1095 0.400000 +73 1152 0.400000 +73 1297 0.400000 +73 1424 0.400000 +73 1512 0.400000 +73 1519 0.400000 +73 1553 0.400000 +73 1574 0.400000 +73 1612 0.400000 +73 1678 0.400000 +73 1686 0.400000 +73 1716 0.400000 +73 1770 0.400000 +73 1776 0.400000 +73 1827 0.400000 +73 1852 0.400000 +73 1903 0.400000 +73 1904 0.400000 +73 1920 0.400000 +73 1958 0.400000 +73 1963 0.400000 +73 2050 0.400000 +73 2051 0.400000 +73 2091 0.400000 +73 2098 0.400000 +73 2165 0.400000 +73 2168 0.400000 +73 2180 0.400000 +73 2194 0.400000 +73 2196 0.400000 +73 2286 0.400000 +73 2304 0.400000 +73 2351 0.400000 +73 2356 0.400000 +73 2374 0.400000 +73 2378 0.400000 +73 2382 0.400000 +73 2405 0.400000 +73 2429 0.400000 +73 2462 0.400000 +73 2578 0.400000 +73 2598 0.400000 +73 2628 0.400000 +73 2718 0.400000 +73 2752 0.400000 +73 2815 0.400000 +73 2865 0.400000 +73 2915 0.400000 +73 2944 0.400000 +73 2954 0.400000 +73 3024 0.400000 +74 32 0.400000 +74 39 0.400000 +74 89 0.400000 +74 152 0.400000 +74 203 0.400000 +74 280 0.400000 +74 321 0.400000 +74 380 0.400000 +74 419 0.400000 +74 434 0.400000 +74 438 0.400000 +74 504 0.400000 +74 517 0.400000 +74 691 0.400000 +74 693 0.400000 +74 702 0.400000 +74 718 0.400000 +74 739 0.400000 +74 751 0.400000 +74 814 0.400000 +74 871 0.400000 +74 917 0.400000 +74 924 0.400000 +74 930 0.400000 +74 961 0.400000 +74 1075 0.400000 +74 1108 0.400000 +74 1127 0.400000 +74 1213 0.400000 +74 1269 0.400000 +74 1274 0.400000 +74 1410 0.400000 +74 1413 0.400000 +74 1457 0.400000 +74 1489 0.400000 +74 1595 0.400000 +74 1728 0.400000 +74 1769 0.400000 +74 1788 0.400000 +74 1827 0.400000 +74 1834 0.400000 +74 1913 0.400000 +74 1924 0.400000 +74 1985 0.400000 +74 2002 0.400000 +74 2007 0.400000 +74 2037 0.400000 +74 2053 0.400000 +74 2058 0.400000 +74 2129 0.400000 +74 2217 0.400000 +74 2260 0.400000 +74 2292 0.400000 +74 2301 0.400000 +74 2341 0.400000 +74 2442 0.400000 +74 2558 0.400000 +74 2643 0.400000 +74 2661 0.400000 +74 2753 0.400000 +74 2778 0.400000 +74 2976 0.400000 +74 3000 0.400000 +74 3058 0.400000 +74 3070 0.400000 +74 3176 0.400000 +74 3180 0.400000 +75 78 0.400000 +75 138 0.400000 +75 168 0.400000 +75 189 0.400000 +75 248 0.400000 +75 277 0.400000 +75 307 0.400000 +75 479 0.400000 +75 500 0.400000 +75 572 0.400000 +75 576 0.400000 +75 595 0.400000 +75 614 0.400000 +75 626 0.400000 +75 715 0.400000 +75 734 0.400000 +75 750 0.400000 +75 771 0.400000 +75 820 0.400000 +75 834 0.400000 +75 899 0.400000 +75 944 0.400000 +75 1013 0.400000 +75 1057 0.400000 +75 1189 0.400000 +75 1220 0.400000 +75 1227 0.400000 +75 1258 0.400000 +75 1335 0.400000 +75 1348 0.400000 +75 1356 0.400000 +75 1381 0.400000 +75 1403 0.400000 +75 1444 0.400000 +75 1485 0.400000 +75 1542 0.400000 +75 1578 0.400000 +75 1651 0.400000 +75 1674 0.400000 +75 1686 0.400000 +75 1740 0.400000 +75 1881 0.400000 +75 1887 0.400000 +75 1952 0.400000 +75 1985 0.400000 +75 2130 0.400000 +75 2162 0.400000 +75 2191 0.400000 +75 2264 0.400000 +75 2283 0.400000 +75 2329 0.400000 +75 2331 0.400000 +75 2345 0.400000 +75 2514 0.400000 +75 2536 0.400000 +75 2552 0.400000 +75 2658 0.400000 +75 2710 0.400000 +75 2808 0.400000 +75 2843 0.400000 +75 2905 0.400000 +75 2986 0.400000 +75 3057 0.400000 +75 3083 0.400000 +75 3141 0.400000 +75 3175 0.400000 +76 217 0.400000 +76 267 0.400000 +76 288 0.400000 +76 292 0.400000 +76 431 0.400000 +76 476 0.400000 +76 747 0.400000 +76 780 0.400000 +76 839 0.400000 +76 875 0.400000 +76 892 0.400000 +76 930 0.400000 +76 963 0.400000 +76 1067 0.400000 +76 1080 0.400000 +76 1123 0.400000 +76 1306 0.400000 +76 1325 0.400000 +76 1418 0.400000 +76 1552 0.400000 +76 1822 0.400000 +76 1837 0.400000 +76 1855 0.400000 +76 1908 0.400000 +76 1946 0.400000 +76 2094 0.400000 +76 2169 0.400000 +76 2230 0.400000 +76 2305 0.400000 +76 2320 0.400000 +76 2327 0.400000 +76 2345 0.400000 +76 2406 0.400000 +76 2408 0.400000 +76 2481 0.400000 +76 2489 0.400000 +76 2561 0.400000 +76 2617 0.400000 +76 2718 0.400000 +76 2721 0.400000 +76 2737 0.400000 +76 2772 0.400000 +76 2894 0.400000 +76 2931 0.400000 +76 3001 0.400000 +76 3014 0.400000 +76 3031 0.400000 +76 3107 0.400000 +76 3176 0.400000 +76 3181 0.400000 +77 28 0.400000 +77 81 0.400000 +77 108 0.400000 +77 243 0.400000 +77 267 0.400000 +77 283 0.400000 +77 305 0.400000 +77 358 0.400000 +77 370 0.400000 +77 399 0.400000 +77 478 0.400000 +77 484 0.400000 +77 498 0.400000 +77 600 0.400000 +77 647 0.400000 +77 692 0.400000 +77 893 0.400000 +77 897 0.400000 +77 989 0.400000 +77 1010 0.400000 +77 1041 0.400000 +77 1219 0.400000 +77 1259 0.400000 +77 1476 0.400000 +77 1482 0.400000 +77 1506 0.400000 +77 1508 0.400000 +77 1529 0.400000 +77 1539 0.400000 +77 1552 0.400000 +77 1561 0.400000 +77 1590 0.400000 +77 1627 0.400000 +77 1640 0.400000 +77 1644 0.400000 +77 1650 0.400000 +77 1706 0.400000 +77 1712 0.400000 +77 1746 0.400000 +77 1787 0.400000 +77 1798 0.400000 +77 1805 0.400000 +77 1872 0.400000 +77 1916 0.400000 +77 1925 0.400000 +77 1987 0.400000 +77 2076 0.400000 +77 2081 0.400000 +77 2113 0.400000 +77 2129 0.400000 +77 2162 0.400000 +77 2296 0.400000 +77 2352 0.400000 +77 2489 0.400000 +77 2496 0.400000 +77 2504 0.400000 +77 2558 0.400000 +77 2649 0.400000 +77 2701 0.400000 +77 2716 0.400000 +77 2738 0.400000 +77 2876 0.400000 +77 2897 0.400000 +77 2942 0.400000 +77 3080 0.400000 +77 3128 0.400000 +77 3166 0.400000 +77 3168 0.400000 +77 3190 0.400000 +78 183 0.400000 +78 305 0.400000 +78 354 0.400000 +78 363 0.400000 +78 365 0.400000 +78 499 0.400000 +78 595 0.400000 +78 616 0.400000 +78 643 0.400000 +78 654 0.400000 +78 670 0.400000 +78 747 0.400000 +78 757 0.400000 +78 775 0.400000 +78 818 0.400000 +78 877 0.400000 +78 929 0.400000 +78 1024 0.400000 +78 1045 0.400000 +78 1050 0.400000 +78 1058 0.400000 +78 1062 0.400000 +78 1087 0.400000 +78 1102 0.400000 +78 1176 0.400000 +78 1285 0.400000 +78 1287 0.400000 +78 1342 0.400000 +78 1383 0.400000 +78 1415 0.400000 +78 1418 0.400000 +78 1485 0.400000 +78 1493 0.400000 +78 1495 0.400000 +78 1590 0.400000 +78 1603 0.400000 +78 1711 0.400000 +78 1717 0.400000 +78 1853 0.400000 +78 1876 0.400000 +78 1931 0.400000 +78 1966 0.400000 +78 2003 0.400000 +78 2097 0.400000 +78 2164 0.400000 +78 2225 0.400000 +78 2279 0.400000 +78 2332 0.400000 +78 2379 0.400000 +78 2412 0.400000 +78 2437 0.400000 +78 2487 0.400000 +78 2541 0.400000 +78 2608 0.400000 +78 2612 0.400000 +78 2615 0.400000 +78 2633 0.400000 +78 2703 0.400000 +78 2761 0.400000 +78 2879 0.400000 +78 2882 0.400000 +78 2919 0.400000 +78 2925 0.400000 +78 2934 0.400000 +78 2959 0.400000 +78 2970 0.400000 +78 2996 0.400000 +78 3087 0.400000 +78 3098 0.400000 +78 3190 0.400000 +79 116 0.400000 +79 118 0.400000 +79 191 0.400000 +79 203 0.400000 +79 239 0.400000 +79 248 0.400000 +79 433 0.400000 +79 663 0.400000 +79 731 0.400000 +79 856 0.400000 +79 944 0.400000 +79 977 0.400000 +79 1059 0.400000 +79 1170 0.400000 +79 1176 0.400000 +79 1381 0.400000 +79 1697 0.400000 +79 1701 0.400000 +79 1720 0.400000 +79 1724 0.400000 +79 1738 0.400000 +79 1756 0.400000 +79 1926 0.400000 +79 1988 0.400000 +79 2030 0.400000 +79 2077 0.400000 +79 2105 0.400000 +79 2107 0.400000 +79 2209 0.400000 +79 2310 0.400000 +79 2350 0.400000 +79 2373 0.400000 +79 2439 0.400000 +79 2511 0.400000 +79 2566 0.400000 +79 2581 0.400000 +79 2601 0.400000 +79 2606 0.400000 +79 2672 0.400000 +79 2687 0.400000 +79 2801 0.400000 +79 2809 0.400000 +79 2859 0.400000 +79 2881 0.400000 +79 2986 0.400000 +79 3007 0.400000 +79 3013 0.400000 +79 3121 0.400000 +80 44 0.400000 +80 68 0.400000 +80 238 0.400000 +80 254 0.400000 +80 278 0.400000 +80 323 0.400000 +80 411 0.400000 +80 485 0.400000 +80 497 0.400000 +80 544 0.400000 +80 684 0.400000 +80 720 0.400000 +80 745 0.400000 +80 753 0.400000 +80 759 0.400000 +80 785 0.400000 +80 801 0.400000 +80 927 0.400000 +80 1081 0.400000 +80 1110 0.400000 +80 1156 0.400000 +80 1174 0.400000 +80 1201 0.400000 +80 1275 0.400000 +80 1295 0.400000 +80 1299 0.400000 +80 1312 0.400000 +80 1503 0.400000 +80 1527 0.400000 +80 1541 0.400000 +80 1702 0.400000 +80 1756 0.400000 +80 1842 0.400000 +80 1857 0.400000 +80 2030 0.400000 +80 2031 0.400000 +80 2070 0.400000 +80 2112 0.400000 +80 2162 0.400000 +80 2197 0.400000 +80 2200 0.400000 +80 2236 0.400000 +80 2340 0.400000 +80 2384 0.400000 +80 2491 0.400000 +80 2519 0.400000 +80 2538 0.400000 +80 2584 0.400000 +80 2586 0.400000 +80 2858 0.400000 +80 2896 0.400000 +80 2907 0.400000 +80 2908 0.400000 +80 2973 0.400000 +80 3001 0.400000 +80 3035 0.400000 +80 3051 0.400000 +80 3106 0.400000 +80 3184 0.400000 +81 93 0.400000 +81 99 0.400000 +81 149 0.400000 +81 155 0.400000 +81 238 0.400000 +81 251 0.400000 +81 348 0.400000 +81 352 0.400000 +81 428 0.400000 +81 442 0.400000 +81 469 0.400000 +81 510 0.400000 +81 514 0.400000 +81 568 0.400000 +81 610 0.400000 +81 651 0.400000 +81 674 0.400000 +81 874 0.400000 +81 907 0.400000 +81 922 0.400000 +81 928 0.400000 +81 1157 0.400000 +81 1425 0.400000 +81 1472 0.400000 +81 1579 0.400000 +81 1656 0.400000 +81 1678 0.400000 +81 1727 0.400000 +81 1844 0.400000 +81 1886 0.400000 +81 1888 0.400000 +81 1895 0.400000 +81 1904 0.400000 +81 1930 0.400000 +81 1950 0.400000 +81 1974 0.400000 +81 1993 0.400000 +81 2039 0.400000 +81 2094 0.400000 +81 2204 0.400000 +81 2207 0.400000 +81 2239 0.400000 +81 2289 0.400000 +81 2297 0.400000 +81 2436 0.400000 +81 2516 0.400000 +81 2539 0.400000 +81 2611 0.400000 +81 2769 0.400000 +81 2824 0.400000 +81 2883 0.400000 +81 2894 0.400000 +81 2908 0.400000 +81 2986 0.400000 +81 3007 0.400000 +81 3087 0.400000 +81 3142 0.400000 +81 3160 0.400000 +81 3187 0.400000 +82 9 0.400000 +82 55 0.400000 +82 83 0.400000 +82 99 0.400000 +82 147 0.400000 +82 152 0.400000 +82 221 0.400000 +82 227 0.400000 +82 289 0.400000 +82 316 0.400000 +82 320 0.400000 +82 329 0.400000 +82 340 0.400000 +82 394 0.400000 +82 409 0.400000 +82 458 0.400000 +82 536 0.400000 +82 644 0.400000 +82 697 0.400000 +82 739 0.400000 +82 769 0.400000 +82 825 0.400000 +82 857 0.400000 +82 957 0.400000 +82 969 0.400000 +82 970 0.400000 +82 1007 0.400000 +82 1253 0.400000 +82 1272 0.400000 +82 1284 0.400000 +82 1314 0.400000 +82 1341 0.400000 +82 1344 0.400000 +82 1430 0.400000 +82 1545 0.400000 +82 1651 0.400000 +82 1668 0.400000 +82 1707 0.400000 +82 1750 0.400000 +82 1800 0.400000 +82 1867 0.400000 +82 1897 0.400000 +82 2082 0.400000 +82 2115 0.400000 +82 2209 0.400000 +82 2210 0.400000 +82 2236 0.400000 +82 2272 0.400000 +82 2312 0.400000 +82 2381 0.400000 +82 2391 0.400000 +82 2426 0.400000 +82 2453 0.400000 +82 2480 0.400000 +82 2495 0.400000 +82 2496 0.400000 +82 2554 0.400000 +82 2566 0.400000 +82 2581 0.400000 +82 2641 0.400000 +82 2655 0.400000 +82 2719 0.400000 +82 2817 0.400000 +82 2844 0.400000 +82 2965 0.400000 +82 2970 0.400000 +82 3022 0.400000 +82 3100 0.400000 +82 3154 0.400000 +82 3180 0.400000 +83 79 0.400000 +83 96 0.400000 +83 131 0.400000 +83 137 0.400000 +83 176 0.400000 +83 187 0.400000 +83 218 0.400000 +83 223 0.400000 +83 290 0.400000 +83 346 0.400000 +83 352 0.400000 +83 537 0.400000 +83 576 0.400000 +83 590 0.400000 +83 658 0.400000 +83 664 0.400000 +83 704 0.400000 +83 786 0.400000 +83 830 0.400000 +83 883 0.400000 +83 920 0.400000 +83 932 0.400000 +83 934 0.400000 +83 948 0.400000 +83 1004 0.400000 +83 1015 0.400000 +83 1035 0.400000 +83 1048 0.400000 +83 1063 0.400000 +83 1171 0.400000 +83 1310 0.400000 +83 1316 0.400000 +83 1341 0.400000 +83 1552 0.400000 +83 1604 0.400000 +83 1637 0.400000 +83 1641 0.400000 +83 1682 0.400000 +83 1794 0.400000 +83 1848 0.400000 +83 1887 0.400000 +83 1898 0.400000 +83 1992 0.400000 +83 2061 0.400000 +83 2063 0.400000 +83 2096 0.400000 +83 2138 0.400000 +83 2213 0.400000 +83 2218 0.400000 +83 2237 0.400000 +83 2321 0.400000 +83 2362 0.400000 +83 2421 0.400000 +83 2516 0.400000 +83 2580 0.400000 +83 2593 0.400000 +83 2620 0.400000 +83 2661 0.400000 +83 2669 0.400000 +83 2756 0.400000 +83 2800 0.400000 +83 2940 0.400000 +83 2962 0.400000 +83 2989 0.400000 +83 3040 0.400000 +83 3068 0.400000 +83 3088 0.400000 +83 3121 0.400000 +83 3161 0.400000 +83 3179 0.400000 +84 18 0.400000 +84 55 0.400000 +84 75 0.400000 +84 160 0.400000 +84 253 0.400000 +84 326 0.400000 +84 350 0.400000 +84 371 0.400000 +84 442 0.400000 +84 465 0.400000 +84 645 0.400000 +84 786 0.400000 +84 805 0.400000 +84 1013 0.400000 +84 1065 0.400000 +84 1088 0.400000 +84 1096 0.400000 +84 1133 0.400000 +84 1143 0.400000 +84 1228 0.400000 +84 1235 0.400000 +84 1256 0.400000 +84 1318 0.400000 +84 1365 0.400000 +84 1374 0.400000 +84 1665 0.400000 +84 1696 0.400000 +84 1726 0.400000 +84 1741 0.400000 +84 1770 0.400000 +84 1849 0.400000 +84 1890 0.400000 +84 1903 0.400000 +84 1970 0.400000 +84 2003 0.400000 +84 2029 0.400000 +84 2050 0.400000 +84 2145 0.400000 +84 2215 0.400000 +84 2303 0.400000 +84 2374 0.400000 +84 2505 0.400000 +84 2519 0.400000 +84 2526 0.400000 +84 2528 0.400000 +84 2550 0.400000 +84 2596 0.400000 +84 2601 0.400000 +84 2617 0.400000 +84 2640 0.400000 +84 2753 0.400000 +84 2798 0.400000 +84 2844 0.400000 +84 2942 0.400000 +84 2976 0.400000 +84 3007 0.400000 +84 3024 0.400000 +85 36 0.400000 +85 41 0.400000 +85 74 0.400000 +85 93 0.400000 +85 106 0.400000 +85 156 0.400000 +85 157 0.400000 +85 201 0.400000 +85 218 0.400000 +85 348 0.400000 +85 358 0.400000 +85 397 0.400000 +85 515 0.400000 +85 538 0.400000 +85 543 0.400000 +85 563 0.400000 +85 569 0.400000 +85 822 0.400000 +85 874 0.400000 +85 885 0.400000 +85 913 0.400000 +85 915 0.400000 +85 925 0.400000 +85 962 0.400000 +85 1068 0.400000 +85 1140 0.400000 +85 1155 0.400000 +85 1170 0.400000 +85 1192 0.400000 +85 1193 0.400000 +85 1239 0.400000 +85 1361 0.400000 +85 1374 0.400000 +85 1377 0.400000 +85 1415 0.400000 +85 1432 0.400000 +85 1493 0.400000 +85 1516 0.400000 +85 1522 0.400000 +85 1549 0.400000 +85 1570 0.400000 +85 1590 0.400000 +85 1604 0.400000 +85 1671 0.400000 +85 1777 0.400000 +85 1796 0.400000 +85 1816 0.400000 +85 1851 0.400000 +85 1880 0.400000 +85 1967 0.400000 +85 1970 0.400000 +85 1975 0.400000 +85 2135 0.400000 +85 2141 0.400000 +85 2148 0.400000 +85 2230 0.400000 +85 2267 0.400000 +85 2276 0.400000 +85 2322 0.400000 +85 2376 0.400000 +85 2381 0.400000 +85 2403 0.400000 +85 2435 0.400000 +85 2448 0.400000 +85 2618 0.400000 +85 2750 0.400000 +85 2769 0.400000 +85 2781 0.400000 +85 2825 0.400000 +85 2843 0.400000 +85 2851 0.400000 +85 2852 0.400000 +85 2977 0.400000 +85 3077 0.400000 +85 3083 0.400000 +85 3106 0.400000 +85 3143 0.400000 +85 3153 0.400000 +85 3180 0.400000 +86 221 0.400000 +86 223 0.400000 +86 258 0.400000 +86 567 0.400000 +86 601 0.400000 +86 636 0.400000 +86 682 0.400000 +86 740 0.400000 +86 874 0.400000 +86 927 0.400000 +86 945 0.400000 +86 970 0.400000 +86 1045 0.400000 +86 1063 0.400000 +86 1098 0.400000 +86 1145 0.400000 +86 1164 0.400000 +86 1167 0.400000 +86 1316 0.400000 +86 1452 0.400000 +86 1566 0.400000 +86 1670 0.400000 +86 1686 0.400000 +86 1731 0.400000 +86 1794 0.400000 +86 1867 0.400000 +86 1874 0.400000 +86 1937 0.400000 +86 2057 0.400000 +86 2097 0.400000 +86 2117 0.400000 +86 2137 0.400000 +86 2179 0.400000 +86 2191 0.400000 +86 2266 0.400000 +86 2364 0.400000 +86 2377 0.400000 +86 2487 0.400000 +86 2736 0.400000 +86 2905 0.400000 +86 2960 0.400000 +86 3083 0.400000 +86 3150 0.400000 +86 3158 0.400000 +86 3189 0.400000 +87 30 0.400000 +87 34 0.400000 +87 204 0.400000 +87 232 0.400000 +87 236 0.400000 +87 291 0.400000 +87 305 0.400000 +87 314 0.400000 +87 391 0.400000 +87 393 0.400000 +87 402 0.400000 +87 503 0.400000 +87 594 0.400000 +87 643 0.400000 +87 673 0.400000 +87 693 0.400000 +87 699 0.400000 +87 778 0.400000 +87 784 0.400000 +87 827 0.400000 +87 868 0.400000 +87 960 0.400000 +87 980 0.400000 +87 1002 0.400000 +87 1015 0.400000 +87 1067 0.400000 +87 1075 0.400000 +87 1092 0.400000 +87 1096 0.400000 +87 1103 0.400000 +87 1171 0.400000 +87 1176 0.400000 +87 1191 0.400000 +87 1203 0.400000 +87 1207 0.400000 +87 1213 0.400000 +87 1229 0.400000 +87 1233 0.400000 +87 1331 0.400000 +87 1512 0.400000 +87 1769 0.400000 +87 1855 0.400000 +87 1860 0.400000 +87 1909 0.400000 +87 1934 0.400000 +87 1967 0.400000 +87 1976 0.400000 +87 2132 0.400000 +87 2209 0.400000 +87 2255 0.400000 +87 2322 0.400000 +87 2354 0.400000 +87 2386 0.400000 +87 2487 0.400000 +87 2523 0.400000 +87 2549 0.400000 +87 2562 0.400000 +87 2709 0.400000 +87 2762 0.400000 +87 2853 0.400000 +87 3079 0.400000 +87 3135 0.400000 +87 3138 0.400000 +87 3165 0.400000 +87 3199 0.400000 +88 19 0.400000 +88 28 0.400000 +88 43 0.400000 +88 87 0.400000 +88 193 0.400000 +88 333 0.400000 +88 391 0.400000 +88 555 0.400000 +88 603 0.400000 +88 656 0.400000 +88 657 0.400000 +88 662 0.400000 +88 678 0.400000 +88 701 0.400000 +88 716 0.400000 +88 825 0.400000 +88 845 0.400000 +88 948 0.400000 +88 1087 0.400000 +88 1193 0.400000 +88 1201 0.400000 +88 1216 0.400000 +88 1219 0.400000 +88 1225 0.400000 +88 1286 0.400000 +88 1301 0.400000 +88 1353 0.400000 +88 1493 0.400000 +88 1500 0.400000 +88 1511 0.400000 +88 1767 0.400000 +88 1787 0.400000 +88 1825 0.400000 +88 2032 0.400000 +88 2127 0.400000 +88 2208 0.400000 +88 2229 0.400000 +88 2428 0.400000 +88 2471 0.400000 +88 2485 0.400000 +88 2566 0.400000 +88 2573 0.400000 +88 2654 0.400000 +88 2747 0.400000 +88 2776 0.400000 +88 2836 0.400000 +88 2935 0.400000 +88 2939 0.400000 +88 2945 0.400000 +88 2950 0.400000 +88 3041 0.400000 +88 3195 0.400000 +89 29 0.400000 +89 308 0.400000 +89 332 0.400000 +89 439 0.400000 +89 491 0.400000 +89 655 0.400000 +89 693 0.400000 +89 726 0.400000 +89 756 0.400000 +89 775 0.400000 +89 841 0.400000 +89 930 0.400000 +89 943 0.400000 +89 973 0.400000 +89 1011 0.400000 +89 1017 0.400000 +89 1018 0.400000 +89 1029 0.400000 +89 1035 0.400000 +89 1096 0.400000 +89 1115 0.400000 +89 1120 0.400000 +89 1175 0.400000 +89 1176 0.400000 +89 1278 0.400000 +89 1279 0.400000 +89 1308 0.400000 +89 1400 0.400000 +89 1435 0.400000 +89 1566 0.400000 +89 1646 0.400000 +89 1722 0.400000 +89 1777 0.400000 +89 1780 0.400000 +89 1868 0.400000 +89 2032 0.400000 +89 2047 0.400000 +89 2146 0.400000 +89 2209 0.400000 +89 2236 0.400000 +89 2306 0.400000 +89 2317 0.400000 +89 2323 0.400000 +89 2340 0.400000 +89 2469 0.400000 +89 2497 0.400000 +89 2568 0.400000 +89 2580 0.400000 +89 2634 0.400000 +89 2662 0.400000 +89 2689 0.400000 +89 2698 0.400000 +89 2726 0.400000 +89 2727 0.400000 +89 2837 0.400000 +89 2857 0.400000 +89 2884 0.400000 +89 2922 0.400000 +89 2969 0.400000 +89 2977 0.400000 +89 3015 0.400000 +89 3090 0.400000 +89 3148 0.400000 +90 107 0.400000 +90 159 0.400000 +90 162 0.400000 +90 279 0.400000 +90 328 0.400000 +90 401 0.400000 +90 498 0.400000 +90 645 0.400000 +90 747 0.400000 +90 802 0.400000 +90 811 0.400000 +90 819 0.400000 +90 833 0.400000 +90 834 0.400000 +90 899 0.400000 +90 962 0.400000 +90 1088 0.400000 +90 1155 0.400000 +90 1194 0.400000 +90 1229 0.400000 +90 1232 0.400000 +90 1244 0.400000 +90 1248 0.400000 +90 1282 0.400000 +90 1295 0.400000 +90 1302 0.400000 +90 1319 0.400000 +90 1401 0.400000 +90 1407 0.400000 +90 1410 0.400000 +90 1487 0.400000 +90 1516 0.400000 +90 1598 0.400000 +90 1617 0.400000 +90 1699 0.400000 +90 1708 0.400000 +90 1714 0.400000 +90 1744 0.400000 +90 1782 0.400000 +90 1798 0.400000 +90 1831 0.400000 +90 1855 0.400000 +90 1959 0.400000 +90 1982 0.400000 +90 2010 0.400000 +90 2032 0.400000 +90 2047 0.400000 +90 2049 0.400000 +90 2083 0.400000 +90 2108 0.400000 +90 2111 0.400000 +90 2124 0.400000 +90 2181 0.400000 +90 2275 0.400000 +90 2322 0.400000 +90 2349 0.400000 +90 2401 0.400000 +90 2405 0.400000 +90 2466 0.400000 +90 2571 0.400000 +90 2714 0.400000 +90 2797 0.400000 +90 3028 0.400000 +90 3081 0.400000 +91 94 0.400000 +91 113 0.400000 +91 184 0.400000 +91 212 0.400000 +91 351 0.400000 +91 383 0.400000 +91 392 0.400000 +91 422 0.400000 +91 434 0.400000 +91 490 0.400000 +91 529 0.400000 +91 554 0.400000 +91 609 0.400000 +91 640 0.400000 +91 650 0.400000 +91 651 0.400000 +91 775 0.400000 +91 790 0.400000 +91 809 0.400000 +91 879 0.400000 +91 910 0.400000 +91 1010 0.400000 +91 1124 0.400000 +91 1144 0.400000 +91 1223 0.400000 +91 1227 0.400000 +91 1316 0.400000 +91 1437 0.400000 +91 1487 0.400000 +91 1502 0.400000 +91 1540 0.400000 +91 1555 0.400000 +91 1572 0.400000 +91 1606 0.400000 +91 1624 0.400000 +91 1705 0.400000 +91 1858 0.400000 +91 1889 0.400000 +91 1938 0.400000 +91 1943 0.400000 +91 1949 0.400000 +91 2002 0.400000 +91 2029 0.400000 +91 2054 0.400000 +91 2119 0.400000 +91 2145 0.400000 +91 2286 0.400000 +91 2296 0.400000 +91 2385 0.400000 +91 2392 0.400000 +91 2475 0.400000 +91 2503 0.400000 +91 2548 0.400000 +91 2637 0.400000 +91 2651 0.400000 +91 2680 0.400000 +91 2682 0.400000 +91 2840 0.400000 +91 2878 0.400000 +91 2898 0.400000 +91 2917 0.400000 +91 3005 0.400000 +91 3010 0.400000 +91 3046 0.400000 +91 3151 0.400000 +91 3165 0.400000 +92 10 0.400000 +92 28 0.400000 +92 65 0.400000 +92 76 0.400000 +92 156 0.400000 +92 206 0.400000 +92 277 0.400000 +92 391 0.400000 +92 438 0.400000 +92 499 0.400000 +92 536 0.400000 +92 651 0.400000 +92 720 0.400000 +92 748 0.400000 +92 870 0.400000 +92 952 0.400000 +92 966 0.400000 +92 1053 0.400000 +92 1128 0.400000 +92 1142 0.400000 +92 1186 0.400000 +92 1199 0.400000 +92 1219 0.400000 +92 1247 0.400000 +92 1316 0.400000 +92 1339 0.400000 +92 1344 0.400000 +92 1350 0.400000 +92 1372 0.400000 +92 1409 0.400000 +92 1504 0.400000 +92 1655 0.400000 +92 1701 0.400000 +92 1838 0.400000 +92 1853 0.400000 +92 1885 0.400000 +92 1986 0.400000 +92 2006 0.400000 +92 2009 0.400000 +92 2017 0.400000 +92 2044 0.400000 +92 2127 0.400000 +92 2164 0.400000 +92 2219 0.400000 +92 2273 0.400000 +92 2342 0.400000 +92 2398 0.400000 +92 2402 0.400000 +92 2409 0.400000 +92 2471 0.400000 +92 2481 0.400000 +92 2617 0.400000 +92 2700 0.400000 +92 2706 0.400000 +92 2784 0.400000 +92 2792 0.400000 +92 2798 0.400000 +92 2817 0.400000 +92 2847 0.400000 +92 2927 0.400000 +92 2953 0.400000 +92 2981 0.400000 +92 3000 0.400000 +92 3032 0.400000 +92 3086 0.400000 +92 3092 0.400000 +92 3122 0.400000 +92 3159 0.400000 +93 16 0.400000 +93 27 0.400000 +93 109 0.400000 +93 117 0.400000 +93 142 0.400000 +93 189 0.400000 +93 282 0.400000 +93 296 0.400000 +93 328 0.400000 +93 443 0.400000 +93 504 0.400000 +93 614 0.400000 +93 624 0.400000 +93 681 0.400000 +93 692 0.400000 +93 807 0.400000 +93 887 0.400000 +93 958 0.400000 +93 984 0.400000 +93 1071 0.400000 +93 1119 0.400000 +93 1200 0.400000 +93 1216 0.400000 +93 1232 0.400000 +93 1258 0.400000 +93 1374 0.400000 +93 1450 0.400000 +93 1551 0.400000 +93 1553 0.400000 +93 1630 0.400000 +93 1634 0.400000 +93 1651 0.400000 +93 1796 0.400000 +93 1824 0.400000 +93 1899 0.400000 +93 1970 0.400000 +93 2033 0.400000 +93 2104 0.400000 +93 2118 0.400000 +93 2203 0.400000 +93 2319 0.400000 +93 2397 0.400000 +93 2437 0.400000 +93 2473 0.400000 +93 2531 0.400000 +93 2552 0.400000 +93 2599 0.400000 +93 2678 0.400000 +93 2744 0.400000 +93 2747 0.400000 +93 2760 0.400000 +93 2777 0.400000 +93 2786 0.400000 +93 2868 0.400000 +93 2910 0.400000 +93 2930 0.400000 +93 3027 0.400000 +93 3052 0.400000 +93 3124 0.400000 +93 3138 0.400000 +94 135 0.400000 +94 283 0.400000 +94 287 0.400000 +94 345 0.400000 +94 355 0.400000 +94 428 0.400000 +94 538 0.400000 +94 587 0.400000 +94 634 0.400000 +94 722 0.400000 +94 805 0.400000 +94 826 0.400000 +94 936 0.400000 +94 1000 0.400000 +94 1053 0.400000 +94 1054 0.400000 +94 1075 0.400000 +94 1184 0.400000 +94 1449 0.400000 +94 1509 0.400000 +94 1592 0.400000 +94 1630 0.400000 +94 1631 0.400000 +94 1657 0.400000 +94 1746 0.400000 +94 1796 0.400000 +94 1890 0.400000 +94 1891 0.400000 +94 2035 0.400000 +94 2040 0.400000 +94 2059 0.400000 +94 2246 0.400000 +94 2383 0.400000 +94 2422 0.400000 +94 2459 0.400000 +94 2494 0.400000 +94 2509 0.400000 +94 2519 0.400000 +94 2545 0.400000 +94 2546 0.400000 +94 2549 0.400000 +94 2591 0.400000 +94 2597 0.400000 +94 2626 0.400000 +94 2643 0.400000 +94 2733 0.400000 +94 2750 0.400000 +94 2961 0.400000 +94 3058 0.400000 +94 3072 0.400000 +94 3073 0.400000 +94 3089 0.400000 +95 19 0.400000 +95 28 0.400000 +95 60 0.400000 +95 97 0.400000 +95 101 0.400000 +95 186 0.400000 +95 222 0.400000 +95 227 0.400000 +95 262 0.400000 +95 421 0.400000 +95 457 0.400000 +95 476 0.400000 +95 497 0.400000 +95 544 0.400000 +95 555 0.400000 +95 602 0.400000 +95 649 0.400000 +95 665 0.400000 +95 807 0.400000 +95 860 0.400000 +95 877 0.400000 +95 914 0.400000 +95 957 0.400000 +95 1013 0.400000 +95 1069 0.400000 +95 1089 0.400000 +95 1147 0.400000 +95 1172 0.400000 +95 1234 0.400000 +95 1246 0.400000 +95 1261 0.400000 +95 1279 0.400000 +95 1300 0.400000 +95 1384 0.400000 +95 1450 0.400000 +95 1507 0.400000 +95 1674 0.400000 +95 1817 0.400000 +95 1844 0.400000 +95 1881 0.400000 +95 2174 0.400000 +95 2210 0.400000 +95 2244 0.400000 +95 2260 0.400000 +95 2277 0.400000 +95 2293 0.400000 +95 2317 0.400000 +95 2380 0.400000 +95 2435 0.400000 +95 2462 0.400000 +95 2515 0.400000 +95 2622 0.400000 +95 2667 0.400000 +95 2670 0.400000 +95 2754 0.400000 +95 2765 0.400000 +95 2797 0.400000 +95 2859 0.400000 +95 2879 0.400000 +95 2891 0.400000 +95 2962 0.400000 +95 2999 0.400000 +95 3073 0.400000 +95 3083 0.400000 +96 30 0.400000 +96 70 0.400000 +96 93 0.400000 +96 125 0.400000 +96 173 0.400000 +96 511 0.400000 +96 514 0.400000 +96 569 0.400000 +96 690 0.400000 +96 968 0.400000 +96 985 0.400000 +96 1056 0.400000 +96 1142 0.400000 +96 1144 0.400000 +96 1151 0.400000 +96 1271 0.400000 +96 1277 0.400000 +96 1674 0.400000 +96 1735 0.400000 +96 1831 0.400000 +96 1990 0.400000 +96 2056 0.400000 +96 2077 0.400000 +96 2081 0.400000 +96 2104 0.400000 +96 2221 0.400000 +96 2293 0.400000 +96 2305 0.400000 +96 2477 0.400000 +96 2512 0.400000 +96 2518 0.400000 +96 2527 0.400000 +96 2553 0.400000 +96 2570 0.400000 +96 2714 0.400000 +96 2765 0.400000 +96 2787 0.400000 +96 2807 0.400000 +96 2950 0.400000 +96 3067 0.400000 +96 3079 0.400000 +96 3104 0.400000 +96 3110 0.400000 +96 3116 0.400000 +96 3139 0.400000 +96 3152 0.400000 +96 3188 0.400000 +97 6 0.400000 +97 43 0.400000 +97 177 0.400000 +97 306 0.400000 +97 477 0.400000 +97 491 0.400000 +97 500 0.400000 +97 557 0.400000 +97 559 0.400000 +97 665 0.400000 +97 673 0.400000 +97 683 0.400000 +97 738 0.400000 +97 779 0.400000 +97 900 0.400000 +97 922 0.400000 +97 937 0.400000 +97 1114 0.400000 +97 1125 0.400000 +97 1203 0.400000 +97 1291 0.400000 +97 1356 0.400000 +97 1358 0.400000 +97 1395 0.400000 +97 1419 0.400000 +97 1526 0.400000 +97 1533 0.400000 +97 1681 0.400000 +97 1722 0.400000 +97 1771 0.400000 +97 1800 0.400000 +97 1805 0.400000 +97 1831 0.400000 +97 1843 0.400000 +97 1919 0.400000 +97 1968 0.400000 +97 1991 0.400000 +97 2011 0.400000 +97 2098 0.400000 +97 2100 0.400000 +97 2151 0.400000 +97 2175 0.400000 +97 2209 0.400000 +97 2217 0.400000 +97 2229 0.400000 +97 2341 0.400000 +97 2422 0.400000 +97 2465 0.400000 +97 2479 0.400000 +97 2561 0.400000 +97 2563 0.400000 +97 2574 0.400000 +97 2580 0.400000 +97 2609 0.400000 +97 2682 0.400000 +97 2761 0.400000 +97 2785 0.400000 +97 2864 0.400000 +97 2888 0.400000 +97 2968 0.400000 +97 3033 0.400000 +97 3114 0.400000 +97 3188 0.400000 +98 82 0.400000 +98 135 0.400000 +98 165 0.400000 +98 268 0.400000 +98 281 0.400000 +98 306 0.400000 +98 326 0.400000 +98 329 0.400000 +98 343 0.400000 +98 406 0.400000 +98 572 0.400000 +98 573 0.400000 +98 654 0.400000 +98 672 0.400000 +98 748 0.400000 +98 856 0.400000 +98 938 0.400000 +98 996 0.400000 +98 1046 0.400000 +98 1058 0.400000 +98 1089 0.400000 +98 1123 0.400000 +98 1150 0.400000 +98 1162 0.400000 +98 1190 0.400000 +98 1240 0.400000 +98 1270 0.400000 +98 1321 0.400000 +98 1324 0.400000 +98 1468 0.400000 +98 1572 0.400000 +98 1581 0.400000 +98 1597 0.400000 +98 1706 0.400000 +98 1760 0.400000 +98 1873 0.400000 +98 1902 0.400000 +98 1912 0.400000 +98 1919 0.400000 +98 1936 0.400000 +98 1954 0.400000 +98 2099 0.400000 +98 2100 0.400000 +98 2235 0.400000 +98 2239 0.400000 +98 2243 0.400000 +98 2276 0.400000 +98 2323 0.400000 +98 2397 0.400000 +98 2446 0.400000 +98 2448 0.400000 +98 2461 0.400000 +98 2511 0.400000 +98 2547 0.400000 +98 2578 0.400000 +98 2584 0.400000 +98 2687 0.400000 +98 2697 0.400000 +98 2740 0.400000 +98 2781 0.400000 +98 2868 0.400000 +98 2930 0.400000 +98 2948 0.400000 +98 3026 0.400000 +98 3097 0.400000 +98 3165 0.400000 +98 3186 0.400000 +99 86 0.400000 +99 186 0.400000 +99 219 0.400000 +99 228 0.400000 +99 230 0.400000 +99 278 0.400000 +99 307 0.400000 +99 335 0.400000 +99 409 0.400000 +99 476 0.400000 +99 646 0.400000 +99 659 0.400000 +99 660 0.400000 +99 716 0.400000 +99 751 0.400000 +99 758 0.400000 +99 839 0.400000 +99 897 0.400000 +99 917 0.400000 +99 964 0.400000 +99 1026 0.400000 +99 1064 0.400000 +99 1158 0.400000 +99 1168 0.400000 +99 1202 0.400000 +99 1264 0.400000 +99 1320 0.400000 +99 1352 0.400000 +99 1382 0.400000 +99 1384 0.400000 +99 1389 0.400000 +99 1498 0.400000 +99 1560 0.400000 +99 1576 0.400000 +99 1598 0.400000 +99 1607 0.400000 +99 1633 0.400000 +99 1677 0.400000 +99 1691 0.400000 +99 1719 0.400000 +99 1798 0.400000 +99 1800 0.400000 +99 1837 0.400000 +99 1974 0.400000 +99 1989 0.400000 +99 2020 0.400000 +99 2076 0.400000 +99 2136 0.400000 +99 2223 0.400000 +99 2281 0.400000 +99 2283 0.400000 +99 2321 0.400000 +99 2452 0.400000 +99 2487 0.400000 +99 2519 0.400000 +99 2573 0.400000 +99 2733 0.400000 +99 2764 0.400000 +99 2769 0.400000 +99 2832 0.400000 +99 2978 0.400000 +99 3024 0.400000 +99 3076 0.400000 +99 3133 0.400000 +100 9 0.400000 +100 52 0.400000 +100 92 0.400000 +100 301 0.400000 +100 360 0.400000 +100 616 0.400000 +100 627 0.400000 +100 699 0.400000 +100 950 0.400000 +100 973 0.400000 +100 1001 0.400000 +100 1004 0.400000 +100 1070 0.400000 +100 1072 0.400000 +100 1242 0.400000 +100 1363 0.400000 +100 1379 0.400000 +100 1474 0.400000 +100 1482 0.400000 +100 1493 0.400000 +100 1506 0.400000 +100 1519 0.400000 +100 1566 0.400000 +100 1593 0.400000 +100 1673 0.400000 +100 1713 0.400000 +100 1736 0.400000 +100 1747 0.400000 +100 1764 0.400000 +100 1836 0.400000 +100 1844 0.400000 +100 1964 0.400000 +100 2093 0.400000 +100 2131 0.400000 +100 2188 0.400000 +100 2216 0.400000 +100 2275 0.400000 +100 2398 0.400000 +100 2413 0.400000 +100 2417 0.400000 +100 2517 0.400000 +100 2536 0.400000 +100 2579 0.400000 +100 2591 0.400000 +100 2666 0.400000 +100 2680 0.400000 +100 2745 0.400000 +100 2770 0.400000 +100 2972 0.400000 +100 3007 0.400000 +100 3095 0.400000 +100 3149 0.400000 +101 67 0.400000 +101 92 0.400000 +101 122 0.400000 +101 173 0.400000 +101 326 0.400000 +101 358 0.400000 +101 399 0.400000 +101 428 0.400000 +101 511 0.400000 +101 590 0.400000 +101 603 0.400000 +101 616 0.400000 +101 662 0.400000 +101 722 0.400000 +101 735 0.400000 +101 825 0.400000 +101 856 0.400000 +101 909 0.400000 +101 1005 0.400000 +101 1028 0.400000 +101 1256 0.400000 +101 1343 0.400000 +101 1376 0.400000 +101 1423 0.400000 +101 1508 0.400000 +101 1555 0.400000 +101 1580 0.400000 +101 1581 0.400000 +101 1632 0.400000 +101 1643 0.400000 +101 1655 0.400000 +101 1663 0.400000 +101 1723 0.400000 +101 2121 0.400000 +101 2132 0.400000 +101 2186 0.400000 +101 2210 0.400000 +101 2281 0.400000 +101 2327 0.400000 +101 2478 0.400000 +101 2635 0.400000 +101 2696 0.400000 +101 2703 0.400000 +101 2760 0.400000 +101 2806 0.400000 +101 2864 0.400000 +101 2894 0.400000 +101 2897 0.400000 +101 2909 0.400000 +101 2924 0.400000 +101 3085 0.400000 +101 3145 0.400000 +102 101 0.400000 +102 125 0.400000 +102 300 0.400000 +102 347 0.400000 +102 351 0.400000 +102 476 0.400000 +102 479 0.400000 +102 531 0.400000 +102 577 0.400000 +102 632 0.400000 +102 742 0.400000 +102 838 0.400000 +102 887 0.400000 +102 890 0.400000 +102 900 0.400000 +102 945 0.400000 +102 1035 0.400000 +102 1142 0.400000 +102 1204 0.400000 +102 1265 0.400000 +102 1306 0.400000 +102 1328 0.400000 +102 1424 0.400000 +102 1496 0.400000 +102 1556 0.400000 +102 1566 0.400000 +102 1676 0.400000 +102 1683 0.400000 +102 1827 0.400000 +102 1848 0.400000 +102 1986 0.400000 +102 2018 0.400000 +102 2056 0.400000 +102 2245 0.400000 +102 2281 0.400000 +102 2488 0.400000 +102 2551 0.400000 +102 2552 0.400000 +102 2553 0.400000 +102 2579 0.400000 +102 2646 0.400000 +102 2751 0.400000 +102 2757 0.400000 +102 2808 0.400000 +102 2845 0.400000 +102 2862 0.400000 +102 2870 0.400000 +102 2879 0.400000 +102 2965 0.400000 +102 2966 0.400000 +102 2989 0.400000 +102 3006 0.400000 +102 3033 0.400000 +102 3058 0.400000 +102 3060 0.400000 +102 3080 0.400000 +102 3100 0.400000 +102 3157 0.400000 +103 30 0.400000 +103 57 0.400000 +103 88 0.400000 +103 201 0.400000 +103 226 0.400000 +103 296 0.400000 +103 309 0.400000 +103 394 0.400000 +103 418 0.400000 +103 428 0.400000 +103 449 0.400000 +103 462 0.400000 +103 465 0.400000 +103 547 0.400000 +103 590 0.400000 +103 591 0.400000 +103 622 0.400000 +103 658 0.400000 +103 706 0.400000 +103 719 0.400000 +103 858 0.400000 +103 911 0.400000 +103 959 0.400000 +103 986 0.400000 +103 1076 0.400000 +103 1204 0.400000 +103 1205 0.400000 +103 1353 0.400000 +103 1393 0.400000 +103 1410 0.400000 +103 1615 0.400000 +103 1678 0.400000 +103 1679 0.400000 +103 1711 0.400000 +103 1820 0.400000 +103 1853 0.400000 +103 1886 0.400000 +103 1925 0.400000 +103 1928 0.400000 +103 1954 0.400000 +103 1971 0.400000 +103 2017 0.400000 +103 2175 0.400000 +103 2195 0.400000 +103 2224 0.400000 +103 2259 0.400000 +103 2273 0.400000 +103 2329 0.400000 +103 2350 0.400000 +103 2434 0.400000 +103 2447 0.400000 +103 2515 0.400000 +103 2537 0.400000 +103 2541 0.400000 +103 2636 0.400000 +103 2664 0.400000 +103 2702 0.400000 +103 2763 0.400000 +103 2771 0.400000 +103 2860 0.400000 +103 2954 0.400000 +104 7 0.400000 +104 45 0.400000 +104 52 0.400000 +104 64 0.400000 +104 73 0.400000 +104 129 0.400000 +104 153 0.400000 +104 189 0.400000 +104 252 0.400000 +104 293 0.400000 +104 307 0.400000 +104 315 0.400000 +104 330 0.400000 +104 352 0.400000 +104 402 0.400000 +104 582 0.400000 +104 612 0.400000 +104 614 0.400000 +104 639 0.400000 +104 733 0.400000 +104 748 0.400000 +104 783 0.400000 +104 824 0.400000 +104 853 0.400000 +104 949 0.400000 +104 994 0.400000 +104 1014 0.400000 +104 1093 0.400000 +104 1147 0.400000 +104 1164 0.400000 +104 1172 0.400000 +104 1214 0.400000 +104 1236 0.400000 +104 1238 0.400000 +104 1249 0.400000 +104 1279 0.400000 +104 1296 0.400000 +104 1341 0.400000 +104 1359 0.400000 +104 1485 0.400000 +104 1512 0.400000 +104 1522 0.400000 +104 1554 0.400000 +104 1601 0.400000 +104 1637 0.400000 +104 1672 0.400000 +104 1675 0.400000 +104 1810 0.400000 +104 1831 0.400000 +104 1971 0.400000 +104 1975 0.400000 +104 1990 0.400000 +104 2006 0.400000 +104 2203 0.400000 +104 2290 0.400000 +104 2374 0.400000 +104 2412 0.400000 +104 2437 0.400000 +104 2444 0.400000 +104 2457 0.400000 +104 2471 0.400000 +104 2489 0.400000 +104 2517 0.400000 +104 2534 0.400000 +104 2548 0.400000 +104 2563 0.400000 +104 2569 0.400000 +104 2660 0.400000 +104 2762 0.400000 +104 2779 0.400000 +104 2781 0.400000 +104 2825 0.400000 +104 2850 0.400000 +104 2851 0.400000 +104 2855 0.400000 +104 2858 0.400000 +104 2907 0.400000 +104 2945 0.400000 +104 2968 0.400000 +104 2991 0.400000 +104 3043 0.400000 +104 3093 0.400000 +104 3095 0.400000 +104 3132 0.400000 +105 53 0.400000 +105 127 0.400000 +105 210 0.400000 +105 211 0.400000 +105 220 0.400000 +105 294 0.400000 +105 300 0.400000 +105 400 0.400000 +105 406 0.400000 +105 453 0.400000 +105 511 0.400000 +105 527 0.400000 +105 636 0.400000 +105 855 0.400000 +105 866 0.400000 +105 907 0.400000 +105 930 0.400000 +105 984 0.400000 +105 1019 0.400000 +105 1074 0.400000 +105 1083 0.400000 +105 1125 0.400000 +105 1136 0.400000 +105 1193 0.400000 +105 1269 0.400000 +105 1279 0.400000 +105 1353 0.400000 +105 1421 0.400000 +105 1504 0.400000 +105 1530 0.400000 +105 1544 0.400000 +105 1602 0.400000 +105 1688 0.400000 +105 1722 0.400000 +105 1789 0.400000 +105 1843 0.400000 +105 1848 0.400000 +105 1877 0.400000 +105 1914 0.400000 +105 1919 0.400000 +105 1928 0.400000 +105 1967 0.400000 +105 2002 0.400000 +105 2076 0.400000 +105 2119 0.400000 +105 2241 0.400000 +105 2322 0.400000 +105 2347 0.400000 +105 2394 0.400000 +105 2458 0.400000 +105 2469 0.400000 +105 2482 0.400000 +105 2557 0.400000 +105 2660 0.400000 +105 2759 0.400000 +105 2785 0.400000 +105 2874 0.400000 +105 2956 0.400000 +105 2965 0.400000 +105 3009 0.400000 +105 3026 0.400000 +105 3095 0.400000 +105 3123 0.400000 +105 3125 0.400000 +105 3144 0.400000 +105 3167 0.400000 +106 6 0.400000 +106 51 0.400000 +106 70 0.400000 +106 95 0.400000 +106 171 0.400000 +106 189 0.400000 +106 215 0.400000 +106 252 0.400000 +106 275 0.400000 +106 280 0.400000 +106 322 0.400000 +106 338 0.400000 +106 652 0.400000 +106 663 0.400000 +106 772 0.400000 +106 794 0.400000 +106 803 0.400000 +106 860 0.400000 +106 911 0.400000 +106 938 0.400000 +106 1062 0.400000 +106 1231 0.400000 +106 1234 0.400000 +106 1257 0.400000 +106 1334 0.400000 +106 1404 0.400000 +106 1476 0.400000 +106 1513 0.400000 +106 1516 0.400000 +106 1574 0.400000 +106 1626 0.400000 +106 1655 0.400000 +106 1669 0.400000 +106 1771 0.400000 +106 1777 0.400000 +106 1780 0.400000 +106 1790 0.400000 +106 1831 0.400000 +106 1989 0.400000 +106 2127 0.400000 +106 2150 0.400000 +106 2154 0.400000 +106 2207 0.400000 +106 2266 0.400000 +106 2271 0.400000 +106 2310 0.400000 +106 2313 0.400000 +106 2372 0.400000 +106 2424 0.400000 +106 2444 0.400000 +106 2510 0.400000 +106 2575 0.400000 +106 2617 0.400000 +106 2652 0.400000 +106 2657 0.400000 +106 2724 0.400000 +106 2766 0.400000 +106 2796 0.400000 +106 2827 0.400000 +106 2845 0.400000 +106 2880 0.400000 +106 2894 0.400000 +106 2895 0.400000 +106 2917 0.400000 +106 2979 0.400000 +106 2987 0.400000 +106 3017 0.400000 +106 3043 0.400000 +106 3142 0.400000 +106 3180 0.400000 +107 12 0.400000 +107 33 0.400000 +107 37 0.400000 +107 112 0.400000 +107 167 0.400000 +107 378 0.400000 +107 460 0.400000 +107 473 0.400000 +107 474 0.400000 +107 588 0.400000 +107 692 0.400000 +107 898 0.400000 +107 931 0.400000 +107 943 0.400000 +107 1033 0.400000 +107 1118 0.400000 +107 1125 0.400000 +107 1153 0.400000 +107 1159 0.400000 +107 1165 0.400000 +107 1208 0.400000 +107 1214 0.400000 +107 1245 0.400000 +107 1368 0.400000 +107 1470 0.400000 +107 1538 0.400000 +107 1660 0.400000 +107 1690 0.400000 +107 1769 0.400000 +107 1808 0.400000 +107 1815 0.400000 +107 1855 0.400000 +107 1930 0.400000 +107 2102 0.400000 +107 2123 0.400000 +107 2177 0.400000 +107 2227 0.400000 +107 2236 0.400000 +107 2259 0.400000 +107 2278 0.400000 +107 2382 0.400000 +107 2476 0.400000 +107 2541 0.400000 +107 2549 0.400000 +107 2672 0.400000 +107 2748 0.400000 +107 2783 0.400000 +107 2962 0.400000 +107 2969 0.400000 +107 3033 0.400000 +107 3043 0.400000 +107 3063 0.400000 +107 3170 0.400000 +107 3191 0.400000 +108 78 0.400000 +108 141 0.400000 +108 171 0.400000 +108 181 0.400000 +108 315 0.400000 +108 371 0.400000 +108 377 0.400000 +108 403 0.400000 +108 575 0.400000 +108 695 0.400000 +108 703 0.400000 +108 749 0.400000 +108 918 0.400000 +108 935 0.400000 +108 963 0.400000 +108 980 0.400000 +108 984 0.400000 +108 1000 0.400000 +108 1029 0.400000 +108 1092 0.400000 +108 1115 0.400000 +108 1238 0.400000 +108 1243 0.400000 +108 1258 0.400000 +108 1307 0.400000 +108 1324 0.400000 +108 1386 0.400000 +108 1395 0.400000 +108 1409 0.400000 +108 1511 0.400000 +108 1513 0.400000 +108 1530 0.400000 +108 1640 0.400000 +108 1666 0.400000 +108 1730 0.400000 +108 1779 0.400000 +108 1842 0.400000 +108 1888 0.400000 +108 1898 0.400000 +108 2037 0.400000 +108 2153 0.400000 +108 2164 0.400000 +108 2255 0.400000 +108 2292 0.400000 +108 2294 0.400000 +108 2304 0.400000 +108 2353 0.400000 +108 2388 0.400000 +108 2432 0.400000 +108 2498 0.400000 +108 2522 0.400000 +108 2560 0.400000 +108 2596 0.400000 +108 2601 0.400000 +108 2606 0.400000 +108 2621 0.400000 +108 2662 0.400000 +108 2668 0.400000 +108 2699 0.400000 +108 2700 0.400000 +108 2780 0.400000 +108 2781 0.400000 +108 2882 0.400000 +108 3042 0.400000 +108 3054 0.400000 +108 3075 0.400000 +108 3079 0.400000 +108 3176 0.400000 +109 146 0.400000 +109 268 0.400000 +109 285 0.400000 +109 291 0.400000 +109 302 0.400000 +109 322 0.400000 +109 403 0.400000 +109 422 0.400000 +109 429 0.400000 +109 516 0.400000 +109 542 0.400000 +109 547 0.400000 +109 551 0.400000 +109 563 0.400000 +109 588 0.400000 +109 751 0.400000 +109 791 0.400000 +109 839 0.400000 +109 853 0.400000 +109 1015 0.400000 +109 1080 0.400000 +109 1117 0.400000 +109 1290 0.400000 +109 1448 0.400000 +109 1469 0.400000 +109 1476 0.400000 +109 1487 0.400000 +109 1554 0.400000 +109 1573 0.400000 +109 1630 0.400000 +109 1761 0.400000 +109 1785 0.400000 +109 1792 0.400000 +109 1855 0.400000 +109 1860 0.400000 +109 1878 0.400000 +109 1893 0.400000 +109 2125 0.400000 +109 2198 0.400000 +109 2222 0.400000 +109 2257 0.400000 +109 2294 0.400000 +109 2346 0.400000 +109 2371 0.400000 +109 2377 0.400000 +109 2381 0.400000 +109 2448 0.400000 +109 2540 0.400000 +109 2591 0.400000 +109 2667 0.400000 +109 2743 0.400000 +109 2764 0.400000 +109 2845 0.400000 +109 2869 0.400000 +109 2939 0.400000 +109 2966 0.400000 +109 2980 0.400000 +109 2988 0.400000 +109 2990 0.400000 +109 3002 0.400000 +109 3011 0.400000 +109 3017 0.400000 +109 3162 0.400000 +109 3175 0.400000 +109 3192 0.400000 +109 3193 0.400000 +110 26 0.400000 +110 76 0.400000 +110 93 0.400000 +110 163 0.400000 +110 164 0.400000 +110 174 0.400000 +110 232 0.400000 +110 281 0.400000 +110 315 0.400000 +110 345 0.400000 +110 352 0.400000 +110 369 0.400000 +110 527 0.400000 +110 574 0.400000 +110 665 0.400000 +110 738 0.400000 +110 776 0.400000 +110 822 0.400000 +110 908 0.400000 +110 943 0.400000 +110 954 0.400000 +110 995 0.400000 +110 1004 0.400000 +110 1020 0.400000 +110 1090 0.400000 +110 1119 0.400000 +110 1193 0.400000 +110 1203 0.400000 +110 1241 0.400000 +110 1266 0.400000 +110 1291 0.400000 +110 1383 0.400000 +110 1442 0.400000 +110 1608 0.400000 +110 1653 0.400000 +110 1692 0.400000 +110 1777 0.400000 +110 1778 0.400000 +110 1832 0.400000 +110 1840 0.400000 +110 1990 0.400000 +110 2022 0.400000 +110 2026 0.400000 +110 2049 0.400000 +110 2138 0.400000 +110 2174 0.400000 +110 2289 0.400000 +110 2425 0.400000 +110 2434 0.400000 +110 2539 0.400000 +110 2552 0.400000 +110 2557 0.400000 +110 2560 0.400000 +110 2714 0.400000 +110 2799 0.400000 +110 2921 0.400000 +110 2981 0.400000 +110 3052 0.400000 +110 3099 0.400000 +110 3191 0.400000 +111 35 0.400000 +111 54 0.400000 +111 69 0.400000 +111 151 0.400000 +111 152 0.400000 +111 197 0.400000 +111 212 0.400000 +111 271 0.400000 +111 295 0.400000 +111 368 0.400000 +111 373 0.400000 +111 460 0.400000 +111 487 0.400000 +111 502 0.400000 +111 522 0.400000 +111 668 0.400000 +111 720 0.400000 +111 725 0.400000 +111 837 0.400000 +111 1075 0.400000 +111 1109 0.400000 +111 1158 0.400000 +111 1166 0.400000 +111 1393 0.400000 +111 1457 0.400000 +111 1481 0.400000 +111 1493 0.400000 +111 1497 0.400000 +111 1523 0.400000 +111 1554 0.400000 +111 1735 0.400000 +111 1736 0.400000 +111 1740 0.400000 +111 1768 0.400000 +111 1997 0.400000 +111 2029 0.400000 +111 2073 0.400000 +111 2101 0.400000 +111 2240 0.400000 +111 2391 0.400000 +111 2415 0.400000 +111 2508 0.400000 +111 2540 0.400000 +111 2701 0.400000 +111 2800 0.400000 +111 2927 0.400000 +111 2940 0.400000 +111 2952 0.400000 +111 2973 0.400000 +111 3040 0.400000 +111 3067 0.400000 +111 3162 0.400000 +112 57 0.400000 +112 104 0.400000 +112 128 0.400000 +112 151 0.400000 +112 153 0.400000 +112 159 0.400000 +112 180 0.400000 +112 369 0.400000 +112 407 0.400000 +112 514 0.400000 +112 582 0.400000 +112 907 0.400000 +112 956 0.400000 +112 1003 0.400000 +112 1061 0.400000 +112 1079 0.400000 +112 1088 0.400000 +112 1132 0.400000 +112 1148 0.400000 +112 1213 0.400000 +112 1284 0.400000 +112 1317 0.400000 +112 1378 0.400000 +112 1396 0.400000 +112 1490 0.400000 +112 1548 0.400000 +112 1597 0.400000 +112 1618 0.400000 +112 1652 0.400000 +112 1679 0.400000 +112 1693 0.400000 +112 1700 0.400000 +112 1773 0.400000 +112 1791 0.400000 +112 2077 0.400000 +112 2108 0.400000 +112 2145 0.400000 +112 2208 0.400000 +112 2294 0.400000 +112 2342 0.400000 +112 2393 0.400000 +112 2471 0.400000 +112 2512 0.400000 +112 2562 0.400000 +112 2672 0.400000 +112 2846 0.400000 +112 2873 0.400000 +112 2979 0.400000 +112 2994 0.400000 +112 3063 0.400000 +112 3078 0.400000 +112 3089 0.400000 +112 3133 0.400000 +113 30 0.400000 +113 36 0.400000 +113 50 0.400000 +113 207 0.400000 +113 261 0.400000 +113 337 0.400000 +113 354 0.400000 +113 383 0.400000 +113 416 0.400000 +113 422 0.400000 +113 489 0.400000 +113 570 0.400000 +113 600 0.400000 +113 602 0.400000 +113 889 0.400000 +113 923 0.400000 +113 1014 0.400000 +113 1027 0.400000 +113 1033 0.400000 +113 1121 0.400000 +113 1197 0.400000 +113 1204 0.400000 +113 1219 0.400000 +113 1234 0.400000 +113 1287 0.400000 +113 1367 0.400000 +113 1408 0.400000 +113 1463 0.400000 +113 1487 0.400000 +113 1504 0.400000 +113 1539 0.400000 +113 1635 0.400000 +113 1716 0.400000 +113 1721 0.400000 +113 1724 0.400000 +113 1751 0.400000 +113 1878 0.400000 +113 1908 0.400000 +113 1943 0.400000 +113 1963 0.400000 +113 1970 0.400000 +113 1984 0.400000 +113 2080 0.400000 +113 2087 0.400000 +113 2099 0.400000 +113 2124 0.400000 +113 2189 0.400000 +113 2252 0.400000 +113 2267 0.400000 +113 2272 0.400000 +113 2280 0.400000 +113 2292 0.400000 +113 2307 0.400000 +113 2391 0.400000 +113 2421 0.400000 +113 2611 0.400000 +113 2623 0.400000 +113 2720 0.400000 +113 2726 0.400000 +113 2746 0.400000 +113 2761 0.400000 +113 2763 0.400000 +113 2829 0.400000 +113 2834 0.400000 +113 2848 0.400000 +113 2887 0.400000 +113 2947 0.400000 +113 2982 0.400000 +113 2994 0.400000 +113 2995 0.400000 +113 3074 0.400000 +113 3168 0.400000 +114 67 0.400000 +114 95 0.400000 +114 189 0.400000 +114 201 0.400000 +114 228 0.400000 +114 284 0.400000 +114 380 0.400000 +114 418 0.400000 +114 480 0.400000 +114 521 0.400000 +114 588 0.400000 +114 607 0.400000 +114 777 0.400000 +114 830 0.400000 +114 857 0.400000 +114 937 0.400000 +114 938 0.400000 +114 999 0.400000 +114 1009 0.400000 +114 1044 0.400000 +114 1072 0.400000 +114 1078 0.400000 +114 1081 0.400000 +114 1151 0.400000 +114 1178 0.400000 +114 1239 0.400000 +114 1548 0.400000 +114 1566 0.400000 +114 1605 0.400000 +114 1655 0.400000 +114 1719 0.400000 +114 1777 0.400000 +114 1786 0.400000 +114 1838 0.400000 +114 1888 0.400000 +114 2033 0.400000 +114 2038 0.400000 +114 2128 0.400000 +114 2144 0.400000 +114 2162 0.400000 +114 2233 0.400000 +114 2238 0.400000 +114 2256 0.400000 +114 2259 0.400000 +114 2372 0.400000 +114 2381 0.400000 +114 2405 0.400000 +114 2454 0.400000 +114 2582 0.400000 +114 2588 0.400000 +114 2689 0.400000 +114 2835 0.400000 +114 2909 0.400000 +114 2985 0.400000 +114 3046 0.400000 +114 3086 0.400000 +114 3123 0.400000 +115 34 0.400000 +115 63 0.400000 +115 72 0.400000 +115 81 0.400000 +115 125 0.400000 +115 144 0.400000 +115 235 0.400000 +115 239 0.400000 +115 246 0.400000 +115 371 0.400000 +115 444 0.400000 +115 474 0.400000 +115 663 0.400000 +115 944 0.400000 +115 1053 0.400000 +115 1070 0.400000 +115 1134 0.400000 +115 1154 0.400000 +115 1198 0.400000 +115 1211 0.400000 +115 1230 0.400000 +115 1235 0.400000 +115 1289 0.400000 +115 1303 0.400000 +115 1387 0.400000 +115 1419 0.400000 +115 1432 0.400000 +115 1451 0.400000 +115 1620 0.400000 +115 1704 0.400000 +115 1729 0.400000 +115 1744 0.400000 +115 1759 0.400000 +115 1813 0.400000 +115 1993 0.400000 +115 2113 0.400000 +115 2117 0.400000 +115 2124 0.400000 +115 2131 0.400000 +115 2157 0.400000 +115 2226 0.400000 +115 2327 0.400000 +115 2344 0.400000 +115 2365 0.400000 +115 2491 0.400000 +115 2537 0.400000 +115 2577 0.400000 +115 2599 0.400000 +115 2649 0.400000 +115 2690 0.400000 +115 2744 0.400000 +115 2747 0.400000 +115 2748 0.400000 +115 2762 0.400000 +115 2772 0.400000 +115 2822 0.400000 +115 2900 0.400000 +115 2908 0.400000 +115 2968 0.400000 +115 2978 0.400000 +115 2979 0.400000 +115 2997 0.400000 +115 3046 0.400000 +115 3064 0.400000 +116 27 0.400000 +116 42 0.400000 +116 43 0.400000 +116 119 0.400000 +116 177 0.400000 +116 207 0.400000 +116 227 0.400000 +116 300 0.400000 +116 336 0.400000 +116 349 0.400000 +116 442 0.400000 +116 472 0.400000 +116 509 0.400000 +116 740 0.400000 +116 768 0.400000 +116 821 0.400000 +116 867 0.400000 +116 905 0.400000 +116 930 0.400000 +116 1060 0.400000 +116 1090 0.400000 +116 1130 0.400000 +116 1138 0.400000 +116 1156 0.400000 +116 1157 0.400000 +116 1240 0.400000 +116 1322 0.400000 +116 1340 0.400000 +116 1399 0.400000 +116 1406 0.400000 +116 1439 0.400000 +116 1442 0.400000 +116 1446 0.400000 +116 1473 0.400000 +116 1560 0.400000 +116 1613 0.400000 +116 1622 0.400000 +116 1629 0.400000 +116 1657 0.400000 +116 1683 0.400000 +116 1708 0.400000 +116 1748 0.400000 +116 1783 0.400000 +116 1808 0.400000 +116 1896 0.400000 +116 1933 0.400000 +116 1992 0.400000 +116 2044 0.400000 +116 2101 0.400000 +116 2116 0.400000 +116 2143 0.400000 +116 2201 0.400000 +116 2215 0.400000 +116 2236 0.400000 +116 2322 0.400000 +116 2323 0.400000 +116 2412 0.400000 +116 2465 0.400000 +116 2512 0.400000 +116 2681 0.400000 +116 2740 0.400000 +116 2764 0.400000 +116 2773 0.400000 +116 2787 0.400000 +116 2815 0.400000 +116 2856 0.400000 +116 2863 0.400000 +116 2912 0.400000 +116 3042 0.400000 +116 3056 0.400000 +116 3151 0.400000 +116 3167 0.400000 +116 3190 0.400000 +117 12 0.400000 +117 21 0.400000 +117 88 0.400000 +117 98 0.400000 +117 149 0.400000 +117 158 0.400000 +117 195 0.400000 +117 298 0.400000 +117 391 0.400000 +117 421 0.400000 +117 427 0.400000 +117 430 0.400000 +117 443 0.400000 +117 572 0.400000 +117 621 0.400000 +117 677 0.400000 +117 782 0.400000 +117 800 0.400000 +117 811 0.400000 +117 813 0.400000 +117 846 0.400000 +117 886 0.400000 +117 897 0.400000 +117 899 0.400000 +117 920 0.400000 +117 1086 0.400000 +117 1142 0.400000 +117 1171 0.400000 +117 1205 0.400000 +117 1278 0.400000 +117 1291 0.400000 +117 1326 0.400000 +117 1347 0.400000 +117 1379 0.400000 +117 1396 0.400000 +117 1474 0.400000 +117 1513 0.400000 +117 1627 0.400000 +117 1747 0.400000 +117 1808 0.400000 +117 1911 0.400000 +117 1971 0.400000 +117 2000 0.400000 +117 2082 0.400000 +117 2187 0.400000 +117 2229 0.400000 +117 2230 0.400000 +117 2311 0.400000 +117 2351 0.400000 +117 2367 0.400000 +117 2563 0.400000 +117 2579 0.400000 +117 2596 0.400000 +117 2617 0.400000 +117 2657 0.400000 +117 2671 0.400000 +117 2859 0.400000 +117 2899 0.400000 +117 2935 0.400000 +117 2941 0.400000 +117 2958 0.400000 +117 2977 0.400000 +117 3072 0.400000 +117 3077 0.400000 +117 3085 0.400000 +117 3130 0.400000 +117 3141 0.400000 +117 3143 0.400000 +117 3149 0.400000 +118 42 0.400000 +118 52 0.400000 +118 70 0.400000 +118 168 0.400000 +118 207 0.400000 +118 253 0.400000 +118 255 0.400000 +118 353 0.400000 +118 388 0.400000 +118 396 0.400000 +118 441 0.400000 +118 530 0.400000 +118 545 0.400000 +118 651 0.400000 +118 697 0.400000 +118 735 0.400000 +118 743 0.400000 +118 776 0.400000 +118 825 0.400000 +118 850 0.400000 +118 917 0.400000 +118 1060 0.400000 +118 1103 0.400000 +118 1124 0.400000 +118 1250 0.400000 +118 1296 0.400000 +118 1514 0.400000 +118 1583 0.400000 +118 1705 0.400000 +118 1746 0.400000 +118 1891 0.400000 +118 2192 0.400000 +118 2369 0.400000 +118 2393 0.400000 +118 2430 0.400000 +118 2437 0.400000 +118 2552 0.400000 +118 2669 0.400000 +118 2676 0.400000 +118 2686 0.400000 +118 2789 0.400000 +118 2833 0.400000 +118 2927 0.400000 +118 3004 0.400000 +118 3050 0.400000 +118 3130 0.400000 +119 2 0.400000 +119 48 0.400000 +119 68 0.400000 +119 88 0.400000 +119 109 0.400000 +119 151 0.400000 +119 153 0.400000 +119 234 0.400000 +119 252 0.400000 +119 295 0.400000 +119 321 0.400000 +119 340 0.400000 +119 381 0.400000 +119 390 0.400000 +119 424 0.400000 +119 430 0.400000 +119 445 0.400000 +119 524 0.400000 +119 546 0.400000 +119 554 0.400000 +119 602 0.400000 +119 687 0.400000 +119 734 0.400000 +119 737 0.400000 +119 937 0.400000 +119 1024 0.400000 +119 1094 0.400000 +119 1292 0.400000 +119 1406 0.400000 +119 1560 0.400000 +119 1616 0.400000 +119 1637 0.400000 +119 1668 0.400000 +119 1735 0.400000 +119 1788 0.400000 +119 1886 0.400000 +119 1935 0.400000 +119 2103 0.400000 +119 2110 0.400000 +119 2124 0.400000 +119 2141 0.400000 +119 2142 0.400000 +119 2148 0.400000 +119 2181 0.400000 +119 2295 0.400000 +119 2421 0.400000 +119 2511 0.400000 +119 2653 0.400000 +119 2706 0.400000 +119 2717 0.400000 +119 2951 0.400000 +119 3025 0.400000 +119 3030 0.400000 +119 3037 0.400000 +119 3200 0.400000 +120 35 0.400000 +120 44 0.400000 +120 54 0.400000 +120 114 0.400000 +120 148 0.400000 +120 154 0.400000 +120 162 0.400000 +120 176 0.400000 +120 194 0.400000 +120 270 0.400000 +120 326 0.400000 +120 339 0.400000 +120 439 0.400000 +120 460 0.400000 +120 493 0.400000 +120 509 0.400000 +120 591 0.400000 +120 759 0.400000 +120 973 0.400000 +120 999 0.400000 +120 1005 0.400000 +120 1009 0.400000 +120 1019 0.400000 +120 1113 0.400000 +120 1144 0.400000 +120 1206 0.400000 +120 1246 0.400000 +120 1296 0.400000 +120 1317 0.400000 +120 1397 0.400000 +120 1419 0.400000 +120 1456 0.400000 +120 1525 0.400000 +120 1569 0.400000 +120 1657 0.400000 +120 1681 0.400000 +120 1877 0.400000 +120 1912 0.400000 +120 2024 0.400000 +120 2055 0.400000 +120 2108 0.400000 +120 2124 0.400000 +120 2139 0.400000 +120 2167 0.400000 +120 2223 0.400000 +120 2251 0.400000 +120 2294 0.400000 +120 2320 0.400000 +120 2354 0.400000 +120 2359 0.400000 +120 2365 0.400000 +120 2394 0.400000 +120 2421 0.400000 +120 2428 0.400000 +120 2483 0.400000 +120 2492 0.400000 +120 2531 0.400000 +120 2561 0.400000 +120 2577 0.400000 +120 2595 0.400000 +120 2600 0.400000 +120 2602 0.400000 +120 2725 0.400000 +120 2744 0.400000 +120 2858 0.400000 +120 2883 0.400000 +120 2894 0.400000 +120 3019 0.400000 +120 3121 0.400000 +120 3156 0.400000 +121 91 0.400000 +121 163 0.400000 +121 164 0.400000 +121 170 0.400000 +121 243 0.400000 +121 265 0.400000 +121 271 0.400000 +121 281 0.400000 +121 343 0.400000 +121 349 0.400000 +121 375 0.400000 +121 433 0.400000 +121 439 0.400000 +121 493 0.400000 +121 513 0.400000 +121 563 0.400000 +121 705 0.400000 +121 737 0.400000 +121 752 0.400000 +121 771 0.400000 +121 879 0.400000 +121 893 0.400000 +121 938 0.400000 +121 1050 0.400000 +121 1268 0.400000 +121 1335 0.400000 +121 1472 0.400000 +121 1500 0.400000 +121 1515 0.400000 +121 1549 0.400000 +121 1632 0.400000 +121 1670 0.400000 +121 1684 0.400000 +121 1790 0.400000 +121 1793 0.400000 +121 1838 0.400000 +121 1860 0.400000 +121 1878 0.400000 +121 2021 0.400000 +121 2074 0.400000 +121 2141 0.400000 +121 2198 0.400000 +121 2228 0.400000 +121 2233 0.400000 +121 2283 0.400000 +121 2333 0.400000 +121 2425 0.400000 +121 2482 0.400000 +121 2518 0.400000 +121 2531 0.400000 +121 2565 0.400000 +121 2808 0.400000 +121 2872 0.400000 +121 2931 0.400000 +121 2957 0.400000 +121 2963 0.400000 +121 2985 0.400000 +121 3075 0.400000 +121 3118 0.400000 +121 3120 0.400000 +121 3156 0.400000 +122 84 0.400000 +122 123 0.400000 +122 133 0.400000 +122 275 0.400000 +122 300 0.400000 +122 322 0.400000 +122 477 0.400000 +122 490 0.400000 +122 495 0.400000 +122 575 0.400000 +122 760 0.400000 +122 775 0.400000 +122 788 0.400000 +122 826 0.400000 +122 880 0.400000 +122 897 0.400000 +122 910 0.400000 +122 1100 0.400000 +122 1182 0.400000 +122 1325 0.400000 +122 1329 0.400000 +122 1332 0.400000 +122 1355 0.400000 +122 1511 0.400000 +122 1515 0.400000 +122 1693 0.400000 +122 1778 0.400000 +122 1779 0.400000 +122 1867 0.400000 +122 1915 0.400000 +122 1929 0.400000 +122 1986 0.400000 +122 2026 0.400000 +122 2047 0.400000 +122 2137 0.400000 +122 2146 0.400000 +122 2217 0.400000 +122 2238 0.400000 +122 2319 0.400000 +122 2327 0.400000 +122 2385 0.400000 +122 2394 0.400000 +122 2429 0.400000 +122 2491 0.400000 +122 2548 0.400000 +122 2664 0.400000 +122 2703 0.400000 +122 2707 0.400000 +122 2710 0.400000 +122 2799 0.400000 +122 2820 0.400000 +122 2858 0.400000 +122 2867 0.400000 +122 3013 0.400000 +122 3044 0.400000 +122 3054 0.400000 +122 3065 0.400000 +122 3108 0.400000 +122 3172 0.400000 +123 12 0.400000 +123 29 0.400000 +123 123 0.400000 +123 130 0.400000 +123 196 0.400000 +123 382 0.400000 +123 604 0.400000 +123 828 0.400000 +123 830 0.400000 +123 870 0.400000 +123 993 0.400000 +123 1033 0.400000 +123 1049 0.400000 +123 1111 0.400000 +123 1143 0.400000 +123 1311 0.400000 +123 1431 0.400000 +123 1472 0.400000 +123 1494 0.400000 +123 1529 0.400000 +123 1539 0.400000 +123 1659 0.400000 +123 1679 0.400000 +123 1718 0.400000 +123 1739 0.400000 +123 1885 0.400000 +123 1939 0.400000 +123 1954 0.400000 +123 1970 0.400000 +123 1978 0.400000 +123 2011 0.400000 +123 2050 0.400000 +123 2101 0.400000 +123 2127 0.400000 +123 2221 0.400000 +123 2231 0.400000 +123 2360 0.400000 +123 2387 0.400000 +123 2492 0.400000 +123 2499 0.400000 +123 2532 0.400000 +123 2556 0.400000 +123 2561 0.400000 +123 2615 0.400000 +123 2681 0.400000 +123 2697 0.400000 +123 2728 0.400000 +123 2765 0.400000 +123 2827 0.400000 +123 2899 0.400000 +123 2919 0.400000 +123 2925 0.400000 +123 3022 0.400000 +123 3024 0.400000 +123 3127 0.400000 +123 3137 0.400000 +124 46 0.400000 +124 93 0.400000 +124 115 0.400000 +124 124 0.400000 +124 132 0.400000 +124 215 0.400000 +124 283 0.400000 +124 291 0.400000 +124 345 0.400000 +124 354 0.400000 +124 430 0.400000 +124 542 0.400000 +124 554 0.400000 +124 557 0.400000 +124 664 0.400000 +124 711 0.400000 +124 715 0.400000 +124 742 0.400000 +124 748 0.400000 +124 831 0.400000 +124 884 0.400000 +124 904 0.400000 +124 976 0.400000 +124 1127 0.400000 +124 1148 0.400000 +124 1150 0.400000 +124 1394 0.400000 +124 1444 0.400000 +124 1503 0.400000 +124 1562 0.400000 +124 1600 0.400000 +124 1694 0.400000 +124 1703 0.400000 +124 1730 0.400000 +124 1732 0.400000 +124 1764 0.400000 +124 1832 0.400000 +124 1970 0.400000 +124 2055 0.400000 +124 2193 0.400000 +124 2215 0.400000 +124 2230 0.400000 +124 2264 0.400000 +124 2298 0.400000 +124 2346 0.400000 +124 2364 0.400000 +124 2376 0.400000 +124 2498 0.400000 +124 2726 0.400000 +124 2749 0.400000 +124 2833 0.400000 +124 2867 0.400000 +124 2896 0.400000 +124 3060 0.400000 +124 3077 0.400000 +124 3111 0.400000 +125 47 0.400000 +125 71 0.400000 +125 77 0.400000 +125 118 0.400000 +125 365 0.400000 +125 378 0.400000 +125 483 0.400000 +125 524 0.400000 +125 619 0.400000 +125 626 0.400000 +125 680 0.400000 +125 687 0.400000 +125 725 0.400000 +125 746 0.400000 +125 751 0.400000 +125 792 0.400000 +125 808 0.400000 +125 817 0.400000 +125 860 0.400000 +125 881 0.400000 +125 903 0.400000 +125 909 0.400000 +125 944 0.400000 +125 1022 0.400000 +125 1140 0.400000 +125 1142 0.400000 +125 1299 0.400000 +125 1370 0.400000 +125 1384 0.400000 +125 1466 0.400000 +125 1482 0.400000 +125 1499 0.400000 +125 1583 0.400000 +125 1601 0.400000 +125 1610 0.400000 +125 1634 0.400000 +125 1697 0.400000 +125 1715 0.400000 +125 1752 0.400000 +125 1817 0.400000 +125 1907 0.400000 +125 1944 0.400000 +125 2010 0.400000 +125 2022 0.400000 +125 2100 0.400000 +125 2110 0.400000 +125 2120 0.400000 +125 2172 0.400000 +125 2306 0.400000 +125 2397 0.400000 +125 2547 0.400000 +125 2698 0.400000 +125 2722 0.400000 +125 2777 0.400000 +125 2874 0.400000 +125 2948 0.400000 +125 2958 0.400000 +125 3167 0.400000 +126 25 0.400000 +126 99 0.400000 +126 116 0.400000 +126 175 0.400000 +126 190 0.400000 +126 195 0.400000 +126 298 0.400000 +126 447 0.400000 +126 459 0.400000 +126 473 0.400000 +126 482 0.400000 +126 514 0.400000 +126 530 0.400000 +126 558 0.400000 +126 646 0.400000 +126 669 0.400000 +126 733 0.400000 +126 746 0.400000 +126 896 0.400000 +126 990 0.400000 +126 1002 0.400000 +126 1107 0.400000 +126 1147 0.400000 +126 1164 0.400000 +126 1261 0.400000 +126 1275 0.400000 +126 1307 0.400000 +126 1341 0.400000 +126 1389 0.400000 +126 1504 0.400000 +126 1505 0.400000 +126 1601 0.400000 +126 1767 0.400000 +126 1776 0.400000 +126 1805 0.400000 +126 1822 0.400000 +126 1988 0.400000 +126 1990 0.400000 +126 2010 0.400000 +126 2017 0.400000 +126 2054 0.400000 +126 2055 0.400000 +126 2062 0.400000 +126 2099 0.400000 +126 2139 0.400000 +126 2253 0.400000 +126 2343 0.400000 +126 2412 0.400000 +126 2423 0.400000 +126 2521 0.400000 +126 2522 0.400000 +126 2559 0.400000 +126 2563 0.400000 +126 2576 0.400000 +126 2602 0.400000 +126 2640 0.400000 +126 2694 0.400000 +126 2711 0.400000 +126 2763 0.400000 +126 2772 0.400000 +126 2846 0.400000 +126 2866 0.400000 +126 2868 0.400000 +126 2946 0.400000 +126 2996 0.400000 +126 3067 0.400000 +126 3142 0.400000 +126 3155 0.400000 +127 22 0.400000 +127 95 0.400000 +127 112 0.400000 +127 116 0.400000 +127 164 0.400000 +127 193 0.400000 +127 194 0.400000 +127 328 0.400000 +127 385 0.400000 +127 413 0.400000 +127 451 0.400000 +127 473 0.400000 +127 475 0.400000 +127 553 0.400000 +127 569 0.400000 +127 594 0.400000 +127 613 0.400000 +127 716 0.400000 +127 718 0.400000 +127 792 0.400000 +127 857 0.400000 +127 885 0.400000 +127 929 0.400000 +127 955 0.400000 +127 982 0.400000 +127 1102 0.400000 +127 1153 0.400000 +127 1170 0.400000 +127 1183 0.400000 +127 1221 0.400000 +127 1265 0.400000 +127 1294 0.400000 +127 1299 0.400000 +127 1311 0.400000 +127 1357 0.400000 +127 1371 0.400000 +127 1379 0.400000 +127 1421 0.400000 +127 1437 0.400000 +127 1454 0.400000 +127 1519 0.400000 +127 1592 0.400000 +127 1599 0.400000 +127 1620 0.400000 +127 1646 0.400000 +127 1732 0.400000 +127 1734 0.400000 +127 1807 0.400000 +127 1831 0.400000 +127 1948 0.400000 +127 2016 0.400000 +127 2032 0.400000 +127 2063 0.400000 +127 2064 0.400000 +127 2151 0.400000 +127 2184 0.400000 +127 2229 0.400000 +127 2280 0.400000 +127 2340 0.400000 +127 2343 0.400000 +127 2346 0.400000 +127 2357 0.400000 +127 2457 0.400000 +127 2475 0.400000 +127 2531 0.400000 +127 2538 0.400000 +127 2593 0.400000 +127 2630 0.400000 +127 2640 0.400000 +127 2693 0.400000 +127 2697 0.400000 +127 2701 0.400000 +127 2806 0.400000 +127 2817 0.400000 +127 2862 0.400000 +127 2893 0.400000 +127 2899 0.400000 +127 2961 0.400000 +127 3084 0.400000 +127 3114 0.400000 +128 111 0.400000 +128 121 0.400000 +128 153 0.400000 +128 154 0.400000 +128 249 0.400000 +128 288 0.400000 +128 501 0.400000 +128 530 0.400000 +128 631 0.400000 +128 694 0.400000 +128 697 0.400000 +128 711 0.400000 +128 735 0.400000 +128 806 0.400000 +128 818 0.400000 +128 850 0.400000 +128 915 0.400000 +128 1007 0.400000 +128 1012 0.400000 +128 1014 0.400000 +128 1185 0.400000 +128 1247 0.400000 +128 1325 0.400000 +128 1343 0.400000 +128 1409 0.400000 +128 1414 0.400000 +128 1428 0.400000 +128 1463 0.400000 +128 1565 0.400000 +128 1609 0.400000 +128 1612 0.400000 +128 1636 0.400000 +128 1699 0.400000 +128 1727 0.400000 +128 1742 0.400000 +128 1816 0.400000 +128 1824 0.400000 +128 1843 0.400000 +128 1952 0.400000 +128 1953 0.400000 +128 1970 0.400000 +128 1979 0.400000 +128 2006 0.400000 +128 2035 0.400000 +128 2159 0.400000 +128 2380 0.400000 +128 2397 0.400000 +128 2445 0.400000 +128 2563 0.400000 +128 2579 0.400000 +128 2598 0.400000 +128 2642 0.400000 +128 2666 0.400000 +128 2748 0.400000 +128 2760 0.400000 +128 2979 0.400000 +128 3010 0.400000 +128 3027 0.400000 +128 3042 0.400000 +128 3117 0.400000 +129 73 0.400000 +129 145 0.400000 +129 265 0.400000 +129 272 0.400000 +129 274 0.400000 +129 353 0.400000 +129 490 0.400000 +129 583 0.400000 +129 616 0.400000 +129 704 0.400000 +129 759 0.400000 +129 814 0.400000 +129 888 0.400000 +129 967 0.400000 +129 1020 0.400000 +129 1071 0.400000 +129 1127 0.400000 +129 1136 0.400000 +129 1145 0.400000 +129 1156 0.400000 +129 1181 0.400000 +129 1291 0.400000 +129 1320 0.400000 +129 1381 0.400000 +129 1492 0.400000 +129 1547 0.400000 +129 1563 0.400000 +129 1571 0.400000 +129 1651 0.400000 +129 1859 0.400000 +129 1864 0.400000 +129 1875 0.400000 +129 1923 0.400000 +129 1943 0.400000 +129 2052 0.400000 +129 2096 0.400000 +129 2109 0.400000 +129 2222 0.400000 +129 2239 0.400000 +129 2265 0.400000 +129 2319 0.400000 +129 2331 0.400000 +129 2384 0.400000 +129 2404 0.400000 +129 2493 0.400000 +129 2508 0.400000 +129 2517 0.400000 +129 2518 0.400000 +129 2530 0.400000 +129 2548 0.400000 +129 2549 0.400000 +129 2635 0.400000 +129 2791 0.400000 +129 2824 0.400000 +129 2840 0.400000 +129 2870 0.400000 +129 2877 0.400000 +129 2920 0.400000 +129 2949 0.400000 +129 3119 0.400000 +129 3134 0.400000 +130 151 0.400000 +130 190 0.400000 +130 212 0.400000 +130 268 0.400000 +130 284 0.400000 +130 352 0.400000 +130 359 0.400000 +130 446 0.400000 +130 471 0.400000 +130 528 0.400000 +130 560 0.400000 +130 631 0.400000 +130 667 0.400000 +130 711 0.400000 +130 738 0.400000 +130 820 0.400000 +130 921 0.400000 +130 925 0.400000 +130 955 0.400000 +130 1247 0.400000 +130 1354 0.400000 +130 1378 0.400000 +130 1398 0.400000 +130 1429 0.400000 +130 1513 0.400000 +130 1522 0.400000 +130 1725 0.400000 +130 1729 0.400000 +130 1753 0.400000 +130 1772 0.400000 +130 1776 0.400000 +130 1874 0.400000 +130 1888 0.400000 +130 1893 0.400000 +130 1961 0.400000 +130 1994 0.400000 +130 2041 0.400000 +130 2124 0.400000 +130 2190 0.400000 +130 2225 0.400000 +130 2291 0.400000 +130 2313 0.400000 +130 2347 0.400000 +130 2386 0.400000 +130 2418 0.400000 +130 2434 0.400000 +130 2475 0.400000 +130 2511 0.400000 +130 2629 0.400000 +130 2637 0.400000 +130 2661 0.400000 +130 2677 0.400000 +130 2722 0.400000 +130 2728 0.400000 +130 2777 0.400000 +130 2779 0.400000 +130 2860 0.400000 +130 2866 0.400000 +130 2905 0.400000 +130 2933 0.400000 +130 3017 0.400000 +131 5 0.400000 +131 88 0.400000 +131 135 0.400000 +131 141 0.400000 +131 188 0.400000 +131 203 0.400000 +131 241 0.400000 +131 444 0.400000 +131 449 0.400000 +131 475 0.400000 +131 602 0.400000 +131 619 0.400000 +131 650 0.400000 +131 663 0.400000 +131 872 0.400000 +131 930 0.400000 +131 962 0.400000 +131 1028 0.400000 +131 1064 0.400000 +131 1104 0.400000 +131 1151 0.400000 +131 1279 0.400000 +131 1335 0.400000 +131 1357 0.400000 +131 1407 0.400000 +131 1448 0.400000 +131 1531 0.400000 +131 1544 0.400000 +131 1550 0.400000 +131 1570 0.400000 +131 1639 0.400000 +131 1648 0.400000 +131 1649 0.400000 +131 1653 0.400000 +131 1655 0.400000 +131 1769 0.400000 +131 1828 0.400000 +131 1842 0.400000 +131 1857 0.400000 +131 1915 0.400000 +131 1931 0.400000 +131 1980 0.400000 +131 2006 0.400000 +131 2090 0.400000 +131 2142 0.400000 +131 2182 0.400000 +131 2280 0.400000 +131 2341 0.400000 +131 2402 0.400000 +131 2416 0.400000 +131 2513 0.400000 +131 2575 0.400000 +131 2647 0.400000 +131 2658 0.400000 +131 2706 0.400000 +131 2747 0.400000 +131 2762 0.400000 +131 2821 0.400000 +131 2907 0.400000 +131 2926 0.400000 +131 2929 0.400000 +131 2958 0.400000 +131 2971 0.400000 +131 2993 0.400000 +131 3074 0.400000 +131 3134 0.400000 +131 3154 0.400000 +131 3164 0.400000 +132 83 0.400000 +132 99 0.400000 +132 119 0.400000 +132 150 0.400000 +132 184 0.400000 +132 240 0.400000 +132 271 0.400000 +132 286 0.400000 +132 293 0.400000 +132 355 0.400000 +132 454 0.400000 +132 469 0.400000 +132 567 0.400000 +132 692 0.400000 +132 725 0.400000 +132 761 0.400000 +132 777 0.400000 +132 781 0.400000 +132 790 0.400000 +132 914 0.400000 +132 942 0.400000 +132 954 0.400000 +132 982 0.400000 +132 1004 0.400000 +132 1013 0.400000 +132 1083 0.400000 +132 1169 0.400000 +132 1180 0.400000 +132 1252 0.400000 +132 1256 0.400000 +132 1289 0.400000 +132 1328 0.400000 +132 1376 0.400000 +132 1412 0.400000 +132 1506 0.400000 +132 1609 0.400000 +132 1663 0.400000 +132 1725 0.400000 +132 1838 0.400000 +132 1961 0.400000 +132 2025 0.400000 +132 2052 0.400000 +132 2166 0.400000 +132 2186 0.400000 +132 2380 0.400000 +132 2473 0.400000 +132 2549 0.400000 +132 2583 0.400000 +132 2629 0.400000 +132 2638 0.400000 +132 2686 0.400000 +132 2741 0.400000 +132 2776 0.400000 +132 2792 0.400000 +132 2862 0.400000 +132 2890 0.400000 +132 3047 0.400000 +132 3147 0.400000 +132 3161 0.400000 +132 3172 0.400000 +133 32 0.400000 +133 67 0.400000 +133 161 0.400000 +133 166 0.400000 +133 195 0.400000 +133 211 0.400000 +133 222 0.400000 +133 313 0.400000 +133 365 0.400000 +133 434 0.400000 +133 502 0.400000 +133 513 0.400000 +133 519 0.400000 +133 632 0.400000 +133 668 0.400000 +133 776 0.400000 +133 803 0.400000 +133 804 0.400000 +133 812 0.400000 +133 844 0.400000 +133 895 0.400000 +133 900 0.400000 +133 913 0.400000 +133 978 0.400000 +133 1075 0.400000 +133 1211 0.400000 +133 1269 0.400000 +133 1293 0.400000 +133 1358 0.400000 +133 1381 0.400000 +133 1542 0.400000 +133 1545 0.400000 +133 1554 0.400000 +133 1629 0.400000 +133 1647 0.400000 +133 1780 0.400000 +133 1860 0.400000 +133 1885 0.400000 +133 1904 0.400000 +133 1982 0.400000 +133 1996 0.400000 +133 2069 0.400000 +133 2198 0.400000 +133 2219 0.400000 +133 2246 0.400000 +133 2329 0.400000 +133 2436 0.400000 +133 2448 0.400000 +133 2485 0.400000 +133 2503 0.400000 +133 2527 0.400000 +133 2632 0.400000 +133 2654 0.400000 +133 2701 0.400000 +133 2712 0.400000 +133 2980 0.400000 +133 2993 0.400000 +133 3157 0.400000 +133 3168 0.400000 +134 78 0.400000 +134 133 0.400000 +134 146 0.400000 +134 174 0.400000 +134 311 0.400000 +134 345 0.400000 +134 388 0.400000 +134 464 0.400000 +134 485 0.400000 +134 580 0.400000 +134 625 0.400000 +134 822 0.400000 +134 829 0.400000 +134 905 0.400000 +134 924 0.400000 +134 1008 0.400000 +134 1052 0.400000 +134 1061 0.400000 +134 1091 0.400000 +134 1111 0.400000 +134 1204 0.400000 +134 1345 0.400000 +134 1472 0.400000 +134 1556 0.400000 +134 1602 0.400000 +134 1603 0.400000 +134 1609 0.400000 +134 1753 0.400000 +134 1774 0.400000 +134 1801 0.400000 +134 1828 0.400000 +134 1887 0.400000 +134 1927 0.400000 +134 1962 0.400000 +134 1980 0.400000 +134 2045 0.400000 +134 2099 0.400000 +134 2206 0.400000 +134 2288 0.400000 +134 2339 0.400000 +134 2393 0.400000 +134 2468 0.400000 +134 2472 0.400000 +134 2490 0.400000 +134 2538 0.400000 +134 2613 0.400000 +134 2657 0.400000 +134 2755 0.400000 +134 2860 0.400000 +134 2865 0.400000 +134 2884 0.400000 +134 2919 0.400000 +134 3008 0.400000 +134 3041 0.400000 +134 3043 0.400000 +134 3094 0.400000 +135 30 0.400000 +135 92 0.400000 +135 114 0.400000 +135 137 0.400000 +135 151 0.400000 +135 188 0.400000 +135 244 0.400000 +135 275 0.400000 +135 279 0.400000 +135 634 0.400000 +135 703 0.400000 +135 712 0.400000 +135 724 0.400000 +135 757 0.400000 +135 758 0.400000 +135 774 0.400000 +135 775 0.400000 +135 827 0.400000 +135 833 0.400000 +135 837 0.400000 +135 845 0.400000 +135 874 0.400000 +135 956 0.400000 +135 1046 0.400000 +135 1202 0.400000 +135 1262 0.400000 +135 1330 0.400000 +135 1394 0.400000 +135 1432 0.400000 +135 1444 0.400000 +135 1546 0.400000 +135 1552 0.400000 +135 1553 0.400000 +135 1564 0.400000 +135 1579 0.400000 +135 1633 0.400000 +135 1639 0.400000 +135 1674 0.400000 +135 1694 0.400000 +135 1742 0.400000 +135 1749 0.400000 +135 1799 0.400000 +135 1861 0.400000 +135 1885 0.400000 +135 1923 0.400000 +135 2093 0.400000 +135 2231 0.400000 +135 2264 0.400000 +135 2303 0.400000 +135 2310 0.400000 +135 2323 0.400000 +135 2333 0.400000 +135 2383 0.400000 +135 2450 0.400000 +135 2464 0.400000 +135 2494 0.400000 +135 2732 0.400000 +135 2856 0.400000 +135 2875 0.400000 +135 2918 0.400000 +135 2939 0.400000 +135 2977 0.400000 +135 3003 0.400000 +135 3020 0.400000 +135 3076 0.400000 +135 3157 0.400000 +136 6 0.400000 +136 10 0.400000 +136 64 0.400000 +136 112 0.400000 +136 117 0.400000 +136 240 0.400000 +136 293 0.400000 +136 307 0.400000 +136 429 0.400000 +136 478 0.400000 +136 552 0.400000 +136 692 0.400000 +136 758 0.400000 +136 823 0.400000 +136 881 0.400000 +136 933 0.400000 +136 937 0.400000 +136 994 0.400000 +136 1021 0.400000 +136 1125 0.400000 +136 1173 0.400000 +136 1245 0.400000 +136 1252 0.400000 +136 1269 0.400000 +136 1273 0.400000 +136 1367 0.400000 +136 1371 0.400000 +136 1717 0.400000 +136 1730 0.400000 +136 1733 0.400000 +136 1828 0.400000 +136 1835 0.400000 +136 1838 0.400000 +136 1911 0.400000 +136 1952 0.400000 +136 2022 0.400000 +136 2056 0.400000 +136 2058 0.400000 +136 2137 0.400000 +136 2166 0.400000 +136 2177 0.400000 +136 2262 0.400000 +136 2281 0.400000 +136 2366 0.400000 +136 2387 0.400000 +136 2408 0.400000 +136 2413 0.400000 +136 2436 0.400000 +136 2513 0.400000 +136 2582 0.400000 +136 2587 0.400000 +136 2674 0.400000 +136 2698 0.400000 +136 2754 0.400000 +136 2819 0.400000 +136 2866 0.400000 +136 2889 0.400000 +136 2909 0.400000 +136 2926 0.400000 +136 2940 0.400000 +136 2978 0.400000 +136 3009 0.400000 +136 3019 0.400000 +136 3023 0.400000 +136 3053 0.400000 +137 5 0.400000 +137 54 0.400000 +137 142 0.400000 +137 233 0.400000 +137 299 0.400000 +137 342 0.400000 +137 352 0.400000 +137 632 0.400000 +137 759 0.400000 +137 836 0.400000 +137 1064 0.400000 +137 1115 0.400000 +137 1193 0.400000 +137 1268 0.400000 +137 1384 0.400000 +137 1407 0.400000 +137 1431 0.400000 +137 1590 0.400000 +137 1648 0.400000 +137 1696 0.400000 +137 1727 0.400000 +137 1755 0.400000 +137 1784 0.400000 +137 1799 0.400000 +137 1976 0.400000 +137 2013 0.400000 +137 2020 0.400000 +137 2044 0.400000 +137 2058 0.400000 +137 2073 0.400000 +137 2094 0.400000 +137 2126 0.400000 +137 2145 0.400000 +137 2150 0.400000 +137 2206 0.400000 +137 2231 0.400000 +137 2283 0.400000 +137 2362 0.400000 +137 2525 0.400000 +137 2552 0.400000 +137 2580 0.400000 +137 2594 0.400000 +137 2678 0.400000 +137 2700 0.400000 +137 2785 0.400000 +137 2788 0.400000 +137 2794 0.400000 +137 2941 0.400000 +137 2947 0.400000 +137 2960 0.400000 +137 2961 0.400000 +137 2971 0.400000 +137 2972 0.400000 +137 3027 0.400000 +137 3162 0.400000 +138 158 0.400000 +138 176 0.400000 +138 209 0.400000 +138 289 0.400000 +138 306 0.400000 +138 314 0.400000 +138 390 0.400000 +138 426 0.400000 +138 451 0.400000 +138 460 0.400000 +138 717 0.400000 +138 756 0.400000 +138 759 0.400000 +138 868 0.400000 +138 904 0.400000 +138 919 0.400000 +138 951 0.400000 +138 1003 0.400000 +138 1009 0.400000 +138 1094 0.400000 +138 1221 0.400000 +138 1273 0.400000 +138 1327 0.400000 +138 1471 0.400000 +138 1610 0.400000 +138 1682 0.400000 +138 1704 0.400000 +138 1709 0.400000 +138 1716 0.400000 +138 1743 0.400000 +138 1891 0.400000 +138 1932 0.400000 +138 1999 0.400000 +138 2019 0.400000 +138 2042 0.400000 +138 2098 0.400000 +138 2104 0.400000 +138 2113 0.400000 +138 2116 0.400000 +138 2185 0.400000 +138 2279 0.400000 +138 2301 0.400000 +138 2319 0.400000 +138 2338 0.400000 +138 2410 0.400000 +138 2429 0.400000 +138 2461 0.400000 +138 2712 0.400000 +138 2762 0.400000 +138 2956 0.400000 +138 2962 0.400000 +138 2996 0.400000 +138 3028 0.400000 +138 3188 0.400000 +139 12 0.400000 +139 45 0.400000 +139 109 0.400000 +139 186 0.400000 +139 253 0.400000 +139 324 0.400000 +139 326 0.400000 +139 539 0.400000 +139 578 0.400000 +139 579 0.400000 +139 670 0.400000 +139 691 0.400000 +139 693 0.400000 +139 786 0.400000 +139 809 0.400000 +139 882 0.400000 +139 1050 0.400000 +139 1191 0.400000 +139 1298 0.400000 +139 1369 0.400000 +139 1370 0.400000 +139 1492 0.400000 +139 1604 0.400000 +139 1618 0.400000 +139 1641 0.400000 +139 1666 0.400000 +139 1684 0.400000 +139 1792 0.400000 +139 1912 0.400000 +139 1927 0.400000 +139 1938 0.400000 +139 2027 0.400000 +139 2058 0.400000 +139 2147 0.400000 +139 2229 0.400000 +139 2251 0.400000 +139 2279 0.400000 +139 2285 0.400000 +139 2325 0.400000 +139 2382 0.400000 +139 2398 0.400000 +139 2422 0.400000 +139 2661 0.400000 +139 2672 0.400000 +139 2706 0.400000 +139 2719 0.400000 +139 2770 0.400000 +139 2772 0.400000 +139 2780 0.400000 +139 2814 0.400000 +139 2870 0.400000 +139 2880 0.400000 +139 2946 0.400000 +139 3014 0.400000 +139 3017 0.400000 +139 3039 0.400000 +139 3046 0.400000 +139 3078 0.400000 +139 3119 0.400000 +140 116 0.400000 +140 305 0.400000 +140 374 0.400000 +140 483 0.400000 +140 522 0.400000 +140 529 0.400000 +140 587 0.400000 +140 613 0.400000 +140 710 0.400000 +140 758 0.400000 +140 784 0.400000 +140 824 0.400000 +140 829 0.400000 +140 834 0.400000 +140 836 0.400000 +140 904 0.400000 +140 944 0.400000 +140 987 0.400000 +140 1077 0.400000 +140 1123 0.400000 +140 1137 0.400000 +140 1210 0.400000 +140 1230 0.400000 +140 1244 0.400000 +140 1265 0.400000 +140 1283 0.400000 +140 1298 0.400000 +140 1391 0.400000 +140 1402 0.400000 +140 1415 0.400000 +140 1416 0.400000 +140 1504 0.400000 +140 1507 0.400000 +140 1559 0.400000 +140 1640 0.400000 +140 1654 0.400000 +140 1786 0.400000 +140 1837 0.400000 +140 1845 0.400000 +140 1975 0.400000 +140 2024 0.400000 +140 2124 0.400000 +140 2134 0.400000 +140 2144 0.400000 +140 2161 0.400000 +140 2189 0.400000 +140 2190 0.400000 +140 2269 0.400000 +140 2341 0.400000 +140 2343 0.400000 +140 2376 0.400000 +140 2435 0.400000 +140 2436 0.400000 +140 2472 0.400000 +140 2474 0.400000 +140 2538 0.400000 +140 2561 0.400000 +140 2575 0.400000 +140 2675 0.400000 +140 2717 0.400000 +140 2738 0.400000 +140 2770 0.400000 +140 2827 0.400000 +140 2858 0.400000 +140 2942 0.400000 +140 2986 0.400000 +140 3041 0.400000 +140 3185 0.400000 +140 3196 0.400000 +141 38 0.400000 +141 73 0.400000 +141 77 0.400000 +141 144 0.400000 +141 247 0.400000 +141 297 0.400000 +141 451 0.400000 +141 462 0.400000 +141 506 0.400000 +141 529 0.400000 +141 554 0.400000 +141 588 0.400000 +141 657 0.400000 +141 661 0.400000 +141 722 0.400000 +141 770 0.400000 +141 811 0.400000 +141 928 0.400000 +141 947 0.400000 +141 995 0.400000 +141 1094 0.400000 +141 1157 0.400000 +141 1163 0.400000 +141 1238 0.400000 +141 1250 0.400000 +141 1359 0.400000 +141 1390 0.400000 +141 1444 0.400000 +141 1455 0.400000 +141 1468 0.400000 +141 1610 0.400000 +141 1620 0.400000 +141 1623 0.400000 +141 1626 0.400000 +141 1633 0.400000 +141 1669 0.400000 +141 1726 0.400000 +141 1748 0.400000 +141 1755 0.400000 +141 1844 0.400000 +141 2060 0.400000 +141 2070 0.400000 +141 2121 0.400000 +141 2157 0.400000 +141 2163 0.400000 +141 2195 0.400000 +141 2229 0.400000 +141 2249 0.400000 +141 2269 0.400000 +141 2285 0.400000 +141 2339 0.400000 +141 2357 0.400000 +141 2391 0.400000 +141 2432 0.400000 +141 2453 0.400000 +141 2508 0.400000 +141 2520 0.400000 +141 2538 0.400000 +141 2728 0.400000 +141 2815 0.400000 +141 2863 0.400000 +141 2881 0.400000 +141 2931 0.400000 +141 3039 0.400000 +141 3071 0.400000 +141 3097 0.400000 +141 3115 0.400000 +141 3149 0.400000 +142 72 0.400000 +142 106 0.400000 +142 242 0.400000 +142 280 0.400000 +142 293 0.400000 +142 338 0.400000 +142 360 0.400000 +142 370 0.400000 +142 478 0.400000 +142 590 0.400000 +142 669 0.400000 +142 679 0.400000 +142 718 0.400000 +142 748 0.400000 +142 806 0.400000 +142 850 0.400000 +142 864 0.400000 +142 887 0.400000 +142 916 0.400000 +142 924 0.400000 +142 949 0.400000 +142 1029 0.400000 +142 1050 0.400000 +142 1072 0.400000 +142 1113 0.400000 +142 1144 0.400000 +142 1172 0.400000 +142 1195 0.400000 +142 1273 0.400000 +142 1445 0.400000 +142 1472 0.400000 +142 1507 0.400000 +142 1515 0.400000 +142 1532 0.400000 +142 1575 0.400000 +142 1587 0.400000 +142 1664 0.400000 +142 1796 0.400000 +142 1804 0.400000 +142 1833 0.400000 +142 1843 0.400000 +142 1990 0.400000 +142 2009 0.400000 +142 2014 0.400000 +142 2054 0.400000 +142 2112 0.400000 +142 2122 0.400000 +142 2140 0.400000 +142 2198 0.400000 +142 2241 0.400000 +142 2269 0.400000 +142 2293 0.400000 +142 2301 0.400000 +142 2330 0.400000 +142 2331 0.400000 +142 2332 0.400000 +142 2396 0.400000 +142 2438 0.400000 +142 2573 0.400000 +142 2574 0.400000 +142 2597 0.400000 +142 2616 0.400000 +142 2665 0.400000 +142 2667 0.400000 +142 2715 0.400000 +142 2809 0.400000 +142 2902 0.400000 +142 2933 0.400000 +142 2947 0.400000 +142 2956 0.400000 +142 2982 0.400000 +142 2984 0.400000 +142 3038 0.400000 +142 3049 0.400000 +142 3085 0.400000 +142 3124 0.400000 +142 3167 0.400000 +143 16 0.400000 +143 89 0.400000 +143 90 0.400000 +143 119 0.400000 +143 144 0.400000 +143 250 0.400000 +143 300 0.400000 +143 372 0.400000 +143 389 0.400000 +143 476 0.400000 +143 868 0.400000 +143 925 0.400000 +143 942 0.400000 +143 1214 0.400000 +143 1229 0.400000 +143 1287 0.400000 +143 1305 0.400000 +143 1334 0.400000 +143 1355 0.400000 +143 1419 0.400000 +143 1518 0.400000 +143 1562 0.400000 +143 1645 0.400000 +143 1690 0.400000 +143 1696 0.400000 +143 1742 0.400000 +143 1775 0.400000 +143 1951 0.400000 +143 1969 0.400000 +143 2165 0.400000 +143 2183 0.400000 +143 2217 0.400000 +143 2237 0.400000 +143 2248 0.400000 +143 2312 0.400000 +143 2348 0.400000 +143 2354 0.400000 +143 2402 0.400000 +143 2543 0.400000 +143 2641 0.400000 +143 2656 0.400000 +143 2730 0.400000 +143 2738 0.400000 +143 2777 0.400000 +143 2803 0.400000 +143 2859 0.400000 +143 2900 0.400000 +143 2903 0.400000 +143 3025 0.400000 +143 3026 0.400000 +143 3031 0.400000 +144 47 0.400000 +144 182 0.400000 +144 183 0.400000 +144 228 0.400000 +144 261 0.400000 +144 286 0.400000 +144 303 0.400000 +144 325 0.400000 +144 424 0.400000 +144 509 0.400000 +144 513 0.400000 +144 520 0.400000 +144 561 0.400000 +144 573 0.400000 +144 577 0.400000 +144 619 0.400000 +144 659 0.400000 +144 701 0.400000 +144 736 0.400000 +144 831 0.400000 +144 924 0.400000 +144 1009 0.400000 +144 1019 0.400000 +144 1047 0.400000 +144 1062 0.400000 +144 1077 0.400000 +144 1131 0.400000 +144 1133 0.400000 +144 1135 0.400000 +144 1163 0.400000 +144 1199 0.400000 +144 1204 0.400000 +144 1224 0.400000 +144 1349 0.400000 +144 1379 0.400000 +144 1446 0.400000 +144 1459 0.400000 +144 1540 0.400000 +144 1562 0.400000 +144 1680 0.400000 +144 1746 0.400000 +144 1863 0.400000 +144 2036 0.400000 +144 2046 0.400000 +144 2052 0.400000 +144 2055 0.400000 +144 2096 0.400000 +144 2105 0.400000 +144 2119 0.400000 +144 2165 0.400000 +144 2211 0.400000 +144 2225 0.400000 +144 2265 0.400000 +144 2283 0.400000 +144 2308 0.400000 +144 2309 0.400000 +144 2377 0.400000 +144 2390 0.400000 +144 2405 0.400000 +144 2406 0.400000 +144 2430 0.400000 +144 2436 0.400000 +144 2447 0.400000 +144 2456 0.400000 +144 2474 0.400000 +144 2498 0.400000 +144 2620 0.400000 +144 2731 0.400000 +144 2765 0.400000 +144 2876 0.400000 +144 2900 0.400000 +144 2991 0.400000 +144 3042 0.400000 +144 3094 0.400000 +144 3110 0.400000 +145 35 0.400000 +145 179 0.400000 +145 186 0.400000 +145 212 0.400000 +145 336 0.400000 +145 513 0.400000 +145 534 0.400000 +145 615 0.400000 +145 657 0.400000 +145 672 0.400000 +145 708 0.400000 +145 724 0.400000 +145 892 0.400000 +145 904 0.400000 +145 926 0.400000 +145 969 0.400000 +145 977 0.400000 +145 994 0.400000 +145 1014 0.400000 +145 1040 0.400000 +145 1085 0.400000 +145 1094 0.400000 +145 1111 0.400000 +145 1175 0.400000 +145 1209 0.400000 +145 1274 0.400000 +145 1320 0.400000 +145 1372 0.400000 +145 1402 0.400000 +145 1412 0.400000 +145 1436 0.400000 +145 1437 0.400000 +145 1462 0.400000 +145 1490 0.400000 +145 1625 0.400000 +145 1686 0.400000 +145 1699 0.400000 +145 1814 0.400000 +145 1840 0.400000 +145 1865 0.400000 +145 1868 0.400000 +145 1873 0.400000 +145 1905 0.400000 +145 1910 0.400000 +145 1926 0.400000 +145 2118 0.400000 +145 2190 0.400000 +145 2245 0.400000 +145 2377 0.400000 +145 2418 0.400000 +145 2469 0.400000 +145 2494 0.400000 +145 2519 0.400000 +145 2520 0.400000 +145 2547 0.400000 +145 2608 0.400000 +145 2621 0.400000 +145 2698 0.400000 +145 2757 0.400000 +145 2759 0.400000 +145 2785 0.400000 +145 2830 0.400000 +145 3057 0.400000 +145 3125 0.400000 +145 3193 0.400000 +146 16 0.400000 +146 81 0.400000 +146 101 0.400000 +146 162 0.400000 +146 189 0.400000 +146 254 0.400000 +146 320 0.400000 +146 328 0.400000 +146 373 0.400000 +146 470 0.400000 +146 523 0.400000 +146 538 0.400000 +146 620 0.400000 +146 649 0.400000 +146 673 0.400000 +146 728 0.400000 +146 733 0.400000 +146 769 0.400000 +146 785 0.400000 +146 855 0.400000 +146 882 0.400000 +146 888 0.400000 +146 934 0.400000 +146 998 0.400000 +146 1001 0.400000 +146 1092 0.400000 +146 1258 0.400000 +146 1271 0.400000 +146 1313 0.400000 +146 1314 0.400000 +146 1412 0.400000 +146 1436 0.400000 +146 1533 0.400000 +146 1589 0.400000 +146 1600 0.400000 +146 1703 0.400000 +146 1851 0.400000 +146 1885 0.400000 +146 2126 0.400000 +146 2163 0.400000 +146 2177 0.400000 +146 2199 0.400000 +146 2304 0.400000 +146 2358 0.400000 +146 2486 0.400000 +146 2601 0.400000 +146 2692 0.400000 +146 2952 0.400000 +146 2955 0.400000 +146 3128 0.400000 +146 3176 0.400000 +147 61 0.400000 +147 83 0.400000 +147 135 0.400000 +147 245 0.400000 +147 284 0.400000 +147 343 0.400000 +147 371 0.400000 +147 473 0.400000 +147 485 0.400000 +147 551 0.400000 +147 578 0.400000 +147 771 0.400000 +147 806 0.400000 +147 813 0.400000 +147 863 0.400000 +147 895 0.400000 +147 1049 0.400000 +147 1054 0.400000 +147 1079 0.400000 +147 1088 0.400000 +147 1194 0.400000 +147 1302 0.400000 +147 1307 0.400000 +147 1346 0.400000 +147 1417 0.400000 +147 1437 0.400000 +147 1496 0.400000 +147 1703 0.400000 +147 1759 0.400000 +147 1799 0.400000 +147 1842 0.400000 +147 1857 0.400000 +147 2034 0.400000 +147 2136 0.400000 +147 2203 0.400000 +147 2211 0.400000 +147 2221 0.400000 +147 2230 0.400000 +147 2249 0.400000 +147 2290 0.400000 +147 2356 0.400000 +147 2467 0.400000 +147 2469 0.400000 +147 2530 0.400000 +147 2540 0.400000 +147 2555 0.400000 +147 2648 0.400000 +147 2658 0.400000 +147 2675 0.400000 +147 2704 0.400000 +147 2733 0.400000 +147 2749 0.400000 +147 2798 0.400000 +147 2814 0.400000 +147 2880 0.400000 +147 2941 0.400000 +147 2950 0.400000 +147 2971 0.400000 +147 3066 0.400000 +147 3074 0.400000 +147 3091 0.400000 +147 3161 0.400000 +147 3181 0.400000 +147 3189 0.400000 +148 6 0.400000 +148 107 0.400000 +148 123 0.400000 +148 133 0.400000 +148 141 0.400000 +148 175 0.400000 +148 231 0.400000 +148 268 0.400000 +148 319 0.400000 +148 326 0.400000 +148 347 0.400000 +148 381 0.400000 +148 385 0.400000 +148 440 0.400000 +148 517 0.400000 +148 528 0.400000 +148 555 0.400000 +148 588 0.400000 +148 621 0.400000 +148 657 0.400000 +148 679 0.400000 +148 725 0.400000 +148 733 0.400000 +148 798 0.400000 +148 823 0.400000 +148 848 0.400000 +148 959 0.400000 +148 982 0.400000 +148 1022 0.400000 +148 1070 0.400000 +148 1082 0.400000 +148 1098 0.400000 +148 1152 0.400000 +148 1202 0.400000 +148 1206 0.400000 +148 1271 0.400000 +148 1281 0.400000 +148 1300 0.400000 +148 1346 0.400000 +148 1365 0.400000 +148 1378 0.400000 +148 1390 0.400000 +148 1427 0.400000 +148 1630 0.400000 +148 1650 0.400000 +148 1676 0.400000 +148 1778 0.400000 +148 1792 0.400000 +148 1805 0.400000 +148 1844 0.400000 +148 1871 0.400000 +148 1975 0.400000 +148 2029 0.400000 +148 2233 0.400000 +148 2309 0.400000 +148 2337 0.400000 +148 2340 0.400000 +148 2363 0.400000 +148 2369 0.400000 +148 2468 0.400000 +148 2558 0.400000 +148 2587 0.400000 +148 2623 0.400000 +148 2674 0.400000 +148 2712 0.400000 +148 2751 0.400000 +148 2769 0.400000 +148 2880 0.400000 +148 2895 0.400000 +148 2946 0.400000 +148 3083 0.400000 +148 3145 0.400000 +149 9 0.400000 +149 14 0.400000 +149 188 0.400000 +149 200 0.400000 +149 279 0.400000 +149 467 0.400000 +149 516 0.400000 +149 609 0.400000 +149 692 0.400000 +149 700 0.400000 +149 717 0.400000 +149 785 0.400000 +149 900 0.400000 +149 970 0.400000 +149 1114 0.400000 +149 1303 0.400000 +149 1330 0.400000 +149 1377 0.400000 +149 1380 0.400000 +149 1394 0.400000 +149 1411 0.400000 +149 1463 0.400000 +149 1491 0.400000 +149 1508 0.400000 +149 1515 0.400000 +149 1559 0.400000 +149 1587 0.400000 +149 1651 0.400000 +149 1666 0.400000 +149 1673 0.400000 +149 1674 0.400000 +149 1716 0.400000 +149 1810 0.400000 +149 1844 0.400000 +149 1895 0.400000 +149 1917 0.400000 +149 1937 0.400000 +149 1945 0.400000 +149 2007 0.400000 +149 2048 0.400000 +149 2072 0.400000 +149 2084 0.400000 +149 2260 0.400000 +149 2267 0.400000 +149 2304 0.400000 +149 2338 0.400000 +149 2392 0.400000 +149 2484 0.400000 +149 2506 0.400000 +149 2521 0.400000 +149 2737 0.400000 +149 2746 0.400000 +149 2748 0.400000 +149 2775 0.400000 +149 2832 0.400000 +149 2836 0.400000 +149 2895 0.400000 +149 2904 0.400000 +149 2975 0.400000 +149 3005 0.400000 +149 3093 0.400000 +149 3124 0.400000 +150 8 0.400000 +150 11 0.400000 +150 114 0.400000 +150 249 0.400000 +150 376 0.400000 +150 384 0.400000 +150 396 0.400000 +150 419 0.400000 +150 439 0.400000 +150 468 0.400000 +150 490 0.400000 +150 494 0.400000 +150 622 0.400000 +150 660 0.400000 +150 703 0.400000 +150 792 0.400000 +150 828 0.400000 +150 892 0.400000 +150 899 0.400000 +150 1068 0.400000 +150 1138 0.400000 +150 1145 0.400000 +150 1167 0.400000 +150 1245 0.400000 +150 1249 0.400000 +150 1293 0.400000 +150 1300 0.400000 +150 1358 0.400000 +150 1363 0.400000 +150 1400 0.400000 +150 1440 0.400000 +150 1461 0.400000 +150 1473 0.400000 +150 1508 0.400000 +150 1558 0.400000 +150 1560 0.400000 +150 1648 0.400000 +150 1783 0.400000 +150 1875 0.400000 +150 1895 0.400000 +150 1949 0.400000 +150 1960 0.400000 +150 1994 0.400000 +150 2061 0.400000 +150 2165 0.400000 +150 2175 0.400000 +150 2207 0.400000 +150 2235 0.400000 +150 2292 0.400000 +150 2304 0.400000 +150 2404 0.400000 +150 2564 0.400000 +150 2605 0.400000 +150 2659 0.400000 +150 2700 0.400000 +150 2772 0.400000 +150 2808 0.400000 +150 3056 0.400000 +150 3082 0.400000 +150 3135 0.400000 +151 8 0.400000 +151 153 0.400000 +151 399 0.400000 +151 467 0.400000 +151 524 0.400000 +151 583 0.400000 +151 614 0.400000 +151 617 0.400000 +151 760 0.400000 +151 825 0.400000 +151 904 0.400000 +151 995 0.400000 +151 1007 0.400000 +151 1009 0.400000 +151 1055 0.400000 +151 1087 0.400000 +151 1131 0.400000 +151 1135 0.400000 +151 1178 0.400000 +151 1233 0.400000 +151 1320 0.400000 +151 1401 0.400000 +151 1412 0.400000 +151 1448 0.400000 +151 1472 0.400000 +151 1596 0.400000 +151 1623 0.400000 +151 1725 0.400000 +151 1728 0.400000 +151 1752 0.400000 +151 1798 0.400000 +151 1832 0.400000 +151 1868 0.400000 +151 1945 0.400000 +151 1971 0.400000 +151 1976 0.400000 +151 2038 0.400000 +151 2111 0.400000 +151 2118 0.400000 +151 2242 0.400000 +151 2265 0.400000 +151 2289 0.400000 +151 2333 0.400000 +151 2440 0.400000 +151 2442 0.400000 +151 2514 0.400000 +151 2537 0.400000 +151 2602 0.400000 +151 2681 0.400000 +151 2720 0.400000 +151 2808 0.400000 +151 2991 0.400000 +151 3083 0.400000 +151 3189 0.400000 +151 3194 0.400000 +152 62 0.400000 +152 88 0.400000 +152 92 0.400000 +152 116 0.400000 +152 216 0.400000 +152 353 0.400000 +152 538 0.400000 +152 540 0.400000 +152 592 0.400000 +152 628 0.400000 +152 741 0.400000 +152 770 0.400000 +152 849 0.400000 +152 858 0.400000 +152 886 0.400000 +152 1002 0.400000 +152 1035 0.400000 +152 1056 0.400000 +152 1082 0.400000 +152 1123 0.400000 +152 1149 0.400000 +152 1168 0.400000 +152 1187 0.400000 +152 1264 0.400000 +152 1313 0.400000 +152 1315 0.400000 +152 1325 0.400000 +152 1350 0.400000 +152 1370 0.400000 +152 1460 0.400000 +152 1483 0.400000 +152 1491 0.400000 +152 1580 0.400000 +152 1582 0.400000 +152 1603 0.400000 +152 1629 0.400000 +152 1651 0.400000 +152 1681 0.400000 +152 1769 0.400000 +152 1770 0.400000 +152 1808 0.400000 +152 1845 0.400000 +152 1881 0.400000 +152 1928 0.400000 +152 2019 0.400000 +152 2035 0.400000 +152 2078 0.400000 +152 2164 0.400000 +152 2182 0.400000 +152 2203 0.400000 +152 2214 0.400000 +152 2220 0.400000 +152 2283 0.400000 +152 2301 0.400000 +152 2401 0.400000 +152 2459 0.400000 +152 2470 0.400000 +152 2535 0.400000 +152 2562 0.400000 +152 2578 0.400000 +152 2606 0.400000 +152 2620 0.400000 +152 2699 0.400000 +152 2747 0.400000 +152 2753 0.400000 +152 2849 0.400000 +152 2878 0.400000 +152 2899 0.400000 +152 3048 0.400000 +152 3132 0.400000 +152 3144 0.400000 +152 3153 0.400000 +152 3173 0.400000 +153 48 0.400000 +153 55 0.400000 +153 203 0.400000 +153 219 0.400000 +153 223 0.400000 +153 442 0.400000 +153 480 0.400000 +153 489 0.400000 +153 603 0.400000 +153 612 0.400000 +153 643 0.400000 +153 653 0.400000 +153 673 0.400000 +153 675 0.400000 +153 790 0.400000 +153 958 0.400000 +153 964 0.400000 +153 1024 0.400000 +153 1067 0.400000 +153 1097 0.400000 +153 1142 0.400000 +153 1189 0.400000 +153 1198 0.400000 +153 1202 0.400000 +153 1266 0.400000 +153 1285 0.400000 +153 1301 0.400000 +153 1389 0.400000 +153 1418 0.400000 +153 1425 0.400000 +153 1495 0.400000 +153 1507 0.400000 +153 1529 0.400000 +153 1578 0.400000 +153 1648 0.400000 +153 1652 0.400000 +153 1674 0.400000 +153 1682 0.400000 +153 1711 0.400000 +153 1780 0.400000 +153 1788 0.400000 +153 1860 0.400000 +153 1879 0.400000 +153 1911 0.400000 +153 1930 0.400000 +153 1958 0.400000 +153 1968 0.400000 +153 2000 0.400000 +153 2126 0.400000 +153 2250 0.400000 +153 2306 0.400000 +153 2330 0.400000 +153 2358 0.400000 +153 2368 0.400000 +153 2381 0.400000 +153 2528 0.400000 +153 2544 0.400000 +153 2551 0.400000 +153 2628 0.400000 +153 2663 0.400000 +153 2754 0.400000 +153 2817 0.400000 +153 2917 0.400000 +153 2930 0.400000 +153 3032 0.400000 +153 3156 0.400000 +153 3189 0.400000 +154 103 0.400000 +154 287 0.400000 +154 432 0.400000 +154 460 0.400000 +154 471 0.400000 +154 473 0.400000 +154 491 0.400000 +154 506 0.400000 +154 625 0.400000 +154 628 0.400000 +154 682 0.400000 +154 684 0.400000 +154 757 0.400000 +154 788 0.400000 +154 835 0.400000 +154 842 0.400000 +154 910 0.400000 +154 929 0.400000 +154 938 0.400000 +154 959 0.400000 +154 993 0.400000 +154 1019 0.400000 +154 1029 0.400000 +154 1038 0.400000 +154 1075 0.400000 +154 1138 0.400000 +154 1144 0.400000 +154 1208 0.400000 +154 1223 0.400000 +154 1351 0.400000 +154 1361 0.400000 +154 1442 0.400000 +154 1508 0.400000 +154 1528 0.400000 +154 1614 0.400000 +154 1721 0.400000 +154 1840 0.400000 +154 1854 0.400000 +154 1860 0.400000 +154 1879 0.400000 +154 1885 0.400000 +154 1888 0.400000 +154 1919 0.400000 +154 1922 0.400000 +154 1924 0.400000 +154 1941 0.400000 +154 1966 0.400000 +154 1970 0.400000 +154 2010 0.400000 +154 2017 0.400000 +154 2036 0.400000 +154 2045 0.400000 +154 2050 0.400000 +154 2090 0.400000 +154 2229 0.400000 +154 2366 0.400000 +154 2412 0.400000 +154 2446 0.400000 +154 2528 0.400000 +154 2565 0.400000 +154 2590 0.400000 +154 2716 0.400000 +154 2782 0.400000 +154 2788 0.400000 +154 2907 0.400000 +154 2938 0.400000 +154 2951 0.400000 +154 2956 0.400000 +154 3009 0.400000 +154 3039 0.400000 +154 3063 0.400000 +154 3075 0.400000 +154 3076 0.400000 +155 37 0.400000 +155 54 0.400000 +155 80 0.400000 +155 108 0.400000 +155 136 0.400000 +155 172 0.400000 +155 177 0.400000 +155 204 0.400000 +155 214 0.400000 +155 264 0.400000 +155 309 0.400000 +155 394 0.400000 +155 490 0.400000 +155 518 0.400000 +155 540 0.400000 +155 549 0.400000 +155 602 0.400000 +155 770 0.400000 +155 846 0.400000 +155 869 0.400000 +155 990 0.400000 +155 1091 0.400000 +155 1163 0.400000 +155 1253 0.400000 +155 1263 0.400000 +155 1327 0.400000 +155 1539 0.400000 +155 1605 0.400000 +155 1699 0.400000 +155 1778 0.400000 +155 1802 0.400000 +155 1907 0.400000 +155 1954 0.400000 +155 1970 0.400000 +155 2007 0.400000 +155 2047 0.400000 +155 2053 0.400000 +155 2064 0.400000 +155 2161 0.400000 +155 2252 0.400000 +155 2262 0.400000 +155 2300 0.400000 +155 2351 0.400000 +155 2384 0.400000 +155 2428 0.400000 +155 2468 0.400000 +155 2521 0.400000 +155 2647 0.400000 +155 2673 0.400000 +155 2686 0.400000 +155 2700 0.400000 +155 2727 0.400000 +155 2755 0.400000 +155 2797 0.400000 +155 2807 0.400000 +155 2854 0.400000 +155 2951 0.400000 +155 3054 0.400000 +155 3071 0.400000 +155 3089 0.400000 +156 119 0.400000 +156 125 0.400000 +156 181 0.400000 +156 257 0.400000 +156 272 0.400000 +156 342 0.400000 +156 361 0.400000 +156 456 0.400000 +156 516 0.400000 +156 534 0.400000 +156 683 0.400000 +156 709 0.400000 +156 801 0.400000 +156 933 0.400000 +156 1077 0.400000 +156 1085 0.400000 +156 1097 0.400000 +156 1117 0.400000 +156 1126 0.400000 +156 1174 0.400000 +156 1177 0.400000 +156 1279 0.400000 +156 1288 0.400000 +156 1357 0.400000 +156 1362 0.400000 +156 1402 0.400000 +156 1423 0.400000 +156 1457 0.400000 +156 1470 0.400000 +156 1481 0.400000 +156 1531 0.400000 +156 1537 0.400000 +156 1570 0.400000 +156 1603 0.400000 +156 1654 0.400000 +156 1672 0.400000 +156 1796 0.400000 +156 1839 0.400000 +156 1851 0.400000 +156 2016 0.400000 +156 2025 0.400000 +156 2065 0.400000 +156 2107 0.400000 +156 2179 0.400000 +156 2216 0.400000 +156 2218 0.400000 +156 2250 0.400000 +156 2281 0.400000 +156 2287 0.400000 +156 2327 0.400000 +156 2389 0.400000 +156 2472 0.400000 +156 2528 0.400000 +156 2591 0.400000 +156 2664 0.400000 +156 2721 0.400000 +156 2728 0.400000 +156 2844 0.400000 +156 2932 0.400000 +156 2938 0.400000 +156 3054 0.400000 +156 3087 0.400000 +156 3137 0.400000 +156 3167 0.400000 +156 3192 0.400000 +157 51 0.400000 +157 153 0.400000 +157 211 0.400000 +157 255 0.400000 +157 286 0.400000 +157 323 0.400000 +157 334 0.400000 +157 345 0.400000 +157 349 0.400000 +157 386 0.400000 +157 407 0.400000 +157 431 0.400000 +157 494 0.400000 +157 529 0.400000 +157 822 0.400000 +157 835 0.400000 +157 838 0.400000 +157 945 0.400000 +157 964 0.400000 +157 1071 0.400000 +157 1120 0.400000 +157 1194 0.400000 +157 1248 0.400000 +157 1258 0.400000 +157 1266 0.400000 +157 1337 0.400000 +157 1453 0.400000 +157 1466 0.400000 +157 1550 0.400000 +157 1619 0.400000 +157 1623 0.400000 +157 1707 0.400000 +157 1726 0.400000 +157 1952 0.400000 +157 1982 0.400000 +157 2036 0.400000 +157 2046 0.400000 +157 2054 0.400000 +157 2147 0.400000 +157 2156 0.400000 +157 2207 0.400000 +157 2215 0.400000 +157 2329 0.400000 +157 2353 0.400000 +157 2388 0.400000 +157 2390 0.400000 +157 2446 0.400000 +157 2448 0.400000 +157 2488 0.400000 +157 2501 0.400000 +157 2528 0.400000 +157 2606 0.400000 +157 2794 0.400000 +157 2862 0.400000 +157 2863 0.400000 +157 2892 0.400000 +157 2901 0.400000 +157 2939 0.400000 +157 3008 0.400000 +157 3019 0.400000 +157 3038 0.400000 +157 3039 0.400000 +157 3043 0.400000 +157 3049 0.400000 +157 3111 0.400000 +157 3112 0.400000 +157 3198 0.400000 +158 11 0.400000 +158 61 0.400000 +158 196 0.400000 +158 299 0.400000 +158 403 0.400000 +158 404 0.400000 +158 419 0.400000 +158 423 0.400000 +158 440 0.400000 +158 477 0.400000 +158 547 0.400000 +158 551 0.400000 +158 671 0.400000 +158 686 0.400000 +158 704 0.400000 +158 712 0.400000 +158 765 0.400000 +158 787 0.400000 +158 925 0.400000 +158 965 0.400000 +158 983 0.400000 +158 1093 0.400000 +158 1136 0.400000 +158 1144 0.400000 +158 1185 0.400000 +158 1216 0.400000 +158 1229 0.400000 +158 1236 0.400000 +158 1247 0.400000 +158 1277 0.400000 +158 1297 0.400000 +158 1421 0.400000 +158 1489 0.400000 +158 1529 0.400000 +158 1570 0.400000 +158 1600 0.400000 +158 1605 0.400000 +158 1618 0.400000 +158 1656 0.400000 +158 1662 0.400000 +158 1688 0.400000 +158 1801 0.400000 +158 1824 0.400000 +158 1918 0.400000 +158 1951 0.400000 +158 2039 0.400000 +158 2056 0.400000 +158 2125 0.400000 +158 2175 0.400000 +158 2177 0.400000 +158 2185 0.400000 +158 2206 0.400000 +158 2225 0.400000 +158 2253 0.400000 +158 2345 0.400000 +158 2425 0.400000 +158 2426 0.400000 +158 2450 0.400000 +158 2456 0.400000 +158 2573 0.400000 +158 2608 0.400000 +158 2676 0.400000 +158 2886 0.400000 +158 2928 0.400000 +158 2930 0.400000 +158 2935 0.400000 +158 2960 0.400000 +158 2964 0.400000 +158 3037 0.400000 +158 3115 0.400000 +158 3135 0.400000 +158 3162 0.400000 +158 3188 0.400000 +158 3190 0.400000 +159 20 0.400000 +159 28 0.400000 +159 35 0.400000 +159 54 0.400000 +159 112 0.400000 +159 162 0.400000 +159 180 0.400000 +159 238 0.400000 +159 272 0.400000 +159 371 0.400000 +159 379 0.400000 +159 460 0.400000 +159 463 0.400000 +159 469 0.400000 +159 484 0.400000 +159 517 0.400000 +159 626 0.400000 +159 714 0.400000 +159 720 0.400000 +159 812 0.400000 +159 862 0.400000 +159 890 0.400000 +159 961 0.400000 +159 1078 0.400000 +159 1100 0.400000 +159 1132 0.400000 +159 1197 0.400000 +159 1250 0.400000 +159 1305 0.400000 +159 1332 0.400000 +159 1435 0.400000 +159 1450 0.400000 +159 1468 0.400000 +159 1510 0.400000 +159 1539 0.400000 +159 1550 0.400000 +159 1614 0.400000 +159 1693 0.400000 +159 1706 0.400000 +159 1885 0.400000 +159 1898 0.400000 +159 1983 0.400000 +159 2023 0.400000 +159 2080 0.400000 +159 2121 0.400000 +159 2137 0.400000 +159 2256 0.400000 +159 2395 0.400000 +159 2572 0.400000 +159 2585 0.400000 +159 2586 0.400000 +159 2627 0.400000 +159 2628 0.400000 +159 2634 0.400000 +159 2674 0.400000 +159 2706 0.400000 +159 2747 0.400000 +159 2798 0.400000 +159 2842 0.400000 +159 2882 0.400000 +159 2914 0.400000 +159 2920 0.400000 +159 2942 0.400000 +159 2950 0.400000 +159 3009 0.400000 +159 3077 0.400000 +159 3081 0.400000 +159 3121 0.400000 +159 3122 0.400000 +159 3128 0.400000 +159 3163 0.400000 +160 64 0.400000 +160 92 0.400000 +160 145 0.400000 +160 151 0.400000 +160 155 0.400000 +160 386 0.400000 +160 416 0.400000 +160 464 0.400000 +160 495 0.400000 +160 523 0.400000 +160 527 0.400000 +160 543 0.400000 +160 578 0.400000 +160 622 0.400000 +160 678 0.400000 +160 684 0.400000 +160 708 0.400000 +160 804 0.400000 +160 865 0.400000 +160 1023 0.400000 +160 1060 0.400000 +160 1064 0.400000 +160 1071 0.400000 +160 1084 0.400000 +160 1192 0.400000 +160 1297 0.400000 +160 1325 0.400000 +160 1334 0.400000 +160 1337 0.400000 +160 1451 0.400000 +160 1476 0.400000 +160 1533 0.400000 +160 1547 0.400000 +160 1618 0.400000 +160 1630 0.400000 +160 1710 0.400000 +160 1743 0.400000 +160 1785 0.400000 +160 1816 0.400000 +160 1826 0.400000 +160 1908 0.400000 +160 1954 0.400000 +160 1982 0.400000 +160 2069 0.400000 +160 2072 0.400000 +160 2110 0.400000 +160 2116 0.400000 +160 2145 0.400000 +160 2146 0.400000 +160 2152 0.400000 +160 2176 0.400000 +160 2185 0.400000 +160 2260 0.400000 +160 2274 0.400000 +160 2466 0.400000 +160 2471 0.400000 +160 2503 0.400000 +160 2604 0.400000 +160 2639 0.400000 +160 2696 0.400000 +160 2757 0.400000 +160 2831 0.400000 +160 2863 0.400000 +160 2884 0.400000 +160 2912 0.400000 +160 3057 0.400000 +160 3095 0.400000 +160 3103 0.400000 +161 20 0.400000 +161 22 0.400000 +161 26 0.400000 +161 99 0.400000 +161 101 0.400000 +161 136 0.400000 +161 140 0.400000 +161 197 0.400000 +161 218 0.400000 +161 262 0.400000 +161 276 0.400000 +161 277 0.400000 +161 281 0.400000 +161 291 0.400000 +161 307 0.400000 +161 338 0.400000 +161 457 0.400000 +161 471 0.400000 +161 636 0.400000 +161 708 0.400000 +161 764 0.400000 +161 846 0.400000 +161 861 0.400000 +161 866 0.400000 +161 888 0.400000 +161 933 0.400000 +161 1143 0.400000 +161 1149 0.400000 +161 1288 0.400000 +161 1342 0.400000 +161 1366 0.400000 +161 1400 0.400000 +161 1404 0.400000 +161 1405 0.400000 +161 1417 0.400000 +161 1435 0.400000 +161 1490 0.400000 +161 1509 0.400000 +161 1511 0.400000 +161 1687 0.400000 +161 1697 0.400000 +161 1710 0.400000 +161 1832 0.400000 +161 1970 0.400000 +161 1975 0.400000 +161 2108 0.400000 +161 2167 0.400000 +161 2172 0.400000 +161 2298 0.400000 +161 2309 0.400000 +161 2323 0.400000 +161 2349 0.400000 +161 2391 0.400000 +161 2409 0.400000 +161 2467 0.400000 +161 2492 0.400000 +161 2627 0.400000 +161 2634 0.400000 +161 2660 0.400000 +161 2707 0.400000 +161 2803 0.400000 +161 2947 0.400000 +161 2951 0.400000 +161 3082 0.400000 +162 32 0.400000 +162 132 0.400000 +162 140 0.400000 +162 153 0.400000 +162 193 0.400000 +162 204 0.400000 +162 352 0.400000 +162 386 0.400000 +162 415 0.400000 +162 486 0.400000 +162 592 0.400000 +162 607 0.400000 +162 621 0.400000 +162 652 0.400000 +162 707 0.400000 +162 709 0.400000 +162 721 0.400000 +162 748 0.400000 +162 794 0.400000 +162 895 0.400000 +162 924 0.400000 +162 1057 0.400000 +162 1066 0.400000 +162 1101 0.400000 +162 1195 0.400000 +162 1224 0.400000 +162 1273 0.400000 +162 1406 0.400000 +162 1420 0.400000 +162 1444 0.400000 +162 1483 0.400000 +162 1487 0.400000 +162 1560 0.400000 +162 1625 0.400000 +162 1643 0.400000 +162 1708 0.400000 +162 1806 0.400000 +162 1844 0.400000 +162 1853 0.400000 +162 2025 0.400000 +162 2049 0.400000 +162 2082 0.400000 +162 2151 0.400000 +162 2188 0.400000 +162 2371 0.400000 +162 2373 0.400000 +162 2513 0.400000 +162 2520 0.400000 +162 2625 0.400000 +162 2632 0.400000 +162 2643 0.400000 +162 2688 0.400000 +162 2695 0.400000 +162 2730 0.400000 +162 2756 0.400000 +162 2812 0.400000 +162 2857 0.400000 +162 2864 0.400000 +162 2937 0.400000 +162 2940 0.400000 +162 2956 0.400000 +162 2966 0.400000 +162 3035 0.400000 +162 3114 0.400000 +162 3126 0.400000 +162 3128 0.400000 +162 3137 0.400000 +162 3171 0.400000 +163 38 0.400000 +163 69 0.400000 +163 79 0.400000 +163 288 0.400000 +163 342 0.400000 +163 411 0.400000 +163 457 0.400000 +163 486 0.400000 +163 491 0.400000 +163 592 0.400000 +163 617 0.400000 +163 643 0.400000 +163 685 0.400000 +163 698 0.400000 +163 838 0.400000 +163 923 0.400000 +163 958 0.400000 +163 966 0.400000 +163 997 0.400000 +163 1001 0.400000 +163 1061 0.400000 +163 1063 0.400000 +163 1073 0.400000 +163 1111 0.400000 +163 1254 0.400000 +163 1298 0.400000 +163 1311 0.400000 +163 1335 0.400000 +163 1340 0.400000 +163 1365 0.400000 +163 1367 0.400000 +163 1375 0.400000 +163 1383 0.400000 +163 1391 0.400000 +163 1402 0.400000 +163 1406 0.400000 +163 1425 0.400000 +163 1459 0.400000 +163 1480 0.400000 +163 1604 0.400000 +163 1633 0.400000 +163 1665 0.400000 +163 1683 0.400000 +163 1692 0.400000 +163 1780 0.400000 +163 1790 0.400000 +163 1880 0.400000 +163 2106 0.400000 +163 2133 0.400000 +163 2200 0.400000 +163 2323 0.400000 +163 2341 0.400000 +163 2383 0.400000 +163 2387 0.400000 +163 2512 0.400000 +163 2556 0.400000 +163 2558 0.400000 +163 2587 0.400000 +163 2616 0.400000 +163 2627 0.400000 +163 2703 0.400000 +163 2788 0.400000 +163 2817 0.400000 +163 2874 0.400000 +163 2938 0.400000 +163 2996 0.400000 +163 2997 0.400000 +164 2 0.400000 +164 7 0.400000 +164 56 0.400000 +164 71 0.400000 +164 190 0.400000 +164 411 0.400000 +164 439 0.400000 +164 574 0.400000 +164 611 0.400000 +164 643 0.400000 +164 668 0.400000 +164 755 0.400000 +164 840 0.400000 +164 858 0.400000 +164 930 0.400000 +164 951 0.400000 +164 963 0.400000 +164 970 0.400000 +164 1004 0.400000 +164 1080 0.400000 +164 1276 0.400000 +164 1309 0.400000 +164 1335 0.400000 +164 1556 0.400000 +164 1598 0.400000 +164 1618 0.400000 +164 1679 0.400000 +164 1690 0.400000 +164 1728 0.400000 +164 1770 0.400000 +164 1782 0.400000 +164 1855 0.400000 +164 1931 0.400000 +164 1964 0.400000 +164 1972 0.400000 +164 1989 0.400000 +164 2245 0.400000 +164 2269 0.400000 +164 2273 0.400000 +164 2314 0.400000 +164 2378 0.400000 +164 2415 0.400000 +164 2417 0.400000 +164 2473 0.400000 +164 2498 0.400000 +164 2529 0.400000 +164 2583 0.400000 +164 2585 0.400000 +164 2625 0.400000 +164 2674 0.400000 +164 2704 0.400000 +164 2878 0.400000 +164 2914 0.400000 +164 2928 0.400000 +164 2945 0.400000 +164 3013 0.400000 +164 3088 0.400000 +164 3121 0.400000 +165 42 0.400000 +165 106 0.400000 +165 164 0.400000 +165 184 0.400000 +165 219 0.400000 +165 223 0.400000 +165 263 0.400000 +165 302 0.400000 +165 315 0.400000 +165 423 0.400000 +165 430 0.400000 +165 442 0.400000 +165 480 0.400000 +165 495 0.400000 +165 582 0.400000 +165 601 0.400000 +165 745 0.400000 +165 791 0.400000 +165 856 0.400000 +165 859 0.400000 +165 882 0.400000 +165 894 0.400000 +165 915 0.400000 +165 956 0.400000 +165 1005 0.400000 +165 1203 0.400000 +165 1367 0.400000 +165 1479 0.400000 +165 1524 0.400000 +165 1536 0.400000 +165 1588 0.400000 +165 1622 0.400000 +165 1628 0.400000 +165 1637 0.400000 +165 1638 0.400000 +165 1710 0.400000 +165 1714 0.400000 +165 1815 0.400000 +165 1820 0.400000 +165 1875 0.400000 +165 1968 0.400000 +165 2070 0.400000 +165 2080 0.400000 +165 2181 0.400000 +165 2234 0.400000 +165 2326 0.400000 +165 2327 0.400000 +165 2335 0.400000 +165 2363 0.400000 +165 2364 0.400000 +165 2551 0.400000 +165 2622 0.400000 +165 2679 0.400000 +165 2699 0.400000 +165 2752 0.400000 +165 2764 0.400000 +165 2803 0.400000 +165 2813 0.400000 +165 2830 0.400000 +165 2920 0.400000 +165 2954 0.400000 +165 3030 0.400000 +165 3034 0.400000 +165 3068 0.400000 +165 3088 0.400000 +166 18 0.400000 +166 87 0.400000 +166 102 0.400000 +166 164 0.400000 +166 189 0.400000 +166 217 0.400000 +166 249 0.400000 +166 250 0.400000 +166 306 0.400000 +166 314 0.400000 +166 412 0.400000 +166 471 0.400000 +166 493 0.400000 +166 553 0.400000 +166 554 0.400000 +166 557 0.400000 +166 565 0.400000 +166 623 0.400000 +166 636 0.400000 +166 665 0.400000 +166 697 0.400000 +166 707 0.400000 +166 711 0.400000 +166 714 0.400000 +166 735 0.400000 +166 814 0.400000 +166 820 0.400000 +166 872 0.400000 +166 889 0.400000 +166 971 0.400000 +166 993 0.400000 +166 1054 0.400000 +166 1058 0.400000 +166 1082 0.400000 +166 1135 0.400000 +166 1147 0.400000 +166 1258 0.400000 +166 1266 0.400000 +166 1334 0.400000 +166 1361 0.400000 +166 1378 0.400000 +166 1424 0.400000 +166 1460 0.400000 +166 1496 0.400000 +166 1558 0.400000 +166 1570 0.400000 +166 1603 0.400000 +166 1661 0.400000 +166 1718 0.400000 +166 1787 0.400000 +166 1930 0.400000 +166 1935 0.400000 +166 2009 0.400000 +166 2214 0.400000 +166 2345 0.400000 +166 2366 0.400000 +166 2478 0.400000 +166 2494 0.400000 +166 2527 0.400000 +166 2598 0.400000 +166 2615 0.400000 +166 2832 0.400000 +166 2883 0.400000 +166 2891 0.400000 +166 2916 0.400000 +166 3013 0.400000 +166 3031 0.400000 +166 3066 0.400000 +166 3109 0.400000 +166 3180 0.400000 +167 70 0.400000 +167 90 0.400000 +167 150 0.400000 +167 197 0.400000 +167 280 0.400000 +167 311 0.400000 +167 345 0.400000 +167 382 0.400000 +167 414 0.400000 +167 417 0.400000 +167 518 0.400000 +167 566 0.400000 +167 706 0.400000 +167 708 0.400000 +167 774 0.400000 +167 819 0.400000 +167 889 0.400000 +167 963 0.400000 +167 995 0.400000 +167 1050 0.400000 +167 1100 0.400000 +167 1113 0.400000 +167 1149 0.400000 +167 1156 0.400000 +167 1168 0.400000 +167 1312 0.400000 +167 1402 0.400000 +167 1473 0.400000 +167 1526 0.400000 +167 1542 0.400000 +167 1544 0.400000 +167 1609 0.400000 +167 1661 0.400000 +167 1780 0.400000 +167 1813 0.400000 +167 1819 0.400000 +167 1844 0.400000 +167 1906 0.400000 +167 2028 0.400000 +167 2037 0.400000 +167 2043 0.400000 +167 2071 0.400000 +167 2079 0.400000 +167 2123 0.400000 +167 2142 0.400000 +167 2210 0.400000 +167 2234 0.400000 +167 2276 0.400000 +167 2344 0.400000 +167 2377 0.400000 +167 2411 0.400000 +167 2426 0.400000 +167 2439 0.400000 +167 2452 0.400000 +167 2491 0.400000 +167 2558 0.400000 +167 2597 0.400000 +167 2612 0.400000 +167 2687 0.400000 +167 2710 0.400000 +167 2748 0.400000 +167 2756 0.400000 +167 2786 0.400000 +167 2796 0.400000 +167 2824 0.400000 +167 2845 0.400000 +167 2847 0.400000 +167 2976 0.400000 +167 2988 0.400000 +167 3026 0.400000 +167 3123 0.400000 +168 29 0.400000 +168 53 0.400000 +168 64 0.400000 +168 81 0.400000 +168 111 0.400000 +168 114 0.400000 +168 146 0.400000 +168 174 0.400000 +168 182 0.400000 +168 328 0.400000 +168 450 0.400000 +168 518 0.400000 +168 521 0.400000 +168 566 0.400000 +168 605 0.400000 +168 684 0.400000 +168 731 0.400000 +168 779 0.400000 +168 832 0.400000 +168 875 0.400000 +168 956 0.400000 +168 964 0.400000 +168 1057 0.400000 +168 1119 0.400000 +168 1140 0.400000 +168 1220 0.400000 +168 1298 0.400000 +168 1327 0.400000 +168 1373 0.400000 +168 1555 0.400000 +168 1580 0.400000 +168 1660 0.400000 +168 1753 0.400000 +168 1754 0.400000 +168 1764 0.400000 +168 1888 0.400000 +168 1959 0.400000 +168 1995 0.400000 +168 1998 0.400000 +168 2120 0.400000 +168 2383 0.400000 +168 2386 0.400000 +168 2405 0.400000 +168 2445 0.400000 +168 2470 0.400000 +168 2475 0.400000 +168 2477 0.400000 +168 2506 0.400000 +168 2564 0.400000 +168 2655 0.400000 +168 2656 0.400000 +168 2674 0.400000 +168 2697 0.400000 +168 2698 0.400000 +168 2815 0.400000 +168 2864 0.400000 +168 2875 0.400000 +168 2900 0.400000 +168 2992 0.400000 +168 3122 0.400000 +168 3143 0.400000 +168 3156 0.400000 +168 3178 0.400000 +169 28 0.400000 +169 32 0.400000 +169 65 0.400000 +169 70 0.400000 +169 118 0.400000 +169 146 0.400000 +169 192 0.400000 +169 261 0.400000 +169 382 0.400000 +169 413 0.400000 +169 438 0.400000 +169 502 0.400000 +169 510 0.400000 +169 528 0.400000 +169 543 0.400000 +169 595 0.400000 +169 606 0.400000 +169 625 0.400000 +169 641 0.400000 +169 655 0.400000 +169 683 0.400000 +169 754 0.400000 +169 806 0.400000 +169 826 0.400000 +169 919 0.400000 +169 946 0.400000 +169 1047 0.400000 +169 1149 0.400000 +169 1152 0.400000 +169 1155 0.400000 +169 1162 0.400000 +169 1181 0.400000 +169 1261 0.400000 +169 1429 0.400000 +169 1457 0.400000 +169 1461 0.400000 +169 1501 0.400000 +169 1574 0.400000 +169 1664 0.400000 +169 1666 0.400000 +169 1725 0.400000 +169 1726 0.400000 +169 1951 0.400000 +169 2040 0.400000 +169 2070 0.400000 +169 2229 0.400000 +169 2285 0.400000 +169 2297 0.400000 +169 2307 0.400000 +169 2334 0.400000 +169 2373 0.400000 +169 2410 0.400000 +169 2414 0.400000 +169 2547 0.400000 +169 2710 0.400000 +169 2772 0.400000 +169 2774 0.400000 +169 2839 0.400000 +169 2845 0.400000 +169 2859 0.400000 +169 2889 0.400000 +169 2901 0.400000 +169 2971 0.400000 +169 2984 0.400000 +169 3051 0.400000 +169 3123 0.400000 +169 3151 0.400000 +170 28 0.400000 +170 68 0.400000 +170 147 0.400000 +170 220 0.400000 +170 260 0.400000 +170 271 0.400000 +170 290 0.400000 +170 301 0.400000 +170 323 0.400000 +170 329 0.400000 +170 348 0.400000 +170 372 0.400000 +170 382 0.400000 +170 419 0.400000 +170 490 0.400000 +170 522 0.400000 +170 638 0.400000 +170 744 0.400000 +170 877 0.400000 +170 884 0.400000 +170 1036 0.400000 +170 1086 0.400000 +170 1179 0.400000 +170 1253 0.400000 +170 1278 0.400000 +170 1285 0.400000 +170 1293 0.400000 +170 1339 0.400000 +170 1486 0.400000 +170 1500 0.400000 +170 1541 0.400000 +170 1814 0.400000 +170 1868 0.400000 +170 1873 0.400000 +170 1907 0.400000 +170 1946 0.400000 +170 1976 0.400000 +170 2071 0.400000 +170 2212 0.400000 +170 2269 0.400000 +170 2293 0.400000 +170 2326 0.400000 +170 2327 0.400000 +170 2334 0.400000 +170 2354 0.400000 +170 2389 0.400000 +170 2395 0.400000 +170 2436 0.400000 +170 2438 0.400000 +170 2506 0.400000 +170 2524 0.400000 +170 2649 0.400000 +170 2723 0.400000 +170 2830 0.400000 +170 2899 0.400000 +170 2933 0.400000 +170 2936 0.400000 +170 3018 0.400000 +170 3042 0.400000 +170 3154 0.400000 +171 34 0.400000 +171 151 0.400000 +171 176 0.400000 +171 197 0.400000 +171 205 0.400000 +171 252 0.400000 +171 299 0.400000 +171 363 0.400000 +171 410 0.400000 +171 457 0.400000 +171 461 0.400000 +171 483 0.400000 +171 498 0.400000 +171 511 0.400000 +171 540 0.400000 +171 619 0.400000 +171 632 0.400000 +171 666 0.400000 +171 685 0.400000 +171 791 0.400000 +171 827 0.400000 +171 894 0.400000 +171 962 0.400000 +171 1140 0.400000 +171 1168 0.400000 +171 1260 0.400000 +171 1331 0.400000 +171 1411 0.400000 +171 1531 0.400000 +171 1545 0.400000 +171 1557 0.400000 +171 1592 0.400000 +171 1716 0.400000 +171 1725 0.400000 +171 1778 0.400000 +171 1814 0.400000 +171 1845 0.400000 +171 1932 0.400000 +171 2081 0.400000 +171 2087 0.400000 +171 2179 0.400000 +171 2183 0.400000 +171 2185 0.400000 +171 2191 0.400000 +171 2211 0.400000 +171 2270 0.400000 +171 2306 0.400000 +171 2337 0.400000 +171 2426 0.400000 +171 2427 0.400000 +171 2495 0.400000 +171 2499 0.400000 +171 2559 0.400000 +171 2635 0.400000 +171 2658 0.400000 +171 2674 0.400000 +171 2676 0.400000 +171 2756 0.400000 +171 2810 0.400000 +171 2845 0.400000 +171 2853 0.400000 +171 2953 0.400000 +171 2958 0.400000 +171 3062 0.400000 +171 3082 0.400000 +171 3092 0.400000 +171 3099 0.400000 +171 3141 0.400000 +171 3164 0.400000 +171 3189 0.400000 +172 58 0.400000 +172 103 0.400000 +172 188 0.400000 +172 199 0.400000 +172 316 0.400000 +172 337 0.400000 +172 341 0.400000 +172 357 0.400000 +172 384 0.400000 +172 386 0.400000 +172 405 0.400000 +172 443 0.400000 +172 486 0.400000 +172 513 0.400000 +172 520 0.400000 +172 642 0.400000 +172 660 0.400000 +172 673 0.400000 +172 684 0.400000 +172 756 0.400000 +172 846 0.400000 +172 857 0.400000 +172 892 0.400000 +172 894 0.400000 +172 1068 0.400000 +172 1087 0.400000 +172 1113 0.400000 +172 1120 0.400000 +172 1295 0.400000 +172 1320 0.400000 +172 1332 0.400000 +172 1410 0.400000 +172 1572 0.400000 +172 1624 0.400000 +172 1633 0.400000 +172 1680 0.400000 +172 1725 0.400000 +172 1753 0.400000 +172 1790 0.400000 +172 1817 0.400000 +172 1860 0.400000 +172 1894 0.400000 +172 2017 0.400000 +172 2037 0.400000 +172 2045 0.400000 +172 2088 0.400000 +172 2188 0.400000 +172 2257 0.400000 +172 2305 0.400000 +172 2477 0.400000 +172 2652 0.400000 +172 2771 0.400000 +172 2890 0.400000 +172 2905 0.400000 +172 2935 0.400000 +172 2973 0.400000 +172 3007 0.400000 +172 3080 0.400000 +172 3103 0.400000 +172 3142 0.400000 +172 3154 0.400000 +173 36 0.400000 +173 64 0.400000 +173 130 0.400000 +173 157 0.400000 +173 172 0.400000 +173 193 0.400000 +173 229 0.400000 +173 368 0.400000 +173 471 0.400000 +173 550 0.400000 +173 596 0.400000 +173 661 0.400000 +173 708 0.400000 +173 739 0.400000 +173 743 0.400000 +173 753 0.400000 +173 774 0.400000 +173 857 0.400000 +173 1047 0.400000 +173 1103 0.400000 +173 1117 0.400000 +173 1146 0.400000 +173 1277 0.400000 +173 1499 0.400000 +173 1520 0.400000 +173 1557 0.400000 +173 1571 0.400000 +173 1595 0.400000 +173 1621 0.400000 +173 1697 0.400000 +173 1718 0.400000 +173 1745 0.400000 +173 1801 0.400000 +173 1830 0.400000 +173 1847 0.400000 +173 1864 0.400000 +173 1894 0.400000 +173 1912 0.400000 +173 2000 0.400000 +173 2025 0.400000 +173 2049 0.400000 +173 2077 0.400000 +173 2300 0.400000 +173 2345 0.400000 +173 2452 0.400000 +173 2553 0.400000 +173 2558 0.400000 +173 2563 0.400000 +173 2565 0.400000 +173 2669 0.400000 +173 2696 0.400000 +173 2698 0.400000 +173 2732 0.400000 +173 2734 0.400000 +173 2744 0.400000 +173 2768 0.400000 +173 2788 0.400000 +173 2909 0.400000 +173 2977 0.400000 +173 3017 0.400000 +173 3025 0.400000 +173 3050 0.400000 +173 3058 0.400000 +173 3107 0.400000 +174 71 0.400000 +174 118 0.400000 +174 144 0.400000 +174 191 0.400000 +174 300 0.400000 +174 367 0.400000 +174 374 0.400000 +174 385 0.400000 +174 429 0.400000 +174 446 0.400000 +174 461 0.400000 +174 466 0.400000 +174 493 0.400000 +174 503 0.400000 +174 574 0.400000 +174 658 0.400000 +174 934 0.400000 +174 1071 0.400000 +174 1102 0.400000 +174 1140 0.400000 +174 1172 0.400000 +174 1199 0.400000 +174 1233 0.400000 +174 1349 0.400000 +174 1497 0.400000 +174 1507 0.400000 +174 1515 0.400000 +174 1534 0.400000 +174 1541 0.400000 +174 1560 0.400000 +174 1577 0.400000 +174 1647 0.400000 +174 1698 0.400000 +174 1851 0.400000 +174 1938 0.400000 +174 1982 0.400000 +174 1995 0.400000 +174 2000 0.400000 +174 2040 0.400000 +174 2051 0.400000 +174 2062 0.400000 +174 2158 0.400000 +174 2163 0.400000 +174 2179 0.400000 +174 2201 0.400000 +174 2290 0.400000 +174 2397 0.400000 +174 2402 0.400000 +174 2416 0.400000 +174 2592 0.400000 +174 2661 0.400000 +174 2716 0.400000 +174 2776 0.400000 +174 2881 0.400000 +174 3106 0.400000 +174 3116 0.400000 +174 3194 0.400000 +175 14 0.400000 +175 15 0.400000 +175 85 0.400000 +175 119 0.400000 +175 157 0.400000 +175 183 0.400000 +175 199 0.400000 +175 206 0.400000 +175 320 0.400000 +175 325 0.400000 +175 329 0.400000 +175 412 0.400000 +175 451 0.400000 +175 460 0.400000 +175 507 0.400000 +175 607 0.400000 +175 614 0.400000 +175 617 0.400000 +175 725 0.400000 +175 843 0.400000 +175 935 0.400000 +175 966 0.400000 +175 1047 0.400000 +175 1070 0.400000 +175 1079 0.400000 +175 1121 0.400000 +175 1234 0.400000 +175 1241 0.400000 +175 1289 0.400000 +175 1339 0.400000 +175 1386 0.400000 +175 1416 0.400000 +175 1468 0.400000 +175 1500 0.400000 +175 1684 0.400000 +175 1737 0.400000 +175 1797 0.400000 +175 1860 0.400000 +175 1914 0.400000 +175 1938 0.400000 +175 1940 0.400000 +175 2179 0.400000 +175 2191 0.400000 +175 2203 0.400000 +175 2221 0.400000 +175 2258 0.400000 +175 2262 0.400000 +175 2333 0.400000 +175 2339 0.400000 +175 2409 0.400000 +175 2423 0.400000 +175 2496 0.400000 +175 2498 0.400000 +175 2539 0.400000 +175 2557 0.400000 +175 2586 0.400000 +175 2611 0.400000 +175 2762 0.400000 +175 2864 0.400000 +175 2879 0.400000 +175 2935 0.400000 +175 2962 0.400000 +175 2978 0.400000 +175 3028 0.400000 +175 3059 0.400000 +175 3103 0.400000 +175 3104 0.400000 +176 20 0.400000 +176 70 0.400000 +176 132 0.400000 +176 137 0.400000 +176 172 0.400000 +176 205 0.400000 +176 227 0.400000 +176 231 0.400000 +176 240 0.400000 +176 270 0.400000 +176 314 0.400000 +176 350 0.400000 +176 362 0.400000 +176 422 0.400000 +176 438 0.400000 +176 458 0.400000 +176 504 0.400000 +176 587 0.400000 +176 596 0.400000 +176 686 0.400000 +176 705 0.400000 +176 719 0.400000 +176 722 0.400000 +176 766 0.400000 +176 798 0.400000 +176 815 0.400000 +176 869 0.400000 +176 871 0.400000 +176 944 0.400000 +176 1050 0.400000 +176 1088 0.400000 +176 1091 0.400000 +176 1117 0.400000 +176 1118 0.400000 +176 1121 0.400000 +176 1137 0.400000 +176 1201 0.400000 +176 1239 0.400000 +176 1289 0.400000 +176 1328 0.400000 +176 1371 0.400000 +176 1396 0.400000 +176 1411 0.400000 +176 1440 0.400000 +176 1642 0.400000 +176 1659 0.400000 +176 1663 0.400000 +176 1694 0.400000 +176 1697 0.400000 +176 1715 0.400000 +176 1786 0.400000 +176 1834 0.400000 +176 1853 0.400000 +176 1881 0.400000 +176 1922 0.400000 +176 1984 0.400000 +176 1985 0.400000 +176 2078 0.400000 +176 2149 0.400000 +176 2150 0.400000 +176 2159 0.400000 +176 2165 0.400000 +176 2287 0.400000 +176 2332 0.400000 +176 2333 0.400000 +176 2334 0.400000 +176 2377 0.400000 +176 2449 0.400000 +176 2480 0.400000 +176 2574 0.400000 +176 2631 0.400000 +176 2644 0.400000 +176 2655 0.400000 +176 2725 0.400000 +176 2728 0.400000 +176 2736 0.400000 +176 2740 0.400000 +176 2861 0.400000 +176 2905 0.400000 +176 2912 0.400000 +176 2959 0.400000 +176 3082 0.400000 +176 3169 0.400000 +177 7 0.400000 +177 125 0.400000 +177 146 0.400000 +177 177 0.400000 +177 184 0.400000 +177 291 0.400000 +177 428 0.400000 +177 432 0.400000 +177 719 0.400000 +177 779 0.400000 +177 794 0.400000 +177 805 0.400000 +177 847 0.400000 +177 856 0.400000 +177 950 0.400000 +177 953 0.400000 +177 967 0.400000 +177 1047 0.400000 +177 1297 0.400000 +177 1381 0.400000 +177 1392 0.400000 +177 1395 0.400000 +177 1458 0.400000 +177 1492 0.400000 +177 1527 0.400000 +177 1673 0.400000 +177 1758 0.400000 +177 1761 0.400000 +177 1768 0.400000 +177 1775 0.400000 +177 1788 0.400000 +177 1821 0.400000 +177 1894 0.400000 +177 1915 0.400000 +177 1994 0.400000 +177 2056 0.400000 +177 2111 0.400000 +177 2186 0.400000 +177 2252 0.400000 +177 2298 0.400000 +177 2344 0.400000 +177 2393 0.400000 +177 2398 0.400000 +177 2413 0.400000 +177 2429 0.400000 +177 2541 0.400000 +177 2570 0.400000 +177 2601 0.400000 +177 2624 0.400000 +177 2643 0.400000 +177 2717 0.400000 +177 2723 0.400000 +177 2724 0.400000 +177 2786 0.400000 +177 2810 0.400000 +177 2848 0.400000 +177 2855 0.400000 +177 3022 0.400000 +177 3094 0.400000 +177 3097 0.400000 +177 3100 0.400000 +177 3140 0.400000 +177 3154 0.400000 +177 3195 0.400000 +178 7 0.400000 +178 8 0.400000 +178 63 0.400000 +178 76 0.400000 +178 248 0.400000 +178 259 0.400000 +178 261 0.400000 +178 277 0.400000 +178 368 0.400000 +178 443 0.400000 +178 448 0.400000 +178 469 0.400000 +178 482 0.400000 +178 484 0.400000 +178 647 0.400000 +178 678 0.400000 +178 693 0.400000 +178 757 0.400000 +178 790 0.400000 +178 807 0.400000 +178 841 0.400000 +178 862 0.400000 +178 888 0.400000 +178 892 0.400000 +178 904 0.400000 +178 977 0.400000 +178 988 0.400000 +178 1020 0.400000 +178 1044 0.400000 +178 1214 0.400000 +178 1353 0.400000 +178 1354 0.400000 +178 1370 0.400000 +178 1420 0.400000 +178 1448 0.400000 +178 1462 0.400000 +178 1463 0.400000 +178 1471 0.400000 +178 1479 0.400000 +178 1527 0.400000 +178 1555 0.400000 +178 1647 0.400000 +178 1692 0.400000 +178 1780 0.400000 +178 1814 0.400000 +178 1938 0.400000 +178 2003 0.400000 +178 2202 0.400000 +178 2269 0.400000 +178 2281 0.400000 +178 2294 0.400000 +178 2298 0.400000 +178 2311 0.400000 +178 2318 0.400000 +178 2343 0.400000 +178 2386 0.400000 +178 2389 0.400000 +178 2413 0.400000 +178 2427 0.400000 +178 2574 0.400000 +178 2630 0.400000 +178 2680 0.400000 +178 2760 0.400000 +178 2770 0.400000 +178 2794 0.400000 +178 2819 0.400000 +178 2835 0.400000 +178 2929 0.400000 +178 2959 0.400000 +178 2988 0.400000 +178 3040 0.400000 +178 3089 0.400000 +178 3109 0.400000 +178 3118 0.400000 +178 3145 0.400000 +178 3151 0.400000 +178 3195 0.400000 +179 100 0.400000 +179 154 0.400000 +179 155 0.400000 +179 160 0.400000 +179 310 0.400000 +179 355 0.400000 +179 388 0.400000 +179 542 0.400000 +179 551 0.400000 +179 579 0.400000 +179 597 0.400000 +179 608 0.400000 +179 618 0.400000 +179 826 0.400000 +179 859 0.400000 +179 941 0.400000 +179 946 0.400000 +179 1032 0.400000 +179 1038 0.400000 +179 1115 0.400000 +179 1123 0.400000 +179 1342 0.400000 +179 1345 0.400000 +179 1366 0.400000 +179 1376 0.400000 +179 1429 0.400000 +179 1453 0.400000 +179 1476 0.400000 +179 1482 0.400000 +179 1486 0.400000 +179 1649 0.400000 +179 1890 0.400000 +179 1973 0.400000 +179 1984 0.400000 +179 2011 0.400000 +179 2050 0.400000 +179 2273 0.400000 +179 2321 0.400000 +179 2555 0.400000 +179 2752 0.400000 +179 2883 0.400000 +179 2943 0.400000 +179 2996 0.400000 +179 3000 0.400000 +179 3044 0.400000 +179 3088 0.400000 +179 3129 0.400000 +180 38 0.400000 +180 123 0.400000 +180 177 0.400000 +180 203 0.400000 +180 263 0.400000 +180 342 0.400000 +180 365 0.400000 +180 412 0.400000 +180 425 0.400000 +180 448 0.400000 +180 476 0.400000 +180 524 0.400000 +180 534 0.400000 +180 543 0.400000 +180 645 0.400000 +180 712 0.400000 +180 960 0.400000 +180 1072 0.400000 +180 1086 0.400000 +180 1211 0.400000 +180 1243 0.400000 +180 1275 0.400000 +180 1311 0.400000 +180 1682 0.400000 +180 1714 0.400000 +180 1791 0.400000 +180 1849 0.400000 +180 1878 0.400000 +180 1935 0.400000 +180 2045 0.400000 +180 2115 0.400000 +180 2131 0.400000 +180 2213 0.400000 +180 2265 0.400000 +180 2283 0.400000 +180 2328 0.400000 +180 2411 0.400000 +180 2466 0.400000 +180 2575 0.400000 +180 2587 0.400000 +180 2589 0.400000 +180 2676 0.400000 +180 2720 0.400000 +180 2952 0.400000 +180 3133 0.400000 +181 43 0.400000 +181 161 0.400000 +181 297 0.400000 +181 422 0.400000 +181 432 0.400000 +181 534 0.400000 +181 577 0.400000 +181 585 0.400000 +181 625 0.400000 +181 683 0.400000 +181 707 0.400000 +181 755 0.400000 +181 973 0.400000 +181 993 0.400000 +181 998 0.400000 +181 1088 0.400000 +181 1094 0.400000 +181 1215 0.400000 +181 1227 0.400000 +181 1279 0.400000 +181 1298 0.400000 +181 1390 0.400000 +181 1449 0.400000 +181 1588 0.400000 +181 1595 0.400000 +181 1625 0.400000 +181 1641 0.400000 +181 1655 0.400000 +181 1668 0.400000 +181 1674 0.400000 +181 1675 0.400000 +181 1777 0.400000 +181 1804 0.400000 +181 1851 0.400000 +181 1873 0.400000 +181 1947 0.400000 +181 2137 0.400000 +181 2138 0.400000 +181 2147 0.400000 +181 2151 0.400000 +181 2167 0.400000 +181 2188 0.400000 +181 2259 0.400000 +181 2283 0.400000 +181 2409 0.400000 +181 2459 0.400000 +181 2512 0.400000 +181 2586 0.400000 +181 2606 0.400000 +181 2616 0.400000 +181 2620 0.400000 +181 2641 0.400000 +181 2642 0.400000 +181 2667 0.400000 +181 2691 0.400000 +181 2711 0.400000 +181 2734 0.400000 +181 2740 0.400000 +181 2781 0.400000 +181 2809 0.400000 +181 2824 0.400000 +181 2922 0.400000 +181 2928 0.400000 +181 3034 0.400000 +181 3071 0.400000 +181 3122 0.400000 +181 3142 0.400000 +181 3145 0.400000 +181 3181 0.400000 +182 14 0.400000 +182 23 0.400000 +182 137 0.400000 +182 141 0.400000 +182 155 0.400000 +182 400 0.400000 +182 403 0.400000 +182 460 0.400000 +182 641 0.400000 +182 683 0.400000 +182 688 0.400000 +182 728 0.400000 +182 731 0.400000 +182 758 0.400000 +182 765 0.400000 +182 801 0.400000 +182 815 0.400000 +182 925 0.400000 +182 949 0.400000 +182 1080 0.400000 +182 1107 0.400000 +182 1112 0.400000 +182 1200 0.400000 +182 1469 0.400000 +182 1552 0.400000 +182 1562 0.400000 +182 1600 0.400000 +182 1671 0.400000 +182 1731 0.400000 +182 1734 0.400000 +182 1761 0.400000 +182 1786 0.400000 +182 1819 0.400000 +182 1843 0.400000 +182 1852 0.400000 +182 1877 0.400000 +182 1886 0.400000 +182 1912 0.400000 +182 1929 0.400000 +182 1930 0.400000 +182 2012 0.400000 +182 2049 0.400000 +182 2077 0.400000 +182 2108 0.400000 +182 2149 0.400000 +182 2194 0.400000 +182 2227 0.400000 +182 2314 0.400000 +182 2355 0.400000 +182 2400 0.400000 +182 2425 0.400000 +182 2497 0.400000 +182 2610 0.400000 +182 2636 0.400000 +182 2662 0.400000 +182 2688 0.400000 +182 2739 0.400000 +182 2791 0.400000 +182 2845 0.400000 +182 2888 0.400000 +182 2895 0.400000 +182 2974 0.400000 +182 2981 0.400000 +182 3047 0.400000 +182 3055 0.400000 +182 3068 0.400000 +182 3077 0.400000 +182 3189 0.400000 +183 13 0.400000 +183 23 0.400000 +183 143 0.400000 +183 203 0.400000 +183 275 0.400000 +183 373 0.400000 +183 417 0.400000 +183 422 0.400000 +183 449 0.400000 +183 480 0.400000 +183 541 0.400000 +183 623 0.400000 +183 684 0.400000 +183 709 0.400000 +183 734 0.400000 +183 831 0.400000 +183 846 0.400000 +183 852 0.400000 +183 871 0.400000 +183 887 0.400000 +183 913 0.400000 +183 945 0.400000 +183 969 0.400000 +183 1114 0.400000 +183 1159 0.400000 +183 1191 0.400000 +183 1209 0.400000 +183 1269 0.400000 +183 1295 0.400000 +183 1308 0.400000 +183 1322 0.400000 +183 1375 0.400000 +183 1380 0.400000 +183 1402 0.400000 +183 1466 0.400000 +183 1535 0.400000 +183 1564 0.400000 +183 1624 0.400000 +183 1688 0.400000 +183 1691 0.400000 +183 1747 0.400000 +183 1787 0.400000 +183 1830 0.400000 +183 1832 0.400000 +183 1840 0.400000 +183 1908 0.400000 +183 1922 0.400000 +183 2005 0.400000 +183 2056 0.400000 +183 2192 0.400000 +183 2255 0.400000 +183 2287 0.400000 +183 2291 0.400000 +183 2340 0.400000 +183 2415 0.400000 +183 2505 0.400000 +183 2678 0.400000 +183 2770 0.400000 +183 2870 0.400000 +183 2918 0.400000 +183 3003 0.400000 +183 3055 0.400000 +184 138 0.400000 +184 166 0.400000 +184 170 0.400000 +184 175 0.400000 +184 196 0.400000 +184 201 0.400000 +184 239 0.400000 +184 279 0.400000 +184 321 0.400000 +184 339 0.400000 +184 478 0.400000 +184 538 0.400000 +184 601 0.400000 +184 625 0.400000 +184 626 0.400000 +184 669 0.400000 +184 694 0.400000 +184 763 0.400000 +184 848 0.400000 +184 855 0.400000 +184 978 0.400000 +184 1009 0.400000 +184 1044 0.400000 +184 1062 0.400000 +184 1110 0.400000 +184 1221 0.400000 +184 1276 0.400000 +184 1334 0.400000 +184 1556 0.400000 +184 1661 0.400000 +184 1736 0.400000 +184 1784 0.400000 +184 1799 0.400000 +184 1900 0.400000 +184 1963 0.400000 +184 1972 0.400000 +184 1990 0.400000 +184 2089 0.400000 +184 2160 0.400000 +184 2176 0.400000 +184 2434 0.400000 +184 2460 0.400000 +184 2497 0.400000 +184 2516 0.400000 +184 2554 0.400000 +184 2637 0.400000 +184 2655 0.400000 +184 2668 0.400000 +184 2764 0.400000 +184 2766 0.400000 +184 2789 0.400000 +184 2810 0.400000 +184 2901 0.400000 +184 3069 0.400000 +184 3090 0.400000 +184 3191 0.400000 +185 166 0.400000 +185 193 0.400000 +185 221 0.400000 +185 224 0.400000 +185 311 0.400000 +185 328 0.400000 +185 341 0.400000 +185 411 0.400000 +185 465 0.400000 +185 507 0.400000 +185 508 0.400000 +185 510 0.400000 +185 572 0.400000 +185 608 0.400000 +185 627 0.400000 +185 637 0.400000 +185 734 0.400000 +185 745 0.400000 +185 754 0.400000 +185 764 0.400000 +185 831 0.400000 +185 908 0.400000 +185 930 0.400000 +185 974 0.400000 +185 991 0.400000 +185 1107 0.400000 +185 1247 0.400000 +185 1284 0.400000 +185 1285 0.400000 +185 1401 0.400000 +185 1450 0.400000 +185 1485 0.400000 +185 1496 0.400000 +185 1559 0.400000 +185 1600 0.400000 +185 1602 0.400000 +185 1637 0.400000 +185 1696 0.400000 +185 1698 0.400000 +185 1828 0.400000 +185 1833 0.400000 +185 1905 0.400000 +185 1912 0.400000 +185 2098 0.400000 +185 2101 0.400000 +185 2172 0.400000 +185 2181 0.400000 +185 2182 0.400000 +185 2231 0.400000 +185 2323 0.400000 +185 2351 0.400000 +185 2357 0.400000 +185 2436 0.400000 +185 2561 0.400000 +185 2581 0.400000 +185 2635 0.400000 +185 2697 0.400000 +185 2736 0.400000 +185 2833 0.400000 +185 2861 0.400000 +185 2883 0.400000 +185 2908 0.400000 +185 2987 0.400000 +185 3020 0.400000 +185 3061 0.400000 +185 3098 0.400000 +185 3106 0.400000 +185 3130 0.400000 +185 3141 0.400000 +185 3166 0.400000 +185 3169 0.400000 +186 11 0.400000 +186 32 0.400000 +186 42 0.400000 +186 182 0.400000 +186 201 0.400000 +186 338 0.400000 +186 344 0.400000 +186 422 0.400000 +186 513 0.400000 +186 517 0.400000 +186 555 0.400000 +186 694 0.400000 +186 914 0.400000 +186 1035 0.400000 +186 1066 0.400000 +186 1073 0.400000 +186 1124 0.400000 +186 1212 0.400000 +186 1353 0.400000 +186 1409 0.400000 +186 1431 0.400000 +186 1519 0.400000 +186 1604 0.400000 +186 1686 0.400000 +186 1726 0.400000 +186 1886 0.400000 +186 1901 0.400000 +186 1991 0.400000 +186 2018 0.400000 +186 2023 0.400000 +186 2053 0.400000 +186 2055 0.400000 +186 2069 0.400000 +186 2090 0.400000 +186 2187 0.400000 +186 2199 0.400000 +186 2213 0.400000 +186 2214 0.400000 +186 2231 0.400000 +186 2256 0.400000 +186 2284 0.400000 +186 2294 0.400000 +186 2372 0.400000 +186 2404 0.400000 +186 2531 0.400000 +186 2537 0.400000 +186 2562 0.400000 +186 2672 0.400000 +186 2813 0.400000 +186 2815 0.400000 +186 2867 0.400000 +186 2914 0.400000 +186 2980 0.400000 +186 2990 0.400000 +186 3166 0.400000 +187 37 0.400000 +187 44 0.400000 +187 69 0.400000 +187 87 0.400000 +187 138 0.400000 +187 147 0.400000 +187 185 0.400000 +187 193 0.400000 +187 222 0.400000 +187 249 0.400000 +187 252 0.400000 +187 293 0.400000 +187 308 0.400000 +187 337 0.400000 +187 341 0.400000 +187 408 0.400000 +187 432 0.400000 +187 500 0.400000 +187 520 0.400000 +187 570 0.400000 +187 742 0.400000 +187 743 0.400000 +187 749 0.400000 +187 796 0.400000 +187 851 0.400000 +187 858 0.400000 +187 876 0.400000 +187 969 0.400000 +187 974 0.400000 +187 986 0.400000 +187 1017 0.400000 +187 1129 0.400000 +187 1145 0.400000 +187 1172 0.400000 +187 1226 0.400000 +187 1229 0.400000 +187 1315 0.400000 +187 1324 0.400000 +187 1351 0.400000 +187 1415 0.400000 +187 1495 0.400000 +187 1549 0.400000 +187 1616 0.400000 +187 1617 0.400000 +187 1627 0.400000 +187 1715 0.400000 +187 1783 0.400000 +187 1843 0.400000 +187 2017 0.400000 +187 2060 0.400000 +187 2090 0.400000 +187 2106 0.400000 +187 2118 0.400000 +187 2215 0.400000 +187 2222 0.400000 +187 2294 0.400000 +187 2314 0.400000 +187 2393 0.400000 +187 2425 0.400000 +187 2515 0.400000 +187 2609 0.400000 +187 2648 0.400000 +187 2697 0.400000 +187 2731 0.400000 +187 2780 0.400000 +187 2803 0.400000 +187 2839 0.400000 +187 2881 0.400000 +187 3047 0.400000 +187 3073 0.400000 +187 3118 0.400000 +187 3123 0.400000 +188 55 0.400000 +188 61 0.400000 +188 79 0.400000 +188 88 0.400000 +188 117 0.400000 +188 175 0.400000 +188 310 0.400000 +188 319 0.400000 +188 334 0.400000 +188 368 0.400000 +188 401 0.400000 +188 409 0.400000 +188 475 0.400000 +188 506 0.400000 +188 552 0.400000 +188 579 0.400000 +188 642 0.400000 +188 646 0.400000 +188 651 0.400000 +188 807 0.400000 +188 841 0.400000 +188 847 0.400000 +188 893 0.400000 +188 946 0.400000 +188 1110 0.400000 +188 1225 0.400000 +188 1267 0.400000 +188 1284 0.400000 +188 1391 0.400000 +188 1412 0.400000 +188 1471 0.400000 +188 1477 0.400000 +188 1536 0.400000 +188 1561 0.400000 +188 1621 0.400000 +188 1632 0.400000 +188 1639 0.400000 +188 1651 0.400000 +188 1668 0.400000 +188 1669 0.400000 +188 1689 0.400000 +188 1723 0.400000 +188 1725 0.400000 +188 1731 0.400000 +188 1821 0.400000 +188 1837 0.400000 +188 1863 0.400000 +188 1891 0.400000 +188 1904 0.400000 +188 1937 0.400000 +188 1983 0.400000 +188 1986 0.400000 +188 2031 0.400000 +188 2034 0.400000 +188 2090 0.400000 +188 2110 0.400000 +188 2115 0.400000 +188 2127 0.400000 +188 2128 0.400000 +188 2139 0.400000 +188 2145 0.400000 +188 2209 0.400000 +188 2246 0.400000 +188 2284 0.400000 +188 2383 0.400000 +188 2541 0.400000 +188 2548 0.400000 +188 2561 0.400000 +188 2664 0.400000 +188 2691 0.400000 +188 2710 0.400000 +188 2758 0.400000 +188 2807 0.400000 +188 2816 0.400000 +188 2985 0.400000 +188 2996 0.400000 +188 3076 0.400000 +188 3097 0.400000 +188 3126 0.400000 +188 3132 0.400000 +189 33 0.400000 +189 72 0.400000 +189 78 0.400000 +189 256 0.400000 +189 291 0.400000 +189 315 0.400000 +189 381 0.400000 +189 450 0.400000 +189 483 0.400000 +189 500 0.400000 +189 517 0.400000 +189 539 0.400000 +189 598 0.400000 +189 599 0.400000 +189 631 0.400000 +189 716 0.400000 +189 791 0.400000 +189 840 0.400000 +189 850 0.400000 +189 858 0.400000 +189 873 0.400000 +189 877 0.400000 +189 892 0.400000 +189 917 0.400000 +189 972 0.400000 +189 994 0.400000 +189 1084 0.400000 +189 1178 0.400000 +189 1264 0.400000 +189 1430 0.400000 +189 1538 0.400000 +189 1552 0.400000 +189 1575 0.400000 +189 1636 0.400000 +189 1685 0.400000 +189 1724 0.400000 +189 1775 0.400000 +189 1788 0.400000 +189 1867 0.400000 +189 1905 0.400000 +189 1915 0.400000 +189 1962 0.400000 +189 1963 0.400000 +189 2073 0.400000 +189 2113 0.400000 +189 2172 0.400000 +189 2241 0.400000 +189 2264 0.400000 +189 2312 0.400000 +189 2323 0.400000 +189 2349 0.400000 +189 2433 0.400000 +189 2544 0.400000 +189 2546 0.400000 +189 2581 0.400000 +189 2598 0.400000 +189 2653 0.400000 +189 2783 0.400000 +189 2792 0.400000 +189 2811 0.400000 +189 2813 0.400000 +189 2935 0.400000 +189 2974 0.400000 +189 3058 0.400000 +189 3113 0.400000 +190 152 0.400000 +190 162 0.400000 +190 224 0.400000 +190 278 0.400000 +190 298 0.400000 +190 398 0.400000 +190 521 0.400000 +190 605 0.400000 +190 658 0.400000 +190 670 0.400000 +190 776 0.400000 +190 844 0.400000 +190 906 0.400000 +190 951 0.400000 +190 1157 0.400000 +190 1279 0.400000 +190 1311 0.400000 +190 1343 0.400000 +190 1378 0.400000 +190 1425 0.400000 +190 1476 0.400000 +190 1506 0.400000 +190 1516 0.400000 +190 1545 0.400000 +190 1634 0.400000 +190 1643 0.400000 +190 1661 0.400000 +190 1714 0.400000 +190 1793 0.400000 +190 1836 0.400000 +190 1874 0.400000 +190 1910 0.400000 +190 1926 0.400000 +190 1949 0.400000 +190 2015 0.400000 +190 2112 0.400000 +190 2116 0.400000 +190 2145 0.400000 +190 2154 0.400000 +190 2189 0.400000 +190 2226 0.400000 +190 2239 0.400000 +190 2240 0.400000 +190 2251 0.400000 +190 2343 0.400000 +190 2364 0.400000 +190 2501 0.400000 +190 2510 0.400000 +190 2601 0.400000 +190 2765 0.400000 +190 2776 0.400000 +190 2810 0.400000 +190 2933 0.400000 +190 2945 0.400000 +190 3141 0.400000 +190 3159 0.400000 +191 8 0.400000 +191 90 0.400000 +191 109 0.400000 +191 149 0.400000 +191 172 0.400000 +191 242 0.400000 +191 289 0.400000 +191 373 0.400000 +191 410 0.400000 +191 414 0.400000 +191 562 0.400000 +191 711 0.400000 +191 762 0.400000 +191 801 0.400000 +191 836 0.400000 +191 865 0.400000 +191 935 0.400000 +191 947 0.400000 +191 954 0.400000 +191 1059 0.400000 +191 1132 0.400000 +191 1204 0.400000 +191 1288 0.400000 +191 1346 0.400000 +191 1364 0.400000 +191 1505 0.400000 +191 1525 0.400000 +191 1547 0.400000 +191 1549 0.400000 +191 1558 0.400000 +191 1597 0.400000 +191 1768 0.400000 +191 1821 0.400000 +191 1969 0.400000 +191 2014 0.400000 +191 2066 0.400000 +191 2069 0.400000 +191 2078 0.400000 +191 2327 0.400000 +191 2359 0.400000 +191 2486 0.400000 +191 2679 0.400000 +191 2682 0.400000 +191 2702 0.400000 +191 2803 0.400000 +191 2834 0.400000 +191 2851 0.400000 +191 2924 0.400000 +191 2993 0.400000 +191 2994 0.400000 +191 3098 0.400000 +191 3180 0.400000 +192 4 0.400000 +192 9 0.400000 +192 53 0.400000 +192 61 0.400000 +192 130 0.400000 +192 231 0.400000 +192 287 0.400000 +192 362 0.400000 +192 444 0.400000 +192 494 0.400000 +192 510 0.400000 +192 557 0.400000 +192 669 0.400000 +192 692 0.400000 +192 725 0.400000 +192 732 0.400000 +192 774 0.400000 +192 791 0.400000 +192 801 0.400000 +192 857 0.400000 +192 886 0.400000 +192 914 0.400000 +192 929 0.400000 +192 1138 0.400000 +192 1244 0.400000 +192 1248 0.400000 +192 1397 0.400000 +192 1448 0.400000 +192 1621 0.400000 +192 1646 0.400000 +192 1707 0.400000 +192 1752 0.400000 +192 1849 0.400000 +192 1873 0.400000 +192 1997 0.400000 +192 2083 0.400000 +192 2135 0.400000 +192 2333 0.400000 +192 2339 0.400000 +192 2377 0.400000 +192 2403 0.400000 +192 2476 0.400000 +192 2514 0.400000 +192 2536 0.400000 +192 2598 0.400000 +192 2633 0.400000 +192 2643 0.400000 +192 2646 0.400000 +192 2661 0.400000 +192 2690 0.400000 +192 2695 0.400000 +192 2751 0.400000 +192 2933 0.400000 +192 2969 0.400000 +192 2975 0.400000 +192 3016 0.400000 +192 3060 0.400000 +192 3087 0.400000 +192 3112 0.400000 +192 3127 0.400000 +192 3142 0.400000 +192 3146 0.400000 +192 3197 0.400000 +193 39 0.400000 +193 53 0.400000 +193 82 0.400000 +193 142 0.400000 +193 166 0.400000 +193 167 0.400000 +193 177 0.400000 +193 321 0.400000 +193 377 0.400000 +193 424 0.400000 +193 452 0.400000 +193 533 0.400000 +193 543 0.400000 +193 560 0.400000 +193 639 0.400000 +193 643 0.400000 +193 698 0.400000 +193 706 0.400000 +193 738 0.400000 +193 821 0.400000 +193 922 0.400000 +193 979 0.400000 +193 986 0.400000 +193 1002 0.400000 +193 1067 0.400000 +193 1068 0.400000 +193 1101 0.400000 +193 1125 0.400000 +193 1167 0.400000 +193 1178 0.400000 +193 1188 0.400000 +193 1214 0.400000 +193 1218 0.400000 +193 1226 0.400000 +193 1228 0.400000 +193 1241 0.400000 +193 1246 0.400000 +193 1247 0.400000 +193 1287 0.400000 +193 1312 0.400000 +193 1333 0.400000 +193 1345 0.400000 +193 1394 0.400000 +193 1424 0.400000 +193 1491 0.400000 +193 1492 0.400000 +193 1603 0.400000 +193 1692 0.400000 +193 1753 0.400000 +193 1842 0.400000 +193 1849 0.400000 +193 1911 0.400000 +193 1962 0.400000 +193 1973 0.400000 +193 1978 0.400000 +193 2038 0.400000 +193 2082 0.400000 +193 2185 0.400000 +193 2188 0.400000 +193 2198 0.400000 +193 2207 0.400000 +193 2243 0.400000 +193 2265 0.400000 +193 2309 0.400000 +193 2317 0.400000 +193 2394 0.400000 +193 2416 0.400000 +193 2500 0.400000 +193 2509 0.400000 +193 2514 0.400000 +193 2522 0.400000 +193 2531 0.400000 +193 2646 0.400000 +193 2657 0.400000 +193 2749 0.400000 +193 2758 0.400000 +193 2769 0.400000 +193 2782 0.400000 +193 2786 0.400000 +193 2813 0.400000 +193 3078 0.400000 +194 63 0.400000 +194 72 0.400000 +194 113 0.400000 +194 124 0.400000 +194 144 0.400000 +194 267 0.400000 +194 295 0.400000 +194 326 0.400000 +194 349 0.400000 +194 401 0.400000 +194 516 0.400000 +194 640 0.400000 +194 728 0.400000 +194 770 0.400000 +194 795 0.400000 +194 849 0.400000 +194 855 0.400000 +194 1022 0.400000 +194 1038 0.400000 +194 1056 0.400000 +194 1102 0.400000 +194 1107 0.400000 +194 1129 0.400000 +194 1132 0.400000 +194 1190 0.400000 +194 1278 0.400000 +194 1306 0.400000 +194 1336 0.400000 +194 1532 0.400000 +194 1561 0.400000 +194 1610 0.400000 +194 1651 0.400000 +194 1679 0.400000 +194 1689 0.400000 +194 1833 0.400000 +194 1841 0.400000 +194 1851 0.400000 +194 2094 0.400000 +194 2415 0.400000 +194 2417 0.400000 +194 2543 0.400000 +194 2554 0.400000 +194 2575 0.400000 +194 2676 0.400000 +194 2736 0.400000 +194 2746 0.400000 +194 2831 0.400000 +194 2840 0.400000 +194 2851 0.400000 +194 2863 0.400000 +194 2960 0.400000 +194 2969 0.400000 +194 3052 0.400000 +194 3099 0.400000 +194 3141 0.400000 +194 3152 0.400000 +195 34 0.400000 +195 99 0.400000 +195 116 0.400000 +195 175 0.400000 +195 180 0.400000 +195 260 0.400000 +195 273 0.400000 +195 329 0.400000 +195 405 0.400000 +195 423 0.400000 +195 610 0.400000 +195 650 0.400000 +195 683 0.400000 +195 693 0.400000 +195 720 0.400000 +195 724 0.400000 +195 751 0.400000 +195 811 0.400000 +195 832 0.400000 +195 895 0.400000 +195 1047 0.400000 +195 1118 0.400000 +195 1146 0.400000 +195 1151 0.400000 +195 1308 0.400000 +195 1315 0.400000 +195 1370 0.400000 +195 1465 0.400000 +195 1477 0.400000 +195 1502 0.400000 +195 1592 0.400000 +195 1608 0.400000 +195 1680 0.400000 +195 1682 0.400000 +195 1684 0.400000 +195 1814 0.400000 +195 1869 0.400000 +195 1922 0.400000 +195 1963 0.400000 +195 2068 0.400000 +195 2078 0.400000 +195 2136 0.400000 +195 2167 0.400000 +195 2237 0.400000 +195 2257 0.400000 +195 2416 0.400000 +195 2460 0.400000 +195 2519 0.400000 +195 2565 0.400000 +195 2602 0.400000 +195 2699 0.400000 +195 2772 0.400000 +195 2821 0.400000 +195 2829 0.400000 +195 2879 0.400000 +195 2889 0.400000 +195 2949 0.400000 +195 2975 0.400000 +195 3002 0.400000 +195 3003 0.400000 +195 3020 0.400000 +195 3041 0.400000 +195 3059 0.400000 +195 3061 0.400000 +195 3086 0.400000 +195 3126 0.400000 +195 3150 0.400000 +196 13 0.400000 +196 187 0.400000 +196 218 0.400000 +196 266 0.400000 +196 290 0.400000 +196 361 0.400000 +196 462 0.400000 +196 466 0.400000 +196 515 0.400000 +196 672 0.400000 +196 703 0.400000 +196 761 0.400000 +196 795 0.400000 +196 796 0.400000 +196 867 0.400000 +196 889 0.400000 +196 896 0.400000 +196 901 0.400000 +196 909 0.400000 +196 914 0.400000 +196 1194 0.400000 +196 1267 0.400000 +196 1304 0.400000 +196 1418 0.400000 +196 1482 0.400000 +196 1522 0.400000 +196 1541 0.400000 +196 1711 0.400000 +196 1722 0.400000 +196 1745 0.400000 +196 1748 0.400000 +196 1850 0.400000 +196 1929 0.400000 +196 1982 0.400000 +196 2021 0.400000 +196 2024 0.400000 +196 2038 0.400000 +196 2044 0.400000 +196 2057 0.400000 +196 2101 0.400000 +196 2106 0.400000 +196 2126 0.400000 +196 2259 0.400000 +196 2419 0.400000 +196 2442 0.400000 +196 2561 0.400000 +196 2698 0.400000 +196 2716 0.400000 +196 2797 0.400000 +196 2908 0.400000 +196 2912 0.400000 +196 2937 0.400000 +196 2966 0.400000 +196 3077 0.400000 +196 3180 0.400000 +196 3183 0.400000 +197 13 0.400000 +197 103 0.400000 +197 127 0.400000 +197 200 0.400000 +197 357 0.400000 +197 362 0.400000 +197 383 0.400000 +197 503 0.400000 +197 666 0.400000 +197 704 0.400000 +197 731 0.400000 +197 786 0.400000 +197 833 0.400000 +197 958 0.400000 +197 984 0.400000 +197 1026 0.400000 +197 1076 0.400000 +197 1084 0.400000 +197 1109 0.400000 +197 1112 0.400000 +197 1180 0.400000 +197 1185 0.400000 +197 1210 0.400000 +197 1276 0.400000 +197 1292 0.400000 +197 1353 0.400000 +197 1359 0.400000 +197 1376 0.400000 +197 1447 0.400000 +197 1502 0.400000 +197 1714 0.400000 +197 1746 0.400000 +197 1826 0.400000 +197 1884 0.400000 +197 1910 0.400000 +197 1922 0.400000 +197 2086 0.400000 +197 2147 0.400000 +197 2150 0.400000 +197 2203 0.400000 +197 2266 0.400000 +197 2278 0.400000 +197 2330 0.400000 +197 2392 0.400000 +197 2394 0.400000 +197 2398 0.400000 +197 2461 0.400000 +197 2498 0.400000 +197 2532 0.400000 +197 2589 0.400000 +197 2656 0.400000 +197 2734 0.400000 +197 2839 0.400000 +197 2848 0.400000 +197 2999 0.400000 +197 3023 0.400000 +197 3173 0.400000 +197 3186 0.400000 +198 55 0.400000 +198 71 0.400000 +198 195 0.400000 +198 305 0.400000 +198 367 0.400000 +198 416 0.400000 +198 441 0.400000 +198 442 0.400000 +198 458 0.400000 +198 503 0.400000 +198 559 0.400000 +198 560 0.400000 +198 760 0.400000 +198 770 0.400000 +198 891 0.400000 +198 928 0.400000 +198 1034 0.400000 +198 1078 0.400000 +198 1158 0.400000 +198 1281 0.400000 +198 1338 0.400000 +198 1383 0.400000 +198 1485 0.400000 +198 1527 0.400000 +198 1550 0.400000 +198 1615 0.400000 +198 1618 0.400000 +198 1731 0.400000 +198 1752 0.400000 +198 1847 0.400000 +198 1907 0.400000 +198 1955 0.400000 +198 1992 0.400000 +198 2109 0.400000 +198 2120 0.400000 +198 2209 0.400000 +198 2218 0.400000 +198 2250 0.400000 +198 2275 0.400000 +198 2304 0.400000 +198 2318 0.400000 +198 2354 0.400000 +198 2405 0.400000 +198 2446 0.400000 +198 2450 0.400000 +198 2529 0.400000 +198 2537 0.400000 +198 2573 0.400000 +198 2632 0.400000 +198 2652 0.400000 +198 2696 0.400000 +198 2712 0.400000 +198 2725 0.400000 +198 2887 0.400000 +198 2916 0.400000 +198 2943 0.400000 +198 3036 0.400000 +198 3111 0.400000 +198 3160 0.400000 +199 4 0.400000 +199 97 0.400000 +199 141 0.400000 +199 185 0.400000 +199 249 0.400000 +199 324 0.400000 +199 345 0.400000 +199 349 0.400000 +199 368 0.400000 +199 484 0.400000 +199 602 0.400000 +199 625 0.400000 +199 632 0.400000 +199 654 0.400000 +199 730 0.400000 +199 732 0.400000 +199 743 0.400000 +199 867 0.400000 +199 985 0.400000 +199 1078 0.400000 +199 1159 0.400000 +199 1160 0.400000 +199 1179 0.400000 +199 1238 0.400000 +199 1309 0.400000 +199 1390 0.400000 +199 1413 0.400000 +199 1435 0.400000 +199 1443 0.400000 +199 1457 0.400000 +199 1460 0.400000 +199 1516 0.400000 +199 1735 0.400000 +199 1793 0.400000 +199 1902 0.400000 +199 1946 0.400000 +199 1955 0.400000 +199 1969 0.400000 +199 2020 0.400000 +199 2035 0.400000 +199 2038 0.400000 +199 2041 0.400000 +199 2074 0.400000 +199 2079 0.400000 +199 2114 0.400000 +199 2153 0.400000 +199 2191 0.400000 +199 2285 0.400000 +199 2291 0.400000 +199 2306 0.400000 +199 2347 0.400000 +199 2432 0.400000 +199 2475 0.400000 +199 2562 0.400000 +199 2580 0.400000 +199 2597 0.400000 +199 2716 0.400000 +199 2718 0.400000 +199 2765 0.400000 +199 2784 0.400000 +199 2823 0.400000 +199 2885 0.400000 +199 2935 0.400000 +199 2965 0.400000 +199 3025 0.400000 +199 3035 0.400000 +199 3092 0.400000 +199 3098 0.400000 +199 3105 0.400000 +199 3145 0.400000 +199 3172 0.400000 +199 3180 0.400000 +200 151 0.400000 +200 152 0.400000 +200 292 0.400000 +200 592 0.400000 +200 704 0.400000 +200 729 0.400000 +200 833 0.400000 +200 920 0.400000 +200 980 0.400000 +200 985 0.400000 +200 1058 0.400000 +200 1071 0.400000 +200 1099 0.400000 +200 1114 0.400000 +200 1132 0.400000 +200 1139 0.400000 +200 1194 0.400000 +200 1204 0.400000 +200 1218 0.400000 +200 1237 0.400000 +200 1245 0.400000 +200 1249 0.400000 +200 1336 0.400000 +200 1401 0.400000 +200 1524 0.400000 +200 1535 0.400000 +200 1594 0.400000 +200 1630 0.400000 +200 1637 0.400000 +200 1718 0.400000 +200 1863 0.400000 +200 1867 0.400000 +200 1938 0.400000 +200 1980 0.400000 +200 2002 0.400000 +200 2041 0.400000 +200 2046 0.400000 +200 2170 0.400000 +200 2175 0.400000 +200 2186 0.400000 +200 2195 0.400000 +200 2218 0.400000 +200 2271 0.400000 +200 2501 0.400000 +200 2510 0.400000 +200 2580 0.400000 +200 2608 0.400000 +200 2637 0.400000 +200 2644 0.400000 +200 2649 0.400000 +200 2770 0.400000 +200 2834 0.400000 +200 2870 0.400000 +200 2892 0.400000 +200 2905 0.400000 +200 2930 0.400000 +200 3122 0.400000 +200 3126 0.400000 +200 3162 0.400000 +201 39 0.400000 +201 121 0.400000 +201 147 0.400000 +201 190 0.400000 +201 216 0.400000 +201 279 0.400000 +201 333 0.400000 +201 353 0.400000 +201 382 0.400000 +201 451 0.400000 +201 514 0.400000 +201 678 0.400000 +201 743 0.400000 +201 829 0.400000 +201 908 0.400000 +201 962 0.400000 +201 968 0.400000 +201 1046 0.400000 +201 1083 0.400000 +201 1095 0.400000 +201 1173 0.400000 +201 1185 0.400000 +201 1209 0.400000 +201 1241 0.400000 +201 1282 0.400000 +201 1318 0.400000 +201 1443 0.400000 +201 1460 0.400000 +201 1540 0.400000 +201 1576 0.400000 +201 1585 0.400000 +201 1639 0.400000 +201 1676 0.400000 +201 1773 0.400000 +201 1809 0.400000 +201 1830 0.400000 +201 1832 0.400000 +201 1862 0.400000 +201 1879 0.400000 +201 1901 0.400000 +201 1964 0.400000 +201 2109 0.400000 +201 2112 0.400000 +201 2129 0.400000 +201 2130 0.400000 +201 2137 0.400000 +201 2455 0.400000 +201 2564 0.400000 +201 2623 0.400000 +201 2629 0.400000 +201 2653 0.400000 +201 2698 0.400000 +201 2703 0.400000 +201 2729 0.400000 +201 2814 0.400000 +201 2862 0.400000 +201 3015 0.400000 +201 3027 0.400000 +201 3040 0.400000 +201 3061 0.400000 +201 3135 0.400000 +201 3160 0.400000 +201 3169 0.400000 +202 11 0.400000 +202 33 0.400000 +202 126 0.400000 +202 132 0.400000 +202 145 0.400000 +202 175 0.400000 +202 198 0.400000 +202 228 0.400000 +202 247 0.400000 +202 285 0.400000 +202 440 0.400000 +202 511 0.400000 +202 560 0.400000 +202 601 0.400000 +202 610 0.400000 +202 734 0.400000 +202 860 0.400000 +202 1011 0.400000 +202 1049 0.400000 +202 1119 0.400000 +202 1141 0.400000 +202 1237 0.400000 +202 1252 0.400000 +202 1328 0.400000 +202 1411 0.400000 +202 1516 0.400000 +202 1556 0.400000 +202 1621 0.400000 +202 1623 0.400000 +202 1645 0.400000 +202 1751 0.400000 +202 1963 0.400000 +202 2188 0.400000 +202 2277 0.400000 +202 2316 0.400000 +202 2336 0.400000 +202 2343 0.400000 +202 2348 0.400000 +202 2380 0.400000 +202 2439 0.400000 +202 2441 0.400000 +202 2445 0.400000 +202 2477 0.400000 +202 2485 0.400000 +202 2567 0.400000 +202 2686 0.400000 +202 2720 0.400000 +202 2727 0.400000 +202 2745 0.400000 +202 2748 0.400000 +202 2809 0.400000 +202 2895 0.400000 +202 2997 0.400000 +202 3008 0.400000 +202 3037 0.400000 +202 3118 0.400000 +202 3137 0.400000 +202 3181 0.400000 +203 14 0.400000 +203 91 0.400000 +203 141 0.400000 +203 191 0.400000 +203 258 0.400000 +203 288 0.400000 +203 381 0.400000 +203 446 0.400000 +203 448 0.400000 +203 469 0.400000 +203 538 0.400000 +203 565 0.400000 +203 572 0.400000 +203 650 0.400000 +203 684 0.400000 +203 766 0.400000 +203 806 0.400000 +203 908 0.400000 +203 939 0.400000 +203 949 0.400000 +203 950 0.400000 +203 967 0.400000 +203 1059 0.400000 +203 1101 0.400000 +203 1111 0.400000 +203 1150 0.400000 +203 1209 0.400000 +203 1216 0.400000 +203 1329 0.400000 +203 1363 0.400000 +203 1444 0.400000 +203 1570 0.400000 +203 1622 0.400000 +203 1651 0.400000 +203 1661 0.400000 +203 1760 0.400000 +203 1774 0.400000 +203 1785 0.400000 +203 1906 0.400000 +203 1933 0.400000 +203 1958 0.400000 +203 1988 0.400000 +203 2099 0.400000 +203 2154 0.400000 +203 2167 0.400000 +203 2183 0.400000 +203 2189 0.400000 +203 2379 0.400000 +203 2539 0.400000 +203 2575 0.400000 +203 2581 0.400000 +203 2589 0.400000 +203 2590 0.400000 +203 2611 0.400000 +203 2652 0.400000 +203 2736 0.400000 +203 2804 0.400000 +203 2823 0.400000 +203 2845 0.400000 +203 2879 0.400000 +203 2935 0.400000 +203 3065 0.400000 +203 3084 0.400000 +203 3170 0.400000 +203 3187 0.400000 +204 41 0.400000 +204 58 0.400000 +204 157 0.400000 +204 255 0.400000 +204 276 0.400000 +204 314 0.400000 +204 365 0.400000 +204 379 0.400000 +204 409 0.400000 +204 470 0.400000 +204 544 0.400000 +204 601 0.400000 +204 605 0.400000 +204 617 0.400000 +204 652 0.400000 +204 685 0.400000 +204 707 0.400000 +204 861 0.400000 +204 882 0.400000 +204 888 0.400000 +204 902 0.400000 +204 913 0.400000 +204 1049 0.400000 +204 1165 0.400000 +204 1174 0.400000 +204 1243 0.400000 +204 1249 0.400000 +204 1251 0.400000 +204 1275 0.400000 +204 1373 0.400000 +204 1374 0.400000 +204 1388 0.400000 +204 1510 0.400000 +204 1539 0.400000 +204 1632 0.400000 +204 1705 0.400000 +204 1797 0.400000 +204 1885 0.400000 +204 1977 0.400000 +204 1992 0.400000 +204 2073 0.400000 +204 2137 0.400000 +204 2168 0.400000 +204 2207 0.400000 +204 2216 0.400000 +204 2230 0.400000 +204 2248 0.400000 +204 2270 0.400000 +204 2312 0.400000 +204 2484 0.400000 +204 2498 0.400000 +204 2589 0.400000 +204 2608 0.400000 +204 2646 0.400000 +204 2824 0.400000 +204 3004 0.400000 +204 3038 0.400000 +204 3039 0.400000 +204 3057 0.400000 +204 3065 0.400000 +204 3119 0.400000 +205 107 0.400000 +205 237 0.400000 +205 239 0.400000 +205 254 0.400000 +205 270 0.400000 +205 291 0.400000 +205 354 0.400000 +205 360 0.400000 +205 361 0.400000 +205 362 0.400000 +205 405 0.400000 +205 419 0.400000 +205 426 0.400000 +205 441 0.400000 +205 483 0.400000 +205 484 0.400000 +205 515 0.400000 +205 531 0.400000 +205 551 0.400000 +205 556 0.400000 +205 658 0.400000 +205 685 0.400000 +205 746 0.400000 +205 767 0.400000 +205 798 0.400000 +205 954 0.400000 +205 1032 0.400000 +205 1034 0.400000 +205 1056 0.400000 +205 1086 0.400000 +205 1116 0.400000 +205 1152 0.400000 +205 1181 0.400000 +205 1213 0.400000 +205 1263 0.400000 +205 1265 0.400000 +205 1361 0.400000 +205 1374 0.400000 +205 1409 0.400000 +205 1421 0.400000 +205 1557 0.400000 +205 1569 0.400000 +205 1697 0.400000 +205 1724 0.400000 +205 1830 0.400000 +205 1844 0.400000 +205 1848 0.400000 +205 1920 0.400000 +205 1955 0.400000 +205 1961 0.400000 +205 1967 0.400000 +205 2010 0.400000 +205 2021 0.400000 +205 2062 0.400000 +205 2114 0.400000 +205 2193 0.400000 +205 2275 0.400000 +205 2279 0.400000 +205 2306 0.400000 +205 2357 0.400000 +205 2367 0.400000 +205 2395 0.400000 +205 2486 0.400000 +205 2542 0.400000 +205 2628 0.400000 +205 2691 0.400000 +205 2758 0.400000 +205 2784 0.400000 +205 2794 0.400000 +205 2801 0.400000 +205 2829 0.400000 +205 2837 0.400000 +205 2842 0.400000 +205 2863 0.400000 +205 2882 0.400000 +205 2909 0.400000 +205 2940 0.400000 +205 2976 0.400000 +205 3007 0.400000 +205 3069 0.400000 +206 16 0.400000 +206 110 0.400000 +206 136 0.400000 +206 139 0.400000 +206 189 0.400000 +206 226 0.400000 +206 296 0.400000 +206 321 0.400000 +206 481 0.400000 +206 511 0.400000 +206 516 0.400000 +206 526 0.400000 +206 586 0.400000 +206 675 0.400000 +206 850 0.400000 +206 913 0.400000 +206 930 0.400000 +206 937 0.400000 +206 1052 0.400000 +206 1111 0.400000 +206 1224 0.400000 +206 1269 0.400000 +206 1387 0.400000 +206 1486 0.400000 +206 1533 0.400000 +206 1558 0.400000 +206 1702 0.400000 +206 1720 0.400000 +206 1760 0.400000 +206 1809 0.400000 +206 1859 0.400000 +206 1868 0.400000 +206 1883 0.400000 +206 1948 0.400000 +206 2066 0.400000 +206 2131 0.400000 +206 2145 0.400000 +206 2158 0.400000 +206 2241 0.400000 +206 2250 0.400000 +206 2251 0.400000 +206 2265 0.400000 +206 2326 0.400000 +206 2376 0.400000 +206 2391 0.400000 +206 2428 0.400000 +206 2453 0.400000 +206 2487 0.400000 +206 2646 0.400000 +206 2657 0.400000 +206 2693 0.400000 +206 2695 0.400000 +206 2717 0.400000 +206 2839 0.400000 +206 2849 0.400000 +206 2899 0.400000 +206 2932 0.400000 +206 3014 0.400000 +206 3017 0.400000 +206 3023 0.400000 +206 3050 0.400000 +206 3106 0.400000 +207 47 0.400000 +207 49 0.400000 +207 63 0.400000 +207 97 0.400000 +207 111 0.400000 +207 158 0.400000 +207 167 0.400000 +207 233 0.400000 +207 236 0.400000 +207 280 0.400000 +207 328 0.400000 +207 408 0.400000 +207 518 0.400000 +207 536 0.400000 +207 670 0.400000 +207 726 0.400000 +207 756 0.400000 +207 760 0.400000 +207 833 0.400000 +207 834 0.400000 +207 850 0.400000 +207 927 0.400000 +207 956 0.400000 +207 988 0.400000 +207 1029 0.400000 +207 1038 0.400000 +207 1044 0.400000 +207 1071 0.400000 +207 1079 0.400000 +207 1080 0.400000 +207 1088 0.400000 +207 1099 0.400000 +207 1118 0.400000 +207 1132 0.400000 +207 1307 0.400000 +207 1348 0.400000 +207 1419 0.400000 +207 1424 0.400000 +207 1449 0.400000 +207 1461 0.400000 +207 1614 0.400000 +207 1689 0.400000 +207 1706 0.400000 +207 1726 0.400000 +207 1749 0.400000 +207 2002 0.400000 +207 2050 0.400000 +207 2060 0.400000 +207 2063 0.400000 +207 2065 0.400000 +207 2202 0.400000 +207 2205 0.400000 +207 2214 0.400000 +207 2274 0.400000 +207 2286 0.400000 +207 2317 0.400000 +207 2318 0.400000 +207 2336 0.400000 +207 2342 0.400000 +207 2382 0.400000 +207 2386 0.400000 +207 2387 0.400000 +207 2452 0.400000 +207 2467 0.400000 +207 2534 0.400000 +207 2580 0.400000 +207 2839 0.400000 +207 2858 0.400000 +207 2914 0.400000 +207 2956 0.400000 +207 3076 0.400000 +207 3100 0.400000 +207 3178 0.400000 +208 44 0.400000 +208 81 0.400000 +208 166 0.400000 +208 326 0.400000 +208 353 0.400000 +208 404 0.400000 +208 417 0.400000 +208 698 0.400000 +208 714 0.400000 +208 726 0.400000 +208 922 0.400000 +208 925 0.400000 +208 926 0.400000 +208 1151 0.400000 +208 1181 0.400000 +208 1246 0.400000 +208 1265 0.400000 +208 1292 0.400000 +208 1304 0.400000 +208 1331 0.400000 +208 1428 0.400000 +208 1441 0.400000 +208 1458 0.400000 +208 1520 0.400000 +208 1542 0.400000 +208 1564 0.400000 +208 1719 0.400000 +208 1751 0.400000 +208 1760 0.400000 +208 1812 0.400000 +208 1906 0.400000 +208 1912 0.400000 +208 2023 0.400000 +208 2031 0.400000 +208 2133 0.400000 +208 2262 0.400000 +208 2337 0.400000 +208 2369 0.400000 +208 2443 0.400000 +208 2548 0.400000 +208 2607 0.400000 +208 2680 0.400000 +208 2727 0.400000 +208 2771 0.400000 +208 2824 0.400000 +208 2856 0.400000 +208 2949 0.400000 +208 2995 0.400000 +208 3110 0.400000 +209 12 0.400000 +209 83 0.400000 +209 108 0.400000 +209 263 0.400000 +209 306 0.400000 +209 417 0.400000 +209 460 0.400000 +209 475 0.400000 +209 513 0.400000 +209 523 0.400000 +209 569 0.400000 +209 586 0.400000 +209 668 0.400000 +209 674 0.400000 +209 684 0.400000 +209 874 0.400000 +209 919 0.400000 +209 1137 0.400000 +209 1142 0.400000 +209 1175 0.400000 +209 1210 0.400000 +209 1266 0.400000 +209 1301 0.400000 +209 1445 0.400000 +209 1468 0.400000 +209 1503 0.400000 +209 1558 0.400000 +209 1719 0.400000 +209 1721 0.400000 +209 1777 0.400000 +209 1791 0.400000 +209 1841 0.400000 +209 1855 0.400000 +209 1947 0.400000 +209 1957 0.400000 +209 2089 0.400000 +209 2179 0.400000 +209 2242 0.400000 +209 2246 0.400000 +209 2334 0.400000 +209 2339 0.400000 +209 2375 0.400000 +209 2461 0.400000 +209 2477 0.400000 +209 2629 0.400000 +209 2668 0.400000 +209 2680 0.400000 +209 2765 0.400000 +209 2839 0.400000 +209 2842 0.400000 +209 2845 0.400000 +209 2886 0.400000 +209 2887 0.400000 +209 2915 0.400000 +209 2988 0.400000 +209 3088 0.400000 +209 3162 0.400000 +209 3189 0.400000 +210 93 0.400000 +210 112 0.400000 +210 149 0.400000 +210 242 0.400000 +210 247 0.400000 +210 359 0.400000 +210 370 0.400000 +210 386 0.400000 +210 426 0.400000 +210 649 0.400000 +210 665 0.400000 +210 692 0.400000 +210 727 0.400000 +210 729 0.400000 +210 733 0.400000 +210 798 0.400000 +210 825 0.400000 +210 968 0.400000 +210 970 0.400000 +210 1134 0.400000 +210 1219 0.400000 +210 1451 0.400000 +210 1459 0.400000 +210 1557 0.400000 +210 1653 0.400000 +210 1661 0.400000 +210 1720 0.400000 +210 1879 0.400000 +210 1898 0.400000 +210 1965 0.400000 +210 1985 0.400000 +210 2057 0.400000 +210 2066 0.400000 +210 2086 0.400000 +210 2089 0.400000 +210 2188 0.400000 +210 2214 0.400000 +210 2267 0.400000 +210 2493 0.400000 +210 2511 0.400000 +210 2532 0.400000 +210 2538 0.400000 +210 2651 0.400000 +210 2681 0.400000 +210 2702 0.400000 +210 2736 0.400000 +210 2740 0.400000 +210 2779 0.400000 +210 2806 0.400000 +210 2877 0.400000 +210 2887 0.400000 +210 2902 0.400000 +210 2951 0.400000 +210 2959 0.400000 +210 2989 0.400000 +210 2992 0.400000 +210 3070 0.400000 +210 3161 0.400000 +210 3179 0.400000 +211 80 0.400000 +211 127 0.400000 +211 144 0.400000 +211 151 0.400000 +211 185 0.400000 +211 186 0.400000 +211 191 0.400000 +211 245 0.400000 +211 247 0.400000 +211 433 0.400000 +211 486 0.400000 +211 602 0.400000 +211 652 0.400000 +211 680 0.400000 +211 689 0.400000 +211 716 0.400000 +211 765 0.400000 +211 826 0.400000 +211 950 0.400000 +211 1060 0.400000 +211 1134 0.400000 +211 1280 0.400000 +211 1315 0.400000 +211 1402 0.400000 +211 1434 0.400000 +211 1572 0.400000 +211 1605 0.400000 +211 1625 0.400000 +211 1675 0.400000 +211 1698 0.400000 +211 1838 0.400000 +211 1843 0.400000 +211 1858 0.400000 +211 1867 0.400000 +211 1970 0.400000 +211 1999 0.400000 +211 2015 0.400000 +211 2036 0.400000 +211 2048 0.400000 +211 2056 0.400000 +211 2196 0.400000 +211 2210 0.400000 +211 2237 0.400000 +211 2279 0.400000 +211 2327 0.400000 +211 2338 0.400000 +211 2385 0.400000 +211 2388 0.400000 +211 2423 0.400000 +211 2610 0.400000 +211 2639 0.400000 +211 2653 0.400000 +211 2876 0.400000 +211 2959 0.400000 +211 2966 0.400000 +211 2994 0.400000 +211 3016 0.400000 +211 3078 0.400000 +211 3089 0.400000 +211 3091 0.400000 +211 3103 0.400000 +211 3197 0.400000 +212 33 0.400000 +212 101 0.400000 +212 178 0.400000 +212 199 0.400000 +212 381 0.400000 +212 426 0.400000 +212 490 0.400000 +212 519 0.400000 +212 599 0.400000 +212 679 0.400000 +212 698 0.400000 +212 722 0.400000 +212 725 0.400000 +212 750 0.400000 +212 775 0.400000 +212 793 0.400000 +212 812 0.400000 +212 900 0.400000 +212 951 0.400000 +212 994 0.400000 +212 1009 0.400000 +212 1105 0.400000 +212 1120 0.400000 +212 1189 0.400000 +212 1333 0.400000 +212 1358 0.400000 +212 1439 0.400000 +212 1522 0.400000 +212 1591 0.400000 +212 1745 0.400000 +212 1757 0.400000 +212 1767 0.400000 +212 1798 0.400000 +212 1803 0.400000 +212 1824 0.400000 +212 1851 0.400000 +212 1946 0.400000 +212 1980 0.400000 +212 2024 0.400000 +212 2039 0.400000 +212 2065 0.400000 +212 2074 0.400000 +212 2084 0.400000 +212 2156 0.400000 +212 2183 0.400000 +212 2189 0.400000 +212 2208 0.400000 +212 2229 0.400000 +212 2267 0.400000 +212 2299 0.400000 +212 2307 0.400000 +212 2328 0.400000 +212 2335 0.400000 +212 2344 0.400000 +212 2392 0.400000 +212 2401 0.400000 +212 2414 0.400000 +212 2433 0.400000 +212 2436 0.400000 +212 2517 0.400000 +212 2556 0.400000 +212 2651 0.400000 +212 2662 0.400000 +212 2710 0.400000 +212 2717 0.400000 +212 2718 0.400000 +212 2766 0.400000 +212 2880 0.400000 +212 2941 0.400000 +212 3028 0.400000 +212 3040 0.400000 +212 3085 0.400000 +212 3117 0.400000 +212 3196 0.400000 +213 48 0.400000 +213 68 0.400000 +213 102 0.400000 +213 305 0.400000 +213 327 0.400000 +213 376 0.400000 +213 524 0.400000 +213 546 0.400000 +213 577 0.400000 +213 607 0.400000 +213 721 0.400000 +213 928 0.400000 +213 935 0.400000 +213 942 0.400000 +213 963 0.400000 +213 968 0.400000 +213 975 0.400000 +213 1030 0.400000 +213 1084 0.400000 +213 1122 0.400000 +213 1136 0.400000 +213 1194 0.400000 +213 1223 0.400000 +213 1249 0.400000 +213 1315 0.400000 +213 1412 0.400000 +213 1458 0.400000 +213 1584 0.400000 +213 1601 0.400000 +213 1617 0.400000 +213 1667 0.400000 +213 1713 0.400000 +213 1768 0.400000 +213 1808 0.400000 +213 1950 0.400000 +213 1955 0.400000 +213 1987 0.400000 +213 1997 0.400000 +213 2005 0.400000 +213 2006 0.400000 +213 2011 0.400000 +213 2123 0.400000 +213 2206 0.400000 +213 2257 0.400000 +213 2294 0.400000 +213 2317 0.400000 +213 2346 0.400000 +213 2361 0.400000 +213 2400 0.400000 +213 2430 0.400000 +213 2464 0.400000 +213 2510 0.400000 +213 2615 0.400000 +213 2623 0.400000 +213 2700 0.400000 +213 2735 0.400000 +213 2834 0.400000 +213 2870 0.400000 +213 2920 0.400000 +213 2997 0.400000 +213 3019 0.400000 +213 3101 0.400000 +213 3104 0.400000 +213 3135 0.400000 +214 34 0.400000 +214 42 0.400000 +214 77 0.400000 +214 96 0.400000 +214 202 0.400000 +214 230 0.400000 +214 251 0.400000 +214 305 0.400000 +214 366 0.400000 +214 383 0.400000 +214 393 0.400000 +214 401 0.400000 +214 549 0.400000 +214 574 0.400000 +214 596 0.400000 +214 606 0.400000 +214 629 0.400000 +214 677 0.400000 +214 689 0.400000 +214 719 0.400000 +214 729 0.400000 +214 757 0.400000 +214 758 0.400000 +214 779 0.400000 +214 784 0.400000 +214 790 0.400000 +214 834 0.400000 +214 853 0.400000 +214 854 0.400000 +214 889 0.400000 +214 907 0.400000 +214 917 0.400000 +214 927 0.400000 +214 955 0.400000 +214 970 0.400000 +214 1004 0.400000 +214 1027 0.400000 +214 1041 0.400000 +214 1110 0.400000 +214 1119 0.400000 +214 1129 0.400000 +214 1168 0.400000 +214 1171 0.400000 +214 1182 0.400000 +214 1196 0.400000 +214 1235 0.400000 +214 1344 0.400000 +214 1365 0.400000 +214 1389 0.400000 +214 1479 0.400000 +214 1540 0.400000 +214 1543 0.400000 +214 1568 0.400000 +214 1706 0.400000 +214 1719 0.400000 +214 1864 0.400000 +214 1915 0.400000 +214 1917 0.400000 +214 1935 0.400000 +214 2015 0.400000 +214 2047 0.400000 +214 2063 0.400000 +214 2115 0.400000 +214 2180 0.400000 +214 2218 0.400000 +214 2255 0.400000 +214 2265 0.400000 +214 2313 0.400000 +214 2317 0.400000 +214 2501 0.400000 +214 2544 0.400000 +214 2554 0.400000 +214 2631 0.400000 +214 2665 0.400000 +214 2712 0.400000 +214 2752 0.400000 +214 2796 0.400000 +214 2805 0.400000 +214 2826 0.400000 +214 2949 0.400000 +214 3012 0.400000 +214 3101 0.400000 +214 3104 0.400000 +215 29 0.400000 +215 85 0.400000 +215 155 0.400000 +215 156 0.400000 +215 169 0.400000 +215 208 0.400000 +215 218 0.400000 +215 227 0.400000 +215 469 0.400000 +215 708 0.400000 +215 755 0.400000 +215 797 0.400000 +215 821 0.400000 +215 828 0.400000 +215 941 0.400000 +215 977 0.400000 +215 1018 0.400000 +215 1042 0.400000 +215 1151 0.400000 +215 1152 0.400000 +215 1179 0.400000 +215 1186 0.400000 +215 1220 0.400000 +215 1239 0.400000 +215 1295 0.400000 +215 1433 0.400000 +215 1443 0.400000 +215 1446 0.400000 +215 1457 0.400000 +215 1479 0.400000 +215 1511 0.400000 +215 1515 0.400000 +215 1622 0.400000 +215 1624 0.400000 +215 1701 0.400000 +215 1729 0.400000 +215 1797 0.400000 +215 1960 0.400000 +215 1981 0.400000 +215 2095 0.400000 +215 2108 0.400000 +215 2117 0.400000 +215 2122 0.400000 +215 2140 0.400000 +215 2207 0.400000 +215 2217 0.400000 +215 2240 0.400000 +215 2286 0.400000 +215 2295 0.400000 +215 2339 0.400000 +215 2408 0.400000 +215 2735 0.400000 +215 2767 0.400000 +215 3136 0.400000 +215 3150 0.400000 +215 3198 0.400000 +216 28 0.400000 +216 196 0.400000 +216 242 0.400000 +216 249 0.400000 +216 272 0.400000 +216 320 0.400000 +216 341 0.400000 +216 395 0.400000 +216 405 0.400000 +216 456 0.400000 +216 509 0.400000 +216 527 0.400000 +216 562 0.400000 +216 606 0.400000 +216 625 0.400000 +216 649 0.400000 +216 670 0.400000 +216 675 0.400000 +216 681 0.400000 +216 702 0.400000 +216 783 0.400000 +216 805 0.400000 +216 810 0.400000 +216 830 0.400000 +216 855 0.400000 +216 914 0.400000 +216 1025 0.400000 +216 1185 0.400000 +216 1225 0.400000 +216 1282 0.400000 +216 1288 0.400000 +216 1304 0.400000 +216 1315 0.400000 +216 1396 0.400000 +216 1407 0.400000 +216 1469 0.400000 +216 1472 0.400000 +216 1526 0.400000 +216 1527 0.400000 +216 1547 0.400000 +216 1625 0.400000 +216 1670 0.400000 +216 1712 0.400000 +216 1754 0.400000 +216 1797 0.400000 +216 1823 0.400000 +216 1927 0.400000 +216 1984 0.400000 +216 2013 0.400000 +216 2045 0.400000 +216 2047 0.400000 +216 2060 0.400000 +216 2109 0.400000 +216 2167 0.400000 +216 2274 0.400000 +216 2398 0.400000 +216 2509 0.400000 +216 2548 0.400000 +216 2563 0.400000 +216 2567 0.400000 +216 2576 0.400000 +216 2599 0.400000 +216 2845 0.400000 +216 2895 0.400000 +216 2974 0.400000 +216 2977 0.400000 +216 3000 0.400000 +216 3087 0.400000 +216 3100 0.400000 +216 3112 0.400000 +216 3150 0.400000 +217 91 0.400000 +217 250 0.400000 +217 278 0.400000 +217 280 0.400000 +217 352 0.400000 +217 538 0.400000 +217 608 0.400000 +217 620 0.400000 +217 679 0.400000 +217 682 0.400000 +217 685 0.400000 +217 693 0.400000 +217 697 0.400000 +217 769 0.400000 +217 802 0.400000 +217 851 0.400000 +217 893 0.400000 +217 922 0.400000 +217 1176 0.400000 +217 1200 0.400000 +217 1214 0.400000 +217 1227 0.400000 +217 1276 0.400000 +217 1290 0.400000 +217 1291 0.400000 +217 1302 0.400000 +217 1357 0.400000 +217 1431 0.400000 +217 1433 0.400000 +217 1434 0.400000 +217 1447 0.400000 +217 1448 0.400000 +217 1474 0.400000 +217 1577 0.400000 +217 1630 0.400000 +217 1710 0.400000 +217 1724 0.400000 +217 1726 0.400000 +217 1754 0.400000 +217 1768 0.400000 +217 1835 0.400000 +217 1843 0.400000 +217 1876 0.400000 +217 1889 0.400000 +217 1922 0.400000 +217 1924 0.400000 +217 1994 0.400000 +217 2056 0.400000 +217 2095 0.400000 +217 2125 0.400000 +217 2160 0.400000 +217 2175 0.400000 +217 2270 0.400000 +217 2313 0.400000 +217 2339 0.400000 +217 2468 0.400000 +217 2479 0.400000 +217 2623 0.400000 +217 2667 0.400000 +217 2695 0.400000 +217 2822 0.400000 +217 2887 0.400000 +217 2922 0.400000 +217 2985 0.400000 +217 2989 0.400000 +218 16 0.400000 +218 29 0.400000 +218 39 0.400000 +218 134 0.400000 +218 142 0.400000 +218 157 0.400000 +218 174 0.400000 +218 303 0.400000 +218 322 0.400000 +218 331 0.400000 +218 372 0.400000 +218 535 0.400000 +218 540 0.400000 +218 554 0.400000 +218 575 0.400000 +218 848 0.400000 +218 851 0.400000 +218 907 0.400000 +218 978 0.400000 +218 1021 0.400000 +218 1107 0.400000 +218 1132 0.400000 +218 1142 0.400000 +218 1352 0.400000 +218 1422 0.400000 +218 1424 0.400000 +218 1491 0.400000 +218 1514 0.400000 +218 1721 0.400000 +218 1730 0.400000 +218 1818 0.400000 +218 1847 0.400000 +218 1911 0.400000 +218 1985 0.400000 +218 2030 0.400000 +218 2039 0.400000 +218 2058 0.400000 +218 2068 0.400000 +218 2203 0.400000 +218 2215 0.400000 +218 2222 0.400000 +218 2291 0.400000 +218 2298 0.400000 +218 2301 0.400000 +218 2349 0.400000 +218 2360 0.400000 +218 2362 0.400000 +218 2385 0.400000 +218 2394 0.400000 +218 2477 0.400000 +218 2498 0.400000 +218 2534 0.400000 +218 2539 0.400000 +218 2585 0.400000 +218 2595 0.400000 +218 2685 0.400000 +218 2738 0.400000 +218 2801 0.400000 +218 2828 0.400000 +218 2936 0.400000 +218 2991 0.400000 +218 2997 0.400000 +218 3039 0.400000 +218 3083 0.400000 +218 3197 0.400000 +219 20 0.400000 +219 39 0.400000 +219 49 0.400000 +219 62 0.400000 +219 74 0.400000 +219 77 0.400000 +219 103 0.400000 +219 137 0.400000 +219 160 0.400000 +219 179 0.400000 +219 184 0.400000 +219 218 0.400000 +219 233 0.400000 +219 235 0.400000 +219 292 0.400000 +219 323 0.400000 +219 445 0.400000 +219 454 0.400000 +219 474 0.400000 +219 517 0.400000 +219 536 0.400000 +219 588 0.400000 +219 716 0.400000 +219 794 0.400000 +219 805 0.400000 +219 831 0.400000 +219 832 0.400000 +219 834 0.400000 +219 845 0.400000 +219 907 0.400000 +219 1045 0.400000 +219 1064 0.400000 +219 1075 0.400000 +219 1126 0.400000 +219 1170 0.400000 +219 1208 0.400000 +219 1242 0.400000 +219 1268 0.400000 +219 1298 0.400000 +219 1380 0.400000 +219 1459 0.400000 +219 1474 0.400000 +219 1505 0.400000 +219 1520 0.400000 +219 1659 0.400000 +219 1669 0.400000 +219 1672 0.400000 +219 1744 0.400000 +219 1805 0.400000 +219 1848 0.400000 +219 1917 0.400000 +219 2012 0.400000 +219 2026 0.400000 +219 2105 0.400000 +219 2124 0.400000 +219 2167 0.400000 +219 2369 0.400000 +219 2370 0.400000 +219 2483 0.400000 +219 2487 0.400000 +219 2488 0.400000 +219 2573 0.400000 +219 2597 0.400000 +219 2704 0.400000 +219 2750 0.400000 +219 2760 0.400000 +219 2787 0.400000 +219 2874 0.400000 +219 2890 0.400000 +219 3019 0.400000 +219 3021 0.400000 +219 3074 0.400000 +219 3079 0.400000 +219 3083 0.400000 +219 3143 0.400000 +219 3145 0.400000 +219 3199 0.400000 +220 77 0.400000 +220 108 0.400000 +220 182 0.400000 +220 183 0.400000 +220 198 0.400000 +220 228 0.400000 +220 279 0.400000 +220 284 0.400000 +220 431 0.400000 +220 442 0.400000 +220 447 0.400000 +220 564 0.400000 +220 574 0.400000 +220 586 0.400000 +220 633 0.400000 +220 691 0.400000 +220 808 0.400000 +220 826 0.400000 +220 834 0.400000 +220 1007 0.400000 +220 1039 0.400000 +220 1053 0.400000 +220 1074 0.400000 +220 1273 0.400000 +220 1388 0.400000 +220 1425 0.400000 +220 1443 0.400000 +220 1464 0.400000 +220 1540 0.400000 +220 1589 0.400000 +220 1653 0.400000 +220 1693 0.400000 +220 1870 0.400000 +220 1915 0.400000 +220 1973 0.400000 +220 1989 0.400000 +220 2109 0.400000 +220 2169 0.400000 +220 2482 0.400000 +220 2570 0.400000 +220 2654 0.400000 +220 2695 0.400000 +220 2696 0.400000 +220 2704 0.400000 +220 2804 0.400000 +220 2867 0.400000 +220 2873 0.400000 +220 2978 0.400000 +220 3058 0.400000 +220 3074 0.400000 +220 3096 0.400000 +220 3111 0.400000 +220 3153 0.400000 +220 3161 0.400000 +220 3189 0.400000 +221 91 0.400000 +221 132 0.400000 +221 137 0.400000 +221 166 0.400000 +221 172 0.400000 +221 214 0.400000 +221 271 0.400000 +221 303 0.400000 +221 316 0.400000 +221 422 0.400000 +221 441 0.400000 +221 446 0.400000 +221 520 0.400000 +221 568 0.400000 +221 785 0.400000 +221 801 0.400000 +221 822 0.400000 +221 954 0.400000 +221 1008 0.400000 +221 1077 0.400000 +221 1085 0.400000 +221 1226 0.400000 +221 1250 0.400000 +221 1339 0.400000 +221 1368 0.400000 +221 1409 0.400000 +221 1613 0.400000 +221 1648 0.400000 +221 1708 0.400000 +221 1808 0.400000 +221 1991 0.400000 +221 2011 0.400000 +221 2029 0.400000 +221 2092 0.400000 +221 2106 0.400000 +221 2154 0.400000 +221 2161 0.400000 +221 2169 0.400000 +221 2241 0.400000 +221 2418 0.400000 +221 2428 0.400000 +221 2440 0.400000 +221 2446 0.400000 +221 2461 0.400000 +221 2475 0.400000 +221 2494 0.400000 +221 2502 0.400000 +221 2555 0.400000 +221 2573 0.400000 +221 2581 0.400000 +221 2705 0.400000 +221 2747 0.400000 +221 2756 0.400000 +221 2759 0.400000 +221 2810 0.400000 +221 2830 0.400000 +221 2850 0.400000 +221 2881 0.400000 +221 2911 0.400000 +221 2944 0.400000 +221 2958 0.400000 +221 2999 0.400000 +221 3030 0.400000 +222 2 0.400000 +222 50 0.400000 +222 112 0.400000 +222 259 0.400000 +222 285 0.400000 +222 378 0.400000 +222 389 0.400000 +222 415 0.400000 +222 470 0.400000 +222 500 0.400000 +222 628 0.400000 +222 659 0.400000 +222 662 0.400000 +222 682 0.400000 +222 687 0.400000 +222 694 0.400000 +222 811 0.400000 +222 895 0.400000 +222 908 0.400000 +222 933 0.400000 +222 939 0.400000 +222 1110 0.400000 +222 1205 0.400000 +222 1252 0.400000 +222 1325 0.400000 +222 1342 0.400000 +222 1362 0.400000 +222 1402 0.400000 +222 1460 0.400000 +222 1467 0.400000 +222 1568 0.400000 +222 1588 0.400000 +222 1654 0.400000 +222 1668 0.400000 +222 1693 0.400000 +222 1730 0.400000 +222 1763 0.400000 +222 1765 0.400000 +222 1825 0.400000 +222 1830 0.400000 +222 1831 0.400000 +222 1863 0.400000 +222 1923 0.400000 +222 1959 0.400000 +222 2017 0.400000 +222 2063 0.400000 +222 2158 0.400000 +222 2257 0.400000 +222 2266 0.400000 +222 2308 0.400000 +222 2366 0.400000 +222 2368 0.400000 +222 2395 0.400000 +222 2574 0.400000 +222 2578 0.400000 +222 2619 0.400000 +222 2713 0.400000 +222 2718 0.400000 +222 2771 0.400000 +222 2813 0.400000 +222 3062 0.400000 +222 3102 0.400000 +222 3139 0.400000 +222 3147 0.400000 +222 3180 0.400000 +222 3184 0.400000 +222 3186 0.400000 +223 48 0.400000 +223 187 0.400000 +223 216 0.400000 +223 248 0.400000 +223 292 0.400000 +223 312 0.400000 +223 351 0.400000 +223 404 0.400000 +223 441 0.400000 +223 562 0.400000 +223 678 0.400000 +223 721 0.400000 +223 736 0.400000 +223 801 0.400000 +223 876 0.400000 +223 1099 0.400000 +223 1170 0.400000 +223 1173 0.400000 +223 1205 0.400000 +223 1219 0.400000 +223 1222 0.400000 +223 1229 0.400000 +223 1247 0.400000 +223 1292 0.400000 +223 1347 0.400000 +223 1381 0.400000 +223 1428 0.400000 +223 1552 0.400000 +223 1682 0.400000 +223 1701 0.400000 +223 1767 0.400000 +223 1862 0.400000 +223 1894 0.400000 +223 1913 0.400000 +223 1916 0.400000 +223 1940 0.400000 +223 1941 0.400000 +223 1949 0.400000 +223 2051 0.400000 +223 2058 0.400000 +223 2063 0.400000 +223 2125 0.400000 +223 2234 0.400000 +223 2239 0.400000 +223 2252 0.400000 +223 2380 0.400000 +223 2381 0.400000 +223 2552 0.400000 +223 2565 0.400000 +223 2660 0.400000 +223 2689 0.400000 +223 2877 0.400000 +223 2931 0.400000 +223 2939 0.400000 +223 2990 0.400000 +223 3088 0.400000 +223 3099 0.400000 +223 3127 0.400000 +223 3189 0.400000 +224 18 0.400000 +224 24 0.400000 +224 45 0.400000 +224 121 0.400000 +224 132 0.400000 +224 216 0.400000 +224 323 0.400000 +224 356 0.400000 +224 389 0.400000 +224 402 0.400000 +224 499 0.400000 +224 550 0.400000 +224 573 0.400000 +224 574 0.400000 +224 587 0.400000 +224 661 0.400000 +224 680 0.400000 +224 753 0.400000 +224 825 0.400000 +224 933 0.400000 +224 944 0.400000 +224 996 0.400000 +224 1058 0.400000 +224 1094 0.400000 +224 1222 0.400000 +224 1236 0.400000 +224 1265 0.400000 +224 1460 0.400000 +224 1461 0.400000 +224 1575 0.400000 +224 1683 0.400000 +224 1691 0.400000 +224 1710 0.400000 +224 1732 0.400000 +224 1965 0.400000 +224 2122 0.400000 +224 2144 0.400000 +224 2153 0.400000 +224 2188 0.400000 +224 2268 0.400000 +224 2271 0.400000 +224 2349 0.400000 +224 2375 0.400000 +224 2424 0.400000 +224 2488 0.400000 +224 2533 0.400000 +224 2599 0.400000 +224 2621 0.400000 +224 2726 0.400000 +224 2758 0.400000 +224 2899 0.400000 +224 2938 0.400000 +224 2940 0.400000 +224 3093 0.400000 +224 3126 0.400000 +225 22 0.400000 +225 29 0.400000 +225 64 0.400000 +225 71 0.400000 +225 139 0.400000 +225 142 0.400000 +225 147 0.400000 +225 158 0.400000 +225 181 0.400000 +225 223 0.400000 +225 246 0.400000 +225 254 0.400000 +225 322 0.400000 +225 447 0.400000 +225 488 0.400000 +225 500 0.400000 +225 509 0.400000 +225 523 0.400000 +225 535 0.400000 +225 616 0.400000 +225 722 0.400000 +225 732 0.400000 +225 784 0.400000 +225 805 0.400000 +225 866 0.400000 +225 908 0.400000 +225 937 0.400000 +225 948 0.400000 +225 950 0.400000 +225 1054 0.400000 +225 1089 0.400000 +225 1111 0.400000 +225 1188 0.400000 +225 1204 0.400000 +225 1205 0.400000 +225 1296 0.400000 +225 1313 0.400000 +225 1354 0.400000 +225 1435 0.400000 +225 1606 0.400000 +225 1693 0.400000 +225 1735 0.400000 +225 1843 0.400000 +225 1949 0.400000 +225 2227 0.400000 +225 2331 0.400000 +225 2417 0.400000 +225 2473 0.400000 +225 2559 0.400000 +225 2751 0.400000 +225 2834 0.400000 +225 2885 0.400000 +225 3015 0.400000 +225 3087 0.400000 +225 3111 0.400000 +225 3139 0.400000 +225 3149 0.400000 +225 3152 0.400000 +225 3198 0.400000 +226 64 0.400000 +226 67 0.400000 +226 69 0.400000 +226 93 0.400000 +226 103 0.400000 +226 152 0.400000 +226 177 0.400000 +226 216 0.400000 +226 240 0.400000 +226 468 0.400000 +226 585 0.400000 +226 622 0.400000 +226 811 0.400000 +226 834 0.400000 +226 854 0.400000 +226 971 0.400000 +226 988 0.400000 +226 989 0.400000 +226 1007 0.400000 +226 1064 0.400000 +226 1076 0.400000 +226 1084 0.400000 +226 1087 0.400000 +226 1144 0.400000 +226 1233 0.400000 +226 1270 0.400000 +226 1280 0.400000 +226 1337 0.400000 +226 1342 0.400000 +226 1507 0.400000 +226 1535 0.400000 +226 1558 0.400000 +226 1599 0.400000 +226 1632 0.400000 +226 1666 0.400000 +226 1669 0.400000 +226 1708 0.400000 +226 1714 0.400000 +226 1717 0.400000 +226 1809 0.400000 +226 1819 0.400000 +226 1957 0.400000 +226 1960 0.400000 +226 2007 0.400000 +226 2041 0.400000 +226 2051 0.400000 +226 2058 0.400000 +226 2062 0.400000 +226 2085 0.400000 +226 2106 0.400000 +226 2134 0.400000 +226 2168 0.400000 +226 2173 0.400000 +226 2243 0.400000 +226 2252 0.400000 +226 2271 0.400000 +226 2280 0.400000 +226 2316 0.400000 +226 2377 0.400000 +226 2417 0.400000 +226 2420 0.400000 +226 2634 0.400000 +226 2685 0.400000 +226 2739 0.400000 +226 2754 0.400000 +226 2856 0.400000 +226 2897 0.400000 +226 2920 0.400000 +226 3134 0.400000 +227 168 0.400000 +227 204 0.400000 +227 215 0.400000 +227 259 0.400000 +227 364 0.400000 +227 368 0.400000 +227 509 0.400000 +227 513 0.400000 +227 570 0.400000 +227 622 0.400000 +227 665 0.400000 +227 690 0.400000 +227 828 0.400000 +227 845 0.400000 +227 923 0.400000 +227 976 0.400000 +227 1033 0.400000 +227 1188 0.400000 +227 1207 0.400000 +227 1253 0.400000 +227 1271 0.400000 +227 1460 0.400000 +227 1493 0.400000 +227 1501 0.400000 +227 1551 0.400000 +227 1566 0.400000 +227 1707 0.400000 +227 1752 0.400000 +227 1762 0.400000 +227 1778 0.400000 +227 1792 0.400000 +227 1818 0.400000 +227 1910 0.400000 +227 1929 0.400000 +227 1944 0.400000 +227 1947 0.400000 +227 2023 0.400000 +227 2128 0.400000 +227 2135 0.400000 +227 2149 0.400000 +227 2319 0.400000 +227 2421 0.400000 +227 2470 0.400000 +227 2488 0.400000 +227 2498 0.400000 +227 2510 0.400000 +227 2535 0.400000 +227 2560 0.400000 +227 2593 0.400000 +227 2608 0.400000 +227 2628 0.400000 +227 2648 0.400000 +227 2659 0.400000 +227 2713 0.400000 +227 2732 0.400000 +227 2821 0.400000 +227 2834 0.400000 +227 2851 0.400000 +227 2944 0.400000 +227 3154 0.400000 +228 94 0.400000 +228 218 0.400000 +228 402 0.400000 +228 403 0.400000 +228 441 0.400000 +228 531 0.400000 +228 613 0.400000 +228 776 0.400000 +228 777 0.400000 +228 814 0.400000 +228 829 0.400000 +228 830 0.400000 +228 846 0.400000 +228 871 0.400000 +228 878 0.400000 +228 891 0.400000 +228 946 0.400000 +228 963 0.400000 +228 972 0.400000 +228 1078 0.400000 +228 1139 0.400000 +228 1166 0.400000 +228 1187 0.400000 +228 1207 0.400000 +228 1306 0.400000 +228 1386 0.400000 +228 1422 0.400000 +228 1709 0.400000 +228 1739 0.400000 +228 1766 0.400000 +228 1909 0.400000 +228 1924 0.400000 +228 2093 0.400000 +228 2117 0.400000 +228 2131 0.400000 +228 2158 0.400000 +228 2161 0.400000 +228 2249 0.400000 +228 2344 0.400000 +228 2516 0.400000 +228 2587 0.400000 +228 2608 0.400000 +228 2611 0.400000 +228 2618 0.400000 +228 2620 0.400000 +228 2640 0.400000 +228 2653 0.400000 +228 2661 0.400000 +228 2687 0.400000 +228 2693 0.400000 +228 2721 0.400000 +228 2879 0.400000 +228 2883 0.400000 +228 2886 0.400000 +228 2906 0.400000 +228 2993 0.400000 +228 3045 0.400000 +228 3081 0.400000 +228 3091 0.400000 +228 3183 0.400000 +229 111 0.400000 +229 167 0.400000 +229 172 0.400000 +229 239 0.400000 +229 295 0.400000 +229 315 0.400000 +229 402 0.400000 +229 523 0.400000 +229 552 0.400000 +229 674 0.400000 +229 692 0.400000 +229 706 0.400000 +229 770 0.400000 +229 788 0.400000 +229 966 0.400000 +229 1027 0.400000 +229 1036 0.400000 +229 1227 0.400000 +229 1288 0.400000 +229 1436 0.400000 +229 1472 0.400000 +229 1505 0.400000 +229 1547 0.400000 +229 1627 0.400000 +229 1661 0.400000 +229 1665 0.400000 +229 1686 0.400000 +229 1697 0.400000 +229 1762 0.400000 +229 1903 0.400000 +229 1905 0.400000 +229 1923 0.400000 +229 1944 0.400000 +229 2039 0.400000 +229 2063 0.400000 +229 2070 0.400000 +229 2129 0.400000 +229 2133 0.400000 +229 2148 0.400000 +229 2222 0.400000 +229 2268 0.400000 +229 2291 0.400000 +229 2295 0.400000 +229 2374 0.400000 +229 2382 0.400000 +229 2424 0.400000 +229 2446 0.400000 +229 2500 0.400000 +229 2627 0.400000 +229 2640 0.400000 +229 2644 0.400000 +229 2656 0.400000 +229 2662 0.400000 +229 2712 0.400000 +229 2736 0.400000 +229 2818 0.400000 +229 3075 0.400000 +229 3081 0.400000 +229 3119 0.400000 +229 3149 0.400000 +229 3169 0.400000 +229 3187 0.400000 +230 13 0.400000 +230 18 0.400000 +230 160 0.400000 +230 275 0.400000 +230 288 0.400000 +230 289 0.400000 +230 331 0.400000 +230 440 0.400000 +230 515 0.400000 +230 604 0.400000 +230 684 0.400000 +230 729 0.400000 +230 731 0.400000 +230 764 0.400000 +230 766 0.400000 +230 770 0.400000 +230 822 0.400000 +230 860 0.400000 +230 865 0.400000 +230 869 0.400000 +230 931 0.400000 +230 998 0.400000 +230 1032 0.400000 +230 1093 0.400000 +230 1119 0.400000 +230 1145 0.400000 +230 1163 0.400000 +230 1300 0.400000 +230 1320 0.400000 +230 1369 0.400000 +230 1419 0.400000 +230 1467 0.400000 +230 1499 0.400000 +230 1505 0.400000 +230 1520 0.400000 +230 1523 0.400000 +230 1545 0.400000 +230 1549 0.400000 +230 1561 0.400000 +230 1630 0.400000 +230 1683 0.400000 +230 1869 0.400000 +230 1915 0.400000 +230 1979 0.400000 +230 1995 0.400000 +230 2056 0.400000 +230 2135 0.400000 +230 2189 0.400000 +230 2288 0.400000 +230 2298 0.400000 +230 2326 0.400000 +230 2432 0.400000 +230 2464 0.400000 +230 2479 0.400000 +230 2490 0.400000 +230 2579 0.400000 +230 2585 0.400000 +230 2587 0.400000 +230 2614 0.400000 +230 2714 0.400000 +230 2732 0.400000 +230 2763 0.400000 +230 2940 0.400000 +230 2992 0.400000 +230 3031 0.400000 +230 3072 0.400000 +230 3092 0.400000 +230 3196 0.400000 +231 12 0.400000 +231 247 0.400000 +231 334 0.400000 +231 423 0.400000 +231 525 0.400000 +231 577 0.400000 +231 605 0.400000 +231 620 0.400000 +231 707 0.400000 +231 932 0.400000 +231 944 0.400000 +231 975 0.400000 +231 1001 0.400000 +231 1165 0.400000 +231 1169 0.400000 +231 1173 0.400000 +231 1206 0.400000 +231 1284 0.400000 +231 1318 0.400000 +231 1368 0.400000 +231 1376 0.400000 +231 1410 0.400000 +231 1421 0.400000 +231 1545 0.400000 +231 1624 0.400000 +231 1671 0.400000 +231 1757 0.400000 +231 1764 0.400000 +231 1771 0.400000 +231 1786 0.400000 +231 1815 0.400000 +231 1819 0.400000 +231 1929 0.400000 +231 1954 0.400000 +231 1988 0.400000 +231 2111 0.400000 +231 2157 0.400000 +231 2180 0.400000 +231 2213 0.400000 +231 2237 0.400000 +231 2258 0.400000 +231 2296 0.400000 +231 2512 0.400000 +231 2562 0.400000 +231 2575 0.400000 +231 2605 0.400000 +231 2750 0.400000 +231 2776 0.400000 +231 2840 0.400000 +231 2897 0.400000 +231 2901 0.400000 +231 2913 0.400000 +231 2988 0.400000 +231 2996 0.400000 +231 3020 0.400000 +231 3153 0.400000 +231 3158 0.400000 +231 3195 0.400000 +232 16 0.400000 +232 27 0.400000 +232 161 0.400000 +232 244 0.400000 +232 247 0.400000 +232 385 0.400000 +232 521 0.400000 +232 597 0.400000 +232 629 0.400000 +232 678 0.400000 +232 766 0.400000 +232 1030 0.400000 +232 1062 0.400000 +232 1084 0.400000 +232 1098 0.400000 +232 1102 0.400000 +232 1133 0.400000 +232 1172 0.400000 +232 1183 0.400000 +232 1187 0.400000 +232 1256 0.400000 +232 1304 0.400000 +232 1308 0.400000 +232 1516 0.400000 +232 1676 0.400000 +232 1728 0.400000 +232 1745 0.400000 +232 1755 0.400000 +232 1821 0.400000 +232 1854 0.400000 +232 1932 0.400000 +232 1974 0.400000 +232 1982 0.400000 +232 2035 0.400000 +232 2110 0.400000 +232 2166 0.400000 +232 2223 0.400000 +232 2224 0.400000 +232 2240 0.400000 +232 2260 0.400000 +232 2293 0.400000 +232 2299 0.400000 +232 2375 0.400000 +232 2384 0.400000 +232 2398 0.400000 +232 2399 0.400000 +232 2445 0.400000 +232 2525 0.400000 +232 2627 0.400000 +232 2640 0.400000 +232 2657 0.400000 +232 2788 0.400000 +232 2893 0.400000 +232 2978 0.400000 +232 2984 0.400000 +232 3177 0.400000 +233 11 0.400000 +233 27 0.400000 +233 57 0.400000 +233 173 0.400000 +233 189 0.400000 +233 247 0.400000 +233 384 0.400000 +233 422 0.400000 +233 498 0.400000 +233 536 0.400000 +233 615 0.400000 +233 723 0.400000 +233 732 0.400000 +233 933 0.400000 +233 1009 0.400000 +233 1252 0.400000 +233 1254 0.400000 +233 1307 0.400000 +233 1334 0.400000 +233 1368 0.400000 +233 1385 0.400000 +233 1396 0.400000 +233 1497 0.400000 +233 1555 0.400000 +233 1591 0.400000 +233 1647 0.400000 +233 1670 0.400000 +233 1743 0.400000 +233 1804 0.400000 +233 1825 0.400000 +233 1855 0.400000 +233 1908 0.400000 +233 1948 0.400000 +233 2002 0.400000 +233 2041 0.400000 +233 2173 0.400000 +233 2220 0.400000 +233 2257 0.400000 +233 2258 0.400000 +233 2353 0.400000 +233 2361 0.400000 +233 2404 0.400000 +233 2460 0.400000 +233 2523 0.400000 +233 2595 0.400000 +233 2642 0.400000 +233 2708 0.400000 +233 2711 0.400000 +233 2735 0.400000 +233 2827 0.400000 +233 2959 0.400000 +233 2971 0.400000 +233 2987 0.400000 +233 2999 0.400000 +233 3012 0.400000 +233 3172 0.400000 +233 3190 0.400000 +234 47 0.400000 +234 175 0.400000 +234 275 0.400000 +234 307 0.400000 +234 353 0.400000 +234 358 0.400000 +234 360 0.400000 +234 401 0.400000 +234 420 0.400000 +234 500 0.400000 +234 508 0.400000 +234 531 0.400000 +234 565 0.400000 +234 607 0.400000 +234 750 0.400000 +234 839 0.400000 +234 906 0.400000 +234 915 0.400000 +234 946 0.400000 +234 971 0.400000 +234 1009 0.400000 +234 1098 0.400000 +234 1163 0.400000 +234 1166 0.400000 +234 1176 0.400000 +234 1305 0.400000 +234 1318 0.400000 +234 1361 0.400000 +234 1373 0.400000 +234 1381 0.400000 +234 1404 0.400000 +234 1407 0.400000 +234 1446 0.400000 +234 1628 0.400000 +234 1869 0.400000 +234 2047 0.400000 +234 2077 0.400000 +234 2079 0.400000 +234 2102 0.400000 +234 2123 0.400000 +234 2131 0.400000 +234 2227 0.400000 +234 2291 0.400000 +234 2322 0.400000 +234 2337 0.400000 +234 2372 0.400000 +234 2375 0.400000 +234 2404 0.400000 +234 2436 0.400000 +234 2449 0.400000 +234 2497 0.400000 +234 2510 0.400000 +234 2755 0.400000 +234 2814 0.400000 +234 2825 0.400000 +234 2970 0.400000 +234 3020 0.400000 +234 3037 0.400000 +234 3060 0.400000 +234 3073 0.400000 +235 8 0.400000 +235 77 0.400000 +235 192 0.400000 +235 216 0.400000 +235 228 0.400000 +235 282 0.400000 +235 283 0.400000 +235 330 0.400000 +235 443 0.400000 +235 445 0.400000 +235 460 0.400000 +235 507 0.400000 +235 550 0.400000 +235 558 0.400000 +235 571 0.400000 +235 573 0.400000 +235 621 0.400000 +235 641 0.400000 +235 663 0.400000 +235 755 0.400000 +235 813 0.400000 +235 874 0.400000 +235 896 0.400000 +235 920 0.400000 +235 1197 0.400000 +235 1231 0.400000 +235 1260 0.400000 +235 1390 0.400000 +235 1416 0.400000 +235 1438 0.400000 +235 1457 0.400000 +235 1459 0.400000 +235 1489 0.400000 +235 1516 0.400000 +235 1560 0.400000 +235 1592 0.400000 +235 1618 0.400000 +235 1644 0.400000 +235 1687 0.400000 +235 1702 0.400000 +235 1756 0.400000 +235 1860 0.400000 +235 1961 0.400000 +235 1967 0.400000 +235 2001 0.400000 +235 2027 0.400000 +235 2054 0.400000 +235 2073 0.400000 +235 2159 0.400000 +235 2196 0.400000 +235 2340 0.400000 +235 2346 0.400000 +235 2445 0.400000 +235 2477 0.400000 +235 2571 0.400000 +235 2710 0.400000 +235 2733 0.400000 +235 2770 0.400000 +235 2786 0.400000 +235 2839 0.400000 +235 2848 0.400000 +235 2906 0.400000 +235 2985 0.400000 +235 3083 0.400000 +235 3106 0.400000 +235 3107 0.400000 +235 3137 0.400000 +235 3163 0.400000 +235 3172 0.400000 +235 3191 0.400000 +236 21 0.400000 +236 129 0.400000 +236 162 0.400000 +236 217 0.400000 +236 329 0.400000 +236 415 0.400000 +236 500 0.400000 +236 568 0.400000 +236 636 0.400000 +236 641 0.400000 +236 734 0.400000 +236 740 0.400000 +236 808 0.400000 +236 897 0.400000 +236 899 0.400000 +236 1044 0.400000 +236 1093 0.400000 +236 1114 0.400000 +236 1124 0.400000 +236 1135 0.400000 +236 1139 0.400000 +236 1161 0.400000 +236 1176 0.400000 +236 1181 0.400000 +236 1253 0.400000 +236 1297 0.400000 +236 1369 0.400000 +236 1389 0.400000 +236 1481 0.400000 +236 1560 0.400000 +236 1581 0.400000 +236 1589 0.400000 +236 1594 0.400000 +236 1707 0.400000 +236 1753 0.400000 +236 1776 0.400000 +236 1861 0.400000 +236 2029 0.400000 +236 2049 0.400000 +236 2087 0.400000 +236 2112 0.400000 +236 2206 0.400000 +236 2232 0.400000 +236 2254 0.400000 +236 2442 0.400000 +236 2517 0.400000 +236 2586 0.400000 +236 2613 0.400000 +236 2747 0.400000 +236 2784 0.400000 +236 2829 0.400000 +236 2906 0.400000 +236 2962 0.400000 +236 2983 0.400000 +236 3006 0.400000 +236 3060 0.400000 +236 3087 0.400000 +236 3114 0.400000 +236 3155 0.400000 +236 3186 0.400000 +237 58 0.400000 +237 111 0.400000 +237 273 0.400000 +237 280 0.400000 +237 372 0.400000 +237 469 0.400000 +237 481 0.400000 +237 554 0.400000 +237 681 0.400000 +237 726 0.400000 +237 956 0.400000 +237 1009 0.400000 +237 1072 0.400000 +237 1098 0.400000 +237 1172 0.400000 +237 1234 0.400000 +237 1252 0.400000 +237 1333 0.400000 +237 1343 0.400000 +237 1406 0.400000 +237 1569 0.400000 +237 1584 0.400000 +237 1750 0.400000 +237 1766 0.400000 +237 2003 0.400000 +237 2078 0.400000 +237 2111 0.400000 +237 2333 0.400000 +237 2520 0.400000 +237 2528 0.400000 +237 2600 0.400000 +237 2653 0.400000 +237 2813 0.400000 +237 2822 0.400000 +237 2866 0.400000 +237 3072 0.400000 +237 3117 0.400000 +237 3133 0.400000 +237 3151 0.400000 +237 3155 0.400000 +237 3185 0.400000 +238 74 0.400000 +238 155 0.400000 +238 161 0.400000 +238 239 0.400000 +238 295 0.400000 +238 314 0.400000 +238 334 0.400000 +238 390 0.400000 +238 475 0.400000 +238 484 0.400000 +238 514 0.400000 +238 589 0.400000 +238 692 0.400000 +238 721 0.400000 +238 755 0.400000 +238 818 0.400000 +238 867 0.400000 +238 872 0.400000 +238 911 0.400000 +238 953 0.400000 +238 958 0.400000 +238 968 0.400000 +238 991 0.400000 +238 1005 0.400000 +238 1076 0.400000 +238 1119 0.400000 +238 1147 0.400000 +238 1296 0.400000 +238 1309 0.400000 +238 1319 0.400000 +238 1394 0.400000 +238 1472 0.400000 +238 1476 0.400000 +238 1546 0.400000 +238 1551 0.400000 +238 1727 0.400000 +238 1761 0.400000 +238 1819 0.400000 +238 1831 0.400000 +238 1890 0.400000 +238 1966 0.400000 +238 1971 0.400000 +238 1974 0.400000 +238 2021 0.400000 +238 2035 0.400000 +238 2041 0.400000 +238 2093 0.400000 +238 2139 0.400000 +238 2158 0.400000 +238 2220 0.400000 +238 2250 0.400000 +238 2265 0.400000 +238 2300 0.400000 +238 2345 0.400000 +238 2347 0.400000 +238 2348 0.400000 +238 2369 0.400000 +238 2381 0.400000 +238 2414 0.400000 +238 2470 0.400000 +238 2505 0.400000 +238 2519 0.400000 +238 2607 0.400000 +238 2647 0.400000 +238 2759 0.400000 +238 2768 0.400000 +238 2830 0.400000 +238 2922 0.400000 +238 2960 0.400000 +238 3116 0.400000 +238 3127 0.400000 +238 3129 0.400000 +238 3166 0.400000 +239 56 0.400000 +239 133 0.400000 +239 145 0.400000 +239 182 0.400000 +239 328 0.400000 +239 335 0.400000 +239 410 0.400000 +239 553 0.400000 +239 653 0.400000 +239 705 0.400000 +239 721 0.400000 +239 739 0.400000 +239 856 0.400000 +239 883 0.400000 +239 894 0.400000 +239 895 0.400000 +239 912 0.400000 +239 972 0.400000 +239 1013 0.400000 +239 1053 0.400000 +239 1070 0.400000 +239 1110 0.400000 +239 1138 0.400000 +239 1150 0.400000 +239 1166 0.400000 +239 1277 0.400000 +239 1285 0.400000 +239 1289 0.400000 +239 1304 0.400000 +239 1318 0.400000 +239 1334 0.400000 +239 1415 0.400000 +239 1422 0.400000 +239 1442 0.400000 +239 1480 0.400000 +239 1516 0.400000 +239 1542 0.400000 +239 1544 0.400000 +239 1567 0.400000 +239 1587 0.400000 +239 1727 0.400000 +239 1741 0.400000 +239 1832 0.400000 +239 1886 0.400000 +239 1936 0.400000 +239 2044 0.400000 +239 2088 0.400000 +239 2218 0.400000 +239 2242 0.400000 +239 2432 0.400000 +239 2445 0.400000 +239 2516 0.400000 +239 2550 0.400000 +239 2666 0.400000 +239 2703 0.400000 +239 2772 0.400000 +239 2782 0.400000 +239 2798 0.400000 +239 2851 0.400000 +239 2872 0.400000 +239 2878 0.400000 +239 2977 0.400000 +239 3006 0.400000 +239 3148 0.400000 +239 3155 0.400000 +240 60 0.400000 +240 74 0.400000 +240 154 0.400000 +240 162 0.400000 +240 205 0.400000 +240 261 0.400000 +240 364 0.400000 +240 376 0.400000 +240 493 0.400000 +240 567 0.400000 +240 579 0.400000 +240 619 0.400000 +240 650 0.400000 +240 758 0.400000 +240 795 0.400000 +240 845 0.400000 +240 869 0.400000 +240 945 0.400000 +240 957 0.400000 +240 959 0.400000 +240 1028 0.400000 +240 1036 0.400000 +240 1097 0.400000 +240 1160 0.400000 +240 1237 0.400000 +240 1239 0.400000 +240 1250 0.400000 +240 1257 0.400000 +240 1263 0.400000 +240 1289 0.400000 +240 1293 0.400000 +240 1392 0.400000 +240 1498 0.400000 +240 1510 0.400000 +240 1517 0.400000 +240 1537 0.400000 +240 1686 0.400000 +240 1716 0.400000 +240 1734 0.400000 +240 1861 0.400000 +240 1893 0.400000 +240 1974 0.400000 +240 2019 0.400000 +240 2062 0.400000 +240 2076 0.400000 +240 2094 0.400000 +240 2103 0.400000 +240 2155 0.400000 +240 2289 0.400000 +240 2311 0.400000 +240 2376 0.400000 +240 2475 0.400000 +240 2488 0.400000 +240 2497 0.400000 +240 2513 0.400000 +240 2618 0.400000 +240 2629 0.400000 +240 2680 0.400000 +240 2717 0.400000 +240 2743 0.400000 +240 2812 0.400000 +240 2994 0.400000 +240 3067 0.400000 +240 3082 0.400000 +240 3125 0.400000 +240 3193 0.400000 +241 93 0.400000 +241 101 0.400000 +241 213 0.400000 +241 365 0.400000 +241 381 0.400000 +241 488 0.400000 +241 496 0.400000 +241 506 0.400000 +241 515 0.400000 +241 537 0.400000 +241 590 0.400000 +241 739 0.400000 +241 745 0.400000 +241 782 0.400000 +241 806 0.400000 +241 835 0.400000 +241 850 0.400000 +241 899 0.400000 +241 1013 0.400000 +241 1017 0.400000 +241 1134 0.400000 +241 1142 0.400000 +241 1174 0.400000 +241 1258 0.400000 +241 1307 0.400000 +241 1350 0.400000 +241 1383 0.400000 +241 1420 0.400000 +241 1586 0.400000 +241 1592 0.400000 +241 1602 0.400000 +241 1621 0.400000 +241 1622 0.400000 +241 1792 0.400000 +241 1899 0.400000 +241 1919 0.400000 +241 1966 0.400000 +241 2060 0.400000 +241 2141 0.400000 +241 2216 0.400000 +241 2218 0.400000 +241 2265 0.400000 +241 2274 0.400000 +241 2289 0.400000 +241 2359 0.400000 +241 2362 0.400000 +241 2448 0.400000 +241 2479 0.400000 +241 2487 0.400000 +241 2610 0.400000 +241 2697 0.400000 +241 2713 0.400000 +241 2791 0.400000 +241 2841 0.400000 +241 2955 0.400000 +241 2959 0.400000 +241 2998 0.400000 +241 3006 0.400000 +241 3048 0.400000 +241 3088 0.400000 +241 3175 0.400000 +241 3181 0.400000 +241 3184 0.400000 +241 3188 0.400000 +242 17 0.400000 +242 34 0.400000 +242 147 0.400000 +242 153 0.400000 +242 274 0.400000 +242 345 0.400000 +242 360 0.400000 +242 376 0.400000 +242 447 0.400000 +242 507 0.400000 +242 515 0.400000 +242 530 0.400000 +242 539 0.400000 +242 597 0.400000 +242 644 0.400000 +242 689 0.400000 +242 738 0.400000 +242 757 0.400000 +242 788 0.400000 +242 828 0.400000 +242 833 0.400000 +242 848 0.400000 +242 930 0.400000 +242 938 0.400000 +242 1018 0.400000 +242 1028 0.400000 +242 1063 0.400000 +242 1127 0.400000 +242 1150 0.400000 +242 1161 0.400000 +242 1193 0.400000 +242 1201 0.400000 +242 1270 0.400000 +242 1314 0.400000 +242 1337 0.400000 +242 1346 0.400000 +242 1502 0.400000 +242 1518 0.400000 +242 1664 0.400000 +242 1692 0.400000 +242 1720 0.400000 +242 1784 0.400000 +242 1826 0.400000 +242 1887 0.400000 +242 1913 0.400000 +242 1914 0.400000 +242 1956 0.400000 +242 2027 0.400000 +242 2044 0.400000 +242 2047 0.400000 +242 2075 0.400000 +242 2221 0.400000 +242 2241 0.400000 +242 2278 0.400000 +242 2298 0.400000 +242 2306 0.400000 +242 2330 0.400000 +242 2342 0.400000 +242 2356 0.400000 +242 2465 0.400000 +242 2548 0.400000 +242 2583 0.400000 +242 2601 0.400000 +242 2645 0.400000 +242 2681 0.400000 +242 2723 0.400000 +242 2860 0.400000 +242 2974 0.400000 +242 2979 0.400000 +242 3107 0.400000 +242 3127 0.400000 +242 3184 0.400000 +243 102 0.400000 +243 257 0.400000 +243 344 0.400000 +243 485 0.400000 +243 545 0.400000 +243 613 0.400000 +243 628 0.400000 +243 656 0.400000 +243 722 0.400000 +243 775 0.400000 +243 831 0.400000 +243 855 0.400000 +243 1024 0.400000 +243 1031 0.400000 +243 1063 0.400000 +243 1079 0.400000 +243 1136 0.400000 +243 1141 0.400000 +243 1217 0.400000 +243 1261 0.400000 +243 1277 0.400000 +243 1301 0.400000 +243 1498 0.400000 +243 1583 0.400000 +243 1622 0.400000 +243 1657 0.400000 +243 1690 0.400000 +243 1733 0.400000 +243 1829 0.400000 +243 1942 0.400000 +243 1956 0.400000 +243 1983 0.400000 +243 2062 0.400000 +243 2065 0.400000 +243 2116 0.400000 +243 2154 0.400000 +243 2215 0.400000 +243 2264 0.400000 +243 2274 0.400000 +243 2348 0.400000 +243 2367 0.400000 +243 2421 0.400000 +243 2460 0.400000 +243 2495 0.400000 +243 2511 0.400000 +243 2543 0.400000 +243 2604 0.400000 +243 2676 0.400000 +243 2702 0.400000 +243 2790 0.400000 +243 2851 0.400000 +243 2877 0.400000 +243 2880 0.400000 +243 2888 0.400000 +243 2938 0.400000 +243 2955 0.400000 +243 2956 0.400000 +243 3113 0.400000 +244 25 0.400000 +244 122 0.400000 +244 127 0.400000 +244 192 0.400000 +244 254 0.400000 +244 303 0.400000 +244 345 0.400000 +244 365 0.400000 +244 426 0.400000 +244 435 0.400000 +244 468 0.400000 +244 619 0.400000 +244 634 0.400000 +244 766 0.400000 +244 811 0.400000 +244 890 0.400000 +244 927 0.400000 +244 984 0.400000 +244 1060 0.400000 +244 1306 0.400000 +244 1430 0.400000 +244 1607 0.400000 +244 1671 0.400000 +244 1707 0.400000 +244 1712 0.400000 +244 1754 0.400000 +244 1804 0.400000 +244 1817 0.400000 +244 1843 0.400000 +244 1863 0.400000 +244 1898 0.400000 +244 1975 0.400000 +244 1976 0.400000 +244 2048 0.400000 +244 2188 0.400000 +244 2190 0.400000 +244 2265 0.400000 +244 2339 0.400000 +244 2512 0.400000 +244 2529 0.400000 +244 2554 0.400000 +244 2563 0.400000 +244 2702 0.400000 +244 2857 0.400000 +244 2897 0.400000 +244 2908 0.400000 +244 2941 0.400000 +244 2968 0.400000 +244 3067 0.400000 +244 3091 0.400000 +244 3137 0.400000 +245 210 0.400000 +245 230 0.400000 +245 256 0.400000 +245 266 0.400000 +245 371 0.400000 +245 433 0.400000 +245 543 0.400000 +245 587 0.400000 +245 602 0.400000 +245 633 0.400000 +245 659 0.400000 +245 731 0.400000 +245 910 0.400000 +245 1150 0.400000 +245 1180 0.400000 +245 1204 0.400000 +245 1210 0.400000 +245 1272 0.400000 +245 1335 0.400000 +245 1369 0.400000 +245 1371 0.400000 +245 1455 0.400000 +245 1459 0.400000 +245 1537 0.400000 +245 1550 0.400000 +245 1638 0.400000 +245 1678 0.400000 +245 1689 0.400000 +245 1727 0.400000 +245 1752 0.400000 +245 1796 0.400000 +245 1839 0.400000 +245 2099 0.400000 +245 2140 0.400000 +245 2147 0.400000 +245 2341 0.400000 +245 2349 0.400000 +245 2384 0.400000 +245 2481 0.400000 +245 2501 0.400000 +245 2551 0.400000 +245 2585 0.400000 +245 2718 0.400000 +245 2745 0.400000 +245 2777 0.400000 +245 2949 0.400000 +245 2954 0.400000 +245 2962 0.400000 +245 3161 0.400000 +246 72 0.400000 +246 150 0.400000 +246 170 0.400000 +246 201 0.400000 +246 202 0.400000 +246 279 0.400000 +246 406 0.400000 +246 434 0.400000 +246 462 0.400000 +246 546 0.400000 +246 659 0.400000 +246 675 0.400000 +246 733 0.400000 +246 848 0.400000 +246 892 0.400000 +246 900 0.400000 +246 949 0.400000 +246 1018 0.400000 +246 1052 0.400000 +246 1177 0.400000 +246 1271 0.400000 +246 1272 0.400000 +246 1333 0.400000 +246 1337 0.400000 +246 1351 0.400000 +246 1373 0.400000 +246 1435 0.400000 +246 1517 0.400000 +246 1564 0.400000 +246 1587 0.400000 +246 1731 0.400000 +246 1782 0.400000 +246 1805 0.400000 +246 1854 0.400000 +246 1881 0.400000 +246 1923 0.400000 +246 1945 0.400000 +246 1973 0.400000 +246 1996 0.400000 +246 2012 0.400000 +246 2018 0.400000 +246 2125 0.400000 +246 2144 0.400000 +246 2237 0.400000 +246 2275 0.400000 +246 2309 0.400000 +246 2467 0.400000 +246 2497 0.400000 +246 2545 0.400000 +246 2666 0.400000 +246 2677 0.400000 +246 2681 0.400000 +246 2780 0.400000 +246 2909 0.400000 +246 3019 0.400000 +246 3023 0.400000 +246 3039 0.400000 +246 3115 0.400000 +246 3120 0.400000 +246 3129 0.400000 +247 11 0.400000 +247 170 0.400000 +247 254 0.400000 +247 267 0.400000 +247 290 0.400000 +247 306 0.400000 +247 325 0.400000 +247 338 0.400000 +247 339 0.400000 +247 464 0.400000 +247 495 0.400000 +247 533 0.400000 +247 582 0.400000 +247 644 0.400000 +247 679 0.400000 +247 773 0.400000 +247 828 0.400000 +247 829 0.400000 +247 862 0.400000 +247 879 0.400000 +247 898 0.400000 +247 995 0.400000 +247 1122 0.400000 +247 1150 0.400000 +247 1289 0.400000 +247 1298 0.400000 +247 1312 0.400000 +247 1375 0.400000 +247 1388 0.400000 +247 1398 0.400000 +247 1454 0.400000 +247 1486 0.400000 +247 1557 0.400000 +247 1561 0.400000 +247 1587 0.400000 +247 1622 0.400000 +247 1631 0.400000 +247 1636 0.400000 +247 1637 0.400000 +247 1656 0.400000 +247 1754 0.400000 +247 1791 0.400000 +247 1829 0.400000 +247 1850 0.400000 +247 1944 0.400000 +247 1949 0.400000 +247 1996 0.400000 +247 2140 0.400000 +247 2213 0.400000 +247 2235 0.400000 +247 2291 0.400000 +247 2366 0.400000 +247 2495 0.400000 +247 2639 0.400000 +247 2747 0.400000 +247 2764 0.400000 +247 2774 0.400000 +247 2794 0.400000 +247 2888 0.400000 +247 2972 0.400000 +247 2994 0.400000 +247 3127 0.400000 +247 3146 0.400000 +247 3193 0.400000 +248 174 0.400000 +248 225 0.400000 +248 302 0.400000 +248 365 0.400000 +248 409 0.400000 +248 439 0.400000 +248 554 0.400000 +248 936 0.400000 +248 1037 0.400000 +248 1090 0.400000 +248 1181 0.400000 +248 1229 0.400000 +248 1257 0.400000 +248 1319 0.400000 +248 1344 0.400000 +248 1368 0.400000 +248 1406 0.400000 +248 1429 0.400000 +248 1556 0.400000 +248 1591 0.400000 +248 1650 0.400000 +248 1673 0.400000 +248 1687 0.400000 +248 1696 0.400000 +248 1729 0.400000 +248 1745 0.400000 +248 1779 0.400000 +248 1949 0.400000 +248 1997 0.400000 +248 2007 0.400000 +248 2010 0.400000 +248 2064 0.400000 +248 2090 0.400000 +248 2099 0.400000 +248 2295 0.400000 +248 2301 0.400000 +248 2432 0.400000 +248 2443 0.400000 +248 2519 0.400000 +248 2531 0.400000 +248 2553 0.400000 +248 2558 0.400000 +248 2586 0.400000 +248 2918 0.400000 +248 2958 0.400000 +248 3009 0.400000 +248 3021 0.400000 +249 130 0.400000 +249 164 0.400000 +249 222 0.400000 +249 313 0.400000 +249 317 0.400000 +249 350 0.400000 +249 360 0.400000 +249 374 0.400000 +249 384 0.400000 +249 521 0.400000 +249 526 0.400000 +249 573 0.400000 +249 577 0.400000 +249 616 0.400000 +249 662 0.400000 +249 665 0.400000 +249 678 0.400000 +249 684 0.400000 +249 707 0.400000 +249 728 0.400000 +249 754 0.400000 +249 768 0.400000 +249 816 0.400000 +249 818 0.400000 +249 843 0.400000 +249 957 0.400000 +249 995 0.400000 +249 1279 0.400000 +249 1334 0.400000 +249 1392 0.400000 +249 1441 0.400000 +249 1450 0.400000 +249 1471 0.400000 +249 1591 0.400000 +249 1620 0.400000 +249 1713 0.400000 +249 1749 0.400000 +249 1768 0.400000 +249 1817 0.400000 +249 1884 0.400000 +249 2004 0.400000 +249 2007 0.400000 +249 2112 0.400000 +249 2188 0.400000 +249 2199 0.400000 +249 2214 0.400000 +249 2228 0.400000 +249 2238 0.400000 +249 2263 0.400000 +249 2369 0.400000 +249 2372 0.400000 +249 2474 0.400000 +249 2481 0.400000 +249 2500 0.400000 +249 2544 0.400000 +249 2648 0.400000 +249 2713 0.400000 +249 2727 0.400000 +249 2771 0.400000 +249 2776 0.400000 +249 2822 0.400000 +249 2828 0.400000 +249 2936 0.400000 +249 3063 0.400000 +249 3072 0.400000 +249 3148 0.400000 +249 3186 0.400000 +250 38 0.400000 +250 49 0.400000 +250 50 0.400000 +250 236 0.400000 +250 393 0.400000 +250 476 0.400000 +250 479 0.400000 +250 534 0.400000 +250 545 0.400000 +250 577 0.400000 +250 725 0.400000 +250 826 0.400000 +250 887 0.400000 +250 956 0.400000 +250 986 0.400000 +250 995 0.400000 +250 1193 0.400000 +250 1262 0.400000 +250 1284 0.400000 +250 1311 0.400000 +250 1349 0.400000 +250 1362 0.400000 +250 1580 0.400000 +250 1587 0.400000 +250 1638 0.400000 +250 1735 0.400000 +250 1784 0.400000 +250 1817 0.400000 +250 1845 0.400000 +250 1887 0.400000 +250 1890 0.400000 +250 1903 0.400000 +250 1904 0.400000 +250 1939 0.400000 +250 1980 0.400000 +250 1991 0.400000 +250 1996 0.400000 +250 2137 0.400000 +250 2282 0.400000 +250 2284 0.400000 +250 2357 0.400000 +250 2440 0.400000 +250 2472 0.400000 +250 2546 0.400000 +250 2607 0.400000 +250 2624 0.400000 +250 2642 0.400000 +250 2708 0.400000 +250 2810 0.400000 +250 2856 0.400000 +250 2864 0.400000 +250 2868 0.400000 +250 2943 0.400000 +250 2953 0.400000 +250 2992 0.400000 +250 3032 0.400000 +250 3041 0.400000 +250 3102 0.400000 +250 3121 0.400000 +250 3158 0.400000 +251 50 0.400000 +251 82 0.400000 +251 90 0.400000 +251 127 0.400000 +251 172 0.400000 +251 185 0.400000 +251 193 0.400000 +251 302 0.400000 +251 388 0.400000 +251 435 0.400000 +251 549 0.400000 +251 554 0.400000 +251 564 0.400000 +251 606 0.400000 +251 643 0.400000 +251 681 0.400000 +251 760 0.400000 +251 873 0.400000 +251 881 0.400000 +251 900 0.400000 +251 963 0.400000 +251 964 0.400000 +251 1065 0.400000 +251 1071 0.400000 +251 1098 0.400000 +251 1160 0.400000 +251 1173 0.400000 +251 1189 0.400000 +251 1205 0.400000 +251 1219 0.400000 +251 1415 0.400000 +251 1444 0.400000 +251 1453 0.400000 +251 1549 0.400000 +251 1740 0.400000 +251 1826 0.400000 +251 1829 0.400000 +251 1846 0.400000 +251 1904 0.400000 +251 1949 0.400000 +251 1981 0.400000 +251 1996 0.400000 +251 2068 0.400000 +251 2150 0.400000 +251 2187 0.400000 +251 2199 0.400000 +251 2207 0.400000 +251 2220 0.400000 +251 2221 0.400000 +251 2243 0.400000 +251 2270 0.400000 +251 2276 0.400000 +251 2294 0.400000 +251 2316 0.400000 +251 2317 0.400000 +251 2397 0.400000 +251 2401 0.400000 +251 2406 0.400000 +251 2513 0.400000 +251 2568 0.400000 +251 2718 0.400000 +251 2804 0.400000 +251 2808 0.400000 +251 2833 0.400000 +251 2909 0.400000 +251 2965 0.400000 +251 3022 0.400000 +251 3146 0.400000 +251 3181 0.400000 +252 75 0.400000 +252 144 0.400000 +252 179 0.400000 +252 193 0.400000 +252 202 0.400000 +252 315 0.400000 +252 338 0.400000 +252 380 0.400000 +252 414 0.400000 +252 433 0.400000 +252 473 0.400000 +252 513 0.400000 +252 661 0.400000 +252 731 0.400000 +252 765 0.400000 +252 792 0.400000 +252 807 0.400000 +252 837 0.400000 +252 880 0.400000 +252 1021 0.400000 +252 1107 0.400000 +252 1138 0.400000 +252 1158 0.400000 +252 1181 0.400000 +252 1212 0.400000 +252 1224 0.400000 +252 1382 0.400000 +252 1409 0.400000 +252 1423 0.400000 +252 1429 0.400000 +252 1568 0.400000 +252 1777 0.400000 +252 1778 0.400000 +252 1798 0.400000 +252 1857 0.400000 +252 1928 0.400000 +252 1929 0.400000 +252 1960 0.400000 +252 2086 0.400000 +252 2199 0.400000 +252 2290 0.400000 +252 2369 0.400000 +252 2397 0.400000 +252 2416 0.400000 +252 2444 0.400000 +252 2469 0.400000 +252 2515 0.400000 +252 2605 0.400000 +252 2764 0.400000 +252 2782 0.400000 +252 2792 0.400000 +252 2794 0.400000 +252 2899 0.400000 +252 2971 0.400000 +252 3000 0.400000 +252 3004 0.400000 +252 3049 0.400000 +252 3087 0.400000 +252 3138 0.400000 +252 3173 0.400000 +252 3187 0.400000 +253 13 0.400000 +253 46 0.400000 +253 185 0.400000 +253 199 0.400000 +253 209 0.400000 +253 310 0.400000 +253 380 0.400000 +253 384 0.400000 +253 433 0.400000 +253 479 0.400000 +253 506 0.400000 +253 512 0.400000 +253 531 0.400000 +253 563 0.400000 +253 607 0.400000 +253 786 0.400000 +253 811 0.400000 +253 814 0.400000 +253 851 0.400000 +253 925 0.400000 +253 977 0.400000 +253 990 0.400000 +253 1136 0.400000 +253 1232 0.400000 +253 1276 0.400000 +253 1290 0.400000 +253 1364 0.400000 +253 1370 0.400000 +253 1440 0.400000 +253 1444 0.400000 +253 1498 0.400000 +253 1542 0.400000 +253 1613 0.400000 +253 1813 0.400000 +253 1863 0.400000 +253 1912 0.400000 +253 1914 0.400000 +253 1984 0.400000 +253 2106 0.400000 +253 2156 0.400000 +253 2177 0.400000 +253 2330 0.400000 +253 2344 0.400000 +253 2379 0.400000 +253 2380 0.400000 +253 2402 0.400000 +253 2433 0.400000 +253 2503 0.400000 +253 2544 0.400000 +253 2594 0.400000 +253 2595 0.400000 +253 2612 0.400000 +253 2654 0.400000 +253 2665 0.400000 +253 2697 0.400000 +253 2758 0.400000 +253 2777 0.400000 +253 2828 0.400000 +253 2835 0.400000 +253 2885 0.400000 +253 2951 0.400000 +253 2993 0.400000 +253 3109 0.400000 +254 93 0.400000 +254 110 0.400000 +254 140 0.400000 +254 148 0.400000 +254 149 0.400000 +254 388 0.400000 +254 412 0.400000 +254 469 0.400000 +254 472 0.400000 +254 473 0.400000 +254 613 0.400000 +254 650 0.400000 +254 657 0.400000 +254 676 0.400000 +254 703 0.400000 +254 772 0.400000 +254 796 0.400000 +254 821 0.400000 +254 889 0.400000 +254 912 0.400000 +254 943 0.400000 +254 999 0.400000 +254 1019 0.400000 +254 1028 0.400000 +254 1049 0.400000 +254 1072 0.400000 +254 1276 0.400000 +254 1280 0.400000 +254 1378 0.400000 +254 1509 0.400000 +254 1723 0.400000 +254 1804 0.400000 +254 1857 0.400000 +254 1985 0.400000 +254 1987 0.400000 +254 1992 0.400000 +254 2047 0.400000 +254 2067 0.400000 +254 2129 0.400000 +254 2166 0.400000 +254 2181 0.400000 +254 2193 0.400000 +254 2228 0.400000 +254 2292 0.400000 +254 2350 0.400000 +254 2354 0.400000 +254 2459 0.400000 +254 2542 0.400000 +254 2743 0.400000 +254 2832 0.400000 +254 2875 0.400000 +254 2926 0.400000 +254 2931 0.400000 +254 2956 0.400000 +254 2991 0.400000 +254 2994 0.400000 +254 3124 0.400000 +255 34 0.400000 +255 60 0.400000 +255 276 0.400000 +255 285 0.400000 +255 298 0.400000 +255 451 0.400000 +255 562 0.400000 +255 681 0.400000 +255 723 0.400000 +255 785 0.400000 +255 808 0.400000 +255 825 0.400000 +255 958 0.400000 +255 980 0.400000 +255 1049 0.400000 +255 1089 0.400000 +255 1135 0.400000 +255 1239 0.400000 +255 1276 0.400000 +255 1306 0.400000 +255 1334 0.400000 +255 1343 0.400000 +255 1366 0.400000 +255 1395 0.400000 +255 1531 0.400000 +255 1839 0.400000 +255 1854 0.400000 +255 2004 0.400000 +255 2021 0.400000 +255 2030 0.400000 +255 2098 0.400000 +255 2105 0.400000 +255 2128 0.400000 +255 2189 0.400000 +255 2191 0.400000 +255 2253 0.400000 +255 2294 0.400000 +255 2429 0.400000 +255 2441 0.400000 +255 2671 0.400000 +255 2694 0.400000 +255 2854 0.400000 +255 2952 0.400000 +255 3006 0.400000 +255 3044 0.400000 +255 3110 0.400000 +256 51 0.400000 +256 118 0.400000 +256 124 0.400000 +256 152 0.400000 +256 184 0.400000 +256 209 0.400000 +256 244 0.400000 +256 480 0.400000 +256 495 0.400000 +256 502 0.400000 +256 517 0.400000 +256 548 0.400000 +256 555 0.400000 +256 563 0.400000 +256 660 0.400000 +256 711 0.400000 +256 778 0.400000 +256 837 0.400000 +256 851 0.400000 +256 877 0.400000 +256 881 0.400000 +256 908 0.400000 +256 966 0.400000 +256 1281 0.400000 +256 1421 0.400000 +256 1435 0.400000 +256 1479 0.400000 +256 1493 0.400000 +256 1593 0.400000 +256 1638 0.400000 +256 1653 0.400000 +256 1670 0.400000 +256 1676 0.400000 +256 1683 0.400000 +256 1699 0.400000 +256 1795 0.400000 +256 2112 0.400000 +256 2126 0.400000 +256 2149 0.400000 +256 2155 0.400000 +256 2254 0.400000 +256 2303 0.400000 +256 2316 0.400000 +256 2336 0.400000 +256 2386 0.400000 +256 2463 0.400000 +256 2558 0.400000 +256 2689 0.400000 +256 2856 0.400000 +256 2941 0.400000 +256 3083 0.400000 +256 3112 0.400000 +256 3131 0.400000 +256 3153 0.400000 +256 3156 0.400000 +256 3182 0.400000 +257 57 0.400000 +257 58 0.400000 +257 173 0.400000 +257 257 0.400000 +257 373 0.400000 +257 460 0.400000 +257 578 0.400000 +257 583 0.400000 +257 599 0.400000 +257 626 0.400000 +257 659 0.400000 +257 668 0.400000 +257 728 0.400000 +257 737 0.400000 +257 758 0.400000 +257 759 0.400000 +257 762 0.400000 +257 778 0.400000 +257 922 0.400000 +257 933 0.400000 +257 934 0.400000 +257 947 0.400000 +257 951 0.400000 +257 1037 0.400000 +257 1047 0.400000 +257 1180 0.400000 +257 1210 0.400000 +257 1323 0.400000 +257 1425 0.400000 +257 1595 0.400000 +257 1623 0.400000 +257 1632 0.400000 +257 1638 0.400000 +257 1678 0.400000 +257 1731 0.400000 +257 1875 0.400000 +257 1906 0.400000 +257 2143 0.400000 +257 2198 0.400000 +257 2260 0.400000 +257 2281 0.400000 +257 2377 0.400000 +257 2413 0.400000 +257 2542 0.400000 +257 2591 0.400000 +257 2597 0.400000 +257 2718 0.400000 +257 2819 0.400000 +257 2871 0.400000 +257 2888 0.400000 +257 2917 0.400000 +257 2938 0.400000 +257 2967 0.400000 +257 2993 0.400000 +257 3011 0.400000 +257 3154 0.400000 +258 32 0.400000 +258 45 0.400000 +258 69 0.400000 +258 75 0.400000 +258 80 0.400000 +258 118 0.400000 +258 125 0.400000 +258 145 0.400000 +258 175 0.400000 +258 195 0.400000 +258 225 0.400000 +258 227 0.400000 +258 283 0.400000 +258 363 0.400000 +258 391 0.400000 +258 467 0.400000 +258 469 0.400000 +258 474 0.400000 +258 530 0.400000 +258 599 0.400000 +258 659 0.400000 +258 690 0.400000 +258 758 0.400000 +258 911 0.400000 +258 921 0.400000 +258 977 0.400000 +258 1011 0.400000 +258 1025 0.400000 +258 1158 0.400000 +258 1211 0.400000 +258 1264 0.400000 +258 1307 0.400000 +258 1352 0.400000 +258 1368 0.400000 +258 1378 0.400000 +258 1405 0.400000 +258 1436 0.400000 +258 1504 0.400000 +258 1564 0.400000 +258 1573 0.400000 +258 1647 0.400000 +258 1684 0.400000 +258 1702 0.400000 +258 1723 0.400000 +258 1731 0.400000 +258 1815 0.400000 +258 1820 0.400000 +258 1849 0.400000 +258 1922 0.400000 +258 1976 0.400000 +258 2025 0.400000 +258 2178 0.400000 +258 2204 0.400000 +258 2224 0.400000 +258 2273 0.400000 +258 2280 0.400000 +258 2410 0.400000 +258 2418 0.400000 +258 2448 0.400000 +258 2456 0.400000 +258 2640 0.400000 +258 2749 0.400000 +258 2828 0.400000 +258 2852 0.400000 +258 2890 0.400000 +258 2966 0.400000 +258 2983 0.400000 +258 3014 0.400000 +258 3048 0.400000 +258 3069 0.400000 +258 3108 0.400000 +258 3109 0.400000 +258 3115 0.400000 +258 3149 0.400000 +258 3184 0.400000 +258 3193 0.400000 +259 107 0.400000 +259 157 0.400000 +259 171 0.400000 +259 182 0.400000 +259 207 0.400000 +259 220 0.400000 +259 266 0.400000 +259 301 0.400000 +259 304 0.400000 +259 343 0.400000 +259 431 0.400000 +259 479 0.400000 +259 551 0.400000 +259 557 0.400000 +259 593 0.400000 +259 606 0.400000 +259 774 0.400000 +259 784 0.400000 +259 820 0.400000 +259 828 0.400000 +259 914 0.400000 +259 936 0.400000 +259 1032 0.400000 +259 1078 0.400000 +259 1106 0.400000 +259 1127 0.400000 +259 1164 0.400000 +259 1171 0.400000 +259 1173 0.400000 +259 1205 0.400000 +259 1207 0.400000 +259 1231 0.400000 +259 1280 0.400000 +259 1334 0.400000 +259 1377 0.400000 +259 1405 0.400000 +259 1431 0.400000 +259 1525 0.400000 +259 1541 0.400000 +259 1545 0.400000 +259 1666 0.400000 +259 1684 0.400000 +259 1785 0.400000 +259 1802 0.400000 +259 1884 0.400000 +259 1939 0.400000 +259 2005 0.400000 +259 2006 0.400000 +259 2079 0.400000 +259 2105 0.400000 +259 2158 0.400000 +259 2162 0.400000 +259 2242 0.400000 +259 2254 0.400000 +259 2271 0.400000 +259 2358 0.400000 +259 2360 0.400000 +259 2372 0.400000 +259 2390 0.400000 +259 2438 0.400000 +259 2450 0.400000 +259 2482 0.400000 +259 2542 0.400000 +259 2584 0.400000 +259 2608 0.400000 +259 2609 0.400000 +259 2638 0.400000 +259 2690 0.400000 +259 2786 0.400000 +259 2910 0.400000 +259 2927 0.400000 +259 2946 0.400000 +259 3051 0.400000 +259 3064 0.400000 +259 3156 0.400000 +260 32 0.400000 +260 79 0.400000 +260 95 0.400000 +260 178 0.400000 +260 181 0.400000 +260 269 0.400000 +260 275 0.400000 +260 299 0.400000 +260 488 0.400000 +260 495 0.400000 +260 597 0.400000 +260 599 0.400000 +260 767 0.400000 +260 820 0.400000 +260 830 0.400000 +260 842 0.400000 +260 854 0.400000 +260 858 0.400000 +260 859 0.400000 +260 893 0.400000 +260 921 0.400000 +260 950 0.400000 +260 1063 0.400000 +260 1093 0.400000 +260 1140 0.400000 +260 1142 0.400000 +260 1145 0.400000 +260 1227 0.400000 +260 1305 0.400000 +260 1341 0.400000 +260 1350 0.400000 +260 1438 0.400000 +260 1458 0.400000 +260 1575 0.400000 +260 1699 0.400000 +260 1723 0.400000 +260 1829 0.400000 +260 1896 0.400000 +260 1949 0.400000 +260 2029 0.400000 +260 2032 0.400000 +260 2052 0.400000 +260 2054 0.400000 +260 2068 0.400000 +260 2089 0.400000 +260 2098 0.400000 +260 2154 0.400000 +260 2159 0.400000 +260 2187 0.400000 +260 2256 0.400000 +260 2258 0.400000 +260 2263 0.400000 +260 2313 0.400000 +260 2361 0.400000 +260 2447 0.400000 +260 2453 0.400000 +260 2511 0.400000 +260 2525 0.400000 +260 2651 0.400000 +260 2818 0.400000 +260 2861 0.400000 +260 2977 0.400000 +260 2995 0.400000 +260 2999 0.400000 +260 3004 0.400000 +260 3025 0.400000 +260 3064 0.400000 +260 3066 0.400000 +260 3070 0.400000 +260 3083 0.400000 +260 3109 0.400000 +260 3142 0.400000 +260 3155 0.400000 +260 3170 0.400000 +261 12 0.400000 +261 39 0.400000 +261 64 0.400000 +261 73 0.400000 +261 166 0.400000 +261 200 0.400000 +261 265 0.400000 +261 307 0.400000 +261 323 0.400000 +261 344 0.400000 +261 355 0.400000 +261 405 0.400000 +261 564 0.400000 +261 586 0.400000 +261 745 0.400000 +261 778 0.400000 +261 785 0.400000 +261 886 0.400000 +261 931 0.400000 +261 963 0.400000 +261 977 0.400000 +261 1055 0.400000 +261 1099 0.400000 +261 1157 0.400000 +261 1180 0.400000 +261 1215 0.400000 +261 1297 0.400000 +261 1550 0.400000 +261 1595 0.400000 +261 1601 0.400000 +261 1615 0.400000 +261 1729 0.400000 +261 1745 0.400000 +261 1877 0.400000 +261 2004 0.400000 +261 2008 0.400000 +261 2014 0.400000 +261 2019 0.400000 +261 2152 0.400000 +261 2212 0.400000 +261 2242 0.400000 +261 2265 0.400000 +261 2521 0.400000 +261 2554 0.400000 +261 2745 0.400000 +261 2832 0.400000 +261 2975 0.400000 +261 2976 0.400000 +261 2988 0.400000 +261 2989 0.400000 +261 3139 0.400000 +262 77 0.400000 +262 129 0.400000 +262 184 0.400000 +262 190 0.400000 +262 210 0.400000 +262 317 0.400000 +262 360 0.400000 +262 383 0.400000 +262 385 0.400000 +262 419 0.400000 +262 482 0.400000 +262 612 0.400000 +262 639 0.400000 +262 704 0.400000 +262 715 0.400000 +262 724 0.400000 +262 805 0.400000 +262 859 0.400000 +262 903 0.400000 +262 906 0.400000 +262 936 0.400000 +262 1108 0.400000 +262 1142 0.400000 +262 1157 0.400000 +262 1242 0.400000 +262 1328 0.400000 +262 1348 0.400000 +262 1358 0.400000 +262 1365 0.400000 +262 1370 0.400000 +262 1383 0.400000 +262 1479 0.400000 +262 1503 0.400000 +262 1620 0.400000 +262 1626 0.400000 +262 1664 0.400000 +262 1849 0.400000 +262 1867 0.400000 +262 1885 0.400000 +262 1915 0.400000 +262 1972 0.400000 +262 2004 0.400000 +262 2007 0.400000 +262 2045 0.400000 +262 2049 0.400000 +262 2063 0.400000 +262 2087 0.400000 +262 2124 0.400000 +262 2167 0.400000 +262 2190 0.400000 +262 2228 0.400000 +262 2240 0.400000 +262 2326 0.400000 +262 2354 0.400000 +262 2445 0.400000 +262 2475 0.400000 +262 2490 0.400000 +262 2497 0.400000 +262 2503 0.400000 +262 2514 0.400000 +262 2530 0.400000 +262 2592 0.400000 +262 2601 0.400000 +262 2604 0.400000 +262 2611 0.400000 +262 2795 0.400000 +262 2838 0.400000 +262 2891 0.400000 +262 2929 0.400000 +262 3193 0.400000 +263 7 0.400000 +263 52 0.400000 +263 77 0.400000 +263 97 0.400000 +263 111 0.400000 +263 174 0.400000 +263 210 0.400000 +263 245 0.400000 +263 337 0.400000 +263 344 0.400000 +263 360 0.400000 +263 382 0.400000 +263 520 0.400000 +263 586 0.400000 +263 589 0.400000 +263 592 0.400000 +263 727 0.400000 +263 740 0.400000 +263 765 0.400000 +263 959 0.400000 +263 1026 0.400000 +263 1050 0.400000 +263 1076 0.400000 +263 1188 0.400000 +263 1270 0.400000 +263 1292 0.400000 +263 1359 0.400000 +263 1392 0.400000 +263 1490 0.400000 +263 1557 0.400000 +263 1575 0.400000 +263 1596 0.400000 +263 1635 0.400000 +263 1639 0.400000 +263 1745 0.400000 +263 1773 0.400000 +263 1775 0.400000 +263 1861 0.400000 +263 1938 0.400000 +263 1994 0.400000 +263 2001 0.400000 +263 2057 0.400000 +263 2128 0.400000 +263 2170 0.400000 +263 2172 0.400000 +263 2202 0.400000 +263 2218 0.400000 +263 2256 0.400000 +263 2274 0.400000 +263 2354 0.400000 +263 2384 0.400000 +263 2420 0.400000 +263 2521 0.400000 +263 2537 0.400000 +263 2556 0.400000 +263 2618 0.400000 +263 2631 0.400000 +263 2645 0.400000 +263 2648 0.400000 +263 2692 0.400000 +263 2724 0.400000 +263 2796 0.400000 +263 2852 0.400000 +263 2925 0.400000 +263 2987 0.400000 +263 3009 0.400000 +263 3061 0.400000 +263 3126 0.400000 +263 3166 0.400000 +264 48 0.400000 +264 55 0.400000 +264 80 0.400000 +264 161 0.400000 +264 180 0.400000 +264 207 0.400000 +264 296 0.400000 +264 298 0.400000 +264 336 0.400000 +264 349 0.400000 +264 396 0.400000 +264 524 0.400000 +264 534 0.400000 +264 539 0.400000 +264 548 0.400000 +264 574 0.400000 +264 635 0.400000 +264 746 0.400000 +264 893 0.400000 +264 1032 0.400000 +264 1045 0.400000 +264 1211 0.400000 +264 1212 0.400000 +264 1213 0.400000 +264 1232 0.400000 +264 1266 0.400000 +264 1387 0.400000 +264 1446 0.400000 +264 1492 0.400000 +264 1748 0.400000 +264 1767 0.400000 +264 1820 0.400000 +264 1956 0.400000 +264 2011 0.400000 +264 2098 0.400000 +264 2136 0.400000 +264 2144 0.400000 +264 2199 0.400000 +264 2263 0.400000 +264 2364 0.400000 +264 2390 0.400000 +264 2490 0.400000 +264 2565 0.400000 +264 2604 0.400000 +264 2654 0.400000 +264 2679 0.400000 +264 2782 0.400000 +264 2911 0.400000 +264 2943 0.400000 +264 2948 0.400000 +264 2953 0.400000 +264 2962 0.400000 +264 2997 0.400000 +264 3049 0.400000 +264 3152 0.400000 +264 3180 0.400000 +265 240 0.400000 +265 338 0.400000 +265 439 0.400000 +265 641 0.400000 +265 674 0.400000 +265 720 0.400000 +265 748 0.400000 +265 981 0.400000 +265 1019 0.400000 +265 1040 0.400000 +265 1113 0.400000 +265 1123 0.400000 +265 1146 0.400000 +265 1203 0.400000 +265 1317 0.400000 +265 1355 0.400000 +265 1498 0.400000 +265 1547 0.400000 +265 1569 0.400000 +265 1606 0.400000 +265 1729 0.400000 +265 1731 0.400000 +265 1779 0.400000 +265 1987 0.400000 +265 2160 0.400000 +265 2161 0.400000 +265 2247 0.400000 +265 2284 0.400000 +265 2490 0.400000 +265 2561 0.400000 +265 2661 0.400000 +265 2784 0.400000 +265 2795 0.400000 +265 2806 0.400000 +265 3163 0.400000 +266 45 0.400000 +266 112 0.400000 +266 141 0.400000 +266 187 0.400000 +266 287 0.400000 +266 345 0.400000 +266 381 0.400000 +266 398 0.400000 +266 435 0.400000 +266 588 0.400000 +266 657 0.400000 +266 699 0.400000 +266 702 0.400000 +266 743 0.400000 +266 819 0.400000 +266 962 0.400000 +266 1004 0.400000 +266 1020 0.400000 +266 1031 0.400000 +266 1059 0.400000 +266 1065 0.400000 +266 1092 0.400000 +266 1201 0.400000 +266 1208 0.400000 +266 1209 0.400000 +266 1304 0.400000 +266 1368 0.400000 +266 1378 0.400000 +266 1459 0.400000 +266 1492 0.400000 +266 1636 0.400000 +266 1683 0.400000 +266 1753 0.400000 +266 1866 0.400000 +266 1874 0.400000 +266 1929 0.400000 +266 1961 0.400000 +266 2028 0.400000 +266 2058 0.400000 +266 2127 0.400000 +266 2144 0.400000 +266 2245 0.400000 +266 2252 0.400000 +266 2279 0.400000 +266 2346 0.400000 +266 2445 0.400000 +266 2454 0.400000 +266 2465 0.400000 +266 2550 0.400000 +266 2591 0.400000 +266 2615 0.400000 +266 2659 0.400000 +266 2719 0.400000 +266 2739 0.400000 +266 2759 0.400000 +266 2779 0.400000 +266 2795 0.400000 +266 3067 0.400000 +266 3149 0.400000 +266 3166 0.400000 +266 3173 0.400000 +267 60 0.400000 +267 62 0.400000 +267 67 0.400000 +267 96 0.400000 +267 109 0.400000 +267 216 0.400000 +267 235 0.400000 +267 440 0.400000 +267 448 0.400000 +267 504 0.400000 +267 513 0.400000 +267 529 0.400000 +267 579 0.400000 +267 629 0.400000 +267 693 0.400000 +267 768 0.400000 +267 840 0.400000 +267 850 0.400000 +267 935 0.400000 +267 989 0.400000 +267 995 0.400000 +267 1256 0.400000 +267 1378 0.400000 +267 1405 0.400000 +267 1484 0.400000 +267 1510 0.400000 +267 1520 0.400000 +267 1531 0.400000 +267 1546 0.400000 +267 1653 0.400000 +267 1780 0.400000 +267 1869 0.400000 +267 1902 0.400000 +267 1951 0.400000 +267 1966 0.400000 +267 2038 0.400000 +267 2054 0.400000 +267 2179 0.400000 +267 2183 0.400000 +267 2187 0.400000 +267 2222 0.400000 +267 2292 0.400000 +267 2296 0.400000 +267 2327 0.400000 +267 2339 0.400000 +267 2373 0.400000 +267 2377 0.400000 +267 2446 0.400000 +267 2504 0.400000 +267 2532 0.400000 +267 2720 0.400000 +267 2746 0.400000 +267 2840 0.400000 +267 2881 0.400000 +267 2969 0.400000 +267 3018 0.400000 +267 3047 0.400000 +267 3056 0.400000 +267 3114 0.400000 +267 3134 0.400000 +267 3135 0.400000 +267 3152 0.400000 +268 31 0.400000 +268 58 0.400000 +268 109 0.400000 +268 120 0.400000 +268 126 0.400000 +268 198 0.400000 +268 239 0.400000 +268 255 0.400000 +268 289 0.400000 +268 359 0.400000 +268 424 0.400000 +268 433 0.400000 +268 448 0.400000 +268 460 0.400000 +268 516 0.400000 +268 551 0.400000 +268 604 0.400000 +268 637 0.400000 +268 730 0.400000 +268 776 0.400000 +268 804 0.400000 +268 851 0.400000 +268 972 0.400000 +268 1017 0.400000 +268 1129 0.400000 +268 1147 0.400000 +268 1192 0.400000 +268 1228 0.400000 +268 1289 0.400000 +268 1304 0.400000 +268 1326 0.400000 +268 1328 0.400000 +268 1330 0.400000 +268 1345 0.400000 +268 1372 0.400000 +268 1421 0.400000 +268 1422 0.400000 +268 1523 0.400000 +268 1542 0.400000 +268 1553 0.400000 +268 1652 0.400000 +268 1725 0.400000 +268 1756 0.400000 +268 1769 0.400000 +268 1805 0.400000 +268 1855 0.400000 +268 1856 0.400000 +268 1881 0.400000 +268 1958 0.400000 +268 1998 0.400000 +268 2003 0.400000 +268 2237 0.400000 +268 2291 0.400000 +268 2330 0.400000 +268 2356 0.400000 +268 2428 0.400000 +268 2437 0.400000 +268 2522 0.400000 +268 2601 0.400000 +268 2632 0.400000 +268 2761 0.400000 +268 2811 0.400000 +268 2822 0.400000 +268 2873 0.400000 +268 2931 0.400000 +268 2952 0.400000 +268 2976 0.400000 +268 2986 0.400000 +268 3069 0.400000 +268 3074 0.400000 +268 3098 0.400000 +268 3199 0.400000 +269 47 0.400000 +269 173 0.400000 +269 180 0.400000 +269 237 0.400000 +269 240 0.400000 +269 247 0.400000 +269 251 0.400000 +269 269 0.400000 +269 298 0.400000 +269 374 0.400000 +269 401 0.400000 +269 425 0.400000 +269 491 0.400000 +269 526 0.400000 +269 556 0.400000 +269 567 0.400000 +269 599 0.400000 +269 622 0.400000 +269 630 0.400000 +269 635 0.400000 +269 740 0.400000 +269 750 0.400000 +269 769 0.400000 +269 906 0.400000 +269 997 0.400000 +269 1079 0.400000 +269 1080 0.400000 +269 1095 0.400000 +269 1114 0.400000 +269 1147 0.400000 +269 1290 0.400000 +269 1312 0.400000 +269 1427 0.400000 +269 1440 0.400000 +269 1497 0.400000 +269 1514 0.400000 +269 1521 0.400000 +269 1566 0.400000 +269 1588 0.400000 +269 1591 0.400000 +269 1606 0.400000 +269 1618 0.400000 +269 1643 0.400000 +269 1749 0.400000 +269 1751 0.400000 +269 1803 0.400000 +269 1839 0.400000 +269 1915 0.400000 +269 1968 0.400000 +269 1986 0.400000 +269 2158 0.400000 +269 2170 0.400000 +269 2184 0.400000 +269 2188 0.400000 +269 2366 0.400000 +269 2367 0.400000 +269 2385 0.400000 +269 2420 0.400000 +269 2469 0.400000 +269 2481 0.400000 +269 2514 0.400000 +269 2525 0.400000 +269 2536 0.400000 +269 2580 0.400000 +269 2748 0.400000 +269 2808 0.400000 +269 2830 0.400000 +269 2849 0.400000 +269 2875 0.400000 +269 2884 0.400000 +269 2894 0.400000 +269 2987 0.400000 +269 3044 0.400000 +269 3067 0.400000 +269 3160 0.400000 +270 43 0.400000 +270 102 0.400000 +270 104 0.400000 +270 192 0.400000 +270 214 0.400000 +270 243 0.400000 +270 265 0.400000 +270 344 0.400000 +270 386 0.400000 +270 429 0.400000 +270 535 0.400000 +270 542 0.400000 +270 553 0.400000 +270 555 0.400000 +270 612 0.400000 +270 648 0.400000 +270 687 0.400000 +270 705 0.400000 +270 723 0.400000 +270 740 0.400000 +270 760 0.400000 +270 839 0.400000 +270 844 0.400000 +270 850 0.400000 +270 857 0.400000 +270 965 0.400000 +270 978 0.400000 +270 1066 0.400000 +270 1090 0.400000 +270 1171 0.400000 +270 1181 0.400000 +270 1224 0.400000 +270 1305 0.400000 +270 1421 0.400000 +270 1423 0.400000 +270 1497 0.400000 +270 1524 0.400000 +270 1788 0.400000 +270 1947 0.400000 +270 2005 0.400000 +270 2006 0.400000 +270 2077 0.400000 +270 2182 0.400000 +270 2192 0.400000 +270 2220 0.400000 +270 2387 0.400000 +270 2407 0.400000 +270 2545 0.400000 +270 2550 0.400000 +270 2638 0.400000 +270 2745 0.400000 +270 2770 0.400000 +270 2802 0.400000 +270 2855 0.400000 +270 3046 0.400000 +270 3111 0.400000 +270 3129 0.400000 +270 3196 0.400000 +271 56 0.400000 +271 91 0.400000 +271 131 0.400000 +271 132 0.400000 +271 184 0.400000 +271 261 0.400000 +271 274 0.400000 +271 291 0.400000 +271 523 0.400000 +271 564 0.400000 +271 691 0.400000 +271 762 0.400000 +271 853 0.400000 +271 870 0.400000 +271 1033 0.400000 +271 1130 0.400000 +271 1157 0.400000 +271 1160 0.400000 +271 1257 0.400000 +271 1351 0.400000 +271 1356 0.400000 +271 1436 0.400000 +271 1448 0.400000 +271 1462 0.400000 +271 1463 0.400000 +271 1501 0.400000 +271 1519 0.400000 +271 1551 0.400000 +271 1618 0.400000 +271 1702 0.400000 +271 1737 0.400000 +271 1763 0.400000 +271 1890 0.400000 +271 1953 0.400000 +271 2009 0.400000 +271 2018 0.400000 +271 2024 0.400000 +271 2135 0.400000 +271 2151 0.400000 +271 2164 0.400000 +271 2191 0.400000 +271 2260 0.400000 +271 2328 0.400000 +271 2411 0.400000 +271 2440 0.400000 +271 2480 0.400000 +271 2502 0.400000 +271 2514 0.400000 +271 2664 0.400000 +271 2702 0.400000 +271 2751 0.400000 +271 2779 0.400000 +271 2836 0.400000 +271 2855 0.400000 +271 2866 0.400000 +271 2906 0.400000 +271 2923 0.400000 +271 2966 0.400000 +271 3060 0.400000 +271 3095 0.400000 +271 3105 0.400000 +271 3161 0.400000 +272 113 0.400000 +272 175 0.400000 +272 181 0.400000 +272 233 0.400000 +272 275 0.400000 +272 337 0.400000 +272 364 0.400000 +272 576 0.400000 +272 696 0.400000 +272 846 0.400000 +272 849 0.400000 +272 920 0.400000 +272 1138 0.400000 +272 1246 0.400000 +272 1297 0.400000 +272 1319 0.400000 +272 1333 0.400000 +272 1424 0.400000 +272 1598 0.400000 +272 1625 0.400000 +272 1648 0.400000 +272 1659 0.400000 +272 1802 0.400000 +272 1813 0.400000 +272 1866 0.400000 +272 1875 0.400000 +272 1898 0.400000 +272 1990 0.400000 +272 2096 0.400000 +272 2145 0.400000 +272 2271 0.400000 +272 2409 0.400000 +272 2601 0.400000 +272 2648 0.400000 +272 2667 0.400000 +272 2711 0.400000 +272 2967 0.400000 +272 3030 0.400000 +272 3045 0.400000 +272 3069 0.400000 +272 3107 0.400000 +272 3161 0.400000 +272 3182 0.400000 +272 3193 0.400000 +273 45 0.400000 +273 93 0.400000 +273 229 0.400000 +273 240 0.400000 +273 332 0.400000 +273 343 0.400000 +273 402 0.400000 +273 486 0.400000 +273 538 0.400000 +273 584 0.400000 +273 591 0.400000 +273 690 0.400000 +273 722 0.400000 +273 732 0.400000 +273 790 0.400000 +273 821 0.400000 +273 1223 0.400000 +273 1232 0.400000 +273 1233 0.400000 +273 1279 0.400000 +273 1351 0.400000 +273 1360 0.400000 +273 1370 0.400000 +273 1468 0.400000 +273 1514 0.400000 +273 1527 0.400000 +273 1532 0.400000 +273 1546 0.400000 +273 1618 0.400000 +273 1752 0.400000 +273 1761 0.400000 +273 1812 0.400000 +273 1864 0.400000 +273 1943 0.400000 +273 2055 0.400000 +273 2128 0.400000 +273 2164 0.400000 +273 2238 0.400000 +273 2283 0.400000 +273 2289 0.400000 +273 2428 0.400000 +273 2475 0.400000 +273 2476 0.400000 +273 2480 0.400000 +273 2543 0.400000 +273 2686 0.400000 +273 2790 0.400000 +273 2834 0.400000 +273 2855 0.400000 +273 2992 0.400000 +273 3083 0.400000 +273 3183 0.400000 +274 24 0.400000 +274 43 0.400000 +274 133 0.400000 +274 161 0.400000 +274 235 0.400000 +274 275 0.400000 +274 443 0.400000 +274 488 0.400000 +274 530 0.400000 +274 543 0.400000 +274 551 0.400000 +274 589 0.400000 +274 635 0.400000 +274 657 0.400000 +274 750 0.400000 +274 796 0.400000 +274 863 0.400000 +274 931 0.400000 +274 958 0.400000 +274 966 0.400000 +274 970 0.400000 +274 985 0.400000 +274 1017 0.400000 +274 1088 0.400000 +274 1142 0.400000 +274 1321 0.400000 +274 1363 0.400000 +274 1383 0.400000 +274 1415 0.400000 +274 1460 0.400000 +274 1546 0.400000 +274 1553 0.400000 +274 1556 0.400000 +274 1575 0.400000 +274 1602 0.400000 +274 1698 0.400000 +274 1753 0.400000 +274 1856 0.400000 +274 1931 0.400000 +274 1961 0.400000 +274 1976 0.400000 +274 2101 0.400000 +274 2104 0.400000 +274 2144 0.400000 +274 2178 0.400000 +274 2194 0.400000 +274 2264 0.400000 +274 2393 0.400000 +274 2435 0.400000 +274 2478 0.400000 +274 2509 0.400000 +274 2532 0.400000 +274 2611 0.400000 +274 2635 0.400000 +274 2643 0.400000 +274 2670 0.400000 +274 2812 0.400000 +274 2869 0.400000 +274 2882 0.400000 +274 2901 0.400000 +274 3110 0.400000 +274 3132 0.400000 +275 103 0.400000 +275 116 0.400000 +275 130 0.400000 +275 139 0.400000 +275 223 0.400000 +275 252 0.400000 +275 291 0.400000 +275 395 0.400000 +275 400 0.400000 +275 402 0.400000 +275 411 0.400000 +275 418 0.400000 +275 464 0.400000 +275 480 0.400000 +275 490 0.400000 +275 500 0.400000 +275 529 0.400000 +275 561 0.400000 +275 674 0.400000 +275 801 0.400000 +275 978 0.400000 +275 1059 0.400000 +275 1106 0.400000 +275 1145 0.400000 +275 1187 0.400000 +275 1274 0.400000 +275 1477 0.400000 +275 1495 0.400000 +275 1506 0.400000 +275 1535 0.400000 +275 1659 0.400000 +275 1713 0.400000 +275 1958 0.400000 +275 1984 0.400000 +275 1986 0.400000 +275 2032 0.400000 +275 2057 0.400000 +275 2067 0.400000 +275 2130 0.400000 +275 2203 0.400000 +275 2313 0.400000 +275 2345 0.400000 +275 2487 0.400000 +275 2489 0.400000 +275 2517 0.400000 +275 2649 0.400000 +275 2695 0.400000 +275 2747 0.400000 +275 2767 0.400000 +275 2899 0.400000 +275 2905 0.400000 +275 2935 0.400000 +275 3018 0.400000 +275 3085 0.400000 +276 28 0.400000 +276 157 0.400000 +276 226 0.400000 +276 326 0.400000 +276 332 0.400000 +276 411 0.400000 +276 473 0.400000 +276 479 0.400000 +276 518 0.400000 +276 627 0.400000 +276 720 0.400000 +276 830 0.400000 +276 831 0.400000 +276 858 0.400000 +276 898 0.400000 +276 933 0.400000 +276 955 0.400000 +276 1020 0.400000 +276 1026 0.400000 +276 1134 0.400000 +276 1176 0.400000 +276 1195 0.400000 +276 1253 0.400000 +276 1299 0.400000 +276 1308 0.400000 +276 1332 0.400000 +276 1369 0.400000 +276 1394 0.400000 +276 1421 0.400000 +276 1561 0.400000 +276 1587 0.400000 +276 1596 0.400000 +276 1778 0.400000 +276 1799 0.400000 +276 1865 0.400000 +276 1929 0.400000 +276 1994 0.400000 +276 2023 0.400000 +276 2028 0.400000 +276 2072 0.400000 +276 2105 0.400000 +276 2156 0.400000 +276 2158 0.400000 +276 2298 0.400000 +276 2316 0.400000 +276 2350 0.400000 +276 2359 0.400000 +276 2389 0.400000 +276 2406 0.400000 +276 2531 0.400000 +276 2554 0.400000 +276 2579 0.400000 +276 2582 0.400000 +276 2622 0.400000 +276 2642 0.400000 +276 2728 0.400000 +276 2795 0.400000 +276 2816 0.400000 +276 2828 0.400000 +276 2861 0.400000 +276 2933 0.400000 +276 2995 0.400000 +276 3014 0.400000 +276 3030 0.400000 +276 3053 0.400000 +276 3064 0.400000 +276 3134 0.400000 +276 3187 0.400000 +277 1 0.400000 +277 42 0.400000 +277 104 0.400000 +277 120 0.400000 +277 151 0.400000 +277 192 0.400000 +277 285 0.400000 +277 301 0.400000 +277 405 0.400000 +277 498 0.400000 +277 503 0.400000 +277 504 0.400000 +277 548 0.400000 +277 565 0.400000 +277 593 0.400000 +277 691 0.400000 +277 697 0.400000 +277 782 0.400000 +277 799 0.400000 +277 801 0.400000 +277 806 0.400000 +277 896 0.400000 +277 913 0.400000 +277 945 0.400000 +277 974 0.400000 +277 1122 0.400000 +277 1231 0.400000 +277 1240 0.400000 +277 1310 0.400000 +277 1316 0.400000 +277 1317 0.400000 +277 1337 0.400000 +277 1402 0.400000 +277 1440 0.400000 +277 1555 0.400000 +277 1572 0.400000 +277 1606 0.400000 +277 1622 0.400000 +277 1640 0.400000 +277 1641 0.400000 +277 1664 0.400000 +277 1672 0.400000 +277 1681 0.400000 +277 1703 0.400000 +277 1757 0.400000 +277 1763 0.400000 +277 1782 0.400000 +277 1830 0.400000 +277 1881 0.400000 +277 1887 0.400000 +277 1992 0.400000 +277 1999 0.400000 +277 2011 0.400000 +277 2106 0.400000 +277 2169 0.400000 +277 2230 0.400000 +277 2295 0.400000 +277 2356 0.400000 +277 2371 0.400000 +277 2448 0.400000 +277 2517 0.400000 +277 2582 0.400000 +277 2787 0.400000 +277 2820 0.400000 +277 2825 0.400000 +277 2854 0.400000 +277 2856 0.400000 +277 2890 0.400000 +277 2933 0.400000 +277 2949 0.400000 +277 3054 0.400000 +277 3078 0.400000 +277 3104 0.400000 +277 3112 0.400000 +277 3124 0.400000 +277 3125 0.400000 +277 3175 0.400000 +278 12 0.400000 +278 19 0.400000 +278 41 0.400000 +278 67 0.400000 +278 74 0.400000 +278 189 0.400000 +278 239 0.400000 +278 241 0.400000 +278 269 0.400000 +278 280 0.400000 +278 300 0.400000 +278 347 0.400000 +278 384 0.400000 +278 387 0.400000 +278 433 0.400000 +278 467 0.400000 +278 517 0.400000 +278 549 0.400000 +278 565 0.400000 +278 694 0.400000 +278 711 0.400000 +278 761 0.400000 +278 795 0.400000 +278 809 0.400000 +278 1027 0.400000 +278 1080 0.400000 +278 1108 0.400000 +278 1120 0.400000 +278 1124 0.400000 +278 1231 0.400000 +278 1266 0.400000 +278 1308 0.400000 +278 1310 0.400000 +278 1332 0.400000 +278 1402 0.400000 +278 1406 0.400000 +278 1515 0.400000 +278 1517 0.400000 +278 1520 0.400000 +278 1533 0.400000 +278 1585 0.400000 +278 1614 0.400000 +278 1664 0.400000 +278 1685 0.400000 +278 1744 0.400000 +278 1749 0.400000 +278 1847 0.400000 +278 1868 0.400000 +278 1924 0.400000 +278 1938 0.400000 +278 1993 0.400000 +278 2008 0.400000 +278 2049 0.400000 +278 2340 0.400000 +278 2502 0.400000 +278 2546 0.400000 +278 2612 0.400000 +278 2750 0.400000 +278 2807 0.400000 +278 2895 0.400000 +278 2941 0.400000 +278 2965 0.400000 +278 2991 0.400000 +278 3063 0.400000 +278 3112 0.400000 +278 3150 0.400000 +279 10 0.400000 +279 113 0.400000 +279 118 0.400000 +279 169 0.400000 +279 190 0.400000 +279 205 0.400000 +279 286 0.400000 +279 306 0.400000 +279 481 0.400000 +279 482 0.400000 +279 521 0.400000 +279 549 0.400000 +279 553 0.400000 +279 740 0.400000 +279 841 0.400000 +279 847 0.400000 +279 858 0.400000 +279 965 0.400000 +279 998 0.400000 +279 1069 0.400000 +279 1083 0.400000 +279 1199 0.400000 +279 1200 0.400000 +279 1226 0.400000 +279 1241 0.400000 +279 1248 0.400000 +279 1256 0.400000 +279 1334 0.400000 +279 1437 0.400000 +279 1438 0.400000 +279 1461 0.400000 +279 1463 0.400000 +279 1495 0.400000 +279 1527 0.400000 +279 1536 0.400000 +279 1630 0.400000 +279 1633 0.400000 +279 1682 0.400000 +279 1710 0.400000 +279 1723 0.400000 +279 1725 0.400000 +279 1819 0.400000 +279 2018 0.400000 +279 2026 0.400000 +279 2048 0.400000 +279 2075 0.400000 +279 2157 0.400000 +279 2204 0.400000 +279 2254 0.400000 +279 2294 0.400000 +279 2368 0.400000 +279 2499 0.400000 +279 2528 0.400000 +279 2557 0.400000 +279 2619 0.400000 +279 2651 0.400000 +279 2655 0.400000 +279 2753 0.400000 +279 2783 0.400000 +279 2848 0.400000 +279 2862 0.400000 +279 2933 0.400000 +279 2947 0.400000 +279 3001 0.400000 +279 3072 0.400000 +279 3162 0.400000 +280 47 0.400000 +280 116 0.400000 +280 132 0.400000 +280 141 0.400000 +280 205 0.400000 +280 212 0.400000 +280 260 0.400000 +280 276 0.400000 +280 285 0.400000 +280 310 0.400000 +280 327 0.400000 +280 345 0.400000 +280 366 0.400000 +280 382 0.400000 +280 385 0.400000 +280 389 0.400000 +280 420 0.400000 +280 463 0.400000 +280 487 0.400000 +280 537 0.400000 +280 562 0.400000 +280 584 0.400000 +280 596 0.400000 +280 602 0.400000 +280 612 0.400000 +280 693 0.400000 +280 1043 0.400000 +280 1149 0.400000 +280 1354 0.400000 +280 1414 0.400000 +280 1428 0.400000 +280 1466 0.400000 +280 1505 0.400000 +280 1531 0.400000 +280 1536 0.400000 +280 1689 0.400000 +280 1804 0.400000 +280 1898 0.400000 +280 1902 0.400000 +280 1956 0.400000 +280 2032 0.400000 +280 2092 0.400000 +280 2114 0.400000 +280 2184 0.400000 +280 2198 0.400000 +280 2234 0.400000 +280 2312 0.400000 +280 2313 0.400000 +280 2360 0.400000 +280 2368 0.400000 +280 2392 0.400000 +280 2496 0.400000 +280 2554 0.400000 +280 2692 0.400000 +280 2737 0.400000 +280 2759 0.400000 +280 2762 0.400000 +280 2804 0.400000 +280 2813 0.400000 +280 2825 0.400000 +280 2946 0.400000 +280 3062 0.400000 +280 3085 0.400000 +281 28 0.400000 +281 104 0.400000 +281 286 0.400000 +281 354 0.400000 +281 362 0.400000 +281 363 0.400000 +281 419 0.400000 +281 558 0.400000 +281 562 0.400000 +281 610 0.400000 +281 619 0.400000 +281 644 0.400000 +281 648 0.400000 +281 703 0.400000 +281 712 0.400000 +281 736 0.400000 +281 751 0.400000 +281 755 0.400000 +281 782 0.400000 +281 855 0.400000 +281 873 0.400000 +281 1018 0.400000 +281 1133 0.400000 +281 1159 0.400000 +281 1175 0.400000 +281 1242 0.400000 +281 1264 0.400000 +281 1343 0.400000 +281 1442 0.400000 +281 1459 0.400000 +281 1483 0.400000 +281 1546 0.400000 +281 1771 0.400000 +281 1958 0.400000 +281 1967 0.400000 +281 1972 0.400000 +281 2052 0.400000 +281 2126 0.400000 +281 2137 0.400000 +281 2155 0.400000 +281 2303 0.400000 +281 2336 0.400000 +281 2348 0.400000 +281 2353 0.400000 +281 2430 0.400000 +281 2516 0.400000 +281 2557 0.400000 +281 2563 0.400000 +281 2628 0.400000 +281 2639 0.400000 +281 2689 0.400000 +281 2695 0.400000 +281 2784 0.400000 +281 2851 0.400000 +281 2950 0.400000 +281 2973 0.400000 +281 2978 0.400000 +281 2987 0.400000 +281 2998 0.400000 +281 3000 0.400000 +281 3055 0.400000 +281 3086 0.400000 +281 3157 0.400000 +281 3172 0.400000 +281 3177 0.400000 +282 5 0.400000 +282 106 0.400000 +282 115 0.400000 +282 193 0.400000 +282 215 0.400000 +282 238 0.400000 +282 326 0.400000 +282 411 0.400000 +282 423 0.400000 +282 446 0.400000 +282 516 0.400000 +282 537 0.400000 +282 554 0.400000 +282 565 0.400000 +282 653 0.400000 +282 759 0.400000 +282 785 0.400000 +282 845 0.400000 +282 928 0.400000 +282 1016 0.400000 +282 1052 0.400000 +282 1063 0.400000 +282 1144 0.400000 +282 1229 0.400000 +282 1254 0.400000 +282 1264 0.400000 +282 1289 0.400000 +282 1291 0.400000 +282 1321 0.400000 +282 1329 0.400000 +282 1375 0.400000 +282 1421 0.400000 +282 1456 0.400000 +282 1504 0.400000 +282 1517 0.400000 +282 1561 0.400000 +282 1699 0.400000 +282 1807 0.400000 +282 1841 0.400000 +282 1851 0.400000 +282 1864 0.400000 +282 1882 0.400000 +282 1924 0.400000 +282 1974 0.400000 +282 2000 0.400000 +282 2036 0.400000 +282 2099 0.400000 +282 2196 0.400000 +282 2221 0.400000 +282 2232 0.400000 +282 2304 0.400000 +282 2373 0.400000 +282 2448 0.400000 +282 2587 0.400000 +282 2590 0.400000 +282 2612 0.400000 +282 2621 0.400000 +282 2673 0.400000 +282 2683 0.400000 +282 2699 0.400000 +282 2716 0.400000 +282 2739 0.400000 +282 2745 0.400000 +282 2782 0.400000 +282 2873 0.400000 +282 3063 0.400000 +282 3076 0.400000 +282 3081 0.400000 +282 3198 0.400000 +283 46 0.400000 +283 103 0.400000 +283 111 0.400000 +283 120 0.400000 +283 166 0.400000 +283 234 0.400000 +283 361 0.400000 +283 367 0.400000 +283 411 0.400000 +283 511 0.400000 +283 531 0.400000 +283 591 0.400000 +283 627 0.400000 +283 631 0.400000 +283 660 0.400000 +283 711 0.400000 +283 840 0.400000 +283 885 0.400000 +283 983 0.400000 +283 1018 0.400000 +283 1041 0.400000 +283 1046 0.400000 +283 1078 0.400000 +283 1186 0.400000 +283 1188 0.400000 +283 1239 0.400000 +283 1397 0.400000 +283 1407 0.400000 +283 1413 0.400000 +283 1416 0.400000 +283 1440 0.400000 +283 1474 0.400000 +283 1680 0.400000 +283 1686 0.400000 +283 1696 0.400000 +283 1719 0.400000 +283 1799 0.400000 +283 1838 0.400000 +283 1955 0.400000 +283 2034 0.400000 +283 2064 0.400000 +283 2311 0.400000 +283 2330 0.400000 +283 2380 0.400000 +283 2422 0.400000 +283 2461 0.400000 +283 2462 0.400000 +283 2496 0.400000 +283 2522 0.400000 +283 2545 0.400000 +283 2675 0.400000 +283 2792 0.400000 +283 2847 0.400000 +283 2887 0.400000 +283 2907 0.400000 +283 2966 0.400000 +283 3107 0.400000 +283 3183 0.400000 +283 3185 0.400000 +284 6 0.400000 +284 315 0.400000 +284 575 0.400000 +284 578 0.400000 +284 586 0.400000 +284 710 0.400000 +284 730 0.400000 +284 748 0.400000 +284 767 0.400000 +284 789 0.400000 +284 857 0.400000 +284 867 0.400000 +284 887 0.400000 +284 938 0.400000 +284 976 0.400000 +284 1032 0.400000 +284 1093 0.400000 +284 1139 0.400000 +284 1164 0.400000 +284 1216 0.400000 +284 1313 0.400000 +284 1332 0.400000 +284 1338 0.400000 +284 1405 0.400000 +284 1426 0.400000 +284 1455 0.400000 +284 1456 0.400000 +284 1490 0.400000 +284 1514 0.400000 +284 1582 0.400000 +284 1587 0.400000 +284 1605 0.400000 +284 1791 0.400000 +284 1821 0.400000 +284 1840 0.400000 +284 1888 0.400000 +284 1965 0.400000 +284 2051 0.400000 +284 2121 0.400000 +284 2128 0.400000 +284 2185 0.400000 +284 2267 0.400000 +284 2285 0.400000 +284 2298 0.400000 +284 2338 0.400000 +284 2345 0.400000 +284 2434 0.400000 +284 2449 0.400000 +284 2492 0.400000 +284 2557 0.400000 +284 2598 0.400000 +284 2700 0.400000 +284 2714 0.400000 +284 2766 0.400000 +284 2777 0.400000 +284 2781 0.400000 +284 2788 0.400000 +284 2803 0.400000 +284 2845 0.400000 +284 2859 0.400000 +284 2953 0.400000 +284 2985 0.400000 +284 3171 0.400000 +285 134 0.400000 +285 209 0.400000 +285 246 0.400000 +285 459 0.400000 +285 506 0.400000 +285 525 0.400000 +285 543 0.400000 +285 661 0.400000 +285 701 0.400000 +285 768 0.400000 +285 780 0.400000 +285 825 0.400000 +285 870 0.400000 +285 874 0.400000 +285 894 0.400000 +285 895 0.400000 +285 922 0.400000 +285 999 0.400000 +285 1048 0.400000 +285 1082 0.400000 +285 1231 0.400000 +285 1255 0.400000 +285 1284 0.400000 +285 1286 0.400000 +285 1466 0.400000 +285 1510 0.400000 +285 1564 0.400000 +285 1571 0.400000 +285 1582 0.400000 +285 1807 0.400000 +285 1814 0.400000 +285 1885 0.400000 +285 1902 0.400000 +285 1971 0.400000 +285 1997 0.400000 +285 2010 0.400000 +285 2011 0.400000 +285 2088 0.400000 +285 2140 0.400000 +285 2162 0.400000 +285 2198 0.400000 +285 2226 0.400000 +285 2240 0.400000 +285 2248 0.400000 +285 2256 0.400000 +285 2304 0.400000 +285 2334 0.400000 +285 2337 0.400000 +285 2372 0.400000 +285 2452 0.400000 +285 2597 0.400000 +285 2639 0.400000 +285 2666 0.400000 +285 2855 0.400000 +285 2874 0.400000 +285 2893 0.400000 +285 2907 0.400000 +285 2919 0.400000 +285 2922 0.400000 +285 2977 0.400000 +285 3101 0.400000 +285 3112 0.400000 +285 3182 0.400000 +285 3199 0.400000 +286 26 0.400000 +286 48 0.400000 +286 127 0.400000 +286 139 0.400000 +286 146 0.400000 +286 267 0.400000 +286 271 0.400000 +286 275 0.400000 +286 297 0.400000 +286 389 0.400000 +286 402 0.400000 +286 611 0.400000 +286 614 0.400000 +286 659 0.400000 +286 686 0.400000 +286 748 0.400000 +286 931 0.400000 +286 1077 0.400000 +286 1162 0.400000 +286 1290 0.400000 +286 1294 0.400000 +286 1300 0.400000 +286 1318 0.400000 +286 1389 0.400000 +286 1431 0.400000 +286 1547 0.400000 +286 1566 0.400000 +286 1571 0.400000 +286 1695 0.400000 +286 1700 0.400000 +286 1738 0.400000 +286 1768 0.400000 +286 1794 0.400000 +286 1943 0.400000 +286 1964 0.400000 +286 1990 0.400000 +286 2055 0.400000 +286 2111 0.400000 +286 2113 0.400000 +286 2136 0.400000 +286 2137 0.400000 +286 2281 0.400000 +286 2285 0.400000 +286 2316 0.400000 +286 2375 0.400000 +286 2413 0.400000 +286 2420 0.400000 +286 2422 0.400000 +286 2426 0.400000 +286 2478 0.400000 +286 2591 0.400000 +286 2651 0.400000 +286 2711 0.400000 +286 2726 0.400000 +286 2801 0.400000 +286 2870 0.400000 +286 2938 0.400000 +286 3042 0.400000 +286 3045 0.400000 +286 3064 0.400000 +286 3086 0.400000 +286 3162 0.400000 +286 3190 0.400000 +287 62 0.400000 +287 134 0.400000 +287 182 0.400000 +287 217 0.400000 +287 247 0.400000 +287 380 0.400000 +287 569 0.400000 +287 575 0.400000 +287 588 0.400000 +287 625 0.400000 +287 1014 0.400000 +287 1222 0.400000 +287 1337 0.400000 +287 1379 0.400000 +287 1518 0.400000 +287 1575 0.400000 +287 1588 0.400000 +287 1924 0.400000 +287 1967 0.400000 +287 1992 0.400000 +287 2016 0.400000 +287 2022 0.400000 +287 2055 0.400000 +287 2146 0.400000 +287 2398 0.400000 +287 2550 0.400000 +287 2632 0.400000 +287 2675 0.400000 +287 2805 0.400000 +287 2858 0.400000 +287 2875 0.400000 +287 2892 0.400000 +287 2935 0.400000 +287 2995 0.400000 +287 3067 0.400000 +287 3161 0.400000 +288 134 0.400000 +288 200 0.400000 +288 251 0.400000 +288 295 0.400000 +288 303 0.400000 +288 313 0.400000 +288 348 0.400000 +288 504 0.400000 +288 519 0.400000 +288 527 0.400000 +288 537 0.400000 +288 597 0.400000 +288 682 0.400000 +288 709 0.400000 +288 747 0.400000 +288 822 0.400000 +288 833 0.400000 +288 877 0.400000 +288 886 0.400000 +288 930 0.400000 +288 960 0.400000 +288 989 0.400000 +288 1015 0.400000 +288 1097 0.400000 +288 1244 0.400000 +288 1360 0.400000 +288 1475 0.400000 +288 1490 0.400000 +288 1512 0.400000 +288 1623 0.400000 +288 1652 0.400000 +288 1763 0.400000 +288 1805 0.400000 +288 1854 0.400000 +288 1859 0.400000 +288 1863 0.400000 +288 1948 0.400000 +288 2032 0.400000 +288 2120 0.400000 +288 2248 0.400000 +288 2299 0.400000 +288 2320 0.400000 +288 2369 0.400000 +288 2384 0.400000 +288 2428 0.400000 +288 2568 0.400000 +288 2683 0.400000 +288 2704 0.400000 +288 2725 0.400000 +288 2729 0.400000 +288 2762 0.400000 +288 3013 0.400000 +288 3044 0.400000 +288 3087 0.400000 +288 3102 0.400000 +288 3126 0.400000 +288 3129 0.400000 +289 112 0.400000 +289 115 0.400000 +289 126 0.400000 +289 194 0.400000 +289 241 0.400000 +289 326 0.400000 +289 391 0.400000 +289 506 0.400000 +289 527 0.400000 +289 623 0.400000 +289 802 0.400000 +289 869 0.400000 +289 893 0.400000 +289 977 0.400000 +289 1147 0.400000 +289 1210 0.400000 +289 1507 0.400000 +289 1515 0.400000 +289 1710 0.400000 +289 1776 0.400000 +289 1798 0.400000 +289 1832 0.400000 +289 1958 0.400000 +289 2050 0.400000 +289 2055 0.400000 +289 2062 0.400000 +289 2170 0.400000 +289 2241 0.400000 +289 2365 0.400000 +289 2374 0.400000 +289 2513 0.400000 +289 2544 0.400000 +289 2573 0.400000 +289 2574 0.400000 +289 2579 0.400000 +289 2627 0.400000 +289 2637 0.400000 +289 2809 0.400000 +289 2864 0.400000 +289 2942 0.400000 +289 2955 0.400000 +289 3068 0.400000 +289 3175 0.400000 +290 1 0.400000 +290 8 0.400000 +290 142 0.400000 +290 157 0.400000 +290 164 0.400000 +290 325 0.400000 +290 374 0.400000 +290 416 0.400000 +290 447 0.400000 +290 467 0.400000 +290 474 0.400000 +290 754 0.400000 +290 778 0.400000 +290 785 0.400000 +290 860 0.400000 +290 969 0.400000 +290 1047 0.400000 +290 1077 0.400000 +290 1079 0.400000 +290 1087 0.400000 +290 1122 0.400000 +290 1148 0.400000 +290 1170 0.400000 +290 1193 0.400000 +290 1220 0.400000 +290 1282 0.400000 +290 1291 0.400000 +290 1316 0.400000 +290 1392 0.400000 +290 1410 0.400000 +290 1496 0.400000 +290 1516 0.400000 +290 1595 0.400000 +290 1700 0.400000 +290 1739 0.400000 +290 1772 0.400000 +290 1958 0.400000 +290 1960 0.400000 +290 1989 0.400000 +290 1995 0.400000 +290 2021 0.400000 +290 2032 0.400000 +290 2081 0.400000 +290 2184 0.400000 +290 2197 0.400000 +290 2208 0.400000 +290 2323 0.400000 +290 2369 0.400000 +290 2377 0.400000 +290 2455 0.400000 +290 2585 0.400000 +290 2587 0.400000 +290 2606 0.400000 +290 2608 0.400000 +290 2628 0.400000 +290 2727 0.400000 +290 2803 0.400000 +290 2876 0.400000 +290 2915 0.400000 +290 2921 0.400000 +290 2985 0.400000 +290 3042 0.400000 +290 3047 0.400000 +290 3048 0.400000 +290 3094 0.400000 +290 3120 0.400000 +290 3139 0.400000 +290 3166 0.400000 +290 3168 0.400000 +290 3200 0.400000 +291 28 0.400000 +291 31 0.400000 +291 119 0.400000 +291 209 0.400000 +291 416 0.400000 +291 446 0.400000 +291 480 0.400000 +291 561 0.400000 +291 587 0.400000 +291 752 0.400000 +291 811 0.400000 +291 812 0.400000 +291 818 0.400000 +291 819 0.400000 +291 843 0.400000 +291 867 0.400000 +291 880 0.400000 +291 895 0.400000 +291 930 0.400000 +291 936 0.400000 +291 986 0.400000 +291 989 0.400000 +291 993 0.400000 +291 1089 0.400000 +291 1123 0.400000 +291 1151 0.400000 +291 1152 0.400000 +291 1203 0.400000 +291 1219 0.400000 +291 1248 0.400000 +291 1279 0.400000 +291 1283 0.400000 +291 1322 0.400000 +291 1352 0.400000 +291 1369 0.400000 +291 1370 0.400000 +291 1400 0.400000 +291 1433 0.400000 +291 1470 0.400000 +291 1531 0.400000 +291 1545 0.400000 +291 1581 0.400000 +291 1583 0.400000 +291 1598 0.400000 +291 1617 0.400000 +291 1633 0.400000 +291 1742 0.400000 +291 1848 0.400000 +291 1869 0.400000 +291 1882 0.400000 +291 1944 0.400000 +291 2018 0.400000 +291 2020 0.400000 +291 2058 0.400000 +291 2136 0.400000 +291 2247 0.400000 +291 2286 0.400000 +291 2339 0.400000 +291 2370 0.400000 +291 2400 0.400000 +291 2424 0.400000 +291 2439 0.400000 +291 2455 0.400000 +291 2481 0.400000 +291 2514 0.400000 +291 2518 0.400000 +291 2527 0.400000 +291 2537 0.400000 +291 2578 0.400000 +291 2618 0.400000 +291 2630 0.400000 +291 2672 0.400000 +291 2752 0.400000 +291 2754 0.400000 +291 2774 0.400000 +291 2792 0.400000 +291 2836 0.400000 +291 2848 0.400000 +291 2870 0.400000 +291 2891 0.400000 +291 2971 0.400000 +291 3022 0.400000 +291 3132 0.400000 +291 3189 0.400000 +292 53 0.400000 +292 62 0.400000 +292 125 0.400000 +292 142 0.400000 +292 145 0.400000 +292 149 0.400000 +292 154 0.400000 +292 177 0.400000 +292 215 0.400000 +292 294 0.400000 +292 399 0.400000 +292 413 0.400000 +292 610 0.400000 +292 698 0.400000 +292 730 0.400000 +292 735 0.400000 +292 748 0.400000 +292 797 0.400000 +292 831 0.400000 +292 881 0.400000 +292 885 0.400000 +292 900 0.400000 +292 945 0.400000 +292 954 0.400000 +292 1078 0.400000 +292 1150 0.400000 +292 1161 0.400000 +292 1371 0.400000 +292 1627 0.400000 +292 1766 0.400000 +292 1768 0.400000 +292 1796 0.400000 +292 1802 0.400000 +292 1808 0.400000 +292 1926 0.400000 +292 1947 0.400000 +292 1961 0.400000 +292 2077 0.400000 +292 2156 0.400000 +292 2184 0.400000 +292 2226 0.400000 +292 2285 0.400000 +292 2348 0.400000 +292 2416 0.400000 +292 2454 0.400000 +292 2492 0.400000 +292 2610 0.400000 +292 2614 0.400000 +292 2643 0.400000 +292 2725 0.400000 +292 2787 0.400000 +292 2904 0.400000 +292 2958 0.400000 +292 2979 0.400000 +292 3050 0.400000 +292 3074 0.400000 +292 3141 0.400000 +292 3167 0.400000 +293 20 0.400000 +293 48 0.400000 +293 96 0.400000 +293 164 0.400000 +293 195 0.400000 +293 300 0.400000 +293 384 0.400000 +293 453 0.400000 +293 474 0.400000 +293 475 0.400000 +293 480 0.400000 +293 496 0.400000 +293 688 0.400000 +293 723 0.400000 +293 752 0.400000 +293 765 0.400000 +293 860 0.400000 +293 926 0.400000 +293 948 0.400000 +293 1019 0.400000 +293 1031 0.400000 +293 1051 0.400000 +293 1087 0.400000 +293 1143 0.400000 +293 1239 0.400000 +293 1280 0.400000 +293 1355 0.400000 +293 1445 0.400000 +293 1502 0.400000 +293 1511 0.400000 +293 1552 0.400000 +293 1591 0.400000 +293 1612 0.400000 +293 1662 0.400000 +293 1674 0.400000 +293 1696 0.400000 +293 1783 0.400000 +293 1835 0.400000 +293 1854 0.400000 +293 1869 0.400000 +293 1870 0.400000 +293 1943 0.400000 +293 1947 0.400000 +293 1962 0.400000 +293 1999 0.400000 +293 2098 0.400000 +293 2167 0.400000 +293 2245 0.400000 +293 2290 0.400000 +293 2333 0.400000 +293 2434 0.400000 +293 2438 0.400000 +293 2530 0.400000 +293 2627 0.400000 +293 2684 0.400000 +293 2699 0.400000 +293 2727 0.400000 +293 2773 0.400000 +293 2789 0.400000 +293 2805 0.400000 +293 2854 0.400000 +293 2867 0.400000 +293 2929 0.400000 +293 3087 0.400000 +294 10 0.400000 +294 71 0.400000 +294 89 0.400000 +294 117 0.400000 +294 273 0.400000 +294 279 0.400000 +294 317 0.400000 +294 466 0.400000 +294 469 0.400000 +294 478 0.400000 +294 622 0.400000 +294 627 0.400000 +294 657 0.400000 +294 676 0.400000 +294 709 0.400000 +294 768 0.400000 +294 786 0.400000 +294 922 0.400000 +294 980 0.400000 +294 1038 0.400000 +294 1065 0.400000 +294 1121 0.400000 +294 1140 0.400000 +294 1142 0.400000 +294 1147 0.400000 +294 1162 0.400000 +294 1355 0.400000 +294 1433 0.400000 +294 1455 0.400000 +294 1518 0.400000 +294 1564 0.400000 +294 1577 0.400000 +294 1582 0.400000 +294 1601 0.400000 +294 1617 0.400000 +294 1652 0.400000 +294 1692 0.400000 +294 1694 0.400000 +294 1697 0.400000 +294 1702 0.400000 +294 1708 0.400000 +294 1902 0.400000 +294 1964 0.400000 +294 2027 0.400000 +294 2081 0.400000 +294 2289 0.400000 +294 2300 0.400000 +294 2320 0.400000 +294 2373 0.400000 +294 2448 0.400000 +294 2452 0.400000 +294 2460 0.400000 +294 2485 0.400000 +294 2494 0.400000 +294 2497 0.400000 +294 2499 0.400000 +294 2517 0.400000 +294 2563 0.400000 +294 2571 0.400000 +294 2612 0.400000 +294 2637 0.400000 +294 2669 0.400000 +294 2699 0.400000 +294 2714 0.400000 +294 2743 0.400000 +294 2784 0.400000 +294 2870 0.400000 +294 2935 0.400000 +294 3034 0.400000 +294 3037 0.400000 +294 3041 0.400000 +294 3151 0.400000 +294 3152 0.400000 +294 3168 0.400000 +295 40 0.400000 +295 49 0.400000 +295 52 0.400000 +295 105 0.400000 +295 124 0.400000 +295 154 0.400000 +295 160 0.400000 +295 169 0.400000 +295 183 0.400000 +295 199 0.400000 +295 224 0.400000 +295 279 0.400000 +295 332 0.400000 +295 335 0.400000 +295 364 0.400000 +295 370 0.400000 +295 412 0.400000 +295 469 0.400000 +295 624 0.400000 +295 667 0.400000 +295 751 0.400000 +295 810 0.400000 +295 825 0.400000 +295 923 0.400000 +295 926 0.400000 +295 984 0.400000 +295 999 0.400000 +295 1032 0.400000 +295 1036 0.400000 +295 1126 0.400000 +295 1216 0.400000 +295 1233 0.400000 +295 1257 0.400000 +295 1308 0.400000 +295 1316 0.400000 +295 1420 0.400000 +295 1427 0.400000 +295 1451 0.400000 +295 1481 0.400000 +295 1645 0.400000 +295 1646 0.400000 +295 1653 0.400000 +295 1677 0.400000 +295 1709 0.400000 +295 1717 0.400000 +295 1762 0.400000 +295 1792 0.400000 +295 1827 0.400000 +295 1923 0.400000 +295 1974 0.400000 +295 2047 0.400000 +295 2056 0.400000 +295 2060 0.400000 +295 2105 0.400000 +295 2126 0.400000 +295 2153 0.400000 +295 2165 0.400000 +295 2168 0.400000 +295 2205 0.400000 +295 2276 0.400000 +295 2471 0.400000 +295 2643 0.400000 +295 2648 0.400000 +295 2661 0.400000 +295 2698 0.400000 +295 2747 0.400000 +295 2749 0.400000 +295 2767 0.400000 +295 2987 0.400000 +295 3020 0.400000 +295 3181 0.400000 +296 14 0.400000 +296 24 0.400000 +296 43 0.400000 +296 44 0.400000 +296 147 0.400000 +296 227 0.400000 +296 305 0.400000 +296 351 0.400000 +296 419 0.400000 +296 519 0.400000 +296 566 0.400000 +296 614 0.400000 +296 622 0.400000 +296 721 0.400000 +296 814 0.400000 +296 847 0.400000 +296 858 0.400000 +296 939 0.400000 +296 957 0.400000 +296 1062 0.400000 +296 1087 0.400000 +296 1138 0.400000 +296 1239 0.400000 +296 1265 0.400000 +296 1394 0.400000 +296 1429 0.400000 +296 1434 0.400000 +296 1549 0.400000 +296 1556 0.400000 +296 1630 0.400000 +296 1657 0.400000 +296 1817 0.400000 +296 1871 0.400000 +296 1905 0.400000 +296 1990 0.400000 +296 2000 0.400000 +296 2007 0.400000 +296 2102 0.400000 +296 2106 0.400000 +296 2147 0.400000 +296 2156 0.400000 +296 2191 0.400000 +296 2204 0.400000 +296 2327 0.400000 +296 2380 0.400000 +296 2383 0.400000 +296 2404 0.400000 +296 2478 0.400000 +296 2799 0.400000 +296 2870 0.400000 +296 2889 0.400000 +296 2970 0.400000 +296 2995 0.400000 +296 3003 0.400000 +296 3032 0.400000 +296 3073 0.400000 +296 3122 0.400000 +296 3141 0.400000 +296 3195 0.400000 +297 207 0.400000 +297 249 0.400000 +297 268 0.400000 +297 273 0.400000 +297 323 0.400000 +297 352 0.400000 +297 479 0.400000 +297 493 0.400000 +297 496 0.400000 +297 512 0.400000 +297 535 0.400000 +297 574 0.400000 +297 605 0.400000 +297 716 0.400000 +297 845 0.400000 +297 886 0.400000 +297 962 0.400000 +297 1022 0.400000 +297 1024 0.400000 +297 1198 0.400000 +297 1284 0.400000 +297 1285 0.400000 +297 1477 0.400000 +297 1604 0.400000 +297 1649 0.400000 +297 1662 0.400000 +297 1684 0.400000 +297 1708 0.400000 +297 1722 0.400000 +297 1780 0.400000 +297 1798 0.400000 +297 1868 0.400000 +297 1918 0.400000 +297 2018 0.400000 +297 2020 0.400000 +297 2125 0.400000 +297 2228 0.400000 +297 2234 0.400000 +297 2331 0.400000 +297 2356 0.400000 +297 2405 0.400000 +297 2593 0.400000 +297 2645 0.400000 +297 2710 0.400000 +297 2750 0.400000 +297 2774 0.400000 +297 2781 0.400000 +297 2811 0.400000 +297 2813 0.400000 +297 2841 0.400000 +297 2847 0.400000 +297 2873 0.400000 +297 2897 0.400000 +297 2938 0.400000 +297 2991 0.400000 +297 2997 0.400000 +297 3006 0.400000 +297 3107 0.400000 +297 3138 0.400000 +297 3188 0.400000 +298 34 0.400000 +298 71 0.400000 +298 228 0.400000 +298 261 0.400000 +298 288 0.400000 +298 383 0.400000 +298 463 0.400000 +298 517 0.400000 +298 558 0.400000 +298 565 0.400000 +298 917 0.400000 +298 937 0.400000 +298 944 0.400000 +298 1110 0.400000 +298 1111 0.400000 +298 1192 0.400000 +298 1285 0.400000 +298 1301 0.400000 +298 1316 0.400000 +298 1398 0.400000 +298 1436 0.400000 +298 1582 0.400000 +298 1616 0.400000 +298 1656 0.400000 +298 1750 0.400000 +298 1792 0.400000 +298 1826 0.400000 +298 1838 0.400000 +298 1904 0.400000 +298 1945 0.400000 +298 1952 0.400000 +298 1960 0.400000 +298 1962 0.400000 +298 2001 0.400000 +298 2180 0.400000 +298 2288 0.400000 +298 2377 0.400000 +298 2437 0.400000 +298 2507 0.400000 +298 2564 0.400000 +298 2679 0.400000 +298 2691 0.400000 +298 2721 0.400000 +298 2724 0.400000 +298 2728 0.400000 +298 2747 0.400000 +298 2806 0.400000 +298 2842 0.400000 +298 3063 0.400000 +298 3071 0.400000 +298 3110 0.400000 +298 3182 0.400000 +299 101 0.400000 +299 194 0.400000 +299 200 0.400000 +299 205 0.400000 +299 243 0.400000 +299 291 0.400000 +299 321 0.400000 +299 322 0.400000 +299 332 0.400000 +299 333 0.400000 +299 403 0.400000 +299 449 0.400000 +299 480 0.400000 +299 531 0.400000 +299 555 0.400000 +299 565 0.400000 +299 651 0.400000 +299 672 0.400000 +299 680 0.400000 +299 738 0.400000 +299 765 0.400000 +299 813 0.400000 +299 815 0.400000 +299 822 0.400000 +299 871 0.400000 +299 1014 0.400000 +299 1080 0.400000 +299 1138 0.400000 +299 1223 0.400000 +299 1233 0.400000 +299 1298 0.400000 +299 1362 0.400000 +299 1373 0.400000 +299 1571 0.400000 +299 1609 0.400000 +299 1688 0.400000 +299 1748 0.400000 +299 1749 0.400000 +299 1810 0.400000 +299 1858 0.400000 +299 1897 0.400000 +299 1976 0.400000 +299 1985 0.400000 +299 1990 0.400000 +299 2001 0.400000 +299 2113 0.400000 +299 2174 0.400000 +299 2347 0.400000 +299 2398 0.400000 +299 2434 0.400000 +299 2439 0.400000 +299 2443 0.400000 +299 2562 0.400000 +299 2579 0.400000 +299 2607 0.400000 +299 2657 0.400000 +299 2870 0.400000 +299 2878 0.400000 +299 2890 0.400000 +299 2947 0.400000 +299 2950 0.400000 +299 2977 0.400000 +299 3020 0.400000 +299 3067 0.400000 +299 3097 0.400000 +299 3112 0.400000 +299 3156 0.400000 +299 3193 0.400000 +300 4 0.400000 +300 40 0.400000 +300 44 0.400000 +300 50 0.400000 +300 58 0.400000 +300 79 0.400000 +300 83 0.400000 +300 153 0.400000 +300 155 0.400000 +300 280 0.400000 +300 300 0.400000 +300 438 0.400000 +300 486 0.400000 +300 493 0.400000 +300 507 0.400000 +300 514 0.400000 +300 554 0.400000 +300 587 0.400000 +300 606 0.400000 +300 646 0.400000 +300 667 0.400000 +300 706 0.400000 +300 779 0.400000 +300 890 0.400000 +300 899 0.400000 +300 929 0.400000 +300 1043 0.400000 +300 1073 0.400000 +300 1083 0.400000 +300 1204 0.400000 +300 1265 0.400000 +300 1274 0.400000 +300 1292 0.400000 +300 1296 0.400000 +300 1336 0.400000 +300 1374 0.400000 +300 1455 0.400000 +300 1528 0.400000 +300 1529 0.400000 +300 1610 0.400000 +300 1618 0.400000 +300 1635 0.400000 +300 1681 0.400000 +300 1710 0.400000 +300 1718 0.400000 +300 1754 0.400000 +300 1789 0.400000 +300 1826 0.400000 +300 1915 0.400000 +300 1986 0.400000 +300 1991 0.400000 +300 2001 0.400000 +300 2004 0.400000 +300 2022 0.400000 +300 2028 0.400000 +300 2170 0.400000 +300 2176 0.400000 +300 2240 0.400000 +300 2287 0.400000 +300 2336 0.400000 +300 2341 0.400000 +300 2391 0.400000 +300 2393 0.400000 +300 2405 0.400000 +300 2414 0.400000 +300 2487 0.400000 +300 2696 0.400000 +300 2797 0.400000 +300 2828 0.400000 +300 2838 0.400000 +300 2842 0.400000 +300 2986 0.400000 +300 3036 0.400000 +300 3053 0.400000 +300 3142 0.400000 +300 3173 0.400000 +301 76 0.400000 +301 145 0.400000 +301 177 0.400000 +301 192 0.400000 +301 255 0.400000 +301 259 0.400000 +301 269 0.400000 +301 291 0.400000 +301 322 0.400000 +301 329 0.400000 +301 387 0.400000 +301 532 0.400000 +301 542 0.400000 +301 594 0.400000 +301 657 0.400000 +301 665 0.400000 +301 784 0.400000 +301 821 0.400000 +301 901 0.400000 +301 911 0.400000 +301 912 0.400000 +301 981 0.400000 +301 996 0.400000 +301 1034 0.400000 +301 1039 0.400000 +301 1067 0.400000 +301 1124 0.400000 +301 1128 0.400000 +301 1246 0.400000 +301 1293 0.400000 +301 1299 0.400000 +301 1347 0.400000 +301 1515 0.400000 +301 1583 0.400000 +301 1615 0.400000 +301 1651 0.400000 +301 1706 0.400000 +301 1721 0.400000 +301 1765 0.400000 +301 1798 0.400000 +301 1822 0.400000 +301 1827 0.400000 +301 1910 0.400000 +301 1960 0.400000 +301 2009 0.400000 +301 2062 0.400000 +301 2153 0.400000 +301 2161 0.400000 +301 2276 0.400000 +301 2311 0.400000 +301 2387 0.400000 +301 2452 0.400000 +301 2535 0.400000 +301 2551 0.400000 +301 2592 0.400000 +301 2754 0.400000 +301 2814 0.400000 +301 2874 0.400000 +301 2884 0.400000 +301 2951 0.400000 +301 3001 0.400000 +301 3184 0.400000 +302 5 0.400000 +302 73 0.400000 +302 107 0.400000 +302 150 0.400000 +302 236 0.400000 +302 261 0.400000 +302 300 0.400000 +302 344 0.400000 +302 418 0.400000 +302 427 0.400000 +302 459 0.400000 +302 536 0.400000 +302 686 0.400000 +302 714 0.400000 +302 757 0.400000 +302 766 0.400000 +302 836 0.400000 +302 896 0.400000 +302 924 0.400000 +302 1014 0.400000 +302 1049 0.400000 +302 1059 0.400000 +302 1102 0.400000 +302 1150 0.400000 +302 1156 0.400000 +302 1224 0.400000 +302 1349 0.400000 +302 1403 0.400000 +302 1476 0.400000 +302 1487 0.400000 +302 1511 0.400000 +302 1520 0.400000 +302 1689 0.400000 +302 1736 0.400000 +302 1741 0.400000 +302 1769 0.400000 +302 1833 0.400000 +302 1847 0.400000 +302 1934 0.400000 +302 2145 0.400000 +302 2153 0.400000 +302 2196 0.400000 +302 2229 0.400000 +302 2260 0.400000 +302 2352 0.400000 +302 2486 0.400000 +302 2494 0.400000 +302 2555 0.400000 +302 2595 0.400000 +302 2642 0.400000 +302 2643 0.400000 +302 2650 0.400000 +302 2702 0.400000 +302 2881 0.400000 +302 2922 0.400000 +302 2947 0.400000 +302 3001 0.400000 +302 3033 0.400000 +302 3174 0.400000 +303 91 0.400000 +303 196 0.400000 +303 197 0.400000 +303 309 0.400000 +303 352 0.400000 +303 398 0.400000 +303 459 0.400000 +303 516 0.400000 +303 580 0.400000 +303 634 0.400000 +303 694 0.400000 +303 703 0.400000 +303 710 0.400000 +303 822 0.400000 +303 941 0.400000 +303 948 0.400000 +303 1026 0.400000 +303 1265 0.400000 +303 1355 0.400000 +303 1495 0.400000 +303 1565 0.400000 +303 1590 0.400000 +303 1722 0.400000 +303 1767 0.400000 +303 1845 0.400000 +303 1870 0.400000 +303 1884 0.400000 +303 1917 0.400000 +303 1975 0.400000 +303 2027 0.400000 +303 2030 0.400000 +303 2171 0.400000 +303 2198 0.400000 +303 2347 0.400000 +303 2377 0.400000 +303 2427 0.400000 +303 2472 0.400000 +303 2490 0.400000 +303 2537 0.400000 +303 2678 0.400000 +303 2687 0.400000 +303 2744 0.400000 +303 2779 0.400000 +303 2792 0.400000 +303 2798 0.400000 +303 2949 0.400000 +303 2964 0.400000 +303 3086 0.400000 +304 19 0.400000 +304 23 0.400000 +304 123 0.400000 +304 164 0.400000 +304 267 0.400000 +304 323 0.400000 +304 330 0.400000 +304 341 0.400000 +304 401 0.400000 +304 462 0.400000 +304 481 0.400000 +304 650 0.400000 +304 690 0.400000 +304 853 0.400000 +304 890 0.400000 +304 1025 0.400000 +304 1119 0.400000 +304 1167 0.400000 +304 1170 0.400000 +304 1221 0.400000 +304 1226 0.400000 +304 1237 0.400000 +304 1319 0.400000 +304 1431 0.400000 +304 1466 0.400000 +304 1485 0.400000 +304 1493 0.400000 +304 1504 0.400000 +304 1569 0.400000 +304 1630 0.400000 +304 1737 0.400000 +304 1796 0.400000 +304 1864 0.400000 +304 2006 0.400000 +304 2028 0.400000 +304 2072 0.400000 +304 2083 0.400000 +304 2085 0.400000 +304 2088 0.400000 +304 2121 0.400000 +304 2131 0.400000 +304 2136 0.400000 +304 2152 0.400000 +304 2270 0.400000 +304 2299 0.400000 +304 2336 0.400000 +304 2374 0.400000 +304 2425 0.400000 +304 2572 0.400000 +304 2592 0.400000 +304 2684 0.400000 +304 2708 0.400000 +304 2739 0.400000 +304 2778 0.400000 +304 2887 0.400000 +304 2918 0.400000 +304 2963 0.400000 +304 2972 0.400000 +304 3029 0.400000 +304 3037 0.400000 +304 3110 0.400000 +304 3184 0.400000 +305 2 0.400000 +305 77 0.400000 +305 108 0.400000 +305 109 0.400000 +305 141 0.400000 +305 215 0.400000 +305 230 0.400000 +305 262 0.400000 +305 265 0.400000 +305 287 0.400000 +305 294 0.400000 +305 382 0.400000 +305 503 0.400000 +305 514 0.400000 +305 579 0.400000 +305 770 0.400000 +305 797 0.400000 +305 811 0.400000 +305 863 0.400000 +305 885 0.400000 +305 942 0.400000 +305 993 0.400000 +305 1001 0.400000 +305 1112 0.400000 +305 1147 0.400000 +305 1171 0.400000 +305 1189 0.400000 +305 1206 0.400000 +305 1269 0.400000 +305 1384 0.400000 +305 1416 0.400000 +305 1539 0.400000 +305 1599 0.400000 +305 1608 0.400000 +305 1764 0.400000 +305 1773 0.400000 +305 1823 0.400000 +305 1870 0.400000 +305 1873 0.400000 +305 1926 0.400000 +305 1930 0.400000 +305 2040 0.400000 +305 2177 0.400000 +305 2202 0.400000 +305 2256 0.400000 +305 2258 0.400000 +305 2369 0.400000 +305 2415 0.400000 +305 2640 0.400000 +305 2644 0.400000 +305 2777 0.400000 +305 2891 0.400000 +305 2954 0.400000 +305 2986 0.400000 +305 2992 0.400000 +305 3139 0.400000 +306 7 0.400000 +306 16 0.400000 +306 41 0.400000 +306 58 0.400000 +306 98 0.400000 +306 105 0.400000 +306 115 0.400000 +306 242 0.400000 +306 252 0.400000 +306 364 0.400000 +306 381 0.400000 +306 411 0.400000 +306 730 0.400000 +306 877 0.400000 +306 943 0.400000 +306 972 0.400000 +306 1010 0.400000 +306 1054 0.400000 +306 1079 0.400000 +306 1087 0.400000 +306 1151 0.400000 +306 1233 0.400000 +306 1253 0.400000 +306 1297 0.400000 +306 1353 0.400000 +306 1357 0.400000 +306 1394 0.400000 +306 1405 0.400000 +306 1493 0.400000 +306 1501 0.400000 +306 1518 0.400000 +306 1559 0.400000 +306 1586 0.400000 +306 1723 0.400000 +306 1885 0.400000 +306 1914 0.400000 +306 1981 0.400000 +306 1984 0.400000 +306 1987 0.400000 +306 2056 0.400000 +306 2109 0.400000 +306 2175 0.400000 +306 2208 0.400000 +306 2247 0.400000 +306 2267 0.400000 +306 2301 0.400000 +306 2310 0.400000 +306 2409 0.400000 +306 2470 0.400000 +306 2492 0.400000 +306 2540 0.400000 +306 2591 0.400000 +306 2607 0.400000 +306 2672 0.400000 +306 2730 0.400000 +306 2758 0.400000 +306 2762 0.400000 +306 2780 0.400000 +306 2829 0.400000 +306 2857 0.400000 +306 2882 0.400000 +306 2906 0.400000 +306 3029 0.400000 +306 3059 0.400000 +306 3077 0.400000 +307 45 0.400000 +307 52 0.400000 +307 128 0.400000 +307 197 0.400000 +307 236 0.400000 +307 256 0.400000 +307 263 0.400000 +307 348 0.400000 +307 512 0.400000 +307 547 0.400000 +307 582 0.400000 +307 583 0.400000 +307 671 0.400000 +307 676 0.400000 +307 685 0.400000 +307 723 0.400000 +307 727 0.400000 +307 814 0.400000 +307 845 0.400000 +307 930 0.400000 +307 933 0.400000 +307 938 0.400000 +307 954 0.400000 +307 971 0.400000 +307 999 0.400000 +307 1062 0.400000 +307 1072 0.400000 +307 1101 0.400000 +307 1213 0.400000 +307 1278 0.400000 +307 1366 0.400000 +307 1418 0.400000 +307 1446 0.400000 +307 1461 0.400000 +307 1517 0.400000 +307 1540 0.400000 +307 1579 0.400000 +307 1605 0.400000 +307 1610 0.400000 +307 1747 0.400000 +307 1779 0.400000 +307 1821 0.400000 +307 1887 0.400000 +307 1910 0.400000 +307 1935 0.400000 +307 1997 0.400000 +307 2021 0.400000 +307 2037 0.400000 +307 2071 0.400000 +307 2122 0.400000 +307 2151 0.400000 +307 2173 0.400000 +307 2175 0.400000 +307 2202 0.400000 +307 2219 0.400000 +307 2234 0.400000 +307 2301 0.400000 +307 2327 0.400000 +307 2445 0.400000 +307 2481 0.400000 +307 2646 0.400000 +307 2682 0.400000 +307 2732 0.400000 +307 2862 0.400000 +307 2881 0.400000 +307 2906 0.400000 +307 2974 0.400000 +307 3001 0.400000 +307 3025 0.400000 +307 3064 0.400000 +307 3115 0.400000 +307 3167 0.400000 +307 3170 0.400000 +307 3193 0.400000 +307 3194 0.400000 +308 120 0.400000 +308 124 0.400000 +308 174 0.400000 +308 194 0.400000 +308 237 0.400000 +308 263 0.400000 +308 279 0.400000 +308 342 0.400000 +308 356 0.400000 +308 408 0.400000 +308 575 0.400000 +308 621 0.400000 +308 628 0.400000 +308 637 0.400000 +308 640 0.400000 +308 826 0.400000 +308 990 0.400000 +308 1021 0.400000 +308 1045 0.400000 +308 1048 0.400000 +308 1186 0.400000 +308 1236 0.400000 +308 1247 0.400000 +308 1311 0.400000 +308 1393 0.400000 +308 1428 0.400000 +308 1486 0.400000 +308 1570 0.400000 +308 1770 0.400000 +308 1799 0.400000 +308 1807 0.400000 +308 1818 0.400000 +308 1866 0.400000 +308 1887 0.400000 +308 1997 0.400000 +308 2053 0.400000 +308 2064 0.400000 +308 2082 0.400000 +308 2198 0.400000 +308 2235 0.400000 +308 2370 0.400000 +308 2574 0.400000 +308 2611 0.400000 +308 2690 0.400000 +308 2753 0.400000 +308 2771 0.400000 +308 2810 0.400000 +308 2846 0.400000 +308 3109 0.400000 +308 3145 0.400000 +308 3177 0.400000 +309 83 0.400000 +309 97 0.400000 +309 162 0.400000 +309 170 0.400000 +309 286 0.400000 +309 339 0.400000 +309 414 0.400000 +309 561 0.400000 +309 582 0.400000 +309 596 0.400000 +309 642 0.400000 +309 682 0.400000 +309 739 0.400000 +309 794 0.400000 +309 797 0.400000 +309 817 0.400000 +309 907 0.400000 +309 914 0.400000 +309 945 0.400000 +309 1034 0.400000 +309 1038 0.400000 +309 1054 0.400000 +309 1071 0.400000 +309 1093 0.400000 +309 1114 0.400000 +309 1243 0.400000 +309 1391 0.400000 +309 1568 0.400000 +309 1589 0.400000 +309 1637 0.400000 +309 1662 0.400000 +309 1680 0.400000 +309 1690 0.400000 +309 1736 0.400000 +309 1761 0.400000 +309 1803 0.400000 +309 1840 0.400000 +309 1875 0.400000 +309 1903 0.400000 +309 1923 0.400000 +309 1941 0.400000 +309 1947 0.400000 +309 1960 0.400000 +309 2064 0.400000 +309 2099 0.400000 +309 2154 0.400000 +309 2161 0.400000 +309 2175 0.400000 +309 2184 0.400000 +309 2220 0.400000 +309 2241 0.400000 +309 2320 0.400000 +309 2371 0.400000 +309 2391 0.400000 +309 2483 0.400000 +309 2488 0.400000 +309 2584 0.400000 +309 2594 0.400000 +309 2644 0.400000 +309 2665 0.400000 +309 2809 0.400000 +309 2847 0.400000 +309 2898 0.400000 +309 2935 0.400000 +309 3079 0.400000 +309 3084 0.400000 +309 3085 0.400000 +309 3097 0.400000 +309 3121 0.400000 +309 3123 0.400000 +310 114 0.400000 +310 235 0.400000 +310 263 0.400000 +310 414 0.400000 +310 453 0.400000 +310 493 0.400000 +310 517 0.400000 +310 553 0.400000 +310 656 0.400000 +310 768 0.400000 +310 771 0.400000 +310 792 0.400000 +310 847 0.400000 +310 870 0.400000 +310 961 0.400000 +310 975 0.400000 +310 1000 0.400000 +310 1136 0.400000 +310 1159 0.400000 +310 1253 0.400000 +310 1354 0.400000 +310 1543 0.400000 +310 1555 0.400000 +310 1636 0.400000 +310 1686 0.400000 +310 1699 0.400000 +310 1743 0.400000 +310 1796 0.400000 +310 1866 0.400000 +310 1882 0.400000 +310 1968 0.400000 +310 2133 0.400000 +310 2141 0.400000 +310 2147 0.400000 +310 2186 0.400000 +310 2420 0.400000 +310 2432 0.400000 +310 2457 0.400000 +310 2479 0.400000 +310 2482 0.400000 +310 2529 0.400000 +310 2538 0.400000 +310 2540 0.400000 +310 2669 0.400000 +310 2692 0.400000 +310 2734 0.400000 +310 2792 0.400000 +310 2924 0.400000 +310 2982 0.400000 +310 3006 0.400000 +310 3038 0.400000 +310 3082 0.400000 +310 3153 0.400000 +311 10 0.400000 +311 18 0.400000 +311 173 0.400000 +311 214 0.400000 +311 231 0.400000 +311 241 0.400000 +311 244 0.400000 +311 280 0.400000 +311 312 0.400000 +311 322 0.400000 +311 348 0.400000 +311 352 0.400000 +311 358 0.400000 +311 485 0.400000 +311 506 0.400000 +311 532 0.400000 +311 539 0.400000 +311 546 0.400000 +311 547 0.400000 +311 708 0.400000 +311 761 0.400000 +311 857 0.400000 +311 930 0.400000 +311 933 0.400000 +311 1077 0.400000 +311 1370 0.400000 +311 1390 0.400000 +311 1469 0.400000 +311 1618 0.400000 +311 1646 0.400000 +311 1651 0.400000 +311 1667 0.400000 +311 1683 0.400000 +311 1782 0.400000 +311 1823 0.400000 +311 1907 0.400000 +311 1910 0.400000 +311 1962 0.400000 +311 2002 0.400000 +311 2005 0.400000 +311 2006 0.400000 +311 2090 0.400000 +311 2114 0.400000 +311 2189 0.400000 +311 2190 0.400000 +311 2336 0.400000 +311 2345 0.400000 +311 2356 0.400000 +311 2387 0.400000 +311 2444 0.400000 +311 2465 0.400000 +311 2539 0.400000 +311 2656 0.400000 +311 2673 0.400000 +311 2687 0.400000 +311 2691 0.400000 +311 2696 0.400000 +311 2719 0.400000 +311 2749 0.400000 +311 2850 0.400000 +311 2933 0.400000 +311 2939 0.400000 +311 3005 0.400000 +311 3136 0.400000 +312 79 0.400000 +312 149 0.400000 +312 162 0.400000 +312 337 0.400000 +312 356 0.400000 +312 357 0.400000 +312 361 0.400000 +312 500 0.400000 +312 687 0.400000 +312 697 0.400000 +312 822 0.400000 +312 983 0.400000 +312 1038 0.400000 +312 1080 0.400000 +312 1084 0.400000 +312 1087 0.400000 +312 1122 0.400000 +312 1170 0.400000 +312 1224 0.400000 +312 1366 0.400000 +312 1370 0.400000 +312 1373 0.400000 +312 1418 0.400000 +312 1667 0.400000 +312 1800 0.400000 +312 1935 0.400000 +312 2042 0.400000 +312 2061 0.400000 +312 2062 0.400000 +312 2116 0.400000 +312 2226 0.400000 +312 2249 0.400000 +312 2270 0.400000 +312 2296 0.400000 +312 2308 0.400000 +312 2310 0.400000 +312 2332 0.400000 +312 2367 0.400000 +312 2378 0.400000 +312 2386 0.400000 +312 2396 0.400000 +312 2490 0.400000 +312 2515 0.400000 +312 2534 0.400000 +312 2579 0.400000 +312 2595 0.400000 +312 2702 0.400000 +312 2801 0.400000 +312 2804 0.400000 +312 2852 0.400000 +312 2886 0.400000 +312 2893 0.400000 +312 2975 0.400000 +312 3042 0.400000 +312 3131 0.400000 +312 3171 0.400000 +312 3199 0.400000 +313 312 0.400000 +313 351 0.400000 +313 354 0.400000 +313 363 0.400000 +313 410 0.400000 +313 414 0.400000 +313 420 0.400000 +313 422 0.400000 +313 441 0.400000 +313 457 0.400000 +313 487 0.400000 +313 517 0.400000 +313 567 0.400000 +313 605 0.400000 +313 669 0.400000 +313 684 0.400000 +313 799 0.400000 +313 824 0.400000 +313 903 0.400000 +313 922 0.400000 +313 924 0.400000 +313 939 0.400000 +313 967 0.400000 +313 969 0.400000 +313 970 0.400000 +313 1000 0.400000 +313 1006 0.400000 +313 1029 0.400000 +313 1055 0.400000 +313 1056 0.400000 +313 1075 0.400000 +313 1099 0.400000 +313 1176 0.400000 +313 1265 0.400000 +313 1276 0.400000 +313 1331 0.400000 +313 1341 0.400000 +313 1439 0.400000 +313 1512 0.400000 +313 1545 0.400000 +313 1552 0.400000 +313 1679 0.400000 +313 1744 0.400000 +313 1810 0.400000 +313 1812 0.400000 +313 1848 0.400000 +313 1857 0.400000 +313 2134 0.400000 +313 2195 0.400000 +313 2211 0.400000 +313 2217 0.400000 +313 2292 0.400000 +313 2299 0.400000 +313 2332 0.400000 +313 2359 0.400000 +313 2383 0.400000 +313 2407 0.400000 +313 2446 0.400000 +313 2447 0.400000 +313 2566 0.400000 +313 2572 0.400000 +313 2590 0.400000 +313 2607 0.400000 +313 2610 0.400000 +313 2648 0.400000 +313 2650 0.400000 +313 2671 0.400000 +313 2752 0.400000 +313 2768 0.400000 +313 2820 0.400000 +313 2868 0.400000 +313 2893 0.400000 +313 2911 0.400000 +313 2969 0.400000 +313 3002 0.400000 +313 3023 0.400000 +313 3032 0.400000 +313 3064 0.400000 +313 3083 0.400000 +313 3092 0.400000 +313 3157 0.400000 +313 3190 0.400000 +314 11 0.400000 +314 47 0.400000 +314 62 0.400000 +314 72 0.400000 +314 77 0.400000 +314 299 0.400000 +314 305 0.400000 +314 317 0.400000 +314 320 0.400000 +314 362 0.400000 +314 383 0.400000 +314 439 0.400000 +314 470 0.400000 +314 478 0.400000 +314 513 0.400000 +314 592 0.400000 +314 613 0.400000 +314 679 0.400000 +314 686 0.400000 +314 754 0.400000 +314 899 0.400000 +314 901 0.400000 +314 1067 0.400000 +314 1101 0.400000 +314 1124 0.400000 +314 1162 0.400000 +314 1164 0.400000 +314 1228 0.400000 +314 1341 0.400000 +314 1344 0.400000 +314 1432 0.400000 +314 1445 0.400000 +314 1453 0.400000 +314 1459 0.400000 +314 1479 0.400000 +314 1480 0.400000 +314 1500 0.400000 +314 1556 0.400000 +314 1614 0.400000 +314 1661 0.400000 +314 1664 0.400000 +314 1907 0.400000 +314 1989 0.400000 +314 2021 0.400000 +314 2024 0.400000 +314 2143 0.400000 +314 2146 0.400000 +314 2184 0.400000 +314 2250 0.400000 +314 2260 0.400000 +314 2262 0.400000 +314 2281 0.400000 +314 2294 0.400000 +314 2300 0.400000 +314 2416 0.400000 +314 2427 0.400000 +314 2524 0.400000 +314 2598 0.400000 +314 2617 0.400000 +314 2638 0.400000 +314 2704 0.400000 +314 2735 0.400000 +314 2743 0.400000 +314 2744 0.400000 +314 2745 0.400000 +314 2813 0.400000 +314 2900 0.400000 +314 2915 0.400000 +314 2962 0.400000 +314 2966 0.400000 +314 3012 0.400000 +314 3069 0.400000 +314 3145 0.400000 +314 3151 0.400000 +314 3196 0.400000 +315 7 0.400000 +315 18 0.400000 +315 122 0.400000 +315 126 0.400000 +315 168 0.400000 +315 308 0.400000 +315 312 0.400000 +315 461 0.400000 +315 523 0.400000 +315 599 0.400000 +315 631 0.400000 +315 666 0.400000 +315 669 0.400000 +315 728 0.400000 +315 747 0.400000 +315 1069 0.400000 +315 1240 0.400000 +315 1292 0.400000 +315 1311 0.400000 +315 1350 0.400000 +315 1385 0.400000 +315 1388 0.400000 +315 1402 0.400000 +315 1433 0.400000 +315 1475 0.400000 +315 1483 0.400000 +315 1502 0.400000 +315 1521 0.400000 +315 1574 0.400000 +315 1716 0.400000 +315 1849 0.400000 +315 1903 0.400000 +315 1920 0.400000 +315 2007 0.400000 +315 2041 0.400000 +315 2050 0.400000 +315 2069 0.400000 +315 2242 0.400000 +315 2250 0.400000 +315 2253 0.400000 +315 2360 0.400000 +315 2402 0.400000 +315 2404 0.400000 +315 2506 0.400000 +315 2523 0.400000 +315 2553 0.400000 +315 2630 0.400000 +315 2635 0.400000 +315 2656 0.400000 +315 2682 0.400000 +315 3005 0.400000 +315 3013 0.400000 +315 3031 0.400000 +315 3032 0.400000 +315 3043 0.400000 +315 3109 0.400000 +315 3161 0.400000 +315 3164 0.400000 +316 22 0.400000 +316 107 0.400000 +316 110 0.400000 +316 139 0.400000 +316 165 0.400000 +316 245 0.400000 +316 286 0.400000 +316 412 0.400000 +316 479 0.400000 +316 643 0.400000 +316 701 0.400000 +316 717 0.400000 +316 718 0.400000 +316 760 0.400000 +316 796 0.400000 +316 846 0.400000 +316 865 0.400000 +316 870 0.400000 +316 1022 0.400000 +316 1046 0.400000 +316 1065 0.400000 +316 1269 0.400000 +316 1309 0.400000 +316 1457 0.400000 +316 1482 0.400000 +316 1606 0.400000 +316 1659 0.400000 +316 1675 0.400000 +316 1697 0.400000 +316 1739 0.400000 +316 1757 0.400000 +316 1783 0.400000 +316 1847 0.400000 +316 1894 0.400000 +316 1908 0.400000 +316 1909 0.400000 +316 1967 0.400000 +316 2058 0.400000 +316 2131 0.400000 +316 2138 0.400000 +316 2200 0.400000 +316 2222 0.400000 +316 2341 0.400000 +316 2393 0.400000 +316 2459 0.400000 +316 2596 0.400000 +316 2678 0.400000 +316 2684 0.400000 +316 2696 0.400000 +316 2755 0.400000 +316 2881 0.400000 +316 2882 0.400000 +316 2920 0.400000 +316 2957 0.400000 +316 2959 0.400000 +316 3022 0.400000 +316 3031 0.400000 +316 3136 0.400000 +316 3142 0.400000 +316 3157 0.400000 +316 3163 0.400000 +317 18 0.400000 +317 109 0.400000 +317 262 0.400000 +317 276 0.400000 +317 285 0.400000 +317 289 0.400000 +317 304 0.400000 +317 348 0.400000 +317 379 0.400000 +317 395 0.400000 +317 434 0.400000 +317 435 0.400000 +317 455 0.400000 +317 501 0.400000 +317 523 0.400000 +317 530 0.400000 +317 650 0.400000 +317 676 0.400000 +317 685 0.400000 +317 712 0.400000 +317 716 0.400000 +317 756 0.400000 +317 790 0.400000 +317 797 0.400000 +317 831 0.400000 +317 845 0.400000 +317 867 0.400000 +317 888 0.400000 +317 900 0.400000 +317 903 0.400000 +317 961 0.400000 +317 983 0.400000 +317 987 0.400000 +317 1048 0.400000 +317 1102 0.400000 +317 1122 0.400000 +317 1235 0.400000 +317 1285 0.400000 +317 1338 0.400000 +317 1354 0.400000 +317 1391 0.400000 +317 1428 0.400000 +317 1483 0.400000 +317 1495 0.400000 +317 1519 0.400000 +317 1720 0.400000 +317 1792 0.400000 +317 1844 0.400000 +317 1858 0.400000 +317 1862 0.400000 +317 1869 0.400000 +317 1879 0.400000 +317 1894 0.400000 +317 1902 0.400000 +317 1943 0.400000 +317 1947 0.400000 +317 1951 0.400000 +317 1962 0.400000 +317 2034 0.400000 +317 2050 0.400000 +317 2060 0.400000 +317 2139 0.400000 +317 2164 0.400000 +317 2181 0.400000 +317 2224 0.400000 +317 2239 0.400000 +317 2283 0.400000 +317 2305 0.400000 +317 2310 0.400000 +317 2327 0.400000 +317 2341 0.400000 +317 2363 0.400000 +317 2366 0.400000 +317 2372 0.400000 +317 2400 0.400000 +317 2401 0.400000 +317 2420 0.400000 +317 2445 0.400000 +317 2453 0.400000 +317 2458 0.400000 +317 2585 0.400000 +317 2601 0.400000 +317 2768 0.400000 +317 2920 0.400000 +317 2972 0.400000 +317 3045 0.400000 +317 3091 0.400000 +318 59 0.400000 +318 69 0.400000 +318 120 0.400000 +318 149 0.400000 +318 299 0.400000 +318 345 0.400000 +318 369 0.400000 +318 397 0.400000 +318 475 0.400000 +318 505 0.400000 +318 512 0.400000 +318 514 0.400000 +318 554 0.400000 +318 564 0.400000 +318 608 0.400000 +318 619 0.400000 +318 628 0.400000 +318 696 0.400000 +318 719 0.400000 +318 973 0.400000 +318 996 0.400000 +318 1084 0.400000 +318 1320 0.400000 +318 1422 0.400000 +318 1441 0.400000 +318 1507 0.400000 +318 1550 0.400000 +318 1571 0.400000 +318 1580 0.400000 +318 1601 0.400000 +318 1657 0.400000 +318 1757 0.400000 +318 1767 0.400000 +318 1792 0.400000 +318 1814 0.400000 +318 1949 0.400000 +318 2016 0.400000 +318 2022 0.400000 +318 2092 0.400000 +318 2095 0.400000 +318 2116 0.400000 +318 2122 0.400000 +318 2145 0.400000 +318 2147 0.400000 +318 2160 0.400000 +318 2235 0.400000 +318 2274 0.400000 +318 2295 0.400000 +318 2378 0.400000 +318 2400 0.400000 +318 2553 0.400000 +318 2578 0.400000 +318 2602 0.400000 +318 2916 0.400000 +318 3002 0.400000 +319 13 0.400000 +319 32 0.400000 +319 82 0.400000 +319 113 0.400000 +319 154 0.400000 +319 196 0.400000 +319 246 0.400000 +319 272 0.400000 +319 291 0.400000 +319 309 0.400000 +319 350 0.400000 +319 370 0.400000 +319 373 0.400000 +319 505 0.400000 +319 507 0.400000 +319 556 0.400000 +319 586 0.400000 +319 671 0.400000 +319 719 0.400000 +319 860 0.400000 +319 881 0.400000 +319 882 0.400000 +319 951 0.400000 +319 974 0.400000 +319 976 0.400000 +319 1068 0.400000 +319 1192 0.400000 +319 1297 0.400000 +319 1410 0.400000 +319 1432 0.400000 +319 1434 0.400000 +319 1506 0.400000 +319 1516 0.400000 +319 1547 0.400000 +319 1619 0.400000 +319 1649 0.400000 +319 1658 0.400000 +319 1680 0.400000 +319 1685 0.400000 +319 1760 0.400000 +319 1761 0.400000 +319 1766 0.400000 +319 1796 0.400000 +319 1866 0.400000 +319 1928 0.400000 +319 1932 0.400000 +319 1945 0.400000 +319 2060 0.400000 +319 2063 0.400000 +319 2069 0.400000 +319 2236 0.400000 +319 2237 0.400000 +319 2238 0.400000 +319 2241 0.400000 +319 2266 0.400000 +319 2369 0.400000 +319 2408 0.400000 +319 2523 0.400000 +319 2605 0.400000 +319 2631 0.400000 +319 2705 0.400000 +319 2733 0.400000 +319 2785 0.400000 +319 2849 0.400000 +319 2886 0.400000 +319 2930 0.400000 +319 3152 0.400000 +320 6 0.400000 +320 8 0.400000 +320 77 0.400000 +320 112 0.400000 +320 181 0.400000 +320 325 0.400000 +320 400 0.400000 +320 441 0.400000 +320 476 0.400000 +320 499 0.400000 +320 506 0.400000 +320 742 0.400000 +320 853 0.400000 +320 890 0.400000 +320 951 0.400000 +320 1047 0.400000 +320 1111 0.400000 +320 1184 0.400000 +320 1191 0.400000 +320 1301 0.400000 +320 1311 0.400000 +320 1348 0.400000 +320 1465 0.400000 +320 1586 0.400000 +320 1589 0.400000 +320 1611 0.400000 +320 1615 0.400000 +320 1653 0.400000 +320 1675 0.400000 +320 1679 0.400000 +320 1706 0.400000 +320 1783 0.400000 +320 1790 0.400000 +320 1798 0.400000 +320 2038 0.400000 +320 2138 0.400000 +320 2161 0.400000 +320 2238 0.400000 +320 2320 0.400000 +320 2396 0.400000 +320 2405 0.400000 +320 2477 0.400000 +320 2501 0.400000 +320 2546 0.400000 +320 2550 0.400000 +320 2590 0.400000 +320 2619 0.400000 +320 2653 0.400000 +320 2665 0.400000 +320 2667 0.400000 +320 2688 0.400000 +320 2752 0.400000 +320 2793 0.400000 +320 2890 0.400000 +320 2973 0.400000 +321 25 0.400000 +321 38 0.400000 +321 42 0.400000 +321 43 0.400000 +321 87 0.400000 +321 105 0.400000 +321 116 0.400000 +321 129 0.400000 +321 215 0.400000 +321 283 0.400000 +321 378 0.400000 +321 381 0.400000 +321 394 0.400000 +321 407 0.400000 +321 418 0.400000 +321 437 0.400000 +321 485 0.400000 +321 489 0.400000 +321 543 0.400000 +321 545 0.400000 +321 757 0.400000 +321 794 0.400000 +321 796 0.400000 +321 863 0.400000 +321 870 0.400000 +321 1014 0.400000 +321 1090 0.400000 +321 1126 0.400000 +321 1142 0.400000 +321 1249 0.400000 +321 1395 0.400000 +321 1407 0.400000 +321 1411 0.400000 +321 1425 0.400000 +321 1448 0.400000 +321 1476 0.400000 +321 1478 0.400000 +321 1554 0.400000 +321 1675 0.400000 +321 1681 0.400000 +321 1682 0.400000 +321 1714 0.400000 +321 1736 0.400000 +321 1812 0.400000 +321 1819 0.400000 +321 1867 0.400000 +321 1942 0.400000 +321 2034 0.400000 +321 2038 0.400000 +321 2073 0.400000 +321 2095 0.400000 +321 2158 0.400000 +321 2169 0.400000 +321 2186 0.400000 +321 2239 0.400000 +321 2303 0.400000 +321 2320 0.400000 +321 2369 0.400000 +321 2371 0.400000 +321 2406 0.400000 +321 2430 0.400000 +321 2448 0.400000 +321 2494 0.400000 +321 2576 0.400000 +321 2640 0.400000 +321 2721 0.400000 +321 2737 0.400000 +321 2778 0.400000 +321 2818 0.400000 +321 3018 0.400000 +321 3031 0.400000 +321 3108 0.400000 +321 3132 0.400000 +322 22 0.400000 +322 88 0.400000 +322 173 0.400000 +322 189 0.400000 +322 279 0.400000 +322 301 0.400000 +322 334 0.400000 +322 385 0.400000 +322 426 0.400000 +322 456 0.400000 +322 474 0.400000 +322 544 0.400000 +322 547 0.400000 +322 573 0.400000 +322 601 0.400000 +322 633 0.400000 +322 733 0.400000 +322 746 0.400000 +322 891 0.400000 +322 908 0.400000 +322 916 0.400000 +322 934 0.400000 +322 941 0.400000 +322 983 0.400000 +322 987 0.400000 +322 990 0.400000 +322 1016 0.400000 +322 1035 0.400000 +322 1048 0.400000 +322 1190 0.400000 +322 1235 0.400000 +322 1286 0.400000 +322 1306 0.400000 +322 1368 0.400000 +322 1373 0.400000 +322 1388 0.400000 +322 1403 0.400000 +322 1407 0.400000 +322 1411 0.400000 +322 1575 0.400000 +322 1584 0.400000 +322 1610 0.400000 +322 1620 0.400000 +322 1677 0.400000 +322 1771 0.400000 +322 1835 0.400000 +322 1884 0.400000 +322 1909 0.400000 +322 1968 0.400000 +322 1994 0.400000 +322 2019 0.400000 +322 2024 0.400000 +322 2038 0.400000 +322 2045 0.400000 +322 2072 0.400000 +322 2123 0.400000 +322 2285 0.400000 +322 2345 0.400000 +322 2357 0.400000 +322 2389 0.400000 +322 2424 0.400000 +322 2501 0.400000 +322 2542 0.400000 +322 2562 0.400000 +322 2721 0.400000 +322 2850 0.400000 +322 2998 0.400000 +322 3048 0.400000 +322 3090 0.400000 +322 3153 0.400000 +322 3185 0.400000 +322 3190 0.400000 +323 26 0.400000 +323 231 0.400000 +323 372 0.400000 +323 386 0.400000 +323 433 0.400000 +323 480 0.400000 +323 486 0.400000 +323 548 0.400000 +323 629 0.400000 +323 655 0.400000 +323 701 0.400000 +323 768 0.400000 +323 769 0.400000 +323 772 0.400000 +323 773 0.400000 +323 780 0.400000 +323 797 0.400000 +323 839 0.400000 +323 852 0.400000 +323 875 0.400000 +323 951 0.400000 +323 1010 0.400000 +323 1036 0.400000 +323 1058 0.400000 +323 1169 0.400000 +323 1273 0.400000 +323 1331 0.400000 +323 1363 0.400000 +323 1365 0.400000 +323 1470 0.400000 +323 1490 0.400000 +323 1511 0.400000 +323 1530 0.400000 +323 1549 0.400000 +323 1654 0.400000 +323 1668 0.400000 +323 1679 0.400000 +323 1757 0.400000 +323 1817 0.400000 +323 1832 0.400000 +323 1868 0.400000 +323 1892 0.400000 +323 1968 0.400000 +323 2020 0.400000 +323 2082 0.400000 +323 2119 0.400000 +323 2150 0.400000 +323 2159 0.400000 +323 2213 0.400000 +323 2251 0.400000 +323 2302 0.400000 +323 2322 0.400000 +323 2385 0.400000 +323 2434 0.400000 +323 2529 0.400000 +323 2575 0.400000 +323 2596 0.400000 +323 2758 0.400000 +323 2807 0.400000 +323 2841 0.400000 +323 2961 0.400000 +323 2964 0.400000 +323 3014 0.400000 +323 3075 0.400000 +323 3177 0.400000 +324 40 0.400000 +324 154 0.400000 +324 197 0.400000 +324 226 0.400000 +324 241 0.400000 +324 415 0.400000 +324 474 0.400000 +324 490 0.400000 +324 569 0.400000 +324 709 0.400000 +324 744 0.400000 +324 850 0.400000 +324 899 0.400000 +324 930 0.400000 +324 955 0.400000 +324 1011 0.400000 +324 1054 0.400000 +324 1090 0.400000 +324 1101 0.400000 +324 1116 0.400000 +324 1165 0.400000 +324 1223 0.400000 +324 1287 0.400000 +324 1332 0.400000 +324 1361 0.400000 +324 1377 0.400000 +324 1425 0.400000 +324 1464 0.400000 +324 1485 0.400000 +324 1500 0.400000 +324 1537 0.400000 +324 1571 0.400000 +324 1575 0.400000 +324 1607 0.400000 +324 1709 0.400000 +324 1723 0.400000 +324 1769 0.400000 +324 1802 0.400000 +324 1856 0.400000 +324 1986 0.400000 +324 2079 0.400000 +324 2116 0.400000 +324 2178 0.400000 +324 2215 0.400000 +324 2230 0.400000 +324 2243 0.400000 +324 2404 0.400000 +324 2409 0.400000 +324 2666 0.400000 +324 2683 0.400000 +324 2691 0.400000 +324 2692 0.400000 +324 2693 0.400000 +324 2728 0.400000 +324 2774 0.400000 +324 2811 0.400000 +324 2859 0.400000 +324 2928 0.400000 +324 2929 0.400000 +324 2999 0.400000 +324 3034 0.400000 +324 3048 0.400000 +324 3109 0.400000 +324 3110 0.400000 +324 3113 0.400000 +325 23 0.400000 +325 61 0.400000 +325 62 0.400000 +325 200 0.400000 +325 299 0.400000 +325 316 0.400000 +325 335 0.400000 +325 382 0.400000 +325 418 0.400000 +325 457 0.400000 +325 466 0.400000 +325 505 0.400000 +325 616 0.400000 +325 660 0.400000 +325 767 0.400000 +325 835 0.400000 +325 871 0.400000 +325 961 0.400000 +325 1053 0.400000 +325 1194 0.400000 +325 1243 0.400000 +325 1252 0.400000 +325 1279 0.400000 +325 1296 0.400000 +325 1369 0.400000 +325 1394 0.400000 +325 1400 0.400000 +325 1424 0.400000 +325 1533 0.400000 +325 1644 0.400000 +325 1692 0.400000 +325 1783 0.400000 +325 1798 0.400000 +325 1845 0.400000 +325 1887 0.400000 +325 1905 0.400000 +325 1922 0.400000 +325 1930 0.400000 +325 1959 0.400000 +325 2030 0.400000 +325 2143 0.400000 +325 2244 0.400000 +325 2253 0.400000 +325 2299 0.400000 +325 2371 0.400000 +325 2458 0.400000 +325 2589 0.400000 +325 2638 0.400000 +325 2654 0.400000 +325 2658 0.400000 +325 2716 0.400000 +325 2723 0.400000 +325 2728 0.400000 +325 2809 0.400000 +325 2884 0.400000 +325 2939 0.400000 +325 2940 0.400000 +325 2967 0.400000 +325 3040 0.400000 +325 3173 0.400000 +326 65 0.400000 +326 76 0.400000 +326 122 0.400000 +326 133 0.400000 +326 143 0.400000 +326 195 0.400000 +326 196 0.400000 +326 289 0.400000 +326 400 0.400000 +326 435 0.400000 +326 457 0.400000 +326 562 0.400000 +326 576 0.400000 +326 588 0.400000 +326 718 0.400000 +326 735 0.400000 +326 775 0.400000 +326 877 0.400000 +326 919 0.400000 +326 969 0.400000 +326 1015 0.400000 +326 1050 0.400000 +326 1303 0.400000 +326 1393 0.400000 +326 1418 0.400000 +326 1561 0.400000 +326 1580 0.400000 +326 1600 0.400000 +326 1617 0.400000 +326 1677 0.400000 +326 1697 0.400000 +326 1806 0.400000 +326 1807 0.400000 +326 1821 0.400000 +326 1837 0.400000 +326 1899 0.400000 +326 2133 0.400000 +326 2138 0.400000 +326 2206 0.400000 +326 2285 0.400000 +326 2391 0.400000 +326 2392 0.400000 +326 2410 0.400000 +326 2474 0.400000 +326 2496 0.400000 +326 2521 0.400000 +326 2576 0.400000 +326 2636 0.400000 +326 2649 0.400000 +326 2718 0.400000 +326 2758 0.400000 +326 2908 0.400000 +326 2956 0.400000 +326 2971 0.400000 +326 2981 0.400000 +326 3074 0.400000 +326 3154 0.400000 +326 3178 0.400000 +327 63 0.400000 +327 95 0.400000 +327 136 0.400000 +327 175 0.400000 +327 252 0.400000 +327 278 0.400000 +327 297 0.400000 +327 324 0.400000 +327 415 0.400000 +327 460 0.400000 +327 466 0.400000 +327 553 0.400000 +327 561 0.400000 +327 666 0.400000 +327 744 0.400000 +327 761 0.400000 +327 779 0.400000 +327 780 0.400000 +327 783 0.400000 +327 824 0.400000 +327 870 0.400000 +327 978 0.400000 +327 987 0.400000 +327 1035 0.400000 +327 1055 0.400000 +327 1163 0.400000 +327 1188 0.400000 +327 1241 0.400000 +327 1298 0.400000 +327 1320 0.400000 +327 1377 0.400000 +327 1403 0.400000 +327 1415 0.400000 +327 1462 0.400000 +327 1522 0.400000 +327 1641 0.400000 +327 1680 0.400000 +327 1712 0.400000 +327 1751 0.400000 +327 1752 0.400000 +327 1927 0.400000 +327 1936 0.400000 +327 1974 0.400000 +327 2044 0.400000 +327 2095 0.400000 +327 2202 0.400000 +327 2268 0.400000 +327 2288 0.400000 +327 2294 0.400000 +327 2458 0.400000 +327 2485 0.400000 +327 2537 0.400000 +327 2546 0.400000 +327 2612 0.400000 +327 2652 0.400000 +327 2764 0.400000 +327 2841 0.400000 +327 2928 0.400000 +327 3056 0.400000 +327 3066 0.400000 +327 3118 0.400000 +327 3138 0.400000 +327 3155 0.400000 +327 3192 0.400000 +328 38 0.400000 +328 69 0.400000 +328 109 0.400000 +328 124 0.400000 +328 136 0.400000 +328 150 0.400000 +328 199 0.400000 +328 215 0.400000 +328 247 0.400000 +328 391 0.400000 +328 413 0.400000 +328 487 0.400000 +328 492 0.400000 +328 552 0.400000 +328 598 0.400000 +328 637 0.400000 +328 830 0.400000 +328 836 0.400000 +328 854 0.400000 +328 959 0.400000 +328 982 0.400000 +328 1037 0.400000 +328 1092 0.400000 +328 1167 0.400000 +328 1203 0.400000 +328 1227 0.400000 +328 1260 0.400000 +328 1273 0.400000 +328 1322 0.400000 +328 1323 0.400000 +328 1534 0.400000 +328 1565 0.400000 +328 1742 0.400000 +328 1744 0.400000 +328 1805 0.400000 +328 1837 0.400000 +328 1958 0.400000 +328 1999 0.400000 +328 2157 0.400000 +328 2212 0.400000 +328 2238 0.400000 +328 2260 0.400000 +328 2263 0.400000 +328 2268 0.400000 +328 2292 0.400000 +328 2346 0.400000 +328 2364 0.400000 +328 2375 0.400000 +328 2382 0.400000 +328 2442 0.400000 +328 2549 0.400000 +328 2594 0.400000 +328 2623 0.400000 +328 2662 0.400000 +328 2665 0.400000 +328 2681 0.400000 +328 2745 0.400000 +328 2775 0.400000 +328 2803 0.400000 +328 2867 0.400000 +328 2894 0.400000 +328 2901 0.400000 +328 2918 0.400000 +328 2948 0.400000 +328 2952 0.400000 +328 3006 0.400000 +328 3063 0.400000 +328 3097 0.400000 +328 3106 0.400000 +328 3190 0.400000 +329 9 0.400000 +329 189 0.400000 +329 221 0.400000 +329 260 0.400000 +329 278 0.400000 +329 296 0.400000 +329 335 0.400000 +329 469 0.400000 +329 477 0.400000 +329 481 0.400000 +329 632 0.400000 +329 636 0.400000 +329 669 0.400000 +329 720 0.400000 +329 727 0.400000 +329 845 0.400000 +329 849 0.400000 +329 852 0.400000 +329 972 0.400000 +329 1031 0.400000 +329 1073 0.400000 +329 1104 0.400000 +329 1108 0.400000 +329 1329 0.400000 +329 1350 0.400000 +329 1351 0.400000 +329 1362 0.400000 +329 1426 0.400000 +329 1597 0.400000 +329 1629 0.400000 +329 1657 0.400000 +329 1701 0.400000 +329 1789 0.400000 +329 1811 0.400000 +329 1813 0.400000 +329 1828 0.400000 +329 1851 0.400000 +329 1899 0.400000 +329 1907 0.400000 +329 1941 0.400000 +329 1962 0.400000 +329 1977 0.400000 +329 1995 0.400000 +329 2093 0.400000 +329 2140 0.400000 +329 2164 0.400000 +329 2207 0.400000 +329 2222 0.400000 +329 2274 0.400000 +329 2341 0.400000 +329 2406 0.400000 +329 2422 0.400000 +329 2491 0.400000 +329 2509 0.400000 +329 2565 0.400000 +329 2679 0.400000 +329 2773 0.400000 +329 2870 0.400000 +329 2889 0.400000 +329 2909 0.400000 +329 3035 0.400000 +329 3055 0.400000 +329 3077 0.400000 +329 3085 0.400000 +329 3087 0.400000 +329 3092 0.400000 +329 3102 0.400000 +329 3114 0.400000 +329 3117 0.400000 +330 18 0.400000 +330 129 0.400000 +330 178 0.400000 +330 184 0.400000 +330 227 0.400000 +330 264 0.400000 +330 322 0.400000 +330 420 0.400000 +330 454 0.400000 +330 455 0.400000 +330 490 0.400000 +330 505 0.400000 +330 610 0.400000 +330 679 0.400000 +330 719 0.400000 +330 737 0.400000 +330 738 0.400000 +330 739 0.400000 +330 779 0.400000 +330 824 0.400000 +330 891 0.400000 +330 910 0.400000 +330 938 0.400000 +330 959 0.400000 +330 1186 0.400000 +330 1192 0.400000 +330 1194 0.400000 +330 1282 0.400000 +330 1294 0.400000 +330 1349 0.400000 +330 1384 0.400000 +330 1465 0.400000 +330 1576 0.400000 +330 1724 0.400000 +330 1763 0.400000 +330 1804 0.400000 +330 1818 0.400000 +330 1871 0.400000 +330 1919 0.400000 +330 2060 0.400000 +330 2074 0.400000 +330 2090 0.400000 +330 2123 0.400000 +330 2163 0.400000 +330 2204 0.400000 +330 2381 0.400000 +330 2434 0.400000 +330 2444 0.400000 +330 2479 0.400000 +330 2490 0.400000 +330 2560 0.400000 +330 2650 0.400000 +330 2679 0.400000 +330 2856 0.400000 +330 2879 0.400000 +330 2901 0.400000 +330 2959 0.400000 +330 2993 0.400000 +330 3000 0.400000 +330 3009 0.400000 +330 3036 0.400000 +331 65 0.400000 +331 121 0.400000 +331 197 0.400000 +331 258 0.400000 +331 273 0.400000 +331 355 0.400000 +331 378 0.400000 +331 385 0.400000 +331 499 0.400000 +331 586 0.400000 +331 684 0.400000 +331 722 0.400000 +331 746 0.400000 +331 778 0.400000 +331 898 0.400000 +331 1025 0.400000 +331 1032 0.400000 +331 1035 0.400000 +331 1043 0.400000 +331 1095 0.400000 +331 1162 0.400000 +331 1180 0.400000 +331 1260 0.400000 +331 1263 0.400000 +331 1282 0.400000 +331 1334 0.400000 +331 1362 0.400000 +331 1412 0.400000 +331 1495 0.400000 +331 1523 0.400000 +331 1533 0.400000 +331 1541 0.400000 +331 1553 0.400000 +331 1674 0.400000 +331 1716 0.400000 +331 1731 0.400000 +331 1776 0.400000 +331 1785 0.400000 +331 1799 0.400000 +331 1837 0.400000 +331 1855 0.400000 +331 1880 0.400000 +331 1996 0.400000 +331 1998 0.400000 +331 2073 0.400000 +331 2084 0.400000 +331 2181 0.400000 +331 2224 0.400000 +331 2344 0.400000 +331 2463 0.400000 +331 2470 0.400000 +331 2520 0.400000 +331 2706 0.400000 +331 2811 0.400000 +331 2817 0.400000 +331 2841 0.400000 +331 2847 0.400000 +331 2876 0.400000 +331 3131 0.400000 +331 3191 0.400000 +332 71 0.400000 +332 78 0.400000 +332 147 0.400000 +332 198 0.400000 +332 262 0.400000 +332 368 0.400000 +332 510 0.400000 +332 552 0.400000 +332 608 0.400000 +332 633 0.400000 +332 637 0.400000 +332 730 0.400000 +332 765 0.400000 +332 778 0.400000 +332 783 0.400000 +332 793 0.400000 +332 853 0.400000 +332 856 0.400000 +332 973 0.400000 +332 989 0.400000 +332 1124 0.400000 +332 1239 0.400000 +332 1363 0.400000 +332 1454 0.400000 +332 1467 0.400000 +332 1494 0.400000 +332 1556 0.400000 +332 1574 0.400000 +332 1596 0.400000 +332 1648 0.400000 +332 1689 0.400000 +332 1736 0.400000 +332 1824 0.400000 +332 1886 0.400000 +332 1901 0.400000 +332 2053 0.400000 +332 2064 0.400000 +332 2106 0.400000 +332 2247 0.400000 +332 2320 0.400000 +332 2375 0.400000 +332 2442 0.400000 +332 2488 0.400000 +332 2531 0.400000 +332 2535 0.400000 +332 2543 0.400000 +332 2612 0.400000 +332 2658 0.400000 +332 2747 0.400000 +332 2875 0.400000 +332 2913 0.400000 +332 3020 0.400000 +332 3054 0.400000 +332 3091 0.400000 +332 3144 0.400000 +333 1 0.400000 +333 30 0.400000 +333 36 0.400000 +333 94 0.400000 +333 183 0.400000 +333 207 0.400000 +333 234 0.400000 +333 268 0.400000 +333 309 0.400000 +333 413 0.400000 +333 453 0.400000 +333 517 0.400000 +333 581 0.400000 +333 619 0.400000 +333 849 0.400000 +333 869 0.400000 +333 889 0.400000 +333 1008 0.400000 +333 1031 0.400000 +333 1093 0.400000 +333 1122 0.400000 +333 1145 0.400000 +333 1173 0.400000 +333 1304 0.400000 +333 1336 0.400000 +333 1420 0.400000 +333 1463 0.400000 +333 1466 0.400000 +333 1483 0.400000 +333 1613 0.400000 +333 1633 0.400000 +333 1655 0.400000 +333 1702 0.400000 +333 1734 0.400000 +333 1784 0.400000 +333 1786 0.400000 +333 1805 0.400000 +333 1915 0.400000 +333 1946 0.400000 +333 1953 0.400000 +333 1973 0.400000 +333 2009 0.400000 +333 2250 0.400000 +333 2368 0.400000 +333 2449 0.400000 +333 2516 0.400000 +333 2572 0.400000 +333 2620 0.400000 +333 2642 0.400000 +333 2664 0.400000 +333 2667 0.400000 +333 2740 0.400000 +333 2754 0.400000 +333 2780 0.400000 +333 2930 0.400000 +333 2969 0.400000 +333 2970 0.400000 +333 3008 0.400000 +333 3082 0.400000 +333 3089 0.400000 +333 3101 0.400000 +333 3106 0.400000 +333 3128 0.400000 +334 25 0.400000 +334 48 0.400000 +334 101 0.400000 +334 111 0.400000 +334 112 0.400000 +334 181 0.400000 +334 276 0.400000 +334 277 0.400000 +334 504 0.400000 +334 598 0.400000 +334 631 0.400000 +334 854 0.400000 +334 938 0.400000 +334 971 0.400000 +334 1006 0.400000 +334 1057 0.400000 +334 1144 0.400000 +334 1209 0.400000 +334 1230 0.400000 +334 1255 0.400000 +334 1311 0.400000 +334 1329 0.400000 +334 1371 0.400000 +334 1429 0.400000 +334 1592 0.400000 +334 1610 0.400000 +334 1727 0.400000 +334 1777 0.400000 +334 2058 0.400000 +334 2114 0.400000 +334 2148 0.400000 +334 2275 0.400000 +334 2285 0.400000 +334 2291 0.400000 +334 2407 0.400000 +334 2418 0.400000 +334 2533 0.400000 +334 2586 0.400000 +334 2616 0.400000 +334 2618 0.400000 +334 2634 0.400000 +334 2672 0.400000 +334 2681 0.400000 +334 2699 0.400000 +334 2810 0.400000 +334 2839 0.400000 +334 2891 0.400000 +334 2957 0.400000 +334 3042 0.400000 +334 3085 0.400000 +334 3177 0.400000 +334 3186 0.400000 +335 30 0.400000 +335 47 0.400000 +335 122 0.400000 +335 193 0.400000 +335 226 0.400000 +335 246 0.400000 +335 277 0.400000 +335 327 0.400000 +335 331 0.400000 +335 401 0.400000 +335 451 0.400000 +335 459 0.400000 +335 468 0.400000 +335 499 0.400000 +335 514 0.400000 +335 556 0.400000 +335 590 0.400000 +335 606 0.400000 +335 659 0.400000 +335 708 0.400000 +335 733 0.400000 +335 782 0.400000 +335 796 0.400000 +335 868 0.400000 +335 894 0.400000 +335 904 0.400000 +335 958 0.400000 +335 1005 0.400000 +335 1061 0.400000 +335 1065 0.400000 +335 1182 0.400000 +335 1205 0.400000 +335 1308 0.400000 +335 1331 0.400000 +335 1432 0.400000 +335 1494 0.400000 +335 1535 0.400000 +335 1568 0.400000 +335 1586 0.400000 +335 1595 0.400000 +335 1645 0.400000 +335 1745 0.400000 +335 1801 0.400000 +335 1856 0.400000 +335 1868 0.400000 +335 1912 0.400000 +335 1931 0.400000 +335 1987 0.400000 +335 2025 0.400000 +335 2034 0.400000 +335 2123 0.400000 +335 2153 0.400000 +335 2235 0.400000 +335 2238 0.400000 +335 2239 0.400000 +335 2304 0.400000 +335 2388 0.400000 +335 2402 0.400000 +335 2422 0.400000 +335 2473 0.400000 +335 2484 0.400000 +335 2506 0.400000 +335 2615 0.400000 +335 2629 0.400000 +335 2698 0.400000 +335 2722 0.400000 +335 2775 0.400000 +335 2804 0.400000 +335 2824 0.400000 +335 2894 0.400000 +335 3051 0.400000 +335 3114 0.400000 +335 3130 0.400000 +335 3131 0.400000 +335 3154 0.400000 +335 3195 0.400000 +336 10 0.400000 +336 57 0.400000 +336 58 0.400000 +336 66 0.400000 +336 69 0.400000 +336 121 0.400000 +336 166 0.400000 +336 195 0.400000 +336 255 0.400000 +336 272 0.400000 +336 319 0.400000 +336 360 0.400000 +336 472 0.400000 +336 522 0.400000 +336 525 0.400000 +336 529 0.400000 +336 567 0.400000 +336 619 0.400000 +336 620 0.400000 +336 694 0.400000 +336 724 0.400000 +336 765 0.400000 +336 771 0.400000 +336 813 0.400000 +336 846 0.400000 +336 930 0.400000 +336 1029 0.400000 +336 1101 0.400000 +336 1137 0.400000 +336 1298 0.400000 +336 1317 0.400000 +336 1383 0.400000 +336 1474 0.400000 +336 1595 0.400000 +336 1624 0.400000 +336 1641 0.400000 +336 1642 0.400000 +336 1671 0.400000 +336 1762 0.400000 +336 1814 0.400000 +336 1828 0.400000 +336 1835 0.400000 +336 1953 0.400000 +336 1979 0.400000 +336 2144 0.400000 +336 2169 0.400000 +336 2201 0.400000 +336 2224 0.400000 +336 2226 0.400000 +336 2277 0.400000 +336 2334 0.400000 +336 2431 0.400000 +336 2515 0.400000 +336 2588 0.400000 +336 2759 0.400000 +336 2772 0.400000 +336 2867 0.400000 +336 3055 0.400000 +336 3057 0.400000 +336 3071 0.400000 +336 3131 0.400000 +336 3140 0.400000 +337 47 0.400000 +337 58 0.400000 +337 72 0.400000 +337 141 0.400000 +337 161 0.400000 +337 205 0.400000 +337 229 0.400000 +337 258 0.400000 +337 259 0.400000 +337 304 0.400000 +337 355 0.400000 +337 377 0.400000 +337 479 0.400000 +337 483 0.400000 +337 651 0.400000 +337 695 0.400000 +337 697 0.400000 +337 720 0.400000 +337 724 0.400000 +337 861 0.400000 +337 1000 0.400000 +337 1071 0.400000 +337 1221 0.400000 +337 1314 0.400000 +337 1334 0.400000 +337 1339 0.400000 +337 1351 0.400000 +337 1406 0.400000 +337 1549 0.400000 +337 1597 0.400000 +337 1667 0.400000 +337 1689 0.400000 +337 1801 0.400000 +337 1829 0.400000 +337 1851 0.400000 +337 1962 0.400000 +337 2062 0.400000 +337 2071 0.400000 +337 2118 0.400000 +337 2145 0.400000 +337 2369 0.400000 +337 2373 0.400000 +337 2405 0.400000 +337 2461 0.400000 +337 2517 0.400000 +337 2621 0.400000 +337 2626 0.400000 +337 2630 0.400000 +337 2646 0.400000 +337 2691 0.400000 +337 2723 0.400000 +337 2724 0.400000 +337 2775 0.400000 +337 2829 0.400000 +337 2855 0.400000 +337 3024 0.400000 +337 3092 0.400000 +337 3099 0.400000 +337 3171 0.400000 +338 33 0.400000 +338 100 0.400000 +338 227 0.400000 +338 250 0.400000 +338 289 0.400000 +338 322 0.400000 +338 359 0.400000 +338 368 0.400000 +338 544 0.400000 +338 566 0.400000 +338 590 0.400000 +338 600 0.400000 +338 603 0.400000 +338 633 0.400000 +338 741 0.400000 +338 745 0.400000 +338 849 0.400000 +338 872 0.400000 +338 996 0.400000 +338 1016 0.400000 +338 1021 0.400000 +338 1066 0.400000 +338 1314 0.400000 +338 1365 0.400000 +338 1458 0.400000 +338 1501 0.400000 +338 1517 0.400000 +338 1533 0.400000 +338 1602 0.400000 +338 1712 0.400000 +338 1737 0.400000 +338 1777 0.400000 +338 1808 0.400000 +338 1828 0.400000 +338 1911 0.400000 +338 1945 0.400000 +338 1968 0.400000 +338 1984 0.400000 +338 2013 0.400000 +338 2021 0.400000 +338 2079 0.400000 +338 2142 0.400000 +338 2150 0.400000 +338 2166 0.400000 +338 2169 0.400000 +338 2187 0.400000 +338 2204 0.400000 +338 2244 0.400000 +338 2291 0.400000 +338 2293 0.400000 +338 2321 0.400000 +338 2335 0.400000 +338 2353 0.400000 +338 2405 0.400000 +338 2446 0.400000 +338 2454 0.400000 +338 2499 0.400000 +338 2500 0.400000 +338 2511 0.400000 +338 2524 0.400000 +338 2628 0.400000 +338 2690 0.400000 +338 2919 0.400000 +338 2920 0.400000 +338 2936 0.400000 +338 2956 0.400000 +338 3025 0.400000 +338 3072 0.400000 +338 3074 0.400000 +338 3137 0.400000 +338 3143 0.400000 +338 3166 0.400000 +338 3184 0.400000 +339 9 0.400000 +339 106 0.400000 +339 164 0.400000 +339 278 0.400000 +339 315 0.400000 +339 320 0.400000 +339 330 0.400000 +339 410 0.400000 +339 474 0.400000 +339 641 0.400000 +339 672 0.400000 +339 761 0.400000 +339 827 0.400000 +339 866 0.400000 +339 931 0.400000 +339 951 0.400000 +339 961 0.400000 +339 967 0.400000 +339 1002 0.400000 +339 1004 0.400000 +339 1028 0.400000 +339 1084 0.400000 +339 1113 0.400000 +339 1205 0.400000 +339 1223 0.400000 +339 1238 0.400000 +339 1269 0.400000 +339 1310 0.400000 +339 1312 0.400000 +339 1399 0.400000 +339 1447 0.400000 +339 1477 0.400000 +339 1568 0.400000 +339 1587 0.400000 +339 1669 0.400000 +339 1716 0.400000 +339 1720 0.400000 +339 1830 0.400000 +339 1990 0.400000 +339 2105 0.400000 +339 2118 0.400000 +339 2176 0.400000 +339 2181 0.400000 +339 2183 0.400000 +339 2223 0.400000 +339 2340 0.400000 +339 2347 0.400000 +339 2362 0.400000 +339 2451 0.400000 +339 2455 0.400000 +339 2558 0.400000 +339 2646 0.400000 +339 2697 0.400000 +339 2807 0.400000 +339 2833 0.400000 +339 2910 0.400000 +339 3024 0.400000 +339 3084 0.400000 +339 3094 0.400000 +339 3181 0.400000 +339 3199 0.400000 +340 116 0.400000 +340 262 0.400000 +340 286 0.400000 +340 318 0.400000 +340 416 0.400000 +340 422 0.400000 +340 463 0.400000 +340 496 0.400000 +340 508 0.400000 +340 523 0.400000 +340 548 0.400000 +340 576 0.400000 +340 645 0.400000 +340 659 0.400000 +340 663 0.400000 +340 683 0.400000 +340 779 0.400000 +340 868 0.400000 +340 885 0.400000 +340 990 0.400000 +340 995 0.400000 +340 1046 0.400000 +340 1156 0.400000 +340 1223 0.400000 +340 1224 0.400000 +340 1278 0.400000 +340 1316 0.400000 +340 1338 0.400000 +340 1349 0.400000 +340 1461 0.400000 +340 1674 0.400000 +340 1809 0.400000 +340 1833 0.400000 +340 1963 0.400000 +340 1969 0.400000 +340 2049 0.400000 +340 2101 0.400000 +340 2180 0.400000 +340 2188 0.400000 +340 2193 0.400000 +340 2251 0.400000 +340 2316 0.400000 +340 2354 0.400000 +340 2408 0.400000 +340 2438 0.400000 +340 2598 0.400000 +340 2600 0.400000 +340 2644 0.400000 +340 2803 0.400000 +340 2838 0.400000 +340 2859 0.400000 +340 2867 0.400000 +340 2877 0.400000 +340 3008 0.400000 +340 3030 0.400000 +340 3059 0.400000 +340 3091 0.400000 +340 3108 0.400000 +340 3109 0.400000 +340 3173 0.400000 +341 40 0.400000 +341 105 0.400000 +341 109 0.400000 +341 139 0.400000 +341 221 0.400000 +341 240 0.400000 +341 326 0.400000 +341 340 0.400000 +341 343 0.400000 +341 445 0.400000 +341 507 0.400000 +341 557 0.400000 +341 564 0.400000 +341 630 0.400000 +341 680 0.400000 +341 852 0.400000 +341 864 0.400000 +341 955 0.400000 +341 967 0.400000 +341 1004 0.400000 +341 1008 0.400000 +341 1026 0.400000 +341 1287 0.400000 +341 1326 0.400000 +341 1341 0.400000 +341 1351 0.400000 +341 1397 0.400000 +341 1480 0.400000 +341 1510 0.400000 +341 1540 0.400000 +341 1595 0.400000 +341 1616 0.400000 +341 1642 0.400000 +341 1685 0.400000 +341 1865 0.400000 +341 1897 0.400000 +341 1933 0.400000 +341 1957 0.400000 +341 2064 0.400000 +341 2135 0.400000 +341 2140 0.400000 +341 2253 0.400000 +341 2300 0.400000 +341 2390 0.400000 +341 2397 0.400000 +341 2436 0.400000 +341 2444 0.400000 +341 2550 0.400000 +341 2554 0.400000 +341 2555 0.400000 +341 2592 0.400000 +341 2650 0.400000 +341 2695 0.400000 +341 2710 0.400000 +341 2732 0.400000 +341 2850 0.400000 +341 3026 0.400000 +341 3080 0.400000 +341 3094 0.400000 +341 3116 0.400000 +341 3117 0.400000 +342 9 0.400000 +342 63 0.400000 +342 131 0.400000 +342 218 0.400000 +342 336 0.400000 +342 393 0.400000 +342 482 0.400000 +342 570 0.400000 +342 593 0.400000 +342 694 0.400000 +342 801 0.400000 +342 868 0.400000 +342 932 0.400000 +342 1054 0.400000 +342 1075 0.400000 +342 1083 0.400000 +342 1146 0.400000 +342 1177 0.400000 +342 1182 0.400000 +342 1222 0.400000 +342 1239 0.400000 +342 1261 0.400000 +342 1371 0.400000 +342 1462 0.400000 +342 1464 0.400000 +342 1543 0.400000 +342 1590 0.400000 +342 1598 0.400000 +342 1699 0.400000 +342 1766 0.400000 +342 1777 0.400000 +342 1796 0.400000 +342 1813 0.400000 +342 1878 0.400000 +342 1902 0.400000 +342 1917 0.400000 +342 1944 0.400000 +342 1957 0.400000 +342 1992 0.400000 +342 2004 0.400000 +342 2013 0.400000 +342 2019 0.400000 +342 2026 0.400000 +342 2175 0.400000 +342 2204 0.400000 +342 2423 0.400000 +342 2433 0.400000 +342 2456 0.400000 +342 2509 0.400000 +342 2575 0.400000 +342 2582 0.400000 +342 2650 0.400000 +342 2719 0.400000 +342 2723 0.400000 +342 2758 0.400000 +342 2765 0.400000 +342 2769 0.400000 +342 2775 0.400000 +342 2800 0.400000 +342 2833 0.400000 +342 2879 0.400000 +342 2937 0.400000 +342 2997 0.400000 +342 3064 0.400000 +342 3073 0.400000 +342 3123 0.400000 +342 3133 0.400000 +342 3156 0.400000 +343 45 0.400000 +343 48 0.400000 +343 164 0.400000 +343 185 0.400000 +343 251 0.400000 +343 392 0.400000 +343 483 0.400000 +343 488 0.400000 +343 497 0.400000 +343 542 0.400000 +343 623 0.400000 +343 713 0.400000 +343 780 0.400000 +343 816 0.400000 +343 886 0.400000 +343 916 0.400000 +343 925 0.400000 +343 1021 0.400000 +343 1040 0.400000 +343 1047 0.400000 +343 1054 0.400000 +343 1087 0.400000 +343 1139 0.400000 +343 1161 0.400000 +343 1265 0.400000 +343 1462 0.400000 +343 1488 0.400000 +343 1502 0.400000 +343 1533 0.400000 +343 1535 0.400000 +343 1669 0.400000 +343 1676 0.400000 +343 1688 0.400000 +343 1703 0.400000 +343 1725 0.400000 +343 1830 0.400000 +343 1850 0.400000 +343 1868 0.400000 +343 1910 0.400000 +343 1941 0.400000 +343 1942 0.400000 +343 2120 0.400000 +343 2151 0.400000 +343 2219 0.400000 +343 2299 0.400000 +343 2314 0.400000 +343 2367 0.400000 +343 2398 0.400000 +343 2467 0.400000 +343 2485 0.400000 +343 2508 0.400000 +343 2684 0.400000 +343 2766 0.400000 +343 2889 0.400000 +343 2944 0.400000 +343 2992 0.400000 +343 3047 0.400000 +343 3090 0.400000 +343 3117 0.400000 +343 3153 0.400000 +343 3183 0.400000 +344 115 0.400000 +344 166 0.400000 +344 173 0.400000 +344 185 0.400000 +344 192 0.400000 +344 280 0.400000 +344 281 0.400000 +344 285 0.400000 +344 286 0.400000 +344 380 0.400000 +344 423 0.400000 +344 472 0.400000 +344 508 0.400000 +344 592 0.400000 +344 599 0.400000 +344 633 0.400000 +344 647 0.400000 +344 670 0.400000 +344 675 0.400000 +344 736 0.400000 +344 741 0.400000 +344 787 0.400000 +344 935 0.400000 +344 953 0.400000 +344 986 0.400000 +344 1015 0.400000 +344 1036 0.400000 +344 1043 0.400000 +344 1054 0.400000 +344 1075 0.400000 +344 1148 0.400000 +344 1279 0.400000 +344 1345 0.400000 +344 1368 0.400000 +344 1410 0.400000 +344 1450 0.400000 +344 1457 0.400000 +344 1468 0.400000 +344 1508 0.400000 +344 1518 0.400000 +344 1558 0.400000 +344 1585 0.400000 +344 1615 0.400000 +344 1682 0.400000 +344 1715 0.400000 +344 1738 0.400000 +344 1789 0.400000 +344 1877 0.400000 +344 2057 0.400000 +344 2079 0.400000 +344 2104 0.400000 +344 2195 0.400000 +344 2221 0.400000 +344 2236 0.400000 +344 2353 0.400000 +344 2391 0.400000 +344 2398 0.400000 +344 2439 0.400000 +344 2574 0.400000 +344 2616 0.400000 +344 2814 0.400000 +344 2827 0.400000 +344 2916 0.400000 +344 2919 0.400000 +344 2938 0.400000 +344 3074 0.400000 +344 3127 0.400000 +344 3130 0.400000 +344 3195 0.400000 +345 30 0.400000 +345 37 0.400000 +345 74 0.400000 +345 106 0.400000 +345 126 0.400000 +345 213 0.400000 +345 294 0.400000 +345 322 0.400000 +345 355 0.400000 +345 395 0.400000 +345 442 0.400000 +345 540 0.400000 +345 552 0.400000 +345 557 0.400000 +345 574 0.400000 +345 610 0.400000 +345 632 0.400000 +345 746 0.400000 +345 812 0.400000 +345 977 0.400000 +345 999 0.400000 +345 1005 0.400000 +345 1044 0.400000 +345 1049 0.400000 +345 1062 0.400000 +345 1083 0.400000 +345 1137 0.400000 +345 1162 0.400000 +345 1301 0.400000 +345 1325 0.400000 +345 1400 0.400000 +345 1538 0.400000 +345 1577 0.400000 +345 1585 0.400000 +345 1649 0.400000 +345 1692 0.400000 +345 1717 0.400000 +345 1727 0.400000 +345 1803 0.400000 +345 1828 0.400000 +345 1863 0.400000 +345 1897 0.400000 +345 1907 0.400000 +345 1979 0.400000 +345 1994 0.400000 +345 2026 0.400000 +345 2061 0.400000 +345 2117 0.400000 +345 2150 0.400000 +345 2163 0.400000 +345 2205 0.400000 +345 2229 0.400000 +345 2269 0.400000 +345 2296 0.400000 +345 2324 0.400000 +345 2391 0.400000 +345 2422 0.400000 +345 2501 0.400000 +345 2547 0.400000 +345 2601 0.400000 +345 2614 0.400000 +345 2638 0.400000 +345 2674 0.400000 +345 2742 0.400000 +345 2878 0.400000 +345 2931 0.400000 +345 2961 0.400000 +345 2971 0.400000 +345 2979 0.400000 +345 3022 0.400000 +345 3114 0.400000 +345 3190 0.400000 +346 57 0.400000 +346 129 0.400000 +346 168 0.400000 +346 246 0.400000 +346 255 0.400000 +346 327 0.400000 +346 591 0.400000 +346 596 0.400000 +346 614 0.400000 +346 662 0.400000 +346 686 0.400000 +346 901 0.400000 +346 1001 0.400000 +346 1007 0.400000 +346 1016 0.400000 +346 1134 0.400000 +346 1213 0.400000 +346 1244 0.400000 +346 1278 0.400000 +346 1316 0.400000 +346 1479 0.400000 +346 1609 0.400000 +346 1614 0.400000 +346 1633 0.400000 +346 1690 0.400000 +346 1706 0.400000 +346 1803 0.400000 +346 1810 0.400000 +346 1844 0.400000 +346 1856 0.400000 +346 1886 0.400000 +346 1923 0.400000 +346 1924 0.400000 +346 2074 0.400000 +346 2123 0.400000 +346 2134 0.400000 +346 2181 0.400000 +346 2207 0.400000 +346 2222 0.400000 +346 2251 0.400000 +346 2395 0.400000 +346 2416 0.400000 +346 2636 0.400000 +346 2701 0.400000 +346 2869 0.400000 +346 3018 0.400000 +346 3039 0.400000 +346 3087 0.400000 +346 3103 0.400000 +346 3104 0.400000 +346 3122 0.400000 +346 3139 0.400000 +347 41 0.400000 +347 78 0.400000 +347 79 0.400000 +347 86 0.400000 +347 94 0.400000 +347 134 0.400000 +347 217 0.400000 +347 287 0.400000 +347 387 0.400000 +347 419 0.400000 +347 420 0.400000 +347 502 0.400000 +347 519 0.400000 +347 629 0.400000 +347 670 0.400000 +347 677 0.400000 +347 941 0.400000 +347 950 0.400000 +347 968 0.400000 +347 999 0.400000 +347 1064 0.400000 +347 1087 0.400000 +347 1132 0.400000 +347 1156 0.400000 +347 1179 0.400000 +347 1196 0.400000 +347 1227 0.400000 +347 1243 0.400000 +347 1268 0.400000 +347 1298 0.400000 +347 1328 0.400000 +347 1340 0.400000 +347 1360 0.400000 +347 1406 0.400000 +347 1409 0.400000 +347 1604 0.400000 +347 1654 0.400000 +347 1713 0.400000 +347 1744 0.400000 +347 1769 0.400000 +347 1781 0.400000 +347 1843 0.400000 +347 1891 0.400000 +347 1958 0.400000 +347 2004 0.400000 +347 2013 0.400000 +347 2025 0.400000 +347 2041 0.400000 +347 2087 0.400000 +347 2108 0.400000 +347 2114 0.400000 +347 2216 0.400000 +347 2244 0.400000 +347 2251 0.400000 +347 2274 0.400000 +347 2405 0.400000 +347 2466 0.400000 +347 2491 0.400000 +347 2574 0.400000 +347 2616 0.400000 +347 2627 0.400000 +347 2847 0.400000 +347 2868 0.400000 +347 2870 0.400000 +347 2903 0.400000 +347 2937 0.400000 +347 2943 0.400000 +347 2965 0.400000 +347 3007 0.400000 +347 3025 0.400000 +347 3031 0.400000 +347 3069 0.400000 +347 3191 0.400000 +348 11 0.400000 +348 18 0.400000 +348 265 0.400000 +348 278 0.400000 +348 316 0.400000 +348 328 0.400000 +348 357 0.400000 +348 386 0.400000 +348 457 0.400000 +348 492 0.400000 +348 497 0.400000 +348 523 0.400000 +348 526 0.400000 +348 548 0.400000 +348 582 0.400000 +348 621 0.400000 +348 683 0.400000 +348 818 0.400000 +348 819 0.400000 +348 828 0.400000 +348 840 0.400000 +348 860 0.400000 +348 877 0.400000 +348 1013 0.400000 +348 1017 0.400000 +348 1064 0.400000 +348 1081 0.400000 +348 1083 0.400000 +348 1179 0.400000 +348 1226 0.400000 +348 1278 0.400000 +348 1387 0.400000 +348 1480 0.400000 +348 1573 0.400000 +348 1588 0.400000 +348 1715 0.400000 +348 1770 0.400000 +348 1815 0.400000 +348 1835 0.400000 +348 1960 0.400000 +348 1978 0.400000 +348 2125 0.400000 +348 2154 0.400000 +348 2165 0.400000 +348 2172 0.400000 +348 2199 0.400000 +348 2208 0.400000 +348 2335 0.400000 +348 2400 0.400000 +348 2452 0.400000 +348 2469 0.400000 +348 2509 0.400000 +348 2535 0.400000 +348 2688 0.400000 +348 2741 0.400000 +348 2773 0.400000 +348 2868 0.400000 +348 2887 0.400000 +348 2888 0.400000 +348 2936 0.400000 +348 3002 0.400000 +348 3055 0.400000 +348 3070 0.400000 +348 3083 0.400000 +348 3094 0.400000 +348 3136 0.400000 +348 3139 0.400000 +349 98 0.400000 +349 129 0.400000 +349 174 0.400000 +349 214 0.400000 +349 258 0.400000 +349 263 0.400000 +349 348 0.400000 +349 361 0.400000 +349 369 0.400000 +349 575 0.400000 +349 581 0.400000 +349 590 0.400000 +349 669 0.400000 +349 763 0.400000 +349 768 0.400000 +349 808 0.400000 +349 829 0.400000 +349 864 0.400000 +349 941 0.400000 +349 965 0.400000 +349 1073 0.400000 +349 1080 0.400000 +349 1093 0.400000 +349 1150 0.400000 +349 1162 0.400000 +349 1192 0.400000 +349 1234 0.400000 +349 1465 0.400000 +349 1469 0.400000 +349 1528 0.400000 +349 1545 0.400000 +349 1550 0.400000 +349 1566 0.400000 +349 1590 0.400000 +349 1597 0.400000 +349 1612 0.400000 +349 1725 0.400000 +349 1735 0.400000 +349 1787 0.400000 +349 1837 0.400000 +349 1948 0.400000 +349 1959 0.400000 +349 1994 0.400000 +349 2033 0.400000 +349 2069 0.400000 +349 2070 0.400000 +349 2085 0.400000 +349 2254 0.400000 +349 2354 0.400000 +349 2470 0.400000 +349 2632 0.400000 +349 2719 0.400000 +349 2760 0.400000 +349 2880 0.400000 +349 2933 0.400000 +349 2963 0.400000 +349 2965 0.400000 +349 3024 0.400000 +349 3044 0.400000 +349 3050 0.400000 +349 3116 0.400000 +349 3171 0.400000 +350 101 0.400000 +350 215 0.400000 +350 264 0.400000 +350 332 0.400000 +350 354 0.400000 +350 381 0.400000 +350 391 0.400000 +350 411 0.400000 +350 413 0.400000 +350 472 0.400000 +350 540 0.400000 +350 565 0.400000 +350 567 0.400000 +350 635 0.400000 +350 710 0.400000 +350 763 0.400000 +350 849 0.400000 +350 917 0.400000 +350 991 0.400000 +350 994 0.400000 +350 1035 0.400000 +350 1037 0.400000 +350 1084 0.400000 +350 1151 0.400000 +350 1162 0.400000 +350 1286 0.400000 +350 1298 0.400000 +350 1303 0.400000 +350 1305 0.400000 +350 1323 0.400000 +350 1343 0.400000 +350 1364 0.400000 +350 1381 0.400000 +350 1490 0.400000 +350 1512 0.400000 +350 1526 0.400000 +350 1593 0.400000 +350 1735 0.400000 +350 1789 0.400000 +350 1798 0.400000 +350 1909 0.400000 +350 2125 0.400000 +350 2258 0.400000 +350 2287 0.400000 +350 2301 0.400000 +350 2528 0.400000 +350 2577 0.400000 +350 2698 0.400000 +350 2705 0.400000 +350 2749 0.400000 +350 2837 0.400000 +350 2840 0.400000 +350 2858 0.400000 +350 2905 0.400000 +350 2943 0.400000 +350 2997 0.400000 +350 3033 0.400000 +350 3059 0.400000 +351 169 0.400000 +351 271 0.400000 +351 386 0.400000 +351 427 0.400000 +351 455 0.400000 +351 458 0.400000 +351 488 0.400000 +351 514 0.400000 +351 530 0.400000 +351 646 0.400000 +351 713 0.400000 +351 768 0.400000 +351 826 0.400000 +351 857 0.400000 +351 882 0.400000 +351 894 0.400000 +351 921 0.400000 +351 1006 0.400000 +351 1185 0.400000 +351 1255 0.400000 +351 1329 0.400000 +351 1603 0.400000 +351 1649 0.400000 +351 1663 0.400000 +351 1691 0.400000 +351 1846 0.400000 +351 1934 0.400000 +351 1948 0.400000 +351 1949 0.400000 +351 1966 0.400000 +351 1985 0.400000 +351 2011 0.400000 +351 2028 0.400000 +351 2043 0.400000 +351 2331 0.400000 +351 2383 0.400000 +351 2454 0.400000 +351 2495 0.400000 +351 2534 0.400000 +351 2633 0.400000 +351 2648 0.400000 +351 2683 0.400000 +351 2753 0.400000 +351 2786 0.400000 +351 2853 0.400000 +351 2877 0.400000 +351 2929 0.400000 +351 2946 0.400000 +351 2961 0.400000 +351 3080 0.400000 +352 29 0.400000 +352 111 0.400000 +352 112 0.400000 +352 113 0.400000 +352 132 0.400000 +352 145 0.400000 +352 197 0.400000 +352 240 0.400000 +352 245 0.400000 +352 252 0.400000 +352 275 0.400000 +352 297 0.400000 +352 391 0.400000 +352 489 0.400000 +352 503 0.400000 +352 534 0.400000 +352 586 0.400000 +352 631 0.400000 +352 848 0.400000 +352 982 0.400000 +352 986 0.400000 +352 1069 0.400000 +352 1167 0.400000 +352 1192 0.400000 +352 1203 0.400000 +352 1238 0.400000 +352 1270 0.400000 +352 1309 0.400000 +352 1325 0.400000 +352 1369 0.400000 +352 1602 0.400000 +352 1608 0.400000 +352 1632 0.400000 +352 1648 0.400000 +352 1706 0.400000 +352 1891 0.400000 +352 2078 0.400000 +352 2098 0.400000 +352 2100 0.400000 +352 2163 0.400000 +352 2250 0.400000 +352 2480 0.400000 +352 2501 0.400000 +352 2516 0.400000 +352 2611 0.400000 +352 2638 0.400000 +352 2668 0.400000 +352 2686 0.400000 +352 2706 0.400000 +352 2890 0.400000 +352 2903 0.400000 +352 2917 0.400000 +352 2995 0.400000 +353 56 0.400000 +353 60 0.400000 +353 64 0.400000 +353 151 0.400000 +353 183 0.400000 +353 215 0.400000 +353 275 0.400000 +353 342 0.400000 +353 382 0.400000 +353 425 0.400000 +353 430 0.400000 +353 431 0.400000 +353 473 0.400000 +353 501 0.400000 +353 560 0.400000 +353 570 0.400000 +353 574 0.400000 +353 580 0.400000 +353 588 0.400000 +353 892 0.400000 +353 894 0.400000 +353 925 0.400000 +353 968 0.400000 +353 1003 0.400000 +353 1033 0.400000 +353 1050 0.400000 +353 1183 0.400000 +353 1191 0.400000 +353 1226 0.400000 +353 1230 0.400000 +353 1309 0.400000 +353 1351 0.400000 +353 1523 0.400000 +353 1526 0.400000 +353 1529 0.400000 +353 1536 0.400000 +353 1566 0.400000 +353 1606 0.400000 +353 1622 0.400000 +353 1640 0.400000 +353 1652 0.400000 +353 1659 0.400000 +353 1746 0.400000 +353 1751 0.400000 +353 1765 0.400000 +353 1780 0.400000 +353 1815 0.400000 +353 1844 0.400000 +353 2019 0.400000 +353 2062 0.400000 +353 2064 0.400000 +353 2073 0.400000 +353 2111 0.400000 +353 2164 0.400000 +353 2186 0.400000 +353 2208 0.400000 +353 2251 0.400000 +353 2514 0.400000 +353 2521 0.400000 +353 2564 0.400000 +353 2749 0.400000 +353 2791 0.400000 +353 2812 0.400000 +353 2876 0.400000 +353 2901 0.400000 +353 2912 0.400000 +353 2940 0.400000 +353 2966 0.400000 +353 3017 0.400000 +353 3096 0.400000 +353 3139 0.400000 +354 9 0.400000 +354 43 0.400000 +354 46 0.400000 +354 108 0.400000 +354 148 0.400000 +354 238 0.400000 +354 239 0.400000 +354 318 0.400000 +354 335 0.400000 +354 354 0.400000 +354 489 0.400000 +354 509 0.400000 +354 603 0.400000 +354 817 0.400000 +354 922 0.400000 +354 1142 0.400000 +354 1145 0.400000 +354 1225 0.400000 +354 1235 0.400000 +354 1320 0.400000 +354 1363 0.400000 +354 1373 0.400000 +354 1449 0.400000 +354 1459 0.400000 +354 1461 0.400000 +354 1494 0.400000 +354 1527 0.400000 +354 1550 0.400000 +354 1565 0.400000 +354 1606 0.400000 +354 1610 0.400000 +354 1657 0.400000 +354 1710 0.400000 +354 1854 0.400000 +354 1912 0.400000 +354 2026 0.400000 +354 2260 0.400000 +354 2299 0.400000 +354 2311 0.400000 +354 2482 0.400000 +354 2589 0.400000 +354 2656 0.400000 +354 2710 0.400000 +354 2725 0.400000 +354 2727 0.400000 +354 2791 0.400000 +354 2800 0.400000 +354 2809 0.400000 +354 2907 0.400000 +354 3040 0.400000 +354 3129 0.400000 +354 3199 0.400000 +355 122 0.400000 +355 147 0.400000 +355 184 0.400000 +355 187 0.400000 +355 248 0.400000 +355 326 0.400000 +355 338 0.400000 +355 371 0.400000 +355 427 0.400000 +355 444 0.400000 +355 504 0.400000 +355 521 0.400000 +355 580 0.400000 +355 586 0.400000 +355 657 0.400000 +355 805 0.400000 +355 815 0.400000 +355 832 0.400000 +355 873 0.400000 +355 910 0.400000 +355 968 0.400000 +355 988 0.400000 +355 1063 0.400000 +355 1075 0.400000 +355 1111 0.400000 +355 1117 0.400000 +355 1183 0.400000 +355 1209 0.400000 +355 1304 0.400000 +355 1353 0.400000 +355 1364 0.400000 +355 1391 0.400000 +355 1432 0.400000 +355 1439 0.400000 +355 1467 0.400000 +355 1572 0.400000 +355 1584 0.400000 +355 1777 0.400000 +355 1794 0.400000 +355 1932 0.400000 +355 1933 0.400000 +355 1943 0.400000 +355 1965 0.400000 +355 1966 0.400000 +355 1993 0.400000 +355 2008 0.400000 +355 2009 0.400000 +355 2013 0.400000 +355 2016 0.400000 +355 2171 0.400000 +355 2202 0.400000 +355 2228 0.400000 +355 2293 0.400000 +355 2470 0.400000 +355 2664 0.400000 +355 2727 0.400000 +355 2745 0.400000 +355 2797 0.400000 +355 2825 0.400000 +355 2841 0.400000 +355 2845 0.400000 +355 2939 0.400000 +355 2940 0.400000 +355 2993 0.400000 +355 3011 0.400000 +355 3026 0.400000 +355 3072 0.400000 +355 3157 0.400000 +355 3195 0.400000 +356 51 0.400000 +356 121 0.400000 +356 141 0.400000 +356 148 0.400000 +356 340 0.400000 +356 344 0.400000 +356 362 0.400000 +356 386 0.400000 +356 409 0.400000 +356 445 0.400000 +356 469 0.400000 +356 560 0.400000 +356 574 0.400000 +356 593 0.400000 +356 775 0.400000 +356 783 0.400000 +356 867 0.400000 +356 871 0.400000 +356 1144 0.400000 +356 1171 0.400000 +356 1192 0.400000 +356 1196 0.400000 +356 1255 0.400000 +356 1393 0.400000 +356 1513 0.400000 +356 1570 0.400000 +356 1597 0.400000 +356 1621 0.400000 +356 1657 0.400000 +356 1818 0.400000 +356 1834 0.400000 +356 1845 0.400000 +356 1916 0.400000 +356 1936 0.400000 +356 1943 0.400000 +356 2079 0.400000 +356 2125 0.400000 +356 2224 0.400000 +356 2268 0.400000 +356 2280 0.400000 +356 2363 0.400000 +356 2374 0.400000 +356 2400 0.400000 +356 2475 0.400000 +356 2514 0.400000 +356 2627 0.400000 +356 2650 0.400000 +356 2655 0.400000 +356 2673 0.400000 +356 2687 0.400000 +356 2720 0.400000 +356 2745 0.400000 +356 2798 0.400000 +356 2809 0.400000 +356 2816 0.400000 +356 2942 0.400000 +356 2946 0.400000 +356 3070 0.400000 +356 3126 0.400000 +356 3130 0.400000 +356 3144 0.400000 +356 3156 0.400000 +357 3 0.400000 +357 13 0.400000 +357 16 0.400000 +357 53 0.400000 +357 202 0.400000 +357 214 0.400000 +357 379 0.400000 +357 403 0.400000 +357 479 0.400000 +357 484 0.400000 +357 503 0.400000 +357 535 0.400000 +357 596 0.400000 +357 638 0.400000 +357 668 0.400000 +357 713 0.400000 +357 736 0.400000 +357 742 0.400000 +357 768 0.400000 +357 780 0.400000 +357 900 0.400000 +357 907 0.400000 +357 970 0.400000 +357 1017 0.400000 +357 1099 0.400000 +357 1103 0.400000 +357 1168 0.400000 +357 1259 0.400000 +357 1263 0.400000 +357 1368 0.400000 +357 1412 0.400000 +357 1425 0.400000 +357 1434 0.400000 +357 1439 0.400000 +357 1501 0.400000 +357 1520 0.400000 +357 1521 0.400000 +357 1531 0.400000 +357 1577 0.400000 +357 1599 0.400000 +357 1616 0.400000 +357 1651 0.400000 +357 1665 0.400000 +357 1699 0.400000 +357 1760 0.400000 +357 1870 0.400000 +357 2019 0.400000 +357 2033 0.400000 +357 2034 0.400000 +357 2164 0.400000 +357 2199 0.400000 +357 2249 0.400000 +357 2273 0.400000 +357 2316 0.400000 +357 2330 0.400000 +357 2569 0.400000 +357 2613 0.400000 +357 2984 0.400000 +357 3023 0.400000 +357 3133 0.400000 +357 3168 0.400000 +358 68 0.400000 +358 224 0.400000 +358 229 0.400000 +358 287 0.400000 +358 288 0.400000 +358 399 0.400000 +358 405 0.400000 +358 487 0.400000 +358 535 0.400000 +358 580 0.400000 +358 582 0.400000 +358 585 0.400000 +358 592 0.400000 +358 630 0.400000 +358 694 0.400000 +358 733 0.400000 +358 760 0.400000 +358 789 0.400000 +358 823 0.400000 +358 881 0.400000 +358 895 0.400000 +358 937 0.400000 +358 952 0.400000 +358 1070 0.400000 +358 1083 0.400000 +358 1172 0.400000 +358 1226 0.400000 +358 1381 0.400000 +358 1427 0.400000 +358 1496 0.400000 +358 1501 0.400000 +358 1525 0.400000 +358 1549 0.400000 +358 1670 0.400000 +358 1679 0.400000 +358 1706 0.400000 +358 1709 0.400000 +358 1805 0.400000 +358 1825 0.400000 +358 1931 0.400000 +358 1946 0.400000 +358 2181 0.400000 +358 2286 0.400000 +358 2301 0.400000 +358 2307 0.400000 +358 2415 0.400000 +358 2421 0.400000 +358 2479 0.400000 +358 2502 0.400000 +358 2556 0.400000 +358 2597 0.400000 +358 2631 0.400000 +358 2671 0.400000 +358 2772 0.400000 +358 2822 0.400000 +358 2951 0.400000 +358 2978 0.400000 +358 2986 0.400000 +358 3054 0.400000 +358 3112 0.400000 +359 72 0.400000 +359 135 0.400000 +359 149 0.400000 +359 167 0.400000 +359 200 0.400000 +359 239 0.400000 +359 282 0.400000 +359 294 0.400000 +359 395 0.400000 +359 417 0.400000 +359 442 0.400000 +359 475 0.400000 +359 596 0.400000 +359 618 0.400000 +359 626 0.400000 +359 690 0.400000 +359 740 0.400000 +359 803 0.400000 +359 830 0.400000 +359 859 0.400000 +359 965 0.400000 +359 992 0.400000 +359 1017 0.400000 +359 1052 0.400000 +359 1078 0.400000 +359 1082 0.400000 +359 1143 0.400000 +359 1181 0.400000 +359 1232 0.400000 +359 1274 0.400000 +359 1399 0.400000 +359 1440 0.400000 +359 1537 0.400000 +359 1698 0.400000 +359 1740 0.400000 +359 1896 0.400000 +359 1911 0.400000 +359 1952 0.400000 +359 1955 0.400000 +359 2007 0.400000 +359 2030 0.400000 +359 2109 0.400000 +359 2174 0.400000 +359 2180 0.400000 +359 2229 0.400000 +359 2258 0.400000 +359 2399 0.400000 +359 2425 0.400000 +359 2574 0.400000 +359 2748 0.400000 +359 2786 0.400000 +359 2826 0.400000 +359 2877 0.400000 +359 2979 0.400000 +359 3015 0.400000 +359 3145 0.400000 +360 37 0.400000 +360 54 0.400000 +360 186 0.400000 +360 271 0.400000 +360 280 0.400000 +360 281 0.400000 +360 322 0.400000 +360 387 0.400000 +360 431 0.400000 +360 454 0.400000 +360 486 0.400000 +360 487 0.400000 +360 599 0.400000 +360 612 0.400000 +360 768 0.400000 +360 868 0.400000 +360 889 0.400000 +360 907 0.400000 +360 920 0.400000 +360 960 0.400000 +360 1013 0.400000 +360 1126 0.400000 +360 1155 0.400000 +360 1242 0.400000 +360 1307 0.400000 +360 1348 0.400000 +360 1408 0.400000 +360 1487 0.400000 +360 1491 0.400000 +360 1500 0.400000 +360 1515 0.400000 +360 1558 0.400000 +360 1581 0.400000 +360 1612 0.400000 +360 1682 0.400000 +360 1737 0.400000 +360 1838 0.400000 +360 1850 0.400000 +360 1886 0.400000 +360 1892 0.400000 +360 1991 0.400000 +360 2014 0.400000 +360 2050 0.400000 +360 2169 0.400000 +360 2176 0.400000 +360 2252 0.400000 +360 2311 0.400000 +360 2350 0.400000 +360 2366 0.400000 +360 2380 0.400000 +360 2470 0.400000 +360 2472 0.400000 +360 2480 0.400000 +360 2502 0.400000 +360 2578 0.400000 +360 2635 0.400000 +360 2643 0.400000 +360 2756 0.400000 +360 2768 0.400000 +360 2788 0.400000 +360 2892 0.400000 +360 2912 0.400000 +360 2923 0.400000 +360 2935 0.400000 +360 3028 0.400000 +360 3044 0.400000 +360 3062 0.400000 +360 3064 0.400000 +360 3070 0.400000 +360 3078 0.400000 +360 3112 0.400000 +361 63 0.400000 +361 104 0.400000 +361 113 0.400000 +361 119 0.400000 +361 132 0.400000 +361 182 0.400000 +361 191 0.400000 +361 237 0.400000 +361 264 0.400000 +361 316 0.400000 +361 346 0.400000 +361 470 0.400000 +361 661 0.400000 +361 694 0.400000 +361 735 0.400000 +361 774 0.400000 +361 813 0.400000 +361 901 0.400000 +361 1001 0.400000 +361 1004 0.400000 +361 1047 0.400000 +361 1111 0.400000 +361 1199 0.400000 +361 1205 0.400000 +361 1215 0.400000 +361 1273 0.400000 +361 1293 0.400000 +361 1300 0.400000 +361 1305 0.400000 +361 1320 0.400000 +361 1405 0.400000 +361 1445 0.400000 +361 1459 0.400000 +361 1466 0.400000 +361 1587 0.400000 +361 1663 0.400000 +361 1687 0.400000 +361 1707 0.400000 +361 1718 0.400000 +361 1780 0.400000 +361 1794 0.400000 +361 1868 0.400000 +361 1881 0.400000 +361 1990 0.400000 +361 2065 0.400000 +361 2118 0.400000 +361 2138 0.400000 +361 2252 0.400000 +361 2253 0.400000 +361 2266 0.400000 +361 2352 0.400000 +361 2370 0.400000 +361 2428 0.400000 +361 2452 0.400000 +361 2574 0.400000 +361 2595 0.400000 +361 2603 0.400000 +361 2658 0.400000 +361 2699 0.400000 +361 2721 0.400000 +361 2758 0.400000 +361 2855 0.400000 +361 2859 0.400000 +361 2867 0.400000 +361 2928 0.400000 +361 2999 0.400000 +361 3023 0.400000 +361 3026 0.400000 +361 3114 0.400000 +362 293 0.400000 +362 321 0.400000 +362 448 0.400000 +362 478 0.400000 +362 533 0.400000 +362 661 0.400000 +362 749 0.400000 +362 755 0.400000 +362 808 0.400000 +362 827 0.400000 +362 856 0.400000 +362 894 0.400000 +362 1011 0.400000 +362 1080 0.400000 +362 1110 0.400000 +362 1112 0.400000 +362 1128 0.400000 +362 1198 0.400000 +362 1268 0.400000 +362 1316 0.400000 +362 1364 0.400000 +362 1555 0.400000 +362 1590 0.400000 +362 1607 0.400000 +362 1771 0.400000 +362 1863 0.400000 +362 1869 0.400000 +362 1889 0.400000 +362 1940 0.400000 +362 1951 0.400000 +362 1993 0.400000 +362 2085 0.400000 +362 2215 0.400000 +362 2297 0.400000 +362 2338 0.400000 +362 2345 0.400000 +362 2357 0.400000 +362 2568 0.400000 +362 2572 0.400000 +362 2624 0.400000 +362 2658 0.400000 +362 2660 0.400000 +362 2695 0.400000 +362 2706 0.400000 +362 2884 0.400000 +362 2897 0.400000 +362 2949 0.400000 +362 3064 0.400000 +362 3125 0.400000 +362 3173 0.400000 +362 3190 0.400000 +362 3198 0.400000 +363 18 0.400000 +363 72 0.400000 +363 92 0.400000 +363 153 0.400000 +363 154 0.400000 +363 178 0.400000 +363 192 0.400000 +363 204 0.400000 +363 243 0.400000 +363 289 0.400000 +363 345 0.400000 +363 524 0.400000 +363 574 0.400000 +363 626 0.400000 +363 733 0.400000 +363 734 0.400000 +363 819 0.400000 +363 822 0.400000 +363 903 0.400000 +363 962 0.400000 +363 980 0.400000 +363 1078 0.400000 +363 1111 0.400000 +363 1126 0.400000 +363 1373 0.400000 +363 1453 0.400000 +363 1576 0.400000 +363 1717 0.400000 +363 1788 0.400000 +363 2026 0.400000 +363 2038 0.400000 +363 2098 0.400000 +363 2111 0.400000 +363 2119 0.400000 +363 2127 0.400000 +363 2152 0.400000 +363 2177 0.400000 +363 2305 0.400000 +363 2377 0.400000 +363 2385 0.400000 +363 2406 0.400000 +363 2435 0.400000 +363 2476 0.400000 +363 2478 0.400000 +363 2534 0.400000 +363 2568 0.400000 +363 2625 0.400000 +363 2628 0.400000 +363 2642 0.400000 +363 2657 0.400000 +363 2668 0.400000 +363 2699 0.400000 +363 2732 0.400000 +363 2988 0.400000 +363 3061 0.400000 +363 3089 0.400000 +363 3100 0.400000 +364 45 0.400000 +364 176 0.400000 +364 312 0.400000 +364 432 0.400000 +364 445 0.400000 +364 492 0.400000 +364 551 0.400000 +364 566 0.400000 +364 616 0.400000 +364 717 0.400000 +364 736 0.400000 +364 802 0.400000 +364 877 0.400000 +364 893 0.400000 +364 895 0.400000 +364 899 0.400000 +364 928 0.400000 +364 949 0.400000 +364 1000 0.400000 +364 1204 0.400000 +364 1229 0.400000 +364 1232 0.400000 +364 1233 0.400000 +364 1337 0.400000 +364 1369 0.400000 +364 1401 0.400000 +364 1432 0.400000 +364 1454 0.400000 +364 1513 0.400000 +364 1593 0.400000 +364 1860 0.400000 +364 1904 0.400000 +364 1951 0.400000 +364 1962 0.400000 +364 1967 0.400000 +364 1980 0.400000 +364 2079 0.400000 +364 2118 0.400000 +364 2178 0.400000 +364 2289 0.400000 +364 2330 0.400000 +364 2368 0.400000 +364 2406 0.400000 +364 2415 0.400000 +364 2496 0.400000 +364 2586 0.400000 +364 2589 0.400000 +364 2726 0.400000 +364 2813 0.400000 +364 2820 0.400000 +364 2959 0.400000 +364 2972 0.400000 +364 2993 0.400000 +364 2997 0.400000 +364 3045 0.400000 +364 3089 0.400000 +364 3097 0.400000 +364 3142 0.400000 +364 3167 0.400000 +364 3188 0.400000 +365 30 0.400000 +365 58 0.400000 +365 138 0.400000 +365 161 0.400000 +365 166 0.400000 +365 179 0.400000 +365 210 0.400000 +365 217 0.400000 +365 222 0.400000 +365 262 0.400000 +365 324 0.400000 +365 416 0.400000 +365 420 0.400000 +365 471 0.400000 +365 486 0.400000 +365 531 0.400000 +365 568 0.400000 +365 611 0.400000 +365 637 0.400000 +365 772 0.400000 +365 851 0.400000 +365 871 0.400000 +365 878 0.400000 +365 879 0.400000 +365 902 0.400000 +365 998 0.400000 +365 1017 0.400000 +365 1033 0.400000 +365 1063 0.400000 +365 1213 0.400000 +365 1249 0.400000 +365 1298 0.400000 +365 1313 0.400000 +365 1370 0.400000 +365 1520 0.400000 +365 1569 0.400000 +365 1690 0.400000 +365 1733 0.400000 +365 1772 0.400000 +365 1781 0.400000 +365 1791 0.400000 +365 1825 0.400000 +365 1860 0.400000 +365 1867 0.400000 +365 2051 0.400000 +365 2090 0.400000 +365 2094 0.400000 +365 2179 0.400000 +365 2256 0.400000 +365 2334 0.400000 +365 2385 0.400000 +365 2418 0.400000 +365 2427 0.400000 +365 2502 0.400000 +365 2508 0.400000 +365 2597 0.400000 +365 2630 0.400000 +365 2644 0.400000 +365 2669 0.400000 +365 2744 0.400000 +365 2832 0.400000 +365 2870 0.400000 +365 2896 0.400000 +365 2975 0.400000 +365 3038 0.400000 +365 3097 0.400000 +365 3101 0.400000 +365 3119 0.400000 +365 3187 0.400000 +366 6 0.400000 +366 41 0.400000 +366 125 0.400000 +366 171 0.400000 +366 189 0.400000 +366 221 0.400000 +366 282 0.400000 +366 330 0.400000 +366 399 0.400000 +366 502 0.400000 +366 558 0.400000 +366 643 0.400000 +366 693 0.400000 +366 701 0.400000 +366 742 0.400000 +366 779 0.400000 +366 868 0.400000 +366 899 0.400000 +366 988 0.400000 +366 1043 0.400000 +366 1086 0.400000 +366 1121 0.400000 +366 1126 0.400000 +366 1222 0.400000 +366 1229 0.400000 +366 1244 0.400000 +366 1300 0.400000 +366 1326 0.400000 +366 1337 0.400000 +366 1353 0.400000 +366 1401 0.400000 +366 1431 0.400000 +366 1599 0.400000 +366 1608 0.400000 +366 1609 0.400000 +366 1619 0.400000 +366 1623 0.400000 +366 1640 0.400000 +366 1663 0.400000 +366 1843 0.400000 +366 1900 0.400000 +366 1994 0.400000 +366 2108 0.400000 +366 2160 0.400000 +366 2200 0.400000 +366 2241 0.400000 +366 2248 0.400000 +366 2251 0.400000 +366 2259 0.400000 +366 2383 0.400000 +366 2566 0.400000 +366 2581 0.400000 +366 2637 0.400000 +366 2706 0.400000 +366 2764 0.400000 +366 2826 0.400000 +366 2864 0.400000 +366 3086 0.400000 +366 3110 0.400000 +366 3133 0.400000 +366 3172 0.400000 +367 12 0.400000 +367 25 0.400000 +367 58 0.400000 +367 72 0.400000 +367 237 0.400000 +367 255 0.400000 +367 365 0.400000 +367 456 0.400000 +367 526 0.400000 +367 527 0.400000 +367 594 0.400000 +367 714 0.400000 +367 717 0.400000 +367 804 0.400000 +367 867 0.400000 +367 889 0.400000 +367 987 0.400000 +367 990 0.400000 +367 1011 0.400000 +367 1133 0.400000 +367 1155 0.400000 +367 1175 0.400000 +367 1358 0.400000 +367 1366 0.400000 +367 1369 0.400000 +367 1460 0.400000 +367 1512 0.400000 +367 1524 0.400000 +367 1537 0.400000 +367 1593 0.400000 +367 1632 0.400000 +367 1664 0.400000 +367 1692 0.400000 +367 1700 0.400000 +367 1767 0.400000 +367 1780 0.400000 +367 1786 0.400000 +367 1794 0.400000 +367 1818 0.400000 +367 1825 0.400000 +367 1836 0.400000 +367 1857 0.400000 +367 1910 0.400000 +367 1921 0.400000 +367 1929 0.400000 +367 1932 0.400000 +367 1963 0.400000 +367 1988 0.400000 +367 2002 0.400000 +367 2029 0.400000 +367 2061 0.400000 +367 2065 0.400000 +367 2072 0.400000 +367 2077 0.400000 +367 2125 0.400000 +367 2181 0.400000 +367 2308 0.400000 +367 2319 0.400000 +367 2399 0.400000 +367 2420 0.400000 +367 2600 0.400000 +367 2604 0.400000 +367 2641 0.400000 +367 2704 0.400000 +367 2742 0.400000 +367 2750 0.400000 +367 2840 0.400000 +367 2853 0.400000 +367 2938 0.400000 +367 2992 0.400000 +367 3040 0.400000 +367 3108 0.400000 +367 3135 0.400000 +367 3141 0.400000 +367 3144 0.400000 +368 15 0.400000 +368 96 0.400000 +368 106 0.400000 +368 117 0.400000 +368 139 0.400000 +368 307 0.400000 +368 347 0.400000 +368 463 0.400000 +368 469 0.400000 +368 492 0.400000 +368 544 0.400000 +368 569 0.400000 +368 604 0.400000 +368 605 0.400000 +368 618 0.400000 +368 638 0.400000 +368 715 0.400000 +368 729 0.400000 +368 813 0.400000 +368 841 0.400000 +368 863 0.400000 +368 869 0.400000 +368 936 0.400000 +368 944 0.400000 +368 950 0.400000 +368 959 0.400000 +368 1075 0.400000 +368 1084 0.400000 +368 1137 0.400000 +368 1223 0.400000 +368 1267 0.400000 +368 1274 0.400000 +368 1308 0.400000 +368 1341 0.400000 +368 1342 0.400000 +368 1417 0.400000 +368 1543 0.400000 +368 1571 0.400000 +368 1582 0.400000 +368 1672 0.400000 +368 1704 0.400000 +368 1757 0.400000 +368 1828 0.400000 +368 1861 0.400000 +368 1863 0.400000 +368 1873 0.400000 +368 1960 0.400000 +368 2066 0.400000 +368 2119 0.400000 +368 2290 0.400000 +368 2353 0.400000 +368 2357 0.400000 +368 2378 0.400000 +368 2626 0.400000 +368 2687 0.400000 +368 2700 0.400000 +368 2749 0.400000 +368 2752 0.400000 +368 2905 0.400000 +368 3031 0.400000 +368 3048 0.400000 +368 3060 0.400000 +368 3083 0.400000 +368 3085 0.400000 +368 3100 0.400000 +368 3108 0.400000 +368 3136 0.400000 +369 31 0.400000 +369 37 0.400000 +369 65 0.400000 +369 101 0.400000 +369 104 0.400000 +369 127 0.400000 +369 162 0.400000 +369 170 0.400000 +369 176 0.400000 +369 188 0.400000 +369 206 0.400000 +369 279 0.400000 +369 322 0.400000 +369 339 0.400000 +369 351 0.400000 +369 469 0.400000 +369 591 0.400000 +369 635 0.400000 +369 741 0.400000 +369 788 0.400000 +369 797 0.400000 +369 836 0.400000 +369 844 0.400000 +369 866 0.400000 +369 873 0.400000 +369 942 0.400000 +369 946 0.400000 +369 1031 0.400000 +369 1135 0.400000 +369 1191 0.400000 +369 1228 0.400000 +369 1285 0.400000 +369 1451 0.400000 +369 1477 0.400000 +369 1542 0.400000 +369 1561 0.400000 +369 1563 0.400000 +369 1606 0.400000 +369 1683 0.400000 +369 1689 0.400000 +369 1714 0.400000 +369 1750 0.400000 +369 1773 0.400000 +369 1881 0.400000 +369 1910 0.400000 +369 1923 0.400000 +369 2007 0.400000 +369 2034 0.400000 +369 2061 0.400000 +369 2103 0.400000 +369 2130 0.400000 +369 2145 0.400000 +369 2191 0.400000 +369 2253 0.400000 +369 2295 0.400000 +369 2352 0.400000 +369 2544 0.400000 +369 2582 0.400000 +369 2592 0.400000 +369 2618 0.400000 +369 2641 0.400000 +369 2661 0.400000 +369 2677 0.400000 +369 2707 0.400000 +369 2754 0.400000 +369 2934 0.400000 +369 3058 0.400000 +369 3061 0.400000 +369 3101 0.400000 +369 3139 0.400000 +369 3157 0.400000 +369 3169 0.400000 +369 3195 0.400000 +370 244 0.400000 +370 500 0.400000 +370 511 0.400000 +370 579 0.400000 +370 605 0.400000 +370 694 0.400000 +370 811 0.400000 +370 826 0.400000 +370 864 0.400000 +370 912 0.400000 +370 1052 0.400000 +370 1057 0.400000 +370 1102 0.400000 +370 1143 0.400000 +370 1231 0.400000 +370 1238 0.400000 +370 1244 0.400000 +370 1271 0.400000 +370 1272 0.400000 +370 1366 0.400000 +370 1441 0.400000 +370 1444 0.400000 +370 1449 0.400000 +370 1489 0.400000 +370 1566 0.400000 +370 1608 0.400000 +370 1610 0.400000 +370 1642 0.400000 +370 1756 0.400000 +370 1838 0.400000 +370 1982 0.400000 +370 2036 0.400000 +370 2088 0.400000 +370 2100 0.400000 +370 2116 0.400000 +370 2173 0.400000 +370 2187 0.400000 +370 2255 0.400000 +370 2316 0.400000 +370 2474 0.400000 +370 2493 0.400000 +370 2504 0.400000 +370 2530 0.400000 +370 2556 0.400000 +370 2582 0.400000 +370 2752 0.400000 +370 2778 0.400000 +370 2874 0.400000 +370 2877 0.400000 +370 3136 0.400000 +370 3155 0.400000 +371 204 0.400000 +371 231 0.400000 +371 281 0.400000 +371 291 0.400000 +371 312 0.400000 +371 394 0.400000 +371 457 0.400000 +371 478 0.400000 +371 540 0.400000 +371 562 0.400000 +371 577 0.400000 +371 608 0.400000 +371 656 0.400000 +371 675 0.400000 +371 699 0.400000 +371 915 0.400000 +371 930 0.400000 +371 1031 0.400000 +371 1076 0.400000 +371 1154 0.400000 +371 1167 0.400000 +371 1192 0.400000 +371 1277 0.400000 +371 1306 0.400000 +371 1344 0.400000 +371 1347 0.400000 +371 1443 0.400000 +371 1461 0.400000 +371 1507 0.400000 +371 1510 0.400000 +371 1545 0.400000 +371 1632 0.400000 +371 1686 0.400000 +371 1689 0.400000 +371 1724 0.400000 +371 1728 0.400000 +371 1748 0.400000 +371 1773 0.400000 +371 1912 0.400000 +371 1951 0.400000 +371 2017 0.400000 +371 2142 0.400000 +371 2318 0.400000 +371 2345 0.400000 +371 2388 0.400000 +371 2459 0.400000 +371 2557 0.400000 +371 2590 0.400000 +371 2637 0.400000 +371 2684 0.400000 +371 2690 0.400000 +371 2774 0.400000 +371 2778 0.400000 +371 2826 0.400000 +371 3022 0.400000 +371 3095 0.400000 +371 3097 0.400000 +371 3194 0.400000 +372 93 0.400000 +372 152 0.400000 +372 210 0.400000 +372 269 0.400000 +372 272 0.400000 +372 366 0.400000 +372 377 0.400000 +372 424 0.400000 +372 524 0.400000 +372 566 0.400000 +372 618 0.400000 +372 663 0.400000 +372 682 0.400000 +372 729 0.400000 +372 864 0.400000 +372 892 0.400000 +372 956 0.400000 +372 968 0.400000 +372 1064 0.400000 +372 1079 0.400000 +372 1167 0.400000 +372 1260 0.400000 +372 1277 0.400000 +372 1286 0.400000 +372 1379 0.400000 +372 1433 0.400000 +372 1493 0.400000 +372 1504 0.400000 +372 1506 0.400000 +372 1507 0.400000 +372 1739 0.400000 +372 1762 0.400000 +372 1782 0.400000 +372 1866 0.400000 +372 1926 0.400000 +372 1966 0.400000 +372 1976 0.400000 +372 1980 0.400000 +372 2108 0.400000 +372 2272 0.400000 +372 2277 0.400000 +372 2326 0.400000 +372 2344 0.400000 +372 2515 0.400000 +372 2575 0.400000 +372 2593 0.400000 +372 2599 0.400000 +372 2656 0.400000 +372 2726 0.400000 +372 2845 0.400000 +372 2858 0.400000 +372 2866 0.400000 +372 2918 0.400000 +372 2967 0.400000 +372 2983 0.400000 +372 2997 0.400000 +372 3053 0.400000 +372 3120 0.400000 +373 61 0.400000 +373 72 0.400000 +373 94 0.400000 +373 132 0.400000 +373 157 0.400000 +373 158 0.400000 +373 177 0.400000 +373 244 0.400000 +373 271 0.400000 +373 313 0.400000 +373 330 0.400000 +373 581 0.400000 +373 597 0.400000 +373 601 0.400000 +373 682 0.400000 +373 693 0.400000 +373 761 0.400000 +373 799 0.400000 +373 844 0.400000 +373 919 0.400000 +373 936 0.400000 +373 1087 0.400000 +373 1099 0.400000 +373 1104 0.400000 +373 1148 0.400000 +373 1303 0.400000 +373 1312 0.400000 +373 1347 0.400000 +373 1429 0.400000 +373 1528 0.400000 +373 1547 0.400000 +373 1582 0.400000 +373 1685 0.400000 +373 1703 0.400000 +373 1990 0.400000 +373 2027 0.400000 +373 2045 0.400000 +373 2062 0.400000 +373 2085 0.400000 +373 2253 0.400000 +373 2255 0.400000 +373 2289 0.400000 +373 2367 0.400000 +373 2403 0.400000 +373 2431 0.400000 +373 2526 0.400000 +373 2547 0.400000 +373 2559 0.400000 +373 2593 0.400000 +373 2628 0.400000 +373 2636 0.400000 +373 2705 0.400000 +373 2731 0.400000 +373 2755 0.400000 +373 2760 0.400000 +373 2795 0.400000 +373 2803 0.400000 +373 2825 0.400000 +373 2862 0.400000 +373 2895 0.400000 +373 2934 0.400000 +373 3035 0.400000 +373 3056 0.400000 +373 3153 0.400000 +373 3177 0.400000 +374 16 0.400000 +374 131 0.400000 +374 158 0.400000 +374 281 0.400000 +374 327 0.400000 +374 344 0.400000 +374 420 0.400000 +374 489 0.400000 +374 509 0.400000 +374 644 0.400000 +374 708 0.400000 +374 712 0.400000 +374 770 0.400000 +374 773 0.400000 +374 813 0.400000 +374 881 0.400000 +374 951 0.400000 +374 958 0.400000 +374 976 0.400000 +374 1040 0.400000 +374 1115 0.400000 +374 1198 0.400000 +374 1205 0.400000 +374 1230 0.400000 +374 1301 0.400000 +374 1445 0.400000 +374 1484 0.400000 +374 1496 0.400000 +374 1646 0.400000 +374 1656 0.400000 +374 1657 0.400000 +374 1676 0.400000 +374 1719 0.400000 +374 1753 0.400000 +374 2107 0.400000 +374 2108 0.400000 +374 2171 0.400000 +374 2235 0.400000 +374 2318 0.400000 +374 2322 0.400000 +374 2345 0.400000 +374 2417 0.400000 +374 2444 0.400000 +374 2531 0.400000 +374 2533 0.400000 +374 2553 0.400000 +374 2675 0.400000 +374 2707 0.400000 +374 2853 0.400000 +374 3033 0.400000 +374 3068 0.400000 +374 3078 0.400000 +374 3110 0.400000 +375 11 0.400000 +375 66 0.400000 +375 129 0.400000 +375 132 0.400000 +375 191 0.400000 +375 194 0.400000 +375 197 0.400000 +375 218 0.400000 +375 236 0.400000 +375 304 0.400000 +375 338 0.400000 +375 374 0.400000 +375 390 0.400000 +375 575 0.400000 +375 637 0.400000 +375 665 0.400000 +375 680 0.400000 +375 795 0.400000 +375 902 0.400000 +375 951 0.400000 +375 957 0.400000 +375 960 0.400000 +375 987 0.400000 +375 1098 0.400000 +375 1182 0.400000 +375 1193 0.400000 +375 1196 0.400000 +375 1216 0.400000 +375 1220 0.400000 +375 1223 0.400000 +375 1325 0.400000 +375 1344 0.400000 +375 1574 0.400000 +375 1575 0.400000 +375 1614 0.400000 +375 1642 0.400000 +375 1700 0.400000 +375 1747 0.400000 +375 1760 0.400000 +375 1888 0.400000 +375 1960 0.400000 +375 1965 0.400000 +375 1999 0.400000 +375 2012 0.400000 +375 2026 0.400000 +375 2127 0.400000 +375 2206 0.400000 +375 2257 0.400000 +375 2264 0.400000 +375 2306 0.400000 +375 2311 0.400000 +375 2321 0.400000 +375 2441 0.400000 +375 2473 0.400000 +375 2683 0.400000 +375 2713 0.400000 +375 2749 0.400000 +375 2779 0.400000 +375 2828 0.400000 +375 2937 0.400000 +375 2993 0.400000 +375 3120 0.400000 +375 3154 0.400000 +375 3166 0.400000 +375 3186 0.400000 +376 88 0.400000 +376 93 0.400000 +376 120 0.400000 +376 129 0.400000 +376 168 0.400000 +376 185 0.400000 +376 197 0.400000 +376 227 0.400000 +376 263 0.400000 +376 299 0.400000 +376 370 0.400000 +376 447 0.400000 +376 541 0.400000 +376 554 0.400000 +376 562 0.400000 +376 613 0.400000 +376 621 0.400000 +376 623 0.400000 +376 723 0.400000 +376 801 0.400000 +376 841 0.400000 +376 859 0.400000 +376 871 0.400000 +376 936 0.400000 +376 969 0.400000 +376 996 0.400000 +376 1060 0.400000 +376 1084 0.400000 +376 1182 0.400000 +376 1205 0.400000 +376 1258 0.400000 +376 1288 0.400000 +376 1305 0.400000 +376 1406 0.400000 +376 1478 0.400000 +376 1488 0.400000 +376 1517 0.400000 +376 1577 0.400000 +376 1585 0.400000 +376 1738 0.400000 +376 1768 0.400000 +376 1769 0.400000 +376 1822 0.400000 +376 1842 0.400000 +376 1844 0.400000 +376 1877 0.400000 +376 1887 0.400000 +376 1909 0.400000 +376 2035 0.400000 +376 2147 0.400000 +376 2268 0.400000 +376 2311 0.400000 +376 2355 0.400000 +376 2476 0.400000 +376 2579 0.400000 +376 2659 0.400000 +376 2725 0.400000 +376 2763 0.400000 +376 2894 0.400000 +376 2990 0.400000 +376 3019 0.400000 +376 3020 0.400000 +376 3031 0.400000 +376 3191 0.400000 +377 85 0.400000 +377 223 0.400000 +377 270 0.400000 +377 330 0.400000 +377 358 0.400000 +377 388 0.400000 +377 441 0.400000 +377 459 0.400000 +377 471 0.400000 +377 579 0.400000 +377 772 0.400000 +377 810 0.400000 +377 812 0.400000 +377 832 0.400000 +377 852 0.400000 +377 902 0.400000 +377 985 0.400000 +377 1022 0.400000 +377 1121 0.400000 +377 1256 0.400000 +377 1273 0.400000 +377 1376 0.400000 +377 1463 0.400000 +377 1509 0.400000 +377 1522 0.400000 +377 1579 0.400000 +377 1580 0.400000 +377 1600 0.400000 +377 1696 0.400000 +377 1747 0.400000 +377 1815 0.400000 +377 1843 0.400000 +377 1897 0.400000 +377 1914 0.400000 +377 1996 0.400000 +377 2073 0.400000 +377 2132 0.400000 +377 2143 0.400000 +377 2177 0.400000 +377 2287 0.400000 +377 2334 0.400000 +377 2335 0.400000 +377 2380 0.400000 +377 2389 0.400000 +377 2404 0.400000 +377 2448 0.400000 +377 2485 0.400000 +377 2594 0.400000 +377 2610 0.400000 +377 2662 0.400000 +377 2687 0.400000 +377 2724 0.400000 +377 2833 0.400000 +377 2842 0.400000 +377 2849 0.400000 +377 2903 0.400000 +377 2908 0.400000 +377 2994 0.400000 +377 3009 0.400000 +377 3041 0.400000 +377 3128 0.400000 +377 3183 0.400000 +378 7 0.400000 +378 15 0.400000 +378 40 0.400000 +378 62 0.400000 +378 113 0.400000 +378 158 0.400000 +378 183 0.400000 +378 224 0.400000 +378 239 0.400000 +378 243 0.400000 +378 264 0.400000 +378 495 0.400000 +378 511 0.400000 +378 563 0.400000 +378 603 0.400000 +378 632 0.400000 +378 649 0.400000 +378 811 0.400000 +378 950 0.400000 +378 952 0.400000 +378 955 0.400000 +378 1015 0.400000 +378 1071 0.400000 +378 1106 0.400000 +378 1144 0.400000 +378 1226 0.400000 +378 1256 0.400000 +378 1278 0.400000 +378 1294 0.400000 +378 1338 0.400000 +378 1492 0.400000 +378 1518 0.400000 +378 1565 0.400000 +378 1618 0.400000 +378 1639 0.400000 +378 1733 0.400000 +378 1799 0.400000 +378 1808 0.400000 +378 2005 0.400000 +378 2014 0.400000 +378 2056 0.400000 +378 2228 0.400000 +378 2242 0.400000 +378 2253 0.400000 +378 2259 0.400000 +378 2264 0.400000 +378 2284 0.400000 +378 2374 0.400000 +378 2430 0.400000 +378 2441 0.400000 +378 2501 0.400000 +378 2549 0.400000 +378 2589 0.400000 +378 2632 0.400000 +378 2652 0.400000 +378 2740 0.400000 +378 2742 0.400000 +378 2778 0.400000 +378 2791 0.400000 +378 2860 0.400000 +378 3063 0.400000 +378 3103 0.400000 +378 3112 0.400000 +378 3114 0.400000 +378 3192 0.400000 +379 31 0.400000 +379 36 0.400000 +379 105 0.400000 +379 213 0.400000 +379 262 0.400000 +379 279 0.400000 +379 296 0.400000 +379 368 0.400000 +379 419 0.400000 +379 462 0.400000 +379 513 0.400000 +379 568 0.400000 +379 713 0.400000 +379 719 0.400000 +379 744 0.400000 +379 814 0.400000 +379 837 0.400000 +379 840 0.400000 +379 928 0.400000 +379 1045 0.400000 +379 1057 0.400000 +379 1112 0.400000 +379 1158 0.400000 +379 1169 0.400000 +379 1236 0.400000 +379 1342 0.400000 +379 1443 0.400000 +379 1458 0.400000 +379 1546 0.400000 +379 1568 0.400000 +379 1589 0.400000 +379 1626 0.400000 +379 1673 0.400000 +379 1681 0.400000 +379 1684 0.400000 +379 1686 0.400000 +379 1732 0.400000 +379 1756 0.400000 +379 1779 0.400000 +379 1811 0.400000 +379 1888 0.400000 +379 1905 0.400000 +379 1960 0.400000 +379 1970 0.400000 +379 2010 0.400000 +379 2093 0.400000 +379 2106 0.400000 +379 2227 0.400000 +379 2435 0.400000 +379 2471 0.400000 +379 2517 0.400000 +379 2524 0.400000 +379 2532 0.400000 +379 2542 0.400000 +379 2607 0.400000 +379 2624 0.400000 +379 2645 0.400000 +379 2665 0.400000 +379 2685 0.400000 +379 2737 0.400000 +379 2755 0.400000 +379 2809 0.400000 +379 2812 0.400000 +379 2828 0.400000 +379 2846 0.400000 +379 2891 0.400000 +379 2910 0.400000 +379 2940 0.400000 +379 2995 0.400000 +379 2998 0.400000 +380 37 0.400000 +380 119 0.400000 +380 152 0.400000 +380 182 0.400000 +380 201 0.400000 +380 269 0.400000 +380 300 0.400000 +380 590 0.400000 +380 636 0.400000 +380 740 0.400000 +380 766 0.400000 +380 785 0.400000 +380 953 0.400000 +380 1049 0.400000 +380 1068 0.400000 +380 1232 0.400000 +380 1324 0.400000 +380 1327 0.400000 +380 1360 0.400000 +380 1389 0.400000 +380 1408 0.400000 +380 1454 0.400000 +380 1565 0.400000 +380 1596 0.400000 +380 1763 0.400000 +380 1789 0.400000 +380 1875 0.400000 +380 2033 0.400000 +380 2101 0.400000 +380 2114 0.400000 +380 2189 0.400000 +380 2239 0.400000 +380 2280 0.400000 +380 2326 0.400000 +380 2394 0.400000 +380 2418 0.400000 +380 2542 0.400000 +380 2572 0.400000 +380 2625 0.400000 +380 2635 0.400000 +380 2690 0.400000 +380 2748 0.400000 +380 2899 0.400000 +380 3119 0.400000 +381 10 0.400000 +381 13 0.400000 +381 168 0.400000 +381 212 0.400000 +381 228 0.400000 +381 272 0.400000 +381 357 0.400000 +381 377 0.400000 +381 406 0.400000 +381 447 0.400000 +381 467 0.400000 +381 469 0.400000 +381 491 0.400000 +381 652 0.400000 +381 653 0.400000 +381 749 0.400000 +381 984 0.400000 +381 999 0.400000 +381 1007 0.400000 +381 1035 0.400000 +381 1050 0.400000 +381 1090 0.400000 +381 1136 0.400000 +381 1206 0.400000 +381 1326 0.400000 +381 1344 0.400000 +381 1346 0.400000 +381 1391 0.400000 +381 1465 0.400000 +381 1482 0.400000 +381 1526 0.400000 +381 1555 0.400000 +381 1633 0.400000 +381 1649 0.400000 +381 1663 0.400000 +381 1710 0.400000 +381 1741 0.400000 +381 1803 0.400000 +381 1847 0.400000 +381 1848 0.400000 +381 1892 0.400000 +381 1905 0.400000 +381 1944 0.400000 +381 1964 0.400000 +381 1971 0.400000 +381 2012 0.400000 +381 2087 0.400000 +381 2088 0.400000 +381 2221 0.400000 +381 2337 0.400000 +381 2395 0.400000 +381 2507 0.400000 +381 2510 0.400000 +381 2653 0.400000 +381 2678 0.400000 +381 2696 0.400000 +381 2699 0.400000 +381 2710 0.400000 +381 2741 0.400000 +381 2774 0.400000 +381 2797 0.400000 +381 2880 0.400000 +381 2953 0.400000 +381 2962 0.400000 +381 2966 0.400000 +381 2972 0.400000 +381 2981 0.400000 +381 2992 0.400000 +381 3047 0.400000 +381 3050 0.400000 +381 3095 0.400000 +381 3115 0.400000 +381 3148 0.400000 +382 17 0.400000 +382 34 0.400000 +382 55 0.400000 +382 91 0.400000 +382 100 0.400000 +382 134 0.400000 +382 183 0.400000 +382 184 0.400000 +382 229 0.400000 +382 240 0.400000 +382 317 0.400000 +382 417 0.400000 +382 472 0.400000 +382 507 0.400000 +382 549 0.400000 +382 553 0.400000 +382 607 0.400000 +382 609 0.400000 +382 707 0.400000 +382 888 0.400000 +382 892 0.400000 +382 920 0.400000 +382 943 0.400000 +382 972 0.400000 +382 994 0.400000 +382 995 0.400000 +382 1037 0.400000 +382 1085 0.400000 +382 1129 0.400000 +382 1322 0.400000 +382 1613 0.400000 +382 1637 0.400000 +382 1656 0.400000 +382 1745 0.400000 +382 1759 0.400000 +382 1808 0.400000 +382 1822 0.400000 +382 1939 0.400000 +382 1967 0.400000 +382 1972 0.400000 +382 2145 0.400000 +382 2313 0.400000 +382 2361 0.400000 +382 2366 0.400000 +382 2396 0.400000 +382 2450 0.400000 +382 2475 0.400000 +382 2512 0.400000 +382 2524 0.400000 +382 2642 0.400000 +382 2657 0.400000 +382 2792 0.400000 +382 2856 0.400000 +382 2873 0.400000 +382 2918 0.400000 +382 2932 0.400000 +382 2945 0.400000 +382 2963 0.400000 +382 3002 0.400000 +382 3061 0.400000 +382 3151 0.400000 +382 3191 0.400000 +383 193 0.400000 +383 271 0.400000 +383 286 0.400000 +383 348 0.400000 +383 376 0.400000 +383 380 0.400000 +383 415 0.400000 +383 420 0.400000 +383 546 0.400000 +383 622 0.400000 +383 632 0.400000 +383 635 0.400000 +383 724 0.400000 +383 726 0.400000 +383 737 0.400000 +383 754 0.400000 +383 832 0.400000 +383 837 0.400000 +383 844 0.400000 +383 919 0.400000 +383 960 0.400000 +383 978 0.400000 +383 1071 0.400000 +383 1114 0.400000 +383 1142 0.400000 +383 1168 0.400000 +383 1322 0.400000 +383 1335 0.400000 +383 1339 0.400000 +383 1352 0.400000 +383 1360 0.400000 +383 1386 0.400000 +383 1411 0.400000 +383 1438 0.400000 +383 1467 0.400000 +383 1664 0.400000 +383 1672 0.400000 +383 1683 0.400000 +383 1752 0.400000 +383 1817 0.400000 +383 1820 0.400000 +383 1841 0.400000 +383 1848 0.400000 +383 1872 0.400000 +383 1999 0.400000 +383 2027 0.400000 +383 2095 0.400000 +383 2125 0.400000 +383 2349 0.400000 +383 2388 0.400000 +383 2400 0.400000 +383 2402 0.400000 +383 2415 0.400000 +383 2452 0.400000 +383 2460 0.400000 +383 2508 0.400000 +383 2541 0.400000 +383 2550 0.400000 +383 2561 0.400000 +383 2568 0.400000 +383 2597 0.400000 +383 2806 0.400000 +383 2853 0.400000 +383 2854 0.400000 +383 2859 0.400000 +383 2902 0.400000 +383 2911 0.400000 +383 2914 0.400000 +383 2930 0.400000 +383 2985 0.400000 +383 2990 0.400000 +383 3043 0.400000 +383 3083 0.400000 +383 3096 0.400000 +383 3140 0.400000 +384 68 0.400000 +384 93 0.400000 +384 106 0.400000 +384 146 0.400000 +384 237 0.400000 +384 246 0.400000 +384 252 0.400000 +384 257 0.400000 +384 424 0.400000 +384 429 0.400000 +384 496 0.400000 +384 579 0.400000 +384 586 0.400000 +384 598 0.400000 +384 638 0.400000 +384 763 0.400000 +384 800 0.400000 +384 804 0.400000 +384 900 0.400000 +384 1016 0.400000 +384 1042 0.400000 +384 1053 0.400000 +384 1093 0.400000 +384 1138 0.400000 +384 1249 0.400000 +384 1307 0.400000 +384 1313 0.400000 +384 1357 0.400000 +384 1387 0.400000 +384 1390 0.400000 +384 1497 0.400000 +384 1525 0.400000 +384 1532 0.400000 +384 1575 0.400000 +384 1615 0.400000 +384 1618 0.400000 +384 1655 0.400000 +384 1707 0.400000 +384 1757 0.400000 +384 1758 0.400000 +384 1784 0.400000 +384 1794 0.400000 +384 1807 0.400000 +384 1815 0.400000 +384 1857 0.400000 +384 2004 0.400000 +384 2038 0.400000 +384 2049 0.400000 +384 2051 0.400000 +384 2058 0.400000 +384 2066 0.400000 +384 2094 0.400000 +384 2162 0.400000 +384 2182 0.400000 +384 2356 0.400000 +384 2396 0.400000 +384 2460 0.400000 +384 2525 0.400000 +384 2560 0.400000 +384 2656 0.400000 +384 2795 0.400000 +384 2841 0.400000 +384 2842 0.400000 +384 2890 0.400000 +384 2894 0.400000 +384 2967 0.400000 +384 2969 0.400000 +384 2983 0.400000 +384 3049 0.400000 +384 3052 0.400000 +384 3060 0.400000 +384 3090 0.400000 +384 3160 0.400000 +384 3162 0.400000 +384 3176 0.400000 +384 3181 0.400000 +385 64 0.400000 +385 103 0.400000 +385 188 0.400000 +385 214 0.400000 +385 255 0.400000 +385 261 0.400000 +385 312 0.400000 +385 327 0.400000 +385 344 0.400000 +385 345 0.400000 +385 349 0.400000 +385 372 0.400000 +385 388 0.400000 +385 392 0.400000 +385 543 0.400000 +385 548 0.400000 +385 565 0.400000 +385 649 0.400000 +385 711 0.400000 +385 744 0.400000 +385 806 0.400000 +385 807 0.400000 +385 824 0.400000 +385 883 0.400000 +385 929 0.400000 +385 975 0.400000 +385 976 0.400000 +385 1113 0.400000 +385 1182 0.400000 +385 1185 0.400000 +385 1310 0.400000 +385 1333 0.400000 +385 1348 0.400000 +385 1384 0.400000 +385 1407 0.400000 +385 1479 0.400000 +385 1558 0.400000 +385 1580 0.400000 +385 1588 0.400000 +385 1938 0.400000 +385 1939 0.400000 +385 1961 0.400000 +385 1970 0.400000 +385 1990 0.400000 +385 2069 0.400000 +385 2222 0.400000 +385 2255 0.400000 +385 2343 0.400000 +385 2398 0.400000 +385 2486 0.400000 +385 2487 0.400000 +385 2496 0.400000 +385 2527 0.400000 +385 2648 0.400000 +385 2659 0.400000 +385 2745 0.400000 +385 2769 0.400000 +385 2817 0.400000 +385 2819 0.400000 +385 2893 0.400000 +385 2900 0.400000 +385 2905 0.400000 +385 2921 0.400000 +385 2977 0.400000 +385 2978 0.400000 +385 2988 0.400000 +385 3004 0.400000 +385 3023 0.400000 +385 3047 0.400000 +386 4 0.400000 +386 30 0.400000 +386 79 0.400000 +386 112 0.400000 +386 117 0.400000 +386 127 0.400000 +386 131 0.400000 +386 160 0.400000 +386 224 0.400000 +386 234 0.400000 +386 268 0.400000 +386 307 0.400000 +386 402 0.400000 +386 419 0.400000 +386 496 0.400000 +386 564 0.400000 +386 636 0.400000 +386 642 0.400000 +386 715 0.400000 +386 727 0.400000 +386 731 0.400000 +386 752 0.400000 +386 1024 0.400000 +386 1056 0.400000 +386 1061 0.400000 +386 1164 0.400000 +386 1211 0.400000 +386 1317 0.400000 +386 1390 0.400000 +386 1402 0.400000 +386 1445 0.400000 +386 1472 0.400000 +386 1585 0.400000 +386 1607 0.400000 +386 1779 0.400000 +386 1785 0.400000 +386 1838 0.400000 +386 1851 0.400000 +386 1947 0.400000 +386 2047 0.400000 +386 2052 0.400000 +386 2093 0.400000 +386 2109 0.400000 +386 2132 0.400000 +386 2139 0.400000 +386 2142 0.400000 +386 2153 0.400000 +386 2198 0.400000 +386 2239 0.400000 +386 2242 0.400000 +386 2271 0.400000 +386 2401 0.400000 +386 2403 0.400000 +386 2665 0.400000 +386 2682 0.400000 +386 2722 0.400000 +386 2767 0.400000 +386 2795 0.400000 +386 3051 0.400000 +386 3082 0.400000 +386 3101 0.400000 +386 3195 0.400000 +387 7 0.400000 +387 92 0.400000 +387 130 0.400000 +387 191 0.400000 +387 260 0.400000 +387 285 0.400000 +387 304 0.400000 +387 351 0.400000 +387 355 0.400000 +387 357 0.400000 +387 409 0.400000 +387 465 0.400000 +387 544 0.400000 +387 555 0.400000 +387 602 0.400000 +387 621 0.400000 +387 657 0.400000 +387 704 0.400000 +387 734 0.400000 +387 913 0.400000 +387 917 0.400000 +387 966 0.400000 +387 989 0.400000 +387 1102 0.400000 +387 1246 0.400000 +387 1258 0.400000 +387 1330 0.400000 +387 1494 0.400000 +387 1579 0.400000 +387 1591 0.400000 +387 1621 0.400000 +387 1685 0.400000 +387 1778 0.400000 +387 1877 0.400000 +387 1937 0.400000 +387 1966 0.400000 +387 1972 0.400000 +387 2092 0.400000 +387 2114 0.400000 +387 2236 0.400000 +387 2242 0.400000 +387 2332 0.400000 +387 2339 0.400000 +387 2515 0.400000 +387 2664 0.400000 +387 2700 0.400000 +387 2857 0.400000 +387 2904 0.400000 +387 2941 0.400000 +387 2981 0.400000 +387 3017 0.400000 +387 3062 0.400000 +387 3063 0.400000 +387 3138 0.400000 +387 3165 0.400000 +387 3197 0.400000 +388 23 0.400000 +388 30 0.400000 +388 160 0.400000 +388 209 0.400000 +388 221 0.400000 +388 232 0.400000 +388 332 0.400000 +388 496 0.400000 +388 547 0.400000 +388 576 0.400000 +388 665 0.400000 +388 809 0.400000 +388 923 0.400000 +388 928 0.400000 +388 947 0.400000 +388 984 0.400000 +388 1017 0.400000 +388 1038 0.400000 +388 1087 0.400000 +388 1174 0.400000 +388 1190 0.400000 +388 1191 0.400000 +388 1194 0.400000 +388 1302 0.400000 +388 1368 0.400000 +388 1373 0.400000 +388 1457 0.400000 +388 1541 0.400000 +388 1561 0.400000 +388 1591 0.400000 +388 1687 0.400000 +388 1716 0.400000 +388 1769 0.400000 +388 1787 0.400000 +388 1802 0.400000 +388 1807 0.400000 +388 1874 0.400000 +388 1917 0.400000 +388 1948 0.400000 +388 2065 0.400000 +388 2187 0.400000 +388 2197 0.400000 +388 2205 0.400000 +388 2243 0.400000 +388 2264 0.400000 +388 2294 0.400000 +388 2305 0.400000 +388 2337 0.400000 +388 2385 0.400000 +388 2442 0.400000 +388 2443 0.400000 +388 2471 0.400000 +388 2607 0.400000 +388 2676 0.400000 +388 3011 0.400000 +388 3051 0.400000 +388 3068 0.400000 +388 3129 0.400000 +388 3158 0.400000 +389 92 0.400000 +389 137 0.400000 +389 223 0.400000 +389 382 0.400000 +389 569 0.400000 +389 580 0.400000 +389 633 0.400000 +389 669 0.400000 +389 713 0.400000 +389 717 0.400000 +389 726 0.400000 +389 772 0.400000 +389 905 0.400000 +389 924 0.400000 +389 972 0.400000 +389 1004 0.400000 +389 1063 0.400000 +389 1160 0.400000 +389 1175 0.400000 +389 1203 0.400000 +389 1369 0.400000 +389 1387 0.400000 +389 1399 0.400000 +389 1406 0.400000 +389 1409 0.400000 +389 1450 0.400000 +389 1453 0.400000 +389 1688 0.400000 +389 1785 0.400000 +389 1796 0.400000 +389 1910 0.400000 +389 1946 0.400000 +389 1982 0.400000 +389 2019 0.400000 +389 2064 0.400000 +389 2293 0.400000 +389 2340 0.400000 +389 2543 0.400000 +389 2629 0.400000 +389 2634 0.400000 +389 2675 0.400000 +389 2743 0.400000 +389 2785 0.400000 +389 2817 0.400000 +389 2984 0.400000 +389 3006 0.400000 +389 3043 0.400000 +389 3103 0.400000 +389 3131 0.400000 +389 3142 0.400000 +389 3173 0.400000 +390 47 0.400000 +390 60 0.400000 +390 88 0.400000 +390 114 0.400000 +390 118 0.400000 +390 231 0.400000 +390 407 0.400000 +390 448 0.400000 +390 497 0.400000 +390 501 0.400000 +390 551 0.400000 +390 570 0.400000 +390 615 0.400000 +390 623 0.400000 +390 707 0.400000 +390 713 0.400000 +390 728 0.400000 +390 767 0.400000 +390 772 0.400000 +390 797 0.400000 +390 880 0.400000 +390 932 0.400000 +390 984 0.400000 +390 1053 0.400000 +390 1076 0.400000 +390 1110 0.400000 +390 1113 0.400000 +390 1211 0.400000 +390 1216 0.400000 +390 1231 0.400000 +390 1258 0.400000 +390 1284 0.400000 +390 1373 0.400000 +390 1407 0.400000 +390 1681 0.400000 +390 1695 0.400000 +390 1795 0.400000 +390 1803 0.400000 +390 1862 0.400000 +390 1869 0.400000 +390 1887 0.400000 +390 1901 0.400000 +390 1974 0.400000 +390 2001 0.400000 +390 2014 0.400000 +390 2151 0.400000 +390 2168 0.400000 +390 2193 0.400000 +390 2400 0.400000 +390 2417 0.400000 +390 2497 0.400000 +390 2529 0.400000 +390 2571 0.400000 +390 2573 0.400000 +390 2581 0.400000 +390 2666 0.400000 +390 2696 0.400000 +390 2710 0.400000 +390 2725 0.400000 +390 2738 0.400000 +390 2797 0.400000 +390 2818 0.400000 +390 2882 0.400000 +390 2921 0.400000 +390 2967 0.400000 +390 2980 0.400000 +390 2994 0.400000 +390 3008 0.400000 +390 3019 0.400000 +390 3027 0.400000 +390 3131 0.400000 +391 6 0.400000 +391 74 0.400000 +391 167 0.400000 +391 170 0.400000 +391 181 0.400000 +391 210 0.400000 +391 315 0.400000 +391 409 0.400000 +391 417 0.400000 +391 423 0.400000 +391 470 0.400000 +391 500 0.400000 +391 514 0.400000 +391 549 0.400000 +391 558 0.400000 +391 622 0.400000 +391 624 0.400000 +391 633 0.400000 +391 910 0.400000 +391 1018 0.400000 +391 1165 0.400000 +391 1168 0.400000 +391 1174 0.400000 +391 1204 0.400000 +391 1207 0.400000 +391 1225 0.400000 +391 1228 0.400000 +391 1286 0.400000 +391 1363 0.400000 +391 1418 0.400000 +391 1438 0.400000 +391 1563 0.400000 +391 1649 0.400000 +391 1684 0.400000 +391 1699 0.400000 +391 1705 0.400000 +391 1726 0.400000 +391 1795 0.400000 +391 1804 0.400000 +391 1837 0.400000 +391 1866 0.400000 +391 1923 0.400000 +391 1926 0.400000 +391 1987 0.400000 +391 1994 0.400000 +391 2051 0.400000 +391 2085 0.400000 +391 2161 0.400000 +391 2185 0.400000 +391 2187 0.400000 +391 2199 0.400000 +391 2332 0.400000 +391 2369 0.400000 +391 2389 0.400000 +391 2391 0.400000 +391 2415 0.400000 +391 2426 0.400000 +391 2452 0.400000 +391 2542 0.400000 +391 2601 0.400000 +391 2610 0.400000 +391 2691 0.400000 +391 2748 0.400000 +391 2765 0.400000 +391 2780 0.400000 +391 2850 0.400000 +391 2854 0.400000 +391 2944 0.400000 +391 3086 0.400000 +391 3092 0.400000 +391 3097 0.400000 +391 3106 0.400000 +391 3112 0.400000 +392 23 0.400000 +392 111 0.400000 +392 129 0.400000 +392 132 0.400000 +392 188 0.400000 +392 231 0.400000 +392 264 0.400000 +392 476 0.400000 +392 503 0.400000 +392 535 0.400000 +392 597 0.400000 +392 612 0.400000 +392 651 0.400000 +392 669 0.400000 +392 774 0.400000 +392 818 0.400000 +392 823 0.400000 +392 898 0.400000 +392 1008 0.400000 +392 1071 0.400000 +392 1088 0.400000 +392 1144 0.400000 +392 1254 0.400000 +392 1280 0.400000 +392 1506 0.400000 +392 1531 0.400000 +392 1613 0.400000 +392 1683 0.400000 +392 1706 0.400000 +392 1792 0.400000 +392 1822 0.400000 +392 1835 0.400000 +392 1859 0.400000 +392 1862 0.400000 +392 1878 0.400000 +392 1940 0.400000 +392 1946 0.400000 +392 2075 0.400000 +392 2083 0.400000 +392 2098 0.400000 +392 2100 0.400000 +392 2111 0.400000 +392 2118 0.400000 +392 2151 0.400000 +392 2157 0.400000 +392 2197 0.400000 +392 2200 0.400000 +392 2342 0.400000 +392 2352 0.400000 +392 2381 0.400000 +392 2388 0.400000 +392 2460 0.400000 +392 2516 0.400000 +392 2541 0.400000 +392 2582 0.400000 +392 2696 0.400000 +392 2721 0.400000 +392 2773 0.400000 +392 2810 0.400000 +392 2855 0.400000 +392 2966 0.400000 +392 3022 0.400000 +392 3066 0.400000 +392 3116 0.400000 +392 3161 0.400000 +393 150 0.400000 +393 178 0.400000 +393 345 0.400000 +393 354 0.400000 +393 363 0.400000 +393 365 0.400000 +393 378 0.400000 +393 643 0.400000 +393 686 0.400000 +393 687 0.400000 +393 724 0.400000 +393 825 0.400000 +393 832 0.400000 +393 851 0.400000 +393 904 0.400000 +393 905 0.400000 +393 975 0.400000 +393 986 0.400000 +393 1055 0.400000 +393 1172 0.400000 +393 1183 0.400000 +393 1227 0.400000 +393 1288 0.400000 +393 1330 0.400000 +393 1389 0.400000 +393 1391 0.400000 +393 1475 0.400000 +393 1493 0.400000 +393 1532 0.400000 +393 1571 0.400000 +393 1572 0.400000 +393 1612 0.400000 +393 1707 0.400000 +393 1736 0.400000 +393 1739 0.400000 +393 1773 0.400000 +393 1879 0.400000 +393 1881 0.400000 +393 1882 0.400000 +393 1928 0.400000 +393 2011 0.400000 +393 2041 0.400000 +393 2115 0.400000 +393 2127 0.400000 +393 2144 0.400000 +393 2151 0.400000 +393 2218 0.400000 +393 2301 0.400000 +393 2325 0.400000 +393 2391 0.400000 +393 2419 0.400000 +393 2480 0.400000 +393 2487 0.400000 +393 2517 0.400000 +393 2544 0.400000 +393 2555 0.400000 +393 2587 0.400000 +393 2668 0.400000 +393 2679 0.400000 +393 2724 0.400000 +393 2783 0.400000 +393 2830 0.400000 +393 2837 0.400000 +393 2931 0.400000 +393 3001 0.400000 +393 3097 0.400000 +394 74 0.400000 +394 140 0.400000 +394 174 0.400000 +394 175 0.400000 +394 216 0.400000 +394 237 0.400000 +394 405 0.400000 +394 410 0.400000 +394 436 0.400000 +394 500 0.400000 +394 550 0.400000 +394 558 0.400000 +394 601 0.400000 +394 629 0.400000 +394 636 0.400000 +394 644 0.400000 +394 727 0.400000 +394 743 0.400000 +394 744 0.400000 +394 758 0.400000 +394 811 0.400000 +394 835 0.400000 +394 888 0.400000 +394 920 0.400000 +394 961 0.400000 +394 987 0.400000 +394 1030 0.400000 +394 1047 0.400000 +394 1128 0.400000 +394 1147 0.400000 +394 1203 0.400000 +394 1227 0.400000 +394 1237 0.400000 +394 1329 0.400000 +394 1348 0.400000 +394 1417 0.400000 +394 1432 0.400000 +394 1456 0.400000 +394 1458 0.400000 +394 1510 0.400000 +394 1616 0.400000 +394 1644 0.400000 +394 1683 0.400000 +394 1780 0.400000 +394 1783 0.400000 +394 1787 0.400000 +394 1839 0.400000 +394 1861 0.400000 +394 1867 0.400000 +394 1869 0.400000 +394 1936 0.400000 +394 1957 0.400000 +394 2026 0.400000 +394 2088 0.400000 +394 2190 0.400000 +394 2198 0.400000 +394 2247 0.400000 +394 2287 0.400000 +394 2336 0.400000 +394 2339 0.400000 +394 2345 0.400000 +394 2385 0.400000 +394 2417 0.400000 +394 2523 0.400000 +394 2540 0.400000 +394 2541 0.400000 +394 2623 0.400000 +394 2679 0.400000 +394 2735 0.400000 +394 2847 0.400000 +394 2866 0.400000 +394 2900 0.400000 +394 2912 0.400000 +394 3063 0.400000 +394 3124 0.400000 +395 22 0.400000 +395 48 0.400000 +395 209 0.400000 +395 239 0.400000 +395 336 0.400000 +395 384 0.400000 +395 393 0.400000 +395 513 0.400000 +395 610 0.400000 +395 862 0.400000 +395 922 0.400000 +395 1033 0.400000 +395 1049 0.400000 +395 1231 0.400000 +395 1273 0.400000 +395 1288 0.400000 +395 1354 0.400000 +395 1386 0.400000 +395 1431 0.400000 +395 1437 0.400000 +395 1458 0.400000 +395 1481 0.400000 +395 1522 0.400000 +395 1540 0.400000 +395 1551 0.400000 +395 1578 0.400000 +395 1650 0.400000 +395 1653 0.400000 +395 1845 0.400000 +395 1911 0.400000 +395 1950 0.400000 +395 1969 0.400000 +395 2005 0.400000 +395 2249 0.400000 +395 2316 0.400000 +395 2318 0.400000 +395 2629 0.400000 +395 2638 0.400000 +395 2664 0.400000 +395 2694 0.400000 +395 2796 0.400000 +395 2986 0.400000 +395 3029 0.400000 +395 3111 0.400000 +395 3118 0.400000 +395 3142 0.400000 +395 3152 0.400000 +395 3168 0.400000 +396 140 0.400000 +396 176 0.400000 +396 244 0.400000 +396 309 0.400000 +396 355 0.400000 +396 385 0.400000 +396 420 0.400000 +396 454 0.400000 +396 461 0.400000 +396 491 0.400000 +396 528 0.400000 +396 587 0.400000 +396 740 0.400000 +396 743 0.400000 +396 885 0.400000 +396 940 0.400000 +396 988 0.400000 +396 1011 0.400000 +396 1014 0.400000 +396 1032 0.400000 +396 1047 0.400000 +396 1063 0.400000 +396 1097 0.400000 +396 1117 0.400000 +396 1123 0.400000 +396 1249 0.400000 +396 1262 0.400000 +396 1331 0.400000 +396 1341 0.400000 +396 1358 0.400000 +396 1403 0.400000 +396 1432 0.400000 +396 1446 0.400000 +396 1525 0.400000 +396 1574 0.400000 +396 1615 0.400000 +396 1624 0.400000 +396 1757 0.400000 +396 1812 0.400000 +396 1913 0.400000 +396 1918 0.400000 +396 1942 0.400000 +396 1966 0.400000 +396 2027 0.400000 +396 2153 0.400000 +396 2207 0.400000 +396 2224 0.400000 +396 2270 0.400000 +396 2323 0.400000 +396 2335 0.400000 +396 2384 0.400000 +396 2391 0.400000 +396 2416 0.400000 +396 2439 0.400000 +396 2449 0.400000 +396 2509 0.400000 +396 2513 0.400000 +396 2580 0.400000 +396 2608 0.400000 +396 2624 0.400000 +396 2666 0.400000 +396 2741 0.400000 +396 2764 0.400000 +396 2784 0.400000 +396 2818 0.400000 +396 2919 0.400000 +396 3067 0.400000 +396 3085 0.400000 +396 3125 0.400000 +396 3167 0.400000 +396 3170 0.400000 +397 12 0.400000 +397 58 0.400000 +397 79 0.400000 +397 82 0.400000 +397 185 0.400000 +397 208 0.400000 +397 272 0.400000 +397 283 0.400000 +397 303 0.400000 +397 387 0.400000 +397 398 0.400000 +397 402 0.400000 +397 409 0.400000 +397 433 0.400000 +397 514 0.400000 +397 583 0.400000 +397 632 0.400000 +397 689 0.400000 +397 705 0.400000 +397 710 0.400000 +397 714 0.400000 +397 796 0.400000 +397 871 0.400000 +397 881 0.400000 +397 924 0.400000 +397 961 0.400000 +397 962 0.400000 +397 1011 0.400000 +397 1068 0.400000 +397 1120 0.400000 +397 1247 0.400000 +397 1331 0.400000 +397 1465 0.400000 +397 1512 0.400000 +397 1587 0.400000 +397 1622 0.400000 +397 1623 0.400000 +397 1676 0.400000 +397 1705 0.400000 +397 1748 0.400000 +397 1755 0.400000 +397 1764 0.400000 +397 1792 0.400000 +397 1912 0.400000 +397 1916 0.400000 +397 1922 0.400000 +397 1982 0.400000 +397 2087 0.400000 +397 2095 0.400000 +397 2136 0.400000 +397 2181 0.400000 +397 2214 0.400000 +397 2218 0.400000 +397 2392 0.400000 +397 2461 0.400000 +397 2474 0.400000 +397 2578 0.400000 +397 2631 0.400000 +397 2730 0.400000 +397 2801 0.400000 +397 2808 0.400000 +397 2822 0.400000 +397 2837 0.400000 +397 2907 0.400000 +397 2918 0.400000 +397 2967 0.400000 +397 2968 0.400000 +397 3032 0.400000 +397 3049 0.400000 +397 3055 0.400000 +397 3117 0.400000 +398 21 0.400000 +398 43 0.400000 +398 235 0.400000 +398 264 0.400000 +398 413 0.400000 +398 464 0.400000 +398 502 0.400000 +398 554 0.400000 +398 648 0.400000 +398 733 0.400000 +398 741 0.400000 +398 760 0.400000 +398 823 0.400000 +398 864 0.400000 +398 870 0.400000 +398 917 0.400000 +398 1094 0.400000 +398 1099 0.400000 +398 1119 0.400000 +398 1208 0.400000 +398 1333 0.400000 +398 1370 0.400000 +398 1397 0.400000 +398 1461 0.400000 +398 1462 0.400000 +398 1475 0.400000 +398 1512 0.400000 +398 1534 0.400000 +398 1659 0.400000 +398 1665 0.400000 +398 1683 0.400000 +398 1825 0.400000 +398 2047 0.400000 +398 2056 0.400000 +398 2122 0.400000 +398 2221 0.400000 +398 2456 0.400000 +398 2501 0.400000 +398 2552 0.400000 +398 2559 0.400000 +398 2706 0.400000 +398 2774 0.400000 +398 2788 0.400000 +398 2841 0.400000 +398 2925 0.400000 +398 2943 0.400000 +398 3059 0.400000 +398 3192 0.400000 +399 5 0.400000 +399 40 0.400000 +399 225 0.400000 +399 264 0.400000 +399 280 0.400000 +399 298 0.400000 +399 303 0.400000 +399 332 0.400000 +399 372 0.400000 +399 389 0.400000 +399 398 0.400000 +399 442 0.400000 +399 730 0.400000 +399 785 0.400000 +399 787 0.400000 +399 832 0.400000 +399 847 0.400000 +399 869 0.400000 +399 878 0.400000 +399 906 0.400000 +399 971 0.400000 +399 1064 0.400000 +399 1067 0.400000 +399 1166 0.400000 +399 1222 0.400000 +399 1233 0.400000 +399 1238 0.400000 +399 1372 0.400000 +399 1389 0.400000 +399 1407 0.400000 +399 1425 0.400000 +399 1545 0.400000 +399 1568 0.400000 +399 1594 0.400000 +399 1614 0.400000 +399 1716 0.400000 +399 1814 0.400000 +399 1817 0.400000 +399 1844 0.400000 +399 1877 0.400000 +399 2037 0.400000 +399 2104 0.400000 +399 2127 0.400000 +399 2139 0.400000 +399 2170 0.400000 +399 2232 0.400000 +399 2254 0.400000 +399 2301 0.400000 +399 2359 0.400000 +399 2408 0.400000 +399 2439 0.400000 +399 2538 0.400000 +399 2583 0.400000 +399 2604 0.400000 +399 2615 0.400000 +399 2679 0.400000 +399 2717 0.400000 +399 2725 0.400000 +399 2739 0.400000 +399 2802 0.400000 +399 3197 0.400000 +400 85 0.400000 +400 125 0.400000 +400 134 0.400000 +400 136 0.400000 +400 142 0.400000 +400 202 0.400000 +400 239 0.400000 +400 550 0.400000 +400 596 0.400000 +400 696 0.400000 +400 699 0.400000 +400 709 0.400000 +400 740 0.400000 +400 776 0.400000 +400 827 0.400000 +400 857 0.400000 +400 867 0.400000 +400 897 0.400000 +400 906 0.400000 +400 1021 0.400000 +400 1157 0.400000 +400 1188 0.400000 +400 1220 0.400000 +400 1284 0.400000 +400 1334 0.400000 +400 1359 0.400000 +400 1370 0.400000 +400 1647 0.400000 +400 1736 0.400000 +400 1780 0.400000 +400 1826 0.400000 +400 1870 0.400000 +400 1985 0.400000 +400 2110 0.400000 +400 2124 0.400000 +400 2170 0.400000 +400 2256 0.400000 +400 2258 0.400000 +400 2262 0.400000 +400 2263 0.400000 +400 2318 0.400000 +400 2354 0.400000 +400 2377 0.400000 +400 2401 0.400000 +400 2474 0.400000 +400 2718 0.400000 +400 2733 0.400000 +400 2734 0.400000 +400 2757 0.400000 +400 2797 0.400000 +400 2798 0.400000 +400 2836 0.400000 +400 2867 0.400000 +400 2984 0.400000 +400 2993 0.400000 +400 3113 0.400000 +400 3135 0.400000 +400 3142 0.400000 +400 3143 0.400000 +401 4 0.400000 +401 10 0.400000 +401 36 0.400000 +401 39 0.400000 +401 57 0.400000 +401 189 0.400000 +401 298 0.400000 +401 320 0.400000 +401 342 0.400000 +401 414 0.400000 +401 485 0.400000 +401 491 0.400000 +401 526 0.400000 +401 587 0.400000 +401 616 0.400000 +401 620 0.400000 +401 714 0.400000 +401 769 0.400000 +401 805 0.400000 +401 948 0.400000 +401 1010 0.400000 +401 1016 0.400000 +401 1050 0.400000 +401 1121 0.400000 +401 1153 0.400000 +401 1179 0.400000 +401 1216 0.400000 +401 1232 0.400000 +401 1379 0.400000 +401 1380 0.400000 +401 1394 0.400000 +401 1408 0.400000 +401 1512 0.400000 +401 1611 0.400000 +401 1647 0.400000 +401 1709 0.400000 +401 1805 0.400000 +401 1869 0.400000 +401 1883 0.400000 +401 1895 0.400000 +401 1940 0.400000 +401 2003 0.400000 +401 2093 0.400000 +401 2158 0.400000 +401 2191 0.400000 +401 2269 0.400000 +401 2282 0.400000 +401 2320 0.400000 +401 2344 0.400000 +401 2600 0.400000 +401 2613 0.400000 +401 2614 0.400000 +401 2616 0.400000 +401 2629 0.400000 +401 2633 0.400000 +401 2676 0.400000 +401 2727 0.400000 +401 2757 0.400000 +401 2906 0.400000 +401 2946 0.400000 +401 2983 0.400000 +401 2984 0.400000 +401 3021 0.400000 +401 3022 0.400000 +401 3038 0.400000 +401 3090 0.400000 +401 3146 0.400000 +401 3163 0.400000 +402 95 0.400000 +402 162 0.400000 +402 185 0.400000 +402 220 0.400000 +402 325 0.400000 +402 400 0.400000 +402 449 0.400000 +402 486 0.400000 +402 520 0.400000 +402 538 0.400000 +402 558 0.400000 +402 570 0.400000 +402 599 0.400000 +402 634 0.400000 +402 641 0.400000 +402 645 0.400000 +402 701 0.400000 +402 774 0.400000 +402 787 0.400000 +402 894 0.400000 +402 900 0.400000 +402 909 0.400000 +402 925 0.400000 +402 959 0.400000 +402 1102 0.400000 +402 1137 0.400000 +402 1195 0.400000 +402 1234 0.400000 +402 1285 0.400000 +402 1329 0.400000 +402 1375 0.400000 +402 1402 0.400000 +402 1473 0.400000 +402 1573 0.400000 +402 1730 0.400000 +402 1757 0.400000 +402 1770 0.400000 +402 1794 0.400000 +402 1852 0.400000 +402 1867 0.400000 +402 1912 0.400000 +402 1958 0.400000 +402 2101 0.400000 +402 2106 0.400000 +402 2153 0.400000 +402 2198 0.400000 +402 2227 0.400000 +402 2322 0.400000 +402 2380 0.400000 +402 2573 0.400000 +402 2574 0.400000 +402 2607 0.400000 +402 2650 0.400000 +402 2730 0.400000 +402 2886 0.400000 +402 2927 0.400000 +402 3031 0.400000 +402 3124 0.400000 +402 3180 0.400000 +403 35 0.400000 +403 63 0.400000 +403 230 0.400000 +403 233 0.400000 +403 302 0.400000 +403 329 0.400000 +403 337 0.400000 +403 405 0.400000 +403 573 0.400000 +403 682 0.400000 +403 714 0.400000 +403 846 0.400000 +403 910 0.400000 +403 929 0.400000 +403 931 0.400000 +403 1086 0.400000 +403 1096 0.400000 +403 1114 0.400000 +403 1142 0.400000 +403 1165 0.400000 +403 1230 0.400000 +403 1243 0.400000 +403 1375 0.400000 +403 1441 0.400000 +403 1466 0.400000 +403 1487 0.400000 +403 1526 0.400000 +403 1542 0.400000 +403 1549 0.400000 +403 1559 0.400000 +403 1561 0.400000 +403 1606 0.400000 +403 1619 0.400000 +403 1650 0.400000 +403 1660 0.400000 +403 1828 0.400000 +403 1868 0.400000 +403 1925 0.400000 +403 2013 0.400000 +403 2107 0.400000 +403 2142 0.400000 +403 2190 0.400000 +403 2204 0.400000 +403 2419 0.400000 +403 2448 0.400000 +403 2452 0.400000 +403 2492 0.400000 +403 2571 0.400000 +403 2615 0.400000 +403 2664 0.400000 +403 2704 0.400000 +403 2842 0.400000 +403 2864 0.400000 +403 2923 0.400000 +403 3009 0.400000 +403 3015 0.400000 +403 3050 0.400000 +403 3067 0.400000 +403 3104 0.400000 +404 32 0.400000 +404 99 0.400000 +404 111 0.400000 +404 112 0.400000 +404 209 0.400000 +404 246 0.400000 +404 259 0.400000 +404 376 0.400000 +404 410 0.400000 +404 519 0.400000 +404 539 0.400000 +404 559 0.400000 +404 570 0.400000 +404 641 0.400000 +404 646 0.400000 +404 657 0.400000 +404 712 0.400000 +404 732 0.400000 +404 784 0.400000 +404 815 0.400000 +404 837 0.400000 +404 855 0.400000 +404 920 0.400000 +404 1025 0.400000 +404 1052 0.400000 +404 1128 0.400000 +404 1136 0.400000 +404 1244 0.400000 +404 1310 0.400000 +404 1335 0.400000 +404 1358 0.400000 +404 1398 0.400000 +404 1409 0.400000 +404 1418 0.400000 +404 1425 0.400000 +404 1450 0.400000 +404 1462 0.400000 +404 1487 0.400000 +404 1521 0.400000 +404 1614 0.400000 +404 1695 0.400000 +404 1775 0.400000 +404 1787 0.400000 +404 1795 0.400000 +404 1797 0.400000 +404 1813 0.400000 +404 1886 0.400000 +404 1898 0.400000 +404 2079 0.400000 +404 2114 0.400000 +404 2136 0.400000 +404 2357 0.400000 +404 2408 0.400000 +404 2452 0.400000 +404 2461 0.400000 +404 2478 0.400000 +404 2517 0.400000 +404 2539 0.400000 +404 2545 0.400000 +404 2671 0.400000 +404 2697 0.400000 +404 2761 0.400000 +404 2774 0.400000 +404 2789 0.400000 +404 2830 0.400000 +404 2833 0.400000 +404 2928 0.400000 +405 11 0.400000 +405 16 0.400000 +405 24 0.400000 +405 29 0.400000 +405 32 0.400000 +405 93 0.400000 +405 96 0.400000 +405 137 0.400000 +405 216 0.400000 +405 239 0.400000 +405 267 0.400000 +405 379 0.400000 +405 464 0.400000 +405 526 0.400000 +405 569 0.400000 +405 620 0.400000 +405 752 0.400000 +405 775 0.400000 +405 900 0.400000 +405 943 0.400000 +405 999 0.400000 +405 1003 0.400000 +405 1023 0.400000 +405 1045 0.400000 +405 1182 0.400000 +405 1381 0.400000 +405 1383 0.400000 +405 1384 0.400000 +405 1447 0.400000 +405 1458 0.400000 +405 1497 0.400000 +405 1514 0.400000 +405 1526 0.400000 +405 1589 0.400000 +405 1598 0.400000 +405 1639 0.400000 +405 1702 0.400000 +405 1712 0.400000 +405 1898 0.400000 +405 1917 0.400000 +405 1919 0.400000 +405 1926 0.400000 +405 1975 0.400000 +405 1976 0.400000 +405 2053 0.400000 +405 2057 0.400000 +405 2097 0.400000 +405 2147 0.400000 +405 2173 0.400000 +405 2222 0.400000 +405 2237 0.400000 +405 2328 0.400000 +405 2349 0.400000 +405 2350 0.400000 +405 2494 0.400000 +405 2512 0.400000 +405 2585 0.400000 +405 2618 0.400000 +405 2761 0.400000 +405 2846 0.400000 +405 2890 0.400000 +405 2907 0.400000 +405 2918 0.400000 +405 2990 0.400000 +405 3066 0.400000 +405 3097 0.400000 +405 3181 0.400000 +406 205 0.400000 +406 234 0.400000 +406 258 0.400000 +406 294 0.400000 +406 295 0.400000 +406 324 0.400000 +406 517 0.400000 +406 551 0.400000 +406 663 0.400000 +406 709 0.400000 +406 733 0.400000 +406 825 0.400000 +406 869 0.400000 +406 877 0.400000 +406 950 0.400000 +406 1005 0.400000 +406 1059 0.400000 +406 1173 0.400000 +406 1203 0.400000 +406 1265 0.400000 +406 1310 0.400000 +406 1463 0.400000 +406 1466 0.400000 +406 1467 0.400000 +406 1532 0.400000 +406 1662 0.400000 +406 1680 0.400000 +406 1781 0.400000 +406 2038 0.400000 +406 2077 0.400000 +406 2081 0.400000 +406 2084 0.400000 +406 2137 0.400000 +406 2351 0.400000 +406 2363 0.400000 +406 2382 0.400000 +406 2386 0.400000 +406 2473 0.400000 +406 2487 0.400000 +406 2490 0.400000 +406 2494 0.400000 +406 2532 0.400000 +406 2557 0.400000 +406 2565 0.400000 +406 2579 0.400000 +406 2583 0.400000 +406 2609 0.400000 +406 2610 0.400000 +406 2724 0.400000 +406 2732 0.400000 +406 2809 0.400000 +406 2818 0.400000 +406 2869 0.400000 +406 2900 0.400000 +406 2904 0.400000 +406 2927 0.400000 +406 2955 0.400000 +406 3095 0.400000 +406 3101 0.400000 +406 3145 0.400000 +407 28 0.400000 +407 114 0.400000 +407 237 0.400000 +407 421 0.400000 +407 485 0.400000 +407 530 0.400000 +407 588 0.400000 +407 646 0.400000 +407 741 0.400000 +407 751 0.400000 +407 808 0.400000 +407 1000 0.400000 +407 1033 0.400000 +407 1054 0.400000 +407 1081 0.400000 +407 1132 0.400000 +407 1156 0.400000 +407 1158 0.400000 +407 1360 0.400000 +407 1452 0.400000 +407 1530 0.400000 +407 1665 0.400000 +407 1926 0.400000 +407 1952 0.400000 +407 2122 0.400000 +407 2170 0.400000 +407 2179 0.400000 +407 2248 0.400000 +407 2265 0.400000 +407 2491 0.400000 +407 2523 0.400000 +407 2665 0.400000 +407 2771 0.400000 +407 2872 0.400000 +407 2945 0.400000 +407 2985 0.400000 +407 3055 0.400000 +407 3085 0.400000 +407 3152 0.400000 +407 3165 0.400000 +407 3186 0.400000 +408 59 0.400000 +408 64 0.400000 +408 80 0.400000 +408 82 0.400000 +408 100 0.400000 +408 122 0.400000 +408 261 0.400000 +408 375 0.400000 +408 460 0.400000 +408 506 0.400000 +408 623 0.400000 +408 630 0.400000 +408 649 0.400000 +408 787 0.400000 +408 804 0.400000 +408 809 0.400000 +408 886 0.400000 +408 888 0.400000 +408 922 0.400000 +408 938 0.400000 +408 941 0.400000 +408 989 0.400000 +408 1151 0.400000 +408 1162 0.400000 +408 1252 0.400000 +408 1254 0.400000 +408 1259 0.400000 +408 1302 0.400000 +408 1367 0.400000 +408 1419 0.400000 +408 1433 0.400000 +408 1470 0.400000 +408 1474 0.400000 +408 1490 0.400000 +408 1493 0.400000 +408 1516 0.400000 +408 1535 0.400000 +408 1540 0.400000 +408 1626 0.400000 +408 1634 0.400000 +408 1819 0.400000 +408 1849 0.400000 +408 1992 0.400000 +408 2009 0.400000 +408 2053 0.400000 +408 2058 0.400000 +408 2070 0.400000 +408 2127 0.400000 +408 2493 0.400000 +408 2512 0.400000 +408 2519 0.400000 +408 2651 0.400000 +408 2678 0.400000 +408 2697 0.400000 +408 2759 0.400000 +408 2870 0.400000 +408 3017 0.400000 +408 3042 0.400000 +408 3045 0.400000 +408 3057 0.400000 +408 3108 0.400000 +408 3113 0.400000 +408 3182 0.400000 +409 69 0.400000 +409 87 0.400000 +409 162 0.400000 +409 231 0.400000 +409 236 0.400000 +409 237 0.400000 +409 258 0.400000 +409 271 0.400000 +409 406 0.400000 +409 496 0.400000 +409 539 0.400000 +409 541 0.400000 +409 558 0.400000 +409 664 0.400000 +409 815 0.400000 +409 861 0.400000 +409 877 0.400000 +409 923 0.400000 +409 1009 0.400000 +409 1131 0.400000 +409 1137 0.400000 +409 1184 0.400000 +409 1214 0.400000 +409 1230 0.400000 +409 1363 0.400000 +409 1416 0.400000 +409 1441 0.400000 +409 1541 0.400000 +409 1544 0.400000 +409 1586 0.400000 +409 1626 0.400000 +409 1678 0.400000 +409 1713 0.400000 +409 1853 0.400000 +409 1884 0.400000 +409 1904 0.400000 +409 1947 0.400000 +409 1965 0.400000 +409 2002 0.400000 +409 2040 0.400000 +409 2053 0.400000 +409 2074 0.400000 +409 2199 0.400000 +409 2267 0.400000 +409 2291 0.400000 +409 2312 0.400000 +409 2333 0.400000 +409 2383 0.400000 +409 2470 0.400000 +409 2536 0.400000 +409 2672 0.400000 +409 2684 0.400000 +409 2729 0.400000 +409 2777 0.400000 +409 2833 0.400000 +409 2834 0.400000 +409 2836 0.400000 +409 2972 0.400000 +409 2988 0.400000 +409 3000 0.400000 +409 3041 0.400000 +409 3072 0.400000 +409 3104 0.400000 +409 3145 0.400000 +410 44 0.400000 +410 125 0.400000 +410 230 0.400000 +410 260 0.400000 +410 261 0.400000 +410 288 0.400000 +410 303 0.400000 +410 313 0.400000 +410 327 0.400000 +410 590 0.400000 +410 599 0.400000 +410 617 0.400000 +410 692 0.400000 +410 748 0.400000 +410 767 0.400000 +410 772 0.400000 +410 830 0.400000 +410 957 0.400000 +410 975 0.400000 +410 1108 0.400000 +410 1176 0.400000 +410 1205 0.400000 +410 1288 0.400000 +410 1300 0.400000 +410 1346 0.400000 +410 1430 0.400000 +410 1446 0.400000 +410 1481 0.400000 +410 1488 0.400000 +410 1587 0.400000 +410 1617 0.400000 +410 1735 0.400000 +410 1766 0.400000 +410 1775 0.400000 +410 1801 0.400000 +410 1871 0.400000 +410 1881 0.400000 +410 1909 0.400000 +410 1934 0.400000 +410 1944 0.400000 +410 1963 0.400000 +410 2002 0.400000 +410 2073 0.400000 +410 2148 0.400000 +410 2174 0.400000 +410 2193 0.400000 +410 2201 0.400000 +410 2225 0.400000 +410 2251 0.400000 +410 2370 0.400000 +410 2388 0.400000 +410 2393 0.400000 +410 2409 0.400000 +410 2451 0.400000 +410 2454 0.400000 +410 2505 0.400000 +410 2513 0.400000 +410 2521 0.400000 +410 2570 0.400000 +410 2614 0.400000 +410 2761 0.400000 +410 2768 0.400000 +410 3029 0.400000 +410 3145 0.400000 +410 3179 0.400000 +410 3194 0.400000 +411 72 0.400000 +411 99 0.400000 +411 123 0.400000 +411 138 0.400000 +411 183 0.400000 +411 186 0.400000 +411 189 0.400000 +411 204 0.400000 +411 398 0.400000 +411 418 0.400000 +411 525 0.400000 +411 534 0.400000 +411 579 0.400000 +411 584 0.400000 +411 610 0.400000 +411 632 0.400000 +411 711 0.400000 +411 774 0.400000 +411 782 0.400000 +411 801 0.400000 +411 812 0.400000 +411 848 0.400000 +411 864 0.400000 +411 912 0.400000 +411 928 0.400000 +411 929 0.400000 +411 1041 0.400000 +411 1051 0.400000 +411 1274 0.400000 +411 1363 0.400000 +411 1430 0.400000 +411 1438 0.400000 +411 1474 0.400000 +411 1485 0.400000 +411 1507 0.400000 +411 1666 0.400000 +411 1687 0.400000 +411 1816 0.400000 +411 1831 0.400000 +411 1869 0.400000 +411 1870 0.400000 +411 2004 0.400000 +411 2098 0.400000 +411 2103 0.400000 +411 2118 0.400000 +411 2178 0.400000 +411 2179 0.400000 +411 2186 0.400000 +411 2228 0.400000 +411 2236 0.400000 +411 2338 0.400000 +411 2355 0.400000 +411 2444 0.400000 +411 2486 0.400000 +411 2557 0.400000 +411 2644 0.400000 +411 2717 0.400000 +411 2798 0.400000 +411 2811 0.400000 +411 2962 0.400000 +411 3011 0.400000 +411 3029 0.400000 +411 3101 0.400000 +411 3120 0.400000 +411 3123 0.400000 +411 3140 0.400000 +412 34 0.400000 +412 62 0.400000 +412 77 0.400000 +412 87 0.400000 +412 100 0.400000 +412 123 0.400000 +412 216 0.400000 +412 227 0.400000 +412 256 0.400000 +412 266 0.400000 +412 309 0.400000 +412 373 0.400000 +412 472 0.400000 +412 538 0.400000 +412 544 0.400000 +412 578 0.400000 +412 653 0.400000 +412 679 0.400000 +412 719 0.400000 +412 735 0.400000 +412 846 0.400000 +412 857 0.400000 +412 924 0.400000 +412 979 0.400000 +412 1025 0.400000 +412 1121 0.400000 +412 1153 0.400000 +412 1215 0.400000 +412 1271 0.400000 +412 1279 0.400000 +412 1313 0.400000 +412 1318 0.400000 +412 1376 0.400000 +412 1378 0.400000 +412 1524 0.400000 +412 1615 0.400000 +412 1645 0.400000 +412 1694 0.400000 +412 1769 0.400000 +412 1803 0.400000 +412 1835 0.400000 +412 1837 0.400000 +412 1862 0.400000 +412 1865 0.400000 +412 2089 0.400000 +412 2109 0.400000 +412 2206 0.400000 +412 2263 0.400000 +412 2284 0.400000 +412 2287 0.400000 +412 2322 0.400000 +412 2385 0.400000 +412 2484 0.400000 +412 2489 0.400000 +412 2496 0.400000 +412 2585 0.400000 +412 2633 0.400000 +412 2663 0.400000 +412 2676 0.400000 +412 2709 0.400000 +412 2833 0.400000 +412 2867 0.400000 +412 2916 0.400000 +412 2955 0.400000 +412 3055 0.400000 +412 3129 0.400000 +412 3186 0.400000 +413 23 0.400000 +413 52 0.400000 +413 211 0.400000 +413 381 0.400000 +413 447 0.400000 +413 565 0.400000 +413 604 0.400000 +413 622 0.400000 +413 665 0.400000 +413 670 0.400000 +413 709 0.400000 +413 711 0.400000 +413 725 0.400000 +413 743 0.400000 +413 748 0.400000 +413 756 0.400000 +413 769 0.400000 +413 831 0.400000 +413 839 0.400000 +413 902 0.400000 +413 1021 0.400000 +413 1023 0.400000 +413 1033 0.400000 +413 1037 0.400000 +413 1050 0.400000 +413 1061 0.400000 +413 1150 0.400000 +413 1161 0.400000 +413 1176 0.400000 +413 1193 0.400000 +413 1241 0.400000 +413 1248 0.400000 +413 1406 0.400000 +413 1510 0.400000 +413 1702 0.400000 +413 1769 0.400000 +413 1821 0.400000 +413 1862 0.400000 +413 1864 0.400000 +413 1985 0.400000 +413 2016 0.400000 +413 2050 0.400000 +413 2116 0.400000 +413 2121 0.400000 +413 2265 0.400000 +413 2412 0.400000 +413 2456 0.400000 +413 2509 0.400000 +413 2522 0.400000 +413 2544 0.400000 +413 2611 0.400000 +413 2714 0.400000 +413 2735 0.400000 +413 2804 0.400000 +413 2914 0.400000 +413 2946 0.400000 +413 3084 0.400000 +413 3089 0.400000 +413 3118 0.400000 +414 13 0.400000 +414 58 0.400000 +414 87 0.400000 +414 113 0.400000 +414 124 0.400000 +414 181 0.400000 +414 184 0.400000 +414 193 0.400000 +414 259 0.400000 +414 275 0.400000 +414 356 0.400000 +414 409 0.400000 +414 508 0.400000 +414 553 0.400000 +414 588 0.400000 +414 724 0.400000 +414 729 0.400000 +414 764 0.400000 +414 816 0.400000 +414 950 0.400000 +414 970 0.400000 +414 1079 0.400000 +414 1081 0.400000 +414 1131 0.400000 +414 1182 0.400000 +414 1259 0.400000 +414 1272 0.400000 +414 1374 0.400000 +414 1444 0.400000 +414 1445 0.400000 +414 1503 0.400000 +414 1531 0.400000 +414 1598 0.400000 +414 1665 0.400000 +414 1742 0.400000 +414 1755 0.400000 +414 1877 0.400000 +414 1884 0.400000 +414 1893 0.400000 +414 2048 0.400000 +414 2078 0.400000 +414 2120 0.400000 +414 2127 0.400000 +414 2441 0.400000 +414 2450 0.400000 +414 2504 0.400000 +414 2516 0.400000 +414 2517 0.400000 +414 2549 0.400000 +414 2613 0.400000 +414 2641 0.400000 +414 2689 0.400000 +414 2716 0.400000 +414 2721 0.400000 +414 2722 0.400000 +414 2763 0.400000 +414 2764 0.400000 +414 2789 0.400000 +414 2945 0.400000 +414 3030 0.400000 +414 3053 0.400000 +414 3092 0.400000 +415 4 0.400000 +415 97 0.400000 +415 136 0.400000 +415 197 0.400000 +415 202 0.400000 +415 344 0.400000 +415 355 0.400000 +415 370 0.400000 +415 383 0.400000 +415 418 0.400000 +415 421 0.400000 +415 531 0.400000 +415 589 0.400000 +415 618 0.400000 +415 628 0.400000 +415 645 0.400000 +415 693 0.400000 +415 715 0.400000 +415 724 0.400000 +415 751 0.400000 +415 756 0.400000 +415 790 0.400000 +415 873 0.400000 +415 991 0.400000 +415 1163 0.400000 +415 1204 0.400000 +415 1309 0.400000 +415 1338 0.400000 +415 1370 0.400000 +415 1393 0.400000 +415 1408 0.400000 +415 1467 0.400000 +415 1502 0.400000 +415 1531 0.400000 +415 1562 0.400000 +415 1569 0.400000 +415 1597 0.400000 +415 1635 0.400000 +415 1659 0.400000 +415 1697 0.400000 +415 1837 0.400000 +415 1890 0.400000 +415 1914 0.400000 +415 1933 0.400000 +415 1954 0.400000 +415 2095 0.400000 +415 2240 0.400000 +415 2288 0.400000 +415 2321 0.400000 +415 2447 0.400000 +415 2461 0.400000 +415 2631 0.400000 +415 2684 0.400000 +415 2691 0.400000 +415 2737 0.400000 +415 2765 0.400000 +415 2797 0.400000 +415 2805 0.400000 +415 2832 0.400000 +415 2835 0.400000 +415 2843 0.400000 +415 2878 0.400000 +415 2885 0.400000 +415 2943 0.400000 +415 2952 0.400000 +415 2977 0.400000 +415 3054 0.400000 +415 3144 0.400000 +415 3155 0.400000 +415 3191 0.400000 +416 72 0.400000 +416 84 0.400000 +416 162 0.400000 +416 189 0.400000 +416 240 0.400000 +416 257 0.400000 +416 287 0.400000 +416 351 0.400000 +416 354 0.400000 +416 369 0.400000 +416 444 0.400000 +416 508 0.400000 +416 528 0.400000 +416 544 0.400000 +416 669 0.400000 +416 770 0.400000 +416 906 0.400000 +416 988 0.400000 +416 1097 0.400000 +416 1116 0.400000 +416 1196 0.400000 +416 1238 0.400000 +416 1513 0.400000 +416 1611 0.400000 +416 1625 0.400000 +416 1674 0.400000 +416 1689 0.400000 +416 1718 0.400000 +416 1800 0.400000 +416 1837 0.400000 +416 1885 0.400000 +416 2118 0.400000 +416 2139 0.400000 +416 2167 0.400000 +416 2215 0.400000 +416 2239 0.400000 +416 2290 0.400000 +416 2583 0.400000 +416 2642 0.400000 +416 2658 0.400000 +416 2675 0.400000 +416 2681 0.400000 +416 2713 0.400000 +416 2716 0.400000 +416 2785 0.400000 +416 2814 0.400000 +416 2843 0.400000 +416 2912 0.400000 +416 2913 0.400000 +416 2942 0.400000 +416 2965 0.400000 +416 3033 0.400000 +416 3035 0.400000 +416 3039 0.400000 +416 3145 0.400000 +417 6 0.400000 +417 39 0.400000 +417 156 0.400000 +417 274 0.400000 +417 315 0.400000 +417 424 0.400000 +417 505 0.400000 +417 532 0.400000 +417 604 0.400000 +417 611 0.400000 +417 612 0.400000 +417 664 0.400000 +417 675 0.400000 +417 754 0.400000 +417 850 0.400000 +417 894 0.400000 +417 911 0.400000 +417 992 0.400000 +417 1083 0.400000 +417 1120 0.400000 +417 1179 0.400000 +417 1258 0.400000 +417 1298 0.400000 +417 1304 0.400000 +417 1314 0.400000 +417 1392 0.400000 +417 1395 0.400000 +417 1423 0.400000 +417 1436 0.400000 +417 1443 0.400000 +417 1461 0.400000 +417 1471 0.400000 +417 1506 0.400000 +417 1547 0.400000 +417 1570 0.400000 +417 1729 0.400000 +417 1741 0.400000 +417 1831 0.400000 +417 1860 0.400000 +417 1870 0.400000 +417 1905 0.400000 +417 2093 0.400000 +417 2213 0.400000 +417 2218 0.400000 +417 2523 0.400000 +417 2705 0.400000 +417 2745 0.400000 +417 2762 0.400000 +417 2899 0.400000 +417 3026 0.400000 +417 3059 0.400000 +417 3073 0.400000 +417 3085 0.400000 +417 3105 0.400000 +417 3122 0.400000 +417 3160 0.400000 +417 3178 0.400000 +418 8 0.400000 +418 69 0.400000 +418 88 0.400000 +418 160 0.400000 +418 161 0.400000 +418 217 0.400000 +418 230 0.400000 +418 273 0.400000 +418 275 0.400000 +418 439 0.400000 +418 505 0.400000 +418 538 0.400000 +418 689 0.400000 +418 761 0.400000 +418 922 0.400000 +418 1006 0.400000 +418 1023 0.400000 +418 1060 0.400000 +418 1089 0.400000 +418 1119 0.400000 +418 1159 0.400000 +418 1356 0.400000 +418 1399 0.400000 +418 1482 0.400000 +418 1486 0.400000 +418 1558 0.400000 +418 1585 0.400000 +418 1617 0.400000 +418 1651 0.400000 +418 1688 0.400000 +418 1834 0.400000 +418 1866 0.400000 +418 1881 0.400000 +418 2002 0.400000 +418 2140 0.400000 +418 2154 0.400000 +418 2264 0.400000 +418 2430 0.400000 +418 2593 0.400000 +418 2624 0.400000 +418 2639 0.400000 +418 2745 0.400000 +418 2770 0.400000 +418 2774 0.400000 +418 2807 0.400000 +418 2856 0.400000 +418 2885 0.400000 +418 2911 0.400000 +418 2970 0.400000 +418 2976 0.400000 +418 2983 0.400000 +418 3006 0.400000 +418 3082 0.400000 +418 3109 0.400000 +418 3119 0.400000 +418 3122 0.400000 +419 22 0.400000 +419 80 0.400000 +419 134 0.400000 +419 163 0.400000 +419 213 0.400000 +419 437 0.400000 +419 495 0.400000 +419 516 0.400000 +419 518 0.400000 +419 549 0.400000 +419 643 0.400000 +419 680 0.400000 +419 688 0.400000 +419 696 0.400000 +419 715 0.400000 +419 732 0.400000 +419 738 0.400000 +419 952 0.400000 +419 978 0.400000 +419 1030 0.400000 +419 1093 0.400000 +419 1208 0.400000 +419 1276 0.400000 +419 1318 0.400000 +419 1359 0.400000 +419 1389 0.400000 +419 1435 0.400000 +419 1469 0.400000 +419 1557 0.400000 +419 1652 0.400000 +419 1673 0.400000 +419 1675 0.400000 +419 1721 0.400000 +419 1768 0.400000 +419 1776 0.400000 +419 1809 0.400000 +419 1816 0.400000 +419 1852 0.400000 +419 1914 0.400000 +419 1916 0.400000 +419 1934 0.400000 +419 1966 0.400000 +419 2010 0.400000 +419 2016 0.400000 +419 2022 0.400000 +419 2058 0.400000 +419 2089 0.400000 +419 2121 0.400000 +419 2218 0.400000 +419 2227 0.400000 +419 2256 0.400000 +419 2262 0.400000 +419 2277 0.400000 +419 2288 0.400000 +419 2345 0.400000 +419 2349 0.400000 +419 2682 0.400000 +419 2714 0.400000 +419 2724 0.400000 +419 2765 0.400000 +419 2778 0.400000 +419 2798 0.400000 +419 2840 0.400000 +419 2899 0.400000 +419 2906 0.400000 +419 2954 0.400000 +419 2998 0.400000 +419 3045 0.400000 +419 3089 0.400000 +419 3161 0.400000 +420 10 0.400000 +420 227 0.400000 +420 303 0.400000 +420 321 0.400000 +420 329 0.400000 +420 331 0.400000 +420 356 0.400000 +420 403 0.400000 +420 437 0.400000 +420 478 0.400000 +420 633 0.400000 +420 685 0.400000 +420 734 0.400000 +420 946 0.400000 +420 960 0.400000 +420 1005 0.400000 +420 1041 0.400000 +420 1064 0.400000 +420 1072 0.400000 +420 1101 0.400000 +420 1148 0.400000 +420 1171 0.400000 +420 1228 0.400000 +420 1306 0.400000 +420 1339 0.400000 +420 1346 0.400000 +420 1357 0.400000 +420 1367 0.400000 +420 1520 0.400000 +420 1601 0.400000 +420 1787 0.400000 +420 1835 0.400000 +420 1890 0.400000 +420 1898 0.400000 +420 2010 0.400000 +420 2079 0.400000 +420 2178 0.400000 +420 2232 0.400000 +420 2319 0.400000 +420 2372 0.400000 +420 2482 0.400000 +420 2528 0.400000 +420 2542 0.400000 +420 2556 0.400000 +420 2570 0.400000 +420 2604 0.400000 +420 2618 0.400000 +420 2640 0.400000 +420 2649 0.400000 +420 2682 0.400000 +420 2748 0.400000 +420 2750 0.400000 +420 2778 0.400000 +420 2838 0.400000 +420 2877 0.400000 +420 2895 0.400000 +420 2911 0.400000 +420 3038 0.400000 +420 3149 0.400000 +420 3188 0.400000 +421 40 0.400000 +421 98 0.400000 +421 113 0.400000 +421 136 0.400000 +421 241 0.400000 +421 265 0.400000 +421 287 0.400000 +421 315 0.400000 +421 433 0.400000 +421 463 0.400000 +421 468 0.400000 +421 482 0.400000 +421 490 0.400000 +421 628 0.400000 +421 657 0.400000 +421 726 0.400000 +421 747 0.400000 +421 787 0.400000 +421 820 0.400000 +421 875 0.400000 +421 925 0.400000 +421 973 0.400000 +421 984 0.400000 +421 1003 0.400000 +421 1210 0.400000 +421 1252 0.400000 +421 1283 0.400000 +421 1354 0.400000 +421 1360 0.400000 +421 1418 0.400000 +421 1491 0.400000 +421 1500 0.400000 +421 1608 0.400000 +421 1611 0.400000 +421 1622 0.400000 +421 1677 0.400000 +421 1769 0.400000 +421 1809 0.400000 +421 1923 0.400000 +421 2025 0.400000 +421 2061 0.400000 +421 2079 0.400000 +421 2286 0.400000 +421 2345 0.400000 +421 2404 0.400000 +421 2467 0.400000 +421 2470 0.400000 +421 2493 0.400000 +421 2555 0.400000 +421 2650 0.400000 +421 2683 0.400000 +421 2693 0.400000 +421 2698 0.400000 +421 2704 0.400000 +421 2781 0.400000 +421 2796 0.400000 +421 2813 0.400000 +421 2832 0.400000 +421 2843 0.400000 +421 2879 0.400000 +421 2886 0.400000 +421 2890 0.400000 +421 3008 0.400000 +421 3017 0.400000 +421 3058 0.400000 +421 3113 0.400000 +421 3116 0.400000 +421 3168 0.400000 +421 3189 0.400000 +422 72 0.400000 +422 102 0.400000 +422 114 0.400000 +422 121 0.400000 +422 151 0.400000 +422 335 0.400000 +422 349 0.400000 +422 363 0.400000 +422 364 0.400000 +422 397 0.400000 +422 432 0.400000 +422 456 0.400000 +422 508 0.400000 +422 527 0.400000 +422 545 0.400000 +422 604 0.400000 +422 623 0.400000 +422 661 0.400000 +422 777 0.400000 +422 789 0.400000 +422 820 0.400000 +422 931 0.400000 +422 1031 0.400000 +422 1070 0.400000 +422 1128 0.400000 +422 1143 0.400000 +422 1246 0.400000 +422 1295 0.400000 +422 1301 0.400000 +422 1374 0.400000 +422 1392 0.400000 +422 1436 0.400000 +422 1451 0.400000 +422 1498 0.400000 +422 1530 0.400000 +422 1573 0.400000 +422 1611 0.400000 +422 1625 0.400000 +422 1658 0.400000 +422 1913 0.400000 +422 2026 0.400000 +422 2177 0.400000 +422 2181 0.400000 +422 2196 0.400000 +422 2206 0.400000 +422 2244 0.400000 +422 2299 0.400000 +422 2309 0.400000 +422 2321 0.400000 +422 2341 0.400000 +422 2370 0.400000 +422 2373 0.400000 +422 2495 0.400000 +422 2621 0.400000 +422 2704 0.400000 +422 2733 0.400000 +422 2744 0.400000 +422 2766 0.400000 +422 2920 0.400000 +422 2930 0.400000 +422 3028 0.400000 +422 3050 0.400000 +422 3064 0.400000 +422 3096 0.400000 +422 3106 0.400000 +422 3183 0.400000 +423 11 0.400000 +423 15 0.400000 +423 35 0.400000 +423 44 0.400000 +423 112 0.400000 +423 161 0.400000 +423 195 0.400000 +423 242 0.400000 +423 307 0.400000 +423 433 0.400000 +423 491 0.400000 +423 543 0.400000 +423 575 0.400000 +423 588 0.400000 +423 607 0.400000 +423 627 0.400000 +423 758 0.400000 +423 784 0.400000 +423 804 0.400000 +423 893 0.400000 +423 1030 0.400000 +423 1050 0.400000 +423 1160 0.400000 +423 1169 0.400000 +423 1219 0.400000 +423 1222 0.400000 +423 1280 0.400000 +423 1281 0.400000 +423 1333 0.400000 +423 1369 0.400000 +423 1434 0.400000 +423 1512 0.400000 +423 1523 0.400000 +423 1549 0.400000 +423 1609 0.400000 +423 1618 0.400000 +423 1694 0.400000 +423 1698 0.400000 +423 1795 0.400000 +423 1853 0.400000 +423 2011 0.400000 +423 2232 0.400000 +423 2339 0.400000 +423 2417 0.400000 +423 2430 0.400000 +423 2541 0.400000 +423 2583 0.400000 +423 2643 0.400000 +423 2684 0.400000 +423 2703 0.400000 +423 2740 0.400000 +423 2745 0.400000 +423 2832 0.400000 +423 2857 0.400000 +423 2889 0.400000 +423 2929 0.400000 +423 2955 0.400000 +423 3020 0.400000 +423 3025 0.400000 +423 3043 0.400000 +423 3080 0.400000 +423 3089 0.400000 +423 3101 0.400000 +423 3145 0.400000 +423 3187 0.400000 +423 3191 0.400000 +424 21 0.400000 +424 166 0.400000 +424 202 0.400000 +424 222 0.400000 +424 235 0.400000 +424 349 0.400000 +424 416 0.400000 +424 545 0.400000 +424 564 0.400000 +424 576 0.400000 +424 645 0.400000 +424 714 0.400000 +424 740 0.400000 +424 789 0.400000 +424 894 0.400000 +424 912 0.400000 +424 953 0.400000 +424 1009 0.400000 +424 1040 0.400000 +424 1055 0.400000 +424 1059 0.400000 +424 1075 0.400000 +424 1102 0.400000 +424 1179 0.400000 +424 1244 0.400000 +424 1265 0.400000 +424 1343 0.400000 +424 1368 0.400000 +424 1377 0.400000 +424 1398 0.400000 +424 1443 0.400000 +424 1481 0.400000 +424 1522 0.400000 +424 1543 0.400000 +424 1601 0.400000 +424 1731 0.400000 +424 1890 0.400000 +424 1903 0.400000 +424 1926 0.400000 +424 2012 0.400000 +424 2048 0.400000 +424 2070 0.400000 +424 2135 0.400000 +424 2165 0.400000 +424 2208 0.400000 +424 2337 0.400000 +424 2343 0.400000 +424 2458 0.400000 +424 2464 0.400000 +424 2467 0.400000 +424 2628 0.400000 +424 2648 0.400000 +424 2653 0.400000 +424 2697 0.400000 +424 2715 0.400000 +424 2717 0.400000 +424 2802 0.400000 +424 2969 0.400000 +424 2999 0.400000 +424 3105 0.400000 +424 3142 0.400000 +424 3196 0.400000 +425 85 0.400000 +425 203 0.400000 +425 314 0.400000 +425 361 0.400000 +425 363 0.400000 +425 382 0.400000 +425 410 0.400000 +425 468 0.400000 +425 511 0.400000 +425 525 0.400000 +425 649 0.400000 +425 695 0.400000 +425 722 0.400000 +425 729 0.400000 +425 733 0.400000 +425 770 0.400000 +425 792 0.400000 +425 842 0.400000 +425 855 0.400000 +425 945 0.400000 +425 987 0.400000 +425 1077 0.400000 +425 1080 0.400000 +425 1102 0.400000 +425 1141 0.400000 +425 1199 0.400000 +425 1251 0.400000 +425 1422 0.400000 +425 1443 0.400000 +425 1444 0.400000 +425 1497 0.400000 +425 1537 0.400000 +425 1543 0.400000 +425 1598 0.400000 +425 1654 0.400000 +425 1671 0.400000 +425 1752 0.400000 +425 1805 0.400000 +425 1832 0.400000 +425 2058 0.400000 +425 2095 0.400000 +425 2124 0.400000 +425 2138 0.400000 +425 2244 0.400000 +425 2439 0.400000 +425 2453 0.400000 +425 2498 0.400000 +425 2504 0.400000 +425 2592 0.400000 +425 2654 0.400000 +425 2688 0.400000 +425 2699 0.400000 +425 2750 0.400000 +425 2927 0.400000 +425 2945 0.400000 +425 2984 0.400000 +425 3054 0.400000 +425 3060 0.400000 +425 3079 0.400000 +425 3087 0.400000 +425 3116 0.400000 +426 141 0.400000 +426 150 0.400000 +426 168 0.400000 +426 234 0.400000 +426 303 0.400000 +426 322 0.400000 +426 344 0.400000 +426 414 0.400000 +426 497 0.400000 +426 512 0.400000 +426 597 0.400000 +426 643 0.400000 +426 706 0.400000 +426 826 0.400000 +426 862 0.400000 +426 903 0.400000 +426 923 0.400000 +426 971 0.400000 +426 972 0.400000 +426 1087 0.400000 +426 1099 0.400000 +426 1110 0.400000 +426 1238 0.400000 +426 1273 0.400000 +426 1317 0.400000 +426 1321 0.400000 +426 1442 0.400000 +426 1609 0.400000 +426 1635 0.400000 +426 1655 0.400000 +426 1662 0.400000 +426 1678 0.400000 +426 1688 0.400000 +426 1693 0.400000 +426 1853 0.400000 +426 1863 0.400000 +426 1902 0.400000 +426 2019 0.400000 +426 2028 0.400000 +426 2060 0.400000 +426 2066 0.400000 +426 2144 0.400000 +426 2204 0.400000 +426 2336 0.400000 +426 2360 0.400000 +426 2375 0.400000 +426 2410 0.400000 +426 2438 0.400000 +426 2444 0.400000 +426 2747 0.400000 +426 2809 0.400000 +426 2810 0.400000 +426 2845 0.400000 +426 2894 0.400000 +426 2923 0.400000 +426 2965 0.400000 +426 2985 0.400000 +426 3051 0.400000 +427 17 0.400000 +427 37 0.400000 +427 140 0.400000 +427 271 0.400000 +427 276 0.400000 +427 293 0.400000 +427 407 0.400000 +427 480 0.400000 +427 504 0.400000 +427 653 0.400000 +427 746 0.400000 +427 808 0.400000 +427 842 0.400000 +427 848 0.400000 +427 862 0.400000 +427 877 0.400000 +427 902 0.400000 +427 911 0.400000 +427 924 0.400000 +427 930 0.400000 +427 940 0.400000 +427 967 0.400000 +427 1045 0.400000 +427 1058 0.400000 +427 1087 0.400000 +427 1127 0.400000 +427 1139 0.400000 +427 1177 0.400000 +427 1214 0.400000 +427 1276 0.400000 +427 1318 0.400000 +427 1359 0.400000 +427 1466 0.400000 +427 1499 0.400000 +427 1530 0.400000 +427 1629 0.400000 +427 1630 0.400000 +427 1634 0.400000 +427 1680 0.400000 +427 1700 0.400000 +427 1777 0.400000 +427 1781 0.400000 +427 1804 0.400000 +427 1850 0.400000 +427 1878 0.400000 +427 1900 0.400000 +427 1927 0.400000 +427 2098 0.400000 +427 2101 0.400000 +427 2118 0.400000 +427 2212 0.400000 +427 2260 0.400000 +427 2303 0.400000 +427 2306 0.400000 +427 2362 0.400000 +427 2389 0.400000 +427 2448 0.400000 +427 2451 0.400000 +427 2467 0.400000 +427 2510 0.400000 +427 2518 0.400000 +427 2606 0.400000 +427 2637 0.400000 +427 2660 0.400000 +427 2725 0.400000 +427 2782 0.400000 +427 2821 0.400000 +427 2840 0.400000 +427 2953 0.400000 +427 2980 0.400000 +427 3006 0.400000 +427 3104 0.400000 +427 3157 0.400000 +428 12 0.400000 +428 19 0.400000 +428 51 0.400000 +428 61 0.400000 +428 115 0.400000 +428 195 0.400000 +428 228 0.400000 +428 232 0.400000 +428 236 0.400000 +428 251 0.400000 +428 273 0.400000 +428 356 0.400000 +428 424 0.400000 +428 435 0.400000 +428 441 0.400000 +428 448 0.400000 +428 451 0.400000 +428 463 0.400000 +428 544 0.400000 +428 621 0.400000 +428 660 0.400000 +428 735 0.400000 +428 742 0.400000 +428 803 0.400000 +428 834 0.400000 +428 886 0.400000 +428 889 0.400000 +428 909 0.400000 +428 922 0.400000 +428 929 0.400000 +428 938 0.400000 +428 939 0.400000 +428 953 0.400000 +428 1020 0.400000 +428 1223 0.400000 +428 1278 0.400000 +428 1292 0.400000 +428 1362 0.400000 +428 1389 0.400000 +428 1400 0.400000 +428 1470 0.400000 +428 1500 0.400000 +428 1574 0.400000 +428 1578 0.400000 +428 1601 0.400000 +428 1649 0.400000 +428 1735 0.400000 +428 1774 0.400000 +428 2061 0.400000 +428 2119 0.400000 +428 2181 0.400000 +428 2185 0.400000 +428 2225 0.400000 +428 2329 0.400000 +428 2411 0.400000 +428 2607 0.400000 +428 2685 0.400000 +428 2785 0.400000 +428 2792 0.400000 +428 2822 0.400000 +428 2989 0.400000 +428 3077 0.400000 +429 17 0.400000 +429 206 0.400000 +429 269 0.400000 +429 328 0.400000 +429 386 0.400000 +429 421 0.400000 +429 457 0.400000 +429 492 0.400000 +429 575 0.400000 +429 642 0.400000 +429 647 0.400000 +429 732 0.400000 +429 744 0.400000 +429 789 0.400000 +429 807 0.400000 +429 1104 0.400000 +429 1182 0.400000 +429 1271 0.400000 +429 1430 0.400000 +429 1525 0.400000 +429 1541 0.400000 +429 1550 0.400000 +429 1603 0.400000 +429 1631 0.400000 +429 1637 0.400000 +429 1673 0.400000 +429 1725 0.400000 +429 1784 0.400000 +429 1809 0.400000 +429 1831 0.400000 +429 1832 0.400000 +429 1845 0.400000 +429 1853 0.400000 +429 1867 0.400000 +429 1890 0.400000 +429 1941 0.400000 +429 1950 0.400000 +429 2097 0.400000 +429 2222 0.400000 +429 2254 0.400000 +429 2326 0.400000 +429 2499 0.400000 +429 2500 0.400000 +429 2522 0.400000 +429 2561 0.400000 +429 2562 0.400000 +429 2563 0.400000 +429 2757 0.400000 +429 2833 0.400000 +429 2857 0.400000 +429 2874 0.400000 +429 2959 0.400000 +429 3033 0.400000 +429 3139 0.400000 +430 64 0.400000 +430 130 0.400000 +430 135 0.400000 +430 142 0.400000 +430 259 0.400000 +430 266 0.400000 +430 338 0.400000 +430 399 0.400000 +430 426 0.400000 +430 495 0.400000 +430 519 0.400000 +430 524 0.400000 +430 574 0.400000 +430 576 0.400000 +430 665 0.400000 +430 737 0.400000 +430 771 0.400000 +430 814 0.400000 +430 836 0.400000 +430 856 0.400000 +430 869 0.400000 +430 880 0.400000 +430 983 0.400000 +430 990 0.400000 +430 1002 0.400000 +430 1094 0.400000 +430 1114 0.400000 +430 1119 0.400000 +430 1130 0.400000 +430 1229 0.400000 +430 1252 0.400000 +430 1255 0.400000 +430 1314 0.400000 +430 1339 0.400000 +430 1358 0.400000 +430 1380 0.400000 +430 1477 0.400000 +430 1545 0.400000 +430 1552 0.400000 +430 1649 0.400000 +430 1669 0.400000 +430 1670 0.400000 +430 1750 0.400000 +430 1803 0.400000 +430 1808 0.400000 +430 1885 0.400000 +430 1965 0.400000 +430 2078 0.400000 +430 2116 0.400000 +430 2155 0.400000 +430 2161 0.400000 +430 2266 0.400000 +430 2413 0.400000 +430 2422 0.400000 +430 2539 0.400000 +430 2572 0.400000 +430 2754 0.400000 +430 2767 0.400000 +430 2875 0.400000 +430 2921 0.400000 +430 3039 0.400000 +430 3049 0.400000 +430 3054 0.400000 +430 3082 0.400000 +430 3088 0.400000 +430 3099 0.400000 +430 3134 0.400000 +431 8 0.400000 +431 13 0.400000 +431 35 0.400000 +431 63 0.400000 +431 119 0.400000 +431 145 0.400000 +431 250 0.400000 +431 252 0.400000 +431 276 0.400000 +431 317 0.400000 +431 408 0.400000 +431 439 0.400000 +431 471 0.400000 +431 474 0.400000 +431 658 0.400000 +431 680 0.400000 +431 692 0.400000 +431 761 0.400000 +431 928 0.400000 +431 1008 0.400000 +431 1016 0.400000 +431 1048 0.400000 +431 1223 0.400000 +431 1236 0.400000 +431 1245 0.400000 +431 1259 0.400000 +431 1326 0.400000 +431 1329 0.400000 +431 1371 0.400000 +431 1385 0.400000 +431 1430 0.400000 +431 1451 0.400000 +431 1535 0.400000 +431 1611 0.400000 +431 1671 0.400000 +431 1687 0.400000 +431 1694 0.400000 +431 1738 0.400000 +431 1754 0.400000 +431 2106 0.400000 +431 2135 0.400000 +431 2141 0.400000 +431 2184 0.400000 +431 2281 0.400000 +431 2314 0.400000 +431 2371 0.400000 +431 2509 0.400000 +431 2516 0.400000 +431 2527 0.400000 +431 2565 0.400000 +431 2579 0.400000 +431 2625 0.400000 +431 2760 0.400000 +431 2819 0.400000 +431 2872 0.400000 +431 2882 0.400000 +431 2951 0.400000 +431 2990 0.400000 +431 3002 0.400000 +431 3004 0.400000 +431 3019 0.400000 +432 26 0.400000 +432 33 0.400000 +432 83 0.400000 +432 90 0.400000 +432 138 0.400000 +432 243 0.400000 +432 345 0.400000 +432 349 0.400000 +432 384 0.400000 +432 386 0.400000 +432 418 0.400000 +432 420 0.400000 +432 528 0.400000 +432 541 0.400000 +432 557 0.400000 +432 575 0.400000 +432 603 0.400000 +432 775 0.400000 +432 787 0.400000 +432 894 0.400000 +432 1009 0.400000 +432 1042 0.400000 +432 1103 0.400000 +432 1108 0.400000 +432 1119 0.400000 +432 1131 0.400000 +432 1163 0.400000 +432 1190 0.400000 +432 1217 0.400000 +432 1243 0.400000 +432 1405 0.400000 +432 1465 0.400000 +432 1514 0.400000 +432 1526 0.400000 +432 1581 0.400000 +432 1620 0.400000 +432 1738 0.400000 +432 1776 0.400000 +432 1812 0.400000 +432 1852 0.400000 +432 1885 0.400000 +432 1938 0.400000 +432 1952 0.400000 +432 2115 0.400000 +432 2120 0.400000 +432 2158 0.400000 +432 2167 0.400000 +432 2171 0.400000 +432 2194 0.400000 +432 2260 0.400000 +432 2311 0.400000 +432 2348 0.400000 +432 2350 0.400000 +432 2392 0.400000 +432 2427 0.400000 +432 2429 0.400000 +432 2437 0.400000 +432 2509 0.400000 +432 2545 0.400000 +432 2585 0.400000 +432 2610 0.400000 +432 2618 0.400000 +432 2631 0.400000 +432 2645 0.400000 +432 2674 0.400000 +432 2947 0.400000 +432 2976 0.400000 +432 2983 0.400000 +432 2987 0.400000 +432 3004 0.400000 +432 3097 0.400000 +433 28 0.400000 +433 135 0.400000 +433 200 0.400000 +433 331 0.400000 +433 434 0.400000 +433 578 0.400000 +433 660 0.400000 +433 818 0.400000 +433 827 0.400000 +433 899 0.400000 +433 1271 0.400000 +433 1318 0.400000 +433 1408 0.400000 +433 1462 0.400000 +433 1498 0.400000 +433 1525 0.400000 +433 1528 0.400000 +433 1573 0.400000 +433 1588 0.400000 +433 1670 0.400000 +433 1678 0.400000 +433 1694 0.400000 +433 1726 0.400000 +433 1845 0.400000 +433 1890 0.400000 +433 2019 0.400000 +433 2188 0.400000 +433 2227 0.400000 +433 2237 0.400000 +433 2292 0.400000 +433 2300 0.400000 +433 2304 0.400000 +433 2377 0.400000 +433 2544 0.400000 +433 2588 0.400000 +433 2620 0.400000 +433 2718 0.400000 +433 2722 0.400000 +433 2807 0.400000 +433 2835 0.400000 +433 2923 0.400000 +433 2934 0.400000 +433 2957 0.400000 +433 3024 0.400000 +433 3164 0.400000 +434 159 0.400000 +434 180 0.400000 +434 188 0.400000 +434 208 0.400000 +434 228 0.400000 +434 245 0.400000 +434 246 0.400000 +434 250 0.400000 +434 299 0.400000 +434 343 0.400000 +434 454 0.400000 +434 493 0.400000 +434 503 0.400000 +434 519 0.400000 +434 697 0.400000 +434 773 0.400000 +434 777 0.400000 +434 857 0.400000 +434 868 0.400000 +434 891 0.400000 +434 976 0.400000 +434 1018 0.400000 +434 1043 0.400000 +434 1046 0.400000 +434 1061 0.400000 +434 1079 0.400000 +434 1139 0.400000 +434 1216 0.400000 +434 1248 0.400000 +434 1276 0.400000 +434 1297 0.400000 +434 1337 0.400000 +434 1463 0.400000 +434 1489 0.400000 +434 1496 0.400000 +434 1523 0.400000 +434 1563 0.400000 +434 1606 0.400000 +434 1626 0.400000 +434 1654 0.400000 +434 1845 0.400000 +434 1878 0.400000 +434 1901 0.400000 +434 1951 0.400000 +434 2009 0.400000 +434 2220 0.400000 +434 2222 0.400000 +434 2308 0.400000 +434 2400 0.400000 +434 2409 0.400000 +434 2636 0.400000 +434 2683 0.400000 +434 2695 0.400000 +434 3099 0.400000 +434 3118 0.400000 +434 3191 0.400000 +435 30 0.400000 +435 68 0.400000 +435 76 0.400000 +435 137 0.400000 +435 246 0.400000 +435 270 0.400000 +435 423 0.400000 +435 495 0.400000 +435 552 0.400000 +435 560 0.400000 +435 568 0.400000 +435 585 0.400000 +435 607 0.400000 +435 665 0.400000 +435 728 0.400000 +435 769 0.400000 +435 781 0.400000 +435 816 0.400000 +435 848 0.400000 +435 849 0.400000 +435 850 0.400000 +435 861 0.400000 +435 895 0.400000 +435 938 0.400000 +435 953 0.400000 +435 959 0.400000 +435 976 0.400000 +435 1375 0.400000 +435 1407 0.400000 +435 1478 0.400000 +435 1492 0.400000 +435 1556 0.400000 +435 1652 0.400000 +435 1722 0.400000 +435 1788 0.400000 +435 1846 0.400000 +435 1856 0.400000 +435 1898 0.400000 +435 1946 0.400000 +435 1960 0.400000 +435 2017 0.400000 +435 2099 0.400000 +435 2144 0.400000 +435 2274 0.400000 +435 2337 0.400000 +435 2416 0.400000 +435 2434 0.400000 +435 2546 0.400000 +435 2565 0.400000 +435 2574 0.400000 +435 2602 0.400000 +435 2607 0.400000 +435 2654 0.400000 +435 2723 0.400000 +435 2763 0.400000 +435 2773 0.400000 +435 2786 0.400000 +435 2974 0.400000 +435 3058 0.400000 +435 3061 0.400000 +435 3074 0.400000 +435 3109 0.400000 +435 3199 0.400000 +436 75 0.400000 +436 108 0.400000 +436 158 0.400000 +436 265 0.400000 +436 301 0.400000 +436 404 0.400000 +436 460 0.400000 +436 486 0.400000 +436 493 0.400000 +436 522 0.400000 +436 535 0.400000 +436 551 0.400000 +436 571 0.400000 +436 577 0.400000 +436 644 0.400000 +436 691 0.400000 +436 712 0.400000 +436 713 0.400000 +436 780 0.400000 +436 1013 0.400000 +436 1043 0.400000 +436 1057 0.400000 +436 1144 0.400000 +436 1173 0.400000 +436 1210 0.400000 +436 1249 0.400000 +436 1261 0.400000 +436 1293 0.400000 +436 1297 0.400000 +436 1310 0.400000 +436 1448 0.400000 +436 1501 0.400000 +436 1536 0.400000 +436 1559 0.400000 +436 1565 0.400000 +436 1646 0.400000 +436 1740 0.400000 +436 1782 0.400000 +436 1800 0.400000 +436 1858 0.400000 +436 1876 0.400000 +436 1880 0.400000 +436 1893 0.400000 +436 1916 0.400000 +436 1933 0.400000 +436 1978 0.400000 +436 1979 0.400000 +436 1999 0.400000 +436 2031 0.400000 +436 2035 0.400000 +436 2079 0.400000 +436 2094 0.400000 +436 2137 0.400000 +436 2194 0.400000 +436 2264 0.400000 +436 2277 0.400000 +436 2339 0.400000 +436 2346 0.400000 +436 2349 0.400000 +436 2350 0.400000 +436 2354 0.400000 +436 2432 0.400000 +436 2479 0.400000 +436 2561 0.400000 +436 2572 0.400000 +436 2657 0.400000 +436 2744 0.400000 +436 2882 0.400000 +436 2920 0.400000 +436 3200 0.400000 +437 27 0.400000 +437 33 0.400000 +437 76 0.400000 +437 96 0.400000 +437 137 0.400000 +437 138 0.400000 +437 157 0.400000 +437 212 0.400000 +437 241 0.400000 +437 246 0.400000 +437 285 0.400000 +437 330 0.400000 +437 358 0.400000 +437 379 0.400000 +437 396 0.400000 +437 453 0.400000 +437 557 0.400000 +437 563 0.400000 +437 589 0.400000 +437 622 0.400000 +437 666 0.400000 +437 793 0.400000 +437 803 0.400000 +437 888 0.400000 +437 952 0.400000 +437 958 0.400000 +437 967 0.400000 +437 977 0.400000 +437 979 0.400000 +437 1050 0.400000 +437 1052 0.400000 +437 1149 0.400000 +437 1333 0.400000 +437 1345 0.400000 +437 1421 0.400000 +437 1442 0.400000 +437 1631 0.400000 +437 1645 0.400000 +437 1651 0.400000 +437 1709 0.400000 +437 1753 0.400000 +437 1762 0.400000 +437 1765 0.400000 +437 1793 0.400000 +437 1850 0.400000 +437 2008 0.400000 +437 2093 0.400000 +437 2177 0.400000 +437 2185 0.400000 +437 2187 0.400000 +437 2209 0.400000 +437 2290 0.400000 +437 2299 0.400000 +437 2391 0.400000 +437 2437 0.400000 +437 2624 0.400000 +437 2725 0.400000 +437 2754 0.400000 +437 2804 0.400000 +437 2856 0.400000 +437 2865 0.400000 +437 2880 0.400000 +437 2884 0.400000 +437 2915 0.400000 +437 2940 0.400000 +437 2982 0.400000 +437 2984 0.400000 +437 3005 0.400000 +437 3148 0.400000 +438 31 0.400000 +438 118 0.400000 +438 130 0.400000 +438 215 0.400000 +438 246 0.400000 +438 258 0.400000 +438 293 0.400000 +438 364 0.400000 +438 418 0.400000 +438 426 0.400000 +438 500 0.400000 +438 695 0.400000 +438 726 0.400000 +438 749 0.400000 +438 785 0.400000 +438 801 0.400000 +438 820 0.400000 +438 903 0.400000 +438 930 0.400000 +438 968 0.400000 +438 1143 0.400000 +438 1180 0.400000 +438 1218 0.400000 +438 1246 0.400000 +438 1435 0.400000 +438 1436 0.400000 +438 1479 0.400000 +438 1490 0.400000 +438 1574 0.400000 +438 1669 0.400000 +438 1697 0.400000 +438 1848 0.400000 +438 1866 0.400000 +438 1946 0.400000 +438 1949 0.400000 +438 1961 0.400000 +438 1970 0.400000 +438 2011 0.400000 +438 2028 0.400000 +438 2062 0.400000 +438 2072 0.400000 +438 2101 0.400000 +438 2191 0.400000 +438 2278 0.400000 +438 2357 0.400000 +438 2414 0.400000 +438 2476 0.400000 +438 2508 0.400000 +438 2527 0.400000 +438 2679 0.400000 +438 2681 0.400000 +438 2741 0.400000 +438 2827 0.400000 +438 2831 0.400000 +438 2866 0.400000 +438 2870 0.400000 +438 2924 0.400000 +438 2926 0.400000 +438 3073 0.400000 +438 3098 0.400000 +438 3148 0.400000 +438 3150 0.400000 +438 3199 0.400000 +439 125 0.400000 +439 214 0.400000 +439 217 0.400000 +439 255 0.400000 +439 285 0.400000 +439 339 0.400000 +439 427 0.400000 +439 478 0.400000 +439 622 0.400000 +439 630 0.400000 +439 634 0.400000 +439 674 0.400000 +439 688 0.400000 +439 773 0.400000 +439 859 0.400000 +439 903 0.400000 +439 922 0.400000 +439 923 0.400000 +439 993 0.400000 +439 1098 0.400000 +439 1166 0.400000 +439 1213 0.400000 +439 1286 0.400000 +439 1321 0.400000 +439 1428 0.400000 +439 1513 0.400000 +439 1596 0.400000 +439 1609 0.400000 +439 1623 0.400000 +439 1739 0.400000 +439 1746 0.400000 +439 1770 0.400000 +439 1879 0.400000 +439 2063 0.400000 +439 2074 0.400000 +439 2078 0.400000 +439 2111 0.400000 +439 2150 0.400000 +439 2153 0.400000 +439 2160 0.400000 +439 2279 0.400000 +439 2418 0.400000 +439 2426 0.400000 +439 2499 0.400000 +439 2524 0.400000 +439 2597 0.400000 +439 2603 0.400000 +439 2714 0.400000 +439 2749 0.400000 +439 2785 0.400000 +439 2806 0.400000 +439 2862 0.400000 +439 2906 0.400000 +439 2923 0.400000 +439 2982 0.400000 +439 3002 0.400000 +439 3049 0.400000 +439 3053 0.400000 +439 3112 0.400000 +439 3159 0.400000 +440 84 0.400000 +440 85 0.400000 +440 143 0.400000 +440 189 0.400000 +440 193 0.400000 +440 199 0.400000 +440 235 0.400000 +440 259 0.400000 +440 273 0.400000 +440 344 0.400000 +440 376 0.400000 +440 468 0.400000 +440 516 0.400000 +440 521 0.400000 +440 550 0.400000 +440 558 0.400000 +440 591 0.400000 +440 613 0.400000 +440 759 0.400000 +440 898 0.400000 +440 1007 0.400000 +440 1048 0.400000 +440 1118 0.400000 +440 1144 0.400000 +440 1146 0.400000 +440 1157 0.400000 +440 1227 0.400000 +440 1240 0.400000 +440 1274 0.400000 +440 1413 0.400000 +440 1422 0.400000 +440 1464 0.400000 +440 1477 0.400000 +440 1522 0.400000 +440 1550 0.400000 +440 1624 0.400000 +440 1652 0.400000 +440 1764 0.400000 +440 1788 0.400000 +440 1862 0.400000 +440 2215 0.400000 +440 2264 0.400000 +440 2349 0.400000 +440 2445 0.400000 +440 2449 0.400000 +440 2451 0.400000 +440 2488 0.400000 +440 2498 0.400000 +440 2571 0.400000 +440 2586 0.400000 +440 2587 0.400000 +440 2636 0.400000 +440 2684 0.400000 +440 2737 0.400000 +440 2848 0.400000 +440 2849 0.400000 +440 2879 0.400000 +440 2912 0.400000 +440 2925 0.400000 +440 3036 0.400000 +440 3054 0.400000 +440 3063 0.400000 +440 3082 0.400000 +440 3083 0.400000 +440 3087 0.400000 +440 3134 0.400000 +440 3190 0.400000 +441 51 0.400000 +441 56 0.400000 +441 113 0.400000 +441 125 0.400000 +441 126 0.400000 +441 140 0.400000 +441 153 0.400000 +441 194 0.400000 +441 325 0.400000 +441 356 0.400000 +441 416 0.400000 +441 485 0.400000 +441 509 0.400000 +441 551 0.400000 +441 558 0.400000 +441 563 0.400000 +441 595 0.400000 +441 717 0.400000 +441 722 0.400000 +441 728 0.400000 +441 758 0.400000 +441 803 0.400000 +441 849 0.400000 +441 856 0.400000 +441 997 0.400000 +441 1111 0.400000 +441 1120 0.400000 +441 1190 0.400000 +441 1218 0.400000 +441 1246 0.400000 +441 1272 0.400000 +441 1283 0.400000 +441 1300 0.400000 +441 1379 0.400000 +441 1438 0.400000 +441 1673 0.400000 +441 1884 0.400000 +441 2214 0.400000 +441 2272 0.400000 +441 2273 0.400000 +441 2317 0.400000 +441 2392 0.400000 +441 2394 0.400000 +441 2440 0.400000 +441 2457 0.400000 +441 2526 0.400000 +441 2530 0.400000 +441 2548 0.400000 +441 2576 0.400000 +441 2620 0.400000 +441 2627 0.400000 +441 2651 0.400000 +441 2662 0.400000 +441 2762 0.400000 +441 2782 0.400000 +441 2791 0.400000 +441 2803 0.400000 +441 2872 0.400000 +441 2957 0.400000 +441 3006 0.400000 +441 3056 0.400000 +441 3108 0.400000 +441 3188 0.400000 +441 3200 0.400000 +442 46 0.400000 +442 80 0.400000 +442 96 0.400000 +442 128 0.400000 +442 165 0.400000 +442 168 0.400000 +442 253 0.400000 +442 256 0.400000 +442 396 0.400000 +442 536 0.400000 +442 556 0.400000 +442 594 0.400000 +442 770 0.400000 +442 885 0.400000 +442 912 0.400000 +442 935 0.400000 +442 985 0.400000 +442 996 0.400000 +442 1165 0.400000 +442 1265 0.400000 +442 1435 0.400000 +442 1485 0.400000 +442 1538 0.400000 +442 1579 0.400000 +442 1632 0.400000 +442 1694 0.400000 +442 1830 0.400000 +442 1878 0.400000 +442 1910 0.400000 +442 1934 0.400000 +442 2070 0.400000 +442 2112 0.400000 +442 2154 0.400000 +442 2177 0.400000 +442 2213 0.400000 +442 2263 0.400000 +442 2326 0.400000 +442 2418 0.400000 +442 2459 0.400000 +442 2470 0.400000 +442 2497 0.400000 +442 2581 0.400000 +442 2602 0.400000 +442 2718 0.400000 +442 2740 0.400000 +442 2791 0.400000 +442 2803 0.400000 +442 2821 0.400000 +442 2829 0.400000 +442 2834 0.400000 +442 2866 0.400000 +442 2994 0.400000 +442 3056 0.400000 +442 3074 0.400000 +442 3118 0.400000 +443 26 0.400000 +443 37 0.400000 +443 135 0.400000 +443 139 0.400000 +443 145 0.400000 +443 181 0.400000 +443 219 0.400000 +443 372 0.400000 +443 378 0.400000 +443 415 0.400000 +443 451 0.400000 +443 505 0.400000 +443 538 0.400000 +443 580 0.400000 +443 647 0.400000 +443 672 0.400000 +443 709 0.400000 +443 758 0.400000 +443 764 0.400000 +443 770 0.400000 +443 942 0.400000 +443 957 0.400000 +443 1081 0.400000 +443 1168 0.400000 +443 1195 0.400000 +443 1390 0.400000 +443 1541 0.400000 +443 1548 0.400000 +443 1558 0.400000 +443 1600 0.400000 +443 1602 0.400000 +443 1681 0.400000 +443 1716 0.400000 +443 1730 0.400000 +443 1773 0.400000 +443 1785 0.400000 +443 1810 0.400000 +443 1848 0.400000 +443 1862 0.400000 +443 1927 0.400000 +443 1940 0.400000 +443 1996 0.400000 +443 2009 0.400000 +443 2020 0.400000 +443 2133 0.400000 +443 2221 0.400000 +443 2325 0.400000 +443 2371 0.400000 +443 2391 0.400000 +443 2430 0.400000 +443 2471 0.400000 +443 2530 0.400000 +443 2543 0.400000 +443 2584 0.400000 +443 2658 0.400000 +443 2703 0.400000 +443 2802 0.400000 +443 2880 0.400000 +443 2887 0.400000 +443 2965 0.400000 +443 3002 0.400000 +443 3039 0.400000 +443 3075 0.400000 +443 3121 0.400000 +443 3122 0.400000 +443 3192 0.400000 +444 24 0.400000 +444 43 0.400000 +444 54 0.400000 +444 77 0.400000 +444 144 0.400000 +444 150 0.400000 +444 320 0.400000 +444 331 0.400000 +444 383 0.400000 +444 435 0.400000 +444 442 0.400000 +444 456 0.400000 +444 498 0.400000 +444 587 0.400000 +444 854 0.400000 +444 953 0.400000 +444 1045 0.400000 +444 1069 0.400000 +444 1070 0.400000 +444 1112 0.400000 +444 1124 0.400000 +444 1158 0.400000 +444 1167 0.400000 +444 1195 0.400000 +444 1267 0.400000 +444 1288 0.400000 +444 1368 0.400000 +444 1391 0.400000 +444 1422 0.400000 +444 1492 0.400000 +444 1538 0.400000 +444 1572 0.400000 +444 1585 0.400000 +444 1651 0.400000 +444 1677 0.400000 +444 1714 0.400000 +444 1723 0.400000 +444 1736 0.400000 +444 1949 0.400000 +444 1976 0.400000 +444 1980 0.400000 +444 2014 0.400000 +444 2039 0.400000 +444 2061 0.400000 +444 2107 0.400000 +444 2122 0.400000 +444 2243 0.400000 +444 2257 0.400000 +444 2283 0.400000 +444 2292 0.400000 +444 2299 0.400000 +444 2349 0.400000 +444 2359 0.400000 +444 2361 0.400000 +444 2488 0.400000 +444 2497 0.400000 +444 2685 0.400000 +444 2761 0.400000 +444 2792 0.400000 +444 2865 0.400000 +444 2967 0.400000 +444 2979 0.400000 +444 3008 0.400000 +444 3057 0.400000 +444 3070 0.400000 +444 3079 0.400000 +444 3135 0.400000 +444 3168 0.400000 +445 28 0.400000 +445 33 0.400000 +445 36 0.400000 +445 92 0.400000 +445 120 0.400000 +445 135 0.400000 +445 199 0.400000 +445 218 0.400000 +445 240 0.400000 +445 402 0.400000 +445 461 0.400000 +445 465 0.400000 +445 561 0.400000 +445 603 0.400000 +445 663 0.400000 +445 714 0.400000 +445 899 0.400000 +445 908 0.400000 +445 909 0.400000 +445 941 0.400000 +445 962 0.400000 +445 1008 0.400000 +445 1075 0.400000 +445 1129 0.400000 +445 1134 0.400000 +445 1225 0.400000 +445 1233 0.400000 +445 1251 0.400000 +445 1319 0.400000 +445 1378 0.400000 +445 1419 0.400000 +445 1578 0.400000 +445 1579 0.400000 +445 1666 0.400000 +445 1728 0.400000 +445 1751 0.400000 +445 1824 0.400000 +445 1826 0.400000 +445 1839 0.400000 +445 1856 0.400000 +445 1858 0.400000 +445 1859 0.400000 +445 1901 0.400000 +445 1954 0.400000 +445 1966 0.400000 +445 1999 0.400000 +445 2003 0.400000 +445 2086 0.400000 +445 2163 0.400000 +445 2167 0.400000 +445 2188 0.400000 +445 2234 0.400000 +445 2386 0.400000 +445 2445 0.400000 +445 2494 0.400000 +445 2549 0.400000 +445 2566 0.400000 +445 2575 0.400000 +445 2812 0.400000 +445 2882 0.400000 +445 2933 0.400000 +445 3050 0.400000 +445 3085 0.400000 +445 3109 0.400000 +446 7 0.400000 +446 78 0.400000 +446 141 0.400000 +446 229 0.400000 +446 328 0.400000 +446 363 0.400000 +446 372 0.400000 +446 435 0.400000 +446 526 0.400000 +446 652 0.400000 +446 736 0.400000 +446 742 0.400000 +446 779 0.400000 +446 953 0.400000 +446 971 0.400000 +446 1052 0.400000 +446 1068 0.400000 +446 1074 0.400000 +446 1081 0.400000 +446 1163 0.400000 +446 1176 0.400000 +446 1178 0.400000 +446 1190 0.400000 +446 1235 0.400000 +446 1276 0.400000 +446 1369 0.400000 +446 1390 0.400000 +446 1461 0.400000 +446 1466 0.400000 +446 1552 0.400000 +446 1558 0.400000 +446 1607 0.400000 +446 1613 0.400000 +446 1640 0.400000 +446 1690 0.400000 +446 1738 0.400000 +446 1809 0.400000 +446 1818 0.400000 +446 1859 0.400000 +446 1887 0.400000 +446 1905 0.400000 +446 1929 0.400000 +446 1959 0.400000 +446 2023 0.400000 +446 2054 0.400000 +446 2091 0.400000 +446 2100 0.400000 +446 2283 0.400000 +446 2365 0.400000 +446 2435 0.400000 +446 2438 0.400000 +446 2528 0.400000 +446 2557 0.400000 +446 2675 0.400000 +446 2806 0.400000 +446 2810 0.400000 +446 2849 0.400000 +446 2859 0.400000 +446 2938 0.400000 +446 2970 0.400000 +446 3178 0.400000 +447 37 0.400000 +447 101 0.400000 +447 117 0.400000 +447 369 0.400000 +447 397 0.400000 +447 452 0.400000 +447 473 0.400000 +447 528 0.400000 +447 541 0.400000 +447 556 0.400000 +447 640 0.400000 +447 656 0.400000 +447 739 0.400000 +447 869 0.400000 +447 877 0.400000 +447 975 0.400000 +447 1006 0.400000 +447 1039 0.400000 +447 1046 0.400000 +447 1170 0.400000 +447 1249 0.400000 +447 1277 0.400000 +447 1348 0.400000 +447 1359 0.400000 +447 1403 0.400000 +447 1411 0.400000 +447 1437 0.400000 +447 1487 0.400000 +447 1582 0.400000 +447 1610 0.400000 +447 1712 0.400000 +447 1768 0.400000 +447 1859 0.400000 +447 1908 0.400000 +447 1970 0.400000 +447 2000 0.400000 +447 2025 0.400000 +447 2062 0.400000 +447 2083 0.400000 +447 2188 0.400000 +447 2222 0.400000 +447 2240 0.400000 +447 2297 0.400000 +447 2402 0.400000 +447 2443 0.400000 +447 2552 0.400000 +447 2562 0.400000 +447 2702 0.400000 +447 2743 0.400000 +447 2787 0.400000 +447 2795 0.400000 +447 2798 0.400000 +447 2839 0.400000 +447 2872 0.400000 +447 2877 0.400000 +447 2949 0.400000 +447 2980 0.400000 +447 3007 0.400000 +447 3042 0.400000 +447 3114 0.400000 +448 33 0.400000 +448 133 0.400000 +448 149 0.400000 +448 155 0.400000 +448 197 0.400000 +448 198 0.400000 +448 245 0.400000 +448 465 0.400000 +448 538 0.400000 +448 605 0.400000 +448 642 0.400000 +448 733 0.400000 +448 759 0.400000 +448 819 0.400000 +448 829 0.400000 +448 888 0.400000 +448 898 0.400000 +448 911 0.400000 +448 982 0.400000 +448 991 0.400000 +448 1033 0.400000 +448 1045 0.400000 +448 1192 0.400000 +448 1259 0.400000 +448 1383 0.400000 +448 1409 0.400000 +448 1421 0.400000 +448 1521 0.400000 +448 1560 0.400000 +448 1603 0.400000 +448 1713 0.400000 +448 1830 0.400000 +448 1839 0.400000 +448 1866 0.400000 +448 1898 0.400000 +448 1918 0.400000 +448 1969 0.400000 +448 1976 0.400000 +448 2096 0.400000 +448 2268 0.400000 +448 2295 0.400000 +448 2432 0.400000 +448 2597 0.400000 +448 2599 0.400000 +448 2687 0.400000 +448 2803 0.400000 +448 2851 0.400000 +448 2965 0.400000 +448 3090 0.400000 +448 3142 0.400000 +448 3153 0.400000 +448 3174 0.400000 +448 3187 0.400000 +448 3191 0.400000 +449 26 0.400000 +449 134 0.400000 +449 154 0.400000 +449 215 0.400000 +449 219 0.400000 +449 229 0.400000 +449 285 0.400000 +449 370 0.400000 +449 394 0.400000 +449 447 0.400000 +449 458 0.400000 +449 471 0.400000 +449 479 0.400000 +449 535 0.400000 +449 543 0.400000 +449 614 0.400000 +449 651 0.400000 +449 707 0.400000 +449 720 0.400000 +449 768 0.400000 +449 802 0.400000 +449 878 0.400000 +449 913 0.400000 +449 926 0.400000 +449 933 0.400000 +449 1016 0.400000 +449 1052 0.400000 +449 1119 0.400000 +449 1152 0.400000 +449 1292 0.400000 +449 1316 0.400000 +449 1469 0.400000 +449 1504 0.400000 +449 1549 0.400000 +449 1584 0.400000 +449 1598 0.400000 +449 1609 0.400000 +449 1640 0.400000 +449 1721 0.400000 +449 1755 0.400000 +449 1774 0.400000 +449 1846 0.400000 +449 1982 0.400000 +449 1996 0.400000 +449 1997 0.400000 +449 2004 0.400000 +449 2055 0.400000 +449 2138 0.400000 +449 2223 0.400000 +449 2239 0.400000 +449 2249 0.400000 +449 2298 0.400000 +449 2319 0.400000 +449 2398 0.400000 +449 2456 0.400000 +449 2489 0.400000 +449 2491 0.400000 +449 2531 0.400000 +449 2648 0.400000 +449 2655 0.400000 +449 2713 0.400000 +449 2770 0.400000 +449 2996 0.400000 +449 3003 0.400000 +449 3055 0.400000 +449 3068 0.400000 +449 3158 0.400000 +449 3160 0.400000 +450 133 0.400000 +450 152 0.400000 +450 169 0.400000 +450 296 0.400000 +450 297 0.400000 +450 513 0.400000 +450 668 0.400000 +450 719 0.400000 +450 755 0.400000 +450 768 0.400000 +450 836 0.400000 +450 934 0.400000 +450 935 0.400000 +450 943 0.400000 +450 1016 0.400000 +450 1062 0.400000 +450 1174 0.400000 +450 1302 0.400000 +450 1323 0.400000 +450 1385 0.400000 +450 1405 0.400000 +450 1449 0.400000 +450 1551 0.400000 +450 1553 0.400000 +450 1644 0.400000 +450 1669 0.400000 +450 1686 0.400000 +450 1707 0.400000 +450 1744 0.400000 +450 1778 0.400000 +450 1809 0.400000 +450 1843 0.400000 +450 1950 0.400000 +450 2034 0.400000 +450 2113 0.400000 +450 2121 0.400000 +450 2142 0.400000 +450 2185 0.400000 +450 2193 0.400000 +450 2230 0.400000 +450 2324 0.400000 +450 2343 0.400000 +450 2536 0.400000 +450 2547 0.400000 +450 2551 0.400000 +450 2684 0.400000 +450 2725 0.400000 +450 2731 0.400000 +450 2808 0.400000 +450 2952 0.400000 +450 3034 0.400000 +450 3146 0.400000 +451 53 0.400000 +451 172 0.400000 +451 185 0.400000 +451 227 0.400000 +451 232 0.400000 +451 237 0.400000 +451 267 0.400000 +451 291 0.400000 +451 352 0.400000 +451 370 0.400000 +451 376 0.400000 +451 496 0.400000 +451 606 0.400000 +451 668 0.400000 +451 705 0.400000 +451 914 0.400000 +451 997 0.400000 +451 1006 0.400000 +451 1091 0.400000 +451 1130 0.400000 +451 1136 0.400000 +451 1166 0.400000 +451 1170 0.400000 +451 1190 0.400000 +451 1222 0.400000 +451 1260 0.400000 +451 1267 0.400000 +451 1326 0.400000 +451 1346 0.400000 +451 1360 0.400000 +451 1392 0.400000 +451 1449 0.400000 +451 1494 0.400000 +451 1544 0.400000 +451 1564 0.400000 +451 1630 0.400000 +451 1663 0.400000 +451 1680 0.400000 +451 1727 0.400000 +451 1748 0.400000 +451 1763 0.400000 +451 1787 0.400000 +451 1857 0.400000 +451 1864 0.400000 +451 1959 0.400000 +451 2103 0.400000 +451 2105 0.400000 +451 2117 0.400000 +451 2345 0.400000 +451 2353 0.400000 +451 2354 0.400000 +451 2476 0.400000 +451 2504 0.400000 +451 2574 0.400000 +451 2587 0.400000 +451 2663 0.400000 +451 2702 0.400000 +451 2740 0.400000 +451 2798 0.400000 +451 2840 0.400000 +451 2897 0.400000 +451 2942 0.400000 +451 2954 0.400000 +451 3010 0.400000 +451 3199 0.400000 +452 23 0.400000 +452 50 0.400000 +452 71 0.400000 +452 102 0.400000 +452 114 0.400000 +452 125 0.400000 +452 149 0.400000 +452 205 0.400000 +452 312 0.400000 +452 502 0.400000 +452 619 0.400000 +452 626 0.400000 +452 695 0.400000 +452 830 0.400000 +452 832 0.400000 +452 891 0.400000 +452 921 0.400000 +452 978 0.400000 +452 1042 0.400000 +452 1065 0.400000 +452 1078 0.400000 +452 1124 0.400000 +452 1235 0.400000 +452 1274 0.400000 +452 1477 0.400000 +452 1523 0.400000 +452 1548 0.400000 +452 1608 0.400000 +452 1633 0.400000 +452 1649 0.400000 +452 1740 0.400000 +452 1745 0.400000 +452 1860 0.400000 +452 1862 0.400000 +452 1887 0.400000 +452 1943 0.400000 +452 1988 0.400000 +452 1991 0.400000 +452 2016 0.400000 +452 2056 0.400000 +452 2093 0.400000 +452 2244 0.400000 +452 2258 0.400000 +452 2296 0.400000 +452 2340 0.400000 +452 2341 0.400000 +452 2347 0.400000 +452 2389 0.400000 +452 2403 0.400000 +452 2485 0.400000 +452 2499 0.400000 +452 2557 0.400000 +452 2624 0.400000 +452 2672 0.400000 +452 2677 0.400000 +452 3017 0.400000 +452 3075 0.400000 +452 3116 0.400000 +452 3138 0.400000 +453 57 0.400000 +453 180 0.400000 +453 206 0.400000 +453 434 0.400000 +453 453 0.400000 +453 456 0.400000 +453 508 0.400000 +453 604 0.400000 +453 648 0.400000 +453 662 0.400000 +453 672 0.400000 +453 705 0.400000 +453 781 0.400000 +453 790 0.400000 +453 799 0.400000 +453 900 0.400000 +453 934 0.400000 +453 1082 0.400000 +453 1091 0.400000 +453 1094 0.400000 +453 1130 0.400000 +453 1136 0.400000 +453 1195 0.400000 +453 1216 0.400000 +453 1238 0.400000 +453 1272 0.400000 +453 1311 0.400000 +453 1312 0.400000 +453 1372 0.400000 +453 1374 0.400000 +453 1381 0.400000 +453 1402 0.400000 +453 1504 0.400000 +453 1521 0.400000 +453 1565 0.400000 +453 1735 0.400000 +453 1740 0.400000 +453 1923 0.400000 +453 2034 0.400000 +453 2064 0.400000 +453 2078 0.400000 +453 2122 0.400000 +453 2145 0.400000 +453 2154 0.400000 +453 2321 0.400000 +453 2427 0.400000 +453 2521 0.400000 +453 2558 0.400000 +453 2591 0.400000 +453 2598 0.400000 +453 2621 0.400000 +453 2775 0.400000 +453 2786 0.400000 +453 2808 0.400000 +453 2853 0.400000 +453 2908 0.400000 +453 2909 0.400000 +453 2937 0.400000 +453 2950 0.400000 +453 2982 0.400000 +453 3031 0.400000 +453 3071 0.400000 +453 3144 0.400000 +454 13 0.400000 +454 29 0.400000 +454 87 0.400000 +454 93 0.400000 +454 145 0.400000 +454 152 0.400000 +454 357 0.400000 +454 505 0.400000 +454 580 0.400000 +454 583 0.400000 +454 615 0.400000 +454 677 0.400000 +454 753 0.400000 +454 852 0.400000 +454 937 0.400000 +454 979 0.400000 +454 1031 0.400000 +454 1053 0.400000 +454 1057 0.400000 +454 1136 0.400000 +454 1158 0.400000 +454 1179 0.400000 +454 1190 0.400000 +454 1290 0.400000 +454 1385 0.400000 +454 1438 0.400000 +454 1479 0.400000 +454 1492 0.400000 +454 1507 0.400000 +454 1524 0.400000 +454 1604 0.400000 +454 1605 0.400000 +454 1659 0.400000 +454 1672 0.400000 +454 1698 0.400000 +454 1723 0.400000 +454 1768 0.400000 +454 1774 0.400000 +454 1898 0.400000 +454 1955 0.400000 +454 2044 0.400000 +454 2265 0.400000 +454 2285 0.400000 +454 2297 0.400000 +454 2358 0.400000 +454 2404 0.400000 +454 2419 0.400000 +454 2465 0.400000 +454 2608 0.400000 +454 2616 0.400000 +454 2702 0.400000 +454 2843 0.400000 +454 2844 0.400000 +454 2875 0.400000 +454 2929 0.400000 +454 2939 0.400000 +454 3053 0.400000 +454 3084 0.400000 +454 3135 0.400000 +455 21 0.400000 +455 36 0.400000 +455 71 0.400000 +455 166 0.400000 +455 253 0.400000 +455 262 0.400000 +455 294 0.400000 +455 344 0.400000 +455 382 0.400000 +455 422 0.400000 +455 535 0.400000 +455 607 0.400000 +455 624 0.400000 +455 673 0.400000 +455 702 0.400000 +455 736 0.400000 +455 758 0.400000 +455 790 0.400000 +455 819 0.400000 +455 919 0.400000 +455 1130 0.400000 +455 1194 0.400000 +455 1215 0.400000 +455 1220 0.400000 +455 1228 0.400000 +455 1296 0.400000 +455 1399 0.400000 +455 1406 0.400000 +455 1426 0.400000 +455 1445 0.400000 +455 1526 0.400000 +455 1551 0.400000 +455 1631 0.400000 +455 1636 0.400000 +455 1639 0.400000 +455 1710 0.400000 +455 1712 0.400000 +455 1727 0.400000 +455 1781 0.400000 +455 1848 0.400000 +455 1870 0.400000 +455 1890 0.400000 +455 1893 0.400000 +455 1941 0.400000 +455 2076 0.400000 +455 2124 0.400000 +455 2129 0.400000 +455 2269 0.400000 +455 2301 0.400000 +455 2397 0.400000 +455 2406 0.400000 +455 2432 0.400000 +455 2437 0.400000 +455 2517 0.400000 +455 2525 0.400000 +455 2536 0.400000 +455 2690 0.400000 +455 2711 0.400000 +455 2781 0.400000 +455 2793 0.400000 +455 2915 0.400000 +455 2963 0.400000 +455 3000 0.400000 +455 3039 0.400000 +455 3052 0.400000 +455 3166 0.400000 +455 3171 0.400000 +456 54 0.400000 +456 60 0.400000 +456 82 0.400000 +456 89 0.400000 +456 131 0.400000 +456 193 0.400000 +456 219 0.400000 +456 289 0.400000 +456 399 0.400000 +456 423 0.400000 +456 503 0.400000 +456 881 0.400000 +456 933 0.400000 +456 998 0.400000 +456 1073 0.400000 +456 1178 0.400000 +456 1222 0.400000 +456 1280 0.400000 +456 1318 0.400000 +456 1333 0.400000 +456 1336 0.400000 +456 1376 0.400000 +456 1423 0.400000 +456 1460 0.400000 +456 1567 0.400000 +456 1617 0.400000 +456 1640 0.400000 +456 1659 0.400000 +456 1778 0.400000 +456 1806 0.400000 +456 1831 0.400000 +456 1871 0.400000 +456 1882 0.400000 +456 1903 0.400000 +456 1968 0.400000 +456 1981 0.400000 +456 2011 0.400000 +456 2022 0.400000 +456 2120 0.400000 +456 2153 0.400000 +456 2224 0.400000 +456 2523 0.400000 +456 2531 0.400000 +456 2545 0.400000 +456 2546 0.400000 +456 2618 0.400000 +456 2619 0.400000 +456 2641 0.400000 +456 2744 0.400000 +456 2820 0.400000 +456 2828 0.400000 +456 2861 0.400000 +456 2912 0.400000 +456 2913 0.400000 +456 2932 0.400000 +456 3019 0.400000 +456 3022 0.400000 +456 3063 0.400000 +456 3081 0.400000 +456 3110 0.400000 +456 3134 0.400000 +457 30 0.400000 +457 48 0.400000 +457 55 0.400000 +457 68 0.400000 +457 74 0.400000 +457 117 0.400000 +457 179 0.400000 +457 221 0.400000 +457 275 0.400000 +457 335 0.400000 +457 341 0.400000 +457 446 0.400000 +457 498 0.400000 +457 515 0.400000 +457 523 0.400000 +457 749 0.400000 +457 753 0.400000 +457 769 0.400000 +457 851 0.400000 +457 902 0.400000 +457 919 0.400000 +457 996 0.400000 +457 1020 0.400000 +457 1142 0.400000 +457 1194 0.400000 +457 1198 0.400000 +457 1349 0.400000 +457 1525 0.400000 +457 1540 0.400000 +457 1610 0.400000 +457 1621 0.400000 +457 1636 0.400000 +457 1638 0.400000 +457 1647 0.400000 +457 1789 0.400000 +457 1835 0.400000 +457 1883 0.400000 +457 1886 0.400000 +457 1905 0.400000 +457 2005 0.400000 +457 2049 0.400000 +457 2110 0.400000 +457 2122 0.400000 +457 2127 0.400000 +457 2141 0.400000 +457 2168 0.400000 +457 2176 0.400000 +457 2182 0.400000 +457 2212 0.400000 +457 2252 0.400000 +457 2270 0.400000 +457 2299 0.400000 +457 2329 0.400000 +457 2334 0.400000 +457 2363 0.400000 +457 2433 0.400000 +457 2480 0.400000 +457 2568 0.400000 +457 2599 0.400000 +457 2645 0.400000 +457 2697 0.400000 +457 2758 0.400000 +457 2814 0.400000 +457 2828 0.400000 +457 2850 0.400000 +457 2888 0.400000 +457 2959 0.400000 +457 2974 0.400000 +457 2975 0.400000 +457 3029 0.400000 +457 3030 0.400000 +457 3049 0.400000 +457 3129 0.400000 +457 3134 0.400000 +457 3185 0.400000 +458 73 0.400000 +458 117 0.400000 +458 177 0.400000 +458 277 0.400000 +458 407 0.400000 +458 411 0.400000 +458 493 0.400000 +458 510 0.400000 +458 571 0.400000 +458 781 0.400000 +458 812 0.400000 +458 825 0.400000 +458 842 0.400000 +458 895 0.400000 +458 920 0.400000 +458 1187 0.400000 +458 1234 0.400000 +458 1297 0.400000 +458 1325 0.400000 +458 1358 0.400000 +458 1363 0.400000 +458 1367 0.400000 +458 1368 0.400000 +458 1377 0.400000 +458 1378 0.400000 +458 1397 0.400000 +458 1475 0.400000 +458 1476 0.400000 +458 1547 0.400000 +458 1575 0.400000 +458 1602 0.400000 +458 1637 0.400000 +458 1670 0.400000 +458 1740 0.400000 +458 1778 0.400000 +458 1791 0.400000 +458 1864 0.400000 +458 1927 0.400000 +458 1948 0.400000 +458 2035 0.400000 +458 2133 0.400000 +458 2242 0.400000 +458 2268 0.400000 +458 2295 0.400000 +458 2315 0.400000 +458 2335 0.400000 +458 2366 0.400000 +458 2387 0.400000 +458 2414 0.400000 +458 2416 0.400000 +458 2419 0.400000 +458 2430 0.400000 +458 2539 0.400000 +458 2541 0.400000 +458 2555 0.400000 +458 2603 0.400000 +458 2613 0.400000 +458 2699 0.400000 +458 2747 0.400000 +458 2759 0.400000 +458 2858 0.400000 +458 2877 0.400000 +458 2881 0.400000 +458 2919 0.400000 +458 2968 0.400000 +458 3025 0.400000 +458 3050 0.400000 +458 3141 0.400000 +458 3170 0.400000 +458 3183 0.400000 +459 117 0.400000 +459 193 0.400000 +459 205 0.400000 +459 246 0.400000 +459 273 0.400000 +459 323 0.400000 +459 329 0.400000 +459 417 0.400000 +459 483 0.400000 +459 685 0.400000 +459 715 0.400000 +459 721 0.400000 +459 765 0.400000 +459 772 0.400000 +459 803 0.400000 +459 883 0.400000 +459 897 0.400000 +459 967 0.400000 +459 1218 0.400000 +459 1244 0.400000 +459 1297 0.400000 +459 1335 0.400000 +459 1345 0.400000 +459 1507 0.400000 +459 1510 0.400000 +459 1597 0.400000 +459 1637 0.400000 +459 1678 0.400000 +459 1788 0.400000 +459 1866 0.400000 +459 1868 0.400000 +459 2042 0.400000 +459 2089 0.400000 +459 2096 0.400000 +459 2165 0.400000 +459 2194 0.400000 +459 2245 0.400000 +459 2394 0.400000 +459 2430 0.400000 +459 2438 0.400000 +459 2504 0.400000 +459 2516 0.400000 +459 2610 0.400000 +459 2616 0.400000 +459 2634 0.400000 +459 2643 0.400000 +459 2724 0.400000 +459 2763 0.400000 +459 2911 0.400000 +459 2918 0.400000 +459 2944 0.400000 +459 2952 0.400000 +459 2991 0.400000 +459 2993 0.400000 +459 3073 0.400000 +459 3076 0.400000 +459 3078 0.400000 +459 3138 0.400000 +459 3155 0.400000 +459 3195 0.400000 +460 14 0.400000 +460 17 0.400000 +460 60 0.400000 +460 94 0.400000 +460 104 0.400000 +460 164 0.400000 +460 177 0.400000 +460 215 0.400000 +460 259 0.400000 +460 285 0.400000 +460 299 0.400000 +460 330 0.400000 +460 354 0.400000 +460 416 0.400000 +460 458 0.400000 +460 461 0.400000 +460 462 0.400000 +460 476 0.400000 +460 564 0.400000 +460 586 0.400000 +460 596 0.400000 +460 651 0.400000 +460 715 0.400000 +460 738 0.400000 +460 794 0.400000 +460 978 0.400000 +460 1023 0.400000 +460 1049 0.400000 +460 1050 0.400000 +460 1136 0.400000 +460 1151 0.400000 +460 1155 0.400000 +460 1216 0.400000 +460 1217 0.400000 +460 1272 0.400000 +460 1291 0.400000 +460 1296 0.400000 +460 1377 0.400000 +460 1471 0.400000 +460 1518 0.400000 +460 1539 0.400000 +460 1544 0.400000 +460 1566 0.400000 +460 1643 0.400000 +460 1710 0.400000 +460 1780 0.400000 +460 1785 0.400000 +460 1808 0.400000 +460 1820 0.400000 +460 1859 0.400000 +460 1866 0.400000 +460 1888 0.400000 +460 1932 0.400000 +460 2012 0.400000 +460 2023 0.400000 +460 2047 0.400000 +460 2054 0.400000 +460 2074 0.400000 +460 2090 0.400000 +460 2199 0.400000 +460 2308 0.400000 +460 2309 0.400000 +460 2311 0.400000 +460 2314 0.400000 +460 2345 0.400000 +460 2413 0.400000 +460 2419 0.400000 +460 2522 0.400000 +460 2589 0.400000 +460 2592 0.400000 +460 2669 0.400000 +460 2736 0.400000 +460 3049 0.400000 +460 3108 0.400000 +460 3113 0.400000 +460 3142 0.400000 +460 3156 0.400000 +461 4 0.400000 +461 72 0.400000 +461 76 0.400000 +461 87 0.400000 +461 93 0.400000 +461 130 0.400000 +461 173 0.400000 +461 193 0.400000 +461 210 0.400000 +461 228 0.400000 +461 334 0.400000 +461 487 0.400000 +461 490 0.400000 +461 543 0.400000 +461 576 0.400000 +461 662 0.400000 +461 666 0.400000 +461 749 0.400000 +461 835 0.400000 +461 875 0.400000 +461 917 0.400000 +461 999 0.400000 +461 1074 0.400000 +461 1086 0.400000 +461 1096 0.400000 +461 1126 0.400000 +461 1132 0.400000 +461 1142 0.400000 +461 1143 0.400000 +461 1199 0.400000 +461 1239 0.400000 +461 1254 0.400000 +461 1304 0.400000 +461 1309 0.400000 +461 1325 0.400000 +461 1368 0.400000 +461 1408 0.400000 +461 1432 0.400000 +461 1435 0.400000 +461 1454 0.400000 +461 1521 0.400000 +461 1574 0.400000 +461 1622 0.400000 +461 1801 0.400000 +461 1811 0.400000 +461 1937 0.400000 +461 2200 0.400000 +461 2249 0.400000 +461 2259 0.400000 +461 2442 0.400000 +461 2474 0.400000 +461 2639 0.400000 +461 2640 0.400000 +461 2642 0.400000 +461 2659 0.400000 +461 2712 0.400000 +461 2767 0.400000 +461 2804 0.400000 +461 2913 0.400000 +461 2952 0.400000 +461 2997 0.400000 +461 3072 0.400000 +461 3082 0.400000 +461 3186 0.400000 +462 10 0.400000 +462 34 0.400000 +462 69 0.400000 +462 93 0.400000 +462 117 0.400000 +462 173 0.400000 +462 237 0.400000 +462 401 0.400000 +462 431 0.400000 +462 443 0.400000 +462 447 0.400000 +462 516 0.400000 +462 560 0.400000 +462 629 0.400000 +462 690 0.400000 +462 694 0.400000 +462 874 0.400000 +462 902 0.400000 +462 980 0.400000 +462 1080 0.400000 +462 1120 0.400000 +462 1199 0.400000 +462 1340 0.400000 +462 1425 0.400000 +462 1484 0.400000 +462 1508 0.400000 +462 1558 0.400000 +462 1604 0.400000 +462 1620 0.400000 +462 1646 0.400000 +462 1679 0.400000 +462 1687 0.400000 +462 1720 0.400000 +462 1735 0.400000 +462 1760 0.400000 +462 1763 0.400000 +462 1805 0.400000 +462 1834 0.400000 +462 1839 0.400000 +462 1855 0.400000 +462 1992 0.400000 +462 2179 0.400000 +462 2300 0.400000 +462 2326 0.400000 +462 2356 0.400000 +462 2509 0.400000 +462 2529 0.400000 +462 2608 0.400000 +462 2618 0.400000 +462 2637 0.400000 +462 2660 0.400000 +462 2764 0.400000 +462 2815 0.400000 +462 2873 0.400000 +462 2979 0.400000 +462 3055 0.400000 +462 3069 0.400000 +462 3123 0.400000 +463 11 0.400000 +463 30 0.400000 +463 104 0.400000 +463 108 0.400000 +463 129 0.400000 +463 257 0.400000 +463 304 0.400000 +463 355 0.400000 +463 363 0.400000 +463 371 0.400000 +463 495 0.400000 +463 607 0.400000 +463 617 0.400000 +463 758 0.400000 +463 801 0.400000 +463 900 0.400000 +463 970 0.400000 +463 1018 0.400000 +463 1097 0.400000 +463 1182 0.400000 +463 1297 0.400000 +463 1300 0.400000 +463 1430 0.400000 +463 1608 0.400000 +463 1627 0.400000 +463 1640 0.400000 +463 1695 0.400000 +463 1703 0.400000 +463 1738 0.400000 +463 1755 0.400000 +463 1844 0.400000 +463 1885 0.400000 +463 1928 0.400000 +463 1969 0.400000 +463 1979 0.400000 +463 2061 0.400000 +463 2152 0.400000 +463 2277 0.400000 +463 2279 0.400000 +463 2293 0.400000 +463 2296 0.400000 +463 2380 0.400000 +463 2381 0.400000 +463 2502 0.400000 +463 2572 0.400000 +463 2589 0.400000 +463 2635 0.400000 +463 2715 0.400000 +463 2747 0.400000 +463 2763 0.400000 +463 2829 0.400000 +463 2855 0.400000 +463 3124 0.400000 +463 3170 0.400000 +463 3194 0.400000 +464 111 0.400000 +464 205 0.400000 +464 214 0.400000 +464 247 0.400000 +464 323 0.400000 +464 324 0.400000 +464 335 0.400000 +464 364 0.400000 +464 413 0.400000 +464 429 0.400000 +464 431 0.400000 +464 465 0.400000 +464 486 0.400000 +464 502 0.400000 +464 541 0.400000 +464 568 0.400000 +464 620 0.400000 +464 686 0.400000 +464 700 0.400000 +464 722 0.400000 +464 1018 0.400000 +464 1064 0.400000 +464 1102 0.400000 +464 1110 0.400000 +464 1124 0.400000 +464 1191 0.400000 +464 1205 0.400000 +464 1279 0.400000 +464 1297 0.400000 +464 1374 0.400000 +464 1380 0.400000 +464 1439 0.400000 +464 1442 0.400000 +464 1483 0.400000 +464 1517 0.400000 +464 1518 0.400000 +464 1576 0.400000 +464 1636 0.400000 +464 1788 0.400000 +464 1794 0.400000 +464 1827 0.400000 +464 1850 0.400000 +464 1865 0.400000 +464 1904 0.400000 +464 1916 0.400000 +464 1925 0.400000 +464 1967 0.400000 +464 1983 0.400000 +464 2001 0.400000 +464 2011 0.400000 +464 2159 0.400000 +464 2221 0.400000 +464 2476 0.400000 +464 2502 0.400000 +464 2556 0.400000 +464 2592 0.400000 +464 2600 0.400000 +464 2803 0.400000 +464 2818 0.400000 +464 2844 0.400000 +464 2877 0.400000 +464 2908 0.400000 +464 2931 0.400000 +464 2977 0.400000 +464 2992 0.400000 +464 3058 0.400000 +464 3096 0.400000 +464 3104 0.400000 +464 3158 0.400000 +465 34 0.400000 +465 246 0.400000 +465 250 0.400000 +465 268 0.400000 +465 368 0.400000 +465 382 0.400000 +465 508 0.400000 +465 533 0.400000 +465 549 0.400000 +465 575 0.400000 +465 609 0.400000 +465 636 0.400000 +465 643 0.400000 +465 679 0.400000 +465 709 0.400000 +465 738 0.400000 +465 746 0.400000 +465 759 0.400000 +465 854 0.400000 +465 905 0.400000 +465 946 0.400000 +465 1025 0.400000 +465 1026 0.400000 +465 1039 0.400000 +465 1119 0.400000 +465 1178 0.400000 +465 1234 0.400000 +465 1253 0.400000 +465 1300 0.400000 +465 1303 0.400000 +465 1412 0.400000 +465 1417 0.400000 +465 1509 0.400000 +465 1528 0.400000 +465 1558 0.400000 +465 1660 0.400000 +465 1716 0.400000 +465 1809 0.400000 +465 1882 0.400000 +465 1913 0.400000 +465 1926 0.400000 +465 1987 0.400000 +465 2124 0.400000 +465 2161 0.400000 +465 2206 0.400000 +465 2211 0.400000 +465 2265 0.400000 +465 2273 0.400000 +465 2303 0.400000 +465 2386 0.400000 +465 2417 0.400000 +465 2462 0.400000 +465 2526 0.400000 +465 2534 0.400000 +465 2552 0.400000 +465 2553 0.400000 +465 2640 0.400000 +465 2728 0.400000 +465 2994 0.400000 +465 3158 0.400000 +465 3161 0.400000 +465 3169 0.400000 +466 4 0.400000 +466 35 0.400000 +466 125 0.400000 +466 131 0.400000 +466 136 0.400000 +466 172 0.400000 +466 176 0.400000 +466 186 0.400000 +466 365 0.400000 +466 429 0.400000 +466 438 0.400000 +466 486 0.400000 +466 521 0.400000 +466 530 0.400000 +466 614 0.400000 +466 648 0.400000 +466 697 0.400000 +466 721 0.400000 +466 815 0.400000 +466 886 0.400000 +466 1017 0.400000 +466 1023 0.400000 +466 1102 0.400000 +466 1152 0.400000 +466 1164 0.400000 +466 1174 0.400000 +466 1176 0.400000 +466 1283 0.400000 +466 1287 0.400000 +466 1360 0.400000 +466 1440 0.400000 +466 1490 0.400000 +466 1503 0.400000 +466 1717 0.400000 +466 1814 0.400000 +466 1884 0.400000 +466 1925 0.400000 +466 1941 0.400000 +466 1949 0.400000 +466 1996 0.400000 +466 2009 0.400000 +466 2040 0.400000 +466 2059 0.400000 +466 2064 0.400000 +466 2108 0.400000 +466 2133 0.400000 +466 2235 0.400000 +466 2288 0.400000 +466 2310 0.400000 +466 2351 0.400000 +466 2474 0.400000 +466 2649 0.400000 +466 2686 0.400000 +466 2719 0.400000 +466 2723 0.400000 +466 2876 0.400000 +466 2915 0.400000 +466 3076 0.400000 +466 3079 0.400000 +466 3097 0.400000 +466 3107 0.400000 +466 3127 0.400000 +466 3132 0.400000 +467 66 0.400000 +467 140 0.400000 +467 161 0.400000 +467 199 0.400000 +467 298 0.400000 +467 356 0.400000 +467 426 0.400000 +467 506 0.400000 +467 516 0.400000 +467 543 0.400000 +467 593 0.400000 +467 595 0.400000 +467 604 0.400000 +467 613 0.400000 +467 720 0.400000 +467 778 0.400000 +467 818 0.400000 +467 859 0.400000 +467 881 0.400000 +467 895 0.400000 +467 976 0.400000 +467 997 0.400000 +467 998 0.400000 +467 1012 0.400000 +467 1032 0.400000 +467 1121 0.400000 +467 1175 0.400000 +467 1182 0.400000 +467 1396 0.400000 +467 1438 0.400000 +467 1498 0.400000 +467 1503 0.400000 +467 1522 0.400000 +467 1627 0.400000 +467 1698 0.400000 +467 1711 0.400000 +467 1775 0.400000 +467 1864 0.400000 +467 1954 0.400000 +467 1960 0.400000 +467 1961 0.400000 +467 1967 0.400000 +467 1985 0.400000 +467 2206 0.400000 +467 2407 0.400000 +467 2512 0.400000 +467 2545 0.400000 +467 2573 0.400000 +467 2676 0.400000 +467 2711 0.400000 +467 2892 0.400000 +467 2906 0.400000 +467 2926 0.400000 +467 3052 0.400000 +467 3057 0.400000 +467 3167 0.400000 +468 13 0.400000 +468 79 0.400000 +468 98 0.400000 +468 106 0.400000 +468 109 0.400000 +468 139 0.400000 +468 159 0.400000 +468 216 0.400000 +468 238 0.400000 +468 398 0.400000 +468 558 0.400000 +468 563 0.400000 +468 594 0.400000 +468 651 0.400000 +468 652 0.400000 +468 775 0.400000 +468 855 0.400000 +468 873 0.400000 +468 890 0.400000 +468 896 0.400000 +468 898 0.400000 +468 920 0.400000 +468 974 0.400000 +468 990 0.400000 +468 1068 0.400000 +468 1098 0.400000 +468 1129 0.400000 +468 1140 0.400000 +468 1320 0.400000 +468 1324 0.400000 +468 1351 0.400000 +468 1412 0.400000 +468 1457 0.400000 +468 1548 0.400000 +468 1569 0.400000 +468 1591 0.400000 +468 1605 0.400000 +468 1633 0.400000 +468 1690 0.400000 +468 1708 0.400000 +468 1746 0.400000 +468 1765 0.400000 +468 1770 0.400000 +468 1848 0.400000 +468 1938 0.400000 +468 2053 0.400000 +468 2064 0.400000 +468 2166 0.400000 +468 2172 0.400000 +468 2375 0.400000 +468 2438 0.400000 +468 2467 0.400000 +468 2483 0.400000 +468 2605 0.400000 +468 2620 0.400000 +468 2649 0.400000 +468 2784 0.400000 +468 2907 0.400000 +468 2927 0.400000 +468 2931 0.400000 +468 3102 0.400000 +468 3121 0.400000 +468 3149 0.400000 +468 3161 0.400000 +468 3169 0.400000 +469 136 0.400000 +469 214 0.400000 +469 226 0.400000 +469 336 0.400000 +469 390 0.400000 +469 666 0.400000 +469 725 0.400000 +469 730 0.400000 +469 793 0.400000 +469 803 0.400000 +469 1006 0.400000 +469 1059 0.400000 +469 1184 0.400000 +469 1234 0.400000 +469 1289 0.400000 +469 1313 0.400000 +469 1315 0.400000 +469 1345 0.400000 +469 1498 0.400000 +469 1656 0.400000 +469 1771 0.400000 +469 1868 0.400000 +469 1872 0.400000 +469 1941 0.400000 +469 1946 0.400000 +469 2033 0.400000 +469 2037 0.400000 +469 2050 0.400000 +469 2115 0.400000 +469 2145 0.400000 +469 2213 0.400000 +469 2223 0.400000 +469 2287 0.400000 +469 2299 0.400000 +469 2395 0.400000 +469 2657 0.400000 +469 2734 0.400000 +469 2773 0.400000 +469 2786 0.400000 +469 2892 0.400000 +469 2915 0.400000 +469 2974 0.400000 +469 3006 0.400000 +469 3075 0.400000 +469 3115 0.400000 +469 3128 0.400000 +469 3154 0.400000 +470 6 0.400000 +470 26 0.400000 +470 29 0.400000 +470 46 0.400000 +470 56 0.400000 +470 161 0.400000 +470 171 0.400000 +470 174 0.400000 +470 330 0.400000 +470 373 0.400000 +470 378 0.400000 +470 397 0.400000 +470 405 0.400000 +470 409 0.400000 +470 426 0.400000 +470 445 0.400000 +470 522 0.400000 +470 549 0.400000 +470 562 0.400000 +470 581 0.400000 +470 630 0.400000 +470 661 0.400000 +470 754 0.400000 +470 796 0.400000 +470 853 0.400000 +470 876 0.400000 +470 897 0.400000 +470 936 0.400000 +470 975 0.400000 +470 1012 0.400000 +470 1022 0.400000 +470 1046 0.400000 +470 1049 0.400000 +470 1084 0.400000 +470 1096 0.400000 +470 1129 0.400000 +470 1147 0.400000 +470 1268 0.400000 +470 1270 0.400000 +470 1331 0.400000 +470 1502 0.400000 +470 1522 0.400000 +470 1546 0.400000 +470 1551 0.400000 +470 1582 0.400000 +470 1771 0.400000 +470 1905 0.400000 +470 2006 0.400000 +470 2089 0.400000 +470 2110 0.400000 +470 2133 0.400000 +470 2143 0.400000 +470 2215 0.400000 +470 2397 0.400000 +470 2401 0.400000 +470 2414 0.400000 +470 2452 0.400000 +470 2538 0.400000 +470 2650 0.400000 +470 2660 0.400000 +470 2663 0.400000 +470 2738 0.400000 +470 2762 0.400000 +470 2801 0.400000 +470 2811 0.400000 +470 2897 0.400000 +470 2913 0.400000 +470 2975 0.400000 +470 3044 0.400000 +470 3066 0.400000 +470 3088 0.400000 +470 3117 0.400000 +470 3147 0.400000 +470 3167 0.400000 +471 23 0.400000 +471 99 0.400000 +471 118 0.400000 +471 132 0.400000 +471 178 0.400000 +471 271 0.400000 +471 400 0.400000 +471 482 0.400000 +471 683 0.400000 +471 701 0.400000 +471 711 0.400000 +471 848 0.400000 +471 1111 0.400000 +471 1218 0.400000 +471 1249 0.400000 +471 1284 0.400000 +471 1305 0.400000 +471 1394 0.400000 +471 1449 0.400000 +471 1542 0.400000 +471 1547 0.400000 +471 1727 0.400000 +471 1827 0.400000 +471 1923 0.400000 +471 1939 0.400000 +471 2025 0.400000 +471 2031 0.400000 +471 2036 0.400000 +471 2059 0.400000 +471 2071 0.400000 +471 2116 0.400000 +471 2208 0.400000 +471 2259 0.400000 +471 2315 0.400000 +471 2352 0.400000 +471 2380 0.400000 +471 2384 0.400000 +471 2434 0.400000 +471 2454 0.400000 +471 2455 0.400000 +471 2479 0.400000 +471 2600 0.400000 +471 2697 0.400000 +471 2767 0.400000 +471 2781 0.400000 +471 2818 0.400000 +471 2832 0.400000 +471 2877 0.400000 +471 2949 0.400000 +471 3053 0.400000 +471 3140 0.400000 +472 18 0.400000 +472 47 0.400000 +472 59 0.400000 +472 201 0.400000 +472 256 0.400000 +472 257 0.400000 +472 301 0.400000 +472 345 0.400000 +472 407 0.400000 +472 431 0.400000 +472 464 0.400000 +472 472 0.400000 +472 492 0.400000 +472 661 0.400000 +472 718 0.400000 +472 783 0.400000 +472 809 0.400000 +472 811 0.400000 +472 869 0.400000 +472 887 0.400000 +472 901 0.400000 +472 973 0.400000 +472 983 0.400000 +472 1057 0.400000 +472 1206 0.400000 +472 1250 0.400000 +472 1293 0.400000 +472 1294 0.400000 +472 1313 0.400000 +472 1347 0.400000 +472 1350 0.400000 +472 1373 0.400000 +472 1394 0.400000 +472 1487 0.400000 +472 1518 0.400000 +472 1524 0.400000 +472 1546 0.400000 +472 1555 0.400000 +472 1574 0.400000 +472 1667 0.400000 +472 1668 0.400000 +472 1710 0.400000 +472 1725 0.400000 +472 1791 0.400000 +472 1793 0.400000 +472 1833 0.400000 +472 1868 0.400000 +472 1873 0.400000 +472 1922 0.400000 +472 1987 0.400000 +472 2001 0.400000 +472 2030 0.400000 +472 2059 0.400000 +472 2223 0.400000 +472 2257 0.400000 +472 2310 0.400000 +472 2315 0.400000 +472 2320 0.400000 +472 2418 0.400000 +472 2425 0.400000 +472 2433 0.400000 +472 2435 0.400000 +472 2470 0.400000 +472 2541 0.400000 +472 2573 0.400000 +472 2649 0.400000 +472 2673 0.400000 +472 2735 0.400000 +472 2758 0.400000 +472 2795 0.400000 +472 2879 0.400000 +472 2890 0.400000 +472 2911 0.400000 +472 2966 0.400000 +472 3006 0.400000 +472 3171 0.400000 +473 56 0.400000 +473 76 0.400000 +473 131 0.400000 +473 142 0.400000 +473 194 0.400000 +473 223 0.400000 +473 240 0.400000 +473 290 0.400000 +473 342 0.400000 +473 354 0.400000 +473 404 0.400000 +473 414 0.400000 +473 431 0.400000 +473 530 0.400000 +473 563 0.400000 +473 623 0.400000 +473 640 0.400000 +473 641 0.400000 +473 875 0.400000 +473 947 0.400000 +473 948 0.400000 +473 1269 0.400000 +473 1289 0.400000 +473 1348 0.400000 +473 1349 0.400000 +473 1375 0.400000 +473 1387 0.400000 +473 1401 0.400000 +473 1454 0.400000 +473 1499 0.400000 +473 1544 0.400000 +473 1557 0.400000 +473 1663 0.400000 +473 1785 0.400000 +473 1788 0.400000 +473 1817 0.400000 +473 1821 0.400000 +473 1838 0.400000 +473 1927 0.400000 +473 1992 0.400000 +473 2157 0.400000 +473 2219 0.400000 +473 2251 0.400000 +473 2343 0.400000 +473 2372 0.400000 +473 2418 0.400000 +473 2571 0.400000 +473 2591 0.400000 +473 2607 0.400000 +473 2624 0.400000 +473 2840 0.400000 +473 2865 0.400000 +473 2930 0.400000 +473 2942 0.400000 +473 3008 0.400000 +473 3036 0.400000 +473 3073 0.400000 +473 3075 0.400000 +473 3158 0.400000 +474 29 0.400000 +474 99 0.400000 +474 176 0.400000 +474 223 0.400000 +474 234 0.400000 +474 264 0.400000 +474 322 0.400000 +474 346 0.400000 +474 359 0.400000 +474 405 0.400000 +474 423 0.400000 +474 434 0.400000 +474 456 0.400000 +474 482 0.400000 +474 492 0.400000 +474 505 0.400000 +474 559 0.400000 +474 695 0.400000 +474 702 0.400000 +474 735 0.400000 +474 1014 0.400000 +474 1070 0.400000 +474 1099 0.400000 +474 1330 0.400000 +474 1461 0.400000 +474 1515 0.400000 +474 1521 0.400000 +474 1567 0.400000 +474 1637 0.400000 +474 1715 0.400000 +474 1722 0.400000 +474 1780 0.400000 +474 1811 0.400000 +474 1852 0.400000 +474 1887 0.400000 +474 1898 0.400000 +474 1911 0.400000 +474 2038 0.400000 +474 2042 0.400000 +474 2062 0.400000 +474 2141 0.400000 +474 2210 0.400000 +474 2222 0.400000 +474 2248 0.400000 +474 2259 0.400000 +474 2472 0.400000 +474 2634 0.400000 +474 2673 0.400000 +474 2769 0.400000 +474 2801 0.400000 +474 2812 0.400000 +474 2816 0.400000 +474 2856 0.400000 +474 2863 0.400000 +474 2897 0.400000 +474 2909 0.400000 +474 3042 0.400000 +474 3050 0.400000 +474 3098 0.400000 +474 3152 0.400000 +474 3188 0.400000 +475 47 0.400000 +475 50 0.400000 +475 89 0.400000 +475 161 0.400000 +475 166 0.400000 +475 195 0.400000 +475 237 0.400000 +475 423 0.400000 +475 434 0.400000 +475 514 0.400000 +475 563 0.400000 +475 576 0.400000 +475 618 0.400000 +475 649 0.400000 +475 701 0.400000 +475 746 0.400000 +475 799 0.400000 +475 871 0.400000 +475 956 0.400000 +475 1368 0.400000 +475 1470 0.400000 +475 1535 0.400000 +475 1541 0.400000 +475 1559 0.400000 +475 1602 0.400000 +475 1618 0.400000 +475 1683 0.400000 +475 1701 0.400000 +475 1719 0.400000 +475 1801 0.400000 +475 1812 0.400000 +475 1878 0.400000 +475 1906 0.400000 +475 1928 0.400000 +475 1929 0.400000 +475 2029 0.400000 +475 2030 0.400000 +475 2048 0.400000 +475 2104 0.400000 +475 2116 0.400000 +475 2130 0.400000 +475 2176 0.400000 +475 2185 0.400000 +475 2204 0.400000 +475 2207 0.400000 +475 2247 0.400000 +475 2301 0.400000 +475 2410 0.400000 +475 2422 0.400000 +475 2431 0.400000 +475 2513 0.400000 +475 2579 0.400000 +475 2596 0.400000 +475 2672 0.400000 +475 2676 0.400000 +475 2796 0.400000 +475 2897 0.400000 +475 2919 0.400000 +475 2959 0.400000 +475 2996 0.400000 +475 3001 0.400000 +475 3047 0.400000 +475 3073 0.400000 +475 3156 0.400000 +475 3162 0.400000 +475 3191 0.400000 +476 44 0.400000 +476 56 0.400000 +476 134 0.400000 +476 136 0.400000 +476 137 0.400000 +476 163 0.400000 +476 165 0.400000 +476 213 0.400000 +476 220 0.400000 +476 229 0.400000 +476 284 0.400000 +476 305 0.400000 +476 327 0.400000 +476 368 0.400000 +476 446 0.400000 +476 523 0.400000 +476 623 0.400000 +476 633 0.400000 +476 666 0.400000 +476 729 0.400000 +476 790 0.400000 +476 846 0.400000 +476 873 0.400000 +476 877 0.400000 +476 900 0.400000 +476 1040 0.400000 +476 1084 0.400000 +476 1132 0.400000 +476 1167 0.400000 +476 1216 0.400000 +476 1346 0.400000 +476 1455 0.400000 +476 1464 0.400000 +476 1530 0.400000 +476 1557 0.400000 +476 1593 0.400000 +476 1613 0.400000 +476 1684 0.400000 +476 1717 0.400000 +476 1753 0.400000 +476 1964 0.400000 +476 2034 0.400000 +476 2123 0.400000 +476 2124 0.400000 +476 2141 0.400000 +476 2146 0.400000 +476 2191 0.400000 +476 2234 0.400000 +476 2305 0.400000 +476 2309 0.400000 +476 2313 0.400000 +476 2321 0.400000 +476 2398 0.400000 +476 2441 0.400000 +476 2488 0.400000 +476 2574 0.400000 +476 2615 0.400000 +476 2684 0.400000 +476 2731 0.400000 +476 2737 0.400000 +476 2851 0.400000 +476 2905 0.400000 +476 2987 0.400000 +476 3059 0.400000 +476 3108 0.400000 +476 3193 0.400000 +477 47 0.400000 +477 52 0.400000 +477 53 0.400000 +477 239 0.400000 +477 268 0.400000 +477 276 0.400000 +477 300 0.400000 +477 318 0.400000 +477 375 0.400000 +477 514 0.400000 +477 664 0.400000 +477 666 0.400000 +477 781 0.400000 +477 791 0.400000 +477 815 0.400000 +477 923 0.400000 +477 925 0.400000 +477 957 0.400000 +477 997 0.400000 +477 1076 0.400000 +477 1191 0.400000 +477 1212 0.400000 +477 1216 0.400000 +477 1238 0.400000 +477 1369 0.400000 +477 1386 0.400000 +477 1454 0.400000 +477 1455 0.400000 +477 1458 0.400000 +477 1634 0.400000 +477 1654 0.400000 +477 1748 0.400000 +477 1759 0.400000 +477 1783 0.400000 +477 1795 0.400000 +477 1865 0.400000 +477 1986 0.400000 +477 2037 0.400000 +477 2039 0.400000 +477 2161 0.400000 +477 2231 0.400000 +477 2265 0.400000 +477 2304 0.400000 +477 2362 0.400000 +477 2390 0.400000 +477 2395 0.400000 +477 2396 0.400000 +477 2415 0.400000 +477 2496 0.400000 +477 2526 0.400000 +477 2622 0.400000 +477 2697 0.400000 +477 2733 0.400000 +477 2736 0.400000 +477 2754 0.400000 +477 2755 0.400000 +477 2769 0.400000 +477 2858 0.400000 +477 2946 0.400000 +477 3012 0.400000 +477 3024 0.400000 +477 3050 0.400000 +477 3156 0.400000 +478 30 0.400000 +478 38 0.400000 +478 55 0.400000 +478 154 0.400000 +478 177 0.400000 +478 207 0.400000 +478 234 0.400000 +478 239 0.400000 +478 244 0.400000 +478 322 0.400000 +478 377 0.400000 +478 415 0.400000 +478 482 0.400000 +478 495 0.400000 +478 561 0.400000 +478 628 0.400000 +478 648 0.400000 +478 962 0.400000 +478 986 0.400000 +478 1005 0.400000 +478 1032 0.400000 +478 1075 0.400000 +478 1079 0.400000 +478 1091 0.400000 +478 1120 0.400000 +478 1122 0.400000 +478 1158 0.400000 +478 1217 0.400000 +478 1219 0.400000 +478 1289 0.400000 +478 1302 0.400000 +478 1322 0.400000 +478 1353 0.400000 +478 1373 0.400000 +478 1435 0.400000 +478 1458 0.400000 +478 1481 0.400000 +478 1573 0.400000 +478 1626 0.400000 +478 1719 0.400000 +478 1853 0.400000 +478 1864 0.400000 +478 1972 0.400000 +478 2200 0.400000 +478 2242 0.400000 +478 2267 0.400000 +478 2278 0.400000 +478 2426 0.400000 +478 2428 0.400000 +478 2488 0.400000 +478 2525 0.400000 +478 2630 0.400000 +478 2640 0.400000 +478 2641 0.400000 +478 2653 0.400000 +478 2654 0.400000 +478 2728 0.400000 +478 2735 0.400000 +478 2759 0.400000 +478 2778 0.400000 +478 2849 0.400000 +478 2853 0.400000 +478 2854 0.400000 +478 2893 0.400000 +478 2902 0.400000 +478 2959 0.400000 +478 2960 0.400000 +478 3106 0.400000 +479 13 0.400000 +479 17 0.400000 +479 43 0.400000 +479 137 0.400000 +479 225 0.400000 +479 340 0.400000 +479 461 0.400000 +479 568 0.400000 +479 663 0.400000 +479 843 0.400000 +479 865 0.400000 +479 871 0.400000 +479 921 0.400000 +479 1035 0.400000 +479 1076 0.400000 +479 1240 0.400000 +479 1260 0.400000 +479 1366 0.400000 +479 1402 0.400000 +479 1412 0.400000 +479 1414 0.400000 +479 1427 0.400000 +479 1558 0.400000 +479 1564 0.400000 +479 1620 0.400000 +479 1625 0.400000 +479 1656 0.400000 +479 1729 0.400000 +479 1787 0.400000 +479 1991 0.400000 +479 2121 0.400000 +479 2187 0.400000 +479 2216 0.400000 +479 2246 0.400000 +479 2305 0.400000 +479 2319 0.400000 +479 2325 0.400000 +479 2342 0.400000 +479 2388 0.400000 +479 2469 0.400000 +479 2514 0.400000 +479 2531 0.400000 +479 2541 0.400000 +479 2577 0.400000 +479 2592 0.400000 +479 2594 0.400000 +479 2615 0.400000 +479 2624 0.400000 +479 2704 0.400000 +479 2715 0.400000 +479 2891 0.400000 +479 2919 0.400000 +479 2998 0.400000 +479 3017 0.400000 +479 3077 0.400000 +479 3126 0.400000 +479 3145 0.400000 +480 97 0.400000 +480 98 0.400000 +480 102 0.400000 +480 154 0.400000 +480 198 0.400000 +480 274 0.400000 +480 292 0.400000 +480 377 0.400000 +480 378 0.400000 +480 405 0.400000 +480 409 0.400000 +480 484 0.400000 +480 485 0.400000 +480 496 0.400000 +480 499 0.400000 +480 513 0.400000 +480 553 0.400000 +480 602 0.400000 +480 746 0.400000 +480 753 0.400000 +480 778 0.400000 +480 802 0.400000 +480 892 0.400000 +480 916 0.400000 +480 1059 0.400000 +480 1118 0.400000 +480 1121 0.400000 +480 1129 0.400000 +480 1137 0.400000 +480 1161 0.400000 +480 1162 0.400000 +480 1199 0.400000 +480 1312 0.400000 +480 1326 0.400000 +480 1384 0.400000 +480 1461 0.400000 +480 1475 0.400000 +480 1487 0.400000 +480 1499 0.400000 +480 1529 0.400000 +480 1540 0.400000 +480 1587 0.400000 +480 1624 0.400000 +480 1666 0.400000 +480 1676 0.400000 +480 1699 0.400000 +480 1775 0.400000 +480 1875 0.400000 +480 1916 0.400000 +480 2169 0.400000 +480 2223 0.400000 +480 2390 0.400000 +480 2417 0.400000 +480 2424 0.400000 +480 2441 0.400000 +480 2502 0.400000 +480 2572 0.400000 +480 2646 0.400000 +480 2650 0.400000 +480 2694 0.400000 +480 2790 0.400000 +480 2792 0.400000 +480 2831 0.400000 +480 2854 0.400000 +480 2924 0.400000 +480 2944 0.400000 +480 2955 0.400000 +480 2966 0.400000 +480 3017 0.400000 +480 3030 0.400000 +480 3049 0.400000 +480 3103 0.400000 +480 3136 0.400000 +480 3165 0.400000 +481 36 0.400000 +481 37 0.400000 +481 67 0.400000 +481 122 0.400000 +481 138 0.400000 +481 199 0.400000 +481 297 0.400000 +481 318 0.400000 +481 338 0.400000 +481 442 0.400000 +481 443 0.400000 +481 456 0.400000 +481 457 0.400000 +481 460 0.400000 +481 661 0.400000 +481 703 0.400000 +481 721 0.400000 +481 754 0.400000 +481 795 0.400000 +481 907 0.400000 +481 954 0.400000 +481 969 0.400000 +481 998 0.400000 +481 1071 0.400000 +481 1113 0.400000 +481 1129 0.400000 +481 1137 0.400000 +481 1167 0.400000 +481 1224 0.400000 +481 1295 0.400000 +481 1339 0.400000 +481 1470 0.400000 +481 1471 0.400000 +481 1536 0.400000 +481 1562 0.400000 +481 1567 0.400000 +481 1705 0.400000 +481 1746 0.400000 +481 1762 0.400000 +481 1786 0.400000 +481 1841 0.400000 +481 1876 0.400000 +481 1885 0.400000 +481 2033 0.400000 +481 2079 0.400000 +481 2113 0.400000 +481 2117 0.400000 +481 2141 0.400000 +481 2154 0.400000 +481 2222 0.400000 +481 2243 0.400000 +481 2286 0.400000 +481 2353 0.400000 +481 2517 0.400000 +481 2582 0.400000 +481 2724 0.400000 +481 2740 0.400000 +481 2743 0.400000 +481 2807 0.400000 +481 2809 0.400000 +481 2845 0.400000 +481 2926 0.400000 +481 3000 0.400000 +481 3055 0.400000 +481 3064 0.400000 +481 3117 0.400000 +482 23 0.400000 +482 207 0.400000 +482 252 0.400000 +482 309 0.400000 +482 349 0.400000 +482 378 0.400000 +482 417 0.400000 +482 486 0.400000 +482 511 0.400000 +482 523 0.400000 +482 531 0.400000 +482 565 0.400000 +482 583 0.400000 +482 731 0.400000 +482 809 0.400000 +482 836 0.400000 +482 952 0.400000 +482 1123 0.400000 +482 1172 0.400000 +482 1217 0.400000 +482 1219 0.400000 +482 1246 0.400000 +482 1331 0.400000 +482 1507 0.400000 +482 1529 0.400000 +482 1583 0.400000 +482 1599 0.400000 +482 1655 0.400000 +482 1669 0.400000 +482 1680 0.400000 +482 1715 0.400000 +482 1806 0.400000 +482 1813 0.400000 +482 1820 0.400000 +482 1861 0.400000 +482 1875 0.400000 +482 1938 0.400000 +482 1964 0.400000 +482 2015 0.400000 +482 2020 0.400000 +482 2023 0.400000 +482 2029 0.400000 +482 2118 0.400000 +482 2139 0.400000 +482 2240 0.400000 +482 2249 0.400000 +482 2262 0.400000 +482 2309 0.400000 +482 2321 0.400000 +482 2325 0.400000 +482 2359 0.400000 +482 2469 0.400000 +482 2477 0.400000 +482 2504 0.400000 +482 2514 0.400000 +482 2592 0.400000 +482 2653 0.400000 +482 2737 0.400000 +482 2741 0.400000 +482 2746 0.400000 +482 2798 0.400000 +482 2808 0.400000 +482 2923 0.400000 +482 2939 0.400000 +482 2973 0.400000 +482 3014 0.400000 +482 3019 0.400000 +482 3024 0.400000 +482 3036 0.400000 +482 3063 0.400000 +482 3076 0.400000 +482 3163 0.400000 +482 3193 0.400000 +483 63 0.400000 +483 138 0.400000 +483 166 0.400000 +483 199 0.400000 +483 288 0.400000 +483 360 0.400000 +483 370 0.400000 +483 451 0.400000 +483 487 0.400000 +483 524 0.400000 +483 573 0.400000 +483 704 0.400000 +483 793 0.400000 +483 878 0.400000 +483 914 0.400000 +483 953 0.400000 +483 964 0.400000 +483 1004 0.400000 +483 1057 0.400000 +483 1094 0.400000 +483 1122 0.400000 +483 1294 0.400000 +483 1319 0.400000 +483 1427 0.400000 +483 1724 0.400000 +483 1743 0.400000 +483 1814 0.400000 +483 1895 0.400000 +483 1915 0.400000 +483 1916 0.400000 +483 1927 0.400000 +483 1953 0.400000 +483 1986 0.400000 +483 2169 0.400000 +483 2197 0.400000 +483 2209 0.400000 +483 2219 0.400000 +483 2226 0.400000 +483 2260 0.400000 +483 2268 0.400000 +483 2394 0.400000 +483 2420 0.400000 +483 2552 0.400000 +483 2600 0.400000 +483 2649 0.400000 +483 2664 0.400000 +483 2702 0.400000 +483 2807 0.400000 +483 2815 0.400000 +483 2857 0.400000 +483 2882 0.400000 +483 2903 0.400000 +483 2911 0.400000 +483 2948 0.400000 +483 3005 0.400000 +483 3006 0.400000 +483 3011 0.400000 +483 3035 0.400000 +483 3049 0.400000 +483 3123 0.400000 +483 3131 0.400000 +484 134 0.400000 +484 204 0.400000 +484 255 0.400000 +484 286 0.400000 +484 294 0.400000 +484 340 0.400000 +484 349 0.400000 +484 437 0.400000 +484 544 0.400000 +484 706 0.400000 +484 709 0.400000 +484 741 0.400000 +484 768 0.400000 +484 781 0.400000 +484 837 0.400000 +484 855 0.400000 +484 860 0.400000 +484 888 0.400000 +484 907 0.400000 +484 937 0.400000 +484 1046 0.400000 +484 1065 0.400000 +484 1173 0.400000 +484 1257 0.400000 +484 1264 0.400000 +484 1369 0.400000 +484 1397 0.400000 +484 1405 0.400000 +484 1473 0.400000 +484 1491 0.400000 +484 1560 0.400000 +484 1603 0.400000 +484 1622 0.400000 +484 1642 0.400000 +484 1646 0.400000 +484 1730 0.400000 +484 1754 0.400000 +484 1762 0.400000 +484 1803 0.400000 +484 1841 0.400000 +484 1858 0.400000 +484 1863 0.400000 +484 1891 0.400000 +484 1893 0.400000 +484 1983 0.400000 +484 2041 0.400000 +484 2165 0.400000 +484 2180 0.400000 +484 2182 0.400000 +484 2270 0.400000 +484 2309 0.400000 +484 2388 0.400000 +484 2389 0.400000 +484 2415 0.400000 +484 2461 0.400000 +484 2639 0.400000 +484 2787 0.400000 +484 2794 0.400000 +484 2850 0.400000 +484 2917 0.400000 +484 2931 0.400000 +484 2991 0.400000 +484 3028 0.400000 +484 3049 0.400000 +485 4 0.400000 +485 102 0.400000 +485 135 0.400000 +485 148 0.400000 +485 173 0.400000 +485 269 0.400000 +485 329 0.400000 +485 387 0.400000 +485 455 0.400000 +485 481 0.400000 +485 498 0.400000 +485 519 0.400000 +485 565 0.400000 +485 798 0.400000 +485 857 0.400000 +485 955 0.400000 +485 967 0.400000 +485 983 0.400000 +485 1008 0.400000 +485 1023 0.400000 +485 1032 0.400000 +485 1051 0.400000 +485 1062 0.400000 +485 1068 0.400000 +485 1113 0.400000 +485 1195 0.400000 +485 1228 0.400000 +485 1242 0.400000 +485 1272 0.400000 +485 1288 0.400000 +485 1349 0.400000 +485 1360 0.400000 +485 1402 0.400000 +485 1446 0.400000 +485 1492 0.400000 +485 1529 0.400000 +485 1538 0.400000 +485 1703 0.400000 +485 1726 0.400000 +485 1733 0.400000 +485 1766 0.400000 +485 1825 0.400000 +485 1833 0.400000 +485 1907 0.400000 +485 1929 0.400000 +485 1989 0.400000 +485 2042 0.400000 +485 2210 0.400000 +485 2258 0.400000 +485 2265 0.400000 +485 2273 0.400000 +485 2375 0.400000 +485 2441 0.400000 +485 2446 0.400000 +485 2463 0.400000 +485 2476 0.400000 +485 2510 0.400000 +485 2526 0.400000 +485 2586 0.400000 +485 2626 0.400000 +485 2647 0.400000 +485 2648 0.400000 +485 2677 0.400000 +485 2690 0.400000 +485 2751 0.400000 +485 2770 0.400000 +485 2799 0.400000 +485 2839 0.400000 +485 2854 0.400000 +485 2884 0.400000 +485 2906 0.400000 +485 3001 0.400000 +485 3005 0.400000 +485 3017 0.400000 +485 3051 0.400000 +485 3073 0.400000 +485 3162 0.400000 +485 3172 0.400000 +486 4 0.400000 +486 59 0.400000 +486 88 0.400000 +486 118 0.400000 +486 153 0.400000 +486 154 0.400000 +486 161 0.400000 +486 182 0.400000 +486 210 0.400000 +486 327 0.400000 +486 417 0.400000 +486 433 0.400000 +486 445 0.400000 +486 500 0.400000 +486 540 0.400000 +486 563 0.400000 +486 587 0.400000 +486 609 0.400000 +486 624 0.400000 +486 679 0.400000 +486 682 0.400000 +486 691 0.400000 +486 704 0.400000 +486 709 0.400000 +486 864 0.400000 +486 927 0.400000 +486 964 0.400000 +486 978 0.400000 +486 1052 0.400000 +486 1060 0.400000 +486 1111 0.400000 +486 1158 0.400000 +486 1178 0.400000 +486 1223 0.400000 +486 1290 0.400000 +486 1323 0.400000 +486 1384 0.400000 +486 1454 0.400000 +486 1500 0.400000 +486 1542 0.400000 +486 1634 0.400000 +486 1661 0.400000 +486 1809 0.400000 +486 1872 0.400000 +486 1883 0.400000 +486 1941 0.400000 +486 2028 0.400000 +486 2039 0.400000 +486 2053 0.400000 +486 2080 0.400000 +486 2094 0.400000 +486 2163 0.400000 +486 2227 0.400000 +486 2304 0.400000 +486 2331 0.400000 +486 2421 0.400000 +486 2432 0.400000 +486 2433 0.400000 +486 2447 0.400000 +486 2463 0.400000 +486 2499 0.400000 +486 2544 0.400000 +486 2609 0.400000 +486 2654 0.400000 +486 2734 0.400000 +486 2758 0.400000 +486 2783 0.400000 +486 2841 0.400000 +486 2850 0.400000 +486 2891 0.400000 +486 2959 0.400000 +486 2998 0.400000 +486 3013 0.400000 +486 3096 0.400000 +486 3179 0.400000 +487 12 0.400000 +487 27 0.400000 +487 36 0.400000 +487 39 0.400000 +487 89 0.400000 +487 92 0.400000 +487 149 0.400000 +487 155 0.400000 +487 160 0.400000 +487 161 0.400000 +487 247 0.400000 +487 281 0.400000 +487 295 0.400000 +487 305 0.400000 +487 364 0.400000 +487 432 0.400000 +487 440 0.400000 +487 504 0.400000 +487 516 0.400000 +487 519 0.400000 +487 555 0.400000 +487 703 0.400000 +487 765 0.400000 +487 792 0.400000 +487 795 0.400000 +487 835 0.400000 +487 861 0.400000 +487 966 0.400000 +487 1016 0.400000 +487 1020 0.400000 +487 1042 0.400000 +487 1080 0.400000 +487 1103 0.400000 +487 1114 0.400000 +487 1216 0.400000 +487 1224 0.400000 +487 1257 0.400000 +487 1302 0.400000 +487 1421 0.400000 +487 1501 0.400000 +487 1529 0.400000 +487 1626 0.400000 +487 1645 0.400000 +487 1694 0.400000 +487 1705 0.400000 +487 1747 0.400000 +487 1783 0.400000 +487 1973 0.400000 +487 2035 0.400000 +487 2045 0.400000 +487 2079 0.400000 +487 2088 0.400000 +487 2128 0.400000 +487 2203 0.400000 +487 2208 0.400000 +487 2296 0.400000 +487 2383 0.400000 +487 2416 0.400000 +487 2450 0.400000 +487 2473 0.400000 +487 2482 0.400000 +487 2484 0.400000 +487 2532 0.400000 +487 2560 0.400000 +487 2579 0.400000 +487 2586 0.400000 +487 2588 0.400000 +487 2711 0.400000 +487 2917 0.400000 +487 2926 0.400000 +487 2981 0.400000 +487 2998 0.400000 +487 3015 0.400000 +487 3082 0.400000 +487 3093 0.400000 +487 3095 0.400000 +487 3144 0.400000 +488 2 0.400000 +488 39 0.400000 +488 62 0.400000 +488 65 0.400000 +488 137 0.400000 +488 251 0.400000 +488 277 0.400000 +488 281 0.400000 +488 307 0.400000 +488 333 0.400000 +488 365 0.400000 +488 383 0.400000 +488 447 0.400000 +488 452 0.400000 +488 466 0.400000 +488 519 0.400000 +488 548 0.400000 +488 567 0.400000 +488 572 0.400000 +488 679 0.400000 +488 687 0.400000 +488 771 0.400000 +488 777 0.400000 +488 798 0.400000 +488 893 0.400000 +488 932 0.400000 +488 973 0.400000 +488 993 0.400000 +488 1006 0.400000 +488 1195 0.400000 +488 1206 0.400000 +488 1240 0.400000 +488 1329 0.400000 +488 1399 0.400000 +488 1501 0.400000 +488 1615 0.400000 +488 1631 0.400000 +488 1794 0.400000 +488 1888 0.400000 +488 1928 0.400000 +488 1939 0.400000 +488 1945 0.400000 +488 1947 0.400000 +488 1958 0.400000 +488 1961 0.400000 +488 2003 0.400000 +488 2045 0.400000 +488 2120 0.400000 +488 2204 0.400000 +488 2226 0.400000 +488 2377 0.400000 +488 2412 0.400000 +488 2520 0.400000 +488 2568 0.400000 +488 2571 0.400000 +488 2587 0.400000 +488 2589 0.400000 +488 2766 0.400000 +488 2807 0.400000 +488 2809 0.400000 +488 3010 0.400000 +488 3089 0.400000 +488 3125 0.400000 +488 3196 0.400000 +489 45 0.400000 +489 66 0.400000 +489 131 0.400000 +489 140 0.400000 +489 204 0.400000 +489 269 0.400000 +489 272 0.400000 +489 350 0.400000 +489 356 0.400000 +489 425 0.400000 +489 432 0.400000 +489 485 0.400000 +489 502 0.400000 +489 639 0.400000 +489 647 0.400000 +489 656 0.400000 +489 710 0.400000 +489 761 0.400000 +489 863 0.400000 +489 923 0.400000 +489 957 0.400000 +489 963 0.400000 +489 1077 0.400000 +489 1080 0.400000 +489 1083 0.400000 +489 1100 0.400000 +489 1201 0.400000 +489 1223 0.400000 +489 1271 0.400000 +489 1315 0.400000 +489 1350 0.400000 +489 1429 0.400000 +489 1523 0.400000 +489 1604 0.400000 +489 1624 0.400000 +489 1754 0.400000 +489 1774 0.400000 +489 1894 0.400000 +489 2136 0.400000 +489 2198 0.400000 +489 2325 0.400000 +489 2339 0.400000 +489 2552 0.400000 +489 2556 0.400000 +489 2634 0.400000 +489 2656 0.400000 +489 2666 0.400000 +489 2704 0.400000 +489 2729 0.400000 +489 2778 0.400000 +489 2894 0.400000 +489 2904 0.400000 +489 2976 0.400000 +489 2993 0.400000 +489 3077 0.400000 +489 3157 0.400000 +490 11 0.400000 +490 75 0.400000 +490 120 0.400000 +490 229 0.400000 +490 275 0.400000 +490 336 0.400000 +490 360 0.400000 +490 393 0.400000 +490 427 0.400000 +490 428 0.400000 +490 443 0.400000 +490 457 0.400000 +490 614 0.400000 +490 637 0.400000 +490 639 0.400000 +490 713 0.400000 +490 786 0.400000 +490 801 0.400000 +490 857 0.400000 +490 865 0.400000 +490 945 0.400000 +490 957 0.400000 +490 977 0.400000 +490 1010 0.400000 +490 1077 0.400000 +490 1111 0.400000 +490 1280 0.400000 +490 1288 0.400000 +490 1406 0.400000 +490 1491 0.400000 +490 1497 0.400000 +490 1539 0.400000 +490 1557 0.400000 +490 1654 0.400000 +490 1698 0.400000 +490 1725 0.400000 +490 1824 0.400000 +490 1843 0.400000 +490 2050 0.400000 +490 2176 0.400000 +490 2193 0.400000 +490 2197 0.400000 +490 2262 0.400000 +490 2299 0.400000 +490 2324 0.400000 +490 2391 0.400000 +490 2494 0.400000 +490 2559 0.400000 +490 2562 0.400000 +490 2627 0.400000 +490 2738 0.400000 +490 2866 0.400000 +490 2871 0.400000 +490 2918 0.400000 +490 3017 0.400000 +491 4 0.400000 +491 37 0.400000 +491 80 0.400000 +491 177 0.400000 +491 187 0.400000 +491 191 0.400000 +491 261 0.400000 +491 390 0.400000 +491 412 0.400000 +491 426 0.400000 +491 640 0.400000 +491 662 0.400000 +491 688 0.400000 +491 799 0.400000 +491 812 0.400000 +491 905 0.400000 +491 919 0.400000 +491 994 0.400000 +491 1038 0.400000 +491 1044 0.400000 +491 1077 0.400000 +491 1126 0.400000 +491 1145 0.400000 +491 1319 0.400000 +491 1390 0.400000 +491 1422 0.400000 +491 1449 0.400000 +491 1452 0.400000 +491 1503 0.400000 +491 1550 0.400000 +491 1584 0.400000 +491 1592 0.400000 +491 1637 0.400000 +491 1644 0.400000 +491 1658 0.400000 +491 1732 0.400000 +491 1744 0.400000 +491 1823 0.400000 +491 1828 0.400000 +491 1902 0.400000 +491 1911 0.400000 +491 1919 0.400000 +491 1944 0.400000 +491 1957 0.400000 +491 1973 0.400000 +491 2018 0.400000 +491 2021 0.400000 +491 2072 0.400000 +491 2082 0.400000 +491 2121 0.400000 +491 2183 0.400000 +491 2192 0.400000 +491 2228 0.400000 +491 2250 0.400000 +491 2351 0.400000 +491 2370 0.400000 +491 2375 0.400000 +491 2387 0.400000 +491 2401 0.400000 +491 2454 0.400000 +491 2572 0.400000 +491 2586 0.400000 +491 2841 0.400000 +491 2889 0.400000 +491 2918 0.400000 +491 2922 0.400000 +491 2935 0.400000 +491 2998 0.400000 +491 3042 0.400000 +491 3095 0.400000 +491 3126 0.400000 +491 3160 0.400000 +491 3184 0.400000 +492 164 0.400000 +492 168 0.400000 +492 229 0.400000 +492 279 0.400000 +492 366 0.400000 +492 542 0.400000 +492 570 0.400000 +492 583 0.400000 +492 635 0.400000 +492 674 0.400000 +492 690 0.400000 +492 702 0.400000 +492 707 0.400000 +492 723 0.400000 +492 751 0.400000 +492 801 0.400000 +492 867 0.400000 +492 883 0.400000 +492 974 0.400000 +492 1113 0.400000 +492 1121 0.400000 +492 1221 0.400000 +492 1246 0.400000 +492 1413 0.400000 +492 1455 0.400000 +492 1459 0.400000 +492 1483 0.400000 +492 1508 0.400000 +492 1513 0.400000 +492 1562 0.400000 +492 1645 0.400000 +492 1667 0.400000 +492 1723 0.400000 +492 1758 0.400000 +492 1770 0.400000 +492 1853 0.400000 +492 1881 0.400000 +492 1961 0.400000 +492 2022 0.400000 +492 2075 0.400000 +492 2077 0.400000 +492 2092 0.400000 +492 2148 0.400000 +492 2251 0.400000 +492 2330 0.400000 +492 2342 0.400000 +492 2391 0.400000 +492 2399 0.400000 +492 2469 0.400000 +492 2574 0.400000 +492 2723 0.400000 +492 2841 0.400000 +492 2932 0.400000 +492 2967 0.400000 +492 2989 0.400000 +492 3008 0.400000 +492 3058 0.400000 +492 3151 0.400000 +492 3198 0.400000 +493 19 0.400000 +493 101 0.400000 +493 139 0.400000 +493 180 0.400000 +493 239 0.400000 +493 566 0.400000 +493 661 0.400000 +493 665 0.400000 +493 742 0.400000 +493 747 0.400000 +493 770 0.400000 +493 957 0.400000 +493 1075 0.400000 +493 1143 0.400000 +493 1147 0.400000 +493 1223 0.400000 +493 1320 0.400000 +493 1352 0.400000 +493 1358 0.400000 +493 1383 0.400000 +493 1428 0.400000 +493 1554 0.400000 +493 1569 0.400000 +493 1614 0.400000 +493 1619 0.400000 +493 1702 0.400000 +493 1729 0.400000 +493 1804 0.400000 +493 1809 0.400000 +493 1879 0.400000 +493 1932 0.400000 +493 1943 0.400000 +493 1993 0.400000 +493 2020 0.400000 +493 2038 0.400000 +493 2040 0.400000 +493 2109 0.400000 +493 2149 0.400000 +493 2162 0.400000 +493 2180 0.400000 +493 2201 0.400000 +493 2281 0.400000 +493 2319 0.400000 +493 2347 0.400000 +493 2355 0.400000 +493 2538 0.400000 +493 2603 0.400000 +493 2621 0.400000 +493 2672 0.400000 +493 2770 0.400000 +493 2848 0.400000 +493 2895 0.400000 +493 2897 0.400000 +493 2980 0.400000 +493 3003 0.400000 +493 3060 0.400000 +493 3079 0.400000 +493 3148 0.400000 +494 88 0.400000 +494 98 0.400000 +494 207 0.400000 +494 417 0.400000 +494 444 0.400000 +494 465 0.400000 +494 505 0.400000 +494 610 0.400000 +494 616 0.400000 +494 734 0.400000 +494 766 0.400000 +494 843 0.400000 +494 849 0.400000 +494 884 0.400000 +494 925 0.400000 +494 976 0.400000 +494 1032 0.400000 +494 1049 0.400000 +494 1122 0.400000 +494 1166 0.400000 +494 1177 0.400000 +494 1204 0.400000 +494 1282 0.400000 +494 1298 0.400000 +494 1325 0.400000 +494 1355 0.400000 +494 1379 0.400000 +494 1396 0.400000 +494 1449 0.400000 +494 1507 0.400000 +494 1512 0.400000 +494 1521 0.400000 +494 1553 0.400000 +494 1555 0.400000 +494 1597 0.400000 +494 1708 0.400000 +494 1722 0.400000 +494 1740 0.400000 +494 1864 0.400000 +494 1923 0.400000 +494 1989 0.400000 +494 2002 0.400000 +494 2131 0.400000 +494 2151 0.400000 +494 2217 0.400000 +494 2226 0.400000 +494 2255 0.400000 +494 2257 0.400000 +494 2352 0.400000 +494 2370 0.400000 +494 2374 0.400000 +494 2390 0.400000 +494 2434 0.400000 +494 2510 0.400000 +494 2628 0.400000 +494 2701 0.400000 +494 2722 0.400000 +494 2738 0.400000 +494 2752 0.400000 +494 2856 0.400000 +494 2863 0.400000 +494 2937 0.400000 +494 2964 0.400000 +494 2993 0.400000 +494 3015 0.400000 +494 3178 0.400000 +494 3195 0.400000 +495 8 0.400000 +495 36 0.400000 +495 37 0.400000 +495 52 0.400000 +495 154 0.400000 +495 182 0.400000 +495 265 0.400000 +495 276 0.400000 +495 289 0.400000 +495 296 0.400000 +495 355 0.400000 +495 358 0.400000 +495 359 0.400000 +495 418 0.400000 +495 453 0.400000 +495 532 0.400000 +495 560 0.400000 +495 581 0.400000 +495 634 0.400000 +495 699 0.400000 +495 723 0.400000 +495 727 0.400000 +495 735 0.400000 +495 741 0.400000 +495 783 0.400000 +495 846 0.400000 +495 879 0.400000 +495 893 0.400000 +495 930 0.400000 +495 956 0.400000 +495 983 0.400000 +495 1003 0.400000 +495 1010 0.400000 +495 1022 0.400000 +495 1306 0.400000 +495 1309 0.400000 +495 1437 0.400000 +495 1444 0.400000 +495 1472 0.400000 +495 1537 0.400000 +495 1579 0.400000 +495 1782 0.400000 +495 1788 0.400000 +495 1821 0.400000 +495 1906 0.400000 +495 2053 0.400000 +495 2057 0.400000 +495 2082 0.400000 +495 2084 0.400000 +495 2177 0.400000 +495 2216 0.400000 +495 2244 0.400000 +495 2251 0.400000 +495 2285 0.400000 +495 2364 0.400000 +495 2373 0.400000 +495 2377 0.400000 +495 2412 0.400000 +495 2453 0.400000 +495 2487 0.400000 +495 2500 0.400000 +495 2649 0.400000 +495 2655 0.400000 +495 2662 0.400000 +495 2675 0.400000 +495 2810 0.400000 +495 2821 0.400000 +495 2843 0.400000 +495 2909 0.400000 +495 2930 0.400000 +495 2934 0.400000 +495 3014 0.400000 +495 3041 0.400000 +496 23 0.400000 +496 85 0.400000 +496 259 0.400000 +496 332 0.400000 +496 363 0.400000 +496 365 0.400000 +496 414 0.400000 +496 417 0.400000 +496 446 0.400000 +496 472 0.400000 +496 499 0.400000 +496 523 0.400000 +496 587 0.400000 +496 593 0.400000 +496 618 0.400000 +496 619 0.400000 +496 665 0.400000 +496 792 0.400000 +496 821 0.400000 +496 825 0.400000 +496 839 0.400000 +496 907 0.400000 +496 949 0.400000 +496 976 0.400000 +496 1004 0.400000 +496 1062 0.400000 +496 1098 0.400000 +496 1121 0.400000 +496 1143 0.400000 +496 1147 0.400000 +496 1191 0.400000 +496 1366 0.400000 +496 1371 0.400000 +496 1402 0.400000 +496 1407 0.400000 +496 1474 0.400000 +496 1493 0.400000 +496 1504 0.400000 +496 1518 0.400000 +496 1574 0.400000 +496 1683 0.400000 +496 1691 0.400000 +496 1705 0.400000 +496 1731 0.400000 +496 1770 0.400000 +496 1773 0.400000 +496 1832 0.400000 +496 1844 0.400000 +496 1864 0.400000 +496 1983 0.400000 +496 2048 0.400000 +496 2083 0.400000 +496 2091 0.400000 +496 2213 0.400000 +496 2269 0.400000 +496 2424 0.400000 +496 2512 0.400000 +496 2514 0.400000 +496 2530 0.400000 +496 2572 0.400000 +496 2575 0.400000 +496 2577 0.400000 +496 2622 0.400000 +496 2653 0.400000 +496 2735 0.400000 +496 2740 0.400000 +496 2795 0.400000 +496 2835 0.400000 +496 2875 0.400000 +496 2876 0.400000 +496 2913 0.400000 +496 2994 0.400000 +496 3026 0.400000 +496 3110 0.400000 +496 3167 0.400000 +497 57 0.400000 +497 168 0.400000 +497 204 0.400000 +497 275 0.400000 +497 317 0.400000 +497 321 0.400000 +497 340 0.400000 +497 350 0.400000 +497 353 0.400000 +497 417 0.400000 +497 485 0.400000 +497 569 0.400000 +497 576 0.400000 +497 598 0.400000 +497 617 0.400000 +497 679 0.400000 +497 718 0.400000 +497 734 0.400000 +497 794 0.400000 +497 836 0.400000 +497 857 0.400000 +497 863 0.400000 +497 864 0.400000 +497 875 0.400000 +497 963 0.400000 +497 1004 0.400000 +497 1067 0.400000 +497 1103 0.400000 +497 1173 0.400000 +497 1175 0.400000 +497 1229 0.400000 +497 1267 0.400000 +497 1346 0.400000 +497 1373 0.400000 +497 1442 0.400000 +497 1517 0.400000 +497 1568 0.400000 +497 1572 0.400000 +497 1727 0.400000 +497 1730 0.400000 +497 1750 0.400000 +497 1868 0.400000 +497 1878 0.400000 +497 2010 0.400000 +497 2014 0.400000 +497 2053 0.400000 +497 2126 0.400000 +497 2311 0.400000 +497 2339 0.400000 +497 2348 0.400000 +497 2418 0.400000 +497 2535 0.400000 +497 2560 0.400000 +497 2625 0.400000 +497 2688 0.400000 +497 2831 0.400000 +497 2836 0.400000 +497 2895 0.400000 +497 2936 0.400000 +497 2987 0.400000 +497 3053 0.400000 +497 3070 0.400000 +497 3097 0.400000 +497 3130 0.400000 +497 3171 0.400000 +497 3188 0.400000 +498 21 0.400000 +498 57 0.400000 +498 142 0.400000 +498 230 0.400000 +498 247 0.400000 +498 258 0.400000 +498 357 0.400000 +498 369 0.400000 +498 397 0.400000 +498 414 0.400000 +498 440 0.400000 +498 470 0.400000 +498 476 0.400000 +498 488 0.400000 +498 659 0.400000 +498 671 0.400000 +498 675 0.400000 +498 725 0.400000 +498 750 0.400000 +498 751 0.400000 +498 838 0.400000 +498 847 0.400000 +498 862 0.400000 +498 1022 0.400000 +498 1052 0.400000 +498 1057 0.400000 +498 1066 0.400000 +498 1070 0.400000 +498 1170 0.400000 +498 1182 0.400000 +498 1216 0.400000 +498 1272 0.400000 +498 1291 0.400000 +498 1309 0.400000 +498 1317 0.400000 +498 1444 0.400000 +498 1462 0.400000 +498 1477 0.400000 +498 1516 0.400000 +498 1579 0.400000 +498 1614 0.400000 +498 1639 0.400000 +498 1755 0.400000 +498 1762 0.400000 +498 1777 0.400000 +498 1778 0.400000 +498 1864 0.400000 +498 1903 0.400000 +498 2044 0.400000 +498 2151 0.400000 +498 2271 0.400000 +498 2307 0.400000 +498 2343 0.400000 +498 2409 0.400000 +498 2417 0.400000 +498 2435 0.400000 +498 2489 0.400000 +498 2519 0.400000 +498 2572 0.400000 +498 2576 0.400000 +498 2587 0.400000 +498 2591 0.400000 +498 2650 0.400000 +498 2691 0.400000 +498 2836 0.400000 +498 2837 0.400000 +498 2886 0.400000 +498 3089 0.400000 +498 3149 0.400000 +499 67 0.400000 +499 87 0.400000 +499 132 0.400000 +499 148 0.400000 +499 249 0.400000 +499 362 0.400000 +499 434 0.400000 +499 441 0.400000 +499 550 0.400000 +499 644 0.400000 +499 679 0.400000 +499 813 0.400000 +499 832 0.400000 +499 843 0.400000 +499 896 0.400000 +499 1063 0.400000 +499 1065 0.400000 +499 1085 0.400000 +499 1199 0.400000 +499 1206 0.400000 +499 1263 0.400000 +499 1285 0.400000 +499 1299 0.400000 +499 1387 0.400000 +499 1401 0.400000 +499 1403 0.400000 +499 1417 0.400000 +499 1510 0.400000 +499 1515 0.400000 +499 1599 0.400000 +499 1653 0.400000 +499 1764 0.400000 +499 1785 0.400000 +499 1846 0.400000 +499 1851 0.400000 +499 1895 0.400000 +499 2042 0.400000 +499 2211 0.400000 +499 2356 0.400000 +499 2429 0.400000 +499 2461 0.400000 +499 2476 0.400000 +499 2510 0.400000 +499 2519 0.400000 +499 2558 0.400000 +499 2572 0.400000 +499 2586 0.400000 +499 2645 0.400000 +499 2768 0.400000 +499 2773 0.400000 +499 2810 0.400000 +499 3021 0.400000 +499 3043 0.400000 +499 3085 0.400000 +499 3116 0.400000 +499 3191 0.400000 +500 63 0.400000 +500 109 0.400000 +500 112 0.400000 +500 121 0.400000 +500 125 0.400000 +500 201 0.400000 +500 258 0.400000 +500 319 0.400000 +500 451 0.400000 +500 595 0.400000 +500 656 0.400000 +500 678 0.400000 +500 682 0.400000 +500 744 0.400000 +500 784 0.400000 +500 809 0.400000 +500 812 0.400000 +500 880 0.400000 +500 895 0.400000 +500 951 0.400000 +500 1070 0.400000 +500 1120 0.400000 +500 1138 0.400000 +500 1172 0.400000 +500 1182 0.400000 +500 1245 0.400000 +500 1271 0.400000 +500 1343 0.400000 +500 1351 0.400000 +500 1376 0.400000 +500 1411 0.400000 +500 1569 0.400000 +500 1605 0.400000 +500 1711 0.400000 +500 1731 0.400000 +500 1738 0.400000 +500 1789 0.400000 +500 1813 0.400000 +500 1818 0.400000 +500 1833 0.400000 +500 1896 0.400000 +500 1963 0.400000 +500 1971 0.400000 +500 2008 0.400000 +500 2165 0.400000 +500 2173 0.400000 +500 2199 0.400000 +500 2207 0.400000 +500 2208 0.400000 +500 2230 0.400000 +500 2264 0.400000 +500 2284 0.400000 +500 2295 0.400000 +500 2412 0.400000 +500 2491 0.400000 +500 2509 0.400000 +500 2526 0.400000 +500 2568 0.400000 +500 2661 0.400000 +500 2662 0.400000 +500 2674 0.400000 +500 2676 0.400000 +500 2742 0.400000 +500 2776 0.400000 +500 2829 0.400000 +500 2855 0.400000 +500 2863 0.400000 +500 2883 0.400000 +500 2920 0.400000 +500 3122 0.400000 +500 3137 0.400000 +500 3169 0.400000 +500 3179 0.400000 +501 121 0.400000 +501 131 0.400000 +501 160 0.400000 +501 211 0.400000 +501 237 0.400000 +501 278 0.400000 +501 323 0.400000 +501 375 0.400000 +501 407 0.400000 +501 431 0.400000 +501 462 0.400000 +501 484 0.400000 +501 501 0.400000 +501 536 0.400000 +501 566 0.400000 +501 568 0.400000 +501 704 0.400000 +501 714 0.400000 +501 722 0.400000 +501 799 0.400000 +501 805 0.400000 +501 859 0.400000 +501 920 0.400000 +501 982 0.400000 +501 1025 0.400000 +501 1054 0.400000 +501 1104 0.400000 +501 1112 0.400000 +501 1117 0.400000 +501 1195 0.400000 +501 1207 0.400000 +501 1296 0.400000 +501 1328 0.400000 +501 1329 0.400000 +501 1330 0.400000 +501 1352 0.400000 +501 1413 0.400000 +501 1454 0.400000 +501 1483 0.400000 +501 1520 0.400000 +501 1529 0.400000 +501 1542 0.400000 +501 1543 0.400000 +501 1553 0.400000 +501 1611 0.400000 +501 1665 0.400000 +501 1810 0.400000 +501 1865 0.400000 +501 1897 0.400000 +501 1917 0.400000 +501 1994 0.400000 +501 2000 0.400000 +501 2058 0.400000 +501 2080 0.400000 +501 2163 0.400000 +501 2296 0.400000 +501 2311 0.400000 +501 2427 0.400000 +501 2522 0.400000 +501 2532 0.400000 +501 2610 0.400000 +501 2645 0.400000 +501 2754 0.400000 +501 2765 0.400000 +501 2810 0.400000 +501 2846 0.400000 +501 2991 0.400000 +501 3050 0.400000 +501 3096 0.400000 +501 3108 0.400000 +501 3125 0.400000 +501 3152 0.400000 +501 3162 0.400000 +502 11 0.400000 +502 27 0.400000 +502 86 0.400000 +502 128 0.400000 +502 131 0.400000 +502 183 0.400000 +502 211 0.400000 +502 220 0.400000 +502 333 0.400000 +502 341 0.400000 +502 344 0.400000 +502 354 0.400000 +502 551 0.400000 +502 562 0.400000 +502 612 0.400000 +502 613 0.400000 +502 715 0.400000 +502 743 0.400000 +502 751 0.400000 +502 926 0.400000 +502 997 0.400000 +502 1038 0.400000 +502 1173 0.400000 +502 1194 0.400000 +502 1204 0.400000 +502 1207 0.400000 +502 1233 0.400000 +502 1243 0.400000 +502 1286 0.400000 +502 1313 0.400000 +502 1336 0.400000 +502 1407 0.400000 +502 1584 0.400000 +502 1603 0.400000 +502 1667 0.400000 +502 1672 0.400000 +502 1675 0.400000 +502 1776 0.400000 +502 1847 0.400000 +502 1968 0.400000 +502 1990 0.400000 +502 2010 0.400000 +502 2018 0.400000 +502 2038 0.400000 +502 2042 0.400000 +502 2246 0.400000 +502 2356 0.400000 +502 2407 0.400000 +502 2463 0.400000 +502 2490 0.400000 +502 2504 0.400000 +502 2522 0.400000 +502 2555 0.400000 +502 2557 0.400000 +502 2594 0.400000 +502 2778 0.400000 +502 2812 0.400000 +502 2978 0.400000 +502 3001 0.400000 +502 3127 0.400000 +502 3175 0.400000 +502 3182 0.400000 +503 25 0.400000 +503 41 0.400000 +503 166 0.400000 +503 172 0.400000 +503 180 0.400000 +503 189 0.400000 +503 260 0.400000 +503 268 0.400000 +503 325 0.400000 +503 428 0.400000 +503 443 0.400000 +503 462 0.400000 +503 468 0.400000 +503 473 0.400000 +503 479 0.400000 +503 500 0.400000 +503 549 0.400000 +503 554 0.400000 +503 578 0.400000 +503 590 0.400000 +503 598 0.400000 +503 616 0.400000 +503 639 0.400000 +503 699 0.400000 +503 726 0.400000 +503 764 0.400000 +503 765 0.400000 +503 823 0.400000 +503 831 0.400000 +503 968 0.400000 +503 977 0.400000 +503 1141 0.400000 +503 1143 0.400000 +503 1185 0.400000 +503 1206 0.400000 +503 1220 0.400000 +503 1289 0.400000 +503 1361 0.400000 +503 1413 0.400000 +503 1473 0.400000 +503 1480 0.400000 +503 1610 0.400000 +503 1614 0.400000 +503 1623 0.400000 +503 1624 0.400000 +503 1768 0.400000 +503 1829 0.400000 +503 1945 0.400000 +503 1973 0.400000 +503 2043 0.400000 +503 2050 0.400000 +503 2087 0.400000 +503 2147 0.400000 +503 2196 0.400000 +503 2250 0.400000 +503 2267 0.400000 +503 2303 0.400000 +503 2341 0.400000 +503 2348 0.400000 +503 2494 0.400000 +503 2499 0.400000 +503 2509 0.400000 +503 2570 0.400000 +503 2752 0.400000 +503 2831 0.400000 +503 2849 0.400000 +503 2882 0.400000 +503 2894 0.400000 +503 2923 0.400000 +503 2957 0.400000 +503 3156 0.400000 +504 12 0.400000 +504 97 0.400000 +504 125 0.400000 +504 182 0.400000 +504 309 0.400000 +504 346 0.400000 +504 507 0.400000 +504 516 0.400000 +504 561 0.400000 +504 579 0.400000 +504 607 0.400000 +504 618 0.400000 +504 623 0.400000 +504 629 0.400000 +504 645 0.400000 +504 702 0.400000 +504 714 0.400000 +504 771 0.400000 +504 778 0.400000 +504 947 0.400000 +504 953 0.400000 +504 954 0.400000 +504 987 0.400000 +504 1153 0.400000 +504 1204 0.400000 +504 1278 0.400000 +504 1281 0.400000 +504 1298 0.400000 +504 1310 0.400000 +504 1359 0.400000 +504 1406 0.400000 +504 1418 0.400000 +504 1458 0.400000 +504 1483 0.400000 +504 1499 0.400000 +504 1548 0.400000 +504 1629 0.400000 +504 1660 0.400000 +504 1697 0.400000 +504 1791 0.400000 +504 1904 0.400000 +504 2071 0.400000 +504 2078 0.400000 +504 2123 0.400000 +504 2143 0.400000 +504 2172 0.400000 +504 2182 0.400000 +504 2188 0.400000 +504 2321 0.400000 +504 2357 0.400000 +504 2415 0.400000 +504 2419 0.400000 +504 2471 0.400000 +504 2571 0.400000 +504 2623 0.400000 +504 2629 0.400000 +504 2630 0.400000 +504 2634 0.400000 +504 2708 0.400000 +504 2755 0.400000 +504 2942 0.400000 +504 2974 0.400000 +504 3063 0.400000 +504 3091 0.400000 +504 3177 0.400000 +505 77 0.400000 +505 182 0.400000 +505 276 0.400000 +505 414 0.400000 +505 426 0.400000 +505 452 0.400000 +505 531 0.400000 +505 598 0.400000 +505 663 0.400000 +505 712 0.400000 +505 745 0.400000 +505 802 0.400000 +505 829 0.400000 +505 847 0.400000 +505 854 0.400000 +505 858 0.400000 +505 877 0.400000 +505 895 0.400000 +505 961 0.400000 +505 995 0.400000 +505 1088 0.400000 +505 1133 0.400000 +505 1214 0.400000 +505 1226 0.400000 +505 1236 0.400000 +505 1316 0.400000 +505 1363 0.400000 +505 1385 0.400000 +505 1484 0.400000 +505 1563 0.400000 +505 1566 0.400000 +505 1611 0.400000 +505 1641 0.400000 +505 1656 0.400000 +505 1751 0.400000 +505 1759 0.400000 +505 1901 0.400000 +505 1906 0.400000 +505 1910 0.400000 +505 1958 0.400000 +505 1973 0.400000 +505 2048 0.400000 +505 2087 0.400000 +505 2139 0.400000 +505 2153 0.400000 +505 2178 0.400000 +505 2425 0.400000 +505 2457 0.400000 +505 2513 0.400000 +505 2563 0.400000 +505 2616 0.400000 +505 2638 0.400000 +505 2739 0.400000 +505 2866 0.400000 +505 2888 0.400000 +505 2924 0.400000 +505 2953 0.400000 +505 2969 0.400000 +505 3077 0.400000 +505 3138 0.400000 +505 3159 0.400000 +506 5 0.400000 +506 19 0.400000 +506 76 0.400000 +506 93 0.400000 +506 168 0.400000 +506 234 0.400000 +506 290 0.400000 +506 374 0.400000 +506 420 0.400000 +506 432 0.400000 +506 451 0.400000 +506 473 0.400000 +506 517 0.400000 +506 535 0.400000 +506 567 0.400000 +506 612 0.400000 +506 661 0.400000 +506 707 0.400000 +506 711 0.400000 +506 737 0.400000 +506 752 0.400000 +506 915 0.400000 +506 974 0.400000 +506 1017 0.400000 +506 1029 0.400000 +506 1061 0.400000 +506 1103 0.400000 +506 1105 0.400000 +506 1192 0.400000 +506 1209 0.400000 +506 1211 0.400000 +506 1228 0.400000 +506 1293 0.400000 +506 1307 0.400000 +506 1337 0.400000 +506 1343 0.400000 +506 1345 0.400000 +506 1356 0.400000 +506 1404 0.400000 +506 1413 0.400000 +506 1477 0.400000 +506 1489 0.400000 +506 1498 0.400000 +506 1517 0.400000 +506 1693 0.400000 +506 1762 0.400000 +506 1803 0.400000 +506 1823 0.400000 +506 1914 0.400000 +506 1915 0.400000 +506 1929 0.400000 +506 2114 0.400000 +506 2267 0.400000 +506 2342 0.400000 +506 2421 0.400000 +506 2466 0.400000 +506 2561 0.400000 +506 2604 0.400000 +506 2618 0.400000 +506 2660 0.400000 +506 2676 0.400000 +506 2703 0.400000 +506 2752 0.400000 +506 2760 0.400000 +506 2811 0.400000 +506 2876 0.400000 +506 2878 0.400000 +506 2951 0.400000 +506 2977 0.400000 +506 2987 0.400000 +506 2999 0.400000 +506 3046 0.400000 +506 3097 0.400000 +506 3119 0.400000 +506 3136 0.400000 +506 3156 0.400000 +506 3164 0.400000 +507 71 0.400000 +507 110 0.400000 +507 119 0.400000 +507 207 0.400000 +507 353 0.400000 +507 413 0.400000 +507 419 0.400000 +507 434 0.400000 +507 454 0.400000 +507 573 0.400000 +507 615 0.400000 +507 713 0.400000 +507 738 0.400000 +507 741 0.400000 +507 792 0.400000 +507 831 0.400000 +507 839 0.400000 +507 847 0.400000 +507 980 0.400000 +507 1000 0.400000 +507 1043 0.400000 +507 1056 0.400000 +507 1076 0.400000 +507 1117 0.400000 +507 1129 0.400000 +507 1145 0.400000 +507 1158 0.400000 +507 1167 0.400000 +507 1256 0.400000 +507 1388 0.400000 +507 1498 0.400000 +507 1501 0.400000 +507 1534 0.400000 +507 1549 0.400000 +507 1588 0.400000 +507 1632 0.400000 +507 1650 0.400000 +507 1734 0.400000 +507 1748 0.400000 +507 1816 0.400000 +507 1971 0.400000 +507 1983 0.400000 +507 2010 0.400000 +507 2119 0.400000 +507 2122 0.400000 +507 2203 0.400000 +507 2212 0.400000 +507 2220 0.400000 +507 2283 0.400000 +507 2288 0.400000 +507 2329 0.400000 +507 2429 0.400000 +507 2436 0.400000 +507 2570 0.400000 +507 2621 0.400000 +507 2636 0.400000 +507 2681 0.400000 +507 2744 0.400000 +507 2814 0.400000 +507 2830 0.400000 +507 2881 0.400000 +507 2979 0.400000 +507 2980 0.400000 +507 3020 0.400000 +507 3074 0.400000 +507 3126 0.400000 +507 3138 0.400000 +508 36 0.400000 +508 37 0.400000 +508 43 0.400000 +508 87 0.400000 +508 149 0.400000 +508 163 0.400000 +508 182 0.400000 +508 199 0.400000 +508 226 0.400000 +508 281 0.400000 +508 326 0.400000 +508 341 0.400000 +508 450 0.400000 +508 475 0.400000 +508 521 0.400000 +508 543 0.400000 +508 561 0.400000 +508 563 0.400000 +508 916 0.400000 +508 1037 0.400000 +508 1082 0.400000 +508 1132 0.400000 +508 1159 0.400000 +508 1186 0.400000 +508 1202 0.400000 +508 1385 0.400000 +508 1512 0.400000 +508 1592 0.400000 +508 1619 0.400000 +508 1693 0.400000 +508 1694 0.400000 +508 1826 0.400000 +508 1829 0.400000 +508 1835 0.400000 +508 1887 0.400000 +508 1977 0.400000 +508 1987 0.400000 +508 2023 0.400000 +508 2051 0.400000 +508 2086 0.400000 +508 2169 0.400000 +508 2206 0.400000 +508 2245 0.400000 +508 2248 0.400000 +508 2255 0.400000 +508 2309 0.400000 +508 2355 0.400000 +508 2369 0.400000 +508 2420 0.400000 +508 2462 0.400000 +508 2654 0.400000 +508 2666 0.400000 +508 2736 0.400000 +508 2771 0.400000 +508 2895 0.400000 +508 2904 0.400000 +508 2931 0.400000 +508 3062 0.400000 +508 3141 0.400000 +508 3155 0.400000 +508 3192 0.400000 +509 69 0.400000 +509 98 0.400000 +509 130 0.400000 +509 194 0.400000 +509 196 0.400000 +509 526 0.400000 +509 550 0.400000 +509 567 0.400000 +509 573 0.400000 +509 609 0.400000 +509 624 0.400000 +509 662 0.400000 +509 737 0.400000 +509 772 0.400000 +509 792 0.400000 +509 795 0.400000 +509 838 0.400000 +509 868 0.400000 +509 960 0.400000 +509 1000 0.400000 +509 1045 0.400000 +509 1058 0.400000 +509 1083 0.400000 +509 1122 0.400000 +509 1136 0.400000 +509 1338 0.400000 +509 1358 0.400000 +509 1384 0.400000 +509 1519 0.400000 +509 1622 0.400000 +509 1624 0.400000 +509 1840 0.400000 +509 1856 0.400000 +509 1861 0.400000 +509 1909 0.400000 +509 1940 0.400000 +509 2021 0.400000 +509 2080 0.400000 +509 2154 0.400000 +509 2157 0.400000 +509 2199 0.400000 +509 2224 0.400000 +509 2307 0.400000 +509 2414 0.400000 +509 2436 0.400000 +509 2444 0.400000 +509 2473 0.400000 +509 2494 0.400000 +509 2527 0.400000 +509 2550 0.400000 +509 2607 0.400000 +509 2679 0.400000 +509 2708 0.400000 +509 2721 0.400000 +509 2812 0.400000 +509 2859 0.400000 +509 2890 0.400000 +509 3068 0.400000 +510 27 0.400000 +510 43 0.400000 +510 123 0.400000 +510 177 0.400000 +510 203 0.400000 +510 252 0.400000 +510 258 0.400000 +510 314 0.400000 +510 325 0.400000 +510 349 0.400000 +510 429 0.400000 +510 436 0.400000 +510 442 0.400000 +510 459 0.400000 +510 516 0.400000 +510 576 0.400000 +510 611 0.400000 +510 703 0.400000 +510 705 0.400000 +510 727 0.400000 +510 825 0.400000 +510 836 0.400000 +510 920 0.400000 +510 935 0.400000 +510 1001 0.400000 +510 1048 0.400000 +510 1124 0.400000 +510 1143 0.400000 +510 1251 0.400000 +510 1265 0.400000 +510 1345 0.400000 +510 1380 0.400000 +510 1417 0.400000 +510 1446 0.400000 +510 1477 0.400000 +510 1515 0.400000 +510 1646 0.400000 +510 1674 0.400000 +510 1808 0.400000 +510 1880 0.400000 +510 1897 0.400000 +510 1933 0.400000 +510 2142 0.400000 +510 2187 0.400000 +510 2238 0.400000 +510 2314 0.400000 +510 2329 0.400000 +510 2353 0.400000 +510 2451 0.400000 +510 2506 0.400000 +510 2522 0.400000 +510 2701 0.400000 +510 2766 0.400000 +510 2811 0.400000 +510 2876 0.400000 +510 2965 0.400000 +510 2992 0.400000 +510 2993 0.400000 +510 3104 0.400000 +510 3116 0.400000 +510 3122 0.400000 +511 8 0.400000 +511 67 0.400000 +511 216 0.400000 +511 287 0.400000 +511 362 0.400000 +511 431 0.400000 +511 502 0.400000 +511 524 0.400000 +511 529 0.400000 +511 565 0.400000 +511 630 0.400000 +511 651 0.400000 +511 714 0.400000 +511 735 0.400000 +511 750 0.400000 +511 802 0.400000 +511 803 0.400000 +511 829 0.400000 +511 866 0.400000 +511 959 0.400000 +511 1063 0.400000 +511 1065 0.400000 +511 1121 0.400000 +511 1152 0.400000 +511 1175 0.400000 +511 1230 0.400000 +511 1254 0.400000 +511 1282 0.400000 +511 1306 0.400000 +511 1415 0.400000 +511 1422 0.400000 +511 1537 0.400000 +511 1555 0.400000 +511 1628 0.400000 +511 1665 0.400000 +511 1757 0.400000 +511 1803 0.400000 +511 1817 0.400000 +511 1845 0.400000 +511 1889 0.400000 +511 1900 0.400000 +511 1960 0.400000 +511 1968 0.400000 +511 1973 0.400000 +511 1987 0.400000 +511 2158 0.400000 +511 2211 0.400000 +511 2274 0.400000 +511 2361 0.400000 +511 2412 0.400000 +511 2440 0.400000 +511 2533 0.400000 +511 2588 0.400000 +511 2634 0.400000 +511 2702 0.400000 +511 2738 0.400000 +511 2759 0.400000 +511 2819 0.400000 +511 2861 0.400000 +511 2887 0.400000 +511 2922 0.400000 +511 2955 0.400000 +511 2972 0.400000 +511 3000 0.400000 +511 3036 0.400000 +511 3042 0.400000 +511 3081 0.400000 +511 3093 0.400000 +511 3135 0.400000 +512 68 0.400000 +512 71 0.400000 +512 105 0.400000 +512 107 0.400000 +512 140 0.400000 +512 225 0.400000 +512 230 0.400000 +512 372 0.400000 +512 524 0.400000 +512 578 0.400000 +512 596 0.400000 +512 659 0.400000 +512 691 0.400000 +512 732 0.400000 +512 847 0.400000 +512 935 0.400000 +512 1022 0.400000 +512 1023 0.400000 +512 1142 0.400000 +512 1151 0.400000 +512 1161 0.400000 +512 1181 0.400000 +512 1339 0.400000 +512 1449 0.400000 +512 1480 0.400000 +512 1482 0.400000 +512 1642 0.400000 +512 1732 0.400000 +512 1843 0.400000 +512 1922 0.400000 +512 2037 0.400000 +512 2081 0.400000 +512 2097 0.400000 +512 2284 0.400000 +512 2318 0.400000 +512 2396 0.400000 +512 2412 0.400000 +512 2424 0.400000 +512 2455 0.400000 +512 2469 0.400000 +512 2508 0.400000 +512 2524 0.400000 +512 2541 0.400000 +512 2691 0.400000 +512 2718 0.400000 +512 2764 0.400000 +512 2776 0.400000 +512 2793 0.400000 +512 2854 0.400000 +512 2863 0.400000 +512 2876 0.400000 +512 2915 0.400000 +512 2950 0.400000 +512 2954 0.400000 +512 2981 0.400000 +512 3174 0.400000 +513 66 0.400000 +513 84 0.400000 +513 90 0.400000 +513 211 0.400000 +513 232 0.400000 +513 296 0.400000 +513 541 0.400000 +513 677 0.400000 +513 686 0.400000 +513 788 0.400000 +513 880 0.400000 +513 952 0.400000 +513 1075 0.400000 +513 1177 0.400000 +513 1236 0.400000 +513 1326 0.400000 +513 1361 0.400000 +513 1480 0.400000 +513 1546 0.400000 +513 1603 0.400000 +513 1756 0.400000 +513 1867 0.400000 +513 1913 0.400000 +513 1972 0.400000 +513 1999 0.400000 +513 2012 0.400000 +513 2089 0.400000 +513 2112 0.400000 +513 2113 0.400000 +513 2166 0.400000 +513 2186 0.400000 +513 2420 0.400000 +513 2463 0.400000 +513 2604 0.400000 +513 2651 0.400000 +513 2744 0.400000 +513 2756 0.400000 +513 2833 0.400000 +513 2858 0.400000 +513 2895 0.400000 +513 2911 0.400000 +513 2984 0.400000 +513 3033 0.400000 +513 3055 0.400000 +513 3097 0.400000 +513 3112 0.400000 +513 3181 0.400000 +513 3186 0.400000 +514 26 0.400000 +514 28 0.400000 +514 49 0.400000 +514 328 0.400000 +514 384 0.400000 +514 568 0.400000 +514 590 0.400000 +514 637 0.400000 +514 642 0.400000 +514 659 0.400000 +514 702 0.400000 +514 839 0.400000 +514 978 0.400000 +514 1052 0.400000 +514 1106 0.400000 +514 1142 0.400000 +514 1183 0.400000 +514 1206 0.400000 +514 1227 0.400000 +514 1246 0.400000 +514 1273 0.400000 +514 1311 0.400000 +514 1595 0.400000 +514 1624 0.400000 +514 1634 0.400000 +514 1661 0.400000 +514 1672 0.400000 +514 1825 0.400000 +514 1847 0.400000 +514 1912 0.400000 +514 2043 0.400000 +514 2076 0.400000 +514 2105 0.400000 +514 2117 0.400000 +514 2199 0.400000 +514 2294 0.400000 +514 2296 0.400000 +514 2326 0.400000 +514 2345 0.400000 +514 2346 0.400000 +514 2433 0.400000 +514 2506 0.400000 +514 2524 0.400000 +514 2548 0.400000 +514 2714 0.400000 +514 2820 0.400000 +514 2871 0.400000 +514 2886 0.400000 +514 2945 0.400000 +514 2990 0.400000 +514 3045 0.400000 +514 3088 0.400000 +514 3112 0.400000 +514 3131 0.400000 +514 3192 0.400000 +514 3194 0.400000 +515 8 0.400000 +515 88 0.400000 +515 92 0.400000 +515 168 0.400000 +515 290 0.400000 +515 294 0.400000 +515 299 0.400000 +515 363 0.400000 +515 372 0.400000 +515 413 0.400000 +515 419 0.400000 +515 444 0.400000 +515 515 0.400000 +515 571 0.400000 +515 644 0.400000 +515 668 0.400000 +515 713 0.400000 +515 751 0.400000 +515 780 0.400000 +515 868 0.400000 +515 875 0.400000 +515 890 0.400000 +515 899 0.400000 +515 925 0.400000 +515 950 0.400000 +515 1069 0.400000 +515 1188 0.400000 +515 1220 0.400000 +515 1235 0.400000 +515 1314 0.400000 +515 1398 0.400000 +515 1411 0.400000 +515 1462 0.400000 +515 1471 0.400000 +515 1484 0.400000 +515 1495 0.400000 +515 1562 0.400000 +515 1619 0.400000 +515 1621 0.400000 +515 1625 0.400000 +515 1632 0.400000 +515 1752 0.400000 +515 1890 0.400000 +515 1928 0.400000 +515 1935 0.400000 +515 1944 0.400000 +515 2007 0.400000 +515 2019 0.400000 +515 2020 0.400000 +515 2053 0.400000 +515 2126 0.400000 +515 2220 0.400000 +515 2325 0.400000 +515 2363 0.400000 +515 2380 0.400000 +515 2510 0.400000 +515 2541 0.400000 +515 2654 0.400000 +515 2736 0.400000 +515 2787 0.400000 +515 2838 0.400000 +515 2857 0.400000 +515 2874 0.400000 +515 2934 0.400000 +515 2938 0.400000 +515 2957 0.400000 +515 2983 0.400000 +515 3091 0.400000 +515 3157 0.400000 +515 3170 0.400000 +515 3194 0.400000 +516 98 0.400000 +516 110 0.400000 +516 122 0.400000 +516 137 0.400000 +516 141 0.400000 +516 178 0.400000 +516 185 0.400000 +516 208 0.400000 +516 230 0.400000 +516 248 0.400000 +516 346 0.400000 +516 359 0.400000 +516 388 0.400000 +516 395 0.400000 +516 456 0.400000 +516 524 0.400000 +516 559 0.400000 +516 565 0.400000 +516 572 0.400000 +516 699 0.400000 +516 732 0.400000 +516 812 0.400000 +516 813 0.400000 +516 915 0.400000 +516 939 0.400000 +516 955 0.400000 +516 1133 0.400000 +516 1270 0.400000 +516 1316 0.400000 +516 1318 0.400000 +516 1370 0.400000 +516 1401 0.400000 +516 1420 0.400000 +516 1421 0.400000 +516 1457 0.400000 +516 1503 0.400000 +516 1569 0.400000 +516 1577 0.400000 +516 1586 0.400000 +516 1613 0.400000 +516 1671 0.400000 +516 1739 0.400000 +516 1758 0.400000 +516 1798 0.400000 +516 1802 0.400000 +516 1866 0.400000 +516 1883 0.400000 +516 1896 0.400000 +516 1955 0.400000 +516 1965 0.400000 +516 2020 0.400000 +516 2047 0.400000 +516 2169 0.400000 +516 2171 0.400000 +516 2191 0.400000 +516 2254 0.400000 +516 2278 0.400000 +516 2329 0.400000 +516 2387 0.400000 +516 2402 0.400000 +516 2437 0.400000 +516 2453 0.400000 +516 2519 0.400000 +516 2581 0.400000 +516 2660 0.400000 +516 2787 0.400000 +516 2837 0.400000 +516 3090 0.400000 +516 3113 0.400000 +517 92 0.400000 +517 162 0.400000 +517 181 0.400000 +517 222 0.400000 +517 232 0.400000 +517 311 0.400000 +517 455 0.400000 +517 478 0.400000 +517 514 0.400000 +517 690 0.400000 +517 748 0.400000 +517 774 0.400000 +517 834 0.400000 +517 850 0.400000 +517 921 0.400000 +517 975 0.400000 +517 1008 0.400000 +517 1013 0.400000 +517 1083 0.400000 +517 1104 0.400000 +517 1110 0.400000 +517 1159 0.400000 +517 1181 0.400000 +517 1193 0.400000 +517 1203 0.400000 +517 1225 0.400000 +517 1308 0.400000 +517 1336 0.400000 +517 1363 0.400000 +517 1391 0.400000 +517 1463 0.400000 +517 1516 0.400000 +517 1548 0.400000 +517 1563 0.400000 +517 1586 0.400000 +517 1610 0.400000 +517 1890 0.400000 +517 1913 0.400000 +517 1919 0.400000 +517 1943 0.400000 +517 1974 0.400000 +517 2027 0.400000 +517 2036 0.400000 +517 2192 0.400000 +517 2198 0.400000 +517 2253 0.400000 +517 2280 0.400000 +517 2287 0.400000 +517 2349 0.400000 +517 2401 0.400000 +517 2447 0.400000 +517 2633 0.400000 +517 2679 0.400000 +517 2818 0.400000 +517 2891 0.400000 +517 2928 0.400000 +517 2976 0.400000 +517 3075 0.400000 +517 3126 0.400000 +517 3157 0.400000 +517 3182 0.400000 +518 18 0.400000 +518 46 0.400000 +518 61 0.400000 +518 115 0.400000 +518 150 0.400000 +518 161 0.400000 +518 195 0.400000 +518 208 0.400000 +518 378 0.400000 +518 381 0.400000 +518 431 0.400000 +518 455 0.400000 +518 594 0.400000 +518 613 0.400000 +518 697 0.400000 +518 736 0.400000 +518 751 0.400000 +518 859 0.400000 +518 938 0.400000 +518 956 0.400000 +518 1002 0.400000 +518 1097 0.400000 +518 1131 0.400000 +518 1147 0.400000 +518 1179 0.400000 +518 1191 0.400000 +518 1219 0.400000 +518 1222 0.400000 +518 1373 0.400000 +518 1395 0.400000 +518 1453 0.400000 +518 1615 0.400000 +518 1625 0.400000 +518 1682 0.400000 +518 1703 0.400000 +518 1727 0.400000 +518 1893 0.400000 +518 1941 0.400000 +518 1982 0.400000 +518 2221 0.400000 +518 2232 0.400000 +518 2420 0.400000 +518 2421 0.400000 +518 2425 0.400000 +518 2463 0.400000 +518 2477 0.400000 +518 2562 0.400000 +518 2567 0.400000 +518 2580 0.400000 +518 2908 0.400000 +518 2940 0.400000 +518 2983 0.400000 +518 3051 0.400000 +518 3116 0.400000 +518 3185 0.400000 +519 42 0.400000 +519 54 0.400000 +519 109 0.400000 +519 118 0.400000 +519 128 0.400000 +519 192 0.400000 +519 235 0.400000 +519 242 0.400000 +519 421 0.400000 +519 423 0.400000 +519 472 0.400000 +519 519 0.400000 +519 546 0.400000 +519 587 0.400000 +519 717 0.400000 +519 875 0.400000 +519 884 0.400000 +519 935 0.400000 +519 1000 0.400000 +519 1014 0.400000 +519 1054 0.400000 +519 1112 0.400000 +519 1127 0.400000 +519 1154 0.400000 +519 1250 0.400000 +519 1333 0.400000 +519 1354 0.400000 +519 1451 0.400000 +519 1474 0.400000 +519 1572 0.400000 +519 1621 0.400000 +519 1844 0.400000 +519 1856 0.400000 +519 1881 0.400000 +519 2009 0.400000 +519 2031 0.400000 +519 2134 0.400000 +519 2153 0.400000 +519 2184 0.400000 +519 2307 0.400000 +519 2346 0.400000 +519 2377 0.400000 +519 2456 0.400000 +519 2486 0.400000 +519 2620 0.400000 +519 2640 0.400000 +519 2773 0.400000 +519 2941 0.400000 +519 3007 0.400000 +519 3050 0.400000 +519 3076 0.400000 +519 3130 0.400000 +520 6 0.400000 +520 140 0.400000 +520 157 0.400000 +520 171 0.400000 +520 260 0.400000 +520 286 0.400000 +520 287 0.400000 +520 354 0.400000 +520 444 0.400000 +520 569 0.400000 +520 572 0.400000 +520 599 0.400000 +520 629 0.400000 +520 657 0.400000 +520 661 0.400000 +520 707 0.400000 +520 733 0.400000 +520 748 0.400000 +520 769 0.400000 +520 777 0.400000 +520 798 0.400000 +520 847 0.400000 +520 942 0.400000 +520 962 0.400000 +520 997 0.400000 +520 1228 0.400000 +520 1244 0.400000 +520 1248 0.400000 +520 1251 0.400000 +520 1341 0.400000 +520 1379 0.400000 +520 1406 0.400000 +520 1435 0.400000 +520 1483 0.400000 +520 1510 0.400000 +520 1533 0.400000 +520 1546 0.400000 +520 1758 0.400000 +520 1783 0.400000 +520 1811 0.400000 +520 1856 0.400000 +520 1863 0.400000 +520 1942 0.400000 +520 1967 0.400000 +520 1985 0.400000 +520 2074 0.400000 +520 2093 0.400000 +520 2151 0.400000 +520 2203 0.400000 +520 2223 0.400000 +520 2280 0.400000 +520 2409 0.400000 +520 2413 0.400000 +520 2441 0.400000 +520 2590 0.400000 +520 2602 0.400000 +520 2627 0.400000 +520 2680 0.400000 +520 2722 0.400000 +520 2736 0.400000 +520 2829 0.400000 +520 2831 0.400000 +520 2878 0.400000 +520 2888 0.400000 +520 2902 0.400000 +520 3013 0.400000 +520 3014 0.400000 +520 3033 0.400000 +520 3084 0.400000 +520 3111 0.400000 +520 3150 0.400000 +521 3 0.400000 +521 88 0.400000 +521 148 0.400000 +521 178 0.400000 +521 371 0.400000 +521 375 0.400000 +521 398 0.400000 +521 415 0.400000 +521 434 0.400000 +521 438 0.400000 +521 515 0.400000 +521 621 0.400000 +521 640 0.400000 +521 646 0.400000 +521 740 0.400000 +521 810 0.400000 +521 829 0.400000 +521 836 0.400000 +521 854 0.400000 +521 867 0.400000 +521 873 0.400000 +521 993 0.400000 +521 1108 0.400000 +521 1145 0.400000 +521 1165 0.400000 +521 1225 0.400000 +521 1261 0.400000 +521 1278 0.400000 +521 1325 0.400000 +521 1340 0.400000 +521 1386 0.400000 +521 1391 0.400000 +521 1437 0.400000 +521 1502 0.400000 +521 1529 0.400000 +521 1540 0.400000 +521 1623 0.400000 +521 1639 0.400000 +521 1647 0.400000 +521 1677 0.400000 +521 1705 0.400000 +521 1737 0.400000 +521 1745 0.400000 +521 1853 0.400000 +521 1916 0.400000 +521 2055 0.400000 +521 2110 0.400000 +521 2142 0.400000 +521 2212 0.400000 +521 2268 0.400000 +521 2279 0.400000 +521 2286 0.400000 +521 2328 0.400000 +521 2334 0.400000 +521 2351 0.400000 +521 2401 0.400000 +521 2445 0.400000 +521 2473 0.400000 +521 2528 0.400000 +521 2551 0.400000 +521 2610 0.400000 +521 2626 0.400000 +521 2727 0.400000 +521 2728 0.400000 +521 2734 0.400000 +521 2825 0.400000 +521 2827 0.400000 +521 2830 0.400000 +521 2849 0.400000 +521 2883 0.400000 +521 3010 0.400000 +521 3085 0.400000 +521 3087 0.400000 +521 3099 0.400000 +522 70 0.400000 +522 95 0.400000 +522 106 0.400000 +522 149 0.400000 +522 271 0.400000 +522 289 0.400000 +522 298 0.400000 +522 316 0.400000 +522 423 0.400000 +522 523 0.400000 +522 609 0.400000 +522 627 0.400000 +522 823 0.400000 +522 996 0.400000 +522 997 0.400000 +522 1056 0.400000 +522 1104 0.400000 +522 1199 0.400000 +522 1205 0.400000 +522 1268 0.400000 +522 1421 0.400000 +522 1437 0.400000 +522 1445 0.400000 +522 1472 0.400000 +522 1614 0.400000 +522 1622 0.400000 +522 1664 0.400000 +522 1749 0.400000 +522 1762 0.400000 +522 1964 0.400000 +522 1980 0.400000 +522 2096 0.400000 +522 2129 0.400000 +522 2159 0.400000 +522 2179 0.400000 +522 2256 0.400000 +522 2266 0.400000 +522 2325 0.400000 +522 2381 0.400000 +522 2429 0.400000 +522 2453 0.400000 +522 2502 0.400000 +522 2504 0.400000 +522 2535 0.400000 +522 2538 0.400000 +522 2599 0.400000 +522 2623 0.400000 +522 2904 0.400000 +522 2921 0.400000 +522 2992 0.400000 +522 3090 0.400000 +522 3116 0.400000 +522 3154 0.400000 +522 3191 0.400000 +523 203 0.400000 +523 218 0.400000 +523 273 0.400000 +523 328 0.400000 +523 353 0.400000 +523 473 0.400000 +523 516 0.400000 +523 540 0.400000 +523 627 0.400000 +523 633 0.400000 +523 714 0.400000 +523 738 0.400000 +523 789 0.400000 +523 858 0.400000 +523 861 0.400000 +523 877 0.400000 +523 888 0.400000 +523 930 0.400000 +523 932 0.400000 +523 1094 0.400000 +523 1111 0.400000 +523 1231 0.400000 +523 1321 0.400000 +523 1406 0.400000 +523 1450 0.400000 +523 1479 0.400000 +523 1520 0.400000 +523 1577 0.400000 +523 1586 0.400000 +523 1736 0.400000 +523 1802 0.400000 +523 1822 0.400000 +523 1824 0.400000 +523 1881 0.400000 +523 1886 0.400000 +523 1934 0.400000 +523 1967 0.400000 +523 1980 0.400000 +523 2019 0.400000 +523 2070 0.400000 +523 2138 0.400000 +523 2176 0.400000 +523 2183 0.400000 +523 2236 0.400000 +523 2274 0.400000 +523 2364 0.400000 +523 2372 0.400000 +523 2373 0.400000 +523 2382 0.400000 +523 2436 0.400000 +523 2527 0.400000 +523 2568 0.400000 +523 2582 0.400000 +523 2598 0.400000 +523 2599 0.400000 +523 2641 0.400000 +523 2693 0.400000 +523 2782 0.400000 +523 2792 0.400000 +523 2851 0.400000 +523 2863 0.400000 +523 2868 0.400000 +523 3169 0.400000 +524 9 0.400000 +524 18 0.400000 +524 34 0.400000 +524 38 0.400000 +524 81 0.400000 +524 111 0.400000 +524 247 0.400000 +524 277 0.400000 +524 293 0.400000 +524 327 0.400000 +524 349 0.400000 +524 400 0.400000 +524 431 0.400000 +524 512 0.400000 +524 626 0.400000 +524 637 0.400000 +524 703 0.400000 +524 756 0.400000 +524 764 0.400000 +524 775 0.400000 +524 784 0.400000 +524 807 0.400000 +524 916 0.400000 +524 947 0.400000 +524 999 0.400000 +524 1003 0.400000 +524 1070 0.400000 +524 1085 0.400000 +524 1087 0.400000 +524 1135 0.400000 +524 1151 0.400000 +524 1193 0.400000 +524 1284 0.400000 +524 1404 0.400000 +524 1411 0.400000 +524 1465 0.400000 +524 1521 0.400000 +524 1551 0.400000 +524 1660 0.400000 +524 1813 0.400000 +524 1945 0.400000 +524 1981 0.400000 +524 2018 0.400000 +524 2102 0.400000 +524 2170 0.400000 +524 2178 0.400000 +524 2215 0.400000 +524 2227 0.400000 +524 2270 0.400000 +524 2275 0.400000 +524 2388 0.400000 +524 2468 0.400000 +524 2534 0.400000 +524 2539 0.400000 +524 2552 0.400000 +524 2553 0.400000 +524 2630 0.400000 +524 2690 0.400000 +524 2695 0.400000 +524 2714 0.400000 +524 2800 0.400000 +524 2834 0.400000 +524 2873 0.400000 +524 2888 0.400000 +524 2922 0.400000 +524 2992 0.400000 +524 3016 0.400000 +524 3020 0.400000 +524 3055 0.400000 +524 3077 0.400000 +524 3117 0.400000 +524 3124 0.400000 +524 3127 0.400000 +524 3194 0.400000 +525 91 0.400000 +525 147 0.400000 +525 191 0.400000 +525 194 0.400000 +525 259 0.400000 +525 261 0.400000 +525 325 0.400000 +525 353 0.400000 +525 568 0.400000 +525 596 0.400000 +525 645 0.400000 +525 662 0.400000 +525 682 0.400000 +525 694 0.400000 +525 701 0.400000 +525 715 0.400000 +525 799 0.400000 +525 887 0.400000 +525 894 0.400000 +525 902 0.400000 +525 911 0.400000 +525 966 0.400000 +525 1015 0.400000 +525 1044 0.400000 +525 1083 0.400000 +525 1111 0.400000 +525 1214 0.400000 +525 1396 0.400000 +525 1432 0.400000 +525 1638 0.400000 +525 1642 0.400000 +525 1699 0.400000 +525 1703 0.400000 +525 1719 0.400000 +525 1858 0.400000 +525 1947 0.400000 +525 1955 0.400000 +525 2008 0.400000 +525 2031 0.400000 +525 2039 0.400000 +525 2095 0.400000 +525 2163 0.400000 +525 2279 0.400000 +525 2294 0.400000 +525 2301 0.400000 +525 2351 0.400000 +525 2393 0.400000 +525 2548 0.400000 +525 2598 0.400000 +525 2915 0.400000 +525 3058 0.400000 +525 3132 0.400000 +526 4 0.400000 +526 141 0.400000 +526 247 0.400000 +526 266 0.400000 +526 514 0.400000 +526 540 0.400000 +526 621 0.400000 +526 695 0.400000 +526 733 0.400000 +526 769 0.400000 +526 895 0.400000 +526 920 0.400000 +526 921 0.400000 +526 995 0.400000 +526 998 0.400000 +526 1093 0.400000 +526 1157 0.400000 +526 1192 0.400000 +526 1206 0.400000 +526 1209 0.400000 +526 1236 0.400000 +526 1275 0.400000 +526 1289 0.400000 +526 1395 0.400000 +526 1578 0.400000 +526 1638 0.400000 +526 1693 0.400000 +526 1708 0.400000 +526 1734 0.400000 +526 1743 0.400000 +526 1809 0.400000 +526 1896 0.400000 +526 1899 0.400000 +526 1946 0.400000 +526 1951 0.400000 +526 1959 0.400000 +526 1996 0.400000 +526 2019 0.400000 +526 2037 0.400000 +526 2046 0.400000 +526 2064 0.400000 +526 2112 0.400000 +526 2142 0.400000 +526 2152 0.400000 +526 2224 0.400000 +526 2233 0.400000 +526 2235 0.400000 +526 2245 0.400000 +526 2549 0.400000 +526 2562 0.400000 +526 2677 0.400000 +526 2755 0.400000 +526 2761 0.400000 +526 2788 0.400000 +526 3057 0.400000 +526 3128 0.400000 +527 36 0.400000 +527 102 0.400000 +527 150 0.400000 +527 248 0.400000 +527 256 0.400000 +527 278 0.400000 +527 284 0.400000 +527 295 0.400000 +527 303 0.400000 +527 311 0.400000 +527 405 0.400000 +527 451 0.400000 +527 503 0.400000 +527 586 0.400000 +527 589 0.400000 +527 644 0.400000 +527 748 0.400000 +527 858 0.400000 +527 864 0.400000 +527 909 0.400000 +527 1035 0.400000 +527 1043 0.400000 +527 1048 0.400000 +527 1092 0.400000 +527 1213 0.400000 +527 1238 0.400000 +527 1265 0.400000 +527 1289 0.400000 +527 1317 0.400000 +527 1481 0.400000 +527 1492 0.400000 +527 1501 0.400000 +527 1503 0.400000 +527 1513 0.400000 +527 1546 0.400000 +527 1610 0.400000 +527 1643 0.400000 +527 1670 0.400000 +527 1724 0.400000 +527 1757 0.400000 +527 1799 0.400000 +527 1876 0.400000 +527 1882 0.400000 +527 1954 0.400000 +527 1995 0.400000 +527 2001 0.400000 +527 2087 0.400000 +527 2115 0.400000 +527 2144 0.400000 +527 2225 0.400000 +527 2331 0.400000 +527 2332 0.400000 +527 2512 0.400000 +527 2521 0.400000 +527 2656 0.400000 +527 2661 0.400000 +527 2689 0.400000 +527 2743 0.400000 +527 2786 0.400000 +527 2869 0.400000 +527 2873 0.400000 +527 2901 0.400000 +527 2944 0.400000 +527 2971 0.400000 +527 3040 0.400000 +527 3085 0.400000 +527 3127 0.400000 +527 3165 0.400000 +528 88 0.400000 +528 100 0.400000 +528 194 0.400000 +528 202 0.400000 +528 257 0.400000 +528 340 0.400000 +528 371 0.400000 +528 487 0.400000 +528 569 0.400000 +528 587 0.400000 +528 710 0.400000 +528 795 0.400000 +528 880 0.400000 +528 894 0.400000 +528 998 0.400000 +528 1020 0.400000 +528 1026 0.400000 +528 1247 0.400000 +528 1302 0.400000 +528 1371 0.400000 +528 1799 0.400000 +528 1832 0.400000 +528 1854 0.400000 +528 1876 0.400000 +528 1948 0.400000 +528 1974 0.400000 +528 2016 0.400000 +528 2054 0.400000 +528 2107 0.400000 +528 2149 0.400000 +528 2179 0.400000 +528 2275 0.400000 +528 2327 0.400000 +528 2351 0.400000 +528 2382 0.400000 +528 2386 0.400000 +528 2438 0.400000 +528 2598 0.400000 +528 2776 0.400000 +528 2888 0.400000 +528 2923 0.400000 +528 2980 0.400000 +528 3084 0.400000 +528 3128 0.400000 +528 3154 0.400000 +529 11 0.400000 +529 12 0.400000 +529 68 0.400000 +529 131 0.400000 +529 161 0.400000 +529 279 0.400000 +529 308 0.400000 +529 341 0.400000 +529 368 0.400000 +529 435 0.400000 +529 436 0.400000 +529 441 0.400000 +529 597 0.400000 +529 607 0.400000 +529 669 0.400000 +529 845 0.400000 +529 978 0.400000 +529 1123 0.400000 +529 1143 0.400000 +529 1145 0.400000 +529 1218 0.400000 +529 1227 0.400000 +529 1238 0.400000 +529 1243 0.400000 +529 1460 0.400000 +529 1489 0.400000 +529 1530 0.400000 +529 1548 0.400000 +529 1587 0.400000 +529 1597 0.400000 +529 1634 0.400000 +529 1751 0.400000 +529 1809 0.400000 +529 1952 0.400000 +529 2007 0.400000 +529 2049 0.400000 +529 2063 0.400000 +529 2071 0.400000 +529 2091 0.400000 +529 2170 0.400000 +529 2208 0.400000 +529 2262 0.400000 +529 2325 0.400000 +529 2406 0.400000 +529 2483 0.400000 +529 2484 0.400000 +529 2539 0.400000 +529 2551 0.400000 +529 2585 0.400000 +529 2643 0.400000 +529 2702 0.400000 +529 2727 0.400000 +529 2742 0.400000 +529 2815 0.400000 +529 2843 0.400000 +529 2861 0.400000 +529 2873 0.400000 +529 2910 0.400000 +529 2968 0.400000 +529 2986 0.400000 +529 3057 0.400000 +529 3143 0.400000 +529 3154 0.400000 +529 3156 0.400000 +529 3178 0.400000 +529 3188 0.400000 +530 26 0.400000 +530 98 0.400000 +530 107 0.400000 +530 114 0.400000 +530 139 0.400000 +530 167 0.400000 +530 169 0.400000 +530 189 0.400000 +530 199 0.400000 +530 221 0.400000 +530 420 0.400000 +530 438 0.400000 +530 443 0.400000 +530 641 0.400000 +530 713 0.400000 +530 751 0.400000 +530 822 0.400000 +530 912 0.400000 +530 919 0.400000 +530 968 0.400000 +530 994 0.400000 +530 1004 0.400000 +530 1025 0.400000 +530 1112 0.400000 +530 1118 0.400000 +530 1126 0.400000 +530 1178 0.400000 +530 1225 0.400000 +530 1355 0.400000 +530 1371 0.400000 +530 1413 0.400000 +530 1420 0.400000 +530 1442 0.400000 +530 1443 0.400000 +530 1532 0.400000 +530 1581 0.400000 +530 1652 0.400000 +530 1724 0.400000 +530 1738 0.400000 +530 1770 0.400000 +530 1864 0.400000 +530 2074 0.400000 +530 2077 0.400000 +530 2103 0.400000 +530 2156 0.400000 +530 2194 0.400000 +530 2272 0.400000 +530 2278 0.400000 +530 2283 0.400000 +530 2288 0.400000 +530 2378 0.400000 +530 2393 0.400000 +530 2531 0.400000 +530 2665 0.400000 +530 2666 0.400000 +530 2675 0.400000 +530 2791 0.400000 +530 2817 0.400000 +530 2865 0.400000 +530 2871 0.400000 +530 2919 0.400000 +530 3087 0.400000 +530 3125 0.400000 +530 3140 0.400000 +530 3144 0.400000 +530 3169 0.400000 +531 1 0.400000 +531 90 0.400000 +531 99 0.400000 +531 119 0.400000 +531 152 0.400000 +531 210 0.400000 +531 256 0.400000 +531 274 0.400000 +531 430 0.400000 +531 464 0.400000 +531 504 0.400000 +531 600 0.400000 +531 612 0.400000 +531 787 0.400000 +531 872 0.400000 +531 916 0.400000 +531 955 0.400000 +531 1028 0.400000 +531 1083 0.400000 +531 1123 0.400000 +531 1277 0.400000 +531 1326 0.400000 +531 1330 0.400000 +531 1394 0.400000 +531 1535 0.400000 +531 1582 0.400000 +531 1591 0.400000 +531 1609 0.400000 +531 1621 0.400000 +531 1629 0.400000 +531 1635 0.400000 +531 1867 0.400000 +531 1878 0.400000 +531 1920 0.400000 +531 1941 0.400000 +531 2108 0.400000 +531 2109 0.400000 +531 2191 0.400000 +531 2214 0.400000 +531 2232 0.400000 +531 2305 0.400000 +531 2343 0.400000 +531 2360 0.400000 +531 2449 0.400000 +531 2470 0.400000 +531 2541 0.400000 +531 2564 0.400000 +531 2578 0.400000 +531 2593 0.400000 +531 2667 0.400000 +531 2675 0.400000 +531 2693 0.400000 +531 2792 0.400000 +531 2796 0.400000 +531 2954 0.400000 +531 2994 0.400000 +531 3006 0.400000 +531 3021 0.400000 +531 3070 0.400000 +531 3074 0.400000 +531 3118 0.400000 +531 3193 0.400000 +532 3 0.400000 +532 34 0.400000 +532 80 0.400000 +532 95 0.400000 +532 114 0.400000 +532 204 0.400000 +532 293 0.400000 +532 378 0.400000 +532 380 0.400000 +532 518 0.400000 +532 548 0.400000 +532 703 0.400000 +532 743 0.400000 +532 755 0.400000 +532 824 0.400000 +532 986 0.400000 +532 1052 0.400000 +532 1096 0.400000 +532 1252 0.400000 +532 1298 0.400000 +532 1405 0.400000 +532 1460 0.400000 +532 1467 0.400000 +532 1481 0.400000 +532 1510 0.400000 +532 1642 0.400000 +532 1713 0.400000 +532 1864 0.400000 +532 1900 0.400000 +532 1941 0.400000 +532 1945 0.400000 +532 2067 0.400000 +532 2100 0.400000 +532 2139 0.400000 +532 2161 0.400000 +532 2224 0.400000 +532 2227 0.400000 +532 2259 0.400000 +532 2267 0.400000 +532 2272 0.400000 +532 2305 0.400000 +532 2327 0.400000 +532 2367 0.400000 +532 2373 0.400000 +532 2473 0.400000 +532 2476 0.400000 +532 2490 0.400000 +532 2602 0.400000 +532 2660 0.400000 +532 2665 0.400000 +532 2684 0.400000 +532 2693 0.400000 +532 2809 0.400000 +532 2932 0.400000 +532 2948 0.400000 +532 2962 0.400000 +532 3058 0.400000 +532 3147 0.400000 +532 3150 0.400000 +532 3156 0.400000 +532 3191 0.400000 +533 72 0.400000 +533 158 0.400000 +533 242 0.400000 +533 292 0.400000 +533 349 0.400000 +533 396 0.400000 +533 417 0.400000 +533 419 0.400000 +533 436 0.400000 +533 469 0.400000 +533 523 0.400000 +533 561 0.400000 +533 678 0.400000 +533 762 0.400000 +533 872 0.400000 +533 917 0.400000 +533 939 0.400000 +533 952 0.400000 +533 994 0.400000 +533 996 0.400000 +533 1018 0.400000 +533 1051 0.400000 +533 1207 0.400000 +533 1215 0.400000 +533 1225 0.400000 +533 1237 0.400000 +533 1320 0.400000 +533 1373 0.400000 +533 1456 0.400000 +533 1538 0.400000 +533 1550 0.400000 +533 1556 0.400000 +533 1572 0.400000 +533 1597 0.400000 +533 1618 0.400000 +533 1660 0.400000 +533 1750 0.400000 +533 1846 0.400000 +533 1896 0.400000 +533 1984 0.400000 +533 2069 0.400000 +533 2100 0.400000 +533 2152 0.400000 +533 2203 0.400000 +533 2337 0.400000 +533 2476 0.400000 +533 2563 0.400000 +533 2634 0.400000 +533 2705 0.400000 +533 2764 0.400000 +533 2797 0.400000 +533 2845 0.400000 +533 2860 0.400000 +533 2931 0.400000 +533 2944 0.400000 +533 2985 0.400000 +533 2989 0.400000 +533 3022 0.400000 +533 3061 0.400000 +533 3078 0.400000 +533 3093 0.400000 +534 5 0.400000 +534 12 0.400000 +534 15 0.400000 +534 173 0.400000 +534 207 0.400000 +534 299 0.400000 +534 304 0.400000 +534 350 0.400000 +534 356 0.400000 +534 429 0.400000 +534 459 0.400000 +534 480 0.400000 +534 575 0.400000 +534 586 0.400000 +534 629 0.400000 +534 676 0.400000 +534 751 0.400000 +534 781 0.400000 +534 860 0.400000 +534 1115 0.400000 +534 1136 0.400000 +534 1190 0.400000 +534 1387 0.400000 +534 1470 0.400000 +534 1514 0.400000 +534 1578 0.400000 +534 1597 0.400000 +534 1617 0.400000 +534 1636 0.400000 +534 1702 0.400000 +534 1705 0.400000 +534 1714 0.400000 +534 1753 0.400000 +534 1873 0.400000 +534 1976 0.400000 +534 2168 0.400000 +534 2216 0.400000 +534 2312 0.400000 +534 2324 0.400000 +534 2480 0.400000 +534 2494 0.400000 +534 2563 0.400000 +534 2571 0.400000 +534 2583 0.400000 +534 2605 0.400000 +534 2648 0.400000 +534 2653 0.400000 +534 2830 0.400000 +534 2849 0.400000 +534 2920 0.400000 +534 2973 0.400000 +534 3030 0.400000 +534 3035 0.400000 +534 3128 0.400000 +534 3177 0.400000 +535 6 0.400000 +535 20 0.400000 +535 28 0.400000 +535 47 0.400000 +535 86 0.400000 +535 122 0.400000 +535 171 0.400000 +535 325 0.400000 +535 408 0.400000 +535 434 0.400000 +535 452 0.400000 +535 473 0.400000 +535 597 0.400000 +535 636 0.400000 +535 646 0.400000 +535 829 0.400000 +535 906 0.400000 +535 1007 0.400000 +535 1031 0.400000 +535 1063 0.400000 +535 1165 0.400000 +535 1182 0.400000 +535 1241 0.400000 +535 1340 0.400000 +535 1394 0.400000 +535 1405 0.400000 +535 1726 0.400000 +535 1739 0.400000 +535 1825 0.400000 +535 1902 0.400000 +535 1908 0.400000 +535 1918 0.400000 +535 1964 0.400000 +535 1984 0.400000 +535 2160 0.400000 +535 2200 0.400000 +535 2244 0.400000 +535 2264 0.400000 +535 2310 0.400000 +535 2354 0.400000 +535 2548 0.400000 +535 2617 0.400000 +535 2628 0.400000 +535 2776 0.400000 +535 2918 0.400000 +535 2922 0.400000 +535 2952 0.400000 +535 3008 0.400000 +535 3023 0.400000 +535 3129 0.400000 +535 3163 0.400000 +535 3166 0.400000 +535 3171 0.400000 +535 3179 0.400000 +536 33 0.400000 +536 154 0.400000 +536 182 0.400000 +536 185 0.400000 +536 301 0.400000 +536 303 0.400000 +536 334 0.400000 +536 345 0.400000 +536 423 0.400000 +536 476 0.400000 +536 498 0.400000 +536 536 0.400000 +536 626 0.400000 +536 677 0.400000 +536 682 0.400000 +536 732 0.400000 +536 740 0.400000 +536 751 0.400000 +536 840 0.400000 +536 856 0.400000 +536 922 0.400000 +536 961 0.400000 +536 1014 0.400000 +536 1036 0.400000 +536 1090 0.400000 +536 1101 0.400000 +536 1134 0.400000 +536 1228 0.400000 +536 1337 0.400000 +536 1378 0.400000 +536 1419 0.400000 +536 1507 0.400000 +536 1532 0.400000 +536 1541 0.400000 +536 1554 0.400000 +536 1645 0.400000 +536 1676 0.400000 +536 1714 0.400000 +536 1760 0.400000 +536 1768 0.400000 +536 1818 0.400000 +536 1890 0.400000 +536 1900 0.400000 +536 1922 0.400000 +536 1929 0.400000 +536 1981 0.400000 +536 2000 0.400000 +536 2018 0.400000 +536 2106 0.400000 +536 2143 0.400000 +536 2154 0.400000 +536 2166 0.400000 +536 2171 0.400000 +536 2194 0.400000 +536 2218 0.400000 +536 2228 0.400000 +536 2235 0.400000 +536 2260 0.400000 +536 2361 0.400000 +536 2457 0.400000 +536 2565 0.400000 +536 2758 0.400000 +536 2766 0.400000 +536 2800 0.400000 +536 2832 0.400000 +536 2875 0.400000 +536 2876 0.400000 +536 2879 0.400000 +536 2942 0.400000 +536 2986 0.400000 +536 2990 0.400000 +536 2994 0.400000 +536 3007 0.400000 +536 3055 0.400000 +536 3159 0.400000 +537 35 0.400000 +537 39 0.400000 +537 52 0.400000 +537 82 0.400000 +537 157 0.400000 +537 215 0.400000 +537 254 0.400000 +537 275 0.400000 +537 318 0.400000 +537 330 0.400000 +537 389 0.400000 +537 403 0.400000 +537 407 0.400000 +537 412 0.400000 +537 415 0.400000 +537 416 0.400000 +537 492 0.400000 +537 591 0.400000 +537 633 0.400000 +537 700 0.400000 +537 727 0.400000 +537 846 0.400000 +537 852 0.400000 +537 903 0.400000 +537 939 0.400000 +537 965 0.400000 +537 1035 0.400000 +537 1037 0.400000 +537 1098 0.400000 +537 1147 0.400000 +537 1189 0.400000 +537 1237 0.400000 +537 1278 0.400000 +537 1286 0.400000 +537 1310 0.400000 +537 1330 0.400000 +537 1343 0.400000 +537 1477 0.400000 +537 1484 0.400000 +537 1528 0.400000 +537 1765 0.400000 +537 1832 0.400000 +537 1870 0.400000 +537 2081 0.400000 +537 2114 0.400000 +537 2157 0.400000 +537 2187 0.400000 +537 2317 0.400000 +537 2333 0.400000 +537 2345 0.400000 +537 2346 0.400000 +537 2362 0.400000 +537 2411 0.400000 +537 2438 0.400000 +537 2442 0.400000 +537 2469 0.400000 +537 2476 0.400000 +537 2484 0.400000 +537 2546 0.400000 +537 2565 0.400000 +537 2603 0.400000 +537 2708 0.400000 +537 2729 0.400000 +537 2787 0.400000 +537 2814 0.400000 +537 2834 0.400000 +537 2855 0.400000 +537 2858 0.400000 +537 2868 0.400000 +537 2870 0.400000 +537 2929 0.400000 +537 2959 0.400000 +537 2994 0.400000 +537 3003 0.400000 +537 3063 0.400000 +537 3066 0.400000 +537 3104 0.400000 +537 3123 0.400000 +537 3183 0.400000 +538 40 0.400000 +538 129 0.400000 +538 161 0.400000 +538 166 0.400000 +538 194 0.400000 +538 207 0.400000 +538 467 0.400000 +538 535 0.400000 +538 551 0.400000 +538 576 0.400000 +538 580 0.400000 +538 628 0.400000 +538 633 0.400000 +538 645 0.400000 +538 759 0.400000 +538 819 0.400000 +538 878 0.400000 +538 924 0.400000 +538 959 0.400000 +538 1088 0.400000 +538 1175 0.400000 +538 1188 0.400000 +538 1369 0.400000 +538 1409 0.400000 +538 1423 0.400000 +538 1525 0.400000 +538 1603 0.400000 +538 1609 0.400000 +538 1649 0.400000 +538 1676 0.400000 +538 1699 0.400000 +538 1710 0.400000 +538 1793 0.400000 +538 1817 0.400000 +538 1894 0.400000 +538 1947 0.400000 +538 1961 0.400000 +538 2089 0.400000 +538 2146 0.400000 +538 2167 0.400000 +538 2184 0.400000 +538 2201 0.400000 +538 2208 0.400000 +538 2224 0.400000 +538 2244 0.400000 +538 2250 0.400000 +538 2274 0.400000 +538 2331 0.400000 +538 2365 0.400000 +538 2372 0.400000 +538 2392 0.400000 +538 2421 0.400000 +538 2438 0.400000 +538 2484 0.400000 +538 2574 0.400000 +538 2673 0.400000 +538 2691 0.400000 +538 2729 0.400000 +538 2827 0.400000 +538 2896 0.400000 +538 2901 0.400000 +538 2928 0.400000 +538 3006 0.400000 +538 3076 0.400000 +538 3140 0.400000 +538 3171 0.400000 +539 60 0.400000 +539 159 0.400000 +539 334 0.400000 +539 403 0.400000 +539 532 0.400000 +539 584 0.400000 +539 665 0.400000 +539 691 0.400000 +539 694 0.400000 +539 839 0.400000 +539 900 0.400000 +539 990 0.400000 +539 991 0.400000 +539 1022 0.400000 +539 1080 0.400000 +539 1154 0.400000 +539 1183 0.400000 +539 1275 0.400000 +539 1328 0.400000 +539 1329 0.400000 +539 1372 0.400000 +539 1400 0.400000 +539 1594 0.400000 +539 1621 0.400000 +539 1635 0.400000 +539 1686 0.400000 +539 1796 0.400000 +539 1830 0.400000 +539 1848 0.400000 +539 1866 0.400000 +539 1945 0.400000 +539 1955 0.400000 +539 1984 0.400000 +539 2089 0.400000 +539 2166 0.400000 +539 2184 0.400000 +539 2279 0.400000 +539 2423 0.400000 +539 2481 0.400000 +539 2483 0.400000 +539 2524 0.400000 +539 2607 0.400000 +539 2615 0.400000 +539 2659 0.400000 +539 2777 0.400000 +539 2912 0.400000 +539 2915 0.400000 +539 2953 0.400000 +539 3002 0.400000 +539 3072 0.400000 +539 3116 0.400000 +539 3145 0.400000 +539 3161 0.400000 +539 3163 0.400000 +539 3195 0.400000 +540 62 0.400000 +540 126 0.400000 +540 129 0.400000 +540 153 0.400000 +540 181 0.400000 +540 194 0.400000 +540 219 0.400000 +540 226 0.400000 +540 249 0.400000 +540 251 0.400000 +540 262 0.400000 +540 312 0.400000 +540 334 0.400000 +540 381 0.400000 +540 423 0.400000 +540 469 0.400000 +540 579 0.400000 +540 640 0.400000 +540 741 0.400000 +540 807 0.400000 +540 832 0.400000 +540 838 0.400000 +540 912 0.400000 +540 935 0.400000 +540 1001 0.400000 +540 1073 0.400000 +540 1123 0.400000 +540 1414 0.400000 +540 1604 0.400000 +540 1629 0.400000 +540 1687 0.400000 +540 1700 0.400000 +540 1813 0.400000 +540 1817 0.400000 +540 2153 0.400000 +540 2165 0.400000 +540 2220 0.400000 +540 2513 0.400000 +540 2522 0.400000 +540 2523 0.400000 +540 2708 0.400000 +540 2758 0.400000 +540 2919 0.400000 +540 3034 0.400000 +540 3076 0.400000 +540 3126 0.400000 +540 3158 0.400000 +540 3188 0.400000 +541 45 0.400000 +541 185 0.400000 +541 190 0.400000 +541 201 0.400000 +541 216 0.400000 +541 282 0.400000 +541 310 0.400000 +541 340 0.400000 +541 489 0.400000 +541 490 0.400000 +541 509 0.400000 +541 583 0.400000 +541 586 0.400000 +541 618 0.400000 +541 639 0.400000 +541 715 0.400000 +541 811 0.400000 +541 834 0.400000 +541 837 0.400000 +541 894 0.400000 +541 971 0.400000 +541 981 0.400000 +541 1003 0.400000 +541 1099 0.400000 +541 1111 0.400000 +541 1321 0.400000 +541 1367 0.400000 +541 1400 0.400000 +541 1406 0.400000 +541 1458 0.400000 +541 1479 0.400000 +541 1650 0.400000 +541 1662 0.400000 +541 1700 0.400000 +541 1762 0.400000 +541 1829 0.400000 +541 1906 0.400000 +541 1935 0.400000 +541 2010 0.400000 +541 2128 0.400000 +541 2164 0.400000 +541 2230 0.400000 +541 2290 0.400000 +541 2361 0.400000 +541 2378 0.400000 +541 2418 0.400000 +541 2442 0.400000 +541 2486 0.400000 +541 2495 0.400000 +541 2525 0.400000 +541 2589 0.400000 +541 2725 0.400000 +541 2752 0.400000 +541 2756 0.400000 +541 2856 0.400000 +541 2919 0.400000 +541 3016 0.400000 +541 3054 0.400000 +541 3131 0.400000 +541 3140 0.400000 +542 33 0.400000 +542 62 0.400000 +542 67 0.400000 +542 124 0.400000 +542 133 0.400000 +542 152 0.400000 +542 160 0.400000 +542 178 0.400000 +542 244 0.400000 +542 285 0.400000 +542 291 0.400000 +542 327 0.400000 +542 339 0.400000 +542 348 0.400000 +542 368 0.400000 +542 419 0.400000 +542 477 0.400000 +542 486 0.400000 +542 536 0.400000 +542 577 0.400000 +542 579 0.400000 +542 618 0.400000 +542 669 0.400000 +542 679 0.400000 +542 753 0.400000 +542 802 0.400000 +542 833 0.400000 +542 949 0.400000 +542 1107 0.400000 +542 1122 0.400000 +542 1133 0.400000 +542 1321 0.400000 +542 1362 0.400000 +542 1386 0.400000 +542 1388 0.400000 +542 1394 0.400000 +542 1427 0.400000 +542 1478 0.400000 +542 1616 0.400000 +542 1673 0.400000 +542 1695 0.400000 +542 1748 0.400000 +542 1937 0.400000 +542 1960 0.400000 +542 1978 0.400000 +542 2087 0.400000 +542 2113 0.400000 +542 2115 0.400000 +542 2372 0.400000 +542 2379 0.400000 +542 2383 0.400000 +542 2403 0.400000 +542 2417 0.400000 +542 2425 0.400000 +542 2494 0.400000 +542 2498 0.400000 +542 2671 0.400000 +542 2682 0.400000 +542 2710 0.400000 +542 2736 0.400000 +542 2787 0.400000 +542 2810 0.400000 +542 2896 0.400000 +542 2955 0.400000 +542 3036 0.400000 +542 3092 0.400000 +542 3138 0.400000 +542 3149 0.400000 +542 3172 0.400000 +543 17 0.400000 +543 231 0.400000 +543 238 0.400000 +543 243 0.400000 +543 269 0.400000 +543 340 0.400000 +543 425 0.400000 +543 446 0.400000 +543 480 0.400000 +543 514 0.400000 +543 525 0.400000 +543 573 0.400000 +543 575 0.400000 +543 626 0.400000 +543 627 0.400000 +543 671 0.400000 +543 743 0.400000 +543 810 0.400000 +543 814 0.400000 +543 831 0.400000 +543 1143 0.400000 +543 1144 0.400000 +543 1211 0.400000 +543 1225 0.400000 +543 1323 0.400000 +543 1359 0.400000 +543 1371 0.400000 +543 1417 0.400000 +543 1472 0.400000 +543 1565 0.400000 +543 1568 0.400000 +543 1623 0.400000 +543 1638 0.400000 +543 1642 0.400000 +543 1697 0.400000 +543 1711 0.400000 +543 1767 0.400000 +543 2029 0.400000 +543 2050 0.400000 +543 2081 0.400000 +543 2099 0.400000 +543 2120 0.400000 +543 2140 0.400000 +543 2141 0.400000 +543 2247 0.400000 +543 2295 0.400000 +543 2298 0.400000 +543 2353 0.400000 +543 2356 0.400000 +543 2423 0.400000 +543 2425 0.400000 +543 2453 0.400000 +543 2482 0.400000 +543 2569 0.400000 +543 2657 0.400000 +543 2677 0.400000 +543 2727 0.400000 +543 2739 0.400000 +543 2778 0.400000 +543 2803 0.400000 +543 2822 0.400000 +543 2853 0.400000 +543 2867 0.400000 +543 2924 0.400000 +543 2996 0.400000 +543 3067 0.400000 +543 3131 0.400000 +544 15 0.400000 +544 53 0.400000 +544 211 0.400000 +544 281 0.400000 +544 349 0.400000 +544 435 0.400000 +544 451 0.400000 +544 554 0.400000 +544 587 0.400000 +544 692 0.400000 +544 709 0.400000 +544 713 0.400000 +544 893 0.400000 +544 931 0.400000 +544 1027 0.400000 +544 1046 0.400000 +544 1085 0.400000 +544 1099 0.400000 +544 1152 0.400000 +544 1173 0.400000 +544 1206 0.400000 +544 1271 0.400000 +544 1286 0.400000 +544 1508 0.400000 +544 1590 0.400000 +544 1688 0.400000 +544 1722 0.400000 +544 1803 0.400000 +544 1856 0.400000 +544 1891 0.400000 +544 1904 0.400000 +544 1906 0.400000 +544 1914 0.400000 +544 1915 0.400000 +544 1949 0.400000 +544 1955 0.400000 +544 2031 0.400000 +544 2075 0.400000 +544 2123 0.400000 +544 2143 0.400000 +544 2232 0.400000 +544 2289 0.400000 +544 2300 0.400000 +544 2304 0.400000 +544 2305 0.400000 +544 2322 0.400000 +544 2341 0.400000 +544 2452 0.400000 +544 2458 0.400000 +544 2469 0.400000 +544 2530 0.400000 +544 2541 0.400000 +544 2557 0.400000 +544 2562 0.400000 +544 2701 0.400000 +544 2731 0.400000 +544 2779 0.400000 +544 2808 0.400000 +544 2859 0.400000 +544 2901 0.400000 +544 3040 0.400000 +544 3051 0.400000 +545 20 0.400000 +545 31 0.400000 +545 51 0.400000 +545 61 0.400000 +545 153 0.400000 +545 223 0.400000 +545 252 0.400000 +545 253 0.400000 +545 279 0.400000 +545 336 0.400000 +545 343 0.400000 +545 364 0.400000 +545 452 0.400000 +545 496 0.400000 +545 518 0.400000 +545 620 0.400000 +545 799 0.400000 +545 1026 0.400000 +545 1033 0.400000 +545 1039 0.400000 +545 1067 0.400000 +545 1068 0.400000 +545 1086 0.400000 +545 1108 0.400000 +545 1116 0.400000 +545 1271 0.400000 +545 1304 0.400000 +545 1316 0.400000 +545 1331 0.400000 +545 1466 0.400000 +545 1471 0.400000 +545 1533 0.400000 +545 1538 0.400000 +545 1573 0.400000 +545 1666 0.400000 +545 1680 0.400000 +545 1729 0.400000 +545 1757 0.400000 +545 1784 0.400000 +545 1786 0.400000 +545 1798 0.400000 +545 1921 0.400000 +545 1922 0.400000 +545 1944 0.400000 +545 1989 0.400000 +545 2037 0.400000 +545 2050 0.400000 +545 2104 0.400000 +545 2110 0.400000 +545 2223 0.400000 +545 2254 0.400000 +545 2288 0.400000 +545 2335 0.400000 +545 2368 0.400000 +545 2474 0.400000 +545 2502 0.400000 +545 2568 0.400000 +545 2615 0.400000 +545 2740 0.400000 +545 2806 0.400000 +545 2984 0.400000 +545 3029 0.400000 +545 3115 0.400000 +546 13 0.400000 +546 37 0.400000 +546 110 0.400000 +546 198 0.400000 +546 211 0.400000 +546 301 0.400000 +546 340 0.400000 +546 372 0.400000 +546 400 0.400000 +546 404 0.400000 +546 424 0.400000 +546 433 0.400000 +546 532 0.400000 +546 569 0.400000 +546 591 0.400000 +546 603 0.400000 +546 626 0.400000 +546 646 0.400000 +546 697 0.400000 +546 699 0.400000 +546 786 0.400000 +546 819 0.400000 +546 883 0.400000 +546 901 0.400000 +546 915 0.400000 +546 964 0.400000 +546 1002 0.400000 +546 1040 0.400000 +546 1124 0.400000 +546 1165 0.400000 +546 1394 0.400000 +546 1409 0.400000 +546 1420 0.400000 +546 1436 0.400000 +546 1464 0.400000 +546 1527 0.400000 +546 1536 0.400000 +546 1561 0.400000 +546 1577 0.400000 +546 1759 0.400000 +546 1816 0.400000 +546 1844 0.400000 +546 1868 0.400000 +546 2001 0.400000 +546 2162 0.400000 +546 2196 0.400000 +546 2217 0.400000 +546 2263 0.400000 +546 2298 0.400000 +546 2332 0.400000 +546 2346 0.400000 +546 2358 0.400000 +546 2376 0.400000 +546 2429 0.400000 +546 2430 0.400000 +546 2443 0.400000 +546 2467 0.400000 +546 2537 0.400000 +546 2599 0.400000 +546 2619 0.400000 +546 2639 0.400000 +546 2660 0.400000 +546 2665 0.400000 +546 2699 0.400000 +546 2796 0.400000 +546 2810 0.400000 +546 2823 0.400000 +546 2913 0.400000 +546 2960 0.400000 +546 2962 0.400000 +546 2971 0.400000 +546 3001 0.400000 +546 3066 0.400000 +546 3067 0.400000 +546 3170 0.400000 +546 3179 0.400000 +546 3184 0.400000 +547 13 0.400000 +547 35 0.400000 +547 202 0.400000 +547 224 0.400000 +547 273 0.400000 +547 346 0.400000 +547 438 0.400000 +547 530 0.400000 +547 582 0.400000 +547 658 0.400000 +547 697 0.400000 +547 799 0.400000 +547 864 0.400000 +547 887 0.400000 +547 931 0.400000 +547 1118 0.400000 +547 1148 0.400000 +547 1230 0.400000 +547 1375 0.400000 +547 1429 0.400000 +547 1472 0.400000 +547 1489 0.400000 +547 1529 0.400000 +547 1572 0.400000 +547 1610 0.400000 +547 1632 0.400000 +547 1680 0.400000 +547 1728 0.400000 +547 1817 0.400000 +547 1885 0.400000 +547 1904 0.400000 +547 1908 0.400000 +547 1931 0.400000 +547 1954 0.400000 +547 1970 0.400000 +547 2040 0.400000 +547 2043 0.400000 +547 2062 0.400000 +547 2218 0.400000 +547 2300 0.400000 +547 2348 0.400000 +547 2365 0.400000 +547 2377 0.400000 +547 2533 0.400000 +547 2541 0.400000 +547 2546 0.400000 +547 2567 0.400000 +547 2592 0.400000 +547 2713 0.400000 +547 2743 0.400000 +547 2778 0.400000 +547 2804 0.400000 +547 2887 0.400000 +547 2899 0.400000 +547 2920 0.400000 +547 2932 0.400000 +547 3107 0.400000 +547 3122 0.400000 +547 3193 0.400000 +548 3 0.400000 +548 39 0.400000 +548 190 0.400000 +548 192 0.400000 +548 220 0.400000 +548 234 0.400000 +548 238 0.400000 +548 243 0.400000 +548 244 0.400000 +548 337 0.400000 +548 371 0.400000 +548 406 0.400000 +548 471 0.400000 +548 526 0.400000 +548 543 0.400000 +548 545 0.400000 +548 594 0.400000 +548 694 0.400000 +548 714 0.400000 +548 880 0.400000 +548 941 0.400000 +548 971 0.400000 +548 972 0.400000 +548 1078 0.400000 +548 1092 0.400000 +548 1109 0.400000 +548 1170 0.400000 +548 1196 0.400000 +548 1221 0.400000 +548 1322 0.400000 +548 1389 0.400000 +548 1404 0.400000 +548 1496 0.400000 +548 1498 0.400000 +548 1574 0.400000 +548 1607 0.400000 +548 1630 0.400000 +548 1641 0.400000 +548 1698 0.400000 +548 1702 0.400000 +548 1757 0.400000 +548 1761 0.400000 +548 1786 0.400000 +548 1853 0.400000 +548 1887 0.400000 +548 1946 0.400000 +548 2086 0.400000 +548 2132 0.400000 +548 2261 0.400000 +548 2267 0.400000 +548 2275 0.400000 +548 2368 0.400000 +548 2785 0.400000 +548 2833 0.400000 +548 2890 0.400000 +548 2951 0.400000 +548 2989 0.400000 +548 3057 0.400000 +548 3073 0.400000 +548 3098 0.400000 +548 3159 0.400000 +548 3195 0.400000 +549 91 0.400000 +549 119 0.400000 +549 171 0.400000 +549 181 0.400000 +549 182 0.400000 +549 196 0.400000 +549 228 0.400000 +549 241 0.400000 +549 253 0.400000 +549 256 0.400000 +549 309 0.400000 +549 334 0.400000 +549 341 0.400000 +549 369 0.400000 +549 448 0.400000 +549 524 0.400000 +549 555 0.400000 +549 664 0.400000 +549 666 0.400000 +549 672 0.400000 +549 766 0.400000 +549 772 0.400000 +549 807 0.400000 +549 816 0.400000 +549 865 0.400000 +549 869 0.400000 +549 892 0.400000 +549 897 0.400000 +549 963 0.400000 +549 1067 0.400000 +549 1088 0.400000 +549 1101 0.400000 +549 1161 0.400000 +549 1203 0.400000 +549 1332 0.400000 +549 1333 0.400000 +549 1340 0.400000 +549 1382 0.400000 +549 1466 0.400000 +549 1479 0.400000 +549 1515 0.400000 +549 1716 0.400000 +549 1717 0.400000 +549 1764 0.400000 +549 1822 0.400000 +549 1937 0.400000 +549 1940 0.400000 +549 1992 0.400000 +549 2056 0.400000 +549 2116 0.400000 +549 2174 0.400000 +549 2285 0.400000 +549 2298 0.400000 +549 2347 0.400000 +549 2400 0.400000 +549 2431 0.400000 +549 2441 0.400000 +549 2493 0.400000 +549 2508 0.400000 +549 2513 0.400000 +549 2522 0.400000 +549 2558 0.400000 +549 2584 0.400000 +549 2885 0.400000 +549 2988 0.400000 +549 3028 0.400000 +549 3118 0.400000 +549 3157 0.400000 +549 3179 0.400000 +550 21 0.400000 +550 116 0.400000 +550 243 0.400000 +550 280 0.400000 +550 341 0.400000 +550 410 0.400000 +550 489 0.400000 +550 509 0.400000 +550 552 0.400000 +550 628 0.400000 +550 649 0.400000 +550 696 0.400000 +550 775 0.400000 +550 799 0.400000 +550 811 0.400000 +550 819 0.400000 +550 859 0.400000 +550 875 0.400000 +550 900 0.400000 +550 904 0.400000 +550 933 0.400000 +550 943 0.400000 +550 963 0.400000 +550 1069 0.400000 +550 1105 0.400000 +550 1122 0.400000 +550 1149 0.400000 +550 1287 0.400000 +550 1297 0.400000 +550 1363 0.400000 +550 1469 0.400000 +550 1482 0.400000 +550 1539 0.400000 +550 1547 0.400000 +550 1587 0.400000 +550 1591 0.400000 +550 1635 0.400000 +550 1757 0.400000 +550 1832 0.400000 +550 1835 0.400000 +550 1906 0.400000 +550 1969 0.400000 +550 2029 0.400000 +550 2080 0.400000 +550 2159 0.400000 +550 2208 0.400000 +550 2238 0.400000 +550 2295 0.400000 +550 2305 0.400000 +550 2347 0.400000 +550 2382 0.400000 +550 2523 0.400000 +550 2625 0.400000 +550 2663 0.400000 +550 2790 0.400000 +550 2799 0.400000 +550 2809 0.400000 +550 2852 0.400000 +550 2856 0.400000 +550 2874 0.400000 +550 2921 0.400000 +550 2938 0.400000 +550 2991 0.400000 +550 3091 0.400000 +550 3102 0.400000 +550 3146 0.400000 +551 41 0.400000 +551 92 0.400000 +551 118 0.400000 +551 231 0.400000 +551 277 0.400000 +551 331 0.400000 +551 368 0.400000 +551 433 0.400000 +551 460 0.400000 +551 478 0.400000 +551 656 0.400000 +551 809 0.400000 +551 886 0.400000 +551 1027 0.400000 +551 1197 0.400000 +551 1201 0.400000 +551 1365 0.400000 +551 1391 0.400000 +551 1403 0.400000 +551 1404 0.400000 +551 1465 0.400000 +551 1611 0.400000 +551 1636 0.400000 +551 1684 0.400000 +551 1733 0.400000 +551 1737 0.400000 +551 1838 0.400000 +551 1898 0.400000 +551 1919 0.400000 +551 1956 0.400000 +551 2026 0.400000 +551 2032 0.400000 +551 2078 0.400000 +551 2131 0.400000 +551 2157 0.400000 +551 2286 0.400000 +551 2350 0.400000 +551 2369 0.400000 +551 2424 0.400000 +551 2446 0.400000 +551 2468 0.400000 +551 2471 0.400000 +551 2518 0.400000 +551 2523 0.400000 +551 2525 0.400000 +551 2552 0.400000 +551 2726 0.400000 +551 2859 0.400000 +551 2907 0.400000 +551 2995 0.400000 +551 3108 0.400000 +551 3111 0.400000 +551 3115 0.400000 +551 3180 0.400000 +551 3184 0.400000 +551 3191 0.400000 +551 3193 0.400000 +552 6 0.400000 +552 28 0.400000 +552 51 0.400000 +552 143 0.400000 +552 199 0.400000 +552 209 0.400000 +552 232 0.400000 +552 364 0.400000 +552 460 0.400000 +552 570 0.400000 +552 644 0.400000 +552 674 0.400000 +552 892 0.400000 +552 908 0.400000 +552 934 0.400000 +552 1027 0.400000 +552 1074 0.400000 +552 1120 0.400000 +552 1146 0.400000 +552 1151 0.400000 +552 1358 0.400000 +552 1364 0.400000 +552 1372 0.400000 +552 1417 0.400000 +552 1524 0.400000 +552 1563 0.400000 +552 1601 0.400000 +552 1864 0.400000 +552 1908 0.400000 +552 1982 0.400000 +552 2027 0.400000 +552 2031 0.400000 +552 2109 0.400000 +552 2111 0.400000 +552 2113 0.400000 +552 2116 0.400000 +552 2180 0.400000 +552 2295 0.400000 +552 2319 0.400000 +552 2398 0.400000 +552 2415 0.400000 +552 2439 0.400000 +552 2440 0.400000 +552 2584 0.400000 +552 2616 0.400000 +552 2896 0.400000 +552 2986 0.400000 +552 3022 0.400000 +552 3025 0.400000 +552 3058 0.400000 +552 3078 0.400000 +552 3121 0.400000 +553 46 0.400000 +553 90 0.400000 +553 118 0.400000 +553 252 0.400000 +553 257 0.400000 +553 634 0.400000 +553 713 0.400000 +553 716 0.400000 +553 771 0.400000 +553 801 0.400000 +553 857 0.400000 +553 898 0.400000 +553 931 0.400000 +553 1048 0.400000 +553 1103 0.400000 +553 1153 0.400000 +553 1198 0.400000 +553 1219 0.400000 +553 1230 0.400000 +553 1312 0.400000 +553 1413 0.400000 +553 1459 0.400000 +553 1560 0.400000 +553 1576 0.400000 +553 1579 0.400000 +553 1705 0.400000 +553 1708 0.400000 +553 1817 0.400000 +553 1898 0.400000 +553 2028 0.400000 +553 2070 0.400000 +553 2141 0.400000 +553 2154 0.400000 +553 2200 0.400000 +553 2219 0.400000 +553 2230 0.400000 +553 2251 0.400000 +553 2317 0.400000 +553 2350 0.400000 +553 2362 0.400000 +553 2501 0.400000 +553 2544 0.400000 +553 2627 0.400000 +553 2711 0.400000 +553 2786 0.400000 +553 2799 0.400000 +553 2866 0.400000 +553 3124 0.400000 +553 3167 0.400000 +554 144 0.400000 +554 173 0.400000 +554 176 0.400000 +554 183 0.400000 +554 196 0.400000 +554 346 0.400000 +554 369 0.400000 +554 404 0.400000 +554 448 0.400000 +554 474 0.400000 +554 507 0.400000 +554 569 0.400000 +554 590 0.400000 +554 619 0.400000 +554 793 0.400000 +554 885 0.400000 +554 909 0.400000 +554 1038 0.400000 +554 1078 0.400000 +554 1117 0.400000 +554 1122 0.400000 +554 1126 0.400000 +554 1445 0.400000 +554 1489 0.400000 +554 1507 0.400000 +554 1652 0.400000 +554 1667 0.400000 +554 1737 0.400000 +554 1800 0.400000 +554 1818 0.400000 +554 1884 0.400000 +554 1890 0.400000 +554 1898 0.400000 +554 1967 0.400000 +554 1977 0.400000 +554 1978 0.400000 +554 1999 0.400000 +554 2121 0.400000 +554 2142 0.400000 +554 2199 0.400000 +554 2265 0.400000 +554 2365 0.400000 +554 2453 0.400000 +554 2458 0.400000 +554 2461 0.400000 +554 2527 0.400000 +554 2570 0.400000 +554 2576 0.400000 +554 2586 0.400000 +554 2648 0.400000 +554 2806 0.400000 +554 2862 0.400000 +554 2894 0.400000 +554 2911 0.400000 +554 2931 0.400000 +554 3028 0.400000 +554 3088 0.400000 +554 3110 0.400000 +554 3139 0.400000 +554 3145 0.400000 +554 3158 0.400000 +555 24 0.400000 +555 61 0.400000 +555 113 0.400000 +555 133 0.400000 +555 209 0.400000 +555 212 0.400000 +555 281 0.400000 +555 284 0.400000 +555 339 0.400000 +555 414 0.400000 +555 470 0.400000 +555 625 0.400000 +555 682 0.400000 +555 732 0.400000 +555 769 0.400000 +555 796 0.400000 +555 797 0.400000 +555 854 0.400000 +555 856 0.400000 +555 876 0.400000 +555 997 0.400000 +555 1105 0.400000 +555 1138 0.400000 +555 1139 0.400000 +555 1158 0.400000 +555 1177 0.400000 +555 1237 0.400000 +555 1254 0.400000 +555 1273 0.400000 +555 1329 0.400000 +555 1347 0.400000 +555 1417 0.400000 +555 1449 0.400000 +555 1482 0.400000 +555 1522 0.400000 +555 1572 0.400000 +555 1612 0.400000 +555 1617 0.400000 +555 1711 0.400000 +555 1728 0.400000 +555 1794 0.400000 +555 1890 0.400000 +555 1954 0.400000 +555 1986 0.400000 +555 2010 0.400000 +555 2101 0.400000 +555 2103 0.400000 +555 2156 0.400000 +555 2188 0.400000 +555 2254 0.400000 +555 2377 0.400000 +555 2421 0.400000 +555 2473 0.400000 +555 2505 0.400000 +555 2556 0.400000 +555 2609 0.400000 +555 2704 0.400000 +555 2754 0.400000 +555 2866 0.400000 +555 3120 0.400000 +555 3183 0.400000 +556 86 0.400000 +556 113 0.400000 +556 140 0.400000 +556 151 0.400000 +556 175 0.400000 +556 364 0.400000 +556 411 0.400000 +556 445 0.400000 +556 525 0.400000 +556 592 0.400000 +556 664 0.400000 +556 679 0.400000 +556 693 0.400000 +556 932 0.400000 +556 939 0.400000 +556 955 0.400000 +556 971 0.400000 +556 1112 0.400000 +556 1124 0.400000 +556 1172 0.400000 +556 1185 0.400000 +556 1226 0.400000 +556 1358 0.400000 +556 1415 0.400000 +556 1436 0.400000 +556 1477 0.400000 +556 1526 0.400000 +556 1565 0.400000 +556 1695 0.400000 +556 1761 0.400000 +556 1808 0.400000 +556 1810 0.400000 +556 1896 0.400000 +556 2037 0.400000 +556 2039 0.400000 +556 2161 0.400000 +556 2213 0.400000 +556 2246 0.400000 +556 2248 0.400000 +556 2268 0.400000 +556 2273 0.400000 +556 2297 0.400000 +556 2348 0.400000 +556 2424 0.400000 +556 2453 0.400000 +556 2635 0.400000 +556 2748 0.400000 +556 2762 0.400000 +556 2790 0.400000 +556 2799 0.400000 +556 2819 0.400000 +556 2914 0.400000 +556 2983 0.400000 +556 3072 0.400000 +556 3180 0.400000 +556 3199 0.400000 +557 7 0.400000 +557 107 0.400000 +557 123 0.400000 +557 129 0.400000 +557 162 0.400000 +557 197 0.400000 +557 220 0.400000 +557 226 0.400000 +557 276 0.400000 +557 327 0.400000 +557 348 0.400000 +557 419 0.400000 +557 450 0.400000 +557 475 0.400000 +557 685 0.400000 +557 796 0.400000 +557 800 0.400000 +557 850 0.400000 +557 885 0.400000 +557 931 0.400000 +557 935 0.400000 +557 988 0.400000 +557 1058 0.400000 +557 1175 0.400000 +557 1259 0.400000 +557 1350 0.400000 +557 1369 0.400000 +557 1397 0.400000 +557 1428 0.400000 +557 1430 0.400000 +557 1495 0.400000 +557 1586 0.400000 +557 1600 0.400000 +557 1618 0.400000 +557 1647 0.400000 +557 1661 0.400000 +557 1708 0.400000 +557 1718 0.400000 +557 1780 0.400000 +557 1918 0.400000 +557 1941 0.400000 +557 1959 0.400000 +557 2046 0.400000 +557 2049 0.400000 +557 2069 0.400000 +557 2113 0.400000 +557 2134 0.400000 +557 2160 0.400000 +557 2283 0.400000 +557 2297 0.400000 +557 2358 0.400000 +557 2382 0.400000 +557 2447 0.400000 +557 2461 0.400000 +557 2508 0.400000 +557 2561 0.400000 +557 2562 0.400000 +557 2612 0.400000 +557 2627 0.400000 +557 2632 0.400000 +557 2731 0.400000 +557 2746 0.400000 +557 2753 0.400000 +557 2760 0.400000 +557 2884 0.400000 +557 2926 0.400000 +557 2941 0.400000 +557 2953 0.400000 +557 2997 0.400000 +557 3028 0.400000 +557 3067 0.400000 +557 3094 0.400000 +557 3157 0.400000 +558 17 0.400000 +558 20 0.400000 +558 87 0.400000 +558 124 0.400000 +558 127 0.400000 +558 139 0.400000 +558 212 0.400000 +558 294 0.400000 +558 332 0.400000 +558 406 0.400000 +558 424 0.400000 +558 437 0.400000 +558 477 0.400000 +558 484 0.400000 +558 487 0.400000 +558 545 0.400000 +558 757 0.400000 +558 785 0.400000 +558 846 0.400000 +558 868 0.400000 +558 910 0.400000 +558 944 0.400000 +558 996 0.400000 +558 1178 0.400000 +558 1236 0.400000 +558 1252 0.400000 +558 1279 0.400000 +558 1334 0.400000 +558 1344 0.400000 +558 1372 0.400000 +558 1426 0.400000 +558 1440 0.400000 +558 1518 0.400000 +558 1550 0.400000 +558 1571 0.400000 +558 1576 0.400000 +558 1709 0.400000 +558 1717 0.400000 +558 1825 0.400000 +558 1847 0.400000 +558 1870 0.400000 +558 1933 0.400000 +558 2006 0.400000 +558 2016 0.400000 +558 2034 0.400000 +558 2036 0.400000 +558 2060 0.400000 +558 2128 0.400000 +558 2213 0.400000 +558 2225 0.400000 +558 2271 0.400000 +558 2350 0.400000 +558 2504 0.400000 +558 2513 0.400000 +558 2558 0.400000 +558 2613 0.400000 +558 2620 0.400000 +558 2679 0.400000 +558 2691 0.400000 +558 2758 0.400000 +558 2859 0.400000 +558 2904 0.400000 +558 3000 0.400000 +558 3050 0.400000 +558 3096 0.400000 +558 3111 0.400000 +558 3115 0.400000 +558 3120 0.400000 +558 3180 0.400000 +558 3194 0.400000 +559 32 0.400000 +559 146 0.400000 +559 216 0.400000 +559 321 0.400000 +559 394 0.400000 +559 428 0.400000 +559 441 0.400000 +559 513 0.400000 +559 528 0.400000 +559 543 0.400000 +559 611 0.400000 +559 647 0.400000 +559 690 0.400000 +559 784 0.400000 +559 859 0.400000 +559 953 0.400000 +559 1053 0.400000 +559 1055 0.400000 +559 1124 0.400000 +559 1134 0.400000 +559 1169 0.400000 +559 1268 0.400000 +559 1395 0.400000 +559 1481 0.400000 +559 1520 0.400000 +559 1629 0.400000 +559 1690 0.400000 +559 1695 0.400000 +559 1716 0.400000 +559 1777 0.400000 +559 1800 0.400000 +559 1835 0.400000 +559 1837 0.400000 +559 1840 0.400000 +559 1954 0.400000 +559 2013 0.400000 +559 2063 0.400000 +559 2100 0.400000 +559 2129 0.400000 +559 2166 0.400000 +559 2248 0.400000 +559 2271 0.400000 +559 2317 0.400000 +559 2366 0.400000 +559 2370 0.400000 +559 2371 0.400000 +559 2400 0.400000 +559 2472 0.400000 +559 2489 0.400000 +559 2490 0.400000 +559 2497 0.400000 +559 2530 0.400000 +559 2569 0.400000 +559 2593 0.400000 +559 2716 0.400000 +559 2871 0.400000 +559 2914 0.400000 +559 2921 0.400000 +559 2932 0.400000 +559 2951 0.400000 +559 2979 0.400000 +559 3062 0.400000 +560 16 0.400000 +560 57 0.400000 +560 58 0.400000 +560 68 0.400000 +560 196 0.400000 +560 199 0.400000 +560 253 0.400000 +560 288 0.400000 +560 456 0.400000 +560 500 0.400000 +560 531 0.400000 +560 537 0.400000 +560 557 0.400000 +560 559 0.400000 +560 566 0.400000 +560 631 0.400000 +560 660 0.400000 +560 671 0.400000 +560 705 0.400000 +560 744 0.400000 +560 801 0.400000 +560 807 0.400000 +560 819 0.400000 +560 824 0.400000 +560 972 0.400000 +560 1030 0.400000 +560 1036 0.400000 +560 1091 0.400000 +560 1184 0.400000 +560 1201 0.400000 +560 1214 0.400000 +560 1359 0.400000 +560 1410 0.400000 +560 1501 0.400000 +560 1523 0.400000 +560 1549 0.400000 +560 1553 0.400000 +560 1624 0.400000 +560 1655 0.400000 +560 1682 0.400000 +560 1696 0.400000 +560 1741 0.400000 +560 1746 0.400000 +560 1747 0.400000 +560 1749 0.400000 +560 1800 0.400000 +560 1852 0.400000 +560 1924 0.400000 +560 1934 0.400000 +560 1980 0.400000 +560 1998 0.400000 +560 2097 0.400000 +560 2203 0.400000 +560 2237 0.400000 +560 2252 0.400000 +560 2339 0.400000 +560 2368 0.400000 +560 2388 0.400000 +560 2390 0.400000 +560 2535 0.400000 +560 2554 0.400000 +560 2577 0.400000 +560 2603 0.400000 +560 2628 0.400000 +560 2648 0.400000 +560 2651 0.400000 +560 2679 0.400000 +560 2738 0.400000 +560 2775 0.400000 +560 2800 0.400000 +560 2850 0.400000 +560 2882 0.400000 +560 2915 0.400000 +560 3011 0.400000 +560 3051 0.400000 +561 60 0.400000 +561 184 0.400000 +561 222 0.400000 +561 380 0.400000 +561 430 0.400000 +561 436 0.400000 +561 454 0.400000 +561 503 0.400000 +561 538 0.400000 +561 564 0.400000 +561 630 0.400000 +561 636 0.400000 +561 685 0.400000 +561 785 0.400000 +561 972 0.400000 +561 1054 0.400000 +561 1093 0.400000 +561 1096 0.400000 +561 1105 0.400000 +561 1148 0.400000 +561 1232 0.400000 +561 1272 0.400000 +561 1288 0.400000 +561 1325 0.400000 +561 1365 0.400000 +561 1387 0.400000 +561 1445 0.400000 +561 1450 0.400000 +561 1456 0.400000 +561 1471 0.400000 +561 1491 0.400000 +561 1654 0.400000 +561 1737 0.400000 +561 1766 0.400000 +561 1771 0.400000 +561 1849 0.400000 +561 1930 0.400000 +561 1978 0.400000 +561 2011 0.400000 +561 2031 0.400000 +561 2098 0.400000 +561 2140 0.400000 +561 2143 0.400000 +561 2144 0.400000 +561 2181 0.400000 +561 2189 0.400000 +561 2191 0.400000 +561 2207 0.400000 +561 2210 0.400000 +561 2211 0.400000 +561 2217 0.400000 +561 2378 0.400000 +561 2461 0.400000 +561 2463 0.400000 +561 2532 0.400000 +561 2780 0.400000 +561 2841 0.400000 +561 2884 0.400000 +561 3009 0.400000 +561 3156 0.400000 +562 118 0.400000 +562 124 0.400000 +562 135 0.400000 +562 183 0.400000 +562 199 0.400000 +562 213 0.400000 +562 252 0.400000 +562 253 0.400000 +562 265 0.400000 +562 396 0.400000 +562 427 0.400000 +562 435 0.400000 +562 455 0.400000 +562 541 0.400000 +562 601 0.400000 +562 614 0.400000 +562 633 0.400000 +562 656 0.400000 +562 694 0.400000 +562 720 0.400000 +562 808 0.400000 +562 842 0.400000 +562 872 0.400000 +562 875 0.400000 +562 904 0.400000 +562 940 0.400000 +562 946 0.400000 +562 999 0.400000 +562 1005 0.400000 +562 1022 0.400000 +562 1047 0.400000 +562 1085 0.400000 +562 1161 0.400000 +562 1168 0.400000 +562 1183 0.400000 +562 1269 0.400000 +562 1308 0.400000 +562 1590 0.400000 +562 1597 0.400000 +562 1598 0.400000 +562 1615 0.400000 +562 1666 0.400000 +562 1709 0.400000 +562 1737 0.400000 +562 1786 0.400000 +562 2065 0.400000 +562 2128 0.400000 +562 2218 0.400000 +562 2232 0.400000 +562 2253 0.400000 +562 2376 0.400000 +562 2391 0.400000 +562 2443 0.400000 +562 2456 0.400000 +562 2496 0.400000 +562 2498 0.400000 +562 2603 0.400000 +562 2739 0.400000 +562 2768 0.400000 +562 2843 0.400000 +562 2905 0.400000 +562 3014 0.400000 +562 3023 0.400000 +562 3150 0.400000 +562 3179 0.400000 +562 3199 0.400000 +563 10 0.400000 +563 16 0.400000 +563 21 0.400000 +563 40 0.400000 +563 43 0.400000 +563 66 0.400000 +563 69 0.400000 +563 106 0.400000 +563 161 0.400000 +563 206 0.400000 +563 265 0.400000 +563 339 0.400000 +563 366 0.400000 +563 383 0.400000 +563 452 0.400000 +563 498 0.400000 +563 535 0.400000 +563 547 0.400000 +563 575 0.400000 +563 585 0.400000 +563 624 0.400000 +563 648 0.400000 +563 760 0.400000 +563 797 0.400000 +563 1083 0.400000 +563 1131 0.400000 +563 1320 0.400000 +563 1368 0.400000 +563 1393 0.400000 +563 1404 0.400000 +563 1475 0.400000 +563 1598 0.400000 +563 1626 0.400000 +563 1634 0.400000 +563 1730 0.400000 +563 1761 0.400000 +563 1762 0.400000 +563 1780 0.400000 +563 1788 0.400000 +563 1819 0.400000 +563 1823 0.400000 +563 1903 0.400000 +563 1906 0.400000 +563 1985 0.400000 +563 1988 0.400000 +563 2084 0.400000 +563 2094 0.400000 +563 2116 0.400000 +563 2135 0.400000 +563 2152 0.400000 +563 2171 0.400000 +563 2201 0.400000 +563 2242 0.400000 +563 2298 0.400000 +563 2324 0.400000 +563 2352 0.400000 +563 2479 0.400000 +563 2555 0.400000 +563 2786 0.400000 +563 2824 0.400000 +563 2836 0.400000 +563 2871 0.400000 +563 2874 0.400000 +563 2909 0.400000 +563 3053 0.400000 +563 3087 0.400000 +563 3130 0.400000 +563 3200 0.400000 +564 143 0.400000 +564 205 0.400000 +564 222 0.400000 +564 283 0.400000 +564 317 0.400000 +564 334 0.400000 +564 422 0.400000 +564 582 0.400000 +564 626 0.400000 +564 684 0.400000 +564 821 0.400000 +564 875 0.400000 +564 916 0.400000 +564 1036 0.400000 +564 1065 0.400000 +564 1111 0.400000 +564 1112 0.400000 +564 1119 0.400000 +564 1187 0.400000 +564 1225 0.400000 +564 1238 0.400000 +564 1259 0.400000 +564 1340 0.400000 +564 1346 0.400000 +564 1483 0.400000 +564 1493 0.400000 +564 1542 0.400000 +564 1630 0.400000 +564 1694 0.400000 +564 1872 0.400000 +564 1880 0.400000 +564 2004 0.400000 +564 2073 0.400000 +564 2088 0.400000 +564 2129 0.400000 +564 2181 0.400000 +564 2204 0.400000 +564 2206 0.400000 +564 2281 0.400000 +564 2295 0.400000 +564 2299 0.400000 +564 2314 0.400000 +564 2350 0.400000 +564 2371 0.400000 +564 2393 0.400000 +564 2488 0.400000 +564 2611 0.400000 +564 2651 0.400000 +564 2676 0.400000 +564 2732 0.400000 +564 2743 0.400000 +564 2768 0.400000 +564 2894 0.400000 +564 2920 0.400000 +564 3021 0.400000 +564 3060 0.400000 +564 3096 0.400000 +564 3123 0.400000 +564 3139 0.400000 +564 3148 0.400000 +564 3153 0.400000 +565 40 0.400000 +565 78 0.400000 +565 112 0.400000 +565 171 0.400000 +565 193 0.400000 +565 196 0.400000 +565 215 0.400000 +565 262 0.400000 +565 335 0.400000 +565 354 0.400000 +565 388 0.400000 +565 563 0.400000 +565 639 0.400000 +565 652 0.400000 +565 719 0.400000 +565 839 0.400000 +565 869 0.400000 +565 1078 0.400000 +565 1263 0.400000 +565 1324 0.400000 +565 1357 0.400000 +565 1366 0.400000 +565 1516 0.400000 +565 1556 0.400000 +565 1586 0.400000 +565 1608 0.400000 +565 1705 0.400000 +565 1731 0.400000 +565 1953 0.400000 +565 1989 0.400000 +565 2099 0.400000 +565 2189 0.400000 +565 2235 0.400000 +565 2254 0.400000 +565 2291 0.400000 +565 2410 0.400000 +565 2494 0.400000 +565 2497 0.400000 +565 2621 0.400000 +565 2635 0.400000 +565 2692 0.400000 +565 2702 0.400000 +565 2715 0.400000 +565 2730 0.400000 +565 2771 0.400000 +565 2784 0.400000 +565 2862 0.400000 +565 2879 0.400000 +565 2908 0.400000 +565 2960 0.400000 +565 3018 0.400000 +565 3050 0.400000 +565 3072 0.400000 +565 3087 0.400000 +565 3190 0.400000 +566 36 0.400000 +566 51 0.400000 +566 66 0.400000 +566 117 0.400000 +566 134 0.400000 +566 170 0.400000 +566 268 0.400000 +566 277 0.400000 +566 288 0.400000 +566 326 0.400000 +566 364 0.400000 +566 424 0.400000 +566 435 0.400000 +566 448 0.400000 +566 514 0.400000 +566 567 0.400000 +566 617 0.400000 +566 669 0.400000 +566 673 0.400000 +566 703 0.400000 +566 725 0.400000 +566 778 0.400000 +566 789 0.400000 +566 841 0.400000 +566 895 0.400000 +566 900 0.400000 +566 926 0.400000 +566 1069 0.400000 +566 1092 0.400000 +566 1148 0.400000 +566 1206 0.400000 +566 1232 0.400000 +566 1247 0.400000 +566 1249 0.400000 +566 1279 0.400000 +566 1302 0.400000 +566 1327 0.400000 +566 1362 0.400000 +566 1492 0.400000 +566 1531 0.400000 +566 1743 0.400000 +566 1832 0.400000 +566 1853 0.400000 +566 1854 0.400000 +566 1855 0.400000 +566 1926 0.400000 +566 1942 0.400000 +566 1973 0.400000 +566 2034 0.400000 +566 2061 0.400000 +566 2091 0.400000 +566 2107 0.400000 +566 2172 0.400000 +566 2189 0.400000 +566 2227 0.400000 +566 2438 0.400000 +566 2471 0.400000 +566 2516 0.400000 +566 2529 0.400000 +566 2581 0.400000 +566 2604 0.400000 +566 2674 0.400000 +566 2747 0.400000 +566 2752 0.400000 +566 2763 0.400000 +566 2852 0.400000 +566 2920 0.400000 +566 3112 0.400000 +566 3150 0.400000 +566 3177 0.400000 +567 30 0.400000 +567 176 0.400000 +567 178 0.400000 +567 188 0.400000 +567 215 0.400000 +567 223 0.400000 +567 231 0.400000 +567 233 0.400000 +567 238 0.400000 +567 282 0.400000 +567 331 0.400000 +567 393 0.400000 +567 416 0.400000 +567 435 0.400000 +567 631 0.400000 +567 636 0.400000 +567 749 0.400000 +567 779 0.400000 +567 860 0.400000 +567 872 0.400000 +567 907 0.400000 +567 978 0.400000 +567 1036 0.400000 +567 1049 0.400000 +567 1084 0.400000 +567 1097 0.400000 +567 1181 0.400000 +567 1273 0.400000 +567 1290 0.400000 +567 1292 0.400000 +567 1313 0.400000 +567 1340 0.400000 +567 1438 0.400000 +567 1456 0.400000 +567 1466 0.400000 +567 1591 0.400000 +567 1634 0.400000 +567 1727 0.400000 +567 1762 0.400000 +567 1775 0.400000 +567 1807 0.400000 +567 1825 0.400000 +567 1906 0.400000 +567 1927 0.400000 +567 1985 0.400000 +567 1995 0.400000 +567 2021 0.400000 +567 2074 0.400000 +567 2156 0.400000 +567 2195 0.400000 +567 2198 0.400000 +567 2205 0.400000 +567 2255 0.400000 +567 2295 0.400000 +567 2370 0.400000 +567 2407 0.400000 +567 2412 0.400000 +567 2479 0.400000 +567 2495 0.400000 +567 2499 0.400000 +567 2508 0.400000 +567 2510 0.400000 +567 2538 0.400000 +567 2559 0.400000 +567 2571 0.400000 +567 2586 0.400000 +567 2637 0.400000 +567 2686 0.400000 +567 2693 0.400000 +567 2702 0.400000 +567 2942 0.400000 +567 2952 0.400000 +567 2981 0.400000 +567 3009 0.400000 +567 3036 0.400000 +567 3042 0.400000 +567 3076 0.400000 +567 3129 0.400000 +567 3178 0.400000 +568 9 0.400000 +568 181 0.400000 +568 341 0.400000 +568 411 0.400000 +568 443 0.400000 +568 536 0.400000 +568 565 0.400000 +568 571 0.400000 +568 610 0.400000 +568 617 0.400000 +568 681 0.400000 +568 747 0.400000 +568 860 0.400000 +568 868 0.400000 +568 899 0.400000 +568 995 0.400000 +568 996 0.400000 +568 1002 0.400000 +568 1065 0.400000 +568 1132 0.400000 +568 1291 0.400000 +568 1328 0.400000 +568 1337 0.400000 +568 1434 0.400000 +568 1563 0.400000 +568 1622 0.400000 +568 1671 0.400000 +568 1818 0.400000 +568 1836 0.400000 +568 1841 0.400000 +568 1871 0.400000 +568 1892 0.400000 +568 1991 0.400000 +568 1994 0.400000 +568 2117 0.400000 +568 2160 0.400000 +568 2362 0.400000 +568 2372 0.400000 +568 2390 0.400000 +568 2451 0.400000 +568 2486 0.400000 +568 2552 0.400000 +568 2599 0.400000 +568 2615 0.400000 +568 2625 0.400000 +568 2654 0.400000 +568 2661 0.400000 +568 2663 0.400000 +568 2725 0.400000 +568 2743 0.400000 +568 2808 0.400000 +568 2881 0.400000 +568 2907 0.400000 +568 3030 0.400000 +568 3062 0.400000 +568 3092 0.400000 +568 3103 0.400000 +568 3104 0.400000 +568 3114 0.400000 +569 6 0.400000 +569 33 0.400000 +569 139 0.400000 +569 250 0.400000 +569 291 0.400000 +569 318 0.400000 +569 328 0.400000 +569 380 0.400000 +569 405 0.400000 +569 528 0.400000 +569 532 0.400000 +569 585 0.400000 +569 674 0.400000 +569 699 0.400000 +569 774 0.400000 +569 776 0.400000 +569 828 0.400000 +569 863 0.400000 +569 897 0.400000 +569 904 0.400000 +569 981 0.400000 +569 1024 0.400000 +569 1062 0.400000 +569 1121 0.400000 +569 1161 0.400000 +569 1378 0.400000 +569 1437 0.400000 +569 1510 0.400000 +569 1512 0.400000 +569 1589 0.400000 +569 1635 0.400000 +569 1643 0.400000 +569 1655 0.400000 +569 1665 0.400000 +569 1684 0.400000 +569 1686 0.400000 +569 1855 0.400000 +569 1893 0.400000 +569 1899 0.400000 +569 1910 0.400000 +569 1983 0.400000 +569 2017 0.400000 +569 2026 0.400000 +569 2133 0.400000 +569 2189 0.400000 +569 2198 0.400000 +569 2275 0.400000 +569 2280 0.400000 +569 2309 0.400000 +569 2376 0.400000 +569 2455 0.400000 +569 2546 0.400000 +569 2765 0.400000 +569 2915 0.400000 +569 2941 0.400000 +569 3005 0.400000 +569 3039 0.400000 +569 3102 0.400000 +569 3116 0.400000 +570 80 0.400000 +570 102 0.400000 +570 156 0.400000 +570 165 0.400000 +570 303 0.400000 +570 378 0.400000 +570 379 0.400000 +570 420 0.400000 +570 438 0.400000 +570 501 0.400000 +570 515 0.400000 +570 546 0.400000 +570 560 0.400000 +570 572 0.400000 +570 592 0.400000 +570 600 0.400000 +570 656 0.400000 +570 744 0.400000 +570 786 0.400000 +570 910 0.400000 +570 1005 0.400000 +570 1035 0.400000 +570 1073 0.400000 +570 1143 0.400000 +570 1272 0.400000 +570 1294 0.400000 +570 1360 0.400000 +570 1441 0.400000 +570 1516 0.400000 +570 1595 0.400000 +570 1615 0.400000 +570 1619 0.400000 +570 1652 0.400000 +570 1667 0.400000 +570 1733 0.400000 +570 1850 0.400000 +570 1885 0.400000 +570 1904 0.400000 +570 1960 0.400000 +570 2186 0.400000 +570 2196 0.400000 +570 2202 0.400000 +570 2204 0.400000 +570 2245 0.400000 +570 2338 0.400000 +570 2339 0.400000 +570 2385 0.400000 +570 2388 0.400000 +570 2451 0.400000 +570 2505 0.400000 +570 2562 0.400000 +570 2656 0.400000 +570 2756 0.400000 +570 2810 0.400000 +570 2842 0.400000 +570 2849 0.400000 +570 2872 0.400000 +570 3020 0.400000 +570 3156 0.400000 +570 3177 0.400000 +571 4 0.400000 +571 220 0.400000 +571 235 0.400000 +571 325 0.400000 +571 371 0.400000 +571 378 0.400000 +571 431 0.400000 +571 504 0.400000 +571 516 0.400000 +571 563 0.400000 +571 611 0.400000 +571 632 0.400000 +571 751 0.400000 +571 881 0.400000 +571 993 0.400000 +571 999 0.400000 +571 1026 0.400000 +571 1037 0.400000 +571 1092 0.400000 +571 1131 0.400000 +571 1224 0.400000 +571 1290 0.400000 +571 1354 0.400000 +571 1420 0.400000 +571 1431 0.400000 +571 1449 0.400000 +571 1467 0.400000 +571 1585 0.400000 +571 1663 0.400000 +571 1674 0.400000 +571 1714 0.400000 +571 1801 0.400000 +571 1827 0.400000 +571 1940 0.400000 +571 1987 0.400000 +571 2185 0.400000 +571 2197 0.400000 +571 2315 0.400000 +571 2397 0.400000 +571 2408 0.400000 +571 2421 0.400000 +571 2453 0.400000 +571 2463 0.400000 +571 2476 0.400000 +571 2494 0.400000 +571 2501 0.400000 +571 2505 0.400000 +571 2508 0.400000 +571 2566 0.400000 +571 2677 0.400000 +571 2682 0.400000 +571 2789 0.400000 +571 2954 0.400000 +571 2977 0.400000 +571 3083 0.400000 +571 3154 0.400000 +572 50 0.400000 +572 102 0.400000 +572 320 0.400000 +572 327 0.400000 +572 456 0.400000 +572 483 0.400000 +572 532 0.400000 +572 535 0.400000 +572 590 0.400000 +572 598 0.400000 +572 606 0.400000 +572 712 0.400000 +572 841 0.400000 +572 951 0.400000 +572 979 0.400000 +572 1011 0.400000 +572 1072 0.400000 +572 1158 0.400000 +572 1188 0.400000 +572 1245 0.400000 +572 1253 0.400000 +572 1321 0.400000 +572 1409 0.400000 +572 1454 0.400000 +572 1469 0.400000 +572 1599 0.400000 +572 1640 0.400000 +572 1694 0.400000 +572 1700 0.400000 +572 1815 0.400000 +572 1823 0.400000 +572 1848 0.400000 +572 1852 0.400000 +572 1928 0.400000 +572 1938 0.400000 +572 1956 0.400000 +572 1982 0.400000 +572 2018 0.400000 +572 2119 0.400000 +572 2154 0.400000 +572 2163 0.400000 +572 2197 0.400000 +572 2260 0.400000 +572 2376 0.400000 +572 2387 0.400000 +572 2420 0.400000 +572 2546 0.400000 +572 2576 0.400000 +572 2825 0.400000 +572 2843 0.400000 +572 2850 0.400000 +572 2935 0.400000 +572 2976 0.400000 +572 2990 0.400000 +572 3043 0.400000 +572 3177 0.400000 +573 134 0.400000 +573 282 0.400000 +573 320 0.400000 +573 373 0.400000 +573 382 0.400000 +573 421 0.400000 +573 438 0.400000 +573 444 0.400000 +573 466 0.400000 +573 554 0.400000 +573 577 0.400000 +573 724 0.400000 +573 774 0.400000 +573 806 0.400000 +573 962 0.400000 +573 984 0.400000 +573 1009 0.400000 +573 1018 0.400000 +573 1066 0.400000 +573 1085 0.400000 +573 1105 0.400000 +573 1112 0.400000 +573 1201 0.400000 +573 1213 0.400000 +573 1491 0.400000 +573 1516 0.400000 +573 1534 0.400000 +573 1556 0.400000 +573 1621 0.400000 +573 1675 0.400000 +573 1702 0.400000 +573 1732 0.400000 +573 1740 0.400000 +573 1781 0.400000 +573 1805 0.400000 +573 1842 0.400000 +573 1881 0.400000 +573 1954 0.400000 +573 1986 0.400000 +573 2063 0.400000 +573 2089 0.400000 +573 2108 0.400000 +573 2188 0.400000 +573 2235 0.400000 +573 2300 0.400000 +573 2307 0.400000 +573 2311 0.400000 +573 2318 0.400000 +573 2338 0.400000 +573 2417 0.400000 +573 2501 0.400000 +573 2517 0.400000 +573 2527 0.400000 +573 2556 0.400000 +573 2576 0.400000 +573 2586 0.400000 +573 2630 0.400000 +573 2658 0.400000 +573 2683 0.400000 +573 2810 0.400000 +573 2823 0.400000 +573 2829 0.400000 +573 2837 0.400000 +573 2856 0.400000 +573 2961 0.400000 +573 2963 0.400000 +573 3025 0.400000 +573 3039 0.400000 +573 3162 0.400000 +573 3172 0.400000 +574 62 0.400000 +574 108 0.400000 +574 161 0.400000 +574 255 0.400000 +574 373 0.400000 +574 454 0.400000 +574 518 0.400000 +574 537 0.400000 +574 578 0.400000 +574 627 0.400000 +574 638 0.400000 +574 682 0.400000 +574 685 0.400000 +574 705 0.400000 +574 719 0.400000 +574 792 0.400000 +574 924 0.400000 +574 930 0.400000 +574 933 0.400000 +574 998 0.400000 +574 1025 0.400000 +574 1161 0.400000 +574 1190 0.400000 +574 1218 0.400000 +574 1249 0.400000 +574 1304 0.400000 +574 1353 0.400000 +574 1394 0.400000 +574 1402 0.400000 +574 1421 0.400000 +574 1555 0.400000 +574 1682 0.400000 +574 1695 0.400000 +574 1787 0.400000 +574 1879 0.400000 +574 1938 0.400000 +574 1955 0.400000 +574 2084 0.400000 +574 2109 0.400000 +574 2120 0.400000 +574 2141 0.400000 +574 2142 0.400000 +574 2164 0.400000 +574 2181 0.400000 +574 2253 0.400000 +574 2269 0.400000 +574 2332 0.400000 +574 2382 0.400000 +574 2408 0.400000 +574 2424 0.400000 +574 2470 0.400000 +574 2479 0.400000 +574 2572 0.400000 +574 2624 0.400000 +574 2665 0.400000 +574 2751 0.400000 +574 2781 0.400000 +574 2843 0.400000 +574 2871 0.400000 +574 2889 0.400000 +574 3003 0.400000 +574 3004 0.400000 +574 3011 0.400000 +574 3029 0.400000 +574 3132 0.400000 +575 80 0.400000 +575 157 0.400000 +575 215 0.400000 +575 336 0.400000 +575 345 0.400000 +575 434 0.400000 +575 488 0.400000 +575 492 0.400000 +575 655 0.400000 +575 685 0.400000 +575 693 0.400000 +575 729 0.400000 +575 731 0.400000 +575 752 0.400000 +575 803 0.400000 +575 860 0.400000 +575 905 0.400000 +575 914 0.400000 +575 992 0.400000 +575 1039 0.400000 +575 1040 0.400000 +575 1056 0.400000 +575 1208 0.400000 +575 1215 0.400000 +575 1343 0.400000 +575 1360 0.400000 +575 1376 0.400000 +575 1392 0.400000 +575 1441 0.400000 +575 1487 0.400000 +575 1613 0.400000 +575 1640 0.400000 +575 1702 0.400000 +575 1834 0.400000 +575 1957 0.400000 +575 1958 0.400000 +575 2025 0.400000 +575 2059 0.400000 +575 2062 0.400000 +575 2123 0.400000 +575 2134 0.400000 +575 2161 0.400000 +575 2173 0.400000 +575 2184 0.400000 +575 2234 0.400000 +575 2264 0.400000 +575 2279 0.400000 +575 2302 0.400000 +575 2333 0.400000 +575 2353 0.400000 +575 2479 0.400000 +575 2560 0.400000 +575 2567 0.400000 +575 2653 0.400000 +575 2693 0.400000 +575 2703 0.400000 +575 2755 0.400000 +575 2822 0.400000 +575 2879 0.400000 +575 2883 0.400000 +575 2979 0.400000 +575 3054 0.400000 +575 3063 0.400000 +575 3141 0.400000 +575 3171 0.400000 +576 49 0.400000 +576 132 0.400000 +576 170 0.400000 +576 223 0.400000 +576 248 0.400000 +576 288 0.400000 +576 371 0.400000 +576 435 0.400000 +576 457 0.400000 +576 575 0.400000 +576 583 0.400000 +576 619 0.400000 +576 620 0.400000 +576 633 0.400000 +576 689 0.400000 +576 770 0.400000 +576 787 0.400000 +576 791 0.400000 +576 808 0.400000 +576 893 0.400000 +576 896 0.400000 +576 922 0.400000 +576 1017 0.400000 +576 1025 0.400000 +576 1038 0.400000 +576 1215 0.400000 +576 1233 0.400000 +576 1236 0.400000 +576 1299 0.400000 +576 1383 0.400000 +576 1422 0.400000 +576 1423 0.400000 +576 1490 0.400000 +576 1498 0.400000 +576 1550 0.400000 +576 1695 0.400000 +576 1715 0.400000 +576 1738 0.400000 +576 1865 0.400000 +576 2021 0.400000 +576 2075 0.400000 +576 2112 0.400000 +576 2144 0.400000 +576 2180 0.400000 +576 2187 0.400000 +576 2220 0.400000 +576 2279 0.400000 +576 2297 0.400000 +576 2350 0.400000 +576 2351 0.400000 +576 2371 0.400000 +576 2494 0.400000 +576 2517 0.400000 +576 2579 0.400000 +576 2610 0.400000 +576 2642 0.400000 +576 2788 0.400000 +576 2793 0.400000 +576 2853 0.400000 +576 2882 0.400000 +576 2935 0.400000 +576 3010 0.400000 +576 3054 0.400000 +577 84 0.400000 +577 100 0.400000 +577 177 0.400000 +577 267 0.400000 +577 286 0.400000 +577 326 0.400000 +577 434 0.400000 +577 457 0.400000 +577 504 0.400000 +577 517 0.400000 +577 530 0.400000 +577 618 0.400000 +577 639 0.400000 +577 684 0.400000 +577 766 0.400000 +577 819 0.400000 +577 838 0.400000 +577 840 0.400000 +577 903 0.400000 +577 920 0.400000 +577 961 0.400000 +577 981 0.400000 +577 994 0.400000 +577 1046 0.400000 +577 1075 0.400000 +577 1126 0.400000 +577 1131 0.400000 +577 1213 0.400000 +577 1231 0.400000 +577 1282 0.400000 +577 1401 0.400000 +577 1544 0.400000 +577 1563 0.400000 +577 1642 0.400000 +577 1694 0.400000 +577 1695 0.400000 +577 1696 0.400000 +577 1726 0.400000 +577 1782 0.400000 +577 1835 0.400000 +577 1852 0.400000 +577 1923 0.400000 +577 1931 0.400000 +577 1949 0.400000 +577 1975 0.400000 +577 1989 0.400000 +577 2069 0.400000 +577 2070 0.400000 +577 2104 0.400000 +577 2280 0.400000 +577 2336 0.400000 +577 2339 0.400000 +577 2342 0.400000 +577 2509 0.400000 +577 2523 0.400000 +577 2575 0.400000 +577 2641 0.400000 +577 2654 0.400000 +577 2704 0.400000 +577 2721 0.400000 +577 2754 0.400000 +577 2756 0.400000 +577 2758 0.400000 +577 3027 0.400000 +577 3054 0.400000 +577 3103 0.400000 +578 27 0.400000 +578 31 0.400000 +578 36 0.400000 +578 72 0.400000 +578 172 0.400000 +578 174 0.400000 +578 352 0.400000 +578 381 0.400000 +578 433 0.400000 +578 716 0.400000 +578 731 0.400000 +578 850 0.400000 +578 868 0.400000 +578 879 0.400000 +578 1005 0.400000 +578 1024 0.400000 +578 1075 0.400000 +578 1084 0.400000 +578 1156 0.400000 +578 1203 0.400000 +578 1223 0.400000 +578 1278 0.400000 +578 1318 0.400000 +578 1338 0.400000 +578 1357 0.400000 +578 1421 0.400000 +578 1453 0.400000 +578 1463 0.400000 +578 1502 0.400000 +578 1533 0.400000 +578 1559 0.400000 +578 1620 0.400000 +578 1662 0.400000 +578 1785 0.400000 +578 1817 0.400000 +578 1837 0.400000 +578 1855 0.400000 +578 1858 0.400000 +578 1916 0.400000 +578 1922 0.400000 +578 1943 0.400000 +578 1963 0.400000 +578 1981 0.400000 +578 2028 0.400000 +578 2099 0.400000 +578 2195 0.400000 +578 2252 0.400000 +578 2320 0.400000 +578 2350 0.400000 +578 2394 0.400000 +578 2464 0.400000 +578 2592 0.400000 +578 2603 0.400000 +578 2649 0.400000 +578 2677 0.400000 +578 2715 0.400000 +578 2735 0.400000 +578 2736 0.400000 +578 2826 0.400000 +578 2959 0.400000 +578 3014 0.400000 +578 3135 0.400000 +578 3175 0.400000 +579 130 0.400000 +579 202 0.400000 +579 253 0.400000 +579 255 0.400000 +579 260 0.400000 +579 308 0.400000 +579 328 0.400000 +579 393 0.400000 +579 459 0.400000 +579 480 0.400000 +579 500 0.400000 +579 524 0.400000 +579 622 0.400000 +579 710 0.400000 +579 724 0.400000 +579 752 0.400000 +579 766 0.400000 +579 960 0.400000 +579 1049 0.400000 +579 1080 0.400000 +579 1094 0.400000 +579 1131 0.400000 +579 1143 0.400000 +579 1177 0.400000 +579 1194 0.400000 +579 1216 0.400000 +579 1323 0.400000 +579 1364 0.400000 +579 1390 0.400000 +579 1411 0.400000 +579 1427 0.400000 +579 1436 0.400000 +579 1447 0.400000 +579 1465 0.400000 +579 1471 0.400000 +579 1482 0.400000 +579 1539 0.400000 +579 1588 0.400000 +579 1605 0.400000 +579 1949 0.400000 +579 2038 0.400000 +579 2146 0.400000 +579 2187 0.400000 +579 2406 0.400000 +579 2425 0.400000 +579 2441 0.400000 +579 2483 0.400000 +579 2507 0.400000 +579 2525 0.400000 +579 2617 0.400000 +579 2622 0.400000 +579 2711 0.400000 +579 2977 0.400000 +579 3014 0.400000 +579 3189 0.400000 +580 58 0.400000 +580 66 0.400000 +580 174 0.400000 +580 202 0.400000 +580 239 0.400000 +580 305 0.400000 +580 338 0.400000 +580 447 0.400000 +580 455 0.400000 +580 467 0.400000 +580 579 0.400000 +580 580 0.400000 +580 602 0.400000 +580 626 0.400000 +580 641 0.400000 +580 684 0.400000 +580 687 0.400000 +580 701 0.400000 +580 762 0.400000 +580 776 0.400000 +580 787 0.400000 +580 821 0.400000 +580 849 0.400000 +580 891 0.400000 +580 968 0.400000 +580 1061 0.400000 +580 1125 0.400000 +580 1159 0.400000 +580 1169 0.400000 +580 1187 0.400000 +580 1197 0.400000 +580 1207 0.400000 +580 1225 0.400000 +580 1226 0.400000 +580 1318 0.400000 +580 1320 0.400000 +580 1356 0.400000 +580 1383 0.400000 +580 1456 0.400000 +580 1475 0.400000 +580 1609 0.400000 +580 1770 0.400000 +580 1827 0.400000 +580 1942 0.400000 +580 2135 0.400000 +580 2154 0.400000 +580 2172 0.400000 +580 2230 0.400000 +580 2253 0.400000 +580 2255 0.400000 +580 2283 0.400000 +580 2294 0.400000 +580 2354 0.400000 +580 2359 0.400000 +580 2501 0.400000 +580 2683 0.400000 +580 2698 0.400000 +580 2716 0.400000 +580 2768 0.400000 +580 2784 0.400000 +580 2823 0.400000 +580 3016 0.400000 +580 3085 0.400000 +580 3127 0.400000 +581 43 0.400000 +581 63 0.400000 +581 387 0.400000 +581 542 0.400000 +581 546 0.400000 +581 554 0.400000 +581 576 0.400000 +581 821 0.400000 +581 922 0.400000 +581 981 0.400000 +581 1019 0.400000 +581 1024 0.400000 +581 1067 0.400000 +581 1100 0.400000 +581 1118 0.400000 +581 1148 0.400000 +581 1181 0.400000 +581 1260 0.400000 +581 1365 0.400000 +581 1378 0.400000 +581 1390 0.400000 +581 1401 0.400000 +581 1465 0.400000 +581 1491 0.400000 +581 1517 0.400000 +581 1586 0.400000 +581 1638 0.400000 +581 1661 0.400000 +581 1786 0.400000 +581 1880 0.400000 +581 1892 0.400000 +581 1952 0.400000 +581 1961 0.400000 +581 1973 0.400000 +581 2061 0.400000 +581 2073 0.400000 +581 2083 0.400000 +581 2177 0.400000 +581 2266 0.400000 +581 2277 0.400000 +581 2298 0.400000 +581 2320 0.400000 +581 2354 0.400000 +581 2355 0.400000 +581 2417 0.400000 +581 2503 0.400000 +581 2518 0.400000 +581 2605 0.400000 +581 2608 0.400000 +581 2662 0.400000 +581 2727 0.400000 +581 2751 0.400000 +581 2768 0.400000 +581 2783 0.400000 +581 2808 0.400000 +581 2825 0.400000 +581 2834 0.400000 +581 2863 0.400000 +581 2900 0.400000 +581 2931 0.400000 +581 3031 0.400000 +581 3090 0.400000 +581 3157 0.400000 +581 3163 0.400000 +581 3200 0.400000 +582 5 0.400000 +582 16 0.400000 +582 74 0.400000 +582 101 0.400000 +582 179 0.400000 +582 230 0.400000 +582 353 0.400000 +582 478 0.400000 +582 523 0.400000 +582 538 0.400000 +582 539 0.400000 +582 600 0.400000 +582 780 0.400000 +582 820 0.400000 +582 869 0.400000 +582 905 0.400000 +582 948 0.400000 +582 1004 0.400000 +582 1124 0.400000 +582 1256 0.400000 +582 1311 0.400000 +582 1375 0.400000 +582 1394 0.400000 +582 1395 0.400000 +582 1396 0.400000 +582 1409 0.400000 +582 1415 0.400000 +582 1427 0.400000 +582 1460 0.400000 +582 1625 0.400000 +582 1626 0.400000 +582 1707 0.400000 +582 1788 0.400000 +582 1843 0.400000 +582 1917 0.400000 +582 1961 0.400000 +582 2026 0.400000 +582 2082 0.400000 +582 2091 0.400000 +582 2112 0.400000 +582 2179 0.400000 +582 2216 0.400000 +582 2443 0.400000 +582 2458 0.400000 +582 2470 0.400000 +582 2491 0.400000 +582 2519 0.400000 +582 2525 0.400000 +582 2584 0.400000 +582 2609 0.400000 +582 2766 0.400000 +582 2821 0.400000 +582 2849 0.400000 +582 2855 0.400000 +582 2859 0.400000 +582 2903 0.400000 +582 2961 0.400000 +582 3008 0.400000 +582 3069 0.400000 +582 3103 0.400000 +583 163 0.400000 +583 168 0.400000 +583 186 0.400000 +583 249 0.400000 +583 315 0.400000 +583 329 0.400000 +583 353 0.400000 +583 354 0.400000 +583 558 0.400000 +583 567 0.400000 +583 747 0.400000 +583 760 0.400000 +583 856 0.400000 +583 949 0.400000 +583 991 0.400000 +583 994 0.400000 +583 1005 0.400000 +583 1219 0.400000 +583 1225 0.400000 +583 1259 0.400000 +583 1349 0.400000 +583 1472 0.400000 +583 1579 0.400000 +583 1590 0.400000 +583 1601 0.400000 +583 1649 0.400000 +583 1731 0.400000 +583 1743 0.400000 +583 1759 0.400000 +583 1768 0.400000 +583 1770 0.400000 +583 1795 0.400000 +583 1813 0.400000 +583 1833 0.400000 +583 1873 0.400000 +583 1909 0.400000 +583 2017 0.400000 +583 2088 0.400000 +583 2130 0.400000 +583 2140 0.400000 +583 2217 0.400000 +583 2221 0.400000 +583 2297 0.400000 +583 2310 0.400000 +583 2337 0.400000 +583 2361 0.400000 +583 2376 0.400000 +583 2504 0.400000 +583 2510 0.400000 +583 2518 0.400000 +583 2577 0.400000 +583 2590 0.400000 +583 2617 0.400000 +583 2639 0.400000 +583 2668 0.400000 +583 2707 0.400000 +583 2734 0.400000 +583 2762 0.400000 +583 2796 0.400000 +583 2842 0.400000 +583 2933 0.400000 +583 2994 0.400000 +583 3002 0.400000 +583 3088 0.400000 +583 3170 0.400000 +583 3190 0.400000 +584 17 0.400000 +584 99 0.400000 +584 151 0.400000 +584 153 0.400000 +584 190 0.400000 +584 200 0.400000 +584 333 0.400000 +584 471 0.400000 +584 475 0.400000 +584 496 0.400000 +584 717 0.400000 +584 772 0.400000 +584 810 0.400000 +584 819 0.400000 +584 1031 0.400000 +584 1037 0.400000 +584 1041 0.400000 +584 1049 0.400000 +584 1092 0.400000 +584 1177 0.400000 +584 1209 0.400000 +584 1254 0.400000 +584 1288 0.400000 +584 1316 0.400000 +584 1325 0.400000 +584 1344 0.400000 +584 1368 0.400000 +584 1425 0.400000 +584 1428 0.400000 +584 1480 0.400000 +584 1579 0.400000 +584 1655 0.400000 +584 1675 0.400000 +584 1678 0.400000 +584 1901 0.400000 +584 1975 0.400000 +584 1991 0.400000 +584 2018 0.400000 +584 2049 0.400000 +584 2066 0.400000 +584 2090 0.400000 +584 2109 0.400000 +584 2128 0.400000 +584 2211 0.400000 +584 2225 0.400000 +584 2250 0.400000 +584 2256 0.400000 +584 2276 0.400000 +584 2300 0.400000 +584 2501 0.400000 +584 2535 0.400000 +584 2554 0.400000 +584 2622 0.400000 +584 2630 0.400000 +584 2720 0.400000 +584 2726 0.400000 +584 2781 0.400000 +584 2893 0.400000 +584 2964 0.400000 +584 2984 0.400000 +584 2998 0.400000 +584 3028 0.400000 +584 3057 0.400000 +584 3177 0.400000 +585 47 0.400000 +585 64 0.400000 +585 81 0.400000 +585 93 0.400000 +585 135 0.400000 +585 145 0.400000 +585 189 0.400000 +585 202 0.400000 +585 218 0.400000 +585 246 0.400000 +585 323 0.400000 +585 417 0.400000 +585 469 0.400000 +585 507 0.400000 +585 603 0.400000 +585 627 0.400000 +585 635 0.400000 +585 666 0.400000 +585 703 0.400000 +585 705 0.400000 +585 828 0.400000 +585 861 0.400000 +585 884 0.400000 +585 929 0.400000 +585 1028 0.400000 +585 1037 0.400000 +585 1119 0.400000 +585 1148 0.400000 +585 1163 0.400000 +585 1249 0.400000 +585 1258 0.400000 +585 1325 0.400000 +585 1344 0.400000 +585 1373 0.400000 +585 1396 0.400000 +585 1614 0.400000 +585 1680 0.400000 +585 1742 0.400000 +585 1779 0.400000 +585 1799 0.400000 +585 1800 0.400000 +585 1966 0.400000 +585 2020 0.400000 +585 2031 0.400000 +585 2079 0.400000 +585 2147 0.400000 +585 2175 0.400000 +585 2177 0.400000 +585 2199 0.400000 +585 2200 0.400000 +585 2201 0.400000 +585 2235 0.400000 +585 2298 0.400000 +585 2361 0.400000 +585 2427 0.400000 +585 2468 0.400000 +585 2530 0.400000 +585 2564 0.400000 +585 2569 0.400000 +585 2642 0.400000 +585 2683 0.400000 +585 2749 0.400000 +585 2760 0.400000 +585 2780 0.400000 +585 2785 0.400000 +585 2796 0.400000 +585 2817 0.400000 +585 2874 0.400000 +585 2920 0.400000 +585 2938 0.400000 +585 2990 0.400000 +585 3038 0.400000 +585 3043 0.400000 +585 3169 0.400000 +586 4 0.400000 +586 70 0.400000 +586 114 0.400000 +586 115 0.400000 +586 154 0.400000 +586 302 0.400000 +586 303 0.400000 +586 323 0.400000 +586 324 0.400000 +586 398 0.400000 +586 417 0.400000 +586 447 0.400000 +586 505 0.400000 +586 529 0.400000 +586 566 0.400000 +586 576 0.400000 +586 663 0.400000 +586 685 0.400000 +586 763 0.400000 +586 788 0.400000 +586 817 0.400000 +586 853 0.400000 +586 939 0.400000 +586 952 0.400000 +586 996 0.400000 +586 1011 0.400000 +586 1014 0.400000 +586 1015 0.400000 +586 1044 0.400000 +586 1050 0.400000 +586 1051 0.400000 +586 1067 0.400000 +586 1227 0.400000 +586 1261 0.400000 +586 1289 0.400000 +586 1323 0.400000 +586 1365 0.400000 +586 1378 0.400000 +586 1425 0.400000 +586 1479 0.400000 +586 1711 0.400000 +586 1751 0.400000 +586 1831 0.400000 +586 1862 0.400000 +586 1947 0.400000 +586 1948 0.400000 +586 1968 0.400000 +586 2019 0.400000 +586 2111 0.400000 +586 2154 0.400000 +586 2176 0.400000 +586 2226 0.400000 +586 2234 0.400000 +586 2386 0.400000 +586 2585 0.400000 +586 2691 0.400000 +586 2768 0.400000 +586 2794 0.400000 +586 2994 0.400000 +586 3060 0.400000 +586 3116 0.400000 +586 3149 0.400000 +586 3193 0.400000 +587 34 0.400000 +587 55 0.400000 +587 66 0.400000 +587 115 0.400000 +587 187 0.400000 +587 225 0.400000 +587 263 0.400000 +587 281 0.400000 +587 484 0.400000 +587 514 0.400000 +587 596 0.400000 +587 657 0.400000 +587 674 0.400000 +587 723 0.400000 +587 817 0.400000 +587 838 0.400000 +587 871 0.400000 +587 888 0.400000 +587 942 0.400000 +587 1005 0.400000 +587 1010 0.400000 +587 1169 0.400000 +587 1373 0.400000 +587 1491 0.400000 +587 1554 0.400000 +587 1604 0.400000 +587 1612 0.400000 +587 1652 0.400000 +587 1705 0.400000 +587 1744 0.400000 +587 1803 0.400000 +587 1883 0.400000 +587 1937 0.400000 +587 1975 0.400000 +587 1987 0.400000 +587 2075 0.400000 +587 2110 0.400000 +587 2154 0.400000 +587 2164 0.400000 +587 2258 0.400000 +587 2259 0.400000 +587 2360 0.400000 +587 2372 0.400000 +587 2376 0.400000 +587 2377 0.400000 +587 2472 0.400000 +587 2537 0.400000 +587 2581 0.400000 +587 2662 0.400000 +587 2725 0.400000 +587 2734 0.400000 +587 2763 0.400000 +587 2798 0.400000 +587 2799 0.400000 +587 2859 0.400000 +587 2865 0.400000 +587 2872 0.400000 +587 2930 0.400000 +587 3093 0.400000 +587 3109 0.400000 +587 3169 0.400000 +587 3189 0.400000 +588 20 0.400000 +588 74 0.400000 +588 90 0.400000 +588 239 0.400000 +588 525 0.400000 +588 559 0.400000 +588 565 0.400000 +588 696 0.400000 +588 721 0.400000 +588 725 0.400000 +588 844 0.400000 +588 889 0.400000 +588 926 0.400000 +588 1074 0.400000 +588 1105 0.400000 +588 1111 0.400000 +588 1134 0.400000 +588 1137 0.400000 +588 1358 0.400000 +588 1361 0.400000 +588 1403 0.400000 +588 1540 0.400000 +588 1622 0.400000 +588 1659 0.400000 +588 1669 0.400000 +588 1681 0.400000 +588 1737 0.400000 +588 1745 0.400000 +588 1805 0.400000 +588 1921 0.400000 +588 1965 0.400000 +588 1991 0.400000 +588 2031 0.400000 +588 2086 0.400000 +588 2090 0.400000 +588 2095 0.400000 +588 2117 0.400000 +588 2142 0.400000 +588 2288 0.400000 +588 2352 0.400000 +588 2397 0.400000 +588 2431 0.400000 +588 2451 0.400000 +588 2473 0.400000 +588 2516 0.400000 +588 2527 0.400000 +588 2528 0.400000 +588 2618 0.400000 +588 2713 0.400000 +588 2788 0.400000 +588 2834 0.400000 +588 2842 0.400000 +588 2958 0.400000 +588 3004 0.400000 +588 3021 0.400000 +588 3068 0.400000 +588 3135 0.400000 +589 2 0.400000 +589 39 0.400000 +589 113 0.400000 +589 168 0.400000 +589 173 0.400000 +589 199 0.400000 +589 308 0.400000 +589 434 0.400000 +589 496 0.400000 +589 529 0.400000 +589 572 0.400000 +589 575 0.400000 +589 648 0.400000 +589 941 0.400000 +589 949 0.400000 +589 971 0.400000 +589 989 0.400000 +589 1017 0.400000 +589 1175 0.400000 +589 1188 0.400000 +589 1329 0.400000 +589 1366 0.400000 +589 1422 0.400000 +589 1560 0.400000 +589 1586 0.400000 +589 1718 0.400000 +589 1826 0.400000 +589 1865 0.400000 +589 1909 0.400000 +589 1915 0.400000 +589 2002 0.400000 +589 2015 0.400000 +589 2020 0.400000 +589 2034 0.400000 +589 2243 0.400000 +589 2263 0.400000 +589 2322 0.400000 +589 2353 0.400000 +589 2359 0.400000 +589 2488 0.400000 +589 2490 0.400000 +589 2536 0.400000 +589 2690 0.400000 +589 2737 0.400000 +589 2766 0.400000 +589 2783 0.400000 +589 2820 0.400000 +589 2847 0.400000 +589 2904 0.400000 +589 3015 0.400000 +589 3033 0.400000 +589 3062 0.400000 +589 3123 0.400000 +589 3146 0.400000 +589 3198 0.400000 +590 109 0.400000 +590 128 0.400000 +590 227 0.400000 +590 305 0.400000 +590 420 0.400000 +590 440 0.400000 +590 450 0.400000 +590 461 0.400000 +590 540 0.400000 +590 612 0.400000 +590 621 0.400000 +590 730 0.400000 +590 842 0.400000 +590 855 0.400000 +590 860 0.400000 +590 916 0.400000 +590 999 0.400000 +590 1039 0.400000 +590 1169 0.400000 +590 1260 0.400000 +590 1283 0.400000 +590 1307 0.400000 +590 1332 0.400000 +590 1351 0.400000 +590 1590 0.400000 +590 1613 0.400000 +590 1671 0.400000 +590 1763 0.400000 +590 1780 0.400000 +590 1834 0.400000 +590 1893 0.400000 +590 1980 0.400000 +590 2111 0.400000 +590 2142 0.400000 +590 2156 0.400000 +590 2410 0.400000 +590 2501 0.400000 +590 2587 0.400000 +590 2611 0.400000 +590 2647 0.400000 +590 2674 0.400000 +590 2854 0.400000 +590 2954 0.400000 +590 3076 0.400000 +590 3096 0.400000 +590 3116 0.400000 +590 3134 0.400000 +590 3189 0.400000 +591 159 0.400000 +591 207 0.400000 +591 429 0.400000 +591 458 0.400000 +591 461 0.400000 +591 479 0.400000 +591 559 0.400000 +591 635 0.400000 +591 710 0.400000 +591 741 0.400000 +591 771 0.400000 +591 802 0.400000 +591 866 0.400000 +591 1042 0.400000 +591 1149 0.400000 +591 1205 0.400000 +591 1249 0.400000 +591 1251 0.400000 +591 1275 0.400000 +591 1297 0.400000 +591 1300 0.400000 +591 1407 0.400000 +591 1435 0.400000 +591 1590 0.400000 +591 1634 0.400000 +591 1660 0.400000 +591 1678 0.400000 +591 1769 0.400000 +591 1791 0.400000 +591 1867 0.400000 +591 1924 0.400000 +591 2001 0.400000 +591 2028 0.400000 +591 2056 0.400000 +591 2066 0.400000 +591 2099 0.400000 +591 2178 0.400000 +591 2276 0.400000 +591 2284 0.400000 +591 2300 0.400000 +591 2330 0.400000 +591 2334 0.400000 +591 2355 0.400000 +591 2449 0.400000 +591 2460 0.400000 +591 2487 0.400000 +591 2495 0.400000 +591 2516 0.400000 +591 2686 0.400000 +591 2907 0.400000 +591 2921 0.400000 +591 3013 0.400000 +591 3024 0.400000 +591 3077 0.400000 +591 3127 0.400000 +591 3129 0.400000 +591 3148 0.400000 +592 32 0.400000 +592 47 0.400000 +592 80 0.400000 +592 117 0.400000 +592 228 0.400000 +592 259 0.400000 +592 290 0.400000 +592 292 0.400000 +592 298 0.400000 +592 300 0.400000 +592 309 0.400000 +592 345 0.400000 +592 651 0.400000 +592 701 0.400000 +592 826 0.400000 +592 836 0.400000 +592 858 0.400000 +592 862 0.400000 +592 944 0.400000 +592 988 0.400000 +592 1027 0.400000 +592 1050 0.400000 +592 1101 0.400000 +592 1121 0.400000 +592 1191 0.400000 +592 1225 0.400000 +592 1232 0.400000 +592 1237 0.400000 +592 1367 0.400000 +592 1537 0.400000 +592 1600 0.400000 +592 1646 0.400000 +592 1721 0.400000 +592 1762 0.400000 +592 1769 0.400000 +592 1825 0.400000 +592 1856 0.400000 +592 1908 0.400000 +592 1920 0.400000 +592 2016 0.400000 +592 2047 0.400000 +592 2063 0.400000 +592 2088 0.400000 +592 2107 0.400000 +592 2155 0.400000 +592 2254 0.400000 +592 2298 0.400000 +592 2318 0.400000 +592 2388 0.400000 +592 2405 0.400000 +592 2563 0.400000 +592 2568 0.400000 +592 2588 0.400000 +592 2609 0.400000 +592 2611 0.400000 +592 2615 0.400000 +592 2733 0.400000 +592 2868 0.400000 +592 2901 0.400000 +592 2949 0.400000 +592 3011 0.400000 +592 3027 0.400000 +592 3048 0.400000 +592 3077 0.400000 +592 3155 0.400000 +592 3175 0.400000 +593 56 0.400000 +593 95 0.400000 +593 243 0.400000 +593 257 0.400000 +593 263 0.400000 +593 297 0.400000 +593 333 0.400000 +593 339 0.400000 +593 380 0.400000 +593 432 0.400000 +593 500 0.400000 +593 540 0.400000 +593 561 0.400000 +593 588 0.400000 +593 736 0.400000 +593 804 0.400000 +593 867 0.400000 +593 895 0.400000 +593 925 0.400000 +593 936 0.400000 +593 976 0.400000 +593 1112 0.400000 +593 1264 0.400000 +593 1284 0.400000 +593 1292 0.400000 +593 1335 0.400000 +593 1426 0.400000 +593 1465 0.400000 +593 1527 0.400000 +593 1612 0.400000 +593 1631 0.400000 +593 1657 0.400000 +593 1683 0.400000 +593 1704 0.400000 +593 1755 0.400000 +593 1804 0.400000 +593 1873 0.400000 +593 2002 0.400000 +593 2007 0.400000 +593 2054 0.400000 +593 2058 0.400000 +593 2164 0.400000 +593 2202 0.400000 +593 2210 0.400000 +593 2244 0.400000 +593 2295 0.400000 +593 2332 0.400000 +593 2341 0.400000 +593 2359 0.400000 +593 2415 0.400000 +593 2432 0.400000 +593 2483 0.400000 +593 2517 0.400000 +593 2632 0.400000 +593 2700 0.400000 +593 2742 0.400000 +593 2826 0.400000 +593 2990 0.400000 +593 3050 0.400000 +593 3118 0.400000 +593 3134 0.400000 +593 3139 0.400000 +593 3144 0.400000 +593 3173 0.400000 +593 3190 0.400000 +593 3197 0.400000 +594 172 0.400000 +594 342 0.400000 +594 371 0.400000 +594 407 0.400000 +594 497 0.400000 +594 584 0.400000 +594 625 0.400000 +594 699 0.400000 +594 826 0.400000 +594 843 0.400000 +594 879 0.400000 +594 928 0.400000 +594 938 0.400000 +594 1010 0.400000 +594 1037 0.400000 +594 1385 0.400000 +594 1392 0.400000 +594 1413 0.400000 +594 1449 0.400000 +594 1493 0.400000 +594 1650 0.400000 +594 1679 0.400000 +594 1686 0.400000 +594 1859 0.400000 +594 1867 0.400000 +594 1881 0.400000 +594 1921 0.400000 +594 2071 0.400000 +594 2115 0.400000 +594 2150 0.400000 +594 2301 0.400000 +594 2365 0.400000 +594 2421 0.400000 +594 2427 0.400000 +594 2496 0.400000 +594 2526 0.400000 +594 2534 0.400000 +594 2538 0.400000 +594 2548 0.400000 +594 2566 0.400000 +594 2580 0.400000 +594 2691 0.400000 +594 2702 0.400000 +594 2793 0.400000 +594 2803 0.400000 +594 2935 0.400000 +594 3075 0.400000 +594 3141 0.400000 +594 3153 0.400000 +595 70 0.400000 +595 101 0.400000 +595 104 0.400000 +595 136 0.400000 +595 155 0.400000 +595 194 0.400000 +595 196 0.400000 +595 224 0.400000 +595 301 0.400000 +595 328 0.400000 +595 342 0.400000 +595 479 0.400000 +595 519 0.400000 +595 536 0.400000 +595 665 0.400000 +595 772 0.400000 +595 816 0.400000 +595 879 0.400000 +595 921 0.400000 +595 1001 0.400000 +595 1015 0.400000 +595 1025 0.400000 +595 1126 0.400000 +595 1178 0.400000 +595 1307 0.400000 +595 1345 0.400000 +595 1394 0.400000 +595 1406 0.400000 +595 1407 0.400000 +595 1481 0.400000 +595 1517 0.400000 +595 1536 0.400000 +595 1540 0.400000 +595 1718 0.400000 +595 1734 0.400000 +595 1737 0.400000 +595 1911 0.400000 +595 2028 0.400000 +595 2035 0.400000 +595 2093 0.400000 +595 2100 0.400000 +595 2103 0.400000 +595 2144 0.400000 +595 2173 0.400000 +595 2186 0.400000 +595 2214 0.400000 +595 2239 0.400000 +595 2265 0.400000 +595 2311 0.400000 +595 2312 0.400000 +595 2323 0.400000 +595 2324 0.400000 +595 2335 0.400000 +595 2384 0.400000 +595 2419 0.400000 +595 2460 0.400000 +595 2473 0.400000 +595 2480 0.400000 +595 2596 0.400000 +595 2601 0.400000 +595 2626 0.400000 +595 2638 0.400000 +595 2646 0.400000 +595 2774 0.400000 +595 2865 0.400000 +595 2913 0.400000 +595 2934 0.400000 +595 2975 0.400000 +595 3049 0.400000 +595 3056 0.400000 +595 3162 0.400000 +595 3176 0.400000 +595 3177 0.400000 +596 24 0.400000 +596 29 0.400000 +596 93 0.400000 +596 112 0.400000 +596 176 0.400000 +596 343 0.400000 +596 441 0.400000 +596 452 0.400000 +596 477 0.400000 +596 481 0.400000 +596 508 0.400000 +596 575 0.400000 +596 583 0.400000 +596 596 0.400000 +596 647 0.400000 +596 659 0.400000 +596 664 0.400000 +596 687 0.400000 +596 730 0.400000 +596 732 0.400000 +596 757 0.400000 +596 789 0.400000 +596 817 0.400000 +596 863 0.400000 +596 945 0.400000 +596 1017 0.400000 +596 1018 0.400000 +596 1108 0.400000 +596 1115 0.400000 +596 1129 0.400000 +596 1220 0.400000 +596 1247 0.400000 +596 1409 0.400000 +596 1430 0.400000 +596 1445 0.400000 +596 1455 0.400000 +596 1492 0.400000 +596 1508 0.400000 +596 1605 0.400000 +596 1705 0.400000 +596 1711 0.400000 +596 1949 0.400000 +596 1990 0.400000 +596 2037 0.400000 +596 2103 0.400000 +596 2145 0.400000 +596 2223 0.400000 +596 2232 0.400000 +596 2289 0.400000 +596 2336 0.400000 +596 2340 0.400000 +596 2346 0.400000 +596 2404 0.400000 +596 2504 0.400000 +596 2513 0.400000 +596 2592 0.400000 +596 2623 0.400000 +596 2624 0.400000 +596 2756 0.400000 +596 2787 0.400000 +596 2883 0.400000 +596 2884 0.400000 +596 2918 0.400000 +596 2956 0.400000 +596 3005 0.400000 +596 3030 0.400000 +596 3107 0.400000 +597 67 0.400000 +597 77 0.400000 +597 103 0.400000 +597 113 0.400000 +597 201 0.400000 +597 278 0.400000 +597 339 0.400000 +597 451 0.400000 +597 488 0.400000 +597 492 0.400000 +597 515 0.400000 +597 569 0.400000 +597 753 0.400000 +597 761 0.400000 +597 825 0.400000 +597 847 0.400000 +597 858 0.400000 +597 915 0.400000 +597 932 0.400000 +597 949 0.400000 +597 958 0.400000 +597 973 0.400000 +597 1032 0.400000 +597 1064 0.400000 +597 1076 0.400000 +597 1099 0.400000 +597 1251 0.400000 +597 1317 0.400000 +597 1490 0.400000 +597 1512 0.400000 +597 1524 0.400000 +597 1559 0.400000 +597 1627 0.400000 +597 1685 0.400000 +597 1720 0.400000 +597 1821 0.400000 +597 1903 0.400000 +597 1963 0.400000 +597 2096 0.400000 +597 2185 0.400000 +597 2225 0.400000 +597 2255 0.400000 +597 2312 0.400000 +597 2323 0.400000 +597 2331 0.400000 +597 2384 0.400000 +597 2390 0.400000 +597 2398 0.400000 +597 2419 0.400000 +597 2476 0.400000 +597 2521 0.400000 +597 2549 0.400000 +597 2572 0.400000 +597 2589 0.400000 +597 2762 0.400000 +597 2781 0.400000 +597 2895 0.400000 +597 2978 0.400000 +597 3065 0.400000 +597 3107 0.400000 +597 3136 0.400000 +597 3139 0.400000 +597 3191 0.400000 +598 84 0.400000 +598 113 0.400000 +598 127 0.400000 +598 162 0.400000 +598 205 0.400000 +598 222 0.400000 +598 269 0.400000 +598 364 0.400000 +598 391 0.400000 +598 401 0.400000 +598 412 0.400000 +598 423 0.400000 +598 434 0.400000 +598 446 0.400000 +598 543 0.400000 +598 546 0.400000 +598 677 0.400000 +598 690 0.400000 +598 741 0.400000 +598 798 0.400000 +598 975 0.400000 +598 1057 0.400000 +598 1173 0.400000 +598 1192 0.400000 +598 1218 0.400000 +598 1224 0.400000 +598 1232 0.400000 +598 1251 0.400000 +598 1276 0.400000 +598 1304 0.400000 +598 1375 0.400000 +598 1449 0.400000 +598 1573 0.400000 +598 1574 0.400000 +598 1748 0.400000 +598 1808 0.400000 +598 1839 0.400000 +598 1851 0.400000 +598 1862 0.400000 +598 1871 0.400000 +598 1891 0.400000 +598 2021 0.400000 +598 2087 0.400000 +598 2104 0.400000 +598 2126 0.400000 +598 2286 0.400000 +598 2297 0.400000 +598 2310 0.400000 +598 2338 0.400000 +598 2355 0.400000 +598 2422 0.400000 +598 2447 0.400000 +598 2487 0.400000 +598 2500 0.400000 +598 2615 0.400000 +598 2700 0.400000 +598 2716 0.400000 +598 2746 0.400000 +598 2789 0.400000 +598 2804 0.400000 +598 2895 0.400000 +598 2923 0.400000 +598 2940 0.400000 +598 3094 0.400000 +598 3164 0.400000 +599 46 0.400000 +599 74 0.400000 +599 108 0.400000 +599 126 0.400000 +599 183 0.400000 +599 235 0.400000 +599 248 0.400000 +599 251 0.400000 +599 256 0.400000 +599 381 0.400000 +599 442 0.400000 +599 459 0.400000 +599 483 0.400000 +599 487 0.400000 +599 492 0.400000 +599 517 0.400000 +599 559 0.400000 +599 720 0.400000 +599 737 0.400000 +599 744 0.400000 +599 755 0.400000 +599 762 0.400000 +599 809 0.400000 +599 832 0.400000 +599 896 0.400000 +599 928 0.400000 +599 1029 0.400000 +599 1075 0.400000 +599 1101 0.400000 +599 1135 0.400000 +599 1146 0.400000 +599 1151 0.400000 +599 1153 0.400000 +599 1160 0.400000 +599 1195 0.400000 +599 1218 0.400000 +599 1230 0.400000 +599 1357 0.400000 +599 1381 0.400000 +599 1416 0.400000 +599 1429 0.400000 +599 1447 0.400000 +599 1460 0.400000 +599 1513 0.400000 +599 1532 0.400000 +599 1629 0.400000 +599 1703 0.400000 +599 1715 0.400000 +599 1725 0.400000 +599 1844 0.400000 +599 1950 0.400000 +599 2046 0.400000 +599 2126 0.400000 +599 2204 0.400000 +599 2212 0.400000 +599 2257 0.400000 +599 2362 0.400000 +599 2409 0.400000 +599 2464 0.400000 +599 2483 0.400000 +599 2529 0.400000 +599 2588 0.400000 +599 2636 0.400000 +599 2879 0.400000 +599 2891 0.400000 +599 3038 0.400000 +599 3125 0.400000 +599 3151 0.400000 +600 150 0.400000 +600 161 0.400000 +600 192 0.400000 +600 208 0.400000 +600 251 0.400000 +600 284 0.400000 +600 419 0.400000 +600 431 0.400000 +600 491 0.400000 +600 492 0.400000 +600 637 0.400000 +600 708 0.400000 +600 749 0.400000 +600 768 0.400000 +600 809 0.400000 +600 953 0.400000 +600 1018 0.400000 +600 1152 0.400000 +600 1205 0.400000 +600 1273 0.400000 +600 1307 0.400000 +600 1315 0.400000 +600 1467 0.400000 +600 1470 0.400000 +600 1484 0.400000 +600 1558 0.400000 +600 1685 0.400000 +600 1691 0.400000 +600 1707 0.400000 +600 1720 0.400000 +600 1786 0.400000 +600 1801 0.400000 +600 1818 0.400000 +600 1990 0.400000 +600 2060 0.400000 +600 2103 0.400000 +600 2193 0.400000 +600 2273 0.400000 +600 2295 0.400000 +600 2310 0.400000 +600 2341 0.400000 +600 2410 0.400000 +600 2466 0.400000 +600 2522 0.400000 +600 2530 0.400000 +600 2626 0.400000 +600 2637 0.400000 +600 2675 0.400000 +600 2676 0.400000 +600 2754 0.400000 +600 2787 0.400000 +600 2874 0.400000 +600 3097 0.400000 +600 3175 0.400000 +601 5 0.400000 +601 27 0.400000 +601 75 0.400000 +601 93 0.400000 +601 150 0.400000 +601 302 0.400000 +601 326 0.400000 +601 345 0.400000 +601 355 0.400000 +601 381 0.400000 +601 389 0.400000 +601 534 0.400000 +601 560 0.400000 +601 652 0.400000 +601 730 0.400000 +601 738 0.400000 +601 766 0.400000 +601 791 0.400000 +601 841 0.400000 +601 930 0.400000 +601 940 0.400000 +601 972 0.400000 +601 1037 0.400000 +601 1162 0.400000 +601 1194 0.400000 +601 1207 0.400000 +601 1209 0.400000 +601 1223 0.400000 +601 1231 0.400000 +601 1233 0.400000 +601 1283 0.400000 +601 1343 0.400000 +601 1376 0.400000 +601 1400 0.400000 +601 1444 0.400000 +601 1469 0.400000 +601 1472 0.400000 +601 1548 0.400000 +601 1737 0.400000 +601 1749 0.400000 +601 1775 0.400000 +601 1783 0.400000 +601 1878 0.400000 +601 1981 0.400000 +601 2028 0.400000 +601 2061 0.400000 +601 2149 0.400000 +601 2173 0.400000 +601 2227 0.400000 +601 2236 0.400000 +601 2239 0.400000 +601 2269 0.400000 +601 2467 0.400000 +601 2468 0.400000 +601 2472 0.400000 +601 2572 0.400000 +601 2582 0.400000 +601 2621 0.400000 +601 2702 0.400000 +601 2764 0.400000 +601 2782 0.400000 +601 2908 0.400000 +601 2935 0.400000 +601 2957 0.400000 +601 3008 0.400000 +601 3052 0.400000 +601 3062 0.400000 +601 3092 0.400000 +601 3105 0.400000 +601 3151 0.400000 +602 223 0.400000 +602 230 0.400000 +602 310 0.400000 +602 348 0.400000 +602 359 0.400000 +602 451 0.400000 +602 519 0.400000 +602 528 0.400000 +602 597 0.400000 +602 598 0.400000 +602 664 0.400000 +602 706 0.400000 +602 795 0.400000 +602 811 0.400000 +602 829 0.400000 +602 891 0.400000 +602 955 0.400000 +602 1033 0.400000 +602 1034 0.400000 +602 1074 0.400000 +602 1097 0.400000 +602 1132 0.400000 +602 1249 0.400000 +602 1267 0.400000 +602 1296 0.400000 +602 1367 0.400000 +602 1472 0.400000 +602 1514 0.400000 +602 1537 0.400000 +602 1557 0.400000 +602 1640 0.400000 +602 1688 0.400000 +602 1797 0.400000 +602 1894 0.400000 +602 1901 0.400000 +602 1911 0.400000 +602 1970 0.400000 +602 1984 0.400000 +602 1990 0.400000 +602 2012 0.400000 +602 2018 0.400000 +602 2111 0.400000 +602 2134 0.400000 +602 2139 0.400000 +602 2219 0.400000 +602 2265 0.400000 +602 2408 0.400000 +602 2416 0.400000 +602 2474 0.400000 +602 2509 0.400000 +602 2519 0.400000 +602 2521 0.400000 +602 2578 0.400000 +602 2603 0.400000 +602 2662 0.400000 +602 2736 0.400000 +602 2760 0.400000 +602 2928 0.400000 +602 2946 0.400000 +602 2996 0.400000 +602 3004 0.400000 +602 3137 0.400000 +603 30 0.400000 +603 35 0.400000 +603 76 0.400000 +603 134 0.400000 +603 141 0.400000 +603 180 0.400000 +603 223 0.400000 +603 244 0.400000 +603 370 0.400000 +603 392 0.400000 +603 395 0.400000 +603 405 0.400000 +603 442 0.400000 +603 493 0.400000 +603 508 0.400000 +603 546 0.400000 +603 552 0.400000 +603 594 0.400000 +603 646 0.400000 +603 801 0.400000 +603 803 0.400000 +603 832 0.400000 +603 836 0.400000 +603 865 0.400000 +603 907 0.400000 +603 966 0.400000 +603 975 0.400000 +603 1147 0.400000 +603 1228 0.400000 +603 1255 0.400000 +603 1489 0.400000 +603 1509 0.400000 +603 1677 0.400000 +603 1728 0.400000 +603 1754 0.400000 +603 1760 0.400000 +603 1771 0.400000 +603 1810 0.400000 +603 1853 0.400000 +603 1934 0.400000 +603 1983 0.400000 +603 2104 0.400000 +603 2109 0.400000 +603 2132 0.400000 +603 2178 0.400000 +603 2182 0.400000 +603 2206 0.400000 +603 2280 0.400000 +603 2297 0.400000 +603 2314 0.400000 +603 2323 0.400000 +603 2376 0.400000 +603 2377 0.400000 +603 2494 0.400000 +603 2536 0.400000 +603 2542 0.400000 +603 2603 0.400000 +603 2658 0.400000 +603 2693 0.400000 +603 2711 0.400000 +603 2780 0.400000 +603 2811 0.400000 +603 2818 0.400000 +603 2913 0.400000 +603 3168 0.400000 +604 21 0.400000 +604 41 0.400000 +604 43 0.400000 +604 68 0.400000 +604 96 0.400000 +604 109 0.400000 +604 177 0.400000 +604 377 0.400000 +604 384 0.400000 +604 399 0.400000 +604 433 0.400000 +604 450 0.400000 +604 615 0.400000 +604 652 0.400000 +604 656 0.400000 +604 693 0.400000 +604 779 0.400000 +604 823 0.400000 +604 904 0.400000 +604 1011 0.400000 +604 1015 0.400000 +604 1135 0.400000 +604 1153 0.400000 +604 1262 0.400000 +604 1278 0.400000 +604 1290 0.400000 +604 1439 0.400000 +604 1523 0.400000 +604 1568 0.400000 +604 1584 0.400000 +604 1595 0.400000 +604 1604 0.400000 +604 1666 0.400000 +604 1675 0.400000 +604 1728 0.400000 +604 1741 0.400000 +604 1789 0.400000 +604 1822 0.400000 +604 1846 0.400000 +604 1852 0.400000 +604 1899 0.400000 +604 1947 0.400000 +604 1948 0.400000 +604 1965 0.400000 +604 2014 0.400000 +604 2040 0.400000 +604 2123 0.400000 +604 2163 0.400000 +604 2182 0.400000 +604 2279 0.400000 +604 2349 0.400000 +604 2436 0.400000 +604 2466 0.400000 +604 2630 0.400000 +604 2631 0.400000 +604 2645 0.400000 +604 2657 0.400000 +604 2732 0.400000 +604 2733 0.400000 +604 2743 0.400000 +604 2744 0.400000 +604 2754 0.400000 +604 2769 0.400000 +604 2860 0.400000 +604 2907 0.400000 +604 3068 0.400000 +605 85 0.400000 +605 164 0.400000 +605 174 0.400000 +605 207 0.400000 +605 251 0.400000 +605 257 0.400000 +605 269 0.400000 +605 294 0.400000 +605 384 0.400000 +605 394 0.400000 +605 430 0.400000 +605 464 0.400000 +605 699 0.400000 +605 703 0.400000 +605 749 0.400000 +605 777 0.400000 +605 993 0.400000 +605 1002 0.400000 +605 1027 0.400000 +605 1082 0.400000 +605 1135 0.400000 +605 1172 0.400000 +605 1174 0.400000 +605 1180 0.400000 +605 1380 0.400000 +605 1408 0.400000 +605 1464 0.400000 +605 1507 0.400000 +605 1535 0.400000 +605 1667 0.400000 +605 1692 0.400000 +605 1736 0.400000 +605 1800 0.400000 +605 1829 0.400000 +605 1860 0.400000 +605 1979 0.400000 +605 2083 0.400000 +605 2156 0.400000 +605 2314 0.400000 +605 2365 0.400000 +605 2423 0.400000 +605 2508 0.400000 +605 2516 0.400000 +605 2634 0.400000 +605 2661 0.400000 +605 2686 0.400000 +605 2704 0.400000 +605 2738 0.400000 +605 2744 0.400000 +605 2868 0.400000 +605 2984 0.400000 +605 2998 0.400000 +605 3072 0.400000 +605 3094 0.400000 +605 3098 0.400000 +605 3174 0.400000 +606 17 0.400000 +606 59 0.400000 +606 85 0.400000 +606 128 0.400000 +606 155 0.400000 +606 169 0.400000 +606 202 0.400000 +606 214 0.400000 +606 236 0.400000 +606 377 0.400000 +606 533 0.400000 +606 580 0.400000 +606 657 0.400000 +606 664 0.400000 +606 694 0.400000 +606 782 0.400000 +606 808 0.400000 +606 834 0.400000 +606 903 0.400000 +606 924 0.400000 +606 964 0.400000 +606 978 0.400000 +606 1090 0.400000 +606 1162 0.400000 +606 1172 0.400000 +606 1191 0.400000 +606 1217 0.400000 +606 1333 0.400000 +606 1407 0.400000 +606 1424 0.400000 +606 1480 0.400000 +606 1627 0.400000 +606 1636 0.400000 +606 1642 0.400000 +606 1649 0.400000 +606 1665 0.400000 +606 1776 0.400000 +606 1847 0.400000 +606 1924 0.400000 +606 1963 0.400000 +606 1976 0.400000 +606 1995 0.400000 +606 2072 0.400000 +606 2115 0.400000 +606 2169 0.400000 +606 2219 0.400000 +606 2267 0.400000 +606 2272 0.400000 +606 2364 0.400000 +606 2379 0.400000 +606 2477 0.400000 +606 2561 0.400000 +606 2626 0.400000 +606 2651 0.400000 +606 2690 0.400000 +606 2711 0.400000 +606 2717 0.400000 +606 2730 0.400000 +606 2764 0.400000 +606 2765 0.400000 +606 2826 0.400000 +606 2845 0.400000 +606 2900 0.400000 +606 2904 0.400000 +606 2920 0.400000 +606 2924 0.400000 +606 2934 0.400000 +606 2953 0.400000 +606 3014 0.400000 +606 3123 0.400000 +606 3139 0.400000 +606 3164 0.400000 +607 6 0.400000 +607 70 0.400000 +607 238 0.400000 +607 285 0.400000 +607 347 0.400000 +607 380 0.400000 +607 381 0.400000 +607 452 0.400000 +607 491 0.400000 +607 507 0.400000 +607 509 0.400000 +607 548 0.400000 +607 559 0.400000 +607 652 0.400000 +607 669 0.400000 +607 705 0.400000 +607 752 0.400000 +607 819 0.400000 +607 942 0.400000 +607 966 0.400000 +607 1010 0.400000 +607 1015 0.400000 +607 1131 0.400000 +607 1277 0.400000 +607 1281 0.400000 +607 1323 0.400000 +607 1353 0.400000 +607 1625 0.400000 +607 1820 0.400000 +607 2037 0.400000 +607 2038 0.400000 +607 2074 0.400000 +607 2400 0.400000 +607 2415 0.400000 +607 2529 0.400000 +607 2621 0.400000 +607 2654 0.400000 +607 2789 0.400000 +607 2897 0.400000 +607 2912 0.400000 +607 2936 0.400000 +607 2955 0.400000 +607 2998 0.400000 +607 2999 0.400000 +607 3045 0.400000 +608 124 0.400000 +608 152 0.400000 +608 351 0.400000 +608 391 0.400000 +608 462 0.400000 +608 534 0.400000 +608 576 0.400000 +608 602 0.400000 +608 676 0.400000 +608 679 0.400000 +608 698 0.400000 +608 784 0.400000 +608 792 0.400000 +608 888 0.400000 +608 1019 0.400000 +608 1083 0.400000 +608 1111 0.400000 +608 1219 0.400000 +608 1270 0.400000 +608 1286 0.400000 +608 1337 0.400000 +608 1400 0.400000 +608 1401 0.400000 +608 1406 0.400000 +608 1417 0.400000 +608 1438 0.400000 +608 1450 0.400000 +608 1465 0.400000 +608 1522 0.400000 +608 1536 0.400000 +608 1574 0.400000 +608 1676 0.400000 +608 1760 0.400000 +608 1761 0.400000 +608 1783 0.400000 +608 1861 0.400000 +608 1948 0.400000 +608 2139 0.400000 +608 2217 0.400000 +608 2244 0.400000 +608 2281 0.400000 +608 2322 0.400000 +608 2454 0.400000 +608 2475 0.400000 +608 2536 0.400000 +608 2712 0.400000 +608 2735 0.400000 +608 2749 0.400000 +608 2772 0.400000 +608 2821 0.400000 +608 2893 0.400000 +608 2912 0.400000 +608 2975 0.400000 +608 2988 0.400000 +608 2990 0.400000 +608 3001 0.400000 +608 3037 0.400000 +609 41 0.400000 +609 112 0.400000 +609 121 0.400000 +609 229 0.400000 +609 238 0.400000 +609 256 0.400000 +609 321 0.400000 +609 378 0.400000 +609 385 0.400000 +609 406 0.400000 +609 418 0.400000 +609 472 0.400000 +609 516 0.400000 +609 529 0.400000 +609 550 0.400000 +609 566 0.400000 +609 583 0.400000 +609 597 0.400000 +609 619 0.400000 +609 631 0.400000 +609 723 0.400000 +609 742 0.400000 +609 850 0.400000 +609 900 0.400000 +609 903 0.400000 +609 917 0.400000 +609 957 0.400000 +609 1029 0.400000 +609 1112 0.400000 +609 1147 0.400000 +609 1229 0.400000 +609 1253 0.400000 +609 1299 0.400000 +609 1318 0.400000 +609 1371 0.400000 +609 1376 0.400000 +609 1397 0.400000 +609 1444 0.400000 +609 1452 0.400000 +609 1498 0.400000 +609 1583 0.400000 +609 1655 0.400000 +609 1664 0.400000 +609 1702 0.400000 +609 1825 0.400000 +609 1924 0.400000 +609 1977 0.400000 +609 2004 0.400000 +609 2015 0.400000 +609 2174 0.400000 +609 2207 0.400000 +609 2215 0.400000 +609 2274 0.400000 +609 2405 0.400000 +609 2584 0.400000 +609 2622 0.400000 +609 2643 0.400000 +609 2711 0.400000 +609 2725 0.400000 +609 2739 0.400000 +609 2816 0.400000 +609 2836 0.400000 +609 2888 0.400000 +609 2957 0.400000 +609 2983 0.400000 +609 3022 0.400000 +609 3061 0.400000 +610 4 0.400000 +610 41 0.400000 +610 44 0.400000 +610 98 0.400000 +610 99 0.400000 +610 221 0.400000 +610 238 0.400000 +610 255 0.400000 +610 266 0.400000 +610 456 0.400000 +610 512 0.400000 +610 516 0.400000 +610 586 0.400000 +610 617 0.400000 +610 649 0.400000 +610 663 0.400000 +610 716 0.400000 +610 723 0.400000 +610 1015 0.400000 +610 1148 0.400000 +610 1349 0.400000 +610 1386 0.400000 +610 1425 0.400000 +610 1438 0.400000 +610 1526 0.400000 +610 1562 0.400000 +610 1737 0.400000 +610 1756 0.400000 +610 1769 0.400000 +610 1820 0.400000 +610 1826 0.400000 +610 1890 0.400000 +610 1893 0.400000 +610 1930 0.400000 +610 1943 0.400000 +610 1965 0.400000 +610 2053 0.400000 +610 2088 0.400000 +610 2159 0.400000 +610 2197 0.400000 +610 2237 0.400000 +610 2263 0.400000 +610 2266 0.400000 +610 2380 0.400000 +610 2460 0.400000 +610 2482 0.400000 +610 2529 0.400000 +610 2602 0.400000 +610 2735 0.400000 +610 2742 0.400000 +610 2914 0.400000 +610 3008 0.400000 +610 3031 0.400000 +610 3197 0.400000 +611 38 0.400000 +611 49 0.400000 +611 77 0.400000 +611 79 0.400000 +611 121 0.400000 +611 163 0.400000 +611 174 0.400000 +611 252 0.400000 +611 255 0.400000 +611 312 0.400000 +611 319 0.400000 +611 357 0.400000 +611 365 0.400000 +611 563 0.400000 +611 578 0.400000 +611 747 0.400000 +611 753 0.400000 +611 816 0.400000 +611 817 0.400000 +611 837 0.400000 +611 855 0.400000 +611 878 0.400000 +611 954 0.400000 +611 1066 0.400000 +611 1072 0.400000 +611 1198 0.400000 +611 1221 0.400000 +611 1271 0.400000 +611 1405 0.400000 +611 1432 0.400000 +611 1464 0.400000 +611 1481 0.400000 +611 1487 0.400000 +611 1582 0.400000 +611 1691 0.400000 +611 1702 0.400000 +611 1758 0.400000 +611 1781 0.400000 +611 1795 0.400000 +611 1912 0.400000 +611 1922 0.400000 +611 1931 0.400000 +611 1938 0.400000 +611 1983 0.400000 +611 2050 0.400000 +611 2087 0.400000 +611 2094 0.400000 +611 2183 0.400000 +611 2295 0.400000 +611 2335 0.400000 +611 2390 0.400000 +611 2475 0.400000 +611 2482 0.400000 +611 2495 0.400000 +611 2512 0.400000 +611 2513 0.400000 +611 2563 0.400000 +611 2606 0.400000 +611 2612 0.400000 +611 2615 0.400000 +611 2710 0.400000 +611 2722 0.400000 +611 2770 0.400000 +611 2809 0.400000 +611 2830 0.400000 +611 2911 0.400000 +611 2957 0.400000 +611 2961 0.400000 +611 3187 0.400000 +611 3199 0.400000 +612 3 0.400000 +612 36 0.400000 +612 257 0.400000 +612 325 0.400000 +612 327 0.400000 +612 331 0.400000 +612 335 0.400000 +612 384 0.400000 +612 517 0.400000 +612 557 0.400000 +612 670 0.400000 +612 680 0.400000 +612 739 0.400000 +612 746 0.400000 +612 800 0.400000 +612 831 0.400000 +612 957 0.400000 +612 971 0.400000 +612 974 0.400000 +612 987 0.400000 +612 994 0.400000 +612 1018 0.400000 +612 1051 0.400000 +612 1093 0.400000 +612 1268 0.400000 +612 1298 0.400000 +612 1343 0.400000 +612 1375 0.400000 +612 1419 0.400000 +612 1549 0.400000 +612 1577 0.400000 +612 1605 0.400000 +612 1675 0.400000 +612 1752 0.400000 +612 1926 0.400000 +612 1949 0.400000 +612 1958 0.400000 +612 2040 0.400000 +612 2151 0.400000 +612 2277 0.400000 +612 2358 0.400000 +612 2459 0.400000 +612 2489 0.400000 +612 2699 0.400000 +612 2701 0.400000 +612 2741 0.400000 +612 2785 0.400000 +612 2827 0.400000 +612 2848 0.400000 +612 2933 0.400000 +612 2966 0.400000 +612 2970 0.400000 +612 3012 0.400000 +612 3136 0.400000 +612 3197 0.400000 +613 46 0.400000 +613 70 0.400000 +613 80 0.400000 +613 87 0.400000 +613 226 0.400000 +613 258 0.400000 +613 284 0.400000 +613 291 0.400000 +613 373 0.400000 +613 426 0.400000 +613 475 0.400000 +613 620 0.400000 +613 672 0.400000 +613 682 0.400000 +613 774 0.400000 +613 835 0.400000 +613 841 0.400000 +613 903 0.400000 +613 979 0.400000 +613 1022 0.400000 +613 1078 0.400000 +613 1245 0.400000 +613 1277 0.400000 +613 1342 0.400000 +613 1385 0.400000 +613 1535 0.400000 +613 1624 0.400000 +613 1711 0.400000 +613 1738 0.400000 +613 1761 0.400000 +613 1795 0.400000 +613 1818 0.400000 +613 1841 0.400000 +613 1889 0.400000 +613 1947 0.400000 +613 2055 0.400000 +613 2091 0.400000 +613 2169 0.400000 +613 2239 0.400000 +613 2269 0.400000 +613 2284 0.400000 +613 2305 0.400000 +613 2313 0.400000 +613 2377 0.400000 +613 2399 0.400000 +613 2419 0.400000 +613 2433 0.400000 +613 2485 0.400000 +613 2530 0.400000 +613 2539 0.400000 +613 2553 0.400000 +613 2570 0.400000 +613 2670 0.400000 +613 2673 0.400000 +613 2715 0.400000 +613 2843 0.400000 +613 2845 0.400000 +613 2866 0.400000 +613 2898 0.400000 +613 2910 0.400000 +613 2961 0.400000 +613 2977 0.400000 +613 2994 0.400000 +613 3012 0.400000 +613 3031 0.400000 +613 3046 0.400000 +613 3102 0.400000 +613 3104 0.400000 +614 25 0.400000 +614 83 0.400000 +614 116 0.400000 +614 134 0.400000 +614 149 0.400000 +614 279 0.400000 +614 367 0.400000 +614 521 0.400000 +614 526 0.400000 +614 533 0.400000 +614 595 0.400000 +614 638 0.400000 +614 649 0.400000 +614 722 0.400000 +614 762 0.400000 +614 827 0.400000 +614 871 0.400000 +614 872 0.400000 +614 895 0.400000 +614 933 0.400000 +614 993 0.400000 +614 1041 0.400000 +614 1164 0.400000 +614 1187 0.400000 +614 1473 0.400000 +614 1493 0.400000 +614 1522 0.400000 +614 1544 0.400000 +614 1593 0.400000 +614 1632 0.400000 +614 1681 0.400000 +614 1703 0.400000 +614 1722 0.400000 +614 1730 0.400000 +614 1789 0.400000 +614 1924 0.400000 +614 1938 0.400000 +614 1992 0.400000 +614 1995 0.400000 +614 2001 0.400000 +614 2055 0.400000 +614 2061 0.400000 +614 2078 0.400000 +614 2224 0.400000 +614 2238 0.400000 +614 2302 0.400000 +614 2405 0.400000 +614 2521 0.400000 +614 2560 0.400000 +614 2651 0.400000 +614 2688 0.400000 +614 2964 0.400000 +614 2995 0.400000 +614 3045 0.400000 +614 3050 0.400000 +614 3061 0.400000 +614 3070 0.400000 +614 3096 0.400000 +614 3143 0.400000 +614 3178 0.400000 +614 3191 0.400000 +615 36 0.400000 +615 75 0.400000 +615 179 0.400000 +615 197 0.400000 +615 252 0.400000 +615 332 0.400000 +615 365 0.400000 +615 367 0.400000 +615 388 0.400000 +615 540 0.400000 +615 641 0.400000 +615 653 0.400000 +615 695 0.400000 +615 696 0.400000 +615 700 0.400000 +615 723 0.400000 +615 757 0.400000 +615 761 0.400000 +615 799 0.400000 +615 919 0.400000 +615 937 0.400000 +615 946 0.400000 +615 999 0.400000 +615 1013 0.400000 +615 1074 0.400000 +615 1233 0.400000 +615 1307 0.400000 +615 1316 0.400000 +615 1362 0.400000 +615 1490 0.400000 +615 1497 0.400000 +615 1502 0.400000 +615 1543 0.400000 +615 1545 0.400000 +615 1587 0.400000 +615 1592 0.400000 +615 1646 0.400000 +615 1683 0.400000 +615 1690 0.400000 +615 1783 0.400000 +615 1836 0.400000 +615 1900 0.400000 +615 1903 0.400000 +615 1920 0.400000 +615 1956 0.400000 +615 2077 0.400000 +615 2093 0.400000 +615 2111 0.400000 +615 2136 0.400000 +615 2209 0.400000 +615 2242 0.400000 +615 2249 0.400000 +615 2315 0.400000 +615 2359 0.400000 +615 2427 0.400000 +615 2460 0.400000 +615 2468 0.400000 +615 2496 0.400000 +615 2526 0.400000 +615 2545 0.400000 +615 2574 0.400000 +615 2618 0.400000 +615 2698 0.400000 +615 2834 0.400000 +615 3026 0.400000 +615 3066 0.400000 +615 3101 0.400000 +615 3111 0.400000 +615 3150 0.400000 +615 3170 0.400000 +615 3198 0.400000 +616 170 0.400000 +616 194 0.400000 +616 269 0.400000 +616 318 0.400000 +616 321 0.400000 +616 532 0.400000 +616 551 0.400000 +616 747 0.400000 +616 749 0.400000 +616 774 0.400000 +616 832 0.400000 +616 902 0.400000 +616 925 0.400000 +616 936 0.400000 +616 1084 0.400000 +616 1097 0.400000 +616 1107 0.400000 +616 1134 0.400000 +616 1214 0.400000 +616 1221 0.400000 +616 1260 0.400000 +616 1267 0.400000 +616 1276 0.400000 +616 1395 0.400000 +616 1414 0.400000 +616 1497 0.400000 +616 1584 0.400000 +616 1618 0.400000 +616 1619 0.400000 +616 1686 0.400000 +616 1762 0.400000 +616 1829 0.400000 +616 1864 0.400000 +616 1942 0.400000 +616 2016 0.400000 +616 2019 0.400000 +616 2077 0.400000 +616 2083 0.400000 +616 2161 0.400000 +616 2184 0.400000 +616 2196 0.400000 +616 2214 0.400000 +616 2226 0.400000 +616 2240 0.400000 +616 2265 0.400000 +616 2278 0.400000 +616 2311 0.400000 +616 2345 0.400000 +616 2361 0.400000 +616 2442 0.400000 +616 2454 0.400000 +616 2536 0.400000 +616 2578 0.400000 +616 2590 0.400000 +616 2633 0.400000 +616 2642 0.400000 +616 2868 0.400000 +616 2978 0.400000 +616 3000 0.400000 +616 3109 0.400000 +616 3177 0.400000 +617 71 0.400000 +617 112 0.400000 +617 123 0.400000 +617 127 0.400000 +617 135 0.400000 +617 173 0.400000 +617 201 0.400000 +617 207 0.400000 +617 340 0.400000 +617 353 0.400000 +617 364 0.400000 +617 367 0.400000 +617 395 0.400000 +617 511 0.400000 +617 546 0.400000 +617 605 0.400000 +617 688 0.400000 +617 801 0.400000 +617 808 0.400000 +617 823 0.400000 +617 855 0.400000 +617 857 0.400000 +617 860 0.400000 +617 889 0.400000 +617 961 0.400000 +617 1009 0.400000 +617 1122 0.400000 +617 1218 0.400000 +617 1260 0.400000 +617 1318 0.400000 +617 1326 0.400000 +617 1374 0.400000 +617 1463 0.400000 +617 1483 0.400000 +617 1501 0.400000 +617 1545 0.400000 +617 1568 0.400000 +617 1587 0.400000 +617 1597 0.400000 +617 1647 0.400000 +617 1677 0.400000 +617 1678 0.400000 +617 1686 0.400000 +617 1745 0.400000 +617 1778 0.400000 +617 1817 0.400000 +617 1838 0.400000 +617 1919 0.400000 +617 2193 0.400000 +617 2211 0.400000 +617 2331 0.400000 +617 2432 0.400000 +617 2469 0.400000 +617 2480 0.400000 +617 2496 0.400000 +617 2801 0.400000 +617 2827 0.400000 +617 2828 0.400000 +617 2869 0.400000 +617 2984 0.400000 +617 3038 0.400000 +618 1 0.400000 +618 15 0.400000 +618 20 0.400000 +618 40 0.400000 +618 106 0.400000 +618 205 0.400000 +618 292 0.400000 +618 313 0.400000 +618 397 0.400000 +618 445 0.400000 +618 461 0.400000 +618 477 0.400000 +618 512 0.400000 +618 614 0.400000 +618 623 0.400000 +618 628 0.400000 +618 647 0.400000 +618 717 0.400000 +618 734 0.400000 +618 736 0.400000 +618 757 0.400000 +618 758 0.400000 +618 775 0.400000 +618 787 0.400000 +618 796 0.400000 +618 854 0.400000 +618 977 0.400000 +618 998 0.400000 +618 1047 0.400000 +618 1062 0.400000 +618 1075 0.400000 +618 1126 0.400000 +618 1169 0.400000 +618 1280 0.400000 +618 1335 0.400000 +618 1336 0.400000 +618 1370 0.400000 +618 1377 0.400000 +618 1390 0.400000 +618 1408 0.400000 +618 1409 0.400000 +618 1483 0.400000 +618 1561 0.400000 +618 1583 0.400000 +618 1615 0.400000 +618 1649 0.400000 +618 1698 0.400000 +618 1715 0.400000 +618 1716 0.400000 +618 1736 0.400000 +618 1789 0.400000 +618 1858 0.400000 +618 1869 0.400000 +618 1917 0.400000 +618 2009 0.400000 +618 2126 0.400000 +618 2245 0.400000 +618 2351 0.400000 +618 2353 0.400000 +618 2437 0.400000 +618 2479 0.400000 +618 2508 0.400000 +618 2516 0.400000 +618 2533 0.400000 +618 2543 0.400000 +618 2634 0.400000 +618 2681 0.400000 +618 2701 0.400000 +618 2747 0.400000 +618 2750 0.400000 +618 2799 0.400000 +618 2804 0.400000 +618 2842 0.400000 +618 2869 0.400000 +618 2870 0.400000 +618 2947 0.400000 +618 2961 0.400000 +618 3004 0.400000 +618 3028 0.400000 +618 3055 0.400000 +618 3074 0.400000 +618 3075 0.400000 +618 3092 0.400000 +618 3156 0.400000 +618 3180 0.400000 +618 3188 0.400000 +619 8 0.400000 +619 43 0.400000 +619 261 0.400000 +619 418 0.400000 +619 427 0.400000 +619 429 0.400000 +619 430 0.400000 +619 432 0.400000 +619 471 0.400000 +619 535 0.400000 +619 546 0.400000 +619 620 0.400000 +619 694 0.400000 +619 708 0.400000 +619 795 0.400000 +619 927 0.400000 +619 986 0.400000 +619 1138 0.400000 +619 1144 0.400000 +619 1175 0.400000 +619 1181 0.400000 +619 1201 0.400000 +619 1228 0.400000 +619 1250 0.400000 +619 1302 0.400000 +619 1310 0.400000 +619 1332 0.400000 +619 1393 0.400000 +619 1404 0.400000 +619 1405 0.400000 +619 1428 0.400000 +619 1442 0.400000 +619 1583 0.400000 +619 1596 0.400000 +619 1642 0.400000 +619 1737 0.400000 +619 1817 0.400000 +619 1846 0.400000 +619 1943 0.400000 +619 1957 0.400000 +619 2010 0.400000 +619 2092 0.400000 +619 2273 0.400000 +619 2385 0.400000 +619 2461 0.400000 +619 2492 0.400000 +619 2501 0.400000 +619 2582 0.400000 +619 2608 0.400000 +619 2632 0.400000 +619 2643 0.400000 +619 2646 0.400000 +619 2696 0.400000 +619 2785 0.400000 +619 2789 0.400000 +619 2839 0.400000 +619 2854 0.400000 +619 2875 0.400000 +619 2879 0.400000 +619 2893 0.400000 +619 2943 0.400000 +619 2977 0.400000 +619 3023 0.400000 +619 3055 0.400000 +619 3088 0.400000 +619 3114 0.400000 +620 16 0.400000 +620 39 0.400000 +620 127 0.400000 +620 142 0.400000 +620 204 0.400000 +620 218 0.400000 +620 280 0.400000 +620 337 0.400000 +620 395 0.400000 +620 459 0.400000 +620 486 0.400000 +620 506 0.400000 +620 588 0.400000 +620 600 0.400000 +620 610 0.400000 +620 806 0.400000 +620 903 0.400000 +620 936 0.400000 +620 937 0.400000 +620 1080 0.400000 +620 1271 0.400000 +620 1315 0.400000 +620 1349 0.400000 +620 1374 0.400000 +620 1473 0.400000 +620 1513 0.400000 +620 1538 0.400000 +620 1737 0.400000 +620 1754 0.400000 +620 1807 0.400000 +620 1887 0.400000 +620 1906 0.400000 +620 1924 0.400000 +620 2046 0.400000 +620 2112 0.400000 +620 2121 0.400000 +620 2124 0.400000 +620 2175 0.400000 +620 2327 0.400000 +620 2360 0.400000 +620 2379 0.400000 +620 2392 0.400000 +620 2469 0.400000 +620 2481 0.400000 +620 2518 0.400000 +620 2551 0.400000 +620 2622 0.400000 +620 2637 0.400000 +620 2672 0.400000 +620 2682 0.400000 +620 2703 0.400000 +620 2831 0.400000 +620 2891 0.400000 +620 2935 0.400000 +620 2938 0.400000 +620 3126 0.400000 +620 3159 0.400000 +621 9 0.400000 +621 16 0.400000 +621 33 0.400000 +621 216 0.400000 +621 326 0.400000 +621 337 0.400000 +621 491 0.400000 +621 499 0.400000 +621 512 0.400000 +621 516 0.400000 +621 575 0.400000 +621 593 0.400000 +621 661 0.400000 +621 666 0.400000 +621 876 0.400000 +621 882 0.400000 +621 915 0.400000 +621 1021 0.400000 +621 1051 0.400000 +621 1096 0.400000 +621 1138 0.400000 +621 1173 0.400000 +621 1175 0.400000 +621 1204 0.400000 +621 1212 0.400000 +621 1384 0.400000 +621 1445 0.400000 +621 1489 0.400000 +621 1501 0.400000 +621 1646 0.400000 +621 1657 0.400000 +621 1729 0.400000 +621 1779 0.400000 +621 1783 0.400000 +621 1816 0.400000 +621 1834 0.400000 +621 1933 0.400000 +621 1941 0.400000 +621 1985 0.400000 +621 2011 0.400000 +621 2156 0.400000 +621 2200 0.400000 +621 2244 0.400000 +621 2343 0.400000 +621 2359 0.400000 +621 2366 0.400000 +621 2367 0.400000 +621 2377 0.400000 +621 2419 0.400000 +621 2439 0.400000 +621 2464 0.400000 +621 2496 0.400000 +621 2504 0.400000 +621 2554 0.400000 +621 2571 0.400000 +621 2599 0.400000 +621 2800 0.400000 +621 2849 0.400000 +621 2896 0.400000 +621 2914 0.400000 +621 2923 0.400000 +621 2960 0.400000 +621 3152 0.400000 +622 3 0.400000 +622 7 0.400000 +622 195 0.400000 +622 231 0.400000 +622 256 0.400000 +622 322 0.400000 +622 395 0.400000 +622 454 0.400000 +622 462 0.400000 +622 476 0.400000 +622 505 0.400000 +622 515 0.400000 +622 553 0.400000 +622 580 0.400000 +622 728 0.400000 +622 783 0.400000 +622 819 0.400000 +622 865 0.400000 +622 876 0.400000 +622 880 0.400000 +622 902 0.400000 +622 928 0.400000 +622 933 0.400000 +622 934 0.400000 +622 1023 0.400000 +622 1085 0.400000 +622 1106 0.400000 +622 1125 0.400000 +622 1129 0.400000 +622 1142 0.400000 +622 1157 0.400000 +622 1163 0.400000 +622 1246 0.400000 +622 1247 0.400000 +622 1248 0.400000 +622 1303 0.400000 +622 1415 0.400000 +622 1426 0.400000 +622 1430 0.400000 +622 1499 0.400000 +622 1548 0.400000 +622 1575 0.400000 +622 1615 0.400000 +622 1653 0.400000 +622 1657 0.400000 +622 1662 0.400000 +622 1679 0.400000 +622 1789 0.400000 +622 1821 0.400000 +622 1857 0.400000 +622 1924 0.400000 +622 1959 0.400000 +622 1968 0.400000 +622 1989 0.400000 +622 2011 0.400000 +622 2015 0.400000 +622 2025 0.400000 +622 2128 0.400000 +622 2220 0.400000 +622 2226 0.400000 +622 2229 0.400000 +622 2250 0.400000 +622 2265 0.400000 +622 2314 0.400000 +622 2317 0.400000 +622 2357 0.400000 +622 2360 0.400000 +622 2419 0.400000 +622 2432 0.400000 +622 2585 0.400000 +622 2606 0.400000 +622 2836 0.400000 +622 2926 0.400000 +622 2930 0.400000 +622 2946 0.400000 +622 3009 0.400000 +622 3136 0.400000 +622 3196 0.400000 +623 14 0.400000 +623 22 0.400000 +623 35 0.400000 +623 56 0.400000 +623 103 0.400000 +623 105 0.400000 +623 158 0.400000 +623 186 0.400000 +623 242 0.400000 +623 306 0.400000 +623 317 0.400000 +623 374 0.400000 +623 494 0.400000 +623 564 0.400000 +623 574 0.400000 +623 617 0.400000 +623 619 0.400000 +623 636 0.400000 +623 690 0.400000 +623 707 0.400000 +623 732 0.400000 +623 747 0.400000 +623 781 0.400000 +623 798 0.400000 +623 812 0.400000 +623 819 0.400000 +623 853 0.400000 +623 893 0.400000 +623 909 0.400000 +623 976 0.400000 +623 1015 0.400000 +623 1139 0.400000 +623 1193 0.400000 +623 1307 0.400000 +623 1400 0.400000 +623 1452 0.400000 +623 1611 0.400000 +623 1613 0.400000 +623 1622 0.400000 +623 1628 0.400000 +623 1780 0.400000 +623 1798 0.400000 +623 1843 0.400000 +623 1849 0.400000 +623 1935 0.400000 +623 1943 0.400000 +623 2002 0.400000 +623 2076 0.400000 +623 2110 0.400000 +623 2166 0.400000 +623 2168 0.400000 +623 2177 0.400000 +623 2220 0.400000 +623 2258 0.400000 +623 2298 0.400000 +623 2310 0.400000 +623 2325 0.400000 +623 2420 0.400000 +623 2438 0.400000 +623 2531 0.400000 +623 2607 0.400000 +623 2664 0.400000 +623 2704 0.400000 +623 2712 0.400000 +623 2771 0.400000 +623 2837 0.400000 +623 2840 0.400000 +623 2917 0.400000 +623 2924 0.400000 +623 3016 0.400000 +623 3059 0.400000 +623 3150 0.400000 +623 3156 0.400000 +623 3162 0.400000 +623 3184 0.400000 +623 3193 0.400000 +624 38 0.400000 +624 126 0.400000 +624 256 0.400000 +624 274 0.400000 +624 326 0.400000 +624 335 0.400000 +624 383 0.400000 +624 386 0.400000 +624 395 0.400000 +624 410 0.400000 +624 509 0.400000 +624 573 0.400000 +624 580 0.400000 +624 664 0.400000 +624 670 0.400000 +624 724 0.400000 +624 749 0.400000 +624 772 0.400000 +624 775 0.400000 +624 816 0.400000 +624 866 0.400000 +624 902 0.400000 +624 972 0.400000 +624 981 0.400000 +624 1170 0.400000 +624 1276 0.400000 +624 1396 0.400000 +624 1414 0.400000 +624 1454 0.400000 +624 1498 0.400000 +624 1504 0.400000 +624 1534 0.400000 +624 1542 0.400000 +624 1667 0.400000 +624 1689 0.400000 +624 1756 0.400000 +624 1762 0.400000 +624 1812 0.400000 +624 1891 0.400000 +624 1949 0.400000 +624 1961 0.400000 +624 1978 0.400000 +624 1993 0.400000 +624 2061 0.400000 +624 2066 0.400000 +624 2096 0.400000 +624 2105 0.400000 +624 2152 0.400000 +624 2168 0.400000 +624 2184 0.400000 +624 2287 0.400000 +624 2328 0.400000 +624 2362 0.400000 +624 2373 0.400000 +624 2428 0.400000 +624 2463 0.400000 +624 2523 0.400000 +624 2541 0.400000 +624 2571 0.400000 +624 2613 0.400000 +624 2647 0.400000 +624 2652 0.400000 +624 2686 0.400000 +624 2698 0.400000 +624 2765 0.400000 +624 2772 0.400000 +624 2829 0.400000 +624 2940 0.400000 +624 3119 0.400000 +624 3146 0.400000 +625 22 0.400000 +625 49 0.400000 +625 56 0.400000 +625 59 0.400000 +625 69 0.400000 +625 85 0.400000 +625 140 0.400000 +625 211 0.400000 +625 240 0.400000 +625 256 0.400000 +625 262 0.400000 +625 284 0.400000 +625 472 0.400000 +625 482 0.400000 +625 513 0.400000 +625 559 0.400000 +625 677 0.400000 +625 693 0.400000 +625 723 0.400000 +625 806 0.400000 +625 833 0.400000 +625 863 0.400000 +625 899 0.400000 +625 954 0.400000 +625 979 0.400000 +625 1160 0.400000 +625 1162 0.400000 +625 1171 0.400000 +625 1215 0.400000 +625 1248 0.400000 +625 1252 0.400000 +625 1262 0.400000 +625 1266 0.400000 +625 1356 0.400000 +625 1421 0.400000 +625 1592 0.400000 +625 1626 0.400000 +625 1663 0.400000 +625 1771 0.400000 +625 1772 0.400000 +625 1808 0.400000 +625 1863 0.400000 +625 1879 0.400000 +625 1882 0.400000 +625 1888 0.400000 +625 1912 0.400000 +625 1919 0.400000 +625 1985 0.400000 +625 2003 0.400000 +625 2112 0.400000 +625 2138 0.400000 +625 2252 0.400000 +625 2254 0.400000 +625 2450 0.400000 +625 2542 0.400000 +625 2602 0.400000 +625 2678 0.400000 +625 2722 0.400000 +625 2752 0.400000 +625 2865 0.400000 +625 2948 0.400000 +625 3054 0.400000 +625 3119 0.400000 +625 3153 0.400000 +625 3162 0.400000 +626 35 0.400000 +626 112 0.400000 +626 129 0.400000 +626 145 0.400000 +626 222 0.400000 +626 250 0.400000 +626 271 0.400000 +626 284 0.400000 +626 299 0.400000 +626 343 0.400000 +626 400 0.400000 +626 401 0.400000 +626 416 0.400000 +626 485 0.400000 +626 502 0.400000 +626 515 0.400000 +626 622 0.400000 +626 711 0.400000 +626 773 0.400000 +626 784 0.400000 +626 785 0.400000 +626 791 0.400000 +626 809 0.400000 +626 815 0.400000 +626 961 0.400000 +626 985 0.400000 +626 1074 0.400000 +626 1110 0.400000 +626 1134 0.400000 +626 1172 0.400000 +626 1208 0.400000 +626 1242 0.400000 +626 1263 0.400000 +626 1343 0.400000 +626 1365 0.400000 +626 1388 0.400000 +626 1456 0.400000 +626 1457 0.400000 +626 1500 0.400000 +626 1515 0.400000 +626 1547 0.400000 +626 1571 0.400000 +626 1634 0.400000 +626 1640 0.400000 +626 1657 0.400000 +626 1740 0.400000 +626 1785 0.400000 +626 1913 0.400000 +626 1918 0.400000 +626 2025 0.400000 +626 2037 0.400000 +626 2042 0.400000 +626 2116 0.400000 +626 2163 0.400000 +626 2171 0.400000 +626 2254 0.400000 +626 2260 0.400000 +626 2273 0.400000 +626 2325 0.400000 +626 2361 0.400000 +626 2398 0.400000 +626 2413 0.400000 +626 2437 0.400000 +626 2449 0.400000 +626 2464 0.400000 +626 2564 0.400000 +626 2613 0.400000 +626 2642 0.400000 +626 2741 0.400000 +626 2914 0.400000 +626 2921 0.400000 +626 2960 0.400000 +626 2966 0.400000 +626 3051 0.400000 +626 3054 0.400000 +626 3094 0.400000 +626 3118 0.400000 +626 3121 0.400000 +626 3162 0.400000 +627 88 0.400000 +627 335 0.400000 +627 345 0.400000 +627 443 0.400000 +627 582 0.400000 +627 794 0.400000 +627 884 0.400000 +627 895 0.400000 +627 936 0.400000 +627 995 0.400000 +627 1062 0.400000 +627 1078 0.400000 +627 1089 0.400000 +627 1117 0.400000 +627 1153 0.400000 +627 1252 0.400000 +627 1315 0.400000 +627 1368 0.400000 +627 1375 0.400000 +627 1511 0.400000 +627 1860 0.400000 +627 1893 0.400000 +627 1932 0.400000 +627 1957 0.400000 +627 1960 0.400000 +627 1996 0.400000 +627 2024 0.400000 +627 2026 0.400000 +627 2087 0.400000 +627 2163 0.400000 +627 2196 0.400000 +627 2208 0.400000 +627 2214 0.400000 +627 2225 0.400000 +627 2253 0.400000 +627 2381 0.400000 +627 2413 0.400000 +627 2555 0.400000 +627 2586 0.400000 +627 2637 0.400000 +627 2661 0.400000 +627 2662 0.400000 +627 2688 0.400000 +627 2796 0.400000 +627 2875 0.400000 +627 3023 0.400000 +627 3039 0.400000 +627 3098 0.400000 +627 3113 0.400000 +628 11 0.400000 +628 127 0.400000 +628 414 0.400000 +628 487 0.400000 +628 492 0.400000 +628 535 0.400000 +628 616 0.400000 +628 641 0.400000 +628 667 0.400000 +628 729 0.400000 +628 739 0.400000 +628 746 0.400000 +628 806 0.400000 +628 856 0.400000 +628 934 0.400000 +628 981 0.400000 +628 1002 0.400000 +628 1062 0.400000 +628 1078 0.400000 +628 1107 0.400000 +628 1151 0.400000 +628 1286 0.400000 +628 1355 0.400000 +628 1370 0.400000 +628 1516 0.400000 +628 1546 0.400000 +628 1618 0.400000 +628 1623 0.400000 +628 1669 0.400000 +628 1698 0.400000 +628 1755 0.400000 +628 1775 0.400000 +628 1829 0.400000 +628 1840 0.400000 +628 1861 0.400000 +628 1889 0.400000 +628 1962 0.400000 +628 2002 0.400000 +628 2022 0.400000 +628 2024 0.400000 +628 2025 0.400000 +628 2076 0.400000 +628 2129 0.400000 +628 2137 0.400000 +628 2193 0.400000 +628 2214 0.400000 +628 2294 0.400000 +628 2350 0.400000 +628 2390 0.400000 +628 2418 0.400000 +628 2454 0.400000 +628 2457 0.400000 +628 2477 0.400000 +628 2484 0.400000 +628 2520 0.400000 +628 2522 0.400000 +628 2591 0.400000 +628 2618 0.400000 +628 2686 0.400000 +628 2692 0.400000 +628 2712 0.400000 +628 2761 0.400000 +628 2794 0.400000 +628 2799 0.400000 +628 2804 0.400000 +628 2806 0.400000 +628 2901 0.400000 +628 2939 0.400000 +628 2977 0.400000 +628 2979 0.400000 +628 3036 0.400000 +628 3040 0.400000 +628 3173 0.400000 +629 137 0.400000 +629 148 0.400000 +629 153 0.400000 +629 231 0.400000 +629 240 0.400000 +629 256 0.400000 +629 276 0.400000 +629 314 0.400000 +629 369 0.400000 +629 385 0.400000 +629 587 0.400000 +629 674 0.400000 +629 715 0.400000 +629 749 0.400000 +629 766 0.400000 +629 771 0.400000 +629 838 0.400000 +629 883 0.400000 +629 917 0.400000 +629 931 0.400000 +629 950 0.400000 +629 987 0.400000 +629 1184 0.400000 +629 1225 0.400000 +629 1293 0.400000 +629 1346 0.400000 +629 1413 0.400000 +629 1455 0.400000 +629 1461 0.400000 +629 1598 0.400000 +629 1608 0.400000 +629 1623 0.400000 +629 1639 0.400000 +629 1650 0.400000 +629 1711 0.400000 +629 1717 0.400000 +629 1775 0.400000 +629 1888 0.400000 +629 1904 0.400000 +629 1928 0.400000 +629 1978 0.400000 +629 1994 0.400000 +629 1995 0.400000 +629 2099 0.400000 +629 2159 0.400000 +629 2192 0.400000 +629 2222 0.400000 +629 2244 0.400000 +629 2308 0.400000 +629 2321 0.400000 +629 2331 0.400000 +629 2345 0.400000 +629 2348 0.400000 +629 2464 0.400000 +629 2477 0.400000 +629 2481 0.400000 +629 2619 0.400000 +629 2663 0.400000 +629 2792 0.400000 +629 2910 0.400000 +629 2919 0.400000 +629 3027 0.400000 +629 3111 0.400000 +629 3138 0.400000 +629 3145 0.400000 +630 9 0.400000 +630 50 0.400000 +630 139 0.400000 +630 208 0.400000 +630 291 0.400000 +630 306 0.400000 +630 311 0.400000 +630 394 0.400000 +630 421 0.400000 +630 440 0.400000 +630 463 0.400000 +630 472 0.400000 +630 515 0.400000 +630 592 0.400000 +630 619 0.400000 +630 659 0.400000 +630 681 0.400000 +630 706 0.400000 +630 808 0.400000 +630 813 0.400000 +630 875 0.400000 +630 989 0.400000 +630 993 0.400000 +630 1056 0.400000 +630 1199 0.400000 +630 1219 0.400000 +630 1323 0.400000 +630 1392 0.400000 +630 1443 0.400000 +630 1667 0.400000 +630 1726 0.400000 +630 1734 0.400000 +630 1746 0.400000 +630 1749 0.400000 +630 1793 0.400000 +630 1807 0.400000 +630 1848 0.400000 +630 2022 0.400000 +630 2059 0.400000 +630 2096 0.400000 +630 2106 0.400000 +630 2123 0.400000 +630 2197 0.400000 +630 2237 0.400000 +630 2275 0.400000 +630 2280 0.400000 +630 2286 0.400000 +630 2325 0.400000 +630 2339 0.400000 +630 2343 0.400000 +630 2381 0.400000 +630 2466 0.400000 +630 2467 0.400000 +630 2478 0.400000 +630 2523 0.400000 +630 2525 0.400000 +630 2635 0.400000 +630 2682 0.400000 +630 2692 0.400000 +630 2703 0.400000 +630 2745 0.400000 +630 2804 0.400000 +630 2830 0.400000 +630 2893 0.400000 +630 2898 0.400000 +630 2937 0.400000 +630 2943 0.400000 +630 2951 0.400000 +630 3124 0.400000 +630 3171 0.400000 +631 116 0.400000 +631 150 0.400000 +631 173 0.400000 +631 187 0.400000 +631 208 0.400000 +631 314 0.400000 +631 333 0.400000 +631 349 0.400000 +631 423 0.400000 +631 485 0.400000 +631 487 0.400000 +631 493 0.400000 +631 606 0.400000 +631 713 0.400000 +631 725 0.400000 +631 807 0.400000 +631 840 0.400000 +631 863 0.400000 +631 1017 0.400000 +631 1080 0.400000 +631 1171 0.400000 +631 1203 0.400000 +631 1211 0.400000 +631 1217 0.400000 +631 1250 0.400000 +631 1313 0.400000 +631 1407 0.400000 +631 1501 0.400000 +631 1601 0.400000 +631 1624 0.400000 +631 1697 0.400000 +631 1722 0.400000 +631 1768 0.400000 +631 1866 0.400000 +631 1900 0.400000 +631 1933 0.400000 +631 1944 0.400000 +631 1962 0.400000 +631 2002 0.400000 +631 2006 0.400000 +631 2082 0.400000 +631 2117 0.400000 +631 2192 0.400000 +631 2207 0.400000 +631 2260 0.400000 +631 2293 0.400000 +631 2314 0.400000 +631 2317 0.400000 +631 2321 0.400000 +631 2404 0.400000 +631 2473 0.400000 +631 2574 0.400000 +631 2789 0.400000 +631 2859 0.400000 +631 2925 0.400000 +631 2935 0.400000 +631 2984 0.400000 +631 2994 0.400000 +631 3001 0.400000 +631 3070 0.400000 +631 3144 0.400000 +631 3199 0.400000 +632 90 0.400000 +632 146 0.400000 +632 245 0.400000 +632 264 0.400000 +632 340 0.400000 +632 348 0.400000 +632 363 0.400000 +632 381 0.400000 +632 506 0.400000 +632 524 0.400000 +632 529 0.400000 +632 575 0.400000 +632 644 0.400000 +632 679 0.400000 +632 711 0.400000 +632 763 0.400000 +632 779 0.400000 +632 787 0.400000 +632 827 0.400000 +632 924 0.400000 +632 977 0.400000 +632 1048 0.400000 +632 1052 0.400000 +632 1057 0.400000 +632 1082 0.400000 +632 1216 0.400000 +632 1323 0.400000 +632 1325 0.400000 +632 1355 0.400000 +632 1362 0.400000 +632 1432 0.400000 +632 1472 0.400000 +632 1616 0.400000 +632 1623 0.400000 +632 1661 0.400000 +632 1725 0.400000 +632 1735 0.400000 +632 1745 0.400000 +632 1750 0.400000 +632 1854 0.400000 +632 1894 0.400000 +632 1912 0.400000 +632 1974 0.400000 +632 2035 0.400000 +632 2041 0.400000 +632 2105 0.400000 +632 2136 0.400000 +632 2138 0.400000 +632 2212 0.400000 +632 2303 0.400000 +632 2403 0.400000 +632 2439 0.400000 +632 2510 0.400000 +632 2528 0.400000 +632 2532 0.400000 +632 2713 0.400000 +632 2733 0.400000 +632 2781 0.400000 +632 2795 0.400000 +632 2832 0.400000 +632 2848 0.400000 +632 2953 0.400000 +632 2966 0.400000 +632 2969 0.400000 +632 2976 0.400000 +632 3075 0.400000 +632 3140 0.400000 +632 3191 0.400000 +633 10 0.400000 +633 17 0.400000 +633 25 0.400000 +633 79 0.400000 +633 92 0.400000 +633 111 0.400000 +633 218 0.400000 +633 272 0.400000 +633 399 0.400000 +633 416 0.400000 +633 585 0.400000 +633 592 0.400000 +633 608 0.400000 +633 627 0.400000 +633 711 0.400000 +633 861 0.400000 +633 893 0.400000 +633 903 0.400000 +633 919 0.400000 +633 924 0.400000 +633 956 0.400000 +633 984 0.400000 +633 1188 0.400000 +633 1239 0.400000 +633 1418 0.400000 +633 1447 0.400000 +633 1469 0.400000 +633 1544 0.400000 +633 1572 0.400000 +633 1610 0.400000 +633 1642 0.400000 +633 1646 0.400000 +633 1699 0.400000 +633 1806 0.400000 +633 1819 0.400000 +633 1847 0.400000 +633 1899 0.400000 +633 1942 0.400000 +633 1959 0.400000 +633 2001 0.400000 +633 2051 0.400000 +633 2145 0.400000 +633 2193 0.400000 +633 2295 0.400000 +633 2356 0.400000 +633 2397 0.400000 +633 2480 0.400000 +633 2519 0.400000 +633 2523 0.400000 +633 2658 0.400000 +633 2669 0.400000 +633 2671 0.400000 +633 2705 0.400000 +633 2754 0.400000 +633 2843 0.400000 +633 2922 0.400000 +633 2930 0.400000 +633 3064 0.400000 +634 25 0.400000 +634 51 0.400000 +634 162 0.400000 +634 169 0.400000 +634 176 0.400000 +634 187 0.400000 +634 226 0.400000 +634 296 0.400000 +634 325 0.400000 +634 338 0.400000 +634 388 0.400000 +634 425 0.400000 +634 509 0.400000 +634 510 0.400000 +634 634 0.400000 +634 644 0.400000 +634 654 0.400000 +634 706 0.400000 +634 776 0.400000 +634 836 0.400000 +634 853 0.400000 +634 910 0.400000 +634 1034 0.400000 +634 1056 0.400000 +634 1072 0.400000 +634 1212 0.400000 +634 1294 0.400000 +634 1374 0.400000 +634 1443 0.400000 +634 1451 0.400000 +634 1484 0.400000 +634 1488 0.400000 +634 1539 0.400000 +634 1544 0.400000 +634 1588 0.400000 +634 1678 0.400000 +634 1683 0.400000 +634 1804 0.400000 +634 1823 0.400000 +634 1838 0.400000 +634 1864 0.400000 +634 1871 0.400000 +634 1963 0.400000 +634 2116 0.400000 +634 2124 0.400000 +634 2127 0.400000 +634 2154 0.400000 +634 2196 0.400000 +634 2259 0.400000 +634 2335 0.400000 +634 2387 0.400000 +634 2406 0.400000 +634 2417 0.400000 +634 2461 0.400000 +634 2530 0.400000 +634 2585 0.400000 +634 2643 0.400000 +634 2646 0.400000 +634 2706 0.400000 +634 2708 0.400000 +634 2713 0.400000 +634 2740 0.400000 +634 2751 0.400000 +634 2823 0.400000 +634 2879 0.400000 +634 2918 0.400000 +634 2958 0.400000 +634 3148 0.400000 +634 3153 0.400000 +634 3155 0.400000 +635 81 0.400000 +635 84 0.400000 +635 206 0.400000 +635 248 0.400000 +635 273 0.400000 +635 289 0.400000 +635 300 0.400000 +635 306 0.400000 +635 325 0.400000 +635 426 0.400000 +635 459 0.400000 +635 538 0.400000 +635 590 0.400000 +635 642 0.400000 +635 666 0.400000 +635 689 0.400000 +635 752 0.400000 +635 765 0.400000 +635 814 0.400000 +635 865 0.400000 +635 945 0.400000 +635 988 0.400000 +635 1040 0.400000 +635 1087 0.400000 +635 1184 0.400000 +635 1215 0.400000 +635 1261 0.400000 +635 1304 0.400000 +635 1354 0.400000 +635 1411 0.400000 +635 1448 0.400000 +635 1471 0.400000 +635 1552 0.400000 +635 1740 0.400000 +635 1753 0.400000 +635 1776 0.400000 +635 1805 0.400000 +635 1832 0.400000 +635 1993 0.400000 +635 2011 0.400000 +635 2030 0.400000 +635 2050 0.400000 +635 2108 0.400000 +635 2156 0.400000 +635 2167 0.400000 +635 2235 0.400000 +635 2378 0.400000 +635 2382 0.400000 +635 2421 0.400000 +635 2511 0.400000 +635 2583 0.400000 +635 2671 0.400000 +635 2678 0.400000 +635 2695 0.400000 +635 2763 0.400000 +635 2768 0.400000 +635 2773 0.400000 +635 2835 0.400000 +635 2894 0.400000 +635 3029 0.400000 +635 3078 0.400000 +635 3126 0.400000 +635 3179 0.400000 +636 59 0.400000 +636 64 0.400000 +636 201 0.400000 +636 398 0.400000 +636 430 0.400000 +636 455 0.400000 +636 494 0.400000 +636 499 0.400000 +636 514 0.400000 +636 522 0.400000 +636 629 0.400000 +636 664 0.400000 +636 785 0.400000 +636 906 0.400000 +636 945 0.400000 +636 985 0.400000 +636 1019 0.400000 +636 1034 0.400000 +636 1061 0.400000 +636 1066 0.400000 +636 1073 0.400000 +636 1094 0.400000 +636 1149 0.400000 +636 1238 0.400000 +636 1250 0.400000 +636 1253 0.400000 +636 1320 0.400000 +636 1327 0.400000 +636 1336 0.400000 +636 1337 0.400000 +636 1368 0.400000 +636 1374 0.400000 +636 1635 0.400000 +636 1675 0.400000 +636 1697 0.400000 +636 1738 0.400000 +636 1772 0.400000 +636 1864 0.400000 +636 1914 0.400000 +636 1940 0.400000 +636 1972 0.400000 +636 1974 0.400000 +636 2015 0.400000 +636 2051 0.400000 +636 2083 0.400000 +636 2092 0.400000 +636 2093 0.400000 +636 2363 0.400000 +636 2405 0.400000 +636 2444 0.400000 +636 2459 0.400000 +636 2535 0.400000 +636 2544 0.400000 +636 2553 0.400000 +636 2622 0.400000 +636 2641 0.400000 +636 2654 0.400000 +636 2755 0.400000 +636 2779 0.400000 +636 2908 0.400000 +636 2979 0.400000 +636 2995 0.400000 +636 3029 0.400000 +636 3048 0.400000 +636 3071 0.400000 +636 3132 0.400000 +636 3150 0.400000 +636 3184 0.400000 +637 46 0.400000 +637 98 0.400000 +637 102 0.400000 +637 103 0.400000 +637 118 0.400000 +637 120 0.400000 +637 224 0.400000 +637 275 0.400000 +637 327 0.400000 +637 328 0.400000 +637 433 0.400000 +637 494 0.400000 +637 543 0.400000 +637 615 0.400000 +637 858 0.400000 +637 869 0.400000 +637 871 0.400000 +637 873 0.400000 +637 899 0.400000 +637 965 0.400000 +637 972 0.400000 +637 981 0.400000 +637 994 0.400000 +637 1048 0.400000 +637 1070 0.400000 +637 1084 0.400000 +637 1144 0.400000 +637 1338 0.400000 +637 1358 0.400000 +637 1361 0.400000 +637 1368 0.400000 +637 1418 0.400000 +637 1446 0.400000 +637 1450 0.400000 +637 1454 0.400000 +637 1491 0.400000 +637 1493 0.400000 +637 1591 0.400000 +637 1595 0.400000 +637 1626 0.400000 +637 1638 0.400000 +637 1753 0.400000 +637 1790 0.400000 +637 1814 0.400000 +637 1879 0.400000 +637 1917 0.400000 +637 2014 0.400000 +637 2293 0.400000 +637 2312 0.400000 +637 2318 0.400000 +637 2456 0.400000 +637 2467 0.400000 +637 2485 0.400000 +637 2637 0.400000 +637 2756 0.400000 +637 2773 0.400000 +637 2792 0.400000 +637 2819 0.400000 +637 2880 0.400000 +637 2896 0.400000 +637 2920 0.400000 +637 2925 0.400000 +637 2991 0.400000 +637 3066 0.400000 +637 3081 0.400000 +637 3112 0.400000 +637 3118 0.400000 +637 3183 0.400000 +638 13 0.400000 +638 61 0.400000 +638 92 0.400000 +638 131 0.400000 +638 218 0.400000 +638 228 0.400000 +638 341 0.400000 +638 379 0.400000 +638 391 0.400000 +638 465 0.400000 +638 506 0.400000 +638 507 0.400000 +638 513 0.400000 +638 526 0.400000 +638 759 0.400000 +638 839 0.400000 +638 853 0.400000 +638 907 0.400000 +638 957 0.400000 +638 1019 0.400000 +638 1205 0.400000 +638 1214 0.400000 +638 1318 0.400000 +638 1359 0.400000 +638 1397 0.400000 +638 1415 0.400000 +638 1452 0.400000 +638 1513 0.400000 +638 1533 0.400000 +638 1560 0.400000 +638 1715 0.400000 +638 1743 0.400000 +638 1746 0.400000 +638 1756 0.400000 +638 1789 0.400000 +638 1814 0.400000 +638 1866 0.400000 +638 1926 0.400000 +638 1941 0.400000 +638 1950 0.400000 +638 1976 0.400000 +638 1993 0.400000 +638 2004 0.400000 +638 2077 0.400000 +638 2108 0.400000 +638 2111 0.400000 +638 2124 0.400000 +638 2272 0.400000 +638 2278 0.400000 +638 2319 0.400000 +638 2351 0.400000 +638 2454 0.400000 +638 2480 0.400000 +638 2489 0.400000 +638 2509 0.400000 +638 2525 0.400000 +638 2565 0.400000 +638 2792 0.400000 +638 2793 0.400000 +638 2836 0.400000 +638 2864 0.400000 +638 2871 0.400000 +638 2950 0.400000 +638 2957 0.400000 +638 3025 0.400000 +638 3042 0.400000 +638 3054 0.400000 +638 3063 0.400000 +638 3072 0.400000 +638 3085 0.400000 +638 3193 0.400000 +639 68 0.400000 +639 254 0.400000 +639 397 0.400000 +639 457 0.400000 +639 499 0.400000 +639 579 0.400000 +639 660 0.400000 +639 662 0.400000 +639 760 0.400000 +639 779 0.400000 +639 798 0.400000 +639 859 0.400000 +639 872 0.400000 +639 934 0.400000 +639 948 0.400000 +639 951 0.400000 +639 1015 0.400000 +639 1166 0.400000 +639 1182 0.400000 +639 1183 0.400000 +639 1203 0.400000 +639 1204 0.400000 +639 1285 0.400000 +639 1449 0.400000 +639 1531 0.400000 +639 1551 0.400000 +639 1589 0.400000 +639 1718 0.400000 +639 1720 0.400000 +639 1725 0.400000 +639 1845 0.400000 +639 1941 0.400000 +639 1954 0.400000 +639 1958 0.400000 +639 1982 0.400000 +639 1986 0.400000 +639 1989 0.400000 +639 2006 0.400000 +639 2017 0.400000 +639 2027 0.400000 +639 2044 0.400000 +639 2108 0.400000 +639 2225 0.400000 +639 2240 0.400000 +639 2243 0.400000 +639 2269 0.400000 +639 2353 0.400000 +639 2426 0.400000 +639 2437 0.400000 +639 2443 0.400000 +639 2494 0.400000 +639 2502 0.400000 +639 2659 0.400000 +639 2683 0.400000 +639 2916 0.400000 +639 2979 0.400000 +639 3033 0.400000 +639 3041 0.400000 +639 3103 0.400000 +639 3115 0.400000 +639 3165 0.400000 +639 3200 0.400000 +640 5 0.400000 +640 14 0.400000 +640 82 0.400000 +640 161 0.400000 +640 260 0.400000 +640 303 0.400000 +640 329 0.400000 +640 330 0.400000 +640 367 0.400000 +640 374 0.400000 +640 413 0.400000 +640 422 0.400000 +640 428 0.400000 +640 452 0.400000 +640 508 0.400000 +640 543 0.400000 +640 583 0.400000 +640 675 0.400000 +640 696 0.400000 +640 759 0.400000 +640 821 0.400000 +640 823 0.400000 +640 868 0.400000 +640 1024 0.400000 +640 1074 0.400000 +640 1235 0.400000 +640 1292 0.400000 +640 1317 0.400000 +640 1424 0.400000 +640 1456 0.400000 +640 1491 0.400000 +640 1779 0.400000 +640 2008 0.400000 +640 2068 0.400000 +640 2094 0.400000 +640 2100 0.400000 +640 2148 0.400000 +640 2244 0.400000 +640 2263 0.400000 +640 2344 0.400000 +640 2376 0.400000 +640 2417 0.400000 +640 2441 0.400000 +640 2449 0.400000 +640 2493 0.400000 +640 2546 0.400000 +640 2552 0.400000 +640 2559 0.400000 +640 2638 0.400000 +640 2688 0.400000 +640 2764 0.400000 +640 2788 0.400000 +640 2819 0.400000 +640 2857 0.400000 +640 2859 0.400000 +640 2877 0.400000 +640 3046 0.400000 +640 3133 0.400000 +640 3171 0.400000 +640 3189 0.400000 +641 2 0.400000 +641 80 0.400000 +641 116 0.400000 +641 117 0.400000 +641 157 0.400000 +641 225 0.400000 +641 288 0.400000 +641 298 0.400000 +641 410 0.400000 +641 443 0.400000 +641 448 0.400000 +641 468 0.400000 +641 521 0.400000 +641 690 0.400000 +641 783 0.400000 +641 869 0.400000 +641 872 0.400000 +641 1006 0.400000 +641 1024 0.400000 +641 1129 0.400000 +641 1206 0.400000 +641 1398 0.400000 +641 1469 0.400000 +641 1494 0.400000 +641 1575 0.400000 +641 1617 0.400000 +641 1697 0.400000 +641 1708 0.400000 +641 1739 0.400000 +641 1743 0.400000 +641 1887 0.400000 +641 1893 0.400000 +641 1971 0.400000 +641 1995 0.400000 +641 2173 0.400000 +641 2237 0.400000 +641 2273 0.400000 +641 2305 0.400000 +641 2328 0.400000 +641 2443 0.400000 +641 2485 0.400000 +641 2588 0.400000 +641 2651 0.400000 +641 2671 0.400000 +641 2902 0.400000 +641 3042 0.400000 +641 3092 0.400000 +641 3147 0.400000 +641 3166 0.400000 +642 32 0.400000 +642 171 0.400000 +642 197 0.400000 +642 224 0.400000 +642 326 0.400000 +642 378 0.400000 +642 391 0.400000 +642 397 0.400000 +642 406 0.400000 +642 434 0.400000 +642 472 0.400000 +642 522 0.400000 +642 544 0.400000 +642 557 0.400000 +642 734 0.400000 +642 750 0.400000 +642 789 0.400000 +642 834 0.400000 +642 837 0.400000 +642 886 0.400000 +642 939 0.400000 +642 944 0.400000 +642 951 0.400000 +642 954 0.400000 +642 957 0.400000 +642 987 0.400000 +642 1062 0.400000 +642 1075 0.400000 +642 1094 0.400000 +642 1179 0.400000 +642 1190 0.400000 +642 1221 0.400000 +642 1236 0.400000 +642 1244 0.400000 +642 1254 0.400000 +642 1277 0.400000 +642 1402 0.400000 +642 1449 0.400000 +642 1473 0.400000 +642 1475 0.400000 +642 1537 0.400000 +642 1621 0.400000 +642 1656 0.400000 +642 1658 0.400000 +642 1690 0.400000 +642 1743 0.400000 +642 1778 0.400000 +642 1842 0.400000 +642 1868 0.400000 +642 1947 0.400000 +642 1986 0.400000 +642 1998 0.400000 +642 2046 0.400000 +642 2148 0.400000 +642 2160 0.400000 +642 2184 0.400000 +642 2203 0.400000 +642 2220 0.400000 +642 2222 0.400000 +642 2246 0.400000 +642 2260 0.400000 +642 2273 0.400000 +642 2291 0.400000 +642 2341 0.400000 +642 2366 0.400000 +642 2461 0.400000 +642 2483 0.400000 +642 2517 0.400000 +642 2531 0.400000 +642 2631 0.400000 +642 2647 0.400000 +642 2658 0.400000 +642 2721 0.400000 +642 2731 0.400000 +642 2772 0.400000 +642 2779 0.400000 +642 2792 0.400000 +642 2884 0.400000 +642 2895 0.400000 +642 2904 0.400000 +642 2986 0.400000 +642 3108 0.400000 +642 3140 0.400000 +643 28 0.400000 +643 89 0.400000 +643 180 0.400000 +643 237 0.400000 +643 260 0.400000 +643 346 0.400000 +643 415 0.400000 +643 426 0.400000 +643 454 0.400000 +643 509 0.400000 +643 549 0.400000 +643 579 0.400000 +643 620 0.400000 +643 689 0.400000 +643 771 0.400000 +643 810 0.400000 +643 904 0.400000 +643 987 0.400000 +643 997 0.400000 +643 1006 0.400000 +643 1047 0.400000 +643 1066 0.400000 +643 1070 0.400000 +643 1315 0.400000 +643 1420 0.400000 +643 1423 0.400000 +643 1466 0.400000 +643 1522 0.400000 +643 1533 0.400000 +643 1753 0.400000 +643 1920 0.400000 +643 1953 0.400000 +643 1964 0.400000 +643 1998 0.400000 +643 2096 0.400000 +643 2151 0.400000 +643 2208 0.400000 +643 2274 0.400000 +643 2422 0.400000 +643 2491 0.400000 +643 2493 0.400000 +643 2502 0.400000 +643 2530 0.400000 +643 2574 0.400000 +643 2602 0.400000 +643 2660 0.400000 +643 2768 0.400000 +643 2799 0.400000 +643 2813 0.400000 +643 2853 0.400000 +643 2890 0.400000 +643 2914 0.400000 +643 2927 0.400000 +643 3020 0.400000 +643 3143 0.400000 +644 43 0.400000 +644 101 0.400000 +644 164 0.400000 +644 448 0.400000 +644 496 0.400000 +644 508 0.400000 +644 536 0.400000 +644 551 0.400000 +644 622 0.400000 +644 787 0.400000 +644 811 0.400000 +644 813 0.400000 +644 832 0.400000 +644 850 0.400000 +644 915 0.400000 +644 922 0.400000 +644 927 0.400000 +644 930 0.400000 +644 1004 0.400000 +644 1050 0.400000 +644 1119 0.400000 +644 1134 0.400000 +644 1148 0.400000 +644 1262 0.400000 +644 1302 0.400000 +644 1325 0.400000 +644 1386 0.400000 +644 1422 0.400000 +644 1444 0.400000 +644 1534 0.400000 +644 1550 0.400000 +644 1662 0.400000 +644 1704 0.400000 +644 1715 0.400000 +644 1836 0.400000 +644 1858 0.400000 +644 1903 0.400000 +644 1954 0.400000 +644 1965 0.400000 +644 2028 0.400000 +644 2087 0.400000 +644 2114 0.400000 +644 2215 0.400000 +644 2226 0.400000 +644 2272 0.400000 +644 2285 0.400000 +644 2323 0.400000 +644 2325 0.400000 +644 2362 0.400000 +644 2409 0.400000 +644 2469 0.400000 +644 2520 0.400000 +644 2650 0.400000 +644 2726 0.400000 +644 2742 0.400000 +644 2780 0.400000 +644 2848 0.400000 +644 2878 0.400000 +644 2895 0.400000 +644 2897 0.400000 +644 2920 0.400000 +644 2984 0.400000 +645 17 0.400000 +645 55 0.400000 +645 136 0.400000 +645 148 0.400000 +645 185 0.400000 +645 233 0.400000 +645 274 0.400000 +645 283 0.400000 +645 322 0.400000 +645 429 0.400000 +645 478 0.400000 +645 558 0.400000 +645 597 0.400000 +645 617 0.400000 +645 644 0.400000 +645 664 0.400000 +645 682 0.400000 +645 726 0.400000 +645 770 0.400000 +645 799 0.400000 +645 808 0.400000 +645 821 0.400000 +645 891 0.400000 +645 904 0.400000 +645 987 0.400000 +645 994 0.400000 +645 1045 0.400000 +645 1077 0.400000 +645 1085 0.400000 +645 1144 0.400000 +645 1222 0.400000 +645 1233 0.400000 +645 1299 0.400000 +645 1318 0.400000 +645 1405 0.400000 +645 1432 0.400000 +645 1459 0.400000 +645 1537 0.400000 +645 1559 0.400000 +645 1603 0.400000 +645 1636 0.400000 +645 1638 0.400000 +645 1715 0.400000 +645 1784 0.400000 +645 1821 0.400000 +645 1848 0.400000 +645 1894 0.400000 +645 1929 0.400000 +645 1993 0.400000 +645 2107 0.400000 +645 2148 0.400000 +645 2251 0.400000 +645 2300 0.400000 +645 2333 0.400000 +645 2369 0.400000 +645 2386 0.400000 +645 2419 0.400000 +645 2428 0.400000 +645 2429 0.400000 +645 2438 0.400000 +645 2490 0.400000 +645 2520 0.400000 +645 2558 0.400000 +645 2846 0.400000 +645 2922 0.400000 +645 2926 0.400000 +645 2931 0.400000 +645 2946 0.400000 +645 2992 0.400000 +645 3140 0.400000 +646 27 0.400000 +646 58 0.400000 +646 93 0.400000 +646 119 0.400000 +646 125 0.400000 +646 162 0.400000 +646 397 0.400000 +646 519 0.400000 +646 526 0.400000 +646 560 0.400000 +646 628 0.400000 +646 646 0.400000 +646 669 0.400000 +646 723 0.400000 +646 737 0.400000 +646 839 0.400000 +646 852 0.400000 +646 890 0.400000 +646 930 0.400000 +646 958 0.400000 +646 1023 0.400000 +646 1037 0.400000 +646 1080 0.400000 +646 1140 0.400000 +646 1152 0.400000 +646 1267 0.400000 +646 1346 0.400000 +646 1383 0.400000 +646 1580 0.400000 +646 1594 0.400000 +646 1597 0.400000 +646 1608 0.400000 +646 1617 0.400000 +646 1665 0.400000 +646 1676 0.400000 +646 1689 0.400000 +646 1712 0.400000 +646 1717 0.400000 +646 1765 0.400000 +646 1855 0.400000 +646 1890 0.400000 +646 1916 0.400000 +646 1924 0.400000 +646 2047 0.400000 +646 2056 0.400000 +646 2071 0.400000 +646 2075 0.400000 +646 2090 0.400000 +646 2129 0.400000 +646 2153 0.400000 +646 2206 0.400000 +646 2224 0.400000 +646 2285 0.400000 +646 2377 0.400000 +646 2409 0.400000 +646 2413 0.400000 +646 2427 0.400000 +646 2526 0.400000 +646 2542 0.400000 +646 2595 0.400000 +646 2605 0.400000 +646 2608 0.400000 +646 2728 0.400000 +646 2736 0.400000 +646 2739 0.400000 +646 2746 0.400000 +646 2775 0.400000 +646 2795 0.400000 +646 2869 0.400000 +646 2888 0.400000 +646 2915 0.400000 +646 2955 0.400000 +646 2958 0.400000 +646 2978 0.400000 +646 3000 0.400000 +646 3101 0.400000 +646 3118 0.400000 +646 3156 0.400000 +646 3190 0.400000 +647 6 0.400000 +647 16 0.400000 +647 54 0.400000 +647 80 0.400000 +647 93 0.400000 +647 96 0.400000 +647 165 0.400000 +647 239 0.400000 +647 246 0.400000 +647 322 0.400000 +647 393 0.400000 +647 436 0.400000 +647 451 0.400000 +647 463 0.400000 +647 572 0.400000 +647 597 0.400000 +647 640 0.400000 +647 693 0.400000 +647 741 0.400000 +647 795 0.400000 +647 867 0.400000 +647 918 0.400000 +647 997 0.400000 +647 1004 0.400000 +647 1076 0.400000 +647 1110 0.400000 +647 1115 0.400000 +647 1228 0.400000 +647 1261 0.400000 +647 1296 0.400000 +647 1534 0.400000 +647 1702 0.400000 +647 1709 0.400000 +647 1762 0.400000 +647 1766 0.400000 +647 1774 0.400000 +647 1775 0.400000 +647 1782 0.400000 +647 1795 0.400000 +647 1841 0.400000 +647 1928 0.400000 +647 1957 0.400000 +647 2121 0.400000 +647 2138 0.400000 +647 2141 0.400000 +647 2219 0.400000 +647 2262 0.400000 +647 2272 0.400000 +647 2275 0.400000 +647 2350 0.400000 +647 2455 0.400000 +647 2460 0.400000 +647 2461 0.400000 +647 2478 0.400000 +647 2620 0.400000 +647 2840 0.400000 +647 2866 0.400000 +647 2876 0.400000 +647 2917 0.400000 +647 2954 0.400000 +647 3012 0.400000 +647 3025 0.400000 +647 3036 0.400000 +647 3042 0.400000 +647 3145 0.400000 +647 3157 0.400000 +648 14 0.400000 +648 47 0.400000 +648 75 0.400000 +648 80 0.400000 +648 165 0.400000 +648 247 0.400000 +648 317 0.400000 +648 413 0.400000 +648 418 0.400000 +648 472 0.400000 +648 516 0.400000 +648 521 0.400000 +648 532 0.400000 +648 559 0.400000 +648 580 0.400000 +648 673 0.400000 +648 683 0.400000 +648 692 0.400000 +648 792 0.400000 +648 796 0.400000 +648 801 0.400000 +648 843 0.400000 +648 851 0.400000 +648 864 0.400000 +648 869 0.400000 +648 950 0.400000 +648 1013 0.400000 +648 1058 0.400000 +648 1138 0.400000 +648 1245 0.400000 +648 1250 0.400000 +648 1273 0.400000 +648 1344 0.400000 +648 1425 0.400000 +648 1490 0.400000 +648 1542 0.400000 +648 1547 0.400000 +648 1608 0.400000 +648 1661 0.400000 +648 1689 0.400000 +648 1690 0.400000 +648 1708 0.400000 +648 1821 0.400000 +648 1874 0.400000 +648 1936 0.400000 +648 2020 0.400000 +648 2104 0.400000 +648 2300 0.400000 +648 2325 0.400000 +648 2448 0.400000 +648 2475 0.400000 +648 2504 0.400000 +648 2542 0.400000 +648 2604 0.400000 +648 2636 0.400000 +648 2759 0.400000 +648 2772 0.400000 +648 2774 0.400000 +648 2817 0.400000 +648 2843 0.400000 +648 2897 0.400000 +648 2945 0.400000 +648 2972 0.400000 +648 2991 0.400000 +648 3083 0.400000 +648 3178 0.400000 +648 3196 0.400000 +649 6 0.400000 +649 9 0.400000 +649 18 0.400000 +649 21 0.400000 +649 60 0.400000 +649 102 0.400000 +649 104 0.400000 +649 120 0.400000 +649 198 0.400000 +649 210 0.400000 +649 241 0.400000 +649 350 0.400000 +649 365 0.400000 +649 394 0.400000 +649 454 0.400000 +649 479 0.400000 +649 549 0.400000 +649 657 0.400000 +649 707 0.400000 +649 740 0.400000 +649 755 0.400000 +649 811 0.400000 +649 812 0.400000 +649 837 0.400000 +649 910 0.400000 +649 939 0.400000 +649 948 0.400000 +649 953 0.400000 +649 997 0.400000 +649 1035 0.400000 +649 1084 0.400000 +649 1087 0.400000 +649 1116 0.400000 +649 1174 0.400000 +649 1209 0.400000 +649 1217 0.400000 +649 1257 0.400000 +649 1300 0.400000 +649 1327 0.400000 +649 1358 0.400000 +649 1462 0.400000 +649 1543 0.400000 +649 1554 0.400000 +649 1619 0.400000 +649 1643 0.400000 +649 1644 0.400000 +649 1696 0.400000 +649 1758 0.400000 +649 1820 0.400000 +649 1831 0.400000 +649 1918 0.400000 +649 1949 0.400000 +649 1954 0.400000 +649 1966 0.400000 +649 2111 0.400000 +649 2116 0.400000 +649 2154 0.400000 +649 2248 0.400000 +649 2297 0.400000 +649 2306 0.400000 +649 2354 0.400000 +649 2454 0.400000 +649 2463 0.400000 +649 2489 0.400000 +649 2492 0.400000 +649 2514 0.400000 +649 2563 0.400000 +649 2639 0.400000 +649 2726 0.400000 +649 2778 0.400000 +649 2792 0.400000 +649 2814 0.400000 +649 2828 0.400000 +649 2831 0.400000 +649 2938 0.400000 +649 3115 0.400000 +649 3134 0.400000 +650 7 0.400000 +650 156 0.400000 +650 212 0.400000 +650 253 0.400000 +650 278 0.400000 +650 295 0.400000 +650 373 0.400000 +650 406 0.400000 +650 462 0.400000 +650 491 0.400000 +650 630 0.400000 +650 666 0.400000 +650 669 0.400000 +650 765 0.400000 +650 851 0.400000 +650 888 0.400000 +650 925 0.400000 +650 966 0.400000 +650 1040 0.400000 +650 1146 0.400000 +650 1209 0.400000 +650 1371 0.400000 +650 1464 0.400000 +650 1466 0.400000 +650 1483 0.400000 +650 1527 0.400000 +650 1528 0.400000 +650 1720 0.400000 +650 1722 0.400000 +650 1877 0.400000 +650 1925 0.400000 +650 1956 0.400000 +650 1959 0.400000 +650 2098 0.400000 +650 2106 0.400000 +650 2143 0.400000 +650 2147 0.400000 +650 2235 0.400000 +650 2239 0.400000 +650 2253 0.400000 +650 2313 0.400000 +650 2316 0.400000 +650 2396 0.400000 +650 2439 0.400000 +650 2489 0.400000 +650 2525 0.400000 +650 2530 0.400000 +650 2576 0.400000 +650 2676 0.400000 +650 2679 0.400000 +650 2745 0.400000 +650 2803 0.400000 +650 2881 0.400000 +650 2954 0.400000 +650 2979 0.400000 +650 3052 0.400000 +650 3063 0.400000 +651 10 0.400000 +651 21 0.400000 +651 32 0.400000 +651 64 0.400000 +651 65 0.400000 +651 76 0.400000 +651 121 0.400000 +651 163 0.400000 +651 189 0.400000 +651 283 0.400000 +651 331 0.400000 +651 388 0.400000 +651 414 0.400000 +651 613 0.400000 +651 648 0.400000 +651 687 0.400000 +651 758 0.400000 +651 780 0.400000 +651 895 0.400000 +651 897 0.400000 +651 1006 0.400000 +651 1058 0.400000 +651 1097 0.400000 +651 1098 0.400000 +651 1171 0.400000 +651 1238 0.400000 +651 1251 0.400000 +651 1254 0.400000 +651 1263 0.400000 +651 1293 0.400000 +651 1319 0.400000 +651 1322 0.400000 +651 1364 0.400000 +651 1482 0.400000 +651 1487 0.400000 +651 1599 0.400000 +651 1640 0.400000 +651 1645 0.400000 +651 1675 0.400000 +651 1739 0.400000 +651 1741 0.400000 +651 1759 0.400000 +651 1803 0.400000 +651 1829 0.400000 +651 1843 0.400000 +651 1924 0.400000 +651 1967 0.400000 +651 2006 0.400000 +651 2013 0.400000 +651 2092 0.400000 +651 2170 0.400000 +651 2202 0.400000 +651 2237 0.400000 +651 2245 0.400000 +651 2290 0.400000 +651 2431 0.400000 +651 2537 0.400000 +651 2607 0.400000 +651 2625 0.400000 +651 2634 0.400000 +651 2638 0.400000 +651 2651 0.400000 +651 2742 0.400000 +651 2753 0.400000 +651 2763 0.400000 +651 2786 0.400000 +651 2893 0.400000 +651 2900 0.400000 +651 2926 0.400000 +651 2934 0.400000 +651 2936 0.400000 +651 2971 0.400000 +651 3048 0.400000 +651 3052 0.400000 +652 52 0.400000 +652 86 0.400000 +652 113 0.400000 +652 138 0.400000 +652 168 0.400000 +652 260 0.400000 +652 322 0.400000 +652 357 0.400000 +652 376 0.400000 +652 379 0.400000 +652 393 0.400000 +652 448 0.400000 +652 565 0.400000 +652 610 0.400000 +652 637 0.400000 +652 679 0.400000 +652 697 0.400000 +652 784 0.400000 +652 811 0.400000 +652 822 0.400000 +652 907 0.400000 +652 940 0.400000 +652 960 0.400000 +652 1181 0.400000 +652 1232 0.400000 +652 1239 0.400000 +652 1247 0.400000 +652 1279 0.400000 +652 1321 0.400000 +652 1374 0.400000 +652 1382 0.400000 +652 1397 0.400000 +652 1423 0.400000 +652 1591 0.400000 +652 1678 0.400000 +652 1696 0.400000 +652 1698 0.400000 +652 1788 0.400000 +652 1814 0.400000 +652 1833 0.400000 +652 2011 0.400000 +652 2091 0.400000 +652 2095 0.400000 +652 2143 0.400000 +652 2243 0.400000 +652 2270 0.400000 +652 2312 0.400000 +652 2376 0.400000 +652 2379 0.400000 +652 2426 0.400000 +652 2580 0.400000 +652 2581 0.400000 +652 2584 0.400000 +652 2684 0.400000 +652 2769 0.400000 +652 2822 0.400000 +652 2919 0.400000 +652 3034 0.400000 +652 3070 0.400000 +652 3097 0.400000 +652 3108 0.400000 +652 3113 0.400000 +652 3124 0.400000 +652 3127 0.400000 +652 3129 0.400000 +652 3142 0.400000 +653 11 0.400000 +653 30 0.400000 +653 38 0.400000 +653 164 0.400000 +653 173 0.400000 +653 204 0.400000 +653 208 0.400000 +653 238 0.400000 +653 301 0.400000 +653 302 0.400000 +653 359 0.400000 +653 428 0.400000 +653 429 0.400000 +653 437 0.400000 +653 455 0.400000 +653 464 0.400000 +653 495 0.400000 +653 533 0.400000 +653 789 0.400000 +653 849 0.400000 +653 859 0.400000 +653 1003 0.400000 +653 1012 0.400000 +653 1070 0.400000 +653 1153 0.400000 +653 1190 0.400000 +653 1193 0.400000 +653 1202 0.400000 +653 1375 0.400000 +653 1402 0.400000 +653 1506 0.400000 +653 1568 0.400000 +653 1622 0.400000 +653 1674 0.400000 +653 1715 0.400000 +653 1722 0.400000 +653 1768 0.400000 +653 1880 0.400000 +653 1901 0.400000 +653 1925 0.400000 +653 1995 0.400000 +653 2023 0.400000 +653 2024 0.400000 +653 2064 0.400000 +653 2140 0.400000 +653 2143 0.400000 +653 2216 0.400000 +653 2261 0.400000 +653 2267 0.400000 +653 2317 0.400000 +653 2370 0.400000 +653 2381 0.400000 +653 2420 0.400000 +653 2421 0.400000 +653 2451 0.400000 +653 2574 0.400000 +653 2608 0.400000 +653 2631 0.400000 +653 2679 0.400000 +653 2743 0.400000 +653 2786 0.400000 +653 2962 0.400000 +653 3026 0.400000 +653 3076 0.400000 +653 3103 0.400000 +653 3178 0.400000 +653 3179 0.400000 +654 6 0.400000 +654 70 0.400000 +654 172 0.400000 +654 174 0.400000 +654 177 0.400000 +654 181 0.400000 +654 199 0.400000 +654 240 0.400000 +654 340 0.400000 +654 345 0.400000 +654 403 0.400000 +654 423 0.400000 +654 453 0.400000 +654 466 0.400000 +654 552 0.400000 +654 569 0.400000 +654 600 0.400000 +654 604 0.400000 +654 669 0.400000 +654 673 0.400000 +654 685 0.400000 +654 714 0.400000 +654 725 0.400000 +654 802 0.400000 +654 822 0.400000 +654 855 0.400000 +654 881 0.400000 +654 898 0.400000 +654 915 0.400000 +654 953 0.400000 +654 995 0.400000 +654 1040 0.400000 +654 1117 0.400000 +654 1212 0.400000 +654 1244 0.400000 +654 1260 0.400000 +654 1273 0.400000 +654 1369 0.400000 +654 1465 0.400000 +654 1512 0.400000 +654 1565 0.400000 +654 1587 0.400000 +654 1646 0.400000 +654 1667 0.400000 +654 1684 0.400000 +654 1693 0.400000 +654 1739 0.400000 +654 1806 0.400000 +654 1858 0.400000 +654 1898 0.400000 +654 1901 0.400000 +654 1918 0.400000 +654 2008 0.400000 +654 2090 0.400000 +654 2108 0.400000 +654 2113 0.400000 +654 2130 0.400000 +654 2194 0.400000 +654 2246 0.400000 +654 2279 0.400000 +654 2344 0.400000 +654 2391 0.400000 +654 2434 0.400000 +654 2446 0.400000 +654 2464 0.400000 +654 2492 0.400000 +654 2516 0.400000 +654 2619 0.400000 +654 2626 0.400000 +654 2632 0.400000 +654 2635 0.400000 +654 2668 0.400000 +654 2693 0.400000 +654 2807 0.400000 +654 3059 0.400000 +654 3112 0.400000 +654 3125 0.400000 +654 3176 0.400000 +655 41 0.400000 +655 52 0.400000 +655 122 0.400000 +655 189 0.400000 +655 269 0.400000 +655 522 0.400000 +655 547 0.400000 +655 699 0.400000 +655 712 0.400000 +655 766 0.400000 +655 832 0.400000 +655 842 0.400000 +655 1103 0.400000 +655 1120 0.400000 +655 1177 0.400000 +655 1359 0.400000 +655 1386 0.400000 +655 1436 0.400000 +655 1490 0.400000 +655 1587 0.400000 +655 1678 0.400000 +655 1692 0.400000 +655 1699 0.400000 +655 1817 0.400000 +655 1946 0.400000 +655 1976 0.400000 +655 2002 0.400000 +655 2065 0.400000 +655 2075 0.400000 +655 2123 0.400000 +655 2133 0.400000 +655 2147 0.400000 +655 2157 0.400000 +655 2253 0.400000 +655 2276 0.400000 +655 2444 0.400000 +655 2459 0.400000 +655 2503 0.400000 +655 2536 0.400000 +655 2724 0.400000 +655 2737 0.400000 +655 2849 0.400000 +655 2855 0.400000 +655 2909 0.400000 +655 3014 0.400000 +655 3024 0.400000 +655 3048 0.400000 +655 3063 0.400000 +655 3190 0.400000 +656 23 0.400000 +656 54 0.400000 +656 149 0.400000 +656 164 0.400000 +656 175 0.400000 +656 254 0.400000 +656 276 0.400000 +656 425 0.400000 +656 438 0.400000 +656 472 0.400000 +656 568 0.400000 +656 599 0.400000 +656 654 0.400000 +656 668 0.400000 +656 694 0.400000 +656 731 0.400000 +656 743 0.400000 +656 758 0.400000 +656 780 0.400000 +656 784 0.400000 +656 847 0.400000 +656 910 0.400000 +656 912 0.400000 +656 924 0.400000 +656 948 0.400000 +656 949 0.400000 +656 1068 0.400000 +656 1104 0.400000 +656 1146 0.400000 +656 1181 0.400000 +656 1186 0.400000 +656 1199 0.400000 +656 1216 0.400000 +656 1275 0.400000 +656 1296 0.400000 +656 1379 0.400000 +656 1386 0.400000 +656 1444 0.400000 +656 1524 0.400000 +656 1557 0.400000 +656 1606 0.400000 +656 1625 0.400000 +656 1655 0.400000 +656 1692 0.400000 +656 1734 0.400000 +656 1791 0.400000 +656 1866 0.400000 +656 1916 0.400000 +656 1920 0.400000 +656 2091 0.400000 +656 2092 0.400000 +656 2204 0.400000 +656 2295 0.400000 +656 2300 0.400000 +656 2302 0.400000 +656 2303 0.400000 +656 2311 0.400000 +656 2411 0.400000 +656 2464 0.400000 +656 2490 0.400000 +656 2540 0.400000 +656 2555 0.400000 +656 2562 0.400000 +656 2566 0.400000 +656 2590 0.400000 +656 2592 0.400000 +656 2617 0.400000 +656 2618 0.400000 +656 2699 0.400000 +656 2751 0.400000 +656 2764 0.400000 +656 2796 0.400000 +656 2958 0.400000 +656 2972 0.400000 +656 3132 0.400000 +657 49 0.400000 +657 82 0.400000 +657 97 0.400000 +657 147 0.400000 +657 214 0.400000 +657 398 0.400000 +657 433 0.400000 +657 452 0.400000 +657 473 0.400000 +657 532 0.400000 +657 596 0.400000 +657 612 0.400000 +657 613 0.400000 +657 639 0.400000 +657 691 0.400000 +657 776 0.400000 +657 821 0.400000 +657 823 0.400000 +657 892 0.400000 +657 921 0.400000 +657 926 0.400000 +657 973 0.400000 +657 1009 0.400000 +657 1033 0.400000 +657 1126 0.400000 +657 1225 0.400000 +657 1243 0.400000 +657 1279 0.400000 +657 1292 0.400000 +657 1332 0.400000 +657 1358 0.400000 +657 1384 0.400000 +657 1392 0.400000 +657 1427 0.400000 +657 1462 0.400000 +657 1524 0.400000 +657 1607 0.400000 +657 1611 0.400000 +657 1651 0.400000 +657 1671 0.400000 +657 1747 0.400000 +657 1754 0.400000 +657 1768 0.400000 +657 1807 0.400000 +657 1901 0.400000 +657 2010 0.400000 +657 2032 0.400000 +657 2075 0.400000 +657 2095 0.400000 +657 2181 0.400000 +657 2271 0.400000 +657 2287 0.400000 +657 2317 0.400000 +657 2408 0.400000 +657 2654 0.400000 +657 2693 0.400000 +657 2775 0.400000 +657 2779 0.400000 +657 2841 0.400000 +657 2912 0.400000 +657 2929 0.400000 +657 2976 0.400000 +657 3008 0.400000 +657 3124 0.400000 +658 46 0.400000 +658 83 0.400000 +658 101 0.400000 +658 110 0.400000 +658 189 0.400000 +658 203 0.400000 +658 248 0.400000 +658 294 0.400000 +658 375 0.400000 +658 485 0.400000 +658 544 0.400000 +658 589 0.400000 +658 772 0.400000 +658 790 0.400000 +658 824 0.400000 +658 903 0.400000 +658 1020 0.400000 +658 1021 0.400000 +658 1031 0.400000 +658 1101 0.400000 +658 1148 0.400000 +658 1159 0.400000 +658 1231 0.400000 +658 1416 0.400000 +658 1436 0.400000 +658 1459 0.400000 +658 1567 0.400000 +658 1603 0.400000 +658 1687 0.400000 +658 1738 0.400000 +658 1762 0.400000 +658 1800 0.400000 +658 1897 0.400000 +658 1901 0.400000 +658 2024 0.400000 +658 2050 0.400000 +658 2071 0.400000 +658 2083 0.400000 +658 2159 0.400000 +658 2231 0.400000 +658 2357 0.400000 +658 2377 0.400000 +658 2451 0.400000 +658 2473 0.400000 +658 2506 0.400000 +658 2531 0.400000 +658 2679 0.400000 +658 2744 0.400000 +658 2817 0.400000 +658 2821 0.400000 +658 2836 0.400000 +658 2881 0.400000 +658 2909 0.400000 +658 2928 0.400000 +658 2943 0.400000 +658 2967 0.400000 +658 2991 0.400000 +658 3099 0.400000 +658 3120 0.400000 +658 3125 0.400000 +658 3154 0.400000 +659 21 0.400000 +659 41 0.400000 +659 101 0.400000 +659 107 0.400000 +659 188 0.400000 +659 201 0.400000 +659 234 0.400000 +659 347 0.400000 +659 363 0.400000 +659 401 0.400000 +659 407 0.400000 +659 432 0.400000 +659 433 0.400000 +659 456 0.400000 +659 462 0.400000 +659 496 0.400000 +659 547 0.400000 +659 554 0.400000 +659 574 0.400000 +659 581 0.400000 +659 624 0.400000 +659 703 0.400000 +659 719 0.400000 +659 772 0.400000 +659 781 0.400000 +659 846 0.400000 +659 869 0.400000 +659 870 0.400000 +659 902 0.400000 +659 905 0.400000 +659 984 0.400000 +659 999 0.400000 +659 1191 0.400000 +659 1198 0.400000 +659 1223 0.400000 +659 1225 0.400000 +659 1227 0.400000 +659 1236 0.400000 +659 1248 0.400000 +659 1395 0.400000 +659 1396 0.400000 +659 1401 0.400000 +659 1453 0.400000 +659 1469 0.400000 +659 1523 0.400000 +659 1607 0.400000 +659 1658 0.400000 +659 1677 0.400000 +659 1726 0.400000 +659 1736 0.400000 +659 1778 0.400000 +659 1830 0.400000 +659 1846 0.400000 +659 2051 0.400000 +659 2130 0.400000 +659 2189 0.400000 +659 2237 0.400000 +659 2264 0.400000 +659 2311 0.400000 +659 2317 0.400000 +659 2340 0.400000 +659 2353 0.400000 +659 2393 0.400000 +659 2512 0.400000 +659 2634 0.400000 +659 2646 0.400000 +659 2659 0.400000 +659 2744 0.400000 +659 2796 0.400000 +659 2897 0.400000 +659 3004 0.400000 +659 3042 0.400000 +659 3054 0.400000 +659 3065 0.400000 +659 3067 0.400000 +659 3083 0.400000 +659 3131 0.400000 +659 3165 0.400000 +660 9 0.400000 +660 42 0.400000 +660 82 0.400000 +660 162 0.400000 +660 199 0.400000 +660 288 0.400000 +660 544 0.400000 +660 554 0.400000 +660 591 0.400000 +660 671 0.400000 +660 694 0.400000 +660 891 0.400000 +660 932 0.400000 +660 940 0.400000 +660 949 0.400000 +660 973 0.400000 +660 994 0.400000 +660 1002 0.400000 +660 1067 0.400000 +660 1214 0.400000 +660 1222 0.400000 +660 1228 0.400000 +660 1236 0.400000 +660 1271 0.400000 +660 1280 0.400000 +660 1378 0.400000 +660 1404 0.400000 +660 1474 0.400000 +660 1492 0.400000 +660 1494 0.400000 +660 1595 0.400000 +660 1661 0.400000 +660 1749 0.400000 +660 1863 0.400000 +660 1892 0.400000 +660 1896 0.400000 +660 1993 0.400000 +660 2092 0.400000 +660 2212 0.400000 +660 2292 0.400000 +660 2317 0.400000 +660 2325 0.400000 +660 2396 0.400000 +660 2468 0.400000 +660 2479 0.400000 +660 2508 0.400000 +660 2536 0.400000 +660 2652 0.400000 +660 2669 0.400000 +660 2768 0.400000 +660 2934 0.400000 +660 2972 0.400000 +660 3054 0.400000 +660 3118 0.400000 +661 11 0.400000 +661 26 0.400000 +661 197 0.400000 +661 198 0.400000 +661 213 0.400000 +661 252 0.400000 +661 273 0.400000 +661 288 0.400000 +661 315 0.400000 +661 341 0.400000 +661 349 0.400000 +661 408 0.400000 +661 457 0.400000 +661 497 0.400000 +661 500 0.400000 +661 611 0.400000 +661 721 0.400000 +661 746 0.400000 +661 756 0.400000 +661 901 0.400000 +661 911 0.400000 +661 970 0.400000 +661 1028 0.400000 +661 1045 0.400000 +661 1084 0.400000 +661 1163 0.400000 +661 1174 0.400000 +661 1184 0.400000 +661 1231 0.400000 +661 1243 0.400000 +661 1417 0.400000 +661 1423 0.400000 +661 1425 0.400000 +661 1434 0.400000 +661 1469 0.400000 +661 1502 0.400000 +661 1557 0.400000 +661 1560 0.400000 +661 1609 0.400000 +661 1630 0.400000 +661 1655 0.400000 +661 1721 0.400000 +661 1776 0.400000 +661 1808 0.400000 +661 1852 0.400000 +661 1871 0.400000 +661 1891 0.400000 +661 1918 0.400000 +661 1927 0.400000 +661 2008 0.400000 +661 2029 0.400000 +661 2039 0.400000 +661 2084 0.400000 +661 2179 0.400000 +661 2183 0.400000 +661 2288 0.400000 +661 2450 0.400000 +661 2468 0.400000 +661 2531 0.400000 +661 2551 0.400000 +661 2556 0.400000 +661 2611 0.400000 +661 2625 0.400000 +661 2668 0.400000 +661 2674 0.400000 +661 2741 0.400000 +661 2751 0.400000 +661 2754 0.400000 +661 2817 0.400000 +661 2836 0.400000 +661 2863 0.400000 +661 2916 0.400000 +661 2955 0.400000 +661 3043 0.400000 +661 3056 0.400000 +661 3160 0.400000 +661 3178 0.400000 +661 3182 0.400000 +662 43 0.400000 +662 145 0.400000 +662 284 0.400000 +662 498 0.400000 +662 501 0.400000 +662 517 0.400000 +662 539 0.400000 +662 541 0.400000 +662 603 0.400000 +662 605 0.400000 +662 724 0.400000 +662 778 0.400000 +662 891 0.400000 +662 933 0.400000 +662 954 0.400000 +662 956 0.400000 +662 1008 0.400000 +662 1089 0.400000 +662 1102 0.400000 +662 1168 0.400000 +662 1194 0.400000 +662 1220 0.400000 +662 1222 0.400000 +662 1269 0.400000 +662 1278 0.400000 +662 1290 0.400000 +662 1297 0.400000 +662 1389 0.400000 +662 1403 0.400000 +662 1484 0.400000 +662 1495 0.400000 +662 1548 0.400000 +662 1560 0.400000 +662 1615 0.400000 +662 1636 0.400000 +662 1638 0.400000 +662 1702 0.400000 +662 1797 0.400000 +662 1836 0.400000 +662 1868 0.400000 +662 1919 0.400000 +662 1940 0.400000 +662 1985 0.400000 +662 2026 0.400000 +662 2054 0.400000 +662 2115 0.400000 +662 2118 0.400000 +662 2147 0.400000 +662 2159 0.400000 +662 2235 0.400000 +662 2301 0.400000 +662 2337 0.400000 +662 2377 0.400000 +662 2407 0.400000 +662 2420 0.400000 +662 2465 0.400000 +662 2549 0.400000 +662 2550 0.400000 +662 2660 0.400000 +662 2684 0.400000 +662 2709 0.400000 +662 2712 0.400000 +662 2727 0.400000 +662 3088 0.400000 +662 3105 0.400000 +662 3155 0.400000 +663 38 0.400000 +663 86 0.400000 +663 115 0.400000 +663 132 0.400000 +663 136 0.400000 +663 261 0.400000 +663 384 0.400000 +663 410 0.400000 +663 489 0.400000 +663 567 0.400000 +663 579 0.400000 +663 628 0.400000 +663 633 0.400000 +663 648 0.400000 +663 649 0.400000 +663 771 0.400000 +663 976 0.400000 +663 980 0.400000 +663 1038 0.400000 +663 1135 0.400000 +663 1226 0.400000 +663 1264 0.400000 +663 1321 0.400000 +663 1507 0.400000 +663 1521 0.400000 +663 1570 0.400000 +663 1646 0.400000 +663 1717 0.400000 +663 1729 0.400000 +663 1766 0.400000 +663 1809 0.400000 +663 1863 0.400000 +663 1894 0.400000 +663 1949 0.400000 +663 2046 0.400000 +663 2113 0.400000 +663 2171 0.400000 +663 2290 0.400000 +663 2298 0.400000 +663 2338 0.400000 +663 2369 0.400000 +663 2426 0.400000 +663 2570 0.400000 +663 2666 0.400000 +663 2703 0.400000 +663 2772 0.400000 +663 2850 0.400000 +663 2854 0.400000 +663 2873 0.400000 +663 2888 0.400000 +663 3018 0.400000 +663 3021 0.400000 +664 20 0.400000 +664 206 0.400000 +664 225 0.400000 +664 256 0.400000 +664 285 0.400000 +664 298 0.400000 +664 301 0.400000 +664 325 0.400000 +664 492 0.400000 +664 517 0.400000 +664 585 0.400000 +664 679 0.400000 +664 684 0.400000 +664 771 0.400000 +664 783 0.400000 +664 790 0.400000 +664 800 0.400000 +664 826 0.400000 +664 855 0.400000 +664 863 0.400000 +664 895 0.400000 +664 904 0.400000 +664 906 0.400000 +664 923 0.400000 +664 959 0.400000 +664 977 0.400000 +664 986 0.400000 +664 1117 0.400000 +664 1141 0.400000 +664 1192 0.400000 +664 1209 0.400000 +664 1254 0.400000 +664 1433 0.400000 +664 1467 0.400000 +664 1491 0.400000 +664 1774 0.400000 +664 1878 0.400000 +664 1885 0.400000 +664 1930 0.400000 +664 2217 0.400000 +664 2248 0.400000 +664 2340 0.400000 +664 2393 0.400000 +664 2406 0.400000 +664 2562 0.400000 +664 2579 0.400000 +664 2592 0.400000 +664 2718 0.400000 +664 2922 0.400000 +664 2930 0.400000 +664 3015 0.400000 +664 3053 0.400000 +664 3064 0.400000 +664 3122 0.400000 +664 3130 0.400000 +664 3160 0.400000 +665 26 0.400000 +665 102 0.400000 +665 321 0.400000 +665 330 0.400000 +665 351 0.400000 +665 401 0.400000 +665 435 0.400000 +665 445 0.400000 +665 574 0.400000 +665 665 0.400000 +665 837 0.400000 +665 986 0.400000 +665 999 0.400000 +665 1027 0.400000 +665 1049 0.400000 +665 1155 0.400000 +665 1164 0.400000 +665 1180 0.400000 +665 1183 0.400000 +665 1221 0.400000 +665 1264 0.400000 +665 1300 0.400000 +665 1408 0.400000 +665 1530 0.400000 +665 1585 0.400000 +665 1595 0.400000 +665 1813 0.400000 +665 2029 0.400000 +665 2059 0.400000 +665 2097 0.400000 +665 2116 0.400000 +665 2118 0.400000 +665 2300 0.400000 +665 2484 0.400000 +665 2521 0.400000 +665 2525 0.400000 +665 2554 0.400000 +665 2586 0.400000 +665 2617 0.400000 +665 2630 0.400000 +665 2776 0.400000 +665 2778 0.400000 +665 2779 0.400000 +665 2839 0.400000 +665 2845 0.400000 +665 2848 0.400000 +665 2890 0.400000 +665 2906 0.400000 +665 3080 0.400000 +665 3127 0.400000 +665 3185 0.400000 +666 12 0.400000 +666 26 0.400000 +666 128 0.400000 +666 129 0.400000 +666 259 0.400000 +666 437 0.400000 +666 522 0.400000 +666 565 0.400000 +666 607 0.400000 +666 844 0.400000 +666 907 0.400000 +666 1015 0.400000 +666 1040 0.400000 +666 1063 0.400000 +666 1076 0.400000 +666 1136 0.400000 +666 1181 0.400000 +666 1250 0.400000 +666 1497 0.400000 +666 1623 0.400000 +666 1639 0.400000 +666 1642 0.400000 +666 1655 0.400000 +666 1676 0.400000 +666 1690 0.400000 +666 1748 0.400000 +666 1798 0.400000 +666 1940 0.400000 +666 1950 0.400000 +666 2061 0.400000 +666 2071 0.400000 +666 2103 0.400000 +666 2114 0.400000 +666 2137 0.400000 +666 2145 0.400000 +666 2204 0.400000 +666 2205 0.400000 +666 2258 0.400000 +666 2318 0.400000 +666 2357 0.400000 +666 2432 0.400000 +666 2437 0.400000 +666 2477 0.400000 +666 2522 0.400000 +666 2790 0.400000 +666 2924 0.400000 +666 3015 0.400000 +666 3076 0.400000 +666 3085 0.400000 +667 45 0.400000 +667 47 0.400000 +667 55 0.400000 +667 101 0.400000 +667 103 0.400000 +667 306 0.400000 +667 354 0.400000 +667 389 0.400000 +667 409 0.400000 +667 418 0.400000 +667 494 0.400000 +667 531 0.400000 +667 564 0.400000 +667 577 0.400000 +667 624 0.400000 +667 838 0.400000 +667 853 0.400000 +667 880 0.400000 +667 899 0.400000 +667 1135 0.400000 +667 1240 0.400000 +667 1372 0.400000 +667 1466 0.400000 +667 1482 0.400000 +667 1499 0.400000 +667 1595 0.400000 +667 1657 0.400000 +667 1773 0.400000 +667 1788 0.400000 +667 1808 0.400000 +667 1889 0.400000 +667 1924 0.400000 +667 1925 0.400000 +667 1928 0.400000 +667 1953 0.400000 +667 1968 0.400000 +667 2110 0.400000 +667 2177 0.400000 +667 2230 0.400000 +667 2339 0.400000 +667 2342 0.400000 +667 2347 0.400000 +667 2368 0.400000 +667 2383 0.400000 +667 2406 0.400000 +667 2423 0.400000 +667 2445 0.400000 +667 2479 0.400000 +667 2502 0.400000 +667 2527 0.400000 +667 2543 0.400000 +667 2646 0.400000 +667 2790 0.400000 +667 2795 0.400000 +667 2802 0.400000 +667 2893 0.400000 +667 2904 0.400000 +667 3053 0.400000 +667 3064 0.400000 +667 3098 0.400000 +668 71 0.400000 +668 78 0.400000 +668 105 0.400000 +668 114 0.400000 +668 206 0.400000 +668 241 0.400000 +668 262 0.400000 +668 273 0.400000 +668 295 0.400000 +668 319 0.400000 +668 341 0.400000 +668 345 0.400000 +668 438 0.400000 +668 448 0.400000 +668 524 0.400000 +668 560 0.400000 +668 645 0.400000 +668 681 0.400000 +668 721 0.400000 +668 750 0.400000 +668 813 0.400000 +668 843 0.400000 +668 866 0.400000 +668 892 0.400000 +668 899 0.400000 +668 969 0.400000 +668 989 0.400000 +668 1001 0.400000 +668 1036 0.400000 +668 1092 0.400000 +668 1144 0.400000 +668 1154 0.400000 +668 1180 0.400000 +668 1188 0.400000 +668 1295 0.400000 +668 1368 0.400000 +668 1371 0.400000 +668 1435 0.400000 +668 1492 0.400000 +668 1557 0.400000 +668 1581 0.400000 +668 1600 0.400000 +668 1625 0.400000 +668 1683 0.400000 +668 1760 0.400000 +668 1778 0.400000 +668 1805 0.400000 +668 1841 0.400000 +668 1843 0.400000 +668 1935 0.400000 +668 1942 0.400000 +668 2007 0.400000 +668 2039 0.400000 +668 2134 0.400000 +668 2176 0.400000 +668 2445 0.400000 +668 2466 0.400000 +668 2569 0.400000 +668 2580 0.400000 +668 2682 0.400000 +668 2691 0.400000 +668 2737 0.400000 +668 2764 0.400000 +668 2766 0.400000 +668 2771 0.400000 +668 2778 0.400000 +668 2780 0.400000 +668 2828 0.400000 +668 2917 0.400000 +668 2919 0.400000 +668 2967 0.400000 +668 3025 0.400000 +668 3049 0.400000 +668 3086 0.400000 +668 3090 0.400000 +668 3132 0.400000 +668 3156 0.400000 +668 3197 0.400000 +669 60 0.400000 +669 125 0.400000 +669 134 0.400000 +669 144 0.400000 +669 146 0.400000 +669 247 0.400000 +669 265 0.400000 +669 279 0.400000 +669 337 0.400000 +669 348 0.400000 +669 374 0.400000 +669 399 0.400000 +669 437 0.400000 +669 474 0.400000 +669 480 0.400000 +669 481 0.400000 +669 568 0.400000 +669 614 0.400000 +669 700 0.400000 +669 726 0.400000 +669 739 0.400000 +669 765 0.400000 +669 820 0.400000 +669 857 0.400000 +669 883 0.400000 +669 982 0.400000 +669 1027 0.400000 +669 1061 0.400000 +669 1083 0.400000 +669 1087 0.400000 +669 1162 0.400000 +669 1165 0.400000 +669 1245 0.400000 +669 1273 0.400000 +669 1278 0.400000 +669 1295 0.400000 +669 1473 0.400000 +669 1497 0.400000 +669 1505 0.400000 +669 1531 0.400000 +669 1562 0.400000 +669 1596 0.400000 +669 1618 0.400000 +669 1623 0.400000 +669 1635 0.400000 +669 1653 0.400000 +669 1670 0.400000 +669 1981 0.400000 +669 2080 0.400000 +669 2122 0.400000 +669 2177 0.400000 +669 2210 0.400000 +669 2233 0.400000 +669 2337 0.400000 +669 2382 0.400000 +669 2384 0.400000 +669 2389 0.400000 +669 2441 0.400000 +669 2607 0.400000 +669 2613 0.400000 +669 2622 0.400000 +669 2646 0.400000 +669 2648 0.400000 +669 2710 0.400000 +669 2720 0.400000 +669 2814 0.400000 +669 2843 0.400000 +669 2850 0.400000 +669 2924 0.400000 +669 2946 0.400000 +669 2972 0.400000 +669 2997 0.400000 +669 3003 0.400000 +669 3088 0.400000 +670 3 0.400000 +670 45 0.400000 +670 50 0.400000 +670 122 0.400000 +670 126 0.400000 +670 150 0.400000 +670 222 0.400000 +670 253 0.400000 +670 286 0.400000 +670 298 0.400000 +670 391 0.400000 +670 419 0.400000 +670 483 0.400000 +670 529 0.400000 +670 540 0.400000 +670 542 0.400000 +670 660 0.400000 +670 679 0.400000 +670 707 0.400000 +670 732 0.400000 +670 760 0.400000 +670 824 0.400000 +670 918 0.400000 +670 970 0.400000 +670 972 0.400000 +670 973 0.400000 +670 995 0.400000 +670 1029 0.400000 +670 1060 0.400000 +670 1081 0.400000 +670 1178 0.400000 +670 1185 0.400000 +670 1229 0.400000 +670 1253 0.400000 +670 1284 0.400000 +670 1299 0.400000 +670 1351 0.400000 +670 1380 0.400000 +670 1423 0.400000 +670 1457 0.400000 +670 1484 0.400000 +670 1537 0.400000 +670 1609 0.400000 +670 1809 0.400000 +670 1828 0.400000 +670 1900 0.400000 +670 1939 0.400000 +670 1952 0.400000 +670 1990 0.400000 +670 1997 0.400000 +670 2039 0.400000 +670 2091 0.400000 +670 2126 0.400000 +670 2153 0.400000 +670 2175 0.400000 +670 2204 0.400000 +670 2318 0.400000 +670 2328 0.400000 +670 2375 0.400000 +670 2394 0.400000 +670 2409 0.400000 +670 2427 0.400000 +670 2464 0.400000 +670 2491 0.400000 +670 2581 0.400000 +670 2621 0.400000 +670 2660 0.400000 +670 2669 0.400000 +670 2707 0.400000 +670 2760 0.400000 +670 2788 0.400000 +670 2875 0.400000 +670 2914 0.400000 +670 2964 0.400000 +670 2987 0.400000 +670 3098 0.400000 +670 3129 0.400000 +670 3145 0.400000 +670 3149 0.400000 +671 15 0.400000 +671 37 0.400000 +671 49 0.400000 +671 103 0.400000 +671 194 0.400000 +671 356 0.400000 +671 361 0.400000 +671 417 0.400000 +671 422 0.400000 +671 521 0.400000 +671 537 0.400000 +671 557 0.400000 +671 558 0.400000 +671 712 0.400000 +671 758 0.400000 +671 825 0.400000 +671 834 0.400000 +671 836 0.400000 +671 918 0.400000 +671 1036 0.400000 +671 1088 0.400000 +671 1117 0.400000 +671 1166 0.400000 +671 1212 0.400000 +671 1242 0.400000 +671 1293 0.400000 +671 1339 0.400000 +671 1425 0.400000 +671 1471 0.400000 +671 1516 0.400000 +671 1530 0.400000 +671 1574 0.400000 +671 1820 0.400000 +671 1858 0.400000 +671 1909 0.400000 +671 1988 0.400000 +671 2025 0.400000 +671 2071 0.400000 +671 2076 0.400000 +671 2078 0.400000 +671 2105 0.400000 +671 2287 0.400000 +671 2421 0.400000 +671 2423 0.400000 +671 2436 0.400000 +671 2456 0.400000 +671 2527 0.400000 +671 2639 0.400000 +671 2647 0.400000 +671 2730 0.400000 +671 2753 0.400000 +671 2779 0.400000 +671 2812 0.400000 +671 2857 0.400000 +671 3023 0.400000 +671 3045 0.400000 +671 3054 0.400000 +671 3157 0.400000 +671 3181 0.400000 +672 3 0.400000 +672 19 0.400000 +672 109 0.400000 +672 144 0.400000 +672 182 0.400000 +672 258 0.400000 +672 362 0.400000 +672 488 0.400000 +672 527 0.400000 +672 534 0.400000 +672 594 0.400000 +672 627 0.400000 +672 632 0.400000 +672 663 0.400000 +672 727 0.400000 +672 774 0.400000 +672 855 0.400000 +672 875 0.400000 +672 1041 0.400000 +672 1055 0.400000 +672 1091 0.400000 +672 1117 0.400000 +672 1156 0.400000 +672 1157 0.400000 +672 1235 0.400000 +672 1356 0.400000 +672 1455 0.400000 +672 1525 0.400000 +672 1528 0.400000 +672 1533 0.400000 +672 1542 0.400000 +672 1558 0.400000 +672 1682 0.400000 +672 1752 0.400000 +672 1825 0.400000 +672 1844 0.400000 +672 1862 0.400000 +672 1874 0.400000 +672 1876 0.400000 +672 1940 0.400000 +672 1969 0.400000 +672 2038 0.400000 +672 2119 0.400000 +672 2134 0.400000 +672 2149 0.400000 +672 2195 0.400000 +672 2230 0.400000 +672 2374 0.400000 +672 2412 0.400000 +672 2433 0.400000 +672 2578 0.400000 +672 2616 0.400000 +672 2639 0.400000 +672 2664 0.400000 +672 2734 0.400000 +672 2749 0.400000 +672 2770 0.400000 +672 2823 0.400000 +672 2864 0.400000 +672 3002 0.400000 +672 3037 0.400000 +672 3133 0.400000 +672 3147 0.400000 +673 37 0.400000 +673 38 0.400000 +673 104 0.400000 +673 109 0.400000 +673 122 0.400000 +673 134 0.400000 +673 359 0.400000 +673 420 0.400000 +673 468 0.400000 +673 506 0.400000 +673 565 0.400000 +673 566 0.400000 +673 606 0.400000 +673 640 0.400000 +673 662 0.400000 +673 669 0.400000 +673 882 0.400000 +673 888 0.400000 +673 985 0.400000 +673 1072 0.400000 +673 1084 0.400000 +673 1209 0.400000 +673 1251 0.400000 +673 1296 0.400000 +673 1348 0.400000 +673 1391 0.400000 +673 1410 0.400000 +673 1426 0.400000 +673 1501 0.400000 +673 1601 0.400000 +673 1632 0.400000 +673 1698 0.400000 +673 1937 0.400000 +673 1964 0.400000 +673 1971 0.400000 +673 2065 0.400000 +673 2262 0.400000 +673 2292 0.400000 +673 2427 0.400000 +673 2441 0.400000 +673 2464 0.400000 +673 2614 0.400000 +673 2681 0.400000 +673 2693 0.400000 +673 2734 0.400000 +673 2751 0.400000 +673 2767 0.400000 +673 2808 0.400000 +673 2809 0.400000 +673 2823 0.400000 +673 2832 0.400000 +673 2838 0.400000 +673 2888 0.400000 +673 2959 0.400000 +673 3026 0.400000 +673 3083 0.400000 +674 63 0.400000 +674 75 0.400000 +674 266 0.400000 +674 296 0.400000 +674 314 0.400000 +674 455 0.400000 +674 616 0.400000 +674 623 0.400000 +674 635 0.400000 +674 719 0.400000 +674 744 0.400000 +674 878 0.400000 +674 909 0.400000 +674 921 0.400000 +674 1098 0.400000 +674 1135 0.400000 +674 1145 0.400000 +674 1169 0.400000 +674 1191 0.400000 +674 1199 0.400000 +674 1217 0.400000 +674 1388 0.400000 +674 1431 0.400000 +674 1545 0.400000 +674 1579 0.400000 +674 1604 0.400000 +674 1662 0.400000 +674 1950 0.400000 +674 1994 0.400000 +674 2110 0.400000 +674 2115 0.400000 +674 2213 0.400000 +674 2217 0.400000 +674 2239 0.400000 +674 2273 0.400000 +674 2289 0.400000 +674 2397 0.400000 +674 2441 0.400000 +674 2460 0.400000 +674 2490 0.400000 +674 2522 0.400000 +674 2648 0.400000 +674 2707 0.400000 +674 2735 0.400000 +674 2781 0.400000 +674 2818 0.400000 +674 2959 0.400000 +674 3041 0.400000 +675 54 0.400000 +675 110 0.400000 +675 135 0.400000 +675 165 0.400000 +675 220 0.400000 +675 299 0.400000 +675 343 0.400000 +675 418 0.400000 +675 470 0.400000 +675 481 0.400000 +675 510 0.400000 +675 536 0.400000 +675 564 0.400000 +675 580 0.400000 +675 636 0.400000 +675 719 0.400000 +675 720 0.400000 +675 730 0.400000 +675 758 0.400000 +675 766 0.400000 +675 842 0.400000 +675 893 0.400000 +675 961 0.400000 +675 978 0.400000 +675 990 0.400000 +675 1024 0.400000 +675 1136 0.400000 +675 1152 0.400000 +675 1164 0.400000 +675 1191 0.400000 +675 1388 0.400000 +675 1410 0.400000 +675 1469 0.400000 +675 1518 0.400000 +675 1600 0.400000 +675 1697 0.400000 +675 1703 0.400000 +675 1894 0.400000 +675 1966 0.400000 +675 1989 0.400000 +675 2022 0.400000 +675 2060 0.400000 +675 2113 0.400000 +675 2116 0.400000 +675 2156 0.400000 +675 2194 0.400000 +675 2338 0.400000 +675 2353 0.400000 +675 2387 0.400000 +675 2389 0.400000 +675 2434 0.400000 +675 2764 0.400000 +675 2790 0.400000 +675 2866 0.400000 +675 2942 0.400000 +675 2972 0.400000 +675 2985 0.400000 +675 3101 0.400000 +675 3115 0.400000 +676 3 0.400000 +676 97 0.400000 +676 103 0.400000 +676 106 0.400000 +676 111 0.400000 +676 136 0.400000 +676 149 0.400000 +676 163 0.400000 +676 207 0.400000 +676 213 0.400000 +676 224 0.400000 +676 252 0.400000 +676 260 0.400000 +676 444 0.400000 +676 498 0.400000 +676 538 0.400000 +676 551 0.400000 +676 577 0.400000 +676 585 0.400000 +676 692 0.400000 +676 717 0.400000 +676 778 0.400000 +676 800 0.400000 +676 806 0.400000 +676 890 0.400000 +676 1026 0.400000 +676 1073 0.400000 +676 1123 0.400000 +676 1198 0.400000 +676 1205 0.400000 +676 1250 0.400000 +676 1292 0.400000 +676 1378 0.400000 +676 1460 0.400000 +676 1477 0.400000 +676 1514 0.400000 +676 1548 0.400000 +676 1557 0.400000 +676 1563 0.400000 +676 1597 0.400000 +676 1633 0.400000 +676 1854 0.400000 +676 2074 0.400000 +676 2093 0.400000 +676 2231 0.400000 +676 2240 0.400000 +676 2266 0.400000 +676 2335 0.400000 +676 2351 0.400000 +676 2361 0.400000 +676 2425 0.400000 +676 2439 0.400000 +676 2579 0.400000 +676 2625 0.400000 +676 2637 0.400000 +676 2698 0.400000 +676 2751 0.400000 +676 2770 0.400000 +676 2802 0.400000 +676 2803 0.400000 +676 2838 0.400000 +676 2859 0.400000 +676 2949 0.400000 +676 2989 0.400000 +677 39 0.400000 +677 89 0.400000 +677 106 0.400000 +677 156 0.400000 +677 185 0.400000 +677 186 0.400000 +677 231 0.400000 +677 232 0.400000 +677 327 0.400000 +677 335 0.400000 +677 387 0.400000 +677 414 0.400000 +677 477 0.400000 +677 529 0.400000 +677 533 0.400000 +677 582 0.400000 +677 601 0.400000 +677 630 0.400000 +677 682 0.400000 +677 753 0.400000 +677 841 0.400000 +677 847 0.400000 +677 917 0.400000 +677 927 0.400000 +677 958 0.400000 +677 975 0.400000 +677 1092 0.400000 +677 1103 0.400000 +677 1183 0.400000 +677 1216 0.400000 +677 1230 0.400000 +677 1259 0.400000 +677 1304 0.400000 +677 1351 0.400000 +677 1361 0.400000 +677 1422 0.400000 +677 1481 0.400000 +677 1557 0.400000 +677 1640 0.400000 +677 1685 0.400000 +677 1691 0.400000 +677 1725 0.400000 +677 1732 0.400000 +677 1742 0.400000 +677 1745 0.400000 +677 1836 0.400000 +677 1866 0.400000 +677 1878 0.400000 +677 1911 0.400000 +677 1935 0.400000 +677 1943 0.400000 +677 1954 0.400000 +677 1982 0.400000 +677 2125 0.400000 +677 2151 0.400000 +677 2264 0.400000 +677 2328 0.400000 +677 2520 0.400000 +677 2547 0.400000 +677 2589 0.400000 +677 2693 0.400000 +677 2715 0.400000 +677 2718 0.400000 +677 2765 0.400000 +677 2839 0.400000 +677 2906 0.400000 +677 2931 0.400000 +677 2955 0.400000 +677 3010 0.400000 +677 3101 0.400000 +677 3116 0.400000 +677 3140 0.400000 +677 3147 0.400000 +677 3170 0.400000 +677 3190 0.400000 +678 42 0.400000 +678 94 0.400000 +678 134 0.400000 +678 140 0.400000 +678 224 0.400000 +678 279 0.400000 +678 336 0.400000 +678 373 0.400000 +678 380 0.400000 +678 440 0.400000 +678 465 0.400000 +678 577 0.400000 +678 618 0.400000 +678 664 0.400000 +678 672 0.400000 +678 687 0.400000 +678 690 0.400000 +678 735 0.400000 +678 811 0.400000 +678 813 0.400000 +678 900 0.400000 +678 911 0.400000 +678 920 0.400000 +678 960 0.400000 +678 962 0.400000 +678 1007 0.400000 +678 1058 0.400000 +678 1059 0.400000 +678 1063 0.400000 +678 1125 0.400000 +678 1135 0.400000 +678 1162 0.400000 +678 1203 0.400000 +678 1243 0.400000 +678 1258 0.400000 +678 1297 0.400000 +678 1345 0.400000 +678 1356 0.400000 +678 1366 0.400000 +678 1392 0.400000 +678 1409 0.400000 +678 1440 0.400000 +678 1488 0.400000 +678 1602 0.400000 +678 1803 0.400000 +678 1845 0.400000 +678 2004 0.400000 +678 2021 0.400000 +678 2230 0.400000 +678 2256 0.400000 +678 2308 0.400000 +678 2316 0.400000 +678 2333 0.400000 +678 2666 0.400000 +678 2777 0.400000 +678 2816 0.400000 +678 2826 0.400000 +678 2966 0.400000 +678 3005 0.400000 +678 3020 0.400000 +678 3121 0.400000 +679 6 0.400000 +679 47 0.400000 +679 97 0.400000 +679 155 0.400000 +679 226 0.400000 +679 249 0.400000 +679 254 0.400000 +679 273 0.400000 +679 289 0.400000 +679 327 0.400000 +679 490 0.400000 +679 514 0.400000 +679 526 0.400000 +679 719 0.400000 +679 737 0.400000 +679 743 0.400000 +679 937 0.400000 +679 974 0.400000 +679 1003 0.400000 +679 1006 0.400000 +679 1031 0.400000 +679 1041 0.400000 +679 1115 0.400000 +679 1138 0.400000 +679 1201 0.400000 +679 1220 0.400000 +679 1321 0.400000 +679 1345 0.400000 +679 1372 0.400000 +679 1394 0.400000 +679 1399 0.400000 +679 1483 0.400000 +679 1520 0.400000 +679 1527 0.400000 +679 1581 0.400000 +679 1645 0.400000 +679 1722 0.400000 +679 1775 0.400000 +679 1910 0.400000 +679 1974 0.400000 +679 1994 0.400000 +679 2037 0.400000 +679 2164 0.400000 +679 2185 0.400000 +679 2199 0.400000 +679 2205 0.400000 +679 2280 0.400000 +679 2300 0.400000 +679 2338 0.400000 +679 2341 0.400000 +679 2398 0.400000 +679 2403 0.400000 +679 2511 0.400000 +679 2530 0.400000 +679 2687 0.400000 +679 2801 0.400000 +679 2828 0.400000 +679 2842 0.400000 +679 2875 0.400000 +679 2889 0.400000 +679 2916 0.400000 +679 2959 0.400000 +679 3010 0.400000 +679 3055 0.400000 +679 3119 0.400000 +679 3151 0.400000 +679 3168 0.400000 +679 3200 0.400000 +680 3 0.400000 +680 8 0.400000 +680 15 0.400000 +680 74 0.400000 +680 296 0.400000 +680 301 0.400000 +680 393 0.400000 +680 483 0.400000 +680 493 0.400000 +680 598 0.400000 +680 729 0.400000 +680 791 0.400000 +680 899 0.400000 +680 1013 0.400000 +680 1051 0.400000 +680 1065 0.400000 +680 1270 0.400000 +680 1283 0.400000 +680 1362 0.400000 +680 1391 0.400000 +680 1479 0.400000 +680 1514 0.400000 +680 1533 0.400000 +680 1538 0.400000 +680 1595 0.400000 +680 1598 0.400000 +680 1695 0.400000 +680 1747 0.400000 +680 1770 0.400000 +680 1784 0.400000 +680 1788 0.400000 +680 1816 0.400000 +680 1828 0.400000 +680 1913 0.400000 +680 1966 0.400000 +680 1980 0.400000 +680 1998 0.400000 +680 2056 0.400000 +680 2125 0.400000 +680 2163 0.400000 +680 2170 0.400000 +680 2311 0.400000 +680 2320 0.400000 +680 2410 0.400000 +680 2413 0.400000 +680 2540 0.400000 +680 2553 0.400000 +680 2566 0.400000 +680 2598 0.400000 +680 2763 0.400000 +680 2972 0.400000 +680 2978 0.400000 +680 3018 0.400000 +680 3067 0.400000 +680 3079 0.400000 +680 3119 0.400000 +680 3126 0.400000 +680 3157 0.400000 +681 36 0.400000 +681 50 0.400000 +681 91 0.400000 +681 150 0.400000 +681 158 0.400000 +681 173 0.400000 +681 212 0.400000 +681 252 0.400000 +681 265 0.400000 +681 278 0.400000 +681 295 0.400000 +681 309 0.400000 +681 322 0.400000 +681 332 0.400000 +681 409 0.400000 +681 723 0.400000 +681 894 0.400000 +681 898 0.400000 +681 938 0.400000 +681 999 0.400000 +681 1082 0.400000 +681 1103 0.400000 +681 1128 0.400000 +681 1154 0.400000 +681 1189 0.400000 +681 1324 0.400000 +681 1362 0.400000 +681 1372 0.400000 +681 1416 0.400000 +681 1431 0.400000 +681 1515 0.400000 +681 1566 0.400000 +681 1729 0.400000 +681 1786 0.400000 +681 1844 0.400000 +681 1923 0.400000 +681 2066 0.400000 +681 2123 0.400000 +681 2175 0.400000 +681 2196 0.400000 +681 2232 0.400000 +681 2293 0.400000 +681 2310 0.400000 +681 2362 0.400000 +681 2371 0.400000 +681 2375 0.400000 +681 2398 0.400000 +681 2407 0.400000 +681 2431 0.400000 +681 2585 0.400000 +681 2615 0.400000 +681 2749 0.400000 +681 2763 0.400000 +681 2868 0.400000 +681 2946 0.400000 +681 3000 0.400000 +681 3003 0.400000 +681 3183 0.400000 +682 39 0.400000 +682 92 0.400000 +682 106 0.400000 +682 146 0.400000 +682 166 0.400000 +682 463 0.400000 +682 502 0.400000 +682 554 0.400000 +682 587 0.400000 +682 590 0.400000 +682 619 0.400000 +682 746 0.400000 +682 758 0.400000 +682 820 0.400000 +682 853 0.400000 +682 876 0.400000 +682 909 0.400000 +682 972 0.400000 +682 1022 0.400000 +682 1063 0.400000 +682 1097 0.400000 +682 1143 0.400000 +682 1145 0.400000 +682 1192 0.400000 +682 1227 0.400000 +682 1337 0.400000 +682 1356 0.400000 +682 1363 0.400000 +682 1558 0.400000 +682 1563 0.400000 +682 1650 0.400000 +682 1790 0.400000 +682 1805 0.400000 +682 1820 0.400000 +682 1873 0.400000 +682 2058 0.400000 +682 2128 0.400000 +682 2165 0.400000 +682 2166 0.400000 +682 2213 0.400000 +682 2223 0.400000 +682 2403 0.400000 +682 2463 0.400000 +682 2493 0.400000 +682 2502 0.400000 +682 2519 0.400000 +682 2520 0.400000 +682 2569 0.400000 +682 2622 0.400000 +682 2630 0.400000 +682 2636 0.400000 +682 2699 0.400000 +682 2805 0.400000 +682 2828 0.400000 +682 2853 0.400000 +682 2860 0.400000 +682 2884 0.400000 +682 2912 0.400000 +682 2937 0.400000 +682 3034 0.400000 +682 3087 0.400000 +682 3178 0.400000 +683 2 0.400000 +683 3 0.400000 +683 10 0.400000 +683 67 0.400000 +683 76 0.400000 +683 80 0.400000 +683 127 0.400000 +683 154 0.400000 +683 163 0.400000 +683 206 0.400000 +683 309 0.400000 +683 315 0.400000 +683 325 0.400000 +683 329 0.400000 +683 456 0.400000 +683 578 0.400000 +683 585 0.400000 +683 590 0.400000 +683 748 0.400000 +683 754 0.400000 +683 767 0.400000 +683 774 0.400000 +683 813 0.400000 +683 833 0.400000 +683 856 0.400000 +683 1209 0.400000 +683 1225 0.400000 +683 1325 0.400000 +683 1440 0.400000 +683 1444 0.400000 +683 1477 0.400000 +683 1592 0.400000 +683 1601 0.400000 +683 1655 0.400000 +683 1683 0.400000 +683 1716 0.400000 +683 1780 0.400000 +683 1805 0.400000 +683 1844 0.400000 +683 1849 0.400000 +683 1960 0.400000 +683 2042 0.400000 +683 2045 0.400000 +683 2079 0.400000 +683 2119 0.400000 +683 2220 0.400000 +683 2228 0.400000 +683 2241 0.400000 +683 2269 0.400000 +683 2323 0.400000 +683 2324 0.400000 +683 2366 0.400000 +683 2468 0.400000 +683 2523 0.400000 +683 2550 0.400000 +683 2558 0.400000 +683 2580 0.400000 +683 2648 0.400000 +683 2729 0.400000 +683 2730 0.400000 +683 2737 0.400000 +683 2749 0.400000 +683 2787 0.400000 +683 2820 0.400000 +683 2928 0.400000 +683 2937 0.400000 +683 2939 0.400000 +683 2943 0.400000 +683 2969 0.400000 +683 3041 0.400000 +683 3068 0.400000 +683 3075 0.400000 +683 3169 0.400000 +683 3184 0.400000 +684 31 0.400000 +684 208 0.400000 +684 290 0.400000 +684 329 0.400000 +684 355 0.400000 +684 506 0.400000 +684 584 0.400000 +684 611 0.400000 +684 828 0.400000 +684 842 0.400000 +684 866 0.400000 +684 922 0.400000 +684 1056 0.400000 +684 1088 0.400000 +684 1127 0.400000 +684 1150 0.400000 +684 1193 0.400000 +684 1197 0.400000 +684 1234 0.400000 +684 1241 0.400000 +684 1271 0.400000 +684 1272 0.400000 +684 1309 0.400000 +684 1339 0.400000 +684 1376 0.400000 +684 1394 0.400000 +684 1446 0.400000 +684 1500 0.400000 +684 1512 0.400000 +684 1525 0.400000 +684 1840 0.400000 +684 1864 0.400000 +684 1866 0.400000 +684 1931 0.400000 +684 1932 0.400000 +684 1942 0.400000 +684 1948 0.400000 +684 2117 0.400000 +684 2125 0.400000 +684 2159 0.400000 +684 2337 0.400000 +684 2404 0.400000 +684 2426 0.400000 +684 2509 0.400000 +684 2525 0.400000 +684 2539 0.400000 +684 2554 0.400000 +684 2559 0.400000 +684 2585 0.400000 +684 2667 0.400000 +684 2755 0.400000 +684 2767 0.400000 +684 2812 0.400000 +684 2884 0.400000 +684 2902 0.400000 +684 2998 0.400000 +684 3085 0.400000 +684 3124 0.400000 +685 12 0.400000 +685 57 0.400000 +685 141 0.400000 +685 228 0.400000 +685 314 0.400000 +685 413 0.400000 +685 484 0.400000 +685 496 0.400000 +685 521 0.400000 +685 541 0.400000 +685 564 0.400000 +685 622 0.400000 +685 631 0.400000 +685 672 0.400000 +685 775 0.400000 +685 786 0.400000 +685 800 0.400000 +685 819 0.400000 +685 824 0.400000 +685 834 0.400000 +685 905 0.400000 +685 1039 0.400000 +685 1110 0.400000 +685 1149 0.400000 +685 1157 0.400000 +685 1190 0.400000 +685 1212 0.400000 +685 1399 0.400000 +685 1431 0.400000 +685 1497 0.400000 +685 1569 0.400000 +685 1597 0.400000 +685 1612 0.400000 +685 1656 0.400000 +685 1710 0.400000 +685 1712 0.400000 +685 1736 0.400000 +685 1934 0.400000 +685 1954 0.400000 +685 1958 0.400000 +685 1984 0.400000 +685 2207 0.400000 +685 2315 0.400000 +685 2319 0.400000 +685 2390 0.400000 +685 2431 0.400000 +685 2594 0.400000 +685 2630 0.400000 +685 2770 0.400000 +685 2808 0.400000 +685 2833 0.400000 +685 2987 0.400000 +685 3017 0.400000 +685 3033 0.400000 +685 3089 0.400000 +685 3118 0.400000 +685 3131 0.400000 +686 98 0.400000 +686 149 0.400000 +686 233 0.400000 +686 289 0.400000 +686 293 0.400000 +686 427 0.400000 +686 453 0.400000 +686 513 0.400000 +686 641 0.400000 +686 757 0.400000 +686 808 0.400000 +686 840 0.400000 +686 996 0.400000 +686 1081 0.400000 +686 1160 0.400000 +686 1164 0.400000 +686 1180 0.400000 +686 1221 0.400000 +686 1267 0.400000 +686 1272 0.400000 +686 1297 0.400000 +686 1360 0.400000 +686 1396 0.400000 +686 1428 0.400000 +686 1431 0.400000 +686 1489 0.400000 +686 1507 0.400000 +686 1615 0.400000 +686 1701 0.400000 +686 1778 0.400000 +686 1818 0.400000 +686 1839 0.400000 +686 1877 0.400000 +686 1984 0.400000 +686 1998 0.400000 +686 2180 0.400000 +686 2220 0.400000 +686 2307 0.400000 +686 2375 0.400000 +686 2503 0.400000 +686 2534 0.400000 +686 2671 0.400000 +686 2708 0.400000 +686 2818 0.400000 +686 2868 0.400000 +686 3067 0.400000 +686 3183 0.400000 +687 15 0.400000 +687 68 0.400000 +687 69 0.400000 +687 79 0.400000 +687 177 0.400000 +687 184 0.400000 +687 406 0.400000 +687 499 0.400000 +687 501 0.400000 +687 527 0.400000 +687 602 0.400000 +687 693 0.400000 +687 741 0.400000 +687 762 0.400000 +687 819 0.400000 +687 821 0.400000 +687 862 0.400000 +687 902 0.400000 +687 910 0.400000 +687 953 0.400000 +687 980 0.400000 +687 998 0.400000 +687 1067 0.400000 +687 1085 0.400000 +687 1115 0.400000 +687 1120 0.400000 +687 1123 0.400000 +687 1124 0.400000 +687 1210 0.400000 +687 1228 0.400000 +687 1284 0.400000 +687 1291 0.400000 +687 1308 0.400000 +687 1375 0.400000 +687 1380 0.400000 +687 1492 0.400000 +687 1541 0.400000 +687 1592 0.400000 +687 1698 0.400000 +687 1735 0.400000 +687 1745 0.400000 +687 1802 0.400000 +687 1814 0.400000 +687 1823 0.400000 +687 1833 0.400000 +687 1847 0.400000 +687 2035 0.400000 +687 2043 0.400000 +687 2096 0.400000 +687 2179 0.400000 +687 2280 0.400000 +687 2333 0.400000 +687 2341 0.400000 +687 2390 0.400000 +687 2545 0.400000 +687 2603 0.400000 +687 2616 0.400000 +687 2684 0.400000 +687 2708 0.400000 +687 2798 0.400000 +687 2860 0.400000 +687 2872 0.400000 +687 2945 0.400000 +687 3030 0.400000 +687 3054 0.400000 +687 3082 0.400000 +687 3088 0.400000 +687 3182 0.400000 +688 103 0.400000 +688 127 0.400000 +688 169 0.400000 +688 202 0.400000 +688 243 0.400000 +688 346 0.400000 +688 376 0.400000 +688 412 0.400000 +688 520 0.400000 +688 522 0.400000 +688 530 0.400000 +688 588 0.400000 +688 618 0.400000 +688 642 0.400000 +688 689 0.400000 +688 696 0.400000 +688 699 0.400000 +688 750 0.400000 +688 817 0.400000 +688 821 0.400000 +688 848 0.400000 +688 867 0.400000 +688 921 0.400000 +688 946 0.400000 +688 1000 0.400000 +688 1005 0.400000 +688 1037 0.400000 +688 1125 0.400000 +688 1180 0.400000 +688 1214 0.400000 +688 1256 0.400000 +688 1277 0.400000 +688 1281 0.400000 +688 1304 0.400000 +688 1340 0.400000 +688 1348 0.400000 +688 1440 0.400000 +688 1450 0.400000 +688 1455 0.400000 +688 1470 0.400000 +688 1532 0.400000 +688 1580 0.400000 +688 1602 0.400000 +688 1619 0.400000 +688 1652 0.400000 +688 1693 0.400000 +688 1698 0.400000 +688 1842 0.400000 +688 2093 0.400000 +688 2096 0.400000 +688 2254 0.400000 +688 2281 0.400000 +688 2305 0.400000 +688 2325 0.400000 +688 2335 0.400000 +688 2481 0.400000 +688 2557 0.400000 +688 2563 0.400000 +688 2583 0.400000 +688 2598 0.400000 +688 2625 0.400000 +688 2718 0.400000 +688 2730 0.400000 +688 2775 0.400000 +688 2794 0.400000 +688 2883 0.400000 +688 2939 0.400000 +688 2971 0.400000 +688 3000 0.400000 +688 3019 0.400000 +688 3030 0.400000 +688 3045 0.400000 +688 3059 0.400000 +688 3086 0.400000 +688 3191 0.400000 +689 5 0.400000 +689 22 0.400000 +689 28 0.400000 +689 66 0.400000 +689 81 0.400000 +689 162 0.400000 +689 229 0.400000 +689 301 0.400000 +689 373 0.400000 +689 443 0.400000 +689 464 0.400000 +689 476 0.400000 +689 548 0.400000 +689 601 0.400000 +689 620 0.400000 +689 633 0.400000 +689 658 0.400000 +689 764 0.400000 +689 783 0.400000 +689 811 0.400000 +689 816 0.400000 +689 915 0.400000 +689 938 0.400000 +689 945 0.400000 +689 948 0.400000 +689 1046 0.400000 +689 1047 0.400000 +689 1106 0.400000 +689 1128 0.400000 +689 1135 0.400000 +689 1164 0.400000 +689 1216 0.400000 +689 1224 0.400000 +689 1226 0.400000 +689 1268 0.400000 +689 1534 0.400000 +689 1545 0.400000 +689 1708 0.400000 +689 1763 0.400000 +689 1765 0.400000 +689 1843 0.400000 +689 1950 0.400000 +689 1963 0.400000 +689 2001 0.400000 +689 2022 0.400000 +689 2108 0.400000 +689 2132 0.400000 +689 2171 0.400000 +689 2191 0.400000 +689 2394 0.400000 +689 2401 0.400000 +689 2433 0.400000 +689 2462 0.400000 +689 2504 0.400000 +689 2510 0.400000 +689 2628 0.400000 +689 2641 0.400000 +689 2693 0.400000 +689 2748 0.400000 +689 2815 0.400000 +689 2852 0.400000 +689 2931 0.400000 +689 2948 0.400000 +689 3029 0.400000 +689 3038 0.400000 +689 3047 0.400000 +689 3089 0.400000 +690 98 0.400000 +690 162 0.400000 +690 220 0.400000 +690 270 0.400000 +690 444 0.400000 +690 493 0.400000 +690 544 0.400000 +690 746 0.400000 +690 765 0.400000 +690 800 0.400000 +690 802 0.400000 +690 903 0.400000 +690 909 0.400000 +690 925 0.400000 +690 1018 0.400000 +690 1020 0.400000 +690 1049 0.400000 +690 1117 0.400000 +690 1242 0.400000 +690 1344 0.400000 +690 1413 0.400000 +690 1470 0.400000 +690 1474 0.400000 +690 1510 0.400000 +690 1660 0.400000 +690 1722 0.400000 +690 1734 0.400000 +690 1800 0.400000 +690 1914 0.400000 +690 1930 0.400000 +690 2049 0.400000 +690 2247 0.400000 +690 2255 0.400000 +690 2266 0.400000 +690 2310 0.400000 +690 2347 0.400000 +690 2378 0.400000 +690 2408 0.400000 +690 2434 0.400000 +690 2450 0.400000 +690 2482 0.400000 +690 2552 0.400000 +690 2570 0.400000 +690 2673 0.400000 +690 2698 0.400000 +690 2729 0.400000 +690 2743 0.400000 +690 2746 0.400000 +690 2779 0.400000 +690 2878 0.400000 +690 2898 0.400000 +690 2915 0.400000 +690 2946 0.400000 +690 2971 0.400000 +690 2985 0.400000 +690 3029 0.400000 +690 3085 0.400000 +690 3111 0.400000 +690 3122 0.400000 +690 3149 0.400000 +690 3157 0.400000 +690 3177 0.400000 +691 20 0.400000 +691 79 0.400000 +691 111 0.400000 +691 159 0.400000 +691 185 0.400000 +691 324 0.400000 +691 452 0.400000 +691 590 0.400000 +691 674 0.400000 +691 720 0.400000 +691 872 0.400000 +691 933 0.400000 +691 941 0.400000 +691 943 0.400000 +691 949 0.400000 +691 1062 0.400000 +691 1084 0.400000 +691 1091 0.400000 +691 1092 0.400000 +691 1131 0.400000 +691 1252 0.400000 +691 1287 0.400000 +691 1388 0.400000 +691 1406 0.400000 +691 1482 0.400000 +691 1660 0.400000 +691 1721 0.400000 +691 1754 0.400000 +691 1895 0.400000 +691 1905 0.400000 +691 1945 0.400000 +691 2006 0.400000 +691 2007 0.400000 +691 2188 0.400000 +691 2189 0.400000 +691 2231 0.400000 +691 2254 0.400000 +691 2366 0.400000 +691 2369 0.400000 +691 2381 0.400000 +691 2392 0.400000 +691 2394 0.400000 +691 2401 0.400000 +691 2419 0.400000 +691 2478 0.400000 +691 2525 0.400000 +691 2641 0.400000 +691 2666 0.400000 +691 2884 0.400000 +691 2897 0.400000 +691 3068 0.400000 +691 3152 0.400000 +691 3190 0.400000 +691 3192 0.400000 +692 29 0.400000 +692 181 0.400000 +692 374 0.400000 +692 379 0.400000 +692 446 0.400000 +692 451 0.400000 +692 551 0.400000 +692 623 0.400000 +692 840 0.400000 +692 856 0.400000 +692 902 0.400000 +692 955 0.400000 +692 996 0.400000 +692 1028 0.400000 +692 1033 0.400000 +692 1045 0.400000 +692 1133 0.400000 +692 1140 0.400000 +692 1331 0.400000 +692 1393 0.400000 +692 1474 0.400000 +692 1553 0.400000 +692 1750 0.400000 +692 1835 0.400000 +692 1900 0.400000 +692 2029 0.400000 +692 2030 0.400000 +692 2043 0.400000 +692 2145 0.400000 +692 2166 0.400000 +692 2172 0.400000 +692 2232 0.400000 +692 2248 0.400000 +692 2301 0.400000 +692 2308 0.400000 +692 2403 0.400000 +692 2413 0.400000 +692 2475 0.400000 +692 2527 0.400000 +692 2598 0.400000 +692 2618 0.400000 +692 2721 0.400000 +692 2764 0.400000 +692 2839 0.400000 +692 2911 0.400000 +692 2912 0.400000 +692 3022 0.400000 +692 3070 0.400000 +692 3102 0.400000 +692 3128 0.400000 +692 3154 0.400000 +692 3164 0.400000 +693 39 0.400000 +693 97 0.400000 +693 173 0.400000 +693 202 0.400000 +693 363 0.400000 +693 597 0.400000 +693 733 0.400000 +693 795 0.400000 +693 806 0.400000 +693 811 0.400000 +693 929 0.400000 +693 934 0.400000 +693 1134 0.400000 +693 1183 0.400000 +693 1195 0.400000 +693 1271 0.400000 +693 1282 0.400000 +693 1326 0.400000 +693 1435 0.400000 +693 1446 0.400000 +693 1476 0.400000 +693 1487 0.400000 +693 1587 0.400000 +693 1594 0.400000 +693 1728 0.400000 +693 1798 0.400000 +693 1829 0.400000 +693 1841 0.400000 +693 1853 0.400000 +693 1907 0.400000 +693 1973 0.400000 +693 2031 0.400000 +693 2047 0.400000 +693 2079 0.400000 +693 2151 0.400000 +693 2179 0.400000 +693 2235 0.400000 +693 2238 0.400000 +693 2242 0.400000 +693 2257 0.400000 +693 2269 0.400000 +693 2317 0.400000 +693 2321 0.400000 +693 2336 0.400000 +693 2350 0.400000 +693 2366 0.400000 +693 2388 0.400000 +693 2435 0.400000 +693 2441 0.400000 +693 2552 0.400000 +693 2615 0.400000 +693 2733 0.400000 +693 2772 0.400000 +693 2789 0.400000 +693 2818 0.400000 +693 2841 0.400000 +693 2858 0.400000 +693 2920 0.400000 +693 2961 0.400000 +694 71 0.400000 +694 130 0.400000 +694 221 0.400000 +694 255 0.400000 +694 319 0.400000 +694 360 0.400000 +694 375 0.400000 +694 387 0.400000 +694 609 0.400000 +694 661 0.400000 +694 663 0.400000 +694 740 0.400000 +694 809 0.400000 +694 818 0.400000 +694 882 0.400000 +694 921 0.400000 +694 925 0.400000 +694 956 0.400000 +694 1039 0.400000 +694 1097 0.400000 +694 1119 0.400000 +694 1206 0.400000 +694 1253 0.400000 +694 1272 0.400000 +694 1321 0.400000 +694 1371 0.400000 +694 1397 0.400000 +694 1417 0.400000 +694 1463 0.400000 +694 1495 0.400000 +694 1500 0.400000 +694 1553 0.400000 +694 1555 0.400000 +694 1717 0.400000 +694 1759 0.400000 +694 1775 0.400000 +694 1785 0.400000 +694 1842 0.400000 +694 1867 0.400000 +694 1931 0.400000 +694 1954 0.400000 +694 1987 0.400000 +694 2076 0.400000 +694 2094 0.400000 +694 2102 0.400000 +694 2103 0.400000 +694 2142 0.400000 +694 2202 0.400000 +694 2232 0.400000 +694 2252 0.400000 +694 2258 0.400000 +694 2259 0.400000 +694 2300 0.400000 +694 2303 0.400000 +694 2342 0.400000 +694 2369 0.400000 +694 2413 0.400000 +694 2446 0.400000 +694 2492 0.400000 +694 2542 0.400000 +694 2601 0.400000 +694 2636 0.400000 +694 2687 0.400000 +694 2724 0.400000 +694 2746 0.400000 +694 2785 0.400000 +694 2809 0.400000 +694 2918 0.400000 +694 3017 0.400000 +694 3057 0.400000 +694 3067 0.400000 +694 3069 0.400000 +694 3074 0.400000 +694 3104 0.400000 +695 31 0.400000 +695 92 0.400000 +695 184 0.400000 +695 245 0.400000 +695 248 0.400000 +695 455 0.400000 +695 459 0.400000 +695 553 0.400000 +695 631 0.400000 +695 658 0.400000 +695 765 0.400000 +695 810 0.400000 +695 811 0.400000 +695 846 0.400000 +695 852 0.400000 +695 860 0.400000 +695 897 0.400000 +695 912 0.400000 +695 944 0.400000 +695 950 0.400000 +695 1016 0.400000 +695 1018 0.400000 +695 1048 0.400000 +695 1087 0.400000 +695 1130 0.400000 +695 1153 0.400000 +695 1167 0.400000 +695 1180 0.400000 +695 1182 0.400000 +695 1211 0.400000 +695 1295 0.400000 +695 1371 0.400000 +695 1380 0.400000 +695 1388 0.400000 +695 1449 0.400000 +695 1578 0.400000 +695 1638 0.400000 +695 1662 0.400000 +695 1751 0.400000 +695 1781 0.400000 +695 1798 0.400000 +695 1820 0.400000 +695 1844 0.400000 +695 1870 0.400000 +695 1904 0.400000 +695 1953 0.400000 +695 1963 0.400000 +695 2079 0.400000 +695 2131 0.400000 +695 2170 0.400000 +695 2183 0.400000 +695 2197 0.400000 +695 2232 0.400000 +695 2315 0.400000 +695 2372 0.400000 +695 2394 0.400000 +695 2397 0.400000 +695 2460 0.400000 +695 2485 0.400000 +695 2626 0.400000 +695 2729 0.400000 +695 2784 0.400000 +695 2824 0.400000 +695 2886 0.400000 +695 2932 0.400000 +695 3008 0.400000 +695 3009 0.400000 +695 3020 0.400000 +695 3123 0.400000 +695 3162 0.400000 +696 4 0.400000 +696 17 0.400000 +696 80 0.400000 +696 99 0.400000 +696 210 0.400000 +696 222 0.400000 +696 242 0.400000 +696 279 0.400000 +696 321 0.400000 +696 345 0.400000 +696 398 0.400000 +696 423 0.400000 +696 435 0.400000 +696 438 0.400000 +696 447 0.400000 +696 469 0.400000 +696 507 0.400000 +696 547 0.400000 +696 694 0.400000 +696 715 0.400000 +696 777 0.400000 +696 816 0.400000 +696 908 0.400000 +696 911 0.400000 +696 926 0.400000 +696 1005 0.400000 +696 1010 0.400000 +696 1088 0.400000 +696 1244 0.400000 +696 1318 0.400000 +696 1384 0.400000 +696 1517 0.400000 +696 1537 0.400000 +696 1570 0.400000 +696 1667 0.400000 +696 1671 0.400000 +696 1694 0.400000 +696 1734 0.400000 +696 1745 0.400000 +696 1756 0.400000 +696 1868 0.400000 +696 1899 0.400000 +696 1962 0.400000 +696 2007 0.400000 +696 2017 0.400000 +696 2037 0.400000 +696 2079 0.400000 +696 2116 0.400000 +696 2182 0.400000 +696 2183 0.400000 +696 2294 0.400000 +696 2340 0.400000 +696 2410 0.400000 +696 2444 0.400000 +696 2457 0.400000 +696 2497 0.400000 +696 2524 0.400000 +696 2543 0.400000 +696 2572 0.400000 +696 2585 0.400000 +696 2589 0.400000 +696 2625 0.400000 +696 2637 0.400000 +696 2639 0.400000 +696 2711 0.400000 +696 2732 0.400000 +696 2777 0.400000 +696 2792 0.400000 +696 2834 0.400000 +696 3097 0.400000 +697 111 0.400000 +697 191 0.400000 +697 198 0.400000 +697 272 0.400000 +697 281 0.400000 +697 286 0.400000 +697 370 0.400000 +697 386 0.400000 +697 485 0.400000 +697 509 0.400000 +697 515 0.400000 +697 658 0.400000 +697 685 0.400000 +697 764 0.400000 +697 799 0.400000 +697 831 0.400000 +697 835 0.400000 +697 869 0.400000 +697 924 0.400000 +697 945 0.400000 +697 981 0.400000 +697 1006 0.400000 +697 1031 0.400000 +697 1053 0.400000 +697 1070 0.400000 +697 1087 0.400000 +697 1131 0.400000 +697 1138 0.400000 +697 1229 0.400000 +697 1255 0.400000 +697 1382 0.400000 +697 1489 0.400000 +697 1493 0.400000 +697 1597 0.400000 +697 1605 0.400000 +697 1654 0.400000 +697 1675 0.400000 +697 1693 0.400000 +697 1760 0.400000 +697 1764 0.400000 +697 1781 0.400000 +697 1794 0.400000 +697 1795 0.400000 +697 1891 0.400000 +697 1906 0.400000 +697 1934 0.400000 +697 1952 0.400000 +697 1998 0.400000 +697 2070 0.400000 +697 2115 0.400000 +697 2165 0.400000 +697 2182 0.400000 +697 2220 0.400000 +697 2221 0.400000 +697 2259 0.400000 +697 2316 0.400000 +697 2368 0.400000 +697 2421 0.400000 +697 2442 0.400000 +697 2443 0.400000 +697 2459 0.400000 +697 2477 0.400000 +697 2479 0.400000 +697 2550 0.400000 +697 2668 0.400000 +697 2684 0.400000 +697 2837 0.400000 +697 2887 0.400000 +697 2918 0.400000 +697 2928 0.400000 +697 2932 0.400000 +697 2964 0.400000 +697 2977 0.400000 +697 3078 0.400000 +697 3183 0.400000 +698 77 0.400000 +698 144 0.400000 +698 222 0.400000 +698 279 0.400000 +698 301 0.400000 +698 471 0.400000 +698 515 0.400000 +698 564 0.400000 +698 569 0.400000 +698 574 0.400000 +698 640 0.400000 +698 826 0.400000 +698 893 0.400000 +698 962 0.400000 +698 1008 0.400000 +698 1052 0.400000 +698 1081 0.400000 +698 1125 0.400000 +698 1137 0.400000 +698 1141 0.400000 +698 1273 0.400000 +698 1330 0.400000 +698 1349 0.400000 +698 1376 0.400000 +698 1415 0.400000 +698 1484 0.400000 +698 1526 0.400000 +698 1547 0.400000 +698 1596 0.400000 +698 1607 0.400000 +698 1787 0.400000 +698 1826 0.400000 +698 1866 0.400000 +698 1887 0.400000 +698 2003 0.400000 +698 2021 0.400000 +698 2084 0.400000 +698 2105 0.400000 +698 2229 0.400000 +698 2274 0.400000 +698 2302 0.400000 +698 2452 0.400000 +698 2494 0.400000 +698 2498 0.400000 +698 2511 0.400000 +698 2663 0.400000 +698 2668 0.400000 +698 2698 0.400000 +698 2734 0.400000 +698 2785 0.400000 +698 2802 0.400000 +698 2872 0.400000 +698 2894 0.400000 +698 3036 0.400000 +698 3042 0.400000 +698 3047 0.400000 +698 3075 0.400000 +698 3082 0.400000 +698 3149 0.400000 +699 9 0.400000 +699 30 0.400000 +699 76 0.400000 +699 103 0.400000 +699 106 0.400000 +699 107 0.400000 +699 141 0.400000 +699 166 0.400000 +699 209 0.400000 +699 313 0.400000 +699 509 0.400000 +699 594 0.400000 +699 607 0.400000 +699 633 0.400000 +699 652 0.400000 +699 782 0.400000 +699 798 0.400000 +699 868 0.400000 +699 877 0.400000 +699 912 0.400000 +699 938 0.400000 +699 953 0.400000 +699 963 0.400000 +699 984 0.400000 +699 1045 0.400000 +699 1147 0.400000 +699 1267 0.400000 +699 1316 0.400000 +699 1435 0.400000 +699 1487 0.400000 +699 1532 0.400000 +699 1550 0.400000 +699 1676 0.400000 +699 1780 0.400000 +699 1812 0.400000 +699 1850 0.400000 +699 2027 0.400000 +699 2069 0.400000 +699 2072 0.400000 +699 2165 0.400000 +699 2252 0.400000 +699 2344 0.400000 +699 2404 0.400000 +699 2429 0.400000 +699 2451 0.400000 +699 2453 0.400000 +699 2509 0.400000 +699 2518 0.400000 +699 2641 0.400000 +699 2676 0.400000 +699 2819 0.400000 +699 2844 0.400000 +699 2943 0.400000 +699 2986 0.400000 +699 3034 0.400000 +699 3040 0.400000 +699 3058 0.400000 +699 3109 0.400000 +699 3123 0.400000 +699 3136 0.400000 +699 3161 0.400000 +699 3184 0.400000 +700 94 0.400000 +700 239 0.400000 +700 282 0.400000 +700 308 0.400000 +700 381 0.400000 +700 409 0.400000 +700 439 0.400000 +700 482 0.400000 +700 489 0.400000 +700 493 0.400000 +700 608 0.400000 +700 673 0.400000 +700 687 0.400000 +700 690 0.400000 +700 729 0.400000 +700 763 0.400000 +700 780 0.400000 +700 781 0.400000 +700 782 0.400000 +700 841 0.400000 +700 884 0.400000 +700 901 0.400000 +700 948 0.400000 +700 989 0.400000 +700 1013 0.400000 +700 1068 0.400000 +700 1132 0.400000 +700 1150 0.400000 +700 1207 0.400000 +700 1384 0.400000 +700 1402 0.400000 +700 1407 0.400000 +700 1447 0.400000 +700 1519 0.400000 +700 1526 0.400000 +700 1560 0.400000 +700 1578 0.400000 +700 1581 0.400000 +700 1589 0.400000 +700 1617 0.400000 +700 1764 0.400000 +700 1774 0.400000 +700 1790 0.400000 +700 1815 0.400000 +700 1904 0.400000 +700 1915 0.400000 +700 2050 0.400000 +700 2092 0.400000 +700 2195 0.400000 +700 2384 0.400000 +700 2522 0.400000 +700 2538 0.400000 +700 2595 0.400000 +700 2644 0.400000 +700 2667 0.400000 +700 2716 0.400000 +700 2719 0.400000 +700 2772 0.400000 +700 2998 0.400000 +700 3003 0.400000 +700 3054 0.400000 +700 3182 0.400000 +701 84 0.400000 +701 109 0.400000 +701 136 0.400000 +701 155 0.400000 +701 222 0.400000 +701 258 0.400000 +701 369 0.400000 +701 497 0.400000 +701 643 0.400000 +701 657 0.400000 +701 659 0.400000 +701 792 0.400000 +701 832 0.400000 +701 1004 0.400000 +701 1024 0.400000 +701 1114 0.400000 +701 1134 0.400000 +701 1149 0.400000 +701 1346 0.400000 +701 1430 0.400000 +701 1447 0.400000 +701 1506 0.400000 +701 1531 0.400000 +701 1534 0.400000 +701 1594 0.400000 +701 1693 0.400000 +701 1802 0.400000 +701 1858 0.400000 +701 1860 0.400000 +701 1867 0.400000 +701 1896 0.400000 +701 1913 0.400000 +701 1983 0.400000 +701 2017 0.400000 +701 2053 0.400000 +701 2070 0.400000 +701 2074 0.400000 +701 2075 0.400000 +701 2078 0.400000 +701 2090 0.400000 +701 2162 0.400000 +701 2213 0.400000 +701 2241 0.400000 +701 2483 0.400000 +701 2510 0.400000 +701 2531 0.400000 +701 2551 0.400000 +701 2580 0.400000 +701 2635 0.400000 +701 2731 0.400000 +701 2883 0.400000 +701 2902 0.400000 +701 2932 0.400000 +701 2945 0.400000 +701 3083 0.400000 +701 3192 0.400000 +702 9 0.400000 +702 20 0.400000 +702 22 0.400000 +702 57 0.400000 +702 112 0.400000 +702 137 0.400000 +702 149 0.400000 +702 190 0.400000 +702 280 0.400000 +702 348 0.400000 +702 376 0.400000 +702 382 0.400000 +702 393 0.400000 +702 483 0.400000 +702 497 0.400000 +702 515 0.400000 +702 541 0.400000 +702 594 0.400000 +702 602 0.400000 +702 720 0.400000 +702 740 0.400000 +702 753 0.400000 +702 777 0.400000 +702 780 0.400000 +702 851 0.400000 +702 1161 0.400000 +702 1163 0.400000 +702 1175 0.400000 +702 1182 0.400000 +702 1197 0.400000 +702 1419 0.400000 +702 1428 0.400000 +702 1569 0.400000 +702 1633 0.400000 +702 1660 0.400000 +702 1734 0.400000 +702 1740 0.400000 +702 1792 0.400000 +702 1820 0.400000 +702 1821 0.400000 +702 1896 0.400000 +702 2011 0.400000 +702 2110 0.400000 +702 2212 0.400000 +702 2230 0.400000 +702 2233 0.400000 +702 2298 0.400000 +702 2308 0.400000 +702 2334 0.400000 +702 2415 0.400000 +702 2468 0.400000 +702 2505 0.400000 +702 2609 0.400000 +702 2668 0.400000 +702 2692 0.400000 +702 2809 0.400000 +702 2815 0.400000 +702 2857 0.400000 +702 2986 0.400000 +702 3099 0.400000 +702 3119 0.400000 +702 3183 0.400000 +703 40 0.400000 +703 88 0.400000 +703 132 0.400000 +703 182 0.400000 +703 248 0.400000 +703 258 0.400000 +703 366 0.400000 +703 373 0.400000 +703 385 0.400000 +703 426 0.400000 +703 495 0.400000 +703 633 0.400000 +703 651 0.400000 +703 681 0.400000 +703 698 0.400000 +703 796 0.400000 +703 808 0.400000 +703 811 0.400000 +703 828 0.400000 +703 843 0.400000 +703 939 0.400000 +703 1012 0.400000 +703 1027 0.400000 +703 1047 0.400000 +703 1099 0.400000 +703 1100 0.400000 +703 1138 0.400000 +703 1183 0.400000 +703 1244 0.400000 +703 1257 0.400000 +703 1260 0.400000 +703 1374 0.400000 +703 1409 0.400000 +703 1437 0.400000 +703 1583 0.400000 +703 1587 0.400000 +703 1613 0.400000 +703 1667 0.400000 +703 1675 0.400000 +703 1686 0.400000 +703 1736 0.400000 +703 1878 0.400000 +703 1887 0.400000 +703 1953 0.400000 +703 1984 0.400000 +703 1991 0.400000 +703 2004 0.400000 +703 2027 0.400000 +703 2033 0.400000 +703 2034 0.400000 +703 2104 0.400000 +703 2173 0.400000 +703 2212 0.400000 +703 2443 0.400000 +703 2499 0.400000 +703 2501 0.400000 +703 2535 0.400000 +703 2539 0.400000 +703 2555 0.400000 +703 2690 0.400000 +703 2816 0.400000 +703 2824 0.400000 +703 2865 0.400000 +703 2888 0.400000 +703 2913 0.400000 +703 2979 0.400000 +703 2995 0.400000 +703 3004 0.400000 +703 3014 0.400000 +703 3032 0.400000 +703 3078 0.400000 +703 3146 0.400000 +703 3196 0.400000 +704 29 0.400000 +704 30 0.400000 +704 68 0.400000 +704 103 0.400000 +704 130 0.400000 +704 151 0.400000 +704 182 0.400000 +704 640 0.400000 +704 673 0.400000 +704 710 0.400000 +704 827 0.400000 +704 833 0.400000 +704 860 0.400000 +704 924 0.400000 +704 945 0.400000 +704 996 0.400000 +704 1006 0.400000 +704 1030 0.400000 +704 1064 0.400000 +704 1066 0.400000 +704 1096 0.400000 +704 1135 0.400000 +704 1156 0.400000 +704 1170 0.400000 +704 1319 0.400000 +704 1324 0.400000 +704 1333 0.400000 +704 1346 0.400000 +704 1479 0.400000 +704 1540 0.400000 +704 1756 0.400000 +704 1876 0.400000 +704 1877 0.400000 +704 1908 0.400000 +704 2143 0.400000 +704 2184 0.400000 +704 2198 0.400000 +704 2202 0.400000 +704 2255 0.400000 +704 2327 0.400000 +704 2350 0.400000 +704 2477 0.400000 +704 2500 0.400000 +704 2556 0.400000 +704 2557 0.400000 +704 2604 0.400000 +704 2611 0.400000 +704 2614 0.400000 +704 2665 0.400000 +704 2680 0.400000 +704 2775 0.400000 +704 2934 0.400000 +704 2976 0.400000 +704 3000 0.400000 +704 3011 0.400000 +704 3065 0.400000 +704 3066 0.400000 +704 3147 0.400000 +704 3164 0.400000 +705 10 0.400000 +705 88 0.400000 +705 110 0.400000 +705 158 0.400000 +705 227 0.400000 +705 248 0.400000 +705 295 0.400000 +705 310 0.400000 +705 327 0.400000 +705 349 0.400000 +705 379 0.400000 +705 397 0.400000 +705 429 0.400000 +705 480 0.400000 +705 489 0.400000 +705 517 0.400000 +705 528 0.400000 +705 540 0.400000 +705 545 0.400000 +705 573 0.400000 +705 712 0.400000 +705 721 0.400000 +705 737 0.400000 +705 763 0.400000 +705 812 0.400000 +705 825 0.400000 +705 943 0.400000 +705 980 0.400000 +705 1061 0.400000 +705 1088 0.400000 +705 1195 0.400000 +705 1206 0.400000 +705 1221 0.400000 +705 1227 0.400000 +705 1271 0.400000 +705 1294 0.400000 +705 1387 0.400000 +705 1463 0.400000 +705 1526 0.400000 +705 1560 0.400000 +705 1671 0.400000 +705 1869 0.400000 +705 1891 0.400000 +705 1925 0.400000 +705 2010 0.400000 +705 2054 0.400000 +705 2089 0.400000 +705 2175 0.400000 +705 2219 0.400000 +705 2293 0.400000 +705 2298 0.400000 +705 2331 0.400000 +705 2337 0.400000 +705 2360 0.400000 +705 2399 0.400000 +705 2435 0.400000 +705 2454 0.400000 +705 2457 0.400000 +705 2531 0.400000 +705 2586 0.400000 +705 2670 0.400000 +705 2683 0.400000 +705 2847 0.400000 +705 2978 0.400000 +705 3026 0.400000 +705 3064 0.400000 +705 3122 0.400000 +706 72 0.400000 +706 79 0.400000 +706 116 0.400000 +706 124 0.400000 +706 185 0.400000 +706 194 0.400000 +706 217 0.400000 +706 242 0.400000 +706 294 0.400000 +706 408 0.400000 +706 437 0.400000 +706 499 0.400000 +706 546 0.400000 +706 582 0.400000 +706 612 0.400000 +706 671 0.400000 +706 682 0.400000 +706 819 0.400000 +706 868 0.400000 +706 900 0.400000 +706 1025 0.400000 +706 1106 0.400000 +706 1129 0.400000 +706 1238 0.400000 +706 1267 0.400000 +706 1291 0.400000 +706 1305 0.400000 +706 1415 0.400000 +706 1437 0.400000 +706 1541 0.400000 +706 1662 0.400000 +706 1713 0.400000 +706 1723 0.400000 +706 1736 0.400000 +706 1901 0.400000 +706 1925 0.400000 +706 1953 0.400000 +706 1964 0.400000 +706 1971 0.400000 +706 2044 0.400000 +706 2118 0.400000 +706 2208 0.400000 +706 2225 0.400000 +706 2229 0.400000 +706 2242 0.400000 +706 2278 0.400000 +706 2355 0.400000 +706 2401 0.400000 +706 2413 0.400000 +706 2419 0.400000 +706 2442 0.400000 +706 2547 0.400000 +706 2581 0.400000 +706 2586 0.400000 +706 2687 0.400000 +706 2763 0.400000 +706 2774 0.400000 +706 2836 0.400000 +706 2861 0.400000 +706 2920 0.400000 +706 2948 0.400000 +706 2966 0.400000 +706 2999 0.400000 +706 3078 0.400000 +706 3124 0.400000 +706 3138 0.400000 +706 3140 0.400000 +706 3199 0.400000 +707 61 0.400000 +707 70 0.400000 +707 177 0.400000 +707 229 0.400000 +707 263 0.400000 +707 264 0.400000 +707 348 0.400000 +707 380 0.400000 +707 415 0.400000 +707 417 0.400000 +707 465 0.400000 +707 525 0.400000 +707 556 0.400000 +707 570 0.400000 +707 594 0.400000 +707 613 0.400000 +707 620 0.400000 +707 685 0.400000 +707 770 0.400000 +707 829 0.400000 +707 845 0.400000 +707 853 0.400000 +707 960 0.400000 +707 1049 0.400000 +707 1052 0.400000 +707 1197 0.400000 +707 1203 0.400000 +707 1212 0.400000 +707 1322 0.400000 +707 1429 0.400000 +707 1500 0.400000 +707 1556 0.400000 +707 1567 0.400000 +707 1587 0.400000 +707 1632 0.400000 +707 1644 0.400000 +707 1717 0.400000 +707 1789 0.400000 +707 1798 0.400000 +707 1800 0.400000 +707 1839 0.400000 +707 1880 0.400000 +707 1882 0.400000 +707 1899 0.400000 +707 1908 0.400000 +707 1934 0.400000 +707 1935 0.400000 +707 1962 0.400000 +707 1964 0.400000 +707 1982 0.400000 +707 2036 0.400000 +707 2072 0.400000 +707 2105 0.400000 +707 2115 0.400000 +707 2302 0.400000 +707 2307 0.400000 +707 2316 0.400000 +707 2352 0.400000 +707 2368 0.400000 +707 2416 0.400000 +707 2427 0.400000 +707 2527 0.400000 +707 2573 0.400000 +707 2599 0.400000 +707 2618 0.400000 +707 2665 0.400000 +707 2671 0.400000 +707 2698 0.400000 +707 2758 0.400000 +707 2791 0.400000 +707 2833 0.400000 +707 2897 0.400000 +707 2986 0.400000 +707 3083 0.400000 +707 3084 0.400000 +708 17 0.400000 +708 33 0.400000 +708 156 0.400000 +708 169 0.400000 +708 197 0.400000 +708 222 0.400000 +708 245 0.400000 +708 350 0.400000 +708 355 0.400000 +708 357 0.400000 +708 411 0.400000 +708 433 0.400000 +708 451 0.400000 +708 452 0.400000 +708 462 0.400000 +708 494 0.400000 +708 523 0.400000 +708 524 0.400000 +708 563 0.400000 +708 650 0.400000 +708 821 0.400000 +708 866 0.400000 +708 880 0.400000 +708 909 0.400000 +708 917 0.400000 +708 968 0.400000 +708 972 0.400000 +708 1069 0.400000 +708 1070 0.400000 +708 1148 0.400000 +708 1156 0.400000 +708 1249 0.400000 +708 1251 0.400000 +708 1261 0.400000 +708 1276 0.400000 +708 1357 0.400000 +708 1380 0.400000 +708 1502 0.400000 +708 1513 0.400000 +708 1527 0.400000 +708 1554 0.400000 +708 1556 0.400000 +708 1570 0.400000 +708 1580 0.400000 +708 1670 0.400000 +708 1700 0.400000 +708 1710 0.400000 +708 1733 0.400000 +708 1769 0.400000 +708 1812 0.400000 +708 1866 0.400000 +708 1934 0.400000 +708 1940 0.400000 +708 2017 0.400000 +708 2115 0.400000 +708 2238 0.400000 +708 2283 0.400000 +708 2487 0.400000 +708 2561 0.400000 +708 2588 0.400000 +708 2594 0.400000 +708 2620 0.400000 +708 2645 0.400000 +708 2716 0.400000 +708 2751 0.400000 +708 2851 0.400000 +708 2902 0.400000 +708 2984 0.400000 +708 3043 0.400000 +708 3110 0.400000 +708 3176 0.400000 +708 3185 0.400000 +709 23 0.400000 +709 104 0.400000 +709 138 0.400000 +709 171 0.400000 +709 204 0.400000 +709 216 0.400000 +709 221 0.400000 +709 407 0.400000 +709 438 0.400000 +709 522 0.400000 +709 536 0.400000 +709 619 0.400000 +709 668 0.400000 +709 737 0.400000 +709 746 0.400000 +709 774 0.400000 +709 840 0.400000 +709 955 0.400000 +709 957 0.400000 +709 1032 0.400000 +709 1051 0.400000 +709 1057 0.400000 +709 1073 0.400000 +709 1134 0.400000 +709 1184 0.400000 +709 1197 0.400000 +709 1214 0.400000 +709 1376 0.400000 +709 1402 0.400000 +709 1430 0.400000 +709 1531 0.400000 +709 1573 0.400000 +709 1624 0.400000 +709 1627 0.400000 +709 1675 0.400000 +709 1681 0.400000 +709 1698 0.400000 +709 1759 0.400000 +709 1811 0.400000 +709 1853 0.400000 +709 1953 0.400000 +709 2025 0.400000 +709 2041 0.400000 +709 2042 0.400000 +709 2134 0.400000 +709 2204 0.400000 +709 2290 0.400000 +709 2386 0.400000 +709 2393 0.400000 +709 2469 0.400000 +709 2533 0.400000 +709 2552 0.400000 +709 2563 0.400000 +709 2566 0.400000 +709 2624 0.400000 +709 2632 0.400000 +709 2672 0.400000 +709 2855 0.400000 +709 2864 0.400000 +709 3003 0.400000 +709 3008 0.400000 +709 3083 0.400000 +709 3098 0.400000 +709 3128 0.400000 +710 5 0.400000 +710 124 0.400000 +710 142 0.400000 +710 196 0.400000 +710 223 0.400000 +710 246 0.400000 +710 351 0.400000 +710 435 0.400000 +710 485 0.400000 +710 549 0.400000 +710 570 0.400000 +710 602 0.400000 +710 632 0.400000 +710 670 0.400000 +710 697 0.400000 +710 727 0.400000 +710 748 0.400000 +710 758 0.400000 +710 787 0.400000 +710 887 0.400000 +710 1003 0.400000 +710 1058 0.400000 +710 1074 0.400000 +710 1164 0.400000 +710 1220 0.400000 +710 1222 0.400000 +710 1259 0.400000 +710 1393 0.400000 +710 1484 0.400000 +710 1488 0.400000 +710 1498 0.400000 +710 1569 0.400000 +710 1661 0.400000 +710 1678 0.400000 +710 1734 0.400000 +710 1748 0.400000 +710 1802 0.400000 +710 1830 0.400000 +710 1839 0.400000 +710 1840 0.400000 +710 1956 0.400000 +710 2061 0.400000 +710 2063 0.400000 +710 2079 0.400000 +710 2098 0.400000 +710 2193 0.400000 +710 2203 0.400000 +710 2232 0.400000 +710 2246 0.400000 +710 2350 0.400000 +710 2409 0.400000 +710 2413 0.400000 +710 2444 0.400000 +710 2525 0.400000 +710 2532 0.400000 +710 2575 0.400000 +710 2604 0.400000 +710 2613 0.400000 +710 2644 0.400000 +710 2710 0.400000 +710 2896 0.400000 +710 2939 0.400000 +710 2986 0.400000 +710 3067 0.400000 +710 3126 0.400000 +710 3146 0.400000 +711 17 0.400000 +711 31 0.400000 +711 52 0.400000 +711 73 0.400000 +711 124 0.400000 +711 137 0.400000 +711 240 0.400000 +711 298 0.400000 +711 378 0.400000 +711 389 0.400000 +711 533 0.400000 +711 646 0.400000 +711 706 0.400000 +711 726 0.400000 +711 733 0.400000 +711 747 0.400000 +711 750 0.400000 +711 758 0.400000 +711 783 0.400000 +711 863 0.400000 +711 865 0.400000 +711 884 0.400000 +711 889 0.400000 +711 917 0.400000 +711 924 0.400000 +711 1048 0.400000 +711 1053 0.400000 +711 1095 0.400000 +711 1171 0.400000 +711 1197 0.400000 +711 1216 0.400000 +711 1231 0.400000 +711 1330 0.400000 +711 1360 0.400000 +711 1394 0.400000 +711 1540 0.400000 +711 1562 0.400000 +711 1589 0.400000 +711 1620 0.400000 +711 1635 0.400000 +711 1644 0.400000 +711 1789 0.400000 +711 1802 0.400000 +711 1853 0.400000 +711 1860 0.400000 +711 1921 0.400000 +711 1946 0.400000 +711 2021 0.400000 +711 2030 0.400000 +711 2171 0.400000 +711 2204 0.400000 +711 2256 0.400000 +711 2269 0.400000 +711 2270 0.400000 +711 2282 0.400000 +711 2318 0.400000 +711 2413 0.400000 +711 2444 0.400000 +711 2543 0.400000 +711 2634 0.400000 +711 2650 0.400000 +711 2693 0.400000 +711 2736 0.400000 +711 2787 0.400000 +711 2838 0.400000 +711 2881 0.400000 +711 2898 0.400000 +711 2966 0.400000 +711 2982 0.400000 +711 3091 0.400000 +711 3102 0.400000 +711 3127 0.400000 +711 3138 0.400000 +711 3170 0.400000 +711 3195 0.400000 +712 16 0.400000 +712 62 0.400000 +712 123 0.400000 +712 125 0.400000 +712 239 0.400000 +712 260 0.400000 +712 327 0.400000 +712 337 0.400000 +712 355 0.400000 +712 463 0.400000 +712 481 0.400000 +712 500 0.400000 +712 525 0.400000 +712 527 0.400000 +712 539 0.400000 +712 544 0.400000 +712 684 0.400000 +712 773 0.400000 +712 840 0.400000 +712 869 0.400000 +712 895 0.400000 +712 913 0.400000 +712 941 0.400000 +712 956 0.400000 +712 1012 0.400000 +712 1042 0.400000 +712 1155 0.400000 +712 1160 0.400000 +712 1347 0.400000 +712 1402 0.400000 +712 1407 0.400000 +712 1412 0.400000 +712 1426 0.400000 +712 1435 0.400000 +712 1453 0.400000 +712 1500 0.400000 +712 1643 0.400000 +712 1681 0.400000 +712 1805 0.400000 +712 1821 0.400000 +712 1901 0.400000 +712 1927 0.400000 +712 1965 0.400000 +712 1994 0.400000 +712 2002 0.400000 +712 2019 0.400000 +712 2049 0.400000 +712 2078 0.400000 +712 2137 0.400000 +712 2322 0.400000 +712 2583 0.400000 +712 2584 0.400000 +712 2698 0.400000 +712 2884 0.400000 +712 2977 0.400000 +712 3137 0.400000 +712 3138 0.400000 +713 72 0.400000 +713 95 0.400000 +713 129 0.400000 +713 132 0.400000 +713 165 0.400000 +713 261 0.400000 +713 274 0.400000 +713 407 0.400000 +713 547 0.400000 +713 587 0.400000 +713 690 0.400000 +713 713 0.400000 +713 769 0.400000 +713 826 0.400000 +713 846 0.400000 +713 903 0.400000 +713 960 0.400000 +713 983 0.400000 +713 1000 0.400000 +713 1068 0.400000 +713 1084 0.400000 +713 1147 0.400000 +713 1195 0.400000 +713 1291 0.400000 +713 1327 0.400000 +713 1331 0.400000 +713 1340 0.400000 +713 1341 0.400000 +713 1345 0.400000 +713 1353 0.400000 +713 1359 0.400000 +713 1386 0.400000 +713 1489 0.400000 +713 1502 0.400000 +713 1542 0.400000 +713 1583 0.400000 +713 1605 0.400000 +713 1607 0.400000 +713 1687 0.400000 +713 1716 0.400000 +713 1788 0.400000 +713 1799 0.400000 +713 1810 0.400000 +713 1813 0.400000 +713 1868 0.400000 +713 1929 0.400000 +713 1989 0.400000 +713 2075 0.400000 +713 2151 0.400000 +713 2167 0.400000 +713 2190 0.400000 +713 2246 0.400000 +713 2315 0.400000 +713 2487 0.400000 +713 2575 0.400000 +713 2629 0.400000 +713 2680 0.400000 +713 2732 0.400000 +713 2743 0.400000 +713 2758 0.400000 +713 2784 0.400000 +713 2798 0.400000 +713 2852 0.400000 +713 2866 0.400000 +713 2873 0.400000 +713 2877 0.400000 +713 2920 0.400000 +713 2952 0.400000 +713 2995 0.400000 +713 3004 0.400000 +713 3118 0.400000 +713 3119 0.400000 +713 3127 0.400000 +713 3138 0.400000 +713 3187 0.400000 +714 99 0.400000 +714 115 0.400000 +714 121 0.400000 +714 149 0.400000 +714 151 0.400000 +714 194 0.400000 +714 232 0.400000 +714 334 0.400000 +714 350 0.400000 +714 356 0.400000 +714 430 0.400000 +714 468 0.400000 +714 578 0.400000 +714 613 0.400000 +714 637 0.400000 +714 671 0.400000 +714 894 0.400000 +714 931 0.400000 +714 942 0.400000 +714 972 0.400000 +714 1028 0.400000 +714 1042 0.400000 +714 1044 0.400000 +714 1091 0.400000 +714 1128 0.400000 +714 1131 0.400000 +714 1204 0.400000 +714 1230 0.400000 +714 1233 0.400000 +714 1263 0.400000 +714 1323 0.400000 +714 1399 0.400000 +714 1491 0.400000 +714 1655 0.400000 +714 1678 0.400000 +714 1730 0.400000 +714 1873 0.400000 +714 1909 0.400000 +714 1937 0.400000 +714 1999 0.400000 +714 2026 0.400000 +714 2092 0.400000 +714 2124 0.400000 +714 2257 0.400000 +714 2271 0.400000 +714 2465 0.400000 +714 2555 0.400000 +714 2559 0.400000 +714 2569 0.400000 +714 2618 0.400000 +714 2686 0.400000 +714 2730 0.400000 +714 2755 0.400000 +714 2771 0.400000 +714 2774 0.400000 +714 2803 0.400000 +714 2812 0.400000 +714 2830 0.400000 +714 2836 0.400000 +714 2963 0.400000 +714 2993 0.400000 +714 3006 0.400000 +714 3010 0.400000 +714 3035 0.400000 +714 3045 0.400000 +714 3144 0.400000 +714 3152 0.400000 +714 3154 0.400000 +714 3168 0.400000 +714 3188 0.400000 +714 3189 0.400000 +715 15 0.400000 +715 152 0.400000 +715 155 0.400000 +715 419 0.400000 +715 455 0.400000 +715 513 0.400000 +715 627 0.400000 +715 665 0.400000 +715 706 0.400000 +715 753 0.400000 +715 799 0.400000 +715 820 0.400000 +715 866 0.400000 +715 929 0.400000 +715 988 0.400000 +715 1002 0.400000 +715 1011 0.400000 +715 1065 0.400000 +715 1071 0.400000 +715 1202 0.400000 +715 1208 0.400000 +715 1246 0.400000 +715 1292 0.400000 +715 1531 0.400000 +715 1626 0.400000 +715 1856 0.400000 +715 1864 0.400000 +715 1933 0.400000 +715 2006 0.400000 +715 2032 0.400000 +715 2087 0.400000 +715 2108 0.400000 +715 2140 0.400000 +715 2232 0.400000 +715 2427 0.400000 +715 2476 0.400000 +715 2517 0.400000 +715 2539 0.400000 +715 2604 0.400000 +715 2627 0.400000 +715 2638 0.400000 +715 2740 0.400000 +715 2767 0.400000 +715 2785 0.400000 +715 2819 0.400000 +715 2945 0.400000 +715 2967 0.400000 +715 2995 0.400000 +715 2999 0.400000 +715 3005 0.400000 +715 3033 0.400000 +715 3054 0.400000 +715 3089 0.400000 +715 3094 0.400000 +715 3145 0.400000 +716 23 0.400000 +716 42 0.400000 +716 43 0.400000 +716 97 0.400000 +716 241 0.400000 +716 259 0.400000 +716 265 0.400000 +716 385 0.400000 +716 395 0.400000 +716 444 0.400000 +716 469 0.400000 +716 509 0.400000 +716 546 0.400000 +716 566 0.400000 +716 617 0.400000 +716 622 0.400000 +716 652 0.400000 +716 833 0.400000 +716 854 0.400000 +716 981 0.400000 +716 1129 0.400000 +716 1158 0.400000 +716 1254 0.400000 +716 1283 0.400000 +716 1293 0.400000 +716 1309 0.400000 +716 1357 0.400000 +716 1378 0.400000 +716 1382 0.400000 +716 1410 0.400000 +716 1435 0.400000 +716 1449 0.400000 +716 1608 0.400000 +716 1616 0.400000 +716 1800 0.400000 +716 2069 0.400000 +716 2145 0.400000 +716 2179 0.400000 +716 2301 0.400000 +716 2314 0.400000 +716 2322 0.400000 +716 2362 0.400000 +716 2366 0.400000 +716 2368 0.400000 +716 2411 0.400000 +716 2456 0.400000 +716 2491 0.400000 +716 2492 0.400000 +716 2519 0.400000 +716 2529 0.400000 +716 2540 0.400000 +716 2562 0.400000 +716 2567 0.400000 +716 2605 0.400000 +716 2654 0.400000 +716 2669 0.400000 +716 2846 0.400000 +716 2847 0.400000 +716 2872 0.400000 +716 2973 0.400000 +716 3011 0.400000 +716 3026 0.400000 +716 3133 0.400000 +716 3141 0.400000 +716 3164 0.400000 +717 3 0.400000 +717 23 0.400000 +717 139 0.400000 +717 219 0.400000 +717 220 0.400000 +717 388 0.400000 +717 430 0.400000 +717 481 0.400000 +717 506 0.400000 +717 511 0.400000 +717 556 0.400000 +717 588 0.400000 +717 717 0.400000 +717 916 0.400000 +717 930 0.400000 +717 948 0.400000 +717 957 0.400000 +717 997 0.400000 +717 1011 0.400000 +717 1038 0.400000 +717 1043 0.400000 +717 1074 0.400000 +717 1096 0.400000 +717 1105 0.400000 +717 1224 0.400000 +717 1300 0.400000 +717 1301 0.400000 +717 1337 0.400000 +717 1408 0.400000 +717 1433 0.400000 +717 1512 0.400000 +717 1586 0.400000 +717 1589 0.400000 +717 1631 0.400000 +717 1657 0.400000 +717 1670 0.400000 +717 1722 0.400000 +717 1730 0.400000 +717 1860 0.400000 +717 2002 0.400000 +717 2005 0.400000 +717 2045 0.400000 +717 2075 0.400000 +717 2082 0.400000 +717 2226 0.400000 +717 2234 0.400000 +717 2265 0.400000 +717 2301 0.400000 +717 2334 0.400000 +717 2344 0.400000 +717 2350 0.400000 +717 2420 0.400000 +717 2469 0.400000 +717 2518 0.400000 +717 2532 0.400000 +717 2573 0.400000 +717 2580 0.400000 +717 2588 0.400000 +717 2629 0.400000 +717 2668 0.400000 +717 2708 0.400000 +717 2855 0.400000 +717 2925 0.400000 +717 2928 0.400000 +717 3000 0.400000 +717 3056 0.400000 +717 3070 0.400000 +717 3101 0.400000 +717 3112 0.400000 +717 3183 0.400000 +718 11 0.400000 +718 118 0.400000 +718 210 0.400000 +718 277 0.400000 +718 304 0.400000 +718 333 0.400000 +718 350 0.400000 +718 362 0.400000 +718 366 0.400000 +718 396 0.400000 +718 403 0.400000 +718 456 0.400000 +718 553 0.400000 +718 677 0.400000 +718 701 0.400000 +718 712 0.400000 +718 720 0.400000 +718 772 0.400000 +718 781 0.400000 +718 843 0.400000 +718 1002 0.400000 +718 1181 0.400000 +718 1200 0.400000 +718 1225 0.400000 +718 1254 0.400000 +718 1265 0.400000 +718 1436 0.400000 +718 1486 0.400000 +718 1491 0.400000 +718 1546 0.400000 +718 1551 0.400000 +718 1659 0.400000 +718 1679 0.400000 +718 1721 0.400000 +718 1735 0.400000 +718 1741 0.400000 +718 2117 0.400000 +718 2135 0.400000 +718 2224 0.400000 +718 2246 0.400000 +718 2293 0.400000 +718 2318 0.400000 +718 2321 0.400000 +718 2388 0.400000 +718 2398 0.400000 +718 2457 0.400000 +718 2487 0.400000 +718 2499 0.400000 +718 2661 0.400000 +718 2763 0.400000 +718 2768 0.400000 +718 2829 0.400000 +718 2830 0.400000 +718 2850 0.400000 +718 2902 0.400000 +718 2954 0.400000 +718 2965 0.400000 +718 3083 0.400000 +718 3084 0.400000 +718 3167 0.400000 +718 3181 0.400000 +719 18 0.400000 +719 37 0.400000 +719 56 0.400000 +719 60 0.400000 +719 269 0.400000 +719 276 0.400000 +719 277 0.400000 +719 320 0.400000 +719 430 0.400000 +719 445 0.400000 +719 494 0.400000 +719 514 0.400000 +719 591 0.400000 +719 603 0.400000 +719 629 0.400000 +719 677 0.400000 +719 740 0.400000 +719 797 0.400000 +719 917 0.400000 +719 918 0.400000 +719 973 0.400000 +719 1024 0.400000 +719 1026 0.400000 +719 1084 0.400000 +719 1310 0.400000 +719 1347 0.400000 +719 1498 0.400000 +719 1576 0.400000 +719 1615 0.400000 +719 1735 0.400000 +719 1737 0.400000 +719 1763 0.400000 +719 1915 0.400000 +719 2033 0.400000 +719 2169 0.400000 +719 2214 0.400000 +719 2287 0.400000 +719 2306 0.400000 +719 2409 0.400000 +719 2488 0.400000 +719 2508 0.400000 +719 2550 0.400000 +719 2589 0.400000 +719 2631 0.400000 +719 2650 0.400000 +719 2678 0.400000 +719 2685 0.400000 +719 2703 0.400000 +719 2709 0.400000 +719 2741 0.400000 +719 2756 0.400000 +719 2835 0.400000 +719 2838 0.400000 +719 2881 0.400000 +719 2967 0.400000 +719 2979 0.400000 +719 3030 0.400000 +720 13 0.400000 +720 68 0.400000 +720 74 0.400000 +720 111 0.400000 +720 129 0.400000 +720 134 0.400000 +720 237 0.400000 +720 332 0.400000 +720 405 0.400000 +720 469 0.400000 +720 518 0.400000 +720 533 0.400000 +720 539 0.400000 +720 565 0.400000 +720 588 0.400000 +720 644 0.400000 +720 672 0.400000 +720 680 0.400000 +720 705 0.400000 +720 747 0.400000 +720 749 0.400000 +720 806 0.400000 +720 867 0.400000 +720 905 0.400000 +720 923 0.400000 +720 925 0.400000 +720 962 0.400000 +720 1011 0.400000 +720 1018 0.400000 +720 1063 0.400000 +720 1072 0.400000 +720 1149 0.400000 +720 1162 0.400000 +720 1193 0.400000 +720 1370 0.400000 +720 1443 0.400000 +720 1496 0.400000 +720 1559 0.400000 +720 1592 0.400000 +720 1626 0.400000 +720 1661 0.400000 +720 1753 0.400000 +720 1767 0.400000 +720 1818 0.400000 +720 1880 0.400000 +720 1957 0.400000 +720 1973 0.400000 +720 2063 0.400000 +720 2087 0.400000 +720 2108 0.400000 +720 2140 0.400000 +720 2299 0.400000 +720 2328 0.400000 +720 2350 0.400000 +720 2375 0.400000 +720 2430 0.400000 +720 2434 0.400000 +720 2459 0.400000 +720 2504 0.400000 +720 2532 0.400000 +720 2543 0.400000 +720 2576 0.400000 +720 2597 0.400000 +720 2803 0.400000 +720 2888 0.400000 +720 2889 0.400000 +720 2928 0.400000 +720 2973 0.400000 +720 3035 0.400000 +720 3075 0.400000 +720 3076 0.400000 +720 3096 0.400000 +720 3101 0.400000 +720 3113 0.400000 +721 140 0.400000 +721 191 0.400000 +721 209 0.400000 +721 254 0.400000 +721 257 0.400000 +721 290 0.400000 +721 299 0.400000 +721 310 0.400000 +721 470 0.400000 +721 516 0.400000 +721 551 0.400000 +721 590 0.400000 +721 697 0.400000 +721 740 0.400000 +721 743 0.400000 +721 797 0.400000 +721 939 0.400000 +721 981 0.400000 +721 1018 0.400000 +721 1092 0.400000 +721 1144 0.400000 +721 1171 0.400000 +721 1249 0.400000 +721 1270 0.400000 +721 1321 0.400000 +721 1333 0.400000 +721 1352 0.400000 +721 1396 0.400000 +721 1421 0.400000 +721 1457 0.400000 +721 1667 0.400000 +721 1732 0.400000 +721 1776 0.400000 +721 1846 0.400000 +721 1905 0.400000 +721 1921 0.400000 +721 1923 0.400000 +721 1980 0.400000 +721 1988 0.400000 +721 1999 0.400000 +721 2019 0.400000 +721 2066 0.400000 +721 2164 0.400000 +721 2213 0.400000 +721 2233 0.400000 +721 2244 0.400000 +721 2248 0.400000 +721 2299 0.400000 +721 2313 0.400000 +721 2400 0.400000 +721 2425 0.400000 +721 2512 0.400000 +721 2542 0.400000 +721 2569 0.400000 +721 2645 0.400000 +721 2696 0.400000 +721 2735 0.400000 +721 2754 0.400000 +721 2846 0.400000 +721 2856 0.400000 +721 2864 0.400000 +721 3108 0.400000 +721 3147 0.400000 +721 3148 0.400000 +722 19 0.400000 +722 46 0.400000 +722 65 0.400000 +722 80 0.400000 +722 126 0.400000 +722 170 0.400000 +722 345 0.400000 +722 383 0.400000 +722 412 0.400000 +722 450 0.400000 +722 651 0.400000 +722 658 0.400000 +722 727 0.400000 +722 753 0.400000 +722 844 0.400000 +722 895 0.400000 +722 963 0.400000 +722 986 0.400000 +722 998 0.400000 +722 1209 0.400000 +722 1216 0.400000 +722 1218 0.400000 +722 1256 0.400000 +722 1287 0.400000 +722 1335 0.400000 +722 1364 0.400000 +722 1366 0.400000 +722 1383 0.400000 +722 1390 0.400000 +722 1400 0.400000 +722 1413 0.400000 +722 1457 0.400000 +722 1491 0.400000 +722 1591 0.400000 +722 1598 0.400000 +722 1600 0.400000 +722 1641 0.400000 +722 1698 0.400000 +722 1812 0.400000 +722 1891 0.400000 +722 1909 0.400000 +722 1952 0.400000 +722 2128 0.400000 +722 2194 0.400000 +722 2213 0.400000 +722 2218 0.400000 +722 2253 0.400000 +722 2256 0.400000 +722 2512 0.400000 +722 2529 0.400000 +722 2583 0.400000 +722 2645 0.400000 +722 2651 0.400000 +722 2689 0.400000 +722 2706 0.400000 +722 2822 0.400000 +722 2846 0.400000 +722 2989 0.400000 +722 2993 0.400000 +722 2996 0.400000 +722 3051 0.400000 +722 3103 0.400000 +722 3132 0.400000 +722 3139 0.400000 +723 30 0.400000 +723 34 0.400000 +723 48 0.400000 +723 51 0.400000 +723 113 0.400000 +723 166 0.400000 +723 223 0.400000 +723 356 0.400000 +723 435 0.400000 +723 458 0.400000 +723 501 0.400000 +723 594 0.400000 +723 657 0.400000 +723 762 0.400000 +723 813 0.400000 +723 909 0.400000 +723 927 0.400000 +723 933 0.400000 +723 1023 0.400000 +723 1038 0.400000 +723 1061 0.400000 +723 1131 0.400000 +723 1215 0.400000 +723 1227 0.400000 +723 1286 0.400000 +723 1365 0.400000 +723 1427 0.400000 +723 1448 0.400000 +723 1509 0.400000 +723 1649 0.400000 +723 1728 0.400000 +723 1781 0.400000 +723 1830 0.400000 +723 1860 0.400000 +723 1949 0.400000 +723 2134 0.400000 +723 2141 0.400000 +723 2380 0.400000 +723 2384 0.400000 +723 2390 0.400000 +723 2462 0.400000 +723 2475 0.400000 +723 2494 0.400000 +723 2510 0.400000 +723 2609 0.400000 +723 2634 0.400000 +723 2645 0.400000 +723 2662 0.400000 +723 2666 0.400000 +723 2725 0.400000 +723 2967 0.400000 +723 3034 0.400000 +723 3096 0.400000 +723 3103 0.400000 +723 3186 0.400000 +724 73 0.400000 +724 162 0.400000 +724 175 0.400000 +724 180 0.400000 +724 217 0.400000 +724 292 0.400000 +724 345 0.400000 +724 348 0.400000 +724 378 0.400000 +724 475 0.400000 +724 533 0.400000 +724 599 0.400000 +724 604 0.400000 +724 624 0.400000 +724 791 0.400000 +724 804 0.400000 +724 807 0.400000 +724 934 0.400000 +724 947 0.400000 +724 949 0.400000 +724 999 0.400000 +724 1126 0.400000 +724 1267 0.400000 +724 1387 0.400000 +724 1438 0.400000 +724 1445 0.400000 +724 1464 0.400000 +724 1465 0.400000 +724 1480 0.400000 +724 1516 0.400000 +724 1537 0.400000 +724 1678 0.400000 +724 1700 0.400000 +724 1720 0.400000 +724 1780 0.400000 +724 1837 0.400000 +724 1854 0.400000 +724 1877 0.400000 +724 1883 0.400000 +724 1913 0.400000 +724 1920 0.400000 +724 1952 0.400000 +724 2041 0.400000 +724 2125 0.400000 +724 2148 0.400000 +724 2213 0.400000 +724 2315 0.400000 +724 2416 0.400000 +724 2431 0.400000 +724 2433 0.400000 +724 2452 0.400000 +724 2521 0.400000 +724 2529 0.400000 +724 2574 0.400000 +724 2595 0.400000 +724 2751 0.400000 +724 2848 0.400000 +724 2955 0.400000 +724 3030 0.400000 +724 3156 0.400000 +724 3181 0.400000 +725 5 0.400000 +725 99 0.400000 +725 107 0.400000 +725 305 0.400000 +725 336 0.400000 +725 399 0.400000 +725 435 0.400000 +725 459 0.400000 +725 470 0.400000 +725 600 0.400000 +725 615 0.400000 +725 720 0.400000 +725 730 0.400000 +725 738 0.400000 +725 866 0.400000 +725 986 0.400000 +725 1003 0.400000 +725 1025 0.400000 +725 1033 0.400000 +725 1072 0.400000 +725 1090 0.400000 +725 1110 0.400000 +725 1202 0.400000 +725 1253 0.400000 +725 1301 0.400000 +725 1319 0.400000 +725 1321 0.400000 +725 1327 0.400000 +725 1432 0.400000 +725 1496 0.400000 +725 1525 0.400000 +725 1577 0.400000 +725 1611 0.400000 +725 1660 0.400000 +725 1759 0.400000 +725 1807 0.400000 +725 1810 0.400000 +725 1884 0.400000 +725 1934 0.400000 +725 1942 0.400000 +725 1992 0.400000 +725 1995 0.400000 +725 2058 0.400000 +725 2073 0.400000 +725 2074 0.400000 +725 2078 0.400000 +725 2165 0.400000 +725 2206 0.400000 +725 2242 0.400000 +725 2261 0.400000 +725 2274 0.400000 +725 2351 0.400000 +725 2369 0.400000 +725 2379 0.400000 +725 2388 0.400000 +725 2415 0.400000 +725 2507 0.400000 +725 2530 0.400000 +725 2557 0.400000 +725 2789 0.400000 +725 2824 0.400000 +725 2905 0.400000 +725 2958 0.400000 +725 3098 0.400000 +725 3198 0.400000 +726 37 0.400000 +726 44 0.400000 +726 83 0.400000 +726 146 0.400000 +726 169 0.400000 +726 246 0.400000 +726 250 0.400000 +726 258 0.400000 +726 270 0.400000 +726 403 0.400000 +726 574 0.400000 +726 590 0.400000 +726 613 0.400000 +726 634 0.400000 +726 870 0.400000 +726 876 0.400000 +726 945 0.400000 +726 1251 0.400000 +726 1276 0.400000 +726 1359 0.400000 +726 1385 0.400000 +726 1521 0.400000 +726 1588 0.400000 +726 1613 0.400000 +726 1637 0.400000 +726 1802 0.400000 +726 1847 0.400000 +726 1884 0.400000 +726 1888 0.400000 +726 1908 0.400000 +726 1922 0.400000 +726 1969 0.400000 +726 1984 0.400000 +726 1997 0.400000 +726 2065 0.400000 +726 2120 0.400000 +726 2239 0.400000 +726 2267 0.400000 +726 2272 0.400000 +726 2274 0.400000 +726 2334 0.400000 +726 2361 0.400000 +726 2366 0.400000 +726 2377 0.400000 +726 2397 0.400000 +726 2414 0.400000 +726 2531 0.400000 +726 2572 0.400000 +726 2617 0.400000 +726 2619 0.400000 +726 2626 0.400000 +726 2628 0.400000 +726 2838 0.400000 +726 2971 0.400000 +726 3021 0.400000 +727 1 0.400000 +727 47 0.400000 +727 78 0.400000 +727 218 0.400000 +727 311 0.400000 +727 474 0.400000 +727 535 0.400000 +727 657 0.400000 +727 678 0.400000 +727 691 0.400000 +727 736 0.400000 +727 747 0.400000 +727 777 0.400000 +727 840 0.400000 +727 910 0.400000 +727 975 0.400000 +727 986 0.400000 +727 1009 0.400000 +727 1119 0.400000 +727 1143 0.400000 +727 1144 0.400000 +727 1158 0.400000 +727 1216 0.400000 +727 1314 0.400000 +727 1403 0.400000 +727 1406 0.400000 +727 1464 0.400000 +727 1486 0.400000 +727 1542 0.400000 +727 1549 0.400000 +727 1679 0.400000 +727 1695 0.400000 +727 1848 0.400000 +727 1901 0.400000 +727 2003 0.400000 +727 2014 0.400000 +727 2090 0.400000 +727 2169 0.400000 +727 2244 0.400000 +727 2287 0.400000 +727 2309 0.400000 +727 2320 0.400000 +727 2328 0.400000 +727 2368 0.400000 +727 2382 0.400000 +727 2425 0.400000 +727 2451 0.400000 +727 2470 0.400000 +727 2532 0.400000 +727 2535 0.400000 +727 2540 0.400000 +727 2542 0.400000 +727 2611 0.400000 +727 2625 0.400000 +727 2634 0.400000 +727 2722 0.400000 +727 2769 0.400000 +727 3010 0.400000 +727 3025 0.400000 +727 3028 0.400000 +727 3036 0.400000 +727 3110 0.400000 +727 3125 0.400000 +727 3141 0.400000 +727 3151 0.400000 +728 7 0.400000 +728 9 0.400000 +728 24 0.400000 +728 35 0.400000 +728 46 0.400000 +728 95 0.400000 +728 188 0.400000 +728 344 0.400000 +728 357 0.400000 +728 370 0.400000 +728 403 0.400000 +728 462 0.400000 +728 475 0.400000 +728 565 0.400000 +728 572 0.400000 +728 614 0.400000 +728 632 0.400000 +728 647 0.400000 +728 681 0.400000 +728 720 0.400000 +728 754 0.400000 +728 852 0.400000 +728 890 0.400000 +728 1004 0.400000 +728 1123 0.400000 +728 1148 0.400000 +728 1273 0.400000 +728 1285 0.400000 +728 1315 0.400000 +728 1411 0.400000 +728 1452 0.400000 +728 1512 0.400000 +728 1548 0.400000 +728 1608 0.400000 +728 1821 0.400000 +728 1897 0.400000 +728 1899 0.400000 +728 1982 0.400000 +728 2004 0.400000 +728 2036 0.400000 +728 2085 0.400000 +728 2145 0.400000 +728 2171 0.400000 +728 2200 0.400000 +728 2207 0.400000 +728 2224 0.400000 +728 2284 0.400000 +728 2301 0.400000 +728 2328 0.400000 +728 2332 0.400000 +728 2373 0.400000 +728 2480 0.400000 +728 2533 0.400000 +728 2673 0.400000 +728 2694 0.400000 +728 2729 0.400000 +728 2752 0.400000 +728 2761 0.400000 +728 2841 0.400000 +728 2891 0.400000 +728 3007 0.400000 +728 3032 0.400000 +728 3089 0.400000 +728 3104 0.400000 +728 3139 0.400000 +729 37 0.400000 +729 118 0.400000 +729 201 0.400000 +729 212 0.400000 +729 358 0.400000 +729 364 0.400000 +729 375 0.400000 +729 490 0.400000 +729 493 0.400000 +729 558 0.400000 +729 751 0.400000 +729 764 0.400000 +729 837 0.400000 +729 908 0.400000 +729 915 0.400000 +729 924 0.400000 +729 1076 0.400000 +729 1088 0.400000 +729 1137 0.400000 +729 1186 0.400000 +729 1194 0.400000 +729 1213 0.400000 +729 1237 0.400000 +729 1241 0.400000 +729 1333 0.400000 +729 1429 0.400000 +729 1447 0.400000 +729 1476 0.400000 +729 1481 0.400000 +729 1629 0.400000 +729 1642 0.400000 +729 1710 0.400000 +729 1735 0.400000 +729 1759 0.400000 +729 1815 0.400000 +729 1830 0.400000 +729 1904 0.400000 +729 1914 0.400000 +729 1968 0.400000 +729 1983 0.400000 +729 2030 0.400000 +729 2059 0.400000 +729 2134 0.400000 +729 2144 0.400000 +729 2176 0.400000 +729 2186 0.400000 +729 2206 0.400000 +729 2209 0.400000 +729 2260 0.400000 +729 2331 0.400000 +729 2433 0.400000 +729 2656 0.400000 +729 2699 0.400000 +729 2734 0.400000 +729 2951 0.400000 +729 2983 0.400000 +729 3028 0.400000 +729 3030 0.400000 +729 3069 0.400000 +729 3135 0.400000 +729 3182 0.400000 +729 3200 0.400000 +730 15 0.400000 +730 24 0.400000 +730 55 0.400000 +730 158 0.400000 +730 160 0.400000 +730 208 0.400000 +730 308 0.400000 +730 316 0.400000 +730 350 0.400000 +730 354 0.400000 +730 355 0.400000 +730 527 0.400000 +730 624 0.400000 +730 636 0.400000 +730 646 0.400000 +730 735 0.400000 +730 743 0.400000 +730 752 0.400000 +730 823 0.400000 +730 843 0.400000 +730 871 0.400000 +730 963 0.400000 +730 978 0.400000 +730 1002 0.400000 +730 1013 0.400000 +730 1042 0.400000 +730 1112 0.400000 +730 1143 0.400000 +730 1213 0.400000 +730 1247 0.400000 +730 1426 0.400000 +730 1560 0.400000 +730 1586 0.400000 +730 1703 0.400000 +730 1746 0.400000 +730 1842 0.400000 +730 1897 0.400000 +730 1935 0.400000 +730 1939 0.400000 +730 1952 0.400000 +730 1965 0.400000 +730 1996 0.400000 +730 1998 0.400000 +730 2001 0.400000 +730 2108 0.400000 +730 2296 0.400000 +730 2311 0.400000 +730 2438 0.400000 +730 2443 0.400000 +730 2515 0.400000 +730 2589 0.400000 +730 2643 0.400000 +730 2773 0.400000 +730 2812 0.400000 +730 2865 0.400000 +730 2868 0.400000 +730 2883 0.400000 +730 3027 0.400000 +730 3049 0.400000 +730 3136 0.400000 +730 3148 0.400000 +730 3160 0.400000 +730 3199 0.400000 +731 34 0.400000 +731 110 0.400000 +731 115 0.400000 +731 119 0.400000 +731 158 0.400000 +731 170 0.400000 +731 187 0.400000 +731 220 0.400000 +731 357 0.400000 +731 369 0.400000 +731 530 0.400000 +731 556 0.400000 +731 600 0.400000 +731 606 0.400000 +731 672 0.400000 +731 696 0.400000 +731 792 0.400000 +731 861 0.400000 +731 964 0.400000 +731 993 0.400000 +731 1020 0.400000 +731 1098 0.400000 +731 1142 0.400000 +731 1211 0.400000 +731 1247 0.400000 +731 1285 0.400000 +731 1308 0.400000 +731 1372 0.400000 +731 1416 0.400000 +731 1503 0.400000 +731 1564 0.400000 +731 1566 0.400000 +731 1652 0.400000 +731 1689 0.400000 +731 1756 0.400000 +731 1787 0.400000 +731 1794 0.400000 +731 1796 0.400000 +731 1828 0.400000 +731 1849 0.400000 +731 1872 0.400000 +731 1899 0.400000 +731 1905 0.400000 +731 1907 0.400000 +731 2075 0.400000 +731 2135 0.400000 +731 2137 0.400000 +731 2144 0.400000 +731 2184 0.400000 +731 2194 0.400000 +731 2282 0.400000 +731 2300 0.400000 +731 2317 0.400000 +731 2326 0.400000 +731 2371 0.400000 +731 2396 0.400000 +731 2451 0.400000 +731 2473 0.400000 +731 2483 0.400000 +731 2607 0.400000 +731 2701 0.400000 +731 2782 0.400000 +731 2785 0.400000 +731 2804 0.400000 +731 3028 0.400000 +731 3046 0.400000 +731 3053 0.400000 +731 3135 0.400000 +731 3147 0.400000 +731 3192 0.400000 +732 20 0.400000 +732 65 0.400000 +732 74 0.400000 +732 85 0.400000 +732 191 0.400000 +732 199 0.400000 +732 248 0.400000 +732 307 0.400000 +732 374 0.400000 +732 448 0.400000 +732 458 0.400000 +732 476 0.400000 +732 522 0.400000 +732 528 0.400000 +732 565 0.400000 +732 582 0.400000 +732 602 0.400000 +732 611 0.400000 +732 626 0.400000 +732 639 0.400000 +732 649 0.400000 +732 662 0.400000 +732 676 0.400000 +732 746 0.400000 +732 813 0.400000 +732 857 0.400000 +732 886 0.400000 +732 904 0.400000 +732 925 0.400000 +732 944 0.400000 +732 985 0.400000 +732 1008 0.400000 +732 1069 0.400000 +732 1086 0.400000 +732 1124 0.400000 +732 1392 0.400000 +732 1397 0.400000 +732 1443 0.400000 +732 1547 0.400000 +732 1694 0.400000 +732 1710 0.400000 +732 1717 0.400000 +732 1789 0.400000 +732 1803 0.400000 +732 1890 0.400000 +732 1921 0.400000 +732 1948 0.400000 +732 2074 0.400000 +732 2192 0.400000 +732 2214 0.400000 +732 2225 0.400000 +732 2235 0.400000 +732 2250 0.400000 +732 2288 0.400000 +732 2324 0.400000 +732 2376 0.400000 +732 2411 0.400000 +732 2427 0.400000 +732 2454 0.400000 +732 2471 0.400000 +732 2473 0.400000 +732 2582 0.400000 +732 2616 0.400000 +732 2617 0.400000 +732 2626 0.400000 +732 2645 0.400000 +732 2708 0.400000 +732 2711 0.400000 +732 2720 0.400000 +732 2778 0.400000 +732 2810 0.400000 +732 2826 0.400000 +732 2866 0.400000 +732 2931 0.400000 +732 2954 0.400000 +732 2968 0.400000 +732 2977 0.400000 +732 3047 0.400000 +732 3096 0.400000 +732 3116 0.400000 +733 6 0.400000 +733 18 0.400000 +733 60 0.400000 +733 111 0.400000 +733 230 0.400000 +733 261 0.400000 +733 267 0.400000 +733 310 0.400000 +733 319 0.400000 +733 371 0.400000 +733 387 0.400000 +733 451 0.400000 +733 453 0.400000 +733 487 0.400000 +733 759 0.400000 +733 760 0.400000 +733 761 0.400000 +733 786 0.400000 +733 853 0.400000 +733 877 0.400000 +733 921 0.400000 +733 1009 0.400000 +733 1100 0.400000 +733 1190 0.400000 +733 1369 0.400000 +733 1406 0.400000 +733 1410 0.400000 +733 1483 0.400000 +733 1499 0.400000 +733 1645 0.400000 +733 1666 0.400000 +733 1730 0.400000 +733 1742 0.400000 +733 1804 0.400000 +733 1812 0.400000 +733 1893 0.400000 +733 1918 0.400000 +733 1943 0.400000 +733 2057 0.400000 +733 2059 0.400000 +733 2085 0.400000 +733 2129 0.400000 +733 2182 0.400000 +733 2269 0.400000 +733 2310 0.400000 +733 2333 0.400000 +733 2346 0.400000 +733 2421 0.400000 +733 2552 0.400000 +733 2572 0.400000 +733 2614 0.400000 +733 2780 0.400000 +733 2783 0.400000 +733 2831 0.400000 +733 2862 0.400000 +733 2891 0.400000 +733 2908 0.400000 +733 2914 0.400000 +733 2945 0.400000 +733 2961 0.400000 +733 3056 0.400000 +733 3102 0.400000 +734 5 0.400000 +734 6 0.400000 +734 11 0.400000 +734 95 0.400000 +734 120 0.400000 +734 147 0.400000 +734 184 0.400000 +734 189 0.400000 +734 200 0.400000 +734 237 0.400000 +734 277 0.400000 +734 280 0.400000 +734 286 0.400000 +734 313 0.400000 +734 372 0.400000 +734 432 0.400000 +734 611 0.400000 +734 658 0.400000 +734 732 0.400000 +734 763 0.400000 +734 780 0.400000 +734 802 0.400000 +734 828 0.400000 +734 847 0.400000 +734 849 0.400000 +734 891 0.400000 +734 913 0.400000 +734 967 0.400000 +734 985 0.400000 +734 1049 0.400000 +734 1110 0.400000 +734 1266 0.400000 +734 1315 0.400000 +734 1460 0.400000 +734 1481 0.400000 +734 1633 0.400000 +734 1644 0.400000 +734 1709 0.400000 +734 1752 0.400000 +734 1762 0.400000 +734 1811 0.400000 +734 1815 0.400000 +734 1927 0.400000 +734 1986 0.400000 +734 2027 0.400000 +734 2067 0.400000 +734 2085 0.400000 +734 2094 0.400000 +734 2174 0.400000 +734 2214 0.400000 +734 2232 0.400000 +734 2274 0.400000 +734 2285 0.400000 +734 2310 0.400000 +734 2381 0.400000 +734 2387 0.400000 +734 2389 0.400000 +734 2468 0.400000 +734 2478 0.400000 +734 2543 0.400000 +734 2598 0.400000 +734 2607 0.400000 +734 2658 0.400000 +734 2684 0.400000 +734 2765 0.400000 +734 2782 0.400000 +734 2904 0.400000 +734 3047 0.400000 +734 3136 0.400000 +734 3179 0.400000 +734 3198 0.400000 +735 32 0.400000 +735 46 0.400000 +735 56 0.400000 +735 109 0.400000 +735 218 0.400000 +735 275 0.400000 +735 280 0.400000 +735 281 0.400000 +735 418 0.400000 +735 431 0.400000 +735 496 0.400000 +735 540 0.400000 +735 629 0.400000 +735 686 0.400000 +735 718 0.400000 +735 720 0.400000 +735 766 0.400000 +735 774 0.400000 +735 786 0.400000 +735 791 0.400000 +735 812 0.400000 +735 842 0.400000 +735 850 0.400000 +735 858 0.400000 +735 963 0.400000 +735 1120 0.400000 +735 1145 0.400000 +735 1262 0.400000 +735 1294 0.400000 +735 1348 0.400000 +735 1372 0.400000 +735 1424 0.400000 +735 1440 0.400000 +735 1539 0.400000 +735 1544 0.400000 +735 1572 0.400000 +735 1573 0.400000 +735 1770 0.400000 +735 1900 0.400000 +735 1902 0.400000 +735 1988 0.400000 +735 2043 0.400000 +735 2085 0.400000 +735 2139 0.400000 +735 2149 0.400000 +735 2161 0.400000 +735 2163 0.400000 +735 2192 0.400000 +735 2196 0.400000 +735 2241 0.400000 +735 2262 0.400000 +735 2284 0.400000 +735 2298 0.400000 +735 2332 0.400000 +735 2342 0.400000 +735 2391 0.400000 +735 2418 0.400000 +735 2653 0.400000 +735 2656 0.400000 +735 2669 0.400000 +735 2678 0.400000 +735 2707 0.400000 +735 2742 0.400000 +735 2775 0.400000 +735 3052 0.400000 +735 3065 0.400000 +735 3120 0.400000 +736 120 0.400000 +736 189 0.400000 +736 212 0.400000 +736 213 0.400000 +736 215 0.400000 +736 245 0.400000 +736 284 0.400000 +736 336 0.400000 +736 375 0.400000 +736 409 0.400000 +736 484 0.400000 +736 488 0.400000 +736 567 0.400000 +736 573 0.400000 +736 593 0.400000 +736 769 0.400000 +736 796 0.400000 +736 798 0.400000 +736 804 0.400000 +736 809 0.400000 +736 847 0.400000 +736 964 0.400000 +736 981 0.400000 +736 1010 0.400000 +736 1011 0.400000 +736 1128 0.400000 +736 1218 0.400000 +736 1264 0.400000 +736 1284 0.400000 +736 1318 0.400000 +736 1321 0.400000 +736 1375 0.400000 +736 1417 0.400000 +736 1483 0.400000 +736 1485 0.400000 +736 1525 0.400000 +736 1530 0.400000 +736 1623 0.400000 +736 1663 0.400000 +736 1695 0.400000 +736 1711 0.400000 +736 1769 0.400000 +736 1784 0.400000 +736 1803 0.400000 +736 1927 0.400000 +736 2074 0.400000 +736 2085 0.400000 +736 2151 0.400000 +736 2159 0.400000 +736 2212 0.400000 +736 2227 0.400000 +736 2231 0.400000 +736 2266 0.400000 +736 2280 0.400000 +736 2313 0.400000 +736 2315 0.400000 +736 2340 0.400000 +736 2341 0.400000 +736 2362 0.400000 +736 2370 0.400000 +736 2465 0.400000 +736 2494 0.400000 +736 2549 0.400000 +736 2559 0.400000 +736 2610 0.400000 +736 2688 0.400000 +736 2743 0.400000 +736 2750 0.400000 +736 2800 0.400000 +736 2833 0.400000 +736 2841 0.400000 +736 2948 0.400000 +736 3024 0.400000 +736 3049 0.400000 +736 3085 0.400000 +736 3100 0.400000 +736 3151 0.400000 +736 3158 0.400000 +737 45 0.400000 +737 73 0.400000 +737 91 0.400000 +737 204 0.400000 +737 213 0.400000 +737 221 0.400000 +737 239 0.400000 +737 275 0.400000 +737 280 0.400000 +737 285 0.400000 +737 380 0.400000 +737 407 0.400000 +737 484 0.400000 +737 509 0.400000 +737 601 0.400000 +737 614 0.400000 +737 669 0.400000 +737 682 0.400000 +737 735 0.400000 +737 757 0.400000 +737 817 0.400000 +737 927 0.400000 +737 968 0.400000 +737 1037 0.400000 +737 1044 0.400000 +737 1064 0.400000 +737 1107 0.400000 +737 1122 0.400000 +737 1131 0.400000 +737 1137 0.400000 +737 1154 0.400000 +737 1254 0.400000 +737 1344 0.400000 +737 1411 0.400000 +737 1494 0.400000 +737 1507 0.400000 +737 1514 0.400000 +737 1638 0.400000 +737 1673 0.400000 +737 1697 0.400000 +737 1715 0.400000 +737 1788 0.400000 +737 1811 0.400000 +737 1830 0.400000 +737 1841 0.400000 +737 1848 0.400000 +737 1881 0.400000 +737 1912 0.400000 +737 1966 0.400000 +737 2001 0.400000 +737 2016 0.400000 +737 2022 0.400000 +737 2090 0.400000 +737 2162 0.400000 +737 2191 0.400000 +737 2194 0.400000 +737 2198 0.400000 +737 2333 0.400000 +737 2364 0.400000 +737 2447 0.400000 +737 2519 0.400000 +737 2529 0.400000 +737 2605 0.400000 +737 2873 0.400000 +737 2883 0.400000 +737 2915 0.400000 +737 2929 0.400000 +737 2950 0.400000 +737 2951 0.400000 +737 3068 0.400000 +737 3120 0.400000 +737 3132 0.400000 +738 26 0.400000 +738 50 0.400000 +738 65 0.400000 +738 104 0.400000 +738 122 0.400000 +738 188 0.400000 +738 216 0.400000 +738 270 0.400000 +738 311 0.400000 +738 322 0.400000 +738 346 0.400000 +738 400 0.400000 +738 402 0.400000 +738 552 0.400000 +738 639 0.400000 +738 652 0.400000 +738 707 0.400000 +738 787 0.400000 +738 873 0.400000 +738 876 0.400000 +738 890 0.400000 +738 892 0.400000 +738 923 0.400000 +738 967 0.400000 +738 1017 0.400000 +738 1019 0.400000 +738 1063 0.400000 +738 1127 0.400000 +738 1163 0.400000 +738 1171 0.400000 +738 1203 0.400000 +738 1228 0.400000 +738 1321 0.400000 +738 1467 0.400000 +738 1492 0.400000 +738 1528 0.400000 +738 1570 0.400000 +738 1617 0.400000 +738 1776 0.400000 +738 1836 0.400000 +738 1859 0.400000 +738 1900 0.400000 +738 1961 0.400000 +738 1984 0.400000 +738 2077 0.400000 +738 2096 0.400000 +738 2120 0.400000 +738 2124 0.400000 +738 2215 0.400000 +738 2220 0.400000 +738 2285 0.400000 +738 2312 0.400000 +738 2636 0.400000 +738 2642 0.400000 +738 2645 0.400000 +738 2692 0.400000 +738 2699 0.400000 +738 2744 0.400000 +738 2770 0.400000 +738 2854 0.400000 +738 2869 0.400000 +738 3165 0.400000 +738 3185 0.400000 +739 44 0.400000 +739 46 0.400000 +739 51 0.400000 +739 72 0.400000 +739 95 0.400000 +739 190 0.400000 +739 229 0.400000 +739 238 0.400000 +739 316 0.400000 +739 341 0.400000 +739 348 0.400000 +739 362 0.400000 +739 443 0.400000 +739 550 0.400000 +739 827 0.400000 +739 865 0.400000 +739 879 0.400000 +739 990 0.400000 +739 1060 0.400000 +739 1068 0.400000 +739 1104 0.400000 +739 1117 0.400000 +739 1147 0.400000 +739 1209 0.400000 +739 1270 0.400000 +739 1304 0.400000 +739 1326 0.400000 +739 1384 0.400000 +739 1386 0.400000 +739 1399 0.400000 +739 1420 0.400000 +739 1452 0.400000 +739 1499 0.400000 +739 1513 0.400000 +739 1630 0.400000 +739 1633 0.400000 +739 1670 0.400000 +739 1749 0.400000 +739 1800 0.400000 +739 1814 0.400000 +739 1932 0.400000 +739 1953 0.400000 +739 1963 0.400000 +739 1969 0.400000 +739 2039 0.400000 +739 2054 0.400000 +739 2086 0.400000 +739 2170 0.400000 +739 2195 0.400000 +739 2197 0.400000 +739 2330 0.400000 +739 2414 0.400000 +739 2422 0.400000 +739 2480 0.400000 +739 2512 0.400000 +739 2577 0.400000 +739 2631 0.400000 +739 2655 0.400000 +739 2699 0.400000 +739 2724 0.400000 +739 2725 0.400000 +739 2834 0.400000 +739 2858 0.400000 +739 2871 0.400000 +739 2882 0.400000 +739 2906 0.400000 +739 2994 0.400000 +739 3073 0.400000 +739 3186 0.400000 +740 65 0.400000 +740 183 0.400000 +740 269 0.400000 +740 282 0.400000 +740 294 0.400000 +740 326 0.400000 +740 379 0.400000 +740 472 0.400000 +740 531 0.400000 +740 604 0.400000 +740 633 0.400000 +740 649 0.400000 +740 682 0.400000 +740 707 0.400000 +740 758 0.400000 +740 763 0.400000 +740 860 0.400000 +740 874 0.400000 +740 948 0.400000 +740 977 0.400000 +740 1018 0.400000 +740 1123 0.400000 +740 1143 0.400000 +740 1169 0.400000 +740 1197 0.400000 +740 1214 0.400000 +740 1297 0.400000 +740 1306 0.400000 +740 1331 0.400000 +740 1338 0.400000 +740 1383 0.400000 +740 1396 0.400000 +740 1406 0.400000 +740 1469 0.400000 +740 1471 0.400000 +740 1485 0.400000 +740 1572 0.400000 +740 1591 0.400000 +740 1721 0.400000 +740 1833 0.400000 +740 1845 0.400000 +740 1866 0.400000 +740 1875 0.400000 +740 1929 0.400000 +740 1944 0.400000 +740 1999 0.400000 +740 2055 0.400000 +740 2092 0.400000 +740 2093 0.400000 +740 2211 0.400000 +740 2238 0.400000 +740 2301 0.400000 +740 2358 0.400000 +740 2369 0.400000 +740 2370 0.400000 +740 2424 0.400000 +740 2503 0.400000 +740 2507 0.400000 +740 2672 0.400000 +740 3017 0.400000 +740 3052 0.400000 +740 3105 0.400000 +741 105 0.400000 +741 163 0.400000 +741 167 0.400000 +741 183 0.400000 +741 348 0.400000 +741 362 0.400000 +741 461 0.400000 +741 473 0.400000 +741 501 0.400000 +741 541 0.400000 +741 560 0.400000 +741 616 0.400000 +741 652 0.400000 +741 692 0.400000 +741 740 0.400000 +741 840 0.400000 +741 877 0.400000 +741 1115 0.400000 +741 1118 0.400000 +741 1196 0.400000 +741 1245 0.400000 +741 1248 0.400000 +741 1253 0.400000 +741 1278 0.400000 +741 1287 0.400000 +741 1299 0.400000 +741 1305 0.400000 +741 1306 0.400000 +741 1326 0.400000 +741 1336 0.400000 +741 1402 0.400000 +741 1437 0.400000 +741 1513 0.400000 +741 1525 0.400000 +741 1538 0.400000 +741 1694 0.400000 +741 1793 0.400000 +741 1799 0.400000 +741 1812 0.400000 +741 1814 0.400000 +741 1853 0.400000 +741 1925 0.400000 +741 2032 0.400000 +741 2049 0.400000 +741 2118 0.400000 +741 2166 0.400000 +741 2247 0.400000 +741 2339 0.400000 +741 2343 0.400000 +741 2406 0.400000 +741 2471 0.400000 +741 2490 0.400000 +741 2508 0.400000 +741 2531 0.400000 +741 2556 0.400000 +741 2626 0.400000 +741 2664 0.400000 +741 2675 0.400000 +741 2685 0.400000 +741 2707 0.400000 +741 2718 0.400000 +741 2767 0.400000 +741 2806 0.400000 +741 2831 0.400000 +741 2871 0.400000 +741 2982 0.400000 +741 3024 0.400000 +741 3082 0.400000 +741 3152 0.400000 +741 3153 0.400000 +742 22 0.400000 +742 182 0.400000 +742 215 0.400000 +742 227 0.400000 +742 243 0.400000 +742 307 0.400000 +742 478 0.400000 +742 492 0.400000 +742 516 0.400000 +742 651 0.400000 +742 680 0.400000 +742 719 0.400000 +742 729 0.400000 +742 819 0.400000 +742 861 0.400000 +742 867 0.400000 +742 915 0.400000 +742 936 0.400000 +742 1030 0.400000 +742 1059 0.400000 +742 1229 0.400000 +742 1291 0.400000 +742 1301 0.400000 +742 1416 0.400000 +742 1417 0.400000 +742 1523 0.400000 +742 1568 0.400000 +742 1577 0.400000 +742 1582 0.400000 +742 1615 0.400000 +742 1616 0.400000 +742 1732 0.400000 +742 1752 0.400000 +742 1913 0.400000 +742 1984 0.400000 +742 1988 0.400000 +742 2000 0.400000 +742 2032 0.400000 +742 2033 0.400000 +742 2038 0.400000 +742 2061 0.400000 +742 2066 0.400000 +742 2069 0.400000 +742 2176 0.400000 +742 2233 0.400000 +742 2236 0.400000 +742 2261 0.400000 +742 2333 0.400000 +742 2345 0.400000 +742 2401 0.400000 +742 2502 0.400000 +742 2540 0.400000 +742 2560 0.400000 +742 2641 0.400000 +742 2717 0.400000 +742 2732 0.400000 +742 2736 0.400000 +742 2788 0.400000 +742 2792 0.400000 +742 2804 0.400000 +742 2928 0.400000 +742 3023 0.400000 +742 3087 0.400000 +742 3103 0.400000 +742 3116 0.400000 +742 3138 0.400000 +742 3144 0.400000 +742 3173 0.400000 +742 3198 0.400000 +743 20 0.400000 +743 101 0.400000 +743 154 0.400000 +743 225 0.400000 +743 281 0.400000 +743 323 0.400000 +743 325 0.400000 +743 379 0.400000 +743 447 0.400000 +743 477 0.400000 +743 502 0.400000 +743 528 0.400000 +743 652 0.400000 +743 709 0.400000 +743 747 0.400000 +743 808 0.400000 +743 815 0.400000 +743 863 0.400000 +743 910 0.400000 +743 981 0.400000 +743 997 0.400000 +743 1015 0.400000 +743 1070 0.400000 +743 1092 0.400000 +743 1177 0.400000 +743 1321 0.400000 +743 1403 0.400000 +743 1421 0.400000 +743 1450 0.400000 +743 1582 0.400000 +743 1648 0.400000 +743 1724 0.400000 +743 1879 0.400000 +743 1892 0.400000 +743 2033 0.400000 +743 2177 0.400000 +743 2201 0.400000 +743 2241 0.400000 +743 2253 0.400000 +743 2277 0.400000 +743 2361 0.400000 +743 2378 0.400000 +743 2399 0.400000 +743 2432 0.400000 +743 2528 0.400000 +743 2687 0.400000 +743 2711 0.400000 +743 2813 0.400000 +743 2836 0.400000 +743 2867 0.400000 +743 2899 0.400000 +743 2927 0.400000 +743 2929 0.400000 +743 2963 0.400000 +743 2977 0.400000 +743 3017 0.400000 +743 3047 0.400000 +743 3094 0.400000 +744 65 0.400000 +744 129 0.400000 +744 140 0.400000 +744 187 0.400000 +744 194 0.400000 +744 229 0.400000 +744 253 0.400000 +744 278 0.400000 +744 364 0.400000 +744 417 0.400000 +744 511 0.400000 +744 524 0.400000 +744 539 0.400000 +744 748 0.400000 +744 800 0.400000 +744 827 0.400000 +744 834 0.400000 +744 944 0.400000 +744 1083 0.400000 +744 1118 0.400000 +744 1238 0.400000 +744 1366 0.400000 +744 1409 0.400000 +744 1421 0.400000 +744 1443 0.400000 +744 1468 0.400000 +744 1499 0.400000 +744 1567 0.400000 +744 1592 0.400000 +744 1702 0.400000 +744 1750 0.400000 +744 1819 0.400000 +744 1824 0.400000 +744 1902 0.400000 +744 2014 0.400000 +744 2056 0.400000 +744 2083 0.400000 +744 2093 0.400000 +744 2095 0.400000 +744 2132 0.400000 +744 2198 0.400000 +744 2214 0.400000 +744 2230 0.400000 +744 2250 0.400000 +744 2269 0.400000 +744 2281 0.400000 +744 2295 0.400000 +744 2316 0.400000 +744 2451 0.400000 +744 2460 0.400000 +744 2532 0.400000 +744 2537 0.400000 +744 2612 0.400000 +744 2665 0.400000 +744 2678 0.400000 +744 2699 0.400000 +744 2709 0.400000 +744 2806 0.400000 +744 2822 0.400000 +744 2976 0.400000 +744 3143 0.400000 +744 3155 0.400000 +744 3194 0.400000 +745 12 0.400000 +745 41 0.400000 +745 80 0.400000 +745 88 0.400000 +745 212 0.400000 +745 412 0.400000 +745 466 0.400000 +745 498 0.400000 +745 519 0.400000 +745 554 0.400000 +745 578 0.400000 +745 611 0.400000 +745 660 0.400000 +745 702 0.400000 +745 861 0.400000 +745 867 0.400000 +745 870 0.400000 +745 876 0.400000 +745 982 0.400000 +745 991 0.400000 +745 993 0.400000 +745 1052 0.400000 +745 1066 0.400000 +745 1145 0.400000 +745 1180 0.400000 +745 1186 0.400000 +745 1214 0.400000 +745 1261 0.400000 +745 1335 0.400000 +745 1340 0.400000 +745 1394 0.400000 +745 1419 0.400000 +745 1444 0.400000 +745 1557 0.400000 +745 1635 0.400000 +745 1695 0.400000 +745 1727 0.400000 +745 1851 0.400000 +745 1893 0.400000 +745 1982 0.400000 +745 2023 0.400000 +745 2042 0.400000 +745 2045 0.400000 +745 2102 0.400000 +745 2106 0.400000 +745 2113 0.400000 +745 2196 0.400000 +745 2376 0.400000 +745 2407 0.400000 +745 2542 0.400000 +745 2763 0.400000 +745 2793 0.400000 +745 2840 0.400000 +745 2844 0.400000 +745 2864 0.400000 +745 2866 0.400000 +745 2906 0.400000 +745 2912 0.400000 +745 2926 0.400000 +745 2954 0.400000 +745 2964 0.400000 +745 3020 0.400000 +745 3122 0.400000 +745 3161 0.400000 +746 141 0.400000 +746 187 0.400000 +746 233 0.400000 +746 252 0.400000 +746 265 0.400000 +746 272 0.400000 +746 301 0.400000 +746 341 0.400000 +746 355 0.400000 +746 364 0.400000 +746 388 0.400000 +746 431 0.400000 +746 437 0.400000 +746 488 0.400000 +746 539 0.400000 +746 543 0.400000 +746 648 0.400000 +746 688 0.400000 +746 712 0.400000 +746 724 0.400000 +746 733 0.400000 +746 765 0.400000 +746 814 0.400000 +746 882 0.400000 +746 1014 0.400000 +746 1029 0.400000 +746 1063 0.400000 +746 1243 0.400000 +746 1253 0.400000 +746 1387 0.400000 +746 1448 0.400000 +746 1483 0.400000 +746 1509 0.400000 +746 1609 0.400000 +746 1753 0.400000 +746 1817 0.400000 +746 1820 0.400000 +746 2317 0.400000 +746 2344 0.400000 +746 2378 0.400000 +746 2396 0.400000 +746 2461 0.400000 +746 2476 0.400000 +746 2484 0.400000 +746 2591 0.400000 +746 2595 0.400000 +746 2638 0.400000 +746 2770 0.400000 +746 2777 0.400000 +746 2829 0.400000 +746 2900 0.400000 +746 2932 0.400000 +746 3096 0.400000 +746 3153 0.400000 +747 1 0.400000 +747 25 0.400000 +747 131 0.400000 +747 258 0.400000 +747 318 0.400000 +747 327 0.400000 +747 355 0.400000 +747 423 0.400000 +747 430 0.400000 +747 480 0.400000 +747 488 0.400000 +747 500 0.400000 +747 503 0.400000 +747 521 0.400000 +747 568 0.400000 +747 610 0.400000 +747 737 0.400000 +747 759 0.400000 +747 779 0.400000 +747 791 0.400000 +747 963 0.400000 +747 996 0.400000 +747 1034 0.400000 +747 1092 0.400000 +747 1165 0.400000 +747 1204 0.400000 +747 1217 0.400000 +747 1226 0.400000 +747 1246 0.400000 +747 1277 0.400000 +747 1303 0.400000 +747 1331 0.400000 +747 1478 0.400000 +747 1495 0.400000 +747 1577 0.400000 +747 1616 0.400000 +747 1678 0.400000 +747 1767 0.400000 +747 1830 0.400000 +747 1901 0.400000 +747 1925 0.400000 +747 1938 0.400000 +747 1959 0.400000 +747 2020 0.400000 +747 2061 0.400000 +747 2181 0.400000 +747 2268 0.400000 +747 2270 0.400000 +747 2278 0.400000 +747 2284 0.400000 +747 2381 0.400000 +747 2437 0.400000 +747 2507 0.400000 +747 2578 0.400000 +747 2676 0.400000 +747 2755 0.400000 +747 2830 0.400000 +747 2831 0.400000 +747 2834 0.400000 +747 2853 0.400000 +747 2934 0.400000 +747 3012 0.400000 +747 3101 0.400000 +747 3164 0.400000 +747 3175 0.400000 +747 3188 0.400000 +748 107 0.400000 +748 120 0.400000 +748 141 0.400000 +748 153 0.400000 +748 220 0.400000 +748 365 0.400000 +748 380 0.400000 +748 410 0.400000 +748 422 0.400000 +748 539 0.400000 +748 591 0.400000 +748 628 0.400000 +748 659 0.400000 +748 758 0.400000 +748 833 0.400000 +748 860 0.400000 +748 865 0.400000 +748 932 0.400000 +748 1045 0.400000 +748 1074 0.400000 +748 1183 0.400000 +748 1188 0.400000 +748 1211 0.400000 +748 1227 0.400000 +748 1306 0.400000 +748 1349 0.400000 +748 1398 0.400000 +748 1509 0.400000 +748 1532 0.400000 +748 1557 0.400000 +748 1570 0.400000 +748 1736 0.400000 +748 1767 0.400000 +748 1853 0.400000 +748 1916 0.400000 +748 1974 0.400000 +748 1987 0.400000 +748 2073 0.400000 +748 2076 0.400000 +748 2091 0.400000 +748 2185 0.400000 +748 2222 0.400000 +748 2227 0.400000 +748 2273 0.400000 +748 2287 0.400000 +748 2321 0.400000 +748 2330 0.400000 +748 2354 0.400000 +748 2372 0.400000 +748 2373 0.400000 +748 2414 0.400000 +748 2435 0.400000 +748 2461 0.400000 +748 2477 0.400000 +748 2480 0.400000 +748 2482 0.400000 +748 2550 0.400000 +748 2551 0.400000 +748 2569 0.400000 +748 2570 0.400000 +748 2571 0.400000 +748 2595 0.400000 +748 2610 0.400000 +748 2755 0.400000 +748 2827 0.400000 +748 2971 0.400000 +748 2991 0.400000 +748 3020 0.400000 +748 3081 0.400000 +748 3082 0.400000 +748 3093 0.400000 +748 3160 0.400000 +748 3172 0.400000 +749 10 0.400000 +749 141 0.400000 +749 173 0.400000 +749 228 0.400000 +749 260 0.400000 +749 356 0.400000 +749 413 0.400000 +749 416 0.400000 +749 506 0.400000 +749 548 0.400000 +749 556 0.400000 +749 618 0.400000 +749 670 0.400000 +749 691 0.400000 +749 709 0.400000 +749 710 0.400000 +749 721 0.400000 +749 748 0.400000 +749 756 0.400000 +749 833 0.400000 +749 870 0.400000 +749 960 0.400000 +749 969 0.400000 +749 1007 0.400000 +749 1019 0.400000 +749 1165 0.400000 +749 1195 0.400000 +749 1293 0.400000 +749 1307 0.400000 +749 1397 0.400000 +749 1465 0.400000 +749 1516 0.400000 +749 1960 0.400000 +749 1981 0.400000 +749 2005 0.400000 +749 2011 0.400000 +749 2177 0.400000 +749 2198 0.400000 +749 2204 0.400000 +749 2256 0.400000 +749 2483 0.400000 +749 2532 0.400000 +749 2573 0.400000 +749 2583 0.400000 +749 2615 0.400000 +749 2823 0.400000 +749 2960 0.400000 +749 2999 0.400000 +749 3105 0.400000 +749 3111 0.400000 +750 37 0.400000 +750 53 0.400000 +750 84 0.400000 +750 88 0.400000 +750 145 0.400000 +750 177 0.400000 +750 216 0.400000 +750 432 0.400000 +750 435 0.400000 +750 462 0.400000 +750 523 0.400000 +750 630 0.400000 +750 688 0.400000 +750 725 0.400000 +750 767 0.400000 +750 773 0.400000 +750 779 0.400000 +750 846 0.400000 +750 853 0.400000 +750 902 0.400000 +750 915 0.400000 +750 924 0.400000 +750 993 0.400000 +750 1017 0.400000 +750 1163 0.400000 +750 1205 0.400000 +750 1403 0.400000 +750 1409 0.400000 +750 1490 0.400000 +750 1522 0.400000 +750 1629 0.400000 +750 1877 0.400000 +750 1929 0.400000 +750 2023 0.400000 +750 2070 0.400000 +750 2138 0.400000 +750 2181 0.400000 +750 2186 0.400000 +750 2197 0.400000 +750 2204 0.400000 +750 2228 0.400000 +750 2253 0.400000 +750 2295 0.400000 +750 2382 0.400000 +750 2489 0.400000 +750 2547 0.400000 +750 2552 0.400000 +750 2553 0.400000 +750 2574 0.400000 +750 2576 0.400000 +750 2580 0.400000 +750 2738 0.400000 +750 2806 0.400000 +750 2878 0.400000 +750 2881 0.400000 +750 2894 0.400000 +750 2931 0.400000 +750 3109 0.400000 +750 3171 0.400000 +751 19 0.400000 +751 39 0.400000 +751 67 0.400000 +751 106 0.400000 +751 149 0.400000 +751 174 0.400000 +751 197 0.400000 +751 281 0.400000 +751 334 0.400000 +751 338 0.400000 +751 469 0.400000 +751 519 0.400000 +751 668 0.400000 +751 716 0.400000 +751 832 0.400000 +751 893 0.400000 +751 900 0.400000 +751 910 0.400000 +751 1036 0.400000 +751 1046 0.400000 +751 1112 0.400000 +751 1117 0.400000 +751 1118 0.400000 +751 1121 0.400000 +751 1155 0.400000 +751 1204 0.400000 +751 1234 0.400000 +751 1245 0.400000 +751 1248 0.400000 +751 1264 0.400000 +751 1267 0.400000 +751 1277 0.400000 +751 1374 0.400000 +751 1384 0.400000 +751 1388 0.400000 +751 1415 0.400000 +751 1509 0.400000 +751 1559 0.400000 +751 1566 0.400000 +751 1607 0.400000 +751 1678 0.400000 +751 1706 0.400000 +751 1734 0.400000 +751 1831 0.400000 +751 1852 0.400000 +751 1889 0.400000 +751 2044 0.400000 +751 2060 0.400000 +751 2065 0.400000 +751 2120 0.400000 +751 2205 0.400000 +751 2207 0.400000 +751 2231 0.400000 +751 2266 0.400000 +751 2326 0.400000 +751 2349 0.400000 +751 2375 0.400000 +751 2376 0.400000 +751 2524 0.400000 +751 2572 0.400000 +751 2578 0.400000 +751 2619 0.400000 +751 2689 0.400000 +751 2699 0.400000 +751 2726 0.400000 +751 2767 0.400000 +751 2783 0.400000 +751 2867 0.400000 +751 2881 0.400000 +751 2940 0.400000 +751 2943 0.400000 +751 2948 0.400000 +751 2976 0.400000 +751 2986 0.400000 +751 2991 0.400000 +751 2998 0.400000 +751 3059 0.400000 +751 3157 0.400000 +752 82 0.400000 +752 149 0.400000 +752 178 0.400000 +752 180 0.400000 +752 186 0.400000 +752 350 0.400000 +752 375 0.400000 +752 506 0.400000 +752 529 0.400000 +752 595 0.400000 +752 629 0.400000 +752 633 0.400000 +752 720 0.400000 +752 743 0.400000 +752 745 0.400000 +752 758 0.400000 +752 813 0.400000 +752 902 0.400000 +752 920 0.400000 +752 933 0.400000 +752 968 0.400000 +752 970 0.400000 +752 979 0.400000 +752 1100 0.400000 +752 1183 0.400000 +752 1195 0.400000 +752 1226 0.400000 +752 1255 0.400000 +752 1289 0.400000 +752 1329 0.400000 +752 1369 0.400000 +752 1378 0.400000 +752 1416 0.400000 +752 1476 0.400000 +752 1500 0.400000 +752 1561 0.400000 +752 1728 0.400000 +752 1770 0.400000 +752 1773 0.400000 +752 1782 0.400000 +752 1786 0.400000 +752 1978 0.400000 +752 2055 0.400000 +752 2058 0.400000 +752 2068 0.400000 +752 2079 0.400000 +752 2111 0.400000 +752 2134 0.400000 +752 2186 0.400000 +752 2199 0.400000 +752 2223 0.400000 +752 2239 0.400000 +752 2304 0.400000 +752 2360 0.400000 +752 2416 0.400000 +752 2506 0.400000 +752 2534 0.400000 +752 2561 0.400000 +752 2785 0.400000 +752 2931 0.400000 +752 2943 0.400000 +752 2946 0.400000 +752 2955 0.400000 +752 3004 0.400000 +752 3022 0.400000 +752 3109 0.400000 +753 21 0.400000 +753 72 0.400000 +753 168 0.400000 +753 174 0.400000 +753 211 0.400000 +753 264 0.400000 +753 288 0.400000 +753 336 0.400000 +753 341 0.400000 +753 345 0.400000 +753 432 0.400000 +753 435 0.400000 +753 552 0.400000 +753 580 0.400000 +753 600 0.400000 +753 655 0.400000 +753 656 0.400000 +753 741 0.400000 +753 780 0.400000 +753 860 0.400000 +753 915 0.400000 +753 985 0.400000 +753 994 0.400000 +753 1005 0.400000 +753 1042 0.400000 +753 1069 0.400000 +753 1079 0.400000 +753 1239 0.400000 +753 1306 0.400000 +753 1347 0.400000 +753 1364 0.400000 +753 1497 0.400000 +753 1569 0.400000 +753 1609 0.400000 +753 1687 0.400000 +753 1695 0.400000 +753 1696 0.400000 +753 1765 0.400000 +753 1839 0.400000 +753 1902 0.400000 +753 1970 0.400000 +753 2004 0.400000 +753 2042 0.400000 +753 2076 0.400000 +753 2105 0.400000 +753 2108 0.400000 +753 2141 0.400000 +753 2174 0.400000 +753 2197 0.400000 +753 2290 0.400000 +753 2420 0.400000 +753 2454 0.400000 +753 2470 0.400000 +753 2714 0.400000 +753 2807 0.400000 +753 2993 0.400000 +753 3020 0.400000 +753 3058 0.400000 +753 3167 0.400000 +754 36 0.400000 +754 39 0.400000 +754 123 0.400000 +754 386 0.400000 +754 390 0.400000 +754 438 0.400000 +754 448 0.400000 +754 564 0.400000 +754 600 0.400000 +754 617 0.400000 +754 733 0.400000 +754 821 0.400000 +754 841 0.400000 +754 889 0.400000 +754 978 0.400000 +754 989 0.400000 +754 998 0.400000 +754 1041 0.400000 +754 1060 0.400000 +754 1067 0.400000 +754 1072 0.400000 +754 1081 0.400000 +754 1190 0.400000 +754 1202 0.400000 +754 1287 0.400000 +754 1410 0.400000 +754 1513 0.400000 +754 1545 0.400000 +754 1568 0.400000 +754 1623 0.400000 +754 1722 0.400000 +754 1740 0.400000 +754 1761 0.400000 +754 1846 0.400000 +754 1975 0.400000 +754 1979 0.400000 +754 1991 0.400000 +754 2032 0.400000 +754 2069 0.400000 +754 2116 0.400000 +754 2119 0.400000 +754 2140 0.400000 +754 2182 0.400000 +754 2195 0.400000 +754 2316 0.400000 +754 2355 0.400000 +754 2369 0.400000 +754 2421 0.400000 +754 2441 0.400000 +754 2460 0.400000 +754 2471 0.400000 +754 2484 0.400000 +754 2492 0.400000 +754 2517 0.400000 +754 2528 0.400000 +754 2535 0.400000 +754 2635 0.400000 +754 2734 0.400000 +754 2735 0.400000 +754 2744 0.400000 +754 2810 0.400000 +754 2839 0.400000 +754 2864 0.400000 +754 2866 0.400000 +754 2902 0.400000 +754 2916 0.400000 +754 2927 0.400000 +754 3020 0.400000 +754 3054 0.400000 +754 3068 0.400000 +754 3112 0.400000 +754 3143 0.400000 +755 343 0.400000 +755 350 0.400000 +755 455 0.400000 +755 545 0.400000 +755 578 0.400000 +755 612 0.400000 +755 662 0.400000 +755 686 0.400000 +755 691 0.400000 +755 777 0.400000 +755 924 0.400000 +755 972 0.400000 +755 1029 0.400000 +755 1061 0.400000 +755 1093 0.400000 +755 1103 0.400000 +755 1193 0.400000 +755 1200 0.400000 +755 1331 0.400000 +755 1374 0.400000 +755 1381 0.400000 +755 1430 0.400000 +755 1462 0.400000 +755 1557 0.400000 +755 1564 0.400000 +755 1593 0.400000 +755 1652 0.400000 +755 1662 0.400000 +755 1752 0.400000 +755 1809 0.400000 +755 1857 0.400000 +755 1946 0.400000 +755 2043 0.400000 +755 2047 0.400000 +755 2104 0.400000 +755 2275 0.400000 +755 2387 0.400000 +755 2451 0.400000 +755 2456 0.400000 +755 2473 0.400000 +755 2498 0.400000 +755 2540 0.400000 +755 2552 0.400000 +755 2560 0.400000 +755 2576 0.400000 +755 2630 0.400000 +755 2704 0.400000 +755 2717 0.400000 +755 2725 0.400000 +755 2751 0.400000 +755 2833 0.400000 +755 2839 0.400000 +755 2908 0.400000 +755 2921 0.400000 +755 2923 0.400000 +755 2937 0.400000 +755 2953 0.400000 +755 2972 0.400000 +755 2976 0.400000 +755 3018 0.400000 +755 3033 0.400000 +755 3060 0.400000 +755 3122 0.400000 +755 3136 0.400000 +755 3150 0.400000 +755 3158 0.400000 +755 3171 0.400000 +755 3191 0.400000 +755 3197 0.400000 +756 7 0.400000 +756 71 0.400000 +756 169 0.400000 +756 273 0.400000 +756 334 0.400000 +756 375 0.400000 +756 396 0.400000 +756 415 0.400000 +756 438 0.400000 +756 455 0.400000 +756 538 0.400000 +756 606 0.400000 +756 621 0.400000 +756 638 0.400000 +756 736 0.400000 +756 803 0.400000 +756 834 0.400000 +756 847 0.400000 +756 901 0.400000 +756 979 0.400000 +756 1036 0.400000 +756 1047 0.400000 +756 1076 0.400000 +756 1108 0.400000 +756 1229 0.400000 +756 1231 0.400000 +756 1287 0.400000 +756 1301 0.400000 +756 1305 0.400000 +756 1340 0.400000 +756 1375 0.400000 +756 1425 0.400000 +756 1467 0.400000 +756 1626 0.400000 +756 1628 0.400000 +756 1684 0.400000 +756 1892 0.400000 +756 1982 0.400000 +756 1987 0.400000 +756 2006 0.400000 +756 2025 0.400000 +756 2031 0.400000 +756 2068 0.400000 +756 2118 0.400000 +756 2166 0.400000 +756 2190 0.400000 +756 2242 0.400000 +756 2253 0.400000 +756 2270 0.400000 +756 2296 0.400000 +756 2320 0.400000 +756 2329 0.400000 +756 2356 0.400000 +756 2454 0.400000 +756 2538 0.400000 +756 2694 0.400000 +756 2705 0.400000 +756 2714 0.400000 +756 2717 0.400000 +756 2814 0.400000 +756 2860 0.400000 +756 2907 0.400000 +756 2910 0.400000 +756 2939 0.400000 +756 2968 0.400000 +756 2998 0.400000 +756 3043 0.400000 +756 3055 0.400000 +756 3115 0.400000 +756 3126 0.400000 +756 3168 0.400000 +757 2 0.400000 +757 33 0.400000 +757 127 0.400000 +757 285 0.400000 +757 305 0.400000 +757 324 0.400000 +757 362 0.400000 +757 406 0.400000 +757 558 0.400000 +757 583 0.400000 +757 602 0.400000 +757 628 0.400000 +757 655 0.400000 +757 739 0.400000 +757 742 0.400000 +757 744 0.400000 +757 753 0.400000 +757 774 0.400000 +757 793 0.400000 +757 795 0.400000 +757 817 0.400000 +757 929 0.400000 +757 974 0.400000 +757 977 0.400000 +757 1015 0.400000 +757 1024 0.400000 +757 1025 0.400000 +757 1032 0.400000 +757 1076 0.400000 +757 1093 0.400000 +757 1165 0.400000 +757 1201 0.400000 +757 1284 0.400000 +757 1288 0.400000 +757 1334 0.400000 +757 1387 0.400000 +757 1409 0.400000 +757 1437 0.400000 +757 1478 0.400000 +757 1531 0.400000 +757 1545 0.400000 +757 1563 0.400000 +757 1570 0.400000 +757 1598 0.400000 +757 1608 0.400000 +757 1706 0.400000 +757 1723 0.400000 +757 1772 0.400000 +757 1800 0.400000 +757 1803 0.400000 +757 1909 0.400000 +757 1939 0.400000 +757 2005 0.400000 +757 2192 0.400000 +757 2284 0.400000 +757 2334 0.400000 +757 2351 0.400000 +757 2389 0.400000 +757 2403 0.400000 +757 2412 0.400000 +757 2506 0.400000 +757 2510 0.400000 +757 2525 0.400000 +757 2539 0.400000 +757 2571 0.400000 +757 2595 0.400000 +757 2610 0.400000 +757 2753 0.400000 +757 2848 0.400000 +757 2882 0.400000 +757 2894 0.400000 +757 2921 0.400000 +757 2985 0.400000 +757 3061 0.400000 +757 3137 0.400000 +758 56 0.400000 +758 166 0.400000 +758 178 0.400000 +758 263 0.400000 +758 293 0.400000 +758 371 0.400000 +758 441 0.400000 +758 447 0.400000 +758 473 0.400000 +758 610 0.400000 +758 654 0.400000 +758 814 0.400000 +758 838 0.400000 +758 861 0.400000 +758 913 0.400000 +758 937 0.400000 +758 946 0.400000 +758 959 0.400000 +758 1071 0.400000 +758 1112 0.400000 +758 1177 0.400000 +758 1202 0.400000 +758 1211 0.400000 +758 1216 0.400000 +758 1226 0.400000 +758 1317 0.400000 +758 1360 0.400000 +758 1362 0.400000 +758 1660 0.400000 +758 1686 0.400000 +758 1755 0.400000 +758 1758 0.400000 +758 1826 0.400000 +758 1844 0.400000 +758 1891 0.400000 +758 1897 0.400000 +758 2050 0.400000 +758 2074 0.400000 +758 2112 0.400000 +758 2149 0.400000 +758 2174 0.400000 +758 2186 0.400000 +758 2329 0.400000 +758 2517 0.400000 +758 2562 0.400000 +758 2579 0.400000 +758 2593 0.400000 +758 2599 0.400000 +758 2716 0.400000 +758 2740 0.400000 +758 2869 0.400000 +758 2928 0.400000 +758 2940 0.400000 +758 3023 0.400000 +758 3030 0.400000 +758 3104 0.400000 +758 3153 0.400000 +759 1 0.400000 +759 65 0.400000 +759 132 0.400000 +759 135 0.400000 +759 150 0.400000 +759 183 0.400000 +759 203 0.400000 +759 208 0.400000 +759 350 0.400000 +759 370 0.400000 +759 387 0.400000 +759 414 0.400000 +759 488 0.400000 +759 498 0.400000 +759 547 0.400000 +759 553 0.400000 +759 570 0.400000 +759 632 0.400000 +759 657 0.400000 +759 769 0.400000 +759 861 0.400000 +759 897 0.400000 +759 987 0.400000 +759 995 0.400000 +759 1036 0.400000 +759 1169 0.400000 +759 1232 0.400000 +759 1262 0.400000 +759 1281 0.400000 +759 1313 0.400000 +759 1325 0.400000 +759 1335 0.400000 +759 1355 0.400000 +759 1621 0.400000 +759 1642 0.400000 +759 1679 0.400000 +759 1744 0.400000 +759 1757 0.400000 +759 1808 0.400000 +759 1900 0.400000 +759 1962 0.400000 +759 1971 0.400000 +759 1990 0.400000 +759 2014 0.400000 +759 2081 0.400000 +759 2138 0.400000 +759 2156 0.400000 +759 2296 0.400000 +759 2307 0.400000 +759 2389 0.400000 +759 2499 0.400000 +759 2545 0.400000 +759 2579 0.400000 +759 2584 0.400000 +759 2587 0.400000 +759 2588 0.400000 +759 2656 0.400000 +759 2687 0.400000 +759 2693 0.400000 +759 2696 0.400000 +759 2768 0.400000 +759 2780 0.400000 +759 2869 0.400000 +759 2911 0.400000 +759 2934 0.400000 +759 2992 0.400000 +759 3028 0.400000 +759 3085 0.400000 +759 3093 0.400000 +759 3114 0.400000 +760 4 0.400000 +760 70 0.400000 +760 451 0.400000 +760 478 0.400000 +760 640 0.400000 +760 652 0.400000 +760 691 0.400000 +760 720 0.400000 +760 876 0.400000 +760 913 0.400000 +760 978 0.400000 +760 1028 0.400000 +760 1078 0.400000 +760 1244 0.400000 +760 1255 0.400000 +760 1330 0.400000 +760 1452 0.400000 +760 1488 0.400000 +760 1559 0.400000 +760 1587 0.400000 +760 1590 0.400000 +760 1637 0.400000 +760 1656 0.400000 +760 1735 0.400000 +760 1762 0.400000 +760 1771 0.400000 +760 1780 0.400000 +760 1833 0.400000 +760 1891 0.400000 +760 1944 0.400000 +760 1952 0.400000 +760 1977 0.400000 +760 2028 0.400000 +760 2034 0.400000 +760 2040 0.400000 +760 2160 0.400000 +760 2173 0.400000 +760 2185 0.400000 +760 2225 0.400000 +760 2239 0.400000 +760 2251 0.400000 +760 2270 0.400000 +760 2277 0.400000 +760 2345 0.400000 +760 2403 0.400000 +760 2442 0.400000 +760 2480 0.400000 +760 2525 0.400000 +760 2607 0.400000 +760 2646 0.400000 +760 2658 0.400000 +760 2686 0.400000 +760 2689 0.400000 +760 2794 0.400000 +760 2805 0.400000 +760 2840 0.400000 +760 2885 0.400000 +760 2897 0.400000 +760 3073 0.400000 +760 3118 0.400000 +761 35 0.400000 +761 42 0.400000 +761 77 0.400000 +761 158 0.400000 +761 159 0.400000 +761 161 0.400000 +761 213 0.400000 +761 283 0.400000 +761 402 0.400000 +761 403 0.400000 +761 471 0.400000 +761 503 0.400000 +761 532 0.400000 +761 542 0.400000 +761 567 0.400000 +761 570 0.400000 +761 678 0.400000 +761 696 0.400000 +761 741 0.400000 +761 795 0.400000 +761 797 0.400000 +761 918 0.400000 +761 1007 0.400000 +761 1031 0.400000 +761 1043 0.400000 +761 1057 0.400000 +761 1093 0.400000 +761 1149 0.400000 +761 1319 0.400000 +761 1356 0.400000 +761 1458 0.400000 +761 1539 0.400000 +761 1579 0.400000 +761 1599 0.400000 +761 1612 0.400000 +761 1622 0.400000 +761 1770 0.400000 +761 1796 0.400000 +761 1848 0.400000 +761 1886 0.400000 +761 2024 0.400000 +761 2079 0.400000 +761 2081 0.400000 +761 2092 0.400000 +761 2101 0.400000 +761 2196 0.400000 +761 2204 0.400000 +761 2217 0.400000 +761 2226 0.400000 +761 2230 0.400000 +761 2288 0.400000 +761 2340 0.400000 +761 2345 0.400000 +761 2351 0.400000 +761 2362 0.400000 +761 2376 0.400000 +761 2386 0.400000 +761 2429 0.400000 +761 2480 0.400000 +761 2519 0.400000 +761 2553 0.400000 +761 2601 0.400000 +761 2605 0.400000 +761 2625 0.400000 +761 2647 0.400000 +761 2661 0.400000 +761 2721 0.400000 +761 2823 0.400000 +761 2875 0.400000 +761 3057 0.400000 +761 3084 0.400000 +761 3134 0.400000 +762 187 0.400000 +762 263 0.400000 +762 274 0.400000 +762 413 0.400000 +762 424 0.400000 +762 438 0.400000 +762 441 0.400000 +762 471 0.400000 +762 518 0.400000 +762 522 0.400000 +762 681 0.400000 +762 685 0.400000 +762 695 0.400000 +762 708 0.400000 +762 729 0.400000 +762 751 0.400000 +762 786 0.400000 +762 827 0.400000 +762 829 0.400000 +762 903 0.400000 +762 1030 0.400000 +762 1096 0.400000 +762 1122 0.400000 +762 1215 0.400000 +762 1223 0.400000 +762 1263 0.400000 +762 1358 0.400000 +762 1384 0.400000 +762 1416 0.400000 +762 1503 0.400000 +762 1595 0.400000 +762 1606 0.400000 +762 1707 0.400000 +762 1778 0.400000 +762 1790 0.400000 +762 1817 0.400000 +762 1839 0.400000 +762 1884 0.400000 +762 1908 0.400000 +762 1941 0.400000 +762 2063 0.400000 +762 2113 0.400000 +762 2121 0.400000 +762 2124 0.400000 +762 2137 0.400000 +762 2159 0.400000 +762 2210 0.400000 +762 2317 0.400000 +762 2343 0.400000 +762 2397 0.400000 +762 2399 0.400000 +762 2415 0.400000 +762 2435 0.400000 +762 2478 0.400000 +762 2487 0.400000 +762 2524 0.400000 +762 2544 0.400000 +762 2587 0.400000 +762 2590 0.400000 +762 2592 0.400000 +762 2665 0.400000 +762 2712 0.400000 +762 2719 0.400000 +762 2753 0.400000 +762 2774 0.400000 +762 2903 0.400000 +762 2926 0.400000 +762 3000 0.400000 +762 3197 0.400000 +763 50 0.400000 +763 86 0.400000 +763 148 0.400000 +763 179 0.400000 +763 187 0.400000 +763 348 0.400000 +763 452 0.400000 +763 535 0.400000 +763 554 0.400000 +763 609 0.400000 +763 640 0.400000 +763 747 0.400000 +763 749 0.400000 +763 799 0.400000 +763 832 0.400000 +763 835 0.400000 +763 980 0.400000 +763 1093 0.400000 +763 1190 0.400000 +763 1227 0.400000 +763 1245 0.400000 +763 1250 0.400000 +763 1278 0.400000 +763 1343 0.400000 +763 1345 0.400000 +763 1373 0.400000 +763 1599 0.400000 +763 1630 0.400000 +763 1644 0.400000 +763 1647 0.400000 +763 1670 0.400000 +763 1752 0.400000 +763 1781 0.400000 +763 1811 0.400000 +763 1837 0.400000 +763 1858 0.400000 +763 1896 0.400000 +763 1986 0.400000 +763 1993 0.400000 +763 2042 0.400000 +763 2061 0.400000 +763 2085 0.400000 +763 2142 0.400000 +763 2262 0.400000 +763 2346 0.400000 +763 2425 0.400000 +763 2467 0.400000 +763 2472 0.400000 +763 2541 0.400000 +763 2559 0.400000 +763 2565 0.400000 +763 2592 0.400000 +763 2654 0.400000 +763 2721 0.400000 +763 2934 0.400000 +763 2982 0.400000 +763 2992 0.400000 +763 3019 0.400000 +763 3064 0.400000 +763 3122 0.400000 +763 3180 0.400000 +764 179 0.400000 +764 256 0.400000 +764 265 0.400000 +764 276 0.400000 +764 442 0.400000 +764 467 0.400000 +764 519 0.400000 +764 563 0.400000 +764 668 0.400000 +764 696 0.400000 +764 774 0.400000 +764 821 0.400000 +764 844 0.400000 +764 932 0.400000 +764 1013 0.400000 +764 1015 0.400000 +764 1018 0.400000 +764 1025 0.400000 +764 1058 0.400000 +764 1127 0.400000 +764 1184 0.400000 +764 1196 0.400000 +764 1216 0.400000 +764 1330 0.400000 +764 1352 0.400000 +764 1372 0.400000 +764 1409 0.400000 +764 1494 0.400000 +764 1549 0.400000 +764 1571 0.400000 +764 1607 0.400000 +764 1639 0.400000 +764 1664 0.400000 +764 1836 0.400000 +764 1841 0.400000 +764 1860 0.400000 +764 1901 0.400000 +764 1940 0.400000 +764 2146 0.400000 +764 2199 0.400000 +764 2305 0.400000 +764 2345 0.400000 +764 2385 0.400000 +764 2418 0.400000 +764 2458 0.400000 +764 2476 0.400000 +764 2574 0.400000 +764 2629 0.400000 +764 2705 0.400000 +764 2743 0.400000 +764 2818 0.400000 +764 2861 0.400000 +764 2956 0.400000 +764 3061 0.400000 +764 3069 0.400000 +764 3094 0.400000 +764 3195 0.400000 +765 12 0.400000 +765 171 0.400000 +765 180 0.400000 +765 196 0.400000 +765 209 0.400000 +765 210 0.400000 +765 282 0.400000 +765 306 0.400000 +765 474 0.400000 +765 521 0.400000 +765 607 0.400000 +765 633 0.400000 +765 651 0.400000 +765 921 0.400000 +765 922 0.400000 +765 933 0.400000 +765 954 0.400000 +765 1003 0.400000 +765 1022 0.400000 +765 1082 0.400000 +765 1119 0.400000 +765 1218 0.400000 +765 1261 0.400000 +765 1280 0.400000 +765 1291 0.400000 +765 1318 0.400000 +765 1357 0.400000 +765 1481 0.400000 +765 1501 0.400000 +765 1511 0.400000 +765 1514 0.400000 +765 1525 0.400000 +765 1532 0.400000 +765 1545 0.400000 +765 1579 0.400000 +765 1611 0.400000 +765 1615 0.400000 +765 1644 0.400000 +765 1706 0.400000 +765 1766 0.400000 +765 1851 0.400000 +765 1854 0.400000 +765 2074 0.400000 +765 2118 0.400000 +765 2250 0.400000 +765 2319 0.400000 +765 2445 0.400000 +765 2472 0.400000 +765 2549 0.400000 +765 2582 0.400000 +765 2593 0.400000 +765 2602 0.400000 +765 2654 0.400000 +765 2688 0.400000 +765 2702 0.400000 +765 2728 0.400000 +765 2755 0.400000 +765 2776 0.400000 +765 2797 0.400000 +765 2816 0.400000 +765 2823 0.400000 +765 2902 0.400000 +765 2930 0.400000 +765 2932 0.400000 +765 2948 0.400000 +765 2957 0.400000 +765 2970 0.400000 +765 3108 0.400000 +765 3109 0.400000 +765 3133 0.400000 +765 3188 0.400000 +766 52 0.400000 +766 98 0.400000 +766 157 0.400000 +766 194 0.400000 +766 353 0.400000 +766 385 0.400000 +766 464 0.400000 +766 509 0.400000 +766 524 0.400000 +766 540 0.400000 +766 564 0.400000 +766 607 0.400000 +766 715 0.400000 +766 780 0.400000 +766 857 0.400000 +766 872 0.400000 +766 993 0.400000 +766 1081 0.400000 +766 1130 0.400000 +766 1175 0.400000 +766 1215 0.400000 +766 1227 0.400000 +766 1299 0.400000 +766 1387 0.400000 +766 1393 0.400000 +766 1403 0.400000 +766 1440 0.400000 +766 1455 0.400000 +766 1487 0.400000 +766 1494 0.400000 +766 1504 0.400000 +766 1523 0.400000 +766 1671 0.400000 +766 1719 0.400000 +766 1723 0.400000 +766 1872 0.400000 +766 1888 0.400000 +766 1927 0.400000 +766 1949 0.400000 +766 1970 0.400000 +766 1972 0.400000 +766 1988 0.400000 +766 1994 0.400000 +766 2000 0.400000 +766 2134 0.400000 +766 2154 0.400000 +766 2171 0.400000 +766 2221 0.400000 +766 2257 0.400000 +766 2327 0.400000 +766 2433 0.400000 +766 2605 0.400000 +766 2630 0.400000 +766 2643 0.400000 +766 2770 0.400000 +766 2998 0.400000 +766 3001 0.400000 +766 3065 0.400000 +766 3079 0.400000 +766 3085 0.400000 +766 3195 0.400000 +767 23 0.400000 +767 46 0.400000 +767 61 0.400000 +767 151 0.400000 +767 172 0.400000 +767 316 0.400000 +767 320 0.400000 +767 336 0.400000 +767 409 0.400000 +767 426 0.400000 +767 512 0.400000 +767 517 0.400000 +767 518 0.400000 +767 551 0.400000 +767 606 0.400000 +767 642 0.400000 +767 646 0.400000 +767 726 0.400000 +767 748 0.400000 +767 791 0.400000 +767 800 0.400000 +767 804 0.400000 +767 935 0.400000 +767 1011 0.400000 +767 1021 0.400000 +767 1023 0.400000 +767 1060 0.400000 +767 1103 0.400000 +767 1157 0.400000 +767 1247 0.400000 +767 1297 0.400000 +767 1338 0.400000 +767 1375 0.400000 +767 1387 0.400000 +767 1427 0.400000 +767 1473 0.400000 +767 1485 0.400000 +767 1510 0.400000 +767 1524 0.400000 +767 1534 0.400000 +767 1570 0.400000 +767 1648 0.400000 +767 1708 0.400000 +767 1791 0.400000 +767 1834 0.400000 +767 1891 0.400000 +767 1909 0.400000 +767 1974 0.400000 +767 2014 0.400000 +767 2163 0.400000 +767 2206 0.400000 +767 2228 0.400000 +767 2351 0.400000 +767 2358 0.400000 +767 2373 0.400000 +767 2390 0.400000 +767 2521 0.400000 +767 2561 0.400000 +767 2574 0.400000 +767 2593 0.400000 +767 2658 0.400000 +767 2663 0.400000 +767 2669 0.400000 +767 2717 0.400000 +767 2848 0.400000 +767 2927 0.400000 +767 3014 0.400000 +767 3120 0.400000 +768 88 0.400000 +768 122 0.400000 +768 134 0.400000 +768 204 0.400000 +768 220 0.400000 +768 233 0.400000 +768 293 0.400000 +768 335 0.400000 +768 362 0.400000 +768 468 0.400000 +768 512 0.400000 +768 578 0.400000 +768 654 0.400000 +768 687 0.400000 +768 696 0.400000 +768 759 0.400000 +768 796 0.400000 +768 801 0.400000 +768 853 0.400000 +768 962 0.400000 +768 968 0.400000 +768 1008 0.400000 +768 1011 0.400000 +768 1019 0.400000 +768 1028 0.400000 +768 1067 0.400000 +768 1082 0.400000 +768 1206 0.400000 +768 1226 0.400000 +768 1303 0.400000 +768 1359 0.400000 +768 1360 0.400000 +768 1374 0.400000 +768 1477 0.400000 +768 1596 0.400000 +768 1612 0.400000 +768 1655 0.400000 +768 1742 0.400000 +768 1759 0.400000 +768 1796 0.400000 +768 1822 0.400000 +768 1906 0.400000 +768 1925 0.400000 +768 2085 0.400000 +768 2099 0.400000 +768 2126 0.400000 +768 2418 0.400000 +768 2503 0.400000 +768 2506 0.400000 +768 2518 0.400000 +768 2629 0.400000 +768 2759 0.400000 +768 2810 0.400000 +768 2861 0.400000 +768 2881 0.400000 +768 2913 0.400000 +768 2939 0.400000 +768 2953 0.400000 +768 2958 0.400000 +768 2961 0.400000 +768 3040 0.400000 +768 3100 0.400000 +768 3113 0.400000 +768 3124 0.400000 +768 3125 0.400000 +769 217 0.400000 +769 233 0.400000 +769 366 0.400000 +769 373 0.400000 +769 396 0.400000 +769 402 0.400000 +769 404 0.400000 +769 494 0.400000 +769 529 0.400000 +769 671 0.400000 +769 672 0.400000 +769 695 0.400000 +769 811 0.400000 +769 830 0.400000 +769 860 0.400000 +769 904 0.400000 +769 917 0.400000 +769 997 0.400000 +769 1059 0.400000 +769 1073 0.400000 +769 1104 0.400000 +769 1155 0.400000 +769 1227 0.400000 +769 1251 0.400000 +769 1322 0.400000 +769 1383 0.400000 +769 1414 0.400000 +769 1503 0.400000 +769 1523 0.400000 +769 1559 0.400000 +769 1685 0.400000 +769 1715 0.400000 +769 1870 0.400000 +769 1915 0.400000 +769 1922 0.400000 +769 2001 0.400000 +769 2026 0.400000 +769 2058 0.400000 +769 2096 0.400000 +769 2120 0.400000 +769 2141 0.400000 +769 2294 0.400000 +769 2316 0.400000 +769 2348 0.400000 +769 2407 0.400000 +769 2465 0.400000 +769 2497 0.400000 +769 2498 0.400000 +769 2500 0.400000 +769 2505 0.400000 +769 2562 0.400000 +769 2601 0.400000 +769 2612 0.400000 +769 2642 0.400000 +769 2733 0.400000 +769 2744 0.400000 +769 2787 0.400000 +769 2806 0.400000 +769 2808 0.400000 +769 2828 0.400000 +769 2872 0.400000 +769 2912 0.400000 +769 2914 0.400000 +769 2934 0.400000 +769 2950 0.400000 +769 2985 0.400000 +769 3017 0.400000 +769 3022 0.400000 +769 3051 0.400000 +769 3072 0.400000 +769 3128 0.400000 +769 3133 0.400000 +769 3185 0.400000 +769 3190 0.400000 +769 3191 0.400000 +770 87 0.400000 +770 133 0.400000 +770 146 0.400000 +770 249 0.400000 +770 264 0.400000 +770 377 0.400000 +770 465 0.400000 +770 490 0.400000 +770 534 0.400000 +770 655 0.400000 +770 715 0.400000 +770 761 0.400000 +770 812 0.400000 +770 827 0.400000 +770 841 0.400000 +770 882 0.400000 +770 916 0.400000 +770 917 0.400000 +770 923 0.400000 +770 982 0.400000 +770 1041 0.400000 +770 1121 0.400000 +770 1124 0.400000 +770 1131 0.400000 +770 1149 0.400000 +770 1154 0.400000 +770 1165 0.400000 +770 1282 0.400000 +770 1364 0.400000 +770 1382 0.400000 +770 1428 0.400000 +770 1438 0.400000 +770 1477 0.400000 +770 1481 0.400000 +770 1624 0.400000 +770 1633 0.400000 +770 1660 0.400000 +770 1736 0.400000 +770 1914 0.400000 +770 1991 0.400000 +770 2061 0.400000 +770 2083 0.400000 +770 2137 0.400000 +770 2143 0.400000 +770 2170 0.400000 +770 2320 0.400000 +770 2401 0.400000 +770 2413 0.400000 +770 2562 0.400000 +770 2569 0.400000 +770 2576 0.400000 +770 2707 0.400000 +770 2738 0.400000 +770 2748 0.400000 +770 2771 0.400000 +770 2872 0.400000 +770 2921 0.400000 +770 2948 0.400000 +770 2973 0.400000 +770 3001 0.400000 +770 3014 0.400000 +770 3023 0.400000 +770 3029 0.400000 +770 3030 0.400000 +770 3041 0.400000 +770 3069 0.400000 +770 3081 0.400000 +770 3129 0.400000 +770 3155 0.400000 +771 10 0.400000 +771 11 0.400000 +771 22 0.400000 +771 65 0.400000 +771 157 0.400000 +771 187 0.400000 +771 196 0.400000 +771 342 0.400000 +771 362 0.400000 +771 363 0.400000 +771 411 0.400000 +771 431 0.400000 +771 479 0.400000 +771 516 0.400000 +771 529 0.400000 +771 616 0.400000 +771 690 0.400000 +771 708 0.400000 +771 712 0.400000 +771 716 0.400000 +771 760 0.400000 +771 937 0.400000 +771 988 0.400000 +771 1013 0.400000 +771 1070 0.400000 +771 1162 0.400000 +771 1306 0.400000 +771 1402 0.400000 +771 1444 0.400000 +771 1445 0.400000 +771 1459 0.400000 +771 1486 0.400000 +771 1487 0.400000 +771 1588 0.400000 +771 1634 0.400000 +771 1639 0.400000 +771 1648 0.400000 +771 1688 0.400000 +771 1731 0.400000 +771 1740 0.400000 +771 1758 0.400000 +771 1839 0.400000 +771 1889 0.400000 +771 1989 0.400000 +771 1995 0.400000 +771 2029 0.400000 +771 2046 0.400000 +771 2120 0.400000 +771 2196 0.400000 +771 2253 0.400000 +771 2343 0.400000 +771 2396 0.400000 +771 2407 0.400000 +771 2480 0.400000 +771 2484 0.400000 +771 2609 0.400000 +771 2652 0.400000 +771 2663 0.400000 +771 2672 0.400000 +771 2702 0.400000 +771 2704 0.400000 +771 2770 0.400000 +771 2788 0.400000 +771 2818 0.400000 +771 2849 0.400000 +771 2876 0.400000 +771 2914 0.400000 +771 2951 0.400000 +772 71 0.400000 +772 141 0.400000 +772 157 0.400000 +772 158 0.400000 +772 159 0.400000 +772 175 0.400000 +772 195 0.400000 +772 219 0.400000 +772 223 0.400000 +772 248 0.400000 +772 320 0.400000 +772 475 0.400000 +772 539 0.400000 +772 557 0.400000 +772 620 0.400000 +772 661 0.400000 +772 663 0.400000 +772 712 0.400000 +772 726 0.400000 +772 956 0.400000 +772 998 0.400000 +772 1180 0.400000 +772 1195 0.400000 +772 1240 0.400000 +772 1283 0.400000 +772 1408 0.400000 +772 1436 0.400000 +772 1493 0.400000 +772 1612 0.400000 +772 1645 0.400000 +772 1753 0.400000 +772 1771 0.400000 +772 1806 0.400000 +772 1844 0.400000 +772 1910 0.400000 +772 1927 0.400000 +772 2166 0.400000 +772 2181 0.400000 +772 2215 0.400000 +772 2222 0.400000 +772 2231 0.400000 +772 2253 0.400000 +772 2340 0.400000 +772 2347 0.400000 +772 2389 0.400000 +772 2406 0.400000 +772 2422 0.400000 +772 2444 0.400000 +772 2484 0.400000 +772 2510 0.400000 +772 2560 0.400000 +772 2883 0.400000 +772 2914 0.400000 +772 2971 0.400000 +772 3195 0.400000 +773 84 0.400000 +773 122 0.400000 +773 132 0.400000 +773 178 0.400000 +773 210 0.400000 +773 284 0.400000 +773 315 0.400000 +773 346 0.400000 +773 376 0.400000 +773 435 0.400000 +773 437 0.400000 +773 469 0.400000 +773 512 0.400000 +773 525 0.400000 +773 536 0.400000 +773 579 0.400000 +773 580 0.400000 +773 717 0.400000 +773 848 0.400000 +773 891 0.400000 +773 925 0.400000 +773 1068 0.400000 +773 1103 0.400000 +773 1133 0.400000 +773 1169 0.400000 +773 1188 0.400000 +773 1363 0.400000 +773 1370 0.400000 +773 1382 0.400000 +773 1420 0.400000 +773 1482 0.400000 +773 1585 0.400000 +773 1624 0.400000 +773 1664 0.400000 +773 1713 0.400000 +773 1813 0.400000 +773 1822 0.400000 +773 1860 0.400000 +773 1878 0.400000 +773 1881 0.400000 +773 2288 0.400000 +773 2296 0.400000 +773 2330 0.400000 +773 2435 0.400000 +773 2550 0.400000 +773 2582 0.400000 +773 2667 0.400000 +773 2690 0.400000 +773 2777 0.400000 +773 2812 0.400000 +773 2856 0.400000 +773 2905 0.400000 +773 2907 0.400000 +773 2920 0.400000 +773 2979 0.400000 +773 3061 0.400000 +774 56 0.400000 +774 67 0.400000 +774 118 0.400000 +774 147 0.400000 +774 158 0.400000 +774 177 0.400000 +774 216 0.400000 +774 219 0.400000 +774 261 0.400000 +774 336 0.400000 +774 509 0.400000 +774 565 0.400000 +774 577 0.400000 +774 658 0.400000 +774 764 0.400000 +774 919 0.400000 +774 974 0.400000 +774 1025 0.400000 +774 1198 0.400000 +774 1260 0.400000 +774 1263 0.400000 +774 1363 0.400000 +774 1402 0.400000 +774 1475 0.400000 +774 1530 0.400000 +774 1598 0.400000 +774 1603 0.400000 +774 1740 0.400000 +774 1788 0.400000 +774 1803 0.400000 +774 1814 0.400000 +774 1831 0.400000 +774 1862 0.400000 +774 1863 0.400000 +774 1995 0.400000 +774 2032 0.400000 +774 2046 0.400000 +774 2051 0.400000 +774 2141 0.400000 +774 2213 0.400000 +774 2264 0.400000 +774 2373 0.400000 +774 2378 0.400000 +774 2416 0.400000 +774 2428 0.400000 +774 2447 0.400000 +774 2465 0.400000 +774 2565 0.400000 +774 2687 0.400000 +774 2774 0.400000 +774 2776 0.400000 +774 2799 0.400000 +774 2816 0.400000 +774 2858 0.400000 +774 2985 0.400000 +774 3012 0.400000 +774 3063 0.400000 +774 3119 0.400000 +774 3124 0.400000 +774 3125 0.400000 +774 3140 0.400000 +774 3157 0.400000 +774 3170 0.400000 +775 46 0.400000 +775 146 0.400000 +775 177 0.400000 +775 344 0.400000 +775 430 0.400000 +775 480 0.400000 +775 487 0.400000 +775 489 0.400000 +775 517 0.400000 +775 538 0.400000 +775 554 0.400000 +775 582 0.400000 +775 596 0.400000 +775 597 0.400000 +775 610 0.400000 +775 630 0.400000 +775 636 0.400000 +775 718 0.400000 +775 741 0.400000 +775 743 0.400000 +775 847 0.400000 +775 875 0.400000 +775 880 0.400000 +775 925 0.400000 +775 943 0.400000 +775 945 0.400000 +775 977 0.400000 +775 998 0.400000 +775 1047 0.400000 +775 1108 0.400000 +775 1204 0.400000 +775 1314 0.400000 +775 1336 0.400000 +775 1345 0.400000 +775 1416 0.400000 +775 1421 0.400000 +775 1433 0.400000 +775 1449 0.400000 +775 1506 0.400000 +775 1555 0.400000 +775 1782 0.400000 +775 1825 0.400000 +775 1861 0.400000 +775 1919 0.400000 +775 1961 0.400000 +775 1971 0.400000 +775 1990 0.400000 +775 1993 0.400000 +775 2037 0.400000 +775 2091 0.400000 +775 2198 0.400000 +775 2239 0.400000 +775 2315 0.400000 +775 2344 0.400000 +775 2374 0.400000 +775 2377 0.400000 +775 2450 0.400000 +775 2529 0.400000 +775 2554 0.400000 +775 2638 0.400000 +775 2651 0.400000 +775 2659 0.400000 +775 2810 0.400000 +775 2814 0.400000 +775 2818 0.400000 +775 2907 0.400000 +775 2964 0.400000 +775 2978 0.400000 +775 3020 0.400000 +775 3053 0.400000 +775 3065 0.400000 +775 3184 0.400000 +776 45 0.400000 +776 46 0.400000 +776 149 0.400000 +776 347 0.400000 +776 379 0.400000 +776 443 0.400000 +776 561 0.400000 +776 580 0.400000 +776 755 0.400000 +776 756 0.400000 +776 790 0.400000 +776 828 0.400000 +776 848 0.400000 +776 869 0.400000 +776 950 0.400000 +776 992 0.400000 +776 1018 0.400000 +776 1031 0.400000 +776 1047 0.400000 +776 1341 0.400000 +776 1426 0.400000 +776 1440 0.400000 +776 1594 0.400000 +776 1599 0.400000 +776 1767 0.400000 +776 1805 0.400000 +776 1976 0.400000 +776 1977 0.400000 +776 1995 0.400000 +776 2140 0.400000 +776 2160 0.400000 +776 2173 0.400000 +776 2319 0.400000 +776 2376 0.400000 +776 2407 0.400000 +776 2483 0.400000 +776 2617 0.400000 +776 2645 0.400000 +776 2659 0.400000 +776 2698 0.400000 +776 2743 0.400000 +776 2781 0.400000 +776 2785 0.400000 +776 2809 0.400000 +776 2867 0.400000 +776 3002 0.400000 +776 3096 0.400000 +776 3100 0.400000 +776 3181 0.400000 +777 20 0.400000 +777 110 0.400000 +777 141 0.400000 +777 167 0.400000 +777 191 0.400000 +777 274 0.400000 +777 285 0.400000 +777 366 0.400000 +777 372 0.400000 +777 494 0.400000 +777 496 0.400000 +777 633 0.400000 +777 687 0.400000 +777 700 0.400000 +777 719 0.400000 +777 763 0.400000 +777 784 0.400000 +777 818 0.400000 +777 891 0.400000 +777 902 0.400000 +777 1078 0.400000 +777 1088 0.400000 +777 1190 0.400000 +777 1353 0.400000 +777 1391 0.400000 +777 1394 0.400000 +777 1403 0.400000 +777 1462 0.400000 +777 1530 0.400000 +777 1566 0.400000 +777 1627 0.400000 +777 1659 0.400000 +777 1662 0.400000 +777 1724 0.400000 +777 1728 0.400000 +777 1788 0.400000 +777 1870 0.400000 +777 1889 0.400000 +777 1892 0.400000 +777 1921 0.400000 +777 2089 0.400000 +777 2179 0.400000 +777 2208 0.400000 +777 2218 0.400000 +777 2221 0.400000 +777 2264 0.400000 +777 2307 0.400000 +777 2309 0.400000 +777 2360 0.400000 +777 2423 0.400000 +777 2444 0.400000 +777 2448 0.400000 +777 2455 0.400000 +777 2468 0.400000 +777 2482 0.400000 +777 2507 0.400000 +777 2571 0.400000 +777 2613 0.400000 +777 2622 0.400000 +777 2637 0.400000 +777 2639 0.400000 +777 2682 0.400000 +777 2750 0.400000 +777 2773 0.400000 +777 2801 0.400000 +777 2866 0.400000 +777 2912 0.400000 +777 2979 0.400000 +777 3063 0.400000 +777 3094 0.400000 +777 3123 0.400000 +777 3130 0.400000 +777 3188 0.400000 +778 41 0.400000 +778 42 0.400000 +778 84 0.400000 +778 121 0.400000 +778 202 0.400000 +778 240 0.400000 +778 252 0.400000 +778 315 0.400000 +778 390 0.400000 +778 411 0.400000 +778 422 0.400000 +778 687 0.400000 +778 696 0.400000 +778 704 0.400000 +778 769 0.400000 +778 785 0.400000 +778 786 0.400000 +778 937 0.400000 +778 1064 0.400000 +778 1173 0.400000 +778 1251 0.400000 +778 1277 0.400000 +778 1308 0.400000 +778 1336 0.400000 +778 1349 0.400000 +778 1447 0.400000 +778 1491 0.400000 +778 1815 0.400000 +778 1900 0.400000 +778 1978 0.400000 +778 2176 0.400000 +778 2229 0.400000 +778 2234 0.400000 +778 2302 0.400000 +778 2360 0.400000 +778 2422 0.400000 +778 2776 0.400000 +778 2808 0.400000 +778 2854 0.400000 +778 2883 0.400000 +778 2950 0.400000 +778 2973 0.400000 +778 2985 0.400000 +778 2994 0.400000 +778 3030 0.400000 +778 3073 0.400000 +778 3174 0.400000 +779 9 0.400000 +779 35 0.400000 +779 68 0.400000 +779 77 0.400000 +779 153 0.400000 +779 273 0.400000 +779 289 0.400000 +779 309 0.400000 +779 367 0.400000 +779 440 0.400000 +779 489 0.400000 +779 634 0.400000 +779 660 0.400000 +779 662 0.400000 +779 701 0.400000 +779 717 0.400000 +779 719 0.400000 +779 801 0.400000 +779 818 0.400000 +779 924 0.400000 +779 925 0.400000 +779 1017 0.400000 +779 1131 0.400000 +779 1146 0.400000 +779 1332 0.400000 +779 1558 0.400000 +779 1559 0.400000 +779 1561 0.400000 +779 1719 0.400000 +779 1733 0.400000 +779 1772 0.400000 +779 1819 0.400000 +779 1862 0.400000 +779 1872 0.400000 +779 1915 0.400000 +779 1985 0.400000 +779 2019 0.400000 +779 2070 0.400000 +779 2091 0.400000 +779 2097 0.400000 +779 2104 0.400000 +779 2123 0.400000 +779 2208 0.400000 +779 2247 0.400000 +779 2313 0.400000 +779 2318 0.400000 +779 2321 0.400000 +779 2339 0.400000 +779 2367 0.400000 +779 2416 0.400000 +779 2480 0.400000 +779 2605 0.400000 +779 2671 0.400000 +779 2710 0.400000 +779 2787 0.400000 +779 2870 0.400000 +779 2888 0.400000 +779 2914 0.400000 +779 2947 0.400000 +779 2956 0.400000 +779 3011 0.400000 +779 3045 0.400000 +779 3080 0.400000 +779 3086 0.400000 +779 3155 0.400000 +779 3191 0.400000 +780 33 0.400000 +780 34 0.400000 +780 47 0.400000 +780 177 0.400000 +780 232 0.400000 +780 281 0.400000 +780 294 0.400000 +780 297 0.400000 +780 306 0.400000 +780 434 0.400000 +780 456 0.400000 +780 484 0.400000 +780 488 0.400000 +780 544 0.400000 +780 665 0.400000 +780 802 0.400000 +780 803 0.400000 +780 853 0.400000 +780 885 0.400000 +780 887 0.400000 +780 900 0.400000 +780 947 0.400000 +780 961 0.400000 +780 1056 0.400000 +780 1107 0.400000 +780 1170 0.400000 +780 1192 0.400000 +780 1358 0.400000 +780 1403 0.400000 +780 1539 0.400000 +780 1559 0.400000 +780 1588 0.400000 +780 1589 0.400000 +780 1648 0.400000 +780 1749 0.400000 +780 1751 0.400000 +780 1770 0.400000 +780 1834 0.400000 +780 1859 0.400000 +780 1967 0.400000 +780 1986 0.400000 +780 2013 0.400000 +780 2073 0.400000 +780 2088 0.400000 +780 2221 0.400000 +780 2311 0.400000 +780 2356 0.400000 +780 2386 0.400000 +780 2387 0.400000 +780 2406 0.400000 +780 2439 0.400000 +780 2480 0.400000 +780 2581 0.400000 +780 2632 0.400000 +780 2666 0.400000 +780 2763 0.400000 +780 2791 0.400000 +780 2870 0.400000 +780 2982 0.400000 +780 2992 0.400000 +780 3101 0.400000 +780 3107 0.400000 +780 3163 0.400000 +781 20 0.400000 +781 30 0.400000 +781 69 0.400000 +781 80 0.400000 +781 122 0.400000 +781 128 0.400000 +781 175 0.400000 +781 197 0.400000 +781 205 0.400000 +781 459 0.400000 +781 544 0.400000 +781 551 0.400000 +781 569 0.400000 +781 572 0.400000 +781 582 0.400000 +781 665 0.400000 +781 857 0.400000 +781 871 0.400000 +781 876 0.400000 +781 1077 0.400000 +781 1167 0.400000 +781 1176 0.400000 +781 1230 0.400000 +781 1266 0.400000 +781 1295 0.400000 +781 1439 0.400000 +781 1590 0.400000 +781 1638 0.400000 +781 1647 0.400000 +781 1719 0.400000 +781 1728 0.400000 +781 1740 0.400000 +781 1743 0.400000 +781 1768 0.400000 +781 1849 0.400000 +781 1853 0.400000 +781 1911 0.400000 +781 1978 0.400000 +781 2020 0.400000 +781 2104 0.400000 +781 2119 0.400000 +781 2144 0.400000 +781 2206 0.400000 +781 2251 0.400000 +781 2254 0.400000 +781 2307 0.400000 +781 2329 0.400000 +781 2448 0.400000 +781 2532 0.400000 +781 2538 0.400000 +781 2539 0.400000 +781 2592 0.400000 +781 2658 0.400000 +781 2679 0.400000 +781 2687 0.400000 +781 2757 0.400000 +781 2797 0.400000 +781 2811 0.400000 +781 2931 0.400000 +781 2957 0.400000 +781 3020 0.400000 +781 3044 0.400000 +781 3199 0.400000 +782 21 0.400000 +782 116 0.400000 +782 159 0.400000 +782 177 0.400000 +782 187 0.400000 +782 280 0.400000 +782 285 0.400000 +782 392 0.400000 +782 537 0.400000 +782 702 0.400000 +782 799 0.400000 +782 841 0.400000 +782 970 0.400000 +782 1034 0.400000 +782 1076 0.400000 +782 1093 0.400000 +782 1165 0.400000 +782 1172 0.400000 +782 1184 0.400000 +782 1308 0.400000 +782 1326 0.400000 +782 1366 0.400000 +782 1474 0.400000 +782 1522 0.400000 +782 1569 0.400000 +782 1643 0.400000 +782 1663 0.400000 +782 1813 0.400000 +782 1832 0.400000 +782 1856 0.400000 +782 1967 0.400000 +782 1975 0.400000 +782 2019 0.400000 +782 2029 0.400000 +782 2050 0.400000 +782 2103 0.400000 +782 2144 0.400000 +782 2201 0.400000 +782 2214 0.400000 +782 2228 0.400000 +782 2394 0.400000 +782 2401 0.400000 +782 2491 0.400000 +782 2591 0.400000 +782 2733 0.400000 +782 2769 0.400000 +782 2826 0.400000 +782 2881 0.400000 +782 2965 0.400000 +782 3038 0.400000 +782 3058 0.400000 +782 3095 0.400000 +782 3101 0.400000 +782 3170 0.400000 +783 78 0.400000 +783 84 0.400000 +783 131 0.400000 +783 205 0.400000 +783 216 0.400000 +783 222 0.400000 +783 272 0.400000 +783 363 0.400000 +783 375 0.400000 +783 383 0.400000 +783 416 0.400000 +783 520 0.400000 +783 576 0.400000 +783 651 0.400000 +783 653 0.400000 +783 667 0.400000 +783 671 0.400000 +783 692 0.400000 +783 830 0.400000 +783 916 0.400000 +783 940 0.400000 +783 971 0.400000 +783 1009 0.400000 +783 1080 0.400000 +783 1210 0.400000 +783 1217 0.400000 +783 1221 0.400000 +783 1224 0.400000 +783 1328 0.400000 +783 1365 0.400000 +783 1390 0.400000 +783 1417 0.400000 +783 1450 0.400000 +783 1683 0.400000 +783 1746 0.400000 +783 1752 0.400000 +783 1762 0.400000 +783 1936 0.400000 +783 2080 0.400000 +783 2107 0.400000 +783 2121 0.400000 +783 2179 0.400000 +783 2190 0.400000 +783 2210 0.400000 +783 2250 0.400000 +783 2271 0.400000 +783 2279 0.400000 +783 2411 0.400000 +783 2481 0.400000 +783 2531 0.400000 +783 2619 0.400000 +783 2650 0.400000 +783 2766 0.400000 +783 2813 0.400000 +783 2853 0.400000 +783 2862 0.400000 +783 2883 0.400000 +783 2905 0.400000 +783 3095 0.400000 +784 9 0.400000 +784 21 0.400000 +784 45 0.400000 +784 57 0.400000 +784 63 0.400000 +784 140 0.400000 +784 143 0.400000 +784 182 0.400000 +784 344 0.400000 +784 432 0.400000 +784 508 0.400000 +784 552 0.400000 +784 671 0.400000 +784 710 0.400000 +784 715 0.400000 +784 734 0.400000 +784 762 0.400000 +784 785 0.400000 +784 817 0.400000 +784 849 0.400000 +784 904 0.400000 +784 923 0.400000 +784 965 0.400000 +784 992 0.400000 +784 1030 0.400000 +784 1057 0.400000 +784 1070 0.400000 +784 1076 0.400000 +784 1089 0.400000 +784 1098 0.400000 +784 1143 0.400000 +784 1144 0.400000 +784 1226 0.400000 +784 1370 0.400000 +784 1547 0.400000 +784 1594 0.400000 +784 1715 0.400000 +784 1744 0.400000 +784 1771 0.400000 +784 1775 0.400000 +784 2004 0.400000 +784 2089 0.400000 +784 2102 0.400000 +784 2126 0.400000 +784 2152 0.400000 +784 2307 0.400000 +784 2434 0.400000 +784 2487 0.400000 +784 2592 0.400000 +784 2626 0.400000 +784 2745 0.400000 +784 2784 0.400000 +784 2798 0.400000 +784 2819 0.400000 +784 2824 0.400000 +784 2888 0.400000 +784 2915 0.400000 +784 2972 0.400000 +784 2993 0.400000 +784 3010 0.400000 +784 3059 0.400000 +784 3076 0.400000 +784 3126 0.400000 +784 3131 0.400000 +785 21 0.400000 +785 44 0.400000 +785 79 0.400000 +785 105 0.400000 +785 159 0.400000 +785 162 0.400000 +785 166 0.400000 +785 170 0.400000 +785 245 0.400000 +785 340 0.400000 +785 372 0.400000 +785 426 0.400000 +785 481 0.400000 +785 513 0.400000 +785 530 0.400000 +785 609 0.400000 +785 632 0.400000 +785 700 0.400000 +785 724 0.400000 +785 847 0.400000 +785 859 0.400000 +785 860 0.400000 +785 911 0.400000 +785 946 0.400000 +785 1146 0.400000 +785 1206 0.400000 +785 1274 0.400000 +785 1419 0.400000 +785 1445 0.400000 +785 1463 0.400000 +785 1552 0.400000 +785 1576 0.400000 +785 1595 0.400000 +785 1639 0.400000 +785 1641 0.400000 +785 1693 0.400000 +785 1777 0.400000 +785 1828 0.400000 +785 1917 0.400000 +785 2126 0.400000 +785 2159 0.400000 +785 2217 0.400000 +785 2248 0.400000 +785 2256 0.400000 +785 2297 0.400000 +785 2354 0.400000 +785 2356 0.400000 +785 2370 0.400000 +785 2382 0.400000 +785 2401 0.400000 +785 2579 0.400000 +785 2660 0.400000 +785 2758 0.400000 +785 2868 0.400000 +785 2883 0.400000 +785 2887 0.400000 +785 2990 0.400000 +785 3015 0.400000 +785 3030 0.400000 +785 3064 0.400000 +785 3066 0.400000 +785 3072 0.400000 +785 3186 0.400000 +786 7 0.400000 +786 122 0.400000 +786 124 0.400000 +786 241 0.400000 +786 250 0.400000 +786 268 0.400000 +786 306 0.400000 +786 329 0.400000 +786 341 0.400000 +786 357 0.400000 +786 447 0.400000 +786 522 0.400000 +786 535 0.400000 +786 656 0.400000 +786 688 0.400000 +786 712 0.400000 +786 777 0.400000 +786 818 0.400000 +786 875 0.400000 +786 902 0.400000 +786 922 0.400000 +786 930 0.400000 +786 933 0.400000 +786 962 0.400000 +786 1181 0.400000 +786 1189 0.400000 +786 1215 0.400000 +786 1315 0.400000 +786 1362 0.400000 +786 1379 0.400000 +786 1454 0.400000 +786 1521 0.400000 +786 1620 0.400000 +786 1703 0.400000 +786 1770 0.400000 +786 1782 0.400000 +786 1784 0.400000 +786 1792 0.400000 +786 1803 0.400000 +786 1836 0.400000 +786 1848 0.400000 +786 1859 0.400000 +786 1875 0.400000 +786 1903 0.400000 +786 1915 0.400000 +786 2140 0.400000 +786 2148 0.400000 +786 2159 0.400000 +786 2292 0.400000 +786 2396 0.400000 +786 2424 0.400000 +786 2430 0.400000 +786 2445 0.400000 +786 2471 0.400000 +786 2490 0.400000 +786 2536 0.400000 +786 2537 0.400000 +786 2676 0.400000 +786 2690 0.400000 +786 2736 0.400000 +786 2749 0.400000 +786 2766 0.400000 +786 2780 0.400000 +786 2781 0.400000 +786 2834 0.400000 +786 3083 0.400000 +786 3148 0.400000 +786 3184 0.400000 +786 3198 0.400000 +787 5 0.400000 +787 60 0.400000 +787 107 0.400000 +787 116 0.400000 +787 145 0.400000 +787 156 0.400000 +787 164 0.400000 +787 185 0.400000 +787 297 0.400000 +787 333 0.400000 +787 358 0.400000 +787 656 0.400000 +787 768 0.400000 +787 799 0.400000 +787 919 0.400000 +787 945 0.400000 +787 949 0.400000 +787 966 0.400000 +787 1012 0.400000 +787 1063 0.400000 +787 1111 0.400000 +787 1144 0.400000 +787 1190 0.400000 +787 1195 0.400000 +787 1224 0.400000 +787 1226 0.400000 +787 1228 0.400000 +787 1240 0.400000 +787 1242 0.400000 +787 1398 0.400000 +787 1477 0.400000 +787 1483 0.400000 +787 1566 0.400000 +787 1602 0.400000 +787 1604 0.400000 +787 1638 0.400000 +787 1671 0.400000 +787 1672 0.400000 +787 1693 0.400000 +787 1696 0.400000 +787 1730 0.400000 +787 1855 0.400000 +787 1958 0.400000 +787 1987 0.400000 +787 2050 0.400000 +787 2156 0.400000 +787 2166 0.400000 +787 2169 0.400000 +787 2202 0.400000 +787 2268 0.400000 +787 2469 0.400000 +787 2484 0.400000 +787 2488 0.400000 +787 2563 0.400000 +787 2567 0.400000 +787 2623 0.400000 +787 2696 0.400000 +787 2777 0.400000 +787 2778 0.400000 +787 2818 0.400000 +787 2822 0.400000 +787 2874 0.400000 +787 2881 0.400000 +787 2962 0.400000 +787 3004 0.400000 +787 3094 0.400000 +787 3199 0.400000 +788 86 0.400000 +788 101 0.400000 +788 140 0.400000 +788 152 0.400000 +788 217 0.400000 +788 233 0.400000 +788 293 0.400000 +788 404 0.400000 +788 429 0.400000 +788 452 0.400000 +788 465 0.400000 +788 505 0.400000 +788 540 0.400000 +788 593 0.400000 +788 740 0.400000 +788 841 0.400000 +788 919 0.400000 +788 1008 0.400000 +788 1035 0.400000 +788 1059 0.400000 +788 1090 0.400000 +788 1124 0.400000 +788 1193 0.400000 +788 1198 0.400000 +788 1222 0.400000 +788 1224 0.400000 +788 1239 0.400000 +788 1240 0.400000 +788 1320 0.400000 +788 1425 0.400000 +788 1433 0.400000 +788 1437 0.400000 +788 1532 0.400000 +788 1560 0.400000 +788 1565 0.400000 +788 1570 0.400000 +788 1700 0.400000 +788 1703 0.400000 +788 1754 0.400000 +788 1792 0.400000 +788 1793 0.400000 +788 1859 0.400000 +788 1873 0.400000 +788 1996 0.400000 +788 2002 0.400000 +788 2068 0.400000 +788 2147 0.400000 +788 2171 0.400000 +788 2418 0.400000 +788 2558 0.400000 +788 2605 0.400000 +788 2661 0.400000 +788 2708 0.400000 +788 2764 0.400000 +788 2776 0.400000 +788 2828 0.400000 +788 2928 0.400000 +788 2951 0.400000 +788 3041 0.400000 +788 3046 0.400000 +788 3079 0.400000 +788 3093 0.400000 +788 3118 0.400000 +788 3198 0.400000 +789 89 0.400000 +789 107 0.400000 +789 110 0.400000 +789 174 0.400000 +789 270 0.400000 +789 352 0.400000 +789 393 0.400000 +789 552 0.400000 +789 610 0.400000 +789 636 0.400000 +789 752 0.400000 +789 979 0.400000 +789 1005 0.400000 +789 1088 0.400000 +789 1137 0.400000 +789 1176 0.400000 +789 1215 0.400000 +789 1392 0.400000 +789 1432 0.400000 +789 1449 0.400000 +789 1450 0.400000 +789 1552 0.400000 +789 1561 0.400000 +789 1688 0.400000 +789 1707 0.400000 +789 1714 0.400000 +789 1751 0.400000 +789 1764 0.400000 +789 1770 0.400000 +789 1781 0.400000 +789 1824 0.400000 +789 1844 0.400000 +789 1923 0.400000 +789 1954 0.400000 +789 1995 0.400000 +789 2081 0.400000 +789 2091 0.400000 +789 2221 0.400000 +789 2249 0.400000 +789 2275 0.400000 +789 2340 0.400000 +789 2356 0.400000 +789 2374 0.400000 +789 2508 0.400000 +789 2531 0.400000 +789 2608 0.400000 +789 2610 0.400000 +789 2637 0.400000 +789 2678 0.400000 +789 2725 0.400000 +789 2864 0.400000 +789 2894 0.400000 +789 2938 0.400000 +789 2946 0.400000 +789 2956 0.400000 +789 2994 0.400000 +789 2996 0.400000 +789 3017 0.400000 +789 3031 0.400000 +789 3033 0.400000 +789 3077 0.400000 +789 3106 0.400000 +790 4 0.400000 +790 68 0.400000 +790 252 0.400000 +790 283 0.400000 +790 302 0.400000 +790 312 0.400000 +790 324 0.400000 +790 346 0.400000 +790 381 0.400000 +790 438 0.400000 +790 457 0.400000 +790 487 0.400000 +790 530 0.400000 +790 554 0.400000 +790 578 0.400000 +790 584 0.400000 +790 614 0.400000 +790 677 0.400000 +790 751 0.400000 +790 838 0.400000 +790 853 0.400000 +790 861 0.400000 +790 924 0.400000 +790 947 0.400000 +790 994 0.400000 +790 1013 0.400000 +790 1043 0.400000 +790 1055 0.400000 +790 1101 0.400000 +790 1268 0.400000 +790 1451 0.400000 +790 1498 0.400000 +790 1734 0.400000 +790 1845 0.400000 +790 1894 0.400000 +790 1943 0.400000 +790 1961 0.400000 +790 1963 0.400000 +790 2005 0.400000 +790 2006 0.400000 +790 2132 0.400000 +790 2136 0.400000 +790 2235 0.400000 +790 2272 0.400000 +790 2312 0.400000 +790 2346 0.400000 +790 2349 0.400000 +790 2413 0.400000 +790 2451 0.400000 +790 2537 0.400000 +790 2559 0.400000 +790 2630 0.400000 +790 2645 0.400000 +790 2647 0.400000 +790 2831 0.400000 +790 2856 0.400000 +790 2862 0.400000 +790 2999 0.400000 +790 3173 0.400000 +790 3197 0.400000 +791 4 0.400000 +791 14 0.400000 +791 58 0.400000 +791 103 0.400000 +791 143 0.400000 +791 196 0.400000 +791 348 0.400000 +791 381 0.400000 +791 394 0.400000 +791 415 0.400000 +791 500 0.400000 +791 512 0.400000 +791 543 0.400000 +791 581 0.400000 +791 606 0.400000 +791 609 0.400000 +791 648 0.400000 +791 663 0.400000 +791 700 0.400000 +791 751 0.400000 +791 811 0.400000 +791 816 0.400000 +791 850 0.400000 +791 940 0.400000 +791 953 0.400000 +791 962 0.400000 +791 980 0.400000 +791 1129 0.400000 +791 1190 0.400000 +791 1203 0.400000 +791 1220 0.400000 +791 1249 0.400000 +791 1262 0.400000 +791 1380 0.400000 +791 1438 0.400000 +791 1594 0.400000 +791 1642 0.400000 +791 1645 0.400000 +791 1698 0.400000 +791 1724 0.400000 +791 1750 0.400000 +791 1770 0.400000 +791 1867 0.400000 +791 1876 0.400000 +791 1977 0.400000 +791 2097 0.400000 +791 2107 0.400000 +791 2216 0.400000 +791 2267 0.400000 +791 2284 0.400000 +791 2366 0.400000 +791 2448 0.400000 +791 2499 0.400000 +791 2559 0.400000 +791 2587 0.400000 +791 2602 0.400000 +791 2612 0.400000 +791 2613 0.400000 +791 2620 0.400000 +791 2886 0.400000 +791 2894 0.400000 +791 3017 0.400000 +791 3089 0.400000 +791 3093 0.400000 +792 15 0.400000 +792 33 0.400000 +792 121 0.400000 +792 142 0.400000 +792 178 0.400000 +792 197 0.400000 +792 211 0.400000 +792 320 0.400000 +792 411 0.400000 +792 468 0.400000 +792 491 0.400000 +792 492 0.400000 +792 496 0.400000 +792 511 0.400000 +792 677 0.400000 +792 760 0.400000 +792 800 0.400000 +792 860 0.400000 +792 889 0.400000 +792 994 0.400000 +792 1053 0.400000 +792 1176 0.400000 +792 1182 0.400000 +792 1242 0.400000 +792 1379 0.400000 +792 1484 0.400000 +792 1538 0.400000 +792 1633 0.400000 +792 1656 0.400000 +792 1674 0.400000 +792 1720 0.400000 +792 1745 0.400000 +792 1841 0.400000 +792 1860 0.400000 +792 1902 0.400000 +792 1974 0.400000 +792 2046 0.400000 +792 2158 0.400000 +792 2173 0.400000 +792 2247 0.400000 +792 2259 0.400000 +792 2276 0.400000 +792 2302 0.400000 +792 2319 0.400000 +792 2409 0.400000 +792 2433 0.400000 +792 2436 0.400000 +792 2718 0.400000 +792 2728 0.400000 +792 2753 0.400000 +792 2800 0.400000 +792 2813 0.400000 +792 2856 0.400000 +792 2905 0.400000 +792 3013 0.400000 +792 3032 0.400000 +792 3043 0.400000 +792 3058 0.400000 +792 3063 0.400000 +792 3082 0.400000 +792 3108 0.400000 +792 3120 0.400000 +792 3127 0.400000 +792 3190 0.400000 +793 11 0.400000 +793 66 0.400000 +793 86 0.400000 +793 100 0.400000 +793 107 0.400000 +793 187 0.400000 +793 253 0.400000 +793 265 0.400000 +793 272 0.400000 +793 283 0.400000 +793 424 0.400000 +793 438 0.400000 +793 500 0.400000 +793 520 0.400000 +793 569 0.400000 +793 699 0.400000 +793 718 0.400000 +793 793 0.400000 +793 857 0.400000 +793 881 0.400000 +793 904 0.400000 +793 927 0.400000 +793 945 0.400000 +793 999 0.400000 +793 1003 0.400000 +793 1041 0.400000 +793 1159 0.400000 +793 1245 0.400000 +793 1270 0.400000 +793 1287 0.400000 +793 1319 0.400000 +793 1365 0.400000 +793 1454 0.400000 +793 1532 0.400000 +793 1535 0.400000 +793 1635 0.400000 +793 1653 0.400000 +793 1714 0.400000 +793 1727 0.400000 +793 1780 0.400000 +793 1887 0.400000 +793 1964 0.400000 +793 2012 0.400000 +793 2057 0.400000 +793 2144 0.400000 +793 2178 0.400000 +793 2187 0.400000 +793 2209 0.400000 +793 2216 0.400000 +793 2218 0.400000 +793 2373 0.400000 +793 2376 0.400000 +793 2398 0.400000 +793 2446 0.400000 +793 2508 0.400000 +793 2509 0.400000 +793 2555 0.400000 +793 2595 0.400000 +793 2632 0.400000 +793 2722 0.400000 +793 2761 0.400000 +793 2782 0.400000 +793 2885 0.400000 +793 2900 0.400000 +793 3029 0.400000 +793 3090 0.400000 +794 85 0.400000 +794 144 0.400000 +794 199 0.400000 +794 237 0.400000 +794 288 0.400000 +794 570 0.400000 +794 578 0.400000 +794 618 0.400000 +794 676 0.400000 +794 781 0.400000 +794 795 0.400000 +794 857 0.400000 +794 916 0.400000 +794 962 0.400000 +794 1021 0.400000 +794 1057 0.400000 +794 1062 0.400000 +794 1104 0.400000 +794 1131 0.400000 +794 1143 0.400000 +794 1171 0.400000 +794 1179 0.400000 +794 1211 0.400000 +794 1219 0.400000 +794 1426 0.400000 +794 1434 0.400000 +794 1437 0.400000 +794 1481 0.400000 +794 1575 0.400000 +794 1602 0.400000 +794 1652 0.400000 +794 1718 0.400000 +794 1721 0.400000 +794 1733 0.400000 +794 1752 0.400000 +794 1800 0.400000 +794 1810 0.400000 +794 1894 0.400000 +794 2109 0.400000 +794 2196 0.400000 +794 2203 0.400000 +794 2223 0.400000 +794 2249 0.400000 +794 2260 0.400000 +794 2269 0.400000 +794 2317 0.400000 +794 2344 0.400000 +794 2358 0.400000 +794 2469 0.400000 +794 2566 0.400000 +794 2672 0.400000 +794 2724 0.400000 +794 2769 0.400000 +794 2788 0.400000 +794 2840 0.400000 +794 2853 0.400000 +794 2864 0.400000 +794 2876 0.400000 +794 2886 0.400000 +794 2998 0.400000 +794 3111 0.400000 +795 33 0.400000 +795 81 0.400000 +795 122 0.400000 +795 298 0.400000 +795 389 0.400000 +795 410 0.400000 +795 459 0.400000 +795 460 0.400000 +795 495 0.400000 +795 543 0.400000 +795 592 0.400000 +795 599 0.400000 +795 629 0.400000 +795 819 0.400000 +795 993 0.400000 +795 1053 0.400000 +795 1119 0.400000 +795 1129 0.400000 +795 1169 0.400000 +795 1194 0.400000 +795 1253 0.400000 +795 1271 0.400000 +795 1385 0.400000 +795 1432 0.400000 +795 1492 0.400000 +795 1527 0.400000 +795 1547 0.400000 +795 1627 0.400000 +795 1646 0.400000 +795 1648 0.400000 +795 1651 0.400000 +795 1657 0.400000 +795 1800 0.400000 +795 1821 0.400000 +795 1956 0.400000 +795 2032 0.400000 +795 2095 0.400000 +795 2119 0.400000 +795 2183 0.400000 +795 2188 0.400000 +795 2295 0.400000 +795 2321 0.400000 +795 2385 0.400000 +795 2417 0.400000 +795 2473 0.400000 +795 2487 0.400000 +795 2620 0.400000 +795 2728 0.400000 +795 2853 0.400000 +795 3195 0.400000 +796 101 0.400000 +796 114 0.400000 +796 119 0.400000 +796 312 0.400000 +796 346 0.400000 +796 347 0.400000 +796 391 0.400000 +796 492 0.400000 +796 524 0.400000 +796 562 0.400000 +796 580 0.400000 +796 687 0.400000 +796 706 0.400000 +796 768 0.400000 +796 913 0.400000 +796 918 0.400000 +796 947 0.400000 +796 950 0.400000 +796 981 0.400000 +796 1102 0.400000 +796 1187 0.400000 +796 1188 0.400000 +796 1233 0.400000 +796 1242 0.400000 +796 1492 0.400000 +796 1505 0.400000 +796 1558 0.400000 +796 1657 0.400000 +796 1683 0.400000 +796 1700 0.400000 +796 1710 0.400000 +796 1828 0.400000 +796 1866 0.400000 +796 1889 0.400000 +796 1964 0.400000 +796 2109 0.400000 +796 2132 0.400000 +796 2155 0.400000 +796 2244 0.400000 +796 2273 0.400000 +796 2277 0.400000 +796 2453 0.400000 +796 2595 0.400000 +796 2642 0.400000 +796 2756 0.400000 +796 2759 0.400000 +796 2898 0.400000 +796 2901 0.400000 +796 2952 0.400000 +796 2954 0.400000 +796 2956 0.400000 +796 2965 0.400000 +796 3008 0.400000 +796 3083 0.400000 +796 3097 0.400000 +797 76 0.400000 +797 154 0.400000 +797 180 0.400000 +797 317 0.400000 +797 337 0.400000 +797 359 0.400000 +797 406 0.400000 +797 438 0.400000 +797 493 0.400000 +797 590 0.400000 +797 618 0.400000 +797 664 0.400000 +797 772 0.400000 +797 811 0.400000 +797 1013 0.400000 +797 1098 0.400000 +797 1122 0.400000 +797 1161 0.400000 +797 1169 0.400000 +797 1307 0.400000 +797 1328 0.400000 +797 1330 0.400000 +797 1342 0.400000 +797 1374 0.400000 +797 1399 0.400000 +797 1450 0.400000 +797 1453 0.400000 +797 1501 0.400000 +797 1526 0.400000 +797 1609 0.400000 +797 1632 0.400000 +797 1649 0.400000 +797 1688 0.400000 +797 1692 0.400000 +797 1749 0.400000 +797 1798 0.400000 +797 1848 0.400000 +797 1981 0.400000 +797 2026 0.400000 +797 2057 0.400000 +797 2116 0.400000 +797 2167 0.400000 +797 2168 0.400000 +797 2181 0.400000 +797 2209 0.400000 +797 2299 0.400000 +797 2429 0.400000 +797 2436 0.400000 +797 2452 0.400000 +797 2491 0.400000 +797 2496 0.400000 +797 2560 0.400000 +797 2626 0.400000 +797 2645 0.400000 +797 2669 0.400000 +797 2721 0.400000 +797 2834 0.400000 +797 2874 0.400000 +797 2895 0.400000 +797 2896 0.400000 +797 3175 0.400000 +797 3183 0.400000 +797 3190 0.400000 +798 21 0.400000 +798 82 0.400000 +798 194 0.400000 +798 205 0.400000 +798 245 0.400000 +798 279 0.400000 +798 311 0.400000 +798 333 0.400000 +798 388 0.400000 +798 397 0.400000 +798 421 0.400000 +798 424 0.400000 +798 431 0.400000 +798 597 0.400000 +798 616 0.400000 +798 654 0.400000 +798 696 0.400000 +798 701 0.400000 +798 715 0.400000 +798 766 0.400000 +798 938 0.400000 +798 965 0.400000 +798 1162 0.400000 +798 1224 0.400000 +798 1240 0.400000 +798 1252 0.400000 +798 1297 0.400000 +798 1331 0.400000 +798 1379 0.400000 +798 1395 0.400000 +798 1457 0.400000 +798 1512 0.400000 +798 1670 0.400000 +798 1700 0.400000 +798 1704 0.400000 +798 1734 0.400000 +798 1749 0.400000 +798 1756 0.400000 +798 1801 0.400000 +798 1834 0.400000 +798 1876 0.400000 +798 1885 0.400000 +798 1889 0.400000 +798 2115 0.400000 +798 2117 0.400000 +798 2171 0.400000 +798 2206 0.400000 +798 2279 0.400000 +798 2285 0.400000 +798 2309 0.400000 +798 2370 0.400000 +798 2455 0.400000 +798 2502 0.400000 +798 2562 0.400000 +798 2582 0.400000 +798 2665 0.400000 +798 2726 0.400000 +798 2894 0.400000 +798 3056 0.400000 +798 3076 0.400000 +798 3114 0.400000 +798 3154 0.400000 +799 56 0.400000 +799 66 0.400000 +799 80 0.400000 +799 188 0.400000 +799 199 0.400000 +799 255 0.400000 +799 304 0.400000 +799 406 0.400000 +799 578 0.400000 +799 615 0.400000 +799 665 0.400000 +799 669 0.400000 +799 693 0.400000 +799 723 0.400000 +799 748 0.400000 +799 762 0.400000 +799 774 0.400000 +799 786 0.400000 +799 807 0.400000 +799 815 0.400000 +799 818 0.400000 +799 957 0.400000 +799 1063 0.400000 +799 1091 0.400000 +799 1256 0.400000 +799 1304 0.400000 +799 1315 0.400000 +799 1340 0.400000 +799 1369 0.400000 +799 1396 0.400000 +799 1480 0.400000 +799 1559 0.400000 +799 1569 0.400000 +799 1625 0.400000 +799 1708 0.400000 +799 1768 0.400000 +799 1790 0.400000 +799 1806 0.400000 +799 1828 0.400000 +799 1928 0.400000 +799 1995 0.400000 +799 2004 0.400000 +799 2028 0.400000 +799 2230 0.400000 +799 2239 0.400000 +799 2247 0.400000 +799 2281 0.400000 +799 2300 0.400000 +799 2318 0.400000 +799 2381 0.400000 +799 2416 0.400000 +799 2436 0.400000 +799 2554 0.400000 +799 2591 0.400000 +799 2709 0.400000 +799 2757 0.400000 +799 2788 0.400000 +799 2804 0.400000 +799 2873 0.400000 +799 2924 0.400000 +799 2949 0.400000 +799 3068 0.400000 +800 82 0.400000 +800 106 0.400000 +800 117 0.400000 +800 121 0.400000 +800 174 0.400000 +800 187 0.400000 +800 236 0.400000 +800 238 0.400000 +800 324 0.400000 +800 373 0.400000 +800 386 0.400000 +800 416 0.400000 +800 434 0.400000 +800 591 0.400000 +800 607 0.400000 +800 626 0.400000 +800 640 0.400000 +800 821 0.400000 +800 840 0.400000 +800 847 0.400000 +800 936 0.400000 +800 1027 0.400000 +800 1076 0.400000 +800 1143 0.400000 +800 1169 0.400000 +800 1222 0.400000 +800 1251 0.400000 +800 1263 0.400000 +800 1296 0.400000 +800 1313 0.400000 +800 1316 0.400000 +800 1351 0.400000 +800 1357 0.400000 +800 1406 0.400000 +800 1478 0.400000 +800 1525 0.400000 +800 1552 0.400000 +800 1619 0.400000 +800 1622 0.400000 +800 1697 0.400000 +800 1735 0.400000 +800 1769 0.400000 +800 1828 0.400000 +800 1895 0.400000 +800 1940 0.400000 +800 1943 0.400000 +800 1980 0.400000 +800 2006 0.400000 +800 2030 0.400000 +800 2055 0.400000 +800 2078 0.400000 +800 2093 0.400000 +800 2124 0.400000 +800 2133 0.400000 +800 2329 0.400000 +800 2336 0.400000 +800 2473 0.400000 +800 2580 0.400000 +800 2656 0.400000 +800 2756 0.400000 +800 2764 0.400000 +800 2801 0.400000 +800 2894 0.400000 +800 2939 0.400000 +800 2987 0.400000 +800 3018 0.400000 +800 3027 0.400000 +800 3029 0.400000 +800 3141 0.400000 +801 6 0.400000 +801 32 0.400000 +801 43 0.400000 +801 74 0.400000 +801 116 0.400000 +801 166 0.400000 +801 173 0.400000 +801 178 0.400000 +801 277 0.400000 +801 366 0.400000 +801 428 0.400000 +801 460 0.400000 +801 461 0.400000 +801 494 0.400000 +801 549 0.400000 +801 628 0.400000 +801 651 0.400000 +801 667 0.400000 +801 669 0.400000 +801 751 0.400000 +801 772 0.400000 +801 802 0.400000 +801 824 0.400000 +801 850 0.400000 +801 927 0.400000 +801 958 0.400000 +801 1096 0.400000 +801 1100 0.400000 +801 1241 0.400000 +801 1292 0.400000 +801 1296 0.400000 +801 1298 0.400000 +801 1325 0.400000 +801 1327 0.400000 +801 1338 0.400000 +801 1362 0.400000 +801 1381 0.400000 +801 1511 0.400000 +801 1539 0.400000 +801 1614 0.400000 +801 1620 0.400000 +801 1663 0.400000 +801 1669 0.400000 +801 1686 0.400000 +801 1725 0.400000 +801 1758 0.400000 +801 1771 0.400000 +801 1795 0.400000 +801 1824 0.400000 +801 1830 0.400000 +801 1919 0.400000 +801 1949 0.400000 +801 1969 0.400000 +801 1993 0.400000 +801 2042 0.400000 +801 2058 0.400000 +801 2070 0.400000 +801 2101 0.400000 +801 2123 0.400000 +801 2128 0.400000 +801 2142 0.400000 +801 2228 0.400000 +801 2230 0.400000 +801 2242 0.400000 +801 2270 0.400000 +801 2331 0.400000 +801 2382 0.400000 +801 2404 0.400000 +801 2425 0.400000 +801 2438 0.400000 +801 2456 0.400000 +801 2515 0.400000 +801 2516 0.400000 +801 2521 0.400000 +801 2601 0.400000 +801 2643 0.400000 +801 2659 0.400000 +801 2737 0.400000 +801 2761 0.400000 +801 2834 0.400000 +801 2910 0.400000 +801 2997 0.400000 +801 3079 0.400000 +801 3115 0.400000 +801 3182 0.400000 +802 23 0.400000 +802 48 0.400000 +802 50 0.400000 +802 78 0.400000 +802 110 0.400000 +802 137 0.400000 +802 166 0.400000 +802 363 0.400000 +802 449 0.400000 +802 583 0.400000 +802 591 0.400000 +802 693 0.400000 +802 720 0.400000 +802 752 0.400000 +802 765 0.400000 +802 803 0.400000 +802 852 0.400000 +802 902 0.400000 +802 905 0.400000 +802 1053 0.400000 +802 1067 0.400000 +802 1083 0.400000 +802 1102 0.400000 +802 1118 0.400000 +802 1284 0.400000 +802 1287 0.400000 +802 1317 0.400000 +802 1318 0.400000 +802 1330 0.400000 +802 1421 0.400000 +802 1487 0.400000 +802 1494 0.400000 +802 1578 0.400000 +802 1641 0.400000 +802 1648 0.400000 +802 1882 0.400000 +802 1978 0.400000 +802 2000 0.400000 +802 2005 0.400000 +802 2052 0.400000 +802 2061 0.400000 +802 2143 0.400000 +802 2152 0.400000 +802 2200 0.400000 +802 2224 0.400000 +802 2238 0.400000 +802 2273 0.400000 +802 2449 0.400000 +802 2451 0.400000 +802 2498 0.400000 +802 2547 0.400000 +802 2572 0.400000 +802 2581 0.400000 +802 2596 0.400000 +802 2700 0.400000 +802 2703 0.400000 +802 2827 0.400000 +802 3010 0.400000 +802 3023 0.400000 +802 3083 0.400000 +802 3104 0.400000 +802 3105 0.400000 +802 3123 0.400000 +803 143 0.400000 +803 194 0.400000 +803 237 0.400000 +803 292 0.400000 +803 314 0.400000 +803 427 0.400000 +803 432 0.400000 +803 689 0.400000 +803 758 0.400000 +803 791 0.400000 +803 819 0.400000 +803 856 0.400000 +803 866 0.400000 +803 871 0.400000 +803 972 0.400000 +803 979 0.400000 +803 988 0.400000 +803 1002 0.400000 +803 1064 0.400000 +803 1209 0.400000 +803 1268 0.400000 +803 1269 0.400000 +803 1303 0.400000 +803 1330 0.400000 +803 1339 0.400000 +803 1341 0.400000 +803 1402 0.400000 +803 1469 0.400000 +803 1489 0.400000 +803 1511 0.400000 +803 1522 0.400000 +803 1539 0.400000 +803 1559 0.400000 +803 1578 0.400000 +803 1655 0.400000 +803 1818 0.400000 +803 1863 0.400000 +803 1919 0.400000 +803 1921 0.400000 +803 1971 0.400000 +803 2037 0.400000 +803 2042 0.400000 +803 2084 0.400000 +803 2267 0.400000 +803 2307 0.400000 +803 2379 0.400000 +803 2396 0.400000 +803 2558 0.400000 +803 2606 0.400000 +803 2613 0.400000 +803 2614 0.400000 +803 2637 0.400000 +803 2671 0.400000 +803 2678 0.400000 +803 2691 0.400000 +803 2693 0.400000 +803 2729 0.400000 +803 2766 0.400000 +803 2850 0.400000 +803 2930 0.400000 +803 2985 0.400000 +803 3074 0.400000 +803 3082 0.400000 +803 3084 0.400000 +803 3114 0.400000 +804 38 0.400000 +804 57 0.400000 +804 84 0.400000 +804 135 0.400000 +804 151 0.400000 +804 164 0.400000 +804 207 0.400000 +804 328 0.400000 +804 369 0.400000 +804 401 0.400000 +804 425 0.400000 +804 499 0.400000 +804 549 0.400000 +804 571 0.400000 +804 647 0.400000 +804 715 0.400000 +804 765 0.400000 +804 862 0.400000 +804 863 0.400000 +804 872 0.400000 +804 876 0.400000 +804 1104 0.400000 +804 1139 0.400000 +804 1166 0.400000 +804 1179 0.400000 +804 1295 0.400000 +804 1328 0.400000 +804 1349 0.400000 +804 1443 0.400000 +804 1620 0.400000 +804 1752 0.400000 +804 1904 0.400000 +804 1920 0.400000 +804 1925 0.400000 +804 1948 0.400000 +804 2012 0.400000 +804 2111 0.400000 +804 2157 0.400000 +804 2158 0.400000 +804 2197 0.400000 +804 2214 0.400000 +804 2244 0.400000 +804 2264 0.400000 +804 2279 0.400000 +804 2321 0.400000 +804 2378 0.400000 +804 2393 0.400000 +804 2394 0.400000 +804 2400 0.400000 +804 2415 0.400000 +804 2427 0.400000 +804 2432 0.400000 +804 2434 0.400000 +804 2500 0.400000 +804 2542 0.400000 +804 2549 0.400000 +804 2552 0.400000 +804 2564 0.400000 +804 2578 0.400000 +804 2609 0.400000 +804 2653 0.400000 +804 2696 0.400000 +804 2738 0.400000 +804 2790 0.400000 +804 2795 0.400000 +804 2827 0.400000 +804 3065 0.400000 +804 3115 0.400000 +804 3166 0.400000 +805 11 0.400000 +805 73 0.400000 +805 157 0.400000 +805 181 0.400000 +805 278 0.400000 +805 306 0.400000 +805 390 0.400000 +805 438 0.400000 +805 440 0.400000 +805 464 0.400000 +805 484 0.400000 +805 493 0.400000 +805 506 0.400000 +805 706 0.400000 +805 781 0.400000 +805 807 0.400000 +805 811 0.400000 +805 813 0.400000 +805 887 0.400000 +805 899 0.400000 +805 901 0.400000 +805 970 0.400000 +805 1052 0.400000 +805 1115 0.400000 +805 1134 0.400000 +805 1140 0.400000 +805 1192 0.400000 +805 1303 0.400000 +805 1314 0.400000 +805 1324 0.400000 +805 1374 0.400000 +805 1383 0.400000 +805 1397 0.400000 +805 1424 0.400000 +805 1465 0.400000 +805 1529 0.400000 +805 1555 0.400000 +805 1564 0.400000 +805 1569 0.400000 +805 1585 0.400000 +805 1605 0.400000 +805 1655 0.400000 +805 1738 0.400000 +805 1821 0.400000 +805 1842 0.400000 +805 1883 0.400000 +805 1893 0.400000 +805 1897 0.400000 +805 1938 0.400000 +805 1960 0.400000 +805 1961 0.400000 +805 2030 0.400000 +805 2038 0.400000 +805 2042 0.400000 +805 2068 0.400000 +805 2126 0.400000 +805 2147 0.400000 +805 2188 0.400000 +805 2220 0.400000 +805 2226 0.400000 +805 2246 0.400000 +805 2309 0.400000 +805 2342 0.400000 +805 2397 0.400000 +805 2414 0.400000 +805 2441 0.400000 +805 2596 0.400000 +805 2681 0.400000 +805 2688 0.400000 +805 2695 0.400000 +805 2736 0.400000 +805 2768 0.400000 +805 2780 0.400000 +805 2815 0.400000 +805 2816 0.400000 +805 2893 0.400000 +805 2933 0.400000 +805 3096 0.400000 +806 33 0.400000 +806 69 0.400000 +806 70 0.400000 +806 101 0.400000 +806 237 0.400000 +806 276 0.400000 +806 424 0.400000 +806 441 0.400000 +806 484 0.400000 +806 597 0.400000 +806 661 0.400000 +806 760 0.400000 +806 836 0.400000 +806 879 0.400000 +806 1091 0.400000 +806 1094 0.400000 +806 1178 0.400000 +806 1269 0.400000 +806 1321 0.400000 +806 1421 0.400000 +806 1465 0.400000 +806 1474 0.400000 +806 1501 0.400000 +806 1558 0.400000 +806 1564 0.400000 +806 1576 0.400000 +806 1748 0.400000 +806 1851 0.400000 +806 1967 0.400000 +806 1969 0.400000 +806 2005 0.400000 +806 2011 0.400000 +806 2052 0.400000 +806 2087 0.400000 +806 2136 0.400000 +806 2138 0.400000 +806 2191 0.400000 +806 2226 0.400000 +806 2241 0.400000 +806 2262 0.400000 +806 2282 0.400000 +806 2293 0.400000 +806 2299 0.400000 +806 2348 0.400000 +806 2408 0.400000 +806 2409 0.400000 +806 2490 0.400000 +806 2492 0.400000 +806 2557 0.400000 +806 2745 0.400000 +806 2826 0.400000 +806 2854 0.400000 +806 2875 0.400000 +806 2877 0.400000 +806 2901 0.400000 +806 2911 0.400000 +806 2922 0.400000 +806 2942 0.400000 +806 3071 0.400000 +806 3091 0.400000 +806 3103 0.400000 +806 3125 0.400000 +807 2 0.400000 +807 113 0.400000 +807 171 0.400000 +807 266 0.400000 +807 306 0.400000 +807 335 0.400000 +807 343 0.400000 +807 373 0.400000 +807 393 0.400000 +807 449 0.400000 +807 459 0.400000 +807 478 0.400000 +807 490 0.400000 +807 495 0.400000 +807 501 0.400000 +807 561 0.400000 +807 574 0.400000 +807 576 0.400000 +807 732 0.400000 +807 907 0.400000 +807 978 0.400000 +807 1045 0.400000 +807 1061 0.400000 +807 1066 0.400000 +807 1100 0.400000 +807 1162 0.400000 +807 1209 0.400000 +807 1325 0.400000 +807 1367 0.400000 +807 1414 0.400000 +807 1452 0.400000 +807 1481 0.400000 +807 1547 0.400000 +807 1623 0.400000 +807 1687 0.400000 +807 1746 0.400000 +807 1802 0.400000 +807 1851 0.400000 +807 1853 0.400000 +807 1882 0.400000 +807 1915 0.400000 +807 1939 0.400000 +807 1950 0.400000 +807 2002 0.400000 +807 2022 0.400000 +807 2085 0.400000 +807 2207 0.400000 +807 2333 0.400000 +807 2372 0.400000 +807 2436 0.400000 +807 2445 0.400000 +807 2468 0.400000 +807 2553 0.400000 +807 2572 0.400000 +807 2659 0.400000 +807 2695 0.400000 +807 2697 0.400000 +807 2783 0.400000 +807 2798 0.400000 +807 2869 0.400000 +807 2956 0.400000 +807 2960 0.400000 +807 2965 0.400000 +807 3039 0.400000 +807 3045 0.400000 +807 3143 0.400000 +807 3160 0.400000 +807 3185 0.400000 +808 133 0.400000 +808 159 0.400000 +808 192 0.400000 +808 235 0.400000 +808 318 0.400000 +808 351 0.400000 +808 374 0.400000 +808 430 0.400000 +808 455 0.400000 +808 504 0.400000 +808 512 0.400000 +808 684 0.400000 +808 765 0.400000 +808 788 0.400000 +808 966 0.400000 +808 1066 0.400000 +808 1160 0.400000 +808 1226 0.400000 +808 1546 0.400000 +808 1581 0.400000 +808 1597 0.400000 +808 1625 0.400000 +808 1629 0.400000 +808 1753 0.400000 +808 1756 0.400000 +808 1821 0.400000 +808 1841 0.400000 +808 1935 0.400000 +808 2087 0.400000 +808 2133 0.400000 +808 2214 0.400000 +808 2256 0.400000 +808 2302 0.400000 +808 2330 0.400000 +808 2393 0.400000 +808 2400 0.400000 +808 2503 0.400000 +808 2614 0.400000 +808 2719 0.400000 +808 2727 0.400000 +808 2749 0.400000 +808 2781 0.400000 +808 2802 0.400000 +808 2841 0.400000 +808 2906 0.400000 +808 2921 0.400000 +808 2940 0.400000 +808 3015 0.400000 +808 3025 0.400000 +808 3028 0.400000 +808 3073 0.400000 +808 3079 0.400000 +808 3159 0.400000 +808 3197 0.400000 +809 21 0.400000 +809 41 0.400000 +809 51 0.400000 +809 62 0.400000 +809 102 0.400000 +809 200 0.400000 +809 227 0.400000 +809 278 0.400000 +809 284 0.400000 +809 382 0.400000 +809 462 0.400000 +809 500 0.400000 +809 542 0.400000 +809 543 0.400000 +809 564 0.400000 +809 644 0.400000 +809 673 0.400000 +809 683 0.400000 +809 756 0.400000 +809 817 0.400000 +809 890 0.400000 +809 894 0.400000 +809 928 0.400000 +809 985 0.400000 +809 1001 0.400000 +809 1022 0.400000 +809 1070 0.400000 +809 1090 0.400000 +809 1092 0.400000 +809 1124 0.400000 +809 1181 0.400000 +809 1190 0.400000 +809 1226 0.400000 +809 1237 0.400000 +809 1253 0.400000 +809 1257 0.400000 +809 1322 0.400000 +809 1331 0.400000 +809 1338 0.400000 +809 1356 0.400000 +809 1369 0.400000 +809 1442 0.400000 +809 1452 0.400000 +809 1481 0.400000 +809 1539 0.400000 +809 1550 0.400000 +809 1557 0.400000 +809 1567 0.400000 +809 1607 0.400000 +809 1622 0.400000 +809 1645 0.400000 +809 1721 0.400000 +809 1732 0.400000 +809 1754 0.400000 +809 1794 0.400000 +809 1871 0.400000 +809 1886 0.400000 +809 1955 0.400000 +809 1972 0.400000 +809 1993 0.400000 +809 2038 0.400000 +809 2094 0.400000 +809 2172 0.400000 +809 2189 0.400000 +809 2216 0.400000 +809 2312 0.400000 +809 2364 0.400000 +809 2366 0.400000 +809 2401 0.400000 +809 2464 0.400000 +809 2516 0.400000 +809 2521 0.400000 +809 2560 0.400000 +809 2623 0.400000 +809 2684 0.400000 +809 2708 0.400000 +809 2797 0.400000 +809 2899 0.400000 +809 2922 0.400000 +809 2947 0.400000 +809 3032 0.400000 +809 3064 0.400000 +809 3138 0.400000 +809 3147 0.400000 +810 113 0.400000 +810 395 0.400000 +810 446 0.400000 +810 447 0.400000 +810 451 0.400000 +810 567 0.400000 +810 595 0.400000 +810 625 0.400000 +810 640 0.400000 +810 660 0.400000 +810 663 0.400000 +810 693 0.400000 +810 707 0.400000 +810 861 0.400000 +810 962 0.400000 +810 991 0.400000 +810 1010 0.400000 +810 1036 0.400000 +810 1042 0.400000 +810 1094 0.400000 +810 1121 0.400000 +810 1192 0.400000 +810 1245 0.400000 +810 1253 0.400000 +810 1376 0.400000 +810 1403 0.400000 +810 1405 0.400000 +810 1412 0.400000 +810 1605 0.400000 +810 1613 0.400000 +810 1694 0.400000 +810 1709 0.400000 +810 1727 0.400000 +810 1773 0.400000 +810 1793 0.400000 +810 1867 0.400000 +810 1883 0.400000 +810 1902 0.400000 +810 1922 0.400000 +810 2005 0.400000 +810 2044 0.400000 +810 2089 0.400000 +810 2113 0.400000 +810 2159 0.400000 +810 2261 0.400000 +810 2325 0.400000 +810 2359 0.400000 +810 2375 0.400000 +810 2379 0.400000 +810 2412 0.400000 +810 2413 0.400000 +810 2496 0.400000 +810 2506 0.400000 +810 2591 0.400000 +810 2601 0.400000 +810 2634 0.400000 +810 2703 0.400000 +810 2746 0.400000 +810 2909 0.400000 +810 2951 0.400000 +810 2969 0.400000 +810 3052 0.400000 +810 3105 0.400000 +810 3154 0.400000 +810 3158 0.400000 +810 3171 0.400000 +811 68 0.400000 +811 101 0.400000 +811 134 0.400000 +811 204 0.400000 +811 326 0.400000 +811 384 0.400000 +811 408 0.400000 +811 473 0.400000 +811 506 0.400000 +811 587 0.400000 +811 658 0.400000 +811 812 0.400000 +811 814 0.400000 +811 886 0.400000 +811 989 0.400000 +811 1001 0.400000 +811 1058 0.400000 +811 1074 0.400000 +811 1129 0.400000 +811 1171 0.400000 +811 1174 0.400000 +811 1252 0.400000 +811 1335 0.400000 +811 1336 0.400000 +811 1364 0.400000 +811 1371 0.400000 +811 1416 0.400000 +811 1431 0.400000 +811 1498 0.400000 +811 1566 0.400000 +811 1611 0.400000 +811 1718 0.400000 +811 1868 0.400000 +811 1928 0.400000 +811 1990 0.400000 +811 2142 0.400000 +811 2153 0.400000 +811 2206 0.400000 +811 2268 0.400000 +811 2292 0.400000 +811 2453 0.400000 +811 2521 0.400000 +811 2534 0.400000 +811 2575 0.400000 +811 2589 0.400000 +811 2613 0.400000 +811 2625 0.400000 +811 2640 0.400000 +811 2649 0.400000 +811 2673 0.400000 +811 2676 0.400000 +811 2804 0.400000 +811 2976 0.400000 +811 2988 0.400000 +811 3061 0.400000 +811 3142 0.400000 +812 38 0.400000 +812 139 0.400000 +812 159 0.400000 +812 195 0.400000 +812 232 0.400000 +812 277 0.400000 +812 314 0.400000 +812 375 0.400000 +812 441 0.400000 +812 445 0.400000 +812 543 0.400000 +812 575 0.400000 +812 584 0.400000 +812 658 0.400000 +812 686 0.400000 +812 731 0.400000 +812 978 0.400000 +812 1046 0.400000 +812 1066 0.400000 +812 1076 0.400000 +812 1164 0.400000 +812 1188 0.400000 +812 1400 0.400000 +812 1481 0.400000 +812 1483 0.400000 +812 1493 0.400000 +812 1542 0.400000 +812 1624 0.400000 +812 1713 0.400000 +812 1762 0.400000 +812 1777 0.400000 +812 1926 0.400000 +812 1927 0.400000 +812 2008 0.400000 +812 2036 0.400000 +812 2098 0.400000 +812 2123 0.400000 +812 2176 0.400000 +812 2195 0.400000 +812 2210 0.400000 +812 2222 0.400000 +812 2278 0.400000 +812 2291 0.400000 +812 2368 0.400000 +812 2387 0.400000 +812 2419 0.400000 +812 2468 0.400000 +812 2565 0.400000 +812 2662 0.400000 +812 2708 0.400000 +812 2808 0.400000 +812 2827 0.400000 +812 2849 0.400000 +812 2937 0.400000 +812 2990 0.400000 +812 3008 0.400000 +812 3029 0.400000 +812 3073 0.400000 +812 3128 0.400000 +812 3131 0.400000 +812 3147 0.400000 +812 3187 0.400000 +812 3192 0.400000 +813 37 0.400000 +813 104 0.400000 +813 109 0.400000 +813 130 0.400000 +813 162 0.400000 +813 167 0.400000 +813 308 0.400000 +813 312 0.400000 +813 399 0.400000 +813 415 0.400000 +813 418 0.400000 +813 428 0.400000 +813 513 0.400000 +813 647 0.400000 +813 655 0.400000 +813 693 0.400000 +813 721 0.400000 +813 767 0.400000 +813 787 0.400000 +813 871 0.400000 +813 991 0.400000 +813 1028 0.400000 +813 1036 0.400000 +813 1081 0.400000 +813 1273 0.400000 +813 1278 0.400000 +813 1500 0.400000 +813 1568 0.400000 +813 1586 0.400000 +813 1621 0.400000 +813 1666 0.400000 +813 1722 0.400000 +813 1798 0.400000 +813 1864 0.400000 +813 1968 0.400000 +813 1993 0.400000 +813 2230 0.400000 +813 2334 0.400000 +813 2338 0.400000 +813 2351 0.400000 +813 2355 0.400000 +813 2436 0.400000 +813 2463 0.400000 +813 2502 0.400000 +813 2625 0.400000 +813 2652 0.400000 +813 2655 0.400000 +813 2737 0.400000 +813 2901 0.400000 +813 2927 0.400000 +813 2959 0.400000 +813 3050 0.400000 +813 3052 0.400000 +813 3064 0.400000 +813 3145 0.400000 +813 3168 0.400000 +813 3183 0.400000 +814 17 0.400000 +814 60 0.400000 +814 127 0.400000 +814 222 0.400000 +814 240 0.400000 +814 277 0.400000 +814 331 0.400000 +814 370 0.400000 +814 441 0.400000 +814 486 0.400000 +814 499 0.400000 +814 508 0.400000 +814 516 0.400000 +814 608 0.400000 +814 626 0.400000 +814 699 0.400000 +814 713 0.400000 +814 722 0.400000 +814 815 0.400000 +814 821 0.400000 +814 871 0.400000 +814 963 0.400000 +814 1152 0.400000 +814 1172 0.400000 +814 1241 0.400000 +814 1370 0.400000 +814 1424 0.400000 +814 1611 0.400000 +814 1621 0.400000 +814 1676 0.400000 +814 1680 0.400000 +814 1718 0.400000 +814 1750 0.400000 +814 1816 0.400000 +814 1830 0.400000 +814 1831 0.400000 +814 1893 0.400000 +814 2018 0.400000 +814 2020 0.400000 +814 2064 0.400000 +814 2219 0.400000 +814 2283 0.400000 +814 2295 0.400000 +814 2372 0.400000 +814 2413 0.400000 +814 2525 0.400000 +814 2534 0.400000 +814 2536 0.400000 +814 2551 0.400000 +814 2583 0.400000 +814 2629 0.400000 +814 2779 0.400000 +814 2798 0.400000 +814 2855 0.400000 +814 2856 0.400000 +814 3010 0.400000 +814 3014 0.400000 +814 3016 0.400000 +814 3023 0.400000 +814 3081 0.400000 +814 3085 0.400000 +814 3158 0.400000 +814 3159 0.400000 +814 3163 0.400000 +815 21 0.400000 +815 34 0.400000 +815 60 0.400000 +815 63 0.400000 +815 139 0.400000 +815 152 0.400000 +815 222 0.400000 +815 243 0.400000 +815 274 0.400000 +815 298 0.400000 +815 325 0.400000 +815 326 0.400000 +815 380 0.400000 +815 434 0.400000 +815 489 0.400000 +815 520 0.400000 +815 521 0.400000 +815 617 0.400000 +815 640 0.400000 +815 693 0.400000 +815 709 0.400000 +815 758 0.400000 +815 815 0.400000 +815 937 0.400000 +815 949 0.400000 +815 997 0.400000 +815 1075 0.400000 +815 1092 0.400000 +815 1118 0.400000 +815 1249 0.400000 +815 1280 0.400000 +815 1327 0.400000 +815 1365 0.400000 +815 1465 0.400000 +815 1474 0.400000 +815 1479 0.400000 +815 1532 0.400000 +815 1564 0.400000 +815 1597 0.400000 +815 1663 0.400000 +815 1697 0.400000 +815 1715 0.400000 +815 1751 0.400000 +815 1821 0.400000 +815 1831 0.400000 +815 1917 0.400000 +815 2134 0.400000 +815 2217 0.400000 +815 2260 0.400000 +815 2262 0.400000 +815 2349 0.400000 +815 2456 0.400000 +815 2475 0.400000 +815 2552 0.400000 +815 2796 0.400000 +815 2817 0.400000 +815 2831 0.400000 +815 2834 0.400000 +815 2838 0.400000 +815 2882 0.400000 +815 2971 0.400000 +815 3073 0.400000 +815 3161 0.400000 +815 3193 0.400000 +816 12 0.400000 +816 164 0.400000 +816 182 0.400000 +816 248 0.400000 +816 293 0.400000 +816 438 0.400000 +816 498 0.400000 +816 586 0.400000 +816 619 0.400000 +816 620 0.400000 +816 637 0.400000 +816 658 0.400000 +816 867 0.400000 +816 914 0.400000 +816 931 0.400000 +816 965 0.400000 +816 1051 0.400000 +816 1104 0.400000 +816 1130 0.400000 +816 1206 0.400000 +816 1256 0.400000 +816 1302 0.400000 +816 1363 0.400000 +816 1381 0.400000 +816 1474 0.400000 +816 1502 0.400000 +816 1509 0.400000 +816 1518 0.400000 +816 1543 0.400000 +816 1601 0.400000 +816 1679 0.400000 +816 1684 0.400000 +816 1700 0.400000 +816 1810 0.400000 +816 1812 0.400000 +816 1871 0.400000 +816 1882 0.400000 +816 1894 0.400000 +816 1952 0.400000 +816 1980 0.400000 +816 1985 0.400000 +816 1986 0.400000 +816 2021 0.400000 +816 2091 0.400000 +816 2113 0.400000 +816 2137 0.400000 +816 2184 0.400000 +816 2192 0.400000 +816 2274 0.400000 +816 2275 0.400000 +816 2315 0.400000 +816 2360 0.400000 +816 2394 0.400000 +816 2415 0.400000 +816 2418 0.400000 +816 2487 0.400000 +816 2515 0.400000 +816 2561 0.400000 +816 2586 0.400000 +816 2680 0.400000 +816 2725 0.400000 +816 2756 0.400000 +816 2774 0.400000 +816 2776 0.400000 +816 2839 0.400000 +816 2869 0.400000 +816 2889 0.400000 +816 2905 0.400000 +816 2965 0.400000 +816 2992 0.400000 +816 3012 0.400000 +816 3020 0.400000 +816 3056 0.400000 +816 3063 0.400000 +816 3112 0.400000 +816 3122 0.400000 +816 3145 0.400000 +817 109 0.400000 +817 135 0.400000 +817 259 0.400000 +817 262 0.400000 +817 373 0.400000 +817 389 0.400000 +817 488 0.400000 +817 494 0.400000 +817 527 0.400000 +817 576 0.400000 +817 625 0.400000 +817 635 0.400000 +817 661 0.400000 +817 805 0.400000 +817 817 0.400000 +817 886 0.400000 +817 889 0.400000 +817 992 0.400000 +817 1021 0.400000 +817 1090 0.400000 +817 1150 0.400000 +817 1257 0.400000 +817 1297 0.400000 +817 1304 0.400000 +817 1330 0.400000 +817 1371 0.400000 +817 1376 0.400000 +817 1389 0.400000 +817 1432 0.400000 +817 1453 0.400000 +817 1479 0.400000 +817 1543 0.400000 +817 1557 0.400000 +817 1573 0.400000 +817 1653 0.400000 +817 1682 0.400000 +817 1722 0.400000 +817 1746 0.400000 +817 1749 0.400000 +817 1778 0.400000 +817 1805 0.400000 +817 1839 0.400000 +817 1893 0.400000 +817 2010 0.400000 +817 2030 0.400000 +817 2106 0.400000 +817 2134 0.400000 +817 2139 0.400000 +817 2143 0.400000 +817 2163 0.400000 +817 2226 0.400000 +817 2233 0.400000 +817 2248 0.400000 +817 2363 0.400000 +817 2385 0.400000 +817 2405 0.400000 +817 2570 0.400000 +817 2673 0.400000 +817 2677 0.400000 +817 2693 0.400000 +817 2737 0.400000 +817 2799 0.400000 +817 2855 0.400000 +817 2903 0.400000 +817 3010 0.400000 +817 3026 0.400000 +817 3126 0.400000 +818 10 0.400000 +818 21 0.400000 +818 70 0.400000 +818 89 0.400000 +818 117 0.400000 +818 126 0.400000 +818 168 0.400000 +818 175 0.400000 +818 259 0.400000 +818 320 0.400000 +818 324 0.400000 +818 332 0.400000 +818 387 0.400000 +818 477 0.400000 +818 566 0.400000 +818 587 0.400000 +818 646 0.400000 +818 679 0.400000 +818 874 0.400000 +818 922 0.400000 +818 929 0.400000 +818 960 0.400000 +818 1044 0.400000 +818 1112 0.400000 +818 1132 0.400000 +818 1217 0.400000 +818 1235 0.400000 +818 1236 0.400000 +818 1279 0.400000 +818 1319 0.400000 +818 1330 0.400000 +818 1394 0.400000 +818 1438 0.400000 +818 1450 0.400000 +818 1516 0.400000 +818 1555 0.400000 +818 1591 0.400000 +818 1647 0.400000 +818 1669 0.400000 +818 1701 0.400000 +818 1798 0.400000 +818 1830 0.400000 +818 1892 0.400000 +818 1973 0.400000 +818 2114 0.400000 +818 2147 0.400000 +818 2200 0.400000 +818 2204 0.400000 +818 2233 0.400000 +818 2270 0.400000 +818 2284 0.400000 +818 2385 0.400000 +818 2408 0.400000 +818 2521 0.400000 +818 2548 0.400000 +818 2557 0.400000 +818 2596 0.400000 +818 2682 0.400000 +818 2730 0.400000 +818 2756 0.400000 +818 2787 0.400000 +818 2814 0.400000 +818 2819 0.400000 +818 2845 0.400000 +818 2855 0.400000 +818 2860 0.400000 +818 2890 0.400000 +818 2892 0.400000 +818 2994 0.400000 +818 3121 0.400000 +819 28 0.400000 +819 41 0.400000 +819 57 0.400000 +819 78 0.400000 +819 112 0.400000 +819 120 0.400000 +819 121 0.400000 +819 132 0.400000 +819 155 0.400000 +819 188 0.400000 +819 210 0.400000 +819 224 0.400000 +819 229 0.400000 +819 238 0.400000 +819 331 0.400000 +819 350 0.400000 +819 358 0.400000 +819 446 0.400000 +819 581 0.400000 +819 592 0.400000 +819 614 0.400000 +819 674 0.400000 +819 795 0.400000 +819 829 0.400000 +819 929 0.400000 +819 956 0.400000 +819 979 0.400000 +819 1015 0.400000 +819 1265 0.400000 +819 1343 0.400000 +819 1396 0.400000 +819 1550 0.400000 +819 1571 0.400000 +819 1572 0.400000 +819 1618 0.400000 +819 1636 0.400000 +819 1641 0.400000 +819 1751 0.400000 +819 1794 0.400000 +819 1816 0.400000 +819 1868 0.400000 +819 1889 0.400000 +819 1946 0.400000 +819 1995 0.400000 +819 2006 0.400000 +819 2059 0.400000 +819 2060 0.400000 +819 2098 0.400000 +819 2105 0.400000 +819 2154 0.400000 +819 2168 0.400000 +819 2176 0.400000 +819 2295 0.400000 +819 2313 0.400000 +819 2436 0.400000 +819 2532 0.400000 +819 2571 0.400000 +819 2590 0.400000 +819 2600 0.400000 +819 2673 0.400000 +819 2717 0.400000 +819 2783 0.400000 +819 2881 0.400000 +819 2926 0.400000 +819 2978 0.400000 +819 2982 0.400000 +819 2996 0.400000 +819 3011 0.400000 +819 3095 0.400000 +819 3107 0.400000 +819 3128 0.400000 +820 21 0.400000 +820 33 0.400000 +820 205 0.400000 +820 251 0.400000 +820 391 0.400000 +820 393 0.400000 +820 465 0.400000 +820 620 0.400000 +820 642 0.400000 +820 659 0.400000 +820 706 0.400000 +820 782 0.400000 +820 820 0.400000 +820 868 0.400000 +820 870 0.400000 +820 883 0.400000 +820 985 0.400000 +820 987 0.400000 +820 1146 0.400000 +820 1204 0.400000 +820 1220 0.400000 +820 1282 0.400000 +820 1328 0.400000 +820 1422 0.400000 +820 1429 0.400000 +820 1462 0.400000 +820 1495 0.400000 +820 1498 0.400000 +820 1677 0.400000 +820 1683 0.400000 +820 1734 0.400000 +820 1735 0.400000 +820 1748 0.400000 +820 1814 0.400000 +820 1860 0.400000 +820 1952 0.400000 +820 1993 0.400000 +820 2141 0.400000 +820 2182 0.400000 +820 2213 0.400000 +820 2229 0.400000 +820 2235 0.400000 +820 2238 0.400000 +820 2252 0.400000 +820 2408 0.400000 +820 2449 0.400000 +820 2475 0.400000 +820 2481 0.400000 +820 2507 0.400000 +820 2515 0.400000 +820 2533 0.400000 +820 2538 0.400000 +820 2575 0.400000 +820 2582 0.400000 +820 2625 0.400000 +820 2753 0.400000 +820 2774 0.400000 +820 2794 0.400000 +820 2834 0.400000 +820 2962 0.400000 +820 3102 0.400000 +820 3105 0.400000 +820 3143 0.400000 +820 3166 0.400000 +821 97 0.400000 +821 189 0.400000 +821 229 0.400000 +821 277 0.400000 +821 310 0.400000 +821 316 0.400000 +821 350 0.400000 +821 371 0.400000 +821 393 0.400000 +821 405 0.400000 +821 471 0.400000 +821 477 0.400000 +821 482 0.400000 +821 504 0.400000 +821 594 0.400000 +821 609 0.400000 +821 611 0.400000 +821 770 0.400000 +821 774 0.400000 +821 891 0.400000 +821 928 0.400000 +821 947 0.400000 +821 988 0.400000 +821 1006 0.400000 +821 1021 0.400000 +821 1061 0.400000 +821 1085 0.400000 +821 1106 0.400000 +821 1178 0.400000 +821 1249 0.400000 +821 1278 0.400000 +821 1367 0.400000 +821 1381 0.400000 +821 1427 0.400000 +821 1481 0.400000 +821 1524 0.400000 +821 1552 0.400000 +821 1845 0.400000 +821 1851 0.400000 +821 1865 0.400000 +821 1895 0.400000 +821 1919 0.400000 +821 1927 0.400000 +821 2014 0.400000 +821 2017 0.400000 +821 2023 0.400000 +821 2026 0.400000 +821 2173 0.400000 +821 2231 0.400000 +821 2236 0.400000 +821 2243 0.400000 +821 2248 0.400000 +821 2251 0.400000 +821 2255 0.400000 +821 2364 0.400000 +821 2476 0.400000 +821 2482 0.400000 +821 2541 0.400000 +821 2578 0.400000 +821 2609 0.400000 +821 2716 0.400000 +821 2725 0.400000 +821 2742 0.400000 +821 2799 0.400000 +821 2878 0.400000 +821 2898 0.400000 +821 2905 0.400000 +821 2909 0.400000 +821 3009 0.400000 +821 3022 0.400000 +821 3023 0.400000 +821 3068 0.400000 +821 3091 0.400000 +821 3132 0.400000 +821 3182 0.400000 +821 3196 0.400000 +822 15 0.400000 +822 19 0.400000 +822 58 0.400000 +822 89 0.400000 +822 141 0.400000 +822 181 0.400000 +822 221 0.400000 +822 236 0.400000 +822 307 0.400000 +822 322 0.400000 +822 340 0.400000 +822 342 0.400000 +822 377 0.400000 +822 463 0.400000 +822 494 0.400000 +822 496 0.400000 +822 512 0.400000 +822 518 0.400000 +822 589 0.400000 +822 590 0.400000 +822 618 0.400000 +822 630 0.400000 +822 637 0.400000 +822 733 0.400000 +822 779 0.400000 +822 858 0.400000 +822 935 0.400000 +822 996 0.400000 +822 1011 0.400000 +822 1033 0.400000 +822 1036 0.400000 +822 1048 0.400000 +822 1124 0.400000 +822 1127 0.400000 +822 1144 0.400000 +822 1190 0.400000 +822 1397 0.400000 +822 1411 0.400000 +822 1438 0.400000 +822 1457 0.400000 +822 1498 0.400000 +822 1526 0.400000 +822 1635 0.400000 +822 1666 0.400000 +822 1733 0.400000 +822 1735 0.400000 +822 1834 0.400000 +822 1838 0.400000 +822 1845 0.400000 +822 1960 0.400000 +822 1966 0.400000 +822 1993 0.400000 +822 2008 0.400000 +822 2025 0.400000 +822 2034 0.400000 +822 2047 0.400000 +822 2199 0.400000 +822 2265 0.400000 +822 2366 0.400000 +822 2382 0.400000 +822 2393 0.400000 +822 2461 0.400000 +822 2475 0.400000 +822 2523 0.400000 +822 2609 0.400000 +822 2706 0.400000 +822 2797 0.400000 +822 2924 0.400000 +822 2925 0.400000 +822 2937 0.400000 +822 3128 0.400000 +822 3162 0.400000 +822 3176 0.400000 +822 3185 0.400000 +823 47 0.400000 +823 53 0.400000 +823 139 0.400000 +823 143 0.400000 +823 233 0.400000 +823 234 0.400000 +823 252 0.400000 +823 259 0.400000 +823 321 0.400000 +823 393 0.400000 +823 433 0.400000 +823 457 0.400000 +823 522 0.400000 +823 549 0.400000 +823 568 0.400000 +823 588 0.400000 +823 641 0.400000 +823 642 0.400000 +823 706 0.400000 +823 708 0.400000 +823 712 0.400000 +823 775 0.400000 +823 868 0.400000 +823 908 0.400000 +823 945 0.400000 +823 950 0.400000 +823 964 0.400000 +823 981 0.400000 +823 1010 0.400000 +823 1023 0.400000 +823 1106 0.400000 +823 1122 0.400000 +823 1226 0.400000 +823 1256 0.400000 +823 1292 0.400000 +823 1297 0.400000 +823 1303 0.400000 +823 1336 0.400000 +823 1360 0.400000 +823 1427 0.400000 +823 1457 0.400000 +823 1482 0.400000 +823 1628 0.400000 +823 1684 0.400000 +823 1806 0.400000 +823 1818 0.400000 +823 1819 0.400000 +823 1825 0.400000 +823 1907 0.400000 +823 1963 0.400000 +823 1979 0.400000 +823 2096 0.400000 +823 2100 0.400000 +823 2275 0.400000 +823 2306 0.400000 +823 2370 0.400000 +823 2401 0.400000 +823 2501 0.400000 +823 2539 0.400000 +823 2540 0.400000 +823 2553 0.400000 +823 2573 0.400000 +823 2584 0.400000 +823 2612 0.400000 +823 2677 0.400000 +823 2702 0.400000 +823 2740 0.400000 +823 2806 0.400000 +823 2833 0.400000 +823 2915 0.400000 +823 2941 0.400000 +823 3023 0.400000 +823 3100 0.400000 +824 32 0.400000 +824 62 0.400000 +824 75 0.400000 +824 122 0.400000 +824 184 0.400000 +824 195 0.400000 +824 252 0.400000 +824 259 0.400000 +824 434 0.400000 +824 494 0.400000 +824 502 0.400000 +824 507 0.400000 +824 556 0.400000 +824 616 0.400000 +824 664 0.400000 +824 820 0.400000 +824 880 0.400000 +824 896 0.400000 +824 934 0.400000 +824 951 0.400000 +824 1116 0.400000 +824 1121 0.400000 +824 1151 0.400000 +824 1179 0.400000 +824 1303 0.400000 +824 1326 0.400000 +824 1338 0.400000 +824 1362 0.400000 +824 1393 0.400000 +824 1399 0.400000 +824 1404 0.400000 +824 1416 0.400000 +824 1425 0.400000 +824 1428 0.400000 +824 1558 0.400000 +824 1578 0.400000 +824 1589 0.400000 +824 1632 0.400000 +824 1635 0.400000 +824 1858 0.400000 +824 1876 0.400000 +824 1922 0.400000 +824 1929 0.400000 +824 1933 0.400000 +824 1989 0.400000 +824 2020 0.400000 +824 2041 0.400000 +824 2076 0.400000 +824 2111 0.400000 +824 2117 0.400000 +824 2221 0.400000 +824 2224 0.400000 +824 2266 0.400000 +824 2368 0.400000 +824 2466 0.400000 +824 2470 0.400000 +824 2472 0.400000 +824 2474 0.400000 +824 2482 0.400000 +824 2494 0.400000 +824 2536 0.400000 +824 2553 0.400000 +824 2558 0.400000 +824 2643 0.400000 +824 2665 0.400000 +824 2727 0.400000 +824 2773 0.400000 +824 2983 0.400000 +824 3031 0.400000 +824 3187 0.400000 +825 114 0.400000 +825 207 0.400000 +825 225 0.400000 +825 306 0.400000 +825 307 0.400000 +825 309 0.400000 +825 312 0.400000 +825 337 0.400000 +825 361 0.400000 +825 526 0.400000 +825 544 0.400000 +825 553 0.400000 +825 583 0.400000 +825 640 0.400000 +825 690 0.400000 +825 700 0.400000 +825 722 0.400000 +825 854 0.400000 +825 952 0.400000 +825 1251 0.400000 +825 1270 0.400000 +825 1293 0.400000 +825 1319 0.400000 +825 1333 0.400000 +825 1348 0.400000 +825 1363 0.400000 +825 1380 0.400000 +825 1461 0.400000 +825 1505 0.400000 +825 1664 0.400000 +825 1667 0.400000 +825 1705 0.400000 +825 1773 0.400000 +825 1816 0.400000 +825 1826 0.400000 +825 1873 0.400000 +825 1887 0.400000 +825 1936 0.400000 +825 1962 0.400000 +825 2075 0.400000 +825 2100 0.400000 +825 2260 0.400000 +825 2281 0.400000 +825 2567 0.400000 +825 2614 0.400000 +825 2641 0.400000 +825 2644 0.400000 +825 2718 0.400000 +825 2752 0.400000 +825 2786 0.400000 +825 2814 0.400000 +825 2832 0.400000 +825 2833 0.400000 +825 2943 0.400000 +825 2966 0.400000 +825 3056 0.400000 +825 3112 0.400000 +825 3124 0.400000 +825 3164 0.400000 +826 8 0.400000 +826 29 0.400000 +826 56 0.400000 +826 81 0.400000 +826 97 0.400000 +826 119 0.400000 +826 142 0.400000 +826 164 0.400000 +826 195 0.400000 +826 201 0.400000 +826 243 0.400000 +826 245 0.400000 +826 282 0.400000 +826 345 0.400000 +826 346 0.400000 +826 461 0.400000 +826 655 0.400000 +826 662 0.400000 +826 678 0.400000 +826 682 0.400000 +826 716 0.400000 +826 741 0.400000 +826 789 0.400000 +826 1012 0.400000 +826 1081 0.400000 +826 1290 0.400000 +826 1336 0.400000 +826 1340 0.400000 +826 1443 0.400000 +826 1464 0.400000 +826 1490 0.400000 +826 1493 0.400000 +826 1517 0.400000 +826 1546 0.400000 +826 1547 0.400000 +826 1556 0.400000 +826 1565 0.400000 +826 1672 0.400000 +826 1753 0.400000 +826 1764 0.400000 +826 1787 0.400000 +826 1837 0.400000 +826 1839 0.400000 +826 1886 0.400000 +826 1936 0.400000 +826 1975 0.400000 +826 2057 0.400000 +826 2062 0.400000 +826 2065 0.400000 +826 2193 0.400000 +826 2387 0.400000 +826 2394 0.400000 +826 2415 0.400000 +826 2460 0.400000 +826 2571 0.400000 +826 2696 0.400000 +826 2708 0.400000 +826 2755 0.400000 +826 2771 0.400000 +826 2855 0.400000 +826 2858 0.400000 +826 2869 0.400000 +826 2880 0.400000 +826 2893 0.400000 +826 2953 0.400000 +827 30 0.400000 +827 37 0.400000 +827 49 0.400000 +827 100 0.400000 +827 320 0.400000 +827 448 0.400000 +827 521 0.400000 +827 544 0.400000 +827 552 0.400000 +827 554 0.400000 +827 562 0.400000 +827 568 0.400000 +827 586 0.400000 +827 652 0.400000 +827 710 0.400000 +827 738 0.400000 +827 745 0.400000 +827 766 0.400000 +827 827 0.400000 +827 864 0.400000 +827 891 0.400000 +827 1003 0.400000 +827 1022 0.400000 +827 1053 0.400000 +827 1284 0.400000 +827 1330 0.400000 +827 1372 0.400000 +827 1447 0.400000 +827 1572 0.400000 +827 1573 0.400000 +827 1602 0.400000 +827 1626 0.400000 +827 1634 0.400000 +827 1655 0.400000 +827 1672 0.400000 +827 1761 0.400000 +827 1801 0.400000 +827 1851 0.400000 +827 1881 0.400000 +827 1896 0.400000 +827 1917 0.400000 +827 2006 0.400000 +827 2047 0.400000 +827 2051 0.400000 +827 2054 0.400000 +827 2091 0.400000 +827 2282 0.400000 +827 2426 0.400000 +827 2453 0.400000 +827 2479 0.400000 +827 2514 0.400000 +827 2540 0.400000 +827 2565 0.400000 +827 2573 0.400000 +827 2616 0.400000 +827 2679 0.400000 +827 2708 0.400000 +827 2758 0.400000 +827 2819 0.400000 +827 2837 0.400000 +827 2853 0.400000 +827 2870 0.400000 +827 2964 0.400000 +827 2979 0.400000 +827 3015 0.400000 +827 3094 0.400000 +827 3155 0.400000 +827 3170 0.400000 +827 3172 0.400000 +827 3173 0.400000 +827 3190 0.400000 +828 17 0.400000 +828 125 0.400000 +828 146 0.400000 +828 166 0.400000 +828 338 0.400000 +828 347 0.400000 +828 349 0.400000 +828 353 0.400000 +828 420 0.400000 +828 424 0.400000 +828 464 0.400000 +828 491 0.400000 +828 526 0.400000 +828 571 0.400000 +828 596 0.400000 +828 638 0.400000 +828 698 0.400000 +828 738 0.400000 +828 742 0.400000 +828 795 0.400000 +828 798 0.400000 +828 810 0.400000 +828 821 0.400000 +828 882 0.400000 +828 884 0.400000 +828 901 0.400000 +828 942 0.400000 +828 1060 0.400000 +828 1107 0.400000 +828 1176 0.400000 +828 1204 0.400000 +828 1238 0.400000 +828 1275 0.400000 +828 1297 0.400000 +828 1311 0.400000 +828 1317 0.400000 +828 1414 0.400000 +828 1459 0.400000 +828 1575 0.400000 +828 1627 0.400000 +828 1694 0.400000 +828 1748 0.400000 +828 1784 0.400000 +828 1818 0.400000 +828 1915 0.400000 +828 1950 0.400000 +828 2025 0.400000 +828 2028 0.400000 +828 2043 0.400000 +828 2091 0.400000 +828 2099 0.400000 +828 2225 0.400000 +828 2252 0.400000 +828 2273 0.400000 +828 2348 0.400000 +828 2379 0.400000 +828 2408 0.400000 +828 2490 0.400000 +828 2548 0.400000 +828 2555 0.400000 +828 2556 0.400000 +828 2566 0.400000 +828 2567 0.400000 +828 2655 0.400000 +828 2806 0.400000 +828 2816 0.400000 +828 2841 0.400000 +828 2873 0.400000 +828 2880 0.400000 +828 2919 0.400000 +828 3000 0.400000 +828 3064 0.400000 +828 3091 0.400000 +828 3124 0.400000 +828 3164 0.400000 +829 24 0.400000 +829 257 0.400000 +829 344 0.400000 +829 353 0.400000 +829 362 0.400000 +829 380 0.400000 +829 477 0.400000 +829 481 0.400000 +829 596 0.400000 +829 648 0.400000 +829 700 0.400000 +829 793 0.400000 +829 822 0.400000 +829 834 0.400000 +829 855 0.400000 +829 865 0.400000 +829 879 0.400000 +829 913 0.400000 +829 1042 0.400000 +829 1063 0.400000 +829 1079 0.400000 +829 1138 0.400000 +829 1163 0.400000 +829 1218 0.400000 +829 1243 0.400000 +829 1283 0.400000 +829 1286 0.400000 +829 1303 0.400000 +829 1328 0.400000 +829 1355 0.400000 +829 1410 0.400000 +829 1539 0.400000 +829 1549 0.400000 +829 1575 0.400000 +829 1612 0.400000 +829 1696 0.400000 +829 1800 0.400000 +829 1805 0.400000 +829 1808 0.400000 +829 1846 0.400000 +829 1897 0.400000 +829 1924 0.400000 +829 2046 0.400000 +829 2107 0.400000 +829 2178 0.400000 +829 2197 0.400000 +829 2233 0.400000 +829 2254 0.400000 +829 2293 0.400000 +829 2309 0.400000 +829 2311 0.400000 +829 2318 0.400000 +829 2424 0.400000 +829 2450 0.400000 +829 2550 0.400000 +829 2575 0.400000 +829 2640 0.400000 +829 2671 0.400000 +829 2751 0.400000 +829 2771 0.400000 +830 9 0.400000 +830 49 0.400000 +830 126 0.400000 +830 130 0.400000 +830 139 0.400000 +830 181 0.400000 +830 213 0.400000 +830 223 0.400000 +830 231 0.400000 +830 271 0.400000 +830 287 0.400000 +830 302 0.400000 +830 369 0.400000 +830 385 0.400000 +830 422 0.400000 +830 532 0.400000 +830 541 0.400000 +830 558 0.400000 +830 596 0.400000 +830 787 0.400000 +830 819 0.400000 +830 848 0.400000 +830 850 0.400000 +830 938 0.400000 +830 964 0.400000 +830 973 0.400000 +830 976 0.400000 +830 982 0.400000 +830 983 0.400000 +830 1031 0.400000 +830 1109 0.400000 +830 1198 0.400000 +830 1203 0.400000 +830 1205 0.400000 +830 1206 0.400000 +830 1316 0.400000 +830 1349 0.400000 +830 1398 0.400000 +830 1402 0.400000 +830 1407 0.400000 +830 1541 0.400000 +830 1567 0.400000 +830 1609 0.400000 +830 1614 0.400000 +830 1688 0.400000 +830 1734 0.400000 +830 1767 0.400000 +830 1801 0.400000 +830 1878 0.400000 +830 1914 0.400000 +830 1929 0.400000 +830 1960 0.400000 +830 1980 0.400000 +830 2061 0.400000 +830 2101 0.400000 +830 2119 0.400000 +830 2170 0.400000 +830 2178 0.400000 +830 2192 0.400000 +830 2193 0.400000 +830 2286 0.400000 +830 2374 0.400000 +830 2548 0.400000 +830 2591 0.400000 +830 2655 0.400000 +830 2696 0.400000 +830 2810 0.400000 +830 2922 0.400000 +830 2948 0.400000 +830 2984 0.400000 +831 22 0.400000 +831 55 0.400000 +831 58 0.400000 +831 100 0.400000 +831 264 0.400000 +831 307 0.400000 +831 339 0.400000 +831 369 0.400000 +831 401 0.400000 +831 412 0.400000 +831 484 0.400000 +831 546 0.400000 +831 655 0.400000 +831 712 0.400000 +831 746 0.400000 +831 788 0.400000 +831 790 0.400000 +831 819 0.400000 +831 838 0.400000 +831 846 0.400000 +831 879 0.400000 +831 924 0.400000 +831 945 0.400000 +831 999 0.400000 +831 1040 0.400000 +831 1050 0.400000 +831 1067 0.400000 +831 1081 0.400000 +831 1096 0.400000 +831 1121 0.400000 +831 1181 0.400000 +831 1275 0.400000 +831 1337 0.400000 +831 1404 0.400000 +831 1514 0.400000 +831 1548 0.400000 +831 1573 0.400000 +831 1585 0.400000 +831 1616 0.400000 +831 1655 0.400000 +831 1658 0.400000 +831 1707 0.400000 +831 1760 0.400000 +831 1813 0.400000 +831 1888 0.400000 +831 1988 0.400000 +831 2052 0.400000 +831 2055 0.400000 +831 2060 0.400000 +831 2070 0.400000 +831 2105 0.400000 +831 2149 0.400000 +831 2262 0.400000 +831 2308 0.400000 +831 2323 0.400000 +831 2335 0.400000 +831 2477 0.400000 +831 2525 0.400000 +831 2585 0.400000 +831 2594 0.400000 +831 2602 0.400000 +831 2696 0.400000 +831 2725 0.400000 +831 2727 0.400000 +831 2821 0.400000 +831 2908 0.400000 +831 2914 0.400000 +831 2997 0.400000 +831 3028 0.400000 +831 3077 0.400000 +831 3094 0.400000 +831 3183 0.400000 +831 3196 0.400000 +832 18 0.400000 +832 23 0.400000 +832 42 0.400000 +832 67 0.400000 +832 95 0.400000 +832 152 0.400000 +832 181 0.400000 +832 197 0.400000 +832 213 0.400000 +832 276 0.400000 +832 376 0.400000 +832 378 0.400000 +832 428 0.400000 +832 448 0.400000 +832 552 0.400000 +832 615 0.400000 +832 757 0.400000 +832 761 0.400000 +832 789 0.400000 +832 800 0.400000 +832 810 0.400000 +832 825 0.400000 +832 841 0.400000 +832 938 0.400000 +832 972 0.400000 +832 987 0.400000 +832 1004 0.400000 +832 1030 0.400000 +832 1094 0.400000 +832 1301 0.400000 +832 1340 0.400000 +832 1358 0.400000 +832 1369 0.400000 +832 1370 0.400000 +832 1377 0.400000 +832 1385 0.400000 +832 1506 0.400000 +832 1558 0.400000 +832 1563 0.400000 +832 1564 0.400000 +832 1608 0.400000 +832 1618 0.400000 +832 1630 0.400000 +832 1659 0.400000 +832 1702 0.400000 +832 1724 0.400000 +832 1756 0.400000 +832 1809 0.400000 +832 1875 0.400000 +832 1893 0.400000 +832 1910 0.400000 +832 1949 0.400000 +832 1984 0.400000 +832 1993 0.400000 +832 1994 0.400000 +832 2040 0.400000 +832 2154 0.400000 +832 2338 0.400000 +832 2372 0.400000 +832 2410 0.400000 +832 2530 0.400000 +832 2577 0.400000 +832 2600 0.400000 +832 2608 0.400000 +832 2656 0.400000 +832 2707 0.400000 +832 2816 0.400000 +832 2820 0.400000 +832 2828 0.400000 +832 2859 0.400000 +832 2894 0.400000 +832 2914 0.400000 +832 2941 0.400000 +832 2967 0.400000 +832 3042 0.400000 +832 3085 0.400000 +832 3125 0.400000 +832 3128 0.400000 +832 3140 0.400000 +833 34 0.400000 +833 348 0.400000 +833 378 0.400000 +833 437 0.400000 +833 461 0.400000 +833 532 0.400000 +833 582 0.400000 +833 590 0.400000 +833 665 0.400000 +833 892 0.400000 +833 927 0.400000 +833 1033 0.400000 +833 1102 0.400000 +833 1124 0.400000 +833 1154 0.400000 +833 1186 0.400000 +833 1189 0.400000 +833 1239 0.400000 +833 1296 0.400000 +833 1308 0.400000 +833 1355 0.400000 +833 1532 0.400000 +833 1632 0.400000 +833 1803 0.400000 +833 2047 0.400000 +833 2160 0.400000 +833 2175 0.400000 +833 2203 0.400000 +833 2224 0.400000 +833 2304 0.400000 +833 2352 0.400000 +833 2363 0.400000 +833 2404 0.400000 +833 2452 0.400000 +833 2505 0.400000 +833 2558 0.400000 +833 2576 0.400000 +833 2625 0.400000 +833 2652 0.400000 +833 2833 0.400000 +833 2836 0.400000 +833 2949 0.400000 +833 3015 0.400000 +833 3064 0.400000 +833 3179 0.400000 +833 3195 0.400000 +834 75 0.400000 +834 219 0.400000 +834 261 0.400000 +834 264 0.400000 +834 307 0.400000 +834 338 0.400000 +834 344 0.400000 +834 459 0.400000 +834 488 0.400000 +834 515 0.400000 +834 522 0.400000 +834 603 0.400000 +834 681 0.400000 +834 740 0.400000 +834 816 0.400000 +834 847 0.400000 +834 864 0.400000 +834 999 0.400000 +834 1004 0.400000 +834 1057 0.400000 +834 1060 0.400000 +834 1098 0.400000 +834 1383 0.400000 +834 1401 0.400000 +834 1413 0.400000 +834 1418 0.400000 +834 1445 0.400000 +834 1464 0.400000 +834 1723 0.400000 +834 1737 0.400000 +834 1766 0.400000 +834 1807 0.400000 +834 1859 0.400000 +834 1992 0.400000 +834 2148 0.400000 +834 2213 0.400000 +834 2282 0.400000 +834 2325 0.400000 +834 2327 0.400000 +834 2338 0.400000 +834 2417 0.400000 +834 2441 0.400000 +834 2471 0.400000 +834 2560 0.400000 +834 2615 0.400000 +834 2632 0.400000 +834 2677 0.400000 +834 2775 0.400000 +834 2818 0.400000 +834 2856 0.400000 +834 2862 0.400000 +834 2940 0.400000 +834 2949 0.400000 +834 2955 0.400000 +834 2959 0.400000 +834 3013 0.400000 +834 3161 0.400000 +835 6 0.400000 +835 15 0.400000 +835 51 0.400000 +835 80 0.400000 +835 93 0.400000 +835 112 0.400000 +835 144 0.400000 +835 311 0.400000 +835 348 0.400000 +835 397 0.400000 +835 415 0.400000 +835 430 0.400000 +835 482 0.400000 +835 529 0.400000 +835 643 0.400000 +835 748 0.400000 +835 763 0.400000 +835 806 0.400000 +835 840 0.400000 +835 888 0.400000 +835 959 0.400000 +835 1028 0.400000 +835 1127 0.400000 +835 1167 0.400000 +835 1230 0.400000 +835 1274 0.400000 +835 1301 0.400000 +835 1358 0.400000 +835 1383 0.400000 +835 1426 0.400000 +835 1429 0.400000 +835 1452 0.400000 +835 1516 0.400000 +835 1585 0.400000 +835 1650 0.400000 +835 1681 0.400000 +835 1735 0.400000 +835 1761 0.400000 +835 1799 0.400000 +835 1848 0.400000 +835 1859 0.400000 +835 2005 0.400000 +835 2023 0.400000 +835 2080 0.400000 +835 2137 0.400000 +835 2265 0.400000 +835 2289 0.400000 +835 2353 0.400000 +835 2396 0.400000 +835 2476 0.400000 +835 2496 0.400000 +835 2521 0.400000 +835 2547 0.400000 +835 2619 0.400000 +835 2699 0.400000 +835 2730 0.400000 +835 2817 0.400000 +835 2861 0.400000 +835 2866 0.400000 +835 2916 0.400000 +835 3007 0.400000 +835 3050 0.400000 +835 3053 0.400000 +835 3143 0.400000 +836 8 0.400000 +836 121 0.400000 +836 135 0.400000 +836 207 0.400000 +836 210 0.400000 +836 234 0.400000 +836 273 0.400000 +836 350 0.400000 +836 369 0.400000 +836 382 0.400000 +836 401 0.400000 +836 417 0.400000 +836 432 0.400000 +836 456 0.400000 +836 464 0.400000 +836 506 0.400000 +836 513 0.400000 +836 537 0.400000 +836 581 0.400000 +836 595 0.400000 +836 684 0.400000 +836 686 0.400000 +836 780 0.400000 +836 797 0.400000 +836 930 0.400000 +836 947 0.400000 +836 996 0.400000 +836 1242 0.400000 +836 1243 0.400000 +836 1276 0.400000 +836 1299 0.400000 +836 1443 0.400000 +836 1480 0.400000 +836 1484 0.400000 +836 1524 0.400000 +836 1559 0.400000 +836 1590 0.400000 +836 1661 0.400000 +836 1670 0.400000 +836 1689 0.400000 +836 1758 0.400000 +836 1815 0.400000 +836 1846 0.400000 +836 1900 0.400000 +836 1972 0.400000 +836 2017 0.400000 +836 2120 0.400000 +836 2198 0.400000 +836 2283 0.400000 +836 2299 0.400000 +836 2326 0.400000 +836 2374 0.400000 +836 2450 0.400000 +836 2522 0.400000 +836 2574 0.400000 +836 2576 0.400000 +836 2591 0.400000 +836 2851 0.400000 +836 2962 0.400000 +836 3190 0.400000 +837 1 0.400000 +837 154 0.400000 +837 156 0.400000 +837 161 0.400000 +837 188 0.400000 +837 259 0.400000 +837 323 0.400000 +837 416 0.400000 +837 442 0.400000 +837 464 0.400000 +837 549 0.400000 +837 647 0.400000 +837 662 0.400000 +837 683 0.400000 +837 708 0.400000 +837 785 0.400000 +837 813 0.400000 +837 873 0.400000 +837 981 0.400000 +837 1007 0.400000 +837 1028 0.400000 +837 1093 0.400000 +837 1113 0.400000 +837 1140 0.400000 +837 1166 0.400000 +837 1207 0.400000 +837 1315 0.400000 +837 1319 0.400000 +837 1371 0.400000 +837 1425 0.400000 +837 1431 0.400000 +837 1467 0.400000 +837 1494 0.400000 +837 1589 0.400000 +837 1607 0.400000 +837 1638 0.400000 +837 1792 0.400000 +837 1973 0.400000 +837 2006 0.400000 +837 2038 0.400000 +837 2073 0.400000 +837 2137 0.400000 +837 2154 0.400000 +837 2223 0.400000 +837 2256 0.400000 +837 2271 0.400000 +837 2323 0.400000 +837 2438 0.400000 +837 2476 0.400000 +837 2690 0.400000 +837 2729 0.400000 +837 2747 0.400000 +837 2766 0.400000 +837 2956 0.400000 +837 2970 0.400000 +837 2982 0.400000 +837 3094 0.400000 +837 3176 0.400000 +837 3190 0.400000 +838 25 0.400000 +838 85 0.400000 +838 118 0.400000 +838 155 0.400000 +838 166 0.400000 +838 199 0.400000 +838 211 0.400000 +838 266 0.400000 +838 382 0.400000 +838 445 0.400000 +838 457 0.400000 +838 467 0.400000 +838 599 0.400000 +838 644 0.400000 +838 690 0.400000 +838 693 0.400000 +838 860 0.400000 +838 885 0.400000 +838 903 0.400000 +838 916 0.400000 +838 955 0.400000 +838 956 0.400000 +838 957 0.400000 +838 958 0.400000 +838 1032 0.400000 +838 1037 0.400000 +838 1102 0.400000 +838 1107 0.400000 +838 1228 0.400000 +838 1240 0.400000 +838 1282 0.400000 +838 1284 0.400000 +838 1309 0.400000 +838 1320 0.400000 +838 1330 0.400000 +838 1344 0.400000 +838 1378 0.400000 +838 1388 0.400000 +838 1461 0.400000 +838 1524 0.400000 +838 1549 0.400000 +838 1636 0.400000 +838 1739 0.400000 +838 1760 0.400000 +838 1781 0.400000 +838 1791 0.400000 +838 1796 0.400000 +838 1800 0.400000 +838 1906 0.400000 +838 1960 0.400000 +838 1963 0.400000 +838 1964 0.400000 +838 1971 0.400000 +838 2011 0.400000 +838 2055 0.400000 +838 2104 0.400000 +838 2115 0.400000 +838 2271 0.400000 +838 2291 0.400000 +838 2332 0.400000 +838 2356 0.400000 +838 2388 0.400000 +838 2427 0.400000 +838 2466 0.400000 +838 2489 0.400000 +838 2549 0.400000 +838 2622 0.400000 +838 2678 0.400000 +838 2728 0.400000 +838 2894 0.400000 +838 2906 0.400000 +838 3038 0.400000 +838 3075 0.400000 +838 3111 0.400000 +838 3188 0.400000 +839 74 0.400000 +839 184 0.400000 +839 298 0.400000 +839 379 0.400000 +839 610 0.400000 +839 787 0.400000 +839 889 0.400000 +839 891 0.400000 +839 904 0.400000 +839 925 0.400000 +839 951 0.400000 +839 958 0.400000 +839 971 0.400000 +839 1029 0.400000 +839 1067 0.400000 +839 1080 0.400000 +839 1091 0.400000 +839 1148 0.400000 +839 1215 0.400000 +839 1340 0.400000 +839 1376 0.400000 +839 1399 0.400000 +839 1473 0.400000 +839 1493 0.400000 +839 1533 0.400000 +839 1595 0.400000 +839 1599 0.400000 +839 1752 0.400000 +839 1754 0.400000 +839 1756 0.400000 +839 1866 0.400000 +839 2020 0.400000 +839 2040 0.400000 +839 2043 0.400000 +839 2086 0.400000 +839 2130 0.400000 +839 2195 0.400000 +839 2239 0.400000 +839 2253 0.400000 +839 2438 0.400000 +839 2472 0.400000 +839 2511 0.400000 +839 2560 0.400000 +839 2699 0.400000 +839 2796 0.400000 +839 2899 0.400000 +839 2917 0.400000 +839 2923 0.400000 +839 2994 0.400000 +839 3049 0.400000 +839 3113 0.400000 +840 5 0.400000 +840 34 0.400000 +840 253 0.400000 +840 303 0.400000 +840 345 0.400000 +840 376 0.400000 +840 491 0.400000 +840 514 0.400000 +840 529 0.400000 +840 543 0.400000 +840 580 0.400000 +840 637 0.400000 +840 646 0.400000 +840 721 0.400000 +840 803 0.400000 +840 808 0.400000 +840 825 0.400000 +840 918 0.400000 +840 1015 0.400000 +840 1029 0.400000 +840 1040 0.400000 +840 1134 0.400000 +840 1158 0.400000 +840 1161 0.400000 +840 1171 0.400000 +840 1190 0.400000 +840 1192 0.400000 +840 1234 0.400000 +840 1252 0.400000 +840 1267 0.400000 +840 1294 0.400000 +840 1343 0.400000 +840 1411 0.400000 +840 1457 0.400000 +840 1655 0.400000 +840 1694 0.400000 +840 1721 0.400000 +840 1787 0.400000 +840 1820 0.400000 +840 1826 0.400000 +840 1882 0.400000 +840 1938 0.400000 +840 1954 0.400000 +840 1964 0.400000 +840 1998 0.400000 +840 2022 0.400000 +840 2192 0.400000 +840 2206 0.400000 +840 2277 0.400000 +840 2354 0.400000 +840 2380 0.400000 +840 2381 0.400000 +840 2396 0.400000 +840 2408 0.400000 +840 2410 0.400000 +840 2415 0.400000 +840 2457 0.400000 +840 2468 0.400000 +840 2650 0.400000 +840 2671 0.400000 +840 2781 0.400000 +840 2815 0.400000 +840 2826 0.400000 +840 2887 0.400000 +840 2960 0.400000 +840 3042 0.400000 +840 3167 0.400000 +840 3172 0.400000 +840 3186 0.400000 +841 24 0.400000 +841 35 0.400000 +841 89 0.400000 +841 125 0.400000 +841 137 0.400000 +841 187 0.400000 +841 197 0.400000 +841 206 0.400000 +841 276 0.400000 +841 304 0.400000 +841 367 0.400000 +841 461 0.400000 +841 484 0.400000 +841 522 0.400000 +841 545 0.400000 +841 569 0.400000 +841 649 0.400000 +841 656 0.400000 +841 659 0.400000 +841 678 0.400000 +841 749 0.400000 +841 954 0.400000 +841 974 0.400000 +841 1054 0.400000 +841 1067 0.400000 +841 1121 0.400000 +841 1124 0.400000 +841 1190 0.400000 +841 1286 0.400000 +841 1447 0.400000 +841 1548 0.400000 +841 1557 0.400000 +841 1743 0.400000 +841 1786 0.400000 +841 1972 0.400000 +841 2114 0.400000 +841 2115 0.400000 +841 2144 0.400000 +841 2158 0.400000 +841 2196 0.400000 +841 2198 0.400000 +841 2218 0.400000 +841 2286 0.400000 +841 2332 0.400000 +841 2346 0.400000 +841 2374 0.400000 +841 2505 0.400000 +841 2556 0.400000 +841 2574 0.400000 +841 2586 0.400000 +841 2635 0.400000 +841 2654 0.400000 +841 2655 0.400000 +841 2729 0.400000 +841 2757 0.400000 +841 2837 0.400000 +841 2897 0.400000 +841 2937 0.400000 +841 3059 0.400000 +841 3081 0.400000 +841 3090 0.400000 +841 3122 0.400000 +841 3145 0.400000 +841 3158 0.400000 +842 42 0.400000 +842 155 0.400000 +842 214 0.400000 +842 273 0.400000 +842 292 0.400000 +842 312 0.400000 +842 428 0.400000 +842 528 0.400000 +842 626 0.400000 +842 677 0.400000 +842 714 0.400000 +842 733 0.400000 +842 746 0.400000 +842 753 0.400000 +842 800 0.400000 +842 834 0.400000 +842 870 0.400000 +842 1002 0.400000 +842 1038 0.400000 +842 1059 0.400000 +842 1067 0.400000 +842 1096 0.400000 +842 1119 0.400000 +842 1132 0.400000 +842 1220 0.400000 +842 1252 0.400000 +842 1292 0.400000 +842 1309 0.400000 +842 1431 0.400000 +842 1448 0.400000 +842 1503 0.400000 +842 1526 0.400000 +842 1538 0.400000 +842 1597 0.400000 +842 1601 0.400000 +842 1636 0.400000 +842 1668 0.400000 +842 1679 0.400000 +842 1691 0.400000 +842 1728 0.400000 +842 1805 0.400000 +842 1820 0.400000 +842 1925 0.400000 +842 1952 0.400000 +842 1991 0.400000 +842 2092 0.400000 +842 2119 0.400000 +842 2179 0.400000 +842 2180 0.400000 +842 2204 0.400000 +842 2247 0.400000 +842 2303 0.400000 +842 2304 0.400000 +842 2378 0.400000 +842 2452 0.400000 +842 2454 0.400000 +842 2463 0.400000 +842 2520 0.400000 +842 2644 0.400000 +842 2662 0.400000 +842 2706 0.400000 +842 2820 0.400000 +842 2823 0.400000 +842 2826 0.400000 +842 2837 0.400000 +842 2838 0.400000 +842 2935 0.400000 +842 3022 0.400000 +842 3064 0.400000 +842 3098 0.400000 +842 3118 0.400000 +842 3142 0.400000 +842 3178 0.400000 +843 69 0.400000 +843 86 0.400000 +843 100 0.400000 +843 127 0.400000 +843 175 0.400000 +843 263 0.400000 +843 292 0.400000 +843 331 0.400000 +843 448 0.400000 +843 507 0.400000 +843 640 0.400000 +843 651 0.400000 +843 711 0.400000 +843 731 0.400000 +843 770 0.400000 +843 775 0.400000 +843 810 0.400000 +843 814 0.400000 +843 1089 0.400000 +843 1095 0.400000 +843 1255 0.400000 +843 1329 0.400000 +843 1373 0.400000 +843 1398 0.400000 +843 1668 0.400000 +843 1715 0.400000 +843 1743 0.400000 +843 1806 0.400000 +843 1822 0.400000 +843 1824 0.400000 +843 1829 0.400000 +843 1928 0.400000 +843 2167 0.400000 +843 2256 0.400000 +843 2277 0.400000 +843 2445 0.400000 +843 2453 0.400000 +843 2472 0.400000 +843 2481 0.400000 +843 2499 0.400000 +843 2519 0.400000 +843 2527 0.400000 +843 2676 0.400000 +843 2712 0.400000 +843 2797 0.400000 +843 2896 0.400000 +843 2923 0.400000 +843 2955 0.400000 +843 2986 0.400000 +843 3090 0.400000 +843 3095 0.400000 +843 3156 0.400000 +843 3157 0.400000 +844 13 0.400000 +844 84 0.400000 +844 135 0.400000 +844 141 0.400000 +844 183 0.400000 +844 221 0.400000 +844 242 0.400000 +844 349 0.400000 +844 386 0.400000 +844 465 0.400000 +844 469 0.400000 +844 481 0.400000 +844 482 0.400000 +844 488 0.400000 +844 613 0.400000 +844 661 0.400000 +844 726 0.400000 +844 731 0.400000 +844 754 0.400000 +844 777 0.400000 +844 910 0.400000 +844 981 0.400000 +844 1181 0.400000 +844 1236 0.400000 +844 1371 0.400000 +844 1478 0.400000 +844 1529 0.400000 +844 1535 0.400000 +844 1586 0.400000 +844 1600 0.400000 +844 1617 0.400000 +844 1639 0.400000 +844 1692 0.400000 +844 1789 0.400000 +844 1823 0.400000 +844 1828 0.400000 +844 1833 0.400000 +844 1925 0.400000 +844 1948 0.400000 +844 2050 0.400000 +844 2076 0.400000 +844 2161 0.400000 +844 2197 0.400000 +844 2253 0.400000 +844 2279 0.400000 +844 2384 0.400000 +844 2574 0.400000 +844 2583 0.400000 +844 2588 0.400000 +844 2692 0.400000 +844 2747 0.400000 +844 2784 0.400000 +844 2823 0.400000 +844 2835 0.400000 +844 2842 0.400000 +844 2946 0.400000 +844 3050 0.400000 +844 3155 0.400000 +844 3196 0.400000 +845 33 0.400000 +845 57 0.400000 +845 84 0.400000 +845 154 0.400000 +845 158 0.400000 +845 176 0.400000 +845 193 0.400000 +845 222 0.400000 +845 230 0.400000 +845 278 0.400000 +845 421 0.400000 +845 468 0.400000 +845 472 0.400000 +845 484 0.400000 +845 568 0.400000 +845 615 0.400000 +845 620 0.400000 +845 732 0.400000 +845 752 0.400000 +845 782 0.400000 +845 857 0.400000 +845 894 0.400000 +845 995 0.400000 +845 1006 0.400000 +845 1055 0.400000 +845 1085 0.400000 +845 1236 0.400000 +845 1255 0.400000 +845 1365 0.400000 +845 1386 0.400000 +845 1394 0.400000 +845 1501 0.400000 +845 1583 0.400000 +845 1626 0.400000 +845 1841 0.400000 +845 1894 0.400000 +845 1994 0.400000 +845 2015 0.400000 +845 2018 0.400000 +845 2095 0.400000 +845 2104 0.400000 +845 2179 0.400000 +845 2259 0.400000 +845 2288 0.400000 +845 2312 0.400000 +845 2447 0.400000 +845 2479 0.400000 +845 2530 0.400000 +845 2574 0.400000 +845 2839 0.400000 +845 2840 0.400000 +845 2898 0.400000 +845 2910 0.400000 +845 2955 0.400000 +845 2984 0.400000 +845 2985 0.400000 +845 2986 0.400000 +845 3033 0.400000 +845 3182 0.400000 +846 7 0.400000 +846 24 0.400000 +846 27 0.400000 +846 60 0.400000 +846 119 0.400000 +846 150 0.400000 +846 195 0.400000 +846 271 0.400000 +846 291 0.400000 +846 442 0.400000 +846 449 0.400000 +846 479 0.400000 +846 557 0.400000 +846 603 0.400000 +846 673 0.400000 +846 694 0.400000 +846 699 0.400000 +846 712 0.400000 +846 728 0.400000 +846 740 0.400000 +846 747 0.400000 +846 852 0.400000 +846 867 0.400000 +846 873 0.400000 +846 893 0.400000 +846 895 0.400000 +846 906 0.400000 +846 941 0.400000 +846 942 0.400000 +846 1003 0.400000 +846 1060 0.400000 +846 1086 0.400000 +846 1110 0.400000 +846 1128 0.400000 +846 1160 0.400000 +846 1235 0.400000 +846 1329 0.400000 +846 1342 0.400000 +846 1421 0.400000 +846 1427 0.400000 +846 1449 0.400000 +846 1500 0.400000 +846 1564 0.400000 +846 1635 0.400000 +846 1743 0.400000 +846 1761 0.400000 +846 1787 0.400000 +846 1842 0.400000 +846 1874 0.400000 +846 1889 0.400000 +846 1904 0.400000 +846 1909 0.400000 +846 1943 0.400000 +846 1965 0.400000 +846 1966 0.400000 +846 1997 0.400000 +846 1998 0.400000 +846 2055 0.400000 +846 2123 0.400000 +846 2318 0.400000 +846 2359 0.400000 +846 2406 0.400000 +846 2434 0.400000 +846 2534 0.400000 +846 2576 0.400000 +846 2638 0.400000 +846 2673 0.400000 +846 2698 0.400000 +846 2702 0.400000 +846 2763 0.400000 +846 2784 0.400000 +846 2794 0.400000 +846 2804 0.400000 +846 2863 0.400000 +846 2894 0.400000 +846 3008 0.400000 +846 3017 0.400000 +846 3068 0.400000 +847 166 0.400000 +847 182 0.400000 +847 189 0.400000 +847 249 0.400000 +847 327 0.400000 +847 434 0.400000 +847 561 0.400000 +847 584 0.400000 +847 627 0.400000 +847 639 0.400000 +847 675 0.400000 +847 716 0.400000 +847 745 0.400000 +847 868 0.400000 +847 915 0.400000 +847 1041 0.400000 +847 1042 0.400000 +847 1080 0.400000 +847 1109 0.400000 +847 1146 0.400000 +847 1147 0.400000 +847 1213 0.400000 +847 1223 0.400000 +847 1334 0.400000 +847 1346 0.400000 +847 1371 0.400000 +847 1431 0.400000 +847 1448 0.400000 +847 1498 0.400000 +847 1520 0.400000 +847 1529 0.400000 +847 1533 0.400000 +847 1577 0.400000 +847 1616 0.400000 +847 1710 0.400000 +847 1799 0.400000 +847 1860 0.400000 +847 1882 0.400000 +847 1887 0.400000 +847 1900 0.400000 +847 1995 0.400000 +847 2005 0.400000 +847 2034 0.400000 +847 2079 0.400000 +847 2087 0.400000 +847 2156 0.400000 +847 2176 0.400000 +847 2183 0.400000 +847 2256 0.400000 +847 2304 0.400000 +847 2316 0.400000 +847 2406 0.400000 +847 2411 0.400000 +847 2449 0.400000 +847 2502 0.400000 +847 2515 0.400000 +847 2600 0.400000 +847 2733 0.400000 +847 2803 0.400000 +847 2826 0.400000 +847 2896 0.400000 +847 2966 0.400000 +847 3008 0.400000 +847 3086 0.400000 +847 3142 0.400000 +847 3177 0.400000 +848 66 0.400000 +848 98 0.400000 +848 109 0.400000 +848 129 0.400000 +848 140 0.400000 +848 157 0.400000 +848 230 0.400000 +848 264 0.400000 +848 271 0.400000 +848 291 0.400000 +848 299 0.400000 +848 329 0.400000 +848 346 0.400000 +848 353 0.400000 +848 380 0.400000 +848 391 0.400000 +848 432 0.400000 +848 441 0.400000 +848 539 0.400000 +848 565 0.400000 +848 636 0.400000 +848 679 0.400000 +848 693 0.400000 +848 760 0.400000 +848 782 0.400000 +848 817 0.400000 +848 835 0.400000 +848 855 0.400000 +848 861 0.400000 +848 918 0.400000 +848 961 0.400000 +848 997 0.400000 +848 1140 0.400000 +848 1146 0.400000 +848 1167 0.400000 +848 1188 0.400000 +848 1190 0.400000 +848 1194 0.400000 +848 1209 0.400000 +848 1238 0.400000 +848 1243 0.400000 +848 1274 0.400000 +848 1289 0.400000 +848 1322 0.400000 +848 1418 0.400000 +848 1426 0.400000 +848 1555 0.400000 +848 1558 0.400000 +848 1671 0.400000 +848 1750 0.400000 +848 1777 0.400000 +848 1865 0.400000 +848 1899 0.400000 +848 1908 0.400000 +848 1917 0.400000 +848 1920 0.400000 +848 1940 0.400000 +848 1944 0.400000 +848 1964 0.400000 +848 2037 0.400000 +848 2047 0.400000 +848 2194 0.400000 +848 2292 0.400000 +848 2394 0.400000 +848 2421 0.400000 +848 2643 0.400000 +848 2674 0.400000 +848 2678 0.400000 +848 2726 0.400000 +848 2746 0.400000 +848 2780 0.400000 +848 2865 0.400000 +848 2898 0.400000 +848 2921 0.400000 +848 2940 0.400000 +848 2971 0.400000 +848 2983 0.400000 +848 3111 0.400000 +848 3152 0.400000 +848 3181 0.400000 +848 3187 0.400000 +848 3197 0.400000 +849 18 0.400000 +849 84 0.400000 +849 137 0.400000 +849 182 0.400000 +849 265 0.400000 +849 355 0.400000 +849 434 0.400000 +849 464 0.400000 +849 600 0.400000 +849 605 0.400000 +849 609 0.400000 +849 694 0.400000 +849 754 0.400000 +849 851 0.400000 +849 862 0.400000 +849 919 0.400000 +849 1006 0.400000 +849 1033 0.400000 +849 1058 0.400000 +849 1094 0.400000 +849 1180 0.400000 +849 1188 0.400000 +849 1258 0.400000 +849 1261 0.400000 +849 1378 0.400000 +849 1447 0.400000 +849 1457 0.400000 +849 1528 0.400000 +849 1566 0.400000 +849 1583 0.400000 +849 1617 0.400000 +849 1861 0.400000 +849 1866 0.400000 +849 1874 0.400000 +849 1895 0.400000 +849 1926 0.400000 +849 1943 0.400000 +849 1953 0.400000 +849 2018 0.400000 +849 2107 0.400000 +849 2151 0.400000 +849 2176 0.400000 +849 2204 0.400000 +849 2276 0.400000 +849 2312 0.400000 +849 2375 0.400000 +849 2505 0.400000 +849 2511 0.400000 +849 2553 0.400000 +849 2586 0.400000 +849 2590 0.400000 +849 2650 0.400000 +849 2655 0.400000 +849 2710 0.400000 +849 2759 0.400000 +849 2801 0.400000 +849 3105 0.400000 +849 3137 0.400000 +849 3155 0.400000 +850 44 0.400000 +850 59 0.400000 +850 93 0.400000 +850 111 0.400000 +850 129 0.400000 +850 186 0.400000 +850 220 0.400000 +850 236 0.400000 +850 259 0.400000 +850 351 0.400000 +850 442 0.400000 +850 483 0.400000 +850 488 0.400000 +850 552 0.400000 +850 621 0.400000 +850 752 0.400000 +850 760 0.400000 +850 825 0.400000 +850 965 0.400000 +850 1015 0.400000 +850 1070 0.400000 +850 1081 0.400000 +850 1091 0.400000 +850 1110 0.400000 +850 1161 0.400000 +850 1211 0.400000 +850 1247 0.400000 +850 1296 0.400000 +850 1301 0.400000 +850 1453 0.400000 +850 1552 0.400000 +850 1601 0.400000 +850 1614 0.400000 +850 1646 0.400000 +850 1664 0.400000 +850 1756 0.400000 +850 1778 0.400000 +850 1799 0.400000 +850 1801 0.400000 +850 1859 0.400000 +850 1860 0.400000 +850 1929 0.400000 +850 1970 0.400000 +850 1999 0.400000 +850 2002 0.400000 +850 2065 0.400000 +850 2090 0.400000 +850 2118 0.400000 +850 2266 0.400000 +850 2294 0.400000 +850 2494 0.400000 +850 2572 0.400000 +850 2573 0.400000 +850 2579 0.400000 +850 2583 0.400000 +850 2673 0.400000 +850 2711 0.400000 +850 2716 0.400000 +850 2724 0.400000 +850 2746 0.400000 +850 2823 0.400000 +850 2916 0.400000 +850 2981 0.400000 +850 3053 0.400000 +850 3062 0.400000 +850 3084 0.400000 +850 3184 0.400000 +851 5 0.400000 +851 251 0.400000 +851 332 0.400000 +851 362 0.400000 +851 397 0.400000 +851 424 0.400000 +851 455 0.400000 +851 537 0.400000 +851 562 0.400000 +851 606 0.400000 +851 609 0.400000 +851 751 0.400000 +851 753 0.400000 +851 757 0.400000 +851 804 0.400000 +851 809 0.400000 +851 812 0.400000 +851 838 0.400000 +851 841 0.400000 +851 873 0.400000 +851 943 0.400000 +851 983 0.400000 +851 1055 0.400000 +851 1105 0.400000 +851 1178 0.400000 +851 1184 0.400000 +851 1239 0.400000 +851 1243 0.400000 +851 1320 0.400000 +851 1328 0.400000 +851 1350 0.400000 +851 1552 0.400000 +851 1564 0.400000 +851 1570 0.400000 +851 1592 0.400000 +851 1612 0.400000 +851 1623 0.400000 +851 1632 0.400000 +851 1651 0.400000 +851 1685 0.400000 +851 1756 0.400000 +851 1867 0.400000 +851 1884 0.400000 +851 1894 0.400000 +851 2052 0.400000 +851 2063 0.400000 +851 2097 0.400000 +851 2140 0.400000 +851 2142 0.400000 +851 2150 0.400000 +851 2173 0.400000 +851 2179 0.400000 +851 2181 0.400000 +851 2199 0.400000 +851 2284 0.400000 +851 2355 0.400000 +851 2451 0.400000 +851 2776 0.400000 +851 2862 0.400000 +851 2913 0.400000 +851 2915 0.400000 +851 2923 0.400000 +851 3039 0.400000 +852 67 0.400000 +852 89 0.400000 +852 145 0.400000 +852 279 0.400000 +852 283 0.400000 +852 340 0.400000 +852 377 0.400000 +852 395 0.400000 +852 421 0.400000 +852 452 0.400000 +852 470 0.400000 +852 534 0.400000 +852 660 0.400000 +852 662 0.400000 +852 778 0.400000 +852 836 0.400000 +852 857 0.400000 +852 975 0.400000 +852 1015 0.400000 +852 1143 0.400000 +852 1162 0.400000 +852 1272 0.400000 +852 1297 0.400000 +852 1347 0.400000 +852 1385 0.400000 +852 1388 0.400000 +852 1469 0.400000 +852 1568 0.400000 +852 1591 0.400000 +852 1642 0.400000 +852 1644 0.400000 +852 1691 0.400000 +852 1708 0.400000 +852 1710 0.400000 +852 1728 0.400000 +852 1768 0.400000 +852 1815 0.400000 +852 1825 0.400000 +852 1879 0.400000 +852 2013 0.400000 +852 2028 0.400000 +852 2152 0.400000 +852 2157 0.400000 +852 2172 0.400000 +852 2194 0.400000 +852 2209 0.400000 +852 2264 0.400000 +852 2283 0.400000 +852 2309 0.400000 +852 2319 0.400000 +852 2350 0.400000 +852 2397 0.400000 +852 2425 0.400000 +852 2441 0.400000 +852 2469 0.400000 +852 2470 0.400000 +852 2524 0.400000 +852 2532 0.400000 +852 2534 0.400000 +852 2718 0.400000 +852 2737 0.400000 +852 2746 0.400000 +852 2831 0.400000 +852 2838 0.400000 +852 2939 0.400000 +852 2976 0.400000 +852 2994 0.400000 +852 3168 0.400000 +853 66 0.400000 +853 161 0.400000 +853 186 0.400000 +853 207 0.400000 +853 241 0.400000 +853 336 0.400000 +853 396 0.400000 +853 559 0.400000 +853 585 0.400000 +853 649 0.400000 +853 658 0.400000 +853 661 0.400000 +853 686 0.400000 +853 694 0.400000 +853 744 0.400000 +853 764 0.400000 +853 769 0.400000 +853 830 0.400000 +853 847 0.400000 +853 952 0.400000 +853 1048 0.400000 +853 1051 0.400000 +853 1087 0.400000 +853 1391 0.400000 +853 1658 0.400000 +853 1711 0.400000 +853 1738 0.400000 +853 1768 0.400000 +853 1778 0.400000 +853 1782 0.400000 +853 1824 0.400000 +853 1829 0.400000 +853 1837 0.400000 +853 1845 0.400000 +853 1873 0.400000 +853 1890 0.400000 +853 1904 0.400000 +853 1909 0.400000 +853 2024 0.400000 +853 2060 0.400000 +853 2129 0.400000 +853 2146 0.400000 +853 2314 0.400000 +853 2328 0.400000 +853 2376 0.400000 +853 2411 0.400000 +853 2449 0.400000 +853 2491 0.400000 +853 2538 0.400000 +853 2543 0.400000 +853 2599 0.400000 +853 2657 0.400000 +853 2682 0.400000 +853 2757 0.400000 +853 2985 0.400000 +853 3023 0.400000 +853 3053 0.400000 +853 3054 0.400000 +853 3060 0.400000 +853 3063 0.400000 +853 3085 0.400000 +853 3120 0.400000 +853 3145 0.400000 +854 75 0.400000 +854 117 0.400000 +854 153 0.400000 +854 191 0.400000 +854 205 0.400000 +854 214 0.400000 +854 216 0.400000 +854 262 0.400000 +854 342 0.400000 +854 438 0.400000 +854 474 0.400000 +854 482 0.400000 +854 491 0.400000 +854 498 0.400000 +854 526 0.400000 +854 553 0.400000 +854 624 0.400000 +854 644 0.400000 +854 682 0.400000 +854 743 0.400000 +854 794 0.400000 +854 829 0.400000 +854 895 0.400000 +854 936 0.400000 +854 941 0.400000 +854 961 0.400000 +854 970 0.400000 +854 986 0.400000 +854 1175 0.400000 +854 1206 0.400000 +854 1255 0.400000 +854 1273 0.400000 +854 1296 0.400000 +854 1370 0.400000 +854 1468 0.400000 +854 1513 0.400000 +854 1558 0.400000 +854 1733 0.400000 +854 1785 0.400000 +854 1842 0.400000 +854 1843 0.400000 +854 1855 0.400000 +854 1886 0.400000 +854 1896 0.400000 +854 1928 0.400000 +854 1988 0.400000 +854 2027 0.400000 +854 2041 0.400000 +854 2128 0.400000 +854 2141 0.400000 +854 2144 0.400000 +854 2160 0.400000 +854 2242 0.400000 +854 2274 0.400000 +854 2380 0.400000 +854 2618 0.400000 +854 2633 0.400000 +854 2742 0.400000 +854 2801 0.400000 +854 2833 0.400000 +854 2932 0.400000 +854 2948 0.400000 +854 3032 0.400000 +854 3076 0.400000 +854 3103 0.400000 +854 3132 0.400000 +854 3185 0.400000 +855 209 0.400000 +855 432 0.400000 +855 462 0.400000 +855 545 0.400000 +855 566 0.400000 +855 648 0.400000 +855 721 0.400000 +855 758 0.400000 +855 801 0.400000 +855 837 0.400000 +855 848 0.400000 +855 904 0.400000 +855 920 0.400000 +855 989 0.400000 +855 1022 0.400000 +855 1047 0.400000 +855 1170 0.400000 +855 1174 0.400000 +855 1368 0.400000 +855 1387 0.400000 +855 1474 0.400000 +855 1556 0.400000 +855 1567 0.400000 +855 1586 0.400000 +855 1645 0.400000 +855 1742 0.400000 +855 1793 0.400000 +855 1822 0.400000 +855 1891 0.400000 +855 1953 0.400000 +855 2091 0.400000 +855 2170 0.400000 +855 2279 0.400000 +855 2376 0.400000 +855 2428 0.400000 +855 2479 0.400000 +855 2565 0.400000 +855 2629 0.400000 +855 2733 0.400000 +855 2752 0.400000 +855 2865 0.400000 +855 2876 0.400000 +855 2906 0.400000 +855 2954 0.400000 +855 3111 0.400000 +855 3125 0.400000 +855 3157 0.400000 +855 3172 0.400000 +855 3194 0.400000 +856 135 0.400000 +856 171 0.400000 +856 308 0.400000 +856 310 0.400000 +856 359 0.400000 +856 371 0.400000 +856 387 0.400000 +856 512 0.400000 +856 553 0.400000 +856 573 0.400000 +856 637 0.400000 +856 708 0.400000 +856 723 0.400000 +856 739 0.400000 +856 750 0.400000 +856 758 0.400000 +856 775 0.400000 +856 839 0.400000 +856 844 0.400000 +856 867 0.400000 +856 869 0.400000 +856 877 0.400000 +856 902 0.400000 +856 1007 0.400000 +856 1052 0.400000 +856 1191 0.400000 +856 1255 0.400000 +856 1289 0.400000 +856 1355 0.400000 +856 1364 0.400000 +856 1447 0.400000 +856 1514 0.400000 +856 1545 0.400000 +856 1581 0.400000 +856 1592 0.400000 +856 1637 0.400000 +856 1671 0.400000 +856 1712 0.400000 +856 1759 0.400000 +856 1783 0.400000 +856 1816 0.400000 +856 1892 0.400000 +856 1985 0.400000 +856 1990 0.400000 +856 2054 0.400000 +856 2083 0.400000 +856 2129 0.400000 +856 2152 0.400000 +856 2162 0.400000 +856 2201 0.400000 +856 2204 0.400000 +856 2205 0.400000 +856 2251 0.400000 +856 2305 0.400000 +856 2357 0.400000 +856 2368 0.400000 +856 2390 0.400000 +856 2471 0.400000 +856 2630 0.400000 +856 2631 0.400000 +856 2635 0.400000 +856 2690 0.400000 +856 2898 0.400000 +856 2911 0.400000 +856 3013 0.400000 +856 3055 0.400000 +856 3086 0.400000 +856 3098 0.400000 +856 3156 0.400000 +857 24 0.400000 +857 91 0.400000 +857 98 0.400000 +857 134 0.400000 +857 191 0.400000 +857 226 0.400000 +857 229 0.400000 +857 262 0.400000 +857 291 0.400000 +857 400 0.400000 +857 434 0.400000 +857 457 0.400000 +857 543 0.400000 +857 686 0.400000 +857 836 0.400000 +857 843 0.400000 +857 911 0.400000 +857 959 0.400000 +857 1086 0.400000 +857 1106 0.400000 +857 1134 0.400000 +857 1189 0.400000 +857 1197 0.400000 +857 1266 0.400000 +857 1294 0.400000 +857 1319 0.400000 +857 1420 0.400000 +857 1647 0.400000 +857 1679 0.400000 +857 1701 0.400000 +857 1826 0.400000 +857 1956 0.400000 +857 1978 0.400000 +857 1990 0.400000 +857 2226 0.400000 +857 2253 0.400000 +857 2325 0.400000 +857 2378 0.400000 +857 2420 0.400000 +857 2436 0.400000 +857 2455 0.400000 +857 2488 0.400000 +857 2498 0.400000 +857 2586 0.400000 +857 2587 0.400000 +857 2598 0.400000 +857 2629 0.400000 +857 2715 0.400000 +857 2750 0.400000 +857 2819 0.400000 +857 2874 0.400000 +857 2877 0.400000 +857 2918 0.400000 +857 2943 0.400000 +857 3065 0.400000 +857 3075 0.400000 +857 3104 0.400000 +857 3133 0.400000 +857 3142 0.400000 +858 54 0.400000 +858 153 0.400000 +858 188 0.400000 +858 189 0.400000 +858 220 0.400000 +858 252 0.400000 +858 351 0.400000 +858 378 0.400000 +858 399 0.400000 +858 422 0.400000 +858 723 0.400000 +858 756 0.400000 +858 760 0.400000 +858 789 0.400000 +858 887 0.400000 +858 1122 0.400000 +858 1125 0.400000 +858 1163 0.400000 +858 1171 0.400000 +858 1260 0.400000 +858 1321 0.400000 +858 1329 0.400000 +858 1342 0.400000 +858 1409 0.400000 +858 1488 0.400000 +858 1550 0.400000 +858 1567 0.400000 +858 1629 0.400000 +858 1630 0.400000 +858 1710 0.400000 +858 1727 0.400000 +858 1749 0.400000 +858 1792 0.400000 +858 1877 0.400000 +858 1939 0.400000 +858 1944 0.400000 +858 1991 0.400000 +858 2009 0.400000 +858 2033 0.400000 +858 2057 0.400000 +858 2154 0.400000 +858 2257 0.400000 +858 2263 0.400000 +858 2338 0.400000 +858 2429 0.400000 +858 2453 0.400000 +858 2506 0.400000 +858 2514 0.400000 +858 2560 0.400000 +858 2569 0.400000 +858 2579 0.400000 +858 2642 0.400000 +858 2698 0.400000 +858 2708 0.400000 +858 2710 0.400000 +858 2746 0.400000 +858 2755 0.400000 +858 2806 0.400000 +858 2874 0.400000 +858 2876 0.400000 +858 2886 0.400000 +858 2893 0.400000 +858 3077 0.400000 +858 3108 0.400000 +858 3112 0.400000 +858 3186 0.400000 +859 35 0.400000 +859 60 0.400000 +859 75 0.400000 +859 76 0.400000 +859 128 0.400000 +859 130 0.400000 +859 222 0.400000 +859 226 0.400000 +859 229 0.400000 +859 260 0.400000 +859 278 0.400000 +859 280 0.400000 +859 384 0.400000 +859 438 0.400000 +859 489 0.400000 +859 518 0.400000 +859 544 0.400000 +859 559 0.400000 +859 646 0.400000 +859 653 0.400000 +859 679 0.400000 +859 735 0.400000 +859 810 0.400000 +859 860 0.400000 +859 869 0.400000 +859 887 0.400000 +859 913 0.400000 +859 954 0.400000 +859 982 0.400000 +859 1016 0.400000 +859 1018 0.400000 +859 1043 0.400000 +859 1073 0.400000 +859 1083 0.400000 +859 1114 0.400000 +859 1333 0.400000 +859 1435 0.400000 +859 1444 0.400000 +859 1540 0.400000 +859 1567 0.400000 +859 1681 0.400000 +859 1733 0.400000 +859 1741 0.400000 +859 1757 0.400000 +859 1769 0.400000 +859 1810 0.400000 +859 1941 0.400000 +859 1944 0.400000 +859 1986 0.400000 +859 2067 0.400000 +859 2069 0.400000 +859 2085 0.400000 +859 2124 0.400000 +859 2140 0.400000 +859 2163 0.400000 +859 2177 0.400000 +859 2366 0.400000 +859 2368 0.400000 +859 2409 0.400000 +859 2419 0.400000 +859 2458 0.400000 +859 2498 0.400000 +859 2553 0.400000 +859 2561 0.400000 +859 2579 0.400000 +859 2592 0.400000 +859 2663 0.400000 +859 2686 0.400000 +859 2715 0.400000 +859 2722 0.400000 +859 2723 0.400000 +859 2819 0.400000 +859 2865 0.400000 +859 2878 0.400000 +859 2901 0.400000 +859 2905 0.400000 +859 2932 0.400000 +859 2948 0.400000 +859 2979 0.400000 +859 2983 0.400000 +859 3046 0.400000 +859 3192 0.400000 +860 54 0.400000 +860 139 0.400000 +860 152 0.400000 +860 157 0.400000 +860 169 0.400000 +860 228 0.400000 +860 232 0.400000 +860 306 0.400000 +860 367 0.400000 +860 411 0.400000 +860 451 0.400000 +860 488 0.400000 +860 504 0.400000 +860 509 0.400000 +860 652 0.400000 +860 687 0.400000 +860 801 0.400000 +860 815 0.400000 +860 837 0.400000 +860 878 0.400000 +860 885 0.400000 +860 904 0.400000 +860 953 0.400000 +860 1068 0.400000 +860 1109 0.400000 +860 1207 0.400000 +860 1239 0.400000 +860 1296 0.400000 +860 1299 0.400000 +860 1387 0.400000 +860 1407 0.400000 +860 1451 0.400000 +860 1575 0.400000 +860 1597 0.400000 +860 1620 0.400000 +860 1668 0.400000 +860 1684 0.400000 +860 1745 0.400000 +860 1861 0.400000 +860 1946 0.400000 +860 2026 0.400000 +860 2032 0.400000 +860 2053 0.400000 +860 2075 0.400000 +860 2140 0.400000 +860 2221 0.400000 +860 2244 0.400000 +860 2281 0.400000 +860 2307 0.400000 +860 2332 0.400000 +860 2426 0.400000 +860 2483 0.400000 +860 2509 0.400000 +860 2567 0.400000 +860 2578 0.400000 +860 2601 0.400000 +860 2638 0.400000 +860 2799 0.400000 +860 2853 0.400000 +860 2893 0.400000 +860 2940 0.400000 +860 2949 0.400000 +860 2967 0.400000 +860 2982 0.400000 +860 3001 0.400000 +860 3022 0.400000 +860 3053 0.400000 +860 3062 0.400000 +860 3087 0.400000 +860 3103 0.400000 +860 3129 0.400000 +861 69 0.400000 +861 97 0.400000 +861 288 0.400000 +861 295 0.400000 +861 307 0.400000 +861 451 0.400000 +861 542 0.400000 +861 575 0.400000 +861 635 0.400000 +861 748 0.400000 +861 943 0.400000 +861 1060 0.400000 +861 1171 0.400000 +861 1275 0.400000 +861 1361 0.400000 +861 1655 0.400000 +861 1749 0.400000 +861 1820 0.400000 +861 1826 0.400000 +861 1830 0.400000 +861 1832 0.400000 +861 1916 0.400000 +861 1930 0.400000 +861 1950 0.400000 +861 1965 0.400000 +861 2002 0.400000 +861 2163 0.400000 +861 2173 0.400000 +861 2200 0.400000 +861 2245 0.400000 +861 2265 0.400000 +861 2274 0.400000 +861 2371 0.400000 +861 2497 0.400000 +861 2537 0.400000 +861 2572 0.400000 +861 2713 0.400000 +861 2748 0.400000 +861 2776 0.400000 +861 2914 0.400000 +861 2921 0.400000 +861 2926 0.400000 +861 2957 0.400000 +861 2959 0.400000 +861 2975 0.400000 +861 3031 0.400000 +861 3055 0.400000 +861 3057 0.400000 +861 3064 0.400000 +861 3104 0.400000 +861 3125 0.400000 +861 3165 0.400000 +862 32 0.400000 +862 73 0.400000 +862 106 0.400000 +862 173 0.400000 +862 261 0.400000 +862 343 0.400000 +862 380 0.400000 +862 425 0.400000 +862 446 0.400000 +862 514 0.400000 +862 519 0.400000 +862 521 0.400000 +862 677 0.400000 +862 713 0.400000 +862 762 0.400000 +862 775 0.400000 +862 776 0.400000 +862 858 0.400000 +862 915 0.400000 +862 966 0.400000 +862 979 0.400000 +862 1049 0.400000 +862 1058 0.400000 +862 1104 0.400000 +862 1145 0.400000 +862 1150 0.400000 +862 1152 0.400000 +862 1160 0.400000 +862 1346 0.400000 +862 1374 0.400000 +862 1416 0.400000 +862 1459 0.400000 +862 1473 0.400000 +862 1504 0.400000 +862 1506 0.400000 +862 1521 0.400000 +862 1565 0.400000 +862 1568 0.400000 +862 1611 0.400000 +862 1650 0.400000 +862 1696 0.400000 +862 1782 0.400000 +862 1787 0.400000 +862 1800 0.400000 +862 1815 0.400000 +862 1893 0.400000 +862 1954 0.400000 +862 2030 0.400000 +862 2038 0.400000 +862 2056 0.400000 +862 2127 0.400000 +862 2181 0.400000 +862 2226 0.400000 +862 2273 0.400000 +862 2344 0.400000 +862 2411 0.400000 +862 2449 0.400000 +862 2460 0.400000 +862 2501 0.400000 +862 2515 0.400000 +862 2571 0.400000 +862 2609 0.400000 +862 2616 0.400000 +862 2622 0.400000 +862 2645 0.400000 +862 2689 0.400000 +862 2719 0.400000 +862 2840 0.400000 +862 2857 0.400000 +862 2969 0.400000 +862 2978 0.400000 +862 2980 0.400000 +862 2989 0.400000 +862 3019 0.400000 +862 3047 0.400000 +862 3051 0.400000 +862 3125 0.400000 +863 34 0.400000 +863 76 0.400000 +863 206 0.400000 +863 220 0.400000 +863 282 0.400000 +863 346 0.400000 +863 349 0.400000 +863 380 0.400000 +863 439 0.400000 +863 440 0.400000 +863 451 0.400000 +863 502 0.400000 +863 567 0.400000 +863 586 0.400000 +863 603 0.400000 +863 781 0.400000 +863 808 0.400000 +863 822 0.400000 +863 851 0.400000 +863 872 0.400000 +863 945 0.400000 +863 983 0.400000 +863 1110 0.400000 +863 1150 0.400000 +863 1169 0.400000 +863 1294 0.400000 +863 1340 0.400000 +863 1405 0.400000 +863 1457 0.400000 +863 1654 0.400000 +863 1658 0.400000 +863 1686 0.400000 +863 1701 0.400000 +863 1775 0.400000 +863 1804 0.400000 +863 1811 0.400000 +863 1839 0.400000 +863 1931 0.400000 +863 1971 0.400000 +863 2048 0.400000 +863 2071 0.400000 +863 2094 0.400000 +863 2212 0.400000 +863 2272 0.400000 +863 2293 0.400000 +863 2303 0.400000 +863 2334 0.400000 +863 2344 0.400000 +863 2405 0.400000 +863 2412 0.400000 +863 2464 0.400000 +863 2467 0.400000 +863 2514 0.400000 +863 2549 0.400000 +863 2624 0.400000 +863 2632 0.400000 +863 2680 0.400000 +863 2759 0.400000 +863 2929 0.400000 +863 2977 0.400000 +863 3077 0.400000 +864 1 0.400000 +864 77 0.400000 +864 85 0.400000 +864 99 0.400000 +864 218 0.400000 +864 254 0.400000 +864 286 0.400000 +864 350 0.400000 +864 375 0.400000 +864 431 0.400000 +864 484 0.400000 +864 488 0.400000 +864 545 0.400000 +864 580 0.400000 +864 652 0.400000 +864 654 0.400000 +864 745 0.400000 +864 779 0.400000 +864 799 0.400000 +864 812 0.400000 +864 827 0.400000 +864 883 0.400000 +864 913 0.400000 +864 928 0.400000 +864 1001 0.400000 +864 1022 0.400000 +864 1058 0.400000 +864 1222 0.400000 +864 1229 0.400000 +864 1253 0.400000 +864 1257 0.400000 +864 1275 0.400000 +864 1308 0.400000 +864 1339 0.400000 +864 1369 0.400000 +864 1400 0.400000 +864 1436 0.400000 +864 1510 0.400000 +864 1537 0.400000 +864 1624 0.400000 +864 1657 0.400000 +864 1740 0.400000 +864 1752 0.400000 +864 1876 0.400000 +864 1891 0.400000 +864 1904 0.400000 +864 1911 0.400000 +864 2024 0.400000 +864 2093 0.400000 +864 2106 0.400000 +864 2176 0.400000 +864 2181 0.400000 +864 2196 0.400000 +864 2276 0.400000 +864 2298 0.400000 +864 2341 0.400000 +864 2399 0.400000 +864 2403 0.400000 +864 2421 0.400000 +864 2458 0.400000 +864 2515 0.400000 +864 2554 0.400000 +864 2581 0.400000 +864 2603 0.400000 +864 2636 0.400000 +864 2711 0.400000 +864 2757 0.400000 +864 2804 0.400000 +864 2865 0.400000 +864 2879 0.400000 +864 2916 0.400000 +864 3147 0.400000 +865 7 0.400000 +865 127 0.400000 +865 314 0.400000 +865 338 0.400000 +865 406 0.400000 +865 487 0.400000 +865 544 0.400000 +865 599 0.400000 +865 616 0.400000 +865 628 0.400000 +865 644 0.400000 +865 700 0.400000 +865 763 0.400000 +865 770 0.400000 +865 773 0.400000 +865 804 0.400000 +865 815 0.400000 +865 895 0.400000 +865 951 0.400000 +865 953 0.400000 +865 1075 0.400000 +865 1175 0.400000 +865 1197 0.400000 +865 1291 0.400000 +865 1379 0.400000 +865 1438 0.400000 +865 1501 0.400000 +865 1553 0.400000 +865 1668 0.400000 +865 1722 0.400000 +865 1734 0.400000 +865 1746 0.400000 +865 1752 0.400000 +865 1831 0.400000 +865 1869 0.400000 +865 1919 0.400000 +865 1922 0.400000 +865 1932 0.400000 +865 2044 0.400000 +865 2052 0.400000 +865 2082 0.400000 +865 2142 0.400000 +865 2149 0.400000 +865 2160 0.400000 +865 2208 0.400000 +865 2235 0.400000 +865 2243 0.400000 +865 2254 0.400000 +865 2264 0.400000 +865 2267 0.400000 +865 2320 0.400000 +865 2345 0.400000 +865 2515 0.400000 +865 2556 0.400000 +865 2674 0.400000 +865 2742 0.400000 +865 2759 0.400000 +865 2773 0.400000 +865 2810 0.400000 +865 2878 0.400000 +865 2928 0.400000 +865 3010 0.400000 +865 3018 0.400000 +865 3097 0.400000 +865 3129 0.400000 +865 3190 0.400000 +866 154 0.400000 +866 183 0.400000 +866 221 0.400000 +866 271 0.400000 +866 343 0.400000 +866 486 0.400000 +866 489 0.400000 +866 498 0.400000 +866 500 0.400000 +866 539 0.400000 +866 567 0.400000 +866 606 0.400000 +866 622 0.400000 +866 653 0.400000 +866 992 0.400000 +866 1040 0.400000 +866 1063 0.400000 +866 1097 0.400000 +866 1201 0.400000 +866 1305 0.400000 +866 1336 0.400000 +866 1372 0.400000 +866 1398 0.400000 +866 1415 0.400000 +866 1428 0.400000 +866 1475 0.400000 +866 1533 0.400000 +866 1575 0.400000 +866 1589 0.400000 +866 1703 0.400000 +866 1789 0.400000 +866 1849 0.400000 +866 1939 0.400000 +866 1960 0.400000 +866 1983 0.400000 +866 2105 0.400000 +866 2113 0.400000 +866 2120 0.400000 +866 2161 0.400000 +866 2169 0.400000 +866 2252 0.400000 +866 2344 0.400000 +866 2379 0.400000 +866 2433 0.400000 +866 2467 0.400000 +866 2499 0.400000 +866 2561 0.400000 +866 2565 0.400000 +866 2611 0.400000 +866 2623 0.400000 +866 2667 0.400000 +866 2700 0.400000 +866 2712 0.400000 +866 2811 0.400000 +866 2819 0.400000 +866 2830 0.400000 +866 2837 0.400000 +866 2856 0.400000 +866 2878 0.400000 +866 2885 0.400000 +866 2945 0.400000 +866 3069 0.400000 +866 3197 0.400000 +867 65 0.400000 +867 114 0.400000 +867 141 0.400000 +867 208 0.400000 +867 215 0.400000 +867 384 0.400000 +867 432 0.400000 +867 472 0.400000 +867 485 0.400000 +867 511 0.400000 +867 537 0.400000 +867 621 0.400000 +867 623 0.400000 +867 656 0.400000 +867 683 0.400000 +867 813 0.400000 +867 924 0.400000 +867 953 0.400000 +867 979 0.400000 +867 1038 0.400000 +867 1080 0.400000 +867 1093 0.400000 +867 1116 0.400000 +867 1143 0.400000 +867 1154 0.400000 +867 1219 0.400000 +867 1220 0.400000 +867 1234 0.400000 +867 1236 0.400000 +867 1312 0.400000 +867 1414 0.400000 +867 1427 0.400000 +867 1430 0.400000 +867 1503 0.400000 +867 1517 0.400000 +867 1520 0.400000 +867 1552 0.400000 +867 1665 0.400000 +867 1714 0.400000 +867 1749 0.400000 +867 1851 0.400000 +867 1952 0.400000 +867 2098 0.400000 +867 2121 0.400000 +867 2211 0.400000 +867 2333 0.400000 +867 2345 0.400000 +867 2386 0.400000 +867 2463 0.400000 +867 2471 0.400000 +867 2504 0.400000 +867 2527 0.400000 +867 2543 0.400000 +867 2581 0.400000 +867 2634 0.400000 +867 2636 0.400000 +867 2643 0.400000 +867 2663 0.400000 +867 2680 0.400000 +867 3152 0.400000 +868 22 0.400000 +868 45 0.400000 +868 48 0.400000 +868 66 0.400000 +868 106 0.400000 +868 109 0.400000 +868 113 0.400000 +868 115 0.400000 +868 189 0.400000 +868 196 0.400000 +868 206 0.400000 +868 246 0.400000 +868 257 0.400000 +868 264 0.400000 +868 348 0.400000 +868 378 0.400000 +868 419 0.400000 +868 421 0.400000 +868 538 0.400000 +868 610 0.400000 +868 619 0.400000 +868 621 0.400000 +868 684 0.400000 +868 707 0.400000 +868 733 0.400000 +868 776 0.400000 +868 867 0.400000 +868 917 0.400000 +868 1019 0.400000 +868 1027 0.400000 +868 1126 0.400000 +868 1131 0.400000 +868 1155 0.400000 +868 1169 0.400000 +868 1184 0.400000 +868 1223 0.400000 +868 1282 0.400000 +868 1290 0.400000 +868 1341 0.400000 +868 1393 0.400000 +868 1440 0.400000 +868 1558 0.400000 +868 1563 0.400000 +868 1577 0.400000 +868 1670 0.400000 +868 1672 0.400000 +868 1684 0.400000 +868 1692 0.400000 +868 1788 0.400000 +868 1887 0.400000 +868 1928 0.400000 +868 1976 0.400000 +868 2043 0.400000 +868 2058 0.400000 +868 2140 0.400000 +868 2177 0.400000 +868 2196 0.400000 +868 2239 0.400000 +868 2241 0.400000 +868 2255 0.400000 +868 2269 0.400000 +868 2271 0.400000 +868 2297 0.400000 +868 2416 0.400000 +868 2600 0.400000 +868 2601 0.400000 +868 2637 0.400000 +868 2726 0.400000 +868 2757 0.400000 +868 2788 0.400000 +868 2802 0.400000 +868 2807 0.400000 +868 2838 0.400000 +868 3028 0.400000 +868 3064 0.400000 +868 3143 0.400000 +868 3184 0.400000 +869 39 0.400000 +869 135 0.400000 +869 202 0.400000 +869 227 0.400000 +869 261 0.400000 +869 379 0.400000 +869 465 0.400000 +869 498 0.400000 +869 535 0.400000 +869 596 0.400000 +869 599 0.400000 +869 706 0.400000 +869 765 0.400000 +869 771 0.400000 +869 856 0.400000 +869 873 0.400000 +869 907 0.400000 +869 914 0.400000 +869 918 0.400000 +869 1019 0.400000 +869 1078 0.400000 +869 1275 0.400000 +869 1276 0.400000 +869 1299 0.400000 +869 1303 0.400000 +869 1365 0.400000 +869 1457 0.400000 +869 1471 0.400000 +869 1489 0.400000 +869 1787 0.400000 +869 1788 0.400000 +869 1874 0.400000 +869 1932 0.400000 +869 2049 0.400000 +869 2085 0.400000 +869 2157 0.400000 +869 2209 0.400000 +869 2297 0.400000 +869 2355 0.400000 +869 2407 0.400000 +869 2417 0.400000 +869 2458 0.400000 +869 2508 0.400000 +869 2525 0.400000 +869 2542 0.400000 +869 2563 0.400000 +869 2635 0.400000 +869 2685 0.400000 +869 2723 0.400000 +869 2741 0.400000 +869 2799 0.400000 +869 2932 0.400000 +869 2951 0.400000 +869 3040 0.400000 +869 3094 0.400000 +869 3139 0.400000 +869 3169 0.400000 +870 2 0.400000 +870 59 0.400000 +870 63 0.400000 +870 158 0.400000 +870 267 0.400000 +870 282 0.400000 +870 298 0.400000 +870 300 0.400000 +870 320 0.400000 +870 390 0.400000 +870 476 0.400000 +870 507 0.400000 +870 525 0.400000 +870 575 0.400000 +870 640 0.400000 +870 665 0.400000 +870 837 0.400000 +870 864 0.400000 +870 872 0.400000 +870 875 0.400000 +870 904 0.400000 +870 910 0.400000 +870 932 0.400000 +870 1119 0.400000 +870 1145 0.400000 +870 1245 0.400000 +870 1270 0.400000 +870 1280 0.400000 +870 1284 0.400000 +870 1411 0.400000 +870 1474 0.400000 +870 1496 0.400000 +870 1521 0.400000 +870 1602 0.400000 +870 1924 0.400000 +870 1947 0.400000 +870 1953 0.400000 +870 2078 0.400000 +870 2148 0.400000 +870 2167 0.400000 +870 2173 0.400000 +870 2191 0.400000 +870 2235 0.400000 +870 2284 0.400000 +870 2301 0.400000 +870 2391 0.400000 +870 2475 0.400000 +870 2479 0.400000 +870 2506 0.400000 +870 2716 0.400000 +870 2759 0.400000 +870 2770 0.400000 +870 2811 0.400000 +870 2856 0.400000 +870 2862 0.400000 +870 2913 0.400000 +870 2950 0.400000 +870 3010 0.400000 +870 3013 0.400000 +870 3016 0.400000 +870 3194 0.400000 +871 3 0.400000 +871 4 0.400000 +871 9 0.400000 +871 11 0.400000 +871 26 0.400000 +871 41 0.400000 +871 54 0.400000 +871 81 0.400000 +871 146 0.400000 +871 265 0.400000 +871 277 0.400000 +871 313 0.400000 +871 346 0.400000 +871 356 0.400000 +871 455 0.400000 +871 586 0.400000 +871 747 0.400000 +871 849 0.400000 +871 854 0.400000 +871 855 0.400000 +871 860 0.400000 +871 989 0.400000 +871 993 0.400000 +871 1047 0.400000 +871 1081 0.400000 +871 1093 0.400000 +871 1117 0.400000 +871 1125 0.400000 +871 1218 0.400000 +871 1246 0.400000 +871 1417 0.400000 +871 1418 0.400000 +871 1421 0.400000 +871 1456 0.400000 +871 1468 0.400000 +871 1491 0.400000 +871 1534 0.400000 +871 1546 0.400000 +871 1566 0.400000 +871 1640 0.400000 +871 1648 0.400000 +871 1776 0.400000 +871 1849 0.400000 +871 1980 0.400000 +871 1982 0.400000 +871 2020 0.400000 +871 2023 0.400000 +871 2049 0.400000 +871 2276 0.400000 +871 2298 0.400000 +871 2383 0.400000 +871 2428 0.400000 +871 2518 0.400000 +871 2535 0.400000 +871 2650 0.400000 +871 2662 0.400000 +871 2690 0.400000 +871 2710 0.400000 +871 2761 0.400000 +871 2824 0.400000 +871 2835 0.400000 +871 2847 0.400000 +871 2889 0.400000 +871 2893 0.400000 +871 2925 0.400000 +871 3086 0.400000 +871 3120 0.400000 +871 3143 0.400000 +872 15 0.400000 +872 54 0.400000 +872 99 0.400000 +872 170 0.400000 +872 223 0.400000 +872 272 0.400000 +872 332 0.400000 +872 338 0.400000 +872 410 0.400000 +872 481 0.400000 +872 514 0.400000 +872 524 0.400000 +872 679 0.400000 +872 689 0.400000 +872 698 0.400000 +872 765 0.400000 +872 876 0.400000 +872 945 0.400000 +872 961 0.400000 +872 964 0.400000 +872 990 0.400000 +872 1091 0.400000 +872 1114 0.400000 +872 1116 0.400000 +872 1134 0.400000 +872 1225 0.400000 +872 1309 0.400000 +872 1331 0.400000 +872 1342 0.400000 +872 1346 0.400000 +872 1354 0.400000 +872 1423 0.400000 +872 1464 0.400000 +872 1492 0.400000 +872 1576 0.400000 +872 1590 0.400000 +872 1603 0.400000 +872 1618 0.400000 +872 1661 0.400000 +872 1727 0.400000 +872 1839 0.400000 +872 1945 0.400000 +872 2037 0.400000 +872 2200 0.400000 +872 2224 0.400000 +872 2229 0.400000 +872 2241 0.400000 +872 2248 0.400000 +872 2271 0.400000 +872 2358 0.400000 +872 2380 0.400000 +872 2394 0.400000 +872 2487 0.400000 +872 2528 0.400000 +872 2532 0.400000 +872 2536 0.400000 +872 2575 0.400000 +872 2681 0.400000 +872 2706 0.400000 +872 2803 0.400000 +872 2822 0.400000 +872 2985 0.400000 +872 3012 0.400000 +872 3031 0.400000 +872 3106 0.400000 +872 3191 0.400000 +873 38 0.400000 +873 44 0.400000 +873 49 0.400000 +873 59 0.400000 +873 137 0.400000 +873 152 0.400000 +873 165 0.400000 +873 227 0.400000 +873 240 0.400000 +873 272 0.400000 +873 351 0.400000 +873 364 0.400000 +873 395 0.400000 +873 397 0.400000 +873 467 0.400000 +873 524 0.400000 +873 531 0.400000 +873 538 0.400000 +873 609 0.400000 +873 739 0.400000 +873 820 0.400000 +873 876 0.400000 +873 879 0.400000 +873 889 0.400000 +873 936 0.400000 +873 1117 0.400000 +873 1148 0.400000 +873 1169 0.400000 +873 1193 0.400000 +873 1243 0.400000 +873 1313 0.400000 +873 1329 0.400000 +873 1333 0.400000 +873 1359 0.400000 +873 1500 0.400000 +873 1712 0.400000 +873 1785 0.400000 +873 1795 0.400000 +873 1802 0.400000 +873 1864 0.400000 +873 1887 0.400000 +873 1930 0.400000 +873 1955 0.400000 +873 1990 0.400000 +873 1996 0.400000 +873 1998 0.400000 +873 2013 0.400000 +873 2020 0.400000 +873 2063 0.400000 +873 2116 0.400000 +873 2155 0.400000 +873 2223 0.400000 +873 2237 0.400000 +873 2243 0.400000 +873 2298 0.400000 +873 2360 0.400000 +873 2367 0.400000 +873 2419 0.400000 +873 2483 0.400000 +873 2484 0.400000 +873 2490 0.400000 +873 2596 0.400000 +873 2682 0.400000 +873 2736 0.400000 +873 2802 0.400000 +873 2824 0.400000 +873 2850 0.400000 +873 2869 0.400000 +873 2897 0.400000 +873 2983 0.400000 +873 2993 0.400000 +873 3005 0.400000 +873 3027 0.400000 +873 3057 0.400000 +873 3063 0.400000 +873 3079 0.400000 +873 3096 0.400000 +873 3122 0.400000 +873 3128 0.400000 +873 3140 0.400000 +874 109 0.400000 +874 143 0.400000 +874 183 0.400000 +874 187 0.400000 +874 372 0.400000 +874 416 0.400000 +874 428 0.400000 +874 438 0.400000 +874 444 0.400000 +874 472 0.400000 +874 533 0.400000 +874 556 0.400000 +874 613 0.400000 +874 637 0.400000 +874 642 0.400000 +874 712 0.400000 +874 778 0.400000 +874 783 0.400000 +874 847 0.400000 +874 866 0.400000 +874 916 0.400000 +874 992 0.400000 +874 1041 0.400000 +874 1063 0.400000 +874 1064 0.400000 +874 1179 0.400000 +874 1210 0.400000 +874 1250 0.400000 +874 1315 0.400000 +874 1342 0.400000 +874 1456 0.400000 +874 1490 0.400000 +874 1502 0.400000 +874 1574 0.400000 +874 1679 0.400000 +874 1875 0.400000 +874 1898 0.400000 +874 1913 0.400000 +874 1915 0.400000 +874 1939 0.400000 +874 1957 0.400000 +874 1991 0.400000 +874 1992 0.400000 +874 2035 0.400000 +874 2124 0.400000 +874 2189 0.400000 +874 2196 0.400000 +874 2254 0.400000 +874 2276 0.400000 +874 2358 0.400000 +874 2402 0.400000 +874 2473 0.400000 +874 2513 0.400000 +874 2518 0.400000 +874 2550 0.400000 +874 2575 0.400000 +874 2615 0.400000 +874 2670 0.400000 +874 2709 0.400000 +874 2792 0.400000 +874 2795 0.400000 +874 2854 0.400000 +874 2864 0.400000 +874 2890 0.400000 +874 2926 0.400000 +874 2951 0.400000 +874 3021 0.400000 +874 3067 0.400000 +874 3106 0.400000 +874 3130 0.400000 +874 3139 0.400000 +874 3200 0.400000 +875 17 0.400000 +875 49 0.400000 +875 72 0.400000 +875 107 0.400000 +875 173 0.400000 +875 225 0.400000 +875 229 0.400000 +875 324 0.400000 +875 370 0.400000 +875 433 0.400000 +875 436 0.400000 +875 516 0.400000 +875 543 0.400000 +875 649 0.400000 +875 670 0.400000 +875 714 0.400000 +875 760 0.400000 +875 766 0.400000 +875 950 0.400000 +875 952 0.400000 +875 968 0.400000 +875 1152 0.400000 +875 1273 0.400000 +875 1358 0.400000 +875 1412 0.400000 +875 1461 0.400000 +875 1476 0.400000 +875 1530 0.400000 +875 1562 0.400000 +875 1711 0.400000 +875 1725 0.400000 +875 1765 0.400000 +875 1902 0.400000 +875 1904 0.400000 +875 1911 0.400000 +875 1915 0.400000 +875 1963 0.400000 +875 1984 0.400000 +875 1986 0.400000 +875 2004 0.400000 +875 2066 0.400000 +875 2099 0.400000 +875 2102 0.400000 +875 2141 0.400000 +875 2178 0.400000 +875 2257 0.400000 +875 2285 0.400000 +875 2298 0.400000 +875 2390 0.400000 +875 2508 0.400000 +875 2534 0.400000 +875 2581 0.400000 +875 2661 0.400000 +875 2721 0.400000 +875 2776 0.400000 +875 2905 0.400000 +875 2936 0.400000 +875 2938 0.400000 +875 2952 0.400000 +875 2967 0.400000 +875 3018 0.400000 +875 3054 0.400000 +875 3062 0.400000 +875 3095 0.400000 +875 3155 0.400000 +875 3163 0.400000 +876 7 0.400000 +876 51 0.400000 +876 102 0.400000 +876 106 0.400000 +876 126 0.400000 +876 317 0.400000 +876 328 0.400000 +876 330 0.400000 +876 331 0.400000 +876 366 0.400000 +876 379 0.400000 +876 381 0.400000 +876 482 0.400000 +876 539 0.400000 +876 555 0.400000 +876 602 0.400000 +876 623 0.400000 +876 637 0.400000 +876 705 0.400000 +876 746 0.400000 +876 798 0.400000 +876 799 0.400000 +876 828 0.400000 +876 849 0.400000 +876 905 0.400000 +876 914 0.400000 +876 924 0.400000 +876 1211 0.400000 +876 1271 0.400000 +876 1274 0.400000 +876 1309 0.400000 +876 1320 0.400000 +876 1332 0.400000 +876 1384 0.400000 +876 1475 0.400000 +876 1522 0.400000 +876 1582 0.400000 +876 1749 0.400000 +876 1786 0.400000 +876 1787 0.400000 +876 1824 0.400000 +876 1826 0.400000 +876 1989 0.400000 +876 2012 0.400000 +876 2034 0.400000 +876 2087 0.400000 +876 2091 0.400000 +876 2099 0.400000 +876 2120 0.400000 +876 2124 0.400000 +876 2131 0.400000 +876 2139 0.400000 +876 2166 0.400000 +876 2187 0.400000 +876 2234 0.400000 +876 2383 0.400000 +876 2407 0.400000 +876 2543 0.400000 +876 2589 0.400000 +876 2649 0.400000 +876 2703 0.400000 +876 2709 0.400000 +876 2777 0.400000 +876 2846 0.400000 +876 2854 0.400000 +876 2899 0.400000 +876 2904 0.400000 +876 2934 0.400000 +876 2963 0.400000 +876 2990 0.400000 +876 3017 0.400000 +876 3036 0.400000 +876 3108 0.400000 +877 3 0.400000 +877 99 0.400000 +877 183 0.400000 +877 185 0.400000 +877 190 0.400000 +877 256 0.400000 +877 285 0.400000 +877 302 0.400000 +877 303 0.400000 +877 442 0.400000 +877 447 0.400000 +877 498 0.400000 +877 510 0.400000 +877 531 0.400000 +877 533 0.400000 +877 602 0.400000 +877 624 0.400000 +877 628 0.400000 +877 738 0.400000 +877 763 0.400000 +877 820 0.400000 +877 906 0.400000 +877 925 0.400000 +877 984 0.400000 +877 1175 0.400000 +877 1184 0.400000 +877 1231 0.400000 +877 1382 0.400000 +877 1421 0.400000 +877 1468 0.400000 +877 1528 0.400000 +877 1541 0.400000 +877 1658 0.400000 +877 1777 0.400000 +877 1791 0.400000 +877 1817 0.400000 +877 1838 0.400000 +877 1908 0.400000 +877 1999 0.400000 +877 2004 0.400000 +877 2014 0.400000 +877 2021 0.400000 +877 2118 0.400000 +877 2122 0.400000 +877 2125 0.400000 +877 2137 0.400000 +877 2198 0.400000 +877 2209 0.400000 +877 2350 0.400000 +877 2558 0.400000 +877 2568 0.400000 +877 2654 0.400000 +877 2663 0.400000 +877 2748 0.400000 +877 2838 0.400000 +877 2851 0.400000 +877 2885 0.400000 +877 2909 0.400000 +877 2913 0.400000 +877 2925 0.400000 +877 2969 0.400000 +877 2988 0.400000 +877 3007 0.400000 +877 3026 0.400000 +877 3052 0.400000 +877 3058 0.400000 +877 3117 0.400000 +877 3142 0.400000 +877 3170 0.400000 +878 12 0.400000 +878 88 0.400000 +878 121 0.400000 +878 198 0.400000 +878 246 0.400000 +878 294 0.400000 +878 308 0.400000 +878 333 0.400000 +878 575 0.400000 +878 668 0.400000 +878 697 0.400000 +878 815 0.400000 +878 838 0.400000 +878 894 0.400000 +878 943 0.400000 +878 975 0.400000 +878 988 0.400000 +878 993 0.400000 +878 1076 0.400000 +878 1082 0.400000 +878 1108 0.400000 +878 1206 0.400000 +878 1274 0.400000 +878 1284 0.400000 +878 1363 0.400000 +878 1426 0.400000 +878 1507 0.400000 +878 1609 0.400000 +878 1636 0.400000 +878 1649 0.400000 +878 1675 0.400000 +878 1706 0.400000 +878 1744 0.400000 +878 1757 0.400000 +878 1815 0.400000 +878 1872 0.400000 +878 1893 0.400000 +878 2145 0.400000 +878 2189 0.400000 +878 2196 0.400000 +878 2209 0.400000 +878 2297 0.400000 +878 2314 0.400000 +878 2398 0.400000 +878 2442 0.400000 +878 2482 0.400000 +878 2768 0.400000 +878 2850 0.400000 +878 2879 0.400000 +878 2951 0.400000 +878 2996 0.400000 +878 3062 0.400000 +878 3076 0.400000 +878 3078 0.400000 +878 3174 0.400000 +879 21 0.400000 +879 109 0.400000 +879 150 0.400000 +879 183 0.400000 +879 197 0.400000 +879 239 0.400000 +879 330 0.400000 +879 404 0.400000 +879 431 0.400000 +879 441 0.400000 +879 461 0.400000 +879 496 0.400000 +879 515 0.400000 +879 586 0.400000 +879 648 0.400000 +879 674 0.400000 +879 714 0.400000 +879 723 0.400000 +879 867 0.400000 +879 880 0.400000 +879 943 0.400000 +879 1004 0.400000 +879 1015 0.400000 +879 1054 0.400000 +879 1083 0.400000 +879 1161 0.400000 +879 1266 0.400000 +879 1434 0.400000 +879 1495 0.400000 +879 1563 0.400000 +879 1588 0.400000 +879 1611 0.400000 +879 1630 0.400000 +879 1659 0.400000 +879 1676 0.400000 +879 1809 0.400000 +879 1845 0.400000 +879 2010 0.400000 +879 2118 0.400000 +879 2143 0.400000 +879 2163 0.400000 +879 2390 0.400000 +879 2412 0.400000 +879 2464 0.400000 +879 2502 0.400000 +879 2505 0.400000 +879 2588 0.400000 +879 2601 0.400000 +879 2802 0.400000 +879 2872 0.400000 +879 2955 0.400000 +879 2988 0.400000 +879 3067 0.400000 +879 3116 0.400000 +879 3118 0.400000 +879 3147 0.400000 +879 3174 0.400000 +880 117 0.400000 +880 233 0.400000 +880 305 0.400000 +880 339 0.400000 +880 381 0.400000 +880 522 0.400000 +880 593 0.400000 +880 650 0.400000 +880 763 0.400000 +880 853 0.400000 +880 860 0.400000 +880 940 0.400000 +880 1103 0.400000 +880 1154 0.400000 +880 1233 0.400000 +880 1234 0.400000 +880 1265 0.400000 +880 1321 0.400000 +880 1364 0.400000 +880 1517 0.400000 +880 1575 0.400000 +880 1648 0.400000 +880 1715 0.400000 +880 1724 0.400000 +880 1730 0.400000 +880 1745 0.400000 +880 1762 0.400000 +880 1773 0.400000 +880 1787 0.400000 +880 1828 0.400000 +880 1866 0.400000 +880 1945 0.400000 +880 1954 0.400000 +880 2045 0.400000 +880 2083 0.400000 +880 2109 0.400000 +880 2198 0.400000 +880 2201 0.400000 +880 2268 0.400000 +880 2285 0.400000 +880 2324 0.400000 +880 2455 0.400000 +880 2699 0.400000 +880 2722 0.400000 +880 2798 0.400000 +880 2819 0.400000 +880 2831 0.400000 +880 2961 0.400000 +880 3037 0.400000 +880 3102 0.400000 +880 3135 0.400000 +880 3157 0.400000 +880 3165 0.400000 +880 3168 0.400000 +880 3190 0.400000 +880 3195 0.400000 +880 3199 0.400000 +881 7 0.400000 +881 34 0.400000 +881 150 0.400000 +881 160 0.400000 +881 163 0.400000 +881 180 0.400000 +881 201 0.400000 +881 449 0.400000 +881 497 0.400000 +881 529 0.400000 +881 547 0.400000 +881 610 0.400000 +881 641 0.400000 +881 803 0.400000 +881 835 0.400000 +881 899 0.400000 +881 918 0.400000 +881 943 0.400000 +881 947 0.400000 +881 1118 0.400000 +881 1138 0.400000 +881 1155 0.400000 +881 1167 0.400000 +881 1208 0.400000 +881 1215 0.400000 +881 1289 0.400000 +881 1353 0.400000 +881 1396 0.400000 +881 1448 0.400000 +881 1549 0.400000 +881 1569 0.400000 +881 1582 0.400000 +881 1586 0.400000 +881 1671 0.400000 +881 1676 0.400000 +881 1770 0.400000 +881 1840 0.400000 +881 1919 0.400000 +881 1948 0.400000 +881 1976 0.400000 +881 2015 0.400000 +881 2037 0.400000 +881 2042 0.400000 +881 2064 0.400000 +881 2310 0.400000 +881 2320 0.400000 +881 2405 0.400000 +881 2582 0.400000 +881 2645 0.400000 +881 2703 0.400000 +881 2709 0.400000 +881 2731 0.400000 +881 2808 0.400000 +881 2862 0.400000 +881 2918 0.400000 +881 2926 0.400000 +881 3010 0.400000 +881 3139 0.400000 +881 3181 0.400000 +881 3183 0.400000 +881 3190 0.400000 +881 3195 0.400000 +882 88 0.400000 +882 146 0.400000 +882 148 0.400000 +882 158 0.400000 +882 178 0.400000 +882 192 0.400000 +882 243 0.400000 +882 249 0.400000 +882 328 0.400000 +882 345 0.400000 +882 479 0.400000 +882 567 0.400000 +882 671 0.400000 +882 673 0.400000 +882 674 0.400000 +882 693 0.400000 +882 737 0.400000 +882 742 0.400000 +882 793 0.400000 +882 807 0.400000 +882 840 0.400000 +882 864 0.400000 +882 886 0.400000 +882 896 0.400000 +882 905 0.400000 +882 1053 0.400000 +882 1088 0.400000 +882 1211 0.400000 +882 1230 0.400000 +882 1233 0.400000 +882 1259 0.400000 +882 1282 0.400000 +882 1334 0.400000 +882 1341 0.400000 +882 1344 0.400000 +882 1428 0.400000 +882 1548 0.400000 +882 1592 0.400000 +882 1604 0.400000 +882 1640 0.400000 +882 1731 0.400000 +882 1789 0.400000 +882 1795 0.400000 +882 1821 0.400000 +882 1888 0.400000 +882 1890 0.400000 +882 1894 0.400000 +882 1929 0.400000 +882 2012 0.400000 +882 2083 0.400000 +882 2122 0.400000 +882 2145 0.400000 +882 2166 0.400000 +882 2184 0.400000 +882 2266 0.400000 +882 2423 0.400000 +882 2446 0.400000 +882 2519 0.400000 +882 2529 0.400000 +882 2571 0.400000 +882 2580 0.400000 +882 2599 0.400000 +882 2615 0.400000 +882 2624 0.400000 +882 2766 0.400000 +882 2774 0.400000 +882 2922 0.400000 +882 2970 0.400000 +882 2980 0.400000 +882 2991 0.400000 +882 3004 0.400000 +882 3040 0.400000 +882 3048 0.400000 +882 3065 0.400000 +882 3073 0.400000 +882 3085 0.400000 +882 3153 0.400000 +882 3157 0.400000 +882 3165 0.400000 +882 3193 0.400000 +883 68 0.400000 +883 76 0.400000 +883 98 0.400000 +883 167 0.400000 +883 277 0.400000 +883 362 0.400000 +883 551 0.400000 +883 602 0.400000 +883 668 0.400000 +883 724 0.400000 +883 739 0.400000 +883 821 0.400000 +883 829 0.400000 +883 941 0.400000 +883 1114 0.400000 +883 1132 0.400000 +883 1171 0.400000 +883 1234 0.400000 +883 1282 0.400000 +883 1332 0.400000 +883 1351 0.400000 +883 1362 0.400000 +883 1549 0.400000 +883 1580 0.400000 +883 1590 0.400000 +883 1660 0.400000 +883 1690 0.400000 +883 1693 0.400000 +883 1820 0.400000 +883 1863 0.400000 +883 1880 0.400000 +883 1927 0.400000 +883 1932 0.400000 +883 1934 0.400000 +883 1941 0.400000 +883 2002 0.400000 +883 2004 0.400000 +883 2130 0.400000 +883 2232 0.400000 +883 2343 0.400000 +883 2397 0.400000 +883 2523 0.400000 +883 2539 0.400000 +883 2575 0.400000 +883 2646 0.400000 +883 2682 0.400000 +883 2735 0.400000 +883 2739 0.400000 +883 2834 0.400000 +883 2851 0.400000 +883 2883 0.400000 +883 2912 0.400000 +883 2921 0.400000 +883 2951 0.400000 +883 3060 0.400000 +883 3105 0.400000 +883 3122 0.400000 +883 3171 0.400000 +883 3199 0.400000 +884 9 0.400000 +884 67 0.400000 +884 135 0.400000 +884 176 0.400000 +884 190 0.400000 +884 217 0.400000 +884 218 0.400000 +884 247 0.400000 +884 252 0.400000 +884 345 0.400000 +884 347 0.400000 +884 368 0.400000 +884 531 0.400000 +884 542 0.400000 +884 549 0.400000 +884 563 0.400000 +884 564 0.400000 +884 609 0.400000 +884 614 0.400000 +884 618 0.400000 +884 655 0.400000 +884 741 0.400000 +884 822 0.400000 +884 827 0.400000 +884 849 0.400000 +884 965 0.400000 +884 981 0.400000 +884 1013 0.400000 +884 1020 0.400000 +884 1022 0.400000 +884 1048 0.400000 +884 1145 0.400000 +884 1154 0.400000 +884 1231 0.400000 +884 1232 0.400000 +884 1267 0.400000 +884 1390 0.400000 +884 1485 0.400000 +884 1494 0.400000 +884 1549 0.400000 +884 1550 0.400000 +884 1571 0.400000 +884 1583 0.400000 +884 1633 0.400000 +884 1645 0.400000 +884 1650 0.400000 +884 1678 0.400000 +884 1693 0.400000 +884 1787 0.400000 +884 1870 0.400000 +884 1898 0.400000 +884 1988 0.400000 +884 2000 0.400000 +884 2013 0.400000 +884 2058 0.400000 +884 2075 0.400000 +884 2085 0.400000 +884 2088 0.400000 +884 2146 0.400000 +884 2223 0.400000 +884 2298 0.400000 +884 2314 0.400000 +884 2315 0.400000 +884 2441 0.400000 +884 2485 0.400000 +884 2489 0.400000 +884 2665 0.400000 +884 2696 0.400000 +884 2715 0.400000 +884 2737 0.400000 +884 2751 0.400000 +884 2839 0.400000 +884 2889 0.400000 +884 2892 0.400000 +884 2941 0.400000 +884 2960 0.400000 +884 3068 0.400000 +885 79 0.400000 +885 99 0.400000 +885 124 0.400000 +885 171 0.400000 +885 265 0.400000 +885 306 0.400000 +885 478 0.400000 +885 575 0.400000 +885 729 0.400000 +885 866 0.400000 +885 937 0.400000 +885 948 0.400000 +885 970 0.400000 +885 976 0.400000 +885 1099 0.400000 +885 1114 0.400000 +885 1115 0.400000 +885 1201 0.400000 +885 1241 0.400000 +885 1249 0.400000 +885 1314 0.400000 +885 1333 0.400000 +885 1413 0.400000 +885 1420 0.400000 +885 1431 0.400000 +885 1444 0.400000 +885 1511 0.400000 +885 1659 0.400000 +885 1725 0.400000 +885 1755 0.400000 +885 1765 0.400000 +885 1821 0.400000 +885 1947 0.400000 +885 1962 0.400000 +885 1966 0.400000 +885 1986 0.400000 +885 1991 0.400000 +885 2029 0.400000 +885 2054 0.400000 +885 2061 0.400000 +885 2096 0.400000 +885 2113 0.400000 +885 2144 0.400000 +885 2164 0.400000 +885 2188 0.400000 +885 2220 0.400000 +885 2284 0.400000 +885 2308 0.400000 +885 2356 0.400000 +885 2376 0.400000 +885 2423 0.400000 +885 2522 0.400000 +885 2532 0.400000 +885 2574 0.400000 +885 2590 0.400000 +885 2632 0.400000 +885 2658 0.400000 +885 2660 0.400000 +885 2680 0.400000 +885 2762 0.400000 +885 2763 0.400000 +885 2776 0.400000 +885 2883 0.400000 +885 2969 0.400000 +885 3016 0.400000 +885 3034 0.400000 +885 3110 0.400000 +886 50 0.400000 +886 98 0.400000 +886 236 0.400000 +886 247 0.400000 +886 347 0.400000 +886 357 0.400000 +886 412 0.400000 +886 417 0.400000 +886 448 0.400000 +886 474 0.400000 +886 483 0.400000 +886 640 0.400000 +886 740 0.400000 +886 769 0.400000 +886 816 0.400000 +886 833 0.400000 +886 847 0.400000 +886 894 0.400000 +886 908 0.400000 +886 910 0.400000 +886 948 0.400000 +886 974 0.400000 +886 1014 0.400000 +886 1047 0.400000 +886 1171 0.400000 +886 1226 0.400000 +886 1278 0.400000 +886 1281 0.400000 +886 1285 0.400000 +886 1331 0.400000 +886 1379 0.400000 +886 1494 0.400000 +886 1578 0.400000 +886 1593 0.400000 +886 1678 0.400000 +886 1716 0.400000 +886 1738 0.400000 +886 1880 0.400000 +886 1899 0.400000 +886 1902 0.400000 +886 2035 0.400000 +886 2051 0.400000 +886 2116 0.400000 +886 2256 0.400000 +886 2267 0.400000 +886 2323 0.400000 +886 2461 0.400000 +886 2621 0.400000 +886 2721 0.400000 +886 2741 0.400000 +886 2757 0.400000 +886 2799 0.400000 +886 2815 0.400000 +886 2831 0.400000 +886 2934 0.400000 +886 3050 0.400000 +886 3123 0.400000 +886 3173 0.400000 +887 37 0.400000 +887 85 0.400000 +887 214 0.400000 +887 244 0.400000 +887 245 0.400000 +887 314 0.400000 +887 339 0.400000 +887 346 0.400000 +887 378 0.400000 +887 399 0.400000 +887 407 0.400000 +887 491 0.400000 +887 513 0.400000 +887 515 0.400000 +887 581 0.400000 +887 583 0.400000 +887 599 0.400000 +887 607 0.400000 +887 629 0.400000 +887 642 0.400000 +887 738 0.400000 +887 849 0.400000 +887 922 0.400000 +887 963 0.400000 +887 972 0.400000 +887 1051 0.400000 +887 1078 0.400000 +887 1084 0.400000 +887 1146 0.400000 +887 1175 0.400000 +887 1208 0.400000 +887 1261 0.400000 +887 1272 0.400000 +887 1273 0.400000 +887 1337 0.400000 +887 1379 0.400000 +887 1415 0.400000 +887 1458 0.400000 +887 1474 0.400000 +887 1566 0.400000 +887 1665 0.400000 +887 1721 0.400000 +887 1746 0.400000 +887 1755 0.400000 +887 1775 0.400000 +887 1782 0.400000 +887 1784 0.400000 +887 1803 0.400000 +887 1805 0.400000 +887 1885 0.400000 +887 1967 0.400000 +887 1994 0.400000 +887 2077 0.400000 +887 2096 0.400000 +887 2113 0.400000 +887 2133 0.400000 +887 2151 0.400000 +887 2193 0.400000 +887 2239 0.400000 +887 2270 0.400000 +887 2281 0.400000 +887 2283 0.400000 +887 2285 0.400000 +887 2289 0.400000 +887 2356 0.400000 +887 2365 0.400000 +887 2374 0.400000 +887 2391 0.400000 +887 2461 0.400000 +887 2506 0.400000 +887 2711 0.400000 +887 2878 0.400000 +887 2888 0.400000 +887 2923 0.400000 +887 2948 0.400000 +887 2959 0.400000 +887 3038 0.400000 +887 3054 0.400000 +887 3095 0.400000 +887 3139 0.400000 +887 3197 0.400000 +888 53 0.400000 +888 108 0.400000 +888 122 0.400000 +888 201 0.400000 +888 254 0.400000 +888 261 0.400000 +888 275 0.400000 +888 325 0.400000 +888 341 0.400000 +888 352 0.400000 +888 424 0.400000 +888 460 0.400000 +888 525 0.400000 +888 547 0.400000 +888 563 0.400000 +888 732 0.400000 +888 774 0.400000 +888 801 0.400000 +888 829 0.400000 +888 916 0.400000 +888 963 0.400000 +888 1017 0.400000 +888 1018 0.400000 +888 1020 0.400000 +888 1035 0.400000 +888 1073 0.400000 +888 1136 0.400000 +888 1139 0.400000 +888 1216 0.400000 +888 1246 0.400000 +888 1254 0.400000 +888 1280 0.400000 +888 1296 0.400000 +888 1301 0.400000 +888 1311 0.400000 +888 1314 0.400000 +888 1317 0.400000 +888 1348 0.400000 +888 1430 0.400000 +888 1464 0.400000 +888 1591 0.400000 +888 1643 0.400000 +888 1694 0.400000 +888 1716 0.400000 +888 1744 0.400000 +888 1759 0.400000 +888 1800 0.400000 +888 1842 0.400000 +888 1843 0.400000 +888 1845 0.400000 +888 1900 0.400000 +888 2091 0.400000 +888 2121 0.400000 +888 2214 0.400000 +888 2266 0.400000 +888 2294 0.400000 +888 2314 0.400000 +888 2370 0.400000 +888 2414 0.400000 +888 2448 0.400000 +888 2737 0.400000 +888 2777 0.400000 +888 2802 0.400000 +888 2963 0.400000 +888 2976 0.400000 +888 3025 0.400000 +888 3033 0.400000 +888 3048 0.400000 +888 3131 0.400000 +888 3181 0.400000 +889 8 0.400000 +889 22 0.400000 +889 35 0.400000 +889 62 0.400000 +889 152 0.400000 +889 214 0.400000 +889 345 0.400000 +889 364 0.400000 +889 378 0.400000 +889 453 0.400000 +889 481 0.400000 +889 493 0.400000 +889 561 0.400000 +889 619 0.400000 +889 648 0.400000 +889 673 0.400000 +889 682 0.400000 +889 733 0.400000 +889 754 0.400000 +889 772 0.400000 +889 787 0.400000 +889 808 0.400000 +889 842 0.400000 +889 857 0.400000 +889 888 0.400000 +889 889 0.400000 +889 948 0.400000 +889 953 0.400000 +889 976 0.400000 +889 977 0.400000 +889 984 0.400000 +889 1002 0.400000 +889 1068 0.400000 +889 1124 0.400000 +889 1168 0.400000 +889 1180 0.400000 +889 1257 0.400000 +889 1301 0.400000 +889 1335 0.400000 +889 1361 0.400000 +889 1387 0.400000 +889 1474 0.400000 +889 1489 0.400000 +889 1545 0.400000 +889 1553 0.400000 +889 1581 0.400000 +889 1583 0.400000 +889 1597 0.400000 +889 1624 0.400000 +889 1713 0.400000 +889 1748 0.400000 +889 1775 0.400000 +889 1818 0.400000 +889 1842 0.400000 +889 1953 0.400000 +889 2077 0.400000 +889 2081 0.400000 +889 2110 0.400000 +889 2172 0.400000 +889 2215 0.400000 +889 2239 0.400000 +889 2264 0.400000 +889 2380 0.400000 +889 2460 0.400000 +889 2527 0.400000 +889 2537 0.400000 +889 2586 0.400000 +889 2592 0.400000 +889 2596 0.400000 +889 2721 0.400000 +889 2749 0.400000 +889 2768 0.400000 +889 2775 0.400000 +889 2868 0.400000 +889 2991 0.400000 +889 3013 0.400000 +889 3110 0.400000 +889 3120 0.400000 +889 3200 0.400000 +890 26 0.400000 +890 50 0.400000 +890 91 0.400000 +890 96 0.400000 +890 105 0.400000 +890 133 0.400000 +890 135 0.400000 +890 233 0.400000 +890 280 0.400000 +890 302 0.400000 +890 305 0.400000 +890 472 0.400000 +890 507 0.400000 +890 512 0.400000 +890 545 0.400000 +890 555 0.400000 +890 636 0.400000 +890 665 0.400000 +890 683 0.400000 +890 744 0.400000 +890 776 0.400000 +890 815 0.400000 +890 846 0.400000 +890 856 0.400000 +890 868 0.400000 +890 899 0.400000 +890 919 0.400000 +890 961 0.400000 +890 1014 0.400000 +890 1028 0.400000 +890 1089 0.400000 +890 1106 0.400000 +890 1122 0.400000 +890 1128 0.400000 +890 1142 0.400000 +890 1143 0.400000 +890 1240 0.400000 +890 1390 0.400000 +890 1414 0.400000 +890 1581 0.400000 +890 1584 0.400000 +890 1619 0.400000 +890 1642 0.400000 +890 1677 0.400000 +890 1718 0.400000 +890 1764 0.400000 +890 1897 0.400000 +890 1927 0.400000 +890 1991 0.400000 +890 2083 0.400000 +890 2213 0.400000 +890 2236 0.400000 +890 2333 0.400000 +890 2412 0.400000 +890 2470 0.400000 +890 2474 0.400000 +890 2704 0.400000 +890 2707 0.400000 +890 2749 0.400000 +890 2808 0.400000 +890 2847 0.400000 +890 2879 0.400000 +890 2886 0.400000 +890 2908 0.400000 +890 2935 0.400000 +890 2998 0.400000 +890 3000 0.400000 +890 3001 0.400000 +890 3007 0.400000 +890 3076 0.400000 +890 3125 0.400000 +890 3162 0.400000 +891 75 0.400000 +891 111 0.400000 +891 147 0.400000 +891 160 0.400000 +891 264 0.400000 +891 295 0.400000 +891 376 0.400000 +891 386 0.400000 +891 502 0.400000 +891 518 0.400000 +891 544 0.400000 +891 586 0.400000 +891 597 0.400000 +891 728 0.400000 +891 731 0.400000 +891 824 0.400000 +891 871 0.400000 +891 983 0.400000 +891 1026 0.400000 +891 1027 0.400000 +891 1043 0.400000 +891 1071 0.400000 +891 1116 0.400000 +891 1148 0.400000 +891 1198 0.400000 +891 1328 0.400000 +891 1346 0.400000 +891 1388 0.400000 +891 1483 0.400000 +891 1522 0.400000 +891 1624 0.400000 +891 1643 0.400000 +891 1656 0.400000 +891 1717 0.400000 +891 1759 0.400000 +891 1846 0.400000 +891 2076 0.400000 +891 2084 0.400000 +891 2129 0.400000 +891 2175 0.400000 +891 2261 0.400000 +891 2335 0.400000 +891 2353 0.400000 +891 2464 0.400000 +891 2475 0.400000 +891 2497 0.400000 +891 2503 0.400000 +891 2536 0.400000 +891 2552 0.400000 +891 2632 0.400000 +891 2634 0.400000 +891 2647 0.400000 +891 2661 0.400000 +891 2701 0.400000 +891 2738 0.400000 +891 2747 0.400000 +891 2807 0.400000 +891 2875 0.400000 +891 2982 0.400000 +891 3028 0.400000 +891 3077 0.400000 +891 3079 0.400000 +891 3140 0.400000 +891 3154 0.400000 +892 48 0.400000 +892 62 0.400000 +892 101 0.400000 +892 135 0.400000 +892 178 0.400000 +892 221 0.400000 +892 304 0.400000 +892 378 0.400000 +892 458 0.400000 +892 472 0.400000 +892 490 0.400000 +892 557 0.400000 +892 593 0.400000 +892 601 0.400000 +892 613 0.400000 +892 721 0.400000 +892 729 0.400000 +892 890 0.400000 +892 899 0.400000 +892 977 0.400000 +892 1059 0.400000 +892 1112 0.400000 +892 1167 0.400000 +892 1192 0.400000 +892 1230 0.400000 +892 1254 0.400000 +892 1351 0.400000 +892 1507 0.400000 +892 1515 0.400000 +892 1533 0.400000 +892 1563 0.400000 +892 1603 0.400000 +892 1643 0.400000 +892 1743 0.400000 +892 1849 0.400000 +892 1864 0.400000 +892 1918 0.400000 +892 1982 0.400000 +892 2025 0.400000 +892 2109 0.400000 +892 2189 0.400000 +892 2206 0.400000 +892 2219 0.400000 +892 2273 0.400000 +892 2295 0.400000 +892 2377 0.400000 +892 2459 0.400000 +892 2463 0.400000 +892 2573 0.400000 +892 2577 0.400000 +892 2579 0.400000 +892 2649 0.400000 +892 2725 0.400000 +892 2734 0.400000 +892 2748 0.400000 +892 2767 0.400000 +892 2813 0.400000 +892 2847 0.400000 +892 2885 0.400000 +892 2907 0.400000 +892 2910 0.400000 +892 2933 0.400000 +892 2981 0.400000 +892 3125 0.400000 +892 3193 0.400000 +893 28 0.400000 +893 36 0.400000 +893 77 0.400000 +893 90 0.400000 +893 95 0.400000 +893 112 0.400000 +893 158 0.400000 +893 523 0.400000 +893 546 0.400000 +893 547 0.400000 +893 779 0.400000 +893 826 0.400000 +893 832 0.400000 +893 843 0.400000 +893 942 0.400000 +893 980 0.400000 +893 984 0.400000 +893 987 0.400000 +893 994 0.400000 +893 1001 0.400000 +893 1107 0.400000 +893 1169 0.400000 +893 1181 0.400000 +893 1187 0.400000 +893 1251 0.400000 +893 1329 0.400000 +893 1343 0.400000 +893 1353 0.400000 +893 1371 0.400000 +893 1422 0.400000 +893 1452 0.400000 +893 1516 0.400000 +893 1552 0.400000 +893 1612 0.400000 +893 1762 0.400000 +893 1946 0.400000 +893 1951 0.400000 +893 1962 0.400000 +893 1989 0.400000 +893 2041 0.400000 +893 2050 0.400000 +893 2084 0.400000 +893 2174 0.400000 +893 2175 0.400000 +893 2209 0.400000 +893 2224 0.400000 +893 2258 0.400000 +893 2323 0.400000 +893 2561 0.400000 +893 2753 0.400000 +893 2781 0.400000 +893 2859 0.400000 +893 2882 0.400000 +893 2883 0.400000 +893 2911 0.400000 +893 2942 0.400000 +894 25 0.400000 +894 46 0.400000 +894 72 0.400000 +894 93 0.400000 +894 197 0.400000 +894 338 0.400000 +894 351 0.400000 +894 401 0.400000 +894 418 0.400000 +894 461 0.400000 +894 597 0.400000 +894 607 0.400000 +894 614 0.400000 +894 630 0.400000 +894 669 0.400000 +894 715 0.400000 +894 753 0.400000 +894 803 0.400000 +894 806 0.400000 +894 854 0.400000 +894 881 0.400000 +894 892 0.400000 +894 933 0.400000 +894 959 0.400000 +894 982 0.400000 +894 1004 0.400000 +894 1006 0.400000 +894 1054 0.400000 +894 1085 0.400000 +894 1128 0.400000 +894 1134 0.400000 +894 1177 0.400000 +894 1258 0.400000 +894 1306 0.400000 +894 1391 0.400000 +894 1449 0.400000 +894 1472 0.400000 +894 1544 0.400000 +894 1564 0.400000 +894 1569 0.400000 +894 1654 0.400000 +894 1701 0.400000 +894 1765 0.400000 +894 1834 0.400000 +894 1857 0.400000 +894 1877 0.400000 +894 1885 0.400000 +894 1953 0.400000 +894 2002 0.400000 +894 2017 0.400000 +894 2032 0.400000 +894 2113 0.400000 +894 2307 0.400000 +894 2335 0.400000 +894 2356 0.400000 +894 2389 0.400000 +894 2420 0.400000 +894 2516 0.400000 +894 2535 0.400000 +894 2553 0.400000 +894 2575 0.400000 +894 2584 0.400000 +894 2647 0.400000 +894 2814 0.400000 +894 2872 0.400000 +894 2903 0.400000 +894 2958 0.400000 +894 3004 0.400000 +894 3087 0.400000 +894 3113 0.400000 +894 3137 0.400000 +894 3142 0.400000 +894 3157 0.400000 +895 6 0.400000 +895 7 0.400000 +895 115 0.400000 +895 134 0.400000 +895 137 0.400000 +895 186 0.400000 +895 212 0.400000 +895 312 0.400000 +895 378 0.400000 +895 417 0.400000 +895 471 0.400000 +895 493 0.400000 +895 514 0.400000 +895 626 0.400000 +895 670 0.400000 +895 723 0.400000 +895 809 0.400000 +895 870 0.400000 +895 903 0.400000 +895 967 0.400000 +895 1090 0.400000 +895 1099 0.400000 +895 1117 0.400000 +895 1157 0.400000 +895 1197 0.400000 +895 1318 0.400000 +895 1333 0.400000 +895 1338 0.400000 +895 1362 0.400000 +895 1507 0.400000 +895 1566 0.400000 +895 1594 0.400000 +895 1684 0.400000 +895 1777 0.400000 +895 1800 0.400000 +895 2006 0.400000 +895 2067 0.400000 +895 2110 0.400000 +895 2130 0.400000 +895 2135 0.400000 +895 2222 0.400000 +895 2227 0.400000 +895 2382 0.400000 +895 2387 0.400000 +895 2391 0.400000 +895 2438 0.400000 +895 2488 0.400000 +895 2544 0.400000 +895 2549 0.400000 +895 2557 0.400000 +895 2590 0.400000 +895 2606 0.400000 +895 2638 0.400000 +895 2669 0.400000 +895 2670 0.400000 +895 2671 0.400000 +895 2715 0.400000 +895 2768 0.400000 +895 2790 0.400000 +895 2808 0.400000 +895 2821 0.400000 +895 2888 0.400000 +895 2895 0.400000 +895 2949 0.400000 +895 3103 0.400000 +896 12 0.400000 +896 16 0.400000 +896 38 0.400000 +896 40 0.400000 +896 74 0.400000 +896 83 0.400000 +896 126 0.400000 +896 370 0.400000 +896 372 0.400000 +896 426 0.400000 +896 436 0.400000 +896 502 0.400000 +896 505 0.400000 +896 511 0.400000 +896 629 0.400000 +896 662 0.400000 +896 685 0.400000 +896 827 0.400000 +896 853 0.400000 +896 857 0.400000 +896 910 0.400000 +896 938 0.400000 +896 961 0.400000 +896 962 0.400000 +896 969 0.400000 +896 985 0.400000 +896 1002 0.400000 +896 1033 0.400000 +896 1181 0.400000 +896 1187 0.400000 +896 1202 0.400000 +896 1232 0.400000 +896 1236 0.400000 +896 1253 0.400000 +896 1261 0.400000 +896 1279 0.400000 +896 1299 0.400000 +896 1337 0.400000 +896 1425 0.400000 +896 1432 0.400000 +896 1437 0.400000 +896 1513 0.400000 +896 1517 0.400000 +896 1535 0.400000 +896 1559 0.400000 +896 1668 0.400000 +896 1735 0.400000 +896 1765 0.400000 +896 1797 0.400000 +896 1799 0.400000 +896 1853 0.400000 +896 1862 0.400000 +896 1887 0.400000 +896 1977 0.400000 +896 2005 0.400000 +896 2113 0.400000 +896 2197 0.400000 +896 2234 0.400000 +896 2242 0.400000 +896 2282 0.400000 +896 2362 0.400000 +896 2471 0.400000 +896 2483 0.400000 +896 2572 0.400000 +896 2612 0.400000 +896 2631 0.400000 +896 2808 0.400000 +896 2824 0.400000 +896 2826 0.400000 +896 2884 0.400000 +896 2892 0.400000 +896 2933 0.400000 +896 2966 0.400000 +896 3003 0.400000 +896 3145 0.400000 +897 59 0.400000 +897 108 0.400000 +897 109 0.400000 +897 177 0.400000 +897 254 0.400000 +897 270 0.400000 +897 427 0.400000 +897 452 0.400000 +897 457 0.400000 +897 519 0.400000 +897 604 0.400000 +897 701 0.400000 +897 732 0.400000 +897 762 0.400000 +897 1023 0.400000 +897 1090 0.400000 +897 1103 0.400000 +897 1189 0.400000 +897 1207 0.400000 +897 1261 0.400000 +897 1278 0.400000 +897 1341 0.400000 +897 1393 0.400000 +897 1443 0.400000 +897 1464 0.400000 +897 1471 0.400000 +897 1516 0.400000 +897 1523 0.400000 +897 1537 0.400000 +897 1578 0.400000 +897 1649 0.400000 +897 1673 0.400000 +897 1700 0.400000 +897 1714 0.400000 +897 1729 0.400000 +897 1730 0.400000 +897 1774 0.400000 +897 1787 0.400000 +897 1844 0.400000 +897 1859 0.400000 +897 1861 0.400000 +897 1864 0.400000 +897 1879 0.400000 +897 2016 0.400000 +897 2118 0.400000 +897 2188 0.400000 +897 2195 0.400000 +897 2210 0.400000 +897 2259 0.400000 +897 2263 0.400000 +897 2279 0.400000 +897 2346 0.400000 +897 2402 0.400000 +897 2530 0.400000 +897 2537 0.400000 +897 2548 0.400000 +897 2552 0.400000 +897 2558 0.400000 +897 2671 0.400000 +897 2674 0.400000 +897 2718 0.400000 +897 2768 0.400000 +897 2856 0.400000 +897 2967 0.400000 +897 3015 0.400000 +897 3107 0.400000 +897 3149 0.400000 +898 50 0.400000 +898 142 0.400000 +898 261 0.400000 +898 360 0.400000 +898 365 0.400000 +898 401 0.400000 +898 433 0.400000 +898 495 0.400000 +898 548 0.400000 +898 635 0.400000 +898 652 0.400000 +898 669 0.400000 +898 690 0.400000 +898 764 0.400000 +898 794 0.400000 +898 796 0.400000 +898 799 0.400000 +898 812 0.400000 +898 815 0.400000 +898 1036 0.400000 +898 1067 0.400000 +898 1085 0.400000 +898 1151 0.400000 +898 1172 0.400000 +898 1198 0.400000 +898 1225 0.400000 +898 1334 0.400000 +898 1371 0.400000 +898 1378 0.400000 +898 1425 0.400000 +898 1481 0.400000 +898 1611 0.400000 +898 1624 0.400000 +898 1746 0.400000 +898 1811 0.400000 +898 1822 0.400000 +898 1859 0.400000 +898 1887 0.400000 +898 2045 0.400000 +898 2050 0.400000 +898 2088 0.400000 +898 2157 0.400000 +898 2321 0.400000 +898 2366 0.400000 +898 2497 0.400000 +898 2582 0.400000 +898 2588 0.400000 +898 2707 0.400000 +898 2723 0.400000 +898 2744 0.400000 +898 2759 0.400000 +898 2766 0.400000 +898 2866 0.400000 +898 2934 0.400000 +898 2971 0.400000 +898 3013 0.400000 +898 3172 0.400000 +899 269 0.400000 +899 392 0.400000 +899 410 0.400000 +899 577 0.400000 +899 604 0.400000 +899 626 0.400000 +899 716 0.400000 +899 742 0.400000 +899 806 0.400000 +899 829 0.400000 +899 852 0.400000 +899 935 0.400000 +899 953 0.400000 +899 1129 0.400000 +899 1140 0.400000 +899 1162 0.400000 +899 1173 0.400000 +899 1204 0.400000 +899 1291 0.400000 +899 1316 0.400000 +899 1319 0.400000 +899 1432 0.400000 +899 1461 0.400000 +899 1468 0.400000 +899 1517 0.400000 +899 1578 0.400000 +899 1662 0.400000 +899 1695 0.400000 +899 1711 0.400000 +899 1738 0.400000 +899 1740 0.400000 +899 1783 0.400000 +899 1787 0.400000 +899 1804 0.400000 +899 1820 0.400000 +899 2002 0.400000 +899 2042 0.400000 +899 2181 0.400000 +899 2192 0.400000 +899 2210 0.400000 +899 2222 0.400000 +899 2385 0.400000 +899 2480 0.400000 +899 2531 0.400000 +899 2588 0.400000 +899 2626 0.400000 +899 2658 0.400000 +899 2682 0.400000 +899 2734 0.400000 +899 2802 0.400000 +899 2863 0.400000 +899 2994 0.400000 +899 3021 0.400000 +899 3091 0.400000 +900 153 0.400000 +900 222 0.400000 +900 307 0.400000 +900 329 0.400000 +900 380 0.400000 +900 390 0.400000 +900 429 0.400000 +900 518 0.400000 +900 556 0.400000 +900 759 0.400000 +900 773 0.400000 +900 842 0.400000 +900 856 0.400000 +900 944 0.400000 +900 962 0.400000 +900 1097 0.400000 +900 1098 0.400000 +900 1130 0.400000 +900 1135 0.400000 +900 1259 0.400000 +900 1260 0.400000 +900 1424 0.400000 +900 1471 0.400000 +900 1490 0.400000 +900 1498 0.400000 +900 1529 0.400000 +900 1534 0.400000 +900 1660 0.400000 +900 1696 0.400000 +900 1733 0.400000 +900 1867 0.400000 +900 1881 0.400000 +900 1905 0.400000 +900 1910 0.400000 +900 2144 0.400000 +900 2210 0.400000 +900 2251 0.400000 +900 2289 0.400000 +900 2318 0.400000 +900 2387 0.400000 +900 2517 0.400000 +900 2534 0.400000 +900 2568 0.400000 +900 2576 0.400000 +900 2590 0.400000 +900 2591 0.400000 +900 2593 0.400000 +900 2612 0.400000 +900 2628 0.400000 +900 2705 0.400000 +900 2729 0.400000 +900 2776 0.400000 +900 2807 0.400000 +900 2835 0.400000 +900 2857 0.400000 +900 2879 0.400000 +900 2903 0.400000 +900 2928 0.400000 +900 2936 0.400000 +900 2958 0.400000 +900 3014 0.400000 +900 3030 0.400000 +900 3074 0.400000 +900 3131 0.400000 +901 70 0.400000 +901 216 0.400000 +901 255 0.400000 +901 327 0.400000 +901 337 0.400000 +901 353 0.400000 +901 383 0.400000 +901 387 0.400000 +901 515 0.400000 +901 637 0.400000 +901 655 0.400000 +901 710 0.400000 +901 793 0.400000 +901 821 0.400000 +901 869 0.400000 +901 902 0.400000 +901 962 0.400000 +901 1046 0.400000 +901 1066 0.400000 +901 1086 0.400000 +901 1110 0.400000 +901 1188 0.400000 +901 1220 0.400000 +901 1257 0.400000 +901 1267 0.400000 +901 1290 0.400000 +901 1432 0.400000 +901 1444 0.400000 +901 1666 0.400000 +901 1680 0.400000 +901 1757 0.400000 +901 1785 0.400000 +901 1863 0.400000 +901 1912 0.400000 +901 1935 0.400000 +901 2035 0.400000 +901 2071 0.400000 +901 2194 0.400000 +901 2225 0.400000 +901 2258 0.400000 +901 2306 0.400000 +901 2338 0.400000 +901 2358 0.400000 +901 2360 0.400000 +901 2368 0.400000 +901 2440 0.400000 +901 2444 0.400000 +901 2464 0.400000 +901 2590 0.400000 +901 2615 0.400000 +901 2682 0.400000 +901 2684 0.400000 +901 2700 0.400000 +901 2889 0.400000 +901 2892 0.400000 +901 2944 0.400000 +901 2983 0.400000 +901 3064 0.400000 +901 3073 0.400000 +901 3077 0.400000 +901 3097 0.400000 +901 3098 0.400000 +901 3152 0.400000 +901 3200 0.400000 +902 29 0.400000 +902 147 0.400000 +902 237 0.400000 +902 240 0.400000 +902 274 0.400000 +902 285 0.400000 +902 292 0.400000 +902 403 0.400000 +902 468 0.400000 +902 493 0.400000 +902 513 0.400000 +902 628 0.400000 +902 686 0.400000 +902 726 0.400000 +902 758 0.400000 +902 951 0.400000 +902 966 0.400000 +902 982 0.400000 +902 1034 0.400000 +902 1044 0.400000 +902 1075 0.400000 +902 1099 0.400000 +902 1121 0.400000 +902 1125 0.400000 +902 1141 0.400000 +902 1195 0.400000 +902 1325 0.400000 +902 1350 0.400000 +902 1435 0.400000 +902 1559 0.400000 +902 1565 0.400000 +902 1577 0.400000 +902 1663 0.400000 +902 1699 0.400000 +902 1762 0.400000 +902 1786 0.400000 +902 1836 0.400000 +902 1877 0.400000 +902 1935 0.400000 +902 2037 0.400000 +902 2078 0.400000 +902 2234 0.400000 +902 2244 0.400000 +902 2268 0.400000 +902 2350 0.400000 +902 2428 0.400000 +902 2479 0.400000 +902 2497 0.400000 +902 2603 0.400000 +902 2612 0.400000 +902 2655 0.400000 +902 2677 0.400000 +902 2753 0.400000 +902 2828 0.400000 +902 2946 0.400000 +902 3105 0.400000 +902 3190 0.400000 +903 8 0.400000 +903 94 0.400000 +903 235 0.400000 +903 291 0.400000 +903 344 0.400000 +903 386 0.400000 +903 402 0.400000 +903 451 0.400000 +903 489 0.400000 +903 516 0.400000 +903 523 0.400000 +903 531 0.400000 +903 553 0.400000 +903 558 0.400000 +903 613 0.400000 +903 673 0.400000 +903 708 0.400000 +903 731 0.400000 +903 763 0.400000 +903 773 0.400000 +903 790 0.400000 +903 835 0.400000 +903 846 0.400000 +903 857 0.400000 +903 869 0.400000 +903 883 0.400000 +903 888 0.400000 +903 901 0.400000 +903 913 0.400000 +903 952 0.400000 +903 972 0.400000 +903 1016 0.400000 +903 1116 0.400000 +903 1142 0.400000 +903 1145 0.400000 +903 1205 0.400000 +903 1240 0.400000 +903 1244 0.400000 +903 1378 0.400000 +903 1461 0.400000 +903 1509 0.400000 +903 1543 0.400000 +903 1569 0.400000 +903 1586 0.400000 +903 1598 0.400000 +903 1703 0.400000 +903 1731 0.400000 +903 1820 0.400000 +903 1831 0.400000 +903 1948 0.400000 +903 1975 0.400000 +903 2060 0.400000 +903 2073 0.400000 +903 2081 0.400000 +903 2091 0.400000 +903 2262 0.400000 +903 2295 0.400000 +903 2400 0.400000 +903 2427 0.400000 +903 2435 0.400000 +903 2506 0.400000 +903 2568 0.400000 +903 2705 0.400000 +903 2781 0.400000 +903 2805 0.400000 +903 2825 0.400000 +903 2958 0.400000 +903 2975 0.400000 +903 3087 0.400000 +903 3119 0.400000 +903 3168 0.400000 +903 3195 0.400000 +904 4 0.400000 +904 44 0.400000 +904 364 0.400000 +904 385 0.400000 +904 400 0.400000 +904 401 0.400000 +904 457 0.400000 +904 462 0.400000 +904 537 0.400000 +904 613 0.400000 +904 625 0.400000 +904 630 0.400000 +904 682 0.400000 +904 779 0.400000 +904 998 0.400000 +904 1002 0.400000 +904 1031 0.400000 +904 1044 0.400000 +904 1055 0.400000 +904 1095 0.400000 +904 1118 0.400000 +904 1183 0.400000 +904 1194 0.400000 +904 1280 0.400000 +904 1284 0.400000 +904 1312 0.400000 +904 1338 0.400000 +904 1421 0.400000 +904 1460 0.400000 +904 1484 0.400000 +904 1502 0.400000 +904 1530 0.400000 +904 1573 0.400000 +904 1658 0.400000 +904 1674 0.400000 +904 1689 0.400000 +904 1722 0.400000 +904 1817 0.400000 +904 1825 0.400000 +904 1836 0.400000 +904 1843 0.400000 +904 1968 0.400000 +904 1977 0.400000 +904 1984 0.400000 +904 2221 0.400000 +904 2313 0.400000 +904 2370 0.400000 +904 2382 0.400000 +904 2426 0.400000 +904 2427 0.400000 +904 2431 0.400000 +904 2440 0.400000 +904 2486 0.400000 +904 2525 0.400000 +904 2570 0.400000 +904 2577 0.400000 +904 2592 0.400000 +904 2673 0.400000 +904 2704 0.400000 +904 2840 0.400000 +904 2864 0.400000 +904 2875 0.400000 +904 3050 0.400000 +905 9 0.400000 +905 44 0.400000 +905 112 0.400000 +905 130 0.400000 +905 153 0.400000 +905 281 0.400000 +905 348 0.400000 +905 398 0.400000 +905 413 0.400000 +905 445 0.400000 +905 503 0.400000 +905 647 0.400000 +905 659 0.400000 +905 726 0.400000 +905 743 0.400000 +905 744 0.400000 +905 802 0.400000 +905 815 0.400000 +905 816 0.400000 +905 871 0.400000 +905 921 0.400000 +905 934 0.400000 +905 946 0.400000 +905 971 0.400000 +905 999 0.400000 +905 1064 0.400000 +905 1090 0.400000 +905 1114 0.400000 +905 1209 0.400000 +905 1230 0.400000 +905 1273 0.400000 +905 1287 0.400000 +905 1308 0.400000 +905 1334 0.400000 +905 1349 0.400000 +905 1357 0.400000 +905 1363 0.400000 +905 1385 0.400000 +905 1418 0.400000 +905 1440 0.400000 +905 1515 0.400000 +905 1525 0.400000 +905 1561 0.400000 +905 1591 0.400000 +905 1597 0.400000 +905 1625 0.400000 +905 1653 0.400000 +905 1659 0.400000 +905 1736 0.400000 +905 1748 0.400000 +905 1855 0.400000 +905 1879 0.400000 +905 2073 0.400000 +905 2144 0.400000 +905 2159 0.400000 +905 2249 0.400000 +905 2280 0.400000 +905 2289 0.400000 +905 2364 0.400000 +905 2472 0.400000 +905 2479 0.400000 +905 2647 0.400000 +905 2702 0.400000 +905 2748 0.400000 +905 2799 0.400000 +905 2826 0.400000 +905 2836 0.400000 +905 2857 0.400000 +905 2859 0.400000 +905 2911 0.400000 +905 2933 0.400000 +905 2962 0.400000 +905 3069 0.400000 +905 3118 0.400000 +905 3154 0.400000 +906 35 0.400000 +906 39 0.400000 +906 143 0.400000 +906 328 0.400000 +906 373 0.400000 +906 406 0.400000 +906 408 0.400000 +906 416 0.400000 +906 427 0.400000 +906 485 0.400000 +906 554 0.400000 +906 562 0.400000 +906 597 0.400000 +906 602 0.400000 +906 658 0.400000 +906 669 0.400000 +906 674 0.400000 +906 798 0.400000 +906 820 0.400000 +906 837 0.400000 +906 885 0.400000 +906 961 0.400000 +906 973 0.400000 +906 1000 0.400000 +906 1042 0.400000 +906 1106 0.400000 +906 1156 0.400000 +906 1177 0.400000 +906 1223 0.400000 +906 1236 0.400000 +906 1274 0.400000 +906 1492 0.400000 +906 1520 0.400000 +906 1564 0.400000 +906 1580 0.400000 +906 1666 0.400000 +906 1677 0.400000 +906 1809 0.400000 +906 1822 0.400000 +906 1851 0.400000 +906 1926 0.400000 +906 1974 0.400000 +906 2030 0.400000 +906 2045 0.400000 +906 2059 0.400000 +906 2421 0.400000 +906 2444 0.400000 +906 2493 0.400000 +906 2514 0.400000 +906 2611 0.400000 +906 2682 0.400000 +906 2772 0.400000 +906 2793 0.400000 +906 2805 0.400000 +906 2914 0.400000 +906 2940 0.400000 +906 2990 0.400000 +906 3032 0.400000 +907 2 0.400000 +907 30 0.400000 +907 35 0.400000 +907 58 0.400000 +907 68 0.400000 +907 81 0.400000 +907 141 0.400000 +907 156 0.400000 +907 314 0.400000 +907 410 0.400000 +907 510 0.400000 +907 570 0.400000 +907 651 0.400000 +907 656 0.400000 +907 670 0.400000 +907 688 0.400000 +907 697 0.400000 +907 810 0.400000 +907 934 0.400000 +907 940 0.400000 +907 955 0.400000 +907 1138 0.400000 +907 1372 0.400000 +907 1438 0.400000 +907 1595 0.400000 +907 1605 0.400000 +907 1667 0.400000 +907 1671 0.400000 +907 1743 0.400000 +907 1822 0.400000 +907 2089 0.400000 +907 2102 0.400000 +907 2158 0.400000 +907 2164 0.400000 +907 2179 0.400000 +907 2212 0.400000 +907 2253 0.400000 +907 2356 0.400000 +907 2402 0.400000 +907 2409 0.400000 +907 2468 0.400000 +907 2490 0.400000 +907 2493 0.400000 +907 2566 0.400000 +907 2627 0.400000 +907 2672 0.400000 +907 2687 0.400000 +907 2881 0.400000 +907 2897 0.400000 +907 2942 0.400000 +907 2992 0.400000 +907 3005 0.400000 +907 3045 0.400000 +907 3109 0.400000 +907 3115 0.400000 +907 3172 0.400000 +907 3192 0.400000 +908 7 0.400000 +908 25 0.400000 +908 38 0.400000 +908 43 0.400000 +908 58 0.400000 +908 121 0.400000 +908 140 0.400000 +908 321 0.400000 +908 385 0.400000 +908 487 0.400000 +908 589 0.400000 +908 652 0.400000 +908 653 0.400000 +908 731 0.400000 +908 933 0.400000 +908 941 0.400000 +908 978 0.400000 +908 1021 0.400000 +908 1059 0.400000 +908 1095 0.400000 +908 1115 0.400000 +908 1150 0.400000 +908 1213 0.400000 +908 1263 0.400000 +908 1265 0.400000 +908 1306 0.400000 +908 1336 0.400000 +908 1523 0.400000 +908 1557 0.400000 +908 1585 0.400000 +908 1588 0.400000 +908 1630 0.400000 +908 1686 0.400000 +908 1718 0.400000 +908 1815 0.400000 +908 1819 0.400000 +908 1927 0.400000 +908 1946 0.400000 +908 1960 0.400000 +908 1972 0.400000 +908 2003 0.400000 +908 2004 0.400000 +908 2054 0.400000 +908 2068 0.400000 +908 2150 0.400000 +908 2174 0.400000 +908 2222 0.400000 +908 2309 0.400000 +908 2415 0.400000 +908 2418 0.400000 +908 2550 0.400000 +908 2610 0.400000 +908 2693 0.400000 +908 2743 0.400000 +908 2746 0.400000 +908 2800 0.400000 +908 2814 0.400000 +908 2855 0.400000 +908 2890 0.400000 +908 2898 0.400000 +908 2904 0.400000 +908 2943 0.400000 +908 2954 0.400000 +908 2970 0.400000 +908 2977 0.400000 +908 3026 0.400000 +908 3119 0.400000 +908 3157 0.400000 +909 45 0.400000 +909 95 0.400000 +909 121 0.400000 +909 179 0.400000 +909 243 0.400000 +909 371 0.400000 +909 461 0.400000 +909 492 0.400000 +909 609 0.400000 +909 646 0.400000 +909 649 0.400000 +909 679 0.400000 +909 972 0.400000 +909 976 0.400000 +909 996 0.400000 +909 1044 0.400000 +909 1045 0.400000 +909 1122 0.400000 +909 1143 0.400000 +909 1248 0.400000 +909 1319 0.400000 +909 1335 0.400000 +909 1343 0.400000 +909 1417 0.400000 +909 1461 0.400000 +909 1467 0.400000 +909 1508 0.400000 +909 1657 0.400000 +909 1672 0.400000 +909 1692 0.400000 +909 1733 0.400000 +909 1769 0.400000 +909 1771 0.400000 +909 1773 0.400000 +909 1783 0.400000 +909 1787 0.400000 +909 1824 0.400000 +909 1838 0.400000 +909 1887 0.400000 +909 1933 0.400000 +909 2082 0.400000 +909 2086 0.400000 +909 2176 0.400000 +909 2201 0.400000 +909 2288 0.400000 +909 2433 0.400000 +909 2580 0.400000 +909 2612 0.400000 +909 2627 0.400000 +909 2647 0.400000 +909 2669 0.400000 +909 2676 0.400000 +909 2762 0.400000 +909 2891 0.400000 +909 2944 0.400000 +909 2994 0.400000 +909 3029 0.400000 +909 3118 0.400000 +909 3137 0.400000 +909 3141 0.400000 +909 3192 0.400000 +910 21 0.400000 +910 65 0.400000 +910 109 0.400000 +910 111 0.400000 +910 120 0.400000 +910 168 0.400000 +910 173 0.400000 +910 177 0.400000 +910 268 0.400000 +910 270 0.400000 +910 283 0.400000 +910 359 0.400000 +910 382 0.400000 +910 430 0.400000 +910 436 0.400000 +910 440 0.400000 +910 447 0.400000 +910 479 0.400000 +910 514 0.400000 +910 526 0.400000 +910 575 0.400000 +910 605 0.400000 +910 662 0.400000 +910 705 0.400000 +910 751 0.400000 +910 873 0.400000 +910 876 0.400000 +910 886 0.400000 +910 977 0.400000 +910 1000 0.400000 +910 1122 0.400000 +910 1169 0.400000 +910 1189 0.400000 +910 1194 0.400000 +910 1218 0.400000 +910 1273 0.400000 +910 1282 0.400000 +910 1337 0.400000 +910 1364 0.400000 +910 1368 0.400000 +910 1418 0.400000 +910 1423 0.400000 +910 1445 0.400000 +910 1460 0.400000 +910 1478 0.400000 +910 1496 0.400000 +910 1553 0.400000 +910 1555 0.400000 +910 1560 0.400000 +910 1707 0.400000 +910 1801 0.400000 +910 1810 0.400000 +910 1817 0.400000 +910 1848 0.400000 +910 1915 0.400000 +910 1949 0.400000 +910 2022 0.400000 +910 2054 0.400000 +910 2096 0.400000 +910 2145 0.400000 +910 2174 0.400000 +910 2281 0.400000 +910 2286 0.400000 +910 2319 0.400000 +910 2356 0.400000 +910 2374 0.400000 +910 2387 0.400000 +910 2645 0.400000 +910 2648 0.400000 +910 2656 0.400000 +910 2685 0.400000 +910 2700 0.400000 +910 2704 0.400000 +910 2723 0.400000 +910 2748 0.400000 +910 2838 0.400000 +910 2901 0.400000 +910 2906 0.400000 +910 2999 0.400000 +911 38 0.400000 +911 48 0.400000 +911 96 0.400000 +911 222 0.400000 +911 254 0.400000 +911 288 0.400000 +911 481 0.400000 +911 489 0.400000 +911 502 0.400000 +911 584 0.400000 +911 614 0.400000 +911 673 0.400000 +911 704 0.400000 +911 725 0.400000 +911 771 0.400000 +911 806 0.400000 +911 896 0.400000 +911 921 0.400000 +911 926 0.400000 +911 971 0.400000 +911 1048 0.400000 +911 1068 0.400000 +911 1118 0.400000 +911 1123 0.400000 +911 1126 0.400000 +911 1130 0.400000 +911 1133 0.400000 +911 1150 0.400000 +911 1190 0.400000 +911 1234 0.400000 +911 1245 0.400000 +911 1246 0.400000 +911 1252 0.400000 +911 1273 0.400000 +911 1278 0.400000 +911 1399 0.400000 +911 1410 0.400000 +911 1510 0.400000 +911 1655 0.400000 +911 1734 0.400000 +911 1787 0.400000 +911 1888 0.400000 +911 1917 0.400000 +911 2024 0.400000 +911 2099 0.400000 +911 2130 0.400000 +911 2214 0.400000 +911 2223 0.400000 +911 2327 0.400000 +911 2523 0.400000 +911 2535 0.400000 +911 2548 0.400000 +911 2549 0.400000 +911 2641 0.400000 +911 2678 0.400000 +911 2767 0.400000 +911 2773 0.400000 +911 2850 0.400000 +911 2868 0.400000 +911 2911 0.400000 +911 2914 0.400000 +911 2981 0.400000 +911 2984 0.400000 +911 3038 0.400000 +911 3082 0.400000 +911 3096 0.400000 +911 3131 0.400000 +911 3162 0.400000 +912 129 0.400000 +912 191 0.400000 +912 220 0.400000 +912 290 0.400000 +912 387 0.400000 +912 426 0.400000 +912 437 0.400000 +912 444 0.400000 +912 572 0.400000 +912 598 0.400000 +912 606 0.400000 +912 617 0.400000 +912 647 0.400000 +912 671 0.400000 +912 681 0.400000 +912 783 0.400000 +912 809 0.400000 +912 942 0.400000 +912 973 0.400000 +912 1010 0.400000 +912 1011 0.400000 +912 1041 0.400000 +912 1072 0.400000 +912 1090 0.400000 +912 1110 0.400000 +912 1160 0.400000 +912 1170 0.400000 +912 1178 0.400000 +912 1180 0.400000 +912 1254 0.400000 +912 1300 0.400000 +912 1346 0.400000 +912 1406 0.400000 +912 1410 0.400000 +912 1411 0.400000 +912 1453 0.400000 +912 1475 0.400000 +912 1568 0.400000 +912 1570 0.400000 +912 1666 0.400000 +912 1755 0.400000 +912 1862 0.400000 +912 1880 0.400000 +912 1893 0.400000 +912 1993 0.400000 +912 1998 0.400000 +912 2070 0.400000 +912 2085 0.400000 +912 2146 0.400000 +912 2154 0.400000 +912 2156 0.400000 +912 2157 0.400000 +912 2189 0.400000 +912 2224 0.400000 +912 2272 0.400000 +912 2362 0.400000 +912 2430 0.400000 +912 2466 0.400000 +912 2581 0.400000 +912 2755 0.400000 +912 2756 0.400000 +912 2834 0.400000 +912 2847 0.400000 +912 2946 0.400000 +912 3073 0.400000 +912 3106 0.400000 +912 3129 0.400000 +912 3132 0.400000 +912 3200 0.400000 +913 34 0.400000 +913 35 0.400000 +913 38 0.400000 +913 50 0.400000 +913 88 0.400000 +913 119 0.400000 +913 132 0.400000 +913 242 0.400000 +913 247 0.400000 +913 279 0.400000 +913 305 0.400000 +913 331 0.400000 +913 482 0.400000 +913 626 0.400000 +913 703 0.400000 +913 715 0.400000 +913 752 0.400000 +913 776 0.400000 +913 789 0.400000 +913 909 0.400000 +913 927 0.400000 +913 962 0.400000 +913 985 0.400000 +913 1112 0.400000 +913 1172 0.400000 +913 1206 0.400000 +913 1274 0.400000 +913 1279 0.400000 +913 1306 0.400000 +913 1333 0.400000 +913 1351 0.400000 +913 1519 0.400000 +913 1546 0.400000 +913 1574 0.400000 +913 1601 0.400000 +913 1654 0.400000 +913 1683 0.400000 +913 1694 0.400000 +913 1707 0.400000 +913 1755 0.400000 +913 1780 0.400000 +913 1856 0.400000 +913 1880 0.400000 +913 1956 0.400000 +913 1962 0.400000 +913 2022 0.400000 +913 2024 0.400000 +913 2158 0.400000 +913 2177 0.400000 +913 2264 0.400000 +913 2367 0.400000 +913 2544 0.400000 +913 2550 0.400000 +913 2668 0.400000 +913 2704 0.400000 +913 2721 0.400000 +913 2732 0.400000 +913 2769 0.400000 +913 2897 0.400000 +913 3065 0.400000 +913 3090 0.400000 +914 38 0.400000 +914 127 0.400000 +914 206 0.400000 +914 223 0.400000 +914 241 0.400000 +914 315 0.400000 +914 358 0.400000 +914 388 0.400000 +914 485 0.400000 +914 490 0.400000 +914 508 0.400000 +914 527 0.400000 +914 607 0.400000 +914 615 0.400000 +914 620 0.400000 +914 681 0.400000 +914 712 0.400000 +914 742 0.400000 +914 743 0.400000 +914 776 0.400000 +914 780 0.400000 +914 824 0.400000 +914 865 0.400000 +914 962 0.400000 +914 968 0.400000 +914 1126 0.400000 +914 1255 0.400000 +914 1320 0.400000 +914 1364 0.400000 +914 1418 0.400000 +914 1420 0.400000 +914 1422 0.400000 +914 1466 0.400000 +914 1500 0.400000 +914 1579 0.400000 +914 1621 0.400000 +914 1700 0.400000 +914 1865 0.400000 +914 1920 0.400000 +914 1921 0.400000 +914 2065 0.400000 +914 2066 0.400000 +914 2111 0.400000 +914 2247 0.400000 +914 2261 0.400000 +914 2340 0.400000 +914 2342 0.400000 +914 2385 0.400000 +914 2397 0.400000 +914 2417 0.400000 +914 2536 0.400000 +914 2661 0.400000 +914 2704 0.400000 +914 2724 0.400000 +914 2779 0.400000 +914 2782 0.400000 +914 2790 0.400000 +914 2844 0.400000 +914 2958 0.400000 +914 2981 0.400000 +914 3003 0.400000 +914 3008 0.400000 +914 3041 0.400000 +914 3052 0.400000 +915 9 0.400000 +915 50 0.400000 +915 110 0.400000 +915 131 0.400000 +915 135 0.400000 +915 193 0.400000 +915 206 0.400000 +915 258 0.400000 +915 347 0.400000 +915 468 0.400000 +915 493 0.400000 +915 559 0.400000 +915 750 0.400000 +915 781 0.400000 +915 788 0.400000 +915 858 0.400000 +915 862 0.400000 +915 872 0.400000 +915 881 0.400000 +915 907 0.400000 +915 915 0.400000 +915 948 0.400000 +915 1062 0.400000 +915 1143 0.400000 +915 1148 0.400000 +915 1280 0.400000 +915 1307 0.400000 +915 1505 0.400000 +915 1530 0.400000 +915 1546 0.400000 +915 1603 0.400000 +915 1618 0.400000 +915 1763 0.400000 +915 1787 0.400000 +915 1838 0.400000 +915 1839 0.400000 +915 1957 0.400000 +915 1996 0.400000 +915 2008 0.400000 +915 2099 0.400000 +915 2242 0.400000 +915 2303 0.400000 +915 2314 0.400000 +915 2351 0.400000 +915 2408 0.400000 +915 2409 0.400000 +915 2411 0.400000 +915 2415 0.400000 +915 2527 0.400000 +915 2613 0.400000 +915 2648 0.400000 +915 2661 0.400000 +915 2678 0.400000 +915 2759 0.400000 +915 2802 0.400000 +915 2855 0.400000 +915 2888 0.400000 +915 2914 0.400000 +915 2976 0.400000 +915 3045 0.400000 +915 3126 0.400000 +916 4 0.400000 +916 6 0.400000 +916 16 0.400000 +916 25 0.400000 +916 28 0.400000 +916 135 0.400000 +916 145 0.400000 +916 185 0.400000 +916 193 0.400000 +916 228 0.400000 +916 235 0.400000 +916 258 0.400000 +916 277 0.400000 +916 317 0.400000 +916 396 0.400000 +916 415 0.400000 +916 416 0.400000 +916 449 0.400000 +916 462 0.400000 +916 507 0.400000 +916 526 0.400000 +916 638 0.400000 +916 644 0.400000 +916 667 0.400000 +916 805 0.400000 +916 806 0.400000 +916 808 0.400000 +916 913 0.400000 +916 940 0.400000 +916 1102 0.400000 +916 1136 0.400000 +916 1190 0.400000 +916 1204 0.400000 +916 1225 0.400000 +916 1335 0.400000 +916 1337 0.400000 +916 1340 0.400000 +916 1374 0.400000 +916 1380 0.400000 +916 1524 0.400000 +916 1538 0.400000 +916 1548 0.400000 +916 1584 0.400000 +916 1596 0.400000 +916 1612 0.400000 +916 1632 0.400000 +916 1636 0.400000 +916 1655 0.400000 +916 1691 0.400000 +916 1729 0.400000 +916 1733 0.400000 +916 1736 0.400000 +916 1785 0.400000 +916 1794 0.400000 +916 1885 0.400000 +916 1963 0.400000 +916 1984 0.400000 +916 1988 0.400000 +916 2071 0.400000 +916 2123 0.400000 +916 2177 0.400000 +916 2211 0.400000 +916 2296 0.400000 +916 2312 0.400000 +916 2336 0.400000 +916 2430 0.400000 +916 2478 0.400000 +916 2526 0.400000 +916 2643 0.400000 +916 2665 0.400000 +916 2788 0.400000 +916 2823 0.400000 +916 2839 0.400000 +916 2848 0.400000 +916 2875 0.400000 +916 2900 0.400000 +916 2905 0.400000 +916 2937 0.400000 +916 2950 0.400000 +916 2975 0.400000 +916 2990 0.400000 +916 3052 0.400000 +916 3086 0.400000 +916 3108 0.400000 +916 3168 0.400000 +917 107 0.400000 +917 147 0.400000 +917 200 0.400000 +917 206 0.400000 +917 212 0.400000 +917 213 0.400000 +917 221 0.400000 +917 260 0.400000 +917 308 0.400000 +917 470 0.400000 +917 515 0.400000 +917 548 0.400000 +917 594 0.400000 +917 596 0.400000 +917 610 0.400000 +917 625 0.400000 +917 651 0.400000 +917 704 0.400000 +917 754 0.400000 +917 830 0.400000 +917 850 0.400000 +917 907 0.400000 +917 989 0.400000 +917 1053 0.400000 +917 1066 0.400000 +917 1091 0.400000 +917 1260 0.400000 +917 1281 0.400000 +917 1290 0.400000 +917 1367 0.400000 +917 1478 0.400000 +917 1486 0.400000 +917 1540 0.400000 +917 1638 0.400000 +917 1664 0.400000 +917 1683 0.400000 +917 1715 0.400000 +917 1774 0.400000 +917 1790 0.400000 +917 1942 0.400000 +917 1960 0.400000 +917 1969 0.400000 +917 1974 0.400000 +917 2035 0.400000 +917 2108 0.400000 +917 2189 0.400000 +917 2384 0.400000 +917 2402 0.400000 +917 2558 0.400000 +917 2559 0.400000 +917 2571 0.400000 +917 2597 0.400000 +917 2665 0.400000 +917 2684 0.400000 +917 2723 0.400000 +917 2766 0.400000 +917 2772 0.400000 +917 2812 0.400000 +917 2820 0.400000 +917 2848 0.400000 +917 2909 0.400000 +917 2913 0.400000 +917 2935 0.400000 +917 2957 0.400000 +917 2960 0.400000 +917 2972 0.400000 +917 2986 0.400000 +917 3024 0.400000 +917 3038 0.400000 +917 3042 0.400000 +917 3047 0.400000 +917 3140 0.400000 +917 3191 0.400000 +917 3193 0.400000 +918 32 0.400000 +918 34 0.400000 +918 129 0.400000 +918 192 0.400000 +918 237 0.400000 +918 450 0.400000 +918 479 0.400000 +918 530 0.400000 +918 591 0.400000 +918 613 0.400000 +918 665 0.400000 +918 703 0.400000 +918 749 0.400000 +918 766 0.400000 +918 845 0.400000 +918 919 0.400000 +918 949 0.400000 +918 1109 0.400000 +918 1173 0.400000 +918 1175 0.400000 +918 1232 0.400000 +918 1365 0.400000 +918 1367 0.400000 +918 1530 0.400000 +918 1544 0.400000 +918 1549 0.400000 +918 1659 0.400000 +918 1661 0.400000 +918 1718 0.400000 +918 1779 0.400000 +918 1827 0.400000 +918 1835 0.400000 +918 1874 0.400000 +918 1905 0.400000 +918 1927 0.400000 +918 1946 0.400000 +918 1956 0.400000 +918 1983 0.400000 +918 2016 0.400000 +918 2041 0.400000 +918 2046 0.400000 +918 2112 0.400000 +918 2199 0.400000 +918 2227 0.400000 +918 2228 0.400000 +918 2231 0.400000 +918 2235 0.400000 +918 2271 0.400000 +918 2284 0.400000 +918 2366 0.400000 +918 2382 0.400000 +918 2428 0.400000 +918 2476 0.400000 +918 2486 0.400000 +918 2529 0.400000 +918 2548 0.400000 +918 2552 0.400000 +918 2568 0.400000 +918 2574 0.400000 +918 2634 0.400000 +918 2668 0.400000 +918 2679 0.400000 +918 2707 0.400000 +918 2744 0.400000 +918 2748 0.400000 +918 2833 0.400000 +918 2962 0.400000 +918 3017 0.400000 +918 3030 0.400000 +918 3084 0.400000 +918 3085 0.400000 +918 3146 0.400000 +918 3168 0.400000 +919 9 0.400000 +919 10 0.400000 +919 42 0.400000 +919 182 0.400000 +919 190 0.400000 +919 220 0.400000 +919 234 0.400000 +919 238 0.400000 +919 250 0.400000 +919 348 0.400000 +919 379 0.400000 +919 446 0.400000 +919 512 0.400000 +919 565 0.400000 +919 654 0.400000 +919 659 0.400000 +919 691 0.400000 +919 793 0.400000 +919 901 0.400000 +919 907 0.400000 +919 914 0.400000 +919 957 0.400000 +919 1026 0.400000 +919 1131 0.400000 +919 1140 0.400000 +919 1155 0.400000 +919 1190 0.400000 +919 1339 0.400000 +919 1447 0.400000 +919 1510 0.400000 +919 1692 0.400000 +919 1700 0.400000 +919 1804 0.400000 +919 1894 0.400000 +919 1911 0.400000 +919 1997 0.400000 +919 2005 0.400000 +919 2045 0.400000 +919 2057 0.400000 +919 2058 0.400000 +919 2166 0.400000 +919 2205 0.400000 +919 2254 0.400000 +919 2271 0.400000 +919 2293 0.400000 +919 2299 0.400000 +919 2312 0.400000 +919 2341 0.400000 +919 2387 0.400000 +919 2424 0.400000 +919 2467 0.400000 +919 2658 0.400000 +919 2782 0.400000 +919 2785 0.400000 +919 2808 0.400000 +919 2825 0.400000 +919 2900 0.400000 +919 3039 0.400000 +919 3063 0.400000 +919 3131 0.400000 +920 109 0.400000 +920 113 0.400000 +920 136 0.400000 +920 157 0.400000 +920 256 0.400000 +920 282 0.400000 +920 350 0.400000 +920 420 0.400000 +920 427 0.400000 +920 437 0.400000 +920 469 0.400000 +920 530 0.400000 +920 533 0.400000 +920 571 0.400000 +920 650 0.400000 +920 659 0.400000 +920 678 0.400000 +920 764 0.400000 +920 783 0.400000 +920 842 0.400000 +920 845 0.400000 +920 884 0.400000 +920 897 0.400000 +920 936 0.400000 +920 998 0.400000 +920 1084 0.400000 +920 1121 0.400000 +920 1129 0.400000 +920 1155 0.400000 +920 1210 0.400000 +920 1338 0.400000 +920 1356 0.400000 +920 1488 0.400000 +920 1549 0.400000 +920 1590 0.400000 +920 1593 0.400000 +920 1606 0.400000 +920 1655 0.400000 +920 1749 0.400000 +920 1812 0.400000 +920 1899 0.400000 +920 1920 0.400000 +920 1925 0.400000 +920 1936 0.400000 +920 1958 0.400000 +920 2019 0.400000 +920 2098 0.400000 +920 2147 0.400000 +920 2180 0.400000 +920 2222 0.400000 +920 2252 0.400000 +920 2254 0.400000 +920 2268 0.400000 +920 2316 0.400000 +920 2413 0.400000 +920 2445 0.400000 +920 2531 0.400000 +920 2603 0.400000 +920 2612 0.400000 +920 2669 0.400000 +920 2748 0.400000 +920 2793 0.400000 +920 2810 0.400000 +920 2846 0.400000 +920 2907 0.400000 +920 2973 0.400000 +920 3119 0.400000 +920 3129 0.400000 +920 3197 0.400000 +921 26 0.400000 +921 54 0.400000 +921 95 0.400000 +921 114 0.400000 +921 189 0.400000 +921 214 0.400000 +921 365 0.400000 +921 407 0.400000 +921 455 0.400000 +921 503 0.400000 +921 513 0.400000 +921 556 0.400000 +921 624 0.400000 +921 635 0.400000 +921 769 0.400000 +921 779 0.400000 +921 804 0.400000 +921 827 0.400000 +921 849 0.400000 +921 866 0.400000 +921 884 0.400000 +921 909 0.400000 +921 956 0.400000 +921 967 0.400000 +921 1043 0.400000 +921 1098 0.400000 +921 1216 0.400000 +921 1218 0.400000 +921 1257 0.400000 +921 1307 0.400000 +921 1320 0.400000 +921 1594 0.400000 +921 1653 0.400000 +921 1667 0.400000 +921 1746 0.400000 +921 1756 0.400000 +921 1762 0.400000 +921 1769 0.400000 +921 1781 0.400000 +921 1789 0.400000 +921 2000 0.400000 +921 2013 0.400000 +921 2153 0.400000 +921 2200 0.400000 +921 2229 0.400000 +921 2283 0.400000 +921 2311 0.400000 +921 2403 0.400000 +921 2413 0.400000 +921 2561 0.400000 +921 2566 0.400000 +921 2616 0.400000 +921 2629 0.400000 +921 2631 0.400000 +921 2706 0.400000 +921 3110 0.400000 +921 3149 0.400000 +921 3197 0.400000 +922 129 0.400000 +922 309 0.400000 +922 349 0.400000 +922 388 0.400000 +922 456 0.400000 +922 462 0.400000 +922 463 0.400000 +922 603 0.400000 +922 613 0.400000 +922 662 0.400000 +922 711 0.400000 +922 730 0.400000 +922 765 0.400000 +922 776 0.400000 +922 799 0.400000 +922 855 0.400000 +922 857 0.400000 +922 967 0.400000 +922 997 0.400000 +922 1076 0.400000 +922 1077 0.400000 +922 1078 0.400000 +922 1185 0.400000 +922 1196 0.400000 +922 1220 0.400000 +922 1226 0.400000 +922 1253 0.400000 +922 1268 0.400000 +922 1313 0.400000 +922 1314 0.400000 +922 1390 0.400000 +922 1460 0.400000 +922 1801 0.400000 +922 1809 0.400000 +922 2073 0.400000 +922 2077 0.400000 +922 2080 0.400000 +922 2081 0.400000 +922 2138 0.400000 +922 2231 0.400000 +922 2354 0.400000 +922 2430 0.400000 +922 2464 0.400000 +922 2522 0.400000 +922 2542 0.400000 +922 2723 0.400000 +922 2838 0.400000 +922 2862 0.400000 +922 2874 0.400000 +922 2892 0.400000 +922 2919 0.400000 +922 2958 0.400000 +922 2972 0.400000 +922 2982 0.400000 +922 2994 0.400000 +922 3150 0.400000 +923 9 0.400000 +923 27 0.400000 +923 120 0.400000 +923 210 0.400000 +923 295 0.400000 +923 360 0.400000 +923 377 0.400000 +923 387 0.400000 +923 392 0.400000 +923 410 0.400000 +923 433 0.400000 +923 473 0.400000 +923 480 0.400000 +923 499 0.400000 +923 571 0.400000 +923 679 0.400000 +923 690 0.400000 +923 711 0.400000 +923 761 0.400000 +923 831 0.400000 +923 843 0.400000 +923 862 0.400000 +923 883 0.400000 +923 944 0.400000 +923 1010 0.400000 +923 1065 0.400000 +923 1074 0.400000 +923 1092 0.400000 +923 1144 0.400000 +923 1186 0.400000 +923 1204 0.400000 +923 1233 0.400000 +923 1244 0.400000 +923 1246 0.400000 +923 1250 0.400000 +923 1301 0.400000 +923 1304 0.400000 +923 1375 0.400000 +923 1457 0.400000 +923 1468 0.400000 +923 1500 0.400000 +923 1502 0.400000 +923 1503 0.400000 +923 1537 0.400000 +923 1706 0.400000 +923 1793 0.400000 +923 1795 0.400000 +923 1853 0.400000 +923 1912 0.400000 +923 1943 0.400000 +923 2022 0.400000 +923 2072 0.400000 +923 2079 0.400000 +923 2092 0.400000 +923 2097 0.400000 +923 2127 0.400000 +923 2208 0.400000 +923 2209 0.400000 +923 2246 0.400000 +923 2418 0.400000 +923 2484 0.400000 +923 2726 0.400000 +923 2758 0.400000 +923 2844 0.400000 +923 2858 0.400000 +923 2886 0.400000 +923 2903 0.400000 +923 2977 0.400000 +923 2982 0.400000 +923 3031 0.400000 +923 3071 0.400000 +924 62 0.400000 +924 108 0.400000 +924 206 0.400000 +924 297 0.400000 +924 362 0.400000 +924 370 0.400000 +924 490 0.400000 +924 499 0.400000 +924 520 0.400000 +924 634 0.400000 +924 711 0.400000 +924 738 0.400000 +924 751 0.400000 +924 890 0.400000 +924 895 0.400000 +924 908 0.400000 +924 915 0.400000 +924 1098 0.400000 +924 1143 0.400000 +924 1173 0.400000 +924 1204 0.400000 +924 1210 0.400000 +924 1262 0.400000 +924 1282 0.400000 +924 1283 0.400000 +924 1302 0.400000 +924 1327 0.400000 +924 1383 0.400000 +924 1423 0.400000 +924 1425 0.400000 +924 1443 0.400000 +924 1490 0.400000 +924 1497 0.400000 +924 1509 0.400000 +924 1516 0.400000 +924 1537 0.400000 +924 1596 0.400000 +924 1615 0.400000 +924 1641 0.400000 +924 1644 0.400000 +924 1676 0.400000 +924 1691 0.400000 +924 1743 0.400000 +924 1813 0.400000 +924 1890 0.400000 +924 1907 0.400000 +924 1914 0.400000 +924 1922 0.400000 +924 1951 0.400000 +924 1974 0.400000 +924 2015 0.400000 +924 2151 0.400000 +924 2206 0.400000 +924 2217 0.400000 +924 2280 0.400000 +924 2343 0.400000 +924 2380 0.400000 +924 2387 0.400000 +924 2550 0.400000 +924 2554 0.400000 +924 2613 0.400000 +924 2621 0.400000 +924 2632 0.400000 +924 2672 0.400000 +924 2717 0.400000 +924 2752 0.400000 +924 2894 0.400000 +924 3041 0.400000 +924 3190 0.400000 +925 4 0.400000 +925 103 0.400000 +925 117 0.400000 +925 182 0.400000 +925 185 0.400000 +925 221 0.400000 +925 395 0.400000 +925 469 0.400000 +925 503 0.400000 +925 557 0.400000 +925 714 0.400000 +925 721 0.400000 +925 766 0.400000 +925 770 0.400000 +925 904 0.400000 +925 907 0.400000 +925 921 0.400000 +925 947 0.400000 +925 953 0.400000 +925 962 0.400000 +925 1000 0.400000 +925 1012 0.400000 +925 1212 0.400000 +925 1390 0.400000 +925 1434 0.400000 +925 1469 0.400000 +925 1595 0.400000 +925 1649 0.400000 +925 1711 0.400000 +925 1772 0.400000 +925 1788 0.400000 +925 1797 0.400000 +925 1917 0.400000 +925 1920 0.400000 +925 1949 0.400000 +925 1976 0.400000 +925 2061 0.400000 +925 2159 0.400000 +925 2188 0.400000 +925 2213 0.400000 +925 2218 0.400000 +925 2224 0.400000 +925 2253 0.400000 +925 2298 0.400000 +925 2570 0.400000 +925 2600 0.400000 +925 2635 0.400000 +925 2677 0.400000 +925 2696 0.400000 +925 2788 0.400000 +925 2801 0.400000 +925 2830 0.400000 +925 2859 0.400000 +925 2875 0.400000 +925 2895 0.400000 +925 3019 0.400000 +925 3058 0.400000 +925 3071 0.400000 +925 3127 0.400000 +925 3144 0.400000 +925 3148 0.400000 +925 3194 0.400000 +926 63 0.400000 +926 86 0.400000 +926 97 0.400000 +926 229 0.400000 +926 275 0.400000 +926 308 0.400000 +926 386 0.400000 +926 404 0.400000 +926 435 0.400000 +926 597 0.400000 +926 654 0.400000 +926 986 0.400000 +926 1001 0.400000 +926 1022 0.400000 +926 1067 0.400000 +926 1081 0.400000 +926 1103 0.400000 +926 1123 0.400000 +926 1439 0.400000 +926 1459 0.400000 +926 1586 0.400000 +926 1594 0.400000 +926 1682 0.400000 +926 1699 0.400000 +926 1714 0.400000 +926 1752 0.400000 +926 1762 0.400000 +926 1823 0.400000 +926 1850 0.400000 +926 1858 0.400000 +926 1909 0.400000 +926 1930 0.400000 +926 1951 0.400000 +926 2032 0.400000 +926 2040 0.400000 +926 2094 0.400000 +926 2164 0.400000 +926 2186 0.400000 +926 2206 0.400000 +926 2414 0.400000 +926 2462 0.400000 +926 2471 0.400000 +926 2533 0.400000 +926 2534 0.400000 +926 2550 0.400000 +926 2562 0.400000 +926 2606 0.400000 +926 2711 0.400000 +926 2776 0.400000 +926 2791 0.400000 +926 2793 0.400000 +926 2848 0.400000 +926 2939 0.400000 +926 2962 0.400000 +926 2964 0.400000 +926 2972 0.400000 +926 2980 0.400000 +926 3012 0.400000 +926 3058 0.400000 +926 3133 0.400000 +927 10 0.400000 +927 65 0.400000 +927 83 0.400000 +927 127 0.400000 +927 136 0.400000 +927 312 0.400000 +927 332 0.400000 +927 340 0.400000 +927 391 0.400000 +927 392 0.400000 +927 595 0.400000 +927 611 0.400000 +927 665 0.400000 +927 719 0.400000 +927 751 0.400000 +927 859 0.400000 +927 1008 0.400000 +927 1029 0.400000 +927 1031 0.400000 +927 1084 0.400000 +927 1116 0.400000 +927 1119 0.400000 +927 1134 0.400000 +927 1151 0.400000 +927 1159 0.400000 +927 1181 0.400000 +927 1247 0.400000 +927 1274 0.400000 +927 1293 0.400000 +927 1299 0.400000 +927 1392 0.400000 +927 1457 0.400000 +927 1506 0.400000 +927 1610 0.400000 +927 1612 0.400000 +927 1661 0.400000 +927 1687 0.400000 +927 1694 0.400000 +927 1697 0.400000 +927 1704 0.400000 +927 1738 0.400000 +927 1764 0.400000 +927 1799 0.400000 +927 1836 0.400000 +927 1850 0.400000 +927 1886 0.400000 +927 1935 0.400000 +927 1936 0.400000 +927 1994 0.400000 +927 2009 0.400000 +927 2036 0.400000 +927 2223 0.400000 +927 2224 0.400000 +927 2240 0.400000 +927 2280 0.400000 +927 2388 0.400000 +927 2592 0.400000 +927 2654 0.400000 +927 2683 0.400000 +927 2694 0.400000 +927 2756 0.400000 +927 2796 0.400000 +927 2825 0.400000 +927 2949 0.400000 +927 3002 0.400000 +927 3089 0.400000 +927 3096 0.400000 +928 22 0.400000 +928 62 0.400000 +928 95 0.400000 +928 110 0.400000 +928 149 0.400000 +928 171 0.400000 +928 256 0.400000 +928 268 0.400000 +928 285 0.400000 +928 353 0.400000 +928 355 0.400000 +928 366 0.400000 +928 445 0.400000 +928 459 0.400000 +928 782 0.400000 +928 787 0.400000 +928 842 0.400000 +928 912 0.400000 +928 924 0.400000 +928 962 0.400000 +928 1084 0.400000 +928 1090 0.400000 +928 1202 0.400000 +928 1212 0.400000 +928 1322 0.400000 +928 1334 0.400000 +928 1359 0.400000 +928 1362 0.400000 +928 1419 0.400000 +928 1516 0.400000 +928 1552 0.400000 +928 1561 0.400000 +928 1634 0.400000 +928 1692 0.400000 +928 1741 0.400000 +928 1819 0.400000 +928 1823 0.400000 +928 1841 0.400000 +928 1863 0.400000 +928 1938 0.400000 +928 1972 0.400000 +928 1998 0.400000 +928 2055 0.400000 +928 2068 0.400000 +928 2156 0.400000 +928 2251 0.400000 +928 2254 0.400000 +928 2257 0.400000 +928 2286 0.400000 +928 2301 0.400000 +928 2348 0.400000 +928 2500 0.400000 +928 2554 0.400000 +928 2772 0.400000 +928 2775 0.400000 +928 2860 0.400000 +928 2871 0.400000 +928 2935 0.400000 +928 3001 0.400000 +928 3009 0.400000 +928 3063 0.400000 +928 3094 0.400000 +929 90 0.400000 +929 102 0.400000 +929 111 0.400000 +929 123 0.400000 +929 143 0.400000 +929 154 0.400000 +929 270 0.400000 +929 279 0.400000 +929 334 0.400000 +929 380 0.400000 +929 473 0.400000 +929 490 0.400000 +929 518 0.400000 +929 555 0.400000 +929 605 0.400000 +929 637 0.400000 +929 849 0.400000 +929 857 0.400000 +929 891 0.400000 +929 905 0.400000 +929 979 0.400000 +929 1101 0.400000 +929 1127 0.400000 +929 1185 0.400000 +929 1223 0.400000 +929 1274 0.400000 +929 1346 0.400000 +929 1423 0.400000 +929 1434 0.400000 +929 1454 0.400000 +929 1501 0.400000 +929 1583 0.400000 +929 1591 0.400000 +929 1612 0.400000 +929 1646 0.400000 +929 1756 0.400000 +929 1761 0.400000 +929 1812 0.400000 +929 1842 0.400000 +929 1914 0.400000 +929 1953 0.400000 +929 1958 0.400000 +929 1975 0.400000 +929 1977 0.400000 +929 2016 0.400000 +929 2125 0.400000 +929 2130 0.400000 +929 2192 0.400000 +929 2210 0.400000 +929 2252 0.400000 +929 2285 0.400000 +929 2327 0.400000 +929 2445 0.400000 +929 2556 0.400000 +929 2668 0.400000 +929 2743 0.400000 +929 2781 0.400000 +929 2811 0.400000 +929 2821 0.400000 +929 2912 0.400000 +929 3016 0.400000 +929 3028 0.400000 +929 3046 0.400000 +929 3163 0.400000 +929 3176 0.400000 +929 3179 0.400000 +929 3183 0.400000 +930 82 0.400000 +930 136 0.400000 +930 232 0.400000 +930 280 0.400000 +930 337 0.400000 +930 375 0.400000 +930 397 0.400000 +930 436 0.400000 +930 467 0.400000 +930 483 0.400000 +930 484 0.400000 +930 572 0.400000 +930 603 0.400000 +930 617 0.400000 +930 663 0.400000 +930 667 0.400000 +930 675 0.400000 +930 756 0.400000 +930 879 0.400000 +930 1005 0.400000 +930 1047 0.400000 +930 1098 0.400000 +930 1143 0.400000 +930 1260 0.400000 +930 1339 0.400000 +930 1482 0.400000 +930 1554 0.400000 +930 1573 0.400000 +930 1598 0.400000 +930 1599 0.400000 +930 1635 0.400000 +930 1673 0.400000 +930 1742 0.400000 +930 1877 0.400000 +930 1890 0.400000 +930 1938 0.400000 +930 1951 0.400000 +930 1984 0.400000 +930 2011 0.400000 +930 2145 0.400000 +930 2146 0.400000 +930 2286 0.400000 +930 2369 0.400000 +930 2562 0.400000 +930 2671 0.400000 +930 2705 0.400000 +930 2800 0.400000 +930 2803 0.400000 +930 2837 0.400000 +930 2845 0.400000 +930 2917 0.400000 +930 2958 0.400000 +930 2981 0.400000 +930 3008 0.400000 +930 3040 0.400000 +930 3050 0.400000 +930 3139 0.400000 +930 3160 0.400000 +930 3197 0.400000 +931 18 0.400000 +931 35 0.400000 +931 51 0.400000 +931 110 0.400000 +931 256 0.400000 +931 305 0.400000 +931 313 0.400000 +931 382 0.400000 +931 430 0.400000 +931 449 0.400000 +931 645 0.400000 +931 725 0.400000 +931 805 0.400000 +931 965 0.400000 +931 976 0.400000 +931 987 0.400000 +931 990 0.400000 +931 1028 0.400000 +931 1032 0.400000 +931 1137 0.400000 +931 1237 0.400000 +931 1294 0.400000 +931 1384 0.400000 +931 1392 0.400000 +931 1411 0.400000 +931 1415 0.400000 +931 1634 0.400000 +931 1647 0.400000 +931 1704 0.400000 +931 1721 0.400000 +931 1870 0.400000 +931 1898 0.400000 +931 2146 0.400000 +931 2172 0.400000 +931 2308 0.400000 +931 2341 0.400000 +931 2380 0.400000 +931 2468 0.400000 +931 2542 0.400000 +931 2601 0.400000 +931 2623 0.400000 +931 2625 0.400000 +931 2635 0.400000 +931 2662 0.400000 +931 2678 0.400000 +931 2709 0.400000 +931 2741 0.400000 +931 2766 0.400000 +931 2816 0.400000 +931 2895 0.400000 +931 2901 0.400000 +931 2959 0.400000 +931 2997 0.400000 +931 3000 0.400000 +931 3025 0.400000 +931 3067 0.400000 +931 3074 0.400000 +931 3139 0.400000 +932 40 0.400000 +932 50 0.400000 +932 78 0.400000 +932 141 0.400000 +932 211 0.400000 +932 299 0.400000 +932 341 0.400000 +932 348 0.400000 +932 366 0.400000 +932 409 0.400000 +932 413 0.400000 +932 499 0.400000 +932 563 0.400000 +932 583 0.400000 +932 594 0.400000 +932 654 0.400000 +932 709 0.400000 +932 735 0.400000 +932 945 0.400000 +932 1058 0.400000 +932 1063 0.400000 +932 1073 0.400000 +932 1230 0.400000 +932 1233 0.400000 +932 1261 0.400000 +932 1422 0.400000 +932 1505 0.400000 +932 1619 0.400000 +932 1650 0.400000 +932 1670 0.400000 +932 1685 0.400000 +932 1740 0.400000 +932 1743 0.400000 +932 1747 0.400000 +932 1850 0.400000 +932 1961 0.400000 +932 1990 0.400000 +932 2124 0.400000 +932 2147 0.400000 +932 2230 0.400000 +932 2298 0.400000 +932 2326 0.400000 +932 2333 0.400000 +932 2344 0.400000 +932 2432 0.400000 +932 2443 0.400000 +932 2519 0.400000 +932 2685 0.400000 +932 2737 0.400000 +932 2778 0.400000 +932 2818 0.400000 +932 2885 0.400000 +932 2905 0.400000 +932 3033 0.400000 +933 159 0.400000 +933 253 0.400000 +933 254 0.400000 +933 260 0.400000 +933 300 0.400000 +933 406 0.400000 +933 408 0.400000 +933 571 0.400000 +933 589 0.400000 +933 628 0.400000 +933 651 0.400000 +933 767 0.400000 +933 833 0.400000 +933 859 0.400000 +933 891 0.400000 +933 988 0.400000 +933 1056 0.400000 +933 1096 0.400000 +933 1099 0.400000 +933 1141 0.400000 +933 1254 0.400000 +933 1361 0.400000 +933 1367 0.400000 +933 1389 0.400000 +933 1630 0.400000 +933 1763 0.400000 +933 1768 0.400000 +933 1804 0.400000 +933 1823 0.400000 +933 1854 0.400000 +933 1855 0.400000 +933 1898 0.400000 +933 1913 0.400000 +933 1983 0.400000 +933 2028 0.400000 +933 2049 0.400000 +933 2059 0.400000 +933 2068 0.400000 +933 2131 0.400000 +933 2241 0.400000 +933 2242 0.400000 +933 2342 0.400000 +933 2362 0.400000 +933 2400 0.400000 +933 2403 0.400000 +933 2630 0.400000 +933 2821 0.400000 +933 2915 0.400000 +933 2986 0.400000 +933 3043 0.400000 +933 3114 0.400000 +933 3132 0.400000 +933 3190 0.400000 +934 16 0.400000 +934 19 0.400000 +934 56 0.400000 +934 100 0.400000 +934 115 0.400000 +934 187 0.400000 +934 238 0.400000 +934 252 0.400000 +934 314 0.400000 +934 330 0.400000 +934 375 0.400000 +934 525 0.400000 +934 536 0.400000 +934 571 0.400000 +934 617 0.400000 +934 684 0.400000 +934 722 0.400000 +934 796 0.400000 +934 829 0.400000 +934 889 0.400000 +934 915 0.400000 +934 989 0.400000 +934 1038 0.400000 +934 1105 0.400000 +934 1112 0.400000 +934 1122 0.400000 +934 1149 0.400000 +934 1150 0.400000 +934 1156 0.400000 +934 1221 0.400000 +934 1271 0.400000 +934 1292 0.400000 +934 1390 0.400000 +934 1455 0.400000 +934 1464 0.400000 +934 1493 0.400000 +934 1538 0.400000 +934 1580 0.400000 +934 1591 0.400000 +934 1754 0.400000 +934 1858 0.400000 +934 1865 0.400000 +934 1920 0.400000 +934 2052 0.400000 +934 2063 0.400000 +934 2103 0.400000 +934 2117 0.400000 +934 2153 0.400000 +934 2187 0.400000 +934 2218 0.400000 +934 2439 0.400000 +934 2444 0.400000 +934 2461 0.400000 +934 2477 0.400000 +934 2498 0.400000 +934 2563 0.400000 +934 2632 0.400000 +934 2662 0.400000 +934 2665 0.400000 +934 2824 0.400000 +934 2972 0.400000 +934 2978 0.400000 +934 3028 0.400000 +934 3041 0.400000 +934 3058 0.400000 +934 3119 0.400000 +934 3121 0.400000 +934 3168 0.400000 +935 1 0.400000 +935 20 0.400000 +935 184 0.400000 +935 188 0.400000 +935 316 0.400000 +935 320 0.400000 +935 422 0.400000 +935 476 0.400000 +935 554 0.400000 +935 569 0.400000 +935 638 0.400000 +935 700 0.400000 +935 772 0.400000 +935 785 0.400000 +935 794 0.400000 +935 811 0.400000 +935 826 0.400000 +935 1014 0.400000 +935 1034 0.400000 +935 1067 0.400000 +935 1124 0.400000 +935 1179 0.400000 +935 1287 0.400000 +935 1303 0.400000 +935 1305 0.400000 +935 1423 0.400000 +935 1459 0.400000 +935 1528 0.400000 +935 1648 0.400000 +935 1664 0.400000 +935 1781 0.400000 +935 1807 0.400000 +935 1855 0.400000 +935 1940 0.400000 +935 2069 0.400000 +935 2152 0.400000 +935 2244 0.400000 +935 2256 0.400000 +935 2270 0.400000 +935 2393 0.400000 +935 2400 0.400000 +935 2448 0.400000 +935 2485 0.400000 +935 2486 0.400000 +935 2503 0.400000 +935 2677 0.400000 +935 2687 0.400000 +935 2728 0.400000 +935 2759 0.400000 +935 2820 0.400000 +935 2970 0.400000 +935 2992 0.400000 +935 2999 0.400000 +935 3005 0.400000 +935 3188 0.400000 +936 228 0.400000 +936 285 0.400000 +936 360 0.400000 +936 395 0.400000 +936 446 0.400000 +936 481 0.400000 +936 484 0.400000 +936 544 0.400000 +936 548 0.400000 +936 557 0.400000 +936 591 0.400000 +936 697 0.400000 +936 866 0.400000 +936 879 0.400000 +936 903 0.400000 +936 919 0.400000 +936 989 0.400000 +936 1051 0.400000 +936 1089 0.400000 +936 1191 0.400000 +936 1240 0.400000 +936 1338 0.400000 +936 1350 0.400000 +936 1392 0.400000 +936 1457 0.400000 +936 1542 0.400000 +936 1558 0.400000 +936 1602 0.400000 +936 1661 0.400000 +936 1667 0.400000 +936 1686 0.400000 +936 1752 0.400000 +936 1836 0.400000 +936 1905 0.400000 +936 1913 0.400000 +936 1961 0.400000 +936 1985 0.400000 +936 2024 0.400000 +936 2109 0.400000 +936 2146 0.400000 +936 2226 0.400000 +936 2240 0.400000 +936 2410 0.400000 +936 2457 0.400000 +936 2582 0.400000 +936 2716 0.400000 +936 2774 0.400000 +936 2819 0.400000 +936 2901 0.400000 +936 2950 0.400000 +936 3082 0.400000 +936 3124 0.400000 +937 34 0.400000 +937 38 0.400000 +937 46 0.400000 +937 116 0.400000 +937 131 0.400000 +937 216 0.400000 +937 487 0.400000 +937 500 0.400000 +937 508 0.400000 +937 600 0.400000 +937 708 0.400000 +937 748 0.400000 +937 854 0.400000 +937 905 0.400000 +937 939 0.400000 +937 957 0.400000 +937 1036 0.400000 +937 1067 0.400000 +937 1171 0.400000 +937 1328 0.400000 +937 1376 0.400000 +937 1397 0.400000 +937 1413 0.400000 +937 1423 0.400000 +937 1442 0.400000 +937 1480 0.400000 +937 1494 0.400000 +937 1563 0.400000 +937 1626 0.400000 +937 1678 0.400000 +937 1784 0.400000 +937 1904 0.400000 +937 1937 0.400000 +937 1957 0.400000 +937 1962 0.400000 +937 2011 0.400000 +937 2043 0.400000 +937 2080 0.400000 +937 2082 0.400000 +937 2084 0.400000 +937 2099 0.400000 +937 2119 0.400000 +937 2138 0.400000 +937 2208 0.400000 +937 2305 0.400000 +937 2307 0.400000 +937 2346 0.400000 +937 2353 0.400000 +937 2360 0.400000 +937 2370 0.400000 +937 2409 0.400000 +937 2424 0.400000 +937 2450 0.400000 +937 2468 0.400000 +937 2504 0.400000 +937 2531 0.400000 +937 2561 0.400000 +937 2578 0.400000 +937 2607 0.400000 +937 2615 0.400000 +937 2813 0.400000 +937 2910 0.400000 +937 2974 0.400000 +937 3056 0.400000 +938 39 0.400000 +938 40 0.400000 +938 215 0.400000 +938 221 0.400000 +938 297 0.400000 +938 300 0.400000 +938 544 0.400000 +938 603 0.400000 +938 680 0.400000 +938 726 0.400000 +938 753 0.400000 +938 771 0.400000 +938 788 0.400000 +938 822 0.400000 +938 839 0.400000 +938 1045 0.400000 +938 1123 0.400000 +938 1216 0.400000 +938 1218 0.400000 +938 1338 0.400000 +938 1359 0.400000 +938 1488 0.400000 +938 1533 0.400000 +938 1557 0.400000 +938 1603 0.400000 +938 1641 0.400000 +938 1642 0.400000 +938 1654 0.400000 +938 1669 0.400000 +938 1672 0.400000 +938 1708 0.400000 +938 1722 0.400000 +938 1727 0.400000 +938 1756 0.400000 +938 1814 0.400000 +938 1892 0.400000 +938 1920 0.400000 +938 1930 0.400000 +938 2009 0.400000 +938 2087 0.400000 +938 2127 0.400000 +938 2170 0.400000 +938 2206 0.400000 +938 2288 0.400000 +938 2296 0.400000 +938 2303 0.400000 +938 2337 0.400000 +938 2417 0.400000 +938 2445 0.400000 +938 2554 0.400000 +938 2653 0.400000 +938 2677 0.400000 +938 2836 0.400000 +938 2843 0.400000 +938 2904 0.400000 +938 2967 0.400000 +938 3022 0.400000 +938 3069 0.400000 +938 3148 0.400000 +938 3161 0.400000 +939 31 0.400000 +939 58 0.400000 +939 81 0.400000 +939 102 0.400000 +939 150 0.400000 +939 154 0.400000 +939 249 0.400000 +939 296 0.400000 +939 303 0.400000 +939 333 0.400000 +939 373 0.400000 +939 391 0.400000 +939 409 0.400000 +939 457 0.400000 +939 505 0.400000 +939 539 0.400000 +939 540 0.400000 +939 614 0.400000 +939 665 0.400000 +939 680 0.400000 +939 726 0.400000 +939 750 0.400000 +939 786 0.400000 +939 792 0.400000 +939 860 0.400000 +939 872 0.400000 +939 926 0.400000 +939 958 0.400000 +939 986 0.400000 +939 1017 0.400000 +939 1150 0.400000 +939 1170 0.400000 +939 1224 0.400000 +939 1235 0.400000 +939 1267 0.400000 +939 1330 0.400000 +939 1359 0.400000 +939 1381 0.400000 +939 1416 0.400000 +939 1434 0.400000 +939 1438 0.400000 +939 1456 0.400000 +939 1496 0.400000 +939 1497 0.400000 +939 1500 0.400000 +939 1501 0.400000 +939 1530 0.400000 +939 1555 0.400000 +939 1575 0.400000 +939 1613 0.400000 +939 1653 0.400000 +939 1668 0.400000 +939 1718 0.400000 +939 1814 0.400000 +939 2024 0.400000 +939 2148 0.400000 +939 2255 0.400000 +939 2269 0.400000 +939 2292 0.400000 +939 2341 0.400000 +939 2481 0.400000 +939 2484 0.400000 +939 2490 0.400000 +939 2534 0.400000 +939 2622 0.400000 +939 2659 0.400000 +939 2705 0.400000 +939 2789 0.400000 +939 2845 0.400000 +939 2981 0.400000 +939 3018 0.400000 +939 3028 0.400000 +939 3065 0.400000 +939 3092 0.400000 +939 3093 0.400000 +939 3110 0.400000 +939 3196 0.400000 +940 14 0.400000 +940 70 0.400000 +940 177 0.400000 +940 192 0.400000 +940 235 0.400000 +940 247 0.400000 +940 270 0.400000 +940 376 0.400000 +940 450 0.400000 +940 476 0.400000 +940 494 0.400000 +940 535 0.400000 +940 541 0.400000 +940 559 0.400000 +940 622 0.400000 +940 625 0.400000 +940 643 0.400000 +940 724 0.400000 +940 731 0.400000 +940 736 0.400000 +940 746 0.400000 +940 752 0.400000 +940 769 0.400000 +940 793 0.400000 +940 818 0.400000 +940 930 0.400000 +940 934 0.400000 +940 964 0.400000 +940 1134 0.400000 +940 1158 0.400000 +940 1306 0.400000 +940 1328 0.400000 +940 1355 0.400000 +940 1387 0.400000 +940 1430 0.400000 +940 1443 0.400000 +940 1507 0.400000 +940 1623 0.400000 +940 1773 0.400000 +940 1901 0.400000 +940 1902 0.400000 +940 1951 0.400000 +940 2058 0.400000 +940 2320 0.400000 +940 2442 0.400000 +940 2489 0.400000 +940 2493 0.400000 +940 2512 0.400000 +940 2521 0.400000 +940 2528 0.400000 +940 2579 0.400000 +940 2719 0.400000 +940 2763 0.400000 +940 2779 0.400000 +940 2848 0.400000 +940 2870 0.400000 +940 2936 0.400000 +940 2963 0.400000 +940 2971 0.400000 +940 3054 0.400000 +940 3154 0.400000 +940 3190 0.400000 +940 3200 0.400000 +941 21 0.400000 +941 57 0.400000 +941 115 0.400000 +941 175 0.400000 +941 225 0.400000 +941 317 0.400000 +941 319 0.400000 +941 350 0.400000 +941 354 0.400000 +941 391 0.400000 +941 394 0.400000 +941 487 0.400000 +941 496 0.400000 +941 736 0.400000 +941 816 0.400000 +941 864 0.400000 +941 919 0.400000 +941 1003 0.400000 +941 1234 0.400000 +941 1279 0.400000 +941 1358 0.400000 +941 1365 0.400000 +941 1444 0.400000 +941 1610 0.400000 +941 1617 0.400000 +941 1812 0.400000 +941 1826 0.400000 +941 1999 0.400000 +941 2006 0.400000 +941 2014 0.400000 +941 2042 0.400000 +941 2064 0.400000 +941 2092 0.400000 +941 2106 0.400000 +941 2122 0.400000 +941 2176 0.400000 +941 2189 0.400000 +941 2376 0.400000 +941 2380 0.400000 +941 2406 0.400000 +941 2421 0.400000 +941 2423 0.400000 +941 2454 0.400000 +941 2483 0.400000 +941 2530 0.400000 +941 2535 0.400000 +941 2563 0.400000 +941 2567 0.400000 +941 2590 0.400000 +941 2614 0.400000 +941 2694 0.400000 +941 2695 0.400000 +941 2696 0.400000 +941 2714 0.400000 +941 2722 0.400000 +941 2775 0.400000 +941 2816 0.400000 +941 2939 0.400000 +941 2958 0.400000 +941 3081 0.400000 +941 3145 0.400000 +941 3167 0.400000 +941 3189 0.400000 +942 47 0.400000 +942 53 0.400000 +942 95 0.400000 +942 105 0.400000 +942 158 0.400000 +942 173 0.400000 +942 208 0.400000 +942 216 0.400000 +942 217 0.400000 +942 335 0.400000 +942 560 0.400000 +942 630 0.400000 +942 642 0.400000 +942 699 0.400000 +942 702 0.400000 +942 735 0.400000 +942 777 0.400000 +942 815 0.400000 +942 848 0.400000 +942 908 0.400000 +942 911 0.400000 +942 964 0.400000 +942 1032 0.400000 +942 1098 0.400000 +942 1227 0.400000 +942 1283 0.400000 +942 1312 0.400000 +942 1333 0.400000 +942 1440 0.400000 +942 1521 0.400000 +942 1543 0.400000 +942 1596 0.400000 +942 1602 0.400000 +942 1725 0.400000 +942 1786 0.400000 +942 1835 0.400000 +942 1908 0.400000 +942 2134 0.400000 +942 2163 0.400000 +942 2170 0.400000 +942 2182 0.400000 +942 2183 0.400000 +942 2251 0.400000 +942 2253 0.400000 +942 2261 0.400000 +942 2377 0.400000 +942 2448 0.400000 +942 2506 0.400000 +942 2525 0.400000 +942 2565 0.400000 +942 2575 0.400000 +942 2576 0.400000 +942 2616 0.400000 +942 2620 0.400000 +942 2635 0.400000 +942 2650 0.400000 +942 2726 0.400000 +942 2756 0.400000 +942 2768 0.400000 +942 2858 0.400000 +942 2893 0.400000 +942 2983 0.400000 +942 3107 0.400000 +942 3110 0.400000 +942 3155 0.400000 +943 16 0.400000 +943 73 0.400000 +943 119 0.400000 +943 256 0.400000 +943 271 0.400000 +943 360 0.400000 +943 455 0.400000 +943 467 0.400000 +943 470 0.400000 +943 473 0.400000 +943 531 0.400000 +943 544 0.400000 +943 608 0.400000 +943 618 0.400000 +943 638 0.400000 +943 703 0.400000 +943 719 0.400000 +943 737 0.400000 +943 826 0.400000 +943 978 0.400000 +943 1029 0.400000 +943 1031 0.400000 +943 1097 0.400000 +943 1118 0.400000 +943 1312 0.400000 +943 1320 0.400000 +943 1420 0.400000 +943 1442 0.400000 +943 1459 0.400000 +943 1495 0.400000 +943 1497 0.400000 +943 1635 0.400000 +943 1649 0.400000 +943 1666 0.400000 +943 1685 0.400000 +943 1720 0.400000 +943 1750 0.400000 +943 1877 0.400000 +943 2014 0.400000 +943 2049 0.400000 +943 2077 0.400000 +943 2113 0.400000 +943 2129 0.400000 +943 2150 0.400000 +943 2164 0.400000 +943 2287 0.400000 +943 2392 0.400000 +943 2393 0.400000 +943 2410 0.400000 +943 2491 0.400000 +943 2529 0.400000 +943 2541 0.400000 +943 2726 0.400000 +943 2905 0.400000 +943 3087 0.400000 +943 3138 0.400000 +943 3196 0.400000 +944 77 0.400000 +944 117 0.400000 +944 208 0.400000 +944 229 0.400000 +944 275 0.400000 +944 283 0.400000 +944 291 0.400000 +944 412 0.400000 +944 417 0.400000 +944 458 0.400000 +944 678 0.400000 +944 704 0.400000 +944 771 0.400000 +944 809 0.400000 +944 854 0.400000 +944 871 0.400000 +944 919 0.400000 +944 927 0.400000 +944 936 0.400000 +944 999 0.400000 +944 1045 0.400000 +944 1073 0.400000 +944 1145 0.400000 +944 1159 0.400000 +944 1182 0.400000 +944 1267 0.400000 +944 1387 0.400000 +944 1473 0.400000 +944 1527 0.400000 +944 1563 0.400000 +944 1610 0.400000 +944 1614 0.400000 +944 1616 0.400000 +944 1642 0.400000 +944 1870 0.400000 +944 1886 0.400000 +944 1925 0.400000 +944 1949 0.400000 +944 1976 0.400000 +944 1980 0.400000 +944 1989 0.400000 +944 2101 0.400000 +944 2152 0.400000 +944 2183 0.400000 +944 2203 0.400000 +944 2239 0.400000 +944 2281 0.400000 +944 2296 0.400000 +944 2411 0.400000 +944 2460 0.400000 +944 2569 0.400000 +944 2581 0.400000 +944 2645 0.400000 +944 2649 0.400000 +944 2823 0.400000 +944 2865 0.400000 +944 2923 0.400000 +944 2937 0.400000 +944 2948 0.400000 +944 3027 0.400000 +945 31 0.400000 +945 66 0.400000 +945 133 0.400000 +945 259 0.400000 +945 263 0.400000 +945 356 0.400000 +945 385 0.400000 +945 438 0.400000 +945 466 0.400000 +945 481 0.400000 +945 563 0.400000 +945 652 0.400000 +945 730 0.400000 +945 761 0.400000 +945 763 0.400000 +945 786 0.400000 +945 809 0.400000 +945 820 0.400000 +945 827 0.400000 +945 917 0.400000 +945 1052 0.400000 +945 1113 0.400000 +945 1184 0.400000 +945 1243 0.400000 +945 1250 0.400000 +945 1311 0.400000 +945 1355 0.400000 +945 1502 0.400000 +945 1512 0.400000 +945 1534 0.400000 +945 1563 0.400000 +945 1608 0.400000 +945 1625 0.400000 +945 1653 0.400000 +945 1695 0.400000 +945 1710 0.400000 +945 1727 0.400000 +945 1778 0.400000 +945 1810 0.400000 +945 1816 0.400000 +945 1823 0.400000 +945 1871 0.400000 +945 2021 0.400000 +945 2042 0.400000 +945 2252 0.400000 +945 2280 0.400000 +945 2334 0.400000 +945 2428 0.400000 +945 2502 0.400000 +945 2573 0.400000 +945 2608 0.400000 +945 2622 0.400000 +945 2636 0.400000 +945 2693 0.400000 +945 2699 0.400000 +945 2718 0.400000 +945 2730 0.400000 +945 2751 0.400000 +945 2839 0.400000 +945 2852 0.400000 +945 2859 0.400000 +945 2870 0.400000 +945 2878 0.400000 +945 2918 0.400000 +945 2944 0.400000 +945 2970 0.400000 +945 2982 0.400000 +945 3084 0.400000 +945 3178 0.400000 +946 144 0.400000 +946 184 0.400000 +946 191 0.400000 +946 213 0.400000 +946 479 0.400000 +946 525 0.400000 +946 601 0.400000 +946 614 0.400000 +946 672 0.400000 +946 708 0.400000 +946 890 0.400000 +946 908 0.400000 +946 942 0.400000 +946 1022 0.400000 +946 1067 0.400000 +946 1102 0.400000 +946 1137 0.400000 +946 1236 0.400000 +946 1365 0.400000 +946 1441 0.400000 +946 1474 0.400000 +946 1500 0.400000 +946 1518 0.400000 +946 1618 0.400000 +946 1623 0.400000 +946 1685 0.400000 +946 1714 0.400000 +946 1768 0.400000 +946 1784 0.400000 +946 1805 0.400000 +946 1891 0.400000 +946 1931 0.400000 +946 1968 0.400000 +946 1976 0.400000 +946 2108 0.400000 +946 2227 0.400000 +946 2260 0.400000 +946 2299 0.400000 +946 2301 0.400000 +946 2345 0.400000 +946 2348 0.400000 +946 2435 0.400000 +946 2499 0.400000 +946 2503 0.400000 +946 2604 0.400000 +946 2654 0.400000 +946 2863 0.400000 +946 2866 0.400000 +946 2870 0.400000 +946 2928 0.400000 +946 2935 0.400000 +946 3030 0.400000 +946 3098 0.400000 +946 3122 0.400000 +946 3134 0.400000 +946 3180 0.400000 +946 3189 0.400000 +947 21 0.400000 +947 85 0.400000 +947 116 0.400000 +947 206 0.400000 +947 225 0.400000 +947 287 0.400000 +947 321 0.400000 +947 373 0.400000 +947 379 0.400000 +947 441 0.400000 +947 606 0.400000 +947 622 0.400000 +947 718 0.400000 +947 785 0.400000 +947 843 0.400000 +947 919 0.400000 +947 982 0.400000 +947 994 0.400000 +947 1008 0.400000 +947 1058 0.400000 +947 1059 0.400000 +947 1072 0.400000 +947 1144 0.400000 +947 1288 0.400000 +947 1428 0.400000 +947 1481 0.400000 +947 1668 0.400000 +947 1748 0.400000 +947 1878 0.400000 +947 1890 0.400000 +947 2168 0.400000 +947 2197 0.400000 +947 2410 0.400000 +947 2430 0.400000 +947 2492 0.400000 +947 2494 0.400000 +947 2510 0.400000 +947 2530 0.400000 +947 2533 0.400000 +947 2624 0.400000 +947 2643 0.400000 +947 2644 0.400000 +947 2649 0.400000 +947 2692 0.400000 +947 2762 0.400000 +947 2780 0.400000 +947 2787 0.400000 +947 2800 0.400000 +947 2832 0.400000 +947 2834 0.400000 +947 2910 0.400000 +947 2962 0.400000 +947 2983 0.400000 +947 3074 0.400000 +947 3076 0.400000 +947 3095 0.400000 +947 3157 0.400000 +947 3173 0.400000 +947 3183 0.400000 +947 3200 0.400000 +948 4 0.400000 +948 58 0.400000 +948 232 0.400000 +948 238 0.400000 +948 339 0.400000 +948 391 0.400000 +948 393 0.400000 +948 495 0.400000 +948 504 0.400000 +948 631 0.400000 +948 665 0.400000 +948 681 0.400000 +948 758 0.400000 +948 766 0.400000 +948 809 0.400000 +948 903 0.400000 +948 910 0.400000 +948 918 0.400000 +948 977 0.400000 +948 991 0.400000 +948 1021 0.400000 +948 1026 0.400000 +948 1047 0.400000 +948 1069 0.400000 +948 1204 0.400000 +948 1241 0.400000 +948 1272 0.400000 +948 1347 0.400000 +948 1353 0.400000 +948 1366 0.400000 +948 1379 0.400000 +948 1420 0.400000 +948 1479 0.400000 +948 1505 0.400000 +948 1556 0.400000 +948 1579 0.400000 +948 1580 0.400000 +948 1657 0.400000 +948 1847 0.400000 +948 1901 0.400000 +948 1918 0.400000 +948 1943 0.400000 +948 1980 0.400000 +948 2014 0.400000 +948 2016 0.400000 +948 2054 0.400000 +948 2060 0.400000 +948 2082 0.400000 +948 2133 0.400000 +948 2169 0.400000 +948 2185 0.400000 +948 2370 0.400000 +948 2443 0.400000 +948 2551 0.400000 +948 2643 0.400000 +948 2724 0.400000 +948 2741 0.400000 +948 2749 0.400000 +948 2770 0.400000 +948 2847 0.400000 +948 2893 0.400000 +948 2901 0.400000 +948 2962 0.400000 +948 3143 0.400000 +949 116 0.400000 +949 222 0.400000 +949 235 0.400000 +949 269 0.400000 +949 270 0.400000 +949 347 0.400000 +949 351 0.400000 +949 381 0.400000 +949 389 0.400000 +949 409 0.400000 +949 444 0.400000 +949 449 0.400000 +949 546 0.400000 +949 614 0.400000 +949 652 0.400000 +949 692 0.400000 +949 821 0.400000 +949 846 0.400000 +949 856 0.400000 +949 863 0.400000 +949 971 0.400000 +949 994 0.400000 +949 1042 0.400000 +949 1077 0.400000 +949 1087 0.400000 +949 1117 0.400000 +949 1124 0.400000 +949 1128 0.400000 +949 1179 0.400000 +949 1202 0.400000 +949 1353 0.400000 +949 1369 0.400000 +949 1454 0.400000 +949 1553 0.400000 +949 1614 0.400000 +949 1654 0.400000 +949 1722 0.400000 +949 1965 0.400000 +949 1981 0.400000 +949 2044 0.400000 +949 2046 0.400000 +949 2053 0.400000 +949 2104 0.400000 +949 2146 0.400000 +949 2162 0.400000 +949 2174 0.400000 +949 2236 0.400000 +949 2239 0.400000 +949 2350 0.400000 +949 2417 0.400000 +949 2526 0.400000 +949 2584 0.400000 +949 2753 0.400000 +949 2769 0.400000 +949 2917 0.400000 +949 2956 0.400000 +949 3113 0.400000 +949 3147 0.400000 +950 4 0.400000 +950 75 0.400000 +950 95 0.400000 +950 140 0.400000 +950 163 0.400000 +950 185 0.400000 +950 253 0.400000 +950 316 0.400000 +950 353 0.400000 +950 372 0.400000 +950 533 0.400000 +950 547 0.400000 +950 692 0.400000 +950 725 0.400000 +950 762 0.400000 +950 855 0.400000 +950 860 0.400000 +950 875 0.400000 +950 943 0.400000 +950 969 0.400000 +950 988 0.400000 +950 1017 0.400000 +950 1119 0.400000 +950 1221 0.400000 +950 1229 0.400000 +950 1335 0.400000 +950 1344 0.400000 +950 1396 0.400000 +950 1403 0.400000 +950 1494 0.400000 +950 1523 0.400000 +950 1580 0.400000 +950 1581 0.400000 +950 1610 0.400000 +950 1623 0.400000 +950 1659 0.400000 +950 1665 0.400000 +950 1724 0.400000 +950 1766 0.400000 +950 1781 0.400000 +950 1939 0.400000 +950 1940 0.400000 +950 1994 0.400000 +950 2011 0.400000 +950 2035 0.400000 +950 2201 0.400000 +950 2324 0.400000 +950 2326 0.400000 +950 2331 0.400000 +950 2384 0.400000 +950 2387 0.400000 +950 2478 0.400000 +950 2507 0.400000 +950 2517 0.400000 +950 2583 0.400000 +950 2612 0.400000 +950 2647 0.400000 +950 2745 0.400000 +950 2771 0.400000 +950 2840 0.400000 +950 2848 0.400000 +950 2883 0.400000 +950 2921 0.400000 +950 2958 0.400000 +950 2979 0.400000 +950 3021 0.400000 +950 3047 0.400000 +950 3049 0.400000 +950 3127 0.400000 +950 3133 0.400000 +951 17 0.400000 +951 96 0.400000 +951 101 0.400000 +951 107 0.400000 +951 134 0.400000 +951 161 0.400000 +951 224 0.400000 +951 231 0.400000 +951 278 0.400000 +951 366 0.400000 +951 422 0.400000 +951 432 0.400000 +951 478 0.400000 +951 496 0.400000 +951 517 0.400000 +951 529 0.400000 +951 561 0.400000 +951 645 0.400000 +951 786 0.400000 +951 832 0.400000 +951 842 0.400000 +951 845 0.400000 +951 853 0.400000 +951 1000 0.400000 +951 1067 0.400000 +951 1072 0.400000 +951 1077 0.400000 +951 1141 0.400000 +951 1169 0.400000 +951 1356 0.400000 +951 1366 0.400000 +951 1496 0.400000 +951 1509 0.400000 +951 1521 0.400000 +951 1527 0.400000 +951 1533 0.400000 +951 1600 0.400000 +951 1625 0.400000 +951 1630 0.400000 +951 1711 0.400000 +951 1778 0.400000 +951 1821 0.400000 +951 1998 0.400000 +951 2026 0.400000 +951 2054 0.400000 +951 2114 0.400000 +951 2127 0.400000 +951 2149 0.400000 +951 2199 0.400000 +951 2219 0.400000 +951 2244 0.400000 +951 2288 0.400000 +951 2416 0.400000 +951 2439 0.400000 +951 2465 0.400000 +951 2480 0.400000 +951 2517 0.400000 +951 2697 0.400000 +951 2724 0.400000 +951 2850 0.400000 +951 2870 0.400000 +951 2923 0.400000 +951 2944 0.400000 +951 2985 0.400000 +951 3000 0.400000 +951 3047 0.400000 +951 3051 0.400000 +951 3061 0.400000 +951 3068 0.400000 +951 3105 0.400000 +951 3139 0.400000 +951 3175 0.400000 +952 34 0.400000 +952 173 0.400000 +952 371 0.400000 +952 514 0.400000 +952 550 0.400000 +952 599 0.400000 +952 630 0.400000 +952 821 0.400000 +952 863 0.400000 +952 882 0.400000 +952 918 0.400000 +952 1006 0.400000 +952 1078 0.400000 +952 1086 0.400000 +952 1272 0.400000 +952 1285 0.400000 +952 1290 0.400000 +952 1303 0.400000 +952 1323 0.400000 +952 1384 0.400000 +952 1408 0.400000 +952 1438 0.400000 +952 1447 0.400000 +952 1474 0.400000 +952 1489 0.400000 +952 1506 0.400000 +952 1535 0.400000 +952 1558 0.400000 +952 1575 0.400000 +952 1600 0.400000 +952 1639 0.400000 +952 1663 0.400000 +952 1787 0.400000 +952 1788 0.400000 +952 1798 0.400000 +952 1825 0.400000 +952 1937 0.400000 +952 1959 0.400000 +952 1967 0.400000 +952 1991 0.400000 +952 2025 0.400000 +952 2032 0.400000 +952 2043 0.400000 +952 2133 0.400000 +952 2229 0.400000 +952 2232 0.400000 +952 2260 0.400000 +952 2266 0.400000 +952 2287 0.400000 +952 2311 0.400000 +952 2332 0.400000 +952 2394 0.400000 +952 2419 0.400000 +952 2502 0.400000 +952 2556 0.400000 +952 2575 0.400000 +952 2611 0.400000 +952 2675 0.400000 +952 2699 0.400000 +952 2740 0.400000 +952 2756 0.400000 +952 2906 0.400000 +952 2944 0.400000 +952 3031 0.400000 +952 3057 0.400000 +952 3079 0.400000 +952 3158 0.400000 +953 41 0.400000 +953 139 0.400000 +953 178 0.400000 +953 224 0.400000 +953 230 0.400000 +953 249 0.400000 +953 276 0.400000 +953 293 0.400000 +953 303 0.400000 +953 315 0.400000 +953 456 0.400000 +953 585 0.400000 +953 619 0.400000 +953 694 0.400000 +953 714 0.400000 +953 765 0.400000 +953 810 0.400000 +953 831 0.400000 +953 872 0.400000 +953 876 0.400000 +953 879 0.400000 +953 890 0.400000 +953 955 0.400000 +953 1015 0.400000 +953 1165 0.400000 +953 1210 0.400000 +953 1242 0.400000 +953 1256 0.400000 +953 1332 0.400000 +953 1344 0.400000 +953 1387 0.400000 +953 1389 0.400000 +953 1464 0.400000 +953 1571 0.400000 +953 1577 0.400000 +953 1584 0.400000 +953 1589 0.400000 +953 1619 0.400000 +953 1718 0.400000 +953 1878 0.400000 +953 1910 0.400000 +953 1969 0.400000 +953 1970 0.400000 +953 2002 0.400000 +953 2143 0.400000 +953 2146 0.400000 +953 2184 0.400000 +953 2294 0.400000 +953 2406 0.400000 +953 2411 0.400000 +953 2425 0.400000 +953 2453 0.400000 +953 2494 0.400000 +953 2523 0.400000 +953 2660 0.400000 +953 2718 0.400000 +953 2742 0.400000 +953 2748 0.400000 +953 2785 0.400000 +953 2806 0.400000 +953 2860 0.400000 +953 2897 0.400000 +953 2950 0.400000 +953 2986 0.400000 +953 3039 0.400000 +953 3042 0.400000 +953 3054 0.400000 +953 3067 0.400000 +953 3142 0.400000 +953 3157 0.400000 +953 3182 0.400000 +954 13 0.400000 +954 32 0.400000 +954 57 0.400000 +954 86 0.400000 +954 171 0.400000 +954 190 0.400000 +954 203 0.400000 +954 348 0.400000 +954 378 0.400000 +954 405 0.400000 +954 422 0.400000 +954 437 0.400000 +954 591 0.400000 +954 635 0.400000 +954 782 0.400000 +954 806 0.400000 +954 826 0.400000 +954 990 0.400000 +954 1088 0.400000 +954 1108 0.400000 +954 1116 0.400000 +954 1136 0.400000 +954 1212 0.400000 +954 1244 0.400000 +954 1310 0.400000 +954 1330 0.400000 +954 1390 0.400000 +954 1397 0.400000 +954 1449 0.400000 +954 1499 0.400000 +954 1529 0.400000 +954 1589 0.400000 +954 1602 0.400000 +954 1743 0.400000 +954 1765 0.400000 +954 1794 0.400000 +954 1799 0.400000 +954 1846 0.400000 +954 1897 0.400000 +954 1910 0.400000 +954 1930 0.400000 +954 1947 0.400000 +954 2031 0.400000 +954 2073 0.400000 +954 2100 0.400000 +954 2148 0.400000 +954 2166 0.400000 +954 2200 0.400000 +954 2235 0.400000 +954 2258 0.400000 +954 2277 0.400000 +954 2368 0.400000 +954 2371 0.400000 +954 2467 0.400000 +954 2507 0.400000 +954 2606 0.400000 +954 2720 0.400000 +954 2742 0.400000 +954 2752 0.400000 +954 2764 0.400000 +954 2788 0.400000 +954 2853 0.400000 +954 2874 0.400000 +954 2926 0.400000 +954 2936 0.400000 +954 3017 0.400000 +954 3042 0.400000 +954 3085 0.400000 +954 3095 0.400000 +954 3113 0.400000 +954 3140 0.400000 +954 3162 0.400000 +954 3185 0.400000 +955 29 0.400000 +955 31 0.400000 +955 71 0.400000 +955 191 0.400000 +955 233 0.400000 +955 263 0.400000 +955 322 0.400000 +955 342 0.400000 +955 343 0.400000 +955 382 0.400000 +955 395 0.400000 +955 403 0.400000 +955 422 0.400000 +955 433 0.400000 +955 436 0.400000 +955 454 0.400000 +955 482 0.400000 +955 487 0.400000 +955 488 0.400000 +955 527 0.400000 +955 542 0.400000 +955 570 0.400000 +955 579 0.400000 +955 595 0.400000 +955 618 0.400000 +955 688 0.400000 +955 725 0.400000 +955 764 0.400000 +955 798 0.400000 +955 803 0.400000 +955 817 0.400000 +955 849 0.400000 +955 866 0.400000 +955 878 0.400000 +955 880 0.400000 +955 906 0.400000 +955 1028 0.400000 +955 1154 0.400000 +955 1196 0.400000 +955 1198 0.400000 +955 1234 0.400000 +955 1283 0.400000 +955 1293 0.400000 +955 1296 0.400000 +955 1315 0.400000 +955 1360 0.400000 +955 1398 0.400000 +955 1433 0.400000 +955 1458 0.400000 +955 1480 0.400000 +955 1501 0.400000 +955 1517 0.400000 +955 1540 0.400000 +955 1541 0.400000 +955 1565 0.400000 +955 1587 0.400000 +955 1689 0.400000 +955 1767 0.400000 +955 1771 0.400000 +955 1931 0.400000 +955 1963 0.400000 +955 2027 0.400000 +955 2033 0.400000 +955 2096 0.400000 +955 2129 0.400000 +955 2199 0.400000 +955 2230 0.400000 +955 2243 0.400000 +955 2419 0.400000 +955 2436 0.400000 +955 2446 0.400000 +955 2507 0.400000 +955 2513 0.400000 +955 2548 0.400000 +955 2646 0.400000 +955 2704 0.400000 +955 2773 0.400000 +955 2798 0.400000 +955 2836 0.400000 +955 2850 0.400000 +955 2904 0.400000 +955 2986 0.400000 +955 3028 0.400000 +955 3075 0.400000 +955 3086 0.400000 +955 3088 0.400000 +955 3115 0.400000 +955 3150 0.400000 +955 3191 0.400000 +956 8 0.400000 +956 69 0.400000 +956 100 0.400000 +956 149 0.400000 +956 422 0.400000 +956 442 0.400000 +956 460 0.400000 +956 477 0.400000 +956 645 0.400000 +956 662 0.400000 +956 820 0.400000 +956 873 0.400000 +956 898 0.400000 +956 1018 0.400000 +956 1056 0.400000 +956 1069 0.400000 +956 1187 0.400000 +956 1237 0.400000 +956 1246 0.400000 +956 1360 0.400000 +956 1396 0.400000 +956 1457 0.400000 +956 1463 0.400000 +956 1484 0.400000 +956 1558 0.400000 +956 1559 0.400000 +956 1574 0.400000 +956 1727 0.400000 +956 1737 0.400000 +956 1765 0.400000 +956 1827 0.400000 +956 1853 0.400000 +956 1877 0.400000 +956 1901 0.400000 +956 1927 0.400000 +956 2011 0.400000 +956 2060 0.400000 +956 2114 0.400000 +956 2133 0.400000 +956 2166 0.400000 +956 2221 0.400000 +956 2304 0.400000 +956 2338 0.400000 +956 2369 0.400000 +956 2399 0.400000 +956 2464 0.400000 +956 2485 0.400000 +956 2582 0.400000 +956 2589 0.400000 +956 2595 0.400000 +956 2597 0.400000 +956 2643 0.400000 +956 2655 0.400000 +956 2702 0.400000 +956 2705 0.400000 +956 2773 0.400000 +956 2836 0.400000 +956 2888 0.400000 +956 2917 0.400000 +956 2961 0.400000 +956 2988 0.400000 +956 3006 0.400000 +956 3030 0.400000 +956 3049 0.400000 +956 3112 0.400000 +956 3153 0.400000 +956 3177 0.400000 +957 52 0.400000 +957 106 0.400000 +957 172 0.400000 +957 181 0.400000 +957 277 0.400000 +957 278 0.400000 +957 315 0.400000 +957 329 0.400000 +957 337 0.400000 +957 357 0.400000 +957 375 0.400000 +957 434 0.400000 +957 454 0.400000 +957 534 0.400000 +957 544 0.400000 +957 585 0.400000 +957 590 0.400000 +957 613 0.400000 +957 662 0.400000 +957 711 0.400000 +957 743 0.400000 +957 844 0.400000 +957 869 0.400000 +957 897 0.400000 +957 908 0.400000 +957 959 0.400000 +957 1023 0.400000 +957 1034 0.400000 +957 1102 0.400000 +957 1211 0.400000 +957 1283 0.400000 +957 1363 0.400000 +957 1378 0.400000 +957 1387 0.400000 +957 1392 0.400000 +957 1427 0.400000 +957 1454 0.400000 +957 1476 0.400000 +957 1594 0.400000 +957 1965 0.400000 +957 1993 0.400000 +957 2031 0.400000 +957 2094 0.400000 +957 2118 0.400000 +957 2144 0.400000 +957 2177 0.400000 +957 2187 0.400000 +957 2265 0.400000 +957 2277 0.400000 +957 2293 0.400000 +957 2363 0.400000 +957 2390 0.400000 +957 2452 0.400000 +957 2456 0.400000 +957 2474 0.400000 +957 2520 0.400000 +957 2537 0.400000 +957 2639 0.400000 +957 2674 0.400000 +957 2720 0.400000 +957 2813 0.400000 +957 2830 0.400000 +957 2892 0.400000 +957 2914 0.400000 +957 2968 0.400000 +957 2971 0.400000 +957 3134 0.400000 +957 3154 0.400000 +957 3177 0.400000 +958 1 0.400000 +958 94 0.400000 +958 128 0.400000 +958 135 0.400000 +958 207 0.400000 +958 211 0.400000 +958 290 0.400000 +958 295 0.400000 +958 313 0.400000 +958 485 0.400000 +958 498 0.400000 +958 501 0.400000 +958 557 0.400000 +958 568 0.400000 +958 630 0.400000 +958 650 0.400000 +958 697 0.400000 +958 799 0.400000 +958 911 0.400000 +958 914 0.400000 +958 948 0.400000 +958 950 0.400000 +958 1064 0.400000 +958 1073 0.400000 +958 1099 0.400000 +958 1135 0.400000 +958 1179 0.400000 +958 1185 0.400000 +958 1283 0.400000 +958 1356 0.400000 +958 1362 0.400000 +958 1398 0.400000 +958 1423 0.400000 +958 1513 0.400000 +958 1536 0.400000 +958 1538 0.400000 +958 1591 0.400000 +958 1640 0.400000 +958 1646 0.400000 +958 1700 0.400000 +958 1739 0.400000 +958 1766 0.400000 +958 1784 0.400000 +958 1838 0.400000 +958 1970 0.400000 +958 1991 0.400000 +958 2000 0.400000 +958 2003 0.400000 +958 2029 0.400000 +958 2146 0.400000 +958 2188 0.400000 +958 2278 0.400000 +958 2397 0.400000 +958 2405 0.400000 +958 2475 0.400000 +958 2537 0.400000 +958 2546 0.400000 +958 2576 0.400000 +958 2607 0.400000 +958 2691 0.400000 +958 2747 0.400000 +958 2763 0.400000 +958 2823 0.400000 +958 3031 0.400000 +958 3050 0.400000 +958 3097 0.400000 +958 3110 0.400000 +958 3180 0.400000 +959 15 0.400000 +959 36 0.400000 +959 38 0.400000 +959 111 0.400000 +959 177 0.400000 +959 211 0.400000 +959 345 0.400000 +959 373 0.400000 +959 452 0.400000 +959 459 0.400000 +959 556 0.400000 +959 575 0.400000 +959 647 0.400000 +959 712 0.400000 +959 730 0.400000 +959 773 0.400000 +959 900 0.400000 +959 912 0.400000 +959 921 0.400000 +959 996 0.400000 +959 1109 0.400000 +959 1172 0.400000 +959 1295 0.400000 +959 1372 0.400000 +959 1415 0.400000 +959 1418 0.400000 +959 1469 0.400000 +959 1610 0.400000 +959 1639 0.400000 +959 1704 0.400000 +959 1753 0.400000 +959 1788 0.400000 +959 1808 0.400000 +959 1955 0.400000 +959 1977 0.400000 +959 2000 0.400000 +959 2008 0.400000 +959 2140 0.400000 +959 2155 0.400000 +959 2162 0.400000 +959 2339 0.400000 +959 2340 0.400000 +959 2349 0.400000 +959 2360 0.400000 +959 2524 0.400000 +959 2548 0.400000 +959 2570 0.400000 +959 2595 0.400000 +959 2681 0.400000 +959 2686 0.400000 +959 2797 0.400000 +959 2804 0.400000 +959 2873 0.400000 +959 2909 0.400000 +959 2997 0.400000 +959 3049 0.400000 +959 3095 0.400000 +959 3099 0.400000 +959 3175 0.400000 +960 29 0.400000 +960 96 0.400000 +960 233 0.400000 +960 335 0.400000 +960 338 0.400000 +960 345 0.400000 +960 397 0.400000 +960 521 0.400000 +960 550 0.400000 +960 631 0.400000 +960 665 0.400000 +960 685 0.400000 +960 833 0.400000 +960 859 0.400000 +960 888 0.400000 +960 895 0.400000 +960 918 0.400000 +960 927 0.400000 +960 942 0.400000 +960 1020 0.400000 +960 1066 0.400000 +960 1078 0.400000 +960 1314 0.400000 +960 1400 0.400000 +960 1558 0.400000 +960 1578 0.400000 +960 1610 0.400000 +960 1689 0.400000 +960 1709 0.400000 +960 1719 0.400000 +960 1734 0.400000 +960 1872 0.400000 +960 1976 0.400000 +960 1993 0.400000 +960 2006 0.400000 +960 2027 0.400000 +960 2051 0.400000 +960 2128 0.400000 +960 2142 0.400000 +960 2162 0.400000 +960 2273 0.400000 +960 2301 0.400000 +960 2353 0.400000 +960 2401 0.400000 +960 2519 0.400000 +960 2594 0.400000 +960 2655 0.400000 +960 2668 0.400000 +960 2669 0.400000 +960 2726 0.400000 +960 2873 0.400000 +960 2887 0.400000 +960 3021 0.400000 +960 3118 0.400000 +960 3161 0.400000 +960 3184 0.400000 +961 25 0.400000 +961 88 0.400000 +961 103 0.400000 +961 152 0.400000 +961 160 0.400000 +961 239 0.400000 +961 244 0.400000 +961 409 0.400000 +961 608 0.400000 +961 649 0.400000 +961 650 0.400000 +961 705 0.400000 +961 752 0.400000 +961 898 0.400000 +961 905 0.400000 +961 943 0.400000 +961 1014 0.400000 +961 1079 0.400000 +961 1095 0.400000 +961 1141 0.400000 +961 1165 0.400000 +961 1173 0.400000 +961 1179 0.400000 +961 1189 0.400000 +961 1218 0.400000 +961 1256 0.400000 +961 1258 0.400000 +961 1265 0.400000 +961 1270 0.400000 +961 1284 0.400000 +961 1296 0.400000 +961 1359 0.400000 +961 1457 0.400000 +961 1471 0.400000 +961 1488 0.400000 +961 1502 0.400000 +961 1564 0.400000 +961 1653 0.400000 +961 1674 0.400000 +961 1796 0.400000 +961 1816 0.400000 +961 1887 0.400000 +961 1949 0.400000 +961 2061 0.400000 +961 2085 0.400000 +961 2112 0.400000 +961 2129 0.400000 +961 2231 0.400000 +961 2287 0.400000 +961 2289 0.400000 +961 2338 0.400000 +961 2340 0.400000 +961 2352 0.400000 +961 2387 0.400000 +961 2537 0.400000 +961 2556 0.400000 +961 2708 0.400000 +961 2738 0.400000 +961 2759 0.400000 +961 2771 0.400000 +961 2823 0.400000 +961 2861 0.400000 +961 2926 0.400000 +961 3054 0.400000 +961 3129 0.400000 +962 31 0.400000 +962 49 0.400000 +962 65 0.400000 +962 185 0.400000 +962 235 0.400000 +962 262 0.400000 +962 347 0.400000 +962 351 0.400000 +962 384 0.400000 +962 412 0.400000 +962 415 0.400000 +962 417 0.400000 +962 431 0.400000 +962 476 0.400000 +962 520 0.400000 +962 530 0.400000 +962 537 0.400000 +962 554 0.400000 +962 593 0.400000 +962 617 0.400000 +962 666 0.400000 +962 729 0.400000 +962 778 0.400000 +962 790 0.400000 +962 813 0.400000 +962 818 0.400000 +962 868 0.400000 +962 931 0.400000 +962 1068 0.400000 +962 1160 0.400000 +962 1239 0.400000 +962 1259 0.400000 +962 1288 0.400000 +962 1344 0.400000 +962 1389 0.400000 +962 1394 0.400000 +962 1451 0.400000 +962 1505 0.400000 +962 1641 0.400000 +962 1667 0.400000 +962 1669 0.400000 +962 1692 0.400000 +962 1701 0.400000 +962 1710 0.400000 +962 1726 0.400000 +962 1732 0.400000 +962 1783 0.400000 +962 1909 0.400000 +962 1918 0.400000 +962 1946 0.400000 +962 1951 0.400000 +962 1997 0.400000 +962 2002 0.400000 +962 2189 0.400000 +962 2335 0.400000 +962 2423 0.400000 +962 2459 0.400000 +962 2478 0.400000 +962 2638 0.400000 +962 2678 0.400000 +962 2680 0.400000 +962 2681 0.400000 +962 2685 0.400000 +962 2717 0.400000 +962 2720 0.400000 +962 2798 0.400000 +962 2854 0.400000 +962 2860 0.400000 +962 2878 0.400000 +962 2917 0.400000 +962 3081 0.400000 +962 3095 0.400000 +962 3097 0.400000 +962 3116 0.400000 +962 3117 0.400000 +962 3125 0.400000 +962 3150 0.400000 +962 3188 0.400000 +963 48 0.400000 +963 65 0.400000 +963 85 0.400000 +963 106 0.400000 +963 122 0.400000 +963 137 0.400000 +963 183 0.400000 +963 196 0.400000 +963 211 0.400000 +963 219 0.400000 +963 247 0.400000 +963 347 0.400000 +963 358 0.400000 +963 406 0.400000 +963 475 0.400000 +963 486 0.400000 +963 532 0.400000 +963 554 0.400000 +963 573 0.400000 +963 578 0.400000 +963 718 0.400000 +963 742 0.400000 +963 1004 0.400000 +963 1072 0.400000 +963 1081 0.400000 +963 1339 0.400000 +963 1401 0.400000 +963 1441 0.400000 +963 1446 0.400000 +963 1452 0.400000 +963 1503 0.400000 +963 1515 0.400000 +963 1627 0.400000 +963 1664 0.400000 +963 1814 0.400000 +963 1881 0.400000 +963 1969 0.400000 +963 2010 0.400000 +963 2012 0.400000 +963 2121 0.400000 +963 2158 0.400000 +963 2167 0.400000 +963 2195 0.400000 +963 2265 0.400000 +963 2283 0.400000 +963 2361 0.400000 +963 2387 0.400000 +963 2400 0.400000 +963 2438 0.400000 +963 2481 0.400000 +963 2484 0.400000 +963 2487 0.400000 +963 2538 0.400000 +963 2599 0.400000 +963 2607 0.400000 +963 2687 0.400000 +963 2706 0.400000 +963 2729 0.400000 +963 2762 0.400000 +963 2848 0.400000 +963 2896 0.400000 +963 2907 0.400000 +963 2922 0.400000 +963 3167 0.400000 +964 20 0.400000 +964 32 0.400000 +964 46 0.400000 +964 103 0.400000 +964 113 0.400000 +964 121 0.400000 +964 139 0.400000 +964 206 0.400000 +964 217 0.400000 +964 227 0.400000 +964 228 0.400000 +964 272 0.400000 +964 292 0.400000 +964 341 0.400000 +964 411 0.400000 +964 778 0.400000 +964 829 0.400000 +964 834 0.400000 +964 838 0.400000 +964 866 0.400000 +964 876 0.400000 +964 944 0.400000 +964 952 0.400000 +964 1067 0.400000 +964 1086 0.400000 +964 1088 0.400000 +964 1124 0.400000 +964 1157 0.400000 +964 1198 0.400000 +964 1245 0.400000 +964 1262 0.400000 +964 1271 0.400000 +964 1329 0.400000 +964 1409 0.400000 +964 1426 0.400000 +964 1463 0.400000 +964 1485 0.400000 +964 1577 0.400000 +964 1674 0.400000 +964 1699 0.400000 +964 1713 0.400000 +964 1759 0.400000 +964 1779 0.400000 +964 1842 0.400000 +964 1946 0.400000 +964 2102 0.400000 +964 2143 0.400000 +964 2162 0.400000 +964 2178 0.400000 +964 2198 0.400000 +964 2266 0.400000 +964 2292 0.400000 +964 2378 0.400000 +964 2394 0.400000 +964 2505 0.400000 +964 2628 0.400000 +964 2711 0.400000 +964 2751 0.400000 +964 2780 0.400000 +964 2791 0.400000 +964 2875 0.400000 +964 2881 0.400000 +964 2897 0.400000 +964 3015 0.400000 +964 3016 0.400000 +964 3170 0.400000 +964 3178 0.400000 +964 3183 0.400000 +965 145 0.400000 +965 171 0.400000 +965 176 0.400000 +965 188 0.400000 +965 218 0.400000 +965 358 0.400000 +965 370 0.400000 +965 420 0.400000 +965 422 0.400000 +965 437 0.400000 +965 466 0.400000 +965 600 0.400000 +965 696 0.400000 +965 745 0.400000 +965 754 0.400000 +965 900 0.400000 +965 1120 0.400000 +965 1141 0.400000 +965 1179 0.400000 +965 1269 0.400000 +965 1303 0.400000 +965 1312 0.400000 +965 1344 0.400000 +965 1357 0.400000 +965 1532 0.400000 +965 1550 0.400000 +965 1626 0.400000 +965 1696 0.400000 +965 1734 0.400000 +965 1791 0.400000 +965 1830 0.400000 +965 1842 0.400000 +965 1963 0.400000 +965 2007 0.400000 +965 2074 0.400000 +965 2086 0.400000 +965 2114 0.400000 +965 2138 0.400000 +965 2184 0.400000 +965 2186 0.400000 +965 2238 0.400000 +965 2271 0.400000 +965 2275 0.400000 +965 2299 0.400000 +965 2363 0.400000 +965 2371 0.400000 +965 2393 0.400000 +965 2456 0.400000 +965 2475 0.400000 +965 2497 0.400000 +965 2534 0.400000 +965 2541 0.400000 +965 2544 0.400000 +965 2612 0.400000 +965 2617 0.400000 +965 2618 0.400000 +965 2817 0.400000 +965 2843 0.400000 +965 2889 0.400000 +965 2924 0.400000 +965 3029 0.400000 +965 3100 0.400000 +965 3161 0.400000 +966 62 0.400000 +966 149 0.400000 +966 312 0.400000 +966 357 0.400000 +966 424 0.400000 +966 432 0.400000 +966 486 0.400000 +966 540 0.400000 +966 550 0.400000 +966 601 0.400000 +966 615 0.400000 +966 647 0.400000 +966 750 0.400000 +966 836 0.400000 +966 839 0.400000 +966 987 0.400000 +966 1017 0.400000 +966 1088 0.400000 +966 1155 0.400000 +966 1181 0.400000 +966 1204 0.400000 +966 1364 0.400000 +966 1385 0.400000 +966 1483 0.400000 +966 1586 0.400000 +966 1613 0.400000 +966 1641 0.400000 +966 1691 0.400000 +966 1732 0.400000 +966 1823 0.400000 +966 1902 0.400000 +966 1904 0.400000 +966 1942 0.400000 +966 2181 0.400000 +966 2188 0.400000 +966 2339 0.400000 +966 2357 0.400000 +966 2405 0.400000 +966 2466 0.400000 +966 2479 0.400000 +966 2506 0.400000 +966 2599 0.400000 +966 2639 0.400000 +966 2679 0.400000 +966 2727 0.400000 +966 2803 0.400000 +966 2931 0.400000 +966 2966 0.400000 +966 2996 0.400000 +966 3026 0.400000 +966 3061 0.400000 +966 3067 0.400000 +966 3137 0.400000 +966 3145 0.400000 +966 3149 0.400000 +966 3175 0.400000 +967 65 0.400000 +967 102 0.400000 +967 120 0.400000 +967 129 0.400000 +967 194 0.400000 +967 223 0.400000 +967 235 0.400000 +967 304 0.400000 +967 314 0.400000 +967 334 0.400000 +967 341 0.400000 +967 361 0.400000 +967 363 0.400000 +967 516 0.400000 +967 538 0.400000 +967 561 0.400000 +967 698 0.400000 +967 705 0.400000 +967 792 0.400000 +967 902 0.400000 +967 1131 0.400000 +967 1144 0.400000 +967 1228 0.400000 +967 1274 0.400000 +967 1378 0.400000 +967 1474 0.400000 +967 1498 0.400000 +967 1504 0.400000 +967 1545 0.400000 +967 1660 0.400000 +967 1712 0.400000 +967 1724 0.400000 +967 1766 0.400000 +967 1781 0.400000 +967 1902 0.400000 +967 1980 0.400000 +967 2043 0.400000 +967 2053 0.400000 +967 2212 0.400000 +967 2220 0.400000 +967 2245 0.400000 +967 2269 0.400000 +967 2313 0.400000 +967 2347 0.400000 +967 2395 0.400000 +967 2459 0.400000 +967 2476 0.400000 +967 2675 0.400000 +967 2757 0.400000 +967 2772 0.400000 +967 2801 0.400000 +967 2802 0.400000 +967 2903 0.400000 +967 2951 0.400000 +967 3001 0.400000 +967 3177 0.400000 +968 7 0.400000 +968 30 0.400000 +968 48 0.400000 +968 80 0.400000 +968 149 0.400000 +968 175 0.400000 +968 187 0.400000 +968 222 0.400000 +968 295 0.400000 +968 343 0.400000 +968 427 0.400000 +968 526 0.400000 +968 638 0.400000 +968 683 0.400000 +968 710 0.400000 +968 712 0.400000 +968 719 0.400000 +968 744 0.400000 +968 763 0.400000 +968 805 0.400000 +968 876 0.400000 +968 927 0.400000 +968 1050 0.400000 +968 1061 0.400000 +968 1087 0.400000 +968 1131 0.400000 +968 1165 0.400000 +968 1184 0.400000 +968 1284 0.400000 +968 1330 0.400000 +968 1397 0.400000 +968 1570 0.400000 +968 1687 0.400000 +968 1777 0.400000 +968 1788 0.400000 +968 1863 0.400000 +968 1901 0.400000 +968 1915 0.400000 +968 2016 0.400000 +968 2101 0.400000 +968 2133 0.400000 +968 2209 0.400000 +968 2383 0.400000 +968 2402 0.400000 +968 2410 0.400000 +968 2440 0.400000 +968 2455 0.400000 +968 2477 0.400000 +968 2520 0.400000 +968 2564 0.400000 +968 2629 0.400000 +968 2633 0.400000 +968 2700 0.400000 +968 2718 0.400000 +968 2746 0.400000 +968 2773 0.400000 +968 2781 0.400000 +968 2804 0.400000 +968 2870 0.400000 +968 2987 0.400000 +968 3002 0.400000 +968 3032 0.400000 +968 3060 0.400000 +968 3077 0.400000 +968 3082 0.400000 +968 3150 0.400000 +968 3194 0.400000 +969 115 0.400000 +969 126 0.400000 +969 236 0.400000 +969 250 0.400000 +969 281 0.400000 +969 286 0.400000 +969 406 0.400000 +969 407 0.400000 +969 507 0.400000 +969 580 0.400000 +969 715 0.400000 +969 739 0.400000 +969 812 0.400000 +969 859 0.400000 +969 927 0.400000 +969 932 0.400000 +969 946 0.400000 +969 1011 0.400000 +969 1203 0.400000 +969 1257 0.400000 +969 1262 0.400000 +969 1298 0.400000 +969 1476 0.400000 +969 1534 0.400000 +969 1643 0.400000 +969 1865 0.400000 +969 1930 0.400000 +969 2091 0.400000 +969 2103 0.400000 +969 2153 0.400000 +969 2177 0.400000 +969 2183 0.400000 +969 2213 0.400000 +969 2245 0.400000 +969 2262 0.400000 +969 2303 0.400000 +969 2427 0.400000 +969 2447 0.400000 +969 2453 0.400000 +969 2547 0.400000 +969 2580 0.400000 +969 2741 0.400000 +969 2807 0.400000 +969 2813 0.400000 +969 2820 0.400000 +969 2879 0.400000 +969 2893 0.400000 +969 2901 0.400000 +969 3067 0.400000 +969 3110 0.400000 +969 3198 0.400000 +970 88 0.400000 +970 136 0.400000 +970 566 0.400000 +970 642 0.400000 +970 694 0.400000 +970 727 0.400000 +970 760 0.400000 +970 778 0.400000 +970 782 0.400000 +970 795 0.400000 +970 860 0.400000 +970 898 0.400000 +970 966 0.400000 +970 989 0.400000 +970 993 0.400000 +970 1022 0.400000 +970 1054 0.400000 +970 1193 0.400000 +970 1249 0.400000 +970 1423 0.400000 +970 1487 0.400000 +970 1604 0.400000 +970 1706 0.400000 +970 1746 0.400000 +970 1802 0.400000 +970 1815 0.400000 +970 1859 0.400000 +970 1903 0.400000 +970 2013 0.400000 +970 2022 0.400000 +970 2039 0.400000 +970 2048 0.400000 +970 2101 0.400000 +970 2120 0.400000 +970 2122 0.400000 +970 2155 0.400000 +970 2188 0.400000 +970 2224 0.400000 +970 2285 0.400000 +970 2296 0.400000 +970 2375 0.400000 +970 2377 0.400000 +970 2411 0.400000 +970 2474 0.400000 +970 2538 0.400000 +970 2544 0.400000 +970 2554 0.400000 +970 2687 0.400000 +970 2690 0.400000 +970 2694 0.400000 +970 2710 0.400000 +970 2818 0.400000 +970 2844 0.400000 +970 2893 0.400000 +970 2961 0.400000 +970 3010 0.400000 +970 3030 0.400000 +970 3049 0.400000 +970 3106 0.400000 +970 3146 0.400000 +971 27 0.400000 +971 80 0.400000 +971 84 0.400000 +971 213 0.400000 +971 242 0.400000 +971 325 0.400000 +971 332 0.400000 +971 386 0.400000 +971 421 0.400000 +971 434 0.400000 +971 526 0.400000 +971 539 0.400000 +971 553 0.400000 +971 574 0.400000 +971 713 0.400000 +971 715 0.400000 +971 757 0.400000 +971 799 0.400000 +971 826 0.400000 +971 829 0.400000 +971 897 0.400000 +971 978 0.400000 +971 1079 0.400000 +971 1110 0.400000 +971 1163 0.400000 +971 1226 0.400000 +971 1320 0.400000 +971 1352 0.400000 +971 1458 0.400000 +971 1539 0.400000 +971 1544 0.400000 +971 1729 0.400000 +971 1745 0.400000 +971 1840 0.400000 +971 1928 0.400000 +971 2020 0.400000 +971 2038 0.400000 +971 2072 0.400000 +971 2106 0.400000 +971 2177 0.400000 +971 2264 0.400000 +971 2279 0.400000 +971 2286 0.400000 +971 2381 0.400000 +971 2432 0.400000 +971 2663 0.400000 +971 2847 0.400000 +971 2858 0.400000 +971 2868 0.400000 +971 3038 0.400000 +971 3132 0.400000 +971 3138 0.400000 +971 3155 0.400000 +971 3160 0.400000 +972 32 0.400000 +972 213 0.400000 +972 347 0.400000 +972 366 0.400000 +972 404 0.400000 +972 427 0.400000 +972 465 0.400000 +972 466 0.400000 +972 533 0.400000 +972 567 0.400000 +972 603 0.400000 +972 662 0.400000 +972 727 0.400000 +972 747 0.400000 +972 766 0.400000 +972 799 0.400000 +972 811 0.400000 +972 876 0.400000 +972 914 0.400000 +972 929 0.400000 +972 1084 0.400000 +972 1169 0.400000 +972 1172 0.400000 +972 1199 0.400000 +972 1203 0.400000 +972 1327 0.400000 +972 1344 0.400000 +972 1363 0.400000 +972 1420 0.400000 +972 1481 0.400000 +972 1628 0.400000 +972 1658 0.400000 +972 1697 0.400000 +972 1794 0.400000 +972 1884 0.400000 +972 1900 0.400000 +972 1920 0.400000 +972 2041 0.400000 +972 2165 0.400000 +972 2209 0.400000 +972 2293 0.400000 +972 2368 0.400000 +972 2594 0.400000 +972 2622 0.400000 +972 2630 0.400000 +972 2700 0.400000 +972 2730 0.400000 +972 2805 0.400000 +972 2874 0.400000 +972 2884 0.400000 +972 2900 0.400000 +972 3003 0.400000 +972 3019 0.400000 +972 3055 0.400000 +972 3188 0.400000 +973 39 0.400000 +973 57 0.400000 +973 99 0.400000 +973 121 0.400000 +973 150 0.400000 +973 162 0.400000 +973 224 0.400000 +973 282 0.400000 +973 420 0.400000 +973 527 0.400000 +973 574 0.400000 +973 606 0.400000 +973 627 0.400000 +973 641 0.400000 +973 729 0.400000 +973 792 0.400000 +973 911 0.400000 +973 941 0.400000 +973 943 0.400000 +973 953 0.400000 +973 1114 0.400000 +973 1124 0.400000 +973 1199 0.400000 +973 1246 0.400000 +973 1266 0.400000 +973 1326 0.400000 +973 1413 0.400000 +973 1692 0.400000 +973 1695 0.400000 +973 1868 0.400000 +973 1869 0.400000 +973 1891 0.400000 +973 1954 0.400000 +973 1998 0.400000 +973 2012 0.400000 +973 2056 0.400000 +973 2082 0.400000 +973 2109 0.400000 +973 2111 0.400000 +973 2116 0.400000 +973 2155 0.400000 +973 2241 0.400000 +973 2242 0.400000 +973 2329 0.400000 +973 2339 0.400000 +973 2398 0.400000 +973 2409 0.400000 +973 2469 0.400000 +973 2493 0.400000 +973 2511 0.400000 +973 2550 0.400000 +973 2578 0.400000 +973 2599 0.400000 +973 2610 0.400000 +973 2687 0.400000 +973 2768 0.400000 +973 2816 0.400000 +973 3062 0.400000 +973 3114 0.400000 +973 3177 0.400000 +973 3184 0.400000 +974 11 0.400000 +974 22 0.400000 +974 91 0.400000 +974 133 0.400000 +974 182 0.400000 +974 216 0.400000 +974 219 0.400000 +974 244 0.400000 +974 393 0.400000 +974 406 0.400000 +974 409 0.400000 +974 482 0.400000 +974 507 0.400000 +974 542 0.400000 +974 555 0.400000 +974 564 0.400000 +974 642 0.400000 +974 654 0.400000 +974 698 0.400000 +974 765 0.400000 +974 776 0.400000 +974 777 0.400000 +974 825 0.400000 +974 855 0.400000 +974 907 0.400000 +974 953 0.400000 +974 1093 0.400000 +974 1111 0.400000 +974 1116 0.400000 +974 1117 0.400000 +974 1251 0.400000 +974 1326 0.400000 +974 1355 0.400000 +974 1472 0.400000 +974 1477 0.400000 +974 1507 0.400000 +974 1534 0.400000 +974 1575 0.400000 +974 1613 0.400000 +974 1615 0.400000 +974 1633 0.400000 +974 1686 0.400000 +974 1698 0.400000 +974 1700 0.400000 +974 1733 0.400000 +974 1746 0.400000 +974 1768 0.400000 +974 1775 0.400000 +974 1777 0.400000 +974 1793 0.400000 +974 1798 0.400000 +974 1874 0.400000 +974 1885 0.400000 +974 1913 0.400000 +974 1954 0.400000 +974 2025 0.400000 +974 2096 0.400000 +974 2159 0.400000 +974 2160 0.400000 +974 2177 0.400000 +974 2493 0.400000 +974 2565 0.400000 +974 2630 0.400000 +974 2659 0.400000 +974 2665 0.400000 +974 2676 0.400000 +974 2680 0.400000 +974 2769 0.400000 +974 2844 0.400000 +974 2993 0.400000 +974 3125 0.400000 +974 3133 0.400000 +974 3169 0.400000 +975 28 0.400000 +975 42 0.400000 +975 43 0.400000 +975 44 0.400000 +975 62 0.400000 +975 122 0.400000 +975 129 0.400000 +975 131 0.400000 +975 142 0.400000 +975 165 0.400000 +975 176 0.400000 +975 198 0.400000 +975 231 0.400000 +975 338 0.400000 +975 405 0.400000 +975 583 0.400000 +975 762 0.400000 +975 779 0.400000 +975 805 0.400000 +975 827 0.400000 +975 876 0.400000 +975 931 0.400000 +975 1023 0.400000 +975 1038 0.400000 +975 1048 0.400000 +975 1067 0.400000 +975 1121 0.400000 +975 1215 0.400000 +975 1320 0.400000 +975 1480 0.400000 +975 1553 0.400000 +975 1617 0.400000 +975 1642 0.400000 +975 1665 0.400000 +975 1668 0.400000 +975 1700 0.400000 +975 1701 0.400000 +975 1710 0.400000 +975 1756 0.400000 +975 1759 0.400000 +975 1887 0.400000 +975 1919 0.400000 +975 1921 0.400000 +975 2017 0.400000 +975 2038 0.400000 +975 2057 0.400000 +975 2060 0.400000 +975 2100 0.400000 +975 2143 0.400000 +975 2148 0.400000 +975 2216 0.400000 +975 2254 0.400000 +975 2269 0.400000 +975 2279 0.400000 +975 2292 0.400000 +975 2394 0.400000 +975 2435 0.400000 +975 2457 0.400000 +975 2485 0.400000 +975 2547 0.400000 +975 2591 0.400000 +975 2628 0.400000 +975 2666 0.400000 +975 2837 0.400000 +975 2840 0.400000 +975 2872 0.400000 +975 2879 0.400000 +975 2896 0.400000 +975 2958 0.400000 +975 2959 0.400000 +975 2973 0.400000 +975 2984 0.400000 +975 3057 0.400000 +975 3102 0.400000 +975 3129 0.400000 +975 3172 0.400000 +976 22 0.400000 +976 75 0.400000 +976 90 0.400000 +976 98 0.400000 +976 128 0.400000 +976 134 0.400000 +976 200 0.400000 +976 215 0.400000 +976 266 0.400000 +976 304 0.400000 +976 327 0.400000 +976 338 0.400000 +976 410 0.400000 +976 419 0.400000 +976 492 0.400000 +976 499 0.400000 +976 511 0.400000 +976 569 0.400000 +976 592 0.400000 +976 651 0.400000 +976 697 0.400000 +976 746 0.400000 +976 798 0.400000 +976 893 0.400000 +976 1001 0.400000 +976 1092 0.400000 +976 1139 0.400000 +976 1237 0.400000 +976 1263 0.400000 +976 1270 0.400000 +976 1326 0.400000 +976 1334 0.400000 +976 1365 0.400000 +976 1366 0.400000 +976 1435 0.400000 +976 1491 0.400000 +976 1522 0.400000 +976 1589 0.400000 +976 1710 0.400000 +976 1812 0.400000 +976 1897 0.400000 +976 1945 0.400000 +976 1986 0.400000 +976 2116 0.400000 +976 2171 0.400000 +976 2186 0.400000 +976 2195 0.400000 +976 2233 0.400000 +976 2242 0.400000 +976 2248 0.400000 +976 2281 0.400000 +976 2349 0.400000 +976 2379 0.400000 +976 2744 0.400000 +976 2748 0.400000 +976 2768 0.400000 +976 2896 0.400000 +976 3022 0.400000 +976 3041 0.400000 +976 3058 0.400000 +976 3070 0.400000 +976 3083 0.400000 +976 3113 0.400000 +976 3142 0.400000 +976 3144 0.400000 +976 3146 0.400000 +977 34 0.400000 +977 62 0.400000 +977 81 0.400000 +977 149 0.400000 +977 173 0.400000 +977 191 0.400000 +977 230 0.400000 +977 246 0.400000 +977 303 0.400000 +977 356 0.400000 +977 370 0.400000 +977 417 0.400000 +977 440 0.400000 +977 441 0.400000 +977 449 0.400000 +977 540 0.400000 +977 544 0.400000 +977 584 0.400000 +977 630 0.400000 +977 639 0.400000 +977 728 0.400000 +977 791 0.400000 +977 811 0.400000 +977 897 0.400000 +977 953 0.400000 +977 1127 0.400000 +977 1128 0.400000 +977 1214 0.400000 +977 1218 0.400000 +977 1404 0.400000 +977 1483 0.400000 +977 1488 0.400000 +977 1567 0.400000 +977 1572 0.400000 +977 1610 0.400000 +977 1689 0.400000 +977 1698 0.400000 +977 1722 0.400000 +977 1737 0.400000 +977 1771 0.400000 +977 1811 0.400000 +977 1825 0.400000 +977 1852 0.400000 +977 1856 0.400000 +977 1858 0.400000 +977 1874 0.400000 +977 1989 0.400000 +977 2065 0.400000 +977 2109 0.400000 +977 2169 0.400000 +977 2172 0.400000 +977 2240 0.400000 +977 2251 0.400000 +977 2280 0.400000 +977 2312 0.400000 +977 2342 0.400000 +977 2343 0.400000 +977 2363 0.400000 +977 2366 0.400000 +977 2417 0.400000 +977 2422 0.400000 +977 2429 0.400000 +977 2439 0.400000 +977 2473 0.400000 +977 2480 0.400000 +977 2488 0.400000 +977 2510 0.400000 +977 2601 0.400000 +977 2648 0.400000 +977 2747 0.400000 +977 2828 0.400000 +977 2888 0.400000 +977 2936 0.400000 +977 3163 0.400000 +978 23 0.400000 +978 42 0.400000 +978 188 0.400000 +978 247 0.400000 +978 295 0.400000 +978 336 0.400000 +978 447 0.400000 +978 513 0.400000 +978 560 0.400000 +978 625 0.400000 +978 815 0.400000 +978 838 0.400000 +978 845 0.400000 +978 896 0.400000 +978 1015 0.400000 +978 1034 0.400000 +978 1046 0.400000 +978 1112 0.400000 +978 1113 0.400000 +978 1181 0.400000 +978 1208 0.400000 +978 1271 0.400000 +978 1334 0.400000 +978 1335 0.400000 +978 1357 0.400000 +978 1406 0.400000 +978 1423 0.400000 +978 1458 0.400000 +978 1465 0.400000 +978 1467 0.400000 +978 1668 0.400000 +978 1674 0.400000 +978 1755 0.400000 +978 1759 0.400000 +978 1769 0.400000 +978 1804 0.400000 +978 1965 0.400000 +978 2011 0.400000 +978 2039 0.400000 +978 2245 0.400000 +978 2423 0.400000 +978 2505 0.400000 +978 2537 0.400000 +978 2594 0.400000 +978 2631 0.400000 +978 2663 0.400000 +978 2695 0.400000 +978 2766 0.400000 +978 2786 0.400000 +978 2918 0.400000 +978 2941 0.400000 +978 3019 0.400000 +978 3068 0.400000 +978 3109 0.400000 +978 3124 0.400000 +979 170 0.400000 +979 343 0.400000 +979 363 0.400000 +979 368 0.400000 +979 415 0.400000 +979 471 0.400000 +979 478 0.400000 +979 479 0.400000 +979 607 0.400000 +979 637 0.400000 +979 646 0.400000 +979 719 0.400000 +979 724 0.400000 +979 830 0.400000 +979 858 0.400000 +979 929 0.400000 +979 979 0.400000 +979 999 0.400000 +979 1042 0.400000 +979 1182 0.400000 +979 1185 0.400000 +979 1301 0.400000 +979 1393 0.400000 +979 1397 0.400000 +979 1484 0.400000 +979 1509 0.400000 +979 1645 0.400000 +979 1738 0.400000 +979 1945 0.400000 +979 2018 0.400000 +979 2101 0.400000 +979 2109 0.400000 +979 2116 0.400000 +979 2130 0.400000 +979 2176 0.400000 +979 2261 0.400000 +979 2279 0.400000 +979 2318 0.400000 +979 2390 0.400000 +979 2463 0.400000 +979 2631 0.400000 +979 2687 0.400000 +979 2791 0.400000 +979 2800 0.400000 +979 2848 0.400000 +979 2939 0.400000 +979 3009 0.400000 +979 3037 0.400000 +979 3044 0.400000 +979 3053 0.400000 +979 3068 0.400000 +979 3107 0.400000 +979 3128 0.400000 +979 3172 0.400000 +979 3190 0.400000 +980 127 0.400000 +980 169 0.400000 +980 184 0.400000 +980 237 0.400000 +980 484 0.400000 +980 671 0.400000 +980 751 0.400000 +980 764 0.400000 +980 861 0.400000 +980 871 0.400000 +980 1000 0.400000 +980 1148 0.400000 +980 1172 0.400000 +980 1207 0.400000 +980 1235 0.400000 +980 1249 0.400000 +980 1468 0.400000 +980 1560 0.400000 +980 1594 0.400000 +980 1603 0.400000 +980 1629 0.400000 +980 1669 0.400000 +980 1747 0.400000 +980 1748 0.400000 +980 1782 0.400000 +980 1802 0.400000 +980 1804 0.400000 +980 1834 0.400000 +980 1864 0.400000 +980 1894 0.400000 +980 1911 0.400000 +980 1958 0.400000 +980 2003 0.400000 +980 2008 0.400000 +980 2017 0.400000 +980 2060 0.400000 +980 2063 0.400000 +980 2079 0.400000 +980 2084 0.400000 +980 2171 0.400000 +980 2177 0.400000 +980 2190 0.400000 +980 2249 0.400000 +980 2261 0.400000 +980 2328 0.400000 +980 2407 0.400000 +980 2548 0.400000 +980 2563 0.400000 +980 2613 0.400000 +980 2641 0.400000 +980 2722 0.400000 +980 2840 0.400000 +980 2850 0.400000 +980 2873 0.400000 +980 2925 0.400000 +980 2929 0.400000 +980 3064 0.400000 +980 3143 0.400000 +980 3170 0.400000 +980 3183 0.400000 +981 40 0.400000 +981 121 0.400000 +981 130 0.400000 +981 241 0.400000 +981 358 0.400000 +981 390 0.400000 +981 478 0.400000 +981 508 0.400000 +981 516 0.400000 +981 518 0.400000 +981 682 0.400000 +981 750 0.400000 +981 792 0.400000 +981 816 0.400000 +981 976 0.400000 +981 997 0.400000 +981 1036 0.400000 +981 1050 0.400000 +981 1153 0.400000 +981 1248 0.400000 +981 1269 0.400000 +981 1279 0.400000 +981 1297 0.400000 +981 1325 0.400000 +981 1359 0.400000 +981 1381 0.400000 +981 1457 0.400000 +981 1458 0.400000 +981 1575 0.400000 +981 1647 0.400000 +981 1696 0.400000 +981 1792 0.400000 +981 1796 0.400000 +981 1811 0.400000 +981 1919 0.400000 +981 1920 0.400000 +981 1949 0.400000 +981 1996 0.400000 +981 2024 0.400000 +981 2037 0.400000 +981 2054 0.400000 +981 2138 0.400000 +981 2144 0.400000 +981 2174 0.400000 +981 2176 0.400000 +981 2268 0.400000 +981 2280 0.400000 +981 2283 0.400000 +981 2489 0.400000 +981 2566 0.400000 +981 2596 0.400000 +981 2677 0.400000 +981 2687 0.400000 +981 2725 0.400000 +981 2775 0.400000 +981 2801 0.400000 +981 2849 0.400000 +981 2864 0.400000 +981 2893 0.400000 +981 2915 0.400000 +981 2938 0.400000 +981 2970 0.400000 +981 3036 0.400000 +981 3128 0.400000 +981 3163 0.400000 +982 24 0.400000 +982 40 0.400000 +982 48 0.400000 +982 138 0.400000 +982 169 0.400000 +982 185 0.400000 +982 256 0.400000 +982 283 0.400000 +982 325 0.400000 +982 346 0.400000 +982 373 0.400000 +982 379 0.400000 +982 380 0.400000 +982 424 0.400000 +982 452 0.400000 +982 455 0.400000 +982 602 0.400000 +982 613 0.400000 +982 769 0.400000 +982 834 0.400000 +982 864 0.400000 +982 959 0.400000 +982 974 0.400000 +982 984 0.400000 +982 998 0.400000 +982 1022 0.400000 +982 1078 0.400000 +982 1125 0.400000 +982 1166 0.400000 +982 1178 0.400000 +982 1189 0.400000 +982 1218 0.400000 +982 1232 0.400000 +982 1272 0.400000 +982 1279 0.400000 +982 1326 0.400000 +982 1376 0.400000 +982 1413 0.400000 +982 1417 0.400000 +982 1451 0.400000 +982 1486 0.400000 +982 1614 0.400000 +982 1624 0.400000 +982 1701 0.400000 +982 1815 0.400000 +982 1859 0.400000 +982 1882 0.400000 +982 1931 0.400000 +982 2022 0.400000 +982 2107 0.400000 +982 2164 0.400000 +982 2290 0.400000 +982 2334 0.400000 +982 2376 0.400000 +982 2407 0.400000 +982 2470 0.400000 +982 2537 0.400000 +982 2565 0.400000 +982 2577 0.400000 +982 2618 0.400000 +982 2626 0.400000 +982 2641 0.400000 +982 2649 0.400000 +982 2671 0.400000 +982 2688 0.400000 +982 2735 0.400000 +982 2745 0.400000 +982 2751 0.400000 +982 2783 0.400000 +982 2806 0.400000 +982 2841 0.400000 +982 2985 0.400000 +982 3038 0.400000 +982 3158 0.400000 +983 174 0.400000 +983 193 0.400000 +983 266 0.400000 +983 322 0.400000 +983 344 0.400000 +983 422 0.400000 +983 430 0.400000 +983 486 0.400000 +983 495 0.400000 +983 520 0.400000 +983 531 0.400000 +983 534 0.400000 +983 651 0.400000 +983 706 0.400000 +983 718 0.400000 +983 836 0.400000 +983 867 0.400000 +983 944 0.400000 +983 946 0.400000 +983 975 0.400000 +983 1151 0.400000 +983 1189 0.400000 +983 1201 0.400000 +983 1222 0.400000 +983 1344 0.400000 +983 1362 0.400000 +983 1381 0.400000 +983 1397 0.400000 +983 1412 0.400000 +983 1526 0.400000 +983 1591 0.400000 +983 1617 0.400000 +983 1660 0.400000 +983 1705 0.400000 +983 1709 0.400000 +983 1740 0.400000 +983 1772 0.400000 +983 1836 0.400000 +983 1862 0.400000 +983 1914 0.400000 +983 1921 0.400000 +983 1959 0.400000 +983 1960 0.400000 +983 1975 0.400000 +983 1995 0.400000 +983 2055 0.400000 +983 2078 0.400000 +983 2137 0.400000 +983 2149 0.400000 +983 2152 0.400000 +983 2190 0.400000 +983 2200 0.400000 +983 2269 0.400000 +983 2281 0.400000 +983 2286 0.400000 +983 2321 0.400000 +983 2346 0.400000 +983 2361 0.400000 +983 2364 0.400000 +983 2424 0.400000 +983 2536 0.400000 +983 2641 0.400000 +983 2696 0.400000 +983 2703 0.400000 +983 2784 0.400000 +983 2837 0.400000 +983 2861 0.400000 +983 2936 0.400000 +983 2970 0.400000 +983 3016 0.400000 +983 3030 0.400000 +983 3093 0.400000 +983 3150 0.400000 +983 3191 0.400000 +984 10 0.400000 +984 32 0.400000 +984 57 0.400000 +984 83 0.400000 +984 87 0.400000 +984 92 0.400000 +984 183 0.400000 +984 192 0.400000 +984 337 0.400000 +984 351 0.400000 +984 389 0.400000 +984 442 0.400000 +984 550 0.400000 +984 556 0.400000 +984 789 0.400000 +984 809 0.400000 +984 832 0.400000 +984 953 0.400000 +984 979 0.400000 +984 986 0.400000 +984 1036 0.400000 +984 1063 0.400000 +984 1116 0.400000 +984 1355 0.400000 +984 1394 0.400000 +984 1458 0.400000 +984 1568 0.400000 +984 1649 0.400000 +984 1661 0.400000 +984 1699 0.400000 +984 1785 0.400000 +984 1797 0.400000 +984 1824 0.400000 +984 1932 0.400000 +984 2060 0.400000 +984 2062 0.400000 +984 2126 0.400000 +984 2133 0.400000 +984 2137 0.400000 +984 2238 0.400000 +984 2267 0.400000 +984 2285 0.400000 +984 2298 0.400000 +984 2425 0.400000 +984 2466 0.400000 +984 2543 0.400000 +984 2551 0.400000 +984 2679 0.400000 +984 2718 0.400000 +984 2731 0.400000 +984 2785 0.400000 +984 2812 0.400000 +984 2818 0.400000 +984 2886 0.400000 +984 2999 0.400000 +984 3018 0.400000 +984 3053 0.400000 +984 3071 0.400000 +984 3120 0.400000 +984 3134 0.400000 +984 3146 0.400000 +984 3199 0.400000 +985 1 0.400000 +985 18 0.400000 +985 55 0.400000 +985 147 0.400000 +985 256 0.400000 +985 357 0.400000 +985 377 0.400000 +985 410 0.400000 +985 412 0.400000 +985 470 0.400000 +985 471 0.400000 +985 472 0.400000 +985 541 0.400000 +985 555 0.400000 +985 609 0.400000 +985 624 0.400000 +985 656 0.400000 +985 830 0.400000 +985 869 0.400000 +985 911 0.400000 +985 922 0.400000 +985 930 0.400000 +985 938 0.400000 +985 949 0.400000 +985 959 0.400000 +985 1085 0.400000 +985 1168 0.400000 +985 1226 0.400000 +985 1349 0.400000 +985 1406 0.400000 +985 1493 0.400000 +985 1562 0.400000 +985 1630 0.400000 +985 1799 0.400000 +985 1828 0.400000 +985 1829 0.400000 +985 1843 0.400000 +985 1877 0.400000 +985 1887 0.400000 +985 1895 0.400000 +985 2119 0.400000 +985 2170 0.400000 +985 2230 0.400000 +985 2331 0.400000 +985 2373 0.400000 +985 2378 0.400000 +985 2389 0.400000 +985 2430 0.400000 +985 2445 0.400000 +985 2481 0.400000 +985 2509 0.400000 +985 2579 0.400000 +985 2651 0.400000 +985 2700 0.400000 +985 2706 0.400000 +985 2714 0.400000 +985 2734 0.400000 +985 2888 0.400000 +985 2919 0.400000 +985 2951 0.400000 +985 2998 0.400000 +985 3052 0.400000 +985 3063 0.400000 +985 3112 0.400000 +985 3120 0.400000 +986 37 0.400000 +986 54 0.400000 +986 132 0.400000 +986 190 0.400000 +986 224 0.400000 +986 241 0.400000 +986 376 0.400000 +986 489 0.400000 +986 547 0.400000 +986 557 0.400000 +986 670 0.400000 +986 720 0.400000 +986 723 0.400000 +986 751 0.400000 +986 771 0.400000 +986 787 0.400000 +986 788 0.400000 +986 841 0.400000 +986 865 0.400000 +986 870 0.400000 +986 940 0.400000 +986 1008 0.400000 +986 1038 0.400000 +986 1044 0.400000 +986 1083 0.400000 +986 1114 0.400000 +986 1267 0.400000 +986 1346 0.400000 +986 1382 0.400000 +986 1585 0.400000 +986 1642 0.400000 +986 1668 0.400000 +986 1720 0.400000 +986 1735 0.400000 +986 1789 0.400000 +986 1809 0.400000 +986 1843 0.400000 +986 1890 0.400000 +986 1963 0.400000 +986 2090 0.400000 +986 2130 0.400000 +986 2230 0.400000 +986 2237 0.400000 +986 2268 0.400000 +986 2284 0.400000 +986 2400 0.400000 +986 2402 0.400000 +986 2452 0.400000 +986 2568 0.400000 +986 2572 0.400000 +986 2589 0.400000 +986 2607 0.400000 +986 2755 0.400000 +986 2798 0.400000 +986 2799 0.400000 +986 2845 0.400000 +986 2885 0.400000 +986 2956 0.400000 +986 3090 0.400000 +986 3110 0.400000 +987 26 0.400000 +987 40 0.400000 +987 60 0.400000 +987 73 0.400000 +987 222 0.400000 +987 223 0.400000 +987 234 0.400000 +987 250 0.400000 +987 258 0.400000 +987 273 0.400000 +987 274 0.400000 +987 310 0.400000 +987 415 0.400000 +987 490 0.400000 +987 548 0.400000 +987 606 0.400000 +987 655 0.400000 +987 671 0.400000 +987 769 0.400000 +987 805 0.400000 +987 837 0.400000 +987 852 0.400000 +987 855 0.400000 +987 889 0.400000 +987 926 0.400000 +987 1001 0.400000 +987 1049 0.400000 +987 1059 0.400000 +987 1092 0.400000 +987 1138 0.400000 +987 1231 0.400000 +987 1439 0.400000 +987 1496 0.400000 +987 1508 0.400000 +987 1529 0.400000 +987 1531 0.400000 +987 1557 0.400000 +987 1618 0.400000 +987 1641 0.400000 +987 1746 0.400000 +987 1753 0.400000 +987 1785 0.400000 +987 1809 0.400000 +987 1828 0.400000 +987 1892 0.400000 +987 1917 0.400000 +987 1995 0.400000 +987 2105 0.400000 +987 2107 0.400000 +987 2149 0.400000 +987 2157 0.400000 +987 2239 0.400000 +987 2242 0.400000 +987 2254 0.400000 +987 2297 0.400000 +987 2302 0.400000 +987 2321 0.400000 +987 2346 0.400000 +987 2378 0.400000 +987 2419 0.400000 +987 2423 0.400000 +987 2481 0.400000 +987 2528 0.400000 +987 2650 0.400000 +987 2800 0.400000 +987 2832 0.400000 +987 2981 0.400000 +987 3045 0.400000 +987 3100 0.400000 +987 3139 0.400000 +988 48 0.400000 +988 173 0.400000 +988 199 0.400000 +988 248 0.400000 +988 317 0.400000 +988 478 0.400000 +988 496 0.400000 +988 510 0.400000 +988 558 0.400000 +988 566 0.400000 +988 663 0.400000 +988 668 0.400000 +988 680 0.400000 +988 723 0.400000 +988 766 0.400000 +988 858 0.400000 +988 887 0.400000 +988 889 0.400000 +988 908 0.400000 +988 916 0.400000 +988 961 0.400000 +988 977 0.400000 +988 987 0.400000 +988 1077 0.400000 +988 1214 0.400000 +988 1247 0.400000 +988 1275 0.400000 +988 1298 0.400000 +988 1430 0.400000 +988 1449 0.400000 +988 1592 0.400000 +988 1594 0.400000 +988 1598 0.400000 +988 1723 0.400000 +988 1774 0.400000 +988 1993 0.400000 +988 2018 0.400000 +988 2032 0.400000 +988 2039 0.400000 +988 2046 0.400000 +988 2065 0.400000 +988 2104 0.400000 +988 2193 0.400000 +988 2216 0.400000 +988 2287 0.400000 +988 2329 0.400000 +988 2376 0.400000 +988 2410 0.400000 +988 2463 0.400000 +988 2502 0.400000 +988 2888 0.400000 +988 2933 0.400000 +988 3073 0.400000 +988 3121 0.400000 +988 3134 0.400000 +988 3182 0.400000 +989 44 0.400000 +989 168 0.400000 +989 198 0.400000 +989 239 0.400000 +989 275 0.400000 +989 299 0.400000 +989 304 0.400000 +989 307 0.400000 +989 381 0.400000 +989 395 0.400000 +989 418 0.400000 +989 479 0.400000 +989 484 0.400000 +989 500 0.400000 +989 560 0.400000 +989 617 0.400000 +989 626 0.400000 +989 628 0.400000 +989 637 0.400000 +989 647 0.400000 +989 708 0.400000 +989 837 0.400000 +989 875 0.400000 +989 939 0.400000 +989 966 0.400000 +989 1015 0.400000 +989 1022 0.400000 +989 1090 0.400000 +989 1131 0.400000 +989 1142 0.400000 +989 1176 0.400000 +989 1377 0.400000 +989 1383 0.400000 +989 1400 0.400000 +989 1570 0.400000 +989 1710 0.400000 +989 1881 0.400000 +989 1894 0.400000 +989 2012 0.400000 +989 2027 0.400000 +989 2069 0.400000 +989 2100 0.400000 +989 2103 0.400000 +989 2145 0.400000 +989 2148 0.400000 +989 2190 0.400000 +989 2198 0.400000 +989 2204 0.400000 +989 2230 0.400000 +989 2265 0.400000 +989 2299 0.400000 +989 2394 0.400000 +989 2404 0.400000 +989 2449 0.400000 +989 2520 0.400000 +989 2530 0.400000 +989 2570 0.400000 +989 2574 0.400000 +989 2624 0.400000 +989 2682 0.400000 +989 2746 0.400000 +989 2779 0.400000 +989 2812 0.400000 +989 2868 0.400000 +989 2881 0.400000 +989 2936 0.400000 +989 3051 0.400000 +989 3067 0.400000 +989 3110 0.400000 +990 15 0.400000 +990 212 0.400000 +990 315 0.400000 +990 409 0.400000 +990 480 0.400000 +990 496 0.400000 +990 507 0.400000 +990 571 0.400000 +990 674 0.400000 +990 689 0.400000 +990 711 0.400000 +990 721 0.400000 +990 849 0.400000 +990 852 0.400000 +990 1035 0.400000 +990 1068 0.400000 +990 1073 0.400000 +990 1312 0.400000 +990 1320 0.400000 +990 1339 0.400000 +990 1365 0.400000 +990 1377 0.400000 +990 1436 0.400000 +990 1484 0.400000 +990 1501 0.400000 +990 1531 0.400000 +990 1544 0.400000 +990 1670 0.400000 +990 1769 0.400000 +990 1891 0.400000 +990 1896 0.400000 +990 2033 0.400000 +990 2131 0.400000 +990 2146 0.400000 +990 2174 0.400000 +990 2195 0.400000 +990 2197 0.400000 +990 2198 0.400000 +990 2286 0.400000 +990 2405 0.400000 +990 2409 0.400000 +990 2455 0.400000 +990 2478 0.400000 +990 2493 0.400000 +990 2617 0.400000 +990 2676 0.400000 +990 2720 0.400000 +990 2721 0.400000 +990 2829 0.400000 +990 2831 0.400000 +990 2850 0.400000 +990 2907 0.400000 +990 2909 0.400000 +990 2938 0.400000 +990 2977 0.400000 +990 3158 0.400000 +991 38 0.400000 +991 49 0.400000 +991 101 0.400000 +991 143 0.400000 +991 340 0.400000 +991 348 0.400000 +991 351 0.400000 +991 361 0.400000 +991 477 0.400000 +991 486 0.400000 +991 506 0.400000 +991 512 0.400000 +991 560 0.400000 +991 590 0.400000 +991 598 0.400000 +991 614 0.400000 +991 705 0.400000 +991 721 0.400000 +991 779 0.400000 +991 966 0.400000 +991 981 0.400000 +991 985 0.400000 +991 1007 0.400000 +991 1016 0.400000 +991 1056 0.400000 +991 1116 0.400000 +991 1123 0.400000 +991 1130 0.400000 +991 1133 0.400000 +991 1140 0.400000 +991 1150 0.400000 +991 1160 0.400000 +991 1167 0.400000 +991 1186 0.400000 +991 1225 0.400000 +991 1270 0.400000 +991 1378 0.400000 +991 1454 0.400000 +991 1468 0.400000 +991 1474 0.400000 +991 1671 0.400000 +991 1769 0.400000 +991 1850 0.400000 +991 1869 0.400000 +991 1981 0.400000 +991 1984 0.400000 +991 2105 0.400000 +991 2108 0.400000 +991 2188 0.400000 +991 2210 0.400000 +991 2265 0.400000 +991 2298 0.400000 +991 2352 0.400000 +991 2355 0.400000 +991 2396 0.400000 +991 2528 0.400000 +991 2687 0.400000 +991 2699 0.400000 +991 2703 0.400000 +991 2735 0.400000 +991 2764 0.400000 +991 2926 0.400000 +991 2976 0.400000 +991 3016 0.400000 +991 3093 0.400000 +991 3140 0.400000 +991 3184 0.400000 +991 3187 0.400000 +992 40 0.400000 +992 74 0.400000 +992 85 0.400000 +992 97 0.400000 +992 331 0.400000 +992 340 0.400000 +992 345 0.400000 +992 417 0.400000 +992 482 0.400000 +992 489 0.400000 +992 527 0.400000 +992 590 0.400000 +992 632 0.400000 +992 659 0.400000 +992 719 0.400000 +992 720 0.400000 +992 799 0.400000 +992 835 0.400000 +992 1003 0.400000 +992 1043 0.400000 +992 1047 0.400000 +992 1135 0.400000 +992 1177 0.400000 +992 1254 0.400000 +992 1283 0.400000 +992 1288 0.400000 +992 1319 0.400000 +992 1336 0.400000 +992 1449 0.400000 +992 1497 0.400000 +992 1499 0.400000 +992 1601 0.400000 +992 1613 0.400000 +992 1761 0.400000 +992 1795 0.400000 +992 1968 0.400000 +992 2011 0.400000 +992 2044 0.400000 +992 2054 0.400000 +992 2073 0.400000 +992 2164 0.400000 +992 2176 0.400000 +992 2186 0.400000 +992 2189 0.400000 +992 2235 0.400000 +992 2252 0.400000 +992 2288 0.400000 +992 2334 0.400000 +992 2385 0.400000 +992 2386 0.400000 +992 2446 0.400000 +992 2468 0.400000 +992 2577 0.400000 +992 2591 0.400000 +992 2625 0.400000 +992 2655 0.400000 +992 2677 0.400000 +992 2757 0.400000 +992 2780 0.400000 +992 2797 0.400000 +992 2816 0.400000 +992 2851 0.400000 +992 3082 0.400000 +992 3100 0.400000 +992 3117 0.400000 +993 100 0.400000 +993 113 0.400000 +993 206 0.400000 +993 255 0.400000 +993 306 0.400000 +993 372 0.400000 +993 389 0.400000 +993 446 0.400000 +993 540 0.400000 +993 567 0.400000 +993 634 0.400000 +993 721 0.400000 +993 725 0.400000 +993 755 0.400000 +993 853 0.400000 +993 992 0.400000 +993 1033 0.400000 +993 1114 0.400000 +993 1160 0.400000 +993 1201 0.400000 +993 1207 0.400000 +993 1210 0.400000 +993 1363 0.400000 +993 1375 0.400000 +993 1437 0.400000 +993 1446 0.400000 +993 1460 0.400000 +993 1472 0.400000 +993 1560 0.400000 +993 1612 0.400000 +993 1620 0.400000 +993 1630 0.400000 +993 1643 0.400000 +993 1696 0.400000 +993 1702 0.400000 +993 1755 0.400000 +993 1787 0.400000 +993 1954 0.400000 +993 1998 0.400000 +993 2004 0.400000 +993 2022 0.400000 +993 2041 0.400000 +993 2075 0.400000 +993 2169 0.400000 +993 2232 0.400000 +993 2239 0.400000 +993 2293 0.400000 +993 2302 0.400000 +993 2366 0.400000 +993 2381 0.400000 +993 2412 0.400000 +993 2450 0.400000 +993 2469 0.400000 +993 2471 0.400000 +993 2481 0.400000 +993 2573 0.400000 +993 2715 0.400000 +993 2747 0.400000 +993 2754 0.400000 +993 2763 0.400000 +993 2782 0.400000 +993 2833 0.400000 +993 2920 0.400000 +993 2926 0.400000 +993 3022 0.400000 +993 3162 0.400000 +994 57 0.400000 +994 75 0.400000 +994 83 0.400000 +994 99 0.400000 +994 111 0.400000 +994 124 0.400000 +994 131 0.400000 +994 161 0.400000 +994 221 0.400000 +994 425 0.400000 +994 481 0.400000 +994 553 0.400000 +994 555 0.400000 +994 584 0.400000 +994 684 0.400000 +994 716 0.400000 +994 833 0.400000 +994 843 0.400000 +994 866 0.400000 +994 953 0.400000 +994 979 0.400000 +994 1022 0.400000 +994 1127 0.400000 +994 1221 0.400000 +994 1223 0.400000 +994 1224 0.400000 +994 1240 0.400000 +994 1253 0.400000 +994 1257 0.400000 +994 1270 0.400000 +994 1314 0.400000 +994 1370 0.400000 +994 1440 0.400000 +994 1462 0.400000 +994 1467 0.400000 +994 1610 0.400000 +994 1623 0.400000 +994 1768 0.400000 +994 1775 0.400000 +994 1828 0.400000 +994 1907 0.400000 +994 1923 0.400000 +994 2004 0.400000 +994 2182 0.400000 +994 2216 0.400000 +994 2249 0.400000 +994 2287 0.400000 +994 2320 0.400000 +994 2335 0.400000 +994 2407 0.400000 +994 2567 0.400000 +994 2625 0.400000 +994 2644 0.400000 +994 2650 0.400000 +994 2658 0.400000 +994 2724 0.400000 +994 2792 0.400000 +994 2799 0.400000 +994 2940 0.400000 +994 2951 0.400000 +994 2952 0.400000 +994 2958 0.400000 +994 2998 0.400000 +994 3087 0.400000 +994 3104 0.400000 +994 3146 0.400000 +994 3155 0.400000 +994 3171 0.400000 +994 3192 0.400000 +995 22 0.400000 +995 46 0.400000 +995 97 0.400000 +995 224 0.400000 +995 315 0.400000 +995 344 0.400000 +995 390 0.400000 +995 470 0.400000 +995 501 0.400000 +995 511 0.400000 +995 587 0.400000 +995 637 0.400000 +995 651 0.400000 +995 663 0.400000 +995 684 0.400000 +995 707 0.400000 +995 719 0.400000 +995 735 0.400000 +995 763 0.400000 +995 790 0.400000 +995 802 0.400000 +995 939 0.400000 +995 964 0.400000 +995 1081 0.400000 +995 1123 0.400000 +995 1150 0.400000 +995 1170 0.400000 +995 1201 0.400000 +995 1207 0.400000 +995 1330 0.400000 +995 1414 0.400000 +995 1451 0.400000 +995 1505 0.400000 +995 1513 0.400000 +995 1564 0.400000 +995 1638 0.400000 +995 1703 0.400000 +995 1736 0.400000 +995 1782 0.400000 +995 1814 0.400000 +995 1819 0.400000 +995 1891 0.400000 +995 1946 0.400000 +995 1969 0.400000 +995 1996 0.400000 +995 2008 0.400000 +995 2043 0.400000 +995 2063 0.400000 +995 2099 0.400000 +995 2111 0.400000 +995 2155 0.400000 +995 2167 0.400000 +995 2299 0.400000 +995 2330 0.400000 +995 2336 0.400000 +995 2377 0.400000 +995 2460 0.400000 +995 2474 0.400000 +995 2568 0.400000 +995 2609 0.400000 +995 2619 0.400000 +995 2805 0.400000 +995 2870 0.400000 +995 2894 0.400000 +995 2899 0.400000 +995 3024 0.400000 +995 3038 0.400000 +995 3119 0.400000 +996 29 0.400000 +996 40 0.400000 +996 108 0.400000 +996 137 0.400000 +996 219 0.400000 +996 246 0.400000 +996 259 0.400000 +996 328 0.400000 +996 395 0.400000 +996 472 0.400000 +996 528 0.400000 +996 682 0.400000 +996 709 0.400000 +996 750 0.400000 +996 797 0.400000 +996 890 0.400000 +996 940 0.400000 +996 1006 0.400000 +996 1103 0.400000 +996 1120 0.400000 +996 1125 0.400000 +996 1157 0.400000 +996 1364 0.400000 +996 1384 0.400000 +996 1467 0.400000 +996 1511 0.400000 +996 1526 0.400000 +996 1613 0.400000 +996 1618 0.400000 +996 1625 0.400000 +996 1627 0.400000 +996 1641 0.400000 +996 1687 0.400000 +996 1822 0.400000 +996 1956 0.400000 +996 2003 0.400000 +996 2067 0.400000 +996 2245 0.400000 +996 2262 0.400000 +996 2287 0.400000 +996 2345 0.400000 +996 2360 0.400000 +996 2439 0.400000 +996 2446 0.400000 +996 2472 0.400000 +996 2519 0.400000 +996 2568 0.400000 +996 2649 0.400000 +996 2705 0.400000 +996 2718 0.400000 +996 2726 0.400000 +996 2798 0.400000 +996 2840 0.400000 +996 2844 0.400000 +996 2885 0.400000 +996 2905 0.400000 +996 2913 0.400000 +996 2922 0.400000 +996 3046 0.400000 +996 3088 0.400000 +997 28 0.400000 +997 33 0.400000 +997 34 0.400000 +997 315 0.400000 +997 434 0.400000 +997 442 0.400000 +997 474 0.400000 +997 490 0.400000 +997 518 0.400000 +997 523 0.400000 +997 700 0.400000 +997 779 0.400000 +997 950 0.400000 +997 963 0.400000 +997 1019 0.400000 +997 1101 0.400000 +997 1117 0.400000 +997 1184 0.400000 +997 1242 0.400000 +997 1243 0.400000 +997 1380 0.400000 +997 1438 0.400000 +997 1491 0.400000 +997 1534 0.400000 +997 1561 0.400000 +997 1616 0.400000 +997 1741 0.400000 +997 1750 0.400000 +997 1878 0.400000 +997 1922 0.400000 +997 1929 0.400000 +997 2036 0.400000 +997 2040 0.400000 +997 2072 0.400000 +997 2153 0.400000 +997 2188 0.400000 +997 2210 0.400000 +997 2264 0.400000 +997 2358 0.400000 +997 2461 0.400000 +997 2492 0.400000 +997 2516 0.400000 +997 2600 0.400000 +997 2605 0.400000 +997 2709 0.400000 +997 2710 0.400000 +997 2730 0.400000 +997 2828 0.400000 +997 2863 0.400000 +997 2925 0.400000 +997 2971 0.400000 +997 2983 0.400000 +997 3036 0.400000 +997 3052 0.400000 +997 3082 0.400000 +997 3141 0.400000 +997 3152 0.400000 +997 3182 0.400000 +998 52 0.400000 +998 54 0.400000 +998 81 0.400000 +998 97 0.400000 +998 107 0.400000 +998 120 0.400000 +998 139 0.400000 +998 154 0.400000 +998 208 0.400000 +998 237 0.400000 +998 310 0.400000 +998 376 0.400000 +998 385 0.400000 +998 406 0.400000 +998 493 0.400000 +998 506 0.400000 +998 517 0.400000 +998 618 0.400000 +998 621 0.400000 +998 632 0.400000 +998 636 0.400000 +998 664 0.400000 +998 686 0.400000 +998 695 0.400000 +998 737 0.400000 +998 812 0.400000 +998 833 0.400000 +998 880 0.400000 +998 947 0.400000 +998 949 0.400000 +998 954 0.400000 +998 1063 0.400000 +998 1066 0.400000 +998 1082 0.400000 +998 1131 0.400000 +998 1157 0.400000 +998 1263 0.400000 +998 1330 0.400000 +998 1342 0.400000 +998 1367 0.400000 +998 1391 0.400000 +998 1396 0.400000 +998 1437 0.400000 +998 1558 0.400000 +998 1566 0.400000 +998 1574 0.400000 +998 1634 0.400000 +998 1759 0.400000 +998 1761 0.400000 +998 1799 0.400000 +998 1823 0.400000 +998 1852 0.400000 +998 1994 0.400000 +998 1995 0.400000 +998 2005 0.400000 +998 2087 0.400000 +998 2200 0.400000 +998 2215 0.400000 +998 2247 0.400000 +998 2319 0.400000 +998 2360 0.400000 +998 2410 0.400000 +998 2438 0.400000 +998 2445 0.400000 +998 2495 0.400000 +998 2514 0.400000 +998 2539 0.400000 +998 2552 0.400000 +998 2561 0.400000 +998 2677 0.400000 +998 2841 0.400000 +998 2909 0.400000 +998 2916 0.400000 +998 3066 0.400000 +998 3082 0.400000 +998 3124 0.400000 +998 3141 0.400000 +998 3162 0.400000 +999 31 0.400000 +999 38 0.400000 +999 101 0.400000 +999 119 0.400000 +999 148 0.400000 +999 153 0.400000 +999 204 0.400000 +999 260 0.400000 +999 276 0.400000 +999 318 0.400000 +999 423 0.400000 +999 452 0.400000 +999 458 0.400000 +999 573 0.400000 +999 635 0.400000 +999 640 0.400000 +999 641 0.400000 +999 713 0.400000 +999 720 0.400000 +999 768 0.400000 +999 770 0.400000 +999 772 0.400000 +999 830 0.400000 +999 887 0.400000 +999 929 0.400000 +999 1015 0.400000 +999 1074 0.400000 +999 1094 0.400000 +999 1129 0.400000 +999 1155 0.400000 +999 1192 0.400000 +999 1237 0.400000 +999 1240 0.400000 +999 1243 0.400000 +999 1254 0.400000 +999 1325 0.400000 +999 1393 0.400000 +999 1413 0.400000 +999 1418 0.400000 +999 1518 0.400000 +999 1525 0.400000 +999 1542 0.400000 +999 1547 0.400000 +999 1664 0.400000 +999 1685 0.400000 +999 1699 0.400000 +999 1850 0.400000 +999 1852 0.400000 +999 1855 0.400000 +999 2056 0.400000 +999 2077 0.400000 +999 2102 0.400000 +999 2139 0.400000 +999 2164 0.400000 +999 2268 0.400000 +999 2362 0.400000 +999 2363 0.400000 +999 2564 0.400000 +999 2573 0.400000 +999 2645 0.400000 +999 2666 0.400000 +999 2695 0.400000 +999 2706 0.400000 +999 2811 0.400000 +999 2949 0.400000 +999 2958 0.400000 +999 2995 0.400000 +999 3033 0.400000 +999 3083 0.400000 +999 3164 0.400000 +999 3197 0.400000 +1000 122 0.400000 +1000 167 0.400000 +1000 187 0.400000 +1000 295 0.400000 +1000 357 0.400000 +1000 420 0.400000 +1000 506 0.400000 +1000 535 0.400000 +1000 549 0.400000 +1000 561 0.400000 +1000 689 0.400000 +1000 750 0.400000 +1000 756 0.400000 +1000 782 0.400000 +1000 804 0.400000 +1000 834 0.400000 +1000 850 0.400000 +1000 880 0.400000 +1000 905 0.400000 +1000 965 0.400000 +1000 1004 0.400000 +1000 1027 0.400000 +1000 1042 0.400000 +1000 1054 0.400000 +1000 1055 0.400000 +1000 1294 0.400000 +1000 1307 0.400000 +1000 1320 0.400000 +1000 1362 0.400000 +1000 1381 0.400000 +1000 1409 0.400000 +1000 1461 0.400000 +1000 1500 0.400000 +1000 1536 0.400000 +1000 1561 0.400000 +1000 1587 0.400000 +1000 1612 0.400000 +1000 1618 0.400000 +1000 1639 0.400000 +1000 1674 0.400000 +1000 1768 0.400000 +1000 1771 0.400000 +1000 1823 0.400000 +1000 1903 0.400000 +1000 1928 0.400000 +1000 1931 0.400000 +1000 1992 0.400000 +1000 2007 0.400000 +1000 2013 0.400000 +1000 2020 0.400000 +1000 2047 0.400000 +1000 2172 0.400000 +1000 2177 0.400000 +1000 2208 0.400000 +1000 2246 0.400000 +1000 2283 0.400000 +1000 2311 0.400000 +1000 2319 0.400000 +1000 2356 0.400000 +1000 2368 0.400000 +1000 2369 0.400000 +1000 2381 0.400000 +1000 2392 0.400000 +1000 2448 0.400000 +1000 2456 0.400000 +1000 2543 0.400000 +1000 2554 0.400000 +1000 2596 0.400000 +1000 2657 0.400000 +1000 2678 0.400000 +1000 2697 0.400000 +1000 2704 0.400000 +1000 2715 0.400000 +1000 2731 0.400000 +1000 2799 0.400000 +1000 2800 0.400000 +1000 2830 0.400000 +1000 2880 0.400000 +1000 2901 0.400000 +1000 2925 0.400000 +1000 2944 0.400000 +1000 3042 0.400000 +1000 3069 0.400000 +1000 3114 0.400000 +1000 3139 0.400000 +1000 3154 0.400000 +1000 3161 0.400000 +1000 3184 0.400000 +1001 50 0.400000 +1001 51 0.400000 +1001 115 0.400000 +1001 123 0.400000 +1001 133 0.400000 +1001 150 0.400000 +1001 161 0.400000 +1001 226 0.400000 +1001 363 0.400000 +1001 376 0.400000 +1001 382 0.400000 +1001 389 0.400000 +1001 523 0.400000 +1001 597 0.400000 +1001 638 0.400000 +1001 676 0.400000 +1001 759 0.400000 +1001 817 0.400000 +1001 833 0.400000 +1001 937 0.400000 +1001 959 0.400000 +1001 1016 0.400000 +1001 1023 0.400000 +1001 1036 0.400000 +1001 1109 0.400000 +1001 1123 0.400000 +1001 1133 0.400000 +1001 1263 0.400000 +1001 1334 0.400000 +1001 1344 0.400000 +1001 1411 0.400000 +1001 1467 0.400000 +1001 1521 0.400000 +1001 1551 0.400000 +1001 1723 0.400000 +1001 1762 0.400000 +1001 1784 0.400000 +1001 1800 0.400000 +1001 1894 0.400000 +1001 1977 0.400000 +1001 2067 0.400000 +1001 2081 0.400000 +1001 2093 0.400000 +1001 2100 0.400000 +1001 2115 0.400000 +1001 2127 0.400000 +1001 2133 0.400000 +1001 2202 0.400000 +1001 2361 0.400000 +1001 2416 0.400000 +1001 2494 0.400000 +1001 2505 0.400000 +1001 2531 0.400000 +1001 2535 0.400000 +1001 2547 0.400000 +1001 2565 0.400000 +1001 2649 0.400000 +1001 2654 0.400000 +1001 2674 0.400000 +1001 2728 0.400000 +1001 2763 0.400000 +1001 2766 0.400000 +1001 2794 0.400000 +1001 3069 0.400000 +1001 3071 0.400000 +1001 3111 0.400000 +1002 41 0.400000 +1002 74 0.400000 +1002 81 0.400000 +1002 101 0.400000 +1002 148 0.400000 +1002 209 0.400000 +1002 304 0.400000 +1002 374 0.400000 +1002 381 0.400000 +1002 395 0.400000 +1002 420 0.400000 +1002 452 0.400000 +1002 625 0.400000 +1002 633 0.400000 +1002 681 0.400000 +1002 805 0.400000 +1002 807 0.400000 +1002 809 0.400000 +1002 820 0.400000 +1002 907 0.400000 +1002 911 0.400000 +1002 912 0.400000 +1002 928 0.400000 +1002 947 0.400000 +1002 952 0.400000 +1002 1006 0.400000 +1002 1023 0.400000 +1002 1025 0.400000 +1002 1088 0.400000 +1002 1104 0.400000 +1002 1139 0.400000 +1002 1143 0.400000 +1002 1150 0.400000 +1002 1268 0.400000 +1002 1297 0.400000 +1002 1362 0.400000 +1002 1363 0.400000 +1002 1461 0.400000 +1002 1560 0.400000 +1002 1586 0.400000 +1002 1637 0.400000 +1002 1723 0.400000 +1002 1796 0.400000 +1002 1812 0.400000 +1002 1815 0.400000 +1002 1832 0.400000 +1002 1874 0.400000 +1002 1960 0.400000 +1002 1965 0.400000 +1002 1966 0.400000 +1002 1996 0.400000 +1002 2032 0.400000 +1002 2215 0.400000 +1002 2225 0.400000 +1002 2311 0.400000 +1002 2496 0.400000 +1002 2498 0.400000 +1002 2554 0.400000 +1002 2626 0.400000 +1002 2651 0.400000 +1002 2653 0.400000 +1002 2661 0.400000 +1002 2668 0.400000 +1002 2735 0.400000 +1002 2756 0.400000 +1002 2826 0.400000 +1002 2838 0.400000 +1002 2952 0.400000 +1002 3029 0.400000 +1002 3054 0.400000 +1002 3089 0.400000 +1002 3166 0.400000 +1003 25 0.400000 +1003 26 0.400000 +1003 38 0.400000 +1003 104 0.400000 +1003 105 0.400000 +1003 199 0.400000 +1003 299 0.400000 +1003 336 0.400000 +1003 339 0.400000 +1003 360 0.400000 +1003 369 0.400000 +1003 394 0.400000 +1003 419 0.400000 +1003 421 0.400000 +1003 463 0.400000 +1003 489 0.400000 +1003 493 0.400000 +1003 556 0.400000 +1003 602 0.400000 +1003 623 0.400000 +1003 657 0.400000 +1003 730 0.400000 +1003 827 0.400000 +1003 830 0.400000 +1003 880 0.400000 +1003 887 0.400000 +1003 924 0.400000 +1003 926 0.400000 +1003 932 0.400000 +1003 976 0.400000 +1003 1011 0.400000 +1003 1013 0.400000 +1003 1119 0.400000 +1003 1174 0.400000 +1003 1201 0.400000 +1003 1220 0.400000 +1003 1231 0.400000 +1003 1245 0.400000 +1003 1251 0.400000 +1003 1266 0.400000 +1003 1323 0.400000 +1003 1466 0.400000 +1003 1475 0.400000 +1003 1487 0.400000 +1003 1545 0.400000 +1003 1593 0.400000 +1003 1947 0.400000 +1003 2040 0.400000 +1003 2067 0.400000 +1003 2087 0.400000 +1003 2093 0.400000 +1003 2118 0.400000 +1003 2331 0.400000 +1003 2343 0.400000 +1003 2399 0.400000 +1003 2483 0.400000 +1003 2515 0.400000 +1003 2522 0.400000 +1003 2547 0.400000 +1003 2553 0.400000 +1003 2561 0.400000 +1003 2569 0.400000 +1003 2697 0.400000 +1003 2701 0.400000 +1003 2785 0.400000 +1003 2808 0.400000 +1003 2816 0.400000 +1003 2837 0.400000 +1003 2854 0.400000 +1003 2882 0.400000 +1003 2981 0.400000 +1003 2991 0.400000 +1003 3061 0.400000 +1003 3084 0.400000 +1003 3104 0.400000 +1003 3132 0.400000 +1003 3150 0.400000 +1004 42 0.400000 +1004 46 0.400000 +1004 74 0.400000 +1004 94 0.400000 +1004 120 0.400000 +1004 186 0.400000 +1004 189 0.400000 +1004 199 0.400000 +1004 204 0.400000 +1004 218 0.400000 +1004 222 0.400000 +1004 240 0.400000 +1004 356 0.400000 +1004 370 0.400000 +1004 459 0.400000 +1004 461 0.400000 +1004 474 0.400000 +1004 496 0.400000 +1004 604 0.400000 +1004 737 0.400000 +1004 759 0.400000 +1004 831 0.400000 +1004 941 0.400000 +1004 947 0.400000 +1004 985 0.400000 +1004 1110 0.400000 +1004 1236 0.400000 +1004 1254 0.400000 +1004 1271 0.400000 +1004 1274 0.400000 +1004 1306 0.400000 +1004 1319 0.400000 +1004 1320 0.400000 +1004 1403 0.400000 +1004 1420 0.400000 +1004 1468 0.400000 +1004 1472 0.400000 +1004 1584 0.400000 +1004 1586 0.400000 +1004 1693 0.400000 +1004 1705 0.400000 +1004 1713 0.400000 +1004 1721 0.400000 +1004 1748 0.400000 +1004 1796 0.400000 +1004 1847 0.400000 +1004 1921 0.400000 +1004 1927 0.400000 +1004 2063 0.400000 +1004 2124 0.400000 +1004 2162 0.400000 +1004 2220 0.400000 +1004 2278 0.400000 +1004 2281 0.400000 +1004 2333 0.400000 +1004 2393 0.400000 +1004 2449 0.400000 +1004 2569 0.400000 +1004 2682 0.400000 +1004 2716 0.400000 +1004 2728 0.400000 +1004 2782 0.400000 +1004 2810 0.400000 +1004 2824 0.400000 +1004 2878 0.400000 +1004 2889 0.400000 +1004 2930 0.400000 +1004 2934 0.400000 +1004 3033 0.400000 +1004 3043 0.400000 +1004 3116 0.400000 +1004 3128 0.400000 +1004 3131 0.400000 +1004 3135 0.400000 +1004 3182 0.400000 +1005 30 0.400000 +1005 66 0.400000 +1005 88 0.400000 +1005 110 0.400000 +1005 136 0.400000 +1005 137 0.400000 +1005 180 0.400000 +1005 199 0.400000 +1005 308 0.400000 +1005 390 0.400000 +1005 432 0.400000 +1005 467 0.400000 +1005 521 0.400000 +1005 624 0.400000 +1005 628 0.400000 +1005 683 0.400000 +1005 692 0.400000 +1005 729 0.400000 +1005 737 0.400000 +1005 749 0.400000 +1005 894 0.400000 +1005 920 0.400000 +1005 1075 0.400000 +1005 1089 0.400000 +1005 1102 0.400000 +1005 1264 0.400000 +1005 1271 0.400000 +1005 1297 0.400000 +1005 1318 0.400000 +1005 1394 0.400000 +1005 1422 0.400000 +1005 1424 0.400000 +1005 1473 0.400000 +1005 1623 0.400000 +1005 1857 0.400000 +1005 1879 0.400000 +1005 1901 0.400000 +1005 1915 0.400000 +1005 1940 0.400000 +1005 1957 0.400000 +1005 2013 0.400000 +1005 2057 0.400000 +1005 2072 0.400000 +1005 2128 0.400000 +1005 2244 0.400000 +1005 2353 0.400000 +1005 2422 0.400000 +1005 2440 0.400000 +1005 2598 0.400000 +1005 2716 0.400000 +1005 2732 0.400000 +1005 2741 0.400000 +1005 2773 0.400000 +1005 2787 0.400000 +1005 2833 0.400000 +1005 2856 0.400000 +1005 2898 0.400000 +1005 2996 0.400000 +1005 3021 0.400000 +1005 3152 0.400000 +1006 55 0.400000 +1006 95 0.400000 +1006 142 0.400000 +1006 149 0.400000 +1006 176 0.400000 +1006 201 0.400000 +1006 236 0.400000 +1006 528 0.400000 +1006 535 0.400000 +1006 540 0.400000 +1006 551 0.400000 +1006 796 0.400000 +1006 799 0.400000 +1006 841 0.400000 +1006 845 0.400000 +1006 848 0.400000 +1006 907 0.400000 +1006 974 0.400000 +1006 978 0.400000 +1006 1165 0.400000 +1006 1213 0.400000 +1006 1250 0.400000 +1006 1252 0.400000 +1006 1644 0.400000 +1006 1664 0.400000 +1006 1698 0.400000 +1006 1784 0.400000 +1006 1828 0.400000 +1006 1886 0.400000 +1006 1887 0.400000 +1006 1986 0.400000 +1006 2047 0.400000 +1006 2081 0.400000 +1006 2151 0.400000 +1006 2156 0.400000 +1006 2242 0.400000 +1006 2323 0.400000 +1006 2358 0.400000 +1006 2375 0.400000 +1006 2393 0.400000 +1006 2396 0.400000 +1006 2460 0.400000 +1006 2476 0.400000 +1006 2535 0.400000 +1006 2538 0.400000 +1006 2586 0.400000 +1006 2707 0.400000 +1006 2760 0.400000 +1006 2771 0.400000 +1006 2817 0.400000 +1006 2886 0.400000 +1006 2951 0.400000 +1006 2978 0.400000 +1006 2990 0.400000 +1006 3006 0.400000 +1006 3012 0.400000 +1006 3119 0.400000 +1006 3123 0.400000 +1006 3183 0.400000 +1007 8 0.400000 +1007 52 0.400000 +1007 72 0.400000 +1007 74 0.400000 +1007 87 0.400000 +1007 192 0.400000 +1007 211 0.400000 +1007 216 0.400000 +1007 266 0.400000 +1007 321 0.400000 +1007 355 0.400000 +1007 370 0.400000 +1007 374 0.400000 +1007 407 0.400000 +1007 447 0.400000 +1007 507 0.400000 +1007 521 0.400000 +1007 573 0.400000 +1007 619 0.400000 +1007 665 0.400000 +1007 717 0.400000 +1007 730 0.400000 +1007 767 0.400000 +1007 830 0.400000 +1007 967 0.400000 +1007 992 0.400000 +1007 1038 0.400000 +1007 1082 0.400000 +1007 1084 0.400000 +1007 1087 0.400000 +1007 1092 0.400000 +1007 1145 0.400000 +1007 1180 0.400000 +1007 1239 0.400000 +1007 1286 0.400000 +1007 1309 0.400000 +1007 1324 0.400000 +1007 1331 0.400000 +1007 1339 0.400000 +1007 1353 0.400000 +1007 1383 0.400000 +1007 1387 0.400000 +1007 1427 0.400000 +1007 1465 0.400000 +1007 1489 0.400000 +1007 1694 0.400000 +1007 1722 0.400000 +1007 1758 0.400000 +1007 1813 0.400000 +1007 1852 0.400000 +1007 1903 0.400000 +1007 1929 0.400000 +1007 1946 0.400000 +1007 1969 0.400000 +1007 1974 0.400000 +1007 2030 0.400000 +1007 2038 0.400000 +1007 2067 0.400000 +1007 2133 0.400000 +1007 2339 0.400000 +1007 2491 0.400000 +1007 2531 0.400000 +1007 2532 0.400000 +1007 2555 0.400000 +1007 2557 0.400000 +1007 2740 0.400000 +1007 2743 0.400000 +1007 2807 0.400000 +1007 2821 0.400000 +1007 2831 0.400000 +1007 2893 0.400000 +1007 2896 0.400000 +1007 2989 0.400000 +1007 3024 0.400000 +1007 3038 0.400000 +1007 3042 0.400000 +1007 3058 0.400000 +1007 3124 0.400000 +1007 3144 0.400000 +1008 17 0.400000 +1008 30 0.400000 +1008 100 0.400000 +1008 102 0.400000 +1008 115 0.400000 +1008 118 0.400000 +1008 121 0.400000 +1008 180 0.400000 +1008 185 0.400000 +1008 197 0.400000 +1008 225 0.400000 +1008 377 0.400000 +1008 423 0.400000 +1008 468 0.400000 +1008 504 0.400000 +1008 560 0.400000 +1008 618 0.400000 +1008 622 0.400000 +1008 626 0.400000 +1008 774 0.400000 +1008 862 0.400000 +1008 863 0.400000 +1008 900 0.400000 +1008 940 0.400000 +1008 971 0.400000 +1008 1011 0.400000 +1008 1129 0.400000 +1008 1132 0.400000 +1008 1282 0.400000 +1008 1302 0.400000 +1008 1349 0.400000 +1008 1358 0.400000 +1008 1367 0.400000 +1008 1595 0.400000 +1008 1638 0.400000 +1008 1660 0.400000 +1008 1718 0.400000 +1008 1734 0.400000 +1008 1927 0.400000 +1008 1932 0.400000 +1008 1951 0.400000 +1008 1960 0.400000 +1008 2107 0.400000 +1008 2174 0.400000 +1008 2179 0.400000 +1008 2231 0.400000 +1008 2293 0.400000 +1008 2310 0.400000 +1008 2321 0.400000 +1008 2367 0.400000 +1008 2368 0.400000 +1008 2529 0.400000 +1008 2545 0.400000 +1008 2565 0.400000 +1008 2567 0.400000 +1008 2592 0.400000 +1008 2605 0.400000 +1008 2608 0.400000 +1008 2699 0.400000 +1008 2855 0.400000 +1008 2933 0.400000 +1008 2977 0.400000 +1008 3007 0.400000 +1008 3052 0.400000 +1008 3099 0.400000 +1008 3153 0.400000 +1008 3178 0.400000 +1008 3194 0.400000 +1009 96 0.400000 +1009 150 0.400000 +1009 202 0.400000 +1009 212 0.400000 +1009 265 0.400000 +1009 396 0.400000 +1009 492 0.400000 +1009 518 0.400000 +1009 528 0.400000 +1009 580 0.400000 +1009 609 0.400000 +1009 732 0.400000 +1009 783 0.400000 +1009 955 0.400000 +1009 1007 0.400000 +1009 1019 0.400000 +1009 1090 0.400000 +1009 1148 0.400000 +1009 1152 0.400000 +1009 1223 0.400000 +1009 1227 0.400000 +1009 1357 0.400000 +1009 1416 0.400000 +1009 1449 0.400000 +1009 1581 0.400000 +1009 1602 0.400000 +1009 1605 0.400000 +1009 1673 0.400000 +1009 1709 0.400000 +1009 1750 0.400000 +1009 2016 0.400000 +1009 2106 0.400000 +1009 2131 0.400000 +1009 2148 0.400000 +1009 2158 0.400000 +1009 2271 0.400000 +1009 2339 0.400000 +1009 2402 0.400000 +1009 2559 0.400000 +1009 2578 0.400000 +1009 2609 0.400000 +1009 2610 0.400000 +1009 2650 0.400000 +1009 2736 0.400000 +1009 2746 0.400000 +1009 2820 0.400000 +1009 2849 0.400000 +1009 2910 0.400000 +1009 2931 0.400000 +1009 2959 0.400000 +1009 3095 0.400000 +1009 3133 0.400000 +1010 21 0.400000 +1010 99 0.400000 +1010 221 0.400000 +1010 294 0.400000 +1010 365 0.400000 +1010 377 0.400000 +1010 483 0.400000 +1010 591 0.400000 +1010 659 0.400000 +1010 660 0.400000 +1010 674 0.400000 +1010 740 0.400000 +1010 753 0.400000 +1010 816 0.400000 +1010 842 0.400000 +1010 885 0.400000 +1010 895 0.400000 +1010 937 0.400000 +1010 1055 0.400000 +1010 1135 0.400000 +1010 1147 0.400000 +1010 1172 0.400000 +1010 1398 0.400000 +1010 1404 0.400000 +1010 1582 0.400000 +1010 1615 0.400000 +1010 1633 0.400000 +1010 1647 0.400000 +1010 1730 0.400000 +1010 1782 0.400000 +1010 1787 0.400000 +1010 1796 0.400000 +1010 1952 0.400000 +1010 1985 0.400000 +1010 2052 0.400000 +1010 2146 0.400000 +1010 2239 0.400000 +1010 2258 0.400000 +1010 2288 0.400000 +1010 2372 0.400000 +1010 2422 0.400000 +1010 2475 0.400000 +1010 2628 0.400000 +1010 2657 0.400000 +1010 2661 0.400000 +1010 2726 0.400000 +1010 2753 0.400000 +1010 2757 0.400000 +1010 2788 0.400000 +1010 2882 0.400000 +1010 2924 0.400000 +1010 2990 0.400000 +1010 3044 0.400000 +1010 3078 0.400000 +1010 3079 0.400000 +1011 39 0.400000 +1011 52 0.400000 +1011 112 0.400000 +1011 118 0.400000 +1011 168 0.400000 +1011 292 0.400000 +1011 361 0.400000 +1011 380 0.400000 +1011 387 0.400000 +1011 398 0.400000 +1011 449 0.400000 +1011 470 0.400000 +1011 480 0.400000 +1011 544 0.400000 +1011 572 0.400000 +1011 639 0.400000 +1011 707 0.400000 +1011 715 0.400000 +1011 766 0.400000 +1011 792 0.400000 +1011 878 0.400000 +1011 890 0.400000 +1011 950 0.400000 +1011 961 0.400000 +1011 1007 0.400000 +1011 1107 0.400000 +1011 1148 0.400000 +1011 1279 0.400000 +1011 1288 0.400000 +1011 1314 0.400000 +1011 1409 0.400000 +1011 1435 0.400000 +1011 1527 0.400000 +1011 1604 0.400000 +1011 1672 0.400000 +1011 1678 0.400000 +1011 1680 0.400000 +1011 1691 0.400000 +1011 1705 0.400000 +1011 1878 0.400000 +1011 1908 0.400000 +1011 1947 0.400000 +1011 1968 0.400000 +1011 1975 0.400000 +1011 2013 0.400000 +1011 2203 0.400000 +1011 2230 0.400000 +1011 2247 0.400000 +1011 2421 0.400000 +1011 2430 0.400000 +1011 2457 0.400000 +1011 2467 0.400000 +1011 2521 0.400000 +1011 2529 0.400000 +1011 2543 0.400000 +1011 2568 0.400000 +1011 2609 0.400000 +1011 2671 0.400000 +1011 2673 0.400000 +1011 2679 0.400000 +1011 2773 0.400000 +1011 2802 0.400000 +1011 2807 0.400000 +1011 2966 0.400000 +1011 2983 0.400000 +1011 3015 0.400000 +1011 3017 0.400000 +1011 3034 0.400000 +1011 3079 0.400000 +1011 3156 0.400000 +1012 111 0.400000 +1012 198 0.400000 +1012 324 0.400000 +1012 400 0.400000 +1012 483 0.400000 +1012 543 0.400000 +1012 589 0.400000 +1012 597 0.400000 +1012 601 0.400000 +1012 616 0.400000 +1012 641 0.400000 +1012 707 0.400000 +1012 758 0.400000 +1012 769 0.400000 +1012 952 0.400000 +1012 954 0.400000 +1012 961 0.400000 +1012 1022 0.400000 +1012 1051 0.400000 +1012 1117 0.400000 +1012 1132 0.400000 +1012 1193 0.400000 +1012 1209 0.400000 +1012 1286 0.400000 +1012 1315 0.400000 +1012 1376 0.400000 +1012 1392 0.400000 +1012 1426 0.400000 +1012 1453 0.400000 +1012 1474 0.400000 +1012 1522 0.400000 +1012 1528 0.400000 +1012 1613 0.400000 +1012 1669 0.400000 +1012 1699 0.400000 +1012 1728 0.400000 +1012 1734 0.400000 +1012 1762 0.400000 +1012 1777 0.400000 +1012 1799 0.400000 +1012 1854 0.400000 +1012 1902 0.400000 +1012 1937 0.400000 +1012 2036 0.400000 +1012 2043 0.400000 +1012 2073 0.400000 +1012 2202 0.400000 +1012 2241 0.400000 +1012 2403 0.400000 +1012 2528 0.400000 +1012 2572 0.400000 +1012 2605 0.400000 +1012 2705 0.400000 +1012 2738 0.400000 +1012 2763 0.400000 +1012 2828 0.400000 +1012 2906 0.400000 +1012 2944 0.400000 +1012 2957 0.400000 +1012 3057 0.400000 +1012 3090 0.400000 +1012 3109 0.400000 +1012 3140 0.400000 +1012 3146 0.400000 +1013 105 0.400000 +1013 119 0.400000 +1013 156 0.400000 +1013 213 0.400000 +1013 232 0.400000 +1013 235 0.400000 +1013 243 0.400000 +1013 294 0.400000 +1013 346 0.400000 +1013 362 0.400000 +1013 374 0.400000 +1013 403 0.400000 +1013 405 0.400000 +1013 595 0.400000 +1013 603 0.400000 +1013 686 0.400000 +1013 690 0.400000 +1013 778 0.400000 +1013 813 0.400000 +1013 815 0.400000 +1013 936 0.400000 +1013 1033 0.400000 +1013 1048 0.400000 +1013 1068 0.400000 +1013 1247 0.400000 +1013 1289 0.400000 +1013 1315 0.400000 +1013 1347 0.400000 +1013 1407 0.400000 +1013 1460 0.400000 +1013 1492 0.400000 +1013 1510 0.400000 +1013 1605 0.400000 +1013 1621 0.400000 +1013 1686 0.400000 +1013 1712 0.400000 +1013 1808 0.400000 +1013 1829 0.400000 +1013 2002 0.400000 +1013 2067 0.400000 +1013 2084 0.400000 +1013 2179 0.400000 +1013 2238 0.400000 +1013 2282 0.400000 +1013 2283 0.400000 +1013 2355 0.400000 +1013 2390 0.400000 +1013 2461 0.400000 +1013 2502 0.400000 +1013 2525 0.400000 +1013 2530 0.400000 +1013 2633 0.400000 +1013 2658 0.400000 +1013 2700 0.400000 +1013 2703 0.400000 +1013 2737 0.400000 +1013 2752 0.400000 +1013 2755 0.400000 +1013 2789 0.400000 +1013 2807 0.400000 +1013 2860 0.400000 +1013 2873 0.400000 +1013 2948 0.400000 +1013 2990 0.400000 +1013 3014 0.400000 +1013 3062 0.400000 +1013 3067 0.400000 +1013 3072 0.400000 +1013 3122 0.400000 +1013 3165 0.400000 +1013 3194 0.400000 +1014 11 0.400000 +1014 51 0.400000 +1014 68 0.400000 +1014 89 0.400000 +1014 309 0.400000 +1014 323 0.400000 +1014 364 0.400000 +1014 370 0.400000 +1014 422 0.400000 +1014 466 0.400000 +1014 606 0.400000 +1014 614 0.400000 +1014 624 0.400000 +1014 691 0.400000 +1014 693 0.400000 +1014 707 0.400000 +1014 864 0.400000 +1014 866 0.400000 +1014 894 0.400000 +1014 967 0.400000 +1014 1011 0.400000 +1014 1057 0.400000 +1014 1115 0.400000 +1014 1203 0.400000 +1014 1252 0.400000 +1014 1267 0.400000 +1014 1295 0.400000 +1014 1313 0.400000 +1014 1347 0.400000 +1014 1442 0.400000 +1014 1511 0.400000 +1014 1537 0.400000 +1014 1558 0.400000 +1014 1625 0.400000 +1014 1629 0.400000 +1014 1675 0.400000 +1014 1677 0.400000 +1014 1734 0.400000 +1014 1855 0.400000 +1014 1865 0.400000 +1014 1951 0.400000 +1014 1998 0.400000 +1014 2029 0.400000 +1014 2059 0.400000 +1014 2184 0.400000 +1014 2205 0.400000 +1014 2250 0.400000 +1014 2263 0.400000 +1014 2265 0.400000 +1014 2267 0.400000 +1014 2325 0.400000 +1014 2389 0.400000 +1014 2565 0.400000 +1014 2582 0.400000 +1014 2643 0.400000 +1014 2660 0.400000 +1014 2730 0.400000 +1014 2775 0.400000 +1014 2853 0.400000 +1014 2876 0.400000 +1014 2893 0.400000 +1014 2975 0.400000 +1014 3009 0.400000 +1014 3051 0.400000 +1014 3104 0.400000 +1014 3141 0.400000 +1014 3157 0.400000 +1014 3163 0.400000 +1015 142 0.400000 +1015 232 0.400000 +1015 292 0.400000 +1015 315 0.400000 +1015 321 0.400000 +1015 333 0.400000 +1015 393 0.400000 +1015 571 0.400000 +1015 678 0.400000 +1015 714 0.400000 +1015 724 0.400000 +1015 879 0.400000 +1015 905 0.400000 +1015 925 0.400000 +1015 996 0.400000 +1015 1110 0.400000 +1015 1141 0.400000 +1015 1190 0.400000 +1015 1233 0.400000 +1015 1290 0.400000 +1015 1299 0.400000 +1015 1329 0.400000 +1015 1398 0.400000 +1015 1462 0.400000 +1015 1485 0.400000 +1015 1516 0.400000 +1015 1542 0.400000 +1015 1559 0.400000 +1015 1562 0.400000 +1015 1722 0.400000 +1015 1730 0.400000 +1015 1742 0.400000 +1015 1744 0.400000 +1015 1795 0.400000 +1015 1838 0.400000 +1015 1843 0.400000 +1015 1848 0.400000 +1015 2010 0.400000 +1015 2013 0.400000 +1015 2015 0.400000 +1015 2101 0.400000 +1015 2162 0.400000 +1015 2163 0.400000 +1015 2177 0.400000 +1015 2202 0.400000 +1015 2244 0.400000 +1015 2248 0.400000 +1015 2346 0.400000 +1015 2443 0.400000 +1015 2466 0.400000 +1015 2514 0.400000 +1015 2545 0.400000 +1015 2570 0.400000 +1015 2572 0.400000 +1015 2651 0.400000 +1015 2679 0.400000 +1015 2695 0.400000 +1015 2697 0.400000 +1015 2756 0.400000 +1015 2762 0.400000 +1015 2786 0.400000 +1015 2793 0.400000 +1015 2807 0.400000 +1015 2818 0.400000 +1015 2879 0.400000 +1015 2931 0.400000 +1015 2944 0.400000 +1015 3105 0.400000 +1015 3145 0.400000 +1015 3151 0.400000 +1016 21 0.400000 +1016 34 0.400000 +1016 127 0.400000 +1016 130 0.400000 +1016 218 0.400000 +1016 253 0.400000 +1016 332 0.400000 +1016 340 0.400000 +1016 368 0.400000 +1016 380 0.400000 +1016 449 0.400000 +1016 483 0.400000 +1016 513 0.400000 +1016 556 0.400000 +1016 574 0.400000 +1016 586 0.400000 +1016 611 0.400000 +1016 615 0.400000 +1016 622 0.400000 +1016 635 0.400000 +1016 662 0.400000 +1016 698 0.400000 +1016 718 0.400000 +1016 838 0.400000 +1016 845 0.400000 +1016 856 0.400000 +1016 873 0.400000 +1016 891 0.400000 +1016 963 0.400000 +1016 1045 0.400000 +1016 1048 0.400000 +1016 1143 0.400000 +1016 1174 0.400000 +1016 1220 0.400000 +1016 1347 0.400000 +1016 1366 0.400000 +1016 1387 0.400000 +1016 1388 0.400000 +1016 1532 0.400000 +1016 1556 0.400000 +1016 1586 0.400000 +1016 1641 0.400000 +1016 1706 0.400000 +1016 1713 0.400000 +1016 1748 0.400000 +1016 1855 0.400000 +1016 1874 0.400000 +1016 1899 0.400000 +1016 1902 0.400000 +1016 1912 0.400000 +1016 1956 0.400000 +1016 2061 0.400000 +1016 2077 0.400000 +1016 2083 0.400000 +1016 2086 0.400000 +1016 2116 0.400000 +1016 2129 0.400000 +1016 2139 0.400000 +1016 2140 0.400000 +1016 2175 0.400000 +1016 2248 0.400000 +1016 2477 0.400000 +1016 2516 0.400000 +1016 2535 0.400000 +1016 2536 0.400000 +1016 2555 0.400000 +1016 2595 0.400000 +1016 2640 0.400000 +1016 2659 0.400000 +1016 2666 0.400000 +1016 2735 0.400000 +1016 2789 0.400000 +1016 2801 0.400000 +1016 2869 0.400000 +1016 2968 0.400000 +1016 3141 0.400000 +1017 1 0.400000 +1017 395 0.400000 +1017 400 0.400000 +1017 468 0.400000 +1017 497 0.400000 +1017 522 0.400000 +1017 524 0.400000 +1017 649 0.400000 +1017 729 0.400000 +1017 741 0.400000 +1017 750 0.400000 +1017 938 0.400000 +1017 978 0.400000 +1017 1040 0.400000 +1017 1055 0.400000 +1017 1079 0.400000 +1017 1187 0.400000 +1017 1196 0.400000 +1017 1212 0.400000 +1017 1221 0.400000 +1017 1301 0.400000 +1017 1417 0.400000 +1017 1439 0.400000 +1017 1453 0.400000 +1017 1741 0.400000 +1017 1777 0.400000 +1017 1799 0.400000 +1017 1825 0.400000 +1017 1849 0.400000 +1017 1860 0.400000 +1017 1869 0.400000 +1017 1870 0.400000 +1017 1972 0.400000 +1017 1987 0.400000 +1017 2042 0.400000 +1017 2126 0.400000 +1017 2163 0.400000 +1017 2185 0.400000 +1017 2238 0.400000 +1017 2252 0.400000 +1017 2349 0.400000 +1017 2350 0.400000 +1017 2415 0.400000 +1017 2432 0.400000 +1017 2442 0.400000 +1017 2503 0.400000 +1017 2564 0.400000 +1017 2692 0.400000 +1017 2694 0.400000 +1017 2720 0.400000 +1017 2894 0.400000 +1017 2930 0.400000 +1017 2996 0.400000 +1017 3044 0.400000 +1017 3069 0.400000 +1017 3071 0.400000 +1017 3115 0.400000 +1017 3133 0.400000 +1017 3150 0.400000 +1017 3186 0.400000 +1018 17 0.400000 +1018 20 0.400000 +1018 108 0.400000 +1018 242 0.400000 +1018 263 0.400000 +1018 334 0.400000 +1018 417 0.400000 +1018 537 0.400000 +1018 596 0.400000 +1018 641 0.400000 +1018 660 0.400000 +1018 664 0.400000 +1018 666 0.400000 +1018 721 0.400000 +1018 831 0.400000 +1018 862 0.400000 +1018 940 0.400000 +1018 989 0.400000 +1018 994 0.400000 +1018 1019 0.400000 +1018 1059 0.400000 +1018 1098 0.400000 +1018 1202 0.400000 +1018 1217 0.400000 +1018 1243 0.400000 +1018 1254 0.400000 +1018 1270 0.400000 +1018 1336 0.400000 +1018 1389 0.400000 +1018 1397 0.400000 +1018 1404 0.400000 +1018 1409 0.400000 +1018 1424 0.400000 +1018 1654 0.400000 +1018 1667 0.400000 +1018 1701 0.400000 +1018 1704 0.400000 +1018 1758 0.400000 +1018 1895 0.400000 +1018 1909 0.400000 +1018 1917 0.400000 +1018 1928 0.400000 +1018 1969 0.400000 +1018 2063 0.400000 +1018 2104 0.400000 +1018 2152 0.400000 +1018 2179 0.400000 +1018 2198 0.400000 +1018 2264 0.400000 +1018 2325 0.400000 +1018 2334 0.400000 +1018 2509 0.400000 +1018 2547 0.400000 +1018 2626 0.400000 +1018 2639 0.400000 +1018 2712 0.400000 +1018 2765 0.400000 +1018 2778 0.400000 +1018 2838 0.400000 +1018 2840 0.400000 +1018 2861 0.400000 +1018 2927 0.400000 +1018 3008 0.400000 +1018 3010 0.400000 +1018 3142 0.400000 +1019 48 0.400000 +1019 99 0.400000 +1019 206 0.400000 +1019 220 0.400000 +1019 235 0.400000 +1019 324 0.400000 +1019 386 0.400000 +1019 425 0.400000 +1019 457 0.400000 +1019 469 0.400000 +1019 502 0.400000 +1019 507 0.400000 +1019 521 0.400000 +1019 747 0.400000 +1019 815 0.400000 +1019 820 0.400000 +1019 978 0.400000 +1019 1150 0.400000 +1019 1280 0.400000 +1019 1330 0.400000 +1019 1380 0.400000 +1019 1389 0.400000 +1019 1417 0.400000 +1019 1424 0.400000 +1019 1452 0.400000 +1019 1462 0.400000 +1019 1511 0.400000 +1019 1645 0.400000 +1019 1687 0.400000 +1019 1814 0.400000 +1019 1824 0.400000 +1019 1838 0.400000 +1019 1907 0.400000 +1019 1991 0.400000 +1019 2077 0.400000 +1019 2095 0.400000 +1019 2118 0.400000 +1019 2148 0.400000 +1019 2180 0.400000 +1019 2243 0.400000 +1019 2271 0.400000 +1019 2362 0.400000 +1019 2422 0.400000 +1019 2433 0.400000 +1019 2435 0.400000 +1019 2436 0.400000 +1019 2515 0.400000 +1019 2520 0.400000 +1019 2526 0.400000 +1019 2529 0.400000 +1019 2537 0.400000 +1019 2692 0.400000 +1019 2805 0.400000 +1019 2818 0.400000 +1019 2826 0.400000 +1019 2892 0.400000 +1019 3040 0.400000 +1019 3153 0.400000 +1019 3164 0.400000 +1019 3167 0.400000 +1020 27 0.400000 +1020 39 0.400000 +1020 151 0.400000 +1020 167 0.400000 +1020 208 0.400000 +1020 226 0.400000 +1020 255 0.400000 +1020 336 0.400000 +1020 419 0.400000 +1020 477 0.400000 +1020 502 0.400000 +1020 536 0.400000 +1020 580 0.400000 +1020 587 0.400000 +1020 651 0.400000 +1020 659 0.400000 +1020 664 0.400000 +1020 699 0.400000 +1020 799 0.400000 +1020 820 0.400000 +1020 829 0.400000 +1020 914 0.400000 +1020 935 0.400000 +1020 939 0.400000 +1020 951 0.400000 +1020 979 0.400000 +1020 1086 0.400000 +1020 1139 0.400000 +1020 1161 0.400000 +1020 1224 0.400000 +1020 1240 0.400000 +1020 1298 0.400000 +1020 1329 0.400000 +1020 1351 0.400000 +1020 1372 0.400000 +1020 1404 0.400000 +1020 1484 0.400000 +1020 1701 0.400000 +1020 1703 0.400000 +1020 1774 0.400000 +1020 1783 0.400000 +1020 1827 0.400000 +1020 1834 0.400000 +1020 1857 0.400000 +1020 1948 0.400000 +1020 1963 0.400000 +1020 2059 0.400000 +1020 2067 0.400000 +1020 2263 0.400000 +1020 2324 0.400000 +1020 2422 0.400000 +1020 2499 0.400000 +1020 2520 0.400000 +1020 2536 0.400000 +1020 2553 0.400000 +1020 2558 0.400000 +1020 2639 0.400000 +1020 2651 0.400000 +1020 2659 0.400000 +1020 2811 0.400000 +1020 2847 0.400000 +1020 2884 0.400000 +1020 2928 0.400000 +1020 2929 0.400000 +1020 3113 0.400000 +1020 3142 0.400000 +1020 3168 0.400000 +1020 3200 0.400000 +1021 4 0.400000 +1021 40 0.400000 +1021 157 0.400000 +1021 227 0.400000 +1021 239 0.400000 +1021 273 0.400000 +1021 384 0.400000 +1021 433 0.400000 +1021 553 0.400000 +1021 617 0.400000 +1021 810 0.400000 +1021 824 0.400000 +1021 834 0.400000 +1021 863 0.400000 +1021 869 0.400000 +1021 898 0.400000 +1021 900 0.400000 +1021 906 0.400000 +1021 933 0.400000 +1021 936 0.400000 +1021 967 0.400000 +1021 1011 0.400000 +1021 1032 0.400000 +1021 1040 0.400000 +1021 1103 0.400000 +1021 1140 0.400000 +1021 1160 0.400000 +1021 1329 0.400000 +1021 1508 0.400000 +1021 1550 0.400000 +1021 1608 0.400000 +1021 1719 0.400000 +1021 1739 0.400000 +1021 1759 0.400000 +1021 1854 0.400000 +1021 1899 0.400000 +1021 1901 0.400000 +1021 1916 0.400000 +1021 1984 0.400000 +1021 1995 0.400000 +1021 1996 0.400000 +1021 2016 0.400000 +1021 2027 0.400000 +1021 2031 0.400000 +1021 2041 0.400000 +1021 2105 0.400000 +1021 2152 0.400000 +1021 2178 0.400000 +1021 2205 0.400000 +1021 2242 0.400000 +1021 2246 0.400000 +1021 2266 0.400000 +1021 2305 0.400000 +1021 2314 0.400000 +1021 2351 0.400000 +1021 2397 0.400000 +1021 2414 0.400000 +1021 2441 0.400000 +1021 2451 0.400000 +1021 2546 0.400000 +1021 2623 0.400000 +1021 2628 0.400000 +1021 2631 0.400000 +1021 2696 0.400000 +1021 2795 0.400000 +1021 2802 0.400000 +1021 2877 0.400000 +1021 2901 0.400000 +1021 3035 0.400000 +1021 3075 0.400000 +1021 3099 0.400000 +1021 3130 0.400000 +1021 3163 0.400000 +1022 69 0.400000 +1022 144 0.400000 +1022 153 0.400000 +1022 171 0.400000 +1022 192 0.400000 +1022 220 0.400000 +1022 282 0.400000 +1022 425 0.400000 +1022 469 0.400000 +1022 486 0.400000 +1022 534 0.400000 +1022 653 0.400000 +1022 700 0.400000 +1022 727 0.400000 +1022 742 0.400000 +1022 959 0.400000 +1022 977 0.400000 +1022 988 0.400000 +1022 1014 0.400000 +1022 1015 0.400000 +1022 1037 0.400000 +1022 1299 0.400000 +1022 1363 0.400000 +1022 1379 0.400000 +1022 1384 0.400000 +1022 1399 0.400000 +1022 1436 0.400000 +1022 1449 0.400000 +1022 1696 0.400000 +1022 1708 0.400000 +1022 1724 0.400000 +1022 1812 0.400000 +1022 1844 0.400000 +1022 1898 0.400000 +1022 1911 0.400000 +1022 2030 0.400000 +1022 2066 0.400000 +1022 2177 0.400000 +1022 2192 0.400000 +1022 2256 0.400000 +1022 2290 0.400000 +1022 2309 0.400000 +1022 2329 0.400000 +1022 2382 0.400000 +1022 2399 0.400000 +1022 2405 0.400000 +1022 2471 0.400000 +1022 2628 0.400000 +1022 2661 0.400000 +1022 2667 0.400000 +1022 2747 0.400000 +1022 2784 0.400000 +1022 2790 0.400000 +1022 2887 0.400000 +1022 2957 0.400000 +1023 125 0.400000 +1023 283 0.400000 +1023 483 0.400000 +1023 559 0.400000 +1023 601 0.400000 +1023 623 0.400000 +1023 632 0.400000 +1023 711 0.400000 +1023 726 0.400000 +1023 727 0.400000 +1023 755 0.400000 +1023 799 0.400000 +1023 828 0.400000 +1023 939 0.400000 +1023 997 0.400000 +1023 998 0.400000 +1023 1009 0.400000 +1023 1033 0.400000 +1023 1068 0.400000 +1023 1155 0.400000 +1023 1164 0.400000 +1023 1171 0.400000 +1023 1176 0.400000 +1023 1258 0.400000 +1023 1260 0.400000 +1023 1278 0.400000 +1023 1439 0.400000 +1023 1513 0.400000 +1023 1604 0.400000 +1023 1638 0.400000 +1023 1672 0.400000 +1023 1708 0.400000 +1023 1764 0.400000 +1023 1871 0.400000 +1023 1895 0.400000 +1023 1897 0.400000 +1023 1929 0.400000 +1023 1948 0.400000 +1023 2000 0.400000 +1023 2012 0.400000 +1023 2030 0.400000 +1023 2136 0.400000 +1023 2152 0.400000 +1023 2155 0.400000 +1023 2159 0.400000 +1023 2218 0.400000 +1023 2224 0.400000 +1023 2237 0.400000 +1023 2314 0.400000 +1023 2411 0.400000 +1023 2431 0.400000 +1023 2439 0.400000 +1023 2499 0.400000 +1023 2555 0.400000 +1023 2593 0.400000 +1023 2669 0.400000 +1023 2718 0.400000 +1023 2738 0.400000 +1023 2769 0.400000 +1023 2854 0.400000 +1023 3006 0.400000 +1023 3082 0.400000 +1023 3188 0.400000 +1024 1 0.400000 +1024 33 0.400000 +1024 132 0.400000 +1024 194 0.400000 +1024 204 0.400000 +1024 271 0.400000 +1024 303 0.400000 +1024 409 0.400000 +1024 429 0.400000 +1024 550 0.400000 +1024 659 0.400000 +1024 668 0.400000 +1024 699 0.400000 +1024 715 0.400000 +1024 728 0.400000 +1024 777 0.400000 +1024 844 0.400000 +1024 870 0.400000 +1024 928 0.400000 +1024 1077 0.400000 +1024 1113 0.400000 +1024 1271 0.400000 +1024 1278 0.400000 +1024 1309 0.400000 +1024 1338 0.400000 +1024 1400 0.400000 +1024 1413 0.400000 +1024 1523 0.400000 +1024 1525 0.400000 +1024 1542 0.400000 +1024 1563 0.400000 +1024 1612 0.400000 +1024 1633 0.400000 +1024 1639 0.400000 +1024 1657 0.400000 +1024 1664 0.400000 +1024 1666 0.400000 +1024 1682 0.400000 +1024 1721 0.400000 +1024 1725 0.400000 +1024 1754 0.400000 +1024 1852 0.400000 +1024 1948 0.400000 +1024 1969 0.400000 +1024 1974 0.400000 +1024 1990 0.400000 +1024 2077 0.400000 +1024 2110 0.400000 +1024 2152 0.400000 +1024 2157 0.400000 +1024 2162 0.400000 +1024 2303 0.400000 +1024 2314 0.400000 +1024 2325 0.400000 +1024 2408 0.400000 +1024 2489 0.400000 +1024 2526 0.400000 +1024 2578 0.400000 +1024 2742 0.400000 +1024 2746 0.400000 +1024 2813 0.400000 +1024 2861 0.400000 +1024 2878 0.400000 +1024 2898 0.400000 +1024 2915 0.400000 +1024 2959 0.400000 +1024 2960 0.400000 +1024 3095 0.400000 +1024 3149 0.400000 +1025 41 0.400000 +1025 46 0.400000 +1025 92 0.400000 +1025 98 0.400000 +1025 106 0.400000 +1025 113 0.400000 +1025 155 0.400000 +1025 176 0.400000 +1025 185 0.400000 +1025 279 0.400000 +1025 311 0.400000 +1025 322 0.400000 +1025 355 0.400000 +1025 596 0.400000 +1025 606 0.400000 +1025 660 0.400000 +1025 676 0.400000 +1025 704 0.400000 +1025 727 0.400000 +1025 736 0.400000 +1025 765 0.400000 +1025 780 0.400000 +1025 836 0.400000 +1025 901 0.400000 +1025 935 0.400000 +1025 954 0.400000 +1025 1065 0.400000 +1025 1215 0.400000 +1025 1271 0.400000 +1025 1279 0.400000 +1025 1335 0.400000 +1025 1424 0.400000 +1025 1475 0.400000 +1025 1592 0.400000 +1025 1613 0.400000 +1025 1630 0.400000 +1025 1653 0.400000 +1025 1672 0.400000 +1025 1689 0.400000 +1025 1730 0.400000 +1025 1755 0.400000 +1025 1823 0.400000 +1025 1935 0.400000 +1025 1960 0.400000 +1025 1998 0.400000 +1025 2023 0.400000 +1025 2138 0.400000 +1025 2171 0.400000 +1025 2238 0.400000 +1025 2312 0.400000 +1025 2318 0.400000 +1025 2401 0.400000 +1025 2426 0.400000 +1025 2492 0.400000 +1025 2508 0.400000 +1025 2577 0.400000 +1025 2607 0.400000 +1025 2660 0.400000 +1025 2677 0.400000 +1025 2689 0.400000 +1025 2701 0.400000 +1025 2846 0.400000 +1025 2847 0.400000 +1025 2849 0.400000 +1025 2888 0.400000 +1025 2915 0.400000 +1025 2929 0.400000 +1025 2956 0.400000 +1026 19 0.400000 +1026 97 0.400000 +1026 127 0.400000 +1026 136 0.400000 +1026 219 0.400000 +1026 227 0.400000 +1026 232 0.400000 +1026 259 0.400000 +1026 281 0.400000 +1026 303 0.400000 +1026 348 0.400000 +1026 406 0.400000 +1026 425 0.400000 +1026 466 0.400000 +1026 554 0.400000 +1026 716 0.400000 +1026 742 0.400000 +1026 785 0.400000 +1026 787 0.400000 +1026 796 0.400000 +1026 811 0.400000 +1026 955 0.400000 +1026 968 0.400000 +1026 970 0.400000 +1026 995 0.400000 +1026 1051 0.400000 +1026 1053 0.400000 +1026 1055 0.400000 +1026 1088 0.400000 +1026 1143 0.400000 +1026 1167 0.400000 +1026 1209 0.400000 +1026 1210 0.400000 +1026 1241 0.400000 +1026 1337 0.400000 +1026 1412 0.400000 +1026 1493 0.400000 +1026 1525 0.400000 +1026 1535 0.400000 +1026 1652 0.400000 +1026 1722 0.400000 +1026 1772 0.400000 +1026 1820 0.400000 +1026 1907 0.400000 +1026 2077 0.400000 +1026 2115 0.400000 +1026 2136 0.400000 +1026 2247 0.400000 +1026 2277 0.400000 +1026 2286 0.400000 +1026 2311 0.400000 +1026 2414 0.400000 +1026 2529 0.400000 +1026 2543 0.400000 +1026 2547 0.400000 +1026 2579 0.400000 +1026 2609 0.400000 +1026 2622 0.400000 +1026 2625 0.400000 +1026 2686 0.400000 +1026 2709 0.400000 +1026 2714 0.400000 +1026 2755 0.400000 +1026 2831 0.400000 +1026 2977 0.400000 +1026 3113 0.400000 +1026 3144 0.400000 +1026 3153 0.400000 +1027 49 0.400000 +1027 59 0.400000 +1027 62 0.400000 +1027 100 0.400000 +1027 254 0.400000 +1027 398 0.400000 +1027 447 0.400000 +1027 641 0.400000 +1027 664 0.400000 +1027 670 0.400000 +1027 693 0.400000 +1027 696 0.400000 +1027 735 0.400000 +1027 777 0.400000 +1027 847 0.400000 +1027 952 0.400000 +1027 999 0.400000 +1027 1107 0.400000 +1027 1119 0.400000 +1027 1203 0.400000 +1027 1245 0.400000 +1027 1268 0.400000 +1027 1292 0.400000 +1027 1367 0.400000 +1027 1383 0.400000 +1027 1406 0.400000 +1027 1425 0.400000 +1027 1441 0.400000 +1027 1455 0.400000 +1027 1733 0.400000 +1027 1768 0.400000 +1027 1771 0.400000 +1027 1786 0.400000 +1027 1824 0.400000 +1027 1912 0.400000 +1027 2079 0.400000 +1027 2108 0.400000 +1027 2177 0.400000 +1027 2213 0.400000 +1027 2229 0.400000 +1027 2259 0.400000 +1027 2313 0.400000 +1027 2511 0.400000 +1027 2644 0.400000 +1027 2668 0.400000 +1027 2742 0.400000 +1027 2819 0.400000 +1027 2869 0.400000 +1027 2877 0.400000 +1027 2891 0.400000 +1027 3117 0.400000 +1027 3181 0.400000 +1028 38 0.400000 +1028 153 0.400000 +1028 161 0.400000 +1028 227 0.400000 +1028 260 0.400000 +1028 310 0.400000 +1028 358 0.400000 +1028 372 0.400000 +1028 380 0.400000 +1028 396 0.400000 +1028 399 0.400000 +1028 408 0.400000 +1028 472 0.400000 +1028 632 0.400000 +1028 686 0.400000 +1028 726 0.400000 +1028 761 0.400000 +1028 817 0.400000 +1028 853 0.400000 +1028 858 0.400000 +1028 886 0.400000 +1028 916 0.400000 +1028 940 0.400000 +1028 953 0.400000 +1028 1090 0.400000 +1028 1164 0.400000 +1028 1169 0.400000 +1028 1215 0.400000 +1028 1240 0.400000 +1028 1275 0.400000 +1028 1285 0.400000 +1028 1340 0.400000 +1028 1377 0.400000 +1028 1480 0.400000 +1028 1537 0.400000 +1028 1634 0.400000 +1028 1723 0.400000 +1028 1804 0.400000 +1028 1828 0.400000 +1028 1832 0.400000 +1028 1838 0.400000 +1028 1903 0.400000 +1028 1973 0.400000 +1028 1978 0.400000 +1028 1990 0.400000 +1028 1993 0.400000 +1028 2007 0.400000 +1028 2113 0.400000 +1028 2132 0.400000 +1028 2173 0.400000 +1028 2176 0.400000 +1028 2247 0.400000 +1028 2288 0.400000 +1028 2438 0.400000 +1028 2446 0.400000 +1028 2466 0.400000 +1028 2523 0.400000 +1028 2596 0.400000 +1028 2626 0.400000 +1028 2719 0.400000 +1028 2756 0.400000 +1028 2830 0.400000 +1028 2873 0.400000 +1028 3007 0.400000 +1028 3118 0.400000 +1028 3192 0.400000 +1029 27 0.400000 +1029 92 0.400000 +1029 149 0.400000 +1029 160 0.400000 +1029 251 0.400000 +1029 409 0.400000 +1029 489 0.400000 +1029 506 0.400000 +1029 600 0.400000 +1029 688 0.400000 +1029 773 0.400000 +1029 789 0.400000 +1029 819 0.400000 +1029 837 0.400000 +1029 862 0.400000 +1029 976 0.400000 +1029 1157 0.400000 +1029 1179 0.400000 +1029 1184 0.400000 +1029 1209 0.400000 +1029 1228 0.400000 +1029 1231 0.400000 +1029 1253 0.400000 +1029 1287 0.400000 +1029 1339 0.400000 +1029 1351 0.400000 +1029 1491 0.400000 +1029 1605 0.400000 +1029 1619 0.400000 +1029 1723 0.400000 +1029 1924 0.400000 +1029 1970 0.400000 +1029 1999 0.400000 +1029 2060 0.400000 +1029 2067 0.400000 +1029 2104 0.400000 +1029 2162 0.400000 +1029 2283 0.400000 +1029 2343 0.400000 +1029 2347 0.400000 +1029 2352 0.400000 +1029 2384 0.400000 +1029 2408 0.400000 +1029 2419 0.400000 +1029 2442 0.400000 +1029 2482 0.400000 +1029 2597 0.400000 +1029 2653 0.400000 +1029 2873 0.400000 +1029 2890 0.400000 +1029 2918 0.400000 +1029 2929 0.400000 +1029 2942 0.400000 +1029 2992 0.400000 +1029 3041 0.400000 +1029 3067 0.400000 +1029 3123 0.400000 +1029 3136 0.400000 +1029 3139 0.400000 +1029 3182 0.400000 +1030 93 0.400000 +1030 108 0.400000 +1030 180 0.400000 +1030 196 0.400000 +1030 202 0.400000 +1030 217 0.400000 +1030 273 0.400000 +1030 281 0.400000 +1030 417 0.400000 +1030 430 0.400000 +1030 450 0.400000 +1030 588 0.400000 +1030 753 0.400000 +1030 758 0.400000 +1030 784 0.400000 +1030 814 0.400000 +1030 890 0.400000 +1030 929 0.400000 +1030 934 0.400000 +1030 1027 0.400000 +1030 1056 0.400000 +1030 1095 0.400000 +1030 1107 0.400000 +1030 1142 0.400000 +1030 1377 0.400000 +1030 1419 0.400000 +1030 1484 0.400000 +1030 1509 0.400000 +1030 1524 0.400000 +1030 1554 0.400000 +1030 1618 0.400000 +1030 1621 0.400000 +1030 1626 0.400000 +1030 1632 0.400000 +1030 1645 0.400000 +1030 1654 0.400000 +1030 1688 0.400000 +1030 1832 0.400000 +1030 1883 0.400000 +1030 1930 0.400000 +1030 2004 0.400000 +1030 2023 0.400000 +1030 2225 0.400000 +1030 2353 0.400000 +1030 2371 0.400000 +1030 2403 0.400000 +1030 2408 0.400000 +1030 2416 0.400000 +1030 2436 0.400000 +1030 2463 0.400000 +1030 2519 0.400000 +1030 2570 0.400000 +1030 2598 0.400000 +1030 2626 0.400000 +1030 2648 0.400000 +1030 2711 0.400000 +1030 2784 0.400000 +1030 2796 0.400000 +1030 2843 0.400000 +1030 2845 0.400000 +1030 2935 0.400000 +1030 3036 0.400000 +1030 3190 0.400000 +1031 75 0.400000 +1031 78 0.400000 +1031 127 0.400000 +1031 206 0.400000 +1031 271 0.400000 +1031 319 0.400000 +1031 320 0.400000 +1031 379 0.400000 +1031 399 0.400000 +1031 441 0.400000 +1031 461 0.400000 +1031 466 0.400000 +1031 469 0.400000 +1031 496 0.400000 +1031 512 0.400000 +1031 539 0.400000 +1031 545 0.400000 +1031 598 0.400000 +1031 614 0.400000 +1031 652 0.400000 +1031 679 0.400000 +1031 688 0.400000 +1031 712 0.400000 +1031 775 0.400000 +1031 848 0.400000 +1031 899 0.400000 +1031 1017 0.400000 +1031 1027 0.400000 +1031 1040 0.400000 +1031 1093 0.400000 +1031 1101 0.400000 +1031 1109 0.400000 +1031 1135 0.400000 +1031 1147 0.400000 +1031 1175 0.400000 +1031 1181 0.400000 +1031 1238 0.400000 +1031 1313 0.400000 +1031 1382 0.400000 +1031 1390 0.400000 +1031 1394 0.400000 +1031 1402 0.400000 +1031 1404 0.400000 +1031 1405 0.400000 +1031 1408 0.400000 +1031 1430 0.400000 +1031 1471 0.400000 +1031 1492 0.400000 +1031 1606 0.400000 +1031 1697 0.400000 +1031 1709 0.400000 +1031 1760 0.400000 +1031 1775 0.400000 +1031 1918 0.400000 +1031 1925 0.400000 +1031 1995 0.400000 +1031 2035 0.400000 +1031 2039 0.400000 +1031 2059 0.400000 +1031 2070 0.400000 +1031 2085 0.400000 +1031 2120 0.400000 +1031 2121 0.400000 +1031 2218 0.400000 +1031 2283 0.400000 +1031 2303 0.400000 +1031 2315 0.400000 +1031 2352 0.400000 +1031 2389 0.400000 +1031 2403 0.400000 +1031 2419 0.400000 +1031 2527 0.400000 +1031 2641 0.400000 +1031 2673 0.400000 +1031 2685 0.400000 +1031 2714 0.400000 +1031 2770 0.400000 +1031 2855 0.400000 +1031 2876 0.400000 +1031 2962 0.400000 +1031 2967 0.400000 +1031 2984 0.400000 +1031 3033 0.400000 +1031 3059 0.400000 +1031 3164 0.400000 +1032 31 0.400000 +1032 64 0.400000 +1032 99 0.400000 +1032 166 0.400000 +1032 168 0.400000 +1032 194 0.400000 +1032 247 0.400000 +1032 264 0.400000 +1032 276 0.400000 +1032 311 0.400000 +1032 324 0.400000 +1032 326 0.400000 +1032 327 0.400000 +1032 362 0.400000 +1032 375 0.400000 +1032 390 0.400000 +1032 394 0.400000 +1032 501 0.400000 +1032 574 0.400000 +1032 632 0.400000 +1032 676 0.400000 +1032 801 0.400000 +1032 830 0.400000 +1032 832 0.400000 +1032 857 0.400000 +1032 891 0.400000 +1032 919 0.400000 +1032 929 0.400000 +1032 942 0.400000 +1032 970 0.400000 +1032 1009 0.400000 +1032 1171 0.400000 +1032 1282 0.400000 +1032 1346 0.400000 +1032 1361 0.400000 +1032 1372 0.400000 +1032 1373 0.400000 +1032 1455 0.400000 +1032 1462 0.400000 +1032 1482 0.400000 +1032 1555 0.400000 +1032 1582 0.400000 +1032 1724 0.400000 +1032 1817 0.400000 +1032 1903 0.400000 +1032 1933 0.400000 +1032 2053 0.400000 +1032 2082 0.400000 +1032 2133 0.400000 +1032 2147 0.400000 +1032 2206 0.400000 +1032 2407 0.400000 +1032 2461 0.400000 +1032 2531 0.400000 +1032 2620 0.400000 +1032 2640 0.400000 +1032 2716 0.400000 +1032 2777 0.400000 +1032 2808 0.400000 +1032 2848 0.400000 +1032 2906 0.400000 +1032 2938 0.400000 +1032 2942 0.400000 +1032 3015 0.400000 +1032 3198 0.400000 +1033 10 0.400000 +1033 58 0.400000 +1033 113 0.400000 +1033 217 0.400000 +1033 254 0.400000 +1033 449 0.400000 +1033 501 0.400000 +1033 506 0.400000 +1033 592 0.400000 +1033 647 0.400000 +1033 656 0.400000 +1033 721 0.400000 +1033 727 0.400000 +1033 862 0.400000 +1033 874 0.400000 +1033 937 0.400000 +1033 948 0.400000 +1033 978 0.400000 +1033 990 0.400000 +1033 993 0.400000 +1033 1016 0.400000 +1033 1071 0.400000 +1033 1146 0.400000 +1033 1267 0.400000 +1033 1371 0.400000 +1033 1384 0.400000 +1033 1501 0.400000 +1033 1574 0.400000 +1033 1614 0.400000 +1033 1621 0.400000 +1033 1627 0.400000 +1033 1709 0.400000 +1033 1766 0.400000 +1033 1801 0.400000 +1033 1870 0.400000 +1033 1874 0.400000 +1033 1902 0.400000 +1033 1918 0.400000 +1033 1929 0.400000 +1033 1933 0.400000 +1033 2005 0.400000 +1033 2014 0.400000 +1033 2066 0.400000 +1033 2112 0.400000 +1033 2163 0.400000 +1033 2187 0.400000 +1033 2258 0.400000 +1033 2280 0.400000 +1033 2306 0.400000 +1033 2340 0.400000 +1033 2540 0.400000 +1033 2623 0.400000 +1033 2788 0.400000 +1033 2799 0.400000 +1033 2842 0.400000 +1033 2864 0.400000 +1033 3015 0.400000 +1033 3087 0.400000 +1033 3168 0.400000 +1034 9 0.400000 +1034 28 0.400000 +1034 41 0.400000 +1034 110 0.400000 +1034 130 0.400000 +1034 163 0.400000 +1034 208 0.400000 +1034 214 0.400000 +1034 229 0.400000 +1034 247 0.400000 +1034 248 0.400000 +1034 477 0.400000 +1034 595 0.400000 +1034 666 0.400000 +1034 711 0.400000 +1034 744 0.400000 +1034 847 0.400000 +1034 848 0.400000 +1034 859 0.400000 +1034 861 0.400000 +1034 968 0.400000 +1034 988 0.400000 +1034 1028 0.400000 +1034 1122 0.400000 +1034 1142 0.400000 +1034 1246 0.400000 +1034 1479 0.400000 +1034 1483 0.400000 +1034 1559 0.400000 +1034 1578 0.400000 +1034 1610 0.400000 +1034 1623 0.400000 +1034 1648 0.400000 +1034 1743 0.400000 +1034 1760 0.400000 +1034 1814 0.400000 +1034 1846 0.400000 +1034 1907 0.400000 +1034 1931 0.400000 +1034 1981 0.400000 +1034 2110 0.400000 +1034 2344 0.400000 +1034 2356 0.400000 +1034 2369 0.400000 +1034 2456 0.400000 +1034 2521 0.400000 +1034 2652 0.400000 +1034 2746 0.400000 +1034 2943 0.400000 +1034 2948 0.400000 +1034 2976 0.400000 +1034 3057 0.400000 +1034 3159 0.400000 +1035 13 0.400000 +1035 81 0.400000 +1035 247 0.400000 +1035 304 0.400000 +1035 522 0.400000 +1035 526 0.400000 +1035 538 0.400000 +1035 542 0.400000 +1035 580 0.400000 +1035 613 0.400000 +1035 621 0.400000 +1035 677 0.400000 +1035 836 0.400000 +1035 907 0.400000 +1035 910 0.400000 +1035 953 0.400000 +1035 978 0.400000 +1035 989 0.400000 +1035 1119 0.400000 +1035 1140 0.400000 +1035 1175 0.400000 +1035 1184 0.400000 +1035 1216 0.400000 +1035 1218 0.400000 +1035 1227 0.400000 +1035 1230 0.400000 +1035 1332 0.400000 +1035 1371 0.400000 +1035 1396 0.400000 +1035 1404 0.400000 +1035 1567 0.400000 +1035 1584 0.400000 +1035 1639 0.400000 +1035 1656 0.400000 +1035 1690 0.400000 +1035 1838 0.400000 +1035 1839 0.400000 +1035 2134 0.400000 +1035 2356 0.400000 +1035 2408 0.400000 +1035 2419 0.400000 +1035 2479 0.400000 +1035 2507 0.400000 +1035 2589 0.400000 +1035 2630 0.400000 +1035 2644 0.400000 +1035 2790 0.400000 +1035 2919 0.400000 +1035 2920 0.400000 +1035 2935 0.400000 +1035 2988 0.400000 +1035 3083 0.400000 +1035 3088 0.400000 +1035 3109 0.400000 +1035 3162 0.400000 +1035 3180 0.400000 +1036 37 0.400000 +1036 67 0.400000 +1036 266 0.400000 +1036 293 0.400000 +1036 355 0.400000 +1036 362 0.400000 +1036 470 0.400000 +1036 611 0.400000 +1036 723 0.400000 +1036 790 0.400000 +1036 805 0.400000 +1036 814 0.400000 +1036 924 0.400000 +1036 979 0.400000 +1036 984 0.400000 +1036 1024 0.400000 +1036 1048 0.400000 +1036 1060 0.400000 +1036 1090 0.400000 +1036 1130 0.400000 +1036 1141 0.400000 +1036 1144 0.400000 +1036 1200 0.400000 +1036 1202 0.400000 +1036 1384 0.400000 +1036 1391 0.400000 +1036 1432 0.400000 +1036 1481 0.400000 +1036 1486 0.400000 +1036 1489 0.400000 +1036 1655 0.400000 +1036 1658 0.400000 +1036 1718 0.400000 +1036 1735 0.400000 +1036 1815 0.400000 +1036 1984 0.400000 +1036 2044 0.400000 +1036 2056 0.400000 +1036 2074 0.400000 +1036 2123 0.400000 +1036 2132 0.400000 +1036 2186 0.400000 +1036 2235 0.400000 +1036 2254 0.400000 +1036 2257 0.400000 +1036 2282 0.400000 +1036 2298 0.400000 +1036 2326 0.400000 +1036 2354 0.400000 +1036 2355 0.400000 +1036 2371 0.400000 +1036 2374 0.400000 +1036 2394 0.400000 +1036 2403 0.400000 +1036 2470 0.400000 +1036 2580 0.400000 +1036 2615 0.400000 +1036 2695 0.400000 +1036 2721 0.400000 +1036 2730 0.400000 +1036 2770 0.400000 +1036 2860 0.400000 +1036 2912 0.400000 +1036 2922 0.400000 +1036 2946 0.400000 +1036 2995 0.400000 +1036 3048 0.400000 +1036 3111 0.400000 +1036 3122 0.400000 +1036 3129 0.400000 +1036 3149 0.400000 +1036 3158 0.400000 +1036 3187 0.400000 +1037 79 0.400000 +1037 111 0.400000 +1037 163 0.400000 +1037 211 0.400000 +1037 215 0.400000 +1037 303 0.400000 +1037 321 0.400000 +1037 345 0.400000 +1037 361 0.400000 +1037 389 0.400000 +1037 474 0.400000 +1037 523 0.400000 +1037 551 0.400000 +1037 566 0.400000 +1037 614 0.400000 +1037 616 0.400000 +1037 666 0.400000 +1037 700 0.400000 +1037 738 0.400000 +1037 792 0.400000 +1037 806 0.400000 +1037 904 0.400000 +1037 907 0.400000 +1037 952 0.400000 +1037 1019 0.400000 +1037 1042 0.400000 +1037 1045 0.400000 +1037 1131 0.400000 +1037 1209 0.400000 +1037 1210 0.400000 +1037 1236 0.400000 +1037 1238 0.400000 +1037 1250 0.400000 +1037 1254 0.400000 +1037 1262 0.400000 +1037 1299 0.400000 +1037 1328 0.400000 +1037 1486 0.400000 +1037 1540 0.400000 +1037 1566 0.400000 +1037 1583 0.400000 +1037 1594 0.400000 +1037 1645 0.400000 +1037 1702 0.400000 +1037 1708 0.400000 +1037 1765 0.400000 +1037 1822 0.400000 +1037 1927 0.400000 +1037 2050 0.400000 +1037 2064 0.400000 +1037 2065 0.400000 +1037 2079 0.400000 +1037 2093 0.400000 +1037 2130 0.400000 +1037 2137 0.400000 +1037 2233 0.400000 +1037 2297 0.400000 +1037 2358 0.400000 +1037 2370 0.400000 +1037 2408 0.400000 +1037 2434 0.400000 +1037 2689 0.400000 +1037 2698 0.400000 +1037 2721 0.400000 +1037 2729 0.400000 +1037 2774 0.400000 +1037 2808 0.400000 +1037 2819 0.400000 +1037 2823 0.400000 +1037 2864 0.400000 +1037 2880 0.400000 +1037 2926 0.400000 +1037 3000 0.400000 +1037 3112 0.400000 +1038 7 0.400000 +1038 21 0.400000 +1038 130 0.400000 +1038 132 0.400000 +1038 139 0.400000 +1038 260 0.400000 +1038 305 0.400000 +1038 348 0.400000 +1038 442 0.400000 +1038 555 0.400000 +1038 561 0.400000 +1038 704 0.400000 +1038 707 0.400000 +1038 733 0.400000 +1038 749 0.400000 +1038 795 0.400000 +1038 907 0.400000 +1038 1005 0.400000 +1038 1020 0.400000 +1038 1042 0.400000 +1038 1131 0.400000 +1038 1142 0.400000 +1038 1291 0.400000 +1038 1322 0.400000 +1038 1355 0.400000 +1038 1491 0.400000 +1038 1516 0.400000 +1038 1545 0.400000 +1038 1583 0.400000 +1038 1584 0.400000 +1038 1591 0.400000 +1038 1596 0.400000 +1038 1645 0.400000 +1038 1702 0.400000 +1038 1862 0.400000 +1038 1882 0.400000 +1038 1933 0.400000 +1038 2066 0.400000 +1038 2106 0.400000 +1038 2148 0.400000 +1038 2157 0.400000 +1038 2202 0.400000 +1038 2206 0.400000 +1038 2213 0.400000 +1038 2336 0.400000 +1038 2566 0.400000 +1038 2636 0.400000 +1038 2677 0.400000 +1038 2908 0.400000 +1038 2915 0.400000 +1038 2995 0.400000 +1038 3060 0.400000 +1038 3097 0.400000 +1038 3099 0.400000 +1038 3125 0.400000 +1038 3194 0.400000 +1039 19 0.400000 +1039 69 0.400000 +1039 182 0.400000 +1039 256 0.400000 +1039 263 0.400000 +1039 273 0.400000 +1039 323 0.400000 +1039 353 0.400000 +1039 501 0.400000 +1039 598 0.400000 +1039 678 0.400000 +1039 721 0.400000 +1039 723 0.400000 +1039 740 0.400000 +1039 746 0.400000 +1039 801 0.400000 +1039 802 0.400000 +1039 804 0.400000 +1039 849 0.400000 +1039 853 0.400000 +1039 867 0.400000 +1039 882 0.400000 +1039 899 0.400000 +1039 900 0.400000 +1039 954 0.400000 +1039 957 0.400000 +1039 1016 0.400000 +1039 1105 0.400000 +1039 1150 0.400000 +1039 1314 0.400000 +1039 1374 0.400000 +1039 1444 0.400000 +1039 1488 0.400000 +1039 1552 0.400000 +1039 1618 0.400000 +1039 1656 0.400000 +1039 1682 0.400000 +1039 1780 0.400000 +1039 1852 0.400000 +1039 1913 0.400000 +1039 1936 0.400000 +1039 1976 0.400000 +1039 2001 0.400000 +1039 2007 0.400000 +1039 2043 0.400000 +1039 2099 0.400000 +1039 2178 0.400000 +1039 2194 0.400000 +1039 2232 0.400000 +1039 2303 0.400000 +1039 2520 0.400000 +1039 2531 0.400000 +1039 2683 0.400000 +1039 2708 0.400000 +1039 2709 0.400000 +1039 2828 0.400000 +1039 2899 0.400000 +1039 2989 0.400000 +1039 2998 0.400000 +1039 3012 0.400000 +1039 3058 0.400000 +1039 3151 0.400000 +1040 97 0.400000 +1040 128 0.400000 +1040 162 0.400000 +1040 193 0.400000 +1040 222 0.400000 +1040 241 0.400000 +1040 294 0.400000 +1040 300 0.400000 +1040 400 0.400000 +1040 480 0.400000 +1040 558 0.400000 +1040 564 0.400000 +1040 574 0.400000 +1040 653 0.400000 +1040 654 0.400000 +1040 859 0.400000 +1040 973 0.400000 +1040 1000 0.400000 +1040 1146 0.400000 +1040 1203 0.400000 +1040 1284 0.400000 +1040 1298 0.400000 +1040 1312 0.400000 +1040 1341 0.400000 +1040 1348 0.400000 +1040 1447 0.400000 +1040 1450 0.400000 +1040 1511 0.400000 +1040 1707 0.400000 +1040 1720 0.400000 +1040 1722 0.400000 +1040 1794 0.400000 +1040 1817 0.400000 +1040 1869 0.400000 +1040 1939 0.400000 +1040 2099 0.400000 +1040 2293 0.400000 +1040 2347 0.400000 +1040 2349 0.400000 +1040 2354 0.400000 +1040 2441 0.400000 +1040 2456 0.400000 +1040 2473 0.400000 +1040 2702 0.400000 +1040 2713 0.400000 +1040 2730 0.400000 +1040 2735 0.400000 +1040 2779 0.400000 +1040 2791 0.400000 +1040 2812 0.400000 +1040 2846 0.400000 +1040 3105 0.400000 +1040 3150 0.400000 +1041 23 0.400000 +1041 31 0.400000 +1041 79 0.400000 +1041 354 0.400000 +1041 369 0.400000 +1041 444 0.400000 +1041 487 0.400000 +1041 520 0.400000 +1041 528 0.400000 +1041 559 0.400000 +1041 607 0.400000 +1041 652 0.400000 +1041 655 0.400000 +1041 658 0.400000 +1041 781 0.400000 +1041 880 0.400000 +1041 898 0.400000 +1041 909 0.400000 +1041 980 0.400000 +1041 983 0.400000 +1041 1018 0.400000 +1041 1053 0.400000 +1041 1141 0.400000 +1041 1159 0.400000 +1041 1168 0.400000 +1041 1211 0.400000 +1041 1221 0.400000 +1041 1224 0.400000 +1041 1295 0.400000 +1041 1300 0.400000 +1041 1320 0.400000 +1041 1323 0.400000 +1041 1434 0.400000 +1041 1455 0.400000 +1041 1488 0.400000 +1041 1494 0.400000 +1041 1627 0.400000 +1041 1674 0.400000 +1041 1701 0.400000 +1041 1709 0.400000 +1041 1774 0.400000 +1041 1849 0.400000 +1041 2018 0.400000 +1041 2055 0.400000 +1041 2069 0.400000 +1041 2141 0.400000 +1041 2150 0.400000 +1041 2240 0.400000 +1041 2295 0.400000 +1041 2330 0.400000 +1041 2332 0.400000 +1041 2361 0.400000 +1041 2449 0.400000 +1041 2473 0.400000 +1041 2474 0.400000 +1041 2532 0.400000 +1041 2675 0.400000 +1041 2689 0.400000 +1041 2854 0.400000 +1041 2860 0.400000 +1041 2914 0.400000 +1041 2932 0.400000 +1041 2940 0.400000 +1041 2951 0.400000 +1041 3016 0.400000 +1041 3070 0.400000 +1041 3071 0.400000 +1041 3079 0.400000 +1041 3106 0.400000 +1041 3114 0.400000 +1041 3133 0.400000 +1041 3169 0.400000 +1042 135 0.400000 +1042 182 0.400000 +1042 240 0.400000 +1042 256 0.400000 +1042 266 0.400000 +1042 403 0.400000 +1042 404 0.400000 +1042 436 0.400000 +1042 494 0.400000 +1042 507 0.400000 +1042 823 0.400000 +1042 884 0.400000 +1042 963 0.400000 +1042 998 0.400000 +1042 1040 0.400000 +1042 1074 0.400000 +1042 1097 0.400000 +1042 1149 0.400000 +1042 1153 0.400000 +1042 1221 0.400000 +1042 1250 0.400000 +1042 1341 0.400000 +1042 1368 0.400000 +1042 1393 0.400000 +1042 1396 0.400000 +1042 1401 0.400000 +1042 1426 0.400000 +1042 1430 0.400000 +1042 1493 0.400000 +1042 1511 0.400000 +1042 1583 0.400000 +1042 1685 0.400000 +1042 1862 0.400000 +1042 1885 0.400000 +1042 1977 0.400000 +1042 2079 0.400000 +1042 2091 0.400000 +1042 2324 0.400000 +1042 2330 0.400000 +1042 2331 0.400000 +1042 2366 0.400000 +1042 2487 0.400000 +1042 2568 0.400000 +1042 2760 0.400000 +1042 2825 0.400000 +1042 2889 0.400000 +1042 2929 0.400000 +1042 2977 0.400000 +1042 2986 0.400000 +1042 3005 0.400000 +1042 3020 0.400000 +1042 3066 0.400000 +1042 3128 0.400000 +1042 3143 0.400000 +1042 3181 0.400000 +1043 24 0.400000 +1043 77 0.400000 +1043 80 0.400000 +1043 97 0.400000 +1043 278 0.400000 +1043 299 0.400000 +1043 310 0.400000 +1043 366 0.400000 +1043 423 0.400000 +1043 436 0.400000 +1043 445 0.400000 +1043 474 0.400000 +1043 531 0.400000 +1043 550 0.400000 +1043 686 0.400000 +1043 783 0.400000 +1043 873 0.400000 +1043 897 0.400000 +1043 935 0.400000 +1043 1120 0.400000 +1043 1186 0.400000 +1043 1347 0.400000 +1043 1362 0.400000 +1043 1505 0.400000 +1043 1599 0.400000 +1043 1668 0.400000 +1043 1712 0.400000 +1043 1761 0.400000 +1043 1794 0.400000 +1043 1795 0.400000 +1043 1940 0.400000 +1043 1977 0.400000 +1043 2038 0.400000 +1043 2111 0.400000 +1043 2142 0.400000 +1043 2160 0.400000 +1043 2422 0.400000 +1043 2527 0.400000 +1043 2543 0.400000 +1043 2575 0.400000 +1043 2583 0.400000 +1043 2630 0.400000 +1043 2647 0.400000 +1043 2707 0.400000 +1043 2788 0.400000 +1043 2857 0.400000 +1043 2861 0.400000 +1043 2869 0.400000 +1043 3187 0.400000 +1044 91 0.400000 +1044 93 0.400000 +1044 94 0.400000 +1044 236 0.400000 +1044 251 0.400000 +1044 308 0.400000 +1044 412 0.400000 +1044 446 0.400000 +1044 515 0.400000 +1044 520 0.400000 +1044 528 0.400000 +1044 596 0.400000 +1044 634 0.400000 +1044 648 0.400000 +1044 729 0.400000 +1044 752 0.400000 +1044 782 0.400000 +1044 821 0.400000 +1044 858 0.400000 +1044 909 0.400000 +1044 930 0.400000 +1044 1027 0.400000 +1044 1029 0.400000 +1044 1066 0.400000 +1044 1115 0.400000 +1044 1144 0.400000 +1044 1168 0.400000 +1044 1172 0.400000 +1044 1194 0.400000 +1044 1439 0.400000 +1044 1497 0.400000 +1044 1539 0.400000 +1044 1666 0.400000 +1044 1746 0.400000 +1044 1857 0.400000 +1044 1879 0.400000 +1044 1911 0.400000 +1044 1960 0.400000 +1044 2028 0.400000 +1044 2191 0.400000 +1044 2218 0.400000 +1044 2219 0.400000 +1044 2229 0.400000 +1044 2258 0.400000 +1044 2279 0.400000 +1044 2331 0.400000 +1044 2392 0.400000 +1044 2483 0.400000 +1044 2541 0.400000 +1044 2636 0.400000 +1044 2661 0.400000 +1044 2667 0.400000 +1044 2703 0.400000 +1044 2756 0.400000 +1044 2781 0.400000 +1044 2785 0.400000 +1044 2795 0.400000 +1044 2840 0.400000 +1044 2862 0.400000 +1044 2928 0.400000 +1044 2947 0.400000 +1044 3090 0.400000 +1044 3100 0.400000 +1044 3161 0.400000 +1044 3189 0.400000 +1045 35 0.400000 +1045 55 0.400000 +1045 100 0.400000 +1045 126 0.400000 +1045 140 0.400000 +1045 194 0.400000 +1045 197 0.400000 +1045 246 0.400000 +1045 340 0.400000 +1045 387 0.400000 +1045 456 0.400000 +1045 496 0.400000 +1045 511 0.400000 +1045 530 0.400000 +1045 598 0.400000 +1045 626 0.400000 +1045 645 0.400000 +1045 651 0.400000 +1045 679 0.400000 +1045 778 0.400000 +1045 787 0.400000 +1045 793 0.400000 +1045 818 0.400000 +1045 859 0.400000 +1045 872 0.400000 +1045 960 0.400000 +1045 1024 0.400000 +1045 1058 0.400000 +1045 1141 0.400000 +1045 1164 0.400000 +1045 1173 0.400000 +1045 1226 0.400000 +1045 1298 0.400000 +1045 1328 0.400000 +1045 1445 0.400000 +1045 1553 0.400000 +1045 1837 0.400000 +1045 1862 0.400000 +1045 1878 0.400000 +1045 1895 0.400000 +1045 2034 0.400000 +1045 2096 0.400000 +1045 2116 0.400000 +1045 2150 0.400000 +1045 2191 0.400000 +1045 2212 0.400000 +1045 2231 0.400000 +1045 2233 0.400000 +1045 2293 0.400000 +1045 2315 0.400000 +1045 2393 0.400000 +1045 2423 0.400000 +1045 2531 0.400000 +1045 2547 0.400000 +1045 2554 0.400000 +1045 2566 0.400000 +1045 2606 0.400000 +1045 2642 0.400000 +1045 2695 0.400000 +1045 2747 0.400000 +1045 2851 0.400000 +1045 2913 0.400000 +1045 2972 0.400000 +1045 3039 0.400000 +1045 3112 0.400000 +1046 101 0.400000 +1046 182 0.400000 +1046 206 0.400000 +1046 211 0.400000 +1046 333 0.400000 +1046 367 0.400000 +1046 369 0.400000 +1046 379 0.400000 +1046 383 0.400000 +1046 576 0.400000 +1046 649 0.400000 +1046 686 0.400000 +1046 701 0.400000 +1046 746 0.400000 +1046 789 0.400000 +1046 868 0.400000 +1046 918 0.400000 +1046 924 0.400000 +1046 1035 0.400000 +1046 1118 0.400000 +1046 1135 0.400000 +1046 1137 0.400000 +1046 1210 0.400000 +1046 1245 0.400000 +1046 1307 0.400000 +1046 1423 0.400000 +1046 1439 0.400000 +1046 1457 0.400000 +1046 1499 0.400000 +1046 1532 0.400000 +1046 1553 0.400000 +1046 1608 0.400000 +1046 1698 0.400000 +1046 1815 0.400000 +1046 1857 0.400000 +1046 1888 0.400000 +1046 1903 0.400000 +1046 1948 0.400000 +1046 2028 0.400000 +1046 2246 0.400000 +1046 2256 0.400000 +1046 2259 0.400000 +1046 2346 0.400000 +1046 2353 0.400000 +1046 2424 0.400000 +1046 2432 0.400000 +1046 2440 0.400000 +1046 2469 0.400000 +1046 2535 0.400000 +1046 2558 0.400000 +1046 2566 0.400000 +1046 2621 0.400000 +1046 2622 0.400000 +1046 2716 0.400000 +1046 2740 0.400000 +1046 2741 0.400000 +1046 2773 0.400000 +1046 2903 0.400000 +1046 2921 0.400000 +1046 2931 0.400000 +1046 2970 0.400000 +1046 3082 0.400000 +1046 3090 0.400000 +1046 3102 0.400000 +1046 3172 0.400000 +1046 3185 0.400000 +1047 102 0.400000 +1047 302 0.400000 +1047 303 0.400000 +1047 339 0.400000 +1047 399 0.400000 +1047 698 0.400000 +1047 785 0.400000 +1047 787 0.400000 +1047 818 0.400000 +1047 856 0.400000 +1047 894 0.400000 +1047 896 0.400000 +1047 921 0.400000 +1047 960 0.400000 +1047 968 0.400000 +1047 980 0.400000 +1047 1113 0.400000 +1047 1118 0.400000 +1047 1140 0.400000 +1047 1171 0.400000 +1047 1381 0.400000 +1047 1406 0.400000 +1047 1412 0.400000 +1047 1435 0.400000 +1047 1638 0.400000 +1047 1646 0.400000 +1047 1648 0.400000 +1047 1696 0.400000 +1047 1720 0.400000 +1047 1783 0.400000 +1047 1803 0.400000 +1047 1831 0.400000 +1047 1841 0.400000 +1047 1850 0.400000 +1047 1895 0.400000 +1047 1913 0.400000 +1047 1962 0.400000 +1047 1980 0.400000 +1047 1986 0.400000 +1047 2009 0.400000 +1047 2014 0.400000 +1047 2038 0.400000 +1047 2046 0.400000 +1047 2058 0.400000 +1047 2068 0.400000 +1047 2142 0.400000 +1047 2186 0.400000 +1047 2255 0.400000 +1047 2306 0.400000 +1047 2313 0.400000 +1047 2341 0.400000 +1047 2376 0.400000 +1047 2458 0.400000 +1047 2514 0.400000 +1047 2560 0.400000 +1047 2638 0.400000 +1047 2739 0.400000 +1047 2808 0.400000 +1047 2879 0.400000 +1047 2941 0.400000 +1047 2957 0.400000 +1047 3002 0.400000 +1047 3008 0.400000 +1047 3032 0.400000 +1047 3090 0.400000 +1047 3141 0.400000 +1047 3144 0.400000 +1047 3154 0.400000 +1047 3198 0.400000 +1048 27 0.400000 +1048 39 0.400000 +1048 59 0.400000 +1048 103 0.400000 +1048 110 0.400000 +1048 124 0.400000 +1048 197 0.400000 +1048 231 0.400000 +1048 244 0.400000 +1048 245 0.400000 +1048 309 0.400000 +1048 326 0.400000 +1048 356 0.400000 +1048 424 0.400000 +1048 456 0.400000 +1048 457 0.400000 +1048 483 0.400000 +1048 532 0.400000 +1048 579 0.400000 +1048 680 0.400000 +1048 742 0.400000 +1048 774 0.400000 +1048 837 0.400000 +1048 1015 0.400000 +1048 1049 0.400000 +1048 1082 0.400000 +1048 1087 0.400000 +1048 1142 0.400000 +1048 1207 0.400000 +1048 1350 0.400000 +1048 1462 0.400000 +1048 1498 0.400000 +1048 1591 0.400000 +1048 1669 0.400000 +1048 1714 0.400000 +1048 1724 0.400000 +1048 1865 0.400000 +1048 1914 0.400000 +1048 2043 0.400000 +1048 2133 0.400000 +1048 2146 0.400000 +1048 2147 0.400000 +1048 2150 0.400000 +1048 2474 0.400000 +1048 2476 0.400000 +1048 2520 0.400000 +1048 2779 0.400000 +1048 2968 0.400000 +1048 2988 0.400000 +1048 3013 0.400000 +1048 3025 0.400000 +1048 3042 0.400000 +1048 3078 0.400000 +1048 3189 0.400000 +1049 46 0.400000 +1049 82 0.400000 +1049 93 0.400000 +1049 167 0.400000 +1049 170 0.400000 +1049 227 0.400000 +1049 286 0.400000 +1049 303 0.400000 +1049 378 0.400000 +1049 393 0.400000 +1049 422 0.400000 +1049 464 0.400000 +1049 494 0.400000 +1049 604 0.400000 +1049 734 0.400000 +1049 756 0.400000 +1049 760 0.400000 +1049 793 0.400000 +1049 820 0.400000 +1049 843 0.400000 +1049 863 0.400000 +1049 871 0.400000 +1049 879 0.400000 +1049 928 0.400000 +1049 947 0.400000 +1049 949 0.400000 +1049 968 0.400000 +1049 1083 0.400000 +1049 1183 0.400000 +1049 1194 0.400000 +1049 1259 0.400000 +1049 1327 0.400000 +1049 1406 0.400000 +1049 1575 0.400000 +1049 1593 0.400000 +1049 1624 0.400000 +1049 1691 0.400000 +1049 1732 0.400000 +1049 1859 0.400000 +1049 1932 0.400000 +1049 2006 0.400000 +1049 2017 0.400000 +1049 2040 0.400000 +1049 2053 0.400000 +1049 2055 0.400000 +1049 2098 0.400000 +1049 2150 0.400000 +1049 2151 0.400000 +1049 2446 0.400000 +1049 2489 0.400000 +1049 2492 0.400000 +1049 2514 0.400000 +1049 2562 0.400000 +1049 2605 0.400000 +1049 2613 0.400000 +1049 2664 0.400000 +1049 2719 0.400000 +1049 2885 0.400000 +1049 2896 0.400000 +1049 2906 0.400000 +1049 2921 0.400000 +1049 3043 0.400000 +1049 3082 0.400000 +1049 3091 0.400000 +1049 3185 0.400000 +1049 3192 0.400000 +1050 7 0.400000 +1050 106 0.400000 +1050 305 0.400000 +1050 453 0.400000 +1050 461 0.400000 +1050 487 0.400000 +1050 491 0.400000 +1050 532 0.400000 +1050 609 0.400000 +1050 615 0.400000 +1050 668 0.400000 +1050 806 0.400000 +1050 932 0.400000 +1050 977 0.400000 +1050 990 0.400000 +1050 1126 0.400000 +1050 1188 0.400000 +1050 1197 0.400000 +1050 1227 0.400000 +1050 1348 0.400000 +1050 1503 0.400000 +1050 1590 0.400000 +1050 1620 0.400000 +1050 1675 0.400000 +1050 1692 0.400000 +1050 1760 0.400000 +1050 1771 0.400000 +1050 1783 0.400000 +1050 1797 0.400000 +1050 1868 0.400000 +1050 1903 0.400000 +1050 1919 0.400000 +1050 1937 0.400000 +1050 1966 0.400000 +1050 2089 0.400000 +1050 2166 0.400000 +1050 2226 0.400000 +1050 2422 0.400000 +1050 2431 0.400000 +1050 2453 0.400000 +1050 2715 0.400000 +1050 2728 0.400000 +1050 2875 0.400000 +1050 2880 0.400000 +1050 2886 0.400000 +1050 2985 0.400000 +1050 3000 0.400000 +1050 3005 0.400000 +1050 3036 0.400000 +1050 3037 0.400000 +1050 3050 0.400000 +1050 3053 0.400000 +1050 3128 0.400000 +1051 55 0.400000 +1051 127 0.400000 +1051 185 0.400000 +1051 365 0.400000 +1051 529 0.400000 +1051 553 0.400000 +1051 688 0.400000 +1051 739 0.400000 +1051 742 0.400000 +1051 813 0.400000 +1051 816 0.400000 +1051 942 0.400000 +1051 1131 0.400000 +1051 1146 0.400000 +1051 1148 0.400000 +1051 1224 0.400000 +1051 1273 0.400000 +1051 1332 0.400000 +1051 1357 0.400000 +1051 1380 0.400000 +1051 1527 0.400000 +1051 1555 0.400000 +1051 1581 0.400000 +1051 1583 0.400000 +1051 1653 0.400000 +1051 1811 0.400000 +1051 1839 0.400000 +1051 1862 0.400000 +1051 1915 0.400000 +1051 1928 0.400000 +1051 1983 0.400000 +1051 2000 0.400000 +1051 2073 0.400000 +1051 2143 0.400000 +1051 2216 0.400000 +1051 2395 0.400000 +1051 2467 0.400000 +1051 2526 0.400000 +1051 2678 0.400000 +1051 2736 0.400000 +1051 2760 0.400000 +1051 2773 0.400000 +1051 2776 0.400000 +1051 2803 0.400000 +1051 2861 0.400000 +1051 2899 0.400000 +1051 2970 0.400000 +1051 3017 0.400000 +1051 3030 0.400000 +1051 3139 0.400000 +1051 3157 0.400000 +1051 3165 0.400000 +1052 39 0.400000 +1052 48 0.400000 +1052 65 0.400000 +1052 69 0.400000 +1052 71 0.400000 +1052 91 0.400000 +1052 94 0.400000 +1052 145 0.400000 +1052 235 0.400000 +1052 286 0.400000 +1052 291 0.400000 +1052 362 0.400000 +1052 420 0.400000 +1052 518 0.400000 +1052 802 0.400000 +1052 829 0.400000 +1052 881 0.400000 +1052 924 0.400000 +1052 950 0.400000 +1052 991 0.400000 +1052 1163 0.400000 +1052 1250 0.400000 +1052 1336 0.400000 +1052 1344 0.400000 +1052 1388 0.400000 +1052 1390 0.400000 +1052 1395 0.400000 +1052 1403 0.400000 +1052 1444 0.400000 +1052 1458 0.400000 +1052 1493 0.400000 +1052 1514 0.400000 +1052 1578 0.400000 +1052 1624 0.400000 +1052 1625 0.400000 +1052 1712 0.400000 +1052 1738 0.400000 +1052 1839 0.400000 +1052 1856 0.400000 +1052 1911 0.400000 +1052 1916 0.400000 +1052 1928 0.400000 +1052 1989 0.400000 +1052 2060 0.400000 +1052 2146 0.400000 +1052 2160 0.400000 +1052 2171 0.400000 +1052 2193 0.400000 +1052 2235 0.400000 +1052 2248 0.400000 +1052 2299 0.400000 +1052 2309 0.400000 +1052 2314 0.400000 +1052 2365 0.400000 +1052 2376 0.400000 +1052 2402 0.400000 +1052 2583 0.400000 +1052 2629 0.400000 +1052 2694 0.400000 +1052 2771 0.400000 +1052 2823 0.400000 +1052 2849 0.400000 +1052 2862 0.400000 +1052 2866 0.400000 +1052 2914 0.400000 +1052 2922 0.400000 +1052 2952 0.400000 +1052 3020 0.400000 +1052 3061 0.400000 +1053 19 0.400000 +1053 59 0.400000 +1053 99 0.400000 +1053 103 0.400000 +1053 147 0.400000 +1053 167 0.400000 +1053 195 0.400000 +1053 211 0.400000 +1053 323 0.400000 +1053 390 0.400000 +1053 403 0.400000 +1053 411 0.400000 +1053 415 0.400000 +1053 421 0.400000 +1053 422 0.400000 +1053 494 0.400000 +1053 559 0.400000 +1053 611 0.400000 +1053 631 0.400000 +1053 724 0.400000 +1053 736 0.400000 +1053 776 0.400000 +1053 809 0.400000 +1053 817 0.400000 +1053 859 0.400000 +1053 898 0.400000 +1053 931 0.400000 +1053 946 0.400000 +1053 959 0.400000 +1053 976 0.400000 +1053 1096 0.400000 +1053 1113 0.400000 +1053 1119 0.400000 +1053 1150 0.400000 +1053 1181 0.400000 +1053 1186 0.400000 +1053 1187 0.400000 +1053 1215 0.400000 +1053 1259 0.400000 +1053 1334 0.400000 +1053 1459 0.400000 +1053 1524 0.400000 +1053 1633 0.400000 +1053 1672 0.400000 +1053 1910 0.400000 +1053 1911 0.400000 +1053 1949 0.400000 +1053 1975 0.400000 +1053 2118 0.400000 +1053 2130 0.400000 +1053 2253 0.400000 +1053 2264 0.400000 +1053 2292 0.400000 +1053 2309 0.400000 +1053 2323 0.400000 +1053 2334 0.400000 +1053 2476 0.400000 +1053 2495 0.400000 +1053 2502 0.400000 +1053 2546 0.400000 +1053 2581 0.400000 +1053 2658 0.400000 +1053 2719 0.400000 +1053 2874 0.400000 +1053 2952 0.400000 +1053 2984 0.400000 +1053 3005 0.400000 +1053 3022 0.400000 +1053 3053 0.400000 +1053 3058 0.400000 +1053 3142 0.400000 +1053 3188 0.400000 +1054 18 0.400000 +1054 63 0.400000 +1054 214 0.400000 +1054 240 0.400000 +1054 265 0.400000 +1054 563 0.400000 +1054 581 0.400000 +1054 614 0.400000 +1054 636 0.400000 +1054 647 0.400000 +1054 654 0.400000 +1054 670 0.400000 +1054 687 0.400000 +1054 745 0.400000 +1054 823 0.400000 +1054 905 0.400000 +1054 1113 0.400000 +1054 1180 0.400000 +1054 1197 0.400000 +1054 1227 0.400000 +1054 1278 0.400000 +1054 1332 0.400000 +1054 1352 0.400000 +1054 1424 0.400000 +1054 1431 0.400000 +1054 1436 0.400000 +1054 1453 0.400000 +1054 1467 0.400000 +1054 1593 0.400000 +1054 1639 0.400000 +1054 1645 0.400000 +1054 1718 0.400000 +1054 1733 0.400000 +1054 1751 0.400000 +1054 1792 0.400000 +1054 1903 0.400000 +1054 1962 0.400000 +1054 2058 0.400000 +1054 2110 0.400000 +1054 2117 0.400000 +1054 2131 0.400000 +1054 2212 0.400000 +1054 2307 0.400000 +1054 2520 0.400000 +1054 2558 0.400000 +1054 2572 0.400000 +1054 2681 0.400000 +1054 2844 0.400000 +1054 2944 0.400000 +1054 2973 0.400000 +1054 3054 0.400000 +1054 3183 0.400000 +1054 3196 0.400000 +1055 75 0.400000 +1055 154 0.400000 +1055 160 0.400000 +1055 191 0.400000 +1055 250 0.400000 +1055 273 0.400000 +1055 304 0.400000 +1055 310 0.400000 +1055 386 0.400000 +1055 400 0.400000 +1055 403 0.400000 +1055 412 0.400000 +1055 527 0.400000 +1055 548 0.400000 +1055 634 0.400000 +1055 645 0.400000 +1055 665 0.400000 +1055 732 0.400000 +1055 755 0.400000 +1055 783 0.400000 +1055 890 0.400000 +1055 923 0.400000 +1055 1013 0.400000 +1055 1146 0.400000 +1055 1152 0.400000 +1055 1155 0.400000 +1055 1200 0.400000 +1055 1205 0.400000 +1055 1242 0.400000 +1055 1260 0.400000 +1055 1341 0.400000 +1055 1342 0.400000 +1055 1445 0.400000 +1055 1532 0.400000 +1055 1598 0.400000 +1055 1619 0.400000 +1055 1623 0.400000 +1055 1648 0.400000 +1055 1763 0.400000 +1055 1826 0.400000 +1055 1876 0.400000 +1055 1903 0.400000 +1055 1959 0.400000 +1055 2058 0.400000 +1055 2063 0.400000 +1055 2102 0.400000 +1055 2121 0.400000 +1055 2137 0.400000 +1055 2144 0.400000 +1055 2168 0.400000 +1055 2253 0.400000 +1055 2255 0.400000 +1055 2279 0.400000 +1055 2326 0.400000 +1055 2423 0.400000 +1055 2559 0.400000 +1055 2563 0.400000 +1055 2586 0.400000 +1055 2608 0.400000 +1055 2668 0.400000 +1055 2670 0.400000 +1055 2681 0.400000 +1055 2686 0.400000 +1055 2717 0.400000 +1055 2736 0.400000 +1055 2769 0.400000 +1055 2790 0.400000 +1055 2994 0.400000 +1055 3176 0.400000 +1056 55 0.400000 +1056 61 0.400000 +1056 143 0.400000 +1056 239 0.400000 +1056 293 0.400000 +1056 454 0.400000 +1056 502 0.400000 +1056 530 0.400000 +1056 560 0.400000 +1056 611 0.400000 +1056 636 0.400000 +1056 663 0.400000 +1056 726 0.400000 +1056 805 0.400000 +1056 842 0.400000 +1056 874 0.400000 +1056 924 0.400000 +1056 986 0.400000 +1056 1008 0.400000 +1056 1044 0.400000 +1056 1144 0.400000 +1056 1198 0.400000 +1056 1204 0.400000 +1056 1211 0.400000 +1056 1230 0.400000 +1056 1279 0.400000 +1056 1460 0.400000 +1056 1537 0.400000 +1056 1672 0.400000 +1056 1720 0.400000 +1056 1743 0.400000 +1056 1800 0.400000 +1056 1841 0.400000 +1056 1887 0.400000 +1056 1902 0.400000 +1056 1926 0.400000 +1056 1996 0.400000 +1056 2137 0.400000 +1056 2147 0.400000 +1056 2190 0.400000 +1056 2305 0.400000 +1056 2310 0.400000 +1056 2344 0.400000 +1056 2352 0.400000 +1056 2376 0.400000 +1056 2434 0.400000 +1056 2488 0.400000 +1056 2544 0.400000 +1056 2555 0.400000 +1056 2613 0.400000 +1056 2733 0.400000 +1056 2739 0.400000 +1056 2820 0.400000 +1056 2840 0.400000 +1056 2856 0.400000 +1056 2869 0.400000 +1056 2874 0.400000 +1056 2878 0.400000 +1056 3080 0.400000 +1056 3123 0.400000 +1057 59 0.400000 +1057 61 0.400000 +1057 174 0.400000 +1057 271 0.400000 +1057 276 0.400000 +1057 381 0.400000 +1057 432 0.400000 +1057 436 0.400000 +1057 575 0.400000 +1057 607 0.400000 +1057 637 0.400000 +1057 643 0.400000 +1057 653 0.400000 +1057 668 0.400000 +1057 679 0.400000 +1057 704 0.400000 +1057 814 0.400000 +1057 823 0.400000 +1057 902 0.400000 +1057 910 0.400000 +1057 1058 0.400000 +1057 1059 0.400000 +1057 1070 0.400000 +1057 1109 0.400000 +1057 1508 0.400000 +1057 1521 0.400000 +1057 1621 0.400000 +1057 1668 0.400000 +1057 1671 0.400000 +1057 1738 0.400000 +1057 1742 0.400000 +1057 1775 0.400000 +1057 1777 0.400000 +1057 1829 0.400000 +1057 1859 0.400000 +1057 1927 0.400000 +1057 1932 0.400000 +1057 1971 0.400000 +1057 1985 0.400000 +1057 2011 0.400000 +1057 2117 0.400000 +1057 2149 0.400000 +1057 2227 0.400000 +1057 2238 0.400000 +1057 2295 0.400000 +1057 2492 0.400000 +1057 2544 0.400000 +1057 2567 0.400000 +1057 2642 0.400000 +1057 2658 0.400000 +1057 2694 0.400000 +1057 2767 0.400000 +1057 2776 0.400000 +1057 2880 0.400000 +1057 2893 0.400000 +1057 2894 0.400000 +1057 2907 0.400000 +1057 2976 0.400000 +1057 3013 0.400000 +1057 3146 0.400000 +1057 3160 0.400000 +1057 3167 0.400000 +1057 3174 0.400000 +1057 3180 0.400000 +1057 3182 0.400000 +1058 26 0.400000 +1058 69 0.400000 +1058 107 0.400000 +1058 113 0.400000 +1058 116 0.400000 +1058 123 0.400000 +1058 135 0.400000 +1058 205 0.400000 +1058 297 0.400000 +1058 311 0.400000 +1058 330 0.400000 +1058 334 0.400000 +1058 497 0.400000 +1058 520 0.400000 +1058 586 0.400000 +1058 677 0.400000 +1058 711 0.400000 +1058 719 0.400000 +1058 721 0.400000 +1058 815 0.400000 +1058 923 0.400000 +1058 927 0.400000 +1058 936 0.400000 +1058 943 0.400000 +1058 969 0.400000 +1058 980 0.400000 +1058 1061 0.400000 +1058 1089 0.400000 +1058 1093 0.400000 +1058 1140 0.400000 +1058 1180 0.400000 +1058 1186 0.400000 +1058 1447 0.400000 +1058 1463 0.400000 +1058 1565 0.400000 +1058 1595 0.400000 +1058 1665 0.400000 +1058 1722 0.400000 +1058 1761 0.400000 +1058 1803 0.400000 +1058 1821 0.400000 +1058 1842 0.400000 +1058 1851 0.400000 +1058 2045 0.400000 +1058 2070 0.400000 +1058 2093 0.400000 +1058 2139 0.400000 +1058 2179 0.400000 +1058 2225 0.400000 +1058 2369 0.400000 +1058 2380 0.400000 +1058 2426 0.400000 +1058 2506 0.400000 +1058 2532 0.400000 +1058 2589 0.400000 +1058 2649 0.400000 +1058 2661 0.400000 +1058 2672 0.400000 +1058 2733 0.400000 +1058 2781 0.400000 +1058 2797 0.400000 +1058 2815 0.400000 +1058 2854 0.400000 +1058 2967 0.400000 +1058 2996 0.400000 +1058 3039 0.400000 +1058 3156 0.400000 +1058 3190 0.400000 +1059 1 0.400000 +1059 46 0.400000 +1059 98 0.400000 +1059 151 0.400000 +1059 203 0.400000 +1059 206 0.400000 +1059 350 0.400000 +1059 427 0.400000 +1059 428 0.400000 +1059 431 0.400000 +1059 441 0.400000 +1059 560 0.400000 +1059 564 0.400000 +1059 581 0.400000 +1059 585 0.400000 +1059 673 0.400000 +1059 740 0.400000 +1059 794 0.400000 +1059 804 0.400000 +1059 1017 0.400000 +1059 1168 0.400000 +1059 1264 0.400000 +1059 1298 0.400000 +1059 1302 0.400000 +1059 1363 0.400000 +1059 1431 0.400000 +1059 1488 0.400000 +1059 1661 0.400000 +1059 1720 0.400000 +1059 1761 0.400000 +1059 1819 0.400000 +1059 1854 0.400000 +1059 1895 0.400000 +1059 2038 0.400000 +1059 2174 0.400000 +1059 2180 0.400000 +1059 2265 0.400000 +1059 2317 0.400000 +1059 2337 0.400000 +1059 2360 0.400000 +1059 2433 0.400000 +1059 2461 0.400000 +1059 2560 0.400000 +1059 2618 0.400000 +1059 2626 0.400000 +1059 2654 0.400000 +1059 2821 0.400000 +1059 2868 0.400000 +1059 2936 0.400000 +1059 2977 0.400000 +1059 2998 0.400000 +1059 3076 0.400000 +1060 65 0.400000 +1060 190 0.400000 +1060 204 0.400000 +1060 244 0.400000 +1060 290 0.400000 +1060 299 0.400000 +1060 371 0.400000 +1060 388 0.400000 +1060 396 0.400000 +1060 635 0.400000 +1060 736 0.400000 +1060 774 0.400000 +1060 798 0.400000 +1060 869 0.400000 +1060 895 0.400000 +1060 899 0.400000 +1060 917 0.400000 +1060 936 0.400000 +1060 953 0.400000 +1060 1009 0.400000 +1060 1020 0.400000 +1060 1026 0.400000 +1060 1040 0.400000 +1060 1129 0.400000 +1060 1186 0.400000 +1060 1204 0.400000 +1060 1299 0.400000 +1060 1306 0.400000 +1060 1353 0.400000 +1060 1423 0.400000 +1060 1538 0.400000 +1060 1546 0.400000 +1060 1547 0.400000 +1060 1586 0.400000 +1060 1623 0.400000 +1060 1638 0.400000 +1060 1647 0.400000 +1060 1671 0.400000 +1060 1776 0.400000 +1060 1809 0.400000 +1060 1853 0.400000 +1060 1865 0.400000 +1060 1945 0.400000 +1060 1949 0.400000 +1060 2004 0.400000 +1060 2027 0.400000 +1060 2100 0.400000 +1060 2120 0.400000 +1060 2140 0.400000 +1060 2159 0.400000 +1060 2274 0.400000 +1060 2343 0.400000 +1060 2365 0.400000 +1060 2563 0.400000 +1060 2578 0.400000 +1060 2649 0.400000 +1060 2651 0.400000 +1060 2708 0.400000 +1060 2729 0.400000 +1060 2766 0.400000 +1060 2813 0.400000 +1060 2870 0.400000 +1060 2882 0.400000 +1060 2892 0.400000 +1060 2940 0.400000 +1060 3035 0.400000 +1060 3070 0.400000 +1060 3073 0.400000 +1060 3168 0.400000 +1060 3174 0.400000 +1061 33 0.400000 +1061 64 0.400000 +1061 86 0.400000 +1061 102 0.400000 +1061 133 0.400000 +1061 143 0.400000 +1061 161 0.400000 +1061 193 0.400000 +1061 218 0.400000 +1061 250 0.400000 +1061 321 0.400000 +1061 341 0.400000 +1061 396 0.400000 +1061 401 0.400000 +1061 418 0.400000 +1061 431 0.400000 +1061 510 0.400000 +1061 532 0.400000 +1061 688 0.400000 +1061 691 0.400000 +1061 721 0.400000 +1061 821 0.400000 +1061 852 0.400000 +1061 854 0.400000 +1061 901 0.400000 +1061 1093 0.400000 +1061 1183 0.400000 +1061 1192 0.400000 +1061 1275 0.400000 +1061 1288 0.400000 +1061 1338 0.400000 +1061 1353 0.400000 +1061 1387 0.400000 +1061 1421 0.400000 +1061 1436 0.400000 +1061 1462 0.400000 +1061 1521 0.400000 +1061 1557 0.400000 +1061 1562 0.400000 +1061 1619 0.400000 +1061 1660 0.400000 +1061 1689 0.400000 +1061 1803 0.400000 +1061 1804 0.400000 +1061 1823 0.400000 +1061 1851 0.400000 +1061 1902 0.400000 +1061 1909 0.400000 +1061 2046 0.400000 +1061 2080 0.400000 +1061 2206 0.400000 +1061 2236 0.400000 +1061 2302 0.400000 +1061 2312 0.400000 +1061 2383 0.400000 +1061 2426 0.400000 +1061 2439 0.400000 +1061 2678 0.400000 +1061 2697 0.400000 +1061 2757 0.400000 +1061 2809 0.400000 +1061 2828 0.400000 +1061 2852 0.400000 +1061 2867 0.400000 +1061 2888 0.400000 +1061 2907 0.400000 +1061 2908 0.400000 +1061 3010 0.400000 +1061 3023 0.400000 +1061 3029 0.400000 +1061 3039 0.400000 +1061 3058 0.400000 +1061 3066 0.400000 +1061 3096 0.400000 +1061 3122 0.400000 +1062 80 0.400000 +1062 148 0.400000 +1062 163 0.400000 +1062 164 0.400000 +1062 211 0.400000 +1062 217 0.400000 +1062 229 0.400000 +1062 291 0.400000 +1062 390 0.400000 +1062 572 0.400000 +1062 595 0.400000 +1062 660 0.400000 +1062 690 0.400000 +1062 693 0.400000 +1062 699 0.400000 +1062 732 0.400000 +1062 747 0.400000 +1062 751 0.400000 +1062 756 0.400000 +1062 799 0.400000 +1062 806 0.400000 +1062 935 0.400000 +1062 974 0.400000 +1062 1102 0.400000 +1062 1169 0.400000 +1062 1179 0.400000 +1062 1203 0.400000 +1062 1226 0.400000 +1062 1260 0.400000 +1062 1286 0.400000 +1062 1289 0.400000 +1062 1348 0.400000 +1062 1378 0.400000 +1062 1425 0.400000 +1062 1518 0.400000 +1062 1542 0.400000 +1062 1556 0.400000 +1062 1598 0.400000 +1062 1648 0.400000 +1062 1701 0.400000 +1062 1709 0.400000 +1062 1751 0.400000 +1062 1767 0.400000 +1062 1791 0.400000 +1062 1794 0.400000 +1062 1807 0.400000 +1062 1843 0.400000 +1062 1877 0.400000 +1062 1921 0.400000 +1062 1972 0.400000 +1062 2130 0.400000 +1062 2211 0.400000 +1062 2245 0.400000 +1062 2318 0.400000 +1062 2392 0.400000 +1062 2481 0.400000 +1062 2508 0.400000 +1062 2530 0.400000 +1062 2719 0.400000 +1062 2772 0.400000 +1062 2785 0.400000 +1062 2888 0.400000 +1062 2905 0.400000 +1062 3002 0.400000 +1062 3032 0.400000 +1062 3074 0.400000 +1062 3138 0.400000 +1063 31 0.400000 +1063 42 0.400000 +1063 56 0.400000 +1063 66 0.400000 +1063 69 0.400000 +1063 86 0.400000 +1063 92 0.400000 +1063 130 0.400000 +1063 133 0.400000 +1063 135 0.400000 +1063 140 0.400000 +1063 152 0.400000 +1063 190 0.400000 +1063 193 0.400000 +1063 296 0.400000 +1063 571 0.400000 +1063 596 0.400000 +1063 616 0.400000 +1063 675 0.400000 +1063 706 0.400000 +1063 735 0.400000 +1063 763 0.400000 +1063 798 0.400000 +1063 916 0.400000 +1063 962 0.400000 +1063 1053 0.400000 +1063 1306 0.400000 +1063 1351 0.400000 +1063 1379 0.400000 +1063 1398 0.400000 +1063 1420 0.400000 +1063 1542 0.400000 +1063 1551 0.400000 +1063 1552 0.400000 +1063 1582 0.400000 +1063 1760 0.400000 +1063 1797 0.400000 +1063 1805 0.400000 +1063 1888 0.400000 +1063 1965 0.400000 +1063 2100 0.400000 +1063 2122 0.400000 +1063 2132 0.400000 +1063 2189 0.400000 +1063 2209 0.400000 +1063 2245 0.400000 +1063 2249 0.400000 +1063 2283 0.400000 +1063 2295 0.400000 +1063 2361 0.400000 +1063 2386 0.400000 +1063 2425 0.400000 +1063 2447 0.400000 +1063 2507 0.400000 +1063 2520 0.400000 +1063 2709 0.400000 +1063 2825 0.400000 +1063 2848 0.400000 +1063 2867 0.400000 +1063 2874 0.400000 +1063 2942 0.400000 +1063 2950 0.400000 +1063 2967 0.400000 +1063 2996 0.400000 +1063 3011 0.400000 +1063 3089 0.400000 +1063 3112 0.400000 +1063 3188 0.400000 +1064 30 0.400000 +1064 213 0.400000 +1064 228 0.400000 +1064 292 0.400000 +1064 314 0.400000 +1064 337 0.400000 +1064 373 0.400000 +1064 389 0.400000 +1064 447 0.400000 +1064 649 0.400000 +1064 716 0.400000 +1064 746 0.400000 +1064 758 0.400000 +1064 841 0.400000 +1064 1095 0.400000 +1064 1237 0.400000 +1064 1275 0.400000 +1064 1299 0.400000 +1064 1309 0.400000 +1064 1338 0.400000 +1064 1445 0.400000 +1064 1498 0.400000 +1064 1543 0.400000 +1064 1567 0.400000 +1064 1597 0.400000 +1064 1599 0.400000 +1064 1679 0.400000 +1064 1691 0.400000 +1064 1809 0.400000 +1064 1821 0.400000 +1064 1858 0.400000 +1064 1877 0.400000 +1064 1934 0.400000 +1064 2117 0.400000 +1064 2230 0.400000 +1064 2275 0.400000 +1064 2328 0.400000 +1064 2436 0.400000 +1064 2437 0.400000 +1064 2515 0.400000 +1064 2649 0.400000 +1064 2715 0.400000 +1064 2747 0.400000 +1064 2763 0.400000 +1064 2780 0.400000 +1064 2799 0.400000 +1064 2821 0.400000 +1064 2839 0.400000 +1064 2850 0.400000 +1064 2854 0.400000 +1064 2884 0.400000 +1064 2886 0.400000 +1064 2945 0.400000 +1064 2966 0.400000 +1064 3048 0.400000 +1064 3073 0.400000 +1064 3166 0.400000 +1064 3177 0.400000 +1065 1 0.400000 +1065 8 0.400000 +1065 14 0.400000 +1065 68 0.400000 +1065 157 0.400000 +1065 212 0.400000 +1065 223 0.400000 +1065 296 0.400000 +1065 306 0.400000 +1065 399 0.400000 +1065 453 0.400000 +1065 472 0.400000 +1065 542 0.400000 +1065 628 0.400000 +1065 657 0.400000 +1065 737 0.400000 +1065 744 0.400000 +1065 787 0.400000 +1065 815 0.400000 +1065 930 0.400000 +1065 989 0.400000 +1065 1060 0.400000 +1065 1090 0.400000 +1065 1109 0.400000 +1065 1134 0.400000 +1065 1167 0.400000 +1065 1286 0.400000 +1065 1303 0.400000 +1065 1354 0.400000 +1065 1378 0.400000 +1065 1390 0.400000 +1065 1392 0.400000 +1065 1457 0.400000 +1065 1466 0.400000 +1065 1467 0.400000 +1065 1547 0.400000 +1065 1583 0.400000 +1065 1661 0.400000 +1065 1673 0.400000 +1065 1709 0.400000 +1065 1822 0.400000 +1065 1927 0.400000 +1065 1954 0.400000 +1065 2067 0.400000 +1065 2112 0.400000 +1065 2366 0.400000 +1065 2541 0.400000 +1065 2682 0.400000 +1065 2703 0.400000 +1065 2741 0.400000 +1065 2812 0.400000 +1065 2866 0.400000 +1065 2869 0.400000 +1065 2870 0.400000 +1065 2908 0.400000 +1065 2922 0.400000 +1065 3000 0.400000 +1065 3101 0.400000 +1065 3149 0.400000 +1065 3190 0.400000 +1066 34 0.400000 +1066 57 0.400000 +1066 60 0.400000 +1066 78 0.400000 +1066 96 0.400000 +1066 173 0.400000 +1066 236 0.400000 +1066 276 0.400000 +1066 310 0.400000 +1066 325 0.400000 +1066 399 0.400000 +1066 433 0.400000 +1066 450 0.400000 +1066 552 0.400000 +1066 611 0.400000 +1066 719 0.400000 +1066 782 0.400000 +1066 830 0.400000 +1066 974 0.400000 +1066 976 0.400000 +1066 1045 0.400000 +1066 1047 0.400000 +1066 1048 0.400000 +1066 1146 0.400000 +1066 1159 0.400000 +1066 1234 0.400000 +1066 1253 0.400000 +1066 1294 0.400000 +1066 1349 0.400000 +1066 1417 0.400000 +1066 1459 0.400000 +1066 1490 0.400000 +1066 1522 0.400000 +1066 1555 0.400000 +1066 1686 0.400000 +1066 1781 0.400000 +1066 1800 0.400000 +1066 1818 0.400000 +1066 1878 0.400000 +1066 1889 0.400000 +1066 1905 0.400000 +1066 1923 0.400000 +1066 2017 0.400000 +1066 2044 0.400000 +1066 2151 0.400000 +1066 2276 0.400000 +1066 2382 0.400000 +1066 2386 0.400000 +1066 2484 0.400000 +1066 2528 0.400000 +1066 2613 0.400000 +1066 2637 0.400000 +1066 2648 0.400000 +1066 2854 0.400000 +1066 2879 0.400000 +1066 2889 0.400000 +1066 2909 0.400000 +1066 2953 0.400000 +1066 3043 0.400000 +1066 3044 0.400000 +1066 3089 0.400000 +1066 3119 0.400000 +1066 3138 0.400000 +1066 3144 0.400000 +1066 3148 0.400000 +1067 410 0.400000 +1067 419 0.400000 +1067 464 0.400000 +1067 481 0.400000 +1067 543 0.400000 +1067 548 0.400000 +1067 655 0.400000 +1067 658 0.400000 +1067 821 0.400000 +1067 852 0.400000 +1067 908 0.400000 +1067 964 0.400000 +1067 1057 0.400000 +1067 1102 0.400000 +1067 1227 0.400000 +1067 1291 0.400000 +1067 1292 0.400000 +1067 1350 0.400000 +1067 1416 0.400000 +1067 1428 0.400000 +1067 1471 0.400000 +1067 1527 0.400000 +1067 1585 0.400000 +1067 1640 0.400000 +1067 1655 0.400000 +1067 1748 0.400000 +1067 1855 0.400000 +1067 1869 0.400000 +1067 1972 0.400000 +1067 1985 0.400000 +1067 2080 0.400000 +1067 2125 0.400000 +1067 2189 0.400000 +1067 2317 0.400000 +1067 2338 0.400000 +1067 2349 0.400000 +1067 2365 0.400000 +1067 2487 0.400000 +1067 2502 0.400000 +1067 2506 0.400000 +1067 2575 0.400000 +1067 2588 0.400000 +1067 2672 0.400000 +1067 2702 0.400000 +1067 2736 0.400000 +1067 2841 0.400000 +1067 2870 0.400000 +1067 2875 0.400000 +1067 2903 0.400000 +1067 2939 0.400000 +1067 2961 0.400000 +1067 3034 0.400000 +1068 31 0.400000 +1068 54 0.400000 +1068 120 0.400000 +1068 147 0.400000 +1068 359 0.400000 +1068 498 0.400000 +1068 517 0.400000 +1068 523 0.400000 +1068 596 0.400000 +1068 683 0.400000 +1068 693 0.400000 +1068 696 0.400000 +1068 725 0.400000 +1068 738 0.400000 +1068 925 0.400000 +1068 941 0.400000 +1068 951 0.400000 +1068 961 0.400000 +1068 1276 0.400000 +1068 1470 0.400000 +1068 1485 0.400000 +1068 1532 0.400000 +1068 1534 0.400000 +1068 1537 0.400000 +1068 1570 0.400000 +1068 1675 0.400000 +1068 1676 0.400000 +1068 1700 0.400000 +1068 1752 0.400000 +1068 1924 0.400000 +1068 1932 0.400000 +1068 1973 0.400000 +1068 1980 0.400000 +1068 2103 0.400000 +1068 2207 0.400000 +1068 2353 0.400000 +1068 2411 0.400000 +1068 2425 0.400000 +1068 2626 0.400000 +1068 2647 0.400000 +1068 2676 0.400000 +1068 2684 0.400000 +1068 2735 0.400000 +1068 2835 0.400000 +1068 2856 0.400000 +1068 2952 0.400000 +1068 3066 0.400000 +1068 3075 0.400000 +1069 21 0.400000 +1069 27 0.400000 +1069 40 0.400000 +1069 142 0.400000 +1069 355 0.400000 +1069 404 0.400000 +1069 411 0.400000 +1069 417 0.400000 +1069 514 0.400000 +1069 575 0.400000 +1069 689 0.400000 +1069 814 0.400000 +1069 888 0.400000 +1069 1045 0.400000 +1069 1060 0.400000 +1069 1093 0.400000 +1069 1265 0.400000 +1069 1418 0.400000 +1069 1455 0.400000 +1069 1465 0.400000 +1069 1525 0.400000 +1069 1567 0.400000 +1069 1739 0.400000 +1069 1742 0.400000 +1069 1749 0.400000 +1069 1798 0.400000 +1069 1839 0.400000 +1069 1878 0.400000 +1069 1905 0.400000 +1069 1960 0.400000 +1069 1986 0.400000 +1069 2030 0.400000 +1069 2051 0.400000 +1069 2132 0.400000 +1069 2308 0.400000 +1069 2404 0.400000 +1069 2429 0.400000 +1069 2444 0.400000 +1069 2445 0.400000 +1069 2460 0.400000 +1069 2483 0.400000 +1069 2654 0.400000 +1069 2656 0.400000 +1069 2746 0.400000 +1069 2874 0.400000 +1069 2925 0.400000 +1069 2943 0.400000 +1069 3018 0.400000 +1069 3020 0.400000 +1069 3134 0.400000 +1069 3178 0.400000 +1069 3194 0.400000 +1069 3198 0.400000 +1070 4 0.400000 +1070 140 0.400000 +1070 330 0.400000 +1070 354 0.400000 +1070 359 0.400000 +1070 388 0.400000 +1070 391 0.400000 +1070 432 0.400000 +1070 495 0.400000 +1070 606 0.400000 +1070 639 0.400000 +1070 701 0.400000 +1070 784 0.400000 +1070 829 0.400000 +1070 835 0.400000 +1070 847 0.400000 +1070 867 0.400000 +1070 902 0.400000 +1070 976 0.400000 +1070 988 0.400000 +1070 1018 0.400000 +1070 1124 0.400000 +1070 1161 0.400000 +1070 1207 0.400000 +1070 1221 0.400000 +1070 1249 0.400000 +1070 1359 0.400000 +1070 1448 0.400000 +1070 1478 0.400000 +1070 1515 0.400000 +1070 1549 0.400000 +1070 1562 0.400000 +1070 1619 0.400000 +1070 1663 0.400000 +1070 1713 0.400000 +1070 1758 0.400000 +1070 1762 0.400000 +1070 1809 0.400000 +1070 1820 0.400000 +1070 1896 0.400000 +1070 1936 0.400000 +1070 1974 0.400000 +1070 2024 0.400000 +1070 2075 0.400000 +1070 2108 0.400000 +1070 2126 0.400000 +1070 2144 0.400000 +1070 2272 0.400000 +1070 2332 0.400000 +1070 2338 0.400000 +1070 2346 0.400000 +1070 2393 0.400000 +1070 2642 0.400000 +1070 2689 0.400000 +1070 2695 0.400000 +1070 2727 0.400000 +1070 2760 0.400000 +1070 2769 0.400000 +1070 2806 0.400000 +1070 2862 0.400000 +1070 2935 0.400000 +1070 2958 0.400000 +1070 2977 0.400000 +1070 2979 0.400000 +1070 3035 0.400000 +1070 3068 0.400000 +1070 3128 0.400000 +1071 22 0.400000 +1071 27 0.400000 +1071 225 0.400000 +1071 287 0.400000 +1071 353 0.400000 +1071 373 0.400000 +1071 481 0.400000 +1071 517 0.400000 +1071 523 0.400000 +1071 534 0.400000 +1071 561 0.400000 +1071 599 0.400000 +1071 614 0.400000 +1071 674 0.400000 +1071 804 0.400000 +1071 810 0.400000 +1071 846 0.400000 +1071 929 0.400000 +1071 1010 0.400000 +1071 1160 0.400000 +1071 1213 0.400000 +1071 1306 0.400000 +1071 1315 0.400000 +1071 1323 0.400000 +1071 1329 0.400000 +1071 1374 0.400000 +1071 1381 0.400000 +1071 1387 0.400000 +1071 1400 0.400000 +1071 1402 0.400000 +1071 1501 0.400000 +1071 1514 0.400000 +1071 1553 0.400000 +1071 1578 0.400000 +1071 1699 0.400000 +1071 1748 0.400000 +1071 1760 0.400000 +1071 1785 0.400000 +1071 1821 0.400000 +1071 1869 0.400000 +1071 1979 0.400000 +1071 2037 0.400000 +1071 2169 0.400000 +1071 2177 0.400000 +1071 2181 0.400000 +1071 2210 0.400000 +1071 2221 0.400000 +1071 2243 0.400000 +1071 2400 0.400000 +1071 2402 0.400000 +1071 2425 0.400000 +1071 2445 0.400000 +1071 2447 0.400000 +1071 2448 0.400000 +1071 2605 0.400000 +1071 2626 0.400000 +1071 2719 0.400000 +1071 2838 0.400000 +1071 2925 0.400000 +1071 2954 0.400000 +1071 3085 0.400000 +1071 3094 0.400000 +1071 3165 0.400000 +1072 136 0.400000 +1072 141 0.400000 +1072 148 0.400000 +1072 151 0.400000 +1072 258 0.400000 +1072 300 0.400000 +1072 322 0.400000 +1072 336 0.400000 +1072 360 0.400000 +1072 404 0.400000 +1072 436 0.400000 +1072 459 0.400000 +1072 497 0.400000 +1072 641 0.400000 +1072 644 0.400000 +1072 709 0.400000 +1072 722 0.400000 +1072 811 0.400000 +1072 833 0.400000 +1072 909 0.400000 +1072 927 0.400000 +1072 953 0.400000 +1072 1018 0.400000 +1072 1087 0.400000 +1072 1100 0.400000 +1072 1245 0.400000 +1072 1314 0.400000 +1072 1317 0.400000 +1072 1339 0.400000 +1072 1370 0.400000 +1072 1392 0.400000 +1072 1423 0.400000 +1072 1525 0.400000 +1072 1574 0.400000 +1072 1576 0.400000 +1072 1583 0.400000 +1072 1588 0.400000 +1072 1604 0.400000 +1072 1748 0.400000 +1072 1769 0.400000 +1072 1788 0.400000 +1072 1860 0.400000 +1072 1888 0.400000 +1072 1919 0.400000 +1072 1932 0.400000 +1072 1934 0.400000 +1072 2017 0.400000 +1072 2030 0.400000 +1072 2033 0.400000 +1072 2048 0.400000 +1072 2213 0.400000 +1072 2413 0.400000 +1072 2478 0.400000 +1072 2496 0.400000 +1072 2668 0.400000 +1072 2671 0.400000 +1072 2691 0.400000 +1072 2733 0.400000 +1072 2770 0.400000 +1072 2809 0.400000 +1072 2869 0.400000 +1072 3018 0.400000 +1072 3081 0.400000 +1072 3086 0.400000 +1072 3088 0.400000 +1072 3157 0.400000 +1073 13 0.400000 +1073 87 0.400000 +1073 194 0.400000 +1073 261 0.400000 +1073 282 0.400000 +1073 289 0.400000 +1073 290 0.400000 +1073 307 0.400000 +1073 348 0.400000 +1073 407 0.400000 +1073 500 0.400000 +1073 516 0.400000 +1073 529 0.400000 +1073 535 0.400000 +1073 587 0.400000 +1073 613 0.400000 +1073 676 0.400000 +1073 695 0.400000 +1073 764 0.400000 +1073 780 0.400000 +1073 803 0.400000 +1073 860 0.400000 +1073 876 0.400000 +1073 966 0.400000 +1073 1068 0.400000 +1073 1070 0.400000 +1073 1090 0.400000 +1073 1111 0.400000 +1073 1117 0.400000 +1073 1332 0.400000 +1073 1387 0.400000 +1073 1465 0.400000 +1073 1527 0.400000 +1073 1670 0.400000 +1073 1687 0.400000 +1073 1748 0.400000 +1073 1784 0.400000 +1073 1835 0.400000 +1073 1852 0.400000 +1073 1865 0.400000 +1073 1874 0.400000 +1073 1911 0.400000 +1073 2054 0.400000 +1073 2159 0.400000 +1073 2171 0.400000 +1073 2199 0.400000 +1073 2269 0.400000 +1073 2280 0.400000 +1073 2365 0.400000 +1073 2376 0.400000 +1073 2377 0.400000 +1073 2405 0.400000 +1073 2407 0.400000 +1073 2483 0.400000 +1073 2493 0.400000 +1073 2590 0.400000 +1073 2608 0.400000 +1073 2634 0.400000 +1073 2675 0.400000 +1073 2680 0.400000 +1073 2696 0.400000 +1073 2743 0.400000 +1073 2764 0.400000 +1073 2766 0.400000 +1073 2842 0.400000 +1073 2876 0.400000 +1073 2935 0.400000 +1073 2945 0.400000 +1073 3016 0.400000 +1073 3037 0.400000 +1073 3090 0.400000 +1073 3158 0.400000 +1073 3173 0.400000 +1074 99 0.400000 +1074 107 0.400000 +1074 247 0.400000 +1074 252 0.400000 +1074 314 0.400000 +1074 327 0.400000 +1074 449 0.400000 +1074 514 0.400000 +1074 666 0.400000 +1074 673 0.400000 +1074 675 0.400000 +1074 681 0.400000 +1074 736 0.400000 +1074 784 0.400000 +1074 794 0.400000 +1074 886 0.400000 +1074 903 0.400000 +1074 914 0.400000 +1074 979 0.400000 +1074 1127 0.400000 +1074 1252 0.400000 +1074 1265 0.400000 +1074 1321 0.400000 +1074 1366 0.400000 +1074 1376 0.400000 +1074 1380 0.400000 +1074 1518 0.400000 +1074 1536 0.400000 +1074 1664 0.400000 +1074 1805 0.400000 +1074 1811 0.400000 +1074 1970 0.400000 +1074 2075 0.400000 +1074 2101 0.400000 +1074 2120 0.400000 +1074 2263 0.400000 +1074 2272 0.400000 +1074 2367 0.400000 +1074 2451 0.400000 +1074 2494 0.400000 +1074 2541 0.400000 +1074 2587 0.400000 +1074 2595 0.400000 +1074 2752 0.400000 +1074 2777 0.400000 +1074 2816 0.400000 +1074 2846 0.400000 +1074 2848 0.400000 +1074 2897 0.400000 +1074 2918 0.400000 +1074 2978 0.400000 +1074 3047 0.400000 +1074 3067 0.400000 +1074 3077 0.400000 +1074 3103 0.400000 +1074 3145 0.400000 +1074 3177 0.400000 +1074 3180 0.400000 +1075 26 0.400000 +1075 30 0.400000 +1075 143 0.400000 +1075 205 0.400000 +1075 233 0.400000 +1075 330 0.400000 +1075 343 0.400000 +1075 347 0.400000 +1075 391 0.400000 +1075 497 0.400000 +1075 609 0.400000 +1075 621 0.400000 +1075 639 0.400000 +1075 764 0.400000 +1075 986 0.400000 +1075 1043 0.400000 +1075 1045 0.400000 +1075 1059 0.400000 +1075 1098 0.400000 +1075 1240 0.400000 +1075 1327 0.400000 +1075 1339 0.400000 +1075 1403 0.400000 +1075 1416 0.400000 +1075 1450 0.400000 +1075 1495 0.400000 +1075 1505 0.400000 +1075 1535 0.400000 +1075 1612 0.400000 +1075 1634 0.400000 +1075 1638 0.400000 +1075 1642 0.400000 +1075 1713 0.400000 +1075 1778 0.400000 +1075 1811 0.400000 +1075 1961 0.400000 +1075 1977 0.400000 +1075 1982 0.400000 +1075 1989 0.400000 +1075 2081 0.400000 +1075 2164 0.400000 +1075 2250 0.400000 +1075 2294 0.400000 +1075 2359 0.400000 +1075 2367 0.400000 +1075 2384 0.400000 +1075 2421 0.400000 +1075 2461 0.400000 +1075 2492 0.400000 +1075 2496 0.400000 +1075 2545 0.400000 +1075 2569 0.400000 +1075 2588 0.400000 +1075 2594 0.400000 +1075 2634 0.400000 +1075 2675 0.400000 +1075 2722 0.400000 +1075 2830 0.400000 +1075 2900 0.400000 +1075 2940 0.400000 +1075 3085 0.400000 +1075 3181 0.400000 +1076 25 0.400000 +1076 38 0.400000 +1076 63 0.400000 +1076 127 0.400000 +1076 140 0.400000 +1076 236 0.400000 +1076 242 0.400000 +1076 373 0.400000 +1076 387 0.400000 +1076 445 0.400000 +1076 556 0.400000 +1076 612 0.400000 +1076 685 0.400000 +1076 694 0.400000 +1076 717 0.400000 +1076 747 0.400000 +1076 801 0.400000 +1076 806 0.400000 +1076 858 0.400000 +1076 859 0.400000 +1076 958 0.400000 +1076 1047 0.400000 +1076 1092 0.400000 +1076 1095 0.400000 +1076 1097 0.400000 +1076 1164 0.400000 +1076 1226 0.400000 +1076 1284 0.400000 +1076 1318 0.400000 +1076 1324 0.400000 +1076 1364 0.400000 +1076 1371 0.400000 +1076 1433 0.400000 +1076 1579 0.400000 +1076 1646 0.400000 +1076 1650 0.400000 +1076 1798 0.400000 +1076 1816 0.400000 +1076 1887 0.400000 +1076 2006 0.400000 +1076 2264 0.400000 +1076 2293 0.400000 +1076 2299 0.400000 +1076 2342 0.400000 +1076 2409 0.400000 +1076 2438 0.400000 +1076 2538 0.400000 +1076 2611 0.400000 +1076 2635 0.400000 +1076 2656 0.400000 +1076 2788 0.400000 +1076 2807 0.400000 +1076 2871 0.400000 +1076 2924 0.400000 +1076 3046 0.400000 +1076 3072 0.400000 +1076 3145 0.400000 +1077 32 0.400000 +1077 39 0.400000 +1077 155 0.400000 +1077 205 0.400000 +1077 279 0.400000 +1077 310 0.400000 +1077 591 0.400000 +1077 767 0.400000 +1077 837 0.400000 +1077 967 0.400000 +1077 996 0.400000 +1077 1007 0.400000 +1077 1114 0.400000 +1077 1125 0.400000 +1077 1131 0.400000 +1077 1189 0.400000 +1077 1218 0.400000 +1077 1259 0.400000 +1077 1320 0.400000 +1077 1344 0.400000 +1077 1400 0.400000 +1077 1425 0.400000 +1077 1469 0.400000 +1077 1494 0.400000 +1077 1641 0.400000 +1077 1651 0.400000 +1077 1657 0.400000 +1077 1727 0.400000 +1077 1849 0.400000 +1077 1855 0.400000 +1077 1886 0.400000 +1077 1909 0.400000 +1077 1925 0.400000 +1077 2030 0.400000 +1077 2038 0.400000 +1077 2040 0.400000 +1077 2192 0.400000 +1077 2269 0.400000 +1077 2297 0.400000 +1077 2433 0.400000 +1077 2463 0.400000 +1077 2597 0.400000 +1077 2940 0.400000 +1077 2942 0.400000 +1077 2982 0.400000 +1077 3151 0.400000 +1078 63 0.400000 +1078 193 0.400000 +1078 208 0.400000 +1078 269 0.400000 +1078 380 0.400000 +1078 423 0.400000 +1078 489 0.400000 +1078 517 0.400000 +1078 519 0.400000 +1078 657 0.400000 +1078 715 0.400000 +1078 782 0.400000 +1078 798 0.400000 +1078 825 0.400000 +1078 855 0.400000 +1078 856 0.400000 +1078 939 0.400000 +1078 1039 0.400000 +1078 1055 0.400000 +1078 1075 0.400000 +1078 1150 0.400000 +1078 1167 0.400000 +1078 1175 0.400000 +1078 1224 0.400000 +1078 1344 0.400000 +1078 1354 0.400000 +1078 1360 0.400000 +1078 1363 0.400000 +1078 1456 0.400000 +1078 1477 0.400000 +1078 1489 0.400000 +1078 1557 0.400000 +1078 1600 0.400000 +1078 1615 0.400000 +1078 1744 0.400000 +1078 1880 0.400000 +1078 2082 0.400000 +1078 2104 0.400000 +1078 2106 0.400000 +1078 2134 0.400000 +1078 2157 0.400000 +1078 2203 0.400000 +1078 2240 0.400000 +1078 2264 0.400000 +1078 2267 0.400000 +1078 2332 0.400000 +1078 2355 0.400000 +1078 2478 0.400000 +1078 2529 0.400000 +1078 2530 0.400000 +1078 2597 0.400000 +1078 2598 0.400000 +1078 2670 0.400000 +1078 2727 0.400000 +1078 2733 0.400000 +1078 2774 0.400000 +1078 2837 0.400000 +1078 2853 0.400000 +1078 2861 0.400000 +1078 2903 0.400000 +1078 2938 0.400000 +1078 2983 0.400000 +1078 3055 0.400000 +1078 3079 0.400000 +1078 3180 0.400000 +1078 3199 0.400000 +1079 24 0.400000 +1079 49 0.400000 +1079 151 0.400000 +1079 166 0.400000 +1079 231 0.400000 +1079 312 0.400000 +1079 522 0.400000 +1079 544 0.400000 +1079 581 0.400000 +1079 650 0.400000 +1079 687 0.400000 +1079 691 0.400000 +1079 732 0.400000 +1079 811 0.400000 +1079 812 0.400000 +1079 819 0.400000 +1079 853 0.400000 +1079 889 0.400000 +1079 986 0.400000 +1079 1181 0.400000 +1079 1201 0.400000 +1079 1251 0.400000 +1079 1318 0.400000 +1079 1551 0.400000 +1079 1556 0.400000 +1079 1585 0.400000 +1079 1641 0.400000 +1079 1654 0.400000 +1079 1662 0.400000 +1079 1674 0.400000 +1079 1722 0.400000 +1079 1777 0.400000 +1079 1868 0.400000 +1079 1874 0.400000 +1079 1934 0.400000 +1079 1971 0.400000 +1079 1981 0.400000 +1079 2019 0.400000 +1079 2074 0.400000 +1079 2095 0.400000 +1079 2096 0.400000 +1079 2119 0.400000 +1079 2128 0.400000 +1079 2283 0.400000 +1079 2474 0.400000 +1079 2576 0.400000 +1079 2667 0.400000 +1079 2691 0.400000 +1079 2771 0.400000 +1079 2859 0.400000 +1079 2957 0.400000 +1079 2966 0.400000 +1079 3074 0.400000 +1079 3090 0.400000 +1080 12 0.400000 +1080 127 0.400000 +1080 150 0.400000 +1080 152 0.400000 +1080 231 0.400000 +1080 267 0.400000 +1080 284 0.400000 +1080 382 0.400000 +1080 490 0.400000 +1080 501 0.400000 +1080 503 0.400000 +1080 535 0.400000 +1080 540 0.400000 +1080 600 0.400000 +1080 608 0.400000 +1080 653 0.400000 +1080 700 0.400000 +1080 717 0.400000 +1080 751 0.400000 +1080 772 0.400000 +1080 805 0.400000 +1080 815 0.400000 +1080 824 0.400000 +1080 836 0.400000 +1080 907 0.400000 +1080 982 0.400000 +1080 985 0.400000 +1080 992 0.400000 +1080 1145 0.400000 +1080 1192 0.400000 +1080 1218 0.400000 +1080 1249 0.400000 +1080 1267 0.400000 +1080 1327 0.400000 +1080 1408 0.400000 +1080 1532 0.400000 +1080 1652 0.400000 +1080 1667 0.400000 +1080 1698 0.400000 +1080 1713 0.400000 +1080 1723 0.400000 +1080 1793 0.400000 +1080 2001 0.400000 +1080 2012 0.400000 +1080 2059 0.400000 +1080 2100 0.400000 +1080 2142 0.400000 +1080 2215 0.400000 +1080 2224 0.400000 +1080 2248 0.400000 +1080 2268 0.400000 +1080 2294 0.400000 +1080 2306 0.400000 +1080 2313 0.400000 +1080 2319 0.400000 +1080 2331 0.400000 +1080 2334 0.400000 +1080 2372 0.400000 +1080 2418 0.400000 +1080 2539 0.400000 +1080 2545 0.400000 +1080 2602 0.400000 +1080 2634 0.400000 +1080 2710 0.400000 +1080 2738 0.400000 +1080 2878 0.400000 +1080 2909 0.400000 +1080 2939 0.400000 +1080 2972 0.400000 +1080 3039 0.400000 +1080 3083 0.400000 +1081 83 0.400000 +1081 141 0.400000 +1081 176 0.400000 +1081 213 0.400000 +1081 352 0.400000 +1081 397 0.400000 +1081 426 0.400000 +1081 473 0.400000 +1081 477 0.400000 +1081 555 0.400000 +1081 684 0.400000 +1081 719 0.400000 +1081 881 0.400000 +1081 939 0.400000 +1081 996 0.400000 +1081 1123 0.400000 +1081 1186 0.400000 +1081 1200 0.400000 +1081 1253 0.400000 +1081 1264 0.400000 +1081 1284 0.400000 +1081 1301 0.400000 +1081 1325 0.400000 +1081 1351 0.400000 +1081 1431 0.400000 +1081 1446 0.400000 +1081 1448 0.400000 +1081 1471 0.400000 +1081 1518 0.400000 +1081 1545 0.400000 +1081 1555 0.400000 +1081 1635 0.400000 +1081 1648 0.400000 +1081 1678 0.400000 +1081 1690 0.400000 +1081 1721 0.400000 +1081 1789 0.400000 +1081 1898 0.400000 +1081 1904 0.400000 +1081 1913 0.400000 +1081 2010 0.400000 +1081 2016 0.400000 +1081 2027 0.400000 +1081 2128 0.400000 +1081 2129 0.400000 +1081 2220 0.400000 +1081 2306 0.400000 +1081 2368 0.400000 +1081 2422 0.400000 +1081 2428 0.400000 +1081 2466 0.400000 +1081 2605 0.400000 +1081 2654 0.400000 +1081 2669 0.400000 +1081 2791 0.400000 +1081 2794 0.400000 +1081 2805 0.400000 +1081 2979 0.400000 +1081 2989 0.400000 +1081 3044 0.400000 +1081 3068 0.400000 +1081 3070 0.400000 +1081 3103 0.400000 +1081 3188 0.400000 +1081 3193 0.400000 +1082 124 0.400000 +1082 289 0.400000 +1082 346 0.400000 +1082 358 0.400000 +1082 368 0.400000 +1082 426 0.400000 +1082 604 0.400000 +1082 670 0.400000 +1082 697 0.400000 +1082 703 0.400000 +1082 758 0.400000 +1082 806 0.400000 +1082 973 0.400000 +1082 977 0.400000 +1082 1092 0.400000 +1082 1211 0.400000 +1082 1219 0.400000 +1082 1297 0.400000 +1082 1371 0.400000 +1082 1408 0.400000 +1082 1513 0.400000 +1082 1550 0.400000 +1082 1613 0.400000 +1082 1659 0.400000 +1082 1693 0.400000 +1082 1718 0.400000 +1082 1834 0.400000 +1082 1853 0.400000 +1082 1931 0.400000 +1082 1943 0.400000 +1082 1953 0.400000 +1082 2028 0.400000 +1082 2035 0.400000 +1082 2114 0.400000 +1082 2172 0.400000 +1082 2239 0.400000 +1082 2497 0.400000 +1082 2504 0.400000 +1082 2525 0.400000 +1082 2561 0.400000 +1082 2656 0.400000 +1082 2684 0.400000 +1082 2834 0.400000 +1082 2843 0.400000 +1082 2897 0.400000 +1082 3037 0.400000 +1082 3073 0.400000 +1082 3170 0.400000 +1083 1 0.400000 +1083 62 0.400000 +1083 76 0.400000 +1083 200 0.400000 +1083 257 0.400000 +1083 279 0.400000 +1083 282 0.400000 +1083 366 0.400000 +1083 411 0.400000 +1083 536 0.400000 +1083 554 0.400000 +1083 649 0.400000 +1083 652 0.400000 +1083 667 0.400000 +1083 672 0.400000 +1083 676 0.400000 +1083 715 0.400000 +1083 737 0.400000 +1083 834 0.400000 +1083 857 0.400000 +1083 866 0.400000 +1083 909 0.400000 +1083 923 0.400000 +1083 941 0.400000 +1083 1077 0.400000 +1083 1115 0.400000 +1083 1206 0.400000 +1083 1298 0.400000 +1083 1341 0.400000 +1083 1390 0.400000 +1083 1393 0.400000 +1083 1405 0.400000 +1083 1515 0.400000 +1083 1544 0.400000 +1083 1585 0.400000 +1083 1718 0.400000 +1083 1725 0.400000 +1083 1876 0.400000 +1083 1967 0.400000 +1083 1986 0.400000 +1083 2032 0.400000 +1083 2038 0.400000 +1083 2110 0.400000 +1083 2140 0.400000 +1083 2156 0.400000 +1083 2201 0.400000 +1083 2459 0.400000 +1083 2507 0.400000 +1083 2555 0.400000 +1083 2567 0.400000 +1083 2575 0.400000 +1083 2647 0.400000 +1083 2711 0.400000 +1083 2754 0.400000 +1083 2886 0.400000 +1083 2929 0.400000 +1083 2949 0.400000 +1083 2956 0.400000 +1083 2989 0.400000 +1083 3052 0.400000 +1083 3091 0.400000 +1083 3093 0.400000 +1083 3168 0.400000 +1083 3172 0.400000 +1083 3178 0.400000 +1083 3180 0.400000 +1084 1 0.400000 +1084 68 0.400000 +1084 88 0.400000 +1084 126 0.400000 +1084 381 0.400000 +1084 485 0.400000 +1084 499 0.400000 +1084 585 0.400000 +1084 588 0.400000 +1084 603 0.400000 +1084 763 0.400000 +1084 784 0.400000 +1084 828 0.400000 +1084 835 0.400000 +1084 867 0.400000 +1084 1024 0.400000 +1084 1028 0.400000 +1084 1031 0.400000 +1084 1198 0.400000 +1084 1202 0.400000 +1084 1287 0.400000 +1084 1337 0.400000 +1084 1352 0.400000 +1084 1364 0.400000 +1084 1370 0.400000 +1084 1470 0.400000 +1084 1534 0.400000 +1084 1538 0.400000 +1084 1547 0.400000 +1084 1743 0.400000 +1084 1752 0.400000 +1084 1856 0.400000 +1084 1887 0.400000 +1084 1901 0.400000 +1084 1908 0.400000 +1084 1985 0.400000 +1084 2252 0.400000 +1084 2279 0.400000 +1084 2304 0.400000 +1084 2330 0.400000 +1084 2422 0.400000 +1084 2457 0.400000 +1084 2527 0.400000 +1084 2543 0.400000 +1084 2549 0.400000 +1084 2605 0.400000 +1084 2678 0.400000 +1084 2703 0.400000 +1084 2789 0.400000 +1084 2795 0.400000 +1084 2890 0.400000 +1084 2892 0.400000 +1084 2939 0.400000 +1084 2988 0.400000 +1084 3032 0.400000 +1084 3098 0.400000 +1084 3189 0.400000 +1085 16 0.400000 +1085 17 0.400000 +1085 158 0.400000 +1085 494 0.400000 +1085 524 0.400000 +1085 534 0.400000 +1085 567 0.400000 +1085 697 0.400000 +1085 755 0.400000 +1085 846 0.400000 +1085 909 0.400000 +1085 974 0.400000 +1085 998 0.400000 +1085 1001 0.400000 +1085 1068 0.400000 +1085 1158 0.400000 +1085 1181 0.400000 +1085 1220 0.400000 +1085 1261 0.400000 +1085 1505 0.400000 +1085 1545 0.400000 +1085 1546 0.400000 +1085 1593 0.400000 +1085 1618 0.400000 +1085 1657 0.400000 +1085 1742 0.400000 +1085 1744 0.400000 +1085 1808 0.400000 +1085 1826 0.400000 +1085 1912 0.400000 +1085 1927 0.400000 +1085 1936 0.400000 +1085 2041 0.400000 +1085 2099 0.400000 +1085 2105 0.400000 +1085 2109 0.400000 +1085 2111 0.400000 +1085 2130 0.400000 +1085 2157 0.400000 +1085 2183 0.400000 +1085 2234 0.400000 +1085 2250 0.400000 +1085 2255 0.400000 +1085 2282 0.400000 +1085 2335 0.400000 +1085 2364 0.400000 +1085 2379 0.400000 +1085 2404 0.400000 +1085 2414 0.400000 +1085 2442 0.400000 +1085 2548 0.400000 +1085 2562 0.400000 +1085 2643 0.400000 +1085 2652 0.400000 +1085 2672 0.400000 +1085 2747 0.400000 +1085 2750 0.400000 +1085 2767 0.400000 +1085 2896 0.400000 +1085 2903 0.400000 +1085 2911 0.400000 +1085 3020 0.400000 +1085 3081 0.400000 +1086 79 0.400000 +1086 96 0.400000 +1086 153 0.400000 +1086 173 0.400000 +1086 199 0.400000 +1086 275 0.400000 +1086 373 0.400000 +1086 494 0.400000 +1086 729 0.400000 +1086 765 0.400000 +1086 787 0.400000 +1086 810 0.400000 +1086 894 0.400000 +1086 968 0.400000 +1086 1020 0.400000 +1086 1036 0.400000 +1086 1142 0.400000 +1086 1206 0.400000 +1086 1267 0.400000 +1086 1307 0.400000 +1086 1334 0.400000 +1086 1375 0.400000 +1086 1407 0.400000 +1086 1413 0.400000 +1086 1432 0.400000 +1086 1446 0.400000 +1086 1697 0.400000 +1086 1747 0.400000 +1086 1815 0.400000 +1086 1861 0.400000 +1086 1863 0.400000 +1086 1878 0.400000 +1086 1928 0.400000 +1086 1969 0.400000 +1086 2004 0.400000 +1086 2020 0.400000 +1086 2059 0.400000 +1086 2078 0.400000 +1086 2096 0.400000 +1086 2099 0.400000 +1086 2141 0.400000 +1086 2206 0.400000 +1086 2307 0.400000 +1086 2365 0.400000 +1086 2368 0.400000 +1086 2380 0.400000 +1086 2460 0.400000 +1086 2488 0.400000 +1086 2586 0.400000 +1086 2639 0.400000 +1086 2721 0.400000 +1086 2808 0.400000 +1086 2921 0.400000 +1086 2990 0.400000 +1086 3024 0.400000 +1086 3080 0.400000 +1086 3108 0.400000 +1086 3116 0.400000 +1086 3172 0.400000 +1087 12 0.400000 +1087 31 0.400000 +1087 93 0.400000 +1087 115 0.400000 +1087 160 0.400000 +1087 193 0.400000 +1087 213 0.400000 +1087 229 0.400000 +1087 330 0.400000 +1087 342 0.400000 +1087 354 0.400000 +1087 377 0.400000 +1087 410 0.400000 +1087 422 0.400000 +1087 438 0.400000 +1087 496 0.400000 +1087 510 0.400000 +1087 617 0.400000 +1087 782 0.400000 +1087 879 0.400000 +1087 882 0.400000 +1087 883 0.400000 +1087 897 0.400000 +1087 921 0.400000 +1087 929 0.400000 +1087 959 0.400000 +1087 964 0.400000 +1087 1005 0.400000 +1087 1085 0.400000 +1087 1226 0.400000 +1087 1262 0.400000 +1087 1359 0.400000 +1087 1399 0.400000 +1087 1414 0.400000 +1087 1438 0.400000 +1087 1442 0.400000 +1087 1529 0.400000 +1087 1533 0.400000 +1087 1562 0.400000 +1087 1598 0.400000 +1087 1635 0.400000 +1087 1642 0.400000 +1087 1708 0.400000 +1087 1733 0.400000 +1087 1742 0.400000 +1087 1953 0.400000 +1087 2006 0.400000 +1087 2011 0.400000 +1087 2024 0.400000 +1087 2063 0.400000 +1087 2064 0.400000 +1087 2078 0.400000 +1087 2170 0.400000 +1087 2242 0.400000 +1087 2249 0.400000 +1087 2300 0.400000 +1087 2352 0.400000 +1087 2368 0.400000 +1087 2377 0.400000 +1087 2386 0.400000 +1087 2403 0.400000 +1087 2438 0.400000 +1087 2442 0.400000 +1087 2561 0.400000 +1087 2592 0.400000 +1087 2615 0.400000 +1087 2625 0.400000 +1087 2629 0.400000 +1087 2641 0.400000 +1087 2668 0.400000 +1087 2870 0.400000 +1087 3069 0.400000 +1087 3089 0.400000 +1087 3128 0.400000 +1088 18 0.400000 +1088 51 0.400000 +1088 70 0.400000 +1088 139 0.400000 +1088 155 0.400000 +1088 194 0.400000 +1088 297 0.400000 +1088 313 0.400000 +1088 360 0.400000 +1088 378 0.400000 +1088 424 0.400000 +1088 429 0.400000 +1088 432 0.400000 +1088 480 0.400000 +1088 735 0.400000 +1088 785 0.400000 +1088 794 0.400000 +1088 908 0.400000 +1088 960 0.400000 +1088 1016 0.400000 +1088 1102 0.400000 +1088 1142 0.400000 +1088 1204 0.400000 +1088 1224 0.400000 +1088 1393 0.400000 +1088 1401 0.400000 +1088 1402 0.400000 +1088 1406 0.400000 +1088 1447 0.400000 +1088 1467 0.400000 +1088 1546 0.400000 +1088 1561 0.400000 +1088 1609 0.400000 +1088 1748 0.400000 +1088 1819 0.400000 +1088 1901 0.400000 +1088 1950 0.400000 +1088 2019 0.400000 +1088 2109 0.400000 +1088 2140 0.400000 +1088 2162 0.400000 +1088 2389 0.400000 +1088 2390 0.400000 +1088 2478 0.400000 +1088 2531 0.400000 +1088 2532 0.400000 +1088 2537 0.400000 +1088 2541 0.400000 +1088 2561 0.400000 +1088 2583 0.400000 +1088 2586 0.400000 +1088 2606 0.400000 +1088 2662 0.400000 +1088 2670 0.400000 +1088 2680 0.400000 +1088 2682 0.400000 +1088 2685 0.400000 +1088 2722 0.400000 +1088 2838 0.400000 +1088 2853 0.400000 +1088 2992 0.400000 +1088 2996 0.400000 +1088 3015 0.400000 +1088 3096 0.400000 +1088 3143 0.400000 +1088 3144 0.400000 +1088 3164 0.400000 +1089 30 0.400000 +1089 39 0.400000 +1089 49 0.400000 +1089 72 0.400000 +1089 79 0.400000 +1089 95 0.400000 +1089 125 0.400000 +1089 147 0.400000 +1089 173 0.400000 +1089 260 0.400000 +1089 310 0.400000 +1089 341 0.400000 +1089 450 0.400000 +1089 510 0.400000 +1089 515 0.400000 +1089 533 0.400000 +1089 536 0.400000 +1089 537 0.400000 +1089 644 0.400000 +1089 731 0.400000 +1089 853 0.400000 +1089 875 0.400000 +1089 890 0.400000 +1089 921 0.400000 +1089 927 0.400000 +1089 942 0.400000 +1089 977 0.400000 +1089 1012 0.400000 +1089 1027 0.400000 +1089 1041 0.400000 +1089 1050 0.400000 +1089 1092 0.400000 +1089 1095 0.400000 +1089 1100 0.400000 +1089 1125 0.400000 +1089 1148 0.400000 +1089 1207 0.400000 +1089 1237 0.400000 +1089 1307 0.400000 +1089 1324 0.400000 +1089 1329 0.400000 +1089 1333 0.400000 +1089 1430 0.400000 +1089 1433 0.400000 +1089 1437 0.400000 +1089 1497 0.400000 +1089 1513 0.400000 +1089 1570 0.400000 +1089 1580 0.400000 +1089 1603 0.400000 +1089 1619 0.400000 +1089 1672 0.400000 +1089 1810 0.400000 +1089 1899 0.400000 +1089 1961 0.400000 +1089 2016 0.400000 +1089 2137 0.400000 +1089 2276 0.400000 +1089 2278 0.400000 +1089 2304 0.400000 +1089 2633 0.400000 +1089 2648 0.400000 +1089 2751 0.400000 +1089 2884 0.400000 +1089 2906 0.400000 +1089 2969 0.400000 +1089 3014 0.400000 +1089 3029 0.400000 +1089 3106 0.400000 +1090 6 0.400000 +1090 26 0.400000 +1090 120 0.400000 +1090 191 0.400000 +1090 241 0.400000 +1090 303 0.400000 +1090 402 0.400000 +1090 443 0.400000 +1090 600 0.400000 +1090 621 0.400000 +1090 668 0.400000 +1090 683 0.400000 +1090 735 0.400000 +1090 750 0.400000 +1090 754 0.400000 +1090 791 0.400000 +1090 825 0.400000 +1090 919 0.400000 +1090 956 0.400000 +1090 957 0.400000 +1090 974 0.400000 +1090 1076 0.400000 +1090 1109 0.400000 +1090 1173 0.400000 +1090 1218 0.400000 +1090 1265 0.400000 +1090 1330 0.400000 +1090 1354 0.400000 +1090 1603 0.400000 +1090 1733 0.400000 +1090 1784 0.400000 +1090 1864 0.400000 +1090 1895 0.400000 +1090 1976 0.400000 +1090 2038 0.400000 +1090 2045 0.400000 +1090 2060 0.400000 +1090 2145 0.400000 +1090 2176 0.400000 +1090 2234 0.400000 +1090 2246 0.400000 +1090 2296 0.400000 +1090 2322 0.400000 +1090 2430 0.400000 +1090 2523 0.400000 +1090 2530 0.400000 +1090 2622 0.400000 +1090 2635 0.400000 +1090 2788 0.400000 +1090 2829 0.400000 +1090 3012 0.400000 +1090 3035 0.400000 +1090 3068 0.400000 +1090 3104 0.400000 +1090 3107 0.400000 +1091 32 0.400000 +1091 83 0.400000 +1091 306 0.400000 +1091 343 0.400000 +1091 427 0.400000 +1091 469 0.400000 +1091 506 0.400000 +1091 544 0.400000 +1091 637 0.400000 +1091 678 0.400000 +1091 687 0.400000 +1091 689 0.400000 +1091 742 0.400000 +1091 776 0.400000 +1091 1079 0.400000 +1091 1230 0.400000 +1091 1272 0.400000 +1091 1318 0.400000 +1091 1334 0.400000 +1091 1412 0.400000 +1091 1420 0.400000 +1091 1454 0.400000 +1091 1469 0.400000 +1091 1526 0.400000 +1091 1535 0.400000 +1091 1560 0.400000 +1091 1582 0.400000 +1091 1593 0.400000 +1091 1599 0.400000 +1091 1615 0.400000 +1091 1620 0.400000 +1091 1643 0.400000 +1091 1685 0.400000 +1091 1747 0.400000 +1091 1760 0.400000 +1091 1862 0.400000 +1091 1871 0.400000 +1091 1913 0.400000 +1091 2021 0.400000 +1091 2136 0.400000 +1091 2197 0.400000 +1091 2318 0.400000 +1091 2432 0.400000 +1091 2435 0.400000 +1091 2526 0.400000 +1091 2535 0.400000 +1091 2543 0.400000 +1091 2554 0.400000 +1091 2648 0.400000 +1091 2859 0.400000 +1091 2862 0.400000 +1091 3025 0.400000 +1091 3059 0.400000 +1091 3087 0.400000 +1091 3093 0.400000 +1091 3134 0.400000 +1092 43 0.400000 +1092 64 0.400000 +1092 216 0.400000 +1092 351 0.400000 +1092 480 0.400000 +1092 563 0.400000 +1092 594 0.400000 +1092 596 0.400000 +1092 613 0.400000 +1092 710 0.400000 +1092 718 0.400000 +1092 745 0.400000 +1092 805 0.400000 +1092 824 0.400000 +1092 851 0.400000 +1092 1009 0.400000 +1092 1030 0.400000 +1092 1059 0.400000 +1092 1180 0.400000 +1092 1181 0.400000 +1092 1241 0.400000 +1092 1295 0.400000 +1092 1324 0.400000 +1092 1369 0.400000 +1092 1377 0.400000 +1092 1448 0.400000 +1092 1453 0.400000 +1092 1475 0.400000 +1092 1480 0.400000 +1092 1841 0.400000 +1092 1866 0.400000 +1092 1970 0.400000 +1092 1981 0.400000 +1092 2119 0.400000 +1092 2214 0.400000 +1092 2295 0.400000 +1092 2303 0.400000 +1092 2306 0.400000 +1092 2311 0.400000 +1092 2337 0.400000 +1092 2382 0.400000 +1092 2434 0.400000 +1092 2439 0.400000 +1092 2500 0.400000 +1092 2598 0.400000 +1092 2617 0.400000 +1092 2636 0.400000 +1092 2645 0.400000 +1092 2697 0.400000 +1092 2813 0.400000 +1092 2877 0.400000 +1092 2894 0.400000 +1092 2918 0.400000 +1092 2924 0.400000 +1092 2973 0.400000 +1092 2975 0.400000 +1092 3010 0.400000 +1092 3091 0.400000 +1092 3095 0.400000 +1092 3099 0.400000 +1092 3124 0.400000 +1092 3179 0.400000 +1093 107 0.400000 +1093 395 0.400000 +1093 456 0.400000 +1093 457 0.400000 +1093 495 0.400000 +1093 503 0.400000 +1093 563 0.400000 +1093 700 0.400000 +1093 731 0.400000 +1093 772 0.400000 +1093 840 0.400000 +1093 854 0.400000 +1093 926 0.400000 +1093 973 0.400000 +1093 976 0.400000 +1093 990 0.400000 +1093 1107 0.400000 +1093 1109 0.400000 +1093 1162 0.400000 +1093 1219 0.400000 +1093 1228 0.400000 +1093 1279 0.400000 +1093 1431 0.400000 +1093 1448 0.400000 +1093 1554 0.400000 +1093 1557 0.400000 +1093 1616 0.400000 +1093 1660 0.400000 +1093 1672 0.400000 +1093 1674 0.400000 +1093 1809 0.400000 +1093 1858 0.400000 +1093 1927 0.400000 +1093 2099 0.400000 +1093 2233 0.400000 +1093 2281 0.400000 +1093 2304 0.400000 +1093 2307 0.400000 +1093 2332 0.400000 +1093 2381 0.400000 +1093 2406 0.400000 +1093 2496 0.400000 +1093 2539 0.400000 +1093 2576 0.400000 +1093 2596 0.400000 +1093 2685 0.400000 +1093 2689 0.400000 +1093 2761 0.400000 +1093 2871 0.400000 +1093 3009 0.400000 +1093 3013 0.400000 +1093 3019 0.400000 +1093 3155 0.400000 +1093 3185 0.400000 +1094 19 0.400000 +1094 24 0.400000 +1094 32 0.400000 +1094 41 0.400000 +1094 83 0.400000 +1094 214 0.400000 +1094 260 0.400000 +1094 283 0.400000 +1094 342 0.400000 +1094 399 0.400000 +1094 408 0.400000 +1094 466 0.400000 +1094 548 0.400000 +1094 555 0.400000 +1094 599 0.400000 +1094 701 0.400000 +1094 721 0.400000 +1094 765 0.400000 +1094 826 0.400000 +1094 912 0.400000 +1094 1005 0.400000 +1094 1083 0.400000 +1094 1086 0.400000 +1094 1099 0.400000 +1094 1306 0.400000 +1094 1318 0.400000 +1094 1419 0.400000 +1094 1433 0.400000 +1094 1493 0.400000 +1094 1576 0.400000 +1094 1687 0.400000 +1094 1775 0.400000 +1094 1784 0.400000 +1094 1788 0.400000 +1094 1817 0.400000 +1094 1830 0.400000 +1094 1942 0.400000 +1094 2011 0.400000 +1094 2030 0.400000 +1094 2047 0.400000 +1094 2094 0.400000 +1094 2180 0.400000 +1094 2217 0.400000 +1094 2255 0.400000 +1094 2256 0.400000 +1094 2382 0.400000 +1094 2436 0.400000 +1094 2444 0.400000 +1094 2610 0.400000 +1094 2664 0.400000 +1094 2668 0.400000 +1094 2669 0.400000 +1094 2765 0.400000 +1094 2812 0.400000 +1094 2816 0.400000 +1094 2915 0.400000 +1094 2924 0.400000 +1094 2928 0.400000 +1094 2999 0.400000 +1094 3075 0.400000 +1094 3136 0.400000 +1094 3176 0.400000 +1095 3 0.400000 +1095 63 0.400000 +1095 71 0.400000 +1095 78 0.400000 +1095 270 0.400000 +1095 272 0.400000 +1095 276 0.400000 +1095 289 0.400000 +1095 313 0.400000 +1095 324 0.400000 +1095 348 0.400000 +1095 363 0.400000 +1095 391 0.400000 +1095 408 0.400000 +1095 413 0.400000 +1095 459 0.400000 +1095 467 0.400000 +1095 472 0.400000 +1095 586 0.400000 +1095 590 0.400000 +1095 666 0.400000 +1095 718 0.400000 +1095 766 0.400000 +1095 831 0.400000 +1095 847 0.400000 +1095 906 0.400000 +1095 921 0.400000 +1095 972 0.400000 +1095 981 0.400000 +1095 1182 0.400000 +1095 1239 0.400000 +1095 1271 0.400000 +1095 1273 0.400000 +1095 1390 0.400000 +1095 1441 0.400000 +1095 1444 0.400000 +1095 1457 0.400000 +1095 1497 0.400000 +1095 1539 0.400000 +1095 1612 0.400000 +1095 1692 0.400000 +1095 1700 0.400000 +1095 1726 0.400000 +1095 2031 0.400000 +1095 2068 0.400000 +1095 2125 0.400000 +1095 2137 0.400000 +1095 2254 0.400000 +1095 2435 0.400000 +1095 2438 0.400000 +1095 2620 0.400000 +1095 2649 0.400000 +1095 2669 0.400000 +1095 2674 0.400000 +1095 2729 0.400000 +1095 2823 0.400000 +1095 2965 0.400000 +1095 2984 0.400000 +1096 3 0.400000 +1096 49 0.400000 +1096 73 0.400000 +1096 81 0.400000 +1096 85 0.400000 +1096 160 0.400000 +1096 162 0.400000 +1096 370 0.400000 +1096 378 0.400000 +1096 386 0.400000 +1096 395 0.400000 +1096 397 0.400000 +1096 518 0.400000 +1096 527 0.400000 +1096 623 0.400000 +1096 636 0.400000 +1096 673 0.400000 +1096 723 0.400000 +1096 790 0.400000 +1096 862 0.400000 +1096 907 0.400000 +1096 930 0.400000 +1096 933 0.400000 +1096 960 0.400000 +1096 1032 0.400000 +1096 1038 0.400000 +1096 1042 0.400000 +1096 1102 0.400000 +1096 1107 0.400000 +1096 1238 0.400000 +1096 1262 0.400000 +1096 1348 0.400000 +1096 1367 0.400000 +1096 1381 0.400000 +1096 1411 0.400000 +1096 1425 0.400000 +1096 1503 0.400000 +1096 1512 0.400000 +1096 1521 0.400000 +1096 1553 0.400000 +1096 1575 0.400000 +1096 1582 0.400000 +1096 1626 0.400000 +1096 1737 0.400000 +1096 1774 0.400000 +1096 1793 0.400000 +1096 1794 0.400000 +1096 1800 0.400000 +1096 1898 0.400000 +1096 1911 0.400000 +1096 1942 0.400000 +1096 1981 0.400000 +1096 2020 0.400000 +1096 2043 0.400000 +1096 2068 0.400000 +1096 2082 0.400000 +1096 2090 0.400000 +1096 2223 0.400000 +1096 2248 0.400000 +1096 2259 0.400000 +1096 2262 0.400000 +1096 2297 0.400000 +1096 2449 0.400000 +1096 2505 0.400000 +1096 2532 0.400000 +1096 2539 0.400000 +1096 2594 0.400000 +1096 2712 0.400000 +1096 2728 0.400000 +1096 2755 0.400000 +1096 2825 0.400000 +1096 2834 0.400000 +1096 2840 0.400000 +1096 2845 0.400000 +1096 2895 0.400000 +1096 2908 0.400000 +1096 2981 0.400000 +1096 2990 0.400000 +1096 3038 0.400000 +1096 3139 0.400000 +1096 3173 0.400000 +1096 3177 0.400000 +1097 122 0.400000 +1097 436 0.400000 +1097 539 0.400000 +1097 588 0.400000 +1097 671 0.400000 +1097 775 0.400000 +1097 806 0.400000 +1097 811 0.400000 +1097 854 0.400000 +1097 881 0.400000 +1097 1045 0.400000 +1097 1085 0.400000 +1097 1095 0.400000 +1097 1144 0.400000 +1097 1158 0.400000 +1097 1175 0.400000 +1097 1201 0.400000 +1097 1209 0.400000 +1097 1355 0.400000 +1097 1398 0.400000 +1097 1416 0.400000 +1097 1436 0.400000 +1097 1459 0.400000 +1097 1468 0.400000 +1097 1480 0.400000 +1097 1519 0.400000 +1097 1609 0.400000 +1097 1620 0.400000 +1097 1829 0.400000 +1097 1850 0.400000 +1097 1852 0.400000 +1097 1872 0.400000 +1097 1885 0.400000 +1097 2008 0.400000 +1097 2027 0.400000 +1097 2079 0.400000 +1097 2147 0.400000 +1097 2223 0.400000 +1097 2231 0.400000 +1097 2238 0.400000 +1097 2252 0.400000 +1097 2456 0.400000 +1097 2483 0.400000 +1097 2486 0.400000 +1097 2516 0.400000 +1097 2593 0.400000 +1097 2675 0.400000 +1097 2709 0.400000 +1097 2734 0.400000 +1097 2735 0.400000 +1097 2738 0.400000 +1097 2996 0.400000 +1097 3179 0.400000 +1098 28 0.400000 +1098 140 0.400000 +1098 235 0.400000 +1098 239 0.400000 +1098 243 0.400000 +1098 298 0.400000 +1098 309 0.400000 +1098 356 0.400000 +1098 381 0.400000 +1098 468 0.400000 +1098 516 0.400000 +1098 528 0.400000 +1098 560 0.400000 +1098 583 0.400000 +1098 586 0.400000 +1098 609 0.400000 +1098 611 0.400000 +1098 634 0.400000 +1098 642 0.400000 +1098 704 0.400000 +1098 707 0.400000 +1098 743 0.400000 +1098 782 0.400000 +1098 829 0.400000 +1098 934 0.400000 +1098 996 0.400000 +1098 1014 0.400000 +1098 1113 0.400000 +1098 1130 0.400000 +1098 1209 0.400000 +1098 1238 0.400000 +1098 1253 0.400000 +1098 1325 0.400000 +1098 1334 0.400000 +1098 1354 0.400000 +1098 1416 0.400000 +1098 1421 0.400000 +1098 1454 0.400000 +1098 1483 0.400000 +1098 1498 0.400000 +1098 1561 0.400000 +1098 1639 0.400000 +1098 1651 0.400000 +1098 1654 0.400000 +1098 1661 0.400000 +1098 1662 0.400000 +1098 1732 0.400000 +1098 1739 0.400000 +1098 1899 0.400000 +1098 1928 0.400000 +1098 2046 0.400000 +1098 2115 0.400000 +1098 2352 0.400000 +1098 2355 0.400000 +1098 2365 0.400000 +1098 2426 0.400000 +1098 2498 0.400000 +1098 2567 0.400000 +1098 2568 0.400000 +1098 2601 0.400000 +1098 2744 0.400000 +1098 2778 0.400000 +1098 2818 0.400000 +1098 2864 0.400000 +1098 2991 0.400000 +1098 3138 0.400000 +1099 73 0.400000 +1099 109 0.400000 +1099 135 0.400000 +1099 137 0.400000 +1099 160 0.400000 +1099 186 0.400000 +1099 271 0.400000 +1099 273 0.400000 +1099 404 0.400000 +1099 462 0.400000 +1099 466 0.400000 +1099 470 0.400000 +1099 516 0.400000 +1099 561 0.400000 +1099 630 0.400000 +1099 658 0.400000 +1099 691 0.400000 +1099 771 0.400000 +1099 774 0.400000 +1099 809 0.400000 +1099 826 0.400000 +1099 942 0.400000 +1099 979 0.400000 +1099 1030 0.400000 +1099 1095 0.400000 +1099 1119 0.400000 +1099 1149 0.400000 +1099 1213 0.400000 +1099 1283 0.400000 +1099 1342 0.400000 +1099 1362 0.400000 +1099 1384 0.400000 +1099 1444 0.400000 +1099 1503 0.400000 +1099 1555 0.400000 +1099 1676 0.400000 +1099 1731 0.400000 +1099 1746 0.400000 +1099 1753 0.400000 +1099 1763 0.400000 +1099 1845 0.400000 +1099 1852 0.400000 +1099 1858 0.400000 +1099 1908 0.400000 +1099 1915 0.400000 +1099 1946 0.400000 +1099 2040 0.400000 +1099 2083 0.400000 +1099 2104 0.400000 +1099 2124 0.400000 +1099 2410 0.400000 +1099 2528 0.400000 +1099 2630 0.400000 +1099 2683 0.400000 +1099 2716 0.400000 +1099 2795 0.400000 +1099 2798 0.400000 +1099 2814 0.400000 +1099 2857 0.400000 +1099 2892 0.400000 +1099 2911 0.400000 +1099 3045 0.400000 +1099 3106 0.400000 +1099 3177 0.400000 +1100 167 0.400000 +1100 170 0.400000 +1100 204 0.400000 +1100 229 0.400000 +1100 325 0.400000 +1100 342 0.400000 +1100 372 0.400000 +1100 409 0.400000 +1100 428 0.400000 +1100 481 0.400000 +1100 489 0.400000 +1100 555 0.400000 +1100 682 0.400000 +1100 710 0.400000 +1100 715 0.400000 +1100 769 0.400000 +1100 795 0.400000 +1100 804 0.400000 +1100 898 0.400000 +1100 902 0.400000 +1100 915 0.400000 +1100 962 0.400000 +1100 966 0.400000 +1100 1016 0.400000 +1100 1137 0.400000 +1100 1174 0.400000 +1100 1223 0.400000 +1100 1265 0.400000 +1100 1293 0.400000 +1100 1350 0.400000 +1100 1385 0.400000 +1100 1551 0.400000 +1100 1586 0.400000 +1100 1606 0.400000 +1100 1678 0.400000 +1100 1704 0.400000 +1100 1777 0.400000 +1100 1811 0.400000 +1100 1963 0.400000 +1100 1965 0.400000 +1100 1995 0.400000 +1100 1999 0.400000 +1100 2012 0.400000 +1100 2073 0.400000 +1100 2128 0.400000 +1100 2205 0.400000 +1100 2229 0.400000 +1100 2296 0.400000 +1100 2308 0.400000 +1100 2362 0.400000 +1100 2432 0.400000 +1100 2538 0.400000 +1100 2584 0.400000 +1100 2714 0.400000 +1100 2813 0.400000 +1100 2829 0.400000 +1100 2830 0.400000 +1100 2850 0.400000 +1100 2881 0.400000 +1100 2970 0.400000 +1100 2986 0.400000 +1100 3062 0.400000 +1100 3097 0.400000 +1100 3117 0.400000 +1100 3120 0.400000 +1100 3151 0.400000 +1101 4 0.400000 +1101 31 0.400000 +1101 134 0.400000 +1101 138 0.400000 +1101 170 0.400000 +1101 179 0.400000 +1101 226 0.400000 +1101 241 0.400000 +1101 250 0.400000 +1101 304 0.400000 +1101 321 0.400000 +1101 332 0.400000 +1101 378 0.400000 +1101 505 0.400000 +1101 557 0.400000 +1101 620 0.400000 +1101 623 0.400000 +1101 639 0.400000 +1101 645 0.400000 +1101 673 0.400000 +1101 731 0.400000 +1101 735 0.400000 +1101 746 0.400000 +1101 793 0.400000 +1101 798 0.400000 +1101 868 0.400000 +1101 894 0.400000 +1101 914 0.400000 +1101 937 0.400000 +1101 946 0.400000 +1101 977 0.400000 +1101 1073 0.400000 +1101 1082 0.400000 +1101 1201 0.400000 +1101 1240 0.400000 +1101 1258 0.400000 +1101 1449 0.400000 +1101 1473 0.400000 +1101 1522 0.400000 +1101 1545 0.400000 +1101 1647 0.400000 +1101 1656 0.400000 +1101 1701 0.400000 +1101 1766 0.400000 +1101 1827 0.400000 +1101 1849 0.400000 +1101 1979 0.400000 +1101 2025 0.400000 +1101 2031 0.400000 +1101 2033 0.400000 +1101 2143 0.400000 +1101 2186 0.400000 +1101 2324 0.400000 +1101 2340 0.400000 +1101 2368 0.400000 +1101 2409 0.400000 +1101 2417 0.400000 +1101 2434 0.400000 +1101 2487 0.400000 +1101 2490 0.400000 +1101 2492 0.400000 +1101 2529 0.400000 +1101 2545 0.400000 +1101 2546 0.400000 +1101 2612 0.400000 +1101 2822 0.400000 +1101 2889 0.400000 +1101 3091 0.400000 +1101 3117 0.400000 +1102 55 0.400000 +1102 59 0.400000 +1102 73 0.400000 +1102 95 0.400000 +1102 138 0.400000 +1102 167 0.400000 +1102 308 0.400000 +1102 320 0.400000 +1102 322 0.400000 +1102 412 0.400000 +1102 423 0.400000 +1102 434 0.400000 +1102 470 0.400000 +1102 476 0.400000 +1102 651 0.400000 +1102 666 0.400000 +1102 767 0.400000 +1102 1052 0.400000 +1102 1069 0.400000 +1102 1086 0.400000 +1102 1120 0.400000 +1102 1156 0.400000 +1102 1180 0.400000 +1102 1190 0.400000 +1102 1215 0.400000 +1102 1264 0.400000 +1102 1333 0.400000 +1102 1379 0.400000 +1102 1439 0.400000 +1102 1631 0.400000 +1102 1715 0.400000 +1102 1845 0.400000 +1102 1881 0.400000 +1102 1922 0.400000 +1102 2033 0.400000 +1102 2037 0.400000 +1102 2075 0.400000 +1102 2129 0.400000 +1102 2173 0.400000 +1102 2205 0.400000 +1102 2235 0.400000 +1102 2313 0.400000 +1102 2324 0.400000 +1102 2380 0.400000 +1102 2387 0.400000 +1102 2395 0.400000 +1102 2439 0.400000 +1102 2440 0.400000 +1102 2458 0.400000 +1102 2469 0.400000 +1102 2477 0.400000 +1102 2489 0.400000 +1102 2512 0.400000 +1102 2674 0.400000 +1102 2832 0.400000 +1102 2910 0.400000 +1102 2943 0.400000 +1102 2974 0.400000 +1102 2975 0.400000 +1102 3005 0.400000 +1102 3016 0.400000 +1102 3033 0.400000 +1103 94 0.400000 +1103 195 0.400000 +1103 260 0.400000 +1103 325 0.400000 +1103 331 0.400000 +1103 401 0.400000 +1103 403 0.400000 +1103 424 0.400000 +1103 458 0.400000 +1103 508 0.400000 +1103 558 0.400000 +1103 679 0.400000 +1103 695 0.400000 +1103 740 0.400000 +1103 768 0.400000 +1103 824 0.400000 +1103 871 0.400000 +1103 904 0.400000 +1103 989 0.400000 +1103 1151 0.400000 +1103 1164 0.400000 +1103 1175 0.400000 +1103 1200 0.400000 +1103 1230 0.400000 +1103 1264 0.400000 +1103 1286 0.400000 +1103 1326 0.400000 +1103 1368 0.400000 +1103 1392 0.400000 +1103 1626 0.400000 +1103 1631 0.400000 +1103 1665 0.400000 +1103 1685 0.400000 +1103 1779 0.400000 +1103 1780 0.400000 +1103 1784 0.400000 +1103 1873 0.400000 +1103 1902 0.400000 +1103 1911 0.400000 +1103 1982 0.400000 +1103 1984 0.400000 +1103 1987 0.400000 +1103 2022 0.400000 +1103 2080 0.400000 +1103 2188 0.400000 +1103 2223 0.400000 +1103 2333 0.400000 +1103 2515 0.400000 +1103 2586 0.400000 +1103 2637 0.400000 +1103 2664 0.400000 +1103 2714 0.400000 +1103 2804 0.400000 +1103 2890 0.400000 +1103 2893 0.400000 +1103 2957 0.400000 +1103 2971 0.400000 +1103 2975 0.400000 +1103 3003 0.400000 +1103 3005 0.400000 +1103 3048 0.400000 +1103 3056 0.400000 +1103 3106 0.400000 +1104 15 0.400000 +1104 21 0.400000 +1104 38 0.400000 +1104 102 0.400000 +1104 456 0.400000 +1104 528 0.400000 +1104 548 0.400000 +1104 574 0.400000 +1104 581 0.400000 +1104 614 0.400000 +1104 621 0.400000 +1104 703 0.400000 +1104 771 0.400000 +1104 852 0.400000 +1104 888 0.400000 +1104 898 0.400000 +1104 987 0.400000 +1104 1027 0.400000 +1104 1079 0.400000 +1104 1090 0.400000 +1104 1255 0.400000 +1104 1280 0.400000 +1104 1544 0.400000 +1104 1589 0.400000 +1104 1931 0.400000 +1104 2079 0.400000 +1104 2173 0.400000 +1104 2240 0.400000 +1104 2397 0.400000 +1104 2410 0.400000 +1104 2411 0.400000 +1104 2599 0.400000 +1104 2629 0.400000 +1104 2693 0.400000 +1104 2710 0.400000 +1104 2802 0.400000 +1104 2806 0.400000 +1104 2820 0.400000 +1104 2836 0.400000 +1104 2841 0.400000 +1104 2865 0.400000 +1104 2991 0.400000 +1104 3004 0.400000 +1104 3010 0.400000 +1104 3013 0.400000 +1105 5 0.400000 +1105 69 0.400000 +1105 130 0.400000 +1105 138 0.400000 +1105 148 0.400000 +1105 281 0.400000 +1105 355 0.400000 +1105 396 0.400000 +1105 403 0.400000 +1105 404 0.400000 +1105 433 0.400000 +1105 439 0.400000 +1105 444 0.400000 +1105 449 0.400000 +1105 497 0.400000 +1105 582 0.400000 +1105 613 0.400000 +1105 769 0.400000 +1105 817 0.400000 +1105 915 0.400000 +1105 935 0.400000 +1105 1020 0.400000 +1105 1062 0.400000 +1105 1158 0.400000 +1105 1166 0.400000 +1105 1175 0.400000 +1105 1197 0.400000 +1105 1234 0.400000 +1105 1285 0.400000 +1105 1289 0.400000 +1105 1292 0.400000 +1105 1328 0.400000 +1105 1377 0.400000 +1105 1421 0.400000 +1105 1453 0.400000 +1105 1522 0.400000 +1105 1558 0.400000 +1105 1640 0.400000 +1105 1645 0.400000 +1105 1657 0.400000 +1105 1664 0.400000 +1105 1726 0.400000 +1105 1731 0.400000 +1105 1752 0.400000 +1105 1902 0.400000 +1105 1955 0.400000 +1105 2009 0.400000 +1105 2164 0.400000 +1105 2193 0.400000 +1105 2244 0.400000 +1105 2247 0.400000 +1105 2263 0.400000 +1105 2322 0.400000 +1105 2344 0.400000 +1105 2466 0.400000 +1105 2492 0.400000 +1105 2530 0.400000 +1105 2709 0.400000 +1105 2760 0.400000 +1105 2894 0.400000 +1105 2982 0.400000 +1105 3021 0.400000 +1105 3030 0.400000 +1105 3040 0.400000 +1105 3096 0.400000 +1106 31 0.400000 +1106 91 0.400000 +1106 95 0.400000 +1106 138 0.400000 +1106 169 0.400000 +1106 196 0.400000 +1106 330 0.400000 +1106 337 0.400000 +1106 342 0.400000 +1106 490 0.400000 +1106 734 0.400000 +1106 800 0.400000 +1106 923 0.400000 +1106 1056 0.400000 +1106 1072 0.400000 +1106 1078 0.400000 +1106 1111 0.400000 +1106 1142 0.400000 +1106 1221 0.400000 +1106 1246 0.400000 +1106 1252 0.400000 +1106 1358 0.400000 +1106 1374 0.400000 +1106 1479 0.400000 +1106 1485 0.400000 +1106 1532 0.400000 +1106 1683 0.400000 +1106 1696 0.400000 +1106 1701 0.400000 +1106 1823 0.400000 +1106 1917 0.400000 +1106 2002 0.400000 +1106 2004 0.400000 +1106 2031 0.400000 +1106 2044 0.400000 +1106 2104 0.400000 +1106 2107 0.400000 +1106 2111 0.400000 +1106 2223 0.400000 +1106 2275 0.400000 +1106 2282 0.400000 +1106 2310 0.400000 +1106 2426 0.400000 +1106 2485 0.400000 +1106 2512 0.400000 +1106 2671 0.400000 +1106 2709 0.400000 +1106 2768 0.400000 +1106 2799 0.400000 +1106 2876 0.400000 +1106 2927 0.400000 +1106 2947 0.400000 +1106 3150 0.400000 +1106 3172 0.400000 +1106 3192 0.400000 +1107 36 0.400000 +1107 66 0.400000 +1107 115 0.400000 +1107 128 0.400000 +1107 136 0.400000 +1107 359 0.400000 +1107 575 0.400000 +1107 579 0.400000 +1107 708 0.400000 +1107 715 0.400000 +1107 786 0.400000 +1107 813 0.400000 +1107 1000 0.400000 +1107 1160 0.400000 +1107 1224 0.400000 +1107 1235 0.400000 +1107 1242 0.400000 +1107 1322 0.400000 +1107 1397 0.400000 +1107 1462 0.400000 +1107 1494 0.400000 +1107 1539 0.400000 +1107 1570 0.400000 +1107 1575 0.400000 +1107 1576 0.400000 +1107 1674 0.400000 +1107 1690 0.400000 +1107 1770 0.400000 +1107 1834 0.400000 +1107 1835 0.400000 +1107 1861 0.400000 +1107 1870 0.400000 +1107 1971 0.400000 +1107 2100 0.400000 +1107 2140 0.400000 +1107 2149 0.400000 +1107 2166 0.400000 +1107 2229 0.400000 +1107 2273 0.400000 +1107 2292 0.400000 +1107 2491 0.400000 +1107 2521 0.400000 +1107 2612 0.400000 +1107 2639 0.400000 +1107 2660 0.400000 +1107 2691 0.400000 +1107 2692 0.400000 +1107 2914 0.400000 +1107 3040 0.400000 +1107 3079 0.400000 +1107 3087 0.400000 +1107 3154 0.400000 +1107 3178 0.400000 +1108 31 0.400000 +1108 74 0.400000 +1108 119 0.400000 +1108 136 0.400000 +1108 147 0.400000 +1108 305 0.400000 +1108 350 0.400000 +1108 380 0.400000 +1108 471 0.400000 +1108 473 0.400000 +1108 503 0.400000 +1108 545 0.400000 +1108 565 0.400000 +1108 595 0.400000 +1108 629 0.400000 +1108 640 0.400000 +1108 652 0.400000 +1108 704 0.400000 +1108 733 0.400000 +1108 756 0.400000 +1108 761 0.400000 +1108 767 0.400000 +1108 805 0.400000 +1108 840 0.400000 +1108 878 0.400000 +1108 898 0.400000 +1108 906 0.400000 +1108 953 0.400000 +1108 1007 0.400000 +1108 1016 0.400000 +1108 1081 0.400000 +1108 1112 0.400000 +1108 1134 0.400000 +1108 1136 0.400000 +1108 1171 0.400000 +1108 1214 0.400000 +1108 1235 0.400000 +1108 1237 0.400000 +1108 1381 0.400000 +1108 1475 0.400000 +1108 1495 0.400000 +1108 1557 0.400000 +1108 1645 0.400000 +1108 1749 0.400000 +1108 1756 0.400000 +1108 1979 0.400000 +1108 2006 0.400000 +1108 2065 0.400000 +1108 2110 0.400000 +1108 2128 0.400000 +1108 2350 0.400000 +1108 2383 0.400000 +1108 2763 0.400000 +1108 2804 0.400000 +1108 2807 0.400000 +1108 2851 0.400000 +1108 2880 0.400000 +1108 2921 0.400000 +1108 2928 0.400000 +1108 2949 0.400000 +1108 3059 0.400000 +1108 3090 0.400000 +1108 3111 0.400000 +1108 3140 0.400000 +1108 3183 0.400000 +1109 36 0.400000 +1109 39 0.400000 +1109 51 0.400000 +1109 137 0.400000 +1109 212 0.400000 +1109 270 0.400000 +1109 280 0.400000 +1109 290 0.400000 +1109 323 0.400000 +1109 349 0.400000 +1109 365 0.400000 +1109 390 0.400000 +1109 394 0.400000 +1109 434 0.400000 +1109 447 0.400000 +1109 478 0.400000 +1109 556 0.400000 +1109 570 0.400000 +1109 626 0.400000 +1109 724 0.400000 +1109 749 0.400000 +1109 772 0.400000 +1109 774 0.400000 +1109 854 0.400000 +1109 869 0.400000 +1109 890 0.400000 +1109 921 0.400000 +1109 951 0.400000 +1109 986 0.400000 +1109 993 0.400000 +1109 1063 0.400000 +1109 1115 0.400000 +1109 1153 0.400000 +1109 1190 0.400000 +1109 1238 0.400000 +1109 1332 0.400000 +1109 1428 0.400000 +1109 1436 0.400000 +1109 1486 0.400000 +1109 1579 0.400000 +1109 1688 0.400000 +1109 1693 0.400000 +1109 1710 0.400000 +1109 1718 0.400000 +1109 1747 0.400000 +1109 1896 0.400000 +1109 1954 0.400000 +1109 1959 0.400000 +1109 1993 0.400000 +1109 2192 0.400000 +1109 2207 0.400000 +1109 2210 0.400000 +1109 2219 0.400000 +1109 2298 0.400000 +1109 2306 0.400000 +1109 2394 0.400000 +1109 2402 0.400000 +1109 2417 0.400000 +1109 2423 0.400000 +1109 2456 0.400000 +1109 2587 0.400000 +1109 2591 0.400000 +1109 2614 0.400000 +1109 2615 0.400000 +1109 2722 0.400000 +1109 2737 0.400000 +1109 2925 0.400000 +1110 6 0.400000 +1110 19 0.400000 +1110 29 0.400000 +1110 146 0.400000 +1110 154 0.400000 +1110 160 0.400000 +1110 163 0.400000 +1110 218 0.400000 +1110 243 0.400000 +1110 251 0.400000 +1110 359 0.400000 +1110 413 0.400000 +1110 426 0.400000 +1110 524 0.400000 +1110 534 0.400000 +1110 631 0.400000 +1110 652 0.400000 +1110 760 0.400000 +1110 790 0.400000 +1110 852 0.400000 +1110 883 0.400000 +1110 933 0.400000 +1110 947 0.400000 +1110 991 0.400000 +1110 1111 0.400000 +1110 1192 0.400000 +1110 1223 0.400000 +1110 1303 0.400000 +1110 1347 0.400000 +1110 1425 0.400000 +1110 1451 0.400000 +1110 1518 0.400000 +1110 1528 0.400000 +1110 1616 0.400000 +1110 1648 0.400000 +1110 1656 0.400000 +1110 1752 0.400000 +1110 1820 0.400000 +1110 1891 0.400000 +1110 1912 0.400000 +1110 2025 0.400000 +1110 2033 0.400000 +1110 2096 0.400000 +1110 2148 0.400000 +1110 2227 0.400000 +1110 2272 0.400000 +1110 2297 0.400000 +1110 2405 0.400000 +1110 2425 0.400000 +1110 2466 0.400000 +1110 2487 0.400000 +1110 2498 0.400000 +1110 2667 0.400000 +1110 2825 0.400000 +1110 2842 0.400000 +1110 2870 0.400000 +1110 2885 0.400000 +1110 2903 0.400000 +1110 2918 0.400000 +1110 3016 0.400000 +1110 3022 0.400000 +1110 3074 0.400000 +1110 3147 0.400000 +1110 3175 0.400000 +1110 3184 0.400000 +1110 3188 0.400000 +1111 22 0.400000 +1111 119 0.400000 +1111 135 0.400000 +1111 189 0.400000 +1111 279 0.400000 +1111 478 0.400000 +1111 598 0.400000 +1111 725 0.400000 +1111 760 0.400000 +1111 761 0.400000 +1111 864 0.400000 +1111 903 0.400000 +1111 918 0.400000 +1111 1026 0.400000 +1111 1126 0.400000 +1111 1187 0.400000 +1111 1250 0.400000 +1111 1256 0.400000 +1111 1326 0.400000 +1111 1332 0.400000 +1111 1411 0.400000 +1111 1498 0.400000 +1111 1502 0.400000 +1111 1514 0.400000 +1111 1629 0.400000 +1111 1669 0.400000 +1111 1735 0.400000 +1111 1754 0.400000 +1111 1784 0.400000 +1111 1798 0.400000 +1111 1803 0.400000 +1111 1830 0.400000 +1111 1839 0.400000 +1111 1854 0.400000 +1111 2044 0.400000 +1111 2151 0.400000 +1111 2169 0.400000 +1111 2211 0.400000 +1111 2247 0.400000 +1111 2284 0.400000 +1111 2332 0.400000 +1111 2385 0.400000 +1111 2402 0.400000 +1111 2449 0.400000 +1111 2681 0.400000 +1111 2706 0.400000 +1111 2707 0.400000 +1111 2714 0.400000 +1111 2725 0.400000 +1111 2726 0.400000 +1111 2737 0.400000 +1111 2820 0.400000 +1111 2882 0.400000 +1111 2902 0.400000 +1111 2941 0.400000 +1111 2977 0.400000 +1111 3006 0.400000 +1112 55 0.400000 +1112 86 0.400000 +1112 122 0.400000 +1112 178 0.400000 +1112 228 0.400000 +1112 330 0.400000 +1112 400 0.400000 +1112 416 0.400000 +1112 425 0.400000 +1112 443 0.400000 +1112 533 0.400000 +1112 599 0.400000 +1112 671 0.400000 +1112 680 0.400000 +1112 906 0.400000 +1112 925 0.400000 +1112 927 0.400000 +1112 1009 0.400000 +1112 1040 0.400000 +1112 1058 0.400000 +1112 1063 0.400000 +1112 1072 0.400000 +1112 1136 0.400000 +1112 1232 0.400000 +1112 1235 0.400000 +1112 1273 0.400000 +1112 1297 0.400000 +1112 1306 0.400000 +1112 1359 0.400000 +1112 1451 0.400000 +1112 1509 0.400000 +1112 1511 0.400000 +1112 1546 0.400000 +1112 1556 0.400000 +1112 1605 0.400000 +1112 1612 0.400000 +1112 1658 0.400000 +1112 1707 0.400000 +1112 1730 0.400000 +1112 1765 0.400000 +1112 1833 0.400000 +1112 1848 0.400000 +1112 1983 0.400000 +1112 2080 0.400000 +1112 2125 0.400000 +1112 2127 0.400000 +1112 2193 0.400000 +1112 2232 0.400000 +1112 2233 0.400000 +1112 2308 0.400000 +1112 2319 0.400000 +1112 2352 0.400000 +1112 2439 0.400000 +1112 2459 0.400000 +1112 2540 0.400000 +1112 2580 0.400000 +1112 2581 0.400000 +1112 2589 0.400000 +1112 2692 0.400000 +1112 2699 0.400000 +1112 2785 0.400000 +1112 2827 0.400000 +1112 2865 0.400000 +1112 2878 0.400000 +1112 2916 0.400000 +1112 2950 0.400000 +1112 2986 0.400000 +1112 3069 0.400000 +1112 3080 0.400000 +1112 3085 0.400000 +1112 3096 0.400000 +1112 3136 0.400000 +1112 3195 0.400000 +1113 11 0.400000 +1113 37 0.400000 +1113 39 0.400000 +1113 149 0.400000 +1113 168 0.400000 +1113 196 0.400000 +1113 210 0.400000 +1113 250 0.400000 +1113 326 0.400000 +1113 336 0.400000 +1113 379 0.400000 +1113 380 0.400000 +1113 394 0.400000 +1113 431 0.400000 +1113 453 0.400000 +1113 468 0.400000 +1113 477 0.400000 +1113 513 0.400000 +1113 516 0.400000 +1113 566 0.400000 +1113 661 0.400000 +1113 670 0.400000 +1113 673 0.400000 +1113 696 0.400000 +1113 766 0.400000 +1113 789 0.400000 +1113 793 0.400000 +1113 812 0.400000 +1113 830 0.400000 +1113 951 0.400000 +1113 1036 0.400000 +1113 1073 0.400000 +1113 1121 0.400000 +1113 1217 0.400000 +1113 1326 0.400000 +1113 1380 0.400000 +1113 1386 0.400000 +1113 1404 0.400000 +1113 1466 0.400000 +1113 1482 0.400000 +1113 1634 0.400000 +1113 1687 0.400000 +1113 1811 0.400000 +1113 1858 0.400000 +1113 1897 0.400000 +1113 2009 0.400000 +1113 2015 0.400000 +1113 2034 0.400000 +1113 2040 0.400000 +1113 2103 0.400000 +1113 2263 0.400000 +1113 2348 0.400000 +1113 2373 0.400000 +1113 2401 0.400000 +1113 2423 0.400000 +1113 2511 0.400000 +1113 2539 0.400000 +1113 2623 0.400000 +1113 2653 0.400000 +1113 2710 0.400000 +1113 2731 0.400000 +1113 2814 0.400000 +1113 2822 0.400000 +1113 2887 0.400000 +1113 2925 0.400000 +1113 2929 0.400000 +1113 2997 0.400000 +1113 3162 0.400000 +1113 3188 0.400000 +1114 42 0.400000 +1114 68 0.400000 +1114 174 0.400000 +1114 181 0.400000 +1114 192 0.400000 +1114 280 0.400000 +1114 410 0.400000 +1114 439 0.400000 +1114 470 0.400000 +1114 480 0.400000 +1114 491 0.400000 +1114 594 0.400000 +1114 610 0.400000 +1114 637 0.400000 +1114 714 0.400000 +1114 748 0.400000 +1114 814 0.400000 +1114 845 0.400000 +1114 852 0.400000 +1114 977 0.400000 +1114 978 0.400000 +1114 1060 0.400000 +1114 1213 0.400000 +1114 1218 0.400000 +1114 1442 0.400000 +1114 1490 0.400000 +1114 1627 0.400000 +1114 1718 0.400000 +1114 1778 0.400000 +1114 1812 0.400000 +1114 1833 0.400000 +1114 1873 0.400000 +1114 1939 0.400000 +1114 1974 0.400000 +1114 1997 0.400000 +1114 2191 0.400000 +1114 2323 0.400000 +1114 2348 0.400000 +1114 2372 0.400000 +1114 2380 0.400000 +1114 2541 0.400000 +1114 2574 0.400000 +1114 2652 0.400000 +1114 2658 0.400000 +1114 2683 0.400000 +1114 2870 0.400000 +1114 2925 0.400000 +1114 2955 0.400000 +1114 2956 0.400000 +1114 2993 0.400000 +1114 3076 0.400000 +1114 3080 0.400000 +1114 3085 0.400000 +1114 3090 0.400000 +1114 3117 0.400000 +1114 3129 0.400000 +1114 3136 0.400000 +1114 3165 0.400000 +1114 3192 0.400000 +1115 45 0.400000 +1115 59 0.400000 +1115 180 0.400000 +1115 208 0.400000 +1115 245 0.400000 +1115 248 0.400000 +1115 299 0.400000 +1115 398 0.400000 +1115 435 0.400000 +1115 511 0.400000 +1115 555 0.400000 +1115 571 0.400000 +1115 601 0.400000 +1115 602 0.400000 +1115 606 0.400000 +1115 668 0.400000 +1115 694 0.400000 +1115 717 0.400000 +1115 734 0.400000 +1115 738 0.400000 +1115 751 0.400000 +1115 759 0.400000 +1115 819 0.400000 +1115 843 0.400000 +1115 875 0.400000 +1115 877 0.400000 +1115 887 0.400000 +1115 896 0.400000 +1115 900 0.400000 +1115 908 0.400000 +1115 981 0.400000 +1115 1002 0.400000 +1115 1008 0.400000 +1115 1171 0.400000 +1115 1195 0.400000 +1115 1231 0.400000 +1115 1245 0.400000 +1115 1287 0.400000 +1115 1291 0.400000 +1115 1483 0.400000 +1115 1615 0.400000 +1115 1795 0.400000 +1115 1834 0.400000 +1115 1856 0.400000 +1115 1962 0.400000 +1115 1996 0.400000 +1115 2020 0.400000 +1115 2055 0.400000 +1115 2057 0.400000 +1115 2156 0.400000 +1115 2159 0.400000 +1115 2206 0.400000 +1115 2213 0.400000 +1115 2233 0.400000 +1115 2282 0.400000 +1115 2366 0.400000 +1115 2395 0.400000 +1115 2396 0.400000 +1115 2414 0.400000 +1115 2467 0.400000 +1115 2495 0.400000 +1115 2605 0.400000 +1115 2607 0.400000 +1115 2628 0.400000 +1115 2674 0.400000 +1115 2703 0.400000 +1115 2737 0.400000 +1115 2760 0.400000 +1115 2788 0.400000 +1115 2796 0.400000 +1115 2853 0.400000 +1115 2883 0.400000 +1115 2886 0.400000 +1115 2895 0.400000 +1115 2947 0.400000 +1115 3012 0.400000 +1115 3043 0.400000 +1115 3055 0.400000 +1115 3065 0.400000 +1115 3112 0.400000 +1115 3114 0.400000 +1115 3163 0.400000 +1115 3167 0.400000 +1115 3177 0.400000 +1116 34 0.400000 +1116 47 0.400000 +1116 131 0.400000 +1116 208 0.400000 +1116 209 0.400000 +1116 263 0.400000 +1116 266 0.400000 +1116 285 0.400000 +1116 312 0.400000 +1116 316 0.400000 +1116 381 0.400000 +1116 406 0.400000 +1116 427 0.400000 +1116 429 0.400000 +1116 491 0.400000 +1116 514 0.400000 +1116 586 0.400000 +1116 588 0.400000 +1116 678 0.400000 +1116 854 0.400000 +1116 868 0.400000 +1116 874 0.400000 +1116 881 0.400000 +1116 888 0.400000 +1116 1053 0.400000 +1116 1062 0.400000 +1116 1129 0.400000 +1116 1302 0.400000 +1116 1304 0.400000 +1116 1313 0.400000 +1116 1315 0.400000 +1116 1340 0.400000 +1116 1349 0.400000 +1116 1443 0.400000 +1116 1506 0.400000 +1116 1565 0.400000 +1116 1582 0.400000 +1116 1607 0.400000 +1116 1654 0.400000 +1116 1696 0.400000 +1116 1705 0.400000 +1116 1863 0.400000 +1116 1870 0.400000 +1116 1942 0.400000 +1116 1949 0.400000 +1116 1952 0.400000 +1116 1980 0.400000 +1116 2016 0.400000 +1116 2131 0.400000 +1116 2163 0.400000 +1116 2198 0.400000 +1116 2255 0.400000 +1116 2355 0.400000 +1116 2396 0.400000 +1116 2471 0.400000 +1116 2522 0.400000 +1116 2574 0.400000 +1116 2584 0.400000 +1116 2597 0.400000 +1116 2615 0.400000 +1116 2656 0.400000 +1116 2666 0.400000 +1116 2667 0.400000 +1116 2830 0.400000 +1116 2849 0.400000 +1116 2858 0.400000 +1116 2883 0.400000 +1116 2888 0.400000 +1116 2911 0.400000 +1116 2981 0.400000 +1116 3118 0.400000 +1116 3167 0.400000 +1116 3168 0.400000 +1117 57 0.400000 +1117 221 0.400000 +1117 233 0.400000 +1117 260 0.400000 +1117 276 0.400000 +1117 421 0.400000 +1117 677 0.400000 +1117 736 0.400000 +1117 761 0.400000 +1117 818 0.400000 +1117 840 0.400000 +1117 854 0.400000 +1117 905 0.400000 +1117 1012 0.400000 +1117 1064 0.400000 +1117 1149 0.400000 +1117 1329 0.400000 +1117 1393 0.400000 +1117 1511 0.400000 +1117 1515 0.400000 +1117 1540 0.400000 +1117 1556 0.400000 +1117 1612 0.400000 +1117 1797 0.400000 +1117 1808 0.400000 +1117 1825 0.400000 +1117 1869 0.400000 +1117 1878 0.400000 +1117 2064 0.400000 +1117 2131 0.400000 +1117 2140 0.400000 +1117 2150 0.400000 +1117 2289 0.400000 +1117 2372 0.400000 +1117 2374 0.400000 +1117 2383 0.400000 +1117 2414 0.400000 +1117 2499 0.400000 +1117 2503 0.400000 +1117 2518 0.400000 +1117 2567 0.400000 +1117 2598 0.400000 +1117 2610 0.400000 +1117 2650 0.400000 +1117 2738 0.400000 +1117 2744 0.400000 +1117 2790 0.400000 +1117 2823 0.400000 +1117 2847 0.400000 +1117 2853 0.400000 +1117 2861 0.400000 +1117 2902 0.400000 +1117 2984 0.400000 +1117 3038 0.400000 +1117 3105 0.400000 +1117 3131 0.400000 +1117 3173 0.400000 +1118 26 0.400000 +1118 77 0.400000 +1118 84 0.400000 +1118 102 0.400000 +1118 174 0.400000 +1118 252 0.400000 +1118 293 0.400000 +1118 357 0.400000 +1118 401 0.400000 +1118 501 0.400000 +1118 502 0.400000 +1118 547 0.400000 +1118 622 0.400000 +1118 707 0.400000 +1118 725 0.400000 +1118 732 0.400000 +1118 754 0.400000 +1118 826 0.400000 +1118 878 0.400000 +1118 909 0.400000 +1118 936 0.400000 +1118 940 0.400000 +1118 1013 0.400000 +1118 1048 0.400000 +1118 1102 0.400000 +1118 1164 0.400000 +1118 1235 0.400000 +1118 1293 0.400000 +1118 1299 0.400000 +1118 1305 0.400000 +1118 1316 0.400000 +1118 1379 0.400000 +1118 1412 0.400000 +1118 1524 0.400000 +1118 1547 0.400000 +1118 1584 0.400000 +1118 1653 0.400000 +1118 1663 0.400000 +1118 1689 0.400000 +1118 1699 0.400000 +1118 1808 0.400000 +1118 1831 0.400000 +1118 1847 0.400000 +1118 1902 0.400000 +1118 2091 0.400000 +1118 2100 0.400000 +1118 2131 0.400000 +1118 2168 0.400000 +1118 2186 0.400000 +1118 2247 0.400000 +1118 2263 0.400000 +1118 2306 0.400000 +1118 2350 0.400000 +1118 2365 0.400000 +1118 2421 0.400000 +1118 2441 0.400000 +1118 2637 0.400000 +1118 2651 0.400000 +1118 2666 0.400000 +1118 2710 0.400000 +1118 2782 0.400000 +1118 2838 0.400000 +1118 2839 0.400000 +1118 2843 0.400000 +1118 2848 0.400000 +1118 2884 0.400000 +1118 2891 0.400000 +1118 2916 0.400000 +1118 2972 0.400000 +1118 2976 0.400000 +1118 2981 0.400000 +1118 3042 0.400000 +1118 3097 0.400000 +1118 3123 0.400000 +1118 3132 0.400000 +1119 47 0.400000 +1119 113 0.400000 +1119 187 0.400000 +1119 194 0.400000 +1119 205 0.400000 +1119 271 0.400000 +1119 329 0.400000 +1119 333 0.400000 +1119 384 0.400000 +1119 552 0.400000 +1119 556 0.400000 +1119 653 0.400000 +1119 789 0.400000 +1119 799 0.400000 +1119 914 0.400000 +1119 926 0.400000 +1119 965 0.400000 +1119 986 0.400000 +1119 989 0.400000 +1119 1030 0.400000 +1119 1303 0.400000 +1119 1307 0.400000 +1119 1352 0.400000 +1119 1353 0.400000 +1119 1392 0.400000 +1119 1486 0.400000 +1119 1534 0.400000 +1119 1565 0.400000 +1119 1575 0.400000 +1119 1591 0.400000 +1119 1658 0.400000 +1119 1666 0.400000 +1119 1818 0.400000 +1119 1822 0.400000 +1119 1853 0.400000 +1119 1856 0.400000 +1119 2028 0.400000 +1119 2093 0.400000 +1119 2140 0.400000 +1119 2176 0.400000 +1119 2215 0.400000 +1119 2234 0.400000 +1119 2377 0.400000 +1119 2427 0.400000 +1119 2443 0.400000 +1119 2508 0.400000 +1119 2536 0.400000 +1119 2631 0.400000 +1119 2782 0.400000 +1119 2788 0.400000 +1119 2810 0.400000 +1119 2841 0.400000 +1119 2863 0.400000 +1119 3029 0.400000 +1120 112 0.400000 +1120 148 0.400000 +1120 161 0.400000 +1120 199 0.400000 +1120 420 0.400000 +1120 423 0.400000 +1120 465 0.400000 +1120 690 0.400000 +1120 697 0.400000 +1120 743 0.400000 +1120 798 0.400000 +1120 825 0.400000 +1120 905 0.400000 +1120 978 0.400000 +1120 1113 0.400000 +1120 1115 0.400000 +1120 1124 0.400000 +1120 1159 0.400000 +1120 1254 0.400000 +1120 1301 0.400000 +1120 1325 0.400000 +1120 1330 0.400000 +1120 1439 0.400000 +1120 1445 0.400000 +1120 1491 0.400000 +1120 1522 0.400000 +1120 1580 0.400000 +1120 1596 0.400000 +1120 1667 0.400000 +1120 1675 0.400000 +1120 1697 0.400000 +1120 1784 0.400000 +1120 1882 0.400000 +1120 1891 0.400000 +1120 1893 0.400000 +1120 1961 0.400000 +1120 2033 0.400000 +1120 2263 0.400000 +1120 2325 0.400000 +1120 2334 0.400000 +1120 2406 0.400000 +1120 2501 0.400000 +1120 2567 0.400000 +1120 2575 0.400000 +1120 2652 0.400000 +1120 2656 0.400000 +1120 2712 0.400000 +1120 2745 0.400000 +1120 2756 0.400000 +1120 2816 0.400000 +1120 2993 0.400000 +1120 3007 0.400000 +1120 3030 0.400000 +1120 3154 0.400000 +1120 3179 0.400000 +1121 37 0.400000 +1121 55 0.400000 +1121 82 0.400000 +1121 119 0.400000 +1121 160 0.400000 +1121 201 0.400000 +1121 254 0.400000 +1121 325 0.400000 +1121 504 0.400000 +1121 587 0.400000 +1121 597 0.400000 +1121 719 0.400000 +1121 759 0.400000 +1121 834 0.400000 +1121 885 0.400000 +1121 905 0.400000 +1121 984 0.400000 +1121 1005 0.400000 +1121 1033 0.400000 +1121 1123 0.400000 +1121 1128 0.400000 +1121 1130 0.400000 +1121 1150 0.400000 +1121 1174 0.400000 +1121 1242 0.400000 +1121 1307 0.400000 +1121 1415 0.400000 +1121 1475 0.400000 +1121 1493 0.400000 +1121 1499 0.400000 +1121 1558 0.400000 +1121 1578 0.400000 +1121 1586 0.400000 +1121 1676 0.400000 +1121 1684 0.400000 +1121 1721 0.400000 +1121 1747 0.400000 +1121 1772 0.400000 +1121 1788 0.400000 +1121 1867 0.400000 +1121 1869 0.400000 +1121 1886 0.400000 +1121 1941 0.400000 +1121 2013 0.400000 +1121 2032 0.400000 +1121 2079 0.400000 +1121 2091 0.400000 +1121 2115 0.400000 +1121 2147 0.400000 +1121 2173 0.400000 +1121 2225 0.400000 +1121 2240 0.400000 +1121 2369 0.400000 +1121 2424 0.400000 +1121 2442 0.400000 +1121 2444 0.400000 +1121 2468 0.400000 +1121 2469 0.400000 +1121 2502 0.400000 +1121 2552 0.400000 +1121 2558 0.400000 +1121 2588 0.400000 +1121 2609 0.400000 +1121 2631 0.400000 +1121 2744 0.400000 +1121 2790 0.400000 +1121 2833 0.400000 +1121 2850 0.400000 +1121 2925 0.400000 +1121 2928 0.400000 +1121 3012 0.400000 +1121 3054 0.400000 +1121 3071 0.400000 +1121 3123 0.400000 +1121 3132 0.400000 +1122 8 0.400000 +1122 136 0.400000 +1122 235 0.400000 +1122 258 0.400000 +1122 282 0.400000 +1122 328 0.400000 +1122 333 0.400000 +1122 344 0.400000 +1122 381 0.400000 +1122 387 0.400000 +1122 452 0.400000 +1122 460 0.400000 +1122 633 0.400000 +1122 655 0.400000 +1122 670 0.400000 +1122 709 0.400000 +1122 774 0.400000 +1122 796 0.400000 +1122 802 0.400000 +1122 979 0.400000 +1122 1001 0.400000 +1122 1052 0.400000 +1122 1063 0.400000 +1122 1119 0.400000 +1122 1122 0.400000 +1122 1229 0.400000 +1122 1312 0.400000 +1122 1448 0.400000 +1122 1477 0.400000 +1122 1482 0.400000 +1122 1522 0.400000 +1122 1531 0.400000 +1122 1585 0.400000 +1122 1681 0.400000 +1122 1698 0.400000 +1122 1712 0.400000 +1122 1779 0.400000 +1122 1788 0.400000 +1122 1976 0.400000 +1122 2001 0.400000 +1122 2009 0.400000 +1122 2025 0.400000 +1122 2045 0.400000 +1122 2080 0.400000 +1122 2118 0.400000 +1122 2122 0.400000 +1122 2159 0.400000 +1122 2227 0.400000 +1122 2290 0.400000 +1122 2360 0.400000 +1122 2362 0.400000 +1122 2430 0.400000 +1122 2814 0.400000 +1122 2934 0.400000 +1122 2977 0.400000 +1122 3006 0.400000 +1122 3020 0.400000 +1122 3024 0.400000 +1122 3054 0.400000 +1122 3111 0.400000 +1122 3190 0.400000 +1122 3194 0.400000 +1123 34 0.400000 +1123 110 0.400000 +1123 240 0.400000 +1123 353 0.400000 +1123 379 0.400000 +1123 425 0.400000 +1123 555 0.400000 +1123 568 0.400000 +1123 693 0.400000 +1123 720 0.400000 +1123 797 0.400000 +1123 829 0.400000 +1123 850 0.400000 +1123 891 0.400000 +1123 1057 0.400000 +1123 1072 0.400000 +1123 1106 0.400000 +1123 1150 0.400000 +1123 1180 0.400000 +1123 1184 0.400000 +1123 1217 0.400000 +1123 1285 0.400000 +1123 1302 0.400000 +1123 1403 0.400000 +1123 1507 0.400000 +1123 1529 0.400000 +1123 1557 0.400000 +1123 1576 0.400000 +1123 1614 0.400000 +1123 1657 0.400000 +1123 1703 0.400000 +1123 1730 0.400000 +1123 1781 0.400000 +1123 1796 0.400000 +1123 1842 0.400000 +1123 1855 0.400000 +1123 1935 0.400000 +1123 2042 0.400000 +1123 2091 0.400000 +1123 2154 0.400000 +1123 2159 0.400000 +1123 2259 0.400000 +1123 2315 0.400000 +1123 2355 0.400000 +1123 2389 0.400000 +1123 2527 0.400000 +1123 2585 0.400000 +1123 2609 0.400000 +1123 2777 0.400000 +1123 2795 0.400000 +1123 2803 0.400000 +1123 2856 0.400000 +1123 2944 0.400000 +1123 2977 0.400000 +1123 3127 0.400000 +1123 3140 0.400000 +1123 3142 0.400000 +1124 66 0.400000 +1124 228 0.400000 +1124 230 0.400000 +1124 409 0.400000 +1124 527 0.400000 +1124 528 0.400000 +1124 538 0.400000 +1124 652 0.400000 +1124 720 0.400000 +1124 745 0.400000 +1124 786 0.400000 +1124 804 0.400000 +1124 843 0.400000 +1124 894 0.400000 +1124 895 0.400000 +1124 975 0.400000 +1124 994 0.400000 +1124 1024 0.400000 +1124 1029 0.400000 +1124 1115 0.400000 +1124 1121 0.400000 +1124 1152 0.400000 +1124 1178 0.400000 +1124 1185 0.400000 +1124 1322 0.400000 +1124 1352 0.400000 +1124 1368 0.400000 +1124 1432 0.400000 +1124 1459 0.400000 +1124 1500 0.400000 +1124 1573 0.400000 +1124 1580 0.400000 +1124 1591 0.400000 +1124 1629 0.400000 +1124 1631 0.400000 +1124 1691 0.400000 +1124 1772 0.400000 +1124 1793 0.400000 +1124 1904 0.400000 +1124 1929 0.400000 +1124 1933 0.400000 +1124 2005 0.400000 +1124 2085 0.400000 +1124 2112 0.400000 +1124 2154 0.400000 +1124 2199 0.400000 +1124 2204 0.400000 +1124 2217 0.400000 +1124 2239 0.400000 +1124 2316 0.400000 +1124 2371 0.400000 +1124 2378 0.400000 +1124 2408 0.400000 +1124 2466 0.400000 +1124 2515 0.400000 +1124 2536 0.400000 +1124 2631 0.400000 +1124 2706 0.400000 +1124 2745 0.400000 +1124 2750 0.400000 +1124 2765 0.400000 +1124 2767 0.400000 +1124 2828 0.400000 +1124 2887 0.400000 +1124 2941 0.400000 +1124 2947 0.400000 +1124 2981 0.400000 +1124 3094 0.400000 +1124 3115 0.400000 +1125 47 0.400000 +1125 140 0.400000 +1125 192 0.400000 +1125 293 0.400000 +1125 388 0.400000 +1125 405 0.400000 +1125 491 0.400000 +1125 638 0.400000 +1125 645 0.400000 +1125 689 0.400000 +1125 711 0.400000 +1125 808 0.400000 +1125 993 0.400000 +1125 1000 0.400000 +1125 1075 0.400000 +1125 1163 0.400000 +1125 1185 0.400000 +1125 1419 0.400000 +1125 1432 0.400000 +1125 1528 0.400000 +1125 1534 0.400000 +1125 1563 0.400000 +1125 1597 0.400000 +1125 1652 0.400000 +1125 1693 0.400000 +1125 1719 0.400000 +1125 1730 0.400000 +1125 1759 0.400000 +1125 1862 0.400000 +1125 1969 0.400000 +1125 2027 0.400000 +1125 2037 0.400000 +1125 2039 0.400000 +1125 2124 0.400000 +1125 2184 0.400000 +1125 2193 0.400000 +1125 2333 0.400000 +1125 2567 0.400000 +1125 2578 0.400000 +1125 2588 0.400000 +1125 2603 0.400000 +1125 2685 0.400000 +1125 2706 0.400000 +1125 2707 0.400000 +1125 2708 0.400000 +1125 2723 0.400000 +1125 2957 0.400000 +1125 3054 0.400000 +1125 3058 0.400000 +1125 3062 0.400000 +1125 3095 0.400000 +1125 3123 0.400000 +1125 3188 0.400000 +1125 3196 0.400000 +1126 8 0.400000 +1126 19 0.400000 +1126 53 0.400000 +1126 65 0.400000 +1126 96 0.400000 +1126 157 0.400000 +1126 187 0.400000 +1126 301 0.400000 +1126 312 0.400000 +1126 356 0.400000 +1126 410 0.400000 +1126 461 0.400000 +1126 525 0.400000 +1126 528 0.400000 +1126 547 0.400000 +1126 572 0.400000 +1126 574 0.400000 +1126 616 0.400000 +1126 666 0.400000 +1126 704 0.400000 +1126 723 0.400000 +1126 728 0.400000 +1126 763 0.400000 +1126 812 0.400000 +1126 836 0.400000 +1126 876 0.400000 +1126 944 0.400000 +1126 947 0.400000 +1126 983 0.400000 +1126 1004 0.400000 +1126 1012 0.400000 +1126 1023 0.400000 +1126 1043 0.400000 +1126 1071 0.400000 +1126 1088 0.400000 +1126 1149 0.400000 +1126 1283 0.400000 +1126 1293 0.400000 +1126 1303 0.400000 +1126 1329 0.400000 +1126 1350 0.400000 +1126 1423 0.400000 +1126 1441 0.400000 +1126 1508 0.400000 +1126 1513 0.400000 +1126 1611 0.400000 +1126 1654 0.400000 +1126 1662 0.400000 +1126 1670 0.400000 +1126 1700 0.400000 +1126 1734 0.400000 +1126 1736 0.400000 +1126 1843 0.400000 +1126 1911 0.400000 +1126 1953 0.400000 +1126 2019 0.400000 +1126 2024 0.400000 +1126 2124 0.400000 +1126 2180 0.400000 +1126 2293 0.400000 +1126 2322 0.400000 +1126 2395 0.400000 +1126 2540 0.400000 +1126 2632 0.400000 +1126 2638 0.400000 +1126 2684 0.400000 +1126 2703 0.400000 +1126 2777 0.400000 +1126 2915 0.400000 +1126 2945 0.400000 +1126 3008 0.400000 +1126 3018 0.400000 +1126 3075 0.400000 +1126 3087 0.400000 +1126 3107 0.400000 +1126 3173 0.400000 +1127 115 0.400000 +1127 151 0.400000 +1127 218 0.400000 +1127 272 0.400000 +1127 300 0.400000 +1127 327 0.400000 +1127 407 0.400000 +1127 628 0.400000 +1127 639 0.400000 +1127 695 0.400000 +1127 779 0.400000 +1127 890 0.400000 +1127 899 0.400000 +1127 905 0.400000 +1127 910 0.400000 +1127 934 0.400000 +1127 1036 0.400000 +1127 1079 0.400000 +1127 1196 0.400000 +1127 1254 0.400000 +1127 1270 0.400000 +1127 1450 0.400000 +1127 1463 0.400000 +1127 1511 0.400000 +1127 1625 0.400000 +1127 1637 0.400000 +1127 1763 0.400000 +1127 1895 0.400000 +1127 2009 0.400000 +1127 2018 0.400000 +1127 2041 0.400000 +1127 2160 0.400000 +1127 2174 0.400000 +1127 2268 0.400000 +1127 2287 0.400000 +1127 2349 0.400000 +1127 2353 0.400000 +1127 2461 0.400000 +1127 2495 0.400000 +1127 2532 0.400000 +1127 2551 0.400000 +1127 2583 0.400000 +1127 2596 0.400000 +1127 2690 0.400000 +1127 2703 0.400000 +1127 2812 0.400000 +1127 2826 0.400000 +1127 2891 0.400000 +1127 2925 0.400000 +1127 2943 0.400000 +1127 3056 0.400000 +1127 3065 0.400000 +1127 3199 0.400000 +1128 121 0.400000 +1128 141 0.400000 +1128 170 0.400000 +1128 214 0.400000 +1128 244 0.400000 +1128 256 0.400000 +1128 341 0.400000 +1128 362 0.400000 +1128 363 0.400000 +1128 400 0.400000 +1128 486 0.400000 +1128 530 0.400000 +1128 567 0.400000 +1128 653 0.400000 +1128 696 0.400000 +1128 725 0.400000 +1128 826 0.400000 +1128 844 0.400000 +1128 987 0.400000 +1128 994 0.400000 +1128 1026 0.400000 +1128 1060 0.400000 +1128 1061 0.400000 +1128 1172 0.400000 +1128 1194 0.400000 +1128 1212 0.400000 +1128 1229 0.400000 +1128 1376 0.400000 +1128 1403 0.400000 +1128 1423 0.400000 +1128 1428 0.400000 +1128 1499 0.400000 +1128 1572 0.400000 +1128 1626 0.400000 +1128 1747 0.400000 +1128 1750 0.400000 +1128 1755 0.400000 +1128 1760 0.400000 +1128 1779 0.400000 +1128 1787 0.400000 +1128 1826 0.400000 +1128 1848 0.400000 +1128 1849 0.400000 +1128 1888 0.400000 +1128 1901 0.400000 +1128 1975 0.400000 +1128 2139 0.400000 +1128 2162 0.400000 +1128 2168 0.400000 +1128 2213 0.400000 +1128 2247 0.400000 +1128 2249 0.400000 +1128 2349 0.400000 +1128 2445 0.400000 +1128 2490 0.400000 +1128 2530 0.400000 +1128 2543 0.400000 +1128 2545 0.400000 +1128 2637 0.400000 +1128 2638 0.400000 +1128 2703 0.400000 +1128 2744 0.400000 +1128 2763 0.400000 +1128 2791 0.400000 +1128 2806 0.400000 +1128 2842 0.400000 +1128 2851 0.400000 +1128 2965 0.400000 +1128 2981 0.400000 +1128 2993 0.400000 +1129 71 0.400000 +1129 74 0.400000 +1129 252 0.400000 +1129 286 0.400000 +1129 334 0.400000 +1129 338 0.400000 +1129 377 0.400000 +1129 403 0.400000 +1129 505 0.400000 +1129 528 0.400000 +1129 595 0.400000 +1129 617 0.400000 +1129 633 0.400000 +1129 743 0.400000 +1129 747 0.400000 +1129 763 0.400000 +1129 822 0.400000 +1129 845 0.400000 +1129 1015 0.400000 +1129 1042 0.400000 +1129 1084 0.400000 +1129 1343 0.400000 +1129 1355 0.400000 +1129 1378 0.400000 +1129 1436 0.400000 +1129 1452 0.400000 +1129 1625 0.400000 +1129 1667 0.400000 +1129 1683 0.400000 +1129 1702 0.400000 +1129 1723 0.400000 +1129 1728 0.400000 +1129 1742 0.400000 +1129 1792 0.400000 +1129 1835 0.400000 +1129 1873 0.400000 +1129 2091 0.400000 +1129 2152 0.400000 +1129 2356 0.400000 +1129 2361 0.400000 +1129 2468 0.400000 +1129 2516 0.400000 +1129 2603 0.400000 +1129 2604 0.400000 +1129 2615 0.400000 +1129 2680 0.400000 +1129 2710 0.400000 +1129 2712 0.400000 +1129 2746 0.400000 +1129 2789 0.400000 +1129 2794 0.400000 +1129 2828 0.400000 +1129 2847 0.400000 +1129 2875 0.400000 +1129 2891 0.400000 +1129 2938 0.400000 +1129 2956 0.400000 +1129 3030 0.400000 +1129 3042 0.400000 +1129 3103 0.400000 +1129 3139 0.400000 +1129 3158 0.400000 +1129 3200 0.400000 +1130 114 0.400000 +1130 137 0.400000 +1130 170 0.400000 +1130 174 0.400000 +1130 183 0.400000 +1130 188 0.400000 +1130 242 0.400000 +1130 423 0.400000 +1130 451 0.400000 +1130 460 0.400000 +1130 463 0.400000 +1130 476 0.400000 +1130 568 0.400000 +1130 628 0.400000 +1130 630 0.400000 +1130 635 0.400000 +1130 784 0.400000 +1130 797 0.400000 +1130 886 0.400000 +1130 998 0.400000 +1130 1063 0.400000 +1130 1064 0.400000 +1130 1089 0.400000 +1130 1197 0.400000 +1130 1245 0.400000 +1130 1285 0.400000 +1130 1350 0.400000 +1130 1367 0.400000 +1130 1411 0.400000 +1130 1419 0.400000 +1130 1527 0.400000 +1130 1530 0.400000 +1130 1532 0.400000 +1130 1550 0.400000 +1130 1569 0.400000 +1130 1732 0.400000 +1130 1752 0.400000 +1130 1801 0.400000 +1130 1909 0.400000 +1130 2014 0.400000 +1130 2102 0.400000 +1130 2134 0.400000 +1130 2179 0.400000 +1130 2200 0.400000 +1130 2212 0.400000 +1130 2283 0.400000 +1130 2315 0.400000 +1130 2320 0.400000 +1130 2349 0.400000 +1130 2374 0.400000 +1130 2396 0.400000 +1130 2403 0.400000 +1130 2576 0.400000 +1130 2591 0.400000 +1130 2653 0.400000 +1130 2735 0.400000 +1130 2763 0.400000 +1130 2820 0.400000 +1130 2879 0.400000 +1130 2899 0.400000 +1130 2902 0.400000 +1130 2911 0.400000 +1130 2978 0.400000 +1130 3050 0.400000 +1130 3055 0.400000 +1131 1 0.400000 +1131 54 0.400000 +1131 80 0.400000 +1131 123 0.400000 +1131 128 0.400000 +1131 136 0.400000 +1131 155 0.400000 +1131 258 0.400000 +1131 327 0.400000 +1131 329 0.400000 +1131 378 0.400000 +1131 408 0.400000 +1131 424 0.400000 +1131 459 0.400000 +1131 556 0.400000 +1131 624 0.400000 +1131 633 0.400000 +1131 643 0.400000 +1131 702 0.400000 +1131 703 0.400000 +1131 767 0.400000 +1131 859 0.400000 +1131 860 0.400000 +1131 887 0.400000 +1131 903 0.400000 +1131 908 0.400000 +1131 929 0.400000 +1131 977 0.400000 +1131 1071 0.400000 +1131 1113 0.400000 +1131 1143 0.400000 +1131 1181 0.400000 +1131 1194 0.400000 +1131 1198 0.400000 +1131 1260 0.400000 +1131 1290 0.400000 +1131 1299 0.400000 +1131 1333 0.400000 +1131 1460 0.400000 +1131 1476 0.400000 +1131 1522 0.400000 +1131 1541 0.400000 +1131 1544 0.400000 +1131 1546 0.400000 +1131 1570 0.400000 +1131 1600 0.400000 +1131 1683 0.400000 +1131 1686 0.400000 +1131 1712 0.400000 +1131 1720 0.400000 +1131 1748 0.400000 +1131 1757 0.400000 +1131 1779 0.400000 +1131 1802 0.400000 +1131 1855 0.400000 +1131 1876 0.400000 +1131 1999 0.400000 +1131 2008 0.400000 +1131 2015 0.400000 +1131 2021 0.400000 +1131 2025 0.400000 +1131 2059 0.400000 +1131 2130 0.400000 +1131 2272 0.400000 +1131 2279 0.400000 +1131 2314 0.400000 +1131 2359 0.400000 +1131 2377 0.400000 +1131 2390 0.400000 +1131 2398 0.400000 +1131 2405 0.400000 +1131 2489 0.400000 +1131 2504 0.400000 +1131 2528 0.400000 +1131 2691 0.400000 +1131 2746 0.400000 +1131 2765 0.400000 +1131 2825 0.400000 +1131 2879 0.400000 +1131 2889 0.400000 +1131 2897 0.400000 +1131 2931 0.400000 +1131 2942 0.400000 +1131 2960 0.400000 +1131 2983 0.400000 +1131 3044 0.400000 +1131 3053 0.400000 +1131 3077 0.400000 +1131 3080 0.400000 +1131 3090 0.400000 +1131 3186 0.400000 +1132 42 0.400000 +1132 78 0.400000 +1132 93 0.400000 +1132 162 0.400000 +1132 172 0.400000 +1132 219 0.400000 +1132 259 0.400000 +1132 261 0.400000 +1132 271 0.400000 +1132 302 0.400000 +1132 311 0.400000 +1132 330 0.400000 +1132 397 0.400000 +1132 440 0.400000 +1132 550 0.400000 +1132 570 0.400000 +1132 586 0.400000 +1132 612 0.400000 +1132 689 0.400000 +1132 693 0.400000 +1132 717 0.400000 +1132 738 0.400000 +1132 745 0.400000 +1132 789 0.400000 +1132 916 0.400000 +1132 996 0.400000 +1132 1002 0.400000 +1132 1004 0.400000 +1132 1044 0.400000 +1132 1057 0.400000 +1132 1125 0.400000 +1132 1216 0.400000 +1132 1226 0.400000 +1132 1297 0.400000 +1132 1334 0.400000 +1132 1403 0.400000 +1132 1452 0.400000 +1132 1454 0.400000 +1132 1457 0.400000 +1132 1482 0.400000 +1132 1508 0.400000 +1132 1551 0.400000 +1132 1664 0.400000 +1132 1680 0.400000 +1132 1783 0.400000 +1132 1785 0.400000 +1132 1788 0.400000 +1132 1853 0.400000 +1132 1906 0.400000 +1132 1964 0.400000 +1132 1976 0.400000 +1132 2007 0.400000 +1132 2121 0.400000 +1132 2128 0.400000 +1132 2269 0.400000 +1132 2324 0.400000 +1132 2373 0.400000 +1132 2429 0.400000 +1132 2498 0.400000 +1132 2503 0.400000 +1132 2547 0.400000 +1132 2557 0.400000 +1132 2623 0.400000 +1132 2655 0.400000 +1132 2673 0.400000 +1132 2747 0.400000 +1132 2785 0.400000 +1132 2788 0.400000 +1132 2911 0.400000 +1132 3018 0.400000 +1132 3148 0.400000 +1133 3 0.400000 +1133 55 0.400000 +1133 69 0.400000 +1133 120 0.400000 +1133 158 0.400000 +1133 230 0.400000 +1133 263 0.400000 +1133 454 0.400000 +1133 495 0.400000 +1133 526 0.400000 +1133 566 0.400000 +1133 600 0.400000 +1133 695 0.400000 +1133 834 0.400000 +1133 835 0.400000 +1133 866 0.400000 +1133 912 0.400000 +1133 1000 0.400000 +1133 1009 0.400000 +1133 1068 0.400000 +1133 1089 0.400000 +1133 1092 0.400000 +1133 1097 0.400000 +1133 1152 0.400000 +1133 1317 0.400000 +1133 1370 0.400000 +1133 1404 0.400000 +1133 1491 0.400000 +1133 1529 0.400000 +1133 1568 0.400000 +1133 1659 0.400000 +1133 1738 0.400000 +1133 1762 0.400000 +1133 1904 0.400000 +1133 1936 0.400000 +1133 2006 0.400000 +1133 2029 0.400000 +1133 2071 0.400000 +1133 2133 0.400000 +1133 2148 0.400000 +1133 2157 0.400000 +1133 2212 0.400000 +1133 2226 0.400000 +1133 2234 0.400000 +1133 2261 0.400000 +1133 2297 0.400000 +1133 2337 0.400000 +1133 2414 0.400000 +1133 2463 0.400000 +1133 2508 0.400000 +1133 2598 0.400000 +1133 2642 0.400000 +1133 2660 0.400000 +1133 2796 0.400000 +1133 2801 0.400000 +1133 2834 0.400000 +1133 2953 0.400000 +1133 3020 0.400000 +1133 3021 0.400000 +1133 3159 0.400000 +1133 3162 0.400000 +1133 3194 0.400000 +1134 245 0.400000 +1134 247 0.400000 +1134 315 0.400000 +1134 352 0.400000 +1134 363 0.400000 +1134 422 0.400000 +1134 432 0.400000 +1134 503 0.400000 +1134 524 0.400000 +1134 573 0.400000 +1134 595 0.400000 +1134 602 0.400000 +1134 611 0.400000 +1134 656 0.400000 +1134 731 0.400000 +1134 760 0.400000 +1134 797 0.400000 +1134 866 0.400000 +1134 885 0.400000 +1134 917 0.400000 +1134 1045 0.400000 +1134 1048 0.400000 +1134 1067 0.400000 +1134 1130 0.400000 +1134 1136 0.400000 +1134 1155 0.400000 +1134 1305 0.400000 +1134 1318 0.400000 +1134 1333 0.400000 +1134 1334 0.400000 +1134 1349 0.400000 +1134 1361 0.400000 +1134 1385 0.400000 +1134 1423 0.400000 +1134 1429 0.400000 +1134 1446 0.400000 +1134 1519 0.400000 +1134 1530 0.400000 +1134 1589 0.400000 +1134 1686 0.400000 +1134 1782 0.400000 +1134 1806 0.400000 +1134 1815 0.400000 +1134 1877 0.400000 +1134 1891 0.400000 +1134 1992 0.400000 +1134 2086 0.400000 +1134 2112 0.400000 +1134 2159 0.400000 +1134 2291 0.400000 +1134 2369 0.400000 +1134 2400 0.400000 +1134 2614 0.400000 +1134 2631 0.400000 +1134 2674 0.400000 +1134 2724 0.400000 +1134 2734 0.400000 +1134 2804 0.400000 +1134 2813 0.400000 +1134 2861 0.400000 +1134 2870 0.400000 +1134 3035 0.400000 +1134 3036 0.400000 +1134 3103 0.400000 +1134 3106 0.400000 +1134 3127 0.400000 +1134 3174 0.400000 +1134 3197 0.400000 +1135 26 0.400000 +1135 59 0.400000 +1135 67 0.400000 +1135 174 0.400000 +1135 181 0.400000 +1135 201 0.400000 +1135 273 0.400000 +1135 308 0.400000 +1135 362 0.400000 +1135 393 0.400000 +1135 554 0.400000 +1135 560 0.400000 +1135 570 0.400000 +1135 572 0.400000 +1135 628 0.400000 +1135 778 0.400000 +1135 846 0.400000 +1135 847 0.400000 +1135 862 0.400000 +1135 1062 0.400000 +1135 1145 0.400000 +1135 1146 0.400000 +1135 1159 0.400000 +1135 1281 0.400000 +1135 1360 0.400000 +1135 1369 0.400000 +1135 1392 0.400000 +1135 1400 0.400000 +1135 1481 0.400000 +1135 1504 0.400000 +1135 1573 0.400000 +1135 1625 0.400000 +1135 1630 0.400000 +1135 1689 0.400000 +1135 1780 0.400000 +1135 1796 0.400000 +1135 1847 0.400000 +1135 1856 0.400000 +1135 1872 0.400000 +1135 1894 0.400000 +1135 1904 0.400000 +1135 1994 0.400000 +1135 2035 0.400000 +1135 2072 0.400000 +1135 2092 0.400000 +1135 2118 0.400000 +1135 2157 0.400000 +1135 2216 0.400000 +1135 2290 0.400000 +1135 2348 0.400000 +1135 2351 0.400000 +1135 2360 0.400000 +1135 2416 0.400000 +1135 2623 0.400000 +1135 2675 0.400000 +1135 2676 0.400000 +1135 2746 0.400000 +1135 2766 0.400000 +1135 2794 0.400000 +1135 2835 0.400000 +1135 2841 0.400000 +1135 2879 0.400000 +1135 3066 0.400000 +1135 3108 0.400000 +1135 3144 0.400000 +1135 3169 0.400000 +1136 36 0.400000 +1136 59 0.400000 +1136 71 0.400000 +1136 164 0.400000 +1136 186 0.400000 +1136 384 0.400000 +1136 473 0.400000 +1136 517 0.400000 +1136 678 0.400000 +1136 689 0.400000 +1136 699 0.400000 +1136 732 0.400000 +1136 745 0.400000 +1136 760 0.400000 +1136 838 0.400000 +1136 869 0.400000 +1136 1111 0.400000 +1136 1174 0.400000 +1136 1351 0.400000 +1136 1359 0.400000 +1136 1364 0.400000 +1136 1383 0.400000 +1136 1450 0.400000 +1136 1526 0.400000 +1136 1561 0.400000 +1136 1577 0.400000 +1136 1671 0.400000 +1136 1711 0.400000 +1136 1722 0.400000 +1136 1835 0.400000 +1136 1838 0.400000 +1136 1845 0.400000 +1136 1870 0.400000 +1136 1876 0.400000 +1136 1901 0.400000 +1136 1924 0.400000 +1136 1950 0.400000 +1136 1996 0.400000 +1136 2049 0.400000 +1136 2128 0.400000 +1136 2157 0.400000 +1136 2184 0.400000 +1136 2332 0.400000 +1136 2372 0.400000 +1136 2379 0.400000 +1136 2389 0.400000 +1136 2408 0.400000 +1136 2454 0.400000 +1136 2474 0.400000 +1136 2665 0.400000 +1136 2675 0.400000 +1136 2761 0.400000 +1136 2765 0.400000 +1136 2783 0.400000 +1136 2860 0.400000 +1136 2867 0.400000 +1136 2939 0.400000 +1136 2955 0.400000 +1136 3044 0.400000 +1136 3083 0.400000 +1136 3096 0.400000 +1137 29 0.400000 +1137 65 0.400000 +1137 119 0.400000 +1137 200 0.400000 +1137 229 0.400000 +1137 273 0.400000 +1137 422 0.400000 +1137 484 0.400000 +1137 541 0.400000 +1137 561 0.400000 +1137 617 0.400000 +1137 753 0.400000 +1137 761 0.400000 +1137 794 0.400000 +1137 853 0.400000 +1137 858 0.400000 +1137 878 0.400000 +1137 1029 0.400000 +1137 1045 0.400000 +1137 1057 0.400000 +1137 1110 0.400000 +1137 1137 0.400000 +1137 1185 0.400000 +1137 1217 0.400000 +1137 1258 0.400000 +1137 1507 0.400000 +1137 1512 0.400000 +1137 1620 0.400000 +1137 1638 0.400000 +1137 1720 0.400000 +1137 1774 0.400000 +1137 1802 0.400000 +1137 1853 0.400000 +1137 1885 0.400000 +1137 1989 0.400000 +1137 1998 0.400000 +1137 2096 0.400000 +1137 2198 0.400000 +1137 2220 0.400000 +1137 2256 0.400000 +1137 2273 0.400000 +1137 2292 0.400000 +1137 2325 0.400000 +1137 2458 0.400000 +1137 2519 0.400000 +1137 2806 0.400000 +1137 2819 0.400000 +1137 2842 0.400000 +1137 2865 0.400000 +1137 2958 0.400000 +1137 2999 0.400000 +1137 3013 0.400000 +1138 166 0.400000 +1138 170 0.400000 +1138 207 0.400000 +1138 225 0.400000 +1138 309 0.400000 +1138 394 0.400000 +1138 411 0.400000 +1138 488 0.400000 +1138 494 0.400000 +1138 672 0.400000 +1138 729 0.400000 +1138 750 0.400000 +1138 776 0.400000 +1138 821 0.400000 +1138 943 0.400000 +1138 951 0.400000 +1138 972 0.400000 +1138 1004 0.400000 +1138 1080 0.400000 +1138 1127 0.400000 +1138 1179 0.400000 +1138 1265 0.400000 +1138 1485 0.400000 +1138 1505 0.400000 +1138 1516 0.400000 +1138 1577 0.400000 +1138 1702 0.400000 +1138 1703 0.400000 +1138 1707 0.400000 +1138 1755 0.400000 +1138 1774 0.400000 +1138 1787 0.400000 +1138 1817 0.400000 +1138 1826 0.400000 +1138 1946 0.400000 +1138 1951 0.400000 +1138 1956 0.400000 +1138 2005 0.400000 +1138 2140 0.400000 +1138 2251 0.400000 +1138 2281 0.400000 +1138 2373 0.400000 +1138 2406 0.400000 +1138 2415 0.400000 +1138 2426 0.400000 +1138 2474 0.400000 +1138 2536 0.400000 +1138 2652 0.400000 +1138 2689 0.400000 +1138 2693 0.400000 +1138 2730 0.400000 +1138 2756 0.400000 +1138 2787 0.400000 +1138 2829 0.400000 +1138 2874 0.400000 +1138 2890 0.400000 +1138 2917 0.400000 +1138 2964 0.400000 +1138 3005 0.400000 +1138 3019 0.400000 +1138 3020 0.400000 +1139 172 0.400000 +1139 177 0.400000 +1139 195 0.400000 +1139 228 0.400000 +1139 245 0.400000 +1139 252 0.400000 +1139 281 0.400000 +1139 328 0.400000 +1139 453 0.400000 +1139 529 0.400000 +1139 675 0.400000 +1139 712 0.400000 +1139 808 0.400000 +1139 928 0.400000 +1139 949 0.400000 +1139 981 0.400000 +1139 992 0.400000 +1139 994 0.400000 +1139 1093 0.400000 +1139 1110 0.400000 +1139 1172 0.400000 +1139 1412 0.400000 +1139 1428 0.400000 +1139 1497 0.400000 +1139 1524 0.400000 +1139 1631 0.400000 +1139 1670 0.400000 +1139 1726 0.400000 +1139 1782 0.400000 +1139 1793 0.400000 +1139 1832 0.400000 +1139 1905 0.400000 +1139 2025 0.400000 +1139 2094 0.400000 +1139 2319 0.400000 +1139 2430 0.400000 +1139 2531 0.400000 +1139 2580 0.400000 +1139 2615 0.400000 +1139 2706 0.400000 +1139 2746 0.400000 +1139 2788 0.400000 +1139 2819 0.400000 +1139 2944 0.400000 +1139 2981 0.400000 +1139 3084 0.400000 +1139 3154 0.400000 +1139 3155 0.400000 +1139 3198 0.400000 +1139 3200 0.400000 +1140 7 0.400000 +1140 124 0.400000 +1140 149 0.400000 +1140 174 0.400000 +1140 224 0.400000 +1140 237 0.400000 +1140 241 0.400000 +1140 251 0.400000 +1140 298 0.400000 +1140 321 0.400000 +1140 479 0.400000 +1140 488 0.400000 +1140 502 0.400000 +1140 519 0.400000 +1140 608 0.400000 +1140 670 0.400000 +1140 705 0.400000 +1140 734 0.400000 +1140 778 0.400000 +1140 939 0.400000 +1140 993 0.400000 +1140 1102 0.400000 +1140 1147 0.400000 +1140 1153 0.400000 +1140 1189 0.400000 +1140 1198 0.400000 +1140 1231 0.400000 +1140 1269 0.400000 +1140 1278 0.400000 +1140 1403 0.400000 +1140 1404 0.400000 +1140 1455 0.400000 +1140 1470 0.400000 +1140 1512 0.400000 +1140 1516 0.400000 +1140 1561 0.400000 +1140 1606 0.400000 +1140 1663 0.400000 +1140 1671 0.400000 +1140 1725 0.400000 +1140 1783 0.400000 +1140 1851 0.400000 +1140 1868 0.400000 +1140 1908 0.400000 +1140 1916 0.400000 +1140 1940 0.400000 +1140 1946 0.400000 +1140 2017 0.400000 +1140 2063 0.400000 +1140 2233 0.400000 +1140 2261 0.400000 +1140 2308 0.400000 +1140 2375 0.400000 +1140 2471 0.400000 +1140 2518 0.400000 +1140 2531 0.400000 +1140 2574 0.400000 +1140 2627 0.400000 +1140 2680 0.400000 +1140 2681 0.400000 +1140 2721 0.400000 +1140 2907 0.400000 +1140 2925 0.400000 +1140 2963 0.400000 +1140 2971 0.400000 +1140 3034 0.400000 +1140 3064 0.400000 +1140 3076 0.400000 +1140 3077 0.400000 +1140 3186 0.400000 +1141 192 0.400000 +1141 208 0.400000 +1141 224 0.400000 +1141 266 0.400000 +1141 313 0.400000 +1141 329 0.400000 +1141 362 0.400000 +1141 431 0.400000 +1141 494 0.400000 +1141 734 0.400000 +1141 776 0.400000 +1141 861 0.400000 +1141 885 0.400000 +1141 897 0.400000 +1141 946 0.400000 +1141 949 0.400000 +1141 954 0.400000 +1141 981 0.400000 +1141 1015 0.400000 +1141 1102 0.400000 +1141 1108 0.400000 +1141 1199 0.400000 +1141 1252 0.400000 +1141 1314 0.400000 +1141 1326 0.400000 +1141 1394 0.400000 +1141 1471 0.400000 +1141 1600 0.400000 +1141 1650 0.400000 +1141 1696 0.400000 +1141 1744 0.400000 +1141 1905 0.400000 +1141 1965 0.400000 +1141 1997 0.400000 +1141 2067 0.400000 +1141 2103 0.400000 +1141 2110 0.400000 +1141 2127 0.400000 +1141 2249 0.400000 +1141 2384 0.400000 +1141 2434 0.400000 +1141 2459 0.400000 +1141 2641 0.400000 +1141 2713 0.400000 +1141 2725 0.400000 +1141 2738 0.400000 +1141 2797 0.400000 +1141 2812 0.400000 +1141 2817 0.400000 +1141 2828 0.400000 +1141 2897 0.400000 +1141 2939 0.400000 +1141 2977 0.400000 +1141 3189 0.400000 +1142 28 0.400000 +1142 133 0.400000 +1142 194 0.400000 +1142 225 0.400000 +1142 230 0.400000 +1142 241 0.400000 +1142 320 0.400000 +1142 322 0.400000 +1142 366 0.400000 +1142 447 0.400000 +1142 451 0.400000 +1142 670 0.400000 +1142 672 0.400000 +1142 790 0.400000 +1142 807 0.400000 +1142 940 0.400000 +1142 961 0.400000 +1142 965 0.400000 +1142 966 0.400000 +1142 985 0.400000 +1142 1012 0.400000 +1142 1060 0.400000 +1142 1253 0.400000 +1142 1347 0.400000 +1142 1386 0.400000 +1142 1495 0.400000 +1142 1546 0.400000 +1142 1667 0.400000 +1142 1688 0.400000 +1142 1718 0.400000 +1142 1798 0.400000 +1142 1810 0.400000 +1142 1942 0.400000 +1142 2068 0.400000 +1142 2073 0.400000 +1142 2126 0.400000 +1142 2171 0.400000 +1142 2194 0.400000 +1142 2213 0.400000 +1142 2225 0.400000 +1142 2311 0.400000 +1142 2431 0.400000 +1142 2434 0.400000 +1142 2449 0.400000 +1142 2519 0.400000 +1142 2535 0.400000 +1142 2554 0.400000 +1142 2588 0.400000 +1142 2634 0.400000 +1142 2653 0.400000 +1142 2657 0.400000 +1142 2768 0.400000 +1142 2799 0.400000 +1142 2824 0.400000 +1142 2834 0.400000 +1142 2841 0.400000 +1142 2868 0.400000 +1142 2877 0.400000 +1142 2926 0.400000 +1142 3042 0.400000 +1142 3043 0.400000 +1142 3100 0.400000 +1143 52 0.400000 +1143 55 0.400000 +1143 130 0.400000 +1143 146 0.400000 +1143 157 0.400000 +1143 199 0.400000 +1143 225 0.400000 +1143 348 0.400000 +1143 358 0.400000 +1143 392 0.400000 +1143 404 0.400000 +1143 439 0.400000 +1143 473 0.400000 +1143 484 0.400000 +1143 509 0.400000 +1143 569 0.400000 +1143 587 0.400000 +1143 613 0.400000 +1143 664 0.400000 +1143 666 0.400000 +1143 690 0.400000 +1143 691 0.400000 +1143 846 0.400000 +1143 879 0.400000 +1143 1002 0.400000 +1143 1082 0.400000 +1143 1086 0.400000 +1143 1096 0.400000 +1143 1112 0.400000 +1143 1134 0.400000 +1143 1236 0.400000 +1143 1282 0.400000 +1143 1345 0.400000 +1143 1359 0.400000 +1143 1478 0.400000 +1143 1498 0.400000 +1143 1600 0.400000 +1143 1630 0.400000 +1143 1724 0.400000 +1143 1734 0.400000 +1143 1835 0.400000 +1143 1947 0.400000 +1143 1953 0.400000 +1143 1963 0.400000 +1143 2005 0.400000 +1143 2182 0.400000 +1143 2244 0.400000 +1143 2344 0.400000 +1143 2482 0.400000 +1143 2509 0.400000 +1143 2602 0.400000 +1143 2654 0.400000 +1143 2706 0.400000 +1143 2751 0.400000 +1143 2885 0.400000 +1143 2886 0.400000 +1143 2910 0.400000 +1143 3032 0.400000 +1143 3082 0.400000 +1143 3141 0.400000 +1143 3182 0.400000 +1144 89 0.400000 +1144 93 0.400000 +1144 152 0.400000 +1144 166 0.400000 +1144 208 0.400000 +1144 253 0.400000 +1144 260 0.400000 +1144 280 0.400000 +1144 405 0.400000 +1144 413 0.400000 +1144 482 0.400000 +1144 495 0.400000 +1144 519 0.400000 +1144 553 0.400000 +1144 584 0.400000 +1144 589 0.400000 +1144 597 0.400000 +1144 606 0.400000 +1144 670 0.400000 +1144 693 0.400000 +1144 719 0.400000 +1144 727 0.400000 +1144 761 0.400000 +1144 766 0.400000 +1144 836 0.400000 +1144 840 0.400000 +1144 898 0.400000 +1144 1004 0.400000 +1144 1079 0.400000 +1144 1098 0.400000 +1144 1120 0.400000 +1144 1125 0.400000 +1144 1205 0.400000 +1144 1269 0.400000 +1144 1271 0.400000 +1144 1388 0.400000 +1144 1429 0.400000 +1144 1456 0.400000 +1144 1521 0.400000 +1144 1543 0.400000 +1144 1792 0.400000 +1144 1829 0.400000 +1144 1857 0.400000 +1144 1893 0.400000 +1144 1921 0.400000 +1144 1983 0.400000 +1144 2034 0.400000 +1144 2110 0.400000 +1144 2198 0.400000 +1144 2277 0.400000 +1144 2315 0.400000 +1144 2348 0.400000 +1144 2374 0.400000 +1144 2408 0.400000 +1144 2409 0.400000 +1144 2465 0.400000 +1144 2488 0.400000 +1144 2519 0.400000 +1144 2544 0.400000 +1144 2558 0.400000 +1144 2716 0.400000 +1144 2731 0.400000 +1144 2741 0.400000 +1144 2781 0.400000 +1144 2796 0.400000 +1144 2805 0.400000 +1144 2806 0.400000 +1144 2814 0.400000 +1144 2820 0.400000 +1144 2821 0.400000 +1144 2940 0.400000 +1144 3143 0.400000 +1144 3165 0.400000 +1144 3176 0.400000 +1145 11 0.400000 +1145 70 0.400000 +1145 97 0.400000 +1145 124 0.400000 +1145 184 0.400000 +1145 251 0.400000 +1145 276 0.400000 +1145 320 0.400000 +1145 324 0.400000 +1145 347 0.400000 +1145 381 0.400000 +1145 421 0.400000 +1145 454 0.400000 +1145 463 0.400000 +1145 508 0.400000 +1145 547 0.400000 +1145 566 0.400000 +1145 578 0.400000 +1145 582 0.400000 +1145 592 0.400000 +1145 611 0.400000 +1145 625 0.400000 +1145 639 0.400000 +1145 662 0.400000 +1145 821 0.400000 +1145 927 0.400000 +1145 1035 0.400000 +1145 1055 0.400000 +1145 1073 0.400000 +1145 1082 0.400000 +1145 1094 0.400000 +1145 1130 0.400000 +1145 1144 0.400000 +1145 1215 0.400000 +1145 1217 0.400000 +1145 1302 0.400000 +1145 1431 0.400000 +1145 1507 0.400000 +1145 1542 0.400000 +1145 1589 0.400000 +1145 1629 0.400000 +1145 1648 0.400000 +1145 1704 0.400000 +1145 1777 0.400000 +1145 1783 0.400000 +1145 1854 0.400000 +1145 1908 0.400000 +1145 1950 0.400000 +1145 2035 0.400000 +1145 2103 0.400000 +1145 2115 0.400000 +1145 2428 0.400000 +1145 2528 0.400000 +1145 2531 0.400000 +1145 2570 0.400000 +1145 2715 0.400000 +1145 2730 0.400000 +1145 2884 0.400000 +1145 2970 0.400000 +1145 3016 0.400000 +1145 3038 0.400000 +1145 3041 0.400000 +1145 3092 0.400000 +1145 3162 0.400000 +1146 93 0.400000 +1146 159 0.400000 +1146 203 0.400000 +1146 229 0.400000 +1146 246 0.400000 +1146 265 0.400000 +1146 291 0.400000 +1146 320 0.400000 +1146 329 0.400000 +1146 395 0.400000 +1146 461 0.400000 +1146 535 0.400000 +1146 558 0.400000 +1146 564 0.400000 +1146 593 0.400000 +1146 644 0.400000 +1146 678 0.400000 +1146 752 0.400000 +1146 888 0.400000 +1146 921 0.400000 +1146 987 0.400000 +1146 1010 0.400000 +1146 1052 0.400000 +1146 1081 0.400000 +1146 1136 0.400000 +1146 1165 0.400000 +1146 1194 0.400000 +1146 1263 0.400000 +1146 1355 0.400000 +1146 1371 0.400000 +1146 1384 0.400000 +1146 1385 0.400000 +1146 1487 0.400000 +1146 1680 0.400000 +1146 1740 0.400000 +1146 1862 0.400000 +1146 1874 0.400000 +1146 1899 0.400000 +1146 1921 0.400000 +1146 1940 0.400000 +1146 1960 0.400000 +1146 1974 0.400000 +1146 1992 0.400000 +1146 2025 0.400000 +1146 2027 0.400000 +1146 2106 0.400000 +1146 2168 0.400000 +1146 2296 0.400000 +1146 2391 0.400000 +1146 2399 0.400000 +1146 2415 0.400000 +1146 2427 0.400000 +1146 2439 0.400000 +1146 2519 0.400000 +1146 2536 0.400000 +1146 2643 0.400000 +1146 2751 0.400000 +1146 2801 0.400000 +1146 2926 0.400000 +1146 2928 0.400000 +1146 3030 0.400000 +1146 3154 0.400000 +1146 3155 0.400000 +1147 310 0.400000 +1147 323 0.400000 +1147 324 0.400000 +1147 426 0.400000 +1147 513 0.400000 +1147 574 0.400000 +1147 635 0.400000 +1147 670 0.400000 +1147 678 0.400000 +1147 709 0.400000 +1147 748 0.400000 +1147 767 0.400000 +1147 777 0.400000 +1147 805 0.400000 +1147 818 0.400000 +1147 829 0.400000 +1147 889 0.400000 +1147 918 0.400000 +1147 921 0.400000 +1147 1029 0.400000 +1147 1102 0.400000 +1147 1108 0.400000 +1147 1198 0.400000 +1147 1273 0.400000 +1147 1279 0.400000 +1147 1408 0.400000 +1147 1427 0.400000 +1147 1436 0.400000 +1147 1437 0.400000 +1147 1460 0.400000 +1147 1491 0.400000 +1147 1492 0.400000 +1147 1525 0.400000 +1147 1553 0.400000 +1147 1572 0.400000 +1147 1574 0.400000 +1147 1667 0.400000 +1147 1697 0.400000 +1147 1860 0.400000 +1147 1863 0.400000 +1147 1915 0.400000 +1147 2038 0.400000 +1147 2128 0.400000 +1147 2148 0.400000 +1147 2164 0.400000 +1147 2177 0.400000 +1147 2185 0.400000 +1147 2215 0.400000 +1147 2274 0.400000 +1147 2397 0.400000 +1147 2412 0.400000 +1147 2418 0.400000 +1147 2454 0.400000 +1147 2502 0.400000 +1147 2553 0.400000 +1147 2568 0.400000 +1147 2575 0.400000 +1147 2612 0.400000 +1147 2614 0.400000 +1147 2657 0.400000 +1147 2659 0.400000 +1147 2689 0.400000 +1147 2712 0.400000 +1147 2778 0.400000 +1147 2854 0.400000 +1147 2882 0.400000 +1147 2884 0.400000 +1147 2901 0.400000 +1147 2930 0.400000 +1147 2959 0.400000 +1147 3103 0.400000 +1147 3190 0.400000 +1148 74 0.400000 +1148 108 0.400000 +1148 159 0.400000 +1148 184 0.400000 +1148 199 0.400000 +1148 244 0.400000 +1148 290 0.400000 +1148 312 0.400000 +1148 328 0.400000 +1148 331 0.400000 +1148 414 0.400000 +1148 417 0.400000 +1148 418 0.400000 +1148 433 0.400000 +1148 496 0.400000 +1148 558 0.400000 +1148 626 0.400000 +1148 641 0.400000 +1148 693 0.400000 +1148 853 0.400000 +1148 889 0.400000 +1148 902 0.400000 +1148 906 0.400000 +1148 1101 0.400000 +1148 1132 0.400000 +1148 1308 0.400000 +1148 1389 0.400000 +1148 1403 0.400000 +1148 1518 0.400000 +1148 1528 0.400000 +1148 1551 0.400000 +1148 1772 0.400000 +1148 1774 0.400000 +1148 1835 0.400000 +1148 1862 0.400000 +1148 1904 0.400000 +1148 1928 0.400000 +1148 1929 0.400000 +1148 1938 0.400000 +1148 1951 0.400000 +1148 2069 0.400000 +1148 2149 0.400000 +1148 2192 0.400000 +1148 2198 0.400000 +1148 2230 0.400000 +1148 2298 0.400000 +1148 2324 0.400000 +1148 2427 0.400000 +1148 2432 0.400000 +1148 2501 0.400000 +1148 2527 0.400000 +1148 2566 0.400000 +1148 2579 0.400000 +1148 2582 0.400000 +1148 2667 0.400000 +1148 2676 0.400000 +1148 2688 0.400000 +1148 2733 0.400000 +1148 2817 0.400000 +1148 2818 0.400000 +1148 2891 0.400000 +1148 3003 0.400000 +1148 3030 0.400000 +1148 3056 0.400000 +1148 3139 0.400000 +1148 3167 0.400000 +1148 3169 0.400000 +1149 14 0.400000 +1149 98 0.400000 +1149 103 0.400000 +1149 107 0.400000 +1149 117 0.400000 +1149 138 0.400000 +1149 153 0.400000 +1149 213 0.400000 +1149 224 0.400000 +1149 235 0.400000 +1149 266 0.400000 +1149 287 0.400000 +1149 335 0.400000 +1149 346 0.400000 +1149 439 0.400000 +1149 462 0.400000 +1149 574 0.400000 +1149 591 0.400000 +1149 598 0.400000 +1149 737 0.400000 +1149 795 0.400000 +1149 853 0.400000 +1149 864 0.400000 +1149 865 0.400000 +1149 950 0.400000 +1149 998 0.400000 +1149 1204 0.400000 +1149 1275 0.400000 +1149 1333 0.400000 +1149 1421 0.400000 +1149 1683 0.400000 +1149 1695 0.400000 +1149 1742 0.400000 +1149 1788 0.400000 +1149 1817 0.400000 +1149 1838 0.400000 +1149 1851 0.400000 +1149 2003 0.400000 +1149 2127 0.400000 +1149 2144 0.400000 +1149 2148 0.400000 +1149 2186 0.400000 +1149 2220 0.400000 +1149 2269 0.400000 +1149 2479 0.400000 +1149 2500 0.400000 +1149 2543 0.400000 +1149 2548 0.400000 +1149 2584 0.400000 +1149 2596 0.400000 +1149 2750 0.400000 +1149 2777 0.400000 +1149 2795 0.400000 +1149 2872 0.400000 +1149 2969 0.400000 +1149 2991 0.400000 +1149 3197 0.400000 +1150 81 0.400000 +1150 174 0.400000 +1150 195 0.400000 +1150 199 0.400000 +1150 282 0.400000 +1150 296 0.400000 +1150 318 0.400000 +1150 376 0.400000 +1150 383 0.400000 +1150 396 0.400000 +1150 418 0.400000 +1150 438 0.400000 +1150 470 0.400000 +1150 503 0.400000 +1150 522 0.400000 +1150 597 0.400000 +1150 729 0.400000 +1150 790 0.400000 +1150 799 0.400000 +1150 1042 0.400000 +1150 1099 0.400000 +1150 1121 0.400000 +1150 1125 0.400000 +1150 1131 0.400000 +1150 1133 0.400000 +1150 1204 0.400000 +1150 1232 0.400000 +1150 1241 0.400000 +1150 1296 0.400000 +1150 1308 0.400000 +1150 1336 0.400000 +1150 1350 0.400000 +1150 1360 0.400000 +1150 1376 0.400000 +1150 1389 0.400000 +1150 1402 0.400000 +1150 1500 0.400000 +1150 1552 0.400000 +1150 1661 0.400000 +1150 1683 0.400000 +1150 1720 0.400000 +1150 1743 0.400000 +1150 1994 0.400000 +1150 2032 0.400000 +1150 2044 0.400000 +1150 2190 0.400000 +1150 2259 0.400000 +1150 2293 0.400000 +1150 2363 0.400000 +1150 2416 0.400000 +1150 2419 0.400000 +1150 2475 0.400000 +1150 2525 0.400000 +1150 2538 0.400000 +1150 2570 0.400000 +1150 2589 0.400000 +1150 2665 0.400000 +1150 2688 0.400000 +1150 2709 0.400000 +1150 2735 0.400000 +1150 2753 0.400000 +1150 2785 0.400000 +1150 2904 0.400000 +1150 2935 0.400000 +1150 2982 0.400000 +1150 3131 0.400000 +1150 3162 0.400000 +1150 3168 0.400000 +1151 11 0.400000 +1151 124 0.400000 +1151 148 0.400000 +1151 157 0.400000 +1151 240 0.400000 +1151 303 0.400000 +1151 440 0.400000 +1151 476 0.400000 +1151 483 0.400000 +1151 570 0.400000 +1151 591 0.400000 +1151 610 0.400000 +1151 673 0.400000 +1151 727 0.400000 +1151 733 0.400000 +1151 891 0.400000 +1151 958 0.400000 +1151 1036 0.400000 +1151 1225 0.400000 +1151 1267 0.400000 +1151 1316 0.400000 +1151 1364 0.400000 +1151 1389 0.400000 +1151 1541 0.400000 +1151 1551 0.400000 +1151 1579 0.400000 +1151 1641 0.400000 +1151 1666 0.400000 +1151 1682 0.400000 +1151 1704 0.400000 +1151 1707 0.400000 +1151 1810 0.400000 +1151 1814 0.400000 +1151 1823 0.400000 +1151 1824 0.400000 +1151 1833 0.400000 +1151 1918 0.400000 +1151 1969 0.400000 +1151 1970 0.400000 +1151 1990 0.400000 +1151 2018 0.400000 +1151 2042 0.400000 +1151 2149 0.400000 +1151 2191 0.400000 +1151 2204 0.400000 +1151 2249 0.400000 +1151 2273 0.400000 +1151 2336 0.400000 +1151 2358 0.400000 +1151 2457 0.400000 +1151 2497 0.400000 +1151 2547 0.400000 +1151 2562 0.400000 +1151 2565 0.400000 +1151 2636 0.400000 +1151 2669 0.400000 +1151 2703 0.400000 +1151 2711 0.400000 +1151 2725 0.400000 +1151 2737 0.400000 +1151 2792 0.400000 +1151 2829 0.400000 +1151 2831 0.400000 +1151 2889 0.400000 +1151 2906 0.400000 +1151 3156 0.400000 +1151 3157 0.400000 +1151 3162 0.400000 +1152 41 0.400000 +1152 48 0.400000 +1152 76 0.400000 +1152 245 0.400000 +1152 285 0.400000 +1152 291 0.400000 +1152 302 0.400000 +1152 374 0.400000 +1152 436 0.400000 +1152 463 0.400000 +1152 537 0.400000 +1152 580 0.400000 +1152 645 0.400000 +1152 647 0.400000 +1152 663 0.400000 +1152 725 0.400000 +1152 771 0.400000 +1152 878 0.400000 +1152 925 0.400000 +1152 932 0.400000 +1152 939 0.400000 +1152 1019 0.400000 +1152 1022 0.400000 +1152 1056 0.400000 +1152 1121 0.400000 +1152 1130 0.400000 +1152 1138 0.400000 +1152 1182 0.400000 +1152 1215 0.400000 +1152 1221 0.400000 +1152 1223 0.400000 +1152 1352 0.400000 +1152 1502 0.400000 +1152 1523 0.400000 +1152 1575 0.400000 +1152 1578 0.400000 +1152 1580 0.400000 +1152 1595 0.400000 +1152 1607 0.400000 +1152 1621 0.400000 +1152 1632 0.400000 +1152 1668 0.400000 +1152 1681 0.400000 +1152 1699 0.400000 +1152 1702 0.400000 +1152 1726 0.400000 +1152 1735 0.400000 +1152 1766 0.400000 +1152 1859 0.400000 +1152 1894 0.400000 +1152 1975 0.400000 +1152 1985 0.400000 +1152 2076 0.400000 +1152 2145 0.400000 +1152 2147 0.400000 +1152 2153 0.400000 +1152 2257 0.400000 +1152 2263 0.400000 +1152 2326 0.400000 +1152 2332 0.400000 +1152 2427 0.400000 +1152 2496 0.400000 +1152 2503 0.400000 +1152 2529 0.400000 +1152 2556 0.400000 +1152 2583 0.400000 +1152 2603 0.400000 +1152 2644 0.400000 +1152 2724 0.400000 +1152 2753 0.400000 +1152 2760 0.400000 +1152 2791 0.400000 +1152 2834 0.400000 +1152 2855 0.400000 +1152 2862 0.400000 +1152 2926 0.400000 +1152 2955 0.400000 +1152 3013 0.400000 +1152 3014 0.400000 +1152 3020 0.400000 +1152 3031 0.400000 +1152 3040 0.400000 +1152 3081 0.400000 +1152 3107 0.400000 +1152 3138 0.400000 +1152 3158 0.400000 +1152 3165 0.400000 +1152 3185 0.400000 +1153 15 0.400000 +1153 44 0.400000 +1153 84 0.400000 +1153 199 0.400000 +1153 344 0.400000 +1153 441 0.400000 +1153 592 0.400000 +1153 715 0.400000 +1153 752 0.400000 +1153 785 0.400000 +1153 801 0.400000 +1153 815 0.400000 +1153 822 0.400000 +1153 849 0.400000 +1153 970 0.400000 +1153 1030 0.400000 +1153 1050 0.400000 +1153 1076 0.400000 +1153 1139 0.400000 +1153 1169 0.400000 +1153 1317 0.400000 +1153 1324 0.400000 +1153 1352 0.400000 +1153 1421 0.400000 +1153 1449 0.400000 +1153 1500 0.400000 +1153 1582 0.400000 +1153 1613 0.400000 +1153 2112 0.400000 +1153 2129 0.400000 +1153 2134 0.400000 +1153 2143 0.400000 +1153 2181 0.400000 +1153 2225 0.400000 +1153 2313 0.400000 +1153 2320 0.400000 +1153 2354 0.400000 +1153 2386 0.400000 +1153 2401 0.400000 +1153 2414 0.400000 +1153 2460 0.400000 +1153 2533 0.400000 +1153 2546 0.400000 +1153 2566 0.400000 +1153 2634 0.400000 +1153 2771 0.400000 +1153 2816 0.400000 +1153 2853 0.400000 +1153 2888 0.400000 +1153 2970 0.400000 +1153 2989 0.400000 +1153 3180 0.400000 +1154 2 0.400000 +1154 80 0.400000 +1154 86 0.400000 +1154 101 0.400000 +1154 152 0.400000 +1154 167 0.400000 +1154 259 0.400000 +1154 285 0.400000 +1154 363 0.400000 +1154 415 0.400000 +1154 434 0.400000 +1154 450 0.400000 +1154 452 0.400000 +1154 499 0.400000 +1154 573 0.400000 +1154 578 0.400000 +1154 696 0.400000 +1154 697 0.400000 +1154 722 0.400000 +1154 745 0.400000 +1154 779 0.400000 +1154 804 0.400000 +1154 873 0.400000 +1154 995 0.400000 +1154 1135 0.400000 +1154 1147 0.400000 +1154 1153 0.400000 +1154 1160 0.400000 +1154 1241 0.400000 +1154 1277 0.400000 +1154 1384 0.400000 +1154 1465 0.400000 +1154 1475 0.400000 +1154 1482 0.400000 +1154 1507 0.400000 +1154 1588 0.400000 +1154 1619 0.400000 +1154 1638 0.400000 +1154 1724 0.400000 +1154 1742 0.400000 +1154 1795 0.400000 +1154 1891 0.400000 +1154 1932 0.400000 +1154 1951 0.400000 +1154 1959 0.400000 +1154 1980 0.400000 +1154 1996 0.400000 +1154 2003 0.400000 +1154 2056 0.400000 +1154 2093 0.400000 +1154 2159 0.400000 +1154 2221 0.400000 +1154 2254 0.400000 +1154 2282 0.400000 +1154 2285 0.400000 +1154 2309 0.400000 +1154 2387 0.400000 +1154 2438 0.400000 +1154 2491 0.400000 +1154 2556 0.400000 +1154 2630 0.400000 +1154 2693 0.400000 +1154 2728 0.400000 +1154 2730 0.400000 +1154 2771 0.400000 +1154 2804 0.400000 +1154 2860 0.400000 +1154 2908 0.400000 +1154 2919 0.400000 +1154 2951 0.400000 +1154 2965 0.400000 +1154 3003 0.400000 +1154 3036 0.400000 +1154 3052 0.400000 +1154 3067 0.400000 +1155 21 0.400000 +1155 89 0.400000 +1155 107 0.400000 +1155 110 0.400000 +1155 184 0.400000 +1155 234 0.400000 +1155 258 0.400000 +1155 277 0.400000 +1155 278 0.400000 +1155 309 0.400000 +1155 335 0.400000 +1155 402 0.400000 +1155 456 0.400000 +1155 463 0.400000 +1155 465 0.400000 +1155 469 0.400000 +1155 607 0.400000 +1155 626 0.400000 +1155 664 0.400000 +1155 694 0.400000 +1155 702 0.400000 +1155 856 0.400000 +1155 871 0.400000 +1155 901 0.400000 +1155 1090 0.400000 +1155 1149 0.400000 +1155 1311 0.400000 +1155 1342 0.400000 +1155 1346 0.400000 +1155 1405 0.400000 +1155 1428 0.400000 +1155 1450 0.400000 +1155 1610 0.400000 +1155 1679 0.400000 +1155 1873 0.400000 +1155 1925 0.400000 +1155 2038 0.400000 +1155 2099 0.400000 +1155 2197 0.400000 +1155 2215 0.400000 +1155 2235 0.400000 +1155 2239 0.400000 +1155 2298 0.400000 +1155 2325 0.400000 +1155 2343 0.400000 +1155 2359 0.400000 +1155 2411 0.400000 +1155 2456 0.400000 +1155 2462 0.400000 +1155 2729 0.400000 +1155 2827 0.400000 +1155 2920 0.400000 +1155 3127 0.400000 +1155 3173 0.400000 +1155 3186 0.400000 +1156 27 0.400000 +1156 37 0.400000 +1156 63 0.400000 +1156 116 0.400000 +1156 123 0.400000 +1156 136 0.400000 +1156 252 0.400000 +1156 259 0.400000 +1156 271 0.400000 +1156 273 0.400000 +1156 460 0.400000 +1156 474 0.400000 +1156 486 0.400000 +1156 554 0.400000 +1156 555 0.400000 +1156 575 0.400000 +1156 581 0.400000 +1156 606 0.400000 +1156 865 0.400000 +1156 898 0.400000 +1156 1037 0.400000 +1156 1081 0.400000 +1156 1119 0.400000 +1156 1153 0.400000 +1156 1183 0.400000 +1156 1218 0.400000 +1156 1261 0.400000 +1156 1288 0.400000 +1156 1313 0.400000 +1156 1400 0.400000 +1156 1433 0.400000 +1156 1593 0.400000 +1156 1599 0.400000 +1156 1651 0.400000 +1156 1673 0.400000 +1156 1703 0.400000 +1156 1720 0.400000 +1156 1728 0.400000 +1156 1736 0.400000 +1156 1893 0.400000 +1156 1961 0.400000 +1156 1969 0.400000 +1156 1970 0.400000 +1156 1988 0.400000 +1156 2021 0.400000 +1156 2053 0.400000 +1156 2067 0.400000 +1156 2119 0.400000 +1156 2138 0.400000 +1156 2230 0.400000 +1156 2281 0.400000 +1156 2334 0.400000 +1156 2352 0.400000 +1156 2360 0.400000 +1156 2387 0.400000 +1156 2576 0.400000 +1156 2590 0.400000 +1156 2634 0.400000 +1156 2755 0.400000 +1156 2829 0.400000 +1156 2851 0.400000 +1156 2882 0.400000 +1156 2902 0.400000 +1156 2920 0.400000 +1156 2943 0.400000 +1156 3036 0.400000 +1157 8 0.400000 +1157 63 0.400000 +1157 94 0.400000 +1157 119 0.400000 +1157 218 0.400000 +1157 239 0.400000 +1157 280 0.400000 +1157 303 0.400000 +1157 311 0.400000 +1157 353 0.400000 +1157 407 0.400000 +1157 411 0.400000 +1157 437 0.400000 +1157 475 0.400000 +1157 490 0.400000 +1157 508 0.400000 +1157 558 0.400000 +1157 572 0.400000 +1157 670 0.400000 +1157 752 0.400000 +1157 791 0.400000 +1157 802 0.400000 +1157 804 0.400000 +1157 851 0.400000 +1157 861 0.400000 +1157 948 0.400000 +1157 968 0.400000 +1157 995 0.400000 +1157 1003 0.400000 +1157 1010 0.400000 +1157 1033 0.400000 +1157 1040 0.400000 +1157 1075 0.400000 +1157 1079 0.400000 +1157 1097 0.400000 +1157 1130 0.400000 +1157 1147 0.400000 +1157 1241 0.400000 +1157 1253 0.400000 +1157 1280 0.400000 +1157 1297 0.400000 +1157 1313 0.400000 +1157 1324 0.400000 +1157 1357 0.400000 +1157 1384 0.400000 +1157 1393 0.400000 +1157 1494 0.400000 +1157 1503 0.400000 +1157 1520 0.400000 +1157 1535 0.400000 +1157 1604 0.400000 +1157 1629 0.400000 +1157 1636 0.400000 +1157 1701 0.400000 +1157 1705 0.400000 +1157 1709 0.400000 +1157 2058 0.400000 +1157 2060 0.400000 +1157 2219 0.400000 +1157 2269 0.400000 +1157 2274 0.400000 +1157 2343 0.400000 +1157 2347 0.400000 +1157 2354 0.400000 +1157 2425 0.400000 +1157 2429 0.400000 +1157 2481 0.400000 +1157 2489 0.400000 +1157 2566 0.400000 +1157 2571 0.400000 +1157 2572 0.400000 +1157 2603 0.400000 +1157 2737 0.400000 +1157 2752 0.400000 +1157 2807 0.400000 +1157 2934 0.400000 +1157 2958 0.400000 +1157 3067 0.400000 +1158 44 0.400000 +1158 47 0.400000 +1158 111 0.400000 +1158 154 0.400000 +1158 166 0.400000 +1158 202 0.400000 +1158 257 0.400000 +1158 279 0.400000 +1158 283 0.400000 +1158 315 0.400000 +1158 321 0.400000 +1158 486 0.400000 +1158 526 0.400000 +1158 528 0.400000 +1158 548 0.400000 +1158 577 0.400000 +1158 610 0.400000 +1158 634 0.400000 +1158 803 0.400000 +1158 898 0.400000 +1158 909 0.400000 +1158 1060 0.400000 +1158 1081 0.400000 +1158 1090 0.400000 +1158 1111 0.400000 +1158 1169 0.400000 +1158 1225 0.400000 +1158 1229 0.400000 +1158 1294 0.400000 +1158 1355 0.400000 +1158 1389 0.400000 +1158 1396 0.400000 +1158 1432 0.400000 +1158 1512 0.400000 +1158 1513 0.400000 +1158 1637 0.400000 +1158 1951 0.400000 +1158 2057 0.400000 +1158 2096 0.400000 +1158 2111 0.400000 +1158 2198 0.400000 +1158 2207 0.400000 +1158 2283 0.400000 +1158 2361 0.400000 +1158 2411 0.400000 +1158 2436 0.400000 +1158 2499 0.400000 +1158 2525 0.400000 +1158 2560 0.400000 +1158 2598 0.400000 +1158 2627 0.400000 +1158 2631 0.400000 +1158 2676 0.400000 +1158 2683 0.400000 +1158 2716 0.400000 +1158 2722 0.400000 +1158 2792 0.400000 +1158 2872 0.400000 +1158 2903 0.400000 +1158 2904 0.400000 +1158 2944 0.400000 +1158 2954 0.400000 +1158 3032 0.400000 +1158 3071 0.400000 +1158 3089 0.400000 +1158 3117 0.400000 +1158 3119 0.400000 +1159 63 0.400000 +1159 123 0.400000 +1159 155 0.400000 +1159 235 0.400000 +1159 349 0.400000 +1159 408 0.400000 +1159 417 0.400000 +1159 504 0.400000 +1159 533 0.400000 +1159 554 0.400000 +1159 589 0.400000 +1159 671 0.400000 +1159 695 0.400000 +1159 707 0.400000 +1159 942 0.400000 +1159 977 0.400000 +1159 992 0.400000 +1159 1023 0.400000 +1159 1024 0.400000 +1159 1108 0.400000 +1159 1120 0.400000 +1159 1147 0.400000 +1159 1333 0.400000 +1159 1394 0.400000 +1159 1398 0.400000 +1159 1675 0.400000 +1159 1747 0.400000 +1159 1752 0.400000 +1159 1836 0.400000 +1159 1874 0.400000 +1159 1891 0.400000 +1159 1948 0.400000 +1159 1966 0.400000 +1159 1992 0.400000 +1159 2042 0.400000 +1159 2076 0.400000 +1159 2145 0.400000 +1159 2166 0.400000 +1159 2274 0.400000 +1159 2320 0.400000 +1159 2338 0.400000 +1159 2390 0.400000 +1159 2425 0.400000 +1159 2484 0.400000 +1159 2555 0.400000 +1159 2581 0.400000 +1159 2663 0.400000 +1159 2774 0.400000 +1159 2808 0.400000 +1159 3014 0.400000 +1159 3043 0.400000 +1159 3065 0.400000 +1160 32 0.400000 +1160 97 0.400000 +1160 107 0.400000 +1160 199 0.400000 +1160 239 0.400000 +1160 267 0.400000 +1160 303 0.400000 +1160 307 0.400000 +1160 388 0.400000 +1160 557 0.400000 +1160 572 0.400000 +1160 874 0.400000 +1160 896 0.400000 +1160 899 0.400000 +1160 935 0.400000 +1160 1001 0.400000 +1160 1004 0.400000 +1160 1065 0.400000 +1160 1161 0.400000 +1160 1171 0.400000 +1160 1240 0.400000 +1160 1245 0.400000 +1160 1248 0.400000 +1160 1332 0.400000 +1160 1401 0.400000 +1160 1442 0.400000 +1160 1486 0.400000 +1160 1551 0.400000 +1160 1615 0.400000 +1160 1644 0.400000 +1160 1664 0.400000 +1160 1699 0.400000 +1160 1732 0.400000 +1160 1737 0.400000 +1160 1799 0.400000 +1160 1819 0.400000 +1160 1830 0.400000 +1160 1868 0.400000 +1160 1882 0.400000 +1160 2041 0.400000 +1160 2044 0.400000 +1160 2083 0.400000 +1160 2128 0.400000 +1160 2165 0.400000 +1160 2209 0.400000 +1160 2232 0.400000 +1160 2252 0.400000 +1160 2298 0.400000 +1160 2329 0.400000 +1160 2346 0.400000 +1160 2359 0.400000 +1160 2596 0.400000 +1160 2755 0.400000 +1160 2955 0.400000 +1160 3031 0.400000 +1160 3045 0.400000 +1160 3073 0.400000 +1160 3099 0.400000 +1160 3188 0.400000 +1161 22 0.400000 +1161 77 0.400000 +1161 118 0.400000 +1161 232 0.400000 +1161 253 0.400000 +1161 256 0.400000 +1161 257 0.400000 +1161 300 0.400000 +1161 308 0.400000 +1161 328 0.400000 +1161 599 0.400000 +1161 600 0.400000 +1161 632 0.400000 +1161 695 0.400000 +1161 769 0.400000 +1161 803 0.400000 +1161 878 0.400000 +1161 965 0.400000 +1161 983 0.400000 +1161 1100 0.400000 +1161 1242 0.400000 +1161 1259 0.400000 +1161 1261 0.400000 +1161 1371 0.400000 +1161 1417 0.400000 +1161 1432 0.400000 +1161 1469 0.400000 +1161 1534 0.400000 +1161 1686 0.400000 +1161 1705 0.400000 +1161 1756 0.400000 +1161 1772 0.400000 +1161 1777 0.400000 +1161 1824 0.400000 +1161 2015 0.400000 +1161 2017 0.400000 +1161 2036 0.400000 +1161 2056 0.400000 +1161 2091 0.400000 +1161 2167 0.400000 +1161 2200 0.400000 +1161 2232 0.400000 +1161 2349 0.400000 +1161 2452 0.400000 +1161 2539 0.400000 +1161 2568 0.400000 +1161 2590 0.400000 +1161 2612 0.400000 +1161 2686 0.400000 +1161 2724 0.400000 +1161 2764 0.400000 +1161 2765 0.400000 +1161 2781 0.400000 +1161 2912 0.400000 +1161 2923 0.400000 +1161 2957 0.400000 +1161 3045 0.400000 +1161 3068 0.400000 +1161 3070 0.400000 +1161 3084 0.400000 +1161 3173 0.400000 +1162 87 0.400000 +1162 113 0.400000 +1162 276 0.400000 +1162 298 0.400000 +1162 360 0.400000 +1162 383 0.400000 +1162 387 0.400000 +1162 439 0.400000 +1162 451 0.400000 +1162 639 0.400000 +1162 688 0.400000 +1162 704 0.400000 +1162 723 0.400000 +1162 758 0.400000 +1162 804 0.400000 +1162 829 0.400000 +1162 1072 0.400000 +1162 1119 0.400000 +1162 1137 0.400000 +1162 1176 0.400000 +1162 1233 0.400000 +1162 1297 0.400000 +1162 1368 0.400000 +1162 1381 0.400000 +1162 1402 0.400000 +1162 1454 0.400000 +1162 1545 0.400000 +1162 1575 0.400000 +1162 1591 0.400000 +1162 1625 0.400000 +1162 1659 0.400000 +1162 1697 0.400000 +1162 1785 0.400000 +1162 1796 0.400000 +1162 1876 0.400000 +1162 1932 0.400000 +1162 2013 0.400000 +1162 2023 0.400000 +1162 2069 0.400000 +1162 2115 0.400000 +1162 2156 0.400000 +1162 2327 0.400000 +1162 2357 0.400000 +1162 2363 0.400000 +1162 2377 0.400000 +1162 2403 0.400000 +1162 2455 0.400000 +1162 2502 0.400000 +1162 2548 0.400000 +1162 2559 0.400000 +1162 2603 0.400000 +1162 2635 0.400000 +1162 2670 0.400000 +1162 2673 0.400000 +1162 2709 0.400000 +1162 2725 0.400000 +1162 2791 0.400000 +1162 2833 0.400000 +1162 2937 0.400000 +1162 2990 0.400000 +1162 3008 0.400000 +1162 3020 0.400000 +1162 3030 0.400000 +1162 3062 0.400000 +1162 3138 0.400000 +1162 3182 0.400000 +1163 4 0.400000 +1163 7 0.400000 +1163 59 0.400000 +1163 169 0.400000 +1163 172 0.400000 +1163 195 0.400000 +1163 278 0.400000 +1163 321 0.400000 +1163 336 0.400000 +1163 373 0.400000 +1163 392 0.400000 +1163 477 0.400000 +1163 623 0.400000 +1163 628 0.400000 +1163 629 0.400000 +1163 653 0.400000 +1163 673 0.400000 +1163 684 0.400000 +1163 760 0.400000 +1163 788 0.400000 +1163 822 0.400000 +1163 870 0.400000 +1163 922 0.400000 +1163 1065 0.400000 +1163 1138 0.400000 +1163 1142 0.400000 +1163 1145 0.400000 +1163 1172 0.400000 +1163 1191 0.400000 +1163 1198 0.400000 +1163 1340 0.400000 +1163 1367 0.400000 +1163 1376 0.400000 +1163 1387 0.400000 +1163 1422 0.400000 +1163 1499 0.400000 +1163 1500 0.400000 +1163 1504 0.400000 +1163 1570 0.400000 +1163 1591 0.400000 +1163 1597 0.400000 +1163 1612 0.400000 +1163 1793 0.400000 +1163 1822 0.400000 +1163 1859 0.400000 +1163 1902 0.400000 +1163 1944 0.400000 +1163 1957 0.400000 +1163 1969 0.400000 +1163 1986 0.400000 +1163 2032 0.400000 +1163 2125 0.400000 +1163 2138 0.400000 +1163 2179 0.400000 +1163 2254 0.400000 +1163 2265 0.400000 +1163 2273 0.400000 +1163 2297 0.400000 +1163 2336 0.400000 +1163 2481 0.400000 +1163 2496 0.400000 +1163 2499 0.400000 +1163 2522 0.400000 +1163 2585 0.400000 +1163 2646 0.400000 +1163 2649 0.400000 +1163 2678 0.400000 +1163 2680 0.400000 +1163 2682 0.400000 +1163 2706 0.400000 +1163 2717 0.400000 +1163 2721 0.400000 +1163 2805 0.400000 +1163 2855 0.400000 +1163 2914 0.400000 +1163 2929 0.400000 +1163 3013 0.400000 +1163 3170 0.400000 +1164 145 0.400000 +1164 188 0.400000 +1164 217 0.400000 +1164 251 0.400000 +1164 287 0.400000 +1164 355 0.400000 +1164 443 0.400000 +1164 512 0.400000 +1164 622 0.400000 +1164 708 0.400000 +1164 734 0.400000 +1164 776 0.400000 +1164 813 0.400000 +1164 815 0.400000 +1164 859 0.400000 +1164 867 0.400000 +1164 874 0.400000 +1164 891 0.400000 +1164 897 0.400000 +1164 900 0.400000 +1164 1073 0.400000 +1164 1101 0.400000 +1164 1116 0.400000 +1164 1149 0.400000 +1164 1207 0.400000 +1164 1220 0.400000 +1164 1254 0.400000 +1164 1267 0.400000 +1164 1315 0.400000 +1164 1391 0.400000 +1164 1452 0.400000 +1164 1500 0.400000 +1164 1528 0.400000 +1164 1534 0.400000 +1164 1573 0.400000 +1164 1677 0.400000 +1164 1711 0.400000 +1164 1762 0.400000 +1164 1795 0.400000 +1164 1802 0.400000 +1164 1803 0.400000 +1164 1819 0.400000 +1164 1850 0.400000 +1164 1920 0.400000 +1164 1956 0.400000 +1164 1977 0.400000 +1164 2051 0.400000 +1164 2115 0.400000 +1164 2231 0.400000 +1164 2276 0.400000 +1164 2315 0.400000 +1164 2403 0.400000 +1164 2419 0.400000 +1164 2448 0.400000 +1164 2468 0.400000 +1164 2482 0.400000 +1164 2505 0.400000 +1164 2536 0.400000 +1164 2554 0.400000 +1164 2599 0.400000 +1164 2625 0.400000 +1164 2651 0.400000 +1164 2652 0.400000 +1164 2685 0.400000 +1164 2738 0.400000 +1164 2816 0.400000 +1164 2866 0.400000 +1164 3004 0.400000 +1164 3167 0.400000 +1165 15 0.400000 +1165 28 0.400000 +1165 78 0.400000 +1165 187 0.400000 +1165 244 0.400000 +1165 349 0.400000 +1165 422 0.400000 +1165 481 0.400000 +1165 509 0.400000 +1165 543 0.400000 +1165 545 0.400000 +1165 561 0.400000 +1165 644 0.400000 +1165 688 0.400000 +1165 767 0.400000 +1165 890 0.400000 +1165 907 0.400000 +1165 912 0.400000 +1165 979 0.400000 +1165 1009 0.400000 +1165 1062 0.400000 +1165 1080 0.400000 +1165 1088 0.400000 +1165 1097 0.400000 +1165 1179 0.400000 +1165 1228 0.400000 +1165 1236 0.400000 +1165 1244 0.400000 +1165 1275 0.400000 +1165 1296 0.400000 +1165 1394 0.400000 +1165 1450 0.400000 +1165 1500 0.400000 +1165 1506 0.400000 +1165 1509 0.400000 +1165 1523 0.400000 +1165 1605 0.400000 +1165 1700 0.400000 +1165 1798 0.400000 +1165 1831 0.400000 +1165 1836 0.400000 +1165 1871 0.400000 +1165 2007 0.400000 +1165 2046 0.400000 +1165 2066 0.400000 +1165 2085 0.400000 +1165 2094 0.400000 +1165 2187 0.400000 +1165 2217 0.400000 +1165 2268 0.400000 +1165 2344 0.400000 +1165 2358 0.400000 +1165 2393 0.400000 +1165 2645 0.400000 +1165 2768 0.400000 +1165 2894 0.400000 +1165 2915 0.400000 +1165 2966 0.400000 +1165 2987 0.400000 +1165 3087 0.400000 +1166 34 0.400000 +1166 95 0.400000 +1166 121 0.400000 +1166 133 0.400000 +1166 140 0.400000 +1166 158 0.400000 +1166 179 0.400000 +1166 235 0.400000 +1166 265 0.400000 +1166 365 0.400000 +1166 438 0.400000 +1166 444 0.400000 +1166 523 0.400000 +1166 664 0.400000 +1166 712 0.400000 +1166 739 0.400000 +1166 793 0.400000 +1166 831 0.400000 +1166 900 0.400000 +1166 940 0.400000 +1166 994 0.400000 +1166 1051 0.400000 +1166 1072 0.400000 +1166 1222 0.400000 +1166 1278 0.400000 +1166 1341 0.400000 +1166 1401 0.400000 +1166 1444 0.400000 +1166 1521 0.400000 +1166 1524 0.400000 +1166 1566 0.400000 +1166 1588 0.400000 +1166 1597 0.400000 +1166 1707 0.400000 +1166 1753 0.400000 +1166 1833 0.400000 +1166 1860 0.400000 +1166 1916 0.400000 +1166 1937 0.400000 +1166 1967 0.400000 +1166 2029 0.400000 +1166 2030 0.400000 +1166 2041 0.400000 +1166 2120 0.400000 +1166 2157 0.400000 +1166 2161 0.400000 +1166 2226 0.400000 +1166 2257 0.400000 +1166 2292 0.400000 +1166 2477 0.400000 +1166 2562 0.400000 +1166 2581 0.400000 +1166 2643 0.400000 +1166 2660 0.400000 +1166 2721 0.400000 +1166 2777 0.400000 +1166 2790 0.400000 +1166 2834 0.400000 +1166 2852 0.400000 +1166 2907 0.400000 +1166 2948 0.400000 +1166 2972 0.400000 +1166 3120 0.400000 +1167 58 0.400000 +1167 184 0.400000 +1167 253 0.400000 +1167 258 0.400000 +1167 381 0.400000 +1167 462 0.400000 +1167 466 0.400000 +1167 488 0.400000 +1167 502 0.400000 +1167 600 0.400000 +1167 652 0.400000 +1167 727 0.400000 +1167 868 0.400000 +1167 876 0.400000 +1167 890 0.400000 +1167 1143 0.400000 +1167 1164 0.400000 +1167 1257 0.400000 +1167 1262 0.400000 +1167 1438 0.400000 +1167 1534 0.400000 +1167 1544 0.400000 +1167 1626 0.400000 +1167 1635 0.400000 +1167 1652 0.400000 +1167 1705 0.400000 +1167 1713 0.400000 +1167 1728 0.400000 +1167 1743 0.400000 +1167 1802 0.400000 +1167 1808 0.400000 +1167 1865 0.400000 +1167 1866 0.400000 +1167 1927 0.400000 +1167 2050 0.400000 +1167 2104 0.400000 +1167 2111 0.400000 +1167 2190 0.400000 +1167 2206 0.400000 +1167 2213 0.400000 +1167 2281 0.400000 +1167 2344 0.400000 +1167 2406 0.400000 +1167 2450 0.400000 +1167 2455 0.400000 +1167 2515 0.400000 +1167 2598 0.400000 +1167 2623 0.400000 +1167 2803 0.400000 +1167 2823 0.400000 +1167 2871 0.400000 +1167 2903 0.400000 +1167 2910 0.400000 +1167 2923 0.400000 +1167 3002 0.400000 +1167 3028 0.400000 +1167 3056 0.400000 +1167 3128 0.400000 +1167 3165 0.400000 +1167 3185 0.400000 +1167 3197 0.400000 +1168 51 0.400000 +1168 56 0.400000 +1168 68 0.400000 +1168 88 0.400000 +1168 101 0.400000 +1168 266 0.400000 +1168 267 0.400000 +1168 326 0.400000 +1168 352 0.400000 +1168 443 0.400000 +1168 450 0.400000 +1168 505 0.400000 +1168 595 0.400000 +1168 624 0.400000 +1168 809 0.400000 +1168 835 0.400000 +1168 901 0.400000 +1168 929 0.400000 +1168 944 0.400000 +1168 953 0.400000 +1168 957 0.400000 +1168 987 0.400000 +1168 1101 0.400000 +1168 1120 0.400000 +1168 1149 0.400000 +1168 1207 0.400000 +1168 1219 0.400000 +1168 1248 0.400000 +1168 1249 0.400000 +1168 1296 0.400000 +1168 1368 0.400000 +1168 1387 0.400000 +1168 1442 0.400000 +1168 1584 0.400000 +1168 1658 0.400000 +1168 1693 0.400000 +1168 1694 0.400000 +1168 1773 0.400000 +1168 1775 0.400000 +1168 1778 0.400000 +1168 1959 0.400000 +1168 1989 0.400000 +1168 2012 0.400000 +1168 2013 0.400000 +1168 2210 0.400000 +1168 2237 0.400000 +1168 2257 0.400000 +1168 2325 0.400000 +1168 2524 0.400000 +1168 2627 0.400000 +1168 2681 0.400000 +1168 2683 0.400000 +1168 2703 0.400000 +1168 2706 0.400000 +1168 2886 0.400000 +1168 2909 0.400000 +1168 2970 0.400000 +1168 3003 0.400000 +1168 3022 0.400000 +1168 3099 0.400000 +1168 3140 0.400000 +1168 3168 0.400000 +1168 3169 0.400000 +1168 3189 0.400000 +1169 196 0.400000 +1169 265 0.400000 +1169 293 0.400000 +1169 432 0.400000 +1169 541 0.400000 +1169 594 0.400000 +1169 606 0.400000 +1169 698 0.400000 +1169 709 0.400000 +1169 731 0.400000 +1169 775 0.400000 +1169 780 0.400000 +1169 995 0.400000 +1169 1057 0.400000 +1169 1108 0.400000 +1169 1113 0.400000 +1169 1133 0.400000 +1169 1242 0.400000 +1169 1257 0.400000 +1169 1305 0.400000 +1169 1535 0.400000 +1169 1645 0.400000 +1169 1653 0.400000 +1169 1743 0.400000 +1169 1802 0.400000 +1169 1812 0.400000 +1169 1821 0.400000 +1169 1924 0.400000 +1169 2005 0.400000 +1169 2058 0.400000 +1169 2066 0.400000 +1169 2112 0.400000 +1169 2170 0.400000 +1169 2177 0.400000 +1169 2266 0.400000 +1169 2295 0.400000 +1169 2352 0.400000 +1169 2529 0.400000 +1169 2705 0.400000 +1169 2706 0.400000 +1169 2737 0.400000 +1169 2763 0.400000 +1169 2849 0.400000 +1169 2882 0.400000 +1169 2922 0.400000 +1169 3035 0.400000 +1169 3056 0.400000 +1169 3058 0.400000 +1169 3060 0.400000 +1169 3075 0.400000 +1169 3200 0.400000 +1170 190 0.400000 +1170 194 0.400000 +1170 264 0.400000 +1170 303 0.400000 +1170 344 0.400000 +1170 391 0.400000 +1170 532 0.400000 +1170 560 0.400000 +1170 673 0.400000 +1170 726 0.400000 +1170 889 0.400000 +1170 1176 0.400000 +1170 1238 0.400000 +1170 1278 0.400000 +1170 1289 0.400000 +1170 1295 0.400000 +1170 1310 0.400000 +1170 1320 0.400000 +1170 1493 0.400000 +1170 1636 0.400000 +1170 1653 0.400000 +1170 1683 0.400000 +1170 1706 0.400000 +1170 1765 0.400000 +1170 1830 0.400000 +1170 1837 0.400000 +1170 1842 0.400000 +1170 1887 0.400000 +1170 1899 0.400000 +1170 2073 0.400000 +1170 2434 0.400000 +1170 2539 0.400000 +1170 2692 0.400000 +1170 2698 0.400000 +1170 2771 0.400000 +1170 2804 0.400000 +1170 2871 0.400000 +1170 2896 0.400000 +1170 3025 0.400000 +1170 3175 0.400000 +1171 19 0.400000 +1171 244 0.400000 +1171 355 0.400000 +1171 417 0.400000 +1171 482 0.400000 +1171 613 0.400000 +1171 652 0.400000 +1171 745 0.400000 +1171 786 0.400000 +1171 828 0.400000 +1171 831 0.400000 +1171 839 0.400000 +1171 850 0.400000 +1171 902 0.400000 +1171 919 0.400000 +1171 1016 0.400000 +1171 1056 0.400000 +1171 1087 0.400000 +1171 1184 0.400000 +1171 1369 0.400000 +1171 1370 0.400000 +1171 1388 0.400000 +1171 1399 0.400000 +1171 1532 0.400000 +1171 1543 0.400000 +1171 1597 0.400000 +1171 1599 0.400000 +1171 1617 0.400000 +1171 1624 0.400000 +1171 1755 0.400000 +1171 1820 0.400000 +1171 1852 0.400000 +1171 1892 0.400000 +1171 1929 0.400000 +1171 2007 0.400000 +1171 2021 0.400000 +1171 2120 0.400000 +1171 2122 0.400000 +1171 2145 0.400000 +1171 2156 0.400000 +1171 2191 0.400000 +1171 2428 0.400000 +1171 2510 0.400000 +1171 2573 0.400000 +1171 2655 0.400000 +1171 2686 0.400000 +1171 2725 0.400000 +1171 2788 0.400000 +1171 2898 0.400000 +1171 3000 0.400000 +1171 3013 0.400000 +1171 3040 0.400000 +1171 3135 0.400000 +1172 74 0.400000 +1172 95 0.400000 +1172 100 0.400000 +1172 192 0.400000 +1172 458 0.400000 +1172 528 0.400000 +1172 683 0.400000 +1172 709 0.400000 +1172 747 0.400000 +1172 765 0.400000 +1172 818 0.400000 +1172 836 0.400000 +1172 891 0.400000 +1172 916 0.400000 +1172 1007 0.400000 +1172 1143 0.400000 +1172 1296 0.400000 +1172 1297 0.400000 +1172 1302 0.400000 +1172 1347 0.400000 +1172 1451 0.400000 +1172 1495 0.400000 +1172 1513 0.400000 +1172 1536 0.400000 +1172 1761 0.400000 +1172 1800 0.400000 +1172 1983 0.400000 +1172 1998 0.400000 +1172 2137 0.400000 +1172 2273 0.400000 +1172 2284 0.400000 +1172 2289 0.400000 +1172 2318 0.400000 +1172 2560 0.400000 +1172 2635 0.400000 +1172 2654 0.400000 +1172 2669 0.400000 +1172 2674 0.400000 +1172 2691 0.400000 +1172 2718 0.400000 +1172 2721 0.400000 +1172 2728 0.400000 +1172 2742 0.400000 +1172 2753 0.400000 +1172 2760 0.400000 +1172 2793 0.400000 +1172 2829 0.400000 +1172 2871 0.400000 +1172 2928 0.400000 +1172 2958 0.400000 +1172 3004 0.400000 +1172 3020 0.400000 +1172 3029 0.400000 +1172 3065 0.400000 +1172 3121 0.400000 +1172 3135 0.400000 +1172 3143 0.400000 +1172 3159 0.400000 +1172 3188 0.400000 +1172 3195 0.400000 +1173 99 0.400000 +1173 125 0.400000 +1173 126 0.400000 +1173 177 0.400000 +1173 189 0.400000 +1173 232 0.400000 +1173 277 0.400000 +1173 336 0.400000 +1173 343 0.400000 +1173 360 0.400000 +1173 364 0.400000 +1173 386 0.400000 +1173 436 0.400000 +1173 479 0.400000 +1173 492 0.400000 +1173 519 0.400000 +1173 590 0.400000 +1173 615 0.400000 +1173 618 0.400000 +1173 633 0.400000 +1173 643 0.400000 +1173 657 0.400000 +1173 794 0.400000 +1173 1010 0.400000 +1173 1141 0.400000 +1173 1196 0.400000 +1173 1288 0.400000 +1173 1411 0.400000 +1173 1465 0.400000 +1173 1716 0.400000 +1173 1733 0.400000 +1173 1841 0.400000 +1173 1863 0.400000 +1173 1897 0.400000 +1173 1988 0.400000 +1173 1989 0.400000 +1173 2031 0.400000 +1173 2147 0.400000 +1173 2169 0.400000 +1173 2194 0.400000 +1173 2204 0.400000 +1173 2242 0.400000 +1173 2398 0.400000 +1173 2472 0.400000 +1173 2569 0.400000 +1173 2592 0.400000 +1173 2920 0.400000 +1173 2930 0.400000 +1173 3074 0.400000 +1173 3143 0.400000 +1173 3150 0.400000 +1173 3152 0.400000 +1173 3157 0.400000 +1173 3163 0.400000 +1174 128 0.400000 +1174 136 0.400000 +1174 174 0.400000 +1174 220 0.400000 +1174 276 0.400000 +1174 396 0.400000 +1174 446 0.400000 +1174 563 0.400000 +1174 650 0.400000 +1174 717 0.400000 +1174 777 0.400000 +1174 867 0.400000 +1174 899 0.400000 +1174 952 0.400000 +1174 953 0.400000 +1174 970 0.400000 +1174 1015 0.400000 +1174 1067 0.400000 +1174 1374 0.400000 +1174 1384 0.400000 +1174 1412 0.400000 +1174 1430 0.400000 +1174 1454 0.400000 +1174 1568 0.400000 +1174 1590 0.400000 +1174 1653 0.400000 +1174 1678 0.400000 +1174 1680 0.400000 +1174 1712 0.400000 +1174 1731 0.400000 +1174 1766 0.400000 +1174 1817 0.400000 +1174 1893 0.400000 +1174 1896 0.400000 +1174 1914 0.400000 +1174 1953 0.400000 +1174 2139 0.400000 +1174 2147 0.400000 +1174 2232 0.400000 +1174 2304 0.400000 +1174 2360 0.400000 +1174 2418 0.400000 +1174 2523 0.400000 +1174 2525 0.400000 +1174 2551 0.400000 +1174 2570 0.400000 +1174 2583 0.400000 +1174 2624 0.400000 +1174 2697 0.400000 +1174 2745 0.400000 +1174 2940 0.400000 +1174 3097 0.400000 +1175 62 0.400000 +1175 105 0.400000 +1175 220 0.400000 +1175 266 0.400000 +1175 409 0.400000 +1175 475 0.400000 +1175 477 0.400000 +1175 519 0.400000 +1175 541 0.400000 +1175 578 0.400000 +1175 580 0.400000 +1175 611 0.400000 +1175 644 0.400000 +1175 719 0.400000 +1175 806 0.400000 +1175 834 0.400000 +1175 872 0.400000 +1175 893 0.400000 +1175 933 0.400000 +1175 941 0.400000 +1175 1075 0.400000 +1175 1134 0.400000 +1175 1185 0.400000 +1175 1190 0.400000 +1175 1201 0.400000 +1175 1247 0.400000 +1175 1293 0.400000 +1175 1302 0.400000 +1175 1362 0.400000 +1175 1434 0.400000 +1175 1461 0.400000 +1175 1510 0.400000 +1175 1564 0.400000 +1175 1779 0.400000 +1175 1844 0.400000 +1175 2011 0.400000 +1175 2076 0.400000 +1175 2127 0.400000 +1175 2128 0.400000 +1175 2178 0.400000 +1175 2186 0.400000 +1175 2203 0.400000 +1175 2362 0.400000 +1175 2396 0.400000 +1175 2406 0.400000 +1175 2450 0.400000 +1175 2524 0.400000 +1175 2740 0.400000 +1175 2760 0.400000 +1175 2762 0.400000 +1175 2791 0.400000 +1175 2795 0.400000 +1175 2813 0.400000 +1175 2824 0.400000 +1175 2835 0.400000 +1175 2944 0.400000 +1175 2999 0.400000 +1175 3110 0.400000 +1175 3111 0.400000 +1175 3150 0.400000 +1175 3179 0.400000 +1176 95 0.400000 +1176 146 0.400000 +1176 161 0.400000 +1176 221 0.400000 +1176 237 0.400000 +1176 294 0.400000 +1176 296 0.400000 +1176 311 0.400000 +1176 377 0.400000 +1176 399 0.400000 +1176 516 0.400000 +1176 538 0.400000 +1176 648 0.400000 +1176 676 0.400000 +1176 700 0.400000 +1176 712 0.400000 +1176 720 0.400000 +1176 724 0.400000 +1176 738 0.400000 +1176 743 0.400000 +1176 755 0.400000 +1176 796 0.400000 +1176 798 0.400000 +1176 803 0.400000 +1176 885 0.400000 +1176 1036 0.400000 +1176 1059 0.400000 +1176 1112 0.400000 +1176 1139 0.400000 +1176 1248 0.400000 +1176 1316 0.400000 +1176 1473 0.400000 +1176 1515 0.400000 +1176 1620 0.400000 +1176 1639 0.400000 +1176 1654 0.400000 +1176 1715 0.400000 +1176 1729 0.400000 +1176 1780 0.400000 +1176 1926 0.400000 +1176 2132 0.400000 +1176 2218 0.400000 +1176 2252 0.400000 +1176 2327 0.400000 +1176 2359 0.400000 +1176 2442 0.400000 +1176 2481 0.400000 +1176 2544 0.400000 +1176 2549 0.400000 +1176 2655 0.400000 +1176 2700 0.400000 +1176 2712 0.400000 +1176 2716 0.400000 +1176 2826 0.400000 +1176 2868 0.400000 +1176 2935 0.400000 +1176 3062 0.400000 +1176 3121 0.400000 +1176 3145 0.400000 +1176 3147 0.400000 +1177 30 0.400000 +1177 42 0.400000 +1177 69 0.400000 +1177 131 0.400000 +1177 269 0.400000 +1177 341 0.400000 +1177 379 0.400000 +1177 492 0.400000 +1177 533 0.400000 +1177 565 0.400000 +1177 715 0.400000 +1177 718 0.400000 +1177 723 0.400000 +1177 730 0.400000 +1177 809 0.400000 +1177 900 0.400000 +1177 901 0.400000 +1177 940 0.400000 +1177 995 0.400000 +1177 998 0.400000 +1177 1023 0.400000 +1177 1101 0.400000 +1177 1186 0.400000 +1177 1197 0.400000 +1177 1301 0.400000 +1177 1351 0.400000 +1177 1360 0.400000 +1177 1393 0.400000 +1177 1405 0.400000 +1177 1416 0.400000 +1177 1445 0.400000 +1177 1446 0.400000 +1177 1457 0.400000 +1177 1475 0.400000 +1177 1477 0.400000 +1177 1546 0.400000 +1177 1552 0.400000 +1177 1593 0.400000 +1177 1594 0.400000 +1177 1644 0.400000 +1177 1700 0.400000 +1177 1717 0.400000 +1177 1804 0.400000 +1177 1825 0.400000 +1177 1842 0.400000 +1177 1859 0.400000 +1177 1922 0.400000 +1177 1942 0.400000 +1177 2061 0.400000 +1177 2113 0.400000 +1177 2134 0.400000 +1177 2234 0.400000 +1177 2317 0.400000 +1177 2419 0.400000 +1177 2452 0.400000 +1177 2550 0.400000 +1177 2565 0.400000 +1177 2574 0.400000 +1177 2604 0.400000 +1177 2659 0.400000 +1177 2694 0.400000 +1177 2761 0.400000 +1177 2769 0.400000 +1177 2825 0.400000 +1177 2874 0.400000 +1177 3021 0.400000 +1177 3082 0.400000 +1177 3141 0.400000 +1178 29 0.400000 +1178 127 0.400000 +1178 160 0.400000 +1178 183 0.400000 +1178 201 0.400000 +1178 206 0.400000 +1178 360 0.400000 +1178 371 0.400000 +1178 404 0.400000 +1178 426 0.400000 +1178 505 0.400000 +1178 514 0.400000 +1178 536 0.400000 +1178 584 0.400000 +1178 706 0.400000 +1178 719 0.400000 +1178 776 0.400000 +1178 824 0.400000 +1178 868 0.400000 +1178 927 0.400000 +1178 938 0.400000 +1178 951 0.400000 +1178 960 0.400000 +1178 1049 0.400000 +1178 1212 0.400000 +1178 1234 0.400000 +1178 1314 0.400000 +1178 1345 0.400000 +1178 1359 0.400000 +1178 1446 0.400000 +1178 1487 0.400000 +1178 1569 0.400000 +1178 1570 0.400000 +1178 1588 0.400000 +1178 1648 0.400000 +1178 1657 0.400000 +1178 1679 0.400000 +1178 1688 0.400000 +1178 1723 0.400000 +1178 1776 0.400000 +1178 1808 0.400000 +1178 1936 0.400000 +1178 1941 0.400000 +1178 1946 0.400000 +1178 2001 0.400000 +1178 2024 0.400000 +1178 2038 0.400000 +1178 2079 0.400000 +1178 2133 0.400000 +1178 2144 0.400000 +1178 2197 0.400000 +1178 2270 0.400000 +1178 2293 0.400000 +1178 2303 0.400000 +1178 2314 0.400000 +1178 2451 0.400000 +1178 2489 0.400000 +1178 2496 0.400000 +1178 2549 0.400000 +1178 2576 0.400000 +1178 2619 0.400000 +1178 2628 0.400000 +1178 2675 0.400000 +1178 2708 0.400000 +1178 2763 0.400000 +1178 2768 0.400000 +1178 2803 0.400000 +1178 2960 0.400000 +1178 2978 0.400000 +1178 3047 0.400000 +1178 3065 0.400000 +1178 3134 0.400000 +1179 21 0.400000 +1179 73 0.400000 +1179 121 0.400000 +1179 199 0.400000 +1179 202 0.400000 +1179 250 0.400000 +1179 271 0.400000 +1179 320 0.400000 +1179 331 0.400000 +1179 342 0.400000 +1179 359 0.400000 +1179 371 0.400000 +1179 396 0.400000 +1179 400 0.400000 +1179 409 0.400000 +1179 427 0.400000 +1179 429 0.400000 +1179 439 0.400000 +1179 532 0.400000 +1179 539 0.400000 +1179 559 0.400000 +1179 567 0.400000 +1179 586 0.400000 +1179 754 0.400000 +1179 835 0.400000 +1179 848 0.400000 +1179 866 0.400000 +1179 927 0.400000 +1179 948 0.400000 +1179 998 0.400000 +1179 1039 0.400000 +1179 1074 0.400000 +1179 1118 0.400000 +1179 1127 0.400000 +1179 1243 0.400000 +1179 1491 0.400000 +1179 1497 0.400000 +1179 1603 0.400000 +1179 1640 0.400000 +1179 1644 0.400000 +1179 1653 0.400000 +1179 1713 0.400000 +1179 1751 0.400000 +1179 1838 0.400000 +1179 1865 0.400000 +1179 1906 0.400000 +1179 1908 0.400000 +1179 2024 0.400000 +1179 2085 0.400000 +1179 2111 0.400000 +1179 2178 0.400000 +1179 2180 0.400000 +1179 2219 0.400000 +1179 2450 0.400000 +1179 2509 0.400000 +1179 2650 0.400000 +1179 2681 0.400000 +1179 2688 0.400000 +1179 2689 0.400000 +1179 2746 0.400000 +1179 2782 0.400000 +1179 2838 0.400000 +1179 2900 0.400000 +1179 2903 0.400000 +1179 2904 0.400000 +1179 2962 0.400000 +1179 2965 0.400000 +1179 3088 0.400000 +1179 3093 0.400000 +1179 3180 0.400000 +1180 3 0.400000 +1180 40 0.400000 +1180 116 0.400000 +1180 142 0.400000 +1180 227 0.400000 +1180 244 0.400000 +1180 303 0.400000 +1180 317 0.400000 +1180 393 0.400000 +1180 485 0.400000 +1180 515 0.400000 +1180 555 0.400000 +1180 613 0.400000 +1180 767 0.400000 +1180 805 0.400000 +1180 807 0.400000 +1180 928 0.400000 +1180 1017 0.400000 +1180 1090 0.400000 +1180 1092 0.400000 +1180 1099 0.400000 +1180 1121 0.400000 +1180 1157 0.400000 +1180 1183 0.400000 +1180 1229 0.400000 +1180 1231 0.400000 +1180 1255 0.400000 +1180 1297 0.400000 +1180 1312 0.400000 +1180 1325 0.400000 +1180 1403 0.400000 +1180 1505 0.400000 +1180 1521 0.400000 +1180 1556 0.400000 +1180 1578 0.400000 +1180 1613 0.400000 +1180 1645 0.400000 +1180 1681 0.400000 +1180 1719 0.400000 +1180 1729 0.400000 +1180 1789 0.400000 +1180 1824 0.400000 +1180 1843 0.400000 +1180 1891 0.400000 +1180 1961 0.400000 +1180 1978 0.400000 +1180 2092 0.400000 +1180 2106 0.400000 +1180 2161 0.400000 +1180 2180 0.400000 +1180 2181 0.400000 +1180 2209 0.400000 +1180 2227 0.400000 +1180 2370 0.400000 +1180 2394 0.400000 +1180 2415 0.400000 +1180 2420 0.400000 +1180 2512 0.400000 +1180 2553 0.400000 +1180 2637 0.400000 +1180 2696 0.400000 +1180 2880 0.400000 +1180 2889 0.400000 +1180 3000 0.400000 +1180 3045 0.400000 +1180 3089 0.400000 +1180 3131 0.400000 +1180 3134 0.400000 +1180 3172 0.400000 +1180 3176 0.400000 +1180 3190 0.400000 +1181 20 0.400000 +1181 124 0.400000 +1181 382 0.400000 +1181 444 0.400000 +1181 646 0.400000 +1181 804 0.400000 +1181 843 0.400000 +1181 939 0.400000 +1181 1012 0.400000 +1181 1038 0.400000 +1181 1128 0.400000 +1181 1215 0.400000 +1181 1319 0.400000 +1181 1375 0.400000 +1181 1395 0.400000 +1181 1404 0.400000 +1181 1466 0.400000 +1181 1472 0.400000 +1181 1560 0.400000 +1181 1613 0.400000 +1181 1664 0.400000 +1181 1713 0.400000 +1181 1751 0.400000 +1181 1762 0.400000 +1181 1895 0.400000 +1181 1990 0.400000 +1181 2003 0.400000 +1181 2174 0.400000 +1181 2178 0.400000 +1181 2277 0.400000 +1181 2398 0.400000 +1181 2425 0.400000 +1181 2472 0.400000 +1181 2565 0.400000 +1181 2612 0.400000 +1181 2626 0.400000 +1181 2812 0.400000 +1181 2895 0.400000 +1181 2973 0.400000 +1181 3006 0.400000 +1181 3021 0.400000 +1181 3073 0.400000 +1181 3074 0.400000 +1181 3127 0.400000 +1181 3138 0.400000 +1181 3150 0.400000 +1181 3171 0.400000 +1181 3189 0.400000 +1182 59 0.400000 +1182 65 0.400000 +1182 73 0.400000 +1182 103 0.400000 +1182 195 0.400000 +1182 237 0.400000 +1182 252 0.400000 +1182 339 0.400000 +1182 361 0.400000 +1182 372 0.400000 +1182 423 0.400000 +1182 475 0.400000 +1182 481 0.400000 +1182 483 0.400000 +1182 710 0.400000 +1182 740 0.400000 +1182 786 0.400000 +1182 827 0.400000 +1182 882 0.400000 +1182 904 0.400000 +1182 909 0.400000 +1182 913 0.400000 +1182 920 0.400000 +1182 925 0.400000 +1182 993 0.400000 +1182 1011 0.400000 +1182 1032 0.400000 +1182 1051 0.400000 +1182 1065 0.400000 +1182 1088 0.400000 +1182 1134 0.400000 +1182 1170 0.400000 +1182 1196 0.400000 +1182 1232 0.400000 +1182 1241 0.400000 +1182 1266 0.400000 +1182 1277 0.400000 +1182 1287 0.400000 +1182 1292 0.400000 +1182 1336 0.400000 +1182 1357 0.400000 +1182 1421 0.400000 +1182 1472 0.400000 +1182 1561 0.400000 +1182 1606 0.400000 +1182 1626 0.400000 +1182 1629 0.400000 +1182 1649 0.400000 +1182 1689 0.400000 +1182 1707 0.400000 +1182 1805 0.400000 +1182 2007 0.400000 +1182 2016 0.400000 +1182 2092 0.400000 +1182 2111 0.400000 +1182 2134 0.400000 +1182 2140 0.400000 +1182 2144 0.400000 +1182 2164 0.400000 +1182 2207 0.400000 +1182 2290 0.400000 +1182 2350 0.400000 +1182 2394 0.400000 +1182 2512 0.400000 +1182 2525 0.400000 +1182 2566 0.400000 +1182 2650 0.400000 +1182 2755 0.400000 +1182 2779 0.400000 +1182 2851 0.400000 +1182 2867 0.400000 +1182 2899 0.400000 +1182 2926 0.400000 +1182 2965 0.400000 +1182 2977 0.400000 +1182 2988 0.400000 +1182 2993 0.400000 +1182 2998 0.400000 +1182 3088 0.400000 +1182 3117 0.400000 +1182 3143 0.400000 +1183 28 0.400000 +1183 75 0.400000 +1183 103 0.400000 +1183 106 0.400000 +1183 171 0.400000 +1183 174 0.400000 +1183 280 0.400000 +1183 336 0.400000 +1183 368 0.400000 +1183 373 0.400000 +1183 468 0.400000 +1183 536 0.400000 +1183 554 0.400000 +1183 591 0.400000 +1183 782 0.400000 +1183 830 0.400000 +1183 999 0.400000 +1183 1042 0.400000 +1183 1071 0.400000 +1183 1318 0.400000 +1183 1347 0.400000 +1183 1357 0.400000 +1183 1362 0.400000 +1183 1436 0.400000 +1183 1500 0.400000 +1183 1565 0.400000 +1183 1593 0.400000 +1183 1594 0.400000 +1183 1699 0.400000 +1183 1700 0.400000 +1183 1731 0.400000 +1183 1737 0.400000 +1183 1754 0.400000 +1183 1833 0.400000 +1183 1866 0.400000 +1183 1905 0.400000 +1183 1956 0.400000 +1183 2020 0.400000 +1183 2024 0.400000 +1183 2036 0.400000 +1183 2089 0.400000 +1183 2115 0.400000 +1183 2119 0.400000 +1183 2134 0.400000 +1183 2138 0.400000 +1183 2149 0.400000 +1183 2187 0.400000 +1183 2279 0.400000 +1183 2300 0.400000 +1183 2432 0.400000 +1183 2545 0.400000 +1183 2551 0.400000 +1183 2570 0.400000 +1183 2602 0.400000 +1183 2633 0.400000 +1183 2716 0.400000 +1183 2864 0.400000 +1183 2887 0.400000 +1183 2896 0.400000 +1183 2972 0.400000 +1183 3020 0.400000 +1183 3035 0.400000 +1183 3067 0.400000 +1183 3183 0.400000 +1184 27 0.400000 +1184 28 0.400000 +1184 147 0.400000 +1184 259 0.400000 +1184 268 0.400000 +1184 273 0.400000 +1184 293 0.400000 +1184 395 0.400000 +1184 477 0.400000 +1184 498 0.400000 +1184 540 0.400000 +1184 542 0.400000 +1184 662 0.400000 +1184 676 0.400000 +1184 699 0.400000 +1184 734 0.400000 +1184 748 0.400000 +1184 772 0.400000 +1184 777 0.400000 +1184 1090 0.400000 +1184 1098 0.400000 +1184 1127 0.400000 +1184 1152 0.400000 +1184 1165 0.400000 +1184 1195 0.400000 +1184 1229 0.400000 +1184 1230 0.400000 +1184 1310 0.400000 +1184 1356 0.400000 +1184 1376 0.400000 +1184 1387 0.400000 +1184 1519 0.400000 +1184 1562 0.400000 +1184 1680 0.400000 +1184 1712 0.400000 +1184 1938 0.400000 +1184 1990 0.400000 +1184 2041 0.400000 +1184 2063 0.400000 +1184 2193 0.400000 +1184 2264 0.400000 +1184 2280 0.400000 +1184 2347 0.400000 +1184 2405 0.400000 +1184 2408 0.400000 +1184 2460 0.400000 +1184 2502 0.400000 +1184 2520 0.400000 +1184 2528 0.400000 +1184 2562 0.400000 +1184 2572 0.400000 +1184 2596 0.400000 +1184 2600 0.400000 +1184 2625 0.400000 +1184 2632 0.400000 +1184 2694 0.400000 +1184 2797 0.400000 +1184 2939 0.400000 +1184 2957 0.400000 +1184 2981 0.400000 +1185 42 0.400000 +1185 69 0.400000 +1185 127 0.400000 +1185 204 0.400000 +1185 267 0.400000 +1185 317 0.400000 +1185 382 0.400000 +1185 384 0.400000 +1185 400 0.400000 +1185 450 0.400000 +1185 609 0.400000 +1185 822 0.400000 +1185 862 0.400000 +1185 933 0.400000 +1185 995 0.400000 +1185 1022 0.400000 +1185 1110 0.400000 +1185 1153 0.400000 +1185 1186 0.400000 +1185 1204 0.400000 +1185 1250 0.400000 +1185 1286 0.400000 +1185 1329 0.400000 +1185 1419 0.400000 +1185 1494 0.400000 +1185 1505 0.400000 +1185 1578 0.400000 +1185 1640 0.400000 +1185 1718 0.400000 +1185 1744 0.400000 +1185 1783 0.400000 +1185 1821 0.400000 +1185 1852 0.400000 +1185 1895 0.400000 +1185 2049 0.400000 +1185 2078 0.400000 +1185 2115 0.400000 +1185 2189 0.400000 +1185 2207 0.400000 +1185 2217 0.400000 +1185 2229 0.400000 +1185 2237 0.400000 +1185 2323 0.400000 +1185 2333 0.400000 +1185 2450 0.400000 +1185 2465 0.400000 +1185 2555 0.400000 +1185 2643 0.400000 +1185 2676 0.400000 +1185 2700 0.400000 +1185 2827 0.400000 +1185 2833 0.400000 +1185 2834 0.400000 +1185 2849 0.400000 +1185 3018 0.400000 +1185 3101 0.400000 +1185 3109 0.400000 +1185 3122 0.400000 +1185 3137 0.400000 +1185 3139 0.400000 +1185 3166 0.400000 +1186 49 0.400000 +1186 76 0.400000 +1186 133 0.400000 +1186 156 0.400000 +1186 244 0.400000 +1186 297 0.400000 +1186 318 0.400000 +1186 320 0.400000 +1186 352 0.400000 +1186 404 0.400000 +1186 410 0.400000 +1186 413 0.400000 +1186 416 0.400000 +1186 420 0.400000 +1186 447 0.400000 +1186 476 0.400000 +1186 477 0.400000 +1186 510 0.400000 +1186 512 0.400000 +1186 551 0.400000 +1186 587 0.400000 +1186 604 0.400000 +1186 673 0.400000 +1186 876 0.400000 +1186 977 0.400000 +1186 1004 0.400000 +1186 1006 0.400000 +1186 1031 0.400000 +1186 1066 0.400000 +1186 1121 0.400000 +1186 1187 0.400000 +1186 1220 0.400000 +1186 1238 0.400000 +1186 1372 0.400000 +1186 1423 0.400000 +1186 1426 0.400000 +1186 1436 0.400000 +1186 1471 0.400000 +1186 1528 0.400000 +1186 1589 0.400000 +1186 1593 0.400000 +1186 1636 0.400000 +1186 1645 0.400000 +1186 1654 0.400000 +1186 1844 0.400000 +1186 1850 0.400000 +1186 1863 0.400000 +1186 1875 0.400000 +1186 1983 0.400000 +1186 2069 0.400000 +1186 2186 0.400000 +1186 2361 0.400000 +1186 2562 0.400000 +1186 2605 0.400000 +1186 2687 0.400000 +1186 2760 0.400000 +1186 2844 0.400000 +1186 2871 0.400000 +1186 2875 0.400000 +1186 2877 0.400000 +1186 2946 0.400000 +1186 2947 0.400000 +1186 3124 0.400000 +1187 13 0.400000 +1187 57 0.400000 +1187 130 0.400000 +1187 299 0.400000 +1187 368 0.400000 +1187 384 0.400000 +1187 429 0.400000 +1187 440 0.400000 +1187 670 0.400000 +1187 674 0.400000 +1187 692 0.400000 +1187 708 0.400000 +1187 734 0.400000 +1187 755 0.400000 +1187 799 0.400000 +1187 839 0.400000 +1187 919 0.400000 +1187 927 0.400000 +1187 965 0.400000 +1187 1004 0.400000 +1187 1075 0.400000 +1187 1082 0.400000 +1187 1117 0.400000 +1187 1159 0.400000 +1187 1487 0.400000 +1187 1545 0.400000 +1187 1626 0.400000 +1187 1669 0.400000 +1187 1692 0.400000 +1187 1799 0.400000 +1187 1878 0.400000 +1187 1893 0.400000 +1187 1990 0.400000 +1187 2030 0.400000 +1187 2035 0.400000 +1187 2096 0.400000 +1187 2162 0.400000 +1187 2166 0.400000 +1187 2192 0.400000 +1187 2196 0.400000 +1187 2222 0.400000 +1187 2234 0.400000 +1187 2243 0.400000 +1187 2259 0.400000 +1187 2266 0.400000 +1187 2311 0.400000 +1187 2352 0.400000 +1187 2360 0.400000 +1187 2405 0.400000 +1187 2458 0.400000 +1187 2518 0.400000 +1187 2551 0.400000 +1187 2558 0.400000 +1187 2661 0.400000 +1187 2666 0.400000 +1187 2713 0.400000 +1187 2730 0.400000 +1187 2745 0.400000 +1187 2790 0.400000 +1187 2845 0.400000 +1187 2924 0.400000 +1187 2976 0.400000 +1187 3055 0.400000 +1188 83 0.400000 +1188 100 0.400000 +1188 142 0.400000 +1188 180 0.400000 +1188 260 0.400000 +1188 398 0.400000 +1188 432 0.400000 +1188 469 0.400000 +1188 470 0.400000 +1188 520 0.400000 +1188 558 0.400000 +1188 596 0.400000 +1188 621 0.400000 +1188 622 0.400000 +1188 686 0.400000 +1188 694 0.400000 +1188 706 0.400000 +1188 708 0.400000 +1188 746 0.400000 +1188 789 0.400000 +1188 862 0.400000 +1188 863 0.400000 +1188 881 0.400000 +1188 1005 0.400000 +1188 1024 0.400000 +1188 1088 0.400000 +1188 1288 0.400000 +1188 1337 0.400000 +1188 1358 0.400000 +1188 1372 0.400000 +1188 1398 0.400000 +1188 1415 0.400000 +1188 1529 0.400000 +1188 1574 0.400000 +1188 1657 0.400000 +1188 1706 0.400000 +1188 1750 0.400000 +1188 1794 0.400000 +1188 1970 0.400000 +1188 2065 0.400000 +1188 2131 0.400000 +1188 2136 0.400000 +1188 2221 0.400000 +1188 2459 0.400000 +1188 2480 0.400000 +1188 2599 0.400000 +1188 2655 0.400000 +1188 2666 0.400000 +1188 2719 0.400000 +1188 2791 0.400000 +1188 2793 0.400000 +1188 2828 0.400000 +1188 2852 0.400000 +1188 2859 0.400000 +1188 2876 0.400000 +1188 2898 0.400000 +1188 2924 0.400000 +1188 3078 0.400000 +1188 3080 0.400000 +1188 3169 0.400000 +1188 3187 0.400000 +1189 53 0.400000 +1189 245 0.400000 +1189 292 0.400000 +1189 327 0.400000 +1189 383 0.400000 +1189 411 0.400000 +1189 487 0.400000 +1189 557 0.400000 +1189 559 0.400000 +1189 605 0.400000 +1189 632 0.400000 +1189 646 0.400000 +1189 652 0.400000 +1189 688 0.400000 +1189 751 0.400000 +1189 834 0.400000 +1189 842 0.400000 +1189 919 0.400000 +1189 954 0.400000 +1189 1101 0.400000 +1189 1105 0.400000 +1189 1112 0.400000 +1189 1125 0.400000 +1189 1190 0.400000 +1189 1316 0.400000 +1189 1356 0.400000 +1189 1422 0.400000 +1189 1489 0.400000 +1189 1542 0.400000 +1189 1543 0.400000 +1189 1597 0.400000 +1189 1602 0.400000 +1189 1637 0.400000 +1189 1642 0.400000 +1189 1772 0.400000 +1189 1840 0.400000 +1189 1847 0.400000 +1189 1938 0.400000 +1189 1954 0.400000 +1189 2038 0.400000 +1189 2122 0.400000 +1189 2147 0.400000 +1189 2157 0.400000 +1189 2337 0.400000 +1189 2341 0.400000 +1189 2347 0.400000 +1189 2496 0.400000 +1189 2498 0.400000 +1189 2537 0.400000 +1189 2655 0.400000 +1189 2709 0.400000 +1189 2764 0.400000 +1189 2768 0.400000 +1189 2795 0.400000 +1189 2821 0.400000 +1189 2897 0.400000 +1189 2970 0.400000 +1189 2995 0.400000 +1189 3049 0.400000 +1189 3092 0.400000 +1189 3143 0.400000 +1189 3189 0.400000 +1189 3200 0.400000 +1190 29 0.400000 +1190 71 0.400000 +1190 161 0.400000 +1190 180 0.400000 +1190 209 0.400000 +1190 242 0.400000 +1190 406 0.400000 +1190 428 0.400000 +1190 468 0.400000 +1190 497 0.400000 +1190 499 0.400000 +1190 538 0.400000 +1190 623 0.400000 +1190 635 0.400000 +1190 730 0.400000 +1190 742 0.400000 +1190 802 0.400000 +1190 857 0.400000 +1190 920 0.400000 +1190 950 0.400000 +1190 1040 0.400000 +1190 1086 0.400000 +1190 1236 0.400000 +1190 1237 0.400000 +1190 1247 0.400000 +1190 1250 0.400000 +1190 1298 0.400000 +1190 1305 0.400000 +1190 1335 0.400000 +1190 1374 0.400000 +1190 1376 0.400000 +1190 1405 0.400000 +1190 1465 0.400000 +1190 1512 0.400000 +1190 1532 0.400000 +1190 1539 0.400000 +1190 1546 0.400000 +1190 1575 0.400000 +1190 1599 0.400000 +1190 1622 0.400000 +1190 1646 0.400000 +1190 1843 0.400000 +1190 1861 0.400000 +1190 1870 0.400000 +1190 1903 0.400000 +1190 1922 0.400000 +1190 1985 0.400000 +1190 2005 0.400000 +1190 2018 0.400000 +1190 2043 0.400000 +1190 2117 0.400000 +1190 2155 0.400000 +1190 2158 0.400000 +1190 2161 0.400000 +1190 2162 0.400000 +1190 2181 0.400000 +1190 2193 0.400000 +1190 2292 0.400000 +1190 2331 0.400000 +1190 2368 0.400000 +1190 2369 0.400000 +1190 2398 0.400000 +1190 2461 0.400000 +1190 2500 0.400000 +1190 2590 0.400000 +1190 2609 0.400000 +1190 2728 0.400000 +1190 2741 0.400000 +1190 2764 0.400000 +1190 2816 0.400000 +1190 2830 0.400000 +1190 2838 0.400000 +1190 2864 0.400000 +1190 2872 0.400000 +1190 2906 0.400000 +1190 2963 0.400000 +1190 3014 0.400000 +1190 3016 0.400000 +1190 3065 0.400000 +1190 3161 0.400000 +1191 165 0.400000 +1191 263 0.400000 +1191 324 0.400000 +1191 368 0.400000 +1191 464 0.400000 +1191 514 0.400000 +1191 564 0.400000 +1191 575 0.400000 +1191 601 0.400000 +1191 636 0.400000 +1191 637 0.400000 +1191 678 0.400000 +1191 701 0.400000 +1191 766 0.400000 +1191 960 0.400000 +1191 990 0.400000 +1191 1048 0.400000 +1191 1079 0.400000 +1191 1236 0.400000 +1191 1244 0.400000 +1191 1275 0.400000 +1191 1417 0.400000 +1191 1454 0.400000 +1191 1479 0.400000 +1191 1487 0.400000 +1191 1502 0.400000 +1191 1504 0.400000 +1191 1521 0.400000 +1191 1617 0.400000 +1191 1689 0.400000 +1191 1703 0.400000 +1191 1801 0.400000 +1191 1815 0.400000 +1191 1861 0.400000 +1191 1866 0.400000 +1191 1915 0.400000 +1191 1968 0.400000 +1191 1971 0.400000 +1191 1995 0.400000 +1191 2086 0.400000 +1191 2157 0.400000 +1191 2182 0.400000 +1191 2208 0.400000 +1191 2277 0.400000 +1191 2329 0.400000 +1191 2330 0.400000 +1191 2395 0.400000 +1191 2423 0.400000 +1191 2465 0.400000 +1191 2472 0.400000 +1191 2484 0.400000 +1191 2502 0.400000 +1191 2544 0.400000 +1191 2549 0.400000 +1191 2556 0.400000 +1191 2593 0.400000 +1191 2604 0.400000 +1191 2620 0.400000 +1191 2688 0.400000 +1191 2714 0.400000 +1191 2820 0.400000 +1191 2863 0.400000 +1191 2865 0.400000 +1191 2898 0.400000 +1191 2926 0.400000 +1191 2979 0.400000 +1191 2985 0.400000 +1191 3074 0.400000 +1191 3161 0.400000 +1192 122 0.400000 +1192 128 0.400000 +1192 137 0.400000 +1192 179 0.400000 +1192 205 0.400000 +1192 233 0.400000 +1192 240 0.400000 +1192 255 0.400000 +1192 341 0.400000 +1192 345 0.400000 +1192 368 0.400000 +1192 385 0.400000 +1192 416 0.400000 +1192 433 0.400000 +1192 522 0.400000 +1192 659 0.400000 +1192 665 0.400000 +1192 672 0.400000 +1192 679 0.400000 +1192 778 0.400000 +1192 918 0.400000 +1192 1036 0.400000 +1192 1056 0.400000 +1192 1160 0.400000 +1192 1165 0.400000 +1192 1193 0.400000 +1192 1248 0.400000 +1192 1285 0.400000 +1192 1287 0.400000 +1192 1321 0.400000 +1192 1372 0.400000 +1192 1410 0.400000 +1192 1499 0.400000 +1192 1549 0.400000 +1192 1567 0.400000 +1192 1689 0.400000 +1192 1698 0.400000 +1192 1722 0.400000 +1192 1770 0.400000 +1192 1779 0.400000 +1192 1785 0.400000 +1192 2143 0.400000 +1192 2169 0.400000 +1192 2196 0.400000 +1192 2264 0.400000 +1192 2296 0.400000 +1192 2375 0.400000 +1192 2396 0.400000 +1192 2406 0.400000 +1192 2458 0.400000 +1192 2507 0.400000 +1192 2536 0.400000 +1192 2562 0.400000 +1192 2706 0.400000 +1192 2737 0.400000 +1192 2752 0.400000 +1192 2763 0.400000 +1192 2797 0.400000 +1192 2877 0.400000 +1192 2910 0.400000 +1192 2998 0.400000 +1192 3080 0.400000 +1192 3105 0.400000 +1193 90 0.400000 +1193 172 0.400000 +1193 223 0.400000 +1193 311 0.400000 +1193 360 0.400000 +1193 387 0.400000 +1193 390 0.400000 +1193 429 0.400000 +1193 481 0.400000 +1193 519 0.400000 +1193 553 0.400000 +1193 617 0.400000 +1193 627 0.400000 +1193 694 0.400000 +1193 834 0.400000 +1193 917 0.400000 +1193 1004 0.400000 +1193 1044 0.400000 +1193 1093 0.400000 +1193 1253 0.400000 +1193 1313 0.400000 +1193 1415 0.400000 +1193 1477 0.400000 +1193 1589 0.400000 +1193 1614 0.400000 +1193 1818 0.400000 +1193 1853 0.400000 +1193 1900 0.400000 +1193 1913 0.400000 +1193 1933 0.400000 +1193 2153 0.400000 +1193 2193 0.400000 +1193 2267 0.400000 +1193 2269 0.400000 +1193 2279 0.400000 +1193 2289 0.400000 +1193 2302 0.400000 +1193 2314 0.400000 +1193 2320 0.400000 +1193 2342 0.400000 +1193 2429 0.400000 +1193 2456 0.400000 +1193 2571 0.400000 +1193 2626 0.400000 +1193 2629 0.400000 +1193 2641 0.400000 +1193 2887 0.400000 +1193 2954 0.400000 +1193 3090 0.400000 +1193 3137 0.400000 +1193 3164 0.400000 +1194 9 0.400000 +1194 14 0.400000 +1194 15 0.400000 +1194 40 0.400000 +1194 42 0.400000 +1194 58 0.400000 +1194 72 0.400000 +1194 91 0.400000 +1194 149 0.400000 +1194 194 0.400000 +1194 219 0.400000 +1194 263 0.400000 +1194 304 0.400000 +1194 446 0.400000 +1194 468 0.400000 +1194 513 0.400000 +1194 566 0.400000 +1194 567 0.400000 +1194 633 0.400000 +1194 748 0.400000 +1194 766 0.400000 +1194 900 0.400000 +1194 969 0.400000 +1194 975 0.400000 +1194 988 0.400000 +1194 1037 0.400000 +1194 1086 0.400000 +1194 1126 0.400000 +1194 1137 0.400000 +1194 1283 0.400000 +1194 1284 0.400000 +1194 1320 0.400000 +1194 1451 0.400000 +1194 1474 0.400000 +1194 1502 0.400000 +1194 1509 0.400000 +1194 1510 0.400000 +1194 1660 0.400000 +1194 1746 0.400000 +1194 1777 0.400000 +1194 1874 0.400000 +1194 1909 0.400000 +1194 1912 0.400000 +1194 1921 0.400000 +1194 1960 0.400000 +1194 2033 0.400000 +1194 2091 0.400000 +1194 2199 0.400000 +1194 2226 0.400000 +1194 2338 0.400000 +1194 2380 0.400000 +1194 2478 0.400000 +1194 2508 0.400000 +1194 2560 0.400000 +1194 2563 0.400000 +1194 2654 0.400000 +1194 2678 0.400000 +1194 2702 0.400000 +1194 2818 0.400000 +1194 2931 0.400000 +1194 2963 0.400000 +1194 2997 0.400000 +1194 3002 0.400000 +1194 3055 0.400000 +1194 3089 0.400000 +1194 3167 0.400000 +1194 3192 0.400000 +1195 47 0.400000 +1195 146 0.400000 +1195 174 0.400000 +1195 229 0.400000 +1195 284 0.400000 +1195 291 0.400000 +1195 318 0.400000 +1195 392 0.400000 +1195 416 0.400000 +1195 496 0.400000 +1195 556 0.400000 +1195 574 0.400000 +1195 636 0.400000 +1195 656 0.400000 +1195 701 0.400000 +1195 723 0.400000 +1195 953 0.400000 +1195 1061 0.400000 +1195 1071 0.400000 +1195 1186 0.400000 +1195 1327 0.400000 +1195 1335 0.400000 +1195 1369 0.400000 +1195 1416 0.400000 +1195 1426 0.400000 +1195 1442 0.400000 +1195 1455 0.400000 +1195 1468 0.400000 +1195 1541 0.400000 +1195 1555 0.400000 +1195 1825 0.400000 +1195 1849 0.400000 +1195 1895 0.400000 +1195 1943 0.400000 +1195 2121 0.400000 +1195 2160 0.400000 +1195 2277 0.400000 +1195 2325 0.400000 +1195 2344 0.400000 +1195 2455 0.400000 +1195 2557 0.400000 +1195 2574 0.400000 +1195 2654 0.400000 +1195 2666 0.400000 +1195 2670 0.400000 +1195 2676 0.400000 +1195 2685 0.400000 +1195 2763 0.400000 +1195 2777 0.400000 +1195 2945 0.400000 +1195 2949 0.400000 +1195 2969 0.400000 +1195 2987 0.400000 +1195 3016 0.400000 +1195 3090 0.400000 +1195 3117 0.400000 +1196 25 0.400000 +1196 108 0.400000 +1196 233 0.400000 +1196 277 0.400000 +1196 297 0.400000 +1196 302 0.400000 +1196 305 0.400000 +1196 308 0.400000 +1196 334 0.400000 +1196 343 0.400000 +1196 415 0.400000 +1196 479 0.400000 +1196 492 0.400000 +1196 541 0.400000 +1196 635 0.400000 +1196 641 0.400000 +1196 764 0.400000 +1196 779 0.400000 +1196 843 0.400000 +1196 912 0.400000 +1196 926 0.400000 +1196 928 0.400000 +1196 991 0.400000 +1196 1094 0.400000 +1196 1217 0.400000 +1196 1247 0.400000 +1196 1335 0.400000 +1196 1337 0.400000 +1196 1415 0.400000 +1196 1447 0.400000 +1196 1451 0.400000 +1196 1482 0.400000 +1196 1510 0.400000 +1196 1542 0.400000 +1196 1786 0.400000 +1196 1934 0.400000 +1196 1954 0.400000 +1196 2005 0.400000 +1196 2042 0.400000 +1196 2137 0.400000 +1196 2170 0.400000 +1196 2200 0.400000 +1196 2268 0.400000 +1196 2285 0.400000 +1196 2297 0.400000 +1196 2398 0.400000 +1196 2437 0.400000 +1196 2459 0.400000 +1196 2463 0.400000 +1196 2590 0.400000 +1196 2683 0.400000 +1196 2684 0.400000 +1196 2716 0.400000 +1196 2717 0.400000 +1196 2842 0.400000 +1196 2858 0.400000 +1196 2865 0.400000 +1196 2898 0.400000 +1196 3032 0.400000 +1196 3199 0.400000 +1197 57 0.400000 +1197 114 0.400000 +1197 179 0.400000 +1197 248 0.400000 +1197 304 0.400000 +1197 449 0.400000 +1197 549 0.400000 +1197 595 0.400000 +1197 621 0.400000 +1197 634 0.400000 +1197 657 0.400000 +1197 697 0.400000 +1197 753 0.400000 +1197 757 0.400000 +1197 790 0.400000 +1197 912 0.400000 +1197 932 0.400000 +1197 953 0.400000 +1197 980 0.400000 +1197 1004 0.400000 +1197 1069 0.400000 +1197 1072 0.400000 +1197 1115 0.400000 +1197 1143 0.400000 +1197 1215 0.400000 +1197 1274 0.400000 +1197 1314 0.400000 +1197 1316 0.400000 +1197 1324 0.400000 +1197 1326 0.400000 +1197 1338 0.400000 +1197 1353 0.400000 +1197 1406 0.400000 +1197 1460 0.400000 +1197 1541 0.400000 +1197 1545 0.400000 +1197 1546 0.400000 +1197 1613 0.400000 +1197 1669 0.400000 +1197 1674 0.400000 +1197 1700 0.400000 +1197 1763 0.400000 +1197 1954 0.400000 +1197 2054 0.400000 +1197 2109 0.400000 +1197 2158 0.400000 +1197 2172 0.400000 +1197 2191 0.400000 +1197 2336 0.400000 +1197 2370 0.400000 +1197 2379 0.400000 +1197 2382 0.400000 +1197 2425 0.400000 +1197 2644 0.400000 +1197 2896 0.400000 +1197 2908 0.400000 +1197 2930 0.400000 +1197 2958 0.400000 +1197 3005 0.400000 +1197 3079 0.400000 +1197 3084 0.400000 +1197 3094 0.400000 +1197 3162 0.400000 +1197 3170 0.400000 +1198 13 0.400000 +1198 16 0.400000 +1198 39 0.400000 +1198 67 0.400000 +1198 115 0.400000 +1198 134 0.400000 +1198 153 0.400000 +1198 297 0.400000 +1198 340 0.400000 +1198 364 0.400000 +1198 496 0.400000 +1198 499 0.400000 +1198 503 0.400000 +1198 589 0.400000 +1198 612 0.400000 +1198 615 0.400000 +1198 655 0.400000 +1198 660 0.400000 +1198 761 0.400000 +1198 784 0.400000 +1198 822 0.400000 +1198 833 0.400000 +1198 871 0.400000 +1198 895 0.400000 +1198 1039 0.400000 +1198 1040 0.400000 +1198 1076 0.400000 +1198 1088 0.400000 +1198 1089 0.400000 +1198 1129 0.400000 +1198 1292 0.400000 +1198 1301 0.400000 +1198 1352 0.400000 +1198 1437 0.400000 +1198 1702 0.400000 +1198 1775 0.400000 +1198 1782 0.400000 +1198 1811 0.400000 +1198 1815 0.400000 +1198 1828 0.400000 +1198 1947 0.400000 +1198 2023 0.400000 +1198 2100 0.400000 +1198 2116 0.400000 +1198 2142 0.400000 +1198 2204 0.400000 +1198 2268 0.400000 +1198 2283 0.400000 +1198 2289 0.400000 +1198 2327 0.400000 +1198 2344 0.400000 +1198 2348 0.400000 +1198 2376 0.400000 +1198 2474 0.400000 +1198 2477 0.400000 +1198 2502 0.400000 +1198 2553 0.400000 +1198 2557 0.400000 +1198 2640 0.400000 +1198 2686 0.400000 +1198 2750 0.400000 +1198 2808 0.400000 +1198 2876 0.400000 +1198 2909 0.400000 +1198 2911 0.400000 +1198 2993 0.400000 +1198 3033 0.400000 +1198 3047 0.400000 +1198 3142 0.400000 +1199 27 0.400000 +1199 41 0.400000 +1199 161 0.400000 +1199 272 0.400000 +1199 385 0.400000 +1199 417 0.400000 +1199 457 0.400000 +1199 510 0.400000 +1199 573 0.400000 +1199 604 0.400000 +1199 728 0.400000 +1199 752 0.400000 +1199 937 0.400000 +1199 1055 0.400000 +1199 1068 0.400000 +1199 1166 0.400000 +1199 1427 0.400000 +1199 1659 0.400000 +1199 1764 0.400000 +1199 1772 0.400000 +1199 1781 0.400000 +1199 1823 0.400000 +1199 1848 0.400000 +1199 1856 0.400000 +1199 1876 0.400000 +1199 1915 0.400000 +1199 2041 0.400000 +1199 2068 0.400000 +1199 2114 0.400000 +1199 2129 0.400000 +1199 2139 0.400000 +1199 2167 0.400000 +1199 2212 0.400000 +1199 2259 0.400000 +1199 2284 0.400000 +1199 2336 0.400000 +1199 2337 0.400000 +1199 2338 0.400000 +1199 2348 0.400000 +1199 2469 0.400000 +1199 2481 0.400000 +1199 2517 0.400000 +1199 2539 0.400000 +1199 2554 0.400000 +1199 2601 0.400000 +1199 2620 0.400000 +1199 2630 0.400000 +1199 2777 0.400000 +1199 2786 0.400000 +1199 2980 0.400000 +1199 2998 0.400000 +1199 3009 0.400000 +1199 3023 0.400000 +1199 3053 0.400000 +1199 3060 0.400000 +1199 3121 0.400000 +1199 3179 0.400000 +1199 3194 0.400000 +1200 3 0.400000 +1200 96 0.400000 +1200 192 0.400000 +1200 298 0.400000 +1200 313 0.400000 +1200 363 0.400000 +1200 525 0.400000 +1200 604 0.400000 +1200 637 0.400000 +1200 638 0.400000 +1200 737 0.400000 +1200 739 0.400000 +1200 745 0.400000 +1200 781 0.400000 +1200 794 0.400000 +1200 834 0.400000 +1200 932 0.400000 +1200 1000 0.400000 +1200 1156 0.400000 +1200 1167 0.400000 +1200 1169 0.400000 +1200 1232 0.400000 +1200 1266 0.400000 +1200 1398 0.400000 +1200 1418 0.400000 +1200 1451 0.400000 +1200 1459 0.400000 +1200 1485 0.400000 +1200 1568 0.400000 +1200 1642 0.400000 +1200 1697 0.400000 +1200 1799 0.400000 +1200 1830 0.400000 +1200 1977 0.400000 +1200 1985 0.400000 +1200 2011 0.400000 +1200 2109 0.400000 +1200 2161 0.400000 +1200 2268 0.400000 +1200 2308 0.400000 +1200 2399 0.400000 +1200 2410 0.400000 +1200 2458 0.400000 +1200 2647 0.400000 +1200 2743 0.400000 +1200 2786 0.400000 +1200 2836 0.400000 +1200 2912 0.400000 +1200 2978 0.400000 +1200 2997 0.400000 +1200 3009 0.400000 +1200 3069 0.400000 +1201 38 0.400000 +1201 57 0.400000 +1201 89 0.400000 +1201 199 0.400000 +1201 256 0.400000 +1201 303 0.400000 +1201 450 0.400000 +1201 462 0.400000 +1201 477 0.400000 +1201 509 0.400000 +1201 555 0.400000 +1201 703 0.400000 +1201 781 0.400000 +1201 782 0.400000 +1201 806 0.400000 +1201 816 0.400000 +1201 829 0.400000 +1201 855 0.400000 +1201 875 0.400000 +1201 1072 0.400000 +1201 1077 0.400000 +1201 1093 0.400000 +1201 1117 0.400000 +1201 1181 0.400000 +1201 1222 0.400000 +1201 1305 0.400000 +1201 1314 0.400000 +1201 1317 0.400000 +1201 1333 0.400000 +1201 1453 0.400000 +1201 1479 0.400000 +1201 1521 0.400000 +1201 1567 0.400000 +1201 1632 0.400000 +1201 1809 0.400000 +1201 1934 0.400000 +1201 1987 0.400000 +1201 1993 0.400000 +1201 2125 0.400000 +1201 2204 0.400000 +1201 2256 0.400000 +1201 2261 0.400000 +1201 2278 0.400000 +1201 2399 0.400000 +1201 2438 0.400000 +1201 2577 0.400000 +1201 2583 0.400000 +1201 2600 0.400000 +1201 2620 0.400000 +1201 2770 0.400000 +1201 2806 0.400000 +1201 2822 0.400000 +1201 2834 0.400000 +1201 2893 0.400000 +1201 2957 0.400000 +1201 2976 0.400000 +1201 3003 0.400000 +1201 3054 0.400000 +1201 3113 0.400000 +1201 3124 0.400000 +1201 3154 0.400000 +1202 25 0.400000 +1202 102 0.400000 +1202 132 0.400000 +1202 168 0.400000 +1202 224 0.400000 +1202 257 0.400000 +1202 273 0.400000 +1202 278 0.400000 +1202 303 0.400000 +1202 341 0.400000 +1202 345 0.400000 +1202 347 0.400000 +1202 356 0.400000 +1202 400 0.400000 +1202 453 0.400000 +1202 456 0.400000 +1202 497 0.400000 +1202 538 0.400000 +1202 605 0.400000 +1202 661 0.400000 +1202 688 0.400000 +1202 758 0.400000 +1202 920 0.400000 +1202 984 0.400000 +1202 1069 0.400000 +1202 1136 0.400000 +1202 1171 0.400000 +1202 1179 0.400000 +1202 1189 0.400000 +1202 1280 0.400000 +1202 1356 0.400000 +1202 1529 0.400000 +1202 1615 0.400000 +1202 1623 0.400000 +1202 1691 0.400000 +1202 1864 0.400000 +1202 1922 0.400000 +1202 1951 0.400000 +1202 1956 0.400000 +1202 1981 0.400000 +1202 1989 0.400000 +1202 2063 0.400000 +1202 2083 0.400000 +1202 2156 0.400000 +1202 2242 0.400000 +1202 2271 0.400000 +1202 2288 0.400000 +1202 2317 0.400000 +1202 2353 0.400000 +1202 2381 0.400000 +1202 2394 0.400000 +1202 2441 0.400000 +1202 2464 0.400000 +1202 2470 0.400000 +1202 2477 0.400000 +1202 2499 0.400000 +1202 2539 0.400000 +1202 2567 0.400000 +1202 2568 0.400000 +1202 2619 0.400000 +1202 2628 0.400000 +1202 2693 0.400000 +1202 2745 0.400000 +1202 2816 0.400000 +1202 2923 0.400000 +1202 2933 0.400000 +1202 3055 0.400000 +1202 3197 0.400000 +1203 12 0.400000 +1203 163 0.400000 +1203 188 0.400000 +1203 205 0.400000 +1203 210 0.400000 +1203 224 0.400000 +1203 272 0.400000 +1203 305 0.400000 +1203 371 0.400000 +1203 382 0.400000 +1203 392 0.400000 +1203 441 0.400000 +1203 591 0.400000 +1203 840 0.400000 +1203 857 0.400000 +1203 872 0.400000 +1203 913 0.400000 +1203 956 0.400000 +1203 1018 0.400000 +1203 1057 0.400000 +1203 1216 0.400000 +1203 1221 0.400000 +1203 1229 0.400000 +1203 1255 0.400000 +1203 1294 0.400000 +1203 1331 0.400000 +1203 1411 0.400000 +1203 1433 0.400000 +1203 1447 0.400000 +1203 1477 0.400000 +1203 1496 0.400000 +1203 1511 0.400000 +1203 1515 0.400000 +1203 1545 0.400000 +1203 1593 0.400000 +1203 1601 0.400000 +1203 1657 0.400000 +1203 1669 0.400000 +1203 1690 0.400000 +1203 1697 0.400000 +1203 1924 0.400000 +1203 1948 0.400000 +1203 1950 0.400000 +1203 1958 0.400000 +1203 2178 0.400000 +1203 2199 0.400000 +1203 2249 0.400000 +1203 2321 0.400000 +1203 2328 0.400000 +1203 2348 0.400000 +1203 2395 0.400000 +1203 2413 0.400000 +1203 2447 0.400000 +1203 2479 0.400000 +1203 2584 0.400000 +1203 2631 0.400000 +1203 2673 0.400000 +1203 2701 0.400000 +1203 2732 0.400000 +1203 2734 0.400000 +1203 2920 0.400000 +1203 2933 0.400000 +1203 2976 0.400000 +1203 3018 0.400000 +1203 3031 0.400000 +1203 3089 0.400000 +1204 53 0.400000 +1204 73 0.400000 +1204 166 0.400000 +1204 297 0.400000 +1204 332 0.400000 +1204 339 0.400000 +1204 340 0.400000 +1204 368 0.400000 +1204 427 0.400000 +1204 473 0.400000 +1204 516 0.400000 +1204 531 0.400000 +1204 554 0.400000 +1204 591 0.400000 +1204 598 0.400000 +1204 625 0.400000 +1204 687 0.400000 +1204 704 0.400000 +1204 716 0.400000 +1204 739 0.400000 +1204 777 0.400000 +1204 815 0.400000 +1204 841 0.400000 +1204 878 0.400000 +1204 914 0.400000 +1204 948 0.400000 +1204 973 0.400000 +1204 1032 0.400000 +1204 1094 0.400000 +1204 1114 0.400000 +1204 1147 0.400000 +1204 1148 0.400000 +1204 1186 0.400000 +1204 1364 0.400000 +1204 1441 0.400000 +1204 1457 0.400000 +1204 1606 0.400000 +1204 1664 0.400000 +1204 1721 0.400000 +1204 1725 0.400000 +1204 1733 0.400000 +1204 1745 0.400000 +1204 1942 0.400000 +1204 2005 0.400000 +1204 2061 0.400000 +1204 2181 0.400000 +1204 2202 0.400000 +1204 2251 0.400000 +1204 2260 0.400000 +1204 2289 0.400000 +1204 2337 0.400000 +1204 2366 0.400000 +1204 2417 0.400000 +1204 2437 0.400000 +1204 2493 0.400000 +1204 2500 0.400000 +1204 2538 0.400000 +1204 2539 0.400000 +1204 2581 0.400000 +1204 2590 0.400000 +1204 2600 0.400000 +1204 2621 0.400000 +1204 2694 0.400000 +1204 2714 0.400000 +1204 2825 0.400000 +1204 2833 0.400000 +1204 2913 0.400000 +1204 2939 0.400000 +1204 2961 0.400000 +1204 2970 0.400000 +1204 2980 0.400000 +1204 3019 0.400000 +1204 3118 0.400000 +1204 3122 0.400000 +1204 3159 0.400000 +1204 3188 0.400000 +1205 7 0.400000 +1205 135 0.400000 +1205 224 0.400000 +1205 267 0.400000 +1205 304 0.400000 +1205 395 0.400000 +1205 396 0.400000 +1205 397 0.400000 +1205 406 0.400000 +1205 514 0.400000 +1205 521 0.400000 +1205 552 0.400000 +1205 570 0.400000 +1205 581 0.400000 +1205 609 0.400000 +1205 830 0.400000 +1205 849 0.400000 +1205 926 0.400000 +1205 954 0.400000 +1205 1007 0.400000 +1205 1091 0.400000 +1205 1163 0.400000 +1205 1205 0.400000 +1205 1206 0.400000 +1205 1332 0.400000 +1205 1336 0.400000 +1205 1437 0.400000 +1205 1443 0.400000 +1205 1577 0.400000 +1205 1580 0.400000 +1205 1663 0.400000 +1205 1851 0.400000 +1205 1910 0.400000 +1205 2002 0.400000 +1205 2097 0.400000 +1205 2115 0.400000 +1205 2139 0.400000 +1205 2159 0.400000 +1205 2182 0.400000 +1205 2328 0.400000 +1205 2337 0.400000 +1205 2376 0.400000 +1205 2439 0.400000 +1205 2613 0.400000 +1205 2637 0.400000 +1205 2666 0.400000 +1205 2669 0.400000 +1205 2676 0.400000 +1205 2716 0.400000 +1205 2797 0.400000 +1205 2956 0.400000 +1205 2985 0.400000 +1205 3015 0.400000 +1205 3049 0.400000 +1205 3154 0.400000 +1206 4 0.400000 +1206 93 0.400000 +1206 166 0.400000 +1206 189 0.400000 +1206 297 0.400000 +1206 388 0.400000 +1206 430 0.400000 +1206 433 0.400000 +1206 501 0.400000 +1206 564 0.400000 +1206 605 0.400000 +1206 621 0.400000 +1206 630 0.400000 +1206 638 0.400000 +1206 669 0.400000 +1206 699 0.400000 +1206 755 0.400000 +1206 809 0.400000 +1206 886 0.400000 +1206 903 0.400000 +1206 967 0.400000 +1206 1050 0.400000 +1206 1237 0.400000 +1206 1255 0.400000 +1206 1281 0.400000 +1206 1332 0.400000 +1206 1430 0.400000 +1206 1478 0.400000 +1206 1601 0.400000 +1206 1609 0.400000 +1206 1613 0.400000 +1206 1727 0.400000 +1206 1743 0.400000 +1206 1862 0.400000 +1206 1959 0.400000 +1206 1965 0.400000 +1206 1979 0.400000 +1206 1988 0.400000 +1206 1995 0.400000 +1206 2027 0.400000 +1206 2033 0.400000 +1206 2081 0.400000 +1206 2164 0.400000 +1206 2168 0.400000 +1206 2184 0.400000 +1206 2306 0.400000 +1206 2317 0.400000 +1206 2318 0.400000 +1206 2404 0.400000 +1206 2482 0.400000 +1206 2496 0.400000 +1206 2575 0.400000 +1206 2582 0.400000 +1206 2594 0.400000 +1206 2620 0.400000 +1206 2660 0.400000 +1206 2674 0.400000 +1206 2679 0.400000 +1206 2725 0.400000 +1206 2731 0.400000 +1206 2783 0.400000 +1206 2802 0.400000 +1206 2850 0.400000 +1206 2863 0.400000 +1206 2876 0.400000 +1206 2945 0.400000 +1206 2965 0.400000 +1206 3019 0.400000 +1206 3027 0.400000 +1206 3029 0.400000 +1206 3041 0.400000 +1206 3116 0.400000 +1206 3173 0.400000 +1206 3198 0.400000 +1207 37 0.400000 +1207 59 0.400000 +1207 107 0.400000 +1207 108 0.400000 +1207 136 0.400000 +1207 139 0.400000 +1207 152 0.400000 +1207 215 0.400000 +1207 273 0.400000 +1207 274 0.400000 +1207 408 0.400000 +1207 479 0.400000 +1207 492 0.400000 +1207 499 0.400000 +1207 521 0.400000 +1207 532 0.400000 +1207 606 0.400000 +1207 719 0.400000 +1207 756 0.400000 +1207 824 0.400000 +1207 828 0.400000 +1207 863 0.400000 +1207 868 0.400000 +1207 902 0.400000 +1207 915 0.400000 +1207 984 0.400000 +1207 997 0.400000 +1207 1001 0.400000 +1207 1029 0.400000 +1207 1044 0.400000 +1207 1300 0.400000 +1207 1307 0.400000 +1207 1365 0.400000 +1207 1436 0.400000 +1207 1499 0.400000 +1207 1653 0.400000 +1207 1680 0.400000 +1207 1738 0.400000 +1207 1760 0.400000 +1207 1793 0.400000 +1207 1807 0.400000 +1207 1866 0.400000 +1207 1891 0.400000 +1207 1921 0.400000 +1207 1952 0.400000 +1207 1981 0.400000 +1207 1997 0.400000 +1207 2035 0.400000 +1207 2046 0.400000 +1207 2052 0.400000 +1207 2097 0.400000 +1207 2112 0.400000 +1207 2132 0.400000 +1207 2169 0.400000 +1207 2227 0.400000 +1207 2252 0.400000 +1207 2266 0.400000 +1207 2270 0.400000 +1207 2350 0.400000 +1207 2404 0.400000 +1207 2487 0.400000 +1207 2525 0.400000 +1207 2625 0.400000 +1207 2665 0.400000 +1207 2684 0.400000 +1207 2705 0.400000 +1207 2720 0.400000 +1207 2730 0.400000 +1207 2795 0.400000 +1207 2939 0.400000 +1207 2993 0.400000 +1207 3036 0.400000 +1207 3044 0.400000 +1208 37 0.400000 +1208 80 0.400000 +1208 183 0.400000 +1208 205 0.400000 +1208 210 0.400000 +1208 212 0.400000 +1208 298 0.400000 +1208 333 0.400000 +1208 338 0.400000 +1208 453 0.400000 +1208 460 0.400000 +1208 535 0.400000 +1208 541 0.400000 +1208 616 0.400000 +1208 618 0.400000 +1208 623 0.400000 +1208 650 0.400000 +1208 678 0.400000 +1208 732 0.400000 +1208 766 0.400000 +1208 786 0.400000 +1208 832 0.400000 +1208 865 0.400000 +1208 913 0.400000 +1208 941 0.400000 +1208 1029 0.400000 +1208 1074 0.400000 +1208 1094 0.400000 +1208 1106 0.400000 +1208 1131 0.400000 +1208 1164 0.400000 +1208 1169 0.400000 +1208 1236 0.400000 +1208 1243 0.400000 +1208 1268 0.400000 +1208 1294 0.400000 +1208 1399 0.400000 +1208 1423 0.400000 +1208 1474 0.400000 +1208 1683 0.400000 +1208 1689 0.400000 +1208 1717 0.400000 +1208 1741 0.400000 +1208 1745 0.400000 +1208 1781 0.400000 +1208 1927 0.400000 +1208 1930 0.400000 +1208 2014 0.400000 +1208 2034 0.400000 +1208 2169 0.400000 +1208 2186 0.400000 +1208 2189 0.400000 +1208 2229 0.400000 +1208 2257 0.400000 +1208 2284 0.400000 +1208 2289 0.400000 +1208 2307 0.400000 +1208 2323 0.400000 +1208 2330 0.400000 +1208 2340 0.400000 +1208 2417 0.400000 +1208 2588 0.400000 +1208 2648 0.400000 +1208 2706 0.400000 +1208 3003 0.400000 +1208 3011 0.400000 +1208 3073 0.400000 +1208 3077 0.400000 +1208 3144 0.400000 +1208 3149 0.400000 +1209 92 0.400000 +1209 123 0.400000 +1209 147 0.400000 +1209 181 0.400000 +1209 183 0.400000 +1209 259 0.400000 +1209 416 0.400000 +1209 417 0.400000 +1209 470 0.400000 +1209 482 0.400000 +1209 510 0.400000 +1209 527 0.400000 +1209 567 0.400000 +1209 585 0.400000 +1209 587 0.400000 +1209 692 0.400000 +1209 697 0.400000 +1209 698 0.400000 +1209 923 0.400000 +1209 925 0.400000 +1209 986 0.400000 +1209 990 0.400000 +1209 1074 0.400000 +1209 1130 0.400000 +1209 1157 0.400000 +1209 1159 0.400000 +1209 1277 0.400000 +1209 1291 0.400000 +1209 1303 0.400000 +1209 1355 0.400000 +1209 1429 0.400000 +1209 1455 0.400000 +1209 1588 0.400000 +1209 1841 0.400000 +1209 1850 0.400000 +1209 1892 0.400000 +1209 1893 0.400000 +1209 1945 0.400000 +1209 1950 0.400000 +1209 1985 0.400000 +1209 2061 0.400000 +1209 2155 0.400000 +1209 2186 0.400000 +1209 2209 0.400000 +1209 2258 0.400000 +1209 2323 0.400000 +1209 2353 0.400000 +1209 2538 0.400000 +1209 2676 0.400000 +1209 2740 0.400000 +1209 2821 0.400000 +1209 2826 0.400000 +1209 2861 0.400000 +1209 2915 0.400000 +1209 2923 0.400000 +1209 2925 0.400000 +1209 2974 0.400000 +1209 2996 0.400000 +1209 3134 0.400000 +1209 3145 0.400000 +1209 3152 0.400000 +1209 3161 0.400000 +1210 32 0.400000 +1210 49 0.400000 +1210 83 0.400000 +1210 107 0.400000 +1210 112 0.400000 +1210 137 0.400000 +1210 165 0.400000 +1210 212 0.400000 +1210 243 0.400000 +1210 245 0.400000 +1210 251 0.400000 +1210 285 0.400000 +1210 343 0.400000 +1210 397 0.400000 +1210 507 0.400000 +1210 515 0.400000 +1210 534 0.400000 +1210 696 0.400000 +1210 751 0.400000 +1210 855 0.400000 +1210 878 0.400000 +1210 907 0.400000 +1210 924 0.400000 +1210 950 0.400000 +1210 977 0.400000 +1210 1027 0.400000 +1210 1072 0.400000 +1210 1123 0.400000 +1210 1252 0.400000 +1210 1265 0.400000 +1210 1268 0.400000 +1210 1333 0.400000 +1210 1568 0.400000 +1210 1625 0.400000 +1210 1645 0.400000 +1210 1736 0.400000 +1210 1756 0.400000 +1210 1763 0.400000 +1210 1815 0.400000 +1210 1821 0.400000 +1210 1838 0.400000 +1210 1846 0.400000 +1210 1855 0.400000 +1210 1856 0.400000 +1210 1867 0.400000 +1210 1952 0.400000 +1210 1956 0.400000 +1210 1988 0.400000 +1210 1990 0.400000 +1210 2138 0.400000 +1210 2176 0.400000 +1210 2180 0.400000 +1210 2245 0.400000 +1210 2252 0.400000 +1210 2279 0.400000 +1210 2303 0.400000 +1210 2340 0.400000 +1210 2366 0.400000 +1210 2400 0.400000 +1210 2468 0.400000 +1210 2520 0.400000 +1210 2542 0.400000 +1210 2550 0.400000 +1210 2558 0.400000 +1210 2635 0.400000 +1210 2703 0.400000 +1210 2735 0.400000 +1210 2804 0.400000 +1210 2904 0.400000 +1210 3015 0.400000 +1210 3056 0.400000 +1210 3065 0.400000 +1210 3070 0.400000 +1210 3099 0.400000 +1210 3117 0.400000 +1210 3186 0.400000 +1211 89 0.400000 +1211 107 0.400000 +1211 177 0.400000 +1211 180 0.400000 +1211 188 0.400000 +1211 198 0.400000 +1211 221 0.400000 +1211 222 0.400000 +1211 250 0.400000 +1211 472 0.400000 +1211 531 0.400000 +1211 547 0.400000 +1211 571 0.400000 +1211 723 0.400000 +1211 841 0.400000 +1211 902 0.400000 +1211 921 0.400000 +1211 924 0.400000 +1211 930 0.400000 +1211 987 0.400000 +1211 1017 0.400000 +1211 1033 0.400000 +1211 1188 0.400000 +1211 1195 0.400000 +1211 1237 0.400000 +1211 1366 0.400000 +1211 1453 0.400000 +1211 1515 0.400000 +1211 1565 0.400000 +1211 1626 0.400000 +1211 1911 0.400000 +1211 1930 0.400000 +1211 1984 0.400000 +1211 2172 0.400000 +1211 2226 0.400000 +1211 2250 0.400000 +1211 2317 0.400000 +1211 2392 0.400000 +1211 2406 0.400000 +1211 2528 0.400000 +1211 2531 0.400000 +1211 2577 0.400000 +1211 3061 0.400000 +1211 3079 0.400000 +1211 3087 0.400000 +1212 36 0.400000 +1212 43 0.400000 +1212 94 0.400000 +1212 183 0.400000 +1212 246 0.400000 +1212 263 0.400000 +1212 304 0.400000 +1212 316 0.400000 +1212 377 0.400000 +1212 448 0.400000 +1212 523 0.400000 +1212 537 0.400000 +1212 552 0.400000 +1212 584 0.400000 +1212 662 0.400000 +1212 773 0.400000 +1212 876 0.400000 +1212 912 0.400000 +1212 916 0.400000 +1212 1269 0.400000 +1212 1588 0.400000 +1212 1606 0.400000 +1212 1608 0.400000 +1212 1678 0.400000 +1212 1743 0.400000 +1212 1850 0.400000 +1212 1924 0.400000 +1212 2009 0.400000 +1212 2105 0.400000 +1212 2181 0.400000 +1212 2227 0.400000 +1212 2257 0.400000 +1212 2277 0.400000 +1212 2293 0.400000 +1212 2347 0.400000 +1212 2388 0.400000 +1212 2579 0.400000 +1212 2590 0.400000 +1212 2656 0.400000 +1212 2697 0.400000 +1212 2776 0.400000 +1212 2791 0.400000 +1212 2844 0.400000 +1212 2973 0.400000 +1212 3023 0.400000 +1212 3055 0.400000 +1212 3072 0.400000 +1212 3097 0.400000 +1212 3163 0.400000 +1213 39 0.400000 +1213 204 0.400000 +1213 235 0.400000 +1213 393 0.400000 +1213 394 0.400000 +1213 461 0.400000 +1213 532 0.400000 +1213 563 0.400000 +1213 718 0.400000 +1213 730 0.400000 +1213 763 0.400000 +1213 782 0.400000 +1213 785 0.400000 +1213 793 0.400000 +1213 813 0.400000 +1213 900 0.400000 +1213 901 0.400000 +1213 1078 0.400000 +1213 1097 0.400000 +1213 1120 0.400000 +1213 1365 0.400000 +1213 1384 0.400000 +1213 1409 0.400000 +1213 1439 0.400000 +1213 1450 0.400000 +1213 1487 0.400000 +1213 1537 0.400000 +1213 1551 0.400000 +1213 1629 0.400000 +1213 1639 0.400000 +1213 1654 0.400000 +1213 1694 0.400000 +1213 1704 0.400000 +1213 1722 0.400000 +1213 1768 0.400000 +1213 1990 0.400000 +1213 2130 0.400000 +1213 2170 0.400000 +1213 2186 0.400000 +1213 2212 0.400000 +1213 2232 0.400000 +1213 2312 0.400000 +1213 2318 0.400000 +1213 2412 0.400000 +1213 2419 0.400000 +1213 2420 0.400000 +1213 2429 0.400000 +1213 2551 0.400000 +1213 2576 0.400000 +1213 2608 0.400000 +1213 2667 0.400000 +1213 2739 0.400000 +1213 2774 0.400000 +1213 2793 0.400000 +1213 2859 0.400000 +1213 2861 0.400000 +1213 2922 0.400000 +1213 2933 0.400000 +1213 2956 0.400000 +1213 2970 0.400000 +1213 3050 0.400000 +1213 3078 0.400000 +1213 3108 0.400000 +1213 3159 0.400000 +1214 1 0.400000 +1214 30 0.400000 +1214 55 0.400000 +1214 156 0.400000 +1214 201 0.400000 +1214 347 0.400000 +1214 370 0.400000 +1214 416 0.400000 +1214 520 0.400000 +1214 528 0.400000 +1214 631 0.400000 +1214 640 0.400000 +1214 652 0.400000 +1214 680 0.400000 +1214 726 0.400000 +1214 762 0.400000 +1214 765 0.400000 +1214 824 0.400000 +1214 851 0.400000 +1214 913 0.400000 +1214 965 0.400000 +1214 980 0.400000 +1214 1251 0.400000 +1214 1293 0.400000 +1214 1345 0.400000 +1214 1366 0.400000 +1214 1483 0.400000 +1214 1513 0.400000 +1214 1529 0.400000 +1214 1642 0.400000 +1214 1699 0.400000 +1214 1753 0.400000 +1214 1757 0.400000 +1214 1785 0.400000 +1214 1787 0.400000 +1214 1913 0.400000 +1214 1940 0.400000 +1214 2014 0.400000 +1214 2050 0.400000 +1214 2073 0.400000 +1214 2159 0.400000 +1214 2163 0.400000 +1214 2198 0.400000 +1214 2212 0.400000 +1214 2284 0.400000 +1214 2298 0.400000 +1214 2301 0.400000 +1214 2332 0.400000 +1214 2334 0.400000 +1214 2366 0.400000 +1214 2370 0.400000 +1214 2490 0.400000 +1214 2566 0.400000 +1214 2577 0.400000 +1214 2723 0.400000 +1214 2745 0.400000 +1214 2764 0.400000 +1214 2867 0.400000 +1214 2871 0.400000 +1214 2923 0.400000 +1214 2997 0.400000 +1214 3025 0.400000 +1214 3095 0.400000 +1214 3160 0.400000 +1214 3185 0.400000 +1215 23 0.400000 +1215 136 0.400000 +1215 161 0.400000 +1215 237 0.400000 +1215 243 0.400000 +1215 289 0.400000 +1215 306 0.400000 +1215 314 0.400000 +1215 333 0.400000 +1215 380 0.400000 +1215 463 0.400000 +1215 486 0.400000 +1215 492 0.400000 +1215 630 0.400000 +1215 631 0.400000 +1215 651 0.400000 +1215 664 0.400000 +1215 696 0.400000 +1215 849 0.400000 +1215 991 0.400000 +1215 1105 0.400000 +1215 1118 0.400000 +1215 1197 0.400000 +1215 1209 0.400000 +1215 1264 0.400000 +1215 1296 0.400000 +1215 1302 0.400000 +1215 1547 0.400000 +1215 1577 0.400000 +1215 1634 0.400000 +1215 1669 0.400000 +1215 1740 0.400000 +1215 1752 0.400000 +1215 1765 0.400000 +1215 1818 0.400000 +1215 1857 0.400000 +1215 1892 0.400000 +1215 2034 0.400000 +1215 2052 0.400000 +1215 2064 0.400000 +1215 2094 0.400000 +1215 2159 0.400000 +1215 2218 0.400000 +1215 2221 0.400000 +1215 2256 0.400000 +1215 2351 0.400000 +1215 2384 0.400000 +1215 2430 0.400000 +1215 2443 0.400000 +1215 2558 0.400000 +1215 2564 0.400000 +1215 2646 0.400000 +1215 2740 0.400000 +1215 2762 0.400000 +1215 2789 0.400000 +1215 2833 0.400000 +1215 2967 0.400000 +1215 2988 0.400000 +1215 3011 0.400000 +1215 3050 0.400000 +1215 3168 0.400000 +1216 50 0.400000 +1216 108 0.400000 +1216 161 0.400000 +1216 293 0.400000 +1216 365 0.400000 +1216 385 0.400000 +1216 392 0.400000 +1216 419 0.400000 +1216 482 0.400000 +1216 504 0.400000 +1216 614 0.400000 +1216 663 0.400000 +1216 742 0.400000 +1216 804 0.400000 +1216 813 0.400000 +1216 839 0.400000 +1216 874 0.400000 +1216 914 0.400000 +1216 926 0.400000 +1216 975 0.400000 +1216 1059 0.400000 +1216 1097 0.400000 +1216 1209 0.400000 +1216 1257 0.400000 +1216 1292 0.400000 +1216 1470 0.400000 +1216 1545 0.400000 +1216 1576 0.400000 +1216 1634 0.400000 +1216 1648 0.400000 +1216 1707 0.400000 +1216 1762 0.400000 +1216 1827 0.400000 +1216 1862 0.400000 +1216 1906 0.400000 +1216 2053 0.400000 +1216 2205 0.400000 +1216 2211 0.400000 +1216 2235 0.400000 +1216 2303 0.400000 +1216 2316 0.400000 +1216 2351 0.400000 +1216 2435 0.400000 +1216 2438 0.400000 +1216 2443 0.400000 +1216 2453 0.400000 +1216 2466 0.400000 +1216 2518 0.400000 +1216 2574 0.400000 +1216 2593 0.400000 +1216 2606 0.400000 +1216 2665 0.400000 +1216 2682 0.400000 +1216 2691 0.400000 +1216 2767 0.400000 +1216 2811 0.400000 +1216 2843 0.400000 +1216 2898 0.400000 +1216 2929 0.400000 +1216 3010 0.400000 +1216 3061 0.400000 +1216 3106 0.400000 +1216 3180 0.400000 +1217 14 0.400000 +1217 22 0.400000 +1217 60 0.400000 +1217 142 0.400000 +1217 163 0.400000 +1217 318 0.400000 +1217 465 0.400000 +1217 619 0.400000 +1217 685 0.400000 +1217 771 0.400000 +1217 774 0.400000 +1217 789 0.400000 +1217 793 0.400000 +1217 990 0.400000 +1217 1003 0.400000 +1217 1024 0.400000 +1217 1134 0.400000 +1217 1173 0.400000 +1217 1228 0.400000 +1217 1373 0.400000 +1217 1392 0.400000 +1217 1402 0.400000 +1217 1501 0.400000 +1217 1617 0.400000 +1217 1674 0.400000 +1217 1698 0.400000 +1217 1763 0.400000 +1217 1769 0.400000 +1217 1778 0.400000 +1217 1823 0.400000 +1217 1851 0.400000 +1217 1882 0.400000 +1217 2112 0.400000 +1217 2127 0.400000 +1217 2154 0.400000 +1217 2227 0.400000 +1217 2259 0.400000 +1217 2278 0.400000 +1217 2312 0.400000 +1217 2336 0.400000 +1217 2398 0.400000 +1217 2445 0.400000 +1217 2637 0.400000 +1217 2657 0.400000 +1217 2728 0.400000 +1217 2755 0.400000 +1217 2772 0.400000 +1217 2834 0.400000 +1217 2986 0.400000 +1217 2995 0.400000 +1217 3055 0.400000 +1217 3068 0.400000 +1217 3088 0.400000 +1217 3149 0.400000 +1218 41 0.400000 +1218 67 0.400000 +1218 326 0.400000 +1218 357 0.400000 +1218 360 0.400000 +1218 401 0.400000 +1218 462 0.400000 +1218 477 0.400000 +1218 509 0.400000 +1218 599 0.400000 +1218 647 0.400000 +1218 739 0.400000 +1218 828 0.400000 +1218 878 0.400000 +1218 889 0.400000 +1218 894 0.400000 +1218 960 0.400000 +1218 975 0.400000 +1218 1004 0.400000 +1218 1005 0.400000 +1218 1015 0.400000 +1218 1031 0.400000 +1218 1136 0.400000 +1218 1150 0.400000 +1218 1177 0.400000 +1218 1283 0.400000 +1218 1320 0.400000 +1218 1324 0.400000 +1218 1346 0.400000 +1218 1366 0.400000 +1218 1584 0.400000 +1218 1664 0.400000 +1218 1695 0.400000 +1218 1780 0.400000 +1218 1782 0.400000 +1218 1818 0.400000 +1218 1858 0.400000 +1218 1977 0.400000 +1218 2012 0.400000 +1218 2031 0.400000 +1218 2158 0.400000 +1218 2188 0.400000 +1218 2252 0.400000 +1218 2288 0.400000 +1218 2317 0.400000 +1218 2384 0.400000 +1218 2396 0.400000 +1218 2430 0.400000 +1218 2503 0.400000 +1218 2585 0.400000 +1218 2620 0.400000 +1218 2656 0.400000 +1218 2721 0.400000 +1218 2727 0.400000 +1218 2769 0.400000 +1218 2829 0.400000 +1218 2850 0.400000 +1218 2855 0.400000 +1218 2905 0.400000 +1218 2910 0.400000 +1218 3062 0.400000 +1218 3099 0.400000 +1218 3108 0.400000 +1219 142 0.400000 +1219 240 0.400000 +1219 285 0.400000 +1219 316 0.400000 +1219 337 0.400000 +1219 441 0.400000 +1219 444 0.400000 +1219 466 0.400000 +1219 467 0.400000 +1219 502 0.400000 +1219 536 0.400000 +1219 556 0.400000 +1219 592 0.400000 +1219 603 0.400000 +1219 649 0.400000 +1219 779 0.400000 +1219 805 0.400000 +1219 850 0.400000 +1219 941 0.400000 +1219 953 0.400000 +1219 1070 0.400000 +1219 1102 0.400000 +1219 1221 0.400000 +1219 1260 0.400000 +1219 1299 0.400000 +1219 1365 0.400000 +1219 1419 0.400000 +1219 1442 0.400000 +1219 1607 0.400000 +1219 1609 0.400000 +1219 1722 0.400000 +1219 1733 0.400000 +1219 1740 0.400000 +1219 1755 0.400000 +1219 1773 0.400000 +1219 1779 0.400000 +1219 1928 0.400000 +1219 1930 0.400000 +1219 2016 0.400000 +1219 2022 0.400000 +1219 2060 0.400000 +1219 2085 0.400000 +1219 2132 0.400000 +1219 2150 0.400000 +1219 2296 0.400000 +1219 2408 0.400000 +1219 2426 0.400000 +1219 2519 0.400000 +1219 2596 0.400000 +1219 2660 0.400000 +1219 2685 0.400000 +1219 2700 0.400000 +1219 2718 0.400000 +1219 2767 0.400000 +1219 2880 0.400000 +1219 2888 0.400000 +1219 2926 0.400000 +1219 2939 0.400000 +1219 2989 0.400000 +1219 3004 0.400000 +1219 3031 0.400000 +1219 3033 0.400000 +1219 3106 0.400000 +1219 3189 0.400000 +1220 23 0.400000 +1220 42 0.400000 +1220 51 0.400000 +1220 59 0.400000 +1220 69 0.400000 +1220 196 0.400000 +1220 206 0.400000 +1220 361 0.400000 +1220 494 0.400000 +1220 600 0.400000 +1220 702 0.400000 +1220 821 0.400000 +1220 872 0.400000 +1220 906 0.400000 +1220 916 0.400000 +1220 1044 0.400000 +1220 1167 0.400000 +1220 1211 0.400000 +1220 1414 0.400000 +1220 1611 0.400000 +1220 1765 0.400000 +1220 1865 0.400000 +1220 1875 0.400000 +1220 1881 0.400000 +1220 1951 0.400000 +1220 2037 0.400000 +1220 2146 0.400000 +1220 2173 0.400000 +1220 2303 0.400000 +1220 2349 0.400000 +1220 2359 0.400000 +1220 2368 0.400000 +1220 2426 0.400000 +1220 2469 0.400000 +1220 2493 0.400000 +1220 2496 0.400000 +1220 2498 0.400000 +1220 2536 0.400000 +1220 2550 0.400000 +1220 2643 0.400000 +1220 2648 0.400000 +1220 2654 0.400000 +1220 2742 0.400000 +1220 2811 0.400000 +1220 2888 0.400000 +1220 2996 0.400000 +1220 3094 0.400000 +1220 3104 0.400000 +1220 3154 0.400000 +1221 3 0.400000 +1221 37 0.400000 +1221 95 0.400000 +1221 155 0.400000 +1221 294 0.400000 +1221 301 0.400000 +1221 377 0.400000 +1221 380 0.400000 +1221 408 0.400000 +1221 444 0.400000 +1221 491 0.400000 +1221 512 0.400000 +1221 546 0.400000 +1221 607 0.400000 +1221 630 0.400000 +1221 663 0.400000 +1221 702 0.400000 +1221 715 0.400000 +1221 716 0.400000 +1221 870 0.400000 +1221 909 0.400000 +1221 926 0.400000 +1221 966 0.400000 +1221 975 0.400000 +1221 1012 0.400000 +1221 1019 0.400000 +1221 1058 0.400000 +1221 1083 0.400000 +1221 1207 0.400000 +1221 1234 0.400000 +1221 1464 0.400000 +1221 1652 0.400000 +1221 1672 0.400000 +1221 1707 0.400000 +1221 1756 0.400000 +1221 1779 0.400000 +1221 1815 0.400000 +1221 1827 0.400000 +1221 1839 0.400000 +1221 1850 0.400000 +1221 1888 0.400000 +1221 1895 0.400000 +1221 2124 0.400000 +1221 2159 0.400000 +1221 2219 0.400000 +1221 2303 0.400000 +1221 2367 0.400000 +1221 2434 0.400000 +1221 2556 0.400000 +1221 2606 0.400000 +1221 2635 0.400000 +1221 2637 0.400000 +1221 2662 0.400000 +1221 2688 0.400000 +1221 2709 0.400000 +1221 2847 0.400000 +1221 2869 0.400000 +1221 2901 0.400000 +1221 2940 0.400000 +1221 2980 0.400000 +1221 3010 0.400000 +1221 3021 0.400000 +1221 3063 0.400000 +1221 3081 0.400000 +1221 3192 0.400000 +1222 61 0.400000 +1222 110 0.400000 +1222 205 0.400000 +1222 282 0.400000 +1222 330 0.400000 +1222 339 0.400000 +1222 356 0.400000 +1222 512 0.400000 +1222 514 0.400000 +1222 516 0.400000 +1222 645 0.400000 +1222 662 0.400000 +1222 714 0.400000 +1222 726 0.400000 +1222 876 0.400000 +1222 987 0.400000 +1222 1050 0.400000 +1222 1102 0.400000 +1222 1265 0.400000 +1222 1309 0.400000 +1222 1329 0.400000 +1222 1330 0.400000 +1222 1338 0.400000 +1222 1467 0.400000 +1222 1493 0.400000 +1222 1599 0.400000 +1222 1622 0.400000 +1222 1659 0.400000 +1222 1669 0.400000 +1222 1681 0.400000 +1222 1728 0.400000 +1222 1745 0.400000 +1222 1753 0.400000 +1222 1875 0.400000 +1222 1903 0.400000 +1222 1930 0.400000 +1222 1935 0.400000 +1222 1952 0.400000 +1222 1965 0.400000 +1222 1992 0.400000 +1222 2057 0.400000 +1222 2090 0.400000 +1222 2263 0.400000 +1222 2267 0.400000 +1222 2304 0.400000 +1222 2414 0.400000 +1222 2433 0.400000 +1222 2497 0.400000 +1222 2625 0.400000 +1222 2658 0.400000 +1222 2666 0.400000 +1222 2726 0.400000 +1222 2780 0.400000 +1222 2792 0.400000 +1222 2847 0.400000 +1222 2898 0.400000 +1222 2960 0.400000 +1222 2969 0.400000 +1222 3068 0.400000 +1222 3096 0.400000 +1222 3118 0.400000 +1222 3176 0.400000 +1223 33 0.400000 +1223 182 0.400000 +1223 415 0.400000 +1223 450 0.400000 +1223 454 0.400000 +1223 462 0.400000 +1223 705 0.400000 +1223 706 0.400000 +1223 865 0.400000 +1223 908 0.400000 +1223 950 0.400000 +1223 968 0.400000 +1223 1037 0.400000 +1223 1048 0.400000 +1223 1074 0.400000 +1223 1131 0.400000 +1223 1140 0.400000 +1223 1201 0.400000 +1223 1227 0.400000 +1223 1286 0.400000 +1223 1294 0.400000 +1223 1307 0.400000 +1223 1345 0.400000 +1223 1383 0.400000 +1223 1390 0.400000 +1223 1431 0.400000 +1223 1690 0.400000 +1223 1825 0.400000 +1223 1846 0.400000 +1223 1937 0.400000 +1223 1983 0.400000 +1223 2077 0.400000 +1223 2115 0.400000 +1223 2123 0.400000 +1223 2134 0.400000 +1223 2161 0.400000 +1223 2279 0.400000 +1223 2297 0.400000 +1223 2299 0.400000 +1223 2317 0.400000 +1223 2350 0.400000 +1223 2370 0.400000 +1223 2462 0.400000 +1223 2499 0.400000 +1223 2503 0.400000 +1223 2529 0.400000 +1223 2635 0.400000 +1223 2644 0.400000 +1223 2646 0.400000 +1223 2725 0.400000 +1223 2950 0.400000 +1223 3064 0.400000 +1223 3105 0.400000 +1224 3 0.400000 +1224 64 0.400000 +1224 79 0.400000 +1224 85 0.400000 +1224 111 0.400000 +1224 148 0.400000 +1224 167 0.400000 +1224 238 0.400000 +1224 318 0.400000 +1224 383 0.400000 +1224 445 0.400000 +1224 743 0.400000 +1224 752 0.400000 +1224 770 0.400000 +1224 791 0.400000 +1224 867 0.400000 +1224 874 0.400000 +1224 904 0.400000 +1224 919 0.400000 +1224 952 0.400000 +1224 1016 0.400000 +1224 1034 0.400000 +1224 1079 0.400000 +1224 1217 0.400000 +1224 1237 0.400000 +1224 1280 0.400000 +1224 1289 0.400000 +1224 1388 0.400000 +1224 1401 0.400000 +1224 1404 0.400000 +1224 1437 0.400000 +1224 1550 0.400000 +1224 1571 0.400000 +1224 1577 0.400000 +1224 1600 0.400000 +1224 1646 0.400000 +1224 1675 0.400000 +1224 1701 0.400000 +1224 1719 0.400000 +1224 1787 0.400000 +1224 1820 0.400000 +1224 1833 0.400000 +1224 1848 0.400000 +1224 1865 0.400000 +1224 1909 0.400000 +1224 1915 0.400000 +1224 1937 0.400000 +1224 2107 0.400000 +1224 2267 0.400000 +1224 2295 0.400000 +1224 2306 0.400000 +1224 2314 0.400000 +1224 2342 0.400000 +1224 2368 0.400000 +1224 2381 0.400000 +1224 2393 0.400000 +1224 2398 0.400000 +1224 2444 0.400000 +1224 2452 0.400000 +1224 2506 0.400000 +1224 2584 0.400000 +1224 2600 0.400000 +1224 2690 0.400000 +1224 2693 0.400000 +1224 2736 0.400000 +1224 2741 0.400000 +1224 2778 0.400000 +1224 2792 0.400000 +1224 2811 0.400000 +1224 2830 0.400000 +1224 2967 0.400000 +1224 3022 0.400000 +1224 3059 0.400000 +1224 3107 0.400000 +1224 3125 0.400000 +1224 3129 0.400000 +1224 3196 0.400000 +1225 9 0.400000 +1225 43 0.400000 +1225 108 0.400000 +1225 139 0.400000 +1225 192 0.400000 +1225 229 0.400000 +1225 319 0.400000 +1225 379 0.400000 +1225 388 0.400000 +1225 425 0.400000 +1225 480 0.400000 +1225 603 0.400000 +1225 675 0.400000 +1225 778 0.400000 +1225 814 0.400000 +1225 957 0.400000 +1225 989 0.400000 +1225 1095 0.400000 +1225 1105 0.400000 +1225 1119 0.400000 +1225 1262 0.400000 +1225 1281 0.400000 +1225 1340 0.400000 +1225 1391 0.400000 +1225 1460 0.400000 +1225 1516 0.400000 +1225 1526 0.400000 +1225 1559 0.400000 +1225 1562 0.400000 +1225 1563 0.400000 +1225 1582 0.400000 +1225 1592 0.400000 +1225 1629 0.400000 +1225 1675 0.400000 +1225 1754 0.400000 +1225 1823 0.400000 +1225 2066 0.400000 +1225 2082 0.400000 +1225 2239 0.400000 +1225 2285 0.400000 +1225 2327 0.400000 +1225 2393 0.400000 +1225 2489 0.400000 +1225 2496 0.400000 +1225 2535 0.400000 +1225 2544 0.400000 +1225 2586 0.400000 +1225 2599 0.400000 +1225 2608 0.400000 +1225 2706 0.400000 +1225 2803 0.400000 +1225 2805 0.400000 +1225 3027 0.400000 +1225 3083 0.400000 +1225 3123 0.400000 +1225 3196 0.400000 +1225 3200 0.400000 +1226 35 0.400000 +1226 98 0.400000 +1226 115 0.400000 +1226 234 0.400000 +1226 239 0.400000 +1226 362 0.400000 +1226 463 0.400000 +1226 468 0.400000 +1226 499 0.400000 +1226 540 0.400000 +1226 561 0.400000 +1226 674 0.400000 +1226 723 0.400000 +1226 737 0.400000 +1226 762 0.400000 +1226 820 0.400000 +1226 835 0.400000 +1226 851 0.400000 +1226 955 0.400000 +1226 1082 0.400000 +1226 1100 0.400000 +1226 1117 0.400000 +1226 1199 0.400000 +1226 1210 0.400000 +1226 1233 0.400000 +1226 1251 0.400000 +1226 1290 0.400000 +1226 1356 0.400000 +1226 1369 0.400000 +1226 1373 0.400000 +1226 1479 0.400000 +1226 1487 0.400000 +1226 1501 0.400000 +1226 1517 0.400000 +1226 1533 0.400000 +1226 1591 0.400000 +1226 1726 0.400000 +1226 1750 0.400000 +1226 1797 0.400000 +1226 1870 0.400000 +1226 1925 0.400000 +1226 1975 0.400000 +1226 2044 0.400000 +1226 2056 0.400000 +1226 2087 0.400000 +1226 2172 0.400000 +1226 2231 0.400000 +1226 2304 0.400000 +1226 2305 0.400000 +1226 2362 0.400000 +1226 2373 0.400000 +1226 2412 0.400000 +1226 2443 0.400000 +1226 2481 0.400000 +1226 2577 0.400000 +1226 2628 0.400000 +1226 2734 0.400000 +1226 2749 0.400000 +1226 2798 0.400000 +1226 2811 0.400000 +1226 2829 0.400000 +1226 2844 0.400000 +1226 2953 0.400000 +1226 2955 0.400000 +1226 2976 0.400000 +1226 3037 0.400000 +1226 3046 0.400000 +1226 3076 0.400000 +1226 3133 0.400000 +1226 3180 0.400000 +1226 3187 0.400000 +1227 77 0.400000 +1227 120 0.400000 +1227 156 0.400000 +1227 184 0.400000 +1227 200 0.400000 +1227 306 0.400000 +1227 414 0.400000 +1227 422 0.400000 +1227 541 0.400000 +1227 602 0.400000 +1227 739 0.400000 +1227 796 0.400000 +1227 870 0.400000 +1227 973 0.400000 +1227 1059 0.400000 +1227 1110 0.400000 +1227 1186 0.400000 +1227 1194 0.400000 +1227 1260 0.400000 +1227 1264 0.400000 +1227 1472 0.400000 +1227 1541 0.400000 +1227 1601 0.400000 +1227 1670 0.400000 +1227 1727 0.400000 +1227 1789 0.400000 +1227 1814 0.400000 +1227 2000 0.400000 +1227 2145 0.400000 +1227 2255 0.400000 +1227 2280 0.400000 +1227 2291 0.400000 +1227 2343 0.400000 +1227 2385 0.400000 +1227 2498 0.400000 +1227 2505 0.400000 +1227 2752 0.400000 +1227 2765 0.400000 +1227 2806 0.400000 +1227 2896 0.400000 +1227 2922 0.400000 +1227 2927 0.400000 +1227 2928 0.400000 +1227 2965 0.400000 +1227 2987 0.400000 +1227 2989 0.400000 +1227 3019 0.400000 +1227 3022 0.400000 +1227 3101 0.400000 +1227 3158 0.400000 +1228 40 0.400000 +1228 161 0.400000 +1228 213 0.400000 +1228 218 0.400000 +1228 219 0.400000 +1228 317 0.400000 +1228 318 0.400000 +1228 400 0.400000 +1228 440 0.400000 +1228 468 0.400000 +1228 545 0.400000 +1228 548 0.400000 +1228 552 0.400000 +1228 558 0.400000 +1228 614 0.400000 +1228 651 0.400000 +1228 700 0.400000 +1228 725 0.400000 +1228 813 0.400000 +1228 909 0.400000 +1228 933 0.400000 +1228 944 0.400000 +1228 1078 0.400000 +1228 1168 0.400000 +1228 1330 0.400000 +1228 1397 0.400000 +1228 1454 0.400000 +1228 1553 0.400000 +1228 1599 0.400000 +1228 1775 0.400000 +1228 1810 0.400000 +1228 1817 0.400000 +1228 1859 0.400000 +1228 1860 0.400000 +1228 1872 0.400000 +1228 1893 0.400000 +1228 1895 0.400000 +1228 1905 0.400000 +1228 1917 0.400000 +1228 1962 0.400000 +1228 2012 0.400000 +1228 2013 0.400000 +1228 2170 0.400000 +1228 2171 0.400000 +1228 2205 0.400000 +1228 2293 0.400000 +1228 2314 0.400000 +1228 2665 0.400000 +1228 2675 0.400000 +1228 2760 0.400000 +1228 2772 0.400000 +1228 2925 0.400000 +1228 2944 0.400000 +1228 2961 0.400000 +1228 3177 0.400000 +1229 60 0.400000 +1229 66 0.400000 +1229 136 0.400000 +1229 199 0.400000 +1229 497 0.400000 +1229 618 0.400000 +1229 679 0.400000 +1229 686 0.400000 +1229 687 0.400000 +1229 723 0.400000 +1229 742 0.400000 +1229 938 0.400000 +1229 1040 0.400000 +1229 1045 0.400000 +1229 1089 0.400000 +1229 1095 0.400000 +1229 1125 0.400000 +1229 1226 0.400000 +1229 1300 0.400000 +1229 1367 0.400000 +1229 1445 0.400000 +1229 1449 0.400000 +1229 1477 0.400000 +1229 1505 0.400000 +1229 1509 0.400000 +1229 1557 0.400000 +1229 1680 0.400000 +1229 1699 0.400000 +1229 1715 0.400000 +1229 1724 0.400000 +1229 1746 0.400000 +1229 1833 0.400000 +1229 1873 0.400000 +1229 2070 0.400000 +1229 2089 0.400000 +1229 2144 0.400000 +1229 2217 0.400000 +1229 2287 0.400000 +1229 2293 0.400000 +1229 2373 0.400000 +1229 2427 0.400000 +1229 2429 0.400000 +1229 2515 0.400000 +1229 2532 0.400000 +1229 2561 0.400000 +1229 2621 0.400000 +1229 2652 0.400000 +1229 2729 0.400000 +1229 2746 0.400000 +1229 2747 0.400000 +1229 2748 0.400000 +1229 2833 0.400000 +1229 2882 0.400000 +1229 2938 0.400000 +1229 2991 0.400000 +1229 2995 0.400000 +1229 3044 0.400000 +1230 17 0.400000 +1230 23 0.400000 +1230 123 0.400000 +1230 135 0.400000 +1230 177 0.400000 +1230 202 0.400000 +1230 277 0.400000 +1230 310 0.400000 +1230 339 0.400000 +1230 390 0.400000 +1230 494 0.400000 +1230 509 0.400000 +1230 519 0.400000 +1230 532 0.400000 +1230 580 0.400000 +1230 583 0.400000 +1230 586 0.400000 +1230 614 0.400000 +1230 760 0.400000 +1230 831 0.400000 +1230 861 0.400000 +1230 943 0.400000 +1230 956 0.400000 +1230 975 0.400000 +1230 983 0.400000 +1230 1001 0.400000 +1230 1091 0.400000 +1230 1129 0.400000 +1230 1184 0.400000 +1230 1286 0.400000 +1230 1321 0.400000 +1230 1337 0.400000 +1230 1400 0.400000 +1230 1478 0.400000 +1230 1561 0.400000 +1230 1579 0.400000 +1230 1589 0.400000 +1230 1609 0.400000 +1230 1616 0.400000 +1230 1628 0.400000 +1230 1685 0.400000 +1230 1750 0.400000 +1230 1771 0.400000 +1230 1863 0.400000 +1230 2227 0.400000 +1230 2271 0.400000 +1230 2284 0.400000 +1230 2398 0.400000 +1230 2442 0.400000 +1230 2521 0.400000 +1230 2527 0.400000 +1230 2686 0.400000 +1230 2724 0.400000 +1230 2725 0.400000 +1230 2731 0.400000 +1230 2735 0.400000 +1230 2990 0.400000 +1230 2997 0.400000 +1230 2998 0.400000 +1230 3007 0.400000 +1230 3057 0.400000 +1230 3077 0.400000 +1230 3134 0.400000 +1231 2 0.400000 +1231 13 0.400000 +1231 147 0.400000 +1231 164 0.400000 +1231 237 0.400000 +1231 292 0.400000 +1231 385 0.400000 +1231 432 0.400000 +1231 522 0.400000 +1231 586 0.400000 +1231 592 0.400000 +1231 662 0.400000 +1231 663 0.400000 +1231 748 0.400000 +1231 765 0.400000 +1231 839 0.400000 +1231 896 0.400000 +1231 919 0.400000 +1231 993 0.400000 +1231 994 0.400000 +1231 997 0.400000 +1231 1003 0.400000 +1231 1008 0.400000 +1231 1105 0.400000 +1231 1136 0.400000 +1231 1137 0.400000 +1231 1162 0.400000 +1231 1203 0.400000 +1231 1243 0.400000 +1231 1378 0.400000 +1231 1439 0.400000 +1231 1493 0.400000 +1231 1597 0.400000 +1231 1618 0.400000 +1231 1636 0.400000 +1231 1643 0.400000 +1231 1704 0.400000 +1231 1732 0.400000 +1231 1736 0.400000 +1231 1752 0.400000 +1231 1764 0.400000 +1231 1772 0.400000 +1231 1839 0.400000 +1231 1978 0.400000 +1231 2058 0.400000 +1231 2082 0.400000 +1231 2089 0.400000 +1231 2125 0.400000 +1231 2129 0.400000 +1231 2234 0.400000 +1231 2324 0.400000 +1231 2335 0.400000 +1231 2348 0.400000 +1231 2350 0.400000 +1231 2439 0.400000 +1231 2441 0.400000 +1231 2458 0.400000 +1231 2510 0.400000 +1231 2593 0.400000 +1231 2598 0.400000 +1231 2602 0.400000 +1231 2623 0.400000 +1231 2648 0.400000 +1231 2677 0.400000 +1231 2696 0.400000 +1231 2764 0.400000 +1231 2779 0.400000 +1231 2784 0.400000 +1231 2812 0.400000 +1231 2819 0.400000 +1231 2904 0.400000 +1231 3022 0.400000 +1231 3037 0.400000 +1231 3042 0.400000 +1231 3077 0.400000 +1231 3140 0.400000 +1232 31 0.400000 +1232 64 0.400000 +1232 117 0.400000 +1232 250 0.400000 +1232 267 0.400000 +1232 274 0.400000 +1232 283 0.400000 +1232 287 0.400000 +1232 346 0.400000 +1232 347 0.400000 +1232 356 0.400000 +1232 358 0.400000 +1232 370 0.400000 +1232 374 0.400000 +1232 382 0.400000 +1232 383 0.400000 +1232 451 0.400000 +1232 472 0.400000 +1232 508 0.400000 +1232 548 0.400000 +1232 564 0.400000 +1232 694 0.400000 +1232 767 0.400000 +1232 776 0.400000 +1232 844 0.400000 +1232 981 0.400000 +1232 1012 0.400000 +1232 1202 0.400000 +1232 1211 0.400000 +1232 1302 0.400000 +1232 1397 0.400000 +1232 1494 0.400000 +1232 1530 0.400000 +1232 1562 0.400000 +1232 1571 0.400000 +1232 1575 0.400000 +1232 1667 0.400000 +1232 1668 0.400000 +1232 1840 0.400000 +1232 1873 0.400000 +1232 1905 0.400000 +1232 2075 0.400000 +1232 2090 0.400000 +1232 2148 0.400000 +1232 2189 0.400000 +1232 2196 0.400000 +1232 2253 0.400000 +1232 2269 0.400000 +1232 2364 0.400000 +1232 2417 0.400000 +1232 2469 0.400000 +1232 2500 0.400000 +1232 2546 0.400000 +1232 2555 0.400000 +1232 2556 0.400000 +1232 2565 0.400000 +1232 2587 0.400000 +1232 2597 0.400000 +1232 2668 0.400000 +1232 2723 0.400000 +1232 2744 0.400000 +1232 2830 0.400000 +1232 2870 0.400000 +1232 2903 0.400000 +1232 2954 0.400000 +1232 2984 0.400000 +1232 3016 0.400000 +1232 3019 0.400000 +1232 3033 0.400000 +1232 3104 0.400000 +1232 3162 0.400000 +1232 3173 0.400000 +1233 21 0.400000 +1233 54 0.400000 +1233 195 0.400000 +1233 226 0.400000 +1233 228 0.400000 +1233 279 0.400000 +1233 503 0.400000 +1233 733 0.400000 +1233 827 0.400000 +1233 877 0.400000 +1233 906 0.400000 +1233 914 0.400000 +1233 1015 0.400000 +1233 1103 0.400000 +1233 1211 0.400000 +1233 1323 0.400000 +1233 1344 0.400000 +1233 1363 0.400000 +1233 1425 0.400000 +1233 1454 0.400000 +1233 1490 0.400000 +1233 1491 0.400000 +1233 1526 0.400000 +1233 1584 0.400000 +1233 1595 0.400000 +1233 1644 0.400000 +1233 1707 0.400000 +1233 1796 0.400000 +1233 2172 0.400000 +1233 2222 0.400000 +1233 2272 0.400000 +1233 2365 0.400000 +1233 2411 0.400000 +1233 2428 0.400000 +1233 2613 0.400000 +1233 2748 0.400000 +1233 2808 0.400000 +1233 2828 0.400000 +1233 2829 0.400000 +1233 2835 0.400000 +1233 2958 0.400000 +1233 3000 0.400000 +1233 3003 0.400000 +1233 3099 0.400000 +1233 3173 0.400000 +1233 3192 0.400000 +1234 1 0.400000 +1234 98 0.400000 +1234 256 0.400000 +1234 266 0.400000 +1234 307 0.400000 +1234 377 0.400000 +1234 487 0.400000 +1234 521 0.400000 +1234 535 0.400000 +1234 569 0.400000 +1234 578 0.400000 +1234 580 0.400000 +1234 584 0.400000 +1234 607 0.400000 +1234 632 0.400000 +1234 649 0.400000 +1234 659 0.400000 +1234 669 0.400000 +1234 753 0.400000 +1234 810 0.400000 +1234 811 0.400000 +1234 817 0.400000 +1234 874 0.400000 +1234 976 0.400000 +1234 977 0.400000 +1234 1020 0.400000 +1234 1097 0.400000 +1234 1098 0.400000 +1234 1164 0.400000 +1234 1173 0.400000 +1234 1189 0.400000 +1234 1211 0.400000 +1234 1218 0.400000 +1234 1253 0.400000 +1234 1286 0.400000 +1234 1329 0.400000 +1234 1331 0.400000 +1234 1448 0.400000 +1234 1451 0.400000 +1234 1472 0.400000 +1234 1582 0.400000 +1234 1613 0.400000 +1234 1652 0.400000 +1234 1808 0.400000 +1234 1833 0.400000 +1234 1919 0.400000 +1234 2029 0.400000 +1234 2044 0.400000 +1234 2059 0.400000 +1234 2068 0.400000 +1234 2091 0.400000 +1234 2222 0.400000 +1234 2227 0.400000 +1234 2323 0.400000 +1234 2455 0.400000 +1234 2483 0.400000 +1234 2513 0.400000 +1234 2547 0.400000 +1234 2595 0.400000 +1234 2604 0.400000 +1234 2625 0.400000 +1234 2641 0.400000 +1234 2706 0.400000 +1234 2733 0.400000 +1234 2771 0.400000 +1234 2792 0.400000 +1234 2948 0.400000 +1234 2986 0.400000 +1234 3013 0.400000 +1234 3019 0.400000 +1234 3101 0.400000 +1235 4 0.400000 +1235 30 0.400000 +1235 91 0.400000 +1235 118 0.400000 +1235 147 0.400000 +1235 172 0.400000 +1235 252 0.400000 +1235 267 0.400000 +1235 280 0.400000 +1235 329 0.400000 +1235 392 0.400000 +1235 456 0.400000 +1235 525 0.400000 +1235 555 0.400000 +1235 620 0.400000 +1235 622 0.400000 +1235 625 0.400000 +1235 682 0.400000 +1235 930 0.400000 +1235 943 0.400000 +1235 983 0.400000 +1235 1005 0.400000 +1235 1068 0.400000 +1235 1077 0.400000 +1235 1098 0.400000 +1235 1099 0.400000 +1235 1114 0.400000 +1235 1127 0.400000 +1235 1129 0.400000 +1235 1173 0.400000 +1235 1275 0.400000 +1235 1386 0.400000 +1235 1400 0.400000 +1235 1432 0.400000 +1235 1433 0.400000 +1235 1590 0.400000 +1235 1656 0.400000 +1235 1788 0.400000 +1235 1798 0.400000 +1235 1841 0.400000 +1235 1864 0.400000 +1235 1868 0.400000 +1235 1939 0.400000 +1235 1952 0.400000 +1235 1955 0.400000 +1235 1961 0.400000 +1235 1965 0.400000 +1235 1997 0.400000 +1235 2094 0.400000 +1235 2131 0.400000 +1235 2223 0.400000 +1235 2233 0.400000 +1235 2324 0.400000 +1235 2356 0.400000 +1235 2525 0.400000 +1235 2561 0.400000 +1235 2563 0.400000 +1235 2677 0.400000 +1235 2779 0.400000 +1235 2856 0.400000 +1235 2874 0.400000 +1235 2929 0.400000 +1235 2937 0.400000 +1235 2946 0.400000 +1235 3046 0.400000 +1235 3047 0.400000 +1235 3141 0.400000 +1235 3144 0.400000 +1236 33 0.400000 +1236 179 0.400000 +1236 338 0.400000 +1236 349 0.400000 +1236 360 0.400000 +1236 364 0.400000 +1236 473 0.400000 +1236 499 0.400000 +1236 505 0.400000 +1236 532 0.400000 +1236 533 0.400000 +1236 646 0.400000 +1236 744 0.400000 +1236 745 0.400000 +1236 806 0.400000 +1236 808 0.400000 +1236 830 0.400000 +1236 840 0.400000 +1236 921 0.400000 +1236 939 0.400000 +1236 970 0.400000 +1236 1008 0.400000 +1236 1072 0.400000 +1236 1110 0.400000 +1236 1126 0.400000 +1236 1235 0.400000 +1236 1291 0.400000 +1236 1305 0.400000 +1236 1344 0.400000 +1236 1415 0.400000 +1236 1485 0.400000 +1236 1493 0.400000 +1236 1499 0.400000 +1236 1516 0.400000 +1236 1567 0.400000 +1236 1571 0.400000 +1236 1592 0.400000 +1236 1641 0.400000 +1236 1756 0.400000 +1236 1785 0.400000 +1236 1823 0.400000 +1236 1888 0.400000 +1236 1919 0.400000 +1236 1954 0.400000 +1236 1965 0.400000 +1236 1981 0.400000 +1236 2042 0.400000 +1236 2071 0.400000 +1236 2177 0.400000 +1236 2498 0.400000 +1236 2589 0.400000 +1236 2631 0.400000 +1236 2648 0.400000 +1236 2669 0.400000 +1236 2706 0.400000 +1236 2773 0.400000 +1236 2908 0.400000 +1236 2978 0.400000 +1236 3038 0.400000 +1236 3057 0.400000 +1236 3062 0.400000 +1236 3069 0.400000 +1236 3098 0.400000 +1237 27 0.400000 +1237 54 0.400000 +1237 104 0.400000 +1237 116 0.400000 +1237 162 0.400000 +1237 197 0.400000 +1237 254 0.400000 +1237 295 0.400000 +1237 327 0.400000 +1237 362 0.400000 +1237 408 0.400000 +1237 514 0.400000 +1237 590 0.400000 +1237 598 0.400000 +1237 683 0.400000 +1237 777 0.400000 +1237 880 0.400000 +1237 944 0.400000 +1237 947 0.400000 +1237 995 0.400000 +1237 1003 0.400000 +1237 1017 0.400000 +1237 1047 0.400000 +1237 1145 0.400000 +1237 1213 0.400000 +1237 1290 0.400000 +1237 1324 0.400000 +1237 1389 0.400000 +1237 1421 0.400000 +1237 1477 0.400000 +1237 1510 0.400000 +1237 1570 0.400000 +1237 1573 0.400000 +1237 1584 0.400000 +1237 1814 0.400000 +1237 1847 0.400000 +1237 1857 0.400000 +1237 1941 0.400000 +1237 1959 0.400000 +1237 1965 0.400000 +1237 2077 0.400000 +1237 2353 0.400000 +1237 2437 0.400000 +1237 2557 0.400000 +1237 2712 0.400000 +1237 2719 0.400000 +1237 2763 0.400000 +1237 2809 0.400000 +1237 2960 0.400000 +1237 2989 0.400000 +1237 3064 0.400000 +1237 3160 0.400000 +1237 3177 0.400000 +1237 3189 0.400000 +1238 109 0.400000 +1238 118 0.400000 +1238 126 0.400000 +1238 198 0.400000 +1238 238 0.400000 +1238 246 0.400000 +1238 353 0.400000 +1238 354 0.400000 +1238 386 0.400000 +1238 388 0.400000 +1238 398 0.400000 +1238 408 0.400000 +1238 455 0.400000 +1238 505 0.400000 +1238 642 0.400000 +1238 686 0.400000 +1238 697 0.400000 +1238 782 0.400000 +1238 788 0.400000 +1238 847 0.400000 +1238 874 0.400000 +1238 948 0.400000 +1238 1031 0.400000 +1238 1056 0.400000 +1238 1163 0.400000 +1238 1167 0.400000 +1238 1168 0.400000 +1238 1180 0.400000 +1238 1304 0.400000 +1238 1325 0.400000 +1238 1459 0.400000 +1238 1477 0.400000 +1238 1567 0.400000 +1238 1595 0.400000 +1238 1609 0.400000 +1238 1685 0.400000 +1238 1755 0.400000 +1238 1853 0.400000 +1238 1921 0.400000 +1238 1943 0.400000 +1238 2014 0.400000 +1238 2021 0.400000 +1238 2072 0.400000 +1238 2073 0.400000 +1238 2083 0.400000 +1238 2201 0.400000 +1238 2203 0.400000 +1238 2304 0.400000 +1238 2494 0.400000 +1238 2527 0.400000 +1238 2585 0.400000 +1238 2674 0.400000 +1238 2699 0.400000 +1238 2768 0.400000 +1238 2791 0.400000 +1238 2846 0.400000 +1238 2870 0.400000 +1238 2940 0.400000 +1238 2946 0.400000 +1238 3009 0.400000 +1238 3011 0.400000 +1238 3015 0.400000 +1238 3034 0.400000 +1238 3105 0.400000 +1238 3126 0.400000 +1238 3133 0.400000 +1239 46 0.400000 +1239 83 0.400000 +1239 192 0.400000 +1239 204 0.400000 +1239 297 0.400000 +1239 304 0.400000 +1239 318 0.400000 +1239 376 0.400000 +1239 385 0.400000 +1239 395 0.400000 +1239 433 0.400000 +1239 442 0.400000 +1239 491 0.400000 +1239 499 0.400000 +1239 512 0.400000 +1239 550 0.400000 +1239 557 0.400000 +1239 617 0.400000 +1239 725 0.400000 +1239 754 0.400000 +1239 848 0.400000 +1239 901 0.400000 +1239 952 0.400000 +1239 1052 0.400000 +1239 1090 0.400000 +1239 1115 0.400000 +1239 1134 0.400000 +1239 1152 0.400000 +1239 1160 0.400000 +1239 1172 0.400000 +1239 1185 0.400000 +1239 1238 0.400000 +1239 1241 0.400000 +1239 1251 0.400000 +1239 1260 0.400000 +1239 1270 0.400000 +1239 1311 0.400000 +1239 1333 0.400000 +1239 1436 0.400000 +1239 1458 0.400000 +1239 1460 0.400000 +1239 1492 0.400000 +1239 1496 0.400000 +1239 1551 0.400000 +1239 1591 0.400000 +1239 1734 0.400000 +1239 1846 0.400000 +1239 1938 0.400000 +1239 1964 0.400000 +1239 1992 0.400000 +1239 2042 0.400000 +1239 2141 0.400000 +1239 2167 0.400000 +1239 2171 0.400000 +1239 2208 0.400000 +1239 2359 0.400000 +1239 2479 0.400000 +1239 2571 0.400000 +1239 2595 0.400000 +1239 2606 0.400000 +1239 2657 0.400000 +1239 2672 0.400000 +1239 2716 0.400000 +1239 2739 0.400000 +1239 2846 0.400000 +1239 2894 0.400000 +1239 2898 0.400000 +1239 2995 0.400000 +1239 3083 0.400000 +1239 3090 0.400000 +1239 3131 0.400000 +1239 3140 0.400000 +1239 3144 0.400000 +1240 161 0.400000 +1240 186 0.400000 +1240 197 0.400000 +1240 227 0.400000 +1240 276 0.400000 +1240 282 0.400000 +1240 365 0.400000 +1240 374 0.400000 +1240 397 0.400000 +1240 407 0.400000 +1240 415 0.400000 +1240 419 0.400000 +1240 475 0.400000 +1240 481 0.400000 +1240 528 0.400000 +1240 553 0.400000 +1240 640 0.400000 +1240 697 0.400000 +1240 731 0.400000 +1240 786 0.400000 +1240 796 0.400000 +1240 823 0.400000 +1240 831 0.400000 +1240 898 0.400000 +1240 919 0.400000 +1240 1098 0.400000 +1240 1122 0.400000 +1240 1183 0.400000 +1240 1203 0.400000 +1240 1229 0.400000 +1240 1230 0.400000 +1240 1246 0.400000 +1240 1305 0.400000 +1240 1447 0.400000 +1240 1461 0.400000 +1240 1503 0.400000 +1240 1575 0.400000 +1240 1615 0.400000 +1240 1657 0.400000 +1240 1710 0.400000 +1240 1967 0.400000 +1240 2003 0.400000 +1240 2043 0.400000 +1240 2072 0.400000 +1240 2158 0.400000 +1240 2218 0.400000 +1240 2223 0.400000 +1240 2277 0.400000 +1240 2329 0.400000 +1240 2380 0.400000 +1240 2430 0.400000 +1240 2441 0.400000 +1240 2446 0.400000 +1240 2489 0.400000 +1240 2514 0.400000 +1240 2517 0.400000 +1240 2533 0.400000 +1240 2586 0.400000 +1240 2587 0.400000 +1240 2623 0.400000 +1240 2644 0.400000 +1240 2673 0.400000 +1240 2700 0.400000 +1240 2717 0.400000 +1240 2782 0.400000 +1240 2850 0.400000 +1240 2870 0.400000 +1240 2962 0.400000 +1240 3050 0.400000 +1240 3127 0.400000 +1240 3151 0.400000 +1240 3171 0.400000 +1240 3174 0.400000 +1240 3180 0.400000 +1241 28 0.400000 +1241 58 0.400000 +1241 68 0.400000 +1241 80 0.400000 +1241 129 0.400000 +1241 209 0.400000 +1241 213 0.400000 +1241 249 0.400000 +1241 260 0.400000 +1241 277 0.400000 +1241 315 0.400000 +1241 340 0.400000 +1241 390 0.400000 +1241 411 0.400000 +1241 511 0.400000 +1241 518 0.400000 +1241 625 0.400000 +1241 635 0.400000 +1241 713 0.400000 +1241 721 0.400000 +1241 779 0.400000 +1241 809 0.400000 +1241 994 0.400000 +1241 1128 0.400000 +1241 1199 0.400000 +1241 1213 0.400000 +1241 1329 0.400000 +1241 1347 0.400000 +1241 1441 0.400000 +1241 1517 0.400000 +1241 1550 0.400000 +1241 1635 0.400000 +1241 1636 0.400000 +1241 1676 0.400000 +1241 1785 0.400000 +1241 1795 0.400000 +1241 2019 0.400000 +1241 2088 0.400000 +1241 2114 0.400000 +1241 2155 0.400000 +1241 2237 0.400000 +1241 2316 0.400000 +1241 2327 0.400000 +1241 2335 0.400000 +1241 2340 0.400000 +1241 2417 0.400000 +1241 2441 0.400000 +1241 2472 0.400000 +1241 2475 0.400000 +1241 2539 0.400000 +1241 2547 0.400000 +1241 2562 0.400000 +1241 2588 0.400000 +1241 2648 0.400000 +1241 2667 0.400000 +1241 2675 0.400000 +1241 2714 0.400000 +1241 2770 0.400000 +1241 2797 0.400000 +1241 2904 0.400000 +1241 2914 0.400000 +1241 2919 0.400000 +1241 3035 0.400000 +1241 3124 0.400000 +1241 3172 0.400000 +1242 3 0.400000 +1242 23 0.400000 +1242 49 0.400000 +1242 134 0.400000 +1242 234 0.400000 +1242 269 0.400000 +1242 272 0.400000 +1242 303 0.400000 +1242 401 0.400000 +1242 404 0.400000 +1242 417 0.400000 +1242 442 0.400000 +1242 446 0.400000 +1242 484 0.400000 +1242 522 0.400000 +1242 582 0.400000 +1242 619 0.400000 +1242 638 0.400000 +1242 703 0.400000 +1242 798 0.400000 +1242 872 0.400000 +1242 888 0.400000 +1242 925 0.400000 +1242 932 0.400000 +1242 1050 0.400000 +1242 1065 0.400000 +1242 1073 0.400000 +1242 1175 0.400000 +1242 1194 0.400000 +1242 1236 0.400000 +1242 1286 0.400000 +1242 1291 0.400000 +1242 1324 0.400000 +1242 1413 0.400000 +1242 1502 0.400000 +1242 1560 0.400000 +1242 1586 0.400000 +1242 1592 0.400000 +1242 1600 0.400000 +1242 1741 0.400000 +1242 1773 0.400000 +1242 1782 0.400000 +1242 1797 0.400000 +1242 1857 0.400000 +1242 1878 0.400000 +1242 1897 0.400000 +1242 1963 0.400000 +1242 1968 0.400000 +1242 2052 0.400000 +1242 2076 0.400000 +1242 2082 0.400000 +1242 2095 0.400000 +1242 2096 0.400000 +1242 2125 0.400000 +1242 2145 0.400000 +1242 2176 0.400000 +1242 2226 0.400000 +1242 2282 0.400000 +1242 2301 0.400000 +1242 2355 0.400000 +1242 2358 0.400000 +1242 2364 0.400000 +1242 2441 0.400000 +1242 2454 0.400000 +1242 2487 0.400000 +1242 2506 0.400000 +1242 2526 0.400000 +1242 2535 0.400000 +1242 2545 0.400000 +1242 2585 0.400000 +1242 2613 0.400000 +1242 2642 0.400000 +1242 2651 0.400000 +1242 2835 0.400000 +1242 2907 0.400000 +1242 2915 0.400000 +1242 2984 0.400000 +1242 2996 0.400000 +1242 3011 0.400000 +1242 3062 0.400000 +1242 3067 0.400000 +1242 3108 0.400000 +1242 3136 0.400000 +1242 3185 0.400000 +1242 3186 0.400000 +1243 2 0.400000 +1243 47 0.400000 +1243 66 0.400000 +1243 86 0.400000 +1243 93 0.400000 +1243 123 0.400000 +1243 147 0.400000 +1243 373 0.400000 +1243 393 0.400000 +1243 419 0.400000 +1243 507 0.400000 +1243 538 0.400000 +1243 575 0.400000 +1243 592 0.400000 +1243 602 0.400000 +1243 754 0.400000 +1243 770 0.400000 +1243 798 0.400000 +1243 895 0.400000 +1243 903 0.400000 +1243 913 0.400000 +1243 931 0.400000 +1243 991 0.400000 +1243 1024 0.400000 +1243 1039 0.400000 +1243 1103 0.400000 +1243 1240 0.400000 +1243 1272 0.400000 +1243 1339 0.400000 +1243 1421 0.400000 +1243 1441 0.400000 +1243 1452 0.400000 +1243 1483 0.400000 +1243 1485 0.400000 +1243 1511 0.400000 +1243 1601 0.400000 +1243 1697 0.400000 +1243 1721 0.400000 +1243 1727 0.400000 +1243 1775 0.400000 +1243 1847 0.400000 +1243 1948 0.400000 +1243 1964 0.400000 +1243 1992 0.400000 +1243 1994 0.400000 +1243 2034 0.400000 +1243 2062 0.400000 +1243 2066 0.400000 +1243 2077 0.400000 +1243 2254 0.400000 +1243 2267 0.400000 +1243 2281 0.400000 +1243 2298 0.400000 +1243 2307 0.400000 +1243 2417 0.400000 +1243 2433 0.400000 +1243 2456 0.400000 +1243 2470 0.400000 +1243 2527 0.400000 +1243 2551 0.400000 +1243 2612 0.400000 +1243 2668 0.400000 +1243 2686 0.400000 +1243 2723 0.400000 +1243 2842 0.400000 +1243 2866 0.400000 +1243 2867 0.400000 +1243 2886 0.400000 +1243 2939 0.400000 +1243 3029 0.400000 +1243 3031 0.400000 +1243 3070 0.400000 +1243 3081 0.400000 +1243 3106 0.400000 +1243 3149 0.400000 +1244 23 0.400000 +1244 64 0.400000 +1244 132 0.400000 +1244 167 0.400000 +1244 217 0.400000 +1244 219 0.400000 +1244 252 0.400000 +1244 278 0.400000 +1244 419 0.400000 +1244 421 0.400000 +1244 422 0.400000 +1244 438 0.400000 +1244 480 0.400000 +1244 496 0.400000 +1244 521 0.400000 +1244 523 0.400000 +1244 593 0.400000 +1244 647 0.400000 +1244 659 0.400000 +1244 780 0.400000 +1244 897 0.400000 +1244 911 0.400000 +1244 917 0.400000 +1244 944 0.400000 +1244 945 0.400000 +1244 950 0.400000 +1244 1027 0.400000 +1244 1130 0.400000 +1244 1198 0.400000 +1244 1257 0.400000 +1244 1274 0.400000 +1244 1283 0.400000 +1244 1333 0.400000 +1244 1336 0.400000 +1244 1486 0.400000 +1244 1487 0.400000 +1244 1505 0.400000 +1244 1535 0.400000 +1244 1549 0.400000 +1244 1580 0.400000 +1244 1628 0.400000 +1244 1659 0.400000 +1244 1685 0.400000 +1244 1695 0.400000 +1244 1791 0.400000 +1244 1889 0.400000 +1244 1924 0.400000 +1244 1926 0.400000 +1244 2059 0.400000 +1244 2207 0.400000 +1244 2226 0.400000 +1244 2238 0.400000 +1244 2252 0.400000 +1244 2255 0.400000 +1244 2264 0.400000 +1244 2338 0.400000 +1244 2400 0.400000 +1244 2432 0.400000 +1244 2444 0.400000 +1244 2447 0.400000 +1244 2586 0.400000 +1244 2587 0.400000 +1244 2713 0.400000 +1244 2740 0.400000 +1244 2801 0.400000 +1244 2853 0.400000 +1244 2915 0.400000 +1244 2922 0.400000 +1244 2977 0.400000 +1244 2983 0.400000 +1244 2999 0.400000 +1244 3013 0.400000 +1244 3178 0.400000 +1245 105 0.400000 +1245 149 0.400000 +1245 159 0.400000 +1245 190 0.400000 +1245 270 0.400000 +1245 289 0.400000 +1245 331 0.400000 +1245 343 0.400000 +1245 525 0.400000 +1245 580 0.400000 +1245 590 0.400000 +1245 712 0.400000 +1245 846 0.400000 +1245 911 0.400000 +1245 1045 0.400000 +1245 1056 0.400000 +1245 1193 0.400000 +1245 1277 0.400000 +1245 1459 0.400000 +1245 1473 0.400000 +1245 1525 0.400000 +1245 1627 0.400000 +1245 1645 0.400000 +1245 1658 0.400000 +1245 1722 0.400000 +1245 1846 0.400000 +1245 1863 0.400000 +1245 2055 0.400000 +1245 2093 0.400000 +1245 2103 0.400000 +1245 2169 0.400000 +1245 2191 0.400000 +1245 2303 0.400000 +1245 2320 0.400000 +1245 2324 0.400000 +1245 2326 0.400000 +1245 2410 0.400000 +1245 2419 0.400000 +1245 2490 0.400000 +1245 2539 0.400000 +1245 2547 0.400000 +1245 2556 0.400000 +1245 2596 0.400000 +1245 2612 0.400000 +1245 2614 0.400000 +1245 2661 0.400000 +1245 2709 0.400000 +1245 2771 0.400000 +1245 2789 0.400000 +1245 2850 0.400000 +1245 2858 0.400000 +1245 3123 0.400000 +1246 56 0.400000 +1246 213 0.400000 +1246 228 0.400000 +1246 267 0.400000 +1246 462 0.400000 +1246 615 0.400000 +1246 626 0.400000 +1246 627 0.400000 +1246 736 0.400000 +1246 806 0.400000 +1246 827 0.400000 +1246 839 0.400000 +1246 865 0.400000 +1246 920 0.400000 +1246 1108 0.400000 +1246 1136 0.400000 +1246 1138 0.400000 +1246 1175 0.400000 +1246 1207 0.400000 +1246 1217 0.400000 +1246 1252 0.400000 +1246 1270 0.400000 +1246 1278 0.400000 +1246 1399 0.400000 +1246 1440 0.400000 +1246 1443 0.400000 +1246 1492 0.400000 +1246 1635 0.400000 +1246 1681 0.400000 +1246 1712 0.400000 +1246 1718 0.400000 +1246 1735 0.400000 +1246 1738 0.400000 +1246 1773 0.400000 +1246 2001 0.400000 +1246 2101 0.400000 +1246 2125 0.400000 +1246 2167 0.400000 +1246 2188 0.400000 +1246 2299 0.400000 +1246 2346 0.400000 +1246 2485 0.400000 +1246 2522 0.400000 +1246 2523 0.400000 +1246 2546 0.400000 +1246 2712 0.400000 +1246 2734 0.400000 +1246 2787 0.400000 +1246 2807 0.400000 +1246 2871 0.400000 +1246 2914 0.400000 +1246 2925 0.400000 +1246 2931 0.400000 +1246 2989 0.400000 +1246 3051 0.400000 +1246 3096 0.400000 +1246 3128 0.400000 +1246 3131 0.400000 +1246 3171 0.400000 +1246 3186 0.400000 +1246 3195 0.400000 +1246 3197 0.400000 +1247 30 0.400000 +1247 87 0.400000 +1247 110 0.400000 +1247 118 0.400000 +1247 164 0.400000 +1247 233 0.400000 +1247 399 0.400000 +1247 410 0.400000 +1247 430 0.400000 +1247 480 0.400000 +1247 518 0.400000 +1247 561 0.400000 +1247 624 0.400000 +1247 652 0.400000 +1247 684 0.400000 +1247 770 0.400000 +1247 773 0.400000 +1247 795 0.400000 +1247 812 0.400000 +1247 838 0.400000 +1247 842 0.400000 +1247 987 0.400000 +1247 1001 0.400000 +1247 1005 0.400000 +1247 1026 0.400000 +1247 1032 0.400000 +1247 1075 0.400000 +1247 1272 0.400000 +1247 1285 0.400000 +1247 1300 0.400000 +1247 1309 0.400000 +1247 1312 0.400000 +1247 1412 0.400000 +1247 1417 0.400000 +1247 1456 0.400000 +1247 1461 0.400000 +1247 1501 0.400000 +1247 1521 0.400000 +1247 1540 0.400000 +1247 1638 0.400000 +1247 1812 0.400000 +1247 1831 0.400000 +1247 1832 0.400000 +1247 1855 0.400000 +1247 1870 0.400000 +1247 1881 0.400000 +1247 1893 0.400000 +1247 1898 0.400000 +1247 2004 0.400000 +1247 2027 0.400000 +1247 2084 0.400000 +1247 2159 0.400000 +1247 2162 0.400000 +1247 2208 0.400000 +1247 2241 0.400000 +1247 2270 0.400000 +1247 2273 0.400000 +1247 2338 0.400000 +1247 2376 0.400000 +1247 2382 0.400000 +1247 2512 0.400000 +1247 2523 0.400000 +1247 2531 0.400000 +1247 2540 0.400000 +1247 2625 0.400000 +1247 2635 0.400000 +1247 2659 0.400000 +1247 2702 0.400000 +1247 2718 0.400000 +1247 2731 0.400000 +1247 2762 0.400000 +1247 2817 0.400000 +1247 2939 0.400000 +1247 2968 0.400000 +1247 3025 0.400000 +1247 3116 0.400000 +1248 21 0.400000 +1248 28 0.400000 +1248 100 0.400000 +1248 255 0.400000 +1248 324 0.400000 +1248 408 0.400000 +1248 412 0.400000 +1248 415 0.400000 +1248 429 0.400000 +1248 435 0.400000 +1248 612 0.400000 +1248 621 0.400000 +1248 632 0.400000 +1248 659 0.400000 +1248 671 0.400000 +1248 704 0.400000 +1248 754 0.400000 +1248 775 0.400000 +1248 776 0.400000 +1248 808 0.400000 +1248 851 0.400000 +1248 894 0.400000 +1248 910 0.400000 +1248 933 0.400000 +1248 1007 0.400000 +1248 1029 0.400000 +1248 1076 0.400000 +1248 1084 0.400000 +1248 1098 0.400000 +1248 1109 0.400000 +1248 1187 0.400000 +1248 1241 0.400000 +1248 1245 0.400000 +1248 1281 0.400000 +1248 1323 0.400000 +1248 1341 0.400000 +1248 1377 0.400000 +1248 1400 0.400000 +1248 1409 0.400000 +1248 1413 0.400000 +1248 1532 0.400000 +1248 1625 0.400000 +1248 1709 0.400000 +1248 1731 0.400000 +1248 1791 0.400000 +1248 1854 0.400000 +1248 1902 0.400000 +1248 1934 0.400000 +1248 1944 0.400000 +1248 1968 0.400000 +1248 2006 0.400000 +1248 2011 0.400000 +1248 2020 0.400000 +1248 2086 0.400000 +1248 2090 0.400000 +1248 2105 0.400000 +1248 2161 0.400000 +1248 2224 0.400000 +1248 2240 0.400000 +1248 2295 0.400000 +1248 2379 0.400000 +1248 2411 0.400000 +1248 2479 0.400000 +1248 2552 0.400000 +1248 2556 0.400000 +1248 2564 0.400000 +1248 2665 0.400000 +1248 2724 0.400000 +1248 2763 0.400000 +1248 2865 0.400000 +1248 2882 0.400000 +1248 2926 0.400000 +1248 2938 0.400000 +1248 2993 0.400000 +1248 3119 0.400000 +1248 3145 0.400000 +1248 3147 0.400000 +1249 33 0.400000 +1249 190 0.400000 +1249 205 0.400000 +1249 207 0.400000 +1249 220 0.400000 +1249 234 0.400000 +1249 352 0.400000 +1249 357 0.400000 +1249 436 0.400000 +1249 439 0.400000 +1249 445 0.400000 +1249 457 0.400000 +1249 521 0.400000 +1249 528 0.400000 +1249 550 0.400000 +1249 570 0.400000 +1249 678 0.400000 +1249 804 0.400000 +1249 873 0.400000 +1249 911 0.400000 +1249 916 0.400000 +1249 964 0.400000 +1249 969 0.400000 +1249 975 0.400000 +1249 983 0.400000 +1249 989 0.400000 +1249 1032 0.400000 +1249 1035 0.400000 +1249 1069 0.400000 +1249 1098 0.400000 +1249 1103 0.400000 +1249 1143 0.400000 +1249 1144 0.400000 +1249 1170 0.400000 +1249 1175 0.400000 +1249 1180 0.400000 +1249 1225 0.400000 +1249 1285 0.400000 +1249 1316 0.400000 +1249 1437 0.400000 +1249 1575 0.400000 +1249 1586 0.400000 +1249 1609 0.400000 +1249 1716 0.400000 +1249 1841 0.400000 +1249 1864 0.400000 +1249 1908 0.400000 +1249 1947 0.400000 +1249 2012 0.400000 +1249 2068 0.400000 +1249 2078 0.400000 +1249 2088 0.400000 +1249 2132 0.400000 +1249 2162 0.400000 +1249 2203 0.400000 +1249 2268 0.400000 +1249 2282 0.400000 +1249 2317 0.400000 +1249 2447 0.400000 +1249 2511 0.400000 +1249 2513 0.400000 +1249 2515 0.400000 +1249 2529 0.400000 +1249 2571 0.400000 +1249 2643 0.400000 +1249 2681 0.400000 +1249 2709 0.400000 +1249 2742 0.400000 +1249 2751 0.400000 +1249 2771 0.400000 +1249 2960 0.400000 +1249 2962 0.400000 +1249 3000 0.400000 +1249 3018 0.400000 +1249 3179 0.400000 +1250 108 0.400000 +1250 192 0.400000 +1250 242 0.400000 +1250 320 0.400000 +1250 521 0.400000 +1250 581 0.400000 +1250 593 0.400000 +1250 675 0.400000 +1250 746 0.400000 +1250 769 0.400000 +1250 796 0.400000 +1250 819 0.400000 +1250 844 0.400000 +1250 850 0.400000 +1250 861 0.400000 +1250 910 0.400000 +1250 929 0.400000 +1250 999 0.400000 +1250 1021 0.400000 +1250 1110 0.400000 +1250 1297 0.400000 +1250 1298 0.400000 +1250 1340 0.400000 +1250 1395 0.400000 +1250 1396 0.400000 +1250 1434 0.400000 +1250 1489 0.400000 +1250 1508 0.400000 +1250 1535 0.400000 +1250 1545 0.400000 +1250 1589 0.400000 +1250 1618 0.400000 +1250 1646 0.400000 +1250 1683 0.400000 +1250 1722 0.400000 +1250 1843 0.400000 +1250 1990 0.400000 +1250 1991 0.400000 +1250 2017 0.400000 +1250 2238 0.400000 +1250 2299 0.400000 +1250 2368 0.400000 +1250 2381 0.400000 +1250 2394 0.400000 +1250 2396 0.400000 +1250 2457 0.400000 +1250 2519 0.400000 +1250 2525 0.400000 +1250 2589 0.400000 +1250 2602 0.400000 +1250 2701 0.400000 +1250 2711 0.400000 +1250 2751 0.400000 +1250 2808 0.400000 +1250 2820 0.400000 +1250 2857 0.400000 +1250 2867 0.400000 +1250 2890 0.400000 +1250 2939 0.400000 +1250 3047 0.400000 +1250 3191 0.400000 +1251 1 0.400000 +1251 137 0.400000 +1251 138 0.400000 +1251 165 0.400000 +1251 297 0.400000 +1251 308 0.400000 +1251 499 0.400000 +1251 541 0.400000 +1251 617 0.400000 +1251 623 0.400000 +1251 682 0.400000 +1251 695 0.400000 +1251 722 0.400000 +1251 760 0.400000 +1251 768 0.400000 +1251 829 0.400000 +1251 859 0.400000 +1251 894 0.400000 +1251 993 0.400000 +1251 1020 0.400000 +1251 1103 0.400000 +1251 1156 0.400000 +1251 1169 0.400000 +1251 1310 0.400000 +1251 1349 0.400000 +1251 1356 0.400000 +1251 1381 0.400000 +1251 1439 0.400000 +1251 1490 0.400000 +1251 1555 0.400000 +1251 1706 0.400000 +1251 1715 0.400000 +1251 1756 0.400000 +1251 1903 0.400000 +1251 1946 0.400000 +1251 1976 0.400000 +1251 1991 0.400000 +1251 2021 0.400000 +1251 2071 0.400000 +1251 2141 0.400000 +1251 2174 0.400000 +1251 2179 0.400000 +1251 2209 0.400000 +1251 2249 0.400000 +1251 2333 0.400000 +1251 2388 0.400000 +1251 2503 0.400000 +1251 2541 0.400000 +1251 2568 0.400000 +1251 2624 0.400000 +1251 2632 0.400000 +1251 2667 0.400000 +1251 2714 0.400000 +1251 2846 0.400000 +1251 2960 0.400000 +1251 2969 0.400000 +1251 2987 0.400000 +1251 3093 0.400000 +1251 3138 0.400000 +1251 3152 0.400000 +1251 3182 0.400000 +1252 9 0.400000 +1252 12 0.400000 +1252 21 0.400000 +1252 30 0.400000 +1252 40 0.400000 +1252 131 0.400000 +1252 232 0.400000 +1252 251 0.400000 +1252 298 0.400000 +1252 309 0.400000 +1252 389 0.400000 +1252 515 0.400000 +1252 641 0.400000 +1252 675 0.400000 +1252 765 0.400000 +1252 829 0.400000 +1252 834 0.400000 +1252 835 0.400000 +1252 894 0.400000 +1252 904 0.400000 +1252 955 0.400000 +1252 960 0.400000 +1252 977 0.400000 +1252 983 0.400000 +1252 1004 0.400000 +1252 1090 0.400000 +1252 1091 0.400000 +1252 1158 0.400000 +1252 1166 0.400000 +1252 1210 0.400000 +1252 1232 0.400000 +1252 1280 0.400000 +1252 1287 0.400000 +1252 1332 0.400000 +1252 1345 0.400000 +1252 1391 0.400000 +1252 1433 0.400000 +1252 1478 0.400000 +1252 1645 0.400000 +1252 1651 0.400000 +1252 1658 0.400000 +1252 1661 0.400000 +1252 1662 0.400000 +1252 1845 0.400000 +1252 1910 0.400000 +1252 1913 0.400000 +1252 2000 0.400000 +1252 2076 0.400000 +1252 2162 0.400000 +1252 2200 0.400000 +1252 2320 0.400000 +1252 2333 0.400000 +1252 2393 0.400000 +1252 2399 0.400000 +1252 2419 0.400000 +1252 2447 0.400000 +1252 2450 0.400000 +1252 2463 0.400000 +1252 2466 0.400000 +1252 2490 0.400000 +1252 2594 0.400000 +1252 2613 0.400000 +1252 2667 0.400000 +1252 2696 0.400000 +1252 2703 0.400000 +1252 2801 0.400000 +1252 2863 0.400000 +1252 2875 0.400000 +1252 2901 0.400000 +1252 2965 0.400000 +1252 3011 0.400000 +1252 3103 0.400000 +1253 26 0.400000 +1253 63 0.400000 +1253 113 0.400000 +1253 124 0.400000 +1253 140 0.400000 +1253 350 0.400000 +1253 374 0.400000 +1253 383 0.400000 +1253 404 0.400000 +1253 438 0.400000 +1253 447 0.400000 +1253 505 0.400000 +1253 556 0.400000 +1253 599 0.400000 +1253 601 0.400000 +1253 747 0.400000 +1253 787 0.400000 +1253 830 0.400000 +1253 834 0.400000 +1253 837 0.400000 +1253 855 0.400000 +1253 858 0.400000 +1253 982 0.400000 +1253 1006 0.400000 +1253 1014 0.400000 +1253 1110 0.400000 +1253 1163 0.400000 +1253 1176 0.400000 +1253 1189 0.400000 +1253 1410 0.400000 +1253 1421 0.400000 +1253 1575 0.400000 +1253 1650 0.400000 +1253 1719 0.400000 +1253 1723 0.400000 +1253 1724 0.400000 +1253 1771 0.400000 +1253 1806 0.400000 +1253 1812 0.400000 +1253 1838 0.400000 +1253 1864 0.400000 +1253 1922 0.400000 +1253 1996 0.400000 +1253 2038 0.400000 +1253 2051 0.400000 +1253 2059 0.400000 +1253 2089 0.400000 +1253 2098 0.400000 +1253 2192 0.400000 +1253 2201 0.400000 +1253 2222 0.400000 +1253 2239 0.400000 +1253 2359 0.400000 +1253 2391 0.400000 +1253 2406 0.400000 +1253 2438 0.400000 +1253 2454 0.400000 +1253 2533 0.400000 +1253 2644 0.400000 +1253 2665 0.400000 +1253 2751 0.400000 +1253 2883 0.400000 +1253 2897 0.400000 +1253 2955 0.400000 +1253 2969 0.400000 +1253 3167 0.400000 +1254 74 0.400000 +1254 89 0.400000 +1254 288 0.400000 +1254 292 0.400000 +1254 465 0.400000 +1254 484 0.400000 +1254 505 0.400000 +1254 526 0.400000 +1254 534 0.400000 +1254 768 0.400000 +1254 830 0.400000 +1254 831 0.400000 +1254 838 0.400000 +1254 879 0.400000 +1254 1003 0.400000 +1254 1043 0.400000 +1254 1101 0.400000 +1254 1131 0.400000 +1254 1182 0.400000 +1254 1217 0.400000 +1254 1252 0.400000 +1254 1255 0.400000 +1254 1270 0.400000 +1254 1282 0.400000 +1254 1295 0.400000 +1254 1367 0.400000 +1254 1565 0.400000 +1254 1593 0.400000 +1254 1671 0.400000 +1254 1711 0.400000 +1254 1750 0.400000 +1254 1766 0.400000 +1254 1876 0.400000 +1254 1894 0.400000 +1254 2041 0.400000 +1254 2090 0.400000 +1254 2118 0.400000 +1254 2441 0.400000 +1254 2474 0.400000 +1254 2478 0.400000 +1254 2562 0.400000 +1254 2611 0.400000 +1254 2631 0.400000 +1254 2635 0.400000 +1254 2663 0.400000 +1254 2719 0.400000 +1254 2735 0.400000 +1254 2816 0.400000 +1254 2825 0.400000 +1254 2875 0.400000 +1254 2881 0.400000 +1254 2954 0.400000 +1254 2989 0.400000 +1254 3087 0.400000 +1254 3134 0.400000 +1254 3188 0.400000 +1255 61 0.400000 +1255 96 0.400000 +1255 151 0.400000 +1255 152 0.400000 +1255 254 0.400000 +1255 311 0.400000 +1255 319 0.400000 +1255 342 0.400000 +1255 354 0.400000 +1255 379 0.400000 +1255 442 0.400000 +1255 490 0.400000 +1255 497 0.400000 +1255 576 0.400000 +1255 601 0.400000 +1255 619 0.400000 +1255 651 0.400000 +1255 685 0.400000 +1255 699 0.400000 +1255 718 0.400000 +1255 742 0.400000 +1255 755 0.400000 +1255 775 0.400000 +1255 778 0.400000 +1255 806 0.400000 +1255 905 0.400000 +1255 923 0.400000 +1255 929 0.400000 +1255 966 0.400000 +1255 991 0.400000 +1255 1010 0.400000 +1255 1132 0.400000 +1255 1203 0.400000 +1255 1277 0.400000 +1255 1432 0.400000 +1255 1456 0.400000 +1255 1502 0.400000 +1255 1632 0.400000 +1255 1651 0.400000 +1255 1681 0.400000 +1255 1694 0.400000 +1255 1706 0.400000 +1255 1738 0.400000 +1255 1761 0.400000 +1255 1772 0.400000 +1255 1830 0.400000 +1255 1893 0.400000 +1255 1901 0.400000 +1255 1902 0.400000 +1255 1916 0.400000 +1255 1918 0.400000 +1255 1940 0.400000 +1255 1944 0.400000 +1255 1952 0.400000 +1255 1972 0.400000 +1255 2043 0.400000 +1255 2102 0.400000 +1255 2220 0.400000 +1255 2373 0.400000 +1255 2393 0.400000 +1255 2495 0.400000 +1255 2598 0.400000 +1255 2614 0.400000 +1255 2772 0.400000 +1255 2807 0.400000 +1255 2904 0.400000 +1255 2951 0.400000 +1255 3012 0.400000 +1255 3037 0.400000 +1255 3063 0.400000 +1255 3064 0.400000 +1255 3094 0.400000 +1255 3105 0.400000 +1256 22 0.400000 +1256 247 0.400000 +1256 327 0.400000 +1256 372 0.400000 +1256 377 0.400000 +1256 382 0.400000 +1256 401 0.400000 +1256 448 0.400000 +1256 449 0.400000 +1256 452 0.400000 +1256 517 0.400000 +1256 588 0.400000 +1256 716 0.400000 +1256 744 0.400000 +1256 771 0.400000 +1256 875 0.400000 +1256 1292 0.400000 +1256 1321 0.400000 +1256 1391 0.400000 +1256 1513 0.400000 +1256 1560 0.400000 +1256 1644 0.400000 +1256 1713 0.400000 +1256 1735 0.400000 +1256 1761 0.400000 +1256 1913 0.400000 +1256 1917 0.400000 +1256 2069 0.400000 +1256 2081 0.400000 +1256 2103 0.400000 +1256 2117 0.400000 +1256 2189 0.400000 +1256 2200 0.400000 +1256 2229 0.400000 +1256 2433 0.400000 +1256 2463 0.400000 +1256 2493 0.400000 +1256 2515 0.400000 +1256 2520 0.400000 +1256 2521 0.400000 +1256 2528 0.400000 +1256 2635 0.400000 +1256 2713 0.400000 +1256 2737 0.400000 +1256 2777 0.400000 +1256 2831 0.400000 +1256 2842 0.400000 +1256 2869 0.400000 +1256 2907 0.400000 +1256 2941 0.400000 +1256 2967 0.400000 +1256 2996 0.400000 +1256 3027 0.400000 +1256 3042 0.400000 +1256 3057 0.400000 +1256 3061 0.400000 +1256 3152 0.400000 +1256 3189 0.400000 +1257 214 0.400000 +1257 261 0.400000 +1257 305 0.400000 +1257 337 0.400000 +1257 350 0.400000 +1257 396 0.400000 +1257 522 0.400000 +1257 534 0.400000 +1257 641 0.400000 +1257 646 0.400000 +1257 755 0.400000 +1257 777 0.400000 +1257 839 0.400000 +1257 843 0.400000 +1257 894 0.400000 +1257 1027 0.400000 +1257 1143 0.400000 +1257 1192 0.400000 +1257 1267 0.400000 +1257 1286 0.400000 +1257 1337 0.400000 +1257 1345 0.400000 +1257 1386 0.400000 +1257 1408 0.400000 +1257 1458 0.400000 +1257 1518 0.400000 +1257 1566 0.400000 +1257 1620 0.400000 +1257 1671 0.400000 +1257 1709 0.400000 +1257 1732 0.400000 +1257 1769 0.400000 +1257 1802 0.400000 +1257 1805 0.400000 +1257 1894 0.400000 +1257 1981 0.400000 +1257 2076 0.400000 +1257 2108 0.400000 +1257 2140 0.400000 +1257 2191 0.400000 +1257 2204 0.400000 +1257 2207 0.400000 +1257 2226 0.400000 +1257 2338 0.400000 +1257 2386 0.400000 +1257 2454 0.400000 +1257 2567 0.400000 +1257 2622 0.400000 +1257 2655 0.400000 +1257 2713 0.400000 +1257 2740 0.400000 +1257 2759 0.400000 +1257 2806 0.400000 +1257 2840 0.400000 +1257 2922 0.400000 +1257 3007 0.400000 +1257 3035 0.400000 +1257 3100 0.400000 +1257 3170 0.400000 +1257 3178 0.400000 +1257 3195 0.400000 +1258 24 0.400000 +1258 26 0.400000 +1258 39 0.400000 +1258 158 0.400000 +1258 170 0.400000 +1258 208 0.400000 +1258 435 0.400000 +1258 505 0.400000 +1258 581 0.400000 +1258 615 0.400000 +1258 763 0.400000 +1258 800 0.400000 +1258 824 0.400000 +1258 830 0.400000 +1258 887 0.400000 +1258 920 0.400000 +1258 962 0.400000 +1258 986 0.400000 +1258 1018 0.400000 +1258 1046 0.400000 +1258 1110 0.400000 +1258 1156 0.400000 +1258 1215 0.400000 +1258 1248 0.400000 +1258 1331 0.400000 +1258 1337 0.400000 +1258 1346 0.400000 +1258 1354 0.400000 +1258 1457 0.400000 +1258 1535 0.400000 +1258 1705 0.400000 +1258 1760 0.400000 +1258 1766 0.400000 +1258 1786 0.400000 +1258 1852 0.400000 +1258 1956 0.400000 +1258 2037 0.400000 +1258 2113 0.400000 +1258 2229 0.400000 +1258 2238 0.400000 +1258 2276 0.400000 +1258 2326 0.400000 +1258 2493 0.400000 +1258 2521 0.400000 +1258 2553 0.400000 +1258 2739 0.400000 +1258 2912 0.400000 +1258 2914 0.400000 +1258 2921 0.400000 +1258 2935 0.400000 +1258 3022 0.400000 +1258 3133 0.400000 +1258 3134 0.400000 +1258 3150 0.400000 +1258 3172 0.400000 +1258 3200 0.400000 +1259 31 0.400000 +1259 32 0.400000 +1259 103 0.400000 +1259 138 0.400000 +1259 175 0.400000 +1259 345 0.400000 +1259 375 0.400000 +1259 407 0.400000 +1259 489 0.400000 +1259 505 0.400000 +1259 520 0.400000 +1259 560 0.400000 +1259 590 0.400000 +1259 592 0.400000 +1259 638 0.400000 +1259 673 0.400000 +1259 754 0.400000 +1259 778 0.400000 +1259 810 0.400000 +1259 880 0.400000 +1259 910 0.400000 +1259 942 0.400000 +1259 1000 0.400000 +1259 1030 0.400000 +1259 1047 0.400000 +1259 1204 0.400000 +1259 1225 0.400000 +1259 1229 0.400000 +1259 1237 0.400000 +1259 1278 0.400000 +1259 1285 0.400000 +1259 1310 0.400000 +1259 1332 0.400000 +1259 1366 0.400000 +1259 1373 0.400000 +1259 1387 0.400000 +1259 1476 0.400000 +1259 1490 0.400000 +1259 1506 0.400000 +1259 1542 0.400000 +1259 1558 0.400000 +1259 1560 0.400000 +1259 1561 0.400000 +1259 1633 0.400000 +1259 1746 0.400000 +1259 1882 0.400000 +1259 1903 0.400000 +1259 1960 0.400000 +1259 2005 0.400000 +1259 2056 0.400000 +1259 2094 0.400000 +1259 2152 0.400000 +1259 2201 0.400000 +1259 2211 0.400000 +1259 2294 0.400000 +1259 2316 0.400000 +1259 2370 0.400000 +1259 2484 0.400000 +1259 2512 0.400000 +1259 2524 0.400000 +1259 2633 0.400000 +1259 2651 0.400000 +1259 2718 0.400000 +1259 2887 0.400000 +1259 2929 0.400000 +1259 2939 0.400000 +1259 2976 0.400000 +1259 3034 0.400000 +1259 3049 0.400000 +1259 3060 0.400000 +1259 3086 0.400000 +1259 3102 0.400000 +1259 3112 0.400000 +1259 3136 0.400000 +1259 3154 0.400000 +1259 3168 0.400000 +1260 17 0.400000 +1260 36 0.400000 +1260 100 0.400000 +1260 141 0.400000 +1260 217 0.400000 +1260 244 0.400000 +1260 300 0.400000 +1260 377 0.400000 +1260 393 0.400000 +1260 405 0.400000 +1260 507 0.400000 +1260 718 0.400000 +1260 744 0.400000 +1260 759 0.400000 +1260 855 0.400000 +1260 896 0.400000 +1260 901 0.400000 +1260 902 0.400000 +1260 920 0.400000 +1260 946 0.400000 +1260 957 0.400000 +1260 1046 0.400000 +1260 1113 0.400000 +1260 1186 0.400000 +1260 1190 0.400000 +1260 1196 0.400000 +1260 1197 0.400000 +1260 1222 0.400000 +1260 1425 0.400000 +1260 1541 0.400000 +1260 1552 0.400000 +1260 1585 0.400000 +1260 1665 0.400000 +1260 1675 0.400000 +1260 1683 0.400000 +1260 1707 0.400000 +1260 1736 0.400000 +1260 1816 0.400000 +1260 1839 0.400000 +1260 1869 0.400000 +1260 1936 0.400000 +1260 1957 0.400000 +1260 1985 0.400000 +1260 2143 0.400000 +1260 2207 0.400000 +1260 2257 0.400000 +1260 2270 0.400000 +1260 2283 0.400000 +1260 2316 0.400000 +1260 2352 0.400000 +1260 2481 0.400000 +1260 2533 0.400000 +1260 2568 0.400000 +1260 2616 0.400000 +1260 2690 0.400000 +1260 2720 0.400000 +1260 2847 0.400000 +1260 2887 0.400000 +1260 2965 0.400000 +1260 2966 0.400000 +1260 2988 0.400000 +1260 3174 0.400000 +1260 3180 0.400000 +1261 61 0.400000 +1261 84 0.400000 +1261 244 0.400000 +1261 306 0.400000 +1261 360 0.400000 +1261 380 0.400000 +1261 463 0.400000 +1261 505 0.400000 +1261 587 0.400000 +1261 616 0.400000 +1261 675 0.400000 +1261 706 0.400000 +1261 712 0.400000 +1261 714 0.400000 +1261 727 0.400000 +1261 781 0.400000 +1261 826 0.400000 +1261 873 0.400000 +1261 878 0.400000 +1261 1074 0.400000 +1261 1096 0.400000 +1261 1122 0.400000 +1261 1152 0.400000 +1261 1166 0.400000 +1261 1278 0.400000 +1261 1283 0.400000 +1261 1305 0.400000 +1261 1328 0.400000 +1261 1374 0.400000 +1261 1393 0.400000 +1261 1413 0.400000 +1261 1440 0.400000 +1261 1491 0.400000 +1261 1502 0.400000 +1261 1514 0.400000 +1261 1516 0.400000 +1261 1579 0.400000 +1261 1717 0.400000 +1261 1761 0.400000 +1261 1808 0.400000 +1261 1821 0.400000 +1261 1839 0.400000 +1261 1863 0.400000 +1261 1900 0.400000 +1261 1907 0.400000 +1261 1947 0.400000 +1261 1958 0.400000 +1261 1980 0.400000 +1261 1989 0.400000 +1261 1996 0.400000 +1261 2045 0.400000 +1261 2046 0.400000 +1261 2092 0.400000 +1261 2164 0.400000 +1261 2346 0.400000 +1261 2391 0.400000 +1261 2512 0.400000 +1261 2515 0.400000 +1261 2545 0.400000 +1261 2573 0.400000 +1261 2640 0.400000 +1261 2693 0.400000 +1261 2725 0.400000 +1261 2728 0.400000 +1261 2772 0.400000 +1261 2841 0.400000 +1261 2846 0.400000 +1261 2865 0.400000 +1261 2914 0.400000 +1261 2923 0.400000 +1261 2975 0.400000 +1261 3047 0.400000 +1261 3125 0.400000 +1262 4 0.400000 +1262 208 0.400000 +1262 218 0.400000 +1262 243 0.400000 +1262 262 0.400000 +1262 298 0.400000 +1262 344 0.400000 +1262 348 0.400000 +1262 362 0.400000 +1262 399 0.400000 +1262 419 0.400000 +1262 523 0.400000 +1262 529 0.400000 +1262 608 0.400000 +1262 633 0.400000 +1262 862 0.400000 +1262 867 0.400000 +1262 894 0.400000 +1262 896 0.400000 +1262 897 0.400000 +1262 899 0.400000 +1262 938 0.400000 +1262 985 0.400000 +1262 993 0.400000 +1262 1013 0.400000 +1262 1019 0.400000 +1262 1049 0.400000 +1262 1060 0.400000 +1262 1065 0.400000 +1262 1107 0.400000 +1262 1121 0.400000 +1262 1131 0.400000 +1262 1324 0.400000 +1262 1326 0.400000 +1262 1381 0.400000 +1262 1434 0.400000 +1262 1440 0.400000 +1262 1452 0.400000 +1262 1607 0.400000 +1262 1796 0.400000 +1262 1802 0.400000 +1262 1836 0.400000 +1262 1868 0.400000 +1262 2028 0.400000 +1262 2043 0.400000 +1262 2165 0.400000 +1262 2214 0.400000 +1262 2339 0.400000 +1262 2361 0.400000 +1262 2372 0.400000 +1262 2377 0.400000 +1262 2449 0.400000 +1262 2474 0.400000 +1262 2507 0.400000 +1262 2588 0.400000 +1262 2679 0.400000 +1262 2802 0.400000 +1262 2914 0.400000 +1262 3034 0.400000 +1262 3040 0.400000 +1262 3060 0.400000 +1262 3088 0.400000 +1262 3119 0.400000 +1263 164 0.400000 +1263 165 0.400000 +1263 260 0.400000 +1263 320 0.400000 +1263 425 0.400000 +1263 460 0.400000 +1263 463 0.400000 +1263 470 0.400000 +1263 478 0.400000 +1263 554 0.400000 +1263 555 0.400000 +1263 729 0.400000 +1263 794 0.400000 +1263 861 0.400000 +1263 875 0.400000 +1263 879 0.400000 +1263 898 0.400000 +1263 1010 0.400000 +1263 1181 0.400000 +1263 1185 0.400000 +1263 1379 0.400000 +1263 1418 0.400000 +1263 1444 0.400000 +1263 1509 0.400000 +1263 1563 0.400000 +1263 1596 0.400000 +1263 1646 0.400000 +1263 1724 0.400000 +1263 1805 0.400000 +1263 1814 0.400000 +1263 1835 0.400000 +1263 1852 0.400000 +1263 2013 0.400000 +1263 2025 0.400000 +1263 2158 0.400000 +1263 2173 0.400000 +1263 2175 0.400000 +1263 2200 0.400000 +1263 2211 0.400000 +1263 2348 0.400000 +1263 2356 0.400000 +1263 2408 0.400000 +1263 2442 0.400000 +1263 2447 0.400000 +1263 2543 0.400000 +1263 2568 0.400000 +1263 2610 0.400000 +1263 2673 0.400000 +1263 2700 0.400000 +1263 2705 0.400000 +1263 2708 0.400000 +1263 2867 0.400000 +1263 2965 0.400000 +1263 3098 0.400000 +1264 52 0.400000 +1264 72 0.400000 +1264 105 0.400000 +1264 137 0.400000 +1264 160 0.400000 +1264 179 0.400000 +1264 232 0.400000 +1264 284 0.400000 +1264 316 0.400000 +1264 352 0.400000 +1264 456 0.400000 +1264 488 0.400000 +1264 492 0.400000 +1264 502 0.400000 +1264 566 0.400000 +1264 744 0.400000 +1264 759 0.400000 +1264 869 0.400000 +1264 871 0.400000 +1264 967 0.400000 +1264 975 0.400000 +1264 1000 0.400000 +1264 1015 0.400000 +1264 1147 0.400000 +1264 1170 0.400000 +1264 1171 0.400000 +1264 1178 0.400000 +1264 1205 0.400000 +1264 1218 0.400000 +1264 1434 0.400000 +1264 1472 0.400000 +1264 1498 0.400000 +1264 1541 0.400000 +1264 1543 0.400000 +1264 1573 0.400000 +1264 1609 0.400000 +1264 1634 0.400000 +1264 1636 0.400000 +1264 1653 0.400000 +1264 1656 0.400000 +1264 1677 0.400000 +1264 1731 0.400000 +1264 1794 0.400000 +1264 1923 0.400000 +1264 1945 0.400000 +1264 1997 0.400000 +1264 2090 0.400000 +1264 2135 0.400000 +1264 2376 0.400000 +1264 2409 0.400000 +1264 2479 0.400000 +1264 2600 0.400000 +1264 2612 0.400000 +1264 2671 0.400000 +1264 2712 0.400000 +1264 2856 0.400000 +1264 2879 0.400000 +1264 2890 0.400000 +1264 3002 0.400000 +1264 3034 0.400000 +1264 3039 0.400000 +1264 3089 0.400000 +1264 3100 0.400000 +1264 3144 0.400000 +1265 99 0.400000 +1265 141 0.400000 +1265 155 0.400000 +1265 184 0.400000 +1265 250 0.400000 +1265 252 0.400000 +1265 317 0.400000 +1265 318 0.400000 +1265 354 0.400000 +1265 358 0.400000 +1265 381 0.400000 +1265 434 0.400000 +1265 460 0.400000 +1265 491 0.400000 +1265 507 0.400000 +1265 568 0.400000 +1265 576 0.400000 +1265 615 0.400000 +1265 670 0.400000 +1265 688 0.400000 +1265 705 0.400000 +1265 752 0.400000 +1265 785 0.400000 +1265 853 0.400000 +1265 939 0.400000 +1265 1026 0.400000 +1265 1074 0.400000 +1265 1076 0.400000 +1265 1151 0.400000 +1265 1239 0.400000 +1265 1282 0.400000 +1265 1410 0.400000 +1265 1420 0.400000 +1265 1556 0.400000 +1265 1583 0.400000 +1265 1723 0.400000 +1265 1778 0.400000 +1265 1794 0.400000 +1265 1837 0.400000 +1265 1878 0.400000 +1265 1892 0.400000 +1265 1937 0.400000 +1265 1938 0.400000 +1265 1942 0.400000 +1265 1976 0.400000 +1265 1990 0.400000 +1265 2037 0.400000 +1265 2042 0.400000 +1265 2102 0.400000 +1265 2108 0.400000 +1265 2116 0.400000 +1265 2118 0.400000 +1265 2130 0.400000 +1265 2174 0.400000 +1265 2196 0.400000 +1265 2398 0.400000 +1265 2414 0.400000 +1265 2439 0.400000 +1265 2553 0.400000 +1265 2595 0.400000 +1265 2601 0.400000 +1265 2631 0.400000 +1265 2677 0.400000 +1265 2690 0.400000 +1265 2838 0.400000 +1265 2929 0.400000 +1265 2968 0.400000 +1265 3003 0.400000 +1265 3042 0.400000 +1265 3072 0.400000 +1265 3095 0.400000 +1266 8 0.400000 +1266 42 0.400000 +1266 112 0.400000 +1266 159 0.400000 +1266 181 0.400000 +1266 236 0.400000 +1266 377 0.400000 +1266 382 0.400000 +1266 436 0.400000 +1266 444 0.400000 +1266 462 0.400000 +1266 525 0.400000 +1266 540 0.400000 +1266 623 0.400000 +1266 677 0.400000 +1266 780 0.400000 +1266 786 0.400000 +1266 860 0.400000 +1266 1058 0.400000 +1266 1083 0.400000 +1266 1093 0.400000 +1266 1184 0.400000 +1266 1227 0.400000 +1266 1233 0.400000 +1266 1245 0.400000 +1266 1340 0.400000 +1266 1390 0.400000 +1266 1401 0.400000 +1266 1450 0.400000 +1266 1453 0.400000 +1266 1495 0.400000 +1266 1506 0.400000 +1266 1555 0.400000 +1266 1610 0.400000 +1266 1626 0.400000 +1266 1661 0.400000 +1266 1738 0.400000 +1266 1862 0.400000 +1266 1883 0.400000 +1266 1902 0.400000 +1266 1919 0.400000 +1266 1969 0.400000 +1266 1980 0.400000 +1266 2066 0.400000 +1266 2089 0.400000 +1266 2169 0.400000 +1266 2207 0.400000 +1266 2245 0.400000 +1266 2312 0.400000 +1266 2399 0.400000 +1266 2473 0.400000 +1266 2522 0.400000 +1266 2533 0.400000 +1266 2539 0.400000 +1266 2548 0.400000 +1266 2646 0.400000 +1266 2649 0.400000 +1266 2704 0.400000 +1266 2824 0.400000 +1266 2870 0.400000 +1266 2880 0.400000 +1266 2930 0.400000 +1266 2954 0.400000 +1266 2962 0.400000 +1266 2989 0.400000 +1266 3079 0.400000 +1266 3154 0.400000 +1266 3164 0.400000 +1266 3195 0.400000 +1267 66 0.400000 +1267 208 0.400000 +1267 227 0.400000 +1267 228 0.400000 +1267 231 0.400000 +1267 327 0.400000 +1267 346 0.400000 +1267 376 0.400000 +1267 414 0.400000 +1267 440 0.400000 +1267 446 0.400000 +1267 472 0.400000 +1267 495 0.400000 +1267 515 0.400000 +1267 679 0.400000 +1267 833 0.400000 +1267 854 0.400000 +1267 884 0.400000 +1267 885 0.400000 +1267 956 0.400000 +1267 990 0.400000 +1267 1015 0.400000 +1267 1025 0.400000 +1267 1052 0.400000 +1267 1182 0.400000 +1267 1232 0.400000 +1267 1283 0.400000 +1267 1288 0.400000 +1267 1451 0.400000 +1267 1458 0.400000 +1267 1540 0.400000 +1267 1563 0.400000 +1267 1569 0.400000 +1267 1627 0.400000 +1267 1666 0.400000 +1267 1798 0.400000 +1267 1864 0.400000 +1267 2065 0.400000 +1267 2078 0.400000 +1267 2092 0.400000 +1267 2093 0.400000 +1267 2129 0.400000 +1267 2131 0.400000 +1267 2233 0.400000 +1267 2265 0.400000 +1267 2309 0.400000 +1267 2387 0.400000 +1267 2401 0.400000 +1267 2459 0.400000 +1267 2473 0.400000 +1267 2543 0.400000 +1267 2563 0.400000 +1267 2574 0.400000 +1267 2632 0.400000 +1267 2870 0.400000 +1267 2979 0.400000 +1267 3023 0.400000 +1267 3038 0.400000 +1267 3083 0.400000 +1267 3154 0.400000 +1267 3176 0.400000 +1267 3182 0.400000 +1268 17 0.400000 +1268 188 0.400000 +1268 203 0.400000 +1268 393 0.400000 +1268 494 0.400000 +1268 586 0.400000 +1268 629 0.400000 +1268 683 0.400000 +1268 744 0.400000 +1268 785 0.400000 +1268 803 0.400000 +1268 882 0.400000 +1268 927 0.400000 +1268 985 0.400000 +1268 1003 0.400000 +1268 1024 0.400000 +1268 1091 0.400000 +1268 1196 0.400000 +1268 1201 0.400000 +1268 1272 0.400000 +1268 1300 0.400000 +1268 1321 0.400000 +1268 1347 0.400000 +1268 1435 0.400000 +1268 1517 0.400000 +1268 1558 0.400000 +1268 1602 0.400000 +1268 1624 0.400000 +1268 1640 0.400000 +1268 1692 0.400000 +1268 1709 0.400000 +1268 1783 0.400000 +1268 1952 0.400000 +1268 2055 0.400000 +1268 2188 0.400000 +1268 2194 0.400000 +1268 2283 0.400000 +1268 2288 0.400000 +1268 2316 0.400000 +1268 2350 0.400000 +1268 2351 0.400000 +1268 2421 0.400000 +1268 2519 0.400000 +1268 2529 0.400000 +1268 2564 0.400000 +1268 2565 0.400000 +1268 2568 0.400000 +1268 2634 0.400000 +1268 2721 0.400000 +1268 2767 0.400000 +1268 2816 0.400000 +1268 2853 0.400000 +1268 2912 0.400000 +1268 2944 0.400000 +1268 2983 0.400000 +1268 2987 0.400000 +1268 2993 0.400000 +1268 3026 0.400000 +1268 3056 0.400000 +1268 3103 0.400000 +1268 3164 0.400000 +1268 3167 0.400000 +1269 112 0.400000 +1269 135 0.400000 +1269 256 0.400000 +1269 268 0.400000 +1269 305 0.400000 +1269 309 0.400000 +1269 348 0.400000 +1269 589 0.400000 +1269 609 0.400000 +1269 630 0.400000 +1269 678 0.400000 +1269 738 0.400000 +1269 907 0.400000 +1269 930 0.400000 +1269 933 0.400000 +1269 1023 0.400000 +1269 1037 0.400000 +1269 1052 0.400000 +1269 1151 0.400000 +1269 1153 0.400000 +1269 1193 0.400000 +1269 1322 0.400000 +1269 1349 0.400000 +1269 1383 0.400000 +1269 1404 0.400000 +1269 1453 0.400000 +1269 1489 0.400000 +1269 1560 0.400000 +1269 1593 0.400000 +1269 1598 0.400000 +1269 1749 0.400000 +1269 1770 0.400000 +1269 1787 0.400000 +1269 1838 0.400000 +1269 1849 0.400000 +1269 1850 0.400000 +1269 1868 0.400000 +1269 1941 0.400000 +1269 1964 0.400000 +1269 1985 0.400000 +1269 2070 0.400000 +1269 2249 0.400000 +1269 2255 0.400000 +1269 2312 0.400000 +1269 2330 0.400000 +1269 2381 0.400000 +1269 2447 0.400000 +1269 2640 0.400000 +1269 2776 0.400000 +1269 2817 0.400000 +1269 2838 0.400000 +1269 2921 0.400000 +1269 2939 0.400000 +1269 3026 0.400000 +1269 3119 0.400000 +1269 3195 0.400000 +1269 3198 0.400000 +1270 25 0.400000 +1270 81 0.400000 +1270 136 0.400000 +1270 201 0.400000 +1270 230 0.400000 +1270 259 0.400000 +1270 301 0.400000 +1270 304 0.400000 +1270 351 0.400000 +1270 353 0.400000 +1270 424 0.400000 +1270 724 0.400000 +1270 978 0.400000 +1270 1094 0.400000 +1270 1192 0.400000 +1270 1298 0.400000 +1270 1359 0.400000 +1270 1404 0.400000 +1270 1448 0.400000 +1270 1451 0.400000 +1270 1479 0.400000 +1270 1554 0.400000 +1270 1583 0.400000 +1270 1605 0.400000 +1270 1610 0.400000 +1270 1629 0.400000 +1270 1808 0.400000 +1270 1894 0.400000 +1270 1896 0.400000 +1270 1900 0.400000 +1270 1944 0.400000 +1270 1945 0.400000 +1270 2068 0.400000 +1270 2138 0.400000 +1270 2140 0.400000 +1270 2143 0.400000 +1270 2241 0.400000 +1270 2315 0.400000 +1270 2352 0.400000 +1270 2380 0.400000 +1270 2449 0.400000 +1270 2454 0.400000 +1270 2456 0.400000 +1270 2466 0.400000 +1270 2528 0.400000 +1270 2585 0.400000 +1270 2586 0.400000 +1270 2611 0.400000 +1270 2623 0.400000 +1270 2632 0.400000 +1270 2643 0.400000 +1270 2773 0.400000 +1270 2803 0.400000 +1270 2808 0.400000 +1270 2825 0.400000 +1270 2859 0.400000 +1270 2863 0.400000 +1270 2869 0.400000 +1270 2874 0.400000 +1270 2905 0.400000 +1270 2913 0.400000 +1270 2974 0.400000 +1270 2982 0.400000 +1270 3021 0.400000 +1270 3061 0.400000 +1271 6 0.400000 +1271 28 0.400000 +1271 70 0.400000 +1271 110 0.400000 +1271 138 0.400000 +1271 153 0.400000 +1271 210 0.400000 +1271 211 0.400000 +1271 223 0.400000 +1271 377 0.400000 +1271 468 0.400000 +1271 588 0.400000 +1271 602 0.400000 +1271 684 0.400000 +1271 705 0.400000 +1271 740 0.400000 +1271 768 0.400000 +1271 775 0.400000 +1271 845 0.400000 +1271 868 0.400000 +1271 944 0.400000 +1271 1034 0.400000 +1271 1042 0.400000 +1271 1262 0.400000 +1271 1283 0.400000 +1271 1362 0.400000 +1271 1443 0.400000 +1271 1452 0.400000 +1271 1458 0.400000 +1271 1460 0.400000 +1271 1489 0.400000 +1271 1523 0.400000 +1271 1583 0.400000 +1271 1635 0.400000 +1271 1732 0.400000 +1271 1761 0.400000 +1271 1763 0.400000 +1271 1784 0.400000 +1271 1798 0.400000 +1271 1805 0.400000 +1271 1847 0.400000 +1271 1871 0.400000 +1271 1895 0.400000 +1271 1916 0.400000 +1271 1958 0.400000 +1271 1965 0.400000 +1271 2145 0.400000 +1271 2153 0.400000 +1271 2187 0.400000 +1271 2263 0.400000 +1271 2387 0.400000 +1271 2414 0.400000 +1271 2501 0.400000 +1271 2556 0.400000 +1271 2584 0.400000 +1271 2640 0.400000 +1271 2777 0.400000 +1271 2859 0.400000 +1271 2989 0.400000 +1271 3035 0.400000 +1271 3074 0.400000 +1271 3111 0.400000 +1271 3119 0.400000 +1271 3124 0.400000 +1271 3128 0.400000 +1271 3156 0.400000 +1272 56 0.400000 +1272 83 0.400000 +1272 107 0.400000 +1272 153 0.400000 +1272 249 0.400000 +1272 283 0.400000 +1272 323 0.400000 +1272 366 0.400000 +1272 454 0.400000 +1272 472 0.400000 +1272 501 0.400000 +1272 506 0.400000 +1272 646 0.400000 +1272 668 0.400000 +1272 728 0.400000 +1272 789 0.400000 +1272 897 0.400000 +1272 898 0.400000 +1272 934 0.400000 +1272 998 0.400000 +1272 1025 0.400000 +1272 1038 0.400000 +1272 1039 0.400000 +1272 1071 0.400000 +1272 1076 0.400000 +1272 1108 0.400000 +1272 1120 0.400000 +1272 1122 0.400000 +1272 1196 0.400000 +1272 1221 0.400000 +1272 1249 0.400000 +1272 1369 0.400000 +1272 1422 0.400000 +1272 1512 0.400000 +1272 1570 0.400000 +1272 1692 0.400000 +1272 1769 0.400000 +1272 1782 0.400000 +1272 1813 0.400000 +1272 1945 0.400000 +1272 1964 0.400000 +1272 1975 0.400000 +1272 1985 0.400000 +1272 2003 0.400000 +1272 2028 0.400000 +1272 2038 0.400000 +1272 2040 0.400000 +1272 2337 0.400000 +1272 2412 0.400000 +1272 2453 0.400000 +1272 2474 0.400000 +1272 2512 0.400000 +1272 2562 0.400000 +1272 2598 0.400000 +1272 2721 0.400000 +1272 2734 0.400000 +1272 2747 0.400000 +1272 2749 0.400000 +1272 2864 0.400000 +1272 2887 0.400000 +1272 2967 0.400000 +1272 3106 0.400000 +1272 3117 0.400000 +1272 3125 0.400000 +1273 99 0.400000 +1273 135 0.400000 +1273 136 0.400000 +1273 140 0.400000 +1273 268 0.400000 +1273 312 0.400000 +1273 409 0.400000 +1273 494 0.400000 +1273 521 0.400000 +1273 526 0.400000 +1273 581 0.400000 +1273 623 0.400000 +1273 673 0.400000 +1273 689 0.400000 +1273 705 0.400000 +1273 739 0.400000 +1273 790 0.400000 +1273 831 0.400000 +1273 844 0.400000 +1273 849 0.400000 +1273 921 0.400000 +1273 938 0.400000 +1273 1041 0.400000 +1273 1140 0.400000 +1273 1151 0.400000 +1273 1170 0.400000 +1273 1281 0.400000 +1273 1283 0.400000 +1273 1319 0.400000 +1273 1408 0.400000 +1273 1433 0.400000 +1273 1494 0.400000 +1273 1534 0.400000 +1273 1573 0.400000 +1273 1587 0.400000 +1273 1594 0.400000 +1273 1613 0.400000 +1273 1663 0.400000 +1273 1748 0.400000 +1273 1776 0.400000 +1273 1783 0.400000 +1273 1865 0.400000 +1273 1884 0.400000 +1273 2056 0.400000 +1273 2073 0.400000 +1273 2117 0.400000 +1273 2170 0.400000 +1273 2185 0.400000 +1273 2214 0.400000 +1273 2233 0.400000 +1273 2496 0.400000 +1273 2607 0.400000 +1273 2616 0.400000 +1273 2650 0.400000 +1273 2747 0.400000 +1273 2936 0.400000 +1273 3036 0.400000 +1273 3181 0.400000 +1274 4 0.400000 +1274 5 0.400000 +1274 34 0.400000 +1274 158 0.400000 +1274 174 0.400000 +1274 203 0.400000 +1274 206 0.400000 +1274 208 0.400000 +1274 217 0.400000 +1274 310 0.400000 +1274 315 0.400000 +1274 348 0.400000 +1274 354 0.400000 +1274 462 0.400000 +1274 543 0.400000 +1274 578 0.400000 +1274 667 0.400000 +1274 748 0.400000 +1274 761 0.400000 +1274 863 0.400000 +1274 886 0.400000 +1274 1058 0.400000 +1274 1087 0.400000 +1274 1196 0.400000 +1274 1218 0.400000 +1274 1340 0.400000 +1274 1341 0.400000 +1274 1451 0.400000 +1274 1457 0.400000 +1274 1503 0.400000 +1274 1563 0.400000 +1274 1599 0.400000 +1274 1624 0.400000 +1274 1627 0.400000 +1274 1666 0.400000 +1274 1683 0.400000 +1274 1721 0.400000 +1274 1764 0.400000 +1274 1783 0.400000 +1274 1827 0.400000 +1274 1842 0.400000 +1274 1884 0.400000 +1274 1929 0.400000 +1274 1956 0.400000 +1274 2034 0.400000 +1274 2076 0.400000 +1274 2160 0.400000 +1274 2174 0.400000 +1274 2230 0.400000 +1274 2535 0.400000 +1274 2749 0.400000 +1274 2834 0.400000 +1274 2903 0.400000 +1274 2945 0.400000 +1274 3011 0.400000 +1274 3115 0.400000 +1274 3193 0.400000 +1275 26 0.400000 +1275 80 0.400000 +1275 221 0.400000 +1275 300 0.400000 +1275 402 0.400000 +1275 475 0.400000 +1275 534 0.400000 +1275 550 0.400000 +1275 725 0.400000 +1275 734 0.400000 +1275 740 0.400000 +1275 743 0.400000 +1275 760 0.400000 +1275 763 0.400000 +1275 776 0.400000 +1275 882 0.400000 +1275 890 0.400000 +1275 948 0.400000 +1275 994 0.400000 +1275 1031 0.400000 +1275 1167 0.400000 +1275 1246 0.400000 +1275 1407 0.400000 +1275 1450 0.400000 +1275 1459 0.400000 +1275 1460 0.400000 +1275 1465 0.400000 +1275 1548 0.400000 +1275 1551 0.400000 +1275 1669 0.400000 +1275 1711 0.400000 +1275 1849 0.400000 +1275 1862 0.400000 +1275 1867 0.400000 +1275 1873 0.400000 +1275 1906 0.400000 +1275 1915 0.400000 +1275 1979 0.400000 +1275 2075 0.400000 +1275 2103 0.400000 +1275 2200 0.400000 +1275 2235 0.400000 +1275 2308 0.400000 +1275 2505 0.400000 +1275 2594 0.400000 +1275 2612 0.400000 +1275 2657 0.400000 +1275 2710 0.400000 +1275 2726 0.400000 +1275 2747 0.400000 +1275 2796 0.400000 +1275 2813 0.400000 +1275 2945 0.400000 +1275 3062 0.400000 +1275 3083 0.400000 +1275 3148 0.400000 +1275 3186 0.400000 +1276 15 0.400000 +1276 26 0.400000 +1276 157 0.400000 +1276 203 0.400000 +1276 210 0.400000 +1276 223 0.400000 +1276 291 0.400000 +1276 292 0.400000 +1276 312 0.400000 +1276 317 0.400000 +1276 483 0.400000 +1276 522 0.400000 +1276 647 0.400000 +1276 648 0.400000 +1276 851 0.400000 +1276 860 0.400000 +1276 877 0.400000 +1276 976 0.400000 +1276 1001 0.400000 +1276 1018 0.400000 +1276 1051 0.400000 +1276 1144 0.400000 +1276 1150 0.400000 +1276 1214 0.400000 +1276 1288 0.400000 +1276 1332 0.400000 +1276 1374 0.400000 +1276 1377 0.400000 +1276 1383 0.400000 +1276 1409 0.400000 +1276 1411 0.400000 +1276 1414 0.400000 +1276 1455 0.400000 +1276 1510 0.400000 +1276 1516 0.400000 +1276 1548 0.400000 +1276 1893 0.400000 +1276 1917 0.400000 +1276 1959 0.400000 +1276 1967 0.400000 +1276 2040 0.400000 +1276 2080 0.400000 +1276 2149 0.400000 +1276 2242 0.400000 +1276 2297 0.400000 +1276 2394 0.400000 +1276 2498 0.400000 +1276 2617 0.400000 +1276 2658 0.400000 +1276 2697 0.400000 +1276 2953 0.400000 +1276 2967 0.400000 +1276 3091 0.400000 +1276 3133 0.400000 +1277 44 0.400000 +1277 52 0.400000 +1277 108 0.400000 +1277 127 0.400000 +1277 171 0.400000 +1277 198 0.400000 +1277 243 0.400000 +1277 253 0.400000 +1277 356 0.400000 +1277 416 0.400000 +1277 575 0.400000 +1277 613 0.400000 +1277 678 0.400000 +1277 703 0.400000 +1277 739 0.400000 +1277 741 0.400000 +1277 766 0.400000 +1277 767 0.400000 +1277 785 0.400000 +1277 931 0.400000 +1277 1008 0.400000 +1277 1020 0.400000 +1277 1112 0.400000 +1277 1224 0.400000 +1277 1355 0.400000 +1277 1357 0.400000 +1277 1567 0.400000 +1277 1773 0.400000 +1277 1795 0.400000 +1277 1933 0.400000 +1277 1995 0.400000 +1277 2014 0.400000 +1277 2030 0.400000 +1277 2040 0.400000 +1277 2048 0.400000 +1277 2071 0.400000 +1277 2136 0.400000 +1277 2146 0.400000 +1277 2148 0.400000 +1277 2166 0.400000 +1277 2203 0.400000 +1277 2209 0.400000 +1277 2212 0.400000 +1277 2249 0.400000 +1277 2307 0.400000 +1277 2341 0.400000 +1277 2427 0.400000 +1277 2466 0.400000 +1277 2487 0.400000 +1277 2553 0.400000 +1277 2566 0.400000 +1277 2647 0.400000 +1277 2669 0.400000 +1277 2695 0.400000 +1277 2759 0.400000 +1277 2799 0.400000 +1277 2812 0.400000 +1277 2820 0.400000 +1277 2844 0.400000 +1277 2847 0.400000 +1277 2936 0.400000 +1277 2951 0.400000 +1277 3008 0.400000 +1277 3012 0.400000 +1277 3018 0.400000 +1277 3091 0.400000 +1277 3151 0.400000 +1277 3192 0.400000 +1278 39 0.400000 +1278 45 0.400000 +1278 52 0.400000 +1278 269 0.400000 +1278 328 0.400000 +1278 332 0.400000 +1278 346 0.400000 +1278 434 0.400000 +1278 447 0.400000 +1278 460 0.400000 +1278 461 0.400000 +1278 511 0.400000 +1278 640 0.400000 +1278 844 0.400000 +1278 860 0.400000 +1278 944 0.400000 +1278 950 0.400000 +1278 951 0.400000 +1278 962 0.400000 +1278 1026 0.400000 +1278 1052 0.400000 +1278 1056 0.400000 +1278 1159 0.400000 +1278 1319 0.400000 +1278 1393 0.400000 +1278 1436 0.400000 +1278 1501 0.400000 +1278 1532 0.400000 +1278 1569 0.400000 +1278 1647 0.400000 +1278 1697 0.400000 +1278 1791 0.400000 +1278 1827 0.400000 +1278 1850 0.400000 +1278 1880 0.400000 +1278 1925 0.400000 +1278 1961 0.400000 +1278 1973 0.400000 +1278 2020 0.400000 +1278 2070 0.400000 +1278 2088 0.400000 +1278 2166 0.400000 +1278 2199 0.400000 +1278 2215 0.400000 +1278 2312 0.400000 +1278 2320 0.400000 +1278 2324 0.400000 +1278 2335 0.400000 +1278 2377 0.400000 +1278 2390 0.400000 +1278 2393 0.400000 +1278 2552 0.400000 +1278 2666 0.400000 +1278 2736 0.400000 +1278 2838 0.400000 +1278 2840 0.400000 +1278 2885 0.400000 +1278 2904 0.400000 +1278 2949 0.400000 +1278 3059 0.400000 +1279 4 0.400000 +1279 17 0.400000 +1279 59 0.400000 +1279 63 0.400000 +1279 70 0.400000 +1279 91 0.400000 +1279 121 0.400000 +1279 130 0.400000 +1279 268 0.400000 +1279 366 0.400000 +1279 412 0.400000 +1279 416 0.400000 +1279 489 0.400000 +1279 500 0.400000 +1279 537 0.400000 +1279 627 0.400000 +1279 641 0.400000 +1279 686 0.400000 +1279 759 0.400000 +1279 812 0.400000 +1279 864 0.400000 +1279 875 0.400000 +1279 915 0.400000 +1279 1040 0.400000 +1279 1041 0.400000 +1279 1166 0.400000 +1279 1289 0.400000 +1279 1296 0.400000 +1279 1461 0.400000 +1279 1489 0.400000 +1279 1493 0.400000 +1279 1530 0.400000 +1279 1642 0.400000 +1279 1668 0.400000 +1279 1724 0.400000 +1279 1751 0.400000 +1279 1886 0.400000 +1279 1912 0.400000 +1279 1963 0.400000 +1279 1971 0.400000 +1279 1984 0.400000 +1279 2008 0.400000 +1279 2010 0.400000 +1279 2023 0.400000 +1279 2080 0.400000 +1279 2149 0.400000 +1279 2215 0.400000 +1279 2217 0.400000 +1279 2281 0.400000 +1279 2363 0.400000 +1279 2389 0.400000 +1279 2401 0.400000 +1279 2471 0.400000 +1279 2620 0.400000 +1279 2629 0.400000 +1279 2670 0.400000 +1279 2761 0.400000 +1279 2769 0.400000 +1279 2930 0.400000 +1279 3020 0.400000 +1279 3052 0.400000 +1279 3093 0.400000 +1279 3097 0.400000 +1279 3116 0.400000 +1279 3131 0.400000 +1279 3174 0.400000 +1280 32 0.400000 +1280 37 0.400000 +1280 40 0.400000 +1280 70 0.400000 +1280 178 0.400000 +1280 242 0.400000 +1280 270 0.400000 +1280 332 0.400000 +1280 375 0.400000 +1280 443 0.400000 +1280 514 0.400000 +1280 666 0.400000 +1280 688 0.400000 +1280 737 0.400000 +1280 775 0.400000 +1280 789 0.400000 +1280 883 0.400000 +1280 909 0.400000 +1280 964 0.400000 +1280 989 0.400000 +1280 1016 0.400000 +1280 1026 0.400000 +1280 1045 0.400000 +1280 1074 0.400000 +1280 1085 0.400000 +1280 1090 0.400000 +1280 1216 0.400000 +1280 1282 0.400000 +1280 1358 0.400000 +1280 1429 0.400000 +1280 1430 0.400000 +1280 1548 0.400000 +1280 1571 0.400000 +1280 1602 0.400000 +1280 1683 0.400000 +1280 1688 0.400000 +1280 1830 0.400000 +1280 1870 0.400000 +1280 1934 0.400000 +1280 1944 0.400000 +1280 2097 0.400000 +1280 2106 0.400000 +1280 2127 0.400000 +1280 2354 0.400000 +1280 2411 0.400000 +1280 2475 0.400000 +1280 2500 0.400000 +1280 2543 0.400000 +1280 2571 0.400000 +1280 2596 0.400000 +1280 2728 0.400000 +1280 2750 0.400000 +1280 2831 0.400000 +1280 2944 0.400000 +1280 3059 0.400000 +1280 3154 0.400000 +1280 3197 0.400000 +1281 17 0.400000 +1281 75 0.400000 +1281 93 0.400000 +1281 167 0.400000 +1281 183 0.400000 +1281 195 0.400000 +1281 196 0.400000 +1281 197 0.400000 +1281 248 0.400000 +1281 252 0.400000 +1281 279 0.400000 +1281 319 0.400000 +1281 356 0.400000 +1281 388 0.400000 +1281 498 0.400000 +1281 531 0.400000 +1281 670 0.400000 +1281 676 0.400000 +1281 724 0.400000 +1281 792 0.400000 +1281 809 0.400000 +1281 897 0.400000 +1281 914 0.400000 +1281 918 0.400000 +1281 923 0.400000 +1281 934 0.400000 +1281 964 0.400000 +1281 1056 0.400000 +1281 1084 0.400000 +1281 1163 0.400000 +1281 1231 0.400000 +1281 1245 0.400000 +1281 1273 0.400000 +1281 1294 0.400000 +1281 1297 0.400000 +1281 1323 0.400000 +1281 1402 0.400000 +1281 1420 0.400000 +1281 1434 0.400000 +1281 1570 0.400000 +1281 1579 0.400000 +1281 1625 0.400000 +1281 1639 0.400000 +1281 1741 0.400000 +1281 1773 0.400000 +1281 1779 0.400000 +1281 1854 0.400000 +1281 1861 0.400000 +1281 1977 0.400000 +1281 1988 0.400000 +1281 1998 0.400000 +1281 2004 0.400000 +1281 2258 0.400000 +1281 2282 0.400000 +1281 2295 0.400000 +1281 2348 0.400000 +1281 2408 0.400000 +1281 2418 0.400000 +1281 2436 0.400000 +1281 2551 0.400000 +1281 2565 0.400000 +1281 2585 0.400000 +1281 2649 0.400000 +1281 2689 0.400000 +1281 2738 0.400000 +1281 2793 0.400000 +1281 2882 0.400000 +1281 2956 0.400000 +1281 2970 0.400000 +1281 2987 0.400000 +1281 3012 0.400000 +1281 3101 0.400000 +1281 3144 0.400000 +1282 63 0.400000 +1282 104 0.400000 +1282 303 0.400000 +1282 313 0.400000 +1282 332 0.400000 +1282 387 0.400000 +1282 415 0.400000 +1282 436 0.400000 +1282 456 0.400000 +1282 484 0.400000 +1282 510 0.400000 +1282 613 0.400000 +1282 648 0.400000 +1282 672 0.400000 +1282 727 0.400000 +1282 891 0.400000 +1282 905 0.400000 +1282 1023 0.400000 +1282 1042 0.400000 +1282 1072 0.400000 +1282 1079 0.400000 +1282 1276 0.400000 +1282 1304 0.400000 +1282 1314 0.400000 +1282 1329 0.400000 +1282 1363 0.400000 +1282 1367 0.400000 +1282 1392 0.400000 +1282 1411 0.400000 +1282 1467 0.400000 +1282 1646 0.400000 +1282 1653 0.400000 +1282 1693 0.400000 +1282 1782 0.400000 +1282 1899 0.400000 +1282 1974 0.400000 +1282 2156 0.400000 +1282 2165 0.400000 +1282 2193 0.400000 +1282 2217 0.400000 +1282 2252 0.400000 +1282 2442 0.400000 +1282 2447 0.400000 +1282 2551 0.400000 +1282 2642 0.400000 +1282 2738 0.400000 +1282 2828 0.400000 +1282 2914 0.400000 +1282 3006 0.400000 +1282 3020 0.400000 +1282 3050 0.400000 +1283 14 0.400000 +1283 64 0.400000 +1283 77 0.400000 +1283 104 0.400000 +1283 105 0.400000 +1283 183 0.400000 +1283 264 0.400000 +1283 265 0.400000 +1283 323 0.400000 +1283 372 0.400000 +1283 468 0.400000 +1283 562 0.400000 +1283 613 0.400000 +1283 621 0.400000 +1283 717 0.400000 +1283 824 0.400000 +1283 997 0.400000 +1283 1008 0.400000 +1283 1085 0.400000 +1283 1196 0.400000 +1283 1245 0.400000 +1283 1251 0.400000 +1283 1375 0.400000 +1283 1457 0.400000 +1283 1515 0.400000 +1283 1778 0.400000 +1283 1820 0.400000 +1283 1960 0.400000 +1283 2034 0.400000 +1283 2050 0.400000 +1283 2202 0.400000 +1283 2296 0.400000 +1283 2321 0.400000 +1283 2452 0.400000 +1283 2546 0.400000 +1283 2559 0.400000 +1283 2584 0.400000 +1283 2612 0.400000 +1283 2741 0.400000 +1283 2771 0.400000 +1283 2968 0.400000 +1283 3056 0.400000 +1283 3118 0.400000 +1284 18 0.400000 +1284 281 0.400000 +1284 311 0.400000 +1284 334 0.400000 +1284 335 0.400000 +1284 440 0.400000 +1284 470 0.400000 +1284 506 0.400000 +1284 508 0.400000 +1284 520 0.400000 +1284 567 0.400000 +1284 819 0.400000 +1284 847 0.400000 +1284 1161 0.400000 +1284 1196 0.400000 +1284 1357 0.400000 +1284 1383 0.400000 +1284 1406 0.400000 +1284 1537 0.400000 +1284 1569 0.400000 +1284 1850 0.400000 +1284 1872 0.400000 +1284 1875 0.400000 +1284 1878 0.400000 +1284 1884 0.400000 +1284 1925 0.400000 +1284 2026 0.400000 +1284 2044 0.400000 +1284 2067 0.400000 +1284 2104 0.400000 +1284 2273 0.400000 +1284 2345 0.400000 +1284 2379 0.400000 +1284 2427 0.400000 +1284 2454 0.400000 +1284 2466 0.400000 +1284 2469 0.400000 +1284 2507 0.400000 +1284 2546 0.400000 +1284 2573 0.400000 +1284 2574 0.400000 +1284 2593 0.400000 +1284 2607 0.400000 +1284 2673 0.400000 +1284 2695 0.400000 +1284 2774 0.400000 +1284 2846 0.400000 +1284 3054 0.400000 +1284 3071 0.400000 +1284 3107 0.400000 +1284 3114 0.400000 +1284 3160 0.400000 +1284 3163 0.400000 +1284 3171 0.400000 +1285 80 0.400000 +1285 211 0.400000 +1285 230 0.400000 +1285 255 0.400000 +1285 270 0.400000 +1285 353 0.400000 +1285 360 0.400000 +1285 367 0.400000 +1285 420 0.400000 +1285 521 0.400000 +1285 523 0.400000 +1285 559 0.400000 +1285 595 0.400000 +1285 607 0.400000 +1285 636 0.400000 +1285 707 0.400000 +1285 783 0.400000 +1285 822 0.400000 +1285 851 0.400000 +1285 893 0.400000 +1285 915 0.400000 +1285 933 0.400000 +1285 1142 0.400000 +1285 1185 0.400000 +1285 1384 0.400000 +1285 1404 0.400000 +1285 1419 0.400000 +1285 1549 0.400000 +1285 1636 0.400000 +1285 1681 0.400000 +1285 1758 0.400000 +1285 1762 0.400000 +1285 1803 0.400000 +1285 1831 0.400000 +1285 1890 0.400000 +1285 1994 0.400000 +1285 2063 0.400000 +1285 2120 0.400000 +1285 2132 0.400000 +1285 2148 0.400000 +1285 2185 0.400000 +1285 2299 0.400000 +1285 2307 0.400000 +1285 2329 0.400000 +1285 2351 0.400000 +1285 2433 0.400000 +1285 2497 0.400000 +1285 2597 0.400000 +1285 2621 0.400000 +1285 2630 0.400000 +1285 2706 0.400000 +1285 2734 0.400000 +1285 2761 0.400000 +1285 2778 0.400000 +1285 2886 0.400000 +1285 2940 0.400000 +1285 2950 0.400000 +1285 2972 0.400000 +1285 3025 0.400000 +1285 3039 0.400000 +1285 3048 0.400000 +1285 3099 0.400000 +1285 3145 0.400000 +1285 3146 0.400000 +1285 3188 0.400000 +1286 91 0.400000 +1286 104 0.400000 +1286 115 0.400000 +1286 177 0.400000 +1286 200 0.400000 +1286 301 0.400000 +1286 345 0.400000 +1286 353 0.400000 +1286 423 0.400000 +1286 425 0.400000 +1286 470 0.400000 +1286 477 0.400000 +1286 520 0.400000 +1286 533 0.400000 +1286 673 0.400000 +1286 815 0.400000 +1286 863 0.400000 +1286 872 0.400000 +1286 917 0.400000 +1286 926 0.400000 +1286 1008 0.400000 +1286 1032 0.400000 +1286 1070 0.400000 +1286 1106 0.400000 +1286 1347 0.400000 +1286 1390 0.400000 +1286 1418 0.400000 +1286 1533 0.400000 +1286 1672 0.400000 +1286 1710 0.400000 +1286 1759 0.400000 +1286 1767 0.400000 +1286 1814 0.400000 +1286 1871 0.400000 +1286 1898 0.400000 +1286 1903 0.400000 +1286 2088 0.400000 +1286 2198 0.400000 +1286 2243 0.400000 +1286 2337 0.400000 +1286 2384 0.400000 +1286 2435 0.400000 +1286 2437 0.400000 +1286 2438 0.400000 +1286 2444 0.400000 +1286 2466 0.400000 +1286 2472 0.400000 +1286 2526 0.400000 +1286 2592 0.400000 +1286 2608 0.400000 +1286 2687 0.400000 +1286 2702 0.400000 +1286 2770 0.400000 +1286 2788 0.400000 +1286 2811 0.400000 +1286 2912 0.400000 +1286 3005 0.400000 +1286 3007 0.400000 +1286 3042 0.400000 +1286 3077 0.400000 +1287 65 0.400000 +1287 107 0.400000 +1287 159 0.400000 +1287 185 0.400000 +1287 196 0.400000 +1287 248 0.400000 +1287 268 0.400000 +1287 282 0.400000 +1287 355 0.400000 +1287 387 0.400000 +1287 487 0.400000 +1287 521 0.400000 +1287 661 0.400000 +1287 679 0.400000 +1287 753 0.400000 +1287 773 0.400000 +1287 847 0.400000 +1287 855 0.400000 +1287 862 0.400000 +1287 905 0.400000 +1287 1052 0.400000 +1287 1061 0.400000 +1287 1188 0.400000 +1287 1194 0.400000 +1287 1196 0.400000 +1287 1205 0.400000 +1287 1226 0.400000 +1287 1464 0.400000 +1287 1557 0.400000 +1287 1625 0.400000 +1287 1635 0.400000 +1287 1724 0.400000 +1287 1880 0.400000 +1287 1978 0.400000 +1287 1984 0.400000 +1287 2013 0.400000 +1287 2084 0.400000 +1287 2162 0.400000 +1287 2219 0.400000 +1287 2296 0.400000 +1287 2320 0.400000 +1287 2375 0.400000 +1287 2384 0.400000 +1287 2460 0.400000 +1287 2470 0.400000 +1287 2512 0.400000 +1287 2536 0.400000 +1287 2606 0.400000 +1287 2655 0.400000 +1287 2679 0.400000 +1287 2714 0.400000 +1287 2812 0.400000 +1287 2897 0.400000 +1287 2911 0.400000 +1287 2962 0.400000 +1287 2967 0.400000 +1287 3017 0.400000 +1287 3030 0.400000 +1287 3102 0.400000 +1288 33 0.400000 +1288 37 0.400000 +1288 100 0.400000 +1288 183 0.400000 +1288 252 0.400000 +1288 263 0.400000 +1288 290 0.400000 +1288 301 0.400000 +1288 534 0.400000 +1288 536 0.400000 +1288 605 0.400000 +1288 610 0.400000 +1288 667 0.400000 +1288 735 0.400000 +1288 772 0.400000 +1288 842 0.400000 +1288 895 0.400000 +1288 936 0.400000 +1288 982 0.400000 +1288 1012 0.400000 +1288 1017 0.400000 +1288 1029 0.400000 +1288 1058 0.400000 +1288 1066 0.400000 +1288 1139 0.400000 +1288 1162 0.400000 +1288 1180 0.400000 +1288 1266 0.400000 +1288 1299 0.400000 +1288 1398 0.400000 +1288 1464 0.400000 +1288 1500 0.400000 +1288 1550 0.400000 +1288 1555 0.400000 +1288 1619 0.400000 +1288 1626 0.400000 +1288 1649 0.400000 +1288 1688 0.400000 +1288 1696 0.400000 +1288 1746 0.400000 +1288 1792 0.400000 +1288 1808 0.400000 +1288 1876 0.400000 +1288 1920 0.400000 +1288 1923 0.400000 +1288 1939 0.400000 +1288 1978 0.400000 +1288 2054 0.400000 +1288 2057 0.400000 +1288 2357 0.400000 +1288 2377 0.400000 +1288 2483 0.400000 +1288 2540 0.400000 +1288 2633 0.400000 +1288 2951 0.400000 +1288 3079 0.400000 +1288 3120 0.400000 +1288 3156 0.400000 +1289 1 0.400000 +1289 27 0.400000 +1289 59 0.400000 +1289 210 0.400000 +1289 235 0.400000 +1289 296 0.400000 +1289 307 0.400000 +1289 534 0.400000 +1289 627 0.400000 +1289 652 0.400000 +1289 667 0.400000 +1289 680 0.400000 +1289 707 0.400000 +1289 712 0.400000 +1289 822 0.400000 +1289 857 0.400000 +1289 858 0.400000 +1289 910 0.400000 +1289 1016 0.400000 +1289 1145 0.400000 +1289 1216 0.400000 +1289 1254 0.400000 +1289 1255 0.400000 +1289 1272 0.400000 +1289 1345 0.400000 +1289 1362 0.400000 +1289 1416 0.400000 +1289 1452 0.400000 +1289 1548 0.400000 +1289 1711 0.400000 +1289 1733 0.400000 +1289 1790 0.400000 +1289 1913 0.400000 +1289 1920 0.400000 +1289 2004 0.400000 +1289 2070 0.400000 +1289 2108 0.400000 +1289 2138 0.400000 +1289 2191 0.400000 +1289 2315 0.400000 +1289 2330 0.400000 +1289 2348 0.400000 +1289 2353 0.400000 +1289 2384 0.400000 +1289 2390 0.400000 +1289 2406 0.400000 +1289 2430 0.400000 +1289 2449 0.400000 +1289 2747 0.400000 +1289 2774 0.400000 +1289 2792 0.400000 +1289 2825 0.400000 +1289 2862 0.400000 +1289 2945 0.400000 +1289 2955 0.400000 +1289 2975 0.400000 +1289 3018 0.400000 +1289 3069 0.400000 +1289 3100 0.400000 +1289 3113 0.400000 +1289 3138 0.400000 +1290 18 0.400000 +1290 34 0.400000 +1290 38 0.400000 +1290 76 0.400000 +1290 189 0.400000 +1290 213 0.400000 +1290 225 0.400000 +1290 344 0.400000 +1290 372 0.400000 +1290 373 0.400000 +1290 388 0.400000 +1290 437 0.400000 +1290 567 0.400000 +1290 582 0.400000 +1290 592 0.400000 +1290 602 0.400000 +1290 606 0.400000 +1290 632 0.400000 +1290 743 0.400000 +1290 747 0.400000 +1290 1016 0.400000 +1290 1077 0.400000 +1290 1108 0.400000 +1290 1109 0.400000 +1290 1115 0.400000 +1290 1321 0.400000 +1290 1358 0.400000 +1290 1373 0.400000 +1290 1384 0.400000 +1290 1401 0.400000 +1290 1412 0.400000 +1290 1438 0.400000 +1290 1499 0.400000 +1290 1517 0.400000 +1290 1521 0.400000 +1290 1532 0.400000 +1290 1553 0.400000 +1290 1596 0.400000 +1290 1702 0.400000 +1290 1705 0.400000 +1290 1746 0.400000 +1290 1810 0.400000 +1290 1848 0.400000 +1290 1857 0.400000 +1290 1969 0.400000 +1290 2008 0.400000 +1290 2054 0.400000 +1290 2064 0.400000 +1290 2079 0.400000 +1290 2129 0.400000 +1290 2142 0.400000 +1290 2163 0.400000 +1290 2239 0.400000 +1290 2291 0.400000 +1290 2342 0.400000 +1290 2381 0.400000 +1290 2459 0.400000 +1290 2550 0.400000 +1290 2662 0.400000 +1290 2695 0.400000 +1290 2756 0.400000 +1290 2811 0.400000 +1290 2813 0.400000 +1290 2926 0.400000 +1290 2959 0.400000 +1290 3053 0.400000 +1290 3111 0.400000 +1290 3116 0.400000 +1290 3177 0.400000 +1291 37 0.400000 +1291 107 0.400000 +1291 150 0.400000 +1291 156 0.400000 +1291 199 0.400000 +1291 225 0.400000 +1291 234 0.400000 +1291 333 0.400000 +1291 376 0.400000 +1291 448 0.400000 +1291 469 0.400000 +1291 477 0.400000 +1291 492 0.400000 +1291 531 0.400000 +1291 559 0.400000 +1291 579 0.400000 +1291 601 0.400000 +1291 641 0.400000 +1291 774 0.400000 +1291 775 0.400000 +1291 792 0.400000 +1291 878 0.400000 +1291 901 0.400000 +1291 909 0.400000 +1291 964 0.400000 +1291 970 0.400000 +1291 972 0.400000 +1291 979 0.400000 +1291 1091 0.400000 +1291 1147 0.400000 +1291 1168 0.400000 +1291 1446 0.400000 +1291 1468 0.400000 +1291 1476 0.400000 +1291 1494 0.400000 +1291 1535 0.400000 +1291 1540 0.400000 +1291 1545 0.400000 +1291 1689 0.400000 +1291 1748 0.400000 +1291 1789 0.400000 +1291 1790 0.400000 +1291 1841 0.400000 +1291 1847 0.400000 +1291 1932 0.400000 +1291 1963 0.400000 +1291 2074 0.400000 +1291 2107 0.400000 +1291 2126 0.400000 +1291 2135 0.400000 +1291 2164 0.400000 +1291 2186 0.400000 +1291 2228 0.400000 +1291 2304 0.400000 +1291 2343 0.400000 +1291 2393 0.400000 +1291 2474 0.400000 +1291 2479 0.400000 +1291 2518 0.400000 +1291 2527 0.400000 +1291 2541 0.400000 +1291 2566 0.400000 +1291 2657 0.400000 +1291 2691 0.400000 +1291 2707 0.400000 +1291 2841 0.400000 +1291 2898 0.400000 +1291 2913 0.400000 +1291 2946 0.400000 +1291 3011 0.400000 +1291 3046 0.400000 +1291 3059 0.400000 +1291 3084 0.400000 +1291 3099 0.400000 +1291 3137 0.400000 +1291 3148 0.400000 +1292 49 0.400000 +1292 56 0.400000 +1292 109 0.400000 +1292 213 0.400000 +1292 257 0.400000 +1292 272 0.400000 +1292 349 0.400000 +1292 359 0.400000 +1292 360 0.400000 +1292 361 0.400000 +1292 386 0.400000 +1292 462 0.400000 +1292 589 0.400000 +1292 759 0.400000 +1292 792 0.400000 +1292 1006 0.400000 +1292 1015 0.400000 +1292 1138 0.400000 +1292 1164 0.400000 +1292 1184 0.400000 +1292 1230 0.400000 +1292 1231 0.400000 +1292 1268 0.400000 +1292 1365 0.400000 +1292 1370 0.400000 +1292 1376 0.400000 +1292 1386 0.400000 +1292 1442 0.400000 +1292 1524 0.400000 +1292 1544 0.400000 +1292 1674 0.400000 +1292 1693 0.400000 +1292 1695 0.400000 +1292 1739 0.400000 +1292 1816 0.400000 +1292 1856 0.400000 +1292 2001 0.400000 +1292 2040 0.400000 +1292 2117 0.400000 +1292 2145 0.400000 +1292 2212 0.400000 +1292 2222 0.400000 +1292 2242 0.400000 +1292 2259 0.400000 +1292 2277 0.400000 +1292 2314 0.400000 +1292 2343 0.400000 +1292 2411 0.400000 +1292 2447 0.400000 +1292 2511 0.400000 +1292 2535 0.400000 +1292 2540 0.400000 +1292 2572 0.400000 +1292 2586 0.400000 +1292 2590 0.400000 +1292 2598 0.400000 +1292 2651 0.400000 +1292 2715 0.400000 +1292 2725 0.400000 +1292 2727 0.400000 +1292 2729 0.400000 +1292 2840 0.400000 +1292 2859 0.400000 +1292 2870 0.400000 +1292 2880 0.400000 +1292 2896 0.400000 +1292 2983 0.400000 +1292 3020 0.400000 +1292 3108 0.400000 +1293 20 0.400000 +1293 93 0.400000 +1293 97 0.400000 +1293 123 0.400000 +1293 145 0.400000 +1293 175 0.400000 +1293 204 0.400000 +1293 205 0.400000 +1293 212 0.400000 +1293 242 0.400000 +1293 292 0.400000 +1293 501 0.400000 +1293 507 0.400000 +1293 608 0.400000 +1293 623 0.400000 +1293 684 0.400000 +1293 696 0.400000 +1293 736 0.400000 +1293 778 0.400000 +1293 846 0.400000 +1293 859 0.400000 +1293 927 0.400000 +1293 962 0.400000 +1293 1005 0.400000 +1293 1014 0.400000 +1293 1133 0.400000 +1293 1190 0.400000 +1293 1229 0.400000 +1293 1567 0.400000 +1293 1575 0.400000 +1293 1584 0.400000 +1293 1598 0.400000 +1293 1632 0.400000 +1293 1665 0.400000 +1293 1755 0.400000 +1293 1762 0.400000 +1293 1810 0.400000 +1293 1884 0.400000 +1293 1917 0.400000 +1293 1953 0.400000 +1293 1957 0.400000 +1293 1993 0.400000 +1293 2001 0.400000 +1293 2010 0.400000 +1293 2045 0.400000 +1293 2078 0.400000 +1293 2101 0.400000 +1293 2105 0.400000 +1293 2122 0.400000 +1293 2224 0.400000 +1293 2235 0.400000 +1293 2293 0.400000 +1293 2306 0.400000 +1293 2353 0.400000 +1293 2392 0.400000 +1293 2396 0.400000 +1293 2436 0.400000 +1293 2484 0.400000 +1293 2576 0.400000 +1293 2627 0.400000 +1293 2634 0.400000 +1293 2762 0.400000 +1293 2842 0.400000 +1293 2863 0.400000 +1293 2885 0.400000 +1293 2888 0.400000 +1293 3057 0.400000 +1293 3067 0.400000 +1293 3076 0.400000 +1293 3182 0.400000 +1293 3188 0.400000 +1294 47 0.400000 +1294 52 0.400000 +1294 148 0.400000 +1294 181 0.400000 +1294 184 0.400000 +1294 218 0.400000 +1294 239 0.400000 +1294 300 0.400000 +1294 381 0.400000 +1294 422 0.400000 +1294 423 0.400000 +1294 464 0.400000 +1294 505 0.400000 +1294 511 0.400000 +1294 527 0.400000 +1294 543 0.400000 +1294 625 0.400000 +1294 634 0.400000 +1294 672 0.400000 +1294 762 0.400000 +1294 802 0.400000 +1294 821 0.400000 +1294 832 0.400000 +1294 847 0.400000 +1294 864 0.400000 +1294 867 0.400000 +1294 890 0.400000 +1294 1020 0.400000 +1294 1120 0.400000 +1294 1181 0.400000 +1294 1240 0.400000 +1294 1302 0.400000 +1294 1341 0.400000 +1294 1368 0.400000 +1294 1423 0.400000 +1294 1490 0.400000 +1294 1554 0.400000 +1294 1687 0.400000 +1294 1688 0.400000 +1294 1755 0.400000 +1294 1780 0.400000 +1294 1787 0.400000 +1294 2042 0.400000 +1294 2077 0.400000 +1294 2093 0.400000 +1294 2111 0.400000 +1294 2311 0.400000 +1294 2361 0.400000 +1294 2407 0.400000 +1294 2410 0.400000 +1294 2465 0.400000 +1294 2478 0.400000 +1294 2496 0.400000 +1294 2592 0.400000 +1294 2615 0.400000 +1294 2617 0.400000 +1294 2649 0.400000 +1294 2663 0.400000 +1294 2679 0.400000 +1294 2736 0.400000 +1294 2744 0.400000 +1294 2754 0.400000 +1294 2760 0.400000 +1294 2791 0.400000 +1294 2822 0.400000 +1294 2848 0.400000 +1294 2884 0.400000 +1294 2939 0.400000 +1294 3111 0.400000 +1295 16 0.400000 +1295 36 0.400000 +1295 70 0.400000 +1295 85 0.400000 +1295 99 0.400000 +1295 130 0.400000 +1295 161 0.400000 +1295 180 0.400000 +1295 225 0.400000 +1295 357 0.400000 +1295 419 0.400000 +1295 514 0.400000 +1295 520 0.400000 +1295 531 0.400000 +1295 535 0.400000 +1295 559 0.400000 +1295 567 0.400000 +1295 721 0.400000 +1295 1030 0.400000 +1295 1046 0.400000 +1295 1127 0.400000 +1295 1157 0.400000 +1295 1179 0.400000 +1295 1218 0.400000 +1295 1236 0.400000 +1295 1240 0.400000 +1295 1372 0.400000 +1295 1393 0.400000 +1295 1398 0.400000 +1295 1400 0.400000 +1295 1574 0.400000 +1295 1634 0.400000 +1295 1691 0.400000 +1295 1701 0.400000 +1295 1712 0.400000 +1295 1732 0.400000 +1295 1787 0.400000 +1295 1892 0.400000 +1295 1995 0.400000 +1295 2054 0.400000 +1295 2108 0.400000 +1295 2198 0.400000 +1295 2276 0.400000 +1295 2397 0.400000 +1295 2405 0.400000 +1295 2419 0.400000 +1295 2522 0.400000 +1295 2708 0.400000 +1295 2731 0.400000 +1295 2766 0.400000 +1295 2781 0.400000 +1295 2784 0.400000 +1295 2795 0.400000 +1295 2874 0.400000 +1295 2889 0.400000 +1295 2916 0.400000 +1295 2924 0.400000 +1295 3036 0.400000 +1295 3126 0.400000 +1295 3191 0.400000 +1296 57 0.400000 +1296 62 0.400000 +1296 366 0.400000 +1296 388 0.400000 +1296 391 0.400000 +1296 395 0.400000 +1296 415 0.400000 +1296 442 0.400000 +1296 468 0.400000 +1296 593 0.400000 +1296 604 0.400000 +1296 687 0.400000 +1296 763 0.400000 +1296 777 0.400000 +1296 822 0.400000 +1296 846 0.400000 +1296 1068 0.400000 +1296 1108 0.400000 +1296 1162 0.400000 +1296 1184 0.400000 +1296 1200 0.400000 +1296 1347 0.400000 +1296 1392 0.400000 +1296 1536 0.400000 +1296 1590 0.400000 +1296 1591 0.400000 +1296 1739 0.400000 +1296 1800 0.400000 +1296 1831 0.400000 +1296 1859 0.400000 +1296 1866 0.400000 +1296 1888 0.400000 +1296 1970 0.400000 +1296 1990 0.400000 +1296 2065 0.400000 +1296 2121 0.400000 +1296 2197 0.400000 +1296 2256 0.400000 +1296 2293 0.400000 +1296 2298 0.400000 +1296 2311 0.400000 +1296 2312 0.400000 +1296 2400 0.400000 +1296 2425 0.400000 +1296 2474 0.400000 +1296 2574 0.400000 +1296 2610 0.400000 +1296 2698 0.400000 +1296 2715 0.400000 +1296 2721 0.400000 +1296 2733 0.400000 +1296 2811 0.400000 +1296 2819 0.400000 +1296 2961 0.400000 +1296 3037 0.400000 +1296 3137 0.400000 +1297 1 0.400000 +1297 82 0.400000 +1297 157 0.400000 +1297 310 0.400000 +1297 316 0.400000 +1297 321 0.400000 +1297 337 0.400000 +1297 451 0.400000 +1297 515 0.400000 +1297 539 0.400000 +1297 585 0.400000 +1297 648 0.400000 +1297 694 0.400000 +1297 760 0.400000 +1297 831 0.400000 +1297 859 0.400000 +1297 889 0.400000 +1297 892 0.400000 +1297 912 0.400000 +1297 998 0.400000 +1297 1061 0.400000 +1297 1069 0.400000 +1297 1104 0.400000 +1297 1130 0.400000 +1297 1197 0.400000 +1297 1319 0.400000 +1297 1415 0.400000 +1297 1447 0.400000 +1297 1461 0.400000 +1297 1559 0.400000 +1297 1631 0.400000 +1297 1708 0.400000 +1297 1716 0.400000 +1297 1723 0.400000 +1297 1827 0.400000 +1297 1991 0.400000 +1297 2002 0.400000 +1297 2004 0.400000 +1297 2018 0.400000 +1297 2062 0.400000 +1297 2243 0.400000 +1297 2258 0.400000 +1297 2283 0.400000 +1297 2330 0.400000 +1297 2355 0.400000 +1297 2436 0.400000 +1297 2441 0.400000 +1297 2484 0.400000 +1297 2489 0.400000 +1297 2516 0.400000 +1297 2524 0.400000 +1297 2562 0.400000 +1297 2660 0.400000 +1297 2722 0.400000 +1297 2731 0.400000 +1297 2742 0.400000 +1297 2753 0.400000 +1297 2789 0.400000 +1297 2807 0.400000 +1297 2854 0.400000 +1297 2861 0.400000 +1297 2963 0.400000 +1297 3000 0.400000 +1297 3168 0.400000 +1298 5 0.400000 +1298 10 0.400000 +1298 13 0.400000 +1298 45 0.400000 +1298 86 0.400000 +1298 120 0.400000 +1298 124 0.400000 +1298 159 0.400000 +1298 282 0.400000 +1298 357 0.400000 +1298 375 0.400000 +1298 386 0.400000 +1298 407 0.400000 +1298 532 0.400000 +1298 763 0.400000 +1298 780 0.400000 +1298 871 0.400000 +1298 914 0.400000 +1298 942 0.400000 +1298 988 0.400000 +1298 998 0.400000 +1298 1002 0.400000 +1298 1016 0.400000 +1298 1081 0.400000 +1298 1135 0.400000 +1298 1172 0.400000 +1298 1174 0.400000 +1298 1261 0.400000 +1298 1267 0.400000 +1298 1305 0.400000 +1298 1380 0.400000 +1298 1470 0.400000 +1298 1512 0.400000 +1298 1526 0.400000 +1298 1557 0.400000 +1298 1559 0.400000 +1298 1597 0.400000 +1298 1602 0.400000 +1298 1713 0.400000 +1298 1723 0.400000 +1298 1736 0.400000 +1298 1741 0.400000 +1298 1761 0.400000 +1298 1782 0.400000 +1298 1800 0.400000 +1298 1809 0.400000 +1298 2045 0.400000 +1298 2181 0.400000 +1298 2189 0.400000 +1298 2265 0.400000 +1298 2319 0.400000 +1298 2419 0.400000 +1298 2449 0.400000 +1298 2486 0.400000 +1298 2584 0.400000 +1298 2602 0.400000 +1298 2629 0.400000 +1298 2682 0.400000 +1298 2716 0.400000 +1298 2745 0.400000 +1298 2756 0.400000 +1298 2758 0.400000 +1298 2888 0.400000 +1298 2956 0.400000 +1298 2963 0.400000 +1298 3185 0.400000 +1299 33 0.400000 +1299 56 0.400000 +1299 107 0.400000 +1299 121 0.400000 +1299 132 0.400000 +1299 161 0.400000 +1299 208 0.400000 +1299 218 0.400000 +1299 225 0.400000 +1299 240 0.400000 +1299 280 0.400000 +1299 367 0.400000 +1299 435 0.400000 +1299 463 0.400000 +1299 527 0.400000 +1299 539 0.400000 +1299 558 0.400000 +1299 682 0.400000 +1299 796 0.400000 +1299 806 0.400000 +1299 817 0.400000 +1299 838 0.400000 +1299 846 0.400000 +1299 940 0.400000 +1299 1016 0.400000 +1299 1066 0.400000 +1299 1073 0.400000 +1299 1106 0.400000 +1299 1172 0.400000 +1299 1300 0.400000 +1299 1313 0.400000 +1299 1337 0.400000 +1299 1437 0.400000 +1299 1457 0.400000 +1299 1514 0.400000 +1299 1564 0.400000 +1299 1607 0.400000 +1299 1647 0.400000 +1299 1681 0.400000 +1299 1740 0.400000 +1299 1744 0.400000 +1299 1776 0.400000 +1299 1881 0.400000 +1299 1924 0.400000 +1299 1934 0.400000 +1299 1936 0.400000 +1299 1951 0.400000 +1299 2047 0.400000 +1299 2106 0.400000 +1299 2156 0.400000 +1299 2211 0.400000 +1299 2264 0.400000 +1299 2295 0.400000 +1299 2328 0.400000 +1299 2389 0.400000 +1299 2612 0.400000 +1299 2727 0.400000 +1299 2753 0.400000 +1299 2767 0.400000 +1299 2829 0.400000 +1299 3047 0.400000 +1300 58 0.400000 +1300 280 0.400000 +1300 375 0.400000 +1300 381 0.400000 +1300 439 0.400000 +1300 456 0.400000 +1300 477 0.400000 +1300 494 0.400000 +1300 519 0.400000 +1300 654 0.400000 +1300 806 0.400000 +1300 837 0.400000 +1300 857 0.400000 +1300 870 0.400000 +1300 902 0.400000 +1300 940 0.400000 +1300 1010 0.400000 +1300 1073 0.400000 +1300 1086 0.400000 +1300 1166 0.400000 +1300 1236 0.400000 +1300 1255 0.400000 +1300 1342 0.400000 +1300 1388 0.400000 +1300 1480 0.400000 +1300 1481 0.400000 +1300 1520 0.400000 +1300 1540 0.400000 +1300 1632 0.400000 +1300 1673 0.400000 +1300 1700 0.400000 +1300 1740 0.400000 +1300 1745 0.400000 +1300 1746 0.400000 +1300 1760 0.400000 +1300 1775 0.400000 +1300 1823 0.400000 +1300 1866 0.400000 +1300 1887 0.400000 +1300 1911 0.400000 +1300 1919 0.400000 +1300 1951 0.400000 +1300 2018 0.400000 +1300 2067 0.400000 +1300 2105 0.400000 +1300 2118 0.400000 +1300 2306 0.400000 +1300 2357 0.400000 +1300 2404 0.400000 +1300 2474 0.400000 +1300 2557 0.400000 +1300 2630 0.400000 +1300 2658 0.400000 +1300 2740 0.400000 +1300 2766 0.400000 +1300 2776 0.400000 +1300 2804 0.400000 +1300 2889 0.400000 +1300 3020 0.400000 +1301 9 0.400000 +1301 32 0.400000 +1301 116 0.400000 +1301 246 0.400000 +1301 276 0.400000 +1301 393 0.400000 +1301 496 0.400000 +1301 530 0.400000 +1301 539 0.400000 +1301 566 0.400000 +1301 599 0.400000 +1301 707 0.400000 +1301 733 0.400000 +1301 748 0.400000 +1301 756 0.400000 +1301 849 0.400000 +1301 928 0.400000 +1301 964 0.400000 +1301 995 0.400000 +1301 1007 0.400000 +1301 1053 0.400000 +1301 1066 0.400000 +1301 1216 0.400000 +1301 1234 0.400000 +1301 1283 0.400000 +1301 1285 0.400000 +1301 1307 0.400000 +1301 1376 0.400000 +1301 1391 0.400000 +1301 1497 0.400000 +1301 1555 0.400000 +1301 1663 0.400000 +1301 1731 0.400000 +1301 1826 0.400000 +1301 1833 0.400000 +1301 1861 0.400000 +1301 1867 0.400000 +1301 1869 0.400000 +1301 1904 0.400000 +1301 1928 0.400000 +1301 1987 0.400000 +1301 2117 0.400000 +1301 2186 0.400000 +1301 2189 0.400000 +1301 2229 0.400000 +1301 2240 0.400000 +1301 2287 0.400000 +1301 2424 0.400000 +1301 2425 0.400000 +1301 2441 0.400000 +1301 2506 0.400000 +1301 2608 0.400000 +1301 2729 0.400000 +1301 2794 0.400000 +1301 2816 0.400000 +1301 2901 0.400000 +1301 3002 0.400000 +1301 3019 0.400000 +1301 3178 0.400000 +1302 12 0.400000 +1302 31 0.400000 +1302 52 0.400000 +1302 352 0.400000 +1302 420 0.400000 +1302 436 0.400000 +1302 470 0.400000 +1302 474 0.400000 +1302 560 0.400000 +1302 613 0.400000 +1302 735 0.400000 +1302 779 0.400000 +1302 820 0.400000 +1302 936 0.400000 +1302 1044 0.400000 +1302 1065 0.400000 +1302 1151 0.400000 +1302 1158 0.400000 +1302 1178 0.400000 +1302 1210 0.400000 +1302 1289 0.400000 +1302 1296 0.400000 +1302 1317 0.400000 +1302 1342 0.400000 +1302 1380 0.400000 +1302 1469 0.400000 +1302 1485 0.400000 +1302 1561 0.400000 +1302 1656 0.400000 +1302 1667 0.400000 +1302 1707 0.400000 +1302 1805 0.400000 +1302 1808 0.400000 +1302 1842 0.400000 +1302 1893 0.400000 +1302 1971 0.400000 +1302 2021 0.400000 +1302 2039 0.400000 +1302 2134 0.400000 +1302 2157 0.400000 +1302 2228 0.400000 +1302 2313 0.400000 +1302 2332 0.400000 +1302 2415 0.400000 +1302 2470 0.400000 +1302 2526 0.400000 +1302 2594 0.400000 +1302 2616 0.400000 +1302 2681 0.400000 +1302 2794 0.400000 +1302 2848 0.400000 +1302 2874 0.400000 +1302 2941 0.400000 +1302 3086 0.400000 +1302 3174 0.400000 +1303 110 0.400000 +1303 138 0.400000 +1303 158 0.400000 +1303 329 0.400000 +1303 374 0.400000 +1303 570 0.400000 +1303 655 0.400000 +1303 665 0.400000 +1303 735 0.400000 +1303 788 0.400000 +1303 845 0.400000 +1303 877 0.400000 +1303 994 0.400000 +1303 1077 0.400000 +1303 1100 0.400000 +1303 1143 0.400000 +1303 1144 0.400000 +1303 1418 0.400000 +1303 1432 0.400000 +1303 1488 0.400000 +1303 1506 0.400000 +1303 1587 0.400000 +1303 1602 0.400000 +1303 1624 0.400000 +1303 1643 0.400000 +1303 1688 0.400000 +1303 1763 0.400000 +1303 1766 0.400000 +1303 1903 0.400000 +1303 1924 0.400000 +1303 1928 0.400000 +1303 1942 0.400000 +1303 1999 0.400000 +1303 2036 0.400000 +1303 2046 0.400000 +1303 2098 0.400000 +1303 2318 0.400000 +1303 2415 0.400000 +1303 2441 0.400000 +1303 2461 0.400000 +1303 2467 0.400000 +1303 2553 0.400000 +1303 2612 0.400000 +1303 2674 0.400000 +1303 2709 0.400000 +1303 2715 0.400000 +1303 2723 0.400000 +1303 2724 0.400000 +1303 2864 0.400000 +1303 2981 0.400000 +1303 3145 0.400000 +1303 3173 0.400000 +1304 50 0.400000 +1304 143 0.400000 +1304 145 0.400000 +1304 153 0.400000 +1304 262 0.400000 +1304 293 0.400000 +1304 492 0.400000 +1304 503 0.400000 +1304 640 0.400000 +1304 681 0.400000 +1304 767 0.400000 +1304 943 0.400000 +1304 977 0.400000 +1304 980 0.400000 +1304 1044 0.400000 +1304 1145 0.400000 +1304 1147 0.400000 +1304 1150 0.400000 +1304 1258 0.400000 +1304 1314 0.400000 +1304 1382 0.400000 +1304 1387 0.400000 +1304 1427 0.400000 +1304 1565 0.400000 +1304 1621 0.400000 +1304 1654 0.400000 +1304 1820 0.400000 +1304 1905 0.400000 +1304 1976 0.400000 +1304 1999 0.400000 +1304 2061 0.400000 +1304 2148 0.400000 +1304 2205 0.400000 +1304 2209 0.400000 +1304 2211 0.400000 +1304 2349 0.400000 +1304 2354 0.400000 +1304 2363 0.400000 +1304 2391 0.400000 +1304 2476 0.400000 +1304 2530 0.400000 +1304 2649 0.400000 +1304 2698 0.400000 +1304 2763 0.400000 +1304 2866 0.400000 +1304 2895 0.400000 +1304 2897 0.400000 +1304 2956 0.400000 +1304 3041 0.400000 +1304 3048 0.400000 +1304 3099 0.400000 +1304 3182 0.400000 +1305 28 0.400000 +1305 40 0.400000 +1305 96 0.400000 +1305 203 0.400000 +1305 264 0.400000 +1305 296 0.400000 +1305 330 0.400000 +1305 368 0.400000 +1305 370 0.400000 +1305 540 0.400000 +1305 567 0.400000 +1305 618 0.400000 +1305 688 0.400000 +1305 694 0.400000 +1305 767 0.400000 +1305 783 0.400000 +1305 796 0.400000 +1305 1012 0.400000 +1305 1122 0.400000 +1305 1173 0.400000 +1305 1179 0.400000 +1305 1182 0.400000 +1305 1227 0.400000 +1305 1232 0.400000 +1305 1247 0.400000 +1305 1300 0.400000 +1305 1338 0.400000 +1305 1369 0.400000 +1305 1471 0.400000 +1305 1489 0.400000 +1305 1563 0.400000 +1305 1568 0.400000 +1305 1651 0.400000 +1305 1656 0.400000 +1305 1751 0.400000 +1305 1764 0.400000 +1305 1819 0.400000 +1305 1915 0.400000 +1305 2035 0.400000 +1305 2097 0.400000 +1305 2120 0.400000 +1305 2206 0.400000 +1305 2287 0.400000 +1305 2302 0.400000 +1305 2463 0.400000 +1305 2474 0.400000 +1305 2702 0.400000 +1305 2798 0.400000 +1305 2820 0.400000 +1305 2830 0.400000 +1305 2870 0.400000 +1305 2988 0.400000 +1305 2993 0.400000 +1305 3066 0.400000 +1305 3178 0.400000 +1305 3185 0.400000 +1306 50 0.400000 +1306 63 0.400000 +1306 118 0.400000 +1306 156 0.400000 +1306 380 0.400000 +1306 422 0.400000 +1306 472 0.400000 +1306 505 0.400000 +1306 600 0.400000 +1306 645 0.400000 +1306 646 0.400000 +1306 673 0.400000 +1306 675 0.400000 +1306 677 0.400000 +1306 724 0.400000 +1306 803 0.400000 +1306 843 0.400000 +1306 874 0.400000 +1306 1014 0.400000 +1306 1065 0.400000 +1306 1070 0.400000 +1306 1155 0.400000 +1306 1175 0.400000 +1306 1191 0.400000 +1306 1203 0.400000 +1306 1274 0.400000 +1306 1322 0.400000 +1306 1358 0.400000 +1306 1434 0.400000 +1306 1443 0.400000 +1306 1557 0.400000 +1306 1581 0.400000 +1306 1582 0.400000 +1306 1595 0.400000 +1306 1629 0.400000 +1306 1812 0.400000 +1306 1854 0.400000 +1306 1883 0.400000 +1306 2022 0.400000 +1306 2107 0.400000 +1306 2195 0.400000 +1306 2208 0.400000 +1306 2288 0.400000 +1306 2451 0.400000 +1306 2474 0.400000 +1306 2496 0.400000 +1306 2646 0.400000 +1306 2701 0.400000 +1306 2708 0.400000 +1306 2789 0.400000 +1306 2858 0.400000 +1306 2895 0.400000 +1306 2911 0.400000 +1306 2984 0.400000 +1306 2995 0.400000 +1306 3084 0.400000 +1306 3129 0.400000 +1307 40 0.400000 +1307 136 0.400000 +1307 160 0.400000 +1307 290 0.400000 +1307 325 0.400000 +1307 330 0.400000 +1307 342 0.400000 +1307 366 0.400000 +1307 461 0.400000 +1307 524 0.400000 +1307 538 0.400000 +1307 545 0.400000 +1307 593 0.400000 +1307 597 0.400000 +1307 738 0.400000 +1307 810 0.400000 +1307 825 0.400000 +1307 833 0.400000 +1307 915 0.400000 +1307 990 0.400000 +1307 1403 0.400000 +1307 1412 0.400000 +1307 1453 0.400000 +1307 1485 0.400000 +1307 1556 0.400000 +1307 1559 0.400000 +1307 1601 0.400000 +1307 1663 0.400000 +1307 1692 0.400000 +1307 1723 0.400000 +1307 1735 0.400000 +1307 1749 0.400000 +1307 1851 0.400000 +1307 1871 0.400000 +1307 1888 0.400000 +1307 1925 0.400000 +1307 2034 0.400000 +1307 2061 0.400000 +1307 2118 0.400000 +1307 2145 0.400000 +1307 2157 0.400000 +1307 2181 0.400000 +1307 2201 0.400000 +1307 2261 0.400000 +1307 2291 0.400000 +1307 2351 0.400000 +1307 2372 0.400000 +1307 2381 0.400000 +1307 2404 0.400000 +1307 2426 0.400000 +1307 2515 0.400000 +1307 2521 0.400000 +1307 2571 0.400000 +1307 2621 0.400000 +1307 2717 0.400000 +1307 2824 0.400000 +1307 2834 0.400000 +1307 2940 0.400000 +1307 2947 0.400000 +1307 2982 0.400000 +1307 3185 0.400000 +1308 87 0.400000 +1308 146 0.400000 +1308 219 0.400000 +1308 290 0.400000 +1308 417 0.400000 +1308 464 0.400000 +1308 492 0.400000 +1308 597 0.400000 +1308 610 0.400000 +1308 616 0.400000 +1308 644 0.400000 +1308 651 0.400000 +1308 661 0.400000 +1308 792 0.400000 +1308 801 0.400000 +1308 876 0.400000 +1308 882 0.400000 +1308 989 0.400000 +1308 1053 0.400000 +1308 1125 0.400000 +1308 1207 0.400000 +1308 1223 0.400000 +1308 1267 0.400000 +1308 1316 0.400000 +1308 1360 0.400000 +1308 1368 0.400000 +1308 1501 0.400000 +1308 1608 0.400000 +1308 1727 0.400000 +1308 1782 0.400000 +1308 1815 0.400000 +1308 1897 0.400000 +1308 1909 0.400000 +1308 1919 0.400000 +1308 1994 0.400000 +1308 2099 0.400000 +1308 2126 0.400000 +1308 2139 0.400000 +1308 2173 0.400000 +1308 2200 0.400000 +1308 2216 0.400000 +1308 2237 0.400000 +1308 2266 0.400000 +1308 2315 0.400000 +1308 2460 0.400000 +1308 2501 0.400000 +1308 2548 0.400000 +1308 2652 0.400000 +1308 2828 0.400000 +1308 2872 0.400000 +1308 2877 0.400000 +1308 2880 0.400000 +1308 2894 0.400000 +1308 2932 0.400000 +1308 3024 0.400000 +1308 3037 0.400000 +1308 3063 0.400000 +1308 3087 0.400000 +1308 3112 0.400000 +1309 17 0.400000 +1309 41 0.400000 +1309 42 0.400000 +1309 130 0.400000 +1309 207 0.400000 +1309 233 0.400000 +1309 298 0.400000 +1309 304 0.400000 +1309 354 0.400000 +1309 409 0.400000 +1309 430 0.400000 +1309 509 0.400000 +1309 661 0.400000 +1309 706 0.400000 +1309 802 0.400000 +1309 876 0.400000 +1309 885 0.400000 +1309 904 0.400000 +1309 921 0.400000 +1309 951 0.400000 +1309 1045 0.400000 +1309 1123 0.400000 +1309 1180 0.400000 +1309 1194 0.400000 +1309 1276 0.400000 +1309 1280 0.400000 +1309 1291 0.400000 +1309 1303 0.400000 +1309 1308 0.400000 +1309 1375 0.400000 +1309 1400 0.400000 +1309 1408 0.400000 +1309 1443 0.400000 +1309 1444 0.400000 +1309 1571 0.400000 +1309 1611 0.400000 +1309 1628 0.400000 +1309 1697 0.400000 +1309 1846 0.400000 +1309 1857 0.400000 +1309 1868 0.400000 +1309 1923 0.400000 +1309 1925 0.400000 +1309 1965 0.400000 +1309 1988 0.400000 +1309 2001 0.400000 +1309 2071 0.400000 +1309 2131 0.400000 +1309 2158 0.400000 +1309 2203 0.400000 +1309 2228 0.400000 +1309 2257 0.400000 +1309 2304 0.400000 +1309 2325 0.400000 +1309 2339 0.400000 +1309 2394 0.400000 +1309 2481 0.400000 +1309 2506 0.400000 +1309 2611 0.400000 +1309 2772 0.400000 +1309 2797 0.400000 +1309 2818 0.400000 +1309 2848 0.400000 +1309 2898 0.400000 +1309 2916 0.400000 +1309 2980 0.400000 +1309 2989 0.400000 +1309 3015 0.400000 +1309 3021 0.400000 +1309 3151 0.400000 +1309 3189 0.400000 +1310 53 0.400000 +1310 84 0.400000 +1310 91 0.400000 +1310 211 0.400000 +1310 265 0.400000 +1310 340 0.400000 +1310 459 0.400000 +1310 469 0.400000 +1310 471 0.400000 +1310 478 0.400000 +1310 493 0.400000 +1310 506 0.400000 +1310 745 0.400000 +1310 748 0.400000 +1310 753 0.400000 +1310 785 0.400000 +1310 914 0.400000 +1310 1028 0.400000 +1310 1072 0.400000 +1310 1128 0.400000 +1310 1165 0.400000 +1310 1184 0.400000 +1310 1201 0.400000 +1310 1204 0.400000 +1310 1299 0.400000 +1310 1324 0.400000 +1310 1388 0.400000 +1310 1396 0.400000 +1310 1459 0.400000 +1310 1482 0.400000 +1310 1512 0.400000 +1310 1531 0.400000 +1310 1543 0.400000 +1310 1546 0.400000 +1310 1598 0.400000 +1310 1613 0.400000 +1310 1801 0.400000 +1310 1849 0.400000 +1310 1851 0.400000 +1310 1867 0.400000 +1310 1927 0.400000 +1310 1951 0.400000 +1310 2005 0.400000 +1310 2009 0.400000 +1310 2056 0.400000 +1310 2061 0.400000 +1310 2073 0.400000 +1310 2075 0.400000 +1310 2154 0.400000 +1310 2201 0.400000 +1310 2275 0.400000 +1310 2363 0.400000 +1310 2385 0.400000 +1310 2425 0.400000 +1310 2438 0.400000 +1310 2451 0.400000 +1310 2493 0.400000 +1310 2494 0.400000 +1310 2614 0.400000 +1310 2644 0.400000 +1310 2646 0.400000 +1310 2701 0.400000 +1310 2755 0.400000 +1310 2786 0.400000 +1310 2857 0.400000 +1310 2868 0.400000 +1310 2919 0.400000 +1310 2943 0.400000 +1310 2962 0.400000 +1310 2976 0.400000 +1310 2996 0.400000 +1310 3020 0.400000 +1310 3069 0.400000 +1310 3104 0.400000 +1310 3116 0.400000 +1310 3146 0.400000 +1310 3151 0.400000 +1310 3161 0.400000 +1311 30 0.400000 +1311 33 0.400000 +1311 66 0.400000 +1311 67 0.400000 +1311 120 0.400000 +1311 123 0.400000 +1311 152 0.400000 +1311 171 0.400000 +1311 207 0.400000 +1311 210 0.400000 +1311 370 0.400000 +1311 408 0.400000 +1311 582 0.400000 +1311 608 0.400000 +1311 621 0.400000 +1311 622 0.400000 +1311 634 0.400000 +1311 667 0.400000 +1311 716 0.400000 +1311 786 0.400000 +1311 819 0.400000 +1311 899 0.400000 +1311 945 0.400000 +1311 975 0.400000 +1311 980 0.400000 +1311 1023 0.400000 +1311 1117 0.400000 +1311 1125 0.400000 +1311 1179 0.400000 +1311 1210 0.400000 +1311 1224 0.400000 +1311 1232 0.400000 +1311 1236 0.400000 +1311 1283 0.400000 +1311 1317 0.400000 +1311 1355 0.400000 +1311 1385 0.400000 +1311 1397 0.400000 +1311 1444 0.400000 +1311 1462 0.400000 +1311 1471 0.400000 +1311 1546 0.400000 +1311 1602 0.400000 +1311 1656 0.400000 +1311 1697 0.400000 +1311 1825 0.400000 +1311 1830 0.400000 +1311 1882 0.400000 +1311 2047 0.400000 +1311 2103 0.400000 +1311 2142 0.400000 +1311 2244 0.400000 +1311 2254 0.400000 +1311 2481 0.400000 +1311 2486 0.400000 +1311 2575 0.400000 +1311 2599 0.400000 +1311 2605 0.400000 +1311 2636 0.400000 +1311 2727 0.400000 +1311 2805 0.400000 +1311 2856 0.400000 +1311 2875 0.400000 +1311 2938 0.400000 +1311 3081 0.400000 +1311 3168 0.400000 +1311 3186 0.400000 +1312 39 0.400000 +1312 130 0.400000 +1312 131 0.400000 +1312 132 0.400000 +1312 141 0.400000 +1312 245 0.400000 +1312 249 0.400000 +1312 267 0.400000 +1312 634 0.400000 +1312 658 0.400000 +1312 718 0.400000 +1312 854 0.400000 +1312 861 0.400000 +1312 880 0.400000 +1312 991 0.400000 +1312 1007 0.400000 +1312 1034 0.400000 +1312 1052 0.400000 +1312 1132 0.400000 +1312 1134 0.400000 +1312 1199 0.400000 +1312 1207 0.400000 +1312 1540 0.400000 +1312 1543 0.400000 +1312 1551 0.400000 +1312 1556 0.400000 +1312 1630 0.400000 +1312 1682 0.400000 +1312 1738 0.400000 +1312 1779 0.400000 +1312 1786 0.400000 +1312 1798 0.400000 +1312 1801 0.400000 +1312 1814 0.400000 +1312 1842 0.400000 +1312 1875 0.400000 +1312 1877 0.400000 +1312 1942 0.400000 +1312 2182 0.400000 +1312 2203 0.400000 +1312 2216 0.400000 +1312 2293 0.400000 +1312 2306 0.400000 +1312 2370 0.400000 +1312 2446 0.400000 +1312 2461 0.400000 +1312 2490 0.400000 +1312 2590 0.400000 +1312 2623 0.400000 +1312 2629 0.400000 +1312 2771 0.400000 +1312 2820 0.400000 +1312 2886 0.400000 +1312 2897 0.400000 +1312 2903 0.400000 +1312 2998 0.400000 +1312 3043 0.400000 +1312 3047 0.400000 +1312 3152 0.400000 +1313 75 0.400000 +1313 175 0.400000 +1313 249 0.400000 +1313 260 0.400000 +1313 285 0.400000 +1313 304 0.400000 +1313 367 0.400000 +1313 401 0.400000 +1313 439 0.400000 +1313 509 0.400000 +1313 517 0.400000 +1313 558 0.400000 +1313 696 0.400000 +1313 700 0.400000 +1313 758 0.400000 +1313 771 0.400000 +1313 891 0.400000 +1313 951 0.400000 +1313 961 0.400000 +1313 1057 0.400000 +1313 1073 0.400000 +1313 1095 0.400000 +1313 1121 0.400000 +1313 1133 0.400000 +1313 1184 0.400000 +1313 1279 0.400000 +1313 1337 0.400000 +1313 1407 0.400000 +1313 1439 0.400000 +1313 1523 0.400000 +1313 1661 0.400000 +1313 1689 0.400000 +1313 1700 0.400000 +1313 1761 0.400000 +1313 1801 0.400000 +1313 1802 0.400000 +1313 1833 0.400000 +1313 1879 0.400000 +1313 1897 0.400000 +1313 1959 0.400000 +1313 2054 0.400000 +1313 2183 0.400000 +1313 2213 0.400000 +1313 2262 0.400000 +1313 2294 0.400000 +1313 2376 0.400000 +1313 2394 0.400000 +1313 2468 0.400000 +1313 2526 0.400000 +1313 2647 0.400000 +1313 2673 0.400000 +1313 2712 0.400000 +1313 2713 0.400000 +1313 2802 0.400000 +1313 2902 0.400000 +1313 3066 0.400000 +1313 3092 0.400000 +1313 3108 0.400000 +1313 3137 0.400000 +1313 3185 0.400000 +1313 3197 0.400000 +1314 24 0.400000 +1314 66 0.400000 +1314 169 0.400000 +1314 175 0.400000 +1314 205 0.400000 +1314 282 0.400000 +1314 325 0.400000 +1314 332 0.400000 +1314 390 0.400000 +1314 427 0.400000 +1314 488 0.400000 +1314 492 0.400000 +1314 637 0.400000 +1314 648 0.400000 +1314 856 0.400000 +1314 1032 0.400000 +1314 1081 0.400000 +1314 1201 0.400000 +1314 1282 0.400000 +1314 1294 0.400000 +1314 1338 0.400000 +1314 1353 0.400000 +1314 1358 0.400000 +1314 1362 0.400000 +1314 1415 0.400000 +1314 1425 0.400000 +1314 1575 0.400000 +1314 1616 0.400000 +1314 1626 0.400000 +1314 1678 0.400000 +1314 1728 0.400000 +1314 1806 0.400000 +1314 1850 0.400000 +1314 1972 0.400000 +1314 2011 0.400000 +1314 2107 0.400000 +1314 2252 0.400000 +1314 2284 0.400000 +1314 2296 0.400000 +1314 2356 0.400000 +1314 2370 0.400000 +1314 2466 0.400000 +1314 2551 0.400000 +1314 2564 0.400000 +1314 2672 0.400000 +1314 2691 0.400000 +1314 2737 0.400000 +1314 2750 0.400000 +1314 2751 0.400000 +1314 2884 0.400000 +1314 2912 0.400000 +1314 2918 0.400000 +1314 3005 0.400000 +1314 3028 0.400000 +1314 3065 0.400000 +1314 3109 0.400000 +1314 3140 0.400000 +1314 3141 0.400000 +1314 3150 0.400000 +1315 21 0.400000 +1315 49 0.400000 +1315 50 0.400000 +1315 69 0.400000 +1315 140 0.400000 +1315 149 0.400000 +1315 317 0.400000 +1315 379 0.400000 +1315 451 0.400000 +1315 468 0.400000 +1315 496 0.400000 +1315 612 0.400000 +1315 662 0.400000 +1315 676 0.400000 +1315 697 0.400000 +1315 746 0.400000 +1315 759 0.400000 +1315 886 0.400000 +1315 932 0.400000 +1315 953 0.400000 +1315 962 0.400000 +1315 1073 0.400000 +1315 1075 0.400000 +1315 1107 0.400000 +1315 1112 0.400000 +1315 1128 0.400000 +1315 1173 0.400000 +1315 1189 0.400000 +1315 1191 0.400000 +1315 1243 0.400000 +1315 1246 0.400000 +1315 1266 0.400000 +1315 1310 0.400000 +1315 1324 0.400000 +1315 1326 0.400000 +1315 1380 0.400000 +1315 1447 0.400000 +1315 1454 0.400000 +1315 1506 0.400000 +1315 1583 0.400000 +1315 1616 0.400000 +1315 1725 0.400000 +1315 1783 0.400000 +1315 1829 0.400000 +1315 1857 0.400000 +1315 1900 0.400000 +1315 1905 0.400000 +1315 1928 0.400000 +1315 1945 0.400000 +1315 1987 0.400000 +1315 2036 0.400000 +1315 2087 0.400000 +1315 2127 0.400000 +1315 2179 0.400000 +1315 2190 0.400000 +1315 2195 0.400000 +1315 2226 0.400000 +1315 2228 0.400000 +1315 2245 0.400000 +1315 2322 0.400000 +1315 2377 0.400000 +1315 2396 0.400000 +1315 2407 0.400000 +1315 2409 0.400000 +1315 2426 0.400000 +1315 2463 0.400000 +1315 2471 0.400000 +1315 2476 0.400000 +1315 2515 0.400000 +1315 2531 0.400000 +1315 2546 0.400000 +1315 2560 0.400000 +1315 2580 0.400000 +1315 2635 0.400000 +1315 2669 0.400000 +1315 2684 0.400000 +1315 2877 0.400000 +1315 2979 0.400000 +1315 3002 0.400000 +1315 3022 0.400000 +1315 3027 0.400000 +1315 3101 0.400000 +1315 3110 0.400000 +1315 3142 0.400000 +1316 167 0.400000 +1316 509 0.400000 +1316 558 0.400000 +1316 630 0.400000 +1316 682 0.400000 +1316 706 0.400000 +1316 766 0.400000 +1316 806 0.400000 +1316 808 0.400000 +1316 859 0.400000 +1316 905 0.400000 +1316 1091 0.400000 +1316 1123 0.400000 +1316 1141 0.400000 +1316 1161 0.400000 +1316 1246 0.400000 +1316 1275 0.400000 +1316 1296 0.400000 +1316 1426 0.400000 +1316 1575 0.400000 +1316 1678 0.400000 +1316 1791 0.400000 +1316 1828 0.400000 +1316 1891 0.400000 +1316 2009 0.400000 +1316 2046 0.400000 +1316 2047 0.400000 +1316 2092 0.400000 +1316 2172 0.400000 +1316 2248 0.400000 +1316 2249 0.400000 +1316 2291 0.400000 +1316 2333 0.400000 +1316 2480 0.400000 +1316 2497 0.400000 +1316 2545 0.400000 +1316 2560 0.400000 +1316 2577 0.400000 +1316 2627 0.400000 +1316 2707 0.400000 +1316 2784 0.400000 +1316 2845 0.400000 +1316 2858 0.400000 +1316 2868 0.400000 +1316 3105 0.400000 +1316 3134 0.400000 +1316 3166 0.400000 +1316 3173 0.400000 +1317 11 0.400000 +1317 39 0.400000 +1317 53 0.400000 +1317 105 0.400000 +1317 126 0.400000 +1317 157 0.400000 +1317 281 0.400000 +1317 336 0.400000 +1317 339 0.400000 +1317 373 0.400000 +1317 379 0.400000 +1317 388 0.400000 +1317 452 0.400000 +1317 560 0.400000 +1317 582 0.400000 +1317 618 0.400000 +1317 645 0.400000 +1317 719 0.400000 +1317 779 0.400000 +1317 879 0.400000 +1317 920 0.400000 +1317 923 0.400000 +1317 924 0.400000 +1317 968 0.400000 +1317 991 0.400000 +1317 1192 0.400000 +1317 1205 0.400000 +1317 1238 0.400000 +1317 1303 0.400000 +1317 1342 0.400000 +1317 1345 0.400000 +1317 1377 0.400000 +1317 1382 0.400000 +1317 1494 0.400000 +1317 1496 0.400000 +1317 1535 0.400000 +1317 1570 0.400000 +1317 1587 0.400000 +1317 1635 0.400000 +1317 1636 0.400000 +1317 1664 0.400000 +1317 1672 0.400000 +1317 1776 0.400000 +1317 1878 0.400000 +1317 1883 0.400000 +1317 1925 0.400000 +1317 1931 0.400000 +1317 2061 0.400000 +1317 2256 0.400000 +1317 2305 0.400000 +1317 2364 0.400000 +1317 2471 0.400000 +1317 2490 0.400000 +1317 2497 0.400000 +1317 2543 0.400000 +1317 2612 0.400000 +1317 2690 0.400000 +1317 2711 0.400000 +1317 2734 0.400000 +1317 2954 0.400000 +1317 3036 0.400000 +1317 3074 0.400000 +1317 3077 0.400000 +1317 3147 0.400000 +1317 3157 0.400000 +1318 6 0.400000 +1318 45 0.400000 +1318 53 0.400000 +1318 102 0.400000 +1318 135 0.400000 +1318 213 0.400000 +1318 216 0.400000 +1318 243 0.400000 +1318 274 0.400000 +1318 342 0.400000 +1318 568 0.400000 +1318 612 0.400000 +1318 644 0.400000 +1318 694 0.400000 +1318 697 0.400000 +1318 820 0.400000 +1318 828 0.400000 +1318 831 0.400000 +1318 915 0.400000 +1318 951 0.400000 +1318 1041 0.400000 +1318 1078 0.400000 +1318 1086 0.400000 +1318 1123 0.400000 +1318 1146 0.400000 +1318 1200 0.400000 +1318 1338 0.400000 +1318 1380 0.400000 +1318 1383 0.400000 +1318 1577 0.400000 +1318 1717 0.400000 +1318 1730 0.400000 +1318 1838 0.400000 +1318 1898 0.400000 +1318 1931 0.400000 +1318 2037 0.400000 +1318 2050 0.400000 +1318 2060 0.400000 +1318 2213 0.400000 +1318 2219 0.400000 +1318 2227 0.400000 +1318 2272 0.400000 +1318 2303 0.400000 +1318 2320 0.400000 +1318 2349 0.400000 +1318 2475 0.400000 +1318 2479 0.400000 +1318 2534 0.400000 +1318 2625 0.400000 +1318 2680 0.400000 +1318 2710 0.400000 +1318 2726 0.400000 +1318 2751 0.400000 +1318 2761 0.400000 +1318 2763 0.400000 +1318 2768 0.400000 +1318 2813 0.400000 +1318 2871 0.400000 +1318 2879 0.400000 +1318 3053 0.400000 +1318 3148 0.400000 +1318 3183 0.400000 +1319 26 0.400000 +1319 145 0.400000 +1319 166 0.400000 +1319 190 0.400000 +1319 197 0.400000 +1319 204 0.400000 +1319 205 0.400000 +1319 411 0.400000 +1319 447 0.400000 +1319 624 0.400000 +1319 728 0.400000 +1319 755 0.400000 +1319 774 0.400000 +1319 794 0.400000 +1319 801 0.400000 +1319 820 0.400000 +1319 831 0.400000 +1319 888 0.400000 +1319 918 0.400000 +1319 1003 0.400000 +1319 1036 0.400000 +1319 1126 0.400000 +1319 1281 0.400000 +1319 1344 0.400000 +1319 1549 0.400000 +1319 1556 0.400000 +1319 1594 0.400000 +1319 1625 0.400000 +1319 1680 0.400000 +1319 1710 0.400000 +1319 1734 0.400000 +1319 1808 0.400000 +1319 1839 0.400000 +1319 1845 0.400000 +1319 1997 0.400000 +1319 2134 0.400000 +1319 2143 0.400000 +1319 2151 0.400000 +1319 2171 0.400000 +1319 2235 0.400000 +1319 2310 0.400000 +1319 2318 0.400000 +1319 2466 0.400000 +1319 2538 0.400000 +1319 2581 0.400000 +1319 2639 0.400000 +1319 2714 0.400000 +1319 2815 0.400000 +1319 2842 0.400000 +1319 2937 0.400000 +1319 2944 0.400000 +1319 3013 0.400000 +1319 3014 0.400000 +1320 61 0.400000 +1320 66 0.400000 +1320 77 0.400000 +1320 159 0.400000 +1320 224 0.400000 +1320 228 0.400000 +1320 345 0.400000 +1320 350 0.400000 +1320 389 0.400000 +1320 512 0.400000 +1320 523 0.400000 +1320 530 0.400000 +1320 538 0.400000 +1320 544 0.400000 +1320 596 0.400000 +1320 622 0.400000 +1320 702 0.400000 +1320 710 0.400000 +1320 722 0.400000 +1320 762 0.400000 +1320 780 0.400000 +1320 785 0.400000 +1320 863 0.400000 +1320 877 0.400000 +1320 945 0.400000 +1320 1008 0.400000 +1320 1026 0.400000 +1320 1047 0.400000 +1320 1065 0.400000 +1320 1249 0.400000 +1320 1325 0.400000 +1320 1497 0.400000 +1320 1569 0.400000 +1320 1577 0.400000 +1320 1606 0.400000 +1320 1613 0.400000 +1320 1665 0.400000 +1320 1756 0.400000 +1320 1950 0.400000 +1320 2010 0.400000 +1320 2017 0.400000 +1320 2075 0.400000 +1320 2149 0.400000 +1320 2159 0.400000 +1320 2240 0.400000 +1320 2275 0.400000 +1320 2298 0.400000 +1320 2396 0.400000 +1320 2431 0.400000 +1320 2458 0.400000 +1320 2460 0.400000 +1320 2506 0.400000 +1320 2606 0.400000 +1320 2608 0.400000 +1320 2619 0.400000 +1320 2823 0.400000 +1320 2919 0.400000 +1320 2929 0.400000 +1320 2959 0.400000 +1320 3048 0.400000 +1320 3053 0.400000 +1320 3055 0.400000 +1321 16 0.400000 +1321 20 0.400000 +1321 36 0.400000 +1321 39 0.400000 +1321 59 0.400000 +1321 76 0.400000 +1321 82 0.400000 +1321 126 0.400000 +1321 131 0.400000 +1321 182 0.400000 +1321 209 0.400000 +1321 355 0.400000 +1321 408 0.400000 +1321 421 0.400000 +1321 471 0.400000 +1321 562 0.400000 +1321 583 0.400000 +1321 599 0.400000 +1321 620 0.400000 +1321 647 0.400000 +1321 750 0.400000 +1321 758 0.400000 +1321 802 0.400000 +1321 831 0.400000 +1321 846 0.400000 +1321 854 0.400000 +1321 932 0.400000 +1321 970 0.400000 +1321 1001 0.400000 +1321 1025 0.400000 +1321 1041 0.400000 +1321 1069 0.400000 +1321 1133 0.400000 +1321 1154 0.400000 +1321 1163 0.400000 +1321 1175 0.400000 +1321 1322 0.400000 +1321 1350 0.400000 +1321 1369 0.400000 +1321 1450 0.400000 +1321 1496 0.400000 +1321 1554 0.400000 +1321 1571 0.400000 +1321 1671 0.400000 +1321 1688 0.400000 +1321 1709 0.400000 +1321 1727 0.400000 +1321 1759 0.400000 +1321 1809 0.400000 +1321 1858 0.400000 +1321 1871 0.400000 +1321 1956 0.400000 +1321 1971 0.400000 +1321 2054 0.400000 +1321 2104 0.400000 +1321 2133 0.400000 +1321 2171 0.400000 +1321 2199 0.400000 +1321 2292 0.400000 +1321 2316 0.400000 +1321 2420 0.400000 +1321 2477 0.400000 +1321 2557 0.400000 +1321 2580 0.400000 +1321 2587 0.400000 +1321 2633 0.400000 +1321 2671 0.400000 +1321 2675 0.400000 +1321 2682 0.400000 +1321 2811 0.400000 +1321 2955 0.400000 +1321 2997 0.400000 +1321 3096 0.400000 +1321 3170 0.400000 +1321 3195 0.400000 +1322 47 0.400000 +1322 52 0.400000 +1322 114 0.400000 +1322 138 0.400000 +1322 323 0.400000 +1322 433 0.400000 +1322 489 0.400000 +1322 497 0.400000 +1322 524 0.400000 +1322 629 0.400000 +1322 672 0.400000 +1322 766 0.400000 +1322 783 0.400000 +1322 934 0.400000 +1322 994 0.400000 +1322 1034 0.400000 +1322 1044 0.400000 +1322 1057 0.400000 +1322 1139 0.400000 +1322 1203 0.400000 +1322 1232 0.400000 +1322 1238 0.400000 +1322 1262 0.400000 +1322 1310 0.400000 +1322 1370 0.400000 +1322 1475 0.400000 +1322 1482 0.400000 +1322 1491 0.400000 +1322 1632 0.400000 +1322 1701 0.400000 +1322 1711 0.400000 +1322 1720 0.400000 +1322 1754 0.400000 +1322 1805 0.400000 +1322 1843 0.400000 +1322 1851 0.400000 +1322 2011 0.400000 +1322 2068 0.400000 +1322 2120 0.400000 +1322 2122 0.400000 +1322 2148 0.400000 +1322 2241 0.400000 +1322 2252 0.400000 +1322 2390 0.400000 +1322 2461 0.400000 +1322 2498 0.400000 +1322 2535 0.400000 +1322 2536 0.400000 +1322 2542 0.400000 +1322 2605 0.400000 +1322 2667 0.400000 +1322 2793 0.400000 +1322 2838 0.400000 +1322 2864 0.400000 +1322 3074 0.400000 +1322 3079 0.400000 +1322 3137 0.400000 +1322 3160 0.400000 +1322 3193 0.400000 +1323 7 0.400000 +1323 11 0.400000 +1323 19 0.400000 +1323 74 0.400000 +1323 83 0.400000 +1323 84 0.400000 +1323 109 0.400000 +1323 202 0.400000 +1323 258 0.400000 +1323 264 0.400000 +1323 316 0.400000 +1323 370 0.400000 +1323 377 0.400000 +1323 391 0.400000 +1323 393 0.400000 +1323 431 0.400000 +1323 479 0.400000 +1323 625 0.400000 +1323 661 0.400000 +1323 729 0.400000 +1323 793 0.400000 +1323 928 0.400000 +1323 936 0.400000 +1323 980 0.400000 +1323 981 0.400000 +1323 1068 0.400000 +1323 1071 0.400000 +1323 1094 0.400000 +1323 1120 0.400000 +1323 1155 0.400000 +1323 1156 0.400000 +1323 1275 0.400000 +1323 1363 0.400000 +1323 1366 0.400000 +1323 1369 0.400000 +1323 1421 0.400000 +1323 1595 0.400000 +1323 1598 0.400000 +1323 1617 0.400000 +1323 1644 0.400000 +1323 1688 0.400000 +1323 1717 0.400000 +1323 1727 0.400000 +1323 1789 0.400000 +1323 1796 0.400000 +1323 1888 0.400000 +1323 1948 0.400000 +1323 1956 0.400000 +1323 1966 0.400000 +1323 2153 0.400000 +1323 2193 0.400000 +1323 2282 0.400000 +1323 2324 0.400000 +1323 2331 0.400000 +1323 2368 0.400000 +1323 2415 0.400000 +1323 2451 0.400000 +1323 2453 0.400000 +1323 2485 0.400000 +1323 2657 0.400000 +1323 2673 0.400000 +1323 2723 0.400000 +1323 2764 0.400000 +1323 2781 0.400000 +1323 2796 0.400000 +1323 2907 0.400000 +1323 2944 0.400000 +1323 2954 0.400000 +1323 3014 0.400000 +1323 3055 0.400000 +1323 3092 0.400000 +1324 4 0.400000 +1324 16 0.400000 +1324 30 0.400000 +1324 33 0.400000 +1324 52 0.400000 +1324 73 0.400000 +1324 116 0.400000 +1324 141 0.400000 +1324 145 0.400000 +1324 152 0.400000 +1324 227 0.400000 +1324 232 0.400000 +1324 275 0.400000 +1324 342 0.400000 +1324 398 0.400000 +1324 415 0.400000 +1324 494 0.400000 +1324 498 0.400000 +1324 521 0.400000 +1324 533 0.400000 +1324 559 0.400000 +1324 575 0.400000 +1324 589 0.400000 +1324 621 0.400000 +1324 653 0.400000 +1324 741 0.400000 +1324 773 0.400000 +1324 783 0.400000 +1324 801 0.400000 +1324 820 0.400000 +1324 822 0.400000 +1324 883 0.400000 +1324 1068 0.400000 +1324 1096 0.400000 +1324 1177 0.400000 +1324 1221 0.400000 +1324 1250 0.400000 +1324 1312 0.400000 +1324 1384 0.400000 +1324 1444 0.400000 +1324 1455 0.400000 +1324 1573 0.400000 +1324 1603 0.400000 +1324 1676 0.400000 +1324 1724 0.400000 +1324 1762 0.400000 +1324 1766 0.400000 +1324 1784 0.400000 +1324 1790 0.400000 +1324 1811 0.400000 +1324 1820 0.400000 +1324 1831 0.400000 +1324 1856 0.400000 +1324 1896 0.400000 +1324 1952 0.400000 +1324 1960 0.400000 +1324 2062 0.400000 +1324 2143 0.400000 +1324 2203 0.400000 +1324 2271 0.400000 +1324 2320 0.400000 +1324 2342 0.400000 +1324 2344 0.400000 +1324 2372 0.400000 +1324 2472 0.400000 +1324 2485 0.400000 +1324 2617 0.400000 +1324 2640 0.400000 +1324 2654 0.400000 +1324 2693 0.400000 +1324 2754 0.400000 +1324 2964 0.400000 +1324 2986 0.400000 +1324 3024 0.400000 +1324 3122 0.400000 +1324 3149 0.400000 +1324 3156 0.400000 +1325 26 0.400000 +1325 27 0.400000 +1325 97 0.400000 +1325 119 0.400000 +1325 161 0.400000 +1325 289 0.400000 +1325 294 0.400000 +1325 380 0.400000 +1325 413 0.400000 +1325 458 0.400000 +1325 482 0.400000 +1325 529 0.400000 +1325 533 0.400000 +1325 655 0.400000 +1325 791 0.400000 +1325 816 0.400000 +1325 835 0.400000 +1325 866 0.400000 +1325 918 0.400000 +1325 922 0.400000 +1325 983 0.400000 +1325 1009 0.400000 +1325 1192 0.400000 +1325 1281 0.400000 +1325 1300 0.400000 +1325 1309 0.400000 +1325 1332 0.400000 +1325 1448 0.400000 +1325 1468 0.400000 +1325 1486 0.400000 +1325 1575 0.400000 +1325 1751 0.400000 +1325 1796 0.400000 +1325 1949 0.400000 +1325 1988 0.400000 +1325 2001 0.400000 +1325 2116 0.400000 +1325 2162 0.400000 +1325 2197 0.400000 +1325 2246 0.400000 +1325 2275 0.400000 +1325 2285 0.400000 +1325 2310 0.400000 +1325 2360 0.400000 +1325 2366 0.400000 +1325 2367 0.400000 +1325 2481 0.400000 +1325 2580 0.400000 +1325 2589 0.400000 +1325 2651 0.400000 +1325 2763 0.400000 +1325 2765 0.400000 +1325 2874 0.400000 +1325 2885 0.400000 +1325 2903 0.400000 +1325 2920 0.400000 +1325 2932 0.400000 +1325 2937 0.400000 +1325 2989 0.400000 +1325 3101 0.400000 +1325 3116 0.400000 +1325 3127 0.400000 +1325 3146 0.400000 +1325 3159 0.400000 +1326 64 0.400000 +1326 66 0.400000 +1326 167 0.400000 +1326 187 0.400000 +1326 241 0.400000 +1326 284 0.400000 +1326 342 0.400000 +1326 363 0.400000 +1326 403 0.400000 +1326 490 0.400000 +1326 663 0.400000 +1326 670 0.400000 +1326 712 0.400000 +1326 803 0.400000 +1326 871 0.400000 +1326 973 0.400000 +1326 1067 0.400000 +1326 1125 0.400000 +1326 1149 0.400000 +1326 1236 0.400000 +1326 1276 0.400000 +1326 1322 0.400000 +1326 1374 0.400000 +1326 1538 0.400000 +1326 1728 0.400000 +1326 1813 0.400000 +1326 1845 0.400000 +1326 1868 0.400000 +1326 1993 0.400000 +1326 2200 0.400000 +1326 2271 0.400000 +1326 2293 0.400000 +1326 2297 0.400000 +1326 2314 0.400000 +1326 2366 0.400000 +1326 2396 0.400000 +1326 2535 0.400000 +1326 2638 0.400000 +1326 2879 0.400000 +1326 2888 0.400000 +1326 2957 0.400000 +1326 2972 0.400000 +1326 2974 0.400000 +1326 2994 0.400000 +1326 3017 0.400000 +1326 3048 0.400000 +1326 3073 0.400000 +1326 3098 0.400000 +1326 3104 0.400000 +1327 62 0.400000 +1327 103 0.400000 +1327 151 0.400000 +1327 179 0.400000 +1327 204 0.400000 +1327 421 0.400000 +1327 443 0.400000 +1327 610 0.400000 +1327 629 0.400000 +1327 689 0.400000 +1327 704 0.400000 +1327 744 0.400000 +1327 771 0.400000 +1327 834 0.400000 +1327 871 0.400000 +1327 888 0.400000 +1327 893 0.400000 +1327 1046 0.400000 +1327 1072 0.400000 +1327 1087 0.400000 +1327 1103 0.400000 +1327 1187 0.400000 +1327 1202 0.400000 +1327 1221 0.400000 +1327 1251 0.400000 +1327 1370 0.400000 +1327 1386 0.400000 +1327 1441 0.400000 +1327 1477 0.400000 +1327 1506 0.400000 +1327 1517 0.400000 +1327 1565 0.400000 +1327 1573 0.400000 +1327 1659 0.400000 +1327 1705 0.400000 +1327 1739 0.400000 +1327 1755 0.400000 +1327 1900 0.400000 +1327 1913 0.400000 +1327 1995 0.400000 +1327 2018 0.400000 +1327 2087 0.400000 +1327 2093 0.400000 +1327 2108 0.400000 +1327 2236 0.400000 +1327 2273 0.400000 +1327 2286 0.400000 +1327 2289 0.400000 +1327 2310 0.400000 +1327 2329 0.400000 +1327 2368 0.400000 +1327 2395 0.400000 +1327 2413 0.400000 +1327 2426 0.400000 +1327 2461 0.400000 +1327 2557 0.400000 +1327 2610 0.400000 +1327 2635 0.400000 +1327 2660 0.400000 +1327 2704 0.400000 +1327 2728 0.400000 +1327 2800 0.400000 +1327 2923 0.400000 +1327 2930 0.400000 +1327 2978 0.400000 +1327 3033 0.400000 +1327 3061 0.400000 +1327 3116 0.400000 +1328 100 0.400000 +1328 155 0.400000 +1328 243 0.400000 +1328 433 0.400000 +1328 489 0.400000 +1328 510 0.400000 +1328 579 0.400000 +1328 646 0.400000 +1328 667 0.400000 +1328 712 0.400000 +1328 783 0.400000 +1328 794 0.400000 +1328 833 0.400000 +1328 871 0.400000 +1328 882 0.400000 +1328 900 0.400000 +1328 1028 0.400000 +1328 1130 0.400000 +1328 1386 0.400000 +1328 1402 0.400000 +1328 1403 0.400000 +1328 1412 0.400000 +1328 1505 0.400000 +1328 1530 0.400000 +1328 1533 0.400000 +1328 1554 0.400000 +1328 1580 0.400000 +1328 1585 0.400000 +1328 1592 0.400000 +1328 1624 0.400000 +1328 1720 0.400000 +1328 1729 0.400000 +1328 1919 0.400000 +1328 1931 0.400000 +1328 1943 0.400000 +1328 1972 0.400000 +1328 2055 0.400000 +1328 2087 0.400000 +1328 2198 0.400000 +1328 2226 0.400000 +1328 2232 0.400000 +1328 2275 0.400000 +1328 2325 0.400000 +1328 2344 0.400000 +1328 2508 0.400000 +1328 2592 0.400000 +1328 2601 0.400000 +1328 2642 0.400000 +1328 2721 0.400000 +1328 2761 0.400000 +1328 2800 0.400000 +1328 2822 0.400000 +1328 2839 0.400000 +1328 2859 0.400000 +1328 2883 0.400000 +1328 2898 0.400000 +1328 2899 0.400000 +1328 3059 0.400000 +1328 3125 0.400000 +1328 3126 0.400000 +1328 3128 0.400000 +1329 7 0.400000 +1329 111 0.400000 +1329 114 0.400000 +1329 258 0.400000 +1329 280 0.400000 +1329 292 0.400000 +1329 377 0.400000 +1329 431 0.400000 +1329 433 0.400000 +1329 461 0.400000 +1329 466 0.400000 +1329 475 0.400000 +1329 613 0.400000 +1329 616 0.400000 +1329 638 0.400000 +1329 783 0.400000 +1329 843 0.400000 +1329 889 0.400000 +1329 895 0.400000 +1329 929 0.400000 +1329 932 0.400000 +1329 933 0.400000 +1329 1090 0.400000 +1329 1113 0.400000 +1329 1138 0.400000 +1329 1329 0.400000 +1329 1376 0.400000 +1329 1414 0.400000 +1329 1482 0.400000 +1329 1499 0.400000 +1329 1516 0.400000 +1329 1524 0.400000 +1329 1533 0.400000 +1329 1587 0.400000 +1329 1780 0.400000 +1329 1783 0.400000 +1329 1786 0.400000 +1329 1799 0.400000 +1329 1836 0.400000 +1329 1867 0.400000 +1329 1923 0.400000 +1329 1930 0.400000 +1329 1934 0.400000 +1329 1953 0.400000 +1329 2123 0.400000 +1329 2136 0.400000 +1329 2228 0.400000 +1329 2280 0.400000 +1329 2467 0.400000 +1329 2540 0.400000 +1329 2551 0.400000 +1329 2612 0.400000 +1329 2649 0.400000 +1329 2676 0.400000 +1329 2734 0.400000 +1329 2801 0.400000 +1329 2807 0.400000 +1329 2832 0.400000 +1329 2863 0.400000 +1329 2948 0.400000 +1329 3140 0.400000 +1329 3173 0.400000 +1330 43 0.400000 +1330 116 0.400000 +1330 133 0.400000 +1330 143 0.400000 +1330 191 0.400000 +1330 257 0.400000 +1330 318 0.400000 +1330 325 0.400000 +1330 399 0.400000 +1330 410 0.400000 +1330 487 0.400000 +1330 494 0.400000 +1330 502 0.400000 +1330 556 0.400000 +1330 586 0.400000 +1330 617 0.400000 +1330 637 0.400000 +1330 691 0.400000 +1330 748 0.400000 +1330 758 0.400000 +1330 788 0.400000 +1330 870 0.400000 +1330 922 0.400000 +1330 927 0.400000 +1330 949 0.400000 +1330 996 0.400000 +1330 1008 0.400000 +1330 1031 0.400000 +1330 1034 0.400000 +1330 1083 0.400000 +1330 1136 0.400000 +1330 1176 0.400000 +1330 1273 0.400000 +1330 1294 0.400000 +1330 1428 0.400000 +1330 1493 0.400000 +1330 1500 0.400000 +1330 1505 0.400000 +1330 1515 0.400000 +1330 1711 0.400000 +1330 1719 0.400000 +1330 1830 0.400000 +1330 1899 0.400000 +1330 2014 0.400000 +1330 2063 0.400000 +1330 2187 0.400000 +1330 2205 0.400000 +1330 2240 0.400000 +1330 2242 0.400000 +1330 2248 0.400000 +1330 2251 0.400000 +1330 2336 0.400000 +1330 2349 0.400000 +1330 2370 0.400000 +1330 2419 0.400000 +1330 2500 0.400000 +1330 2588 0.400000 +1330 2601 0.400000 +1330 2631 0.400000 +1330 2663 0.400000 +1330 2693 0.400000 +1330 2723 0.400000 +1330 2746 0.400000 +1330 2778 0.400000 +1330 2799 0.400000 +1330 2870 0.400000 +1330 2925 0.400000 +1330 3039 0.400000 +1330 3097 0.400000 +1330 3113 0.400000 +1330 3165 0.400000 +1331 144 0.400000 +1331 343 0.400000 +1331 386 0.400000 +1331 421 0.400000 +1331 501 0.400000 +1331 535 0.400000 +1331 572 0.400000 +1331 623 0.400000 +1331 624 0.400000 +1331 667 0.400000 +1331 714 0.400000 +1331 824 0.400000 +1331 831 0.400000 +1331 906 0.400000 +1331 1013 0.400000 +1331 1061 0.400000 +1331 1141 0.400000 +1331 1158 0.400000 +1331 1206 0.400000 +1331 1216 0.400000 +1331 1301 0.400000 +1331 1308 0.400000 +1331 1452 0.400000 +1331 1488 0.400000 +1331 1489 0.400000 +1331 1526 0.400000 +1331 1533 0.400000 +1331 1564 0.400000 +1331 1628 0.400000 +1331 1631 0.400000 +1331 1634 0.400000 +1331 1648 0.400000 +1331 1716 0.400000 +1331 1723 0.400000 +1331 1815 0.400000 +1331 1927 0.400000 +1331 1950 0.400000 +1331 2059 0.400000 +1331 2068 0.400000 +1331 2081 0.400000 +1331 2133 0.400000 +1331 2332 0.400000 +1331 2458 0.400000 +1331 2508 0.400000 +1331 2521 0.400000 +1331 2527 0.400000 +1331 2528 0.400000 +1331 2557 0.400000 +1331 2570 0.400000 +1331 2580 0.400000 +1331 2600 0.400000 +1331 2614 0.400000 +1331 2640 0.400000 +1331 2654 0.400000 +1331 2702 0.400000 +1331 2710 0.400000 +1331 2714 0.400000 +1331 2749 0.400000 +1331 2786 0.400000 +1331 2801 0.400000 +1331 2835 0.400000 +1331 2862 0.400000 +1331 2904 0.400000 +1331 2916 0.400000 +1331 3013 0.400000 +1331 3044 0.400000 +1331 3191 0.400000 +1332 12 0.400000 +1332 21 0.400000 +1332 44 0.400000 +1332 58 0.400000 +1332 199 0.400000 +1332 291 0.400000 +1332 396 0.400000 +1332 650 0.400000 +1332 671 0.400000 +1332 680 0.400000 +1332 795 0.400000 +1332 836 0.400000 +1332 897 0.400000 +1332 1019 0.400000 +1332 1089 0.400000 +1332 1121 0.400000 +1332 1135 0.400000 +1332 1173 0.400000 +1332 1263 0.400000 +1332 1274 0.400000 +1332 1367 0.400000 +1332 1383 0.400000 +1332 1493 0.400000 +1332 1625 0.400000 +1332 1652 0.400000 +1332 1679 0.400000 +1332 1690 0.400000 +1332 1696 0.400000 +1332 1770 0.400000 +1332 1783 0.400000 +1332 1836 0.400000 +1332 1881 0.400000 +1332 1894 0.400000 +1332 1933 0.400000 +1332 1951 0.400000 +1332 2047 0.400000 +1332 2048 0.400000 +1332 2108 0.400000 +1332 2190 0.400000 +1332 2216 0.400000 +1332 2259 0.400000 +1332 2308 0.400000 +1332 2309 0.400000 +1332 2334 0.400000 +1332 2339 0.400000 +1332 2341 0.400000 +1332 2358 0.400000 +1332 2363 0.400000 +1332 2394 0.400000 +1332 2407 0.400000 +1332 2486 0.400000 +1332 2580 0.400000 +1332 2661 0.400000 +1332 2690 0.400000 +1332 2744 0.400000 +1332 2797 0.400000 +1332 2798 0.400000 +1332 2859 0.400000 +1332 2885 0.400000 +1332 2937 0.400000 +1332 3098 0.400000 +1333 37 0.400000 +1333 60 0.400000 +1333 230 0.400000 +1333 239 0.400000 +1333 261 0.400000 +1333 277 0.400000 +1333 297 0.400000 +1333 429 0.400000 +1333 475 0.400000 +1333 503 0.400000 +1333 509 0.400000 +1333 565 0.400000 +1333 585 0.400000 +1333 642 0.400000 +1333 651 0.400000 +1333 746 0.400000 +1333 781 0.400000 +1333 908 0.400000 +1333 911 0.400000 +1333 947 0.400000 +1333 983 0.400000 +1333 1055 0.400000 +1333 1147 0.400000 +1333 1178 0.400000 +1333 1263 0.400000 +1333 1265 0.400000 +1333 1290 0.400000 +1333 1341 0.400000 +1333 1376 0.400000 +1333 1417 0.400000 +1333 1459 0.400000 +1333 1611 0.400000 +1333 1740 0.400000 +1333 1792 0.400000 +1333 1906 0.400000 +1333 1966 0.400000 +1333 2121 0.400000 +1333 2141 0.400000 +1333 2250 0.400000 +1333 2259 0.400000 +1333 2260 0.400000 +1333 2268 0.400000 +1333 2306 0.400000 +1333 2354 0.400000 +1333 2366 0.400000 +1333 2417 0.400000 +1333 2481 0.400000 +1333 2487 0.400000 +1333 2576 0.400000 +1333 2611 0.400000 +1333 2621 0.400000 +1333 2683 0.400000 +1333 2697 0.400000 +1333 2729 0.400000 +1333 2780 0.400000 +1333 2861 0.400000 +1333 2913 0.400000 +1333 3021 0.400000 +1333 3088 0.400000 +1333 3095 0.400000 +1333 3118 0.400000 +1333 3145 0.400000 +1333 3189 0.400000 +1334 21 0.400000 +1334 35 0.400000 +1334 170 0.400000 +1334 415 0.400000 +1334 447 0.400000 +1334 485 0.400000 +1334 569 0.400000 +1334 799 0.400000 +1334 875 0.400000 +1334 888 0.400000 +1334 900 0.400000 +1334 932 0.400000 +1334 965 0.400000 +1334 1026 0.400000 +1334 1199 0.400000 +1334 1309 0.400000 +1334 1319 0.400000 +1334 1336 0.400000 +1334 1365 0.400000 +1334 1387 0.400000 +1334 1422 0.400000 +1334 1436 0.400000 +1334 1533 0.400000 +1334 1543 0.400000 +1334 1590 0.400000 +1334 1603 0.400000 +1334 1632 0.400000 +1334 1774 0.400000 +1334 1795 0.400000 +1334 1925 0.400000 +1334 1978 0.400000 +1334 1987 0.400000 +1334 2050 0.400000 +1334 2066 0.400000 +1334 2071 0.400000 +1334 2077 0.400000 +1334 2146 0.400000 +1334 2200 0.400000 +1334 2209 0.400000 +1334 2306 0.400000 +1334 2326 0.400000 +1334 2386 0.400000 +1334 2396 0.400000 +1334 2455 0.400000 +1334 2459 0.400000 +1334 2565 0.400000 +1334 2568 0.400000 +1334 2590 0.400000 +1334 2644 0.400000 +1334 2651 0.400000 +1334 2682 0.400000 +1334 2743 0.400000 +1334 2754 0.400000 +1334 2773 0.400000 +1334 2783 0.400000 +1334 2806 0.400000 +1334 2855 0.400000 +1334 2993 0.400000 +1334 3048 0.400000 +1334 3102 0.400000 +1334 3119 0.400000 +1334 3138 0.400000 +1335 132 0.400000 +1335 169 0.400000 +1335 262 0.400000 +1335 283 0.400000 +1335 319 0.400000 +1335 328 0.400000 +1335 330 0.400000 +1335 460 0.400000 +1335 651 0.400000 +1335 665 0.400000 +1335 755 0.400000 +1335 772 0.400000 +1335 870 0.400000 +1335 919 0.400000 +1335 985 0.400000 +1335 990 0.400000 +1335 995 0.400000 +1335 1084 0.400000 +1335 1123 0.400000 +1335 1151 0.400000 +1335 1158 0.400000 +1335 1207 0.400000 +1335 1320 0.400000 +1335 1326 0.400000 +1335 1348 0.400000 +1335 1350 0.400000 +1335 1407 0.400000 +1335 1443 0.400000 +1335 1581 0.400000 +1335 1737 0.400000 +1335 1785 0.400000 +1335 1810 0.400000 +1335 1964 0.400000 +1335 1990 0.400000 +1335 2182 0.400000 +1335 2214 0.400000 +1335 2218 0.400000 +1335 2235 0.400000 +1335 2298 0.400000 +1335 2342 0.400000 +1335 2518 0.400000 +1335 2607 0.400000 +1335 2663 0.400000 +1335 2720 0.400000 +1335 2820 0.400000 +1335 2835 0.400000 +1335 2854 0.400000 +1335 2863 0.400000 +1335 2878 0.400000 +1335 2902 0.400000 +1335 2917 0.400000 +1335 2960 0.400000 +1335 2966 0.400000 +1335 2968 0.400000 +1335 2987 0.400000 +1335 2988 0.400000 +1335 3130 0.400000 +1335 3148 0.400000 +1335 3187 0.400000 +1336 9 0.400000 +1336 31 0.400000 +1336 50 0.400000 +1336 95 0.400000 +1336 130 0.400000 +1336 164 0.400000 +1336 211 0.400000 +1336 302 0.400000 +1336 393 0.400000 +1336 453 0.400000 +1336 454 0.400000 +1336 471 0.400000 +1336 649 0.400000 +1336 825 0.400000 +1336 843 0.400000 +1336 848 0.400000 +1336 910 0.400000 +1336 955 0.400000 +1336 977 0.400000 +1336 997 0.400000 +1336 1061 0.400000 +1336 1232 0.400000 +1336 1282 0.400000 +1336 1306 0.400000 +1336 1370 0.400000 +1336 1403 0.400000 +1336 1440 0.400000 +1336 1462 0.400000 +1336 1497 0.400000 +1336 1531 0.400000 +1336 1562 0.400000 +1336 1586 0.400000 +1336 1604 0.400000 +1336 1612 0.400000 +1336 1680 0.400000 +1336 1697 0.400000 +1336 1707 0.400000 +1336 1767 0.400000 +1336 1779 0.400000 +1336 1815 0.400000 +1336 1848 0.400000 +1336 1884 0.400000 +1336 1922 0.400000 +1336 2009 0.400000 +1336 2093 0.400000 +1336 2300 0.400000 +1336 2315 0.400000 +1336 2330 0.400000 +1336 2373 0.400000 +1336 2383 0.400000 +1336 2418 0.400000 +1336 2428 0.400000 +1336 2511 0.400000 +1336 2519 0.400000 +1336 2533 0.400000 +1336 2575 0.400000 +1336 2605 0.400000 +1336 2637 0.400000 +1336 2638 0.400000 +1336 2663 0.400000 +1336 2711 0.400000 +1336 2979 0.400000 +1336 3097 0.400000 +1336 3101 0.400000 +1336 3193 0.400000 +1337 3 0.400000 +1337 39 0.400000 +1337 117 0.400000 +1337 362 0.400000 +1337 363 0.400000 +1337 386 0.400000 +1337 522 0.400000 +1337 562 0.400000 +1337 605 0.400000 +1337 640 0.400000 +1337 659 0.400000 +1337 688 0.400000 +1337 930 0.400000 +1337 976 0.400000 +1337 985 0.400000 +1337 986 0.400000 +1337 992 0.400000 +1337 1047 0.400000 +1337 1085 0.400000 +1337 1099 0.400000 +1337 1107 0.400000 +1337 1160 0.400000 +1337 1246 0.400000 +1337 1251 0.400000 +1337 1266 0.400000 +1337 1358 0.400000 +1337 1450 0.400000 +1337 1469 0.400000 +1337 1472 0.400000 +1337 1604 0.400000 +1337 1615 0.400000 +1337 1673 0.400000 +1337 1751 0.400000 +1337 1828 0.400000 +1337 1880 0.400000 +1337 1882 0.400000 +1337 1896 0.400000 +1337 1945 0.400000 +1337 1957 0.400000 +1337 2045 0.400000 +1337 2221 0.400000 +1337 2229 0.400000 +1337 2273 0.400000 +1337 2309 0.400000 +1337 2350 0.400000 +1337 2422 0.400000 +1337 2468 0.400000 +1337 2475 0.400000 +1337 2499 0.400000 +1337 2503 0.400000 +1337 2597 0.400000 +1337 2599 0.400000 +1337 2615 0.400000 +1337 2651 0.400000 +1337 2713 0.400000 +1337 2730 0.400000 +1337 2765 0.400000 +1337 2774 0.400000 +1337 2808 0.400000 +1337 2826 0.400000 +1337 2846 0.400000 +1337 2862 0.400000 +1337 2927 0.400000 +1337 2962 0.400000 +1337 3045 0.400000 +1337 3050 0.400000 +1337 3055 0.400000 +1337 3121 0.400000 +1337 3148 0.400000 +1337 3178 0.400000 +1337 3181 0.400000 +1338 11 0.400000 +1338 45 0.400000 +1338 49 0.400000 +1338 73 0.400000 +1338 90 0.400000 +1338 107 0.400000 +1338 132 0.400000 +1338 168 0.400000 +1338 174 0.400000 +1338 211 0.400000 +1338 286 0.400000 +1338 303 0.400000 +1338 315 0.400000 +1338 338 0.400000 +1338 497 0.400000 +1338 516 0.400000 +1338 521 0.400000 +1338 541 0.400000 +1338 581 0.400000 +1338 654 0.400000 +1338 677 0.400000 +1338 712 0.400000 +1338 737 0.400000 +1338 771 0.400000 +1338 779 0.400000 +1338 877 0.400000 +1338 953 0.400000 +1338 979 0.400000 +1338 1023 0.400000 +1338 1038 0.400000 +1338 1172 0.400000 +1338 1178 0.400000 +1338 1224 0.400000 +1338 1288 0.400000 +1338 1683 0.400000 +1338 1870 0.400000 +1338 1875 0.400000 +1338 1891 0.400000 +1338 1957 0.400000 +1338 2016 0.400000 +1338 2100 0.400000 +1338 2150 0.400000 +1338 2261 0.400000 +1338 2357 0.400000 +1338 2401 0.400000 +1338 2513 0.400000 +1338 2566 0.400000 +1338 2569 0.400000 +1338 2592 0.400000 +1338 2599 0.400000 +1338 2612 0.400000 +1338 2625 0.400000 +1338 2663 0.400000 +1338 2691 0.400000 +1338 2860 0.400000 +1338 3097 0.400000 +1338 3106 0.400000 +1339 16 0.400000 +1339 47 0.400000 +1339 91 0.400000 +1339 96 0.400000 +1339 193 0.400000 +1339 207 0.400000 +1339 214 0.400000 +1339 245 0.400000 +1339 259 0.400000 +1339 287 0.400000 +1339 306 0.400000 +1339 339 0.400000 +1339 481 0.400000 +1339 559 0.400000 +1339 569 0.400000 +1339 581 0.400000 +1339 600 0.400000 +1339 615 0.400000 +1339 635 0.400000 +1339 646 0.400000 +1339 719 0.400000 +1339 772 0.400000 +1339 852 0.400000 +1339 912 0.400000 +1339 914 0.400000 +1339 1027 0.400000 +1339 1048 0.400000 +1339 1058 0.400000 +1339 1093 0.400000 +1339 1109 0.400000 +1339 1292 0.400000 +1339 1328 0.400000 +1339 1339 0.400000 +1339 1621 0.400000 +1339 1644 0.400000 +1339 1660 0.400000 +1339 1758 0.400000 +1339 1805 0.400000 +1339 1811 0.400000 +1339 1833 0.400000 +1339 1836 0.400000 +1339 1962 0.400000 +1339 2133 0.400000 +1339 2172 0.400000 +1339 2178 0.400000 +1339 2232 0.400000 +1339 2238 0.400000 +1339 2363 0.400000 +1339 2401 0.400000 +1339 2414 0.400000 +1339 2460 0.400000 +1339 2573 0.400000 +1339 2714 0.400000 +1339 2736 0.400000 +1339 2737 0.400000 +1339 2822 0.400000 +1339 2843 0.400000 +1339 2845 0.400000 +1339 2956 0.400000 +1339 2959 0.400000 +1339 3062 0.400000 +1339 3135 0.400000 +1340 1 0.400000 +1340 88 0.400000 +1340 93 0.400000 +1340 237 0.400000 +1340 285 0.400000 +1340 287 0.400000 +1340 374 0.400000 +1340 393 0.400000 +1340 421 0.400000 +1340 625 0.400000 +1340 656 0.400000 +1340 674 0.400000 +1340 722 0.400000 +1340 740 0.400000 +1340 755 0.400000 +1340 809 0.400000 +1340 823 0.400000 +1340 835 0.400000 +1340 849 0.400000 +1340 868 0.400000 +1340 905 0.400000 +1340 906 0.400000 +1340 913 0.400000 +1340 994 0.400000 +1340 1087 0.400000 +1340 1091 0.400000 +1340 1107 0.400000 +1340 1198 0.400000 +1340 1207 0.400000 +1340 1300 0.400000 +1340 1364 0.400000 +1340 1376 0.400000 +1340 1410 0.400000 +1340 1444 0.400000 +1340 1492 0.400000 +1340 1494 0.400000 +1340 1532 0.400000 +1340 1613 0.400000 +1340 1682 0.400000 +1340 1777 0.400000 +1340 1850 0.400000 +1340 1860 0.400000 +1340 1876 0.400000 +1340 1880 0.400000 +1340 2053 0.400000 +1340 2063 0.400000 +1340 2101 0.400000 +1340 2131 0.400000 +1340 2213 0.400000 +1340 2233 0.400000 +1340 2255 0.400000 +1340 2338 0.400000 +1340 2350 0.400000 +1340 2371 0.400000 +1340 2415 0.400000 +1340 2576 0.400000 +1340 2577 0.400000 +1340 2675 0.400000 +1340 2750 0.400000 +1340 2823 0.400000 +1340 2829 0.400000 +1340 2900 0.400000 +1340 2961 0.400000 +1340 2997 0.400000 +1340 3012 0.400000 +1340 3023 0.400000 +1340 3069 0.400000 +1340 3076 0.400000 +1340 3168 0.400000 +1341 14 0.400000 +1341 39 0.400000 +1341 72 0.400000 +1341 163 0.400000 +1341 164 0.400000 +1341 223 0.400000 +1341 281 0.400000 +1341 360 0.400000 +1341 373 0.400000 +1341 423 0.400000 +1341 425 0.400000 +1341 433 0.400000 +1341 441 0.400000 +1341 443 0.400000 +1341 509 0.400000 +1341 587 0.400000 +1341 710 0.400000 +1341 795 0.400000 +1341 827 0.400000 +1341 863 0.400000 +1341 993 0.400000 +1341 1002 0.400000 +1341 1099 0.400000 +1341 1210 0.400000 +1341 1301 0.400000 +1341 1302 0.400000 +1341 1316 0.400000 +1341 1367 0.400000 +1341 1392 0.400000 +1341 1402 0.400000 +1341 1413 0.400000 +1341 1513 0.400000 +1341 1528 0.400000 +1341 1535 0.400000 +1341 1604 0.400000 +1341 1638 0.400000 +1341 1651 0.400000 +1341 1696 0.400000 +1341 1711 0.400000 +1341 1858 0.400000 +1341 1990 0.400000 +1341 2117 0.400000 +1341 2131 0.400000 +1341 2159 0.400000 +1341 2177 0.400000 +1341 2190 0.400000 +1341 2297 0.400000 +1341 2312 0.400000 +1341 2338 0.400000 +1341 2339 0.400000 +1341 2348 0.400000 +1341 2377 0.400000 +1341 2398 0.400000 +1341 2418 0.400000 +1341 2440 0.400000 +1341 2499 0.400000 +1341 2553 0.400000 +1341 2558 0.400000 +1341 2610 0.400000 +1341 2614 0.400000 +1341 2693 0.400000 +1341 2743 0.400000 +1341 2835 0.400000 +1341 2901 0.400000 +1341 2911 0.400000 +1341 3017 0.400000 +1341 3050 0.400000 +1341 3083 0.400000 +1341 3121 0.400000 +1341 3150 0.400000 +1342 120 0.400000 +1342 184 0.400000 +1342 192 0.400000 +1342 198 0.400000 +1342 262 0.400000 +1342 301 0.400000 +1342 427 0.400000 +1342 428 0.400000 +1342 459 0.400000 +1342 577 0.400000 +1342 659 0.400000 +1342 720 0.400000 +1342 745 0.400000 +1342 815 0.400000 +1342 844 0.400000 +1342 853 0.400000 +1342 858 0.400000 +1342 936 0.400000 +1342 1082 0.400000 +1342 1102 0.400000 +1342 1249 0.400000 +1342 1251 0.400000 +1342 1448 0.400000 +1342 1572 0.400000 +1342 1661 0.400000 +1342 1684 0.400000 +1342 1699 0.400000 +1342 1700 0.400000 +1342 1759 0.400000 +1342 1800 0.400000 +1342 1819 0.400000 +1342 1858 0.400000 +1342 1936 0.400000 +1342 1955 0.400000 +1342 1986 0.400000 +1342 1995 0.400000 +1342 2007 0.400000 +1342 2012 0.400000 +1342 2053 0.400000 +1342 2103 0.400000 +1342 2163 0.400000 +1342 2179 0.400000 +1342 2316 0.400000 +1342 2341 0.400000 +1342 2371 0.400000 +1342 2419 0.400000 +1342 2443 0.400000 +1342 2530 0.400000 +1342 2576 0.400000 +1342 2671 0.400000 +1342 2692 0.400000 +1342 2709 0.400000 +1342 2739 0.400000 +1342 2806 0.400000 +1342 2947 0.400000 +1342 2969 0.400000 +1342 3026 0.400000 +1342 3136 0.400000 +1342 3197 0.400000 +1343 16 0.400000 +1343 34 0.400000 +1343 53 0.400000 +1343 58 0.400000 +1343 93 0.400000 +1343 97 0.400000 +1343 157 0.400000 +1343 209 0.400000 +1343 249 0.400000 +1343 341 0.400000 +1343 353 0.400000 +1343 404 0.400000 +1343 495 0.400000 +1343 513 0.400000 +1343 624 0.400000 +1343 647 0.400000 +1343 695 0.400000 +1343 698 0.400000 +1343 735 0.400000 +1343 782 0.400000 +1343 876 0.400000 +1343 920 0.400000 +1343 973 0.400000 +1343 1020 0.400000 +1343 1021 0.400000 +1343 1063 0.400000 +1343 1079 0.400000 +1343 1112 0.400000 +1343 1142 0.400000 +1343 1188 0.400000 +1343 1196 0.400000 +1343 1225 0.400000 +1343 1226 0.400000 +1343 1354 0.400000 +1343 1412 0.400000 +1343 1481 0.400000 +1343 1563 0.400000 +1343 1799 0.400000 +1343 1829 0.400000 +1343 1876 0.400000 +1343 1906 0.400000 +1343 1914 0.400000 +1343 1941 0.400000 +1343 2028 0.400000 +1343 2048 0.400000 +1343 2126 0.400000 +1343 2134 0.400000 +1343 2142 0.400000 +1343 2163 0.400000 +1343 2235 0.400000 +1343 2378 0.400000 +1343 2489 0.400000 +1343 2573 0.400000 +1343 2690 0.400000 +1343 2721 0.400000 +1343 2781 0.400000 +1343 2811 0.400000 +1343 2815 0.400000 +1343 2944 0.400000 +1343 2957 0.400000 +1343 3042 0.400000 +1343 3100 0.400000 +1343 3114 0.400000 +1343 3131 0.400000 +1343 3170 0.400000 +1344 23 0.400000 +1344 52 0.400000 +1344 94 0.400000 +1344 95 0.400000 +1344 105 0.400000 +1344 147 0.400000 +1344 162 0.400000 +1344 176 0.400000 +1344 180 0.400000 +1344 224 0.400000 +1344 288 0.400000 +1344 297 0.400000 +1344 359 0.400000 +1344 415 0.400000 +1344 430 0.400000 +1344 555 0.400000 +1344 626 0.400000 +1344 651 0.400000 +1344 663 0.400000 +1344 671 0.400000 +1344 683 0.400000 +1344 689 0.400000 +1344 749 0.400000 +1344 757 0.400000 +1344 870 0.400000 +1344 894 0.400000 +1344 914 0.400000 +1344 915 0.400000 +1344 941 0.400000 +1344 1009 0.400000 +1344 1039 0.400000 +1344 1082 0.400000 +1344 1140 0.400000 +1344 1169 0.400000 +1344 1268 0.400000 +1344 1349 0.400000 +1344 1354 0.400000 +1344 1397 0.400000 +1344 1444 0.400000 +1344 1470 0.400000 +1344 1596 0.400000 +1344 1617 0.400000 +1344 1627 0.400000 +1344 1965 0.400000 +1344 2019 0.400000 +1344 2065 0.400000 +1344 2149 0.400000 +1344 2277 0.400000 +1344 2288 0.400000 +1344 2468 0.400000 +1344 2477 0.400000 +1344 2569 0.400000 +1344 2697 0.400000 +1344 2706 0.400000 +1344 2710 0.400000 +1344 2791 0.400000 +1344 2800 0.400000 +1344 2829 0.400000 +1344 2852 0.400000 +1344 2868 0.400000 +1344 2919 0.400000 +1344 2922 0.400000 +1344 3037 0.400000 +1344 3071 0.400000 +1344 3108 0.400000 +1344 3130 0.400000 +1344 3157 0.400000 +1345 36 0.400000 +1345 49 0.400000 +1345 55 0.400000 +1345 183 0.400000 +1345 229 0.400000 +1345 291 0.400000 +1345 411 0.400000 +1345 416 0.400000 +1345 475 0.400000 +1345 495 0.400000 +1345 540 0.400000 +1345 665 0.400000 +1345 744 0.400000 +1345 818 0.400000 +1345 904 0.400000 +1345 920 0.400000 +1345 965 0.400000 +1345 970 0.400000 +1345 1027 0.400000 +1345 1077 0.400000 +1345 1113 0.400000 +1345 1235 0.400000 +1345 1298 0.400000 +1345 1325 0.400000 +1345 1417 0.400000 +1345 1441 0.400000 +1345 1495 0.400000 +1345 1538 0.400000 +1345 1742 0.400000 +1345 1758 0.400000 +1345 1798 0.400000 +1345 1834 0.400000 +1345 1895 0.400000 +1345 1919 0.400000 +1345 1922 0.400000 +1345 2127 0.400000 +1345 2149 0.400000 +1345 2204 0.400000 +1345 2206 0.400000 +1345 2351 0.400000 +1345 2368 0.400000 +1345 2431 0.400000 +1345 2490 0.400000 +1345 2577 0.400000 +1345 2579 0.400000 +1345 2601 0.400000 +1345 2602 0.400000 +1345 2611 0.400000 +1345 2680 0.400000 +1345 2712 0.400000 +1345 2756 0.400000 +1345 2794 0.400000 +1345 2878 0.400000 +1345 2973 0.400000 +1345 3026 0.400000 +1345 3072 0.400000 +1345 3073 0.400000 +1345 3087 0.400000 +1345 3090 0.400000 +1345 3197 0.400000 +1346 10 0.400000 +1346 89 0.400000 +1346 286 0.400000 +1346 341 0.400000 +1346 365 0.400000 +1346 373 0.400000 +1346 572 0.400000 +1346 609 0.400000 +1346 666 0.400000 +1346 729 0.400000 +1346 730 0.400000 +1346 751 0.400000 +1346 790 0.400000 +1346 833 0.400000 +1346 861 0.400000 +1346 874 0.400000 +1346 915 0.400000 +1346 950 0.400000 +1346 961 0.400000 +1346 1126 0.400000 +1346 1147 0.400000 +1346 1337 0.400000 +1346 1351 0.400000 +1346 1491 0.400000 +1346 1563 0.400000 +1346 1566 0.400000 +1346 1610 0.400000 +1346 1639 0.400000 +1346 1649 0.400000 +1346 1673 0.400000 +1346 1683 0.400000 +1346 1731 0.400000 +1346 1739 0.400000 +1346 1747 0.400000 +1346 1855 0.400000 +1346 1877 0.400000 +1346 1982 0.400000 +1346 2244 0.400000 +1346 2277 0.400000 +1346 2322 0.400000 +1346 2350 0.400000 +1346 2358 0.400000 +1346 2402 0.400000 +1346 2441 0.400000 +1346 2450 0.400000 +1346 2592 0.400000 +1346 2608 0.400000 +1346 2668 0.400000 +1346 2670 0.400000 +1346 2671 0.400000 +1346 2688 0.400000 +1346 2695 0.400000 +1346 2735 0.400000 +1346 2741 0.400000 +1346 2747 0.400000 +1346 2786 0.400000 +1346 2915 0.400000 +1346 2975 0.400000 +1346 3112 0.400000 +1346 3115 0.400000 +1346 3149 0.400000 +1346 3187 0.400000 +1347 26 0.400000 +1347 78 0.400000 +1347 161 0.400000 +1347 177 0.400000 +1347 277 0.400000 +1347 352 0.400000 +1347 358 0.400000 +1347 394 0.400000 +1347 431 0.400000 +1347 437 0.400000 +1347 445 0.400000 +1347 449 0.400000 +1347 480 0.400000 +1347 501 0.400000 +1347 517 0.400000 +1347 523 0.400000 +1347 542 0.400000 +1347 762 0.400000 +1347 778 0.400000 +1347 789 0.400000 +1347 871 0.400000 +1347 880 0.400000 +1347 1056 0.400000 +1347 1072 0.400000 +1347 1144 0.400000 +1347 1175 0.400000 +1347 1291 0.400000 +1347 1335 0.400000 +1347 1349 0.400000 +1347 1411 0.400000 +1347 1462 0.400000 +1347 1732 0.400000 +1347 1775 0.400000 +1347 1822 0.400000 +1347 1834 0.400000 +1347 1843 0.400000 +1347 1867 0.400000 +1347 2039 0.400000 +1347 2055 0.400000 +1347 2136 0.400000 +1347 2214 0.400000 +1347 2223 0.400000 +1347 2541 0.400000 +1347 2565 0.400000 +1347 2568 0.400000 +1347 2596 0.400000 +1347 2604 0.400000 +1347 2767 0.400000 +1347 2942 0.400000 +1347 2945 0.400000 +1347 3000 0.400000 +1347 3034 0.400000 +1347 3036 0.400000 +1347 3040 0.400000 +1347 3058 0.400000 +1347 3144 0.400000 +1347 3166 0.400000 +1347 3174 0.400000 +1348 58 0.400000 +1348 89 0.400000 +1348 135 0.400000 +1348 178 0.400000 +1348 212 0.400000 +1348 227 0.400000 +1348 248 0.400000 +1348 249 0.400000 +1348 331 0.400000 +1348 348 0.400000 +1348 367 0.400000 +1348 380 0.400000 +1348 434 0.400000 +1348 470 0.400000 +1348 485 0.400000 +1348 542 0.400000 +1348 564 0.400000 +1348 651 0.400000 +1348 781 0.400000 +1348 836 0.400000 +1348 839 0.400000 +1348 845 0.400000 +1348 846 0.400000 +1348 848 0.400000 +1348 851 0.400000 +1348 885 0.400000 +1348 1018 0.400000 +1348 1081 0.400000 +1348 1086 0.400000 +1348 1129 0.400000 +1348 1162 0.400000 +1348 1165 0.400000 +1348 1196 0.400000 +1348 1222 0.400000 +1348 1246 0.400000 +1348 1267 0.400000 +1348 1313 0.400000 +1348 1338 0.400000 +1348 1403 0.400000 +1348 1502 0.400000 +1348 1523 0.400000 +1348 1527 0.400000 +1348 1589 0.400000 +1348 1859 0.400000 +1348 1871 0.400000 +1348 2122 0.400000 +1348 2126 0.400000 +1348 2178 0.400000 +1348 2390 0.400000 +1348 2392 0.400000 +1348 2421 0.400000 +1348 2456 0.400000 +1348 2468 0.400000 +1348 2485 0.400000 +1348 2569 0.400000 +1348 2576 0.400000 +1348 2579 0.400000 +1348 2581 0.400000 +1348 2585 0.400000 +1348 2623 0.400000 +1348 2649 0.400000 +1348 2659 0.400000 +1348 2708 0.400000 +1348 2713 0.400000 +1348 2716 0.400000 +1348 2751 0.400000 +1348 2792 0.400000 +1348 2862 0.400000 +1348 2894 0.400000 +1348 2950 0.400000 +1348 2987 0.400000 +1348 3025 0.400000 +1348 3107 0.400000 +1348 3128 0.400000 +1348 3136 0.400000 +1348 3157 0.400000 +1349 56 0.400000 +1349 68 0.400000 +1349 90 0.400000 +1349 154 0.400000 +1349 307 0.400000 +1349 311 0.400000 +1349 412 0.400000 +1349 439 0.400000 +1349 499 0.400000 +1349 527 0.400000 +1349 547 0.400000 +1349 577 0.400000 +1349 586 0.400000 +1349 600 0.400000 +1349 620 0.400000 +1349 637 0.400000 +1349 642 0.400000 +1349 765 0.400000 +1349 817 0.400000 +1349 831 0.400000 +1349 846 0.400000 +1349 872 0.400000 +1349 887 0.400000 +1349 907 0.400000 +1349 933 0.400000 +1349 941 0.400000 +1349 980 0.400000 +1349 1076 0.400000 +1349 1095 0.400000 +1349 1100 0.400000 +1349 1207 0.400000 +1349 1253 0.400000 +1349 1257 0.400000 +1349 1330 0.400000 +1349 1432 0.400000 +1349 1478 0.400000 +1349 1499 0.400000 +1349 1516 0.400000 +1349 1528 0.400000 +1349 1551 0.400000 +1349 1595 0.400000 +1349 1719 0.400000 +1349 1742 0.400000 +1349 1755 0.400000 +1349 1782 0.400000 +1349 1816 0.400000 +1349 1823 0.400000 +1349 1840 0.400000 +1349 2066 0.400000 +1349 2224 0.400000 +1349 2236 0.400000 +1349 2285 0.400000 +1349 2420 0.400000 +1349 2424 0.400000 +1349 2454 0.400000 +1349 2496 0.400000 +1349 2586 0.400000 +1349 2598 0.400000 +1349 2624 0.400000 +1349 2643 0.400000 +1349 2647 0.400000 +1349 2653 0.400000 +1349 2663 0.400000 +1349 2698 0.400000 +1349 2742 0.400000 +1349 2896 0.400000 +1349 2907 0.400000 +1349 2916 0.400000 +1349 2937 0.400000 +1349 2946 0.400000 +1349 2972 0.400000 +1349 3022 0.400000 +1349 3071 0.400000 +1349 3137 0.400000 +1350 20 0.400000 +1350 82 0.400000 +1350 176 0.400000 +1350 214 0.400000 +1350 334 0.400000 +1350 345 0.400000 +1350 396 0.400000 +1350 424 0.400000 +1350 457 0.400000 +1350 459 0.400000 +1350 474 0.400000 +1350 478 0.400000 +1350 568 0.400000 +1350 717 0.400000 +1350 718 0.400000 +1350 750 0.400000 +1350 811 0.400000 +1350 834 0.400000 +1350 869 0.400000 +1350 916 0.400000 +1350 925 0.400000 +1350 968 0.400000 +1350 1038 0.400000 +1350 1046 0.400000 +1350 1074 0.400000 +1350 1088 0.400000 +1350 1094 0.400000 +1350 1100 0.400000 +1350 1179 0.400000 +1350 1205 0.400000 +1350 1222 0.400000 +1350 1249 0.400000 +1350 1276 0.400000 +1350 1282 0.400000 +1350 1323 0.400000 +1350 1361 0.400000 +1350 1398 0.400000 +1350 1438 0.400000 +1350 1484 0.400000 +1350 1511 0.400000 +1350 1548 0.400000 +1350 1597 0.400000 +1350 1774 0.400000 +1350 1806 0.400000 +1350 1811 0.400000 +1350 1869 0.400000 +1350 2019 0.400000 +1350 2046 0.400000 +1350 2167 0.400000 +1350 2206 0.400000 +1350 2207 0.400000 +1350 2322 0.400000 +1350 2376 0.400000 +1350 2399 0.400000 +1350 2472 0.400000 +1350 2498 0.400000 +1350 2515 0.400000 +1350 2579 0.400000 +1350 2595 0.400000 +1350 2682 0.400000 +1350 2789 0.400000 +1350 2800 0.400000 +1350 2864 0.400000 +1350 2921 0.400000 +1350 2933 0.400000 +1350 2965 0.400000 +1350 2988 0.400000 +1351 92 0.400000 +1351 176 0.400000 +1351 249 0.400000 +1351 399 0.400000 +1351 428 0.400000 +1351 442 0.400000 +1351 614 0.400000 +1351 640 0.400000 +1351 661 0.400000 +1351 741 0.400000 +1351 766 0.400000 +1351 797 0.400000 +1351 1027 0.400000 +1351 1136 0.400000 +1351 1216 0.400000 +1351 1248 0.400000 +1351 1268 0.400000 +1351 1292 0.400000 +1351 1306 0.400000 +1351 1391 0.400000 +1351 1402 0.400000 +1351 1432 0.400000 +1351 1461 0.400000 +1351 1496 0.400000 +1351 1519 0.400000 +1351 1619 0.400000 +1351 1624 0.400000 +1351 1626 0.400000 +1351 1649 0.400000 +1351 1728 0.400000 +1351 1740 0.400000 +1351 1754 0.400000 +1351 1906 0.400000 +1351 1951 0.400000 +1351 2059 0.400000 +1351 2065 0.400000 +1351 2075 0.400000 +1351 2139 0.400000 +1351 2149 0.400000 +1351 2156 0.400000 +1351 2171 0.400000 +1351 2224 0.400000 +1351 2298 0.400000 +1351 2466 0.400000 +1351 2493 0.400000 +1351 2552 0.400000 +1351 2668 0.400000 +1351 2754 0.400000 +1351 2846 0.400000 +1351 2859 0.400000 +1351 2987 0.400000 +1351 3015 0.400000 +1351 3059 0.400000 +1351 3076 0.400000 +1351 3109 0.400000 +1351 3166 0.400000 +1352 79 0.400000 +1352 90 0.400000 +1352 154 0.400000 +1352 247 0.400000 +1352 271 0.400000 +1352 278 0.400000 +1352 322 0.400000 +1352 560 0.400000 +1352 648 0.400000 +1352 682 0.400000 +1352 683 0.400000 +1352 712 0.400000 +1352 861 0.400000 +1352 926 0.400000 +1352 941 0.400000 +1352 989 0.400000 +1352 1062 0.400000 +1352 1067 0.400000 +1352 1291 0.400000 +1352 1318 0.400000 +1352 1324 0.400000 +1352 1426 0.400000 +1352 1452 0.400000 +1352 1457 0.400000 +1352 1493 0.400000 +1352 1533 0.400000 +1352 1568 0.400000 +1352 1592 0.400000 +1352 1723 0.400000 +1352 1772 0.400000 +1352 1831 0.400000 +1352 1858 0.400000 +1352 1865 0.400000 +1352 1886 0.400000 +1352 1928 0.400000 +1352 2005 0.400000 +1352 2015 0.400000 +1352 2049 0.400000 +1352 2086 0.400000 +1352 2125 0.400000 +1352 2254 0.400000 +1352 2269 0.400000 +1352 2337 0.400000 +1352 2400 0.400000 +1352 2401 0.400000 +1352 2421 0.400000 +1352 2476 0.400000 +1352 2478 0.400000 +1352 2506 0.400000 +1352 2518 0.400000 +1352 2540 0.400000 +1352 2600 0.400000 +1352 2613 0.400000 +1352 2701 0.400000 +1352 2703 0.400000 +1352 2724 0.400000 +1352 2799 0.400000 +1352 2802 0.400000 +1352 2807 0.400000 +1352 2879 0.400000 +1352 2883 0.400000 +1352 2890 0.400000 +1352 2905 0.400000 +1352 2914 0.400000 +1352 2942 0.400000 +1352 2956 0.400000 +1352 2958 0.400000 +1352 2980 0.400000 +1352 3038 0.400000 +1352 3062 0.400000 +1352 3071 0.400000 +1352 3101 0.400000 +1352 3146 0.400000 +1352 3167 0.400000 +1352 3176 0.400000 +1353 27 0.400000 +1353 95 0.400000 +1353 176 0.400000 +1353 281 0.400000 +1353 332 0.400000 +1353 361 0.400000 +1353 405 0.400000 +1353 413 0.400000 +1353 734 0.400000 +1353 750 0.400000 +1353 852 0.400000 +1353 854 0.400000 +1353 1090 0.400000 +1353 1116 0.400000 +1353 1132 0.400000 +1353 1215 0.400000 +1353 1219 0.400000 +1353 1255 0.400000 +1353 1296 0.400000 +1353 1318 0.400000 +1353 1432 0.400000 +1353 1475 0.400000 +1353 1482 0.400000 +1353 1492 0.400000 +1353 1528 0.400000 +1353 1560 0.400000 +1353 1615 0.400000 +1353 1640 0.400000 +1353 1695 0.400000 +1353 1710 0.400000 +1353 1755 0.400000 +1353 1769 0.400000 +1353 1787 0.400000 +1353 1791 0.400000 +1353 1816 0.400000 +1353 1821 0.400000 +1353 1828 0.400000 +1353 1842 0.400000 +1353 1901 0.400000 +1353 1969 0.400000 +1353 1976 0.400000 +1353 2006 0.400000 +1353 2027 0.400000 +1353 2042 0.400000 +1353 2050 0.400000 +1353 2087 0.400000 +1353 2096 0.400000 +1353 2187 0.400000 +1353 2453 0.400000 +1353 2454 0.400000 +1353 2479 0.400000 +1353 2546 0.400000 +1353 2602 0.400000 +1353 2603 0.400000 +1353 2669 0.400000 +1353 2693 0.400000 +1353 2804 0.400000 +1353 2879 0.400000 +1353 2981 0.400000 +1353 3028 0.400000 +1353 3069 0.400000 +1353 3080 0.400000 +1353 3088 0.400000 +1353 3105 0.400000 +1353 3110 0.400000 +1353 3164 0.400000 +1354 8 0.400000 +1354 248 0.400000 +1354 298 0.400000 +1354 329 0.400000 +1354 352 0.400000 +1354 406 0.400000 +1354 465 0.400000 +1354 586 0.400000 +1354 770 0.400000 +1354 817 0.400000 +1354 958 0.400000 +1354 1010 0.400000 +1354 1028 0.400000 +1354 1058 0.400000 +1354 1161 0.400000 +1354 1180 0.400000 +1354 1276 0.400000 +1354 1407 0.400000 +1354 1475 0.400000 +1354 1492 0.400000 +1354 1493 0.400000 +1354 1501 0.400000 +1354 1553 0.400000 +1354 1626 0.400000 +1354 1681 0.400000 +1354 1725 0.400000 +1354 1858 0.400000 +1354 1891 0.400000 +1354 1996 0.400000 +1354 2025 0.400000 +1354 2048 0.400000 +1354 2051 0.400000 +1354 2115 0.400000 +1354 2163 0.400000 +1354 2167 0.400000 +1354 2231 0.400000 +1354 2289 0.400000 +1354 2323 0.400000 +1354 2459 0.400000 +1354 2481 0.400000 +1354 2492 0.400000 +1354 2577 0.400000 +1354 2609 0.400000 +1354 2617 0.400000 +1354 2643 0.400000 +1354 2806 0.400000 +1354 2821 0.400000 +1354 2892 0.400000 +1354 2966 0.400000 +1354 3045 0.400000 +1354 3105 0.400000 +1355 4 0.400000 +1355 139 0.400000 +1355 160 0.400000 +1355 188 0.400000 +1355 229 0.400000 +1355 243 0.400000 +1355 317 0.400000 +1355 326 0.400000 +1355 335 0.400000 +1355 458 0.400000 +1355 490 0.400000 +1355 513 0.400000 +1355 518 0.400000 +1355 561 0.400000 +1355 566 0.400000 +1355 584 0.400000 +1355 647 0.400000 +1355 696 0.400000 +1355 706 0.400000 +1355 746 0.400000 +1355 840 0.400000 +1355 915 0.400000 +1355 933 0.400000 +1355 943 0.400000 +1355 1003 0.400000 +1355 1018 0.400000 +1355 1050 0.400000 +1355 1062 0.400000 +1355 1069 0.400000 +1355 1071 0.400000 +1355 1107 0.400000 +1355 1136 0.400000 +1355 1211 0.400000 +1355 1293 0.400000 +1355 1364 0.400000 +1355 1421 0.400000 +1355 1511 0.400000 +1355 1520 0.400000 +1355 1603 0.400000 +1355 1630 0.400000 +1355 1732 0.400000 +1355 1835 0.400000 +1355 1840 0.400000 +1355 1903 0.400000 +1355 2042 0.400000 +1355 2064 0.400000 +1355 2097 0.400000 +1355 2126 0.400000 +1355 2216 0.400000 +1355 2228 0.400000 +1355 2264 0.400000 +1355 2326 0.400000 +1355 2373 0.400000 +1355 2460 0.400000 +1355 2504 0.400000 +1355 2673 0.400000 +1355 2700 0.400000 +1355 2753 0.400000 +1355 2836 0.400000 +1355 3048 0.400000 +1355 3049 0.400000 +1355 3053 0.400000 +1356 60 0.400000 +1356 84 0.400000 +1356 147 0.400000 +1356 217 0.400000 +1356 243 0.400000 +1356 275 0.400000 +1356 283 0.400000 +1356 308 0.400000 +1356 314 0.400000 +1356 419 0.400000 +1356 479 0.400000 +1356 511 0.400000 +1356 519 0.400000 +1356 583 0.400000 +1356 736 0.400000 +1356 880 0.400000 +1356 1031 0.400000 +1356 1062 0.400000 +1356 1080 0.400000 +1356 1117 0.400000 +1356 1183 0.400000 +1356 1222 0.400000 +1356 1276 0.400000 +1356 1358 0.400000 +1356 1374 0.400000 +1356 1396 0.400000 +1356 1442 0.400000 +1356 1455 0.400000 +1356 1561 0.400000 +1356 1626 0.400000 +1356 1661 0.400000 +1356 1664 0.400000 +1356 1685 0.400000 +1356 1708 0.400000 +1356 1752 0.400000 +1356 1831 0.400000 +1356 2134 0.400000 +1356 2163 0.400000 +1356 2228 0.400000 +1356 2289 0.400000 +1356 2303 0.400000 +1356 2366 0.400000 +1356 2527 0.400000 +1356 2556 0.400000 +1356 2584 0.400000 +1356 2613 0.400000 +1356 2662 0.400000 +1356 2817 0.400000 +1356 2824 0.400000 +1356 2947 0.400000 +1356 3045 0.400000 +1357 50 0.400000 +1357 71 0.400000 +1357 91 0.400000 +1357 107 0.400000 +1357 114 0.400000 +1357 164 0.400000 +1357 179 0.400000 +1357 218 0.400000 +1357 229 0.400000 +1357 265 0.400000 +1357 347 0.400000 +1357 377 0.400000 +1357 413 0.400000 +1357 445 0.400000 +1357 613 0.400000 +1357 641 0.400000 +1357 646 0.400000 +1357 678 0.400000 +1357 705 0.400000 +1357 745 0.400000 +1357 784 0.400000 +1357 988 0.400000 +1357 1050 0.400000 +1357 1067 0.400000 +1357 1185 0.400000 +1357 1265 0.400000 +1357 1342 0.400000 +1357 1365 0.400000 +1357 1391 0.400000 +1357 1406 0.400000 +1357 1407 0.400000 +1357 1464 0.400000 +1357 1543 0.400000 +1357 1553 0.400000 +1357 1581 0.400000 +1357 1646 0.400000 +1357 1839 0.400000 +1357 1947 0.400000 +1357 2110 0.400000 +1357 2148 0.400000 +1357 2172 0.400000 +1357 2195 0.400000 +1357 2218 0.400000 +1357 2250 0.400000 +1357 2312 0.400000 +1357 2314 0.400000 +1357 2420 0.400000 +1357 2522 0.400000 +1357 2598 0.400000 +1357 2629 0.400000 +1357 2681 0.400000 +1357 2701 0.400000 +1357 2709 0.400000 +1357 2718 0.400000 +1357 2790 0.400000 +1357 2906 0.400000 +1357 2928 0.400000 +1357 2981 0.400000 +1357 3002 0.400000 +1357 3017 0.400000 +1357 3036 0.400000 +1357 3050 0.400000 +1357 3051 0.400000 +1357 3062 0.400000 +1357 3067 0.400000 +1358 47 0.400000 +1358 65 0.400000 +1358 150 0.400000 +1358 267 0.400000 +1358 431 0.400000 +1358 649 0.400000 +1358 681 0.400000 +1358 691 0.400000 +1358 821 0.400000 +1358 866 0.400000 +1358 1060 0.400000 +1358 1077 0.400000 +1358 1109 0.400000 +1358 1169 0.400000 +1358 1220 0.400000 +1358 1270 0.400000 +1358 1312 0.400000 +1358 1327 0.400000 +1358 1433 0.400000 +1358 1504 0.400000 +1358 1517 0.400000 +1358 1586 0.400000 +1358 1594 0.400000 +1358 1722 0.400000 +1358 1730 0.400000 +1358 1739 0.400000 +1358 1807 0.400000 +1358 1988 0.400000 +1358 2024 0.400000 +1358 2033 0.400000 +1358 2083 0.400000 +1358 2104 0.400000 +1358 2110 0.400000 +1358 2191 0.400000 +1358 2236 0.400000 +1358 2367 0.400000 +1358 2406 0.400000 +1358 2626 0.400000 +1358 2717 0.400000 +1358 2887 0.400000 +1358 2930 0.400000 +1358 2969 0.400000 +1358 3030 0.400000 +1358 3096 0.400000 +1358 3117 0.400000 +1358 3176 0.400000 +1358 3182 0.400000 +1359 1 0.400000 +1359 108 0.400000 +1359 180 0.400000 +1359 277 0.400000 +1359 347 0.400000 +1359 384 0.400000 +1359 455 0.400000 +1359 490 0.400000 +1359 498 0.400000 +1359 509 0.400000 +1359 516 0.400000 +1359 618 0.400000 +1359 635 0.400000 +1359 752 0.400000 +1359 821 0.400000 +1359 845 0.400000 +1359 869 0.400000 +1359 896 0.400000 +1359 947 0.400000 +1359 1023 0.400000 +1359 1031 0.400000 +1359 1039 0.400000 +1359 1229 0.400000 +1359 1262 0.400000 +1359 1365 0.400000 +1359 1399 0.400000 +1359 1459 0.400000 +1359 1461 0.400000 +1359 1513 0.400000 +1359 1584 0.400000 +1359 1623 0.400000 +1359 1657 0.400000 +1359 1665 0.400000 +1359 1762 0.400000 +1359 1810 0.400000 +1359 1890 0.400000 +1359 1959 0.400000 +1359 1960 0.400000 +1359 1980 0.400000 +1359 2014 0.400000 +1359 2085 0.400000 +1359 2139 0.400000 +1359 2197 0.400000 +1359 2262 0.400000 +1359 2267 0.400000 +1359 2322 0.400000 +1359 2339 0.400000 +1359 2404 0.400000 +1359 2478 0.400000 +1359 2544 0.400000 +1359 2598 0.400000 +1359 2631 0.400000 +1359 2644 0.400000 +1359 2707 0.400000 +1359 2811 0.400000 +1359 3023 0.400000 +1359 3027 0.400000 +1359 3055 0.400000 +1359 3064 0.400000 +1359 3151 0.400000 +1359 3163 0.400000 +1359 3177 0.400000 +1360 115 0.400000 +1360 130 0.400000 +1360 143 0.400000 +1360 188 0.400000 +1360 201 0.400000 +1360 329 0.400000 +1360 387 0.400000 +1360 399 0.400000 +1360 407 0.400000 +1360 433 0.400000 +1360 466 0.400000 +1360 469 0.400000 +1360 601 0.400000 +1360 639 0.400000 +1360 642 0.400000 +1360 785 0.400000 +1360 804 0.400000 +1360 809 0.400000 +1360 831 0.400000 +1360 881 0.400000 +1360 892 0.400000 +1360 934 0.400000 +1360 957 0.400000 +1360 974 0.400000 +1360 1025 0.400000 +1360 1124 0.400000 +1360 1326 0.400000 +1360 1339 0.400000 +1360 1521 0.400000 +1360 1535 0.400000 +1360 1559 0.400000 +1360 1599 0.400000 +1360 1677 0.400000 +1360 1705 0.400000 +1360 1789 0.400000 +1360 1818 0.400000 +1360 1850 0.400000 +1360 1946 0.400000 +1360 1948 0.400000 +1360 1985 0.400000 +1360 2037 0.400000 +1360 2040 0.400000 +1360 2112 0.400000 +1360 2255 0.400000 +1360 2257 0.400000 +1360 2270 0.400000 +1360 2285 0.400000 +1360 2315 0.400000 +1360 2445 0.400000 +1360 2476 0.400000 +1360 2494 0.400000 +1360 2515 0.400000 +1360 2584 0.400000 +1360 2630 0.400000 +1360 2639 0.400000 +1360 2843 0.400000 +1360 2953 0.400000 +1360 2955 0.400000 +1360 2968 0.400000 +1360 2978 0.400000 +1360 2994 0.400000 +1360 3035 0.400000 +1360 3063 0.400000 +1360 3070 0.400000 +1360 3085 0.400000 +1360 3172 0.400000 +1361 106 0.400000 +1361 129 0.400000 +1361 151 0.400000 +1361 223 0.400000 +1361 321 0.400000 +1361 525 0.400000 +1361 697 0.400000 +1361 725 0.400000 +1361 791 0.400000 +1361 798 0.400000 +1361 959 0.400000 +1361 1002 0.400000 +1361 1008 0.400000 +1361 1034 0.400000 +1361 1078 0.400000 +1361 1132 0.400000 +1361 1178 0.400000 +1361 1211 0.400000 +1361 1216 0.400000 +1361 1465 0.400000 +1361 1477 0.400000 +1361 1513 0.400000 +1361 1538 0.400000 +1361 1581 0.400000 +1361 1701 0.400000 +1361 1853 0.400000 +1361 1906 0.400000 +1361 1953 0.400000 +1361 1991 0.400000 +1361 2010 0.400000 +1361 2018 0.400000 +1361 2110 0.400000 +1361 2121 0.400000 +1361 2276 0.400000 +1361 2319 0.400000 +1361 2352 0.400000 +1361 2419 0.400000 +1361 2690 0.400000 +1361 2731 0.400000 +1361 2883 0.400000 +1361 2891 0.400000 +1361 2986 0.400000 +1361 3040 0.400000 +1361 3045 0.400000 +1361 3083 0.400000 +1361 3106 0.400000 +1362 2 0.400000 +1362 36 0.400000 +1362 54 0.400000 +1362 81 0.400000 +1362 86 0.400000 +1362 98 0.400000 +1362 112 0.400000 +1362 188 0.400000 +1362 257 0.400000 +1362 263 0.400000 +1362 369 0.400000 +1362 397 0.400000 +1362 401 0.400000 +1362 412 0.400000 +1362 510 0.400000 +1362 612 0.400000 +1362 755 0.400000 +1362 758 0.400000 +1362 778 0.400000 +1362 794 0.400000 +1362 811 0.400000 +1362 819 0.400000 +1362 858 0.400000 +1362 1008 0.400000 +1362 1034 0.400000 +1362 1194 0.400000 +1362 1261 0.400000 +1362 1356 0.400000 +1362 1424 0.400000 +1362 1523 0.400000 +1362 1614 0.400000 +1362 1625 0.400000 +1362 1627 0.400000 +1362 1673 0.400000 +1362 1808 0.400000 +1362 1809 0.400000 +1362 1891 0.400000 +1362 1909 0.400000 +1362 2026 0.400000 +1362 2113 0.400000 +1362 2153 0.400000 +1362 2165 0.400000 +1362 2240 0.400000 +1362 2267 0.400000 +1362 2345 0.400000 +1362 2391 0.400000 +1362 2423 0.400000 +1362 2514 0.400000 +1362 2535 0.400000 +1362 2544 0.400000 +1362 2594 0.400000 +1362 2749 0.400000 +1362 2914 0.400000 +1362 2942 0.400000 +1362 2998 0.400000 +1362 3035 0.400000 +1362 3138 0.400000 +1362 3186 0.400000 +1362 3191 0.400000 +1362 3197 0.400000 +1363 14 0.400000 +1363 138 0.400000 +1363 153 0.400000 +1363 190 0.400000 +1363 237 0.400000 +1363 266 0.400000 +1363 303 0.400000 +1363 361 0.400000 +1363 418 0.400000 +1363 431 0.400000 +1363 433 0.400000 +1363 488 0.400000 +1363 642 0.400000 +1363 680 0.400000 +1363 717 0.400000 +1363 727 0.400000 +1363 760 0.400000 +1363 773 0.400000 +1363 776 0.400000 +1363 860 0.400000 +1363 862 0.400000 +1363 899 0.400000 +1363 918 0.400000 +1363 983 0.400000 +1363 1009 0.400000 +1363 1032 0.400000 +1363 1154 0.400000 +1363 1256 0.400000 +1363 1270 0.400000 +1363 1325 0.400000 +1363 1362 0.400000 +1363 1424 0.400000 +1363 1457 0.400000 +1363 1504 0.400000 +1363 1623 0.400000 +1363 1696 0.400000 +1363 1801 0.400000 +1363 1811 0.400000 +1363 1886 0.400000 +1363 1937 0.400000 +1363 1954 0.400000 +1363 1982 0.400000 +1363 1987 0.400000 +1363 2072 0.400000 +1363 2082 0.400000 +1363 2084 0.400000 +1363 2092 0.400000 +1363 2180 0.400000 +1363 2187 0.400000 +1363 2255 0.400000 +1363 2304 0.400000 +1363 2352 0.400000 +1363 2385 0.400000 +1363 2411 0.400000 +1363 2449 0.400000 +1363 2465 0.400000 +1363 2487 0.400000 +1363 2504 0.400000 +1363 2532 0.400000 +1363 2552 0.400000 +1363 2556 0.400000 +1363 2568 0.400000 +1363 2588 0.400000 +1363 2660 0.400000 +1363 2678 0.400000 +1363 2822 0.400000 +1363 2894 0.400000 +1363 2963 0.400000 +1363 3012 0.400000 +1363 3121 0.400000 +1363 3152 0.400000 +1364 4 0.400000 +1364 74 0.400000 +1364 96 0.400000 +1364 106 0.400000 +1364 139 0.400000 +1364 148 0.400000 +1364 171 0.400000 +1364 258 0.400000 +1364 324 0.400000 +1364 465 0.400000 +1364 544 0.400000 +1364 599 0.400000 +1364 784 0.400000 +1364 805 0.400000 +1364 822 0.400000 +1364 847 0.400000 +1364 866 0.400000 +1364 886 0.400000 +1364 948 0.400000 +1364 1054 0.400000 +1364 1077 0.400000 +1364 1099 0.400000 +1364 1118 0.400000 +1364 1238 0.400000 +1364 1260 0.400000 +1364 1271 0.400000 +1364 1325 0.400000 +1364 1572 0.400000 +1364 1589 0.400000 +1364 1611 0.400000 +1364 1704 0.400000 +1364 1713 0.400000 +1364 1867 0.400000 +1364 1873 0.400000 +1364 1896 0.400000 +1364 2002 0.400000 +1364 2006 0.400000 +1364 2047 0.400000 +1364 2278 0.400000 +1364 2302 0.400000 +1364 2310 0.400000 +1364 2418 0.400000 +1364 2424 0.400000 +1364 2453 0.400000 +1364 2492 0.400000 +1364 2535 0.400000 +1364 2545 0.400000 +1364 2566 0.400000 +1364 2569 0.400000 +1364 2596 0.400000 +1364 2597 0.400000 +1364 2701 0.400000 +1364 2710 0.400000 +1364 2749 0.400000 +1364 2845 0.400000 +1364 2865 0.400000 +1364 2876 0.400000 +1364 2967 0.400000 +1364 2970 0.400000 +1364 3041 0.400000 +1364 3130 0.400000 +1364 3193 0.400000 +1365 45 0.400000 +1365 139 0.400000 +1365 172 0.400000 +1365 196 0.400000 +1365 229 0.400000 +1365 302 0.400000 +1365 315 0.400000 +1365 367 0.400000 +1365 423 0.400000 +1365 462 0.400000 +1365 555 0.400000 +1365 600 0.400000 +1365 655 0.400000 +1365 656 0.400000 +1365 843 0.400000 +1365 881 0.400000 +1365 900 0.400000 +1365 955 0.400000 +1365 985 0.400000 +1365 997 0.400000 +1365 1006 0.400000 +1365 1038 0.400000 +1365 1114 0.400000 +1365 1203 0.400000 +1365 1304 0.400000 +1365 1344 0.400000 +1365 1375 0.400000 +1365 1435 0.400000 +1365 1506 0.400000 +1365 1639 0.400000 +1365 1645 0.400000 +1365 1747 0.400000 +1365 1772 0.400000 +1365 1788 0.400000 +1365 1855 0.400000 +1365 1879 0.400000 +1365 1951 0.400000 +1365 1968 0.400000 +1365 1981 0.400000 +1365 2031 0.400000 +1365 2043 0.400000 +1365 2049 0.400000 +1365 2191 0.400000 +1365 2193 0.400000 +1365 2298 0.400000 +1365 2418 0.400000 +1365 2448 0.400000 +1365 2472 0.400000 +1365 2500 0.400000 +1365 2736 0.400000 +1365 2754 0.400000 +1365 2761 0.400000 +1365 2786 0.400000 +1365 2798 0.400000 +1365 2819 0.400000 +1365 2837 0.400000 +1365 2906 0.400000 +1365 2971 0.400000 +1365 3046 0.400000 +1365 3089 0.400000 +1365 3140 0.400000 +1366 21 0.400000 +1366 24 0.400000 +1366 25 0.400000 +1366 92 0.400000 +1366 99 0.400000 +1366 161 0.400000 +1366 171 0.400000 +1366 190 0.400000 +1366 191 0.400000 +1366 280 0.400000 +1366 380 0.400000 +1366 385 0.400000 +1366 431 0.400000 +1366 489 0.400000 +1366 636 0.400000 +1366 637 0.400000 +1366 713 0.400000 +1366 730 0.400000 +1366 749 0.400000 +1366 789 0.400000 +1366 835 0.400000 +1366 941 0.400000 +1366 971 0.400000 +1366 1054 0.400000 +1366 1067 0.400000 +1366 1099 0.400000 +1366 1143 0.400000 +1366 1148 0.400000 +1366 1162 0.400000 +1366 1180 0.400000 +1366 1181 0.400000 +1366 1250 0.400000 +1366 1265 0.400000 +1366 1346 0.400000 +1366 1358 0.400000 +1366 1440 0.400000 +1366 1443 0.400000 +1366 1481 0.400000 +1366 1508 0.400000 +1366 1577 0.400000 +1366 1667 0.400000 +1366 1679 0.400000 +1366 1688 0.400000 +1366 1711 0.400000 +1366 1720 0.400000 +1366 1750 0.400000 +1366 1762 0.400000 +1366 1791 0.400000 +1366 1966 0.400000 +1366 1982 0.400000 +1366 2019 0.400000 +1366 2026 0.400000 +1366 2145 0.400000 +1366 2206 0.400000 +1366 2330 0.400000 +1366 2400 0.400000 +1366 2426 0.400000 +1366 2460 0.400000 +1366 2617 0.400000 +1366 2714 0.400000 +1366 2791 0.400000 +1366 2819 0.400000 +1366 2848 0.400000 +1366 3089 0.400000 +1366 3138 0.400000 +1367 193 0.400000 +1367 334 0.400000 +1367 361 0.400000 +1367 376 0.400000 +1367 406 0.400000 +1367 466 0.400000 +1367 494 0.400000 +1367 516 0.400000 +1367 701 0.400000 +1367 719 0.400000 +1367 748 0.400000 +1367 791 0.400000 +1367 797 0.400000 +1367 822 0.400000 +1367 921 0.400000 +1367 979 0.400000 +1367 1055 0.400000 +1367 1082 0.400000 +1367 1108 0.400000 +1367 1141 0.400000 +1367 1192 0.400000 +1367 1197 0.400000 +1367 1198 0.400000 +1367 1205 0.400000 +1367 1387 0.400000 +1367 1427 0.400000 +1367 1435 0.400000 +1367 1491 0.400000 +1367 1603 0.400000 +1367 1613 0.400000 +1367 1643 0.400000 +1367 1666 0.400000 +1367 1671 0.400000 +1367 1701 0.400000 +1367 1714 0.400000 +1367 1805 0.400000 +1367 1874 0.400000 +1367 1933 0.400000 +1367 1970 0.400000 +1367 2044 0.400000 +1367 2051 0.400000 +1367 2084 0.400000 +1367 2198 0.400000 +1367 2254 0.400000 +1367 2278 0.400000 +1367 2367 0.400000 +1367 2398 0.400000 +1367 2435 0.400000 +1367 2445 0.400000 +1367 2457 0.400000 +1367 2478 0.400000 +1367 2488 0.400000 +1367 2524 0.400000 +1367 2567 0.400000 +1367 2675 0.400000 +1367 2703 0.400000 +1367 2768 0.400000 +1367 2813 0.400000 +1367 2820 0.400000 +1367 2928 0.400000 +1367 2930 0.400000 +1367 3114 0.400000 +1367 3144 0.400000 +1367 3172 0.400000 +1368 86 0.400000 +1368 105 0.400000 +1368 139 0.400000 +1368 215 0.400000 +1368 298 0.400000 +1368 362 0.400000 +1368 384 0.400000 +1368 396 0.400000 +1368 444 0.400000 +1368 520 0.400000 +1368 582 0.400000 +1368 595 0.400000 +1368 668 0.400000 +1368 689 0.400000 +1368 922 0.400000 +1368 930 0.400000 +1368 942 0.400000 +1368 960 0.400000 +1368 993 0.400000 +1368 1018 0.400000 +1368 1052 0.400000 +1368 1079 0.400000 +1368 1093 0.400000 +1368 1223 0.400000 +1368 1310 0.400000 +1368 1325 0.400000 +1368 1331 0.400000 +1368 1359 0.400000 +1368 1423 0.400000 +1368 1465 0.400000 +1368 1517 0.400000 +1368 1554 0.400000 +1368 1618 0.400000 +1368 1648 0.400000 +1368 1675 0.400000 +1368 1743 0.400000 +1368 1767 0.400000 +1368 1859 0.400000 +1368 1864 0.400000 +1368 1902 0.400000 +1368 1981 0.400000 +1368 2003 0.400000 +1368 2004 0.400000 +1368 2112 0.400000 +1368 2122 0.400000 +1368 2284 0.400000 +1368 2381 0.400000 +1368 2402 0.400000 +1368 2403 0.400000 +1368 2466 0.400000 +1368 2482 0.400000 +1368 2660 0.400000 +1368 2718 0.400000 +1368 2740 0.400000 +1368 2748 0.400000 +1368 2800 0.400000 +1368 2904 0.400000 +1368 2963 0.400000 +1368 3016 0.400000 +1368 3199 0.400000 +1369 15 0.400000 +1369 129 0.400000 +1369 132 0.400000 +1369 270 0.400000 +1369 312 0.400000 +1369 333 0.400000 +1369 343 0.400000 +1369 424 0.400000 +1369 485 0.400000 +1369 505 0.400000 +1369 650 0.400000 +1369 670 0.400000 +1369 675 0.400000 +1369 702 0.400000 +1369 747 0.400000 +1369 756 0.400000 +1369 774 0.400000 +1369 816 0.400000 +1369 885 0.400000 +1369 926 0.400000 +1369 956 0.400000 +1369 995 0.400000 +1369 1212 0.400000 +1369 1218 0.400000 +1369 1233 0.400000 +1369 1332 0.400000 +1369 1343 0.400000 +1369 1449 0.400000 +1369 1454 0.400000 +1369 1504 0.400000 +1369 1515 0.400000 +1369 1528 0.400000 +1369 1615 0.400000 +1369 1637 0.400000 +1369 1646 0.400000 +1369 1760 0.400000 +1369 1772 0.400000 +1369 1887 0.400000 +1369 1968 0.400000 +1369 2048 0.400000 +1369 2068 0.400000 +1369 2073 0.400000 +1369 2076 0.400000 +1369 2170 0.400000 +1369 2219 0.400000 +1369 2238 0.400000 +1369 2297 0.400000 +1369 2375 0.400000 +1369 2411 0.400000 +1369 2452 0.400000 +1369 2527 0.400000 +1369 2560 0.400000 +1369 2589 0.400000 +1369 2657 0.400000 +1369 2732 0.400000 +1369 2741 0.400000 +1369 2780 0.400000 +1369 2819 0.400000 +1369 2843 0.400000 +1369 2891 0.400000 +1369 2962 0.400000 +1369 2983 0.400000 +1369 3038 0.400000 +1369 3071 0.400000 +1369 3075 0.400000 +1369 3093 0.400000 +1369 3115 0.400000 +1369 3139 0.400000 +1369 3156 0.400000 +1369 3190 0.400000 +1370 117 0.400000 +1370 202 0.400000 +1370 203 0.400000 +1370 363 0.400000 +1370 383 0.400000 +1370 540 0.400000 +1370 618 0.400000 +1370 622 0.400000 +1370 642 0.400000 +1370 743 0.400000 +1370 751 0.400000 +1370 837 0.400000 +1370 907 0.400000 +1370 1063 0.400000 +1370 1084 0.400000 +1370 1100 0.400000 +1370 1123 0.400000 +1370 1215 0.400000 +1370 1246 0.400000 +1370 1296 0.400000 +1370 1349 0.400000 +1370 1360 0.400000 +1370 1377 0.400000 +1370 1424 0.400000 +1370 1467 0.400000 +1370 1552 0.400000 +1370 1561 0.400000 +1370 1591 0.400000 +1370 1651 0.400000 +1370 1731 0.400000 +1370 1969 0.400000 +1370 1975 0.400000 +1370 2017 0.400000 +1370 2021 0.400000 +1370 2134 0.400000 +1370 2184 0.400000 +1370 2195 0.400000 +1370 2201 0.400000 +1370 2224 0.400000 +1370 2246 0.400000 +1370 2272 0.400000 +1370 2276 0.400000 +1370 2353 0.400000 +1370 2357 0.400000 +1370 2360 0.400000 +1370 2388 0.400000 +1370 2562 0.400000 +1370 2622 0.400000 +1370 2708 0.400000 +1370 2745 0.400000 +1370 2765 0.400000 +1370 2813 0.400000 +1370 2860 0.400000 +1370 2889 0.400000 +1370 2909 0.400000 +1370 2916 0.400000 +1370 2994 0.400000 +1370 3006 0.400000 +1370 3024 0.400000 +1370 3090 0.400000 +1371 121 0.400000 +1371 123 0.400000 +1371 154 0.400000 +1371 182 0.400000 +1371 219 0.400000 +1371 235 0.400000 +1371 256 0.400000 +1371 258 0.400000 +1371 293 0.400000 +1371 303 0.400000 +1371 307 0.400000 +1371 369 0.400000 +1371 378 0.400000 +1371 408 0.400000 +1371 418 0.400000 +1371 534 0.400000 +1371 608 0.400000 +1371 629 0.400000 +1371 651 0.400000 +1371 655 0.400000 +1371 668 0.400000 +1371 754 0.400000 +1371 758 0.400000 +1371 894 0.400000 +1371 925 0.400000 +1371 979 0.400000 +1371 983 0.400000 +1371 1184 0.400000 +1371 1237 0.400000 +1371 1421 0.400000 +1371 1450 0.400000 +1371 1487 0.400000 +1371 1534 0.400000 +1371 1611 0.400000 +1371 1735 0.400000 +1371 1826 0.400000 +1371 1948 0.400000 +1371 1959 0.400000 +1371 2015 0.400000 +1371 2034 0.400000 +1371 2043 0.400000 +1371 2087 0.400000 +1371 2217 0.400000 +1371 2311 0.400000 +1371 2471 0.400000 +1371 2516 0.400000 +1371 2619 0.400000 +1371 2686 0.400000 +1371 2690 0.400000 +1371 2722 0.400000 +1371 2728 0.400000 +1371 2752 0.400000 +1371 2776 0.400000 +1371 2787 0.400000 +1371 2806 0.400000 +1371 2904 0.400000 +1371 2919 0.400000 +1371 2958 0.400000 +1371 2962 0.400000 +1371 2988 0.400000 +1371 3008 0.400000 +1371 3009 0.400000 +1371 3055 0.400000 +1372 13 0.400000 +1372 25 0.400000 +1372 27 0.400000 +1372 28 0.400000 +1372 71 0.400000 +1372 77 0.400000 +1372 112 0.400000 +1372 146 0.400000 +1372 194 0.400000 +1372 236 0.400000 +1372 238 0.400000 +1372 286 0.400000 +1372 317 0.400000 +1372 319 0.400000 +1372 369 0.400000 +1372 388 0.400000 +1372 414 0.400000 +1372 465 0.400000 +1372 494 0.400000 +1372 600 0.400000 +1372 607 0.400000 +1372 631 0.400000 +1372 647 0.400000 +1372 713 0.400000 +1372 720 0.400000 +1372 737 0.400000 +1372 828 0.400000 +1372 836 0.400000 +1372 837 0.400000 +1372 864 0.400000 +1372 904 0.400000 +1372 938 0.400000 +1372 989 0.400000 +1372 1002 0.400000 +1372 1015 0.400000 +1372 1153 0.400000 +1372 1154 0.400000 +1372 1178 0.400000 +1372 1294 0.400000 +1372 1315 0.400000 +1372 1377 0.400000 +1372 1411 0.400000 +1372 1413 0.400000 +1372 1423 0.400000 +1372 1474 0.400000 +1372 1492 0.400000 +1372 1526 0.400000 +1372 1531 0.400000 +1372 1535 0.400000 +1372 1617 0.400000 +1372 1637 0.400000 +1372 1660 0.400000 +1372 1690 0.400000 +1372 1767 0.400000 +1372 1833 0.400000 +1372 1837 0.400000 +1372 1843 0.400000 +1372 1868 0.400000 +1372 2001 0.400000 +1372 2043 0.400000 +1372 2049 0.400000 +1372 2106 0.400000 +1372 2131 0.400000 +1372 2139 0.400000 +1372 2308 0.400000 +1372 2316 0.400000 +1372 2330 0.400000 +1372 2414 0.400000 +1372 2475 0.400000 +1372 2508 0.400000 +1372 2518 0.400000 +1372 2582 0.400000 +1372 2653 0.400000 +1372 2714 0.400000 +1372 2820 0.400000 +1372 2863 0.400000 +1372 2871 0.400000 +1372 2961 0.400000 +1372 3138 0.400000 +1372 3153 0.400000 +1372 3161 0.400000 +1372 3168 0.400000 +1372 3169 0.400000 +1372 3190 0.400000 +1373 97 0.400000 +1373 107 0.400000 +1373 113 0.400000 +1373 114 0.400000 +1373 118 0.400000 +1373 168 0.400000 +1373 245 0.400000 +1373 279 0.400000 +1373 300 0.400000 +1373 362 0.400000 +1373 399 0.400000 +1373 419 0.400000 +1373 422 0.400000 +1373 470 0.400000 +1373 534 0.400000 +1373 603 0.400000 +1373 630 0.400000 +1373 698 0.400000 +1373 829 0.400000 +1373 1061 0.400000 +1373 1065 0.400000 +1373 1088 0.400000 +1373 1098 0.400000 +1373 1129 0.400000 +1373 1167 0.400000 +1373 1180 0.400000 +1373 1202 0.400000 +1373 1224 0.400000 +1373 1435 0.400000 +1373 1451 0.400000 +1373 1489 0.400000 +1373 1495 0.400000 +1373 1553 0.400000 +1373 1609 0.400000 +1373 1649 0.400000 +1373 1681 0.400000 +1373 1756 0.400000 +1373 1892 0.400000 +1373 1941 0.400000 +1373 1947 0.400000 +1373 2152 0.400000 +1373 2158 0.400000 +1373 2164 0.400000 +1373 2170 0.400000 +1373 2218 0.400000 +1373 2270 0.400000 +1373 2408 0.400000 +1373 2591 0.400000 +1373 2618 0.400000 +1373 2637 0.400000 +1373 2680 0.400000 +1373 2695 0.400000 +1373 2738 0.400000 +1373 2760 0.400000 +1373 2785 0.400000 +1373 2795 0.400000 +1373 2817 0.400000 +1373 2857 0.400000 +1373 2940 0.400000 +1373 2995 0.400000 +1373 3077 0.400000 +1373 3096 0.400000 +1374 13 0.400000 +1374 82 0.400000 +1374 103 0.400000 +1374 122 0.400000 +1374 201 0.400000 +1374 210 0.400000 +1374 263 0.400000 +1374 319 0.400000 +1374 457 0.400000 +1374 531 0.400000 +1374 535 0.400000 +1374 537 0.400000 +1374 546 0.400000 +1374 669 0.400000 +1374 713 0.400000 +1374 810 0.400000 +1374 840 0.400000 +1374 846 0.400000 +1374 967 0.400000 +1374 984 0.400000 +1374 1040 0.400000 +1374 1100 0.400000 +1374 1104 0.400000 +1374 1108 0.400000 +1374 1176 0.400000 +1374 1203 0.400000 +1374 1244 0.400000 +1374 1245 0.400000 +1374 1262 0.400000 +1374 1317 0.400000 +1374 1345 0.400000 +1374 1429 0.400000 +1374 1457 0.400000 +1374 1461 0.400000 +1374 1490 0.400000 +1374 1756 0.400000 +1374 1784 0.400000 +1374 1805 0.400000 +1374 1848 0.400000 +1374 1930 0.400000 +1374 2084 0.400000 +1374 2100 0.400000 +1374 2123 0.400000 +1374 2318 0.400000 +1374 2438 0.400000 +1374 2500 0.400000 +1374 2540 0.400000 +1374 2545 0.400000 +1374 2652 0.400000 +1374 2710 0.400000 +1374 2760 0.400000 +1374 2913 0.400000 +1374 2945 0.400000 +1374 2954 0.400000 +1374 2961 0.400000 +1374 3002 0.400000 +1374 3044 0.400000 +1374 3061 0.400000 +1374 3068 0.400000 +1374 3126 0.400000 +1374 3165 0.400000 +1375 5 0.400000 +1375 24 0.400000 +1375 30 0.400000 +1375 50 0.400000 +1375 181 0.400000 +1375 191 0.400000 +1375 223 0.400000 +1375 226 0.400000 +1375 287 0.400000 +1375 402 0.400000 +1375 429 0.400000 +1375 435 0.400000 +1375 552 0.400000 +1375 779 0.400000 +1375 880 0.400000 +1375 896 0.400000 +1375 950 0.400000 +1375 1086 0.400000 +1375 1097 0.400000 +1375 1354 0.400000 +1375 1394 0.400000 +1375 1464 0.400000 +1375 1490 0.400000 +1375 1506 0.400000 +1375 1541 0.400000 +1375 1556 0.400000 +1375 1568 0.400000 +1375 1619 0.400000 +1375 1633 0.400000 +1375 1674 0.400000 +1375 1717 0.400000 +1375 1740 0.400000 +1375 1778 0.400000 +1375 1984 0.400000 +1375 2085 0.400000 +1375 2138 0.400000 +1375 2161 0.400000 +1375 2196 0.400000 +1375 2239 0.400000 +1375 2391 0.400000 +1375 2440 0.400000 +1375 2567 0.400000 +1375 2602 0.400000 +1375 2615 0.400000 +1375 2693 0.400000 +1375 2762 0.400000 +1375 2800 0.400000 +1375 2821 0.400000 +1375 2927 0.400000 +1375 2953 0.400000 +1375 3069 0.400000 +1375 3125 0.400000 +1375 3175 0.400000 +1376 41 0.400000 +1376 49 0.400000 +1376 63 0.400000 +1376 109 0.400000 +1376 145 0.400000 +1376 263 0.400000 +1376 336 0.400000 +1376 400 0.400000 +1376 416 0.400000 +1376 451 0.400000 +1376 488 0.400000 +1376 500 0.400000 +1376 551 0.400000 +1376 631 0.400000 +1376 658 0.400000 +1376 867 0.400000 +1376 946 0.400000 +1376 1031 0.400000 +1376 1042 0.400000 +1376 1076 0.400000 +1376 1171 0.400000 +1376 1272 0.400000 +1376 1275 0.400000 +1376 1409 0.400000 +1376 1509 0.400000 +1376 1562 0.400000 +1376 1584 0.400000 +1376 1629 0.400000 +1376 1727 0.400000 +1376 1786 0.400000 +1376 1853 0.400000 +1376 1855 0.400000 +1376 1909 0.400000 +1376 1950 0.400000 +1376 2064 0.400000 +1376 2088 0.400000 +1376 2109 0.400000 +1376 2141 0.400000 +1376 2165 0.400000 +1376 2245 0.400000 +1376 2306 0.400000 +1376 2311 0.400000 +1376 2368 0.400000 +1376 2392 0.400000 +1376 2427 0.400000 +1376 2465 0.400000 +1376 2482 0.400000 +1376 2493 0.400000 +1376 2497 0.400000 +1376 2724 0.400000 +1376 2803 0.400000 +1376 2842 0.400000 +1376 2899 0.400000 +1376 3082 0.400000 +1376 3088 0.400000 +1376 3101 0.400000 +1377 147 0.400000 +1377 158 0.400000 +1377 174 0.400000 +1377 257 0.400000 +1377 274 0.400000 +1377 276 0.400000 +1377 286 0.400000 +1377 310 0.400000 +1377 354 0.400000 +1377 379 0.400000 +1377 415 0.400000 +1377 442 0.400000 +1377 515 0.400000 +1377 584 0.400000 +1377 641 0.400000 +1377 643 0.400000 +1377 695 0.400000 +1377 790 0.400000 +1377 855 0.400000 +1377 890 0.400000 +1377 1004 0.400000 +1377 1005 0.400000 +1377 1010 0.400000 +1377 1068 0.400000 +1377 1097 0.400000 +1377 1196 0.400000 +1377 1321 0.400000 +1377 1324 0.400000 +1377 1331 0.400000 +1377 1345 0.400000 +1377 1350 0.400000 +1377 1438 0.400000 +1377 1453 0.400000 +1377 1549 0.400000 +1377 1630 0.400000 +1377 1649 0.400000 +1377 1664 0.400000 +1377 1677 0.400000 +1377 1703 0.400000 +1377 1790 0.400000 +1377 1812 0.400000 +1377 1821 0.400000 +1377 1921 0.400000 +1377 1955 0.400000 +1377 1998 0.400000 +1377 2057 0.400000 +1377 2163 0.400000 +1377 2231 0.400000 +1377 2240 0.400000 +1377 2256 0.400000 +1377 2302 0.400000 +1377 2311 0.400000 +1377 2318 0.400000 +1377 2388 0.400000 +1377 2443 0.400000 +1377 2475 0.400000 +1377 2510 0.400000 +1377 2786 0.400000 +1377 2825 0.400000 +1377 2872 0.400000 +1377 2894 0.400000 +1377 2903 0.400000 +1377 2935 0.400000 +1377 3023 0.400000 +1377 3061 0.400000 +1378 72 0.400000 +1378 124 0.400000 +1378 130 0.400000 +1378 151 0.400000 +1378 193 0.400000 +1378 290 0.400000 +1378 298 0.400000 +1378 373 0.400000 +1378 383 0.400000 +1378 432 0.400000 +1378 508 0.400000 +1378 596 0.400000 +1378 606 0.400000 +1378 811 0.400000 +1378 955 0.400000 +1378 961 0.400000 +1378 1022 0.400000 +1378 1081 0.400000 +1378 1259 0.400000 +1378 1266 0.400000 +1378 1319 0.400000 +1378 1495 0.400000 +1378 1566 0.400000 +1378 1685 0.400000 +1378 1692 0.400000 +1378 1788 0.400000 +1378 1804 0.400000 +1378 1868 0.400000 +1378 1910 0.400000 +1378 1936 0.400000 +1378 1939 0.400000 +1378 2011 0.400000 +1378 2047 0.400000 +1378 2049 0.400000 +1378 2061 0.400000 +1378 2064 0.400000 +1378 2080 0.400000 +1378 2096 0.400000 +1378 2165 0.400000 +1378 2251 0.400000 +1378 2268 0.400000 +1378 2325 0.400000 +1378 2357 0.400000 +1378 2408 0.400000 +1378 2457 0.400000 +1378 2468 0.400000 +1378 2618 0.400000 +1378 2628 0.400000 +1378 2750 0.400000 +1378 2776 0.400000 +1378 2869 0.400000 +1378 2900 0.400000 +1378 2992 0.400000 +1378 3151 0.400000 +1378 3172 0.400000 +1379 73 0.400000 +1379 83 0.400000 +1379 198 0.400000 +1379 251 0.400000 +1379 274 0.400000 +1379 282 0.400000 +1379 372 0.400000 +1379 496 0.400000 +1379 509 0.400000 +1379 528 0.400000 +1379 576 0.400000 +1379 585 0.400000 +1379 616 0.400000 +1379 637 0.400000 +1379 684 0.400000 +1379 703 0.400000 +1379 767 0.400000 +1379 772 0.400000 +1379 781 0.400000 +1379 873 0.400000 +1379 993 0.400000 +1379 1048 0.400000 +1379 1077 0.400000 +1379 1100 0.400000 +1379 1128 0.400000 +1379 1212 0.400000 +1379 1215 0.400000 +1379 1260 0.400000 +1379 1337 0.400000 +1379 1350 0.400000 +1379 1425 0.400000 +1379 1434 0.400000 +1379 1438 0.400000 +1379 1491 0.400000 +1379 1496 0.400000 +1379 1665 0.400000 +1379 1698 0.400000 +1379 1699 0.400000 +1379 1733 0.400000 +1379 1736 0.400000 +1379 1788 0.400000 +1379 1894 0.400000 +1379 1904 0.400000 +1379 1908 0.400000 +1379 1985 0.400000 +1379 2049 0.400000 +1379 2084 0.400000 +1379 2116 0.400000 +1379 2315 0.400000 +1379 2380 0.400000 +1379 2386 0.400000 +1379 2463 0.400000 +1379 2465 0.400000 +1379 2495 0.400000 +1379 2551 0.400000 +1379 2607 0.400000 +1379 2650 0.400000 +1379 2659 0.400000 +1379 2716 0.400000 +1379 2746 0.400000 +1379 2755 0.400000 +1379 2758 0.400000 +1379 2830 0.400000 +1379 2848 0.400000 +1379 2889 0.400000 +1379 2896 0.400000 +1379 2916 0.400000 +1379 2925 0.400000 +1379 2936 0.400000 +1379 2950 0.400000 +1379 2956 0.400000 +1379 3036 0.400000 +1379 3096 0.400000 +1379 3115 0.400000 +1380 38 0.400000 +1380 100 0.400000 +1380 107 0.400000 +1380 119 0.400000 +1380 172 0.400000 +1380 221 0.400000 +1380 261 0.400000 +1380 386 0.400000 +1380 398 0.400000 +1380 465 0.400000 +1380 553 0.400000 +1380 699 0.400000 +1380 849 0.400000 +1380 923 0.400000 +1380 1023 0.400000 +1380 1066 0.400000 +1380 1082 0.400000 +1380 1177 0.400000 +1380 1211 0.400000 +1380 1289 0.400000 +1380 1377 0.400000 +1380 1564 0.400000 +1380 1574 0.400000 +1380 1587 0.400000 +1380 1602 0.400000 +1380 1612 0.400000 +1380 1616 0.400000 +1380 1639 0.400000 +1380 1737 0.400000 +1380 1809 0.400000 +1380 1817 0.400000 +1380 1862 0.400000 +1380 1906 0.400000 +1380 1981 0.400000 +1380 1998 0.400000 +1380 2022 0.400000 +1380 2171 0.400000 +1380 2201 0.400000 +1380 2292 0.400000 +1380 2312 0.400000 +1380 2320 0.400000 +1380 2367 0.400000 +1380 2393 0.400000 +1380 2403 0.400000 +1380 2443 0.400000 +1380 2464 0.400000 +1380 2522 0.400000 +1380 2532 0.400000 +1380 2638 0.400000 +1380 2716 0.400000 +1380 2822 0.400000 +1380 2897 0.400000 +1380 2927 0.400000 +1380 3064 0.400000 +1380 3087 0.400000 +1380 3113 0.400000 +1380 3133 0.400000 +1380 3136 0.400000 +1381 120 0.400000 +1381 152 0.400000 +1381 216 0.400000 +1381 251 0.400000 +1381 389 0.400000 +1381 413 0.400000 +1381 495 0.400000 +1381 569 0.400000 +1381 682 0.400000 +1381 722 0.400000 +1381 745 0.400000 +1381 763 0.400000 +1381 909 0.400000 +1381 1018 0.400000 +1381 1024 0.400000 +1381 1044 0.400000 +1381 1125 0.400000 +1381 1127 0.400000 +1381 1141 0.400000 +1381 1217 0.400000 +1381 1263 0.400000 +1381 1394 0.400000 +1381 1409 0.400000 +1381 1480 0.400000 +1381 1543 0.400000 +1381 1562 0.400000 +1381 1625 0.400000 +1381 1754 0.400000 +1381 1793 0.400000 +1381 1805 0.400000 +1381 1832 0.400000 +1381 1839 0.400000 +1381 1916 0.400000 +1381 1918 0.400000 +1381 1940 0.400000 +1381 1958 0.400000 +1381 1989 0.400000 +1381 2045 0.400000 +1381 2076 0.400000 +1381 2128 0.400000 +1381 2216 0.400000 +1381 2252 0.400000 +1381 2402 0.400000 +1381 2442 0.400000 +1381 2456 0.400000 +1381 2528 0.400000 +1381 2542 0.400000 +1381 2590 0.400000 +1381 2619 0.400000 +1381 2789 0.400000 +1381 2833 0.400000 +1381 2855 0.400000 +1381 2940 0.400000 +1381 2946 0.400000 +1381 2951 0.400000 +1381 3069 0.400000 +1381 3088 0.400000 +1381 3111 0.400000 +1381 3174 0.400000 +1382 106 0.400000 +1382 140 0.400000 +1382 303 0.400000 +1382 323 0.400000 +1382 332 0.400000 +1382 333 0.400000 +1382 355 0.400000 +1382 358 0.400000 +1382 461 0.400000 +1382 486 0.400000 +1382 558 0.400000 +1382 590 0.400000 +1382 753 0.400000 +1382 758 0.400000 +1382 843 0.400000 +1382 955 0.400000 +1382 992 0.400000 +1382 1054 0.400000 +1382 1109 0.400000 +1382 1216 0.400000 +1382 1224 0.400000 +1382 1275 0.400000 +1382 1324 0.400000 +1382 1345 0.400000 +1382 1363 0.400000 +1382 1394 0.400000 +1382 1443 0.400000 +1382 1479 0.400000 +1382 1483 0.400000 +1382 1493 0.400000 +1382 1509 0.400000 +1382 1510 0.400000 +1382 1525 0.400000 +1382 1598 0.400000 +1382 1690 0.400000 +1382 1843 0.400000 +1382 1902 0.400000 +1382 1925 0.400000 +1382 2039 0.400000 +1382 2192 0.400000 +1382 2195 0.400000 +1382 2231 0.400000 +1382 2242 0.400000 +1382 2246 0.400000 +1382 2247 0.400000 +1382 2314 0.400000 +1382 2335 0.400000 +1382 2340 0.400000 +1382 2390 0.400000 +1382 2440 0.400000 +1382 2456 0.400000 +1382 2463 0.400000 +1382 2475 0.400000 +1382 2521 0.400000 +1382 2540 0.400000 +1382 2553 0.400000 +1382 2621 0.400000 +1382 2626 0.400000 +1382 2693 0.400000 +1382 2701 0.400000 +1382 2744 0.400000 +1382 2823 0.400000 +1382 2994 0.400000 +1382 3026 0.400000 +1382 3186 0.400000 +1383 22 0.400000 +1383 59 0.400000 +1383 183 0.400000 +1383 200 0.400000 +1383 220 0.400000 +1383 282 0.400000 +1383 294 0.400000 +1383 356 0.400000 +1383 370 0.400000 +1383 422 0.400000 +1383 575 0.400000 +1383 579 0.400000 +1383 620 0.400000 +1383 622 0.400000 +1383 678 0.400000 +1383 733 0.400000 +1383 863 0.400000 +1383 883 0.400000 +1383 964 0.400000 +1383 983 0.400000 +1383 1131 0.400000 +1383 1155 0.400000 +1383 1174 0.400000 +1383 1274 0.400000 +1383 1327 0.400000 +1383 1341 0.400000 +1383 1386 0.400000 +1383 1422 0.400000 +1383 1448 0.400000 +1383 1490 0.400000 +1383 1642 0.400000 +1383 1764 0.400000 +1383 1789 0.400000 +1383 1918 0.400000 +1383 1986 0.400000 +1383 2009 0.400000 +1383 2021 0.400000 +1383 2087 0.400000 +1383 2125 0.400000 +1383 2175 0.400000 +1383 2228 0.400000 +1383 2387 0.400000 +1383 2464 0.400000 +1383 2522 0.400000 +1383 2523 0.400000 +1383 2643 0.400000 +1383 2792 0.400000 +1383 2820 0.400000 +1383 2891 0.400000 +1383 2952 0.400000 +1383 3012 0.400000 +1383 3067 0.400000 +1383 3153 0.400000 +1384 63 0.400000 +1384 73 0.400000 +1384 110 0.400000 +1384 169 0.400000 +1384 231 0.400000 +1384 267 0.400000 +1384 281 0.400000 +1384 342 0.400000 +1384 371 0.400000 +1384 379 0.400000 +1384 401 0.400000 +1384 417 0.400000 +1384 422 0.400000 +1384 447 0.400000 +1384 487 0.400000 +1384 572 0.400000 +1384 591 0.400000 +1384 601 0.400000 +1384 753 0.400000 +1384 759 0.400000 +1384 770 0.400000 +1384 778 0.400000 +1384 813 0.400000 +1384 818 0.400000 +1384 865 0.400000 +1384 866 0.400000 +1384 869 0.400000 +1384 874 0.400000 +1384 918 0.400000 +1384 1008 0.400000 +1384 1009 0.400000 +1384 1011 0.400000 +1384 1031 0.400000 +1384 1048 0.400000 +1384 1078 0.400000 +1384 1181 0.400000 +1384 1216 0.400000 +1384 1274 0.400000 +1384 1320 0.400000 +1384 1380 0.400000 +1384 1470 0.400000 +1384 1595 0.400000 +1384 1597 0.400000 +1384 1747 0.400000 +1384 1755 0.400000 +1384 1826 0.400000 +1384 1929 0.400000 +1384 2050 0.400000 +1384 2055 0.400000 +1384 2145 0.400000 +1384 2279 0.400000 +1384 2300 0.400000 +1384 2322 0.400000 +1384 2377 0.400000 +1384 2383 0.400000 +1384 2394 0.400000 +1384 2423 0.400000 +1384 2520 0.400000 +1384 2567 0.400000 +1384 2618 0.400000 +1384 2677 0.400000 +1384 2766 0.400000 +1384 2833 0.400000 +1384 2923 0.400000 +1384 2965 0.400000 +1384 2968 0.400000 +1384 3053 0.400000 +1384 3058 0.400000 +1384 3105 0.400000 +1384 3117 0.400000 +1384 3186 0.400000 +1385 28 0.400000 +1385 45 0.400000 +1385 65 0.400000 +1385 81 0.400000 +1385 98 0.400000 +1385 118 0.400000 +1385 248 0.400000 +1385 304 0.400000 +1385 398 0.400000 +1385 414 0.400000 +1385 442 0.400000 +1385 570 0.400000 +1385 609 0.400000 +1385 658 0.400000 +1385 664 0.400000 +1385 815 0.400000 +1385 847 0.400000 +1385 939 0.400000 +1385 1013 0.400000 +1385 1036 0.400000 +1385 1065 0.400000 +1385 1066 0.400000 +1385 1147 0.400000 +1385 1154 0.400000 +1385 1166 0.400000 +1385 1171 0.400000 +1385 1185 0.400000 +1385 1251 0.400000 +1385 1284 0.400000 +1385 1295 0.400000 +1385 1313 0.400000 +1385 1438 0.400000 +1385 1469 0.400000 +1385 1508 0.400000 +1385 1588 0.400000 +1385 1598 0.400000 +1385 1621 0.400000 +1385 1628 0.400000 +1385 1637 0.400000 +1385 1653 0.400000 +1385 1684 0.400000 +1385 1701 0.400000 +1385 1739 0.400000 +1385 1749 0.400000 +1385 1898 0.400000 +1385 2022 0.400000 +1385 2025 0.400000 +1385 2047 0.400000 +1385 2111 0.400000 +1385 2123 0.400000 +1385 2205 0.400000 +1385 2251 0.400000 +1385 2259 0.400000 +1385 2262 0.400000 +1385 2329 0.400000 +1385 2334 0.400000 +1385 2347 0.400000 +1385 2350 0.400000 +1385 2431 0.400000 +1385 2565 0.400000 +1385 2616 0.400000 +1385 2667 0.400000 +1385 2721 0.400000 +1385 2734 0.400000 +1385 2796 0.400000 +1385 2798 0.400000 +1385 2825 0.400000 +1385 2848 0.400000 +1385 2913 0.400000 +1385 2986 0.400000 +1385 3009 0.400000 +1385 3080 0.400000 +1385 3084 0.400000 +1385 3094 0.400000 +1385 3109 0.400000 +1385 3137 0.400000 +1385 3196 0.400000 +1385 3197 0.400000 +1386 104 0.400000 +1386 151 0.400000 +1386 161 0.400000 +1386 170 0.400000 +1386 183 0.400000 +1386 230 0.400000 +1386 283 0.400000 +1386 287 0.400000 +1386 344 0.400000 +1386 348 0.400000 +1386 355 0.400000 +1386 429 0.400000 +1386 482 0.400000 +1386 521 0.400000 +1386 631 0.400000 +1386 684 0.400000 +1386 692 0.400000 +1386 741 0.400000 +1386 762 0.400000 +1386 823 0.400000 +1386 904 0.400000 +1386 909 0.400000 +1386 913 0.400000 +1386 925 0.400000 +1386 1014 0.400000 +1386 1026 0.400000 +1386 1072 0.400000 +1386 1081 0.400000 +1386 1225 0.400000 +1386 1246 0.400000 +1386 1345 0.400000 +1386 1440 0.400000 +1386 1449 0.400000 +1386 1458 0.400000 +1386 1577 0.400000 +1386 1708 0.400000 +1386 1751 0.400000 +1386 1766 0.400000 +1386 1808 0.400000 +1386 1816 0.400000 +1386 1863 0.400000 +1386 1905 0.400000 +1386 1913 0.400000 +1386 1919 0.400000 +1386 1927 0.400000 +1386 1944 0.400000 +1386 1973 0.400000 +1386 1999 0.400000 +1386 2039 0.400000 +1386 2137 0.400000 +1386 2155 0.400000 +1386 2174 0.400000 +1386 2196 0.400000 +1386 2275 0.400000 +1386 2331 0.400000 +1386 2478 0.400000 +1386 2522 0.400000 +1386 2537 0.400000 +1386 2578 0.400000 +1386 2666 0.400000 +1386 2675 0.400000 +1386 2709 0.400000 +1386 2714 0.400000 +1386 2747 0.400000 +1386 2778 0.400000 +1386 2800 0.400000 +1386 2834 0.400000 +1386 2902 0.400000 +1386 2913 0.400000 +1386 2957 0.400000 +1386 2976 0.400000 +1386 3026 0.400000 +1386 3063 0.400000 +1387 110 0.400000 +1387 189 0.400000 +1387 203 0.400000 +1387 212 0.400000 +1387 252 0.400000 +1387 284 0.400000 +1387 301 0.400000 +1387 444 0.400000 +1387 543 0.400000 +1387 560 0.400000 +1387 662 0.400000 +1387 681 0.400000 +1387 713 0.400000 +1387 778 0.400000 +1387 849 0.400000 +1387 934 0.400000 +1387 968 0.400000 +1387 993 0.400000 +1387 1017 0.400000 +1387 1054 0.400000 +1387 1102 0.400000 +1387 1240 0.400000 +1387 1256 0.400000 +1387 1290 0.400000 +1387 1344 0.400000 +1387 1378 0.400000 +1387 1398 0.400000 +1387 1403 0.400000 +1387 1423 0.400000 +1387 1545 0.400000 +1387 1548 0.400000 +1387 1550 0.400000 +1387 1559 0.400000 +1387 1747 0.400000 +1387 1792 0.400000 +1387 1810 0.400000 +1387 1901 0.400000 +1387 1938 0.400000 +1387 1963 0.400000 +1387 1975 0.400000 +1387 2012 0.400000 +1387 2026 0.400000 +1387 2035 0.400000 +1387 2158 0.400000 +1387 2195 0.400000 +1387 2364 0.400000 +1387 2484 0.400000 +1387 2498 0.400000 +1387 2542 0.400000 +1387 2563 0.400000 +1387 2584 0.400000 +1387 2627 0.400000 +1387 2635 0.400000 +1387 2707 0.400000 +1387 2722 0.400000 +1387 2736 0.400000 +1387 2746 0.400000 +1387 2827 0.400000 +1387 2885 0.400000 +1387 2960 0.400000 +1387 3036 0.400000 +1387 3039 0.400000 +1387 3137 0.400000 +1388 22 0.400000 +1388 112 0.400000 +1388 251 0.400000 +1388 272 0.400000 +1388 288 0.400000 +1388 351 0.400000 +1388 355 0.400000 +1388 389 0.400000 +1388 551 0.400000 +1388 553 0.400000 +1388 650 0.400000 +1388 707 0.400000 +1388 765 0.400000 +1388 783 0.400000 +1388 808 0.400000 +1388 828 0.400000 +1388 944 0.400000 +1388 950 0.400000 +1388 964 0.400000 +1388 1006 0.400000 +1388 1067 0.400000 +1388 1082 0.400000 +1388 1110 0.400000 +1388 1131 0.400000 +1388 1149 0.400000 +1388 1169 0.400000 +1388 1177 0.400000 +1388 1257 0.400000 +1388 1410 0.400000 +1388 1465 0.400000 +1388 1468 0.400000 +1388 1482 0.400000 +1388 1498 0.400000 +1388 1554 0.400000 +1388 1569 0.400000 +1388 1594 0.400000 +1388 1597 0.400000 +1388 1611 0.400000 +1388 1631 0.400000 +1388 1634 0.400000 +1388 1777 0.400000 +1388 1811 0.400000 +1388 1826 0.400000 +1388 1849 0.400000 +1388 1874 0.400000 +1388 1880 0.400000 +1388 1928 0.400000 +1388 1958 0.400000 +1388 1980 0.400000 +1388 1989 0.400000 +1388 2052 0.400000 +1388 2058 0.400000 +1388 2077 0.400000 +1388 2174 0.400000 +1388 2194 0.400000 +1388 2235 0.400000 +1388 2276 0.400000 +1388 2296 0.400000 +1388 2322 0.400000 +1388 2403 0.400000 +1388 2406 0.400000 +1388 2469 0.400000 +1388 2526 0.400000 +1388 2534 0.400000 +1388 2568 0.400000 +1388 2581 0.400000 +1388 2628 0.400000 +1388 2632 0.400000 +1388 2652 0.400000 +1388 2661 0.400000 +1388 2760 0.400000 +1388 2770 0.400000 +1388 2844 0.400000 +1388 3008 0.400000 +1388 3032 0.400000 +1388 3125 0.400000 +1388 3127 0.400000 +1388 3147 0.400000 +1388 3151 0.400000 +1389 31 0.400000 +1389 84 0.400000 +1389 107 0.400000 +1389 177 0.400000 +1389 186 0.400000 +1389 264 0.400000 +1389 278 0.400000 +1389 281 0.400000 +1389 290 0.400000 +1389 412 0.400000 +1389 564 0.400000 +1389 639 0.400000 +1389 641 0.400000 +1389 658 0.400000 +1389 816 0.400000 +1389 904 0.400000 +1389 999 0.400000 +1389 1096 0.400000 +1389 1097 0.400000 +1389 1135 0.400000 +1389 1144 0.400000 +1389 1352 0.400000 +1389 1355 0.400000 +1389 1419 0.400000 +1389 1436 0.400000 +1389 1449 0.400000 +1389 1477 0.400000 +1389 1482 0.400000 +1389 1483 0.400000 +1389 1549 0.400000 +1389 1564 0.400000 +1389 1711 0.400000 +1389 1721 0.400000 +1389 1730 0.400000 +1389 1845 0.400000 +1389 1873 0.400000 +1389 1906 0.400000 +1389 1935 0.400000 +1389 1946 0.400000 +1389 2095 0.400000 +1389 2128 0.400000 +1389 2149 0.400000 +1389 2184 0.400000 +1389 2185 0.400000 +1389 2254 0.400000 +1389 2276 0.400000 +1389 2346 0.400000 +1389 2364 0.400000 +1389 2459 0.400000 +1389 2604 0.400000 +1389 2672 0.400000 +1389 2758 0.400000 +1389 2768 0.400000 +1389 2803 0.400000 +1389 2837 0.400000 +1389 2922 0.400000 +1389 3017 0.400000 +1389 3073 0.400000 +1389 3085 0.400000 +1389 3102 0.400000 +1389 3106 0.400000 +1389 3169 0.400000 +1390 29 0.400000 +1390 134 0.400000 +1390 301 0.400000 +1390 334 0.400000 +1390 386 0.400000 +1390 409 0.400000 +1390 455 0.400000 +1390 553 0.400000 +1390 558 0.400000 +1390 634 0.400000 +1390 653 0.400000 +1390 718 0.400000 +1390 734 0.400000 +1390 744 0.400000 +1390 779 0.400000 +1390 1006 0.400000 +1390 1052 0.400000 +1390 1148 0.400000 +1390 1193 0.400000 +1390 1199 0.400000 +1390 1256 0.400000 +1390 1391 0.400000 +1390 1404 0.400000 +1390 1653 0.400000 +1390 1707 0.400000 +1390 1743 0.400000 +1390 1779 0.400000 +1390 1806 0.400000 +1390 1837 0.400000 +1390 1884 0.400000 +1390 1907 0.400000 +1390 1929 0.400000 +1390 1960 0.400000 +1390 2012 0.400000 +1390 2046 0.400000 +1390 2065 0.400000 +1390 2126 0.400000 +1390 2169 0.400000 +1390 2179 0.400000 +1390 2246 0.400000 +1390 2272 0.400000 +1390 2274 0.400000 +1390 2369 0.400000 +1390 2393 0.400000 +1390 2449 0.400000 +1390 2466 0.400000 +1390 2567 0.400000 +1390 2596 0.400000 +1390 2663 0.400000 +1390 2665 0.400000 +1390 2698 0.400000 +1390 2714 0.400000 +1390 2718 0.400000 +1390 2742 0.400000 +1390 2867 0.400000 +1390 2887 0.400000 +1390 3052 0.400000 +1390 3069 0.400000 +1390 3078 0.400000 +1390 3113 0.400000 +1390 3126 0.400000 +1390 3174 0.400000 +1391 4 0.400000 +1391 25 0.400000 +1391 73 0.400000 +1391 95 0.400000 +1391 233 0.400000 +1391 277 0.400000 +1391 287 0.400000 +1391 319 0.400000 +1391 360 0.400000 +1391 396 0.400000 +1391 568 0.400000 +1391 578 0.400000 +1391 617 0.400000 +1391 654 0.400000 +1391 737 0.400000 +1391 770 0.400000 +1391 816 0.400000 +1391 849 0.400000 +1391 874 0.400000 +1391 879 0.400000 +1391 903 0.400000 +1391 909 0.400000 +1391 917 0.400000 +1391 976 0.400000 +1391 1035 0.400000 +1391 1060 0.400000 +1391 1065 0.400000 +1391 1082 0.400000 +1391 1113 0.400000 +1391 1178 0.400000 +1391 1215 0.400000 +1391 1230 0.400000 +1391 1241 0.400000 +1391 1252 0.400000 +1391 1335 0.400000 +1391 1378 0.400000 +1391 1389 0.400000 +1391 1394 0.400000 +1391 1499 0.400000 +1391 1652 0.400000 +1391 1658 0.400000 +1391 1715 0.400000 +1391 1757 0.400000 +1391 1804 0.400000 +1391 1926 0.400000 +1391 2034 0.400000 +1391 2049 0.400000 +1391 2068 0.400000 +1391 2082 0.400000 +1391 2248 0.400000 +1391 2273 0.400000 +1391 2275 0.400000 +1391 2290 0.400000 +1391 2317 0.400000 +1391 2354 0.400000 +1391 2395 0.400000 +1391 2443 0.400000 +1391 2481 0.400000 +1391 2632 0.400000 +1391 2665 0.400000 +1391 2672 0.400000 +1391 2712 0.400000 +1391 2730 0.400000 +1391 2752 0.400000 +1391 2802 0.400000 +1391 2911 0.400000 +1391 2947 0.400000 +1391 2995 0.400000 +1391 3068 0.400000 +1391 3073 0.400000 +1391 3122 0.400000 +1391 3153 0.400000 +1391 3191 0.400000 +1392 11 0.400000 +1392 20 0.400000 +1392 37 0.400000 +1392 184 0.400000 +1392 295 0.400000 +1392 319 0.400000 +1392 353 0.400000 +1392 455 0.400000 +1392 478 0.400000 +1392 656 0.400000 +1392 664 0.400000 +1392 737 0.400000 +1392 759 0.400000 +1392 763 0.400000 +1392 767 0.400000 +1392 788 0.400000 +1392 970 0.400000 +1392 997 0.400000 +1392 999 0.400000 +1392 1006 0.400000 +1392 1033 0.400000 +1392 1289 0.400000 +1392 1304 0.400000 +1392 1310 0.400000 +1392 1341 0.400000 +1392 1342 0.400000 +1392 1401 0.400000 +1392 1481 0.400000 +1392 1561 0.400000 +1392 1588 0.400000 +1392 1615 0.400000 +1392 1640 0.400000 +1392 1656 0.400000 +1392 1665 0.400000 +1392 1674 0.400000 +1392 1680 0.400000 +1392 1765 0.400000 +1392 1774 0.400000 +1392 1922 0.400000 +1392 1931 0.400000 +1392 1935 0.400000 +1392 2000 0.400000 +1392 2078 0.400000 +1392 2095 0.400000 +1392 2145 0.400000 +1392 2163 0.400000 +1392 2174 0.400000 +1392 2177 0.400000 +1392 2267 0.400000 +1392 2448 0.400000 +1392 2520 0.400000 +1392 2556 0.400000 +1392 2569 0.400000 +1392 2576 0.400000 +1392 2775 0.400000 +1392 2841 0.400000 +1392 2844 0.400000 +1392 2908 0.400000 +1392 2942 0.400000 +1392 3013 0.400000 +1392 3101 0.400000 +1393 22 0.400000 +1393 27 0.400000 +1393 137 0.400000 +1393 178 0.400000 +1393 186 0.400000 +1393 204 0.400000 +1393 325 0.400000 +1393 385 0.400000 +1393 429 0.400000 +1393 502 0.400000 +1393 552 0.400000 +1393 589 0.400000 +1393 789 0.400000 +1393 827 0.400000 +1393 913 0.400000 +1393 915 0.400000 +1393 999 0.400000 +1393 1096 0.400000 +1393 1157 0.400000 +1393 1170 0.400000 +1393 1221 0.400000 +1393 1300 0.400000 +1393 1417 0.400000 +1393 1426 0.400000 +1393 1521 0.400000 +1393 1542 0.400000 +1393 1594 0.400000 +1393 1610 0.400000 +1393 1612 0.400000 +1393 1654 0.400000 +1393 1697 0.400000 +1393 1700 0.400000 +1393 1766 0.400000 +1393 1908 0.400000 +1393 1924 0.400000 +1393 1927 0.400000 +1393 1929 0.400000 +1393 1936 0.400000 +1393 2286 0.400000 +1393 2308 0.400000 +1393 2375 0.400000 +1393 2389 0.400000 +1393 2429 0.400000 +1393 2619 0.400000 +1393 2660 0.400000 +1393 2831 0.400000 +1393 2955 0.400000 +1393 3078 0.400000 +1393 3096 0.400000 +1394 27 0.400000 +1394 47 0.400000 +1394 64 0.400000 +1394 166 0.400000 +1394 330 0.400000 +1394 364 0.400000 +1394 453 0.400000 +1394 573 0.400000 +1394 696 0.400000 +1394 730 0.400000 +1394 804 0.400000 +1394 833 0.400000 +1394 951 0.400000 +1394 982 0.400000 +1394 1108 0.400000 +1394 1194 0.400000 +1394 1199 0.400000 +1394 1221 0.400000 +1394 1384 0.400000 +1394 1439 0.400000 +1394 1459 0.400000 +1394 1534 0.400000 +1394 1566 0.400000 +1394 1632 0.400000 +1394 1641 0.400000 +1394 1658 0.400000 +1394 1680 0.400000 +1394 1694 0.400000 +1394 1771 0.400000 +1394 1846 0.400000 +1394 1868 0.400000 +1394 1949 0.400000 +1394 1964 0.400000 +1394 1967 0.400000 +1394 2004 0.400000 +1394 2027 0.400000 +1394 2104 0.400000 +1394 2241 0.400000 +1394 2253 0.400000 +1394 2302 0.400000 +1394 2332 0.400000 +1394 2414 0.400000 +1394 2457 0.400000 +1394 2466 0.400000 +1394 2473 0.400000 +1394 2476 0.400000 +1394 2509 0.400000 +1394 2568 0.400000 +1394 2672 0.400000 +1394 2710 0.400000 +1394 2746 0.400000 +1394 2759 0.400000 +1394 2775 0.400000 +1394 2818 0.400000 +1394 2870 0.400000 +1394 2899 0.400000 +1394 2924 0.400000 +1394 2925 0.400000 +1394 3099 0.400000 +1394 3166 0.400000 +1394 3171 0.400000 +1395 98 0.400000 +1395 205 0.400000 +1395 237 0.400000 +1395 248 0.400000 +1395 254 0.400000 +1395 310 0.400000 +1395 391 0.400000 +1395 558 0.400000 +1395 571 0.400000 +1395 595 0.400000 +1395 624 0.400000 +1395 627 0.400000 +1395 711 0.400000 +1395 717 0.400000 +1395 729 0.400000 +1395 762 0.400000 +1395 770 0.400000 +1395 857 0.400000 +1395 859 0.400000 +1395 942 0.400000 +1395 981 0.400000 +1395 998 0.400000 +1395 1005 0.400000 +1395 1075 0.400000 +1395 1132 0.400000 +1395 1180 0.400000 +1395 1216 0.400000 +1395 1241 0.400000 +1395 1266 0.400000 +1395 1345 0.400000 +1395 1352 0.400000 +1395 1364 0.400000 +1395 1441 0.400000 +1395 1444 0.400000 +1395 1494 0.400000 +1395 1543 0.400000 +1395 1564 0.400000 +1395 1637 0.400000 +1395 1726 0.400000 +1395 1731 0.400000 +1395 1784 0.400000 +1395 1863 0.400000 +1395 1888 0.400000 +1395 1932 0.400000 +1395 1940 0.400000 +1395 1999 0.400000 +1395 2015 0.400000 +1395 2089 0.400000 +1395 2257 0.400000 +1395 2380 0.400000 +1395 2458 0.400000 +1395 2528 0.400000 +1395 2596 0.400000 +1395 2616 0.400000 +1395 2663 0.400000 +1395 2669 0.400000 +1395 2819 0.400000 +1395 2892 0.400000 +1395 2907 0.400000 +1395 3065 0.400000 +1395 3076 0.400000 +1395 3144 0.400000 +1395 3155 0.400000 +1395 3193 0.400000 +1396 121 0.400000 +1396 154 0.400000 +1396 301 0.400000 +1396 342 0.400000 +1396 362 0.400000 +1396 461 0.400000 +1396 468 0.400000 +1396 507 0.400000 +1396 513 0.400000 +1396 520 0.400000 +1396 575 0.400000 +1396 658 0.400000 +1396 686 0.400000 +1396 751 0.400000 +1396 868 0.400000 +1396 887 0.400000 +1396 903 0.400000 +1396 935 0.400000 +1396 1015 0.400000 +1396 1103 0.400000 +1396 1137 0.400000 +1396 1213 0.400000 +1396 1249 0.400000 +1396 1296 0.400000 +1396 1346 0.400000 +1396 1360 0.400000 +1396 1389 0.400000 +1396 1533 0.400000 +1396 1544 0.400000 +1396 1597 0.400000 +1396 1606 0.400000 +1396 1659 0.400000 +1396 1676 0.400000 +1396 1681 0.400000 +1396 1756 0.400000 +1396 1765 0.400000 +1396 2072 0.400000 +1396 2126 0.400000 +1396 2177 0.400000 +1396 2197 0.400000 +1396 2246 0.400000 +1396 2252 0.400000 +1396 2273 0.400000 +1396 2381 0.400000 +1396 2442 0.400000 +1396 2481 0.400000 +1396 2581 0.400000 +1396 2613 0.400000 +1396 2634 0.400000 +1396 2639 0.400000 +1396 2741 0.400000 +1396 2842 0.400000 +1396 2887 0.400000 +1396 3124 0.400000 +1396 3191 0.400000 +1397 41 0.400000 +1397 62 0.400000 +1397 136 0.400000 +1397 282 0.400000 +1397 321 0.400000 +1397 447 0.400000 +1397 463 0.400000 +1397 510 0.400000 +1397 574 0.400000 +1397 670 0.400000 +1397 709 0.400000 +1397 728 0.400000 +1397 749 0.400000 +1397 776 0.400000 +1397 806 0.400000 +1397 874 0.400000 +1397 1041 0.400000 +1397 1124 0.400000 +1397 1251 0.400000 +1397 1345 0.400000 +1397 1362 0.400000 +1397 1372 0.400000 +1397 1399 0.400000 +1397 1437 0.400000 +1397 1438 0.400000 +1397 1456 0.400000 +1397 1569 0.400000 +1397 1649 0.400000 +1397 1651 0.400000 +1397 1730 0.400000 +1397 1732 0.400000 +1397 1747 0.400000 +1397 1804 0.400000 +1397 1807 0.400000 +1397 2029 0.400000 +1397 2073 0.400000 +1397 2104 0.400000 +1397 2134 0.400000 +1397 2267 0.400000 +1397 2309 0.400000 +1397 2336 0.400000 +1397 2428 0.400000 +1397 2433 0.400000 +1397 2439 0.400000 +1397 2453 0.400000 +1397 2463 0.400000 +1397 2469 0.400000 +1397 2477 0.400000 +1397 2485 0.400000 +1397 2523 0.400000 +1397 2554 0.400000 +1397 2627 0.400000 +1397 2706 0.400000 +1397 2798 0.400000 +1397 2889 0.400000 +1397 2893 0.400000 +1397 2915 0.400000 +1397 2946 0.400000 +1397 2949 0.400000 +1397 2987 0.400000 +1397 3012 0.400000 +1397 3131 0.400000 +1397 3141 0.400000 +1397 3150 0.400000 +1397 3176 0.400000 +1397 3195 0.400000 +1398 4 0.400000 +1398 10 0.400000 +1398 23 0.400000 +1398 57 0.400000 +1398 155 0.400000 +1398 177 0.400000 +1398 215 0.400000 +1398 263 0.400000 +1398 304 0.400000 +1398 389 0.400000 +1398 446 0.400000 +1398 454 0.400000 +1398 455 0.400000 +1398 478 0.400000 +1398 492 0.400000 +1398 546 0.400000 +1398 584 0.400000 +1398 591 0.400000 +1398 605 0.400000 +1398 610 0.400000 +1398 683 0.400000 +1398 703 0.400000 +1398 799 0.400000 +1398 832 0.400000 +1398 843 0.400000 +1398 853 0.400000 +1398 899 0.400000 +1398 957 0.400000 +1398 1015 0.400000 +1398 1077 0.400000 +1398 1159 0.400000 +1398 1234 0.400000 +1398 1277 0.400000 +1398 1433 0.400000 +1398 1452 0.400000 +1398 1462 0.400000 +1398 1471 0.400000 +1398 1482 0.400000 +1398 1489 0.400000 +1398 1496 0.400000 +1398 1596 0.400000 +1398 1729 0.400000 +1398 1776 0.400000 +1398 1810 0.400000 +1398 1853 0.400000 +1398 1856 0.400000 +1398 1924 0.400000 +1398 1949 0.400000 +1398 1979 0.400000 +1398 2003 0.400000 +1398 2024 0.400000 +1398 2076 0.400000 +1398 2086 0.400000 +1398 2094 0.400000 +1398 2181 0.400000 +1398 2288 0.400000 +1398 2303 0.400000 +1398 2367 0.400000 +1398 2435 0.400000 +1398 2525 0.400000 +1398 2531 0.400000 +1398 2533 0.400000 +1398 2596 0.400000 +1398 2607 0.400000 +1398 2811 0.400000 +1398 2846 0.400000 +1398 2874 0.400000 +1398 2923 0.400000 +1398 2953 0.400000 +1398 3023 0.400000 +1398 3123 0.400000 +1398 3136 0.400000 +1398 3193 0.400000 +1399 9 0.400000 +1399 52 0.400000 +1399 132 0.400000 +1399 163 0.400000 +1399 168 0.400000 +1399 325 0.400000 +1399 360 0.400000 +1399 451 0.400000 +1399 546 0.400000 +1399 560 0.400000 +1399 601 0.400000 +1399 602 0.400000 +1399 605 0.400000 +1399 636 0.400000 +1399 648 0.400000 +1399 659 0.400000 +1399 682 0.400000 +1399 702 0.400000 +1399 975 0.400000 +1399 1019 0.400000 +1399 1085 0.400000 +1399 1098 0.400000 +1399 1146 0.400000 +1399 1147 0.400000 +1399 1171 0.400000 +1399 1356 0.400000 +1399 1415 0.400000 +1399 1440 0.400000 +1399 1465 0.400000 +1399 1558 0.400000 +1399 1591 0.400000 +1399 1622 0.400000 +1399 1666 0.400000 +1399 1749 0.400000 +1399 1816 0.400000 +1399 1851 0.400000 +1399 1860 0.400000 +1399 1888 0.400000 +1399 1895 0.400000 +1399 1906 0.400000 +1399 2003 0.400000 +1399 2021 0.400000 +1399 2043 0.400000 +1399 2068 0.400000 +1399 2095 0.400000 +1399 2205 0.400000 +1399 2238 0.400000 +1399 2264 0.400000 +1399 2291 0.400000 +1399 2398 0.400000 +1399 2402 0.400000 +1399 2425 0.400000 +1399 2463 0.400000 +1399 2477 0.400000 +1399 2495 0.400000 +1399 2526 0.400000 +1399 2532 0.400000 +1399 2635 0.400000 +1399 2671 0.400000 +1399 2703 0.400000 +1399 2719 0.400000 +1399 2728 0.400000 +1399 2742 0.400000 +1399 2836 0.400000 +1399 2845 0.400000 +1399 2848 0.400000 +1399 2864 0.400000 +1399 2876 0.400000 +1399 2894 0.400000 +1399 2930 0.400000 +1399 3088 0.400000 +1399 3100 0.400000 +1399 3161 0.400000 +1400 69 0.400000 +1400 96 0.400000 +1400 102 0.400000 +1400 145 0.400000 +1400 162 0.400000 +1400 216 0.400000 +1400 245 0.400000 +1400 354 0.400000 +1400 447 0.400000 +1400 524 0.400000 +1400 556 0.400000 +1400 557 0.400000 +1400 572 0.400000 +1400 705 0.400000 +1400 744 0.400000 +1400 775 0.400000 +1400 777 0.400000 +1400 865 0.400000 +1400 879 0.400000 +1400 1043 0.400000 +1400 1047 0.400000 +1400 1111 0.400000 +1400 1117 0.400000 +1400 1168 0.400000 +1400 1190 0.400000 +1400 1194 0.400000 +1400 1239 0.400000 +1400 1269 0.400000 +1400 1288 0.400000 +1400 1320 0.400000 +1400 1321 0.400000 +1400 1328 0.400000 +1400 1334 0.400000 +1400 1446 0.400000 +1400 1465 0.400000 +1400 1540 0.400000 +1400 1563 0.400000 +1400 1577 0.400000 +1400 1624 0.400000 +1400 1685 0.400000 +1400 1702 0.400000 +1400 1716 0.400000 +1400 1717 0.400000 +1400 1758 0.400000 +1400 1781 0.400000 +1400 1846 0.400000 +1400 1859 0.400000 +1400 1890 0.400000 +1400 1895 0.400000 +1400 1905 0.400000 +1400 1907 0.400000 +1400 2032 0.400000 +1400 2055 0.400000 +1400 2104 0.400000 +1400 2127 0.400000 +1400 2195 0.400000 +1400 2220 0.400000 +1400 2233 0.400000 +1400 2258 0.400000 +1400 2291 0.400000 +1400 2305 0.400000 +1400 2315 0.400000 +1400 2327 0.400000 +1400 2410 0.400000 +1400 2537 0.400000 +1400 2602 0.400000 +1400 2616 0.400000 +1400 2623 0.400000 +1400 2653 0.400000 +1400 2696 0.400000 +1400 2845 0.400000 +1400 2894 0.400000 +1400 2966 0.400000 +1400 3127 0.400000 +1400 3160 0.400000 +1401 13 0.400000 +1401 16 0.400000 +1401 29 0.400000 +1401 66 0.400000 +1401 84 0.400000 +1401 107 0.400000 +1401 168 0.400000 +1401 178 0.400000 +1401 251 0.400000 +1401 252 0.400000 +1401 295 0.400000 +1401 319 0.400000 +1401 345 0.400000 +1401 353 0.400000 +1401 462 0.400000 +1401 547 0.400000 +1401 783 0.400000 +1401 815 0.400000 +1401 827 0.400000 +1401 839 0.400000 +1401 946 0.400000 +1401 978 0.400000 +1401 1003 0.400000 +1401 1089 0.400000 +1401 1092 0.400000 +1401 1095 0.400000 +1401 1248 0.400000 +1401 1253 0.400000 +1401 1330 0.400000 +1401 1434 0.400000 +1401 1435 0.400000 +1401 1483 0.400000 +1401 1505 0.400000 +1401 1572 0.400000 +1401 1576 0.400000 +1401 1610 0.400000 +1401 1626 0.400000 +1401 1672 0.400000 +1401 1701 0.400000 +1401 1812 0.400000 +1401 1889 0.400000 +1401 1899 0.400000 +1401 1903 0.400000 +1401 1904 0.400000 +1401 1944 0.400000 +1401 2042 0.400000 +1401 2140 0.400000 +1401 2148 0.400000 +1401 2151 0.400000 +1401 2179 0.400000 +1401 2348 0.400000 +1401 2387 0.400000 +1401 2444 0.400000 +1401 2446 0.400000 +1401 2474 0.400000 +1401 2610 0.400000 +1401 2667 0.400000 +1401 2688 0.400000 +1401 2740 0.400000 +1401 2836 0.400000 +1401 2867 0.400000 +1401 2918 0.400000 +1401 2931 0.400000 +1401 3038 0.400000 +1401 3068 0.400000 +1401 3135 0.400000 +1401 3162 0.400000 +1402 16 0.400000 +1402 25 0.400000 +1402 58 0.400000 +1402 113 0.400000 +1402 114 0.400000 +1402 227 0.400000 +1402 236 0.400000 +1402 284 0.400000 +1402 293 0.400000 +1402 325 0.400000 +1402 367 0.400000 +1402 384 0.400000 +1402 421 0.400000 +1402 543 0.400000 +1402 551 0.400000 +1402 572 0.400000 +1402 630 0.400000 +1402 671 0.400000 +1402 683 0.400000 +1402 717 0.400000 +1402 754 0.400000 +1402 903 0.400000 +1402 928 0.400000 +1402 1034 0.400000 +1402 1037 0.400000 +1402 1060 0.400000 +1402 1061 0.400000 +1402 1155 0.400000 +1402 1162 0.400000 +1402 1311 0.400000 +1402 1332 0.400000 +1402 1446 0.400000 +1402 1455 0.400000 +1402 1468 0.400000 +1402 1492 0.400000 +1402 1524 0.400000 +1402 1775 0.400000 +1402 1846 0.400000 +1402 1876 0.400000 +1402 1882 0.400000 +1402 1975 0.400000 +1402 2070 0.400000 +1402 2169 0.400000 +1402 2199 0.400000 +1402 2303 0.400000 +1402 2336 0.400000 +1402 2389 0.400000 +1402 2420 0.400000 +1402 2472 0.400000 +1402 2495 0.400000 +1402 2518 0.400000 +1402 2535 0.400000 +1402 2555 0.400000 +1402 2565 0.400000 +1402 2611 0.400000 +1402 2675 0.400000 +1402 2712 0.400000 +1402 2802 0.400000 +1402 2809 0.400000 +1402 2844 0.400000 +1402 2866 0.400000 +1402 2877 0.400000 +1402 3029 0.400000 +1402 3141 0.400000 +1402 3186 0.400000 +1403 25 0.400000 +1403 70 0.400000 +1403 108 0.400000 +1403 429 0.400000 +1403 564 0.400000 +1403 584 0.400000 +1403 596 0.400000 +1403 685 0.400000 +1403 760 0.400000 +1403 799 0.400000 +1403 800 0.400000 +1403 908 0.400000 +1403 947 0.400000 +1403 983 0.400000 +1403 1137 0.400000 +1403 1156 0.400000 +1403 1185 0.400000 +1403 1204 0.400000 +1403 1241 0.400000 +1403 1299 0.400000 +1403 1322 0.400000 +1403 1375 0.400000 +1403 1391 0.400000 +1403 1409 0.400000 +1403 1466 0.400000 +1403 1487 0.400000 +1403 1518 0.400000 +1403 1549 0.400000 +1403 1551 0.400000 +1403 1604 0.400000 +1403 1616 0.400000 +1403 1743 0.400000 +1403 1753 0.400000 +1403 1958 0.400000 +1403 2051 0.400000 +1403 2055 0.400000 +1403 2138 0.400000 +1403 2160 0.400000 +1403 2211 0.400000 +1403 2225 0.400000 +1403 2251 0.400000 +1403 2328 0.400000 +1403 2336 0.400000 +1403 2354 0.400000 +1403 2357 0.400000 +1403 2410 0.400000 +1403 2420 0.400000 +1403 2512 0.400000 +1403 2557 0.400000 +1403 2596 0.400000 +1403 2597 0.400000 +1403 2601 0.400000 +1403 2606 0.400000 +1403 2617 0.400000 +1403 2625 0.400000 +1403 2702 0.400000 +1403 2722 0.400000 +1403 2735 0.400000 +1403 2814 0.400000 +1403 2912 0.400000 +1403 3063 0.400000 +1403 3098 0.400000 +1403 3141 0.400000 +1403 3153 0.400000 +1403 3189 0.400000 +1404 29 0.400000 +1404 238 0.400000 +1404 252 0.400000 +1404 346 0.400000 +1404 563 0.400000 +1404 594 0.400000 +1404 730 0.400000 +1404 798 0.400000 +1404 812 0.400000 +1404 909 0.400000 +1404 917 0.400000 +1404 951 0.400000 +1404 966 0.400000 +1404 1126 0.400000 +1404 1152 0.400000 +1404 1166 0.400000 +1404 1203 0.400000 +1404 1241 0.400000 +1404 1329 0.400000 +1404 1348 0.400000 +1404 1361 0.400000 +1404 1375 0.400000 +1404 1392 0.400000 +1404 1393 0.400000 +1404 1473 0.400000 +1404 1476 0.400000 +1404 1499 0.400000 +1404 1513 0.400000 +1404 1559 0.400000 +1404 1583 0.400000 +1404 1609 0.400000 +1404 1646 0.400000 +1404 1652 0.400000 +1404 1685 0.400000 +1404 1723 0.400000 +1404 1778 0.400000 +1404 1872 0.400000 +1404 1873 0.400000 +1404 1941 0.400000 +1404 2005 0.400000 +1404 2059 0.400000 +1404 2112 0.400000 +1404 2161 0.400000 +1404 2253 0.400000 +1404 2314 0.400000 +1404 2407 0.400000 +1404 2529 0.400000 +1404 2706 0.400000 +1404 2777 0.400000 +1404 2794 0.400000 +1404 2812 0.400000 +1404 2841 0.400000 +1404 2844 0.400000 +1404 2923 0.400000 +1404 3067 0.400000 +1404 3174 0.400000 +1404 3189 0.400000 +1405 41 0.400000 +1405 45 0.400000 +1405 59 0.400000 +1405 153 0.400000 +1405 218 0.400000 +1405 285 0.400000 +1405 321 0.400000 +1405 322 0.400000 +1405 367 0.400000 +1405 378 0.400000 +1405 401 0.400000 +1405 449 0.400000 +1405 508 0.400000 +1405 527 0.400000 +1405 547 0.400000 +1405 557 0.400000 +1405 559 0.400000 +1405 602 0.400000 +1405 634 0.400000 +1405 636 0.400000 +1405 639 0.400000 +1405 644 0.400000 +1405 657 0.400000 +1405 660 0.400000 +1405 718 0.400000 +1405 928 0.400000 +1405 968 0.400000 +1405 990 0.400000 +1405 1074 0.400000 +1405 1081 0.400000 +1405 1224 0.400000 +1405 1305 0.400000 +1405 1361 0.400000 +1405 1373 0.400000 +1405 1423 0.400000 +1405 1484 0.400000 +1405 1486 0.400000 +1405 1547 0.400000 +1405 1557 0.400000 +1405 1568 0.400000 +1405 1571 0.400000 +1405 1608 0.400000 +1405 1667 0.400000 +1405 1718 0.400000 +1405 1796 0.400000 +1405 1838 0.400000 +1405 1886 0.400000 +1405 1932 0.400000 +1405 2012 0.400000 +1405 2049 0.400000 +1405 2119 0.400000 +1405 2373 0.400000 +1405 2498 0.400000 +1405 2583 0.400000 +1405 2661 0.400000 +1405 2776 0.400000 +1405 2785 0.400000 +1405 2827 0.400000 +1405 2867 0.400000 +1405 2883 0.400000 +1405 2937 0.400000 +1405 2964 0.400000 +1405 2965 0.400000 +1405 3138 0.400000 +1405 3155 0.400000 +1405 3192 0.400000 +1406 28 0.400000 +1406 58 0.400000 +1406 66 0.400000 +1406 156 0.400000 +1406 179 0.400000 +1406 225 0.400000 +1406 230 0.400000 +1406 284 0.400000 +1406 288 0.400000 +1406 300 0.400000 +1406 304 0.400000 +1406 328 0.400000 +1406 376 0.400000 +1406 392 0.400000 +1406 426 0.400000 +1406 431 0.400000 +1406 440 0.400000 +1406 452 0.400000 +1406 455 0.400000 +1406 637 0.400000 +1406 678 0.400000 +1406 696 0.400000 +1406 702 0.400000 +1406 765 0.400000 +1406 777 0.400000 +1406 797 0.400000 +1406 810 0.400000 +1406 831 0.400000 +1406 839 0.400000 +1406 857 0.400000 +1406 1009 0.400000 +1406 1015 0.400000 +1406 1072 0.400000 +1406 1092 0.400000 +1406 1206 0.400000 +1406 1230 0.400000 +1406 1421 0.400000 +1406 1509 0.400000 +1406 1517 0.400000 +1406 1590 0.400000 +1406 1697 0.400000 +1406 1714 0.400000 +1406 1715 0.400000 +1406 1773 0.400000 +1406 1845 0.400000 +1406 1859 0.400000 +1406 1967 0.400000 +1406 2019 0.400000 +1406 2196 0.400000 +1406 2282 0.400000 +1406 2348 0.400000 +1406 2375 0.400000 +1406 2398 0.400000 +1406 2408 0.400000 +1406 2489 0.400000 +1406 2584 0.400000 +1406 2627 0.400000 +1406 2642 0.400000 +1406 2648 0.400000 +1406 2712 0.400000 +1406 2858 0.400000 +1406 2897 0.400000 +1406 2923 0.400000 +1406 2941 0.400000 +1406 3050 0.400000 +1406 3080 0.400000 +1406 3095 0.400000 +1406 3148 0.400000 +1406 3170 0.400000 +1406 3182 0.400000 +1406 3194 0.400000 +1406 3198 0.400000 +1407 28 0.400000 +1407 60 0.400000 +1407 123 0.400000 +1407 137 0.400000 +1407 187 0.400000 +1407 230 0.400000 +1407 267 0.400000 +1407 289 0.400000 +1407 309 0.400000 +1407 375 0.400000 +1407 428 0.400000 +1407 438 0.400000 +1407 457 0.400000 +1407 458 0.400000 +1407 463 0.400000 +1407 629 0.400000 +1407 643 0.400000 +1407 671 0.400000 +1407 679 0.400000 +1407 714 0.400000 +1407 762 0.400000 +1407 788 0.400000 +1407 842 0.400000 +1407 875 0.400000 +1407 910 0.400000 +1407 963 0.400000 +1407 1097 0.400000 +1407 1117 0.400000 +1407 1121 0.400000 +1407 1211 0.400000 +1407 1219 0.400000 +1407 1443 0.400000 +1407 1456 0.400000 +1407 1510 0.400000 +1407 1581 0.400000 +1407 1695 0.400000 +1407 1727 0.400000 +1407 1745 0.400000 +1407 1805 0.400000 +1407 1828 0.400000 +1407 1845 0.400000 +1407 1895 0.400000 +1407 1928 0.400000 +1407 1969 0.400000 +1407 2085 0.400000 +1407 2104 0.400000 +1407 2144 0.400000 +1407 2175 0.400000 +1407 2204 0.400000 +1407 2235 0.400000 +1407 2309 0.400000 +1407 2351 0.400000 +1407 2378 0.400000 +1407 2428 0.400000 +1407 2437 0.400000 +1407 2505 0.400000 +1407 2523 0.400000 +1407 2589 0.400000 +1407 2695 0.400000 +1407 2826 0.400000 +1407 2853 0.400000 +1407 2854 0.400000 +1407 2859 0.400000 +1407 2871 0.400000 +1407 2917 0.400000 +1407 2929 0.400000 +1407 2952 0.400000 +1407 2992 0.400000 +1407 3079 0.400000 +1407 3099 0.400000 +1407 3126 0.400000 +1408 35 0.400000 +1408 138 0.400000 +1408 149 0.400000 +1408 214 0.400000 +1408 215 0.400000 +1408 250 0.400000 +1408 263 0.400000 +1408 294 0.400000 +1408 300 0.400000 +1408 359 0.400000 +1408 414 0.400000 +1408 575 0.400000 +1408 584 0.400000 +1408 601 0.400000 +1408 621 0.400000 +1408 623 0.400000 +1408 677 0.400000 +1408 690 0.400000 +1408 745 0.400000 +1408 796 0.400000 +1408 845 0.400000 +1408 938 0.400000 +1408 1030 0.400000 +1408 1032 0.400000 +1408 1175 0.400000 +1408 1177 0.400000 +1408 1208 0.400000 +1408 1314 0.400000 +1408 1334 0.400000 +1408 1368 0.400000 +1408 1385 0.400000 +1408 1398 0.400000 +1408 1409 0.400000 +1408 1430 0.400000 +1408 1475 0.400000 +1408 1606 0.400000 +1408 1688 0.400000 +1408 1700 0.400000 +1408 1737 0.400000 +1408 1755 0.400000 +1408 1784 0.400000 +1408 1817 0.400000 +1408 1861 0.400000 +1408 1872 0.400000 +1408 1894 0.400000 +1408 1925 0.400000 +1408 1934 0.400000 +1408 1986 0.400000 +1408 1988 0.400000 +1408 2031 0.400000 +1408 2166 0.400000 +1408 2183 0.400000 +1408 2272 0.400000 +1408 2375 0.400000 +1408 2394 0.400000 +1408 2421 0.400000 +1408 2434 0.400000 +1408 2453 0.400000 +1408 2476 0.400000 +1408 2636 0.400000 +1408 2653 0.400000 +1408 2841 0.400000 +1408 2861 0.400000 +1408 2876 0.400000 +1408 2898 0.400000 +1408 2967 0.400000 +1408 2973 0.400000 +1408 2978 0.400000 +1408 3047 0.400000 +1408 3064 0.400000 +1408 3181 0.400000 +1408 3189 0.400000 +1409 1 0.400000 +1409 157 0.400000 +1409 172 0.400000 +1409 209 0.400000 +1409 225 0.400000 +1409 331 0.400000 +1409 365 0.400000 +1409 394 0.400000 +1409 409 0.400000 +1409 498 0.400000 +1409 538 0.400000 +1409 591 0.400000 +1409 609 0.400000 +1409 617 0.400000 +1409 763 0.400000 +1409 905 0.400000 +1409 973 0.400000 +1409 977 0.400000 +1409 1028 0.400000 +1409 1107 0.400000 +1409 1174 0.400000 +1409 1183 0.400000 +1409 1211 0.400000 +1409 1219 0.400000 +1409 1274 0.400000 +1409 1302 0.400000 +1409 1303 0.400000 +1409 1395 0.400000 +1409 1497 0.400000 +1409 1528 0.400000 +1409 1596 0.400000 +1409 1648 0.400000 +1409 1656 0.400000 +1409 1767 0.400000 +1409 1785 0.400000 +1409 1793 0.400000 +1409 1806 0.400000 +1409 1846 0.400000 +1409 1875 0.400000 +1409 1921 0.400000 +1409 1926 0.400000 +1409 2080 0.400000 +1409 2100 0.400000 +1409 2116 0.400000 +1409 2204 0.400000 +1409 2216 0.400000 +1409 2220 0.400000 +1409 2242 0.400000 +1409 2363 0.400000 +1409 2373 0.400000 +1409 2415 0.400000 +1409 2418 0.400000 +1409 2483 0.400000 +1409 2492 0.400000 +1409 2577 0.400000 +1409 2695 0.400000 +1409 2809 0.400000 +1409 2870 0.400000 +1409 2900 0.400000 +1409 2965 0.400000 +1409 3016 0.400000 +1409 3024 0.400000 +1409 3041 0.400000 +1409 3195 0.400000 +1410 157 0.400000 +1410 203 0.400000 +1410 227 0.400000 +1410 277 0.400000 +1410 549 0.400000 +1410 579 0.400000 +1410 580 0.400000 +1410 616 0.400000 +1410 638 0.400000 +1410 687 0.400000 +1410 713 0.400000 +1410 763 0.400000 +1410 767 0.400000 +1410 780 0.400000 +1410 793 0.400000 +1410 796 0.400000 +1410 808 0.400000 +1410 1053 0.400000 +1410 1077 0.400000 +1410 1090 0.400000 +1410 1232 0.400000 +1410 1307 0.400000 +1410 1484 0.400000 +1410 1495 0.400000 +1410 1552 0.400000 +1410 1580 0.400000 +1410 1590 0.400000 +1410 1617 0.400000 +1410 1735 0.400000 +1410 1745 0.400000 +1410 1766 0.400000 +1410 1785 0.400000 +1410 1818 0.400000 +1410 1874 0.400000 +1410 1961 0.400000 +1410 1963 0.400000 +1410 2000 0.400000 +1410 2131 0.400000 +1410 2197 0.400000 +1410 2231 0.400000 +1410 2276 0.400000 +1410 2443 0.400000 +1410 2444 0.400000 +1410 2502 0.400000 +1410 2607 0.400000 +1410 2679 0.400000 +1410 2694 0.400000 +1410 2717 0.400000 +1410 2748 0.400000 +1410 2780 0.400000 +1410 2873 0.400000 +1410 2894 0.400000 +1410 2912 0.400000 +1410 2979 0.400000 +1410 2980 0.400000 +1410 3049 0.400000 +1410 3057 0.400000 +1410 3078 0.400000 +1410 3177 0.400000 +1411 52 0.400000 +1411 59 0.400000 +1411 144 0.400000 +1411 296 0.400000 +1411 439 0.400000 +1411 453 0.400000 +1411 487 0.400000 +1411 490 0.400000 +1411 521 0.400000 +1411 552 0.400000 +1411 634 0.400000 +1411 641 0.400000 +1411 690 0.400000 +1411 745 0.400000 +1411 870 0.400000 +1411 895 0.400000 +1411 909 0.400000 +1411 933 0.400000 +1411 976 0.400000 +1411 1065 0.400000 +1411 1143 0.400000 +1411 1332 0.400000 +1411 1515 0.400000 +1411 1532 0.400000 +1411 1597 0.400000 +1411 1606 0.400000 +1411 1655 0.400000 +1411 1662 0.400000 +1411 1667 0.400000 +1411 1691 0.400000 +1411 1693 0.400000 +1411 1816 0.400000 +1411 1842 0.400000 +1411 1952 0.400000 +1411 1990 0.400000 +1411 2025 0.400000 +1411 2097 0.400000 +1411 2101 0.400000 +1411 2188 0.400000 +1411 2227 0.400000 +1411 2257 0.400000 +1411 2290 0.400000 +1411 2512 0.400000 +1411 2518 0.400000 +1411 2576 0.400000 +1411 2633 0.400000 +1411 2654 0.400000 +1411 2660 0.400000 +1411 2682 0.400000 +1411 2792 0.400000 +1411 2918 0.400000 +1411 2921 0.400000 +1411 3065 0.400000 +1411 3164 0.400000 +1411 3184 0.400000 +1412 10 0.400000 +1412 20 0.400000 +1412 35 0.400000 +1412 205 0.400000 +1412 295 0.400000 +1412 315 0.400000 +1412 384 0.400000 +1412 433 0.400000 +1412 512 0.400000 +1412 560 0.400000 +1412 652 0.400000 +1412 689 0.400000 +1412 695 0.400000 +1412 715 0.400000 +1412 835 0.400000 +1412 854 0.400000 +1412 888 0.400000 +1412 927 0.400000 +1412 933 0.400000 +1412 958 0.400000 +1412 1033 0.400000 +1412 1078 0.400000 +1412 1083 0.400000 +1412 1238 0.400000 +1412 1247 0.400000 +1412 1256 0.400000 +1412 1299 0.400000 +1412 1362 0.400000 +1412 1438 0.400000 +1412 1451 0.400000 +1412 1530 0.400000 +1412 1554 0.400000 +1412 1566 0.400000 +1412 1590 0.400000 +1412 1610 0.400000 +1412 1624 0.400000 +1412 1652 0.400000 +1412 1659 0.400000 +1412 1683 0.400000 +1412 1811 0.400000 +1412 1845 0.400000 +1412 1854 0.400000 +1412 2050 0.400000 +1412 2094 0.400000 +1412 2124 0.400000 +1412 2164 0.400000 +1412 2212 0.400000 +1412 2241 0.400000 +1412 2336 0.400000 +1412 2393 0.400000 +1412 2397 0.400000 +1412 2402 0.400000 +1412 2455 0.400000 +1412 2504 0.400000 +1412 2607 0.400000 +1412 2653 0.400000 +1412 2669 0.400000 +1412 2746 0.400000 +1412 2787 0.400000 +1412 2853 0.400000 +1412 2882 0.400000 +1412 2884 0.400000 +1412 2893 0.400000 +1412 2917 0.400000 +1412 2947 0.400000 +1412 2971 0.400000 +1412 2979 0.400000 +1412 3040 0.400000 +1412 3105 0.400000 +1412 3160 0.400000 +1412 3195 0.400000 +1413 75 0.400000 +1413 84 0.400000 +1413 103 0.400000 +1413 223 0.400000 +1413 270 0.400000 +1413 312 0.400000 +1413 326 0.400000 +1413 336 0.400000 +1413 403 0.400000 +1413 415 0.400000 +1413 444 0.400000 +1413 455 0.400000 +1413 470 0.400000 +1413 537 0.400000 +1413 578 0.400000 +1413 667 0.400000 +1413 691 0.400000 +1413 713 0.400000 +1413 716 0.400000 +1413 723 0.400000 +1413 755 0.400000 +1413 757 0.400000 +1413 797 0.400000 +1413 805 0.400000 +1413 949 0.400000 +1413 1158 0.400000 +1413 1208 0.400000 +1413 1253 0.400000 +1413 1280 0.400000 +1413 1386 0.400000 +1413 1420 0.400000 +1413 1536 0.400000 +1413 1567 0.400000 +1413 1625 0.400000 +1413 1735 0.400000 +1413 1749 0.400000 +1413 1875 0.400000 +1413 1876 0.400000 +1413 1913 0.400000 +1413 1928 0.400000 +1413 2090 0.400000 +1413 2098 0.400000 +1413 2135 0.400000 +1413 2137 0.400000 +1413 2230 0.400000 +1413 2327 0.400000 +1413 2386 0.400000 +1413 2424 0.400000 +1413 2441 0.400000 +1413 2452 0.400000 +1413 2462 0.400000 +1413 2468 0.400000 +1413 2533 0.400000 +1413 2570 0.400000 +1413 2588 0.400000 +1413 2730 0.400000 +1413 2764 0.400000 +1413 2784 0.400000 +1413 2833 0.400000 +1413 2842 0.400000 +1413 2963 0.400000 +1413 3055 0.400000 +1413 3059 0.400000 +1413 3065 0.400000 +1413 3139 0.400000 +1413 3161 0.400000 +1414 26 0.400000 +1414 32 0.400000 +1414 60 0.400000 +1414 62 0.400000 +1414 69 0.400000 +1414 127 0.400000 +1414 151 0.400000 +1414 183 0.400000 +1414 217 0.400000 +1414 263 0.400000 +1414 364 0.400000 +1414 440 0.400000 +1414 479 0.400000 +1414 481 0.400000 +1414 522 0.400000 +1414 579 0.400000 +1414 597 0.400000 +1414 682 0.400000 +1414 684 0.400000 +1414 909 0.400000 +1414 942 0.400000 +1414 1000 0.400000 +1414 1002 0.400000 +1414 1024 0.400000 +1414 1061 0.400000 +1414 1184 0.400000 +1414 1204 0.400000 +1414 1219 0.400000 +1414 1234 0.400000 +1414 1248 0.400000 +1414 1271 0.400000 +1414 1323 0.400000 +1414 1328 0.400000 +1414 1430 0.400000 +1414 1443 0.400000 +1414 1462 0.400000 +1414 1472 0.400000 +1414 1494 0.400000 +1414 1649 0.400000 +1414 1651 0.400000 +1414 1667 0.400000 +1414 1748 0.400000 +1414 1831 0.400000 +1414 1978 0.400000 +1414 2071 0.400000 +1414 2075 0.400000 +1414 2085 0.400000 +1414 2086 0.400000 +1414 2223 0.400000 +1414 2242 0.400000 +1414 2433 0.400000 +1414 2460 0.400000 +1414 2464 0.400000 +1414 2574 0.400000 +1414 2831 0.400000 +1414 2949 0.400000 +1414 2950 0.400000 +1414 2963 0.400000 +1414 3038 0.400000 +1414 3087 0.400000 +1414 3098 0.400000 +1414 3133 0.400000 +1414 3164 0.400000 +1414 3172 0.400000 +1414 3199 0.400000 +1415 31 0.400000 +1415 39 0.400000 +1415 68 0.400000 +1415 104 0.400000 +1415 150 0.400000 +1415 228 0.400000 +1415 242 0.400000 +1415 247 0.400000 +1415 294 0.400000 +1415 449 0.400000 +1415 493 0.400000 +1415 504 0.400000 +1415 583 0.400000 +1415 595 0.400000 +1415 637 0.400000 +1415 666 0.400000 +1415 757 0.400000 +1415 810 0.400000 +1415 944 0.400000 +1415 964 0.400000 +1415 1072 0.400000 +1415 1105 0.400000 +1415 1191 0.400000 +1415 1208 0.400000 +1415 1403 0.400000 +1415 1425 0.400000 +1415 1517 0.400000 +1415 1537 0.400000 +1415 1546 0.400000 +1415 1619 0.400000 +1415 1660 0.400000 +1415 1674 0.400000 +1415 1762 0.400000 +1415 1875 0.400000 +1415 1911 0.400000 +1415 1961 0.400000 +1415 2066 0.400000 +1415 2084 0.400000 +1415 2088 0.400000 +1415 2089 0.400000 +1415 2136 0.400000 +1415 2142 0.400000 +1415 2151 0.400000 +1415 2240 0.400000 +1415 2260 0.400000 +1415 2283 0.400000 +1415 2428 0.400000 +1415 2495 0.400000 +1415 2571 0.400000 +1415 2604 0.400000 +1415 2894 0.400000 +1415 2936 0.400000 +1415 2964 0.400000 +1415 2983 0.400000 +1415 2996 0.400000 +1415 3006 0.400000 +1415 3028 0.400000 +1415 3123 0.400000 +1415 3152 0.400000 +1416 37 0.400000 +1416 49 0.400000 +1416 99 0.400000 +1416 221 0.400000 +1416 281 0.400000 +1416 311 0.400000 +1416 315 0.400000 +1416 330 0.400000 +1416 446 0.400000 +1416 464 0.400000 +1416 493 0.400000 +1416 504 0.400000 +1416 620 0.400000 +1416 659 0.400000 +1416 718 0.400000 +1416 792 0.400000 +1416 977 0.400000 +1416 1069 0.400000 +1416 1165 0.400000 +1416 1309 0.400000 +1416 1419 0.400000 +1416 1709 0.400000 +1416 1739 0.400000 +1416 1784 0.400000 +1416 1788 0.400000 +1416 1829 0.400000 +1416 1843 0.400000 +1416 1878 0.400000 +1416 1898 0.400000 +1416 1904 0.400000 +1416 1907 0.400000 +1416 1926 0.400000 +1416 1928 0.400000 +1416 1950 0.400000 +1416 2044 0.400000 +1416 2057 0.400000 +1416 2067 0.400000 +1416 2149 0.400000 +1416 2281 0.400000 +1416 2316 0.400000 +1416 2448 0.400000 +1416 2490 0.400000 +1416 2498 0.400000 +1416 2521 0.400000 +1416 2577 0.400000 +1416 2628 0.400000 +1416 2706 0.400000 +1416 2829 0.400000 +1416 2931 0.400000 +1416 2994 0.400000 +1416 3082 0.400000 +1416 3088 0.400000 +1416 3091 0.400000 +1416 3123 0.400000 +1416 3137 0.400000 +1416 3165 0.400000 +1416 3185 0.400000 +1417 18 0.400000 +1417 86 0.400000 +1417 98 0.400000 +1417 103 0.400000 +1417 110 0.400000 +1417 247 0.400000 +1417 368 0.400000 +1417 404 0.400000 +1417 740 0.400000 +1417 747 0.400000 +1417 766 0.400000 +1417 795 0.400000 +1417 858 0.400000 +1417 868 0.400000 +1417 899 0.400000 +1417 908 0.400000 +1417 909 0.400000 +1417 949 0.400000 +1417 1052 0.400000 +1417 1139 0.400000 +1417 1142 0.400000 +1417 1147 0.400000 +1417 1209 0.400000 +1417 1217 0.400000 +1417 1253 0.400000 +1417 1300 0.400000 +1417 1323 0.400000 +1417 1492 0.400000 +1417 1506 0.400000 +1417 1545 0.400000 +1417 1588 0.400000 +1417 1613 0.400000 +1417 1785 0.400000 +1417 1816 0.400000 +1417 1875 0.400000 +1417 1898 0.400000 +1417 2113 0.400000 +1417 2133 0.400000 +1417 2137 0.400000 +1417 2151 0.400000 +1417 2163 0.400000 +1417 2276 0.400000 +1417 2303 0.400000 +1417 2326 0.400000 +1417 2340 0.400000 +1417 2341 0.400000 +1417 2357 0.400000 +1417 2393 0.400000 +1417 2451 0.400000 +1417 2496 0.400000 +1417 2508 0.400000 +1417 2533 0.400000 +1417 2613 0.400000 +1417 2617 0.400000 +1417 2705 0.400000 +1417 2713 0.400000 +1417 2727 0.400000 +1417 2753 0.400000 +1417 2770 0.400000 +1417 2783 0.400000 +1417 2819 0.400000 +1417 3013 0.400000 +1417 3016 0.400000 +1417 3028 0.400000 +1417 3038 0.400000 +1417 3048 0.400000 +1418 79 0.400000 +1418 117 0.400000 +1418 195 0.400000 +1418 196 0.400000 +1418 215 0.400000 +1418 312 0.400000 +1418 380 0.400000 +1418 423 0.400000 +1418 438 0.400000 +1418 463 0.400000 +1418 587 0.400000 +1418 624 0.400000 +1418 647 0.400000 +1418 689 0.400000 +1418 761 0.400000 +1418 806 0.400000 +1418 832 0.400000 +1418 833 0.400000 +1418 922 0.400000 +1418 927 0.400000 +1418 974 0.400000 +1418 999 0.400000 +1418 1038 0.400000 +1418 1206 0.400000 +1418 1216 0.400000 +1418 1233 0.400000 +1418 1261 0.400000 +1418 1389 0.400000 +1418 1397 0.400000 +1418 1429 0.400000 +1418 1435 0.400000 +1418 1485 0.400000 +1418 1529 0.400000 +1418 1587 0.400000 +1418 1592 0.400000 +1418 1711 0.400000 +1418 1728 0.400000 +1418 1844 0.400000 +1418 1895 0.400000 +1418 1913 0.400000 +1418 1947 0.400000 +1418 1952 0.400000 +1418 2044 0.400000 +1418 2094 0.400000 +1418 2111 0.400000 +1418 2154 0.400000 +1418 2156 0.400000 +1418 2179 0.400000 +1418 2354 0.400000 +1418 2409 0.400000 +1418 2450 0.400000 +1418 2522 0.400000 +1418 2529 0.400000 +1418 2639 0.400000 +1418 2781 0.400000 +1418 2842 0.400000 +1418 2950 0.400000 +1418 2967 0.400000 +1418 2998 0.400000 +1418 3013 0.400000 +1418 3033 0.400000 +1419 6 0.400000 +1419 17 0.400000 +1419 60 0.400000 +1419 66 0.400000 +1419 75 0.400000 +1419 78 0.400000 +1419 149 0.400000 +1419 163 0.400000 +1419 178 0.400000 +1419 186 0.400000 +1419 272 0.400000 +1419 383 0.400000 +1419 427 0.400000 +1419 549 0.400000 +1419 553 0.400000 +1419 640 0.400000 +1419 705 0.400000 +1419 710 0.400000 +1419 715 0.400000 +1419 782 0.400000 +1419 804 0.400000 +1419 894 0.400000 +1419 916 0.400000 +1419 923 0.400000 +1419 945 0.400000 +1419 978 0.400000 +1419 1013 0.400000 +1419 1042 0.400000 +1419 1044 0.400000 +1419 1062 0.400000 +1419 1071 0.400000 +1419 1098 0.400000 +1419 1113 0.400000 +1419 1134 0.400000 +1419 1174 0.400000 +1419 1354 0.400000 +1419 1396 0.400000 +1419 1404 0.400000 +1419 1416 0.400000 +1419 1443 0.400000 +1419 1495 0.400000 +1419 1545 0.400000 +1419 1565 0.400000 +1419 1591 0.400000 +1419 1684 0.400000 +1419 1722 0.400000 +1419 2054 0.400000 +1419 2074 0.400000 +1419 2089 0.400000 +1419 2177 0.400000 +1419 2213 0.400000 +1419 2423 0.400000 +1419 2471 0.400000 +1419 2574 0.400000 +1419 2609 0.400000 +1419 2621 0.400000 +1419 2654 0.400000 +1419 2901 0.400000 +1419 2926 0.400000 +1419 2970 0.400000 +1419 2996 0.400000 +1419 3007 0.400000 +1419 3057 0.400000 +1419 3072 0.400000 +1419 3097 0.400000 +1419 3119 0.400000 +1419 3134 0.400000 +1419 3183 0.400000 +1420 9 0.400000 +1420 84 0.400000 +1420 89 0.400000 +1420 249 0.400000 +1420 307 0.400000 +1420 365 0.400000 +1420 373 0.400000 +1420 380 0.400000 +1420 451 0.400000 +1420 494 0.400000 +1420 550 0.400000 +1420 602 0.400000 +1420 642 0.400000 +1420 649 0.400000 +1420 660 0.400000 +1420 773 0.400000 +1420 795 0.400000 +1420 822 0.400000 +1420 824 0.400000 +1420 847 0.400000 +1420 858 0.400000 +1420 918 0.400000 +1420 1038 0.400000 +1420 1094 0.400000 +1420 1099 0.400000 +1420 1112 0.400000 +1420 1174 0.400000 +1420 1283 0.400000 +1420 1295 0.400000 +1420 1413 0.400000 +1420 1431 0.400000 +1420 1488 0.400000 +1420 1492 0.400000 +1420 1501 0.400000 +1420 1520 0.400000 +1420 1591 0.400000 +1420 1678 0.400000 +1420 1712 0.400000 +1420 1866 0.400000 +1420 1890 0.400000 +1420 2003 0.400000 +1420 2200 0.400000 +1420 2204 0.400000 +1420 2217 0.400000 +1420 2285 0.400000 +1420 2324 0.400000 +1420 2373 0.400000 +1420 2379 0.400000 +1420 2458 0.400000 +1420 2559 0.400000 +1420 2609 0.400000 +1420 2684 0.400000 +1420 2741 0.400000 +1420 2838 0.400000 +1420 3034 0.400000 +1420 3066 0.400000 +1420 3135 0.400000 +1420 3196 0.400000 +1420 3198 0.400000 +1421 131 0.400000 +1421 191 0.400000 +1421 308 0.400000 +1421 323 0.400000 +1421 333 0.400000 +1421 373 0.400000 +1421 447 0.400000 +1421 529 0.400000 +1421 605 0.400000 +1421 704 0.400000 +1421 781 0.400000 +1421 825 0.400000 +1421 910 0.400000 +1421 956 0.400000 +1421 1021 0.400000 +1421 1072 0.400000 +1421 1086 0.400000 +1421 1187 0.400000 +1421 1191 0.400000 +1421 1225 0.400000 +1421 1335 0.400000 +1421 1408 0.400000 +1421 1418 0.400000 +1421 1479 0.400000 +1421 1513 0.400000 +1421 1547 0.400000 +1421 1562 0.400000 +1421 1778 0.400000 +1421 1793 0.400000 +1421 1809 0.400000 +1421 1859 0.400000 +1421 1928 0.400000 +1421 1968 0.400000 +1421 2035 0.400000 +1421 2067 0.400000 +1421 2127 0.400000 +1421 2136 0.400000 +1421 2148 0.400000 +1421 2165 0.400000 +1421 2166 0.400000 +1421 2187 0.400000 +1421 2222 0.400000 +1421 2247 0.400000 +1421 2345 0.400000 +1421 2393 0.400000 +1421 2429 0.400000 +1421 2432 0.400000 +1421 2440 0.400000 +1421 2442 0.400000 +1421 2506 0.400000 +1421 2556 0.400000 +1421 2558 0.400000 +1421 2612 0.400000 +1421 2954 0.400000 +1421 3014 0.400000 +1421 3054 0.400000 +1421 3059 0.400000 +1421 3066 0.400000 +1421 3070 0.400000 +1421 3083 0.400000 +1421 3104 0.400000 +1421 3156 0.400000 +1421 3197 0.400000 +1422 14 0.400000 +1422 87 0.400000 +1422 148 0.400000 +1422 165 0.400000 +1422 185 0.400000 +1422 225 0.400000 +1422 280 0.400000 +1422 366 0.400000 +1422 414 0.400000 +1422 462 0.400000 +1422 472 0.400000 +1422 516 0.400000 +1422 551 0.400000 +1422 625 0.400000 +1422 681 0.400000 +1422 685 0.400000 +1422 744 0.400000 +1422 745 0.400000 +1422 757 0.400000 +1422 763 0.400000 +1422 770 0.400000 +1422 775 0.400000 +1422 790 0.400000 +1422 928 0.400000 +1422 973 0.400000 +1422 988 0.400000 +1422 1046 0.400000 +1422 1047 0.400000 +1422 1051 0.400000 +1422 1114 0.400000 +1422 1125 0.400000 +1422 1264 0.400000 +1422 1315 0.400000 +1422 1382 0.400000 +1422 1388 0.400000 +1422 1404 0.400000 +1422 1410 0.400000 +1422 1423 0.400000 +1422 1436 0.400000 +1422 1438 0.400000 +1422 1466 0.400000 +1422 1481 0.400000 +1422 1574 0.400000 +1422 1619 0.400000 +1422 1647 0.400000 +1422 1668 0.400000 +1422 1860 0.400000 +1422 1915 0.400000 +1422 1948 0.400000 +1422 1950 0.400000 +1422 1988 0.400000 +1422 2021 0.400000 +1422 2025 0.400000 +1422 2158 0.400000 +1422 2166 0.400000 +1422 2266 0.400000 +1422 2292 0.400000 +1422 2373 0.400000 +1422 2423 0.400000 +1422 2428 0.400000 +1422 2472 0.400000 +1422 2545 0.400000 +1422 2590 0.400000 +1422 2601 0.400000 +1422 2825 0.400000 +1422 2852 0.400000 +1422 2971 0.400000 +1422 3031 0.400000 +1422 3091 0.400000 +1423 25 0.400000 +1423 95 0.400000 +1423 218 0.400000 +1423 233 0.400000 +1423 315 0.400000 +1423 323 0.400000 +1423 375 0.400000 +1423 439 0.400000 +1423 463 0.400000 +1423 546 0.400000 +1423 554 0.400000 +1423 589 0.400000 +1423 733 0.400000 +1423 877 0.400000 +1423 931 0.400000 +1423 956 0.400000 +1423 997 0.400000 +1423 1063 0.400000 +1423 1107 0.400000 +1423 1132 0.400000 +1423 1166 0.400000 +1423 1182 0.400000 +1423 1202 0.400000 +1423 1237 0.400000 +1423 1375 0.400000 +1423 1459 0.400000 +1423 1463 0.400000 +1423 1520 0.400000 +1423 1528 0.400000 +1423 1549 0.400000 +1423 1599 0.400000 +1423 1641 0.400000 +1423 1652 0.400000 +1423 1707 0.400000 +1423 1759 0.400000 +1423 1908 0.400000 +1423 1964 0.400000 +1423 2000 0.400000 +1423 2034 0.400000 +1423 2081 0.400000 +1423 2170 0.400000 +1423 2213 0.400000 +1423 2222 0.400000 +1423 2246 0.400000 +1423 2367 0.400000 +1423 2384 0.400000 +1423 2434 0.400000 +1423 2527 0.400000 +1423 2560 0.400000 +1423 2647 0.400000 +1423 2660 0.400000 +1423 2697 0.400000 +1423 2702 0.400000 +1423 2730 0.400000 +1423 2746 0.400000 +1423 2831 0.400000 +1423 2872 0.400000 +1423 2912 0.400000 +1423 3069 0.400000 +1423 3121 0.400000 +1424 5 0.400000 +1424 13 0.400000 +1424 21 0.400000 +1424 36 0.400000 +1424 279 0.400000 +1424 331 0.400000 +1424 347 0.400000 +1424 385 0.400000 +1424 393 0.400000 +1424 423 0.400000 +1424 464 0.400000 +1424 524 0.400000 +1424 625 0.400000 +1424 636 0.400000 +1424 656 0.400000 +1424 740 0.400000 +1424 763 0.400000 +1424 770 0.400000 +1424 798 0.400000 +1424 804 0.400000 +1424 867 0.400000 +1424 900 0.400000 +1424 956 0.400000 +1424 1043 0.400000 +1424 1080 0.400000 +1424 1218 0.400000 +1424 1246 0.400000 +1424 1329 0.400000 +1424 1347 0.400000 +1424 1373 0.400000 +1424 1430 0.400000 +1424 1464 0.400000 +1424 1578 0.400000 +1424 1590 0.400000 +1424 1631 0.400000 +1424 1643 0.400000 +1424 1659 0.400000 +1424 1684 0.400000 +1424 1715 0.400000 +1424 1811 0.400000 +1424 1881 0.400000 +1424 1901 0.400000 +1424 1911 0.400000 +1424 1933 0.400000 +1424 1990 0.400000 +1424 2008 0.400000 +1424 2185 0.400000 +1424 2213 0.400000 +1424 2287 0.400000 +1424 2521 0.400000 +1424 2553 0.400000 +1424 2568 0.400000 +1424 2667 0.400000 +1424 2692 0.400000 +1424 2758 0.400000 +1424 2803 0.400000 +1424 2853 0.400000 +1424 2872 0.400000 +1424 2916 0.400000 +1424 2922 0.400000 +1424 3082 0.400000 +1424 3097 0.400000 +1424 3126 0.400000 +1424 3174 0.400000 +1425 15 0.400000 +1425 18 0.400000 +1425 81 0.400000 +1425 90 0.400000 +1425 100 0.400000 +1425 129 0.400000 +1425 253 0.400000 +1425 275 0.400000 +1425 334 0.400000 +1425 397 0.400000 +1425 429 0.400000 +1425 430 0.400000 +1425 436 0.400000 +1425 461 0.400000 +1425 473 0.400000 +1425 474 0.400000 +1425 476 0.400000 +1425 482 0.400000 +1425 525 0.400000 +1425 537 0.400000 +1425 617 0.400000 +1425 643 0.400000 +1425 645 0.400000 +1425 692 0.400000 +1425 712 0.400000 +1425 725 0.400000 +1425 769 0.400000 +1425 905 0.400000 +1425 911 0.400000 +1425 914 0.400000 +1425 922 0.400000 +1425 986 0.400000 +1425 996 0.400000 +1425 1025 0.400000 +1425 1112 0.400000 +1425 1113 0.400000 +1425 1279 0.400000 +1425 1393 0.400000 +1425 1439 0.400000 +1425 1541 0.400000 +1425 1564 0.400000 +1425 1799 0.400000 +1425 1882 0.400000 +1425 1985 0.400000 +1425 2029 0.400000 +1425 2110 0.400000 +1425 2130 0.400000 +1425 2167 0.400000 +1425 2324 0.400000 +1425 2461 0.400000 +1425 2473 0.400000 +1425 2492 0.400000 +1425 2506 0.400000 +1425 2602 0.400000 +1425 2634 0.400000 +1425 2688 0.400000 +1425 2715 0.400000 +1425 2730 0.400000 +1425 2739 0.400000 +1425 2788 0.400000 +1425 2845 0.400000 +1425 2887 0.400000 +1425 2934 0.400000 +1425 2985 0.400000 +1425 3018 0.400000 +1425 3073 0.400000 +1425 3143 0.400000 +1426 155 0.400000 +1426 292 0.400000 +1426 303 0.400000 +1426 326 0.400000 +1426 371 0.400000 +1426 376 0.400000 +1426 395 0.400000 +1426 401 0.400000 +1426 415 0.400000 +1426 444 0.400000 +1426 451 0.400000 +1426 528 0.400000 +1426 594 0.400000 +1426 627 0.400000 +1426 706 0.400000 +1426 738 0.400000 +1426 936 0.400000 +1426 996 0.400000 +1426 1003 0.400000 +1426 1036 0.400000 +1426 1240 0.400000 +1426 1248 0.400000 +1426 1266 0.400000 +1426 1363 0.400000 +1426 1418 0.400000 +1426 1441 0.400000 +1426 1606 0.400000 +1426 1649 0.400000 +1426 1760 0.400000 +1426 1777 0.400000 +1426 1867 0.400000 +1426 1929 0.400000 +1426 2034 0.400000 +1426 2039 0.400000 +1426 2135 0.400000 +1426 2189 0.400000 +1426 2202 0.400000 +1426 2232 0.400000 +1426 2368 0.400000 +1426 2484 0.400000 +1426 2514 0.400000 +1426 2578 0.400000 +1426 2606 0.400000 +1426 2617 0.400000 +1426 2631 0.400000 +1426 2651 0.400000 +1426 2736 0.400000 +1426 2767 0.400000 +1426 2769 0.400000 +1426 2969 0.400000 +1426 3013 0.400000 +1426 3154 0.400000 +1427 9 0.400000 +1427 23 0.400000 +1427 97 0.400000 +1427 105 0.400000 +1427 141 0.400000 +1427 152 0.400000 +1427 173 0.400000 +1427 187 0.400000 +1427 227 0.400000 +1427 234 0.400000 +1427 235 0.400000 +1427 265 0.400000 +1427 375 0.400000 +1427 419 0.400000 +1427 435 0.400000 +1427 460 0.400000 +1427 629 0.400000 +1427 702 0.400000 +1427 915 0.400000 +1427 977 0.400000 +1427 1013 0.400000 +1427 1067 0.400000 +1427 1074 0.400000 +1427 1084 0.400000 +1427 1188 0.400000 +1427 1339 0.400000 +1427 1387 0.400000 +1427 1470 0.400000 +1427 1658 0.400000 +1427 1703 0.400000 +1427 1803 0.400000 +1427 1837 0.400000 +1427 1875 0.400000 +1427 1883 0.400000 +1427 1898 0.400000 +1427 1955 0.400000 +1427 2158 0.400000 +1427 2251 0.400000 +1427 2306 0.400000 +1427 2336 0.400000 +1427 2476 0.400000 +1427 2521 0.400000 +1427 2523 0.400000 +1427 2562 0.400000 +1427 2585 0.400000 +1427 2598 0.400000 +1427 2695 0.400000 +1427 2821 0.400000 +1427 2841 0.400000 +1427 2876 0.400000 +1427 2915 0.400000 +1427 2959 0.400000 +1427 3053 0.400000 +1427 3059 0.400000 +1427 3081 0.400000 +1427 3092 0.400000 +1427 3102 0.400000 +1427 3194 0.400000 +1428 3 0.400000 +1428 33 0.400000 +1428 41 0.400000 +1428 64 0.400000 +1428 102 0.400000 +1428 137 0.400000 +1428 161 0.400000 +1428 176 0.400000 +1428 180 0.400000 +1428 390 0.400000 +1428 477 0.400000 +1428 487 0.400000 +1428 509 0.400000 +1428 563 0.400000 +1428 594 0.400000 +1428 677 0.400000 +1428 704 0.400000 +1428 720 0.400000 +1428 834 0.400000 +1428 875 0.400000 +1428 939 0.400000 +1428 1022 0.400000 +1428 1090 0.400000 +1428 1195 0.400000 +1428 1217 0.400000 +1428 1239 0.400000 +1428 1283 0.400000 +1428 1287 0.400000 +1428 1315 0.400000 +1428 1367 0.400000 +1428 1370 0.400000 +1428 1451 0.400000 +1428 1455 0.400000 +1428 1464 0.400000 +1428 1478 0.400000 +1428 1484 0.400000 +1428 1487 0.400000 +1428 1488 0.400000 +1428 1511 0.400000 +1428 1699 0.400000 +1428 1745 0.400000 +1428 1935 0.400000 +1428 1959 0.400000 +1428 2020 0.400000 +1428 2027 0.400000 +1428 2161 0.400000 +1428 2291 0.400000 +1428 2302 0.400000 +1428 2321 0.400000 +1428 2342 0.400000 +1428 2421 0.400000 +1428 2446 0.400000 +1428 2448 0.400000 +1428 2475 0.400000 +1428 2549 0.400000 +1428 2594 0.400000 +1428 2611 0.400000 +1428 2653 0.400000 +1428 2689 0.400000 +1428 2808 0.400000 +1428 2814 0.400000 +1428 2861 0.400000 +1428 2948 0.400000 +1428 2960 0.400000 +1428 2981 0.400000 +1428 3057 0.400000 +1428 3084 0.400000 +1428 3166 0.400000 +1428 3176 0.400000 +1429 8 0.400000 +1429 17 0.400000 +1429 46 0.400000 +1429 198 0.400000 +1429 260 0.400000 +1429 321 0.400000 +1429 349 0.400000 +1429 493 0.400000 +1429 652 0.400000 +1429 704 0.400000 +1429 787 0.400000 +1429 845 0.400000 +1429 870 0.400000 +1429 1109 0.400000 +1429 1284 0.400000 +1429 1303 0.400000 +1429 1366 0.400000 +1429 1557 0.400000 +1429 1561 0.400000 +1429 1567 0.400000 +1429 1643 0.400000 +1429 1677 0.400000 +1429 1727 0.400000 +1429 1750 0.400000 +1429 1874 0.400000 +1429 1906 0.400000 +1429 1953 0.400000 +1429 1975 0.400000 +1429 2031 0.400000 +1429 2060 0.400000 +1429 2119 0.400000 +1429 2124 0.400000 +1429 2248 0.400000 +1429 2271 0.400000 +1429 2291 0.400000 +1429 2328 0.400000 +1429 2334 0.400000 +1429 2344 0.400000 +1429 2417 0.400000 +1429 2507 0.400000 +1429 2574 0.400000 +1429 2596 0.400000 +1429 2778 0.400000 +1429 2784 0.400000 +1429 2792 0.400000 +1429 2806 0.400000 +1429 2849 0.400000 +1429 2925 0.400000 +1429 2959 0.400000 +1429 3003 0.400000 +1429 3097 0.400000 +1429 3111 0.400000 +1429 3113 0.400000 +1429 3198 0.400000 +1430 42 0.400000 +1430 74 0.400000 +1430 360 0.400000 +1430 409 0.400000 +1430 467 0.400000 +1430 494 0.400000 +1430 495 0.400000 +1430 514 0.400000 +1430 623 0.400000 +1430 644 0.400000 +1430 679 0.400000 +1430 769 0.400000 +1430 803 0.400000 +1430 824 0.400000 +1430 948 0.400000 +1430 990 0.400000 +1430 1094 0.400000 +1430 1108 0.400000 +1430 1117 0.400000 +1430 1190 0.400000 +1430 1342 0.400000 +1430 1447 0.400000 +1430 1454 0.400000 +1430 1465 0.400000 +1430 1567 0.400000 +1430 1587 0.400000 +1430 1678 0.400000 +1430 1715 0.400000 +1430 1766 0.400000 +1430 1796 0.400000 +1430 1832 0.400000 +1430 1838 0.400000 +1430 1882 0.400000 +1430 1928 0.400000 +1430 1979 0.400000 +1430 2093 0.400000 +1430 2179 0.400000 +1430 2299 0.400000 +1430 2318 0.400000 +1430 2367 0.400000 +1430 2400 0.400000 +1430 2407 0.400000 +1430 2428 0.400000 +1430 2459 0.400000 +1430 2505 0.400000 +1430 2507 0.400000 +1430 2734 0.400000 +1430 2797 0.400000 +1430 2854 0.400000 +1430 3052 0.400000 +1430 3180 0.400000 +1431 60 0.400000 +1431 67 0.400000 +1431 81 0.400000 +1431 224 0.400000 +1431 296 0.400000 +1431 305 0.400000 +1431 374 0.400000 +1431 659 0.400000 +1431 698 0.400000 +1431 788 0.400000 +1431 844 0.400000 +1431 854 0.400000 +1431 1035 0.400000 +1431 1062 0.400000 +1431 1096 0.400000 +1431 1127 0.400000 +1431 1142 0.400000 +1431 1181 0.400000 +1431 1213 0.400000 +1431 1246 0.400000 +1431 1302 0.400000 +1431 1322 0.400000 +1431 1324 0.400000 +1431 1355 0.400000 +1431 1376 0.400000 +1431 1419 0.400000 +1431 1495 0.400000 +1431 1556 0.400000 +1431 1598 0.400000 +1431 1667 0.400000 +1431 1677 0.400000 +1431 1706 0.400000 +1431 1750 0.400000 +1431 1754 0.400000 +1431 1765 0.400000 +1431 1865 0.400000 +1431 1965 0.400000 +1431 2046 0.400000 +1431 2181 0.400000 +1431 2182 0.400000 +1431 2209 0.400000 +1431 2239 0.400000 +1431 2242 0.400000 +1431 2286 0.400000 +1431 2299 0.400000 +1431 2304 0.400000 +1431 2311 0.400000 +1431 2380 0.400000 +1431 2419 0.400000 +1431 2433 0.400000 +1431 2434 0.400000 +1431 2438 0.400000 +1431 2459 0.400000 +1431 2510 0.400000 +1431 2512 0.400000 +1431 2566 0.400000 +1431 2595 0.400000 +1431 2672 0.400000 +1431 2674 0.400000 +1431 2679 0.400000 +1431 2794 0.400000 +1431 2907 0.400000 +1431 2918 0.400000 +1431 2928 0.400000 +1431 2954 0.400000 +1431 3052 0.400000 +1432 37 0.400000 +1432 131 0.400000 +1432 140 0.400000 +1432 166 0.400000 +1432 220 0.400000 +1432 225 0.400000 +1432 278 0.400000 +1432 380 0.400000 +1432 482 0.400000 +1432 497 0.400000 +1432 504 0.400000 +1432 538 0.400000 +1432 548 0.400000 +1432 612 0.400000 +1432 689 0.400000 +1432 734 0.400000 +1432 857 0.400000 +1432 904 0.400000 +1432 1136 0.400000 +1432 1174 0.400000 +1432 1274 0.400000 +1432 1286 0.400000 +1432 1290 0.400000 +1432 1390 0.400000 +1432 1397 0.400000 +1432 1463 0.400000 +1432 1626 0.400000 +1432 1689 0.400000 +1432 1753 0.400000 +1432 1767 0.400000 +1432 1802 0.400000 +1432 1840 0.400000 +1432 1896 0.400000 +1432 2063 0.400000 +1432 2196 0.400000 +1432 2225 0.400000 +1432 2296 0.400000 +1432 2360 0.400000 +1432 2372 0.400000 +1432 2380 0.400000 +1432 2489 0.400000 +1432 2493 0.400000 +1432 2499 0.400000 +1432 2505 0.400000 +1432 2509 0.400000 +1432 2577 0.400000 +1432 2611 0.400000 +1432 2617 0.400000 +1432 2650 0.400000 +1432 2661 0.400000 +1432 2728 0.400000 +1432 2737 0.400000 +1432 2843 0.400000 +1432 2865 0.400000 +1432 2869 0.400000 +1432 2886 0.400000 +1432 2899 0.400000 +1432 2910 0.400000 +1432 3016 0.400000 +1432 3075 0.400000 +1432 3135 0.400000 +1433 60 0.400000 +1433 134 0.400000 +1433 138 0.400000 +1433 205 0.400000 +1433 260 0.400000 +1433 265 0.400000 +1433 297 0.400000 +1433 317 0.400000 +1433 487 0.400000 +1433 523 0.400000 +1433 524 0.400000 +1433 568 0.400000 +1433 596 0.400000 +1433 612 0.400000 +1433 694 0.400000 +1433 721 0.400000 +1433 724 0.400000 +1433 742 0.400000 +1433 751 0.400000 +1433 793 0.400000 +1433 799 0.400000 +1433 869 0.400000 +1433 872 0.400000 +1433 874 0.400000 +1433 881 0.400000 +1433 908 0.400000 +1433 944 0.400000 +1433 1045 0.400000 +1433 1053 0.400000 +1433 1071 0.400000 +1433 1107 0.400000 +1433 1190 0.400000 +1433 1210 0.400000 +1433 1223 0.400000 +1433 1358 0.400000 +1433 1491 0.400000 +1433 1523 0.400000 +1433 1583 0.400000 +1433 1731 0.400000 +1433 1734 0.400000 +1433 1739 0.400000 +1433 1796 0.400000 +1433 1844 0.400000 +1433 1895 0.400000 +1433 2078 0.400000 +1433 2213 0.400000 +1433 2224 0.400000 +1433 2377 0.400000 +1433 2447 0.400000 +1433 2456 0.400000 +1433 2520 0.400000 +1433 2541 0.400000 +1433 2559 0.400000 +1433 2723 0.400000 +1433 2728 0.400000 +1433 2764 0.400000 +1433 2794 0.400000 +1433 2849 0.400000 +1433 2883 0.400000 +1433 2899 0.400000 +1433 2936 0.400000 +1433 2941 0.400000 +1433 2948 0.400000 +1433 3124 0.400000 +1433 3176 0.400000 +1434 60 0.400000 +1434 100 0.400000 +1434 102 0.400000 +1434 125 0.400000 +1434 168 0.400000 +1434 221 0.400000 +1434 277 0.400000 +1434 284 0.400000 +1434 303 0.400000 +1434 421 0.400000 +1434 590 0.400000 +1434 622 0.400000 +1434 630 0.400000 +1434 688 0.400000 +1434 776 0.400000 +1434 915 0.400000 +1434 941 0.400000 +1434 944 0.400000 +1434 1022 0.400000 +1434 1064 0.400000 +1434 1070 0.400000 +1434 1078 0.400000 +1434 1417 0.400000 +1434 1430 0.400000 +1434 1483 0.400000 +1434 1561 0.400000 +1434 1572 0.400000 +1434 1603 0.400000 +1434 1652 0.400000 +1434 1706 0.400000 +1434 1840 0.400000 +1434 1856 0.400000 +1434 1890 0.400000 +1434 2071 0.400000 +1434 2125 0.400000 +1434 2127 0.400000 +1434 2172 0.400000 +1434 2210 0.400000 +1434 2230 0.400000 +1434 2231 0.400000 +1434 2288 0.400000 +1434 2340 0.400000 +1434 2397 0.400000 +1434 2522 0.400000 +1434 2586 0.400000 +1434 2608 0.400000 +1434 2653 0.400000 +1434 2661 0.400000 +1434 2664 0.400000 +1434 2715 0.400000 +1434 2824 0.400000 +1434 2967 0.400000 +1434 3075 0.400000 +1434 3098 0.400000 +1434 3179 0.400000 +1435 48 0.400000 +1435 87 0.400000 +1435 121 0.400000 +1435 179 0.400000 +1435 214 0.400000 +1435 254 0.400000 +1435 288 0.400000 +1435 290 0.400000 +1435 307 0.400000 +1435 315 0.400000 +1435 370 0.400000 +1435 566 0.400000 +1435 658 0.400000 +1435 687 0.400000 +1435 732 0.400000 +1435 757 0.400000 +1435 781 0.400000 +1435 785 0.400000 +1435 847 0.400000 +1435 908 0.400000 +1435 950 0.400000 +1435 982 0.400000 +1435 1028 0.400000 +1435 1048 0.400000 +1435 1137 0.400000 +1435 1143 0.400000 +1435 1148 0.400000 +1435 1169 0.400000 +1435 1236 0.400000 +1435 1295 0.400000 +1435 1305 0.400000 +1435 1340 0.400000 +1435 1456 0.400000 +1435 1479 0.400000 +1435 1542 0.400000 +1435 1579 0.400000 +1435 1599 0.400000 +1435 1610 0.400000 +1435 1643 0.400000 +1435 1662 0.400000 +1435 1693 0.400000 +1435 1697 0.400000 +1435 1734 0.400000 +1435 1843 0.400000 +1435 1872 0.400000 +1435 1990 0.400000 +1435 2021 0.400000 +1435 2056 0.400000 +1435 2115 0.400000 +1435 2117 0.400000 +1435 2169 0.400000 +1435 2204 0.400000 +1435 2267 0.400000 +1435 2295 0.400000 +1435 2322 0.400000 +1435 2427 0.400000 +1435 2506 0.400000 +1435 2613 0.400000 +1435 2628 0.400000 +1435 2652 0.400000 +1435 2682 0.400000 +1435 2689 0.400000 +1435 2700 0.400000 +1435 2748 0.400000 +1435 2787 0.400000 +1435 2815 0.400000 +1435 2820 0.400000 +1435 2868 0.400000 +1435 2915 0.400000 +1435 3065 0.400000 +1435 3114 0.400000 +1436 17 0.400000 +1436 245 0.400000 +1436 247 0.400000 +1436 385 0.400000 +1436 420 0.400000 +1436 434 0.400000 +1436 442 0.400000 +1436 519 0.400000 +1436 624 0.400000 +1436 892 0.400000 +1436 939 0.400000 +1436 971 0.400000 +1436 978 0.400000 +1436 1081 0.400000 +1436 1103 0.400000 +1436 1137 0.400000 +1436 1148 0.400000 +1436 1202 0.400000 +1436 1280 0.400000 +1436 1337 0.400000 +1436 1367 0.400000 +1436 1408 0.400000 +1436 1541 0.400000 +1436 1557 0.400000 +1436 1581 0.400000 +1436 1699 0.400000 +1436 1731 0.400000 +1436 1742 0.400000 +1436 1803 0.400000 +1436 1893 0.400000 +1436 1895 0.400000 +1436 1913 0.400000 +1436 1916 0.400000 +1436 1980 0.400000 +1436 1989 0.400000 +1436 2002 0.400000 +1436 2038 0.400000 +1436 2146 0.400000 +1436 2265 0.400000 +1436 2309 0.400000 +1436 2319 0.400000 +1436 2339 0.400000 +1436 2347 0.400000 +1436 2357 0.400000 +1436 2418 0.400000 +1436 2474 0.400000 +1436 2492 0.400000 +1436 2533 0.400000 +1436 2545 0.400000 +1436 2569 0.400000 +1436 2633 0.400000 +1436 2639 0.400000 +1436 2652 0.400000 +1436 2758 0.400000 +1436 2767 0.400000 +1436 2821 0.400000 +1436 2839 0.400000 +1436 2857 0.400000 +1436 2883 0.400000 +1436 2906 0.400000 +1436 3042 0.400000 +1436 3095 0.400000 +1436 3138 0.400000 +1436 3167 0.400000 +1437 10 0.400000 +1437 72 0.400000 +1437 98 0.400000 +1437 112 0.400000 +1437 159 0.400000 +1437 231 0.400000 +1437 306 0.400000 +1437 437 0.400000 +1437 442 0.400000 +1437 499 0.400000 +1437 607 0.400000 +1437 631 0.400000 +1437 641 0.400000 +1437 643 0.400000 +1437 647 0.400000 +1437 830 0.400000 +1437 836 0.400000 +1437 839 0.400000 +1437 978 0.400000 +1437 998 0.400000 +1437 1080 0.400000 +1437 1096 0.400000 +1437 1103 0.400000 +1437 1163 0.400000 +1437 1230 0.400000 +1437 1246 0.400000 +1437 1295 0.400000 +1437 1326 0.400000 +1437 1384 0.400000 +1437 1415 0.400000 +1437 1428 0.400000 +1437 1443 0.400000 +1437 1465 0.400000 +1437 1475 0.400000 +1437 1488 0.400000 +1437 1537 0.400000 +1437 1538 0.400000 +1437 1558 0.400000 +1437 1697 0.400000 +1437 1769 0.400000 +1437 1937 0.400000 +1437 1943 0.400000 +1437 1946 0.400000 +1437 1961 0.400000 +1437 1979 0.400000 +1437 2016 0.400000 +1437 2028 0.400000 +1437 2036 0.400000 +1437 2100 0.400000 +1437 2122 0.400000 +1437 2137 0.400000 +1437 2193 0.400000 +1437 2232 0.400000 +1437 2331 0.400000 +1437 2435 0.400000 +1437 2514 0.400000 +1437 2515 0.400000 +1437 2615 0.400000 +1437 2637 0.400000 +1437 2869 0.400000 +1437 3008 0.400000 +1437 3123 0.400000 +1438 48 0.400000 +1438 107 0.400000 +1438 110 0.400000 +1438 127 0.400000 +1438 136 0.400000 +1438 174 0.400000 +1438 386 0.400000 +1438 525 0.400000 +1438 551 0.400000 +1438 705 0.400000 +1438 718 0.400000 +1438 785 0.400000 +1438 898 0.400000 +1438 960 0.400000 +1438 1085 0.400000 +1438 1086 0.400000 +1438 1094 0.400000 +1438 1128 0.400000 +1438 1139 0.400000 +1438 1167 0.400000 +1438 1168 0.400000 +1438 1217 0.400000 +1438 1248 0.400000 +1438 1249 0.400000 +1438 1275 0.400000 +1438 1290 0.400000 +1438 1335 0.400000 +1438 1411 0.400000 +1438 1412 0.400000 +1438 1450 0.400000 +1438 1487 0.400000 +1438 1491 0.400000 +1438 1556 0.400000 +1438 1603 0.400000 +1438 1727 0.400000 +1438 1757 0.400000 +1438 1809 0.400000 +1438 1936 0.400000 +1438 1991 0.400000 +1438 1996 0.400000 +1438 2029 0.400000 +1438 2051 0.400000 +1438 2107 0.400000 +1438 2156 0.400000 +1438 2227 0.400000 +1438 2336 0.400000 +1438 2350 0.400000 +1438 2377 0.400000 +1438 2424 0.400000 +1438 2614 0.400000 +1438 2656 0.400000 +1438 2672 0.400000 +1438 2730 0.400000 +1438 2734 0.400000 +1438 2815 0.400000 +1438 2853 0.400000 +1438 2964 0.400000 +1438 2983 0.400000 +1438 3049 0.400000 +1438 3053 0.400000 +1438 3089 0.400000 +1439 97 0.400000 +1439 112 0.400000 +1439 123 0.400000 +1439 163 0.400000 +1439 231 0.400000 +1439 290 0.400000 +1439 390 0.400000 +1439 391 0.400000 +1439 401 0.400000 +1439 411 0.400000 +1439 414 0.400000 +1439 440 0.400000 +1439 578 0.400000 +1439 619 0.400000 +1439 635 0.400000 +1439 647 0.400000 +1439 674 0.400000 +1439 725 0.400000 +1439 758 0.400000 +1439 825 0.400000 +1439 834 0.400000 +1439 840 0.400000 +1439 986 0.400000 +1439 1030 0.400000 +1439 1113 0.400000 +1439 1138 0.400000 +1439 1251 0.400000 +1439 1272 0.400000 +1439 1277 0.400000 +1439 1399 0.400000 +1439 1421 0.400000 +1439 1426 0.400000 +1439 1443 0.400000 +1439 1492 0.400000 +1439 1534 0.400000 +1439 1538 0.400000 +1439 1556 0.400000 +1439 1575 0.400000 +1439 1599 0.400000 +1439 1622 0.400000 +1439 1634 0.400000 +1439 1641 0.400000 +1439 1774 0.400000 +1439 1815 0.400000 +1439 1868 0.400000 +1439 1885 0.400000 +1439 1897 0.400000 +1439 1904 0.400000 +1439 1993 0.400000 +1439 1994 0.400000 +1439 2003 0.400000 +1439 2066 0.400000 +1439 2119 0.400000 +1439 2140 0.400000 +1439 2211 0.400000 +1439 2268 0.400000 +1439 2279 0.400000 +1439 2297 0.400000 +1439 2306 0.400000 +1439 2377 0.400000 +1439 2383 0.400000 +1439 2398 0.400000 +1439 2435 0.400000 +1439 2455 0.400000 +1439 2468 0.400000 +1439 2512 0.400000 +1439 2611 0.400000 +1439 2716 0.400000 +1439 2723 0.400000 +1439 2740 0.400000 +1439 2845 0.400000 +1439 2870 0.400000 +1439 2967 0.400000 +1439 2999 0.400000 +1439 3015 0.400000 +1439 3020 0.400000 +1439 3068 0.400000 +1439 3085 0.400000 +1439 3100 0.400000 +1439 3109 0.400000 +1439 3124 0.400000 +1439 3160 0.400000 +1439 3169 0.400000 +1440 96 0.400000 +1440 142 0.400000 +1440 153 0.400000 +1440 159 0.400000 +1440 209 0.400000 +1440 388 0.400000 +1440 401 0.400000 +1440 463 0.400000 +1440 496 0.400000 +1440 548 0.400000 +1440 583 0.400000 +1440 588 0.400000 +1440 653 0.400000 +1440 773 0.400000 +1440 948 0.400000 +1440 980 0.400000 +1440 1023 0.400000 +1440 1051 0.400000 +1440 1060 0.400000 +1440 1096 0.400000 +1440 1161 0.400000 +1440 1266 0.400000 +1440 1312 0.400000 +1440 1481 0.400000 +1440 1499 0.400000 +1440 1556 0.400000 +1440 1557 0.400000 +1440 1579 0.400000 +1440 1602 0.400000 +1440 1645 0.400000 +1440 1676 0.400000 +1440 1687 0.400000 +1440 1745 0.400000 +1440 1876 0.400000 +1440 1905 0.400000 +1440 1928 0.400000 +1440 1982 0.400000 +1440 1994 0.400000 +1440 2020 0.400000 +1440 2022 0.400000 +1440 2154 0.400000 +1440 2191 0.400000 +1440 2223 0.400000 +1440 2283 0.400000 +1440 2470 0.400000 +1440 2475 0.400000 +1440 2495 0.400000 +1440 2502 0.400000 +1440 2546 0.400000 +1440 2693 0.400000 +1440 2828 0.400000 +1440 2841 0.400000 +1440 2921 0.400000 +1440 2984 0.400000 +1440 2990 0.400000 +1440 3182 0.400000 +1441 41 0.400000 +1441 55 0.400000 +1441 62 0.400000 +1441 131 0.400000 +1441 168 0.400000 +1441 243 0.400000 +1441 244 0.400000 +1441 257 0.400000 +1441 341 0.400000 +1441 503 0.400000 +1441 508 0.400000 +1441 523 0.400000 +1441 539 0.400000 +1441 548 0.400000 +1441 624 0.400000 +1441 635 0.400000 +1441 676 0.400000 +1441 808 0.400000 +1441 866 0.400000 +1441 903 0.400000 +1441 928 0.400000 +1441 1035 0.400000 +1441 1131 0.400000 +1441 1238 0.400000 +1441 1248 0.400000 +1441 1320 0.400000 +1441 1347 0.400000 +1441 1399 0.400000 +1441 1419 0.400000 +1441 1488 0.400000 +1441 1562 0.400000 +1441 1624 0.400000 +1441 1634 0.400000 +1441 1657 0.400000 +1441 1659 0.400000 +1441 1713 0.400000 +1441 1795 0.400000 +1441 1817 0.400000 +1441 1831 0.400000 +1441 1857 0.400000 +1441 1956 0.400000 +1441 1992 0.400000 +1441 2027 0.400000 +1441 2047 0.400000 +1441 2142 0.400000 +1441 2197 0.400000 +1441 2308 0.400000 +1441 2339 0.400000 +1441 2506 0.400000 +1441 2518 0.400000 +1441 2528 0.400000 +1441 2580 0.400000 +1441 2680 0.400000 +1441 2721 0.400000 +1441 2765 0.400000 +1441 2769 0.400000 +1441 2843 0.400000 +1441 2968 0.400000 +1441 3069 0.400000 +1441 3106 0.400000 +1441 3177 0.400000 +1442 30 0.400000 +1442 164 0.400000 +1442 166 0.400000 +1442 252 0.400000 +1442 314 0.400000 +1442 318 0.400000 +1442 485 0.400000 +1442 549 0.400000 +1442 594 0.400000 +1442 657 0.400000 +1442 672 0.400000 +1442 701 0.400000 +1442 741 0.400000 +1442 754 0.400000 +1442 765 0.400000 +1442 776 0.400000 +1442 809 0.400000 +1442 955 0.400000 +1442 997 0.400000 +1442 1019 0.400000 +1442 1110 0.400000 +1442 1145 0.400000 +1442 1165 0.400000 +1442 1253 0.400000 +1442 1351 0.400000 +1442 1424 0.400000 +1442 1468 0.400000 +1442 1498 0.400000 +1442 1572 0.400000 +1442 1628 0.400000 +1442 1651 0.400000 +1442 1664 0.400000 +1442 1743 0.400000 +1442 1765 0.400000 +1442 1767 0.400000 +1442 1792 0.400000 +1442 1812 0.400000 +1442 1850 0.400000 +1442 1868 0.400000 +1442 1899 0.400000 +1442 1912 0.400000 +1442 1920 0.400000 +1442 2025 0.400000 +1442 2053 0.400000 +1442 2080 0.400000 +1442 2104 0.400000 +1442 2109 0.400000 +1442 2127 0.400000 +1442 2140 0.400000 +1442 2157 0.400000 +1442 2159 0.400000 +1442 2243 0.400000 +1442 2244 0.400000 +1442 2259 0.400000 +1442 2261 0.400000 +1442 2301 0.400000 +1442 2319 0.400000 +1442 2419 0.400000 +1442 2662 0.400000 +1442 2729 0.400000 +1442 2735 0.400000 +1442 2744 0.400000 +1442 2774 0.400000 +1442 2790 0.400000 +1442 2898 0.400000 +1442 2943 0.400000 +1442 2963 0.400000 +1442 2973 0.400000 +1442 3084 0.400000 +1443 162 0.400000 +1443 202 0.400000 +1443 226 0.400000 +1443 267 0.400000 +1443 304 0.400000 +1443 322 0.400000 +1443 354 0.400000 +1443 391 0.400000 +1443 413 0.400000 +1443 419 0.400000 +1443 448 0.400000 +1443 489 0.400000 +1443 509 0.400000 +1443 523 0.400000 +1443 540 0.400000 +1443 544 0.400000 +1443 618 0.400000 +1443 631 0.400000 +1443 716 0.400000 +1443 745 0.400000 +1443 816 0.400000 +1443 890 0.400000 +1443 905 0.400000 +1443 950 0.400000 +1443 989 0.400000 +1443 990 0.400000 +1443 991 0.400000 +1443 1009 0.400000 +1443 1021 0.400000 +1443 1022 0.400000 +1443 1032 0.400000 +1443 1151 0.400000 +1443 1208 0.400000 +1443 1245 0.400000 +1443 1461 0.400000 +1443 1499 0.400000 +1443 1588 0.400000 +1443 1635 0.400000 +1443 1807 0.400000 +1443 1891 0.400000 +1443 1922 0.400000 +1443 1936 0.400000 +1443 2034 0.400000 +1443 2049 0.400000 +1443 2195 0.400000 +1443 2258 0.400000 +1443 2370 0.400000 +1443 2386 0.400000 +1443 2402 0.400000 +1443 2404 0.400000 +1443 2500 0.400000 +1443 2514 0.400000 +1443 2584 0.400000 +1443 2653 0.400000 +1443 2749 0.400000 +1443 2784 0.400000 +1443 2820 0.400000 +1443 2870 0.400000 +1443 2903 0.400000 +1443 2928 0.400000 +1443 2930 0.400000 +1443 3021 0.400000 +1443 3047 0.400000 +1443 3099 0.400000 +1443 3106 0.400000 +1443 3184 0.400000 +1443 3192 0.400000 +1444 46 0.400000 +1444 257 0.400000 +1444 267 0.400000 +1444 320 0.400000 +1444 338 0.400000 +1444 368 0.400000 +1444 404 0.400000 +1444 406 0.400000 +1444 414 0.400000 +1444 507 0.400000 +1444 519 0.400000 +1444 636 0.400000 +1444 663 0.400000 +1444 673 0.400000 +1444 674 0.400000 +1444 686 0.400000 +1444 771 0.400000 +1444 794 0.400000 +1444 812 0.400000 +1444 920 0.400000 +1444 1023 0.400000 +1444 1049 0.400000 +1444 1074 0.400000 +1444 1099 0.400000 +1444 1119 0.400000 +1444 1158 0.400000 +1444 1188 0.400000 +1444 1239 0.400000 +1444 1240 0.400000 +1444 1264 0.400000 +1444 1382 0.400000 +1444 1407 0.400000 +1444 1478 0.400000 +1444 1529 0.400000 +1444 1534 0.400000 +1444 1640 0.400000 +1444 1737 0.400000 +1444 1762 0.400000 +1444 1817 0.400000 +1444 1860 0.400000 +1444 1925 0.400000 +1444 1973 0.400000 +1444 1981 0.400000 +1444 1999 0.400000 +1444 2018 0.400000 +1444 2121 0.400000 +1444 2135 0.400000 +1444 2278 0.400000 +1444 2336 0.400000 +1444 2343 0.400000 +1444 2450 0.400000 +1444 2619 0.400000 +1444 2636 0.400000 +1444 2656 0.400000 +1444 2660 0.400000 +1444 2678 0.400000 +1444 2725 0.400000 +1444 2765 0.400000 +1444 2769 0.400000 +1444 2834 0.400000 +1444 2836 0.400000 +1444 2955 0.400000 +1444 2976 0.400000 +1444 3064 0.400000 +1444 3073 0.400000 +1444 3097 0.400000 +1444 3101 0.400000 +1444 3171 0.400000 +1444 3176 0.400000 +1445 70 0.400000 +1445 71 0.400000 +1445 136 0.400000 +1445 166 0.400000 +1445 210 0.400000 +1445 348 0.400000 +1445 442 0.400000 +1445 594 0.400000 +1445 613 0.400000 +1445 790 0.400000 +1445 798 0.400000 +1445 830 0.400000 +1445 862 0.400000 +1445 868 0.400000 +1445 891 0.400000 +1445 985 0.400000 +1445 1016 0.400000 +1445 1058 0.400000 +1445 1182 0.400000 +1445 1187 0.400000 +1445 1235 0.400000 +1445 1240 0.400000 +1445 1292 0.400000 +1445 1375 0.400000 +1445 1401 0.400000 +1445 1409 0.400000 +1445 1433 0.400000 +1445 1444 0.400000 +1445 1481 0.400000 +1445 1484 0.400000 +1445 1489 0.400000 +1445 1604 0.400000 +1445 1680 0.400000 +1445 1681 0.400000 +1445 1779 0.400000 +1445 1784 0.400000 +1445 1818 0.400000 +1445 1835 0.400000 +1445 1911 0.400000 +1445 1974 0.400000 +1445 1986 0.400000 +1445 2036 0.400000 +1445 2038 0.400000 +1445 2044 0.400000 +1445 2221 0.400000 +1445 2293 0.400000 +1445 2344 0.400000 +1445 2355 0.400000 +1445 2395 0.400000 +1445 2413 0.400000 +1445 2415 0.400000 +1445 2469 0.400000 +1445 2508 0.400000 +1445 2547 0.400000 +1445 2549 0.400000 +1445 2583 0.400000 +1445 2822 0.400000 +1445 2829 0.400000 +1445 2877 0.400000 +1445 2884 0.400000 +1445 2915 0.400000 +1445 3019 0.400000 +1445 3070 0.400000 +1445 3113 0.400000 +1445 3171 0.400000 +1446 21 0.400000 +1446 37 0.400000 +1446 56 0.400000 +1446 57 0.400000 +1446 108 0.400000 +1446 272 0.400000 +1446 291 0.400000 +1446 357 0.400000 +1446 404 0.400000 +1446 469 0.400000 +1446 551 0.400000 +1446 599 0.400000 +1446 613 0.400000 +1446 638 0.400000 +1446 738 0.400000 +1446 746 0.400000 +1446 750 0.400000 +1446 926 0.400000 +1446 1046 0.400000 +1446 1061 0.400000 +1446 1085 0.400000 +1446 1222 0.400000 +1446 1242 0.400000 +1446 1260 0.400000 +1446 1294 0.400000 +1446 1366 0.400000 +1446 1393 0.400000 +1446 1463 0.400000 +1446 1496 0.400000 +1446 1605 0.400000 +1446 1613 0.400000 +1446 1634 0.400000 +1446 1700 0.400000 +1446 1746 0.400000 +1446 1931 0.400000 +1446 2021 0.400000 +1446 2090 0.400000 +1446 2099 0.400000 +1446 2213 0.400000 +1446 2216 0.400000 +1446 2242 0.400000 +1446 2318 0.400000 +1446 2326 0.400000 +1446 2408 0.400000 +1446 2417 0.400000 +1446 2579 0.400000 +1446 2607 0.400000 +1446 2631 0.400000 +1446 2669 0.400000 +1446 2687 0.400000 +1446 2699 0.400000 +1446 2708 0.400000 +1446 2714 0.400000 +1446 2731 0.400000 +1446 2736 0.400000 +1446 2764 0.400000 +1446 2808 0.400000 +1446 2825 0.400000 +1446 2840 0.400000 +1446 2849 0.400000 +1446 2872 0.400000 +1446 2894 0.400000 +1446 2912 0.400000 +1446 2957 0.400000 +1446 3033 0.400000 +1447 36 0.400000 +1447 47 0.400000 +1447 61 0.400000 +1447 68 0.400000 +1447 79 0.400000 +1447 232 0.400000 +1447 270 0.400000 +1447 298 0.400000 +1447 421 0.400000 +1447 477 0.400000 +1447 520 0.400000 +1447 534 0.400000 +1447 545 0.400000 +1447 583 0.400000 +1447 589 0.400000 +1447 613 0.400000 +1447 619 0.400000 +1447 726 0.400000 +1447 843 0.400000 +1447 846 0.400000 +1447 873 0.400000 +1447 887 0.400000 +1447 1026 0.400000 +1447 1053 0.400000 +1447 1129 0.400000 +1447 1178 0.400000 +1447 1253 0.400000 +1447 1279 0.400000 +1447 1383 0.400000 +1447 1480 0.400000 +1447 1503 0.400000 +1447 1557 0.400000 +1447 1662 0.400000 +1447 1664 0.400000 +1447 1984 0.400000 +1447 2139 0.400000 +1447 2170 0.400000 +1447 2187 0.400000 +1447 2220 0.400000 +1447 2246 0.400000 +1447 2277 0.400000 +1447 2336 0.400000 +1447 2411 0.400000 +1447 2418 0.400000 +1447 2459 0.400000 +1447 2521 0.400000 +1447 2552 0.400000 +1447 2574 0.400000 +1447 2591 0.400000 +1447 2617 0.400000 +1447 2630 0.400000 +1447 2641 0.400000 +1447 2657 0.400000 +1447 2750 0.400000 +1447 2853 0.400000 +1447 2914 0.400000 +1447 2917 0.400000 +1447 2930 0.400000 +1447 2953 0.400000 +1447 2977 0.400000 +1447 2978 0.400000 +1447 2981 0.400000 +1447 2985 0.400000 +1447 2991 0.400000 +1448 14 0.400000 +1448 27 0.400000 +1448 91 0.400000 +1448 108 0.400000 +1448 122 0.400000 +1448 129 0.400000 +1448 212 0.400000 +1448 261 0.400000 +1448 284 0.400000 +1448 304 0.400000 +1448 368 0.400000 +1448 419 0.400000 +1448 461 0.400000 +1448 481 0.400000 +1448 487 0.400000 +1448 509 0.400000 +1448 536 0.400000 +1448 600 0.400000 +1448 679 0.400000 +1448 743 0.400000 +1448 762 0.400000 +1448 893 0.400000 +1448 924 0.400000 +1448 1096 0.400000 +1448 1103 0.400000 +1448 1135 0.400000 +1448 1218 0.400000 +1448 1243 0.400000 +1448 1251 0.400000 +1448 1304 0.400000 +1448 1329 0.400000 +1448 1375 0.400000 +1448 1472 0.400000 +1448 1522 0.400000 +1448 1554 0.400000 +1448 1639 0.400000 +1448 1676 0.400000 +1448 1702 0.400000 +1448 1718 0.400000 +1448 1726 0.400000 +1448 1852 0.400000 +1448 1896 0.400000 +1448 1917 0.400000 +1448 1942 0.400000 +1448 1961 0.400000 +1448 2094 0.400000 +1448 2145 0.400000 +1448 2164 0.400000 +1448 2169 0.400000 +1448 2290 0.400000 +1448 2301 0.400000 +1448 2324 0.400000 +1448 2411 0.400000 +1448 2419 0.400000 +1448 2515 0.400000 +1448 2592 0.400000 +1448 2604 0.400000 +1448 2619 0.400000 +1448 2719 0.400000 +1448 2793 0.400000 +1448 2807 0.400000 +1448 2884 0.400000 +1448 2895 0.400000 +1448 2899 0.400000 +1448 2909 0.400000 +1448 2948 0.400000 +1448 2998 0.400000 +1448 3061 0.400000 +1448 3103 0.400000 +1448 3137 0.400000 +1448 3189 0.400000 +1449 28 0.400000 +1449 37 0.400000 +1449 109 0.400000 +1449 211 0.400000 +1449 243 0.400000 +1449 299 0.400000 +1449 334 0.400000 +1449 342 0.400000 +1449 345 0.400000 +1449 439 0.400000 +1449 556 0.400000 +1449 558 0.400000 +1449 639 0.400000 +1449 663 0.400000 +1449 682 0.400000 +1449 688 0.400000 +1449 697 0.400000 +1449 707 0.400000 +1449 710 0.400000 +1449 732 0.400000 +1449 738 0.400000 +1449 756 0.400000 +1449 814 0.400000 +1449 842 0.400000 +1449 845 0.400000 +1449 1031 0.400000 +1449 1032 0.400000 +1449 1090 0.400000 +1449 1094 0.400000 +1449 1105 0.400000 +1449 1157 0.400000 +1449 1272 0.400000 +1449 1340 0.400000 +1449 1411 0.400000 +1449 1412 0.400000 +1449 1433 0.400000 +1449 1514 0.400000 +1449 1565 0.400000 +1449 1688 0.400000 +1449 1717 0.400000 +1449 1746 0.400000 +1449 1884 0.400000 +1449 2021 0.400000 +1449 2068 0.400000 +1449 2086 0.400000 +1449 2188 0.400000 +1449 2194 0.400000 +1449 2199 0.400000 +1449 2219 0.400000 +1449 2270 0.400000 +1449 2278 0.400000 +1449 2313 0.400000 +1449 2342 0.400000 +1449 2375 0.400000 +1449 2425 0.400000 +1449 2506 0.400000 +1449 2542 0.400000 +1449 2544 0.400000 +1449 2764 0.400000 +1449 2774 0.400000 +1449 2844 0.400000 +1449 2910 0.400000 +1449 3056 0.400000 +1449 3076 0.400000 +1449 3078 0.400000 +1449 3101 0.400000 +1449 3122 0.400000 +1449 3168 0.400000 +1450 110 0.400000 +1450 172 0.400000 +1450 198 0.400000 +1450 199 0.400000 +1450 249 0.400000 +1450 544 0.400000 +1450 551 0.400000 +1450 591 0.400000 +1450 603 0.400000 +1450 604 0.400000 +1450 655 0.400000 +1450 677 0.400000 +1450 724 0.400000 +1450 740 0.400000 +1450 775 0.400000 +1450 827 0.400000 +1450 851 0.400000 +1450 861 0.400000 +1450 954 0.400000 +1450 985 0.400000 +1450 986 0.400000 +1450 1004 0.400000 +1450 1046 0.400000 +1450 1089 0.400000 +1450 1150 0.400000 +1450 1190 0.400000 +1450 1203 0.400000 +1450 1213 0.400000 +1450 1285 0.400000 +1450 1304 0.400000 +1450 1353 0.400000 +1450 1390 0.400000 +1450 1410 0.400000 +1450 1507 0.400000 +1450 1516 0.400000 +1450 1552 0.400000 +1450 1617 0.400000 +1450 1683 0.400000 +1450 1689 0.400000 +1450 1691 0.400000 +1450 1692 0.400000 +1450 1694 0.400000 +1450 1741 0.400000 +1450 1754 0.400000 +1450 1863 0.400000 +1450 1909 0.400000 +1450 1936 0.400000 +1450 1964 0.400000 +1450 1966 0.400000 +1450 1977 0.400000 +1450 2011 0.400000 +1450 2125 0.400000 +1450 2292 0.400000 +1450 2366 0.400000 +1450 2391 0.400000 +1450 2423 0.400000 +1450 2428 0.400000 +1450 2436 0.400000 +1450 2543 0.400000 +1450 2551 0.400000 +1450 2561 0.400000 +1450 2576 0.400000 +1450 2577 0.400000 +1450 2604 0.400000 +1450 2641 0.400000 +1450 2827 0.400000 +1450 2848 0.400000 +1450 3045 0.400000 +1450 3114 0.400000 +1450 3126 0.400000 +1450 3168 0.400000 +1451 82 0.400000 +1451 144 0.400000 +1451 158 0.400000 +1451 287 0.400000 +1451 359 0.400000 +1451 456 0.400000 +1451 504 0.400000 +1451 510 0.400000 +1451 517 0.400000 +1451 524 0.400000 +1451 545 0.400000 +1451 685 0.400000 +1451 715 0.400000 +1451 717 0.400000 +1451 758 0.400000 +1451 794 0.400000 +1451 806 0.400000 +1451 842 0.400000 +1451 863 0.400000 +1451 883 0.400000 +1451 891 0.400000 +1451 901 0.400000 +1451 942 0.400000 +1451 972 0.400000 +1451 1022 0.400000 +1451 1058 0.400000 +1451 1080 0.400000 +1451 1100 0.400000 +1451 1124 0.400000 +1451 1187 0.400000 +1451 1226 0.400000 +1451 1241 0.400000 +1451 1259 0.400000 +1451 1269 0.400000 +1451 1344 0.400000 +1451 1467 0.400000 +1451 1482 0.400000 +1451 1508 0.400000 +1451 1511 0.400000 +1451 1525 0.400000 +1451 1537 0.400000 +1451 1566 0.400000 +1451 1567 0.400000 +1451 1701 0.400000 +1451 1706 0.400000 +1451 1738 0.400000 +1451 1784 0.400000 +1451 1847 0.400000 +1451 1855 0.400000 +1451 1949 0.400000 +1451 1998 0.400000 +1451 2033 0.400000 +1451 2035 0.400000 +1451 2058 0.400000 +1451 2133 0.400000 +1451 2208 0.400000 +1451 2245 0.400000 +1451 2285 0.400000 +1451 2355 0.400000 +1451 2358 0.400000 +1451 2368 0.400000 +1451 2373 0.400000 +1451 2375 0.400000 +1451 2424 0.400000 +1451 2442 0.400000 +1451 2443 0.400000 +1451 2504 0.400000 +1451 2512 0.400000 +1451 2523 0.400000 +1451 2558 0.400000 +1451 2574 0.400000 +1451 2599 0.400000 +1451 2660 0.400000 +1451 2679 0.400000 +1451 2751 0.400000 +1451 2754 0.400000 +1451 2757 0.400000 +1451 2764 0.400000 +1451 2802 0.400000 +1451 2814 0.400000 +1451 2847 0.400000 +1451 2862 0.400000 +1451 2873 0.400000 +1451 3003 0.400000 +1451 3004 0.400000 +1451 3013 0.400000 +1451 3066 0.400000 +1451 3132 0.400000 +1451 3192 0.400000 +1452 67 0.400000 +1452 223 0.400000 +1452 244 0.400000 +1452 545 0.400000 +1452 572 0.400000 +1452 645 0.400000 +1452 657 0.400000 +1452 703 0.400000 +1452 706 0.400000 +1452 713 0.400000 +1452 798 0.400000 +1452 813 0.400000 +1452 902 0.400000 +1452 963 0.400000 +1452 1014 0.400000 +1452 1036 0.400000 +1452 1071 0.400000 +1452 1158 0.400000 +1452 1163 0.400000 +1452 1202 0.400000 +1452 1271 0.400000 +1452 1450 0.400000 +1452 1584 0.400000 +1452 1620 0.400000 +1452 1845 0.400000 +1452 1949 0.400000 +1452 1971 0.400000 +1452 2037 0.400000 +1452 2039 0.400000 +1452 2090 0.400000 +1452 2193 0.400000 +1452 2226 0.400000 +1452 2253 0.400000 +1452 2301 0.400000 +1452 2302 0.400000 +1452 2389 0.400000 +1452 2468 0.400000 +1452 2510 0.400000 +1452 2575 0.400000 +1452 2672 0.400000 +1452 2709 0.400000 +1452 2826 0.400000 +1452 2827 0.400000 +1452 2835 0.400000 +1452 2863 0.400000 +1452 2882 0.400000 +1452 2931 0.400000 +1452 3028 0.400000 +1452 3062 0.400000 +1452 3097 0.400000 +1452 3170 0.400000 +1453 20 0.400000 +1453 25 0.400000 +1453 93 0.400000 +1453 163 0.400000 +1453 276 0.400000 +1453 335 0.400000 +1453 352 0.400000 +1453 439 0.400000 +1453 514 0.400000 +1453 653 0.400000 +1453 667 0.400000 +1453 689 0.400000 +1453 701 0.400000 +1453 799 0.400000 +1453 908 0.400000 +1453 922 0.400000 +1453 937 0.400000 +1453 1111 0.400000 +1453 1116 0.400000 +1453 1120 0.400000 +1453 1191 0.400000 +1453 1205 0.400000 +1453 1329 0.400000 +1453 1330 0.400000 +1453 1338 0.400000 +1453 1346 0.400000 +1453 1381 0.400000 +1453 1410 0.400000 +1453 1419 0.400000 +1453 1479 0.400000 +1453 1598 0.400000 +1453 1605 0.400000 +1453 1618 0.400000 +1453 1667 0.400000 +1453 1695 0.400000 +1453 1700 0.400000 +1453 1736 0.400000 +1453 1767 0.400000 +1453 1771 0.400000 +1453 1785 0.400000 +1453 1830 0.400000 +1453 1837 0.400000 +1453 1944 0.400000 +1453 1997 0.400000 +1453 2019 0.400000 +1453 2028 0.400000 +1453 2171 0.400000 +1453 2184 0.400000 +1453 2240 0.400000 +1453 2242 0.400000 +1453 2406 0.400000 +1453 2416 0.400000 +1453 2482 0.400000 +1453 2534 0.400000 +1453 2609 0.400000 +1453 2642 0.400000 +1453 2652 0.400000 +1453 2709 0.400000 +1453 2720 0.400000 +1453 2749 0.400000 +1453 2808 0.400000 +1453 2856 0.400000 +1453 2869 0.400000 +1453 2871 0.400000 +1453 2988 0.400000 +1453 3044 0.400000 +1453 3047 0.400000 +1453 3049 0.400000 +1453 3075 0.400000 +1453 3129 0.400000 +1453 3200 0.400000 +1454 19 0.400000 +1454 20 0.400000 +1454 82 0.400000 +1454 212 0.400000 +1454 311 0.400000 +1454 315 0.400000 +1454 336 0.400000 +1454 381 0.400000 +1454 394 0.400000 +1454 420 0.400000 +1454 445 0.400000 +1454 458 0.400000 +1454 501 0.400000 +1454 505 0.400000 +1454 734 0.400000 +1454 743 0.400000 +1454 790 0.400000 +1454 795 0.400000 +1454 824 0.400000 +1454 836 0.400000 +1454 849 0.400000 +1454 868 0.400000 +1454 935 0.400000 +1454 1077 0.400000 +1454 1088 0.400000 +1454 1113 0.400000 +1454 1126 0.400000 +1454 1262 0.400000 +1454 1373 0.400000 +1454 1449 0.400000 +1454 1450 0.400000 +1454 1486 0.400000 +1454 1498 0.400000 +1454 1501 0.400000 +1454 1508 0.400000 +1454 1526 0.400000 +1454 1548 0.400000 +1454 1605 0.400000 +1454 1671 0.400000 +1454 1691 0.400000 +1454 1819 0.400000 +1454 1928 0.400000 +1454 1937 0.400000 +1454 1983 0.400000 +1454 1988 0.400000 +1454 2081 0.400000 +1454 2110 0.400000 +1454 2141 0.400000 +1454 2156 0.400000 +1454 2237 0.400000 +1454 2280 0.400000 +1454 2383 0.400000 +1454 2455 0.400000 +1454 2482 0.400000 +1454 2484 0.400000 +1454 2614 0.400000 +1454 2658 0.400000 +1454 2709 0.400000 +1454 2747 0.400000 +1454 2752 0.400000 +1454 2910 0.400000 +1454 2942 0.400000 +1454 3023 0.400000 +1454 3034 0.400000 +1454 3064 0.400000 +1454 3089 0.400000 +1454 3141 0.400000 +1455 185 0.400000 +1455 200 0.400000 +1455 204 0.400000 +1455 304 0.400000 +1455 336 0.400000 +1455 339 0.400000 +1455 356 0.400000 +1455 409 0.400000 +1455 459 0.400000 +1455 550 0.400000 +1455 557 0.400000 +1455 605 0.400000 +1455 670 0.400000 +1455 682 0.400000 +1455 694 0.400000 +1455 745 0.400000 +1455 771 0.400000 +1455 805 0.400000 +1455 1002 0.400000 +1455 1116 0.400000 +1455 1161 0.400000 +1455 1195 0.400000 +1455 1241 0.400000 +1455 1297 0.400000 +1455 1309 0.400000 +1455 1356 0.400000 +1455 1394 0.400000 +1455 1469 0.400000 +1455 1506 0.400000 +1455 1532 0.400000 +1455 1664 0.400000 +1455 1679 0.400000 +1455 1749 0.400000 +1455 1778 0.400000 +1455 1792 0.400000 +1455 1812 0.400000 +1455 1824 0.400000 +1455 1852 0.400000 +1455 1858 0.400000 +1455 1907 0.400000 +1455 1914 0.400000 +1455 1980 0.400000 +1455 2042 0.400000 +1455 2059 0.400000 +1455 2076 0.400000 +1455 2150 0.400000 +1455 2247 0.400000 +1455 2335 0.400000 +1455 2400 0.400000 +1455 2414 0.400000 +1455 2436 0.400000 +1455 2444 0.400000 +1455 2450 0.400000 +1455 2486 0.400000 +1455 2528 0.400000 +1455 2535 0.400000 +1455 2556 0.400000 +1455 2653 0.400000 +1455 2703 0.400000 +1455 2730 0.400000 +1455 2749 0.400000 +1455 2754 0.400000 +1455 2757 0.400000 +1455 2806 0.400000 +1455 2855 0.400000 +1455 2941 0.400000 +1455 3010 0.400000 +1455 3019 0.400000 +1455 3067 0.400000 +1455 3107 0.400000 +1455 3111 0.400000 +1455 3169 0.400000 +1456 87 0.400000 +1456 168 0.400000 +1456 192 0.400000 +1456 202 0.400000 +1456 210 0.400000 +1456 215 0.400000 +1456 250 0.400000 +1456 318 0.400000 +1456 370 0.400000 +1456 390 0.400000 +1456 412 0.400000 +1456 432 0.400000 +1456 519 0.400000 +1456 762 0.400000 +1456 929 0.400000 +1456 946 0.400000 +1456 986 0.400000 +1456 988 0.400000 +1456 1073 0.400000 +1456 1095 0.400000 +1456 1134 0.400000 +1456 1223 0.400000 +1456 1364 0.400000 +1456 1394 0.400000 +1456 1426 0.400000 +1456 1444 0.400000 +1456 1592 0.400000 +1456 1733 0.400000 +1456 1792 0.400000 +1456 1799 0.400000 +1456 1821 0.400000 +1456 1938 0.400000 +1456 2031 0.400000 +1456 2039 0.400000 +1456 2315 0.400000 +1456 2403 0.400000 +1456 2449 0.400000 +1456 2514 0.400000 +1456 2531 0.400000 +1456 2552 0.400000 +1456 2585 0.400000 +1456 2605 0.400000 +1456 2720 0.400000 +1456 2722 0.400000 +1456 2755 0.400000 +1456 2778 0.400000 +1456 2801 0.400000 +1456 2905 0.400000 +1456 2944 0.400000 +1456 2949 0.400000 +1456 2998 0.400000 +1456 3025 0.400000 +1456 3027 0.400000 +1456 3135 0.400000 +1456 3141 0.400000 +1456 3171 0.400000 +1456 3190 0.400000 +1457 20 0.400000 +1457 81 0.400000 +1457 102 0.400000 +1457 180 0.400000 +1457 386 0.400000 +1457 409 0.400000 +1457 512 0.400000 +1457 635 0.400000 +1457 666 0.400000 +1457 740 0.400000 +1457 823 0.400000 +1457 831 0.400000 +1457 880 0.400000 +1457 884 0.400000 +1457 904 0.400000 +1457 951 0.400000 +1457 956 0.400000 +1457 1023 0.400000 +1457 1094 0.400000 +1457 1123 0.400000 +1457 1160 0.400000 +1457 1170 0.400000 +1457 1255 0.400000 +1457 1279 0.400000 +1457 1280 0.400000 +1457 1359 0.400000 +1457 1369 0.400000 +1457 1501 0.400000 +1457 1565 0.400000 +1457 1569 0.400000 +1457 1583 0.400000 +1457 1584 0.400000 +1457 1586 0.400000 +1457 1588 0.400000 +1457 1599 0.400000 +1457 1600 0.400000 +1457 1677 0.400000 +1457 1705 0.400000 +1457 1738 0.400000 +1457 1747 0.400000 +1457 1764 0.400000 +1457 1778 0.400000 +1457 1904 0.400000 +1457 1985 0.400000 +1457 2042 0.400000 +1457 2155 0.400000 +1457 2226 0.400000 +1457 2261 0.400000 +1457 2282 0.400000 +1457 2305 0.400000 +1457 2353 0.400000 +1457 2453 0.400000 +1457 2460 0.400000 +1457 2462 0.400000 +1457 2571 0.400000 +1457 2728 0.400000 +1457 2758 0.400000 +1457 2831 0.400000 +1457 2932 0.400000 +1457 2940 0.400000 +1457 2977 0.400000 +1457 3008 0.400000 +1457 3037 0.400000 +1457 3093 0.400000 +1457 3104 0.400000 +1457 3131 0.400000 +1458 167 0.400000 +1458 171 0.400000 +1458 233 0.400000 +1458 259 0.400000 +1458 279 0.400000 +1458 295 0.400000 +1458 380 0.400000 +1458 413 0.400000 +1458 430 0.400000 +1458 471 0.400000 +1458 493 0.400000 +1458 503 0.400000 +1458 513 0.400000 +1458 518 0.400000 +1458 565 0.400000 +1458 585 0.400000 +1458 608 0.400000 +1458 662 0.400000 +1458 747 0.400000 +1458 804 0.400000 +1458 859 0.400000 +1458 876 0.400000 +1458 1010 0.400000 +1458 1042 0.400000 +1458 1256 0.400000 +1458 1371 0.400000 +1458 1397 0.400000 +1458 1417 0.400000 +1458 1437 0.400000 +1458 1445 0.400000 +1458 1449 0.400000 +1458 1498 0.400000 +1458 1592 0.400000 +1458 1612 0.400000 +1458 1653 0.400000 +1458 1695 0.400000 +1458 1761 0.400000 +1458 1791 0.400000 +1458 1819 0.400000 +1458 1871 0.400000 +1458 1911 0.400000 +1458 1981 0.400000 +1458 2037 0.400000 +1458 2086 0.400000 +1458 2289 0.400000 +1458 2311 0.400000 +1458 2337 0.400000 +1458 2351 0.400000 +1458 2360 0.400000 +1458 2408 0.400000 +1458 2454 0.400000 +1458 2515 0.400000 +1458 2612 0.400000 +1458 2663 0.400000 +1458 2745 0.400000 +1458 3018 0.400000 +1458 3065 0.400000 +1459 7 0.400000 +1459 55 0.400000 +1459 123 0.400000 +1459 205 0.400000 +1459 276 0.400000 +1459 328 0.400000 +1459 344 0.400000 +1459 349 0.400000 +1459 403 0.400000 +1459 582 0.400000 +1459 682 0.400000 +1459 717 0.400000 +1459 745 0.400000 +1459 747 0.400000 +1459 768 0.400000 +1459 792 0.400000 +1459 877 0.400000 +1459 894 0.400000 +1459 925 0.400000 +1459 933 0.400000 +1459 1046 0.400000 +1459 1117 0.400000 +1459 1145 0.400000 +1459 1154 0.400000 +1459 1303 0.400000 +1459 1327 0.400000 +1459 1365 0.400000 +1459 1391 0.400000 +1459 1420 0.400000 +1459 1425 0.400000 +1459 1613 0.400000 +1459 1620 0.400000 +1459 1662 0.400000 +1459 1681 0.400000 +1459 1707 0.400000 +1459 1786 0.400000 +1459 1894 0.400000 +1459 2001 0.400000 +1459 2084 0.400000 +1459 2125 0.400000 +1459 2143 0.400000 +1459 2221 0.400000 +1459 2230 0.400000 +1459 2237 0.400000 +1459 2340 0.400000 +1459 2369 0.400000 +1459 2378 0.400000 +1459 2456 0.400000 +1459 2475 0.400000 +1459 2496 0.400000 +1459 2565 0.400000 +1459 2568 0.400000 +1459 2630 0.400000 +1459 2693 0.400000 +1459 2764 0.400000 +1459 2767 0.400000 +1459 2819 0.400000 +1459 2930 0.400000 +1459 2964 0.400000 +1459 2966 0.400000 +1459 3026 0.400000 +1459 3059 0.400000 +1459 3066 0.400000 +1459 3089 0.400000 +1459 3109 0.400000 +1459 3132 0.400000 +1459 3178 0.400000 +1460 50 0.400000 +1460 105 0.400000 +1460 261 0.400000 +1460 286 0.400000 +1460 373 0.400000 +1460 394 0.400000 +1460 435 0.400000 +1460 504 0.400000 +1460 581 0.400000 +1460 627 0.400000 +1460 628 0.400000 +1460 699 0.400000 +1460 709 0.400000 +1460 780 0.400000 +1460 822 0.400000 +1460 866 0.400000 +1460 895 0.400000 +1460 979 0.400000 +1460 985 0.400000 +1460 1038 0.400000 +1460 1055 0.400000 +1460 1103 0.400000 +1460 1123 0.400000 +1460 1160 0.400000 +1460 1176 0.400000 +1460 1280 0.400000 +1460 1442 0.400000 +1460 1531 0.400000 +1460 1572 0.400000 +1460 1615 0.400000 +1460 1707 0.400000 +1460 1714 0.400000 +1460 1756 0.400000 +1460 1779 0.400000 +1460 1927 0.400000 +1460 1959 0.400000 +1460 1971 0.400000 +1460 1991 0.400000 +1460 2001 0.400000 +1460 2093 0.400000 +1460 2108 0.400000 +1460 2194 0.400000 +1460 2203 0.400000 +1460 2209 0.400000 +1460 2234 0.400000 +1460 2302 0.400000 +1460 2309 0.400000 +1460 2335 0.400000 +1460 2336 0.400000 +1460 2375 0.400000 +1460 2389 0.400000 +1460 2432 0.400000 +1460 2524 0.400000 +1460 2533 0.400000 +1460 2661 0.400000 +1460 2667 0.400000 +1460 2678 0.400000 +1460 2687 0.400000 +1460 2861 0.400000 +1460 2960 0.400000 +1460 2962 0.400000 +1460 3024 0.400000 +1460 3078 0.400000 +1460 3114 0.400000 +1461 150 0.400000 +1461 169 0.400000 +1461 340 0.400000 +1461 526 0.400000 +1461 644 0.400000 +1461 736 0.400000 +1461 757 0.400000 +1461 810 0.400000 +1461 861 0.400000 +1461 904 0.400000 +1461 990 0.400000 +1461 1015 0.400000 +1461 1041 0.400000 +1461 1065 0.400000 +1461 1133 0.400000 +1461 1159 0.400000 +1461 1241 0.400000 +1461 1282 0.400000 +1461 1283 0.400000 +1461 1339 0.400000 +1461 1375 0.400000 +1461 1407 0.400000 +1461 1433 0.400000 +1461 1452 0.400000 +1461 1463 0.400000 +1461 1513 0.400000 +1461 1589 0.400000 +1461 1597 0.400000 +1461 1626 0.400000 +1461 1655 0.400000 +1461 1725 0.400000 +1461 1758 0.400000 +1461 1783 0.400000 +1461 1886 0.400000 +1461 1936 0.400000 +1461 1961 0.400000 +1461 2077 0.400000 +1461 2130 0.400000 +1461 2185 0.400000 +1461 2358 0.400000 +1461 2398 0.400000 +1461 2421 0.400000 +1461 2471 0.400000 +1461 2512 0.400000 +1461 2609 0.400000 +1461 2619 0.400000 +1461 2621 0.400000 +1461 2713 0.400000 +1461 2856 0.400000 +1461 2954 0.400000 +1461 2956 0.400000 +1461 2970 0.400000 +1461 2995 0.400000 +1461 3043 0.400000 +1461 3099 0.400000 +1461 3130 0.400000 +1461 3188 0.400000 +1462 29 0.400000 +1462 75 0.400000 +1462 167 0.400000 +1462 222 0.400000 +1462 233 0.400000 +1462 289 0.400000 +1462 297 0.400000 +1462 387 0.400000 +1462 493 0.400000 +1462 503 0.400000 +1462 507 0.400000 +1462 581 0.400000 +1462 587 0.400000 +1462 614 0.400000 +1462 645 0.400000 +1462 663 0.400000 +1462 668 0.400000 +1462 737 0.400000 +1462 794 0.400000 +1462 804 0.400000 +1462 820 0.400000 +1462 823 0.400000 +1462 896 0.400000 +1462 934 0.400000 +1462 936 0.400000 +1462 967 0.400000 +1462 1027 0.400000 +1462 1048 0.400000 +1462 1065 0.400000 +1462 1299 0.400000 +1462 1330 0.400000 +1462 1336 0.400000 +1462 1385 0.400000 +1462 1428 0.400000 +1462 1470 0.400000 +1462 1491 0.400000 +1462 1503 0.400000 +1462 1658 0.400000 +1462 1714 0.400000 +1462 1745 0.400000 +1462 1893 0.400000 +1462 1914 0.400000 +1462 1929 0.400000 +1462 2029 0.400000 +1462 2097 0.400000 +1462 2211 0.400000 +1462 2277 0.400000 +1462 2290 0.400000 +1462 2372 0.400000 +1462 2403 0.400000 +1462 2436 0.400000 +1462 2477 0.400000 +1462 2564 0.400000 +1462 2576 0.400000 +1462 2592 0.400000 +1462 2598 0.400000 +1462 2677 0.400000 +1462 2700 0.400000 +1462 2908 0.400000 +1462 3026 0.400000 +1462 3058 0.400000 +1462 3089 0.400000 +1462 3152 0.400000 +1463 10 0.400000 +1463 75 0.400000 +1463 126 0.400000 +1463 201 0.400000 +1463 215 0.400000 +1463 219 0.400000 +1463 301 0.400000 +1463 311 0.400000 +1463 344 0.400000 +1463 409 0.400000 +1463 452 0.400000 +1463 477 0.400000 +1463 497 0.400000 +1463 512 0.400000 +1463 517 0.400000 +1463 521 0.400000 +1463 584 0.400000 +1463 585 0.400000 +1463 682 0.400000 +1463 720 0.400000 +1463 763 0.400000 +1463 771 0.400000 +1463 890 0.400000 +1463 921 0.400000 +1463 1043 0.400000 +1463 1044 0.400000 +1463 1056 0.400000 +1463 1158 0.400000 +1463 1196 0.400000 +1463 1235 0.400000 +1463 1325 0.400000 +1463 1433 0.400000 +1463 1482 0.400000 +1463 1538 0.400000 +1463 1553 0.400000 +1463 1560 0.400000 +1463 1599 0.400000 +1463 1608 0.400000 +1463 1704 0.400000 +1463 1731 0.400000 +1463 1746 0.400000 +1463 1830 0.400000 +1463 1880 0.400000 +1463 1936 0.400000 +1463 1941 0.400000 +1463 1949 0.400000 +1463 1969 0.400000 +1463 1970 0.400000 +1463 2088 0.400000 +1463 2093 0.400000 +1463 2132 0.400000 +1463 2209 0.400000 +1463 2246 0.400000 +1463 2261 0.400000 +1463 2367 0.400000 +1463 2396 0.400000 +1463 2452 0.400000 +1463 2476 0.400000 +1463 2518 0.400000 +1463 2617 0.400000 +1463 2687 0.400000 +1463 2755 0.400000 +1463 2820 0.400000 +1463 2848 0.400000 +1463 2855 0.400000 +1463 2861 0.400000 +1463 2888 0.400000 +1463 2891 0.400000 +1463 3048 0.400000 +1463 3064 0.400000 +1463 3075 0.400000 +1463 3142 0.400000 +1464 73 0.400000 +1464 103 0.400000 +1464 149 0.400000 +1464 159 0.400000 +1464 233 0.400000 +1464 313 0.400000 +1464 321 0.400000 +1464 332 0.400000 +1464 336 0.400000 +1464 409 0.400000 +1464 419 0.400000 +1464 435 0.400000 +1464 490 0.400000 +1464 584 0.400000 +1464 593 0.400000 +1464 604 0.400000 +1464 768 0.400000 +1464 824 0.400000 +1464 837 0.400000 +1464 863 0.400000 +1464 887 0.400000 +1464 923 0.400000 +1464 960 0.400000 +1464 961 0.400000 +1464 1011 0.400000 +1464 1032 0.400000 +1464 1052 0.400000 +1464 1073 0.400000 +1464 1226 0.400000 +1464 1243 0.400000 +1464 1413 0.400000 +1464 1432 0.400000 +1464 1442 0.400000 +1464 1449 0.400000 +1464 1544 0.400000 +1464 1660 0.400000 +1464 1661 0.400000 +1464 1685 0.400000 +1464 1711 0.400000 +1464 1735 0.400000 +1464 1750 0.400000 +1464 1773 0.400000 +1464 1834 0.400000 +1464 1853 0.400000 +1464 1889 0.400000 +1464 1915 0.400000 +1464 1958 0.400000 +1464 1964 0.400000 +1464 1986 0.400000 +1464 2016 0.400000 +1464 2083 0.400000 +1464 2114 0.400000 +1464 2121 0.400000 +1464 2173 0.400000 +1464 2212 0.400000 +1464 2309 0.400000 +1464 2310 0.400000 +1464 2439 0.400000 +1464 2442 0.400000 +1464 2478 0.400000 +1464 2496 0.400000 +1464 2565 0.400000 +1464 2604 0.400000 +1464 2657 0.400000 +1464 2681 0.400000 +1464 2725 0.400000 +1464 2792 0.400000 +1464 2800 0.400000 +1464 2821 0.400000 +1464 2881 0.400000 +1464 2883 0.400000 +1464 2927 0.400000 +1464 2939 0.400000 +1464 3016 0.400000 +1464 3057 0.400000 +1464 3092 0.400000 +1464 3095 0.400000 +1464 3183 0.400000 +1465 36 0.400000 +1465 113 0.400000 +1465 228 0.400000 +1465 234 0.400000 +1465 245 0.400000 +1465 318 0.400000 +1465 336 0.400000 +1465 343 0.400000 +1465 466 0.400000 +1465 560 0.400000 +1465 576 0.400000 +1465 614 0.400000 +1465 649 0.400000 +1465 834 0.400000 +1465 889 0.400000 +1465 936 0.400000 +1465 953 0.400000 +1465 982 0.400000 +1465 1102 0.400000 +1465 1152 0.400000 +1465 1226 0.400000 +1465 1273 0.400000 +1465 1389 0.400000 +1465 1417 0.400000 +1465 1433 0.400000 +1465 1438 0.400000 +1465 1488 0.400000 +1465 1594 0.400000 +1465 1606 0.400000 +1465 1813 0.400000 +1465 1873 0.400000 +1465 1881 0.400000 +1465 1963 0.400000 +1465 2063 0.400000 +1465 2094 0.400000 +1465 2361 0.400000 +1465 2362 0.400000 +1465 2417 0.400000 +1465 2500 0.400000 +1465 2509 0.400000 +1465 2681 0.400000 +1465 2898 0.400000 +1465 2945 0.400000 +1465 2960 0.400000 +1465 2989 0.400000 +1465 2993 0.400000 +1465 3080 0.400000 +1465 3083 0.400000 +1465 3168 0.400000 +1465 3177 0.400000 +1466 41 0.400000 +1466 101 0.400000 +1466 152 0.400000 +1466 184 0.400000 +1466 191 0.400000 +1466 226 0.400000 +1466 248 0.400000 +1466 304 0.400000 +1466 317 0.400000 +1466 377 0.400000 +1466 393 0.400000 +1466 523 0.400000 +1466 560 0.400000 +1466 690 0.400000 +1466 695 0.400000 +1466 711 0.400000 +1466 758 0.400000 +1466 789 0.400000 +1466 795 0.400000 +1466 805 0.400000 +1466 891 0.400000 +1466 896 0.400000 +1466 900 0.400000 +1466 905 0.400000 +1466 945 0.400000 +1466 962 0.400000 +1466 987 0.400000 +1466 1110 0.400000 +1466 1236 0.400000 +1466 1261 0.400000 +1466 1334 0.400000 +1466 1355 0.400000 +1466 1358 0.400000 +1466 1361 0.400000 +1466 1366 0.400000 +1466 1371 0.400000 +1466 1421 0.400000 +1466 1453 0.400000 +1466 1468 0.400000 +1466 1469 0.400000 +1466 1617 0.400000 +1466 1625 0.400000 +1466 1656 0.400000 +1466 1665 0.400000 +1466 1723 0.400000 +1466 1930 0.400000 +1466 1932 0.400000 +1466 2083 0.400000 +1466 2130 0.400000 +1466 2135 0.400000 +1466 2156 0.400000 +1466 2300 0.400000 +1466 2327 0.400000 +1466 2351 0.400000 +1466 2422 0.400000 +1466 2474 0.400000 +1466 2487 0.400000 +1466 2536 0.400000 +1466 2587 0.400000 +1466 2594 0.400000 +1466 2626 0.400000 +1466 2639 0.400000 +1466 2659 0.400000 +1466 2752 0.400000 +1466 2810 0.400000 +1466 2891 0.400000 +1466 2920 0.400000 +1466 3022 0.400000 +1466 3034 0.400000 +1466 3074 0.400000 +1466 3141 0.400000 +1466 3148 0.400000 +1466 3168 0.400000 +1467 41 0.400000 +1467 208 0.400000 +1467 234 0.400000 +1467 251 0.400000 +1467 412 0.400000 +1467 433 0.400000 +1467 473 0.400000 +1467 506 0.400000 +1467 558 0.400000 +1467 600 0.400000 +1467 711 0.400000 +1467 797 0.400000 +1467 945 0.400000 +1467 1020 0.400000 +1467 1026 0.400000 +1467 1191 0.400000 +1467 1197 0.400000 +1467 1244 0.400000 +1467 1303 0.400000 +1467 1320 0.400000 +1467 1380 0.400000 +1467 1419 0.400000 +1467 1585 0.400000 +1467 1595 0.400000 +1467 1650 0.400000 +1467 1652 0.400000 +1467 1697 0.400000 +1467 1773 0.400000 +1467 1808 0.400000 +1467 1819 0.400000 +1467 1833 0.400000 +1467 1957 0.400000 +1467 1973 0.400000 +1467 2024 0.400000 +1467 2037 0.400000 +1467 2134 0.400000 +1467 2299 0.400000 +1467 2392 0.400000 +1467 2486 0.400000 +1467 2552 0.400000 +1467 2558 0.400000 +1467 2650 0.400000 +1467 2655 0.400000 +1467 2708 0.400000 +1467 3035 0.400000 +1467 3055 0.400000 +1467 3063 0.400000 +1467 3095 0.400000 +1467 3107 0.400000 +1467 3180 0.400000 +1468 49 0.400000 +1468 150 0.400000 +1468 168 0.400000 +1468 214 0.400000 +1468 225 0.400000 +1468 309 0.400000 +1468 351 0.400000 +1468 367 0.400000 +1468 554 0.400000 +1468 562 0.400000 +1468 698 0.400000 +1468 742 0.400000 +1468 757 0.400000 +1468 814 0.400000 +1468 840 0.400000 +1468 868 0.400000 +1468 1062 0.400000 +1468 1117 0.400000 +1468 1176 0.400000 +1468 1211 0.400000 +1468 1258 0.400000 +1468 1303 0.400000 +1468 1314 0.400000 +1468 1337 0.400000 +1468 1372 0.400000 +1468 1374 0.400000 +1468 1399 0.400000 +1468 1403 0.400000 +1468 1482 0.400000 +1468 1492 0.400000 +1468 1494 0.400000 +1468 1572 0.400000 +1468 1628 0.400000 +1468 1691 0.400000 +1468 1791 0.400000 +1468 1892 0.400000 +1468 1895 0.400000 +1468 1921 0.400000 +1468 1999 0.400000 +1468 2027 0.400000 +1468 2045 0.400000 +1468 2097 0.400000 +1468 2145 0.400000 +1468 2147 0.400000 +1468 2159 0.400000 +1468 2220 0.400000 +1468 2292 0.400000 +1468 2355 0.400000 +1468 2504 0.400000 +1468 2507 0.400000 +1468 2620 0.400000 +1468 2704 0.400000 +1468 2705 0.400000 +1468 2714 0.400000 +1468 2838 0.400000 +1468 2901 0.400000 +1468 2918 0.400000 +1468 2919 0.400000 +1468 2920 0.400000 +1468 2933 0.400000 +1468 2939 0.400000 +1468 3027 0.400000 +1469 125 0.400000 +1469 128 0.400000 +1469 227 0.400000 +1469 244 0.400000 +1469 262 0.400000 +1469 292 0.400000 +1469 299 0.400000 +1469 336 0.400000 +1469 469 0.400000 +1469 524 0.400000 +1469 544 0.400000 +1469 687 0.400000 +1469 708 0.400000 +1469 733 0.400000 +1469 781 0.400000 +1469 783 0.400000 +1469 879 0.400000 +1469 919 0.400000 +1469 924 0.400000 +1469 932 0.400000 +1469 1004 0.400000 +1469 1023 0.400000 +1469 1103 0.400000 +1469 1130 0.400000 +1469 1140 0.400000 +1469 1203 0.400000 +1469 1246 0.400000 +1469 1272 0.400000 +1469 1285 0.400000 +1469 1312 0.400000 +1469 1333 0.400000 +1469 1432 0.400000 +1469 1453 0.400000 +1469 1606 0.400000 +1469 1683 0.400000 +1469 1842 0.400000 +1469 1843 0.400000 +1469 1866 0.400000 +1469 1907 0.400000 +1469 1934 0.400000 +1469 1985 0.400000 +1469 2006 0.400000 +1469 2045 0.400000 +1469 2059 0.400000 +1469 2098 0.400000 +1469 2114 0.400000 +1469 2160 0.400000 +1469 2350 0.400000 +1469 2385 0.400000 +1469 2515 0.400000 +1469 2694 0.400000 +1469 2776 0.400000 +1469 2779 0.400000 +1469 2788 0.400000 +1469 2791 0.400000 +1469 2881 0.400000 +1469 2914 0.400000 +1469 2961 0.400000 +1469 3084 0.400000 +1469 3128 0.400000 +1469 3141 0.400000 +1469 3172 0.400000 +1469 3181 0.400000 +1469 3195 0.400000 +1470 38 0.400000 +1470 210 0.400000 +1470 268 0.400000 +1470 319 0.400000 +1470 349 0.400000 +1470 439 0.400000 +1470 508 0.400000 +1470 597 0.400000 +1470 660 0.400000 +1470 667 0.400000 +1470 760 0.400000 +1470 763 0.400000 +1470 766 0.400000 +1470 790 0.400000 +1470 812 0.400000 +1470 819 0.400000 +1470 825 0.400000 +1470 842 0.400000 +1470 860 0.400000 +1470 1034 0.400000 +1470 1083 0.400000 +1470 1089 0.400000 +1470 1113 0.400000 +1470 1127 0.400000 +1470 1193 0.400000 +1470 1301 0.400000 +1470 1359 0.400000 +1470 1400 0.400000 +1470 1437 0.400000 +1470 1553 0.400000 +1470 1564 0.400000 +1470 1639 0.400000 +1470 1651 0.400000 +1470 1652 0.400000 +1470 1724 0.400000 +1470 1745 0.400000 +1470 1822 0.400000 +1470 1859 0.400000 +1470 1894 0.400000 +1470 1909 0.400000 +1470 1910 0.400000 +1470 2009 0.400000 +1470 2032 0.400000 +1470 2084 0.400000 +1470 2230 0.400000 +1470 2284 0.400000 +1470 2345 0.400000 +1470 2355 0.400000 +1470 2628 0.400000 +1470 2655 0.400000 +1470 2658 0.400000 +1470 2666 0.400000 +1470 2817 0.400000 +1470 2843 0.400000 +1470 2921 0.400000 +1470 2938 0.400000 +1470 2997 0.400000 +1470 3018 0.400000 +1470 3030 0.400000 +1470 3043 0.400000 +1470 3099 0.400000 +1470 3111 0.400000 +1470 3113 0.400000 +1470 3161 0.400000 +1470 3176 0.400000 +1470 3193 0.400000 +1470 3197 0.400000 +1471 49 0.400000 +1471 66 0.400000 +1471 100 0.400000 +1471 110 0.400000 +1471 114 0.400000 +1471 131 0.400000 +1471 160 0.400000 +1471 163 0.400000 +1471 175 0.400000 +1471 189 0.400000 +1471 214 0.400000 +1471 234 0.400000 +1471 287 0.400000 +1471 364 0.400000 +1471 403 0.400000 +1471 416 0.400000 +1471 446 0.400000 +1471 518 0.400000 +1471 524 0.400000 +1471 544 0.400000 +1471 566 0.400000 +1471 584 0.400000 +1471 595 0.400000 +1471 596 0.400000 +1471 642 0.400000 +1471 649 0.400000 +1471 659 0.400000 +1471 800 0.400000 +1471 806 0.400000 +1471 901 0.400000 +1471 952 0.400000 +1471 1050 0.400000 +1471 1079 0.400000 +1471 1119 0.400000 +1471 1153 0.400000 +1471 1181 0.400000 +1471 1367 0.400000 +1471 1395 0.400000 +1471 1472 0.400000 +1471 1476 0.400000 +1471 1500 0.400000 +1471 1529 0.400000 +1471 1540 0.400000 +1471 1542 0.400000 +1471 1548 0.400000 +1471 1681 0.400000 +1471 1804 0.400000 +1471 1849 0.400000 +1471 1901 0.400000 +1471 1968 0.400000 +1471 1987 0.400000 +1471 2053 0.400000 +1471 2110 0.400000 +1471 2134 0.400000 +1471 2162 0.400000 +1471 2187 0.400000 +1471 2218 0.400000 +1471 2273 0.400000 +1471 2394 0.400000 +1471 2545 0.400000 +1471 2563 0.400000 +1471 2567 0.400000 +1471 2572 0.400000 +1471 2742 0.400000 +1471 2745 0.400000 +1471 2781 0.400000 +1471 2788 0.400000 +1471 2809 0.400000 +1471 2822 0.400000 +1471 2833 0.400000 +1471 2881 0.400000 +1471 2882 0.400000 +1471 2931 0.400000 +1471 2946 0.400000 +1471 3038 0.400000 +1471 3081 0.400000 +1471 3122 0.400000 +1471 3128 0.400000 +1471 3131 0.400000 +1471 3150 0.400000 +1471 3167 0.400000 +1472 30 0.400000 +1472 31 0.400000 +1472 61 0.400000 +1472 86 0.400000 +1472 160 0.400000 +1472 169 0.400000 +1472 178 0.400000 +1472 192 0.400000 +1472 291 0.400000 +1472 350 0.400000 +1472 382 0.400000 +1472 469 0.400000 +1472 487 0.400000 +1472 553 0.400000 +1472 576 0.400000 +1472 588 0.400000 +1472 659 0.400000 +1472 660 0.400000 +1472 691 0.400000 +1472 719 0.400000 +1472 748 0.400000 +1472 790 0.400000 +1472 833 0.400000 +1472 861 0.400000 +1472 866 0.400000 +1472 880 0.400000 +1472 962 0.400000 +1472 963 0.400000 +1472 995 0.400000 +1472 1018 0.400000 +1472 1082 0.400000 +1472 1106 0.400000 +1472 1107 0.400000 +1472 1174 0.400000 +1472 1199 0.400000 +1472 1257 0.400000 +1472 1357 0.400000 +1472 1377 0.400000 +1472 1394 0.400000 +1472 1423 0.400000 +1472 1429 0.400000 +1472 1468 0.400000 +1472 1601 0.400000 +1472 1637 0.400000 +1472 1750 0.400000 +1472 1776 0.400000 +1472 1809 0.400000 +1472 1847 0.400000 +1472 2002 0.400000 +1472 2055 0.400000 +1472 2092 0.400000 +1472 2110 0.400000 +1472 2154 0.400000 +1472 2169 0.400000 +1472 2256 0.400000 +1472 2444 0.400000 +1472 2450 0.400000 +1472 2501 0.400000 +1472 2520 0.400000 +1472 2598 0.400000 +1472 2614 0.400000 +1472 2634 0.400000 +1472 2835 0.400000 +1472 2857 0.400000 +1472 2862 0.400000 +1472 2912 0.400000 +1472 3059 0.400000 +1473 83 0.400000 +1473 175 0.400000 +1473 176 0.400000 +1473 213 0.400000 +1473 216 0.400000 +1473 233 0.400000 +1473 288 0.400000 +1473 336 0.400000 +1473 350 0.400000 +1473 356 0.400000 +1473 375 0.400000 +1473 409 0.400000 +1473 456 0.400000 +1473 465 0.400000 +1473 676 0.400000 +1473 677 0.400000 +1473 682 0.400000 +1473 707 0.400000 +1473 758 0.400000 +1473 892 0.400000 +1473 893 0.400000 +1473 913 0.400000 +1473 951 0.400000 +1473 962 0.400000 +1473 1045 0.400000 +1473 1091 0.400000 +1473 1103 0.400000 +1473 1145 0.400000 +1473 1149 0.400000 +1473 1174 0.400000 +1473 1177 0.400000 +1473 1183 0.400000 +1473 1185 0.400000 +1473 1234 0.400000 +1473 1274 0.400000 +1473 1379 0.400000 +1473 1382 0.400000 +1473 1481 0.400000 +1473 1485 0.400000 +1473 1520 0.400000 +1473 1588 0.400000 +1473 1631 0.400000 +1473 1689 0.400000 +1473 1707 0.400000 +1473 1722 0.400000 +1473 1754 0.400000 +1473 1802 0.400000 +1473 1832 0.400000 +1473 1839 0.400000 +1473 1842 0.400000 +1473 1884 0.400000 +1473 1897 0.400000 +1473 1939 0.400000 +1473 1961 0.400000 +1473 2023 0.400000 +1473 2075 0.400000 +1473 2274 0.400000 +1473 2339 0.400000 +1473 2408 0.400000 +1473 2423 0.400000 +1473 2539 0.400000 +1473 2606 0.400000 +1473 2749 0.400000 +1473 2829 0.400000 +1473 2908 0.400000 +1473 2978 0.400000 +1473 3057 0.400000 +1473 3133 0.400000 +1474 28 0.400000 +1474 161 0.400000 +1474 207 0.400000 +1474 223 0.400000 +1474 329 0.400000 +1474 331 0.400000 +1474 368 0.400000 +1474 402 0.400000 +1474 405 0.400000 +1474 475 0.400000 +1474 506 0.400000 +1474 524 0.400000 +1474 551 0.400000 +1474 651 0.400000 +1474 695 0.400000 +1474 707 0.400000 +1474 761 0.400000 +1474 764 0.400000 +1474 962 0.400000 +1474 976 0.400000 +1474 1035 0.400000 +1474 1085 0.400000 +1474 1176 0.400000 +1474 1179 0.400000 +1474 1277 0.400000 +1474 1291 0.400000 +1474 1317 0.400000 +1474 1318 0.400000 +1474 1352 0.400000 +1474 1353 0.400000 +1474 1356 0.400000 +1474 1511 0.400000 +1474 1535 0.400000 +1474 1660 0.400000 +1474 1680 0.400000 +1474 1699 0.400000 +1474 1789 0.400000 +1474 1908 0.400000 +1474 1913 0.400000 +1474 1921 0.400000 +1474 2097 0.400000 +1474 2168 0.400000 +1474 2203 0.400000 +1474 2206 0.400000 +1474 2210 0.400000 +1474 2213 0.400000 +1474 2262 0.400000 +1474 2305 0.400000 +1474 2317 0.400000 +1474 2323 0.400000 +1474 2383 0.400000 +1474 2386 0.400000 +1474 2388 0.400000 +1474 2446 0.400000 +1474 2454 0.400000 +1474 2670 0.400000 +1474 2679 0.400000 +1474 2734 0.400000 +1474 2785 0.400000 +1474 2854 0.400000 +1474 2897 0.400000 +1474 2900 0.400000 +1474 2952 0.400000 +1474 2973 0.400000 +1474 3030 0.400000 +1474 3066 0.400000 +1474 3077 0.400000 +1474 3142 0.400000 +1474 3183 0.400000 +1475 81 0.400000 +1475 90 0.400000 +1475 150 0.400000 +1475 272 0.400000 +1475 290 0.400000 +1475 321 0.400000 +1475 405 0.400000 +1475 556 0.400000 +1475 650 0.400000 +1475 668 0.400000 +1475 941 0.400000 +1475 951 0.400000 +1475 978 0.400000 +1475 981 0.400000 +1475 1024 0.400000 +1475 1077 0.400000 +1475 1121 0.400000 +1475 1177 0.400000 +1475 1220 0.400000 +1475 1232 0.400000 +1475 1238 0.400000 +1475 1334 0.400000 +1475 1395 0.400000 +1475 1577 0.400000 +1475 1587 0.400000 +1475 1602 0.400000 +1475 1607 0.400000 +1475 1629 0.400000 +1475 1652 0.400000 +1475 1702 0.400000 +1475 1747 0.400000 +1475 1771 0.400000 +1475 1779 0.400000 +1475 1845 0.400000 +1475 1860 0.400000 +1475 1897 0.400000 +1475 2039 0.400000 +1475 2199 0.400000 +1475 2223 0.400000 +1475 2242 0.400000 +1475 2257 0.400000 +1475 2293 0.400000 +1475 2298 0.400000 +1475 2325 0.400000 +1475 2470 0.400000 +1475 2587 0.400000 +1475 2600 0.400000 +1475 2749 0.400000 +1475 2758 0.400000 +1475 2878 0.400000 +1475 2956 0.400000 +1475 2960 0.400000 +1475 2996 0.400000 +1475 3054 0.400000 +1475 3104 0.400000 +1475 3118 0.400000 +1475 3158 0.400000 +1476 71 0.400000 +1476 73 0.400000 +1476 131 0.400000 +1476 522 0.400000 +1476 621 0.400000 +1476 635 0.400000 +1476 747 0.400000 +1476 748 0.400000 +1476 808 0.400000 +1476 819 0.400000 +1476 996 0.400000 +1476 1017 0.400000 +1476 1073 0.400000 +1476 1084 0.400000 +1476 1101 0.400000 +1476 1105 0.400000 +1476 1117 0.400000 +1476 1118 0.400000 +1476 1145 0.400000 +1476 1149 0.400000 +1476 1185 0.400000 +1476 1289 0.400000 +1476 1464 0.400000 +1476 1472 0.400000 +1476 1497 0.400000 +1476 1530 0.400000 +1476 1533 0.400000 +1476 1541 0.400000 +1476 1547 0.400000 +1476 1579 0.400000 +1476 1638 0.400000 +1476 1790 0.400000 +1476 1830 0.400000 +1476 2018 0.400000 +1476 2077 0.400000 +1476 2116 0.400000 +1476 2169 0.400000 +1476 2198 0.400000 +1476 2215 0.400000 +1476 2302 0.400000 +1476 2310 0.400000 +1476 2325 0.400000 +1476 2341 0.400000 +1476 2352 0.400000 +1476 2456 0.400000 +1476 2491 0.400000 +1476 2529 0.400000 +1476 2580 0.400000 +1476 2658 0.400000 +1476 2729 0.400000 +1476 2804 0.400000 +1476 2824 0.400000 +1476 2837 0.400000 +1476 2892 0.400000 +1476 2987 0.400000 +1476 3018 0.400000 +1476 3190 0.400000 +1477 22 0.400000 +1477 84 0.400000 +1477 268 0.400000 +1477 285 0.400000 +1477 311 0.400000 +1477 316 0.400000 +1477 355 0.400000 +1477 399 0.400000 +1477 486 0.400000 +1477 676 0.400000 +1477 680 0.400000 +1477 682 0.400000 +1477 688 0.400000 +1477 765 0.400000 +1477 804 0.400000 +1477 843 0.400000 +1477 850 0.400000 +1477 874 0.400000 +1477 888 0.400000 +1477 893 0.400000 +1477 955 0.400000 +1477 1012 0.400000 +1477 1057 0.400000 +1477 1221 0.400000 +1477 1243 0.400000 +1477 1251 0.400000 +1477 1259 0.400000 +1477 1311 0.400000 +1477 1330 0.400000 +1477 1370 0.400000 +1477 1467 0.400000 +1477 1503 0.400000 +1477 1567 0.400000 +1477 1582 0.400000 +1477 1591 0.400000 +1477 1600 0.400000 +1477 1625 0.400000 +1477 1787 0.400000 +1477 1801 0.400000 +1477 1810 0.400000 +1477 1840 0.400000 +1477 1895 0.400000 +1477 1983 0.400000 +1477 2000 0.400000 +1477 2263 0.400000 +1477 2275 0.400000 +1477 2319 0.400000 +1477 2471 0.400000 +1477 2497 0.400000 +1477 2506 0.400000 +1477 2538 0.400000 +1477 2543 0.400000 +1477 2583 0.400000 +1477 2592 0.400000 +1477 2599 0.400000 +1477 2608 0.400000 +1477 2643 0.400000 +1477 2652 0.400000 +1477 2674 0.400000 +1477 2708 0.400000 +1477 2787 0.400000 +1477 2820 0.400000 +1477 2848 0.400000 +1477 2955 0.400000 +1477 3101 0.400000 +1477 3107 0.400000 +1478 51 0.400000 +1478 73 0.400000 +1478 95 0.400000 +1478 290 0.400000 +1478 326 0.400000 +1478 329 0.400000 +1478 375 0.400000 +1478 411 0.400000 +1478 431 0.400000 +1478 436 0.400000 +1478 469 0.400000 +1478 553 0.400000 +1478 583 0.400000 +1478 599 0.400000 +1478 633 0.400000 +1478 636 0.400000 +1478 769 0.400000 +1478 892 0.400000 +1478 908 0.400000 +1478 966 0.400000 +1478 968 0.400000 +1478 985 0.400000 +1478 1113 0.400000 +1478 1149 0.400000 +1478 1235 0.400000 +1478 1251 0.400000 +1478 1290 0.400000 +1478 1309 0.400000 +1478 1413 0.400000 +1478 1432 0.400000 +1478 1471 0.400000 +1478 1494 0.400000 +1478 1495 0.400000 +1478 1514 0.400000 +1478 1526 0.400000 +1478 1532 0.400000 +1478 1569 0.400000 +1478 1595 0.400000 +1478 1612 0.400000 +1478 1631 0.400000 +1478 1710 0.400000 +1478 1722 0.400000 +1478 1726 0.400000 +1478 1761 0.400000 +1478 1808 0.400000 +1478 1839 0.400000 +1478 1934 0.400000 +1478 1985 0.400000 +1478 2053 0.400000 +1478 2144 0.400000 +1478 2160 0.400000 +1478 2266 0.400000 +1478 2317 0.400000 +1478 2333 0.400000 +1478 2374 0.400000 +1478 2439 0.400000 +1478 2440 0.400000 +1478 2530 0.400000 +1478 2595 0.400000 +1478 2759 0.400000 +1478 2779 0.400000 +1478 2835 0.400000 +1478 2918 0.400000 +1478 2972 0.400000 +1478 3003 0.400000 +1478 3007 0.400000 +1478 3011 0.400000 +1478 3039 0.400000 +1478 3061 0.400000 +1478 3075 0.400000 +1478 3140 0.400000 +1478 3173 0.400000 +1479 121 0.400000 +1479 125 0.400000 +1479 180 0.400000 +1479 184 0.400000 +1479 322 0.400000 +1479 327 0.400000 +1479 335 0.400000 +1479 351 0.400000 +1479 386 0.400000 +1479 410 0.400000 +1479 414 0.400000 +1479 608 0.400000 +1479 632 0.400000 +1479 731 0.400000 +1479 740 0.400000 +1479 835 0.400000 +1479 911 0.400000 +1479 917 0.400000 +1479 932 0.400000 +1479 1039 0.400000 +1479 1078 0.400000 +1479 1174 0.400000 +1479 1188 0.400000 +1479 1212 0.400000 +1479 1234 0.400000 +1479 1331 0.400000 +1479 1350 0.400000 +1479 1400 0.400000 +1479 1436 0.400000 +1479 1493 0.400000 +1479 1526 0.400000 +1479 1572 0.400000 +1479 1582 0.400000 +1479 1686 0.400000 +1479 1691 0.400000 +1479 1781 0.400000 +1479 1905 0.400000 +1479 2013 0.400000 +1479 2014 0.400000 +1479 2020 0.400000 +1479 2117 0.400000 +1479 2137 0.400000 +1479 2182 0.400000 +1479 2188 0.400000 +1479 2212 0.400000 +1479 2236 0.400000 +1479 2273 0.400000 +1479 2291 0.400000 +1479 2377 0.400000 +1479 2400 0.400000 +1479 2469 0.400000 +1479 2503 0.400000 +1479 2643 0.400000 +1479 2813 0.400000 +1479 2832 0.400000 +1479 2976 0.400000 +1479 3025 0.400000 +1479 3043 0.400000 +1479 3100 0.400000 +1479 3117 0.400000 +1479 3151 0.400000 +1480 133 0.400000 +1480 232 0.400000 +1480 301 0.400000 +1480 310 0.400000 +1480 376 0.400000 +1480 459 0.400000 +1480 462 0.400000 +1480 479 0.400000 +1480 480 0.400000 +1480 556 0.400000 +1480 607 0.400000 +1480 652 0.400000 +1480 680 0.400000 +1480 747 0.400000 +1480 846 0.400000 +1480 944 0.400000 +1480 1045 0.400000 +1480 1365 0.400000 +1480 1441 0.400000 +1480 1451 0.400000 +1480 1508 0.400000 +1480 1539 0.400000 +1480 1591 0.400000 +1480 1633 0.400000 +1480 1676 0.400000 +1480 1681 0.400000 +1480 1687 0.400000 +1480 1720 0.400000 +1480 1815 0.400000 +1480 1946 0.400000 +1480 1972 0.400000 +1480 2027 0.400000 +1480 2052 0.400000 +1480 2117 0.400000 +1480 2134 0.400000 +1480 2137 0.400000 +1480 2173 0.400000 +1480 2209 0.400000 +1480 2217 0.400000 +1480 2274 0.400000 +1480 2294 0.400000 +1480 2544 0.400000 +1480 2546 0.400000 +1480 2547 0.400000 +1480 2621 0.400000 +1480 2640 0.400000 +1480 2720 0.400000 +1480 2750 0.400000 +1480 2794 0.400000 +1480 2853 0.400000 +1480 2858 0.400000 +1480 2861 0.400000 +1480 2885 0.400000 +1480 2938 0.400000 +1480 2980 0.400000 +1480 3086 0.400000 +1480 3147 0.400000 +1481 42 0.400000 +1481 63 0.400000 +1481 121 0.400000 +1481 171 0.400000 +1481 195 0.400000 +1481 216 0.400000 +1481 284 0.400000 +1481 364 0.400000 +1481 431 0.400000 +1481 527 0.400000 +1481 545 0.400000 +1481 581 0.400000 +1481 690 0.400000 +1481 716 0.400000 +1481 821 0.400000 +1481 860 0.400000 +1481 1177 0.400000 +1481 1215 0.400000 +1481 1232 0.400000 +1481 1235 0.400000 +1481 1451 0.400000 +1481 1493 0.400000 +1481 1505 0.400000 +1481 1590 0.400000 +1481 1765 0.400000 +1481 1817 0.400000 +1481 1875 0.400000 +1481 1890 0.400000 +1481 1911 0.400000 +1481 1922 0.400000 +1481 1941 0.400000 +1481 1946 0.400000 +1481 2112 0.400000 +1481 2142 0.400000 +1481 2147 0.400000 +1481 2353 0.400000 +1481 2436 0.400000 +1481 2469 0.400000 +1481 2840 0.400000 +1481 2936 0.400000 +1481 3181 0.400000 +1482 86 0.400000 +1482 135 0.400000 +1482 325 0.400000 +1482 352 0.400000 +1482 414 0.400000 +1482 419 0.400000 +1482 453 0.400000 +1482 485 0.400000 +1482 531 0.400000 +1482 557 0.400000 +1482 565 0.400000 +1482 575 0.400000 +1482 601 0.400000 +1482 615 0.400000 +1482 625 0.400000 +1482 686 0.400000 +1482 758 0.400000 +1482 787 0.400000 +1482 871 0.400000 +1482 898 0.400000 +1482 941 0.400000 +1482 987 0.400000 +1482 1024 0.400000 +1482 1038 0.400000 +1482 1045 0.400000 +1482 1094 0.400000 +1482 1177 0.400000 +1482 1198 0.400000 +1482 1204 0.400000 +1482 1235 0.400000 +1482 1353 0.400000 +1482 1380 0.400000 +1482 1385 0.400000 +1482 1453 0.400000 +1482 1478 0.400000 +1482 1556 0.400000 +1482 1630 0.400000 +1482 1650 0.400000 +1482 1754 0.400000 +1482 1820 0.400000 +1482 1966 0.400000 +1482 1972 0.400000 +1482 1994 0.400000 +1482 2068 0.400000 +1482 2110 0.400000 +1482 2222 0.400000 +1482 2238 0.400000 +1482 2289 0.400000 +1482 2361 0.400000 +1482 2392 0.400000 +1482 2399 0.400000 +1482 2435 0.400000 +1482 2444 0.400000 +1482 2456 0.400000 +1482 2464 0.400000 +1482 2545 0.400000 +1482 2577 0.400000 +1482 2588 0.400000 +1482 2603 0.400000 +1482 2631 0.400000 +1482 2714 0.400000 +1482 2764 0.400000 +1482 2798 0.400000 +1482 2803 0.400000 +1482 2895 0.400000 +1482 2912 0.400000 +1482 2931 0.400000 +1482 2943 0.400000 +1482 3027 0.400000 +1482 3182 0.400000 +1483 74 0.400000 +1483 101 0.400000 +1483 140 0.400000 +1483 299 0.400000 +1483 333 0.400000 +1483 406 0.400000 +1483 474 0.400000 +1483 479 0.400000 +1483 518 0.400000 +1483 538 0.400000 +1483 547 0.400000 +1483 658 0.400000 +1483 692 0.400000 +1483 703 0.400000 +1483 938 0.400000 +1483 952 0.400000 +1483 959 0.400000 +1483 1201 0.400000 +1483 1209 0.400000 +1483 1264 0.400000 +1483 1338 0.400000 +1483 1340 0.400000 +1483 1345 0.400000 +1483 1388 0.400000 +1483 1466 0.400000 +1483 1524 0.400000 +1483 1570 0.400000 +1483 1694 0.400000 +1483 1717 0.400000 +1483 1741 0.400000 +1483 1755 0.400000 +1483 1784 0.400000 +1483 1791 0.400000 +1483 1917 0.400000 +1483 2012 0.400000 +1483 2054 0.400000 +1483 2102 0.400000 +1483 2124 0.400000 +1483 2204 0.400000 +1483 2205 0.400000 +1483 2267 0.400000 +1483 2295 0.400000 +1483 2340 0.400000 +1483 2345 0.400000 +1483 2443 0.400000 +1483 2452 0.400000 +1483 2540 0.400000 +1483 2669 0.400000 +1483 2754 0.400000 +1483 2844 0.400000 +1483 2851 0.400000 +1483 2862 0.400000 +1483 2896 0.400000 +1483 2988 0.400000 +1483 3051 0.400000 +1483 3113 0.400000 +1483 3147 0.400000 +1484 9 0.400000 +1484 25 0.400000 +1484 34 0.400000 +1484 213 0.400000 +1484 240 0.400000 +1484 270 0.400000 +1484 415 0.400000 +1484 418 0.400000 +1484 429 0.400000 +1484 438 0.400000 +1484 477 0.400000 +1484 548 0.400000 +1484 555 0.400000 +1484 593 0.400000 +1484 599 0.400000 +1484 702 0.400000 +1484 717 0.400000 +1484 724 0.400000 +1484 763 0.400000 +1484 787 0.400000 +1484 804 0.400000 +1484 818 0.400000 +1484 827 0.400000 +1484 851 0.400000 +1484 852 0.400000 +1484 922 0.400000 +1484 970 0.400000 +1484 981 0.400000 +1484 1014 0.400000 +1484 1049 0.400000 +1484 1059 0.400000 +1484 1128 0.400000 +1484 1278 0.400000 +1484 1331 0.400000 +1484 1342 0.400000 +1484 1419 0.400000 +1484 1446 0.400000 +1484 1514 0.400000 +1484 1538 0.400000 +1484 1639 0.400000 +1484 1701 0.400000 +1484 1794 0.400000 +1484 1965 0.400000 +1484 2022 0.400000 +1484 2165 0.400000 +1484 2192 0.400000 +1484 2411 0.400000 +1484 2447 0.400000 +1484 2454 0.400000 +1484 2458 0.400000 +1484 2571 0.400000 +1484 2819 0.400000 +1484 2840 0.400000 +1484 2865 0.400000 +1484 2871 0.400000 +1484 2921 0.400000 +1484 2945 0.400000 +1484 3003 0.400000 +1484 3014 0.400000 +1484 3024 0.400000 +1484 3059 0.400000 +1484 3081 0.400000 +1484 3173 0.400000 +1485 16 0.400000 +1485 127 0.400000 +1485 172 0.400000 +1485 176 0.400000 +1485 229 0.400000 +1485 237 0.400000 +1485 244 0.400000 +1485 245 0.400000 +1485 254 0.400000 +1485 291 0.400000 +1485 298 0.400000 +1485 360 0.400000 +1485 418 0.400000 +1485 442 0.400000 +1485 444 0.400000 +1485 480 0.400000 +1485 492 0.400000 +1485 508 0.400000 +1485 528 0.400000 +1485 574 0.400000 +1485 619 0.400000 +1485 707 0.400000 +1485 745 0.400000 +1485 792 0.400000 +1485 794 0.400000 +1485 891 0.400000 +1485 892 0.400000 +1485 917 0.400000 +1485 1094 0.400000 +1485 1125 0.400000 +1485 1193 0.400000 +1485 1212 0.400000 +1485 1276 0.400000 +1485 1306 0.400000 +1485 1386 0.400000 +1485 1527 0.400000 +1485 1595 0.400000 +1485 1604 0.400000 +1485 1617 0.400000 +1485 1630 0.400000 +1485 1681 0.400000 +1485 1742 0.400000 +1485 1753 0.400000 +1485 1798 0.400000 +1485 1832 0.400000 +1485 2039 0.400000 +1485 2062 0.400000 +1485 2067 0.400000 +1485 2079 0.400000 +1485 2100 0.400000 +1485 2124 0.400000 +1485 2253 0.400000 +1485 2368 0.400000 +1485 2423 0.400000 +1485 2480 0.400000 +1485 2574 0.400000 +1485 2580 0.400000 +1485 2724 0.400000 +1485 2728 0.400000 +1485 2754 0.400000 +1485 2853 0.400000 +1485 2856 0.400000 +1485 3001 0.400000 +1485 3061 0.400000 +1485 3112 0.400000 +1485 3129 0.400000 +1485 3173 0.400000 +1486 18 0.400000 +1486 38 0.400000 +1486 53 0.400000 +1486 234 0.400000 +1486 366 0.400000 +1486 420 0.400000 +1486 525 0.400000 +1486 558 0.400000 +1486 583 0.400000 +1486 600 0.400000 +1486 660 0.400000 +1486 662 0.400000 +1486 735 0.400000 +1486 793 0.400000 +1486 1014 0.400000 +1486 1031 0.400000 +1486 1032 0.400000 +1486 1090 0.400000 +1486 1107 0.400000 +1486 1140 0.400000 +1486 1213 0.400000 +1486 1218 0.400000 +1486 1239 0.400000 +1486 1274 0.400000 +1486 1280 0.400000 +1486 1452 0.400000 +1486 1466 0.400000 +1486 1470 0.400000 +1486 1473 0.400000 +1486 1497 0.400000 +1486 1508 0.400000 +1486 1551 0.400000 +1486 1616 0.400000 +1486 1622 0.400000 +1486 1625 0.400000 +1486 1699 0.400000 +1486 1721 0.400000 +1486 1790 0.400000 +1486 1791 0.400000 +1486 1915 0.400000 +1486 1950 0.400000 +1486 1992 0.400000 +1486 1994 0.400000 +1486 2045 0.400000 +1486 2055 0.400000 +1486 2097 0.400000 +1486 2173 0.400000 +1486 2184 0.400000 +1486 2212 0.400000 +1486 2294 0.400000 +1486 2297 0.400000 +1486 2326 0.400000 +1486 2341 0.400000 +1486 2380 0.400000 +1486 2408 0.400000 +1486 2442 0.400000 +1486 2494 0.400000 +1486 2495 0.400000 +1486 2562 0.400000 +1486 2582 0.400000 +1486 2586 0.400000 +1486 2592 0.400000 +1486 2670 0.400000 +1486 2811 0.400000 +1486 2896 0.400000 +1486 2964 0.400000 +1486 2966 0.400000 +1486 2993 0.400000 +1486 3015 0.400000 +1486 3023 0.400000 +1486 3041 0.400000 +1486 3147 0.400000 +1486 3194 0.400000 +1487 51 0.400000 +1487 154 0.400000 +1487 240 0.400000 +1487 306 0.400000 +1487 363 0.400000 +1487 389 0.400000 +1487 415 0.400000 +1487 544 0.400000 +1487 589 0.400000 +1487 668 0.400000 +1487 669 0.400000 +1487 738 0.400000 +1487 785 0.400000 +1487 797 0.400000 +1487 818 0.400000 +1487 940 0.400000 +1487 962 0.400000 +1487 1009 0.400000 +1487 1012 0.400000 +1487 1016 0.400000 +1487 1048 0.400000 +1487 1081 0.400000 +1487 1186 0.400000 +1487 1344 0.400000 +1487 1360 0.400000 +1487 1369 0.400000 +1487 1378 0.400000 +1487 1394 0.400000 +1487 1416 0.400000 +1487 1447 0.400000 +1487 1465 0.400000 +1487 1649 0.400000 +1487 1677 0.400000 +1487 1714 0.400000 +1487 1734 0.400000 +1487 1746 0.400000 +1487 1881 0.400000 +1487 1892 0.400000 +1487 1946 0.400000 +1487 1947 0.400000 +1487 2003 0.400000 +1487 2034 0.400000 +1487 2037 0.400000 +1487 2147 0.400000 +1487 2169 0.400000 +1487 2260 0.400000 +1487 2261 0.400000 +1487 2395 0.400000 +1487 2505 0.400000 +1487 2535 0.400000 +1487 2641 0.400000 +1487 2792 0.400000 +1487 2799 0.400000 +1487 2840 0.400000 +1487 2886 0.400000 +1487 2970 0.400000 +1487 2986 0.400000 +1487 3020 0.400000 +1487 3100 0.400000 +1487 3140 0.400000 +1488 13 0.400000 +1488 21 0.400000 +1488 119 0.400000 +1488 164 0.400000 +1488 205 0.400000 +1488 226 0.400000 +1488 234 0.400000 +1488 240 0.400000 +1488 281 0.400000 +1488 379 0.400000 +1488 382 0.400000 +1488 393 0.400000 +1488 407 0.400000 +1488 436 0.400000 +1488 447 0.400000 +1488 471 0.400000 +1488 522 0.400000 +1488 544 0.400000 +1488 556 0.400000 +1488 565 0.400000 +1488 578 0.400000 +1488 598 0.400000 +1488 679 0.400000 +1488 699 0.400000 +1488 727 0.400000 +1488 786 0.400000 +1488 808 0.400000 +1488 836 0.400000 +1488 960 0.400000 +1488 1043 0.400000 +1488 1103 0.400000 +1488 1147 0.400000 +1488 1152 0.400000 +1488 1257 0.400000 +1488 1304 0.400000 +1488 1341 0.400000 +1488 1372 0.400000 +1488 1463 0.400000 +1488 1469 0.400000 +1488 1513 0.400000 +1488 1579 0.400000 +1488 1606 0.400000 +1488 1630 0.400000 +1488 1652 0.400000 +1488 1682 0.400000 +1488 1705 0.400000 +1488 1739 0.400000 +1488 1767 0.400000 +1488 1771 0.400000 +1488 1855 0.400000 +1488 2097 0.400000 +1488 2112 0.400000 +1488 2344 0.400000 +1488 2382 0.400000 +1488 2450 0.400000 +1488 2511 0.400000 +1488 2661 0.400000 +1488 2763 0.400000 +1488 2768 0.400000 +1488 2818 0.400000 +1488 2901 0.400000 +1488 2986 0.400000 +1488 2987 0.400000 +1488 3021 0.400000 +1488 3036 0.400000 +1488 3149 0.400000 +1489 15 0.400000 +1489 117 0.400000 +1489 142 0.400000 +1489 212 0.400000 +1489 282 0.400000 +1489 389 0.400000 +1489 464 0.400000 +1489 514 0.400000 +1489 543 0.400000 +1489 593 0.400000 +1489 628 0.400000 +1489 647 0.400000 +1489 661 0.400000 +1489 671 0.400000 +1489 731 0.400000 +1489 744 0.400000 +1489 747 0.400000 +1489 835 0.400000 +1489 1212 0.400000 +1489 1243 0.400000 +1489 1269 0.400000 +1489 1289 0.400000 +1489 1296 0.400000 +1489 1317 0.400000 +1489 1465 0.400000 +1489 1485 0.400000 +1489 1515 0.400000 +1489 1639 0.400000 +1489 1654 0.400000 +1489 1687 0.400000 +1489 1731 0.400000 +1489 1783 0.400000 +1489 1847 0.400000 +1489 1954 0.400000 +1489 1966 0.400000 +1489 2009 0.400000 +1489 2015 0.400000 +1489 2016 0.400000 +1489 2083 0.400000 +1489 2103 0.400000 +1489 2150 0.400000 +1489 2176 0.400000 +1489 2183 0.400000 +1489 2198 0.400000 +1489 2216 0.400000 +1489 2222 0.400000 +1489 2246 0.400000 +1489 2317 0.400000 +1489 2337 0.400000 +1489 2340 0.400000 +1489 2358 0.400000 +1489 2391 0.400000 +1489 2401 0.400000 +1489 2407 0.400000 +1489 2539 0.400000 +1489 2634 0.400000 +1489 2702 0.400000 +1489 2742 0.400000 +1489 2746 0.400000 +1489 2828 0.400000 +1489 2834 0.400000 +1489 2929 0.400000 +1489 2938 0.400000 +1489 2997 0.400000 +1489 3013 0.400000 +1489 3055 0.400000 +1489 3089 0.400000 +1489 3102 0.400000 +1489 3114 0.400000 +1489 3129 0.400000 +1489 3165 0.400000 +1489 3184 0.400000 +1490 52 0.400000 +1490 82 0.400000 +1490 90 0.400000 +1490 105 0.400000 +1490 130 0.400000 +1490 147 0.400000 +1490 168 0.400000 +1490 178 0.400000 +1490 187 0.400000 +1490 254 0.400000 +1490 262 0.400000 +1490 293 0.400000 +1490 324 0.400000 +1490 337 0.400000 +1490 384 0.400000 +1490 464 0.400000 +1490 501 0.400000 +1490 525 0.400000 +1490 565 0.400000 +1490 645 0.400000 +1490 648 0.400000 +1490 679 0.400000 +1490 732 0.400000 +1490 756 0.400000 +1490 826 0.400000 +1490 866 0.400000 +1490 990 0.400000 +1490 1231 0.400000 +1490 1286 0.400000 +1490 1312 0.400000 +1490 1340 0.400000 +1490 1389 0.400000 +1490 1392 0.400000 +1490 1474 0.400000 +1490 1482 0.400000 +1490 1599 0.400000 +1490 1602 0.400000 +1490 1611 0.400000 +1490 1655 0.400000 +1490 1668 0.400000 +1490 1693 0.400000 +1490 1727 0.400000 +1490 1745 0.400000 +1490 1757 0.400000 +1490 1820 0.400000 +1490 1927 0.400000 +1490 1938 0.400000 +1490 2029 0.400000 +1490 2052 0.400000 +1490 2056 0.400000 +1490 2064 0.400000 +1490 2076 0.400000 +1490 2086 0.400000 +1490 2224 0.400000 +1490 2241 0.400000 +1490 2313 0.400000 +1490 2446 0.400000 +1490 2459 0.400000 +1490 2463 0.400000 +1490 2583 0.400000 +1490 2660 0.400000 +1490 2679 0.400000 +1490 2701 0.400000 +1490 2724 0.400000 +1490 2771 0.400000 +1490 2825 0.400000 +1490 2827 0.400000 +1490 2847 0.400000 +1490 2859 0.400000 +1490 2905 0.400000 +1490 2906 0.400000 +1490 2955 0.400000 +1490 3003 0.400000 +1490 3026 0.400000 +1490 3093 0.400000 +1490 3156 0.400000 +1490 3170 0.400000 +1491 13 0.400000 +1491 33 0.400000 +1491 68 0.400000 +1491 90 0.400000 +1491 137 0.400000 +1491 277 0.400000 +1491 364 0.400000 +1491 407 0.400000 +1491 415 0.400000 +1491 462 0.400000 +1491 624 0.400000 +1491 656 0.400000 +1491 730 0.400000 +1491 743 0.400000 +1491 756 0.400000 +1491 767 0.400000 +1491 771 0.400000 +1491 831 0.400000 +1491 863 0.400000 +1491 959 0.400000 +1491 975 0.400000 +1491 1037 0.400000 +1491 1113 0.400000 +1491 1116 0.400000 +1491 1164 0.400000 +1491 1364 0.400000 +1491 1377 0.400000 +1491 1388 0.400000 +1491 1450 0.400000 +1491 1615 0.400000 +1491 1702 0.400000 +1491 1732 0.400000 +1491 1796 0.400000 +1491 1926 0.400000 +1491 1944 0.400000 +1491 1992 0.400000 +1491 2016 0.400000 +1491 2168 0.400000 +1491 2230 0.400000 +1491 2304 0.400000 +1491 2347 0.400000 +1491 2478 0.400000 +1491 2539 0.400000 +1491 2737 0.400000 +1491 2783 0.400000 +1491 2807 0.400000 +1491 2910 0.400000 +1491 2923 0.400000 +1491 3005 0.400000 +1491 3011 0.400000 +1491 3034 0.400000 +1491 3065 0.400000 +1491 3085 0.400000 +1491 3112 0.400000 +1491 3121 0.400000 +1491 3146 0.400000 +1491 3187 0.400000 +1492 22 0.400000 +1492 45 0.400000 +1492 92 0.400000 +1492 195 0.400000 +1492 413 0.400000 +1492 539 0.400000 +1492 542 0.400000 +1492 582 0.400000 +1492 666 0.400000 +1492 748 0.400000 +1492 835 0.400000 +1492 851 0.400000 +1492 876 0.400000 +1492 881 0.400000 +1492 1068 0.400000 +1492 1112 0.400000 +1492 1214 0.400000 +1492 1218 0.400000 +1492 1287 0.400000 +1492 1303 0.400000 +1492 1314 0.400000 +1492 1366 0.400000 +1492 1377 0.400000 +1492 1398 0.400000 +1492 1428 0.400000 +1492 1463 0.400000 +1492 1502 0.400000 +1492 1507 0.400000 +1492 1559 0.400000 +1492 1574 0.400000 +1492 1733 0.400000 +1492 1781 0.400000 +1492 1786 0.400000 +1492 2014 0.400000 +1492 2089 0.400000 +1492 2111 0.400000 +1492 2310 0.400000 +1492 2316 0.400000 +1492 2582 0.400000 +1492 2843 0.400000 +1492 2908 0.400000 +1492 2975 0.400000 +1492 3046 0.400000 +1493 85 0.400000 +1493 118 0.400000 +1493 191 0.400000 +1493 246 0.400000 +1493 369 0.400000 +1493 533 0.400000 +1493 552 0.400000 +1493 669 0.400000 +1493 697 0.400000 +1493 779 0.400000 +1493 805 0.400000 +1493 893 0.400000 +1493 910 0.400000 +1493 1003 0.400000 +1493 1116 0.400000 +1493 1178 0.400000 +1493 1203 0.400000 +1493 1292 0.400000 +1493 1488 0.400000 +1493 1498 0.400000 +1493 1579 0.400000 +1493 1606 0.400000 +1493 1637 0.400000 +1493 1650 0.400000 +1493 1800 0.400000 +1493 1822 0.400000 +1493 1842 0.400000 +1493 1895 0.400000 +1493 1924 0.400000 +1493 1995 0.400000 +1493 2037 0.400000 +1493 2129 0.400000 +1493 2157 0.400000 +1493 2178 0.400000 +1493 2206 0.400000 +1493 2241 0.400000 +1493 2250 0.400000 +1493 2285 0.400000 +1493 2296 0.400000 +1493 2315 0.400000 +1493 2330 0.400000 +1493 2406 0.400000 +1493 2491 0.400000 +1493 2493 0.400000 +1493 2613 0.400000 +1493 2694 0.400000 +1493 2729 0.400000 +1493 2732 0.400000 +1493 2779 0.400000 +1493 2793 0.400000 +1493 2797 0.400000 +1493 2814 0.400000 +1493 2943 0.400000 +1493 3077 0.400000 +1494 133 0.400000 +1494 135 0.400000 +1494 156 0.400000 +1494 259 0.400000 +1494 318 0.400000 +1494 428 0.400000 +1494 433 0.400000 +1494 489 0.400000 +1494 615 0.400000 +1494 674 0.400000 +1494 735 0.400000 +1494 782 0.400000 +1494 818 0.400000 +1494 976 0.400000 +1494 1203 0.400000 +1494 1555 0.400000 +1494 1667 0.400000 +1494 1680 0.400000 +1494 1705 0.400000 +1494 1780 0.400000 +1494 1804 0.400000 +1494 1821 0.400000 +1494 1866 0.400000 +1494 1889 0.400000 +1494 1930 0.400000 +1494 2086 0.400000 +1494 2108 0.400000 +1494 2206 0.400000 +1494 2224 0.400000 +1494 2283 0.400000 +1494 2295 0.400000 +1494 2354 0.400000 +1494 2488 0.400000 +1494 2759 0.400000 +1494 2768 0.400000 +1494 2776 0.400000 +1494 2803 0.400000 +1494 2831 0.400000 +1494 2860 0.400000 +1494 2887 0.400000 +1494 2931 0.400000 +1494 3052 0.400000 +1494 3088 0.400000 +1494 3186 0.400000 +1494 3187 0.400000 +1495 8 0.400000 +1495 72 0.400000 +1495 188 0.400000 +1495 329 0.400000 +1495 364 0.400000 +1495 443 0.400000 +1495 460 0.400000 +1495 529 0.400000 +1495 587 0.400000 +1495 620 0.400000 +1495 652 0.400000 +1495 782 0.400000 +1495 804 0.400000 +1495 813 0.400000 +1495 817 0.400000 +1495 882 0.400000 +1495 919 0.400000 +1495 935 0.400000 +1495 943 0.400000 +1495 954 0.400000 +1495 1002 0.400000 +1495 1067 0.400000 +1495 1070 0.400000 +1495 1115 0.400000 +1495 1126 0.400000 +1495 1140 0.400000 +1495 1347 0.400000 +1495 1350 0.400000 +1495 1413 0.400000 +1495 1501 0.400000 +1495 1557 0.400000 +1495 1602 0.400000 +1495 1769 0.400000 +1495 1883 0.400000 +1495 2050 0.400000 +1495 2196 0.400000 +1495 2295 0.400000 +1495 2307 0.400000 +1495 2336 0.400000 +1495 2345 0.400000 +1495 2369 0.400000 +1495 2533 0.400000 +1495 2541 0.400000 +1495 2568 0.400000 +1495 2576 0.400000 +1495 2581 0.400000 +1495 2599 0.400000 +1495 2658 0.400000 +1495 2671 0.400000 +1495 2674 0.400000 +1495 2722 0.400000 +1495 2789 0.400000 +1495 2855 0.400000 +1495 2948 0.400000 +1495 3104 0.400000 +1495 3124 0.400000 +1496 229 0.400000 +1496 337 0.400000 +1496 361 0.400000 +1496 365 0.400000 +1496 398 0.400000 +1496 436 0.400000 +1496 618 0.400000 +1496 626 0.400000 +1496 633 0.400000 +1496 709 0.400000 +1496 749 0.400000 +1496 793 0.400000 +1496 813 0.400000 +1496 860 0.400000 +1496 864 0.400000 +1496 878 0.400000 +1496 879 0.400000 +1496 966 0.400000 +1496 979 0.400000 +1496 1067 0.400000 +1496 1239 0.400000 +1496 1312 0.400000 +1496 1330 0.400000 +1496 1367 0.400000 +1496 1368 0.400000 +1496 1450 0.400000 +1496 1878 0.400000 +1496 1928 0.400000 +1496 1998 0.400000 +1496 2160 0.400000 +1496 2213 0.400000 +1496 2225 0.400000 +1496 2431 0.400000 +1496 2448 0.400000 +1496 2513 0.400000 +1496 2528 0.400000 +1496 2536 0.400000 +1496 2537 0.400000 +1496 2556 0.400000 +1496 2588 0.400000 +1496 2596 0.400000 +1496 2785 0.400000 +1496 2850 0.400000 +1496 2854 0.400000 +1496 2901 0.400000 +1496 2918 0.400000 +1496 2950 0.400000 +1496 3041 0.400000 +1496 3057 0.400000 +1496 3072 0.400000 +1496 3077 0.400000 +1496 3081 0.400000 +1496 3090 0.400000 +1496 3187 0.400000 +1497 49 0.400000 +1497 50 0.400000 +1497 278 0.400000 +1497 296 0.400000 +1497 337 0.400000 +1497 414 0.400000 +1497 489 0.400000 +1497 525 0.400000 +1497 529 0.400000 +1497 541 0.400000 +1497 569 0.400000 +1497 586 0.400000 +1497 629 0.400000 +1497 640 0.400000 +1497 650 0.400000 +1497 801 0.400000 +1497 843 0.400000 +1497 853 0.400000 +1497 979 0.400000 +1497 990 0.400000 +1497 1100 0.400000 +1497 1107 0.400000 +1497 1222 0.400000 +1497 1383 0.400000 +1497 1384 0.400000 +1497 1465 0.400000 +1497 1558 0.400000 +1497 1659 0.400000 +1497 1702 0.400000 +1497 1728 0.400000 +1497 1810 0.400000 +1497 1873 0.400000 +1497 1876 0.400000 +1497 1886 0.400000 +1497 1949 0.400000 +1497 2025 0.400000 +1497 2034 0.400000 +1497 2079 0.400000 +1497 2144 0.400000 +1497 2197 0.400000 +1497 2306 0.400000 +1497 2371 0.400000 +1497 2416 0.400000 +1497 2442 0.400000 +1497 2447 0.400000 +1497 2473 0.400000 +1497 2504 0.400000 +1497 2530 0.400000 +1497 2557 0.400000 +1497 2585 0.400000 +1497 2591 0.400000 +1497 2659 0.400000 +1497 2679 0.400000 +1497 2880 0.400000 +1497 2967 0.400000 +1497 2977 0.400000 +1497 2991 0.400000 +1497 3067 0.400000 +1497 3122 0.400000 +1497 3146 0.400000 +1498 19 0.400000 +1498 66 0.400000 +1498 82 0.400000 +1498 189 0.400000 +1498 291 0.400000 +1498 315 0.400000 +1498 414 0.400000 +1498 415 0.400000 +1498 443 0.400000 +1498 584 0.400000 +1498 591 0.400000 +1498 618 0.400000 +1498 684 0.400000 +1498 779 0.400000 +1498 819 0.400000 +1498 865 0.400000 +1498 1073 0.400000 +1498 1120 0.400000 +1498 1571 0.400000 +1498 1658 0.400000 +1498 1663 0.400000 +1498 1670 0.400000 +1498 1734 0.400000 +1498 1781 0.400000 +1498 1879 0.400000 +1498 1884 0.400000 +1498 1892 0.400000 +1498 1961 0.400000 +1498 1962 0.400000 +1498 2000 0.400000 +1498 2017 0.400000 +1498 2074 0.400000 +1498 2099 0.400000 +1498 2180 0.400000 +1498 2192 0.400000 +1498 2225 0.400000 +1498 2230 0.400000 +1498 2249 0.400000 +1498 2266 0.400000 +1498 2290 0.400000 +1498 2344 0.400000 +1498 2354 0.400000 +1498 2370 0.400000 +1498 2588 0.400000 +1498 2612 0.400000 +1498 2633 0.400000 +1498 2674 0.400000 +1498 2854 0.400000 +1498 2971 0.400000 +1498 2988 0.400000 +1498 3018 0.400000 +1498 3053 0.400000 +1498 3096 0.400000 +1498 3154 0.400000 +1499 9 0.400000 +1499 70 0.400000 +1499 110 0.400000 +1499 164 0.400000 +1499 395 0.400000 +1499 401 0.400000 +1499 466 0.400000 +1499 497 0.400000 +1499 513 0.400000 +1499 520 0.400000 +1499 545 0.400000 +1499 588 0.400000 +1499 627 0.400000 +1499 704 0.400000 +1499 755 0.400000 +1499 758 0.400000 +1499 763 0.400000 +1499 787 0.400000 +1499 852 0.400000 +1499 853 0.400000 +1499 882 0.400000 +1499 1057 0.400000 +1499 1147 0.400000 +1499 1175 0.400000 +1499 1375 0.400000 +1499 1402 0.400000 +1499 1411 0.400000 +1499 1413 0.400000 +1499 1447 0.400000 +1499 1451 0.400000 +1499 1486 0.400000 +1499 1521 0.400000 +1499 1598 0.400000 +1499 1604 0.400000 +1499 1618 0.400000 +1499 1696 0.400000 +1499 1745 0.400000 +1499 1752 0.400000 +1499 1875 0.400000 +1499 2013 0.400000 +1499 2014 0.400000 +1499 2106 0.400000 +1499 2287 0.400000 +1499 2353 0.400000 +1499 2509 0.400000 +1499 2558 0.400000 +1499 2567 0.400000 +1499 2575 0.400000 +1499 2640 0.400000 +1499 2689 0.400000 +1499 2714 0.400000 +1499 2793 0.400000 +1499 2795 0.400000 +1499 2800 0.400000 +1499 2845 0.400000 +1499 2903 0.400000 +1499 2930 0.400000 +1499 2961 0.400000 +1499 3033 0.400000 +1499 3161 0.400000 +1500 2 0.400000 +1500 23 0.400000 +1500 53 0.400000 +1500 72 0.400000 +1500 97 0.400000 +1500 108 0.400000 +1500 236 0.400000 +1500 258 0.400000 +1500 309 0.400000 +1500 324 0.400000 +1500 341 0.400000 +1500 355 0.400000 +1500 428 0.400000 +1500 601 0.400000 +1500 612 0.400000 +1500 614 0.400000 +1500 631 0.400000 +1500 689 0.400000 +1500 724 0.400000 +1500 792 0.400000 +1500 799 0.400000 +1500 803 0.400000 +1500 834 0.400000 +1500 895 0.400000 +1500 946 0.400000 +1500 979 0.400000 +1500 1006 0.400000 +1500 1089 0.400000 +1500 1236 0.400000 +1500 1243 0.400000 +1500 1259 0.400000 +1500 1417 0.400000 +1500 1466 0.400000 +1500 1488 0.400000 +1500 1518 0.400000 +1500 1526 0.400000 +1500 1618 0.400000 +1500 1619 0.400000 +1500 1642 0.400000 +1500 1651 0.400000 +1500 1673 0.400000 +1500 1718 0.400000 +1500 1730 0.400000 +1500 1822 0.400000 +1500 1823 0.400000 +1500 1825 0.400000 +1500 1841 0.400000 +1500 1844 0.400000 +1500 1889 0.400000 +1500 1958 0.400000 +1500 2019 0.400000 +1500 2029 0.400000 +1500 2035 0.400000 +1500 2038 0.400000 +1500 2039 0.400000 +1500 2041 0.400000 +1500 2059 0.400000 +1500 2108 0.400000 +1500 2214 0.400000 +1500 2296 0.400000 +1500 2339 0.400000 +1500 2383 0.400000 +1500 2402 0.400000 +1500 2436 0.400000 +1500 2469 0.400000 +1500 2533 0.400000 +1500 2544 0.400000 +1500 2563 0.400000 +1500 2614 0.400000 +1500 2632 0.400000 +1500 2639 0.400000 +1500 2659 0.400000 +1500 2693 0.400000 +1500 2714 0.400000 +1500 2740 0.400000 +1500 2783 0.400000 +1500 2806 0.400000 +1500 2818 0.400000 +1500 2841 0.400000 +1500 2940 0.400000 +1500 2944 0.400000 +1500 3031 0.400000 +1500 3059 0.400000 +1500 3194 0.400000 +1501 18 0.400000 +1501 85 0.400000 +1501 152 0.400000 +1501 283 0.400000 +1501 296 0.400000 +1501 325 0.400000 +1501 386 0.400000 +1501 387 0.400000 +1501 413 0.400000 +1501 519 0.400000 +1501 541 0.400000 +1501 565 0.400000 +1501 575 0.400000 +1501 614 0.400000 +1501 630 0.400000 +1501 672 0.400000 +1501 725 0.400000 +1501 734 0.400000 +1501 782 0.400000 +1501 814 0.400000 +1501 884 0.400000 +1501 913 0.400000 +1501 972 0.400000 +1501 1022 0.400000 +1501 1051 0.400000 +1501 1137 0.400000 +1501 1177 0.400000 +1501 1252 0.400000 +1501 1288 0.400000 +1501 1295 0.400000 +1501 1306 0.400000 +1501 1312 0.400000 +1501 1313 0.400000 +1501 1440 0.400000 +1501 1463 0.400000 +1501 1464 0.400000 +1501 1676 0.400000 +1501 1681 0.400000 +1501 2000 0.400000 +1501 2001 0.400000 +1501 2061 0.400000 +1501 2103 0.400000 +1501 2134 0.400000 +1501 2150 0.400000 +1501 2202 0.400000 +1501 2236 0.400000 +1501 2300 0.400000 +1501 2345 0.400000 +1501 2360 0.400000 +1501 2406 0.400000 +1501 2429 0.400000 +1501 2494 0.400000 +1501 2562 0.400000 +1501 2695 0.400000 +1501 2732 0.400000 +1501 2795 0.400000 +1501 2898 0.400000 +1501 2921 0.400000 +1501 2984 0.400000 +1501 2988 0.400000 +1501 3036 0.400000 +1501 3132 0.400000 +1501 3160 0.400000 +1501 3187 0.400000 +1501 3193 0.400000 +1502 144 0.400000 +1502 217 0.400000 +1502 224 0.400000 +1502 230 0.400000 +1502 264 0.400000 +1502 366 0.400000 +1502 383 0.400000 +1502 389 0.400000 +1502 405 0.400000 +1502 491 0.400000 +1502 501 0.400000 +1502 502 0.400000 +1502 514 0.400000 +1502 533 0.400000 +1502 665 0.400000 +1502 692 0.400000 +1502 696 0.400000 +1502 715 0.400000 +1502 723 0.400000 +1502 726 0.400000 +1502 769 0.400000 +1502 794 0.400000 +1502 824 0.400000 +1502 885 0.400000 +1502 952 0.400000 +1502 995 0.400000 +1502 1114 0.400000 +1502 1198 0.400000 +1502 1219 0.400000 +1502 1494 0.400000 +1502 1506 0.400000 +1502 1642 0.400000 +1502 1653 0.400000 +1502 1663 0.400000 +1502 1694 0.400000 +1502 1781 0.400000 +1502 1806 0.400000 +1502 1871 0.400000 +1502 1921 0.400000 +1502 1971 0.400000 +1502 1993 0.400000 +1502 2048 0.400000 +1502 2120 0.400000 +1502 2133 0.400000 +1502 2222 0.400000 +1502 2246 0.400000 +1502 2334 0.400000 +1502 2373 0.400000 +1502 2391 0.400000 +1502 2409 0.400000 +1502 2496 0.400000 +1502 2607 0.400000 +1502 2631 0.400000 +1502 2871 0.400000 +1502 2934 0.400000 +1502 2956 0.400000 +1502 3050 0.400000 +1502 3104 0.400000 +1502 3128 0.400000 +1503 14 0.400000 +1503 68 0.400000 +1503 100 0.400000 +1503 123 0.400000 +1503 139 0.400000 +1503 156 0.400000 +1503 277 0.400000 +1503 355 0.400000 +1503 425 0.400000 +1503 482 0.400000 +1503 495 0.400000 +1503 511 0.400000 +1503 586 0.400000 +1503 589 0.400000 +1503 619 0.400000 +1503 623 0.400000 +1503 742 0.400000 +1503 762 0.400000 +1503 835 0.400000 +1503 871 0.400000 +1503 919 0.400000 +1503 945 0.400000 +1503 1008 0.400000 +1503 1019 0.400000 +1503 1041 0.400000 +1503 1101 0.400000 +1503 1151 0.400000 +1503 1161 0.400000 +1503 1173 0.400000 +1503 1209 0.400000 +1503 1258 0.400000 +1503 1368 0.400000 +1503 1412 0.400000 +1503 1435 0.400000 +1503 1538 0.400000 +1503 1574 0.400000 +1503 1591 0.400000 +1503 1620 0.400000 +1503 1671 0.400000 +1503 1721 0.400000 +1503 1740 0.400000 +1503 1792 0.400000 +1503 1829 0.400000 +1503 1847 0.400000 +1503 1862 0.400000 +1503 1907 0.400000 +1503 1990 0.400000 +1503 2169 0.400000 +1503 2293 0.400000 +1503 2373 0.400000 +1503 2387 0.400000 +1503 2411 0.400000 +1503 2478 0.400000 +1503 2486 0.400000 +1503 2527 0.400000 +1503 2589 0.400000 +1503 2598 0.400000 +1503 2605 0.400000 +1503 2629 0.400000 +1503 2673 0.400000 +1503 2699 0.400000 +1503 2715 0.400000 +1503 2765 0.400000 +1503 2832 0.400000 +1503 2839 0.400000 +1503 2871 0.400000 +1503 2902 0.400000 +1503 2954 0.400000 +1503 3008 0.400000 +1503 3018 0.400000 +1503 3041 0.400000 +1503 3085 0.400000 +1503 3193 0.400000 +1504 41 0.400000 +1504 63 0.400000 +1504 86 0.400000 +1504 185 0.400000 +1504 260 0.400000 +1504 367 0.400000 +1504 383 0.400000 +1504 434 0.400000 +1504 507 0.400000 +1504 508 0.400000 +1504 524 0.400000 +1504 598 0.400000 +1504 699 0.400000 +1504 723 0.400000 +1504 750 0.400000 +1504 850 0.400000 +1504 859 0.400000 +1504 954 0.400000 +1504 978 0.400000 +1504 1018 0.400000 +1504 1023 0.400000 +1504 1074 0.400000 +1504 1121 0.400000 +1504 1129 0.400000 +1504 1150 0.400000 +1504 1167 0.400000 +1504 1245 0.400000 +1504 1272 0.400000 +1504 1338 0.400000 +1504 1455 0.400000 +1504 1502 0.400000 +1504 1513 0.400000 +1504 1699 0.400000 +1504 1819 0.400000 +1504 1866 0.400000 +1504 1951 0.400000 +1504 1994 0.400000 +1504 2045 0.400000 +1504 2068 0.400000 +1504 2161 0.400000 +1504 2288 0.400000 +1504 2420 0.400000 +1504 2456 0.400000 +1504 2565 0.400000 +1504 2813 0.400000 +1504 2837 0.400000 +1504 2871 0.400000 +1504 2930 0.400000 +1504 2975 0.400000 +1504 3119 0.400000 +1504 3162 0.400000 +1504 3199 0.400000 +1505 6 0.400000 +1505 47 0.400000 +1505 136 0.400000 +1505 138 0.400000 +1505 198 0.400000 +1505 199 0.400000 +1505 228 0.400000 +1505 233 0.400000 +1505 273 0.400000 +1505 290 0.400000 +1505 312 0.400000 +1505 315 0.400000 +1505 336 0.400000 +1505 353 0.400000 +1505 396 0.400000 +1505 429 0.400000 +1505 512 0.400000 +1505 567 0.400000 +1505 608 0.400000 +1505 609 0.400000 +1505 621 0.400000 +1505 626 0.400000 +1505 628 0.400000 +1505 672 0.400000 +1505 730 0.400000 +1505 739 0.400000 +1505 828 0.400000 +1505 851 0.400000 +1505 866 0.400000 +1505 893 0.400000 +1505 957 0.400000 +1505 979 0.400000 +1505 1027 0.400000 +1505 1041 0.400000 +1505 1095 0.400000 +1505 1101 0.400000 +1505 1123 0.400000 +1505 1142 0.400000 +1505 1163 0.400000 +1505 1189 0.400000 +1505 1232 0.400000 +1505 1273 0.400000 +1505 1291 0.400000 +1505 1333 0.400000 +1505 1349 0.400000 +1505 1374 0.400000 +1505 1449 0.400000 +1505 1557 0.400000 +1505 1586 0.400000 +1505 1611 0.400000 +1505 1702 0.400000 +1505 1740 0.400000 +1505 1746 0.400000 +1505 1786 0.400000 +1505 1838 0.400000 +1505 1861 0.400000 +1505 1925 0.400000 +1505 1997 0.400000 +1505 2047 0.400000 +1505 2092 0.400000 +1505 2152 0.400000 +1505 2158 0.400000 +1505 2163 0.400000 +1505 2202 0.400000 +1505 2325 0.400000 +1505 2341 0.400000 +1505 2397 0.400000 +1505 2438 0.400000 +1505 2497 0.400000 +1505 2504 0.400000 +1505 2508 0.400000 +1505 2536 0.400000 +1505 2613 0.400000 +1505 2659 0.400000 +1505 2669 0.400000 +1505 2711 0.400000 +1505 2715 0.400000 +1505 2746 0.400000 +1505 2778 0.400000 +1505 2808 0.400000 +1505 2822 0.400000 +1505 2833 0.400000 +1505 2916 0.400000 +1505 2943 0.400000 +1505 2946 0.400000 +1505 2958 0.400000 +1505 2971 0.400000 +1505 3020 0.400000 +1505 3035 0.400000 +1505 3064 0.400000 +1505 3072 0.400000 +1505 3095 0.400000 +1505 3099 0.400000 +1505 3103 0.400000 +1505 3112 0.400000 +1506 100 0.400000 +1506 124 0.400000 +1506 172 0.400000 +1506 214 0.400000 +1506 283 0.400000 +1506 340 0.400000 +1506 382 0.400000 +1506 422 0.400000 +1506 449 0.400000 +1506 502 0.400000 +1506 574 0.400000 +1506 615 0.400000 +1506 676 0.400000 +1506 699 0.400000 +1506 731 0.400000 +1506 858 0.400000 +1506 919 0.400000 +1506 954 0.400000 +1506 960 0.400000 +1506 1053 0.400000 +1506 1184 0.400000 +1506 1253 0.400000 +1506 1278 0.400000 +1506 1284 0.400000 +1506 1368 0.400000 +1506 1396 0.400000 +1506 1437 0.400000 +1506 1495 0.400000 +1506 1607 0.400000 +1506 1713 0.400000 +1506 1721 0.400000 +1506 1756 0.400000 +1506 1817 0.400000 +1506 1903 0.400000 +1506 1933 0.400000 +1506 1950 0.400000 +1506 2002 0.400000 +1506 2015 0.400000 +1506 2040 0.400000 +1506 2041 0.400000 +1506 2060 0.400000 +1506 2092 0.400000 +1506 2137 0.400000 +1506 2241 0.400000 +1506 2323 0.400000 +1506 2334 0.400000 +1506 2361 0.400000 +1506 2430 0.400000 +1506 2472 0.400000 +1506 2482 0.400000 +1506 2510 0.400000 +1506 2716 0.400000 +1506 2724 0.400000 +1506 2729 0.400000 +1506 2800 0.400000 +1506 2802 0.400000 +1506 2861 0.400000 +1506 2928 0.400000 +1506 2929 0.400000 +1506 3006 0.400000 +1506 3027 0.400000 +1506 3058 0.400000 +1506 3073 0.400000 +1506 3133 0.400000 +1506 3166 0.400000 +1506 3177 0.400000 +1507 2 0.400000 +1507 46 0.400000 +1507 96 0.400000 +1507 121 0.400000 +1507 224 0.400000 +1507 265 0.400000 +1507 273 0.400000 +1507 287 0.400000 +1507 288 0.400000 +1507 365 0.400000 +1507 393 0.400000 +1507 397 0.400000 +1507 462 0.400000 +1507 470 0.400000 +1507 512 0.400000 +1507 617 0.400000 +1507 632 0.400000 +1507 664 0.400000 +1507 704 0.400000 +1507 721 0.400000 +1507 747 0.400000 +1507 750 0.400000 +1507 884 0.400000 +1507 892 0.400000 +1507 900 0.400000 +1507 974 0.400000 +1507 1027 0.400000 +1507 1032 0.400000 +1507 1053 0.400000 +1507 1063 0.400000 +1507 1119 0.400000 +1507 1238 0.400000 +1507 1268 0.400000 +1507 1270 0.400000 +1507 1301 0.400000 +1507 1485 0.400000 +1507 1515 0.400000 +1507 1528 0.400000 +1507 1551 0.400000 +1507 1555 0.400000 +1507 1650 0.400000 +1507 1659 0.400000 +1507 1665 0.400000 +1507 1689 0.400000 +1507 1728 0.400000 +1507 1747 0.400000 +1507 1763 0.400000 +1507 1778 0.400000 +1507 1903 0.400000 +1507 2012 0.400000 +1507 2015 0.400000 +1507 2071 0.400000 +1507 2087 0.400000 +1507 2108 0.400000 +1507 2152 0.400000 +1507 2161 0.400000 +1507 2179 0.400000 +1507 2283 0.400000 +1507 2471 0.400000 +1507 2521 0.400000 +1507 2535 0.400000 +1507 2559 0.400000 +1507 2570 0.400000 +1507 2574 0.400000 +1507 2605 0.400000 +1507 2662 0.400000 +1507 2713 0.400000 +1507 2754 0.400000 +1507 2890 0.400000 +1507 2936 0.400000 +1507 2937 0.400000 +1507 3120 0.400000 +1507 3162 0.400000 +1507 3188 0.400000 +1508 96 0.400000 +1508 216 0.400000 +1508 249 0.400000 +1508 262 0.400000 +1508 412 0.400000 +1508 552 0.400000 +1508 612 0.400000 +1508 639 0.400000 +1508 694 0.400000 +1508 830 0.400000 +1508 940 0.400000 +1508 966 0.400000 +1508 983 0.400000 +1508 1027 0.400000 +1508 1171 0.400000 +1508 1192 0.400000 +1508 1216 0.400000 +1508 1281 0.400000 +1508 1300 0.400000 +1508 1532 0.400000 +1508 1535 0.400000 +1508 1541 0.400000 +1508 1565 0.400000 +1508 1587 0.400000 +1508 1606 0.400000 +1508 1650 0.400000 +1508 1689 0.400000 +1508 1771 0.400000 +1508 1823 0.400000 +1508 1833 0.400000 +1508 1873 0.400000 +1508 1887 0.400000 +1508 1987 0.400000 +1508 2027 0.400000 +1508 2114 0.400000 +1508 2193 0.400000 +1508 2247 0.400000 +1508 2275 0.400000 +1508 2427 0.400000 +1508 2441 0.400000 +1508 2457 0.400000 +1508 2483 0.400000 +1508 2503 0.400000 +1508 2506 0.400000 +1508 2519 0.400000 +1508 2524 0.400000 +1508 2529 0.400000 +1508 2564 0.400000 +1508 2594 0.400000 +1508 2628 0.400000 +1508 2709 0.400000 +1508 2740 0.400000 +1508 2756 0.400000 +1508 2817 0.400000 +1508 2864 0.400000 +1508 2896 0.400000 +1508 2918 0.400000 +1508 2927 0.400000 +1508 2942 0.400000 +1508 3048 0.400000 +1508 3158 0.400000 +1508 3164 0.400000 +1508 3176 0.400000 +1508 3178 0.400000 +1509 58 0.400000 +1509 59 0.400000 +1509 116 0.400000 +1509 132 0.400000 +1509 188 0.400000 +1509 301 0.400000 +1509 356 0.400000 +1509 450 0.400000 +1509 475 0.400000 +1509 569 0.400000 +1509 784 0.400000 +1509 817 0.400000 +1509 842 0.400000 +1509 847 0.400000 +1509 866 0.400000 +1509 893 0.400000 +1509 933 0.400000 +1509 1095 0.400000 +1509 1121 0.400000 +1509 1330 0.400000 +1509 1346 0.400000 +1509 1359 0.400000 +1509 1372 0.400000 +1509 1393 0.400000 +1509 1402 0.400000 +1509 1418 0.400000 +1509 1481 0.400000 +1509 1547 0.400000 +1509 1549 0.400000 +1509 1604 0.400000 +1509 1903 0.400000 +1509 1922 0.400000 +1509 2032 0.400000 +1509 2073 0.400000 +1509 2082 0.400000 +1509 2110 0.400000 +1509 2169 0.400000 +1509 2188 0.400000 +1509 2301 0.400000 +1509 2310 0.400000 +1509 2320 0.400000 +1509 2331 0.400000 +1509 2360 0.400000 +1509 2411 0.400000 +1509 2434 0.400000 +1509 2460 0.400000 +1509 2464 0.400000 +1509 2519 0.400000 +1509 2579 0.400000 +1509 2611 0.400000 +1509 2660 0.400000 +1509 2716 0.400000 +1509 2794 0.400000 +1509 2861 0.400000 +1509 3026 0.400000 +1509 3074 0.400000 +1509 3136 0.400000 +1509 3158 0.400000 +1509 3161 0.400000 +1509 3174 0.400000 +1509 3177 0.400000 +1510 20 0.400000 +1510 45 0.400000 +1510 91 0.400000 +1510 112 0.400000 +1510 134 0.400000 +1510 159 0.400000 +1510 190 0.400000 +1510 201 0.400000 +1510 270 0.400000 +1510 411 0.400000 +1510 417 0.400000 +1510 514 0.400000 +1510 567 0.400000 +1510 648 0.400000 +1510 655 0.400000 +1510 672 0.400000 +1510 755 0.400000 +1510 812 0.400000 +1510 832 0.400000 +1510 876 0.400000 +1510 900 0.400000 +1510 970 0.400000 +1510 986 0.400000 +1510 1018 0.400000 +1510 1076 0.400000 +1510 1189 0.400000 +1510 1246 0.400000 +1510 1419 0.400000 +1510 1460 0.400000 +1510 1532 0.400000 +1510 1544 0.400000 +1510 1570 0.400000 +1510 1751 0.400000 +1510 1754 0.400000 +1510 1830 0.400000 +1510 1833 0.400000 +1510 2024 0.400000 +1510 2077 0.400000 +1510 2099 0.400000 +1510 2120 0.400000 +1510 2198 0.400000 +1510 2218 0.400000 +1510 2262 0.400000 +1510 2395 0.400000 +1510 2468 0.400000 +1510 2507 0.400000 +1510 2518 0.400000 +1510 2546 0.400000 +1510 2548 0.400000 +1510 2628 0.400000 +1510 2664 0.400000 +1510 2708 0.400000 +1510 2742 0.400000 +1510 2783 0.400000 +1510 2849 0.400000 +1510 2880 0.400000 +1510 3032 0.400000 +1510 3066 0.400000 +1510 3071 0.400000 +1510 3083 0.400000 +1510 3108 0.400000 +1510 3148 0.400000 +1510 3168 0.400000 +1510 3170 0.400000 +1510 3176 0.400000 +1510 3181 0.400000 +1511 5 0.400000 +1511 66 0.400000 +1511 72 0.400000 +1511 90 0.400000 +1511 194 0.400000 +1511 197 0.400000 +1511 200 0.400000 +1511 206 0.400000 +1511 368 0.400000 +1511 377 0.400000 +1511 487 0.400000 +1511 556 0.400000 +1511 571 0.400000 +1511 605 0.400000 +1511 620 0.400000 +1511 633 0.400000 +1511 727 0.400000 +1511 731 0.400000 +1511 741 0.400000 +1511 854 0.400000 +1511 890 0.400000 +1511 993 0.400000 +1511 1043 0.400000 +1511 1118 0.400000 +1511 1144 0.400000 +1511 1150 0.400000 +1511 1173 0.400000 +1511 1191 0.400000 +1511 1192 0.400000 +1511 1304 0.400000 +1511 1315 0.400000 +1511 1338 0.400000 +1511 1344 0.400000 +1511 1393 0.400000 +1511 1414 0.400000 +1511 1426 0.400000 +1511 1431 0.400000 +1511 1444 0.400000 +1511 1465 0.400000 +1511 1652 0.400000 +1511 1699 0.400000 +1511 1748 0.400000 +1511 1778 0.400000 +1511 1849 0.400000 +1511 1862 0.400000 +1511 2013 0.400000 +1511 2070 0.400000 +1511 2121 0.400000 +1511 2250 0.400000 +1511 2266 0.400000 +1511 2275 0.400000 +1511 2284 0.400000 +1511 2312 0.400000 +1511 2426 0.400000 +1511 2437 0.400000 +1511 2530 0.400000 +1511 2619 0.400000 +1511 2622 0.400000 +1511 2645 0.400000 +1511 2712 0.400000 +1511 2774 0.400000 +1511 2827 0.400000 +1511 2912 0.400000 +1511 2951 0.400000 +1511 3006 0.400000 +1511 3008 0.400000 +1511 3060 0.400000 +1511 3196 0.400000 +1512 20 0.400000 +1512 136 0.400000 +1512 168 0.400000 +1512 234 0.400000 +1512 285 0.400000 +1512 304 0.400000 +1512 339 0.400000 +1512 398 0.400000 +1512 452 0.400000 +1512 470 0.400000 +1512 486 0.400000 +1512 518 0.400000 +1512 754 0.400000 +1512 878 0.400000 +1512 888 0.400000 +1512 1005 0.400000 +1512 1052 0.400000 +1512 1072 0.400000 +1512 1190 0.400000 +1512 1273 0.400000 +1512 1286 0.400000 +1512 1343 0.400000 +1512 1349 0.400000 +1512 1427 0.400000 +1512 1454 0.400000 +1512 1479 0.400000 +1512 1490 0.400000 +1512 1600 0.400000 +1512 1691 0.400000 +1512 1716 0.400000 +1512 1914 0.400000 +1512 1930 0.400000 +1512 1966 0.400000 +1512 2013 0.400000 +1512 2018 0.400000 +1512 2079 0.400000 +1512 2213 0.400000 +1512 2246 0.400000 +1512 2282 0.400000 +1512 2293 0.400000 +1512 2403 0.400000 +1512 2413 0.400000 +1512 2424 0.400000 +1512 2478 0.400000 +1512 2512 0.400000 +1512 2580 0.400000 +1512 2613 0.400000 +1512 2711 0.400000 +1512 2821 0.400000 +1512 2832 0.400000 +1512 2881 0.400000 +1512 2972 0.400000 +1512 2973 0.400000 +1512 3144 0.400000 +1512 3146 0.400000 +1512 3166 0.400000 +1513 21 0.400000 +1513 46 0.400000 +1513 334 0.400000 +1513 338 0.400000 +1513 425 0.400000 +1513 469 0.400000 +1513 505 0.400000 +1513 580 0.400000 +1513 640 0.400000 +1513 644 0.400000 +1513 680 0.400000 +1513 723 0.400000 +1513 724 0.400000 +1513 744 0.400000 +1513 929 0.400000 +1513 1028 0.400000 +1513 1085 0.400000 +1513 1206 0.400000 +1513 1208 0.400000 +1513 1311 0.400000 +1513 1339 0.400000 +1513 1352 0.400000 +1513 1419 0.400000 +1513 1437 0.400000 +1513 1447 0.400000 +1513 1478 0.400000 +1513 1486 0.400000 +1513 1488 0.400000 +1513 1509 0.400000 +1513 1541 0.400000 +1513 1580 0.400000 +1513 1625 0.400000 +1513 1696 0.400000 +1513 1783 0.400000 +1513 1808 0.400000 +1513 1813 0.400000 +1513 1867 0.400000 +1513 1966 0.400000 +1513 2022 0.400000 +1513 2030 0.400000 +1513 2097 0.400000 +1513 2117 0.400000 +1513 2174 0.400000 +1513 2184 0.400000 +1513 2195 0.400000 +1513 2205 0.400000 +1513 2217 0.400000 +1513 2232 0.400000 +1513 2303 0.400000 +1513 2379 0.400000 +1513 2391 0.400000 +1513 2411 0.400000 +1513 2418 0.400000 +1513 2460 0.400000 +1513 2554 0.400000 +1513 2687 0.400000 +1513 2775 0.400000 +1513 2780 0.400000 +1513 2795 0.400000 +1513 2796 0.400000 +1513 2817 0.400000 +1513 2909 0.400000 +1513 3024 0.400000 +1513 3048 0.400000 +1513 3049 0.400000 +1513 3185 0.400000 +1514 14 0.400000 +1514 46 0.400000 +1514 48 0.400000 +1514 56 0.400000 +1514 260 0.400000 +1514 312 0.400000 +1514 329 0.400000 +1514 343 0.400000 +1514 354 0.400000 +1514 380 0.400000 +1514 391 0.400000 +1514 412 0.400000 +1514 448 0.400000 +1514 456 0.400000 +1514 498 0.400000 +1514 508 0.400000 +1514 523 0.400000 +1514 537 0.400000 +1514 544 0.400000 +1514 577 0.400000 +1514 622 0.400000 +1514 699 0.400000 +1514 727 0.400000 +1514 743 0.400000 +1514 763 0.400000 +1514 766 0.400000 +1514 781 0.400000 +1514 796 0.400000 +1514 850 0.400000 +1514 1037 0.400000 +1514 1050 0.400000 +1514 1052 0.400000 +1514 1057 0.400000 +1514 1086 0.400000 +1514 1146 0.400000 +1514 1153 0.400000 +1514 1172 0.400000 +1514 1199 0.400000 +1514 1408 0.400000 +1514 1507 0.400000 +1514 1523 0.400000 +1514 1533 0.400000 +1514 1595 0.400000 +1514 1597 0.400000 +1514 1616 0.400000 +1514 1647 0.400000 +1514 1693 0.400000 +1514 1747 0.400000 +1514 1850 0.400000 +1514 1881 0.400000 +1514 1949 0.400000 +1514 1976 0.400000 +1514 2110 0.400000 +1514 2115 0.400000 +1514 2204 0.400000 +1514 2231 0.400000 +1514 2364 0.400000 +1514 2410 0.400000 +1514 2435 0.400000 +1514 2448 0.400000 +1514 2458 0.400000 +1514 2465 0.400000 +1514 2498 0.400000 +1514 2567 0.400000 +1514 2662 0.400000 +1514 2785 0.400000 +1514 2800 0.400000 +1514 2802 0.400000 +1514 2888 0.400000 +1514 2931 0.400000 +1514 2973 0.400000 +1514 2987 0.400000 +1514 3025 0.400000 +1514 3075 0.400000 +1514 3137 0.400000 +1514 3144 0.400000 +1514 3165 0.400000 +1515 70 0.400000 +1515 90 0.400000 +1515 114 0.400000 +1515 162 0.400000 +1515 262 0.400000 +1515 285 0.400000 +1515 353 0.400000 +1515 360 0.400000 +1515 374 0.400000 +1515 437 0.400000 +1515 470 0.400000 +1515 483 0.400000 +1515 514 0.400000 +1515 518 0.400000 +1515 621 0.400000 +1515 646 0.400000 +1515 807 0.400000 +1515 1034 0.400000 +1515 1060 0.400000 +1515 1128 0.400000 +1515 1151 0.400000 +1515 1181 0.400000 +1515 1220 0.400000 +1515 1250 0.400000 +1515 1312 0.400000 +1515 1379 0.400000 +1515 1467 0.400000 +1515 1517 0.400000 +1515 1546 0.400000 +1515 1575 0.400000 +1515 1577 0.400000 +1515 1605 0.400000 +1515 1623 0.400000 +1515 1675 0.400000 +1515 1791 0.400000 +1515 1793 0.400000 +1515 1815 0.400000 +1515 1975 0.400000 +1515 2058 0.400000 +1515 2077 0.400000 +1515 2097 0.400000 +1515 2101 0.400000 +1515 2143 0.400000 +1515 2226 0.400000 +1515 2292 0.400000 +1515 2294 0.400000 +1515 2339 0.400000 +1515 2386 0.400000 +1515 2397 0.400000 +1515 2439 0.400000 +1515 2522 0.400000 +1515 2568 0.400000 +1515 2591 0.400000 +1515 2593 0.400000 +1515 2704 0.400000 +1515 2723 0.400000 +1515 2782 0.400000 +1515 2854 0.400000 +1515 2911 0.400000 +1515 2930 0.400000 +1515 2979 0.400000 +1515 3013 0.400000 +1515 3032 0.400000 +1515 3146 0.400000 +1515 3193 0.400000 +1516 8 0.400000 +1516 103 0.400000 +1516 175 0.400000 +1516 196 0.400000 +1516 239 0.400000 +1516 338 0.400000 +1516 376 0.400000 +1516 420 0.400000 +1516 428 0.400000 +1516 477 0.400000 +1516 498 0.400000 +1516 506 0.400000 +1516 638 0.400000 +1516 734 0.400000 +1516 750 0.400000 +1516 785 0.400000 +1516 812 0.400000 +1516 936 0.400000 +1516 958 0.400000 +1516 1023 0.400000 +1516 1028 0.400000 +1516 1092 0.400000 +1516 1133 0.400000 +1516 1154 0.400000 +1516 1162 0.400000 +1516 1199 0.400000 +1516 1221 0.400000 +1516 1288 0.400000 +1516 1385 0.400000 +1516 1467 0.400000 +1516 1499 0.400000 +1516 1534 0.400000 +1516 1606 0.400000 +1516 1741 0.400000 +1516 1755 0.400000 +1516 1789 0.400000 +1516 1849 0.400000 +1516 1855 0.400000 +1516 1951 0.400000 +1516 1991 0.400000 +1516 1998 0.400000 +1516 2001 0.400000 +1516 2180 0.400000 +1516 2184 0.400000 +1516 2268 0.400000 +1516 2290 0.400000 +1516 2365 0.400000 +1516 2610 0.400000 +1516 2636 0.400000 +1516 2665 0.400000 +1516 2684 0.400000 +1516 2701 0.400000 +1516 2704 0.400000 +1516 2723 0.400000 +1516 2851 0.400000 +1516 2990 0.400000 +1516 3073 0.400000 +1516 3124 0.400000 +1516 3173 0.400000 +1517 46 0.400000 +1517 51 0.400000 +1517 54 0.400000 +1517 108 0.400000 +1517 126 0.400000 +1517 128 0.400000 +1517 184 0.400000 +1517 262 0.400000 +1517 319 0.400000 +1517 343 0.400000 +1517 351 0.400000 +1517 401 0.400000 +1517 407 0.400000 +1517 409 0.400000 +1517 519 0.400000 +1517 787 0.400000 +1517 809 0.400000 +1517 873 0.400000 +1517 876 0.400000 +1517 930 0.400000 +1517 953 0.400000 +1517 984 0.400000 +1517 1018 0.400000 +1517 1146 0.400000 +1517 1236 0.400000 +1517 1259 0.400000 +1517 1284 0.400000 +1517 1287 0.400000 +1517 1289 0.400000 +1517 1298 0.400000 +1517 1363 0.400000 +1517 1514 0.400000 +1517 1604 0.400000 +1517 1647 0.400000 +1517 1677 0.400000 +1517 1761 0.400000 +1517 1799 0.400000 +1517 1842 0.400000 +1517 1845 0.400000 +1517 1938 0.400000 +1517 1989 0.400000 +1517 2115 0.400000 +1517 2146 0.400000 +1517 2151 0.400000 +1517 2177 0.400000 +1517 2227 0.400000 +1517 2326 0.400000 +1517 2418 0.400000 +1517 2493 0.400000 +1517 2521 0.400000 +1517 2679 0.400000 +1517 2686 0.400000 +1517 2703 0.400000 +1517 2828 0.400000 +1517 2845 0.400000 +1517 2865 0.400000 +1517 3044 0.400000 +1517 3144 0.400000 +1518 16 0.400000 +1518 164 0.400000 +1518 181 0.400000 +1518 190 0.400000 +1518 202 0.400000 +1518 239 0.400000 +1518 359 0.400000 +1518 401 0.400000 +1518 435 0.400000 +1518 469 0.400000 +1518 470 0.400000 +1518 476 0.400000 +1518 523 0.400000 +1518 691 0.400000 +1518 734 0.400000 +1518 754 0.400000 +1518 759 0.400000 +1518 809 0.400000 +1518 988 0.400000 +1518 1003 0.400000 +1518 1059 0.400000 +1518 1085 0.400000 +1518 1132 0.400000 +1518 1139 0.400000 +1518 1250 0.400000 +1518 1265 0.400000 +1518 1302 0.400000 +1518 1352 0.400000 +1518 1420 0.400000 +1518 1443 0.400000 +1518 1461 0.400000 +1518 1495 0.400000 +1518 1513 0.400000 +1518 1574 0.400000 +1518 1609 0.400000 +1518 1685 0.400000 +1518 1778 0.400000 +1518 1786 0.400000 +1518 1850 0.400000 +1518 1900 0.400000 +1518 1956 0.400000 +1518 1994 0.400000 +1518 2051 0.400000 +1518 2068 0.400000 +1518 2126 0.400000 +1518 2182 0.400000 +1518 2301 0.400000 +1518 2374 0.400000 +1518 2462 0.400000 +1518 2468 0.400000 +1518 2566 0.400000 +1518 2632 0.400000 +1518 2702 0.400000 +1518 2705 0.400000 +1518 2758 0.400000 +1518 2866 0.400000 +1518 2908 0.400000 +1518 2955 0.400000 +1518 3097 0.400000 +1518 3106 0.400000 +1519 32 0.400000 +1519 61 0.400000 +1519 132 0.400000 +1519 162 0.400000 +1519 173 0.400000 +1519 188 0.400000 +1519 205 0.400000 +1519 208 0.400000 +1519 266 0.400000 +1519 269 0.400000 +1519 592 0.400000 +1519 651 0.400000 +1519 721 0.400000 +1519 734 0.400000 +1519 833 0.400000 +1519 850 0.400000 +1519 890 0.400000 +1519 910 0.400000 +1519 1065 0.400000 +1519 1076 0.400000 +1519 1092 0.400000 +1519 1224 0.400000 +1519 1272 0.400000 +1519 1276 0.400000 +1519 1333 0.400000 +1519 1346 0.400000 +1519 1363 0.400000 +1519 1439 0.400000 +1519 1469 0.400000 +1519 1545 0.400000 +1519 1553 0.400000 +1519 1688 0.400000 +1519 1692 0.400000 +1519 1716 0.400000 +1519 1728 0.400000 +1519 1781 0.400000 +1519 1782 0.400000 +1519 1890 0.400000 +1519 1937 0.400000 +1519 1975 0.400000 +1519 2001 0.400000 +1519 2006 0.400000 +1519 2051 0.400000 +1519 2109 0.400000 +1519 2293 0.400000 +1519 2370 0.400000 +1519 2413 0.400000 +1519 2436 0.400000 +1519 2447 0.400000 +1519 2471 0.400000 +1519 2492 0.400000 +1519 2689 0.400000 +1519 2807 0.400000 +1519 2820 0.400000 +1519 2828 0.400000 +1519 2889 0.400000 +1519 2961 0.400000 +1519 3022 0.400000 +1519 3031 0.400000 +1519 3039 0.400000 +1519 3062 0.400000 +1519 3100 0.400000 +1519 3105 0.400000 +1520 8 0.400000 +1520 78 0.400000 +1520 137 0.400000 +1520 246 0.400000 +1520 318 0.400000 +1520 425 0.400000 +1520 461 0.400000 +1520 530 0.400000 +1520 660 0.400000 +1520 1034 0.400000 +1520 1071 0.400000 +1520 1074 0.400000 +1520 1114 0.400000 +1520 1141 0.400000 +1520 1144 0.400000 +1520 1235 0.400000 +1520 1251 0.400000 +1520 1280 0.400000 +1520 1356 0.400000 +1520 1513 0.400000 +1520 1538 0.400000 +1520 1578 0.400000 +1520 1591 0.400000 +1520 1608 0.400000 +1520 1658 0.400000 +1520 1683 0.400000 +1520 1709 0.400000 +1520 1738 0.400000 +1520 1878 0.400000 +1520 1903 0.400000 +1520 1917 0.400000 +1520 1971 0.400000 +1520 1979 0.400000 +1520 2036 0.400000 +1520 2043 0.400000 +1520 2053 0.400000 +1520 2072 0.400000 +1520 2129 0.400000 +1520 2137 0.400000 +1520 2275 0.400000 +1520 2276 0.400000 +1520 2287 0.400000 +1520 2294 0.400000 +1520 2302 0.400000 +1520 2359 0.400000 +1520 2377 0.400000 +1520 2440 0.400000 +1520 2536 0.400000 +1520 2537 0.400000 +1520 2541 0.400000 +1520 2545 0.400000 +1520 2562 0.400000 +1520 2580 0.400000 +1520 2648 0.400000 +1520 2671 0.400000 +1520 2687 0.400000 +1520 2690 0.400000 +1520 2770 0.400000 +1520 2775 0.400000 +1520 2832 0.400000 +1520 2869 0.400000 +1520 2907 0.400000 +1520 2981 0.400000 +1520 2988 0.400000 +1520 3064 0.400000 +1520 3129 0.400000 +1521 44 0.400000 +1521 97 0.400000 +1521 235 0.400000 +1521 265 0.400000 +1521 311 0.400000 +1521 313 0.400000 +1521 325 0.400000 +1521 329 0.400000 +1521 460 0.400000 +1521 578 0.400000 +1521 593 0.400000 +1521 616 0.400000 +1521 623 0.400000 +1521 679 0.400000 +1521 729 0.400000 +1521 748 0.400000 +1521 847 0.400000 +1521 905 0.400000 +1521 925 0.400000 +1521 929 0.400000 +1521 930 0.400000 +1521 961 0.400000 +1521 1002 0.400000 +1521 1040 0.400000 +1521 1128 0.400000 +1521 1300 0.400000 +1521 1377 0.400000 +1521 1480 0.400000 +1521 1563 0.400000 +1521 1734 0.400000 +1521 1867 0.400000 +1521 1974 0.400000 +1521 1991 0.400000 +1521 2093 0.400000 +1521 2122 0.400000 +1521 2157 0.400000 +1521 2237 0.400000 +1521 2330 0.400000 +1521 2352 0.400000 +1521 2421 0.400000 +1521 2457 0.400000 +1521 2496 0.400000 +1521 2527 0.400000 +1521 2608 0.400000 +1521 2625 0.400000 +1521 2692 0.400000 +1521 2778 0.400000 +1521 2892 0.400000 +1521 2925 0.400000 +1521 2926 0.400000 +1521 2953 0.400000 +1521 3044 0.400000 +1521 3051 0.400000 +1521 3056 0.400000 +1521 3062 0.400000 +1521 3123 0.400000 +1521 3144 0.400000 +1521 3175 0.400000 +1521 3180 0.400000 +1522 8 0.400000 +1522 119 0.400000 +1522 122 0.400000 +1522 227 0.400000 +1522 267 0.400000 +1522 273 0.400000 +1522 303 0.400000 +1522 309 0.400000 +1522 355 0.400000 +1522 507 0.400000 +1522 508 0.400000 +1522 525 0.400000 +1522 639 0.400000 +1522 654 0.400000 +1522 670 0.400000 +1522 731 0.400000 +1522 762 0.400000 +1522 811 0.400000 +1522 830 0.400000 +1522 866 0.400000 +1522 943 0.400000 +1522 973 0.400000 +1522 1012 0.400000 +1522 1056 0.400000 +1522 1084 0.400000 +1522 1233 0.400000 +1522 1302 0.400000 +1522 1347 0.400000 +1522 1408 0.400000 +1522 1435 0.400000 +1522 1479 0.400000 +1522 1505 0.400000 +1522 1575 0.400000 +1522 1600 0.400000 +1522 1717 0.400000 +1522 1723 0.400000 +1522 1941 0.400000 +1522 2056 0.400000 +1522 2146 0.400000 +1522 2163 0.400000 +1522 2223 0.400000 +1522 2274 0.400000 +1522 2380 0.400000 +1522 2465 0.400000 +1522 2480 0.400000 +1522 2491 0.400000 +1522 2504 0.400000 +1522 2522 0.400000 +1522 2582 0.400000 +1522 2761 0.400000 +1522 2816 0.400000 +1522 2866 0.400000 +1522 2905 0.400000 +1522 2963 0.400000 +1522 3009 0.400000 +1522 3083 0.400000 +1522 3115 0.400000 +1522 3127 0.400000 +1522 3164 0.400000 +1522 3170 0.400000 +1522 3180 0.400000 +1523 4 0.400000 +1523 80 0.400000 +1523 105 0.400000 +1523 154 0.400000 +1523 254 0.400000 +1523 261 0.400000 +1523 265 0.400000 +1523 277 0.400000 +1523 408 0.400000 +1523 429 0.400000 +1523 436 0.400000 +1523 496 0.400000 +1523 541 0.400000 +1523 548 0.400000 +1523 595 0.400000 +1523 811 0.400000 +1523 842 0.400000 +1523 921 0.400000 +1523 946 0.400000 +1523 1014 0.400000 +1523 1059 0.400000 +1523 1186 0.400000 +1523 1195 0.400000 +1523 1247 0.400000 +1523 1335 0.400000 +1523 1336 0.400000 +1523 1353 0.400000 +1523 1381 0.400000 +1523 1395 0.400000 +1523 1450 0.400000 +1523 1588 0.400000 +1523 1694 0.400000 +1523 1699 0.400000 +1523 1771 0.400000 +1523 1816 0.400000 +1523 1857 0.400000 +1523 1951 0.400000 +1523 2004 0.400000 +1523 2006 0.400000 +1523 2071 0.400000 +1523 2102 0.400000 +1523 2141 0.400000 +1523 2150 0.400000 +1523 2152 0.400000 +1523 2160 0.400000 +1523 2161 0.400000 +1523 2186 0.400000 +1523 2210 0.400000 +1523 2221 0.400000 +1523 2237 0.400000 +1523 2297 0.400000 +1523 2337 0.400000 +1523 2355 0.400000 +1523 2367 0.400000 +1523 2370 0.400000 +1523 2416 0.400000 +1523 2507 0.400000 +1523 2746 0.400000 +1523 2826 0.400000 +1523 2863 0.400000 +1523 2879 0.400000 +1523 2929 0.400000 +1523 3153 0.400000 +1523 3154 0.400000 +1523 3191 0.400000 +1524 7 0.400000 +1524 60 0.400000 +1524 68 0.400000 +1524 130 0.400000 +1524 241 0.400000 +1524 372 0.400000 +1524 379 0.400000 +1524 389 0.400000 +1524 651 0.400000 +1524 691 0.400000 +1524 712 0.400000 +1524 742 0.400000 +1524 757 0.400000 +1524 758 0.400000 +1524 823 0.400000 +1524 881 0.400000 +1524 967 0.400000 +1524 983 0.400000 +1524 1084 0.400000 +1524 1310 0.400000 +1524 1349 0.400000 +1524 1384 0.400000 +1524 1405 0.400000 +1524 1411 0.400000 +1524 1441 0.400000 +1524 1492 0.400000 +1524 1505 0.400000 +1524 1558 0.400000 +1524 1561 0.400000 +1524 1671 0.400000 +1524 1678 0.400000 +1524 1688 0.400000 +1524 1719 0.400000 +1524 1733 0.400000 +1524 1788 0.400000 +1524 1819 0.400000 +1524 1954 0.400000 +1524 1965 0.400000 +1524 1993 0.400000 +1524 2106 0.400000 +1524 2167 0.400000 +1524 2174 0.400000 +1524 2252 0.400000 +1524 2309 0.400000 +1524 2334 0.400000 +1524 2402 0.400000 +1524 2408 0.400000 +1524 2463 0.400000 +1524 2478 0.400000 +1524 2501 0.400000 +1524 2675 0.400000 +1524 2682 0.400000 +1524 2756 0.400000 +1524 2818 0.400000 +1524 2915 0.400000 +1524 2935 0.400000 +1524 2963 0.400000 +1524 3086 0.400000 +1525 20 0.400000 +1525 34 0.400000 +1525 156 0.400000 +1525 310 0.400000 +1525 377 0.400000 +1525 399 0.400000 +1525 588 0.400000 +1525 626 0.400000 +1525 774 0.400000 +1525 891 0.400000 +1525 894 0.400000 +1525 921 0.400000 +1525 950 0.400000 +1525 994 0.400000 +1525 1068 0.400000 +1525 1112 0.400000 +1525 1218 0.400000 +1525 1230 0.400000 +1525 1239 0.400000 +1525 1267 0.400000 +1525 1309 0.400000 +1525 1359 0.400000 +1525 1413 0.400000 +1525 1510 0.400000 +1525 1550 0.400000 +1525 1596 0.400000 +1525 1751 0.400000 +1525 1772 0.400000 +1525 1776 0.400000 +1525 1840 0.400000 +1525 1843 0.400000 +1525 1849 0.400000 +1525 1900 0.400000 +1525 1959 0.400000 +1525 2057 0.400000 +1525 2091 0.400000 +1525 2115 0.400000 +1525 2135 0.400000 +1525 2158 0.400000 +1525 2246 0.400000 +1525 2400 0.400000 +1525 2460 0.400000 +1525 2483 0.400000 +1525 2518 0.400000 +1525 2551 0.400000 +1525 2559 0.400000 +1525 2594 0.400000 +1525 2689 0.400000 +1525 2763 0.400000 +1525 2801 0.400000 +1525 2857 0.400000 +1525 2952 0.400000 +1525 2958 0.400000 +1525 2990 0.400000 +1525 3012 0.400000 +1525 3115 0.400000 +1525 3199 0.400000 +1526 9 0.400000 +1526 31 0.400000 +1526 83 0.400000 +1526 101 0.400000 +1526 165 0.400000 +1526 216 0.400000 +1526 222 0.400000 +1526 260 0.400000 +1526 269 0.400000 +1526 294 0.400000 +1526 322 0.400000 +1526 386 0.400000 +1526 401 0.400000 +1526 429 0.400000 +1526 433 0.400000 +1526 490 0.400000 +1526 516 0.400000 +1526 534 0.400000 +1526 586 0.400000 +1526 647 0.400000 +1526 668 0.400000 +1526 833 0.400000 +1526 881 0.400000 +1526 1071 0.400000 +1526 1078 0.400000 +1526 1112 0.400000 +1526 1122 0.400000 +1526 1130 0.400000 +1526 1142 0.400000 +1526 1178 0.400000 +1526 1252 0.400000 +1526 1349 0.400000 +1526 1386 0.400000 +1526 1447 0.400000 +1526 1484 0.400000 +1526 1556 0.400000 +1526 1614 0.400000 +1526 1727 0.400000 +1526 1846 0.400000 +1526 1870 0.400000 +1526 1980 0.400000 +1526 1981 0.400000 +1526 1984 0.400000 +1526 2113 0.400000 +1526 2152 0.400000 +1526 2274 0.400000 +1526 2289 0.400000 +1526 2308 0.400000 +1526 2447 0.400000 +1526 2479 0.400000 +1526 2512 0.400000 +1526 2585 0.400000 +1526 2677 0.400000 +1526 2764 0.400000 +1526 2855 0.400000 +1526 2948 0.400000 +1526 2968 0.400000 +1526 2980 0.400000 +1526 3026 0.400000 +1526 3039 0.400000 +1526 3043 0.400000 +1526 3057 0.400000 +1526 3179 0.400000 +1527 4 0.400000 +1527 178 0.400000 +1527 250 0.400000 +1527 263 0.400000 +1527 279 0.400000 +1527 336 0.400000 +1527 399 0.400000 +1527 465 0.400000 +1527 530 0.400000 +1527 554 0.400000 +1527 555 0.400000 +1527 686 0.400000 +1527 723 0.400000 +1527 728 0.400000 +1527 749 0.400000 +1527 799 0.400000 +1527 823 0.400000 +1527 909 0.400000 +1527 914 0.400000 +1527 933 0.400000 +1527 940 0.400000 +1527 989 0.400000 +1527 1006 0.400000 +1527 1019 0.400000 +1527 1061 0.400000 +1527 1082 0.400000 +1527 1110 0.400000 +1527 1116 0.400000 +1527 1160 0.400000 +1527 1210 0.400000 +1527 1248 0.400000 +1527 1316 0.400000 +1527 1366 0.400000 +1527 1375 0.400000 +1527 1435 0.400000 +1527 1449 0.400000 +1527 1458 0.400000 +1527 1467 0.400000 +1527 1569 0.400000 +1527 1690 0.400000 +1527 1767 0.400000 +1527 1774 0.400000 +1527 1804 0.400000 +1527 1819 0.400000 +1527 1844 0.400000 +1527 1857 0.400000 +1527 1971 0.400000 +1527 1985 0.400000 +1527 2008 0.400000 +1527 2009 0.400000 +1527 2068 0.400000 +1527 2076 0.400000 +1527 2159 0.400000 +1527 2186 0.400000 +1527 2271 0.400000 +1527 2293 0.400000 +1527 2294 0.400000 +1527 2299 0.400000 +1527 2337 0.400000 +1527 2426 0.400000 +1527 2534 0.400000 +1527 2679 0.400000 +1527 2831 0.400000 +1527 2835 0.400000 +1527 2858 0.400000 +1527 2860 0.400000 +1527 2925 0.400000 +1527 2960 0.400000 +1527 2964 0.400000 +1528 32 0.400000 +1528 92 0.400000 +1528 123 0.400000 +1528 125 0.400000 +1528 146 0.400000 +1528 194 0.400000 +1528 205 0.400000 +1528 244 0.400000 +1528 269 0.400000 +1528 330 0.400000 +1528 375 0.400000 +1528 460 0.400000 +1528 544 0.400000 +1528 559 0.400000 +1528 562 0.400000 +1528 570 0.400000 +1528 671 0.400000 +1528 770 0.400000 +1528 828 0.400000 +1528 829 0.400000 +1528 1083 0.400000 +1528 1180 0.400000 +1528 1190 0.400000 +1528 1200 0.400000 +1528 1212 0.400000 +1528 1275 0.400000 +1528 1381 0.400000 +1528 1382 0.400000 +1528 1537 0.400000 +1528 1651 0.400000 +1528 1764 0.400000 +1528 1845 0.400000 +1528 1885 0.400000 +1528 1970 0.400000 +1528 2111 0.400000 +1528 2175 0.400000 +1528 2190 0.400000 +1528 2390 0.400000 +1528 2485 0.400000 +1528 2517 0.400000 +1528 2532 0.400000 +1528 2629 0.400000 +1528 2890 0.400000 +1528 2918 0.400000 +1528 2927 0.400000 +1528 2937 0.400000 +1528 2968 0.400000 +1528 2985 0.400000 +1528 2999 0.400000 +1528 3007 0.400000 +1528 3090 0.400000 +1529 31 0.400000 +1529 68 0.400000 +1529 258 0.400000 +1529 280 0.400000 +1529 300 0.400000 +1529 308 0.400000 +1529 317 0.400000 +1529 343 0.400000 +1529 445 0.400000 +1529 464 0.400000 +1529 478 0.400000 +1529 557 0.400000 +1529 677 0.400000 +1529 847 0.400000 +1529 911 0.400000 +1529 952 0.400000 +1529 955 0.400000 +1529 1136 0.400000 +1529 1157 0.400000 +1529 1196 0.400000 +1529 1201 0.400000 +1529 1243 0.400000 +1529 1337 0.400000 +1529 1410 0.400000 +1529 1424 0.400000 +1529 1544 0.400000 +1529 1576 0.400000 +1529 1698 0.400000 +1529 1741 0.400000 +1529 1776 0.400000 +1529 1843 0.400000 +1529 1961 0.400000 +1529 1980 0.400000 +1529 2163 0.400000 +1529 2200 0.400000 +1529 2216 0.400000 +1529 2252 0.400000 +1529 2254 0.400000 +1529 2347 0.400000 +1529 2384 0.400000 +1529 2454 0.400000 +1529 2495 0.400000 +1529 2497 0.400000 +1529 2512 0.400000 +1529 2700 0.400000 +1529 2876 0.400000 +1529 2894 0.400000 +1529 2989 0.400000 +1529 3066 0.400000 +1530 56 0.400000 +1530 64 0.400000 +1530 115 0.400000 +1530 118 0.400000 +1530 222 0.400000 +1530 238 0.400000 +1530 243 0.400000 +1530 358 0.400000 +1530 376 0.400000 +1530 392 0.400000 +1530 466 0.400000 +1530 476 0.400000 +1530 491 0.400000 +1530 538 0.400000 +1530 601 0.400000 +1530 604 0.400000 +1530 609 0.400000 +1530 716 0.400000 +1530 719 0.400000 +1530 775 0.400000 +1530 809 0.400000 +1530 849 0.400000 +1530 896 0.400000 +1530 985 0.400000 +1530 1078 0.400000 +1530 1235 0.400000 +1530 1283 0.400000 +1530 1285 0.400000 +1530 1287 0.400000 +1530 1326 0.400000 +1530 1344 0.400000 +1530 1521 0.400000 +1530 1633 0.400000 +1530 1673 0.400000 +1530 1677 0.400000 +1530 1706 0.400000 +1530 1789 0.400000 +1530 2058 0.400000 +1530 2071 0.400000 +1530 2147 0.400000 +1530 2148 0.400000 +1530 2306 0.400000 +1530 2313 0.400000 +1530 2327 0.400000 +1530 2354 0.400000 +1530 2480 0.400000 +1530 2504 0.400000 +1530 2533 0.400000 +1530 2620 0.400000 +1530 2685 0.400000 +1530 2701 0.400000 +1530 2723 0.400000 +1530 2754 0.400000 +1530 2771 0.400000 +1530 2797 0.400000 +1530 2801 0.400000 +1530 2910 0.400000 +1530 2913 0.400000 +1530 2944 0.400000 +1530 2983 0.400000 +1530 2991 0.400000 +1530 3100 0.400000 +1530 3101 0.400000 +1530 3188 0.400000 +1530 3193 0.400000 +1531 15 0.400000 +1531 76 0.400000 +1531 81 0.400000 +1531 147 0.400000 +1531 154 0.400000 +1531 169 0.400000 +1531 234 0.400000 +1531 318 0.400000 +1531 336 0.400000 +1531 340 0.400000 +1531 369 0.400000 +1531 393 0.400000 +1531 433 0.400000 +1531 509 0.400000 +1531 540 0.400000 +1531 561 0.400000 +1531 598 0.400000 +1531 666 0.400000 +1531 676 0.400000 +1531 706 0.400000 +1531 825 0.400000 +1531 841 0.400000 +1531 965 0.400000 +1531 983 0.400000 +1531 1000 0.400000 +1531 1106 0.400000 +1531 1207 0.400000 +1531 1329 0.400000 +1531 1335 0.400000 +1531 1492 0.400000 +1531 1503 0.400000 +1531 1530 0.400000 +1531 1556 0.400000 +1531 1567 0.400000 +1531 1692 0.400000 +1531 1698 0.400000 +1531 1741 0.400000 +1531 1796 0.400000 +1531 1810 0.400000 +1531 1858 0.400000 +1531 1902 0.400000 +1531 2114 0.400000 +1531 2166 0.400000 +1531 2185 0.400000 +1531 2210 0.400000 +1531 2211 0.400000 +1531 2242 0.400000 +1531 2270 0.400000 +1531 2335 0.400000 +1531 2354 0.400000 +1531 2391 0.400000 +1531 2444 0.400000 +1531 2457 0.400000 +1531 2468 0.400000 +1531 2473 0.400000 +1531 2567 0.400000 +1531 2568 0.400000 +1531 2577 0.400000 +1531 2641 0.400000 +1531 2670 0.400000 +1531 2682 0.400000 +1531 2715 0.400000 +1531 2903 0.400000 +1531 2932 0.400000 +1531 3079 0.400000 +1531 3091 0.400000 +1531 3098 0.400000 +1531 3174 0.400000 +1532 97 0.400000 +1532 182 0.400000 +1532 195 0.400000 +1532 256 0.400000 +1532 291 0.400000 +1532 444 0.400000 +1532 475 0.400000 +1532 615 0.400000 +1532 654 0.400000 +1532 656 0.400000 +1532 756 0.400000 +1532 799 0.400000 +1532 852 0.400000 +1532 915 0.400000 +1532 1000 0.400000 +1532 1062 0.400000 +1532 1127 0.400000 +1532 1134 0.400000 +1532 1135 0.400000 +1532 1170 0.400000 +1532 1283 0.400000 +1532 1295 0.400000 +1532 1310 0.400000 +1532 1380 0.400000 +1532 1384 0.400000 +1532 1521 0.400000 +1532 1555 0.400000 +1532 1819 0.400000 +1532 1962 0.400000 +1532 1997 0.400000 +1532 2021 0.400000 +1532 2162 0.400000 +1532 2183 0.400000 +1532 2287 0.400000 +1532 2361 0.400000 +1532 2608 0.400000 +1532 2662 0.400000 +1532 2672 0.400000 +1532 2728 0.400000 +1532 2746 0.400000 +1532 2801 0.400000 +1532 2861 0.400000 +1532 2956 0.400000 +1532 2981 0.400000 +1532 3028 0.400000 +1532 3037 0.400000 +1532 3041 0.400000 +1532 3075 0.400000 +1532 3104 0.400000 +1532 3114 0.400000 +1532 3152 0.400000 +1532 3157 0.400000 +1533 26 0.400000 +1533 100 0.400000 +1533 134 0.400000 +1533 139 0.400000 +1533 178 0.400000 +1533 181 0.400000 +1533 271 0.400000 +1533 341 0.400000 +1533 437 0.400000 +1533 451 0.400000 +1533 496 0.400000 +1533 507 0.400000 +1533 527 0.400000 +1533 549 0.400000 +1533 738 0.400000 +1533 826 0.400000 +1533 837 0.400000 +1533 839 0.400000 +1533 905 0.400000 +1533 933 0.400000 +1533 993 0.400000 +1533 1104 0.400000 +1533 1315 0.400000 +1533 1319 0.400000 +1533 1327 0.400000 +1533 1350 0.400000 +1533 1367 0.400000 +1533 1401 0.400000 +1533 1407 0.400000 +1533 1460 0.400000 +1533 1492 0.400000 +1533 1503 0.400000 +1533 1563 0.400000 +1533 1646 0.400000 +1533 1666 0.400000 +1533 1687 0.400000 +1533 1704 0.400000 +1533 1773 0.400000 +1533 1786 0.400000 +1533 1809 0.400000 +1533 1871 0.400000 +1533 1977 0.400000 +1533 2040 0.400000 +1533 2041 0.400000 +1533 2042 0.400000 +1533 2071 0.400000 +1533 2085 0.400000 +1533 2158 0.400000 +1533 2173 0.400000 +1533 2209 0.400000 +1533 2232 0.400000 +1533 2243 0.400000 +1533 2253 0.400000 +1533 2256 0.400000 +1533 2331 0.400000 +1533 2345 0.400000 +1533 2419 0.400000 +1533 2468 0.400000 +1533 2475 0.400000 +1533 2585 0.400000 +1533 2628 0.400000 +1533 2684 0.400000 +1533 2729 0.400000 +1533 2766 0.400000 +1533 2794 0.400000 +1533 2807 0.400000 +1533 2852 0.400000 +1533 2854 0.400000 +1533 3169 0.400000 +1533 3189 0.400000 +1534 13 0.400000 +1534 25 0.400000 +1534 44 0.400000 +1534 111 0.400000 +1534 135 0.400000 +1534 139 0.400000 +1534 144 0.400000 +1534 187 0.400000 +1534 236 0.400000 +1534 314 0.400000 +1534 371 0.400000 +1534 396 0.400000 +1534 459 0.400000 +1534 567 0.400000 +1534 573 0.400000 +1534 607 0.400000 +1534 730 0.400000 +1534 766 0.400000 +1534 818 0.400000 +1534 836 0.400000 +1534 967 0.400000 +1534 984 0.400000 +1534 1052 0.400000 +1534 1060 0.400000 +1534 1129 0.400000 +1534 1133 0.400000 +1534 1194 0.400000 +1534 1293 0.400000 +1534 1369 0.400000 +1534 1441 0.400000 +1534 1481 0.400000 +1534 1483 0.400000 +1534 1536 0.400000 +1534 1607 0.400000 +1534 1635 0.400000 +1534 1650 0.400000 +1534 1651 0.400000 +1534 1665 0.400000 +1534 1717 0.400000 +1534 1725 0.400000 +1534 1748 0.400000 +1534 1779 0.400000 +1534 2123 0.400000 +1534 2156 0.400000 +1534 2360 0.400000 +1534 2473 0.400000 +1534 2503 0.400000 +1534 2508 0.400000 +1534 2509 0.400000 +1534 2522 0.400000 +1534 2523 0.400000 +1534 2530 0.400000 +1534 2546 0.400000 +1534 2575 0.400000 +1534 2718 0.400000 +1534 2752 0.400000 +1534 2827 0.400000 +1534 2843 0.400000 +1534 2922 0.400000 +1534 2978 0.400000 +1534 3094 0.400000 +1535 1 0.400000 +1535 16 0.400000 +1535 67 0.400000 +1535 76 0.400000 +1535 115 0.400000 +1535 204 0.400000 +1535 231 0.400000 +1535 398 0.400000 +1535 399 0.400000 +1535 431 0.400000 +1535 436 0.400000 +1535 524 0.400000 +1535 565 0.400000 +1535 582 0.400000 +1535 676 0.400000 +1535 803 0.400000 +1535 841 0.400000 +1535 850 0.400000 +1535 864 0.400000 +1535 890 0.400000 +1535 1008 0.400000 +1535 1023 0.400000 +1535 1077 0.400000 +1535 1078 0.400000 +1535 1140 0.400000 +1535 1153 0.400000 +1535 1264 0.400000 +1535 1267 0.400000 +1535 1343 0.400000 +1535 1374 0.400000 +1535 1414 0.400000 +1535 1430 0.400000 +1535 1469 0.400000 +1535 1487 0.400000 +1535 1494 0.400000 +1535 1519 0.400000 +1535 1532 0.400000 +1535 1547 0.400000 +1535 1590 0.400000 +1535 1617 0.400000 +1535 1695 0.400000 +1535 1725 0.400000 +1535 1754 0.400000 +1535 1797 0.400000 +1535 1826 0.400000 +1535 1859 0.400000 +1535 1862 0.400000 +1535 1926 0.400000 +1535 2185 0.400000 +1535 2215 0.400000 +1535 2257 0.400000 +1535 2269 0.400000 +1535 2343 0.400000 +1535 2427 0.400000 +1535 2436 0.400000 +1535 2439 0.400000 +1535 2458 0.400000 +1535 2826 0.400000 +1535 2875 0.400000 +1535 2912 0.400000 +1535 2962 0.400000 +1535 2979 0.400000 +1535 3006 0.400000 +1535 3030 0.400000 +1535 3062 0.400000 +1535 3185 0.400000 +1536 18 0.400000 +1536 79 0.400000 +1536 102 0.400000 +1536 106 0.400000 +1536 149 0.400000 +1536 255 0.400000 +1536 275 0.400000 +1536 360 0.400000 +1536 376 0.400000 +1536 408 0.400000 +1536 478 0.400000 +1536 621 0.400000 +1536 637 0.400000 +1536 851 0.400000 +1536 891 0.400000 +1536 1042 0.400000 +1536 1053 0.400000 +1536 1150 0.400000 +1536 1263 0.400000 +1536 1264 0.400000 +1536 1419 0.400000 +1536 1466 0.400000 +1536 1499 0.400000 +1536 1557 0.400000 +1536 1633 0.400000 +1536 1723 0.400000 +1536 1727 0.400000 +1536 1735 0.400000 +1536 1763 0.400000 +1536 1813 0.400000 +1536 1885 0.400000 +1536 2135 0.400000 +1536 2166 0.400000 +1536 2307 0.400000 +1536 2326 0.400000 +1536 2368 0.400000 +1536 2404 0.400000 +1536 2511 0.400000 +1536 2684 0.400000 +1536 2707 0.400000 +1536 2709 0.400000 +1536 2739 0.400000 +1536 2749 0.400000 +1536 2753 0.400000 +1536 2776 0.400000 +1536 2809 0.400000 +1536 2813 0.400000 +1536 2858 0.400000 +1536 2864 0.400000 +1536 2868 0.400000 +1536 2874 0.400000 +1536 2876 0.400000 +1536 2933 0.400000 +1536 2934 0.400000 +1536 2978 0.400000 +1536 3008 0.400000 +1536 3012 0.400000 +1536 3028 0.400000 +1536 3079 0.400000 +1536 3098 0.400000 +1536 3182 0.400000 +1537 164 0.400000 +1537 181 0.400000 +1537 245 0.400000 +1537 276 0.400000 +1537 312 0.400000 +1537 334 0.400000 +1537 352 0.400000 +1537 454 0.400000 +1537 457 0.400000 +1537 458 0.400000 +1537 480 0.400000 +1537 538 0.400000 +1537 601 0.400000 +1537 708 0.400000 +1537 832 0.400000 +1537 886 0.400000 +1537 928 0.400000 +1537 939 0.400000 +1537 940 0.400000 +1537 968 0.400000 +1537 1037 0.400000 +1537 1060 0.400000 +1537 1178 0.400000 +1537 1231 0.400000 +1537 1250 0.400000 +1537 1257 0.400000 +1537 1277 0.400000 +1537 1414 0.400000 +1537 1497 0.400000 +1537 1507 0.400000 +1537 1566 0.400000 +1537 1575 0.400000 +1537 1672 0.400000 +1537 1687 0.400000 +1537 1729 0.400000 +1537 1924 0.400000 +1537 1927 0.400000 +1537 1956 0.400000 +1537 2016 0.400000 +1537 2036 0.400000 +1537 2059 0.400000 +1537 2174 0.400000 +1537 2182 0.400000 +1537 2220 0.400000 +1537 2247 0.400000 +1537 2343 0.400000 +1537 2438 0.400000 +1537 2485 0.400000 +1537 2515 0.400000 +1537 2541 0.400000 +1537 2545 0.400000 +1537 2669 0.400000 +1537 2801 0.400000 +1537 2851 0.400000 +1537 2928 0.400000 +1537 2941 0.400000 +1537 2989 0.400000 +1537 3000 0.400000 +1537 3021 0.400000 +1537 3042 0.400000 +1537 3121 0.400000 +1537 3176 0.400000 +1538 30 0.400000 +1538 106 0.400000 +1538 123 0.400000 +1538 142 0.400000 +1538 165 0.400000 +1538 255 0.400000 +1538 260 0.400000 +1538 300 0.400000 +1538 348 0.400000 +1538 374 0.400000 +1538 399 0.400000 +1538 418 0.400000 +1538 475 0.400000 +1538 505 0.400000 +1538 514 0.400000 +1538 521 0.400000 +1538 537 0.400000 +1538 577 0.400000 +1538 602 0.400000 +1538 604 0.400000 +1538 627 0.400000 +1538 663 0.400000 +1538 665 0.400000 +1538 679 0.400000 +1538 705 0.400000 +1538 714 0.400000 +1538 787 0.400000 +1538 806 0.400000 +1538 813 0.400000 +1538 838 0.400000 +1538 937 0.400000 +1538 1029 0.400000 +1538 1068 0.400000 +1538 1390 0.400000 +1538 1399 0.400000 +1538 1419 0.400000 +1538 1461 0.400000 +1538 1503 0.400000 +1538 1725 0.400000 +1538 1765 0.400000 +1538 1789 0.400000 +1538 1901 0.400000 +1538 1998 0.400000 +1538 2003 0.400000 +1538 2038 0.400000 +1538 2158 0.400000 +1538 2186 0.400000 +1538 2263 0.400000 +1538 2293 0.400000 +1538 2300 0.400000 +1538 2334 0.400000 +1538 2386 0.400000 +1538 2408 0.400000 +1538 2460 0.400000 +1538 2471 0.400000 +1538 2485 0.400000 +1538 2534 0.400000 +1538 2779 0.400000 +1538 2824 0.400000 +1538 2920 0.400000 +1538 2990 0.400000 +1538 3012 0.400000 +1538 3028 0.400000 +1538 3157 0.400000 +1539 61 0.400000 +1539 110 0.400000 +1539 135 0.400000 +1539 308 0.400000 +1539 328 0.400000 +1539 406 0.400000 +1539 410 0.400000 +1539 443 0.400000 +1539 469 0.400000 +1539 476 0.400000 +1539 534 0.400000 +1539 598 0.400000 +1539 629 0.400000 +1539 667 0.400000 +1539 694 0.400000 +1539 722 0.400000 +1539 741 0.400000 +1539 753 0.400000 +1539 890 0.400000 +1539 946 0.400000 +1539 973 0.400000 +1539 989 0.400000 +1539 1102 0.400000 +1539 1274 0.400000 +1539 1311 0.400000 +1539 1449 0.400000 +1539 1450 0.400000 +1539 1452 0.400000 +1539 1467 0.400000 +1539 1487 0.400000 +1539 1529 0.400000 +1539 1571 0.400000 +1539 1607 0.400000 +1539 1713 0.400000 +1539 1734 0.400000 +1539 1763 0.400000 +1539 1764 0.400000 +1539 1765 0.400000 +1539 1767 0.400000 +1539 1790 0.400000 +1539 1796 0.400000 +1539 1799 0.400000 +1539 1849 0.400000 +1539 1901 0.400000 +1539 1999 0.400000 +1539 2150 0.400000 +1539 2249 0.400000 +1539 2267 0.400000 +1539 2429 0.400000 +1539 2523 0.400000 +1539 2556 0.400000 +1539 2561 0.400000 +1539 2625 0.400000 +1539 2676 0.400000 +1539 2771 0.400000 +1539 2832 0.400000 +1539 2853 0.400000 +1539 2945 0.400000 +1539 2984 0.400000 +1539 3135 0.400000 +1539 3144 0.400000 +1540 19 0.400000 +1540 50 0.400000 +1540 72 0.400000 +1540 137 0.400000 +1540 201 0.400000 +1540 235 0.400000 +1540 238 0.400000 +1540 281 0.400000 +1540 337 0.400000 +1540 359 0.400000 +1540 363 0.400000 +1540 546 0.400000 +1540 590 0.400000 +1540 613 0.400000 +1540 739 0.400000 +1540 747 0.400000 +1540 783 0.400000 +1540 788 0.400000 +1540 810 0.400000 +1540 864 0.400000 +1540 897 0.400000 +1540 968 0.400000 +1540 993 0.400000 +1540 1097 0.400000 +1540 1100 0.400000 +1540 1105 0.400000 +1540 1130 0.400000 +1540 1253 0.400000 +1540 1263 0.400000 +1540 1286 0.400000 +1540 1287 0.400000 +1540 1291 0.400000 +1540 1303 0.400000 +1540 1381 0.400000 +1540 1426 0.400000 +1540 1460 0.400000 +1540 1510 0.400000 +1540 1517 0.400000 +1540 1614 0.400000 +1540 1661 0.400000 +1540 1836 0.400000 +1540 1845 0.400000 +1540 1886 0.400000 +1540 1960 0.400000 +1540 1979 0.400000 +1540 1992 0.400000 +1540 1994 0.400000 +1540 2013 0.400000 +1540 2034 0.400000 +1540 2054 0.400000 +1540 2120 0.400000 +1540 2138 0.400000 +1540 2159 0.400000 +1540 2263 0.400000 +1540 2266 0.400000 +1540 2303 0.400000 +1540 2341 0.400000 +1540 2356 0.400000 +1540 2433 0.400000 +1540 2573 0.400000 +1540 2632 0.400000 +1540 2722 0.400000 +1540 2746 0.400000 +1540 2790 0.400000 +1540 2896 0.400000 +1540 3048 0.400000 +1540 3053 0.400000 +1540 3109 0.400000 +1541 10 0.400000 +1541 290 0.400000 +1541 317 0.400000 +1541 331 0.400000 +1541 438 0.400000 +1541 534 0.400000 +1541 674 0.400000 +1541 751 0.400000 +1541 764 0.400000 +1541 819 0.400000 +1541 959 0.400000 +1541 970 0.400000 +1541 1009 0.400000 +1541 1038 0.400000 +1541 1043 0.400000 +1541 1051 0.400000 +1541 1061 0.400000 +1541 1085 0.400000 +1541 1125 0.400000 +1541 1132 0.400000 +1541 1223 0.400000 +1541 1274 0.400000 +1541 1390 0.400000 +1541 1398 0.400000 +1541 1466 0.400000 +1541 1479 0.400000 +1541 1567 0.400000 +1541 1576 0.400000 +1541 1684 0.400000 +1541 1721 0.400000 +1541 1790 0.400000 +1541 1794 0.400000 +1541 1877 0.400000 +1541 2034 0.400000 +1541 2069 0.400000 +1541 2090 0.400000 +1541 2128 0.400000 +1541 2262 0.400000 +1541 2301 0.400000 +1541 2361 0.400000 +1541 2463 0.400000 +1541 2467 0.400000 +1541 2557 0.400000 +1541 2596 0.400000 +1541 2631 0.400000 +1541 2708 0.400000 +1541 2723 0.400000 +1541 2747 0.400000 +1541 2812 0.400000 +1541 2835 0.400000 +1541 2859 0.400000 +1541 2968 0.400000 +1541 2977 0.400000 +1541 3022 0.400000 +1541 3031 0.400000 +1541 3061 0.400000 +1541 3119 0.400000 +1541 3155 0.400000 +1541 3164 0.400000 +1541 3179 0.400000 +1542 31 0.400000 +1542 34 0.400000 +1542 60 0.400000 +1542 100 0.400000 +1542 110 0.400000 +1542 140 0.400000 +1542 164 0.400000 +1542 255 0.400000 +1542 261 0.400000 +1542 313 0.400000 +1542 315 0.400000 +1542 338 0.400000 +1542 405 0.400000 +1542 416 0.400000 +1542 513 0.400000 +1542 603 0.400000 +1542 733 0.400000 +1542 775 0.400000 +1542 832 0.400000 +1542 841 0.400000 +1542 875 0.400000 +1542 884 0.400000 +1542 938 0.400000 +1542 982 0.400000 +1542 1017 0.400000 +1542 1047 0.400000 +1542 1167 0.400000 +1542 1194 0.400000 +1542 1211 0.400000 +1542 1226 0.400000 +1542 1287 0.400000 +1542 1290 0.400000 +1542 1327 0.400000 +1542 1365 0.400000 +1542 1445 0.400000 +1542 1475 0.400000 +1542 1518 0.400000 +1542 1690 0.400000 +1542 1700 0.400000 +1542 1889 0.400000 +1542 1909 0.400000 +1542 1942 0.400000 +1542 1989 0.400000 +1542 1993 0.400000 +1542 2008 0.400000 +1542 2058 0.400000 +1542 2157 0.400000 +1542 2163 0.400000 +1542 2188 0.400000 +1542 2200 0.400000 +1542 2229 0.400000 +1542 2278 0.400000 +1542 2316 0.400000 +1542 2353 0.400000 +1542 2400 0.400000 +1542 2599 0.400000 +1542 2614 0.400000 +1542 2782 0.400000 +1542 2784 0.400000 +1542 2814 0.400000 +1542 2875 0.400000 +1542 2900 0.400000 +1542 2980 0.400000 +1542 3008 0.400000 +1542 3193 0.400000 +1542 3197 0.400000 +1543 19 0.400000 +1543 52 0.400000 +1543 85 0.400000 +1543 99 0.400000 +1543 107 0.400000 +1543 112 0.400000 +1543 140 0.400000 +1543 149 0.400000 +1543 153 0.400000 +1543 190 0.400000 +1543 207 0.400000 +1543 229 0.400000 +1543 327 0.400000 +1543 343 0.400000 +1543 347 0.400000 +1543 378 0.400000 +1543 395 0.400000 +1543 414 0.400000 +1543 435 0.400000 +1543 450 0.400000 +1543 584 0.400000 +1543 611 0.400000 +1543 749 0.400000 +1543 764 0.400000 +1543 767 0.400000 +1543 795 0.400000 +1543 825 0.400000 +1543 869 0.400000 +1543 908 0.400000 +1543 943 0.400000 +1543 987 0.400000 +1543 988 0.400000 +1543 1023 0.400000 +1543 1092 0.400000 +1543 1307 0.400000 +1543 1354 0.400000 +1543 1400 0.400000 +1543 1478 0.400000 +1543 1484 0.400000 +1543 1542 0.400000 +1543 1567 0.400000 +1543 1587 0.400000 +1543 1638 0.400000 +1543 1648 0.400000 +1543 1698 0.400000 +1543 1754 0.400000 +1543 1762 0.400000 +1543 1826 0.400000 +1543 1873 0.400000 +1543 1944 0.400000 +1543 1953 0.400000 +1543 1962 0.400000 +1543 1995 0.400000 +1543 1997 0.400000 +1543 2074 0.400000 +1543 2079 0.400000 +1543 2100 0.400000 +1543 2130 0.400000 +1543 2136 0.400000 +1543 2140 0.400000 +1543 2144 0.400000 +1543 2190 0.400000 +1543 2217 0.400000 +1543 2289 0.400000 +1543 2343 0.400000 +1543 2472 0.400000 +1543 2554 0.400000 +1543 2558 0.400000 +1543 2570 0.400000 +1543 2602 0.400000 +1543 2619 0.400000 +1543 2654 0.400000 +1543 2796 0.400000 +1543 2854 0.400000 +1543 2937 0.400000 +1543 2955 0.400000 +1543 2987 0.400000 +1543 3002 0.400000 +1543 3023 0.400000 +1543 3159 0.400000 +1543 3193 0.400000 +1543 3200 0.400000 +1544 62 0.400000 +1544 66 0.400000 +1544 98 0.400000 +1544 114 0.400000 +1544 154 0.400000 +1544 217 0.400000 +1544 302 0.400000 +1544 426 0.400000 +1544 492 0.400000 +1544 546 0.400000 +1544 552 0.400000 +1544 587 0.400000 +1544 827 0.400000 +1544 907 0.400000 +1544 948 0.400000 +1544 1043 0.400000 +1544 1073 0.400000 +1544 1120 0.400000 +1544 1143 0.400000 +1544 1284 0.400000 +1544 1304 0.400000 +1544 1349 0.400000 +1544 1362 0.400000 +1544 1468 0.400000 +1544 1479 0.400000 +1544 1524 0.400000 +1544 1586 0.400000 +1544 1655 0.400000 +1544 1665 0.400000 +1544 1675 0.400000 +1544 1836 0.400000 +1544 1844 0.400000 +1544 1900 0.400000 +1544 1931 0.400000 +1544 1970 0.400000 +1544 2104 0.400000 +1544 2108 0.400000 +1544 2195 0.400000 +1544 2333 0.400000 +1544 2412 0.400000 +1544 2483 0.400000 +1544 2488 0.400000 +1544 2616 0.400000 +1544 2672 0.400000 +1544 2874 0.400000 +1544 2885 0.400000 +1544 2898 0.400000 +1544 3002 0.400000 +1544 3020 0.400000 +1544 3041 0.400000 +1544 3073 0.400000 +1544 3137 0.400000 +1544 3185 0.400000 +1544 3191 0.400000 +1545 16 0.400000 +1545 106 0.400000 +1545 116 0.400000 +1545 166 0.400000 +1545 189 0.400000 +1545 191 0.400000 +1545 195 0.400000 +1545 255 0.400000 +1545 333 0.400000 +1545 369 0.400000 +1545 375 0.400000 +1545 378 0.400000 +1545 439 0.400000 +1545 509 0.400000 +1545 531 0.400000 +1545 574 0.400000 +1545 608 0.400000 +1545 681 0.400000 +1545 708 0.400000 +1545 816 0.400000 +1545 844 0.400000 +1545 920 0.400000 +1545 940 0.400000 +1545 959 0.400000 +1545 1074 0.400000 +1545 1091 0.400000 +1545 1141 0.400000 +1545 1229 0.400000 +1545 1232 0.400000 +1545 1369 0.400000 +1545 1378 0.400000 +1545 1465 0.400000 +1545 1540 0.400000 +1545 1625 0.400000 +1545 1708 0.400000 +1545 1750 0.400000 +1545 1797 0.400000 +1545 1965 0.400000 +1545 1981 0.400000 +1545 2031 0.400000 +1545 2068 0.400000 +1545 2076 0.400000 +1545 2079 0.400000 +1545 2119 0.400000 +1545 2209 0.400000 +1545 2314 0.400000 +1545 2345 0.400000 +1545 2388 0.400000 +1545 2457 0.400000 +1545 2469 0.400000 +1545 2608 0.400000 +1545 2616 0.400000 +1545 2680 0.400000 +1545 2717 0.400000 +1545 2878 0.400000 +1545 2879 0.400000 +1545 2907 0.400000 +1545 2953 0.400000 +1545 2962 0.400000 +1545 2973 0.400000 +1545 3029 0.400000 +1545 3135 0.400000 +1545 3137 0.400000 +1545 3155 0.400000 +1545 3198 0.400000 +1546 27 0.400000 +1546 351 0.400000 +1546 470 0.400000 +1546 587 0.400000 +1546 600 0.400000 +1546 642 0.400000 +1546 676 0.400000 +1546 733 0.400000 +1546 858 0.400000 +1546 929 0.400000 +1546 1031 0.400000 +1546 1050 0.400000 +1546 1089 0.400000 +1546 1130 0.400000 +1546 1206 0.400000 +1546 1216 0.400000 +1546 1349 0.400000 +1546 1350 0.400000 +1546 1485 0.400000 +1546 1492 0.400000 +1546 1500 0.400000 +1546 1567 0.400000 +1546 1585 0.400000 +1546 1597 0.400000 +1546 1612 0.400000 +1546 1680 0.400000 +1546 1682 0.400000 +1546 1695 0.400000 +1546 1713 0.400000 +1546 1719 0.400000 +1546 1743 0.400000 +1546 1868 0.400000 +1546 1869 0.400000 +1546 1972 0.400000 +1546 2029 0.400000 +1546 2100 0.400000 +1546 2109 0.400000 +1546 2140 0.400000 +1546 2169 0.400000 +1546 2232 0.400000 +1546 2262 0.400000 +1546 2305 0.400000 +1546 2433 0.400000 +1546 2450 0.400000 +1546 2514 0.400000 +1546 2515 0.400000 +1546 2556 0.400000 +1546 2563 0.400000 +1546 2569 0.400000 +1546 2617 0.400000 +1546 2633 0.400000 +1546 2671 0.400000 +1546 2688 0.400000 +1546 2694 0.400000 +1546 2839 0.400000 +1546 2871 0.400000 +1546 2894 0.400000 +1546 2921 0.400000 +1546 2931 0.400000 +1546 3073 0.400000 +1546 3082 0.400000 +1546 3099 0.400000 +1546 3118 0.400000 +1546 3135 0.400000 +1546 3136 0.400000 +1546 3187 0.400000 +1547 41 0.400000 +1547 117 0.400000 +1547 126 0.400000 +1547 131 0.400000 +1547 157 0.400000 +1547 161 0.400000 +1547 179 0.400000 +1547 194 0.400000 +1547 204 0.400000 +1547 277 0.400000 +1547 294 0.400000 +1547 308 0.400000 +1547 506 0.400000 +1547 534 0.400000 +1547 610 0.400000 +1547 878 0.400000 +1547 903 0.400000 +1547 912 0.400000 +1547 926 0.400000 +1547 937 0.400000 +1547 991 0.400000 +1547 1010 0.400000 +1547 1048 0.400000 +1547 1086 0.400000 +1547 1135 0.400000 +1547 1219 0.400000 +1547 1234 0.400000 +1547 1334 0.400000 +1547 1512 0.400000 +1547 1735 0.400000 +1547 1740 0.400000 +1547 1755 0.400000 +1547 1756 0.400000 +1547 1918 0.400000 +1547 1955 0.400000 +1547 1984 0.400000 +1547 2004 0.400000 +1547 2023 0.400000 +1547 2073 0.400000 +1547 2089 0.400000 +1547 2232 0.400000 +1547 2261 0.400000 +1547 2339 0.400000 +1547 2343 0.400000 +1547 2383 0.400000 +1547 2416 0.400000 +1547 2494 0.400000 +1547 2549 0.400000 +1547 2553 0.400000 +1547 2557 0.400000 +1547 2574 0.400000 +1547 2597 0.400000 +1547 2657 0.400000 +1547 2745 0.400000 +1547 2773 0.400000 +1547 2805 0.400000 +1547 2812 0.400000 +1547 2873 0.400000 +1547 2880 0.400000 +1547 2896 0.400000 +1547 2972 0.400000 +1547 3016 0.400000 +1547 3096 0.400000 +1547 3147 0.400000 +1547 3186 0.400000 +1548 11 0.400000 +1548 151 0.400000 +1548 182 0.400000 +1548 273 0.400000 +1548 400 0.400000 +1548 493 0.400000 +1548 532 0.400000 +1548 536 0.400000 +1548 561 0.400000 +1548 563 0.400000 +1548 602 0.400000 +1548 762 0.400000 +1548 803 0.400000 +1548 838 0.400000 +1548 904 0.400000 +1548 914 0.400000 +1548 973 0.400000 +1548 1010 0.400000 +1548 1086 0.400000 +1548 1112 0.400000 +1548 1118 0.400000 +1548 1132 0.400000 +1548 1146 0.400000 +1548 1155 0.400000 +1548 1187 0.400000 +1548 1258 0.400000 +1548 1270 0.400000 +1548 1384 0.400000 +1548 1457 0.400000 +1548 1477 0.400000 +1548 1481 0.400000 +1548 1497 0.400000 +1548 1532 0.400000 +1548 1757 0.400000 +1548 1805 0.400000 +1548 1811 0.400000 +1548 1827 0.400000 +1548 1833 0.400000 +1548 1914 0.400000 +1548 1936 0.400000 +1548 1982 0.400000 +1548 2072 0.400000 +1548 2088 0.400000 +1548 2101 0.400000 +1548 2197 0.400000 +1548 2268 0.400000 +1548 2305 0.400000 +1548 2319 0.400000 +1548 2373 0.400000 +1548 2536 0.400000 +1548 2542 0.400000 +1548 2586 0.400000 +1548 2587 0.400000 +1548 2774 0.400000 +1548 2833 0.400000 +1548 2928 0.400000 +1548 2987 0.400000 +1548 3054 0.400000 +1548 3081 0.400000 +1548 3121 0.400000 +1548 3141 0.400000 +1549 50 0.400000 +1549 51 0.400000 +1549 54 0.400000 +1549 99 0.400000 +1549 119 0.400000 +1549 134 0.400000 +1549 136 0.400000 +1549 189 0.400000 +1549 382 0.400000 +1549 400 0.400000 +1549 493 0.400000 +1549 563 0.400000 +1549 624 0.400000 +1549 674 0.400000 +1549 691 0.400000 +1549 871 0.400000 +1549 1132 0.400000 +1549 1294 0.400000 +1549 1346 0.400000 +1549 1383 0.400000 +1549 1413 0.400000 +1549 1493 0.400000 +1549 1781 0.400000 +1549 1827 0.400000 +1549 1862 0.400000 +1549 1928 0.400000 +1549 1954 0.400000 +1549 1982 0.400000 +1549 2032 0.400000 +1549 2073 0.400000 +1549 2087 0.400000 +1549 2089 0.400000 +1549 2094 0.400000 +1549 2097 0.400000 +1549 2113 0.400000 +1549 2134 0.400000 +1549 2169 0.400000 +1549 2225 0.400000 +1549 2238 0.400000 +1549 2248 0.400000 +1549 2320 0.400000 +1549 2366 0.400000 +1549 2387 0.400000 +1549 2391 0.400000 +1549 2463 0.400000 +1549 2470 0.400000 +1549 2471 0.400000 +1549 2493 0.400000 +1549 2652 0.400000 +1549 2661 0.400000 +1549 2698 0.400000 +1549 2737 0.400000 +1549 2756 0.400000 +1549 2809 0.400000 +1549 2841 0.400000 +1549 2869 0.400000 +1549 2957 0.400000 +1549 3084 0.400000 +1549 3165 0.400000 +1550 43 0.400000 +1550 153 0.400000 +1550 274 0.400000 +1550 287 0.400000 +1550 340 0.400000 +1550 363 0.400000 +1550 397 0.400000 +1550 423 0.400000 +1550 439 0.400000 +1550 506 0.400000 +1550 575 0.400000 +1550 608 0.400000 +1550 632 0.400000 +1550 715 0.400000 +1550 734 0.400000 +1550 739 0.400000 +1550 750 0.400000 +1550 755 0.400000 +1550 773 0.400000 +1550 854 0.400000 +1550 875 0.400000 +1550 927 0.400000 +1550 941 0.400000 +1550 973 0.400000 +1550 1027 0.400000 +1550 1071 0.400000 +1550 1154 0.400000 +1550 1428 0.400000 +1550 1500 0.400000 +1550 1545 0.400000 +1550 1675 0.400000 +1550 1811 0.400000 +1550 1867 0.400000 +1550 1887 0.400000 +1550 2061 0.400000 +1550 2094 0.400000 +1550 2113 0.400000 +1550 2141 0.400000 +1550 2203 0.400000 +1550 2207 0.400000 +1550 2212 0.400000 +1550 2214 0.400000 +1550 2222 0.400000 +1550 2255 0.400000 +1550 2268 0.400000 +1550 2364 0.400000 +1550 2374 0.400000 +1550 2382 0.400000 +1550 2389 0.400000 +1550 2421 0.400000 +1550 2482 0.400000 +1550 2495 0.400000 +1550 2562 0.400000 +1550 2589 0.400000 +1550 2630 0.400000 +1550 2644 0.400000 +1550 2832 0.400000 +1550 2833 0.400000 +1550 2857 0.400000 +1550 2860 0.400000 +1550 2949 0.400000 +1550 2994 0.400000 +1550 3014 0.400000 +1550 3019 0.400000 +1550 3020 0.400000 +1550 3065 0.400000 +1550 3079 0.400000 +1550 3090 0.400000 +1550 3106 0.400000 +1550 3110 0.400000 +1550 3183 0.400000 +1551 149 0.400000 +1551 194 0.400000 +1551 218 0.400000 +1551 233 0.400000 +1551 317 0.400000 +1551 348 0.400000 +1551 350 0.400000 +1551 513 0.400000 +1551 532 0.400000 +1551 545 0.400000 +1551 600 0.400000 +1551 608 0.400000 +1551 615 0.400000 +1551 625 0.400000 +1551 696 0.400000 +1551 705 0.400000 +1551 722 0.400000 +1551 843 0.400000 +1551 963 0.400000 +1551 973 0.400000 +1551 982 0.400000 +1551 991 0.400000 +1551 1048 0.400000 +1551 1153 0.400000 +1551 1159 0.400000 +1551 1218 0.400000 +1551 1246 0.400000 +1551 1279 0.400000 +1551 1316 0.400000 +1551 1337 0.400000 +1551 1496 0.400000 +1551 1544 0.400000 +1551 1574 0.400000 +1551 1764 0.400000 +1551 1918 0.400000 +1551 1963 0.400000 +1551 2009 0.400000 +1551 2089 0.400000 +1551 2230 0.400000 +1551 2305 0.400000 +1551 2333 0.400000 +1551 2400 0.400000 +1551 2417 0.400000 +1551 2452 0.400000 +1551 2511 0.400000 +1551 2542 0.400000 +1551 2557 0.400000 +1551 2584 0.400000 +1551 2640 0.400000 +1551 2655 0.400000 +1551 2665 0.400000 +1551 2709 0.400000 +1551 2723 0.400000 +1551 2724 0.400000 +1551 2836 0.400000 +1551 2848 0.400000 +1551 2862 0.400000 +1551 2940 0.400000 +1551 2989 0.400000 +1551 3132 0.400000 +1552 57 0.400000 +1552 65 0.400000 +1552 155 0.400000 +1552 217 0.400000 +1552 352 0.400000 +1552 358 0.400000 +1552 637 0.400000 +1552 844 0.400000 +1552 966 0.400000 +1552 1002 0.400000 +1552 1018 0.400000 +1552 1051 0.400000 +1552 1201 0.400000 +1552 1243 0.400000 +1552 1516 0.400000 +1552 1571 0.400000 +1552 1590 0.400000 +1552 1755 0.400000 +1552 1790 0.400000 +1552 1823 0.400000 +1552 1825 0.400000 +1552 1851 0.400000 +1552 1862 0.400000 +1552 1863 0.400000 +1552 1882 0.400000 +1552 1892 0.400000 +1552 1950 0.400000 +1552 1962 0.400000 +1552 1973 0.400000 +1552 1975 0.400000 +1552 2066 0.400000 +1552 2067 0.400000 +1552 2076 0.400000 +1552 2077 0.400000 +1552 2291 0.400000 +1552 2308 0.400000 +1552 2340 0.400000 +1552 2405 0.400000 +1552 2414 0.400000 +1552 2420 0.400000 +1552 2544 0.400000 +1552 2643 0.400000 +1552 2645 0.400000 +1552 2718 0.400000 +1552 2734 0.400000 +1552 2781 0.400000 +1552 2818 0.400000 +1552 2824 0.400000 +1552 2880 0.400000 +1552 2953 0.400000 +1552 2994 0.400000 +1552 3022 0.400000 +1552 3185 0.400000 +1553 38 0.400000 +1553 59 0.400000 +1553 177 0.400000 +1553 194 0.400000 +1553 256 0.400000 +1553 277 0.400000 +1553 286 0.400000 +1553 307 0.400000 +1553 519 0.400000 +1553 521 0.400000 +1553 536 0.400000 +1553 547 0.400000 +1553 559 0.400000 +1553 608 0.400000 +1553 621 0.400000 +1553 681 0.400000 +1553 762 0.400000 +1553 788 0.400000 +1553 982 0.400000 +1553 1043 0.400000 +1553 1213 0.400000 +1553 1240 0.400000 +1553 1258 0.400000 +1553 1332 0.400000 +1553 1381 0.400000 +1553 1515 0.400000 +1553 1537 0.400000 +1553 1612 0.400000 +1553 1643 0.400000 +1553 1679 0.400000 +1553 1683 0.400000 +1553 1730 0.400000 +1553 1745 0.400000 +1553 1805 0.400000 +1553 1862 0.400000 +1553 1903 0.400000 +1553 1913 0.400000 +1553 1915 0.400000 +1553 1997 0.400000 +1553 2029 0.400000 +1553 2035 0.400000 +1553 2038 0.400000 +1553 2055 0.400000 +1553 2167 0.400000 +1553 2190 0.400000 +1553 2201 0.400000 +1553 2241 0.400000 +1553 2320 0.400000 +1553 2336 0.400000 +1553 2355 0.400000 +1553 2430 0.400000 +1553 2607 0.400000 +1553 2615 0.400000 +1553 2629 0.400000 +1553 2686 0.400000 +1553 2697 0.400000 +1553 2786 0.400000 +1553 2834 0.400000 +1553 2836 0.400000 +1553 2863 0.400000 +1553 3012 0.400000 +1553 3132 0.400000 +1553 3148 0.400000 +1553 3180 0.400000 +1553 3188 0.400000 +1554 50 0.400000 +1554 121 0.400000 +1554 140 0.400000 +1554 200 0.400000 +1554 248 0.400000 +1554 306 0.400000 +1554 324 0.400000 +1554 332 0.400000 +1554 333 0.400000 +1554 346 0.400000 +1554 383 0.400000 +1554 409 0.400000 +1554 427 0.400000 +1554 431 0.400000 +1554 469 0.400000 +1554 585 0.400000 +1554 594 0.400000 +1554 639 0.400000 +1554 681 0.400000 +1554 726 0.400000 +1554 734 0.400000 +1554 739 0.400000 +1554 751 0.400000 +1554 790 0.400000 +1554 821 0.400000 +1554 892 0.400000 +1554 962 0.400000 +1554 1018 0.400000 +1554 1056 0.400000 +1554 1107 0.400000 +1554 1125 0.400000 +1554 1134 0.400000 +1554 1237 0.400000 +1554 1281 0.400000 +1554 1287 0.400000 +1554 1391 0.400000 +1554 1447 0.400000 +1554 1482 0.400000 +1554 1562 0.400000 +1554 1578 0.400000 +1554 1612 0.400000 +1554 1662 0.400000 +1554 1704 0.400000 +1554 1798 0.400000 +1554 1852 0.400000 +1554 1929 0.400000 +1554 1952 0.400000 +1554 2120 0.400000 +1554 2127 0.400000 +1554 2129 0.400000 +1554 2158 0.400000 +1554 2165 0.400000 +1554 2168 0.400000 +1554 2177 0.400000 +1554 2204 0.400000 +1554 2217 0.400000 +1554 2264 0.400000 +1554 2329 0.400000 +1554 2455 0.400000 +1554 2514 0.400000 +1554 2530 0.400000 +1554 2595 0.400000 +1554 2600 0.400000 +1554 2687 0.400000 +1554 2848 0.400000 +1554 2891 0.400000 +1554 2926 0.400000 +1554 2965 0.400000 +1554 3030 0.400000 +1554 3054 0.400000 +1554 3080 0.400000 +1554 3114 0.400000 +1554 3176 0.400000 +1555 68 0.400000 +1555 85 0.400000 +1555 118 0.400000 +1555 232 0.400000 +1555 278 0.400000 +1555 373 0.400000 +1555 505 0.400000 +1555 570 0.400000 +1555 735 0.400000 +1555 842 0.400000 +1555 1014 0.400000 +1555 1123 0.400000 +1555 1148 0.400000 +1555 1160 0.400000 +1555 1228 0.400000 +1555 1241 0.400000 +1555 1414 0.400000 +1555 1462 0.400000 +1555 1572 0.400000 +1555 1614 0.400000 +1555 1628 0.400000 +1555 1664 0.400000 +1555 1749 0.400000 +1555 1757 0.400000 +1555 1799 0.400000 +1555 1890 0.400000 +1555 1962 0.400000 +1555 1964 0.400000 +1555 2056 0.400000 +1555 2167 0.400000 +1555 2316 0.400000 +1555 2333 0.400000 +1555 2383 0.400000 +1555 2445 0.400000 +1555 2453 0.400000 +1555 2614 0.400000 +1555 2647 0.400000 +1555 2651 0.400000 +1555 2668 0.400000 +1555 2676 0.400000 +1555 2724 0.400000 +1555 2739 0.400000 +1555 2740 0.400000 +1555 2758 0.400000 +1555 2832 0.400000 +1555 2965 0.400000 +1555 3001 0.400000 +1555 3023 0.400000 +1555 3098 0.400000 +1556 50 0.400000 +1556 139 0.400000 +1556 197 0.400000 +1556 285 0.400000 +1556 287 0.400000 +1556 343 0.400000 +1556 420 0.400000 +1556 436 0.400000 +1556 523 0.400000 +1556 537 0.400000 +1556 620 0.400000 +1556 628 0.400000 +1556 747 0.400000 +1556 788 0.400000 +1556 806 0.400000 +1556 821 0.400000 +1556 839 0.400000 +1556 861 0.400000 +1556 1029 0.400000 +1556 1048 0.400000 +1556 1056 0.400000 +1556 1095 0.400000 +1556 1113 0.400000 +1556 1186 0.400000 +1556 1187 0.400000 +1556 1207 0.400000 +1556 1307 0.400000 +1556 1372 0.400000 +1556 1374 0.400000 +1556 1393 0.400000 +1556 1464 0.400000 +1556 1479 0.400000 +1556 1563 0.400000 +1556 1590 0.400000 +1556 1600 0.400000 +1556 1650 0.400000 +1556 1725 0.400000 +1556 1743 0.400000 +1556 1801 0.400000 +1556 1818 0.400000 +1556 1944 0.400000 +1556 1997 0.400000 +1556 2175 0.400000 +1556 2181 0.400000 +1556 2216 0.400000 +1556 2267 0.400000 +1556 2277 0.400000 +1556 2424 0.400000 +1556 2429 0.400000 +1556 2564 0.400000 +1556 2575 0.400000 +1556 2590 0.400000 +1556 2643 0.400000 +1556 2735 0.400000 +1556 2771 0.400000 +1556 2798 0.400000 +1556 2830 0.400000 +1556 2884 0.400000 +1556 2897 0.400000 +1556 2950 0.400000 +1556 2956 0.400000 +1556 2962 0.400000 +1556 2999 0.400000 +1556 3028 0.400000 +1556 3066 0.400000 +1556 3129 0.400000 +1556 3134 0.400000 +1556 3154 0.400000 +1556 3156 0.400000 +1557 84 0.400000 +1557 85 0.400000 +1557 130 0.400000 +1557 150 0.400000 +1557 170 0.400000 +1557 196 0.400000 +1557 216 0.400000 +1557 242 0.400000 +1557 314 0.400000 +1557 362 0.400000 +1557 462 0.400000 +1557 527 0.400000 +1557 554 0.400000 +1557 586 0.400000 +1557 605 0.400000 +1557 613 0.400000 +1557 629 0.400000 +1557 687 0.400000 +1557 734 0.400000 +1557 891 0.400000 +1557 975 0.400000 +1557 1006 0.400000 +1557 1007 0.400000 +1557 1046 0.400000 +1557 1221 0.400000 +1557 1222 0.400000 +1557 1246 0.400000 +1557 1282 0.400000 +1557 1324 0.400000 +1557 1368 0.400000 +1557 1466 0.400000 +1557 1536 0.400000 +1557 1692 0.400000 +1557 1789 0.400000 +1557 1801 0.400000 +1557 1820 0.400000 +1557 1850 0.400000 +1557 1859 0.400000 +1557 1874 0.400000 +1557 1936 0.400000 +1557 1968 0.400000 +1557 2001 0.400000 +1557 2091 0.400000 +1557 2137 0.400000 +1557 2141 0.400000 +1557 2179 0.400000 +1557 2304 0.400000 +1557 2320 0.400000 +1557 2438 0.400000 +1557 2478 0.400000 +1557 2564 0.400000 +1557 2780 0.400000 +1557 2830 0.400000 +1557 2929 0.400000 +1557 2930 0.400000 +1557 2931 0.400000 +1557 2945 0.400000 +1557 3070 0.400000 +1557 3142 0.400000 +1557 3188 0.400000 +1558 87 0.400000 +1558 123 0.400000 +1558 257 0.400000 +1558 282 0.400000 +1558 299 0.400000 +1558 305 0.400000 +1558 350 0.400000 +1558 360 0.400000 +1558 445 0.400000 +1558 448 0.400000 +1558 467 0.400000 +1558 578 0.400000 +1558 587 0.400000 +1558 593 0.400000 +1558 609 0.400000 +1558 630 0.400000 +1558 734 0.400000 +1558 806 0.400000 +1558 1027 0.400000 +1558 1130 0.400000 +1558 1144 0.400000 +1558 1167 0.400000 +1558 1191 0.400000 +1558 1192 0.400000 +1558 1215 0.400000 +1558 1255 0.400000 +1558 1333 0.400000 +1558 1395 0.400000 +1558 1398 0.400000 +1558 1417 0.400000 +1558 1429 0.400000 +1558 1464 0.400000 +1558 1512 0.400000 +1558 1542 0.400000 +1558 1572 0.400000 +1558 1588 0.400000 +1558 1693 0.400000 +1558 1708 0.400000 +1558 1710 0.400000 +1558 1856 0.400000 +1558 1881 0.400000 +1558 1980 0.400000 +1558 1999 0.400000 +1558 2091 0.400000 +1558 2140 0.400000 +1558 2265 0.400000 +1558 2271 0.400000 +1558 2347 0.400000 +1558 2356 0.400000 +1558 2365 0.400000 +1558 2390 0.400000 +1558 2439 0.400000 +1558 2441 0.400000 +1558 2546 0.400000 +1558 2557 0.400000 +1558 2630 0.400000 +1558 2656 0.400000 +1558 2739 0.400000 +1558 2789 0.400000 +1558 2813 0.400000 +1558 2865 0.400000 +1558 2935 0.400000 +1558 3002 0.400000 +1558 3140 0.400000 +1558 3143 0.400000 +1558 3164 0.400000 +1559 45 0.400000 +1559 161 0.400000 +1559 169 0.400000 +1559 199 0.400000 +1559 218 0.400000 +1559 232 0.400000 +1559 277 0.400000 +1559 387 0.400000 +1559 502 0.400000 +1559 532 0.400000 +1559 615 0.400000 +1559 691 0.400000 +1559 702 0.400000 +1559 723 0.400000 +1559 840 0.400000 +1559 905 0.400000 +1559 944 0.400000 +1559 1062 0.400000 +1559 1122 0.400000 +1559 1184 0.400000 +1559 1234 0.400000 +1559 1239 0.400000 +1559 1292 0.400000 +1559 1391 0.400000 +1559 1492 0.400000 +1559 1501 0.400000 +1559 1559 0.400000 +1559 1576 0.400000 +1559 1583 0.400000 +1559 1599 0.400000 +1559 1618 0.400000 +1559 1647 0.400000 +1559 1652 0.400000 +1559 1659 0.400000 +1559 1768 0.400000 +1559 1772 0.400000 +1559 1782 0.400000 +1559 1853 0.400000 +1559 1918 0.400000 +1559 1931 0.400000 +1559 2107 0.400000 +1559 2120 0.400000 +1559 2193 0.400000 +1559 2203 0.400000 +1559 2254 0.400000 +1559 2255 0.400000 +1559 2466 0.400000 +1559 2542 0.400000 +1559 2610 0.400000 +1559 2623 0.400000 +1559 2700 0.400000 +1559 2740 0.400000 +1559 2750 0.400000 +1559 2783 0.400000 +1559 2819 0.400000 +1559 2877 0.400000 +1559 2878 0.400000 +1559 2984 0.400000 +1559 2988 0.400000 +1559 3069 0.400000 +1559 3090 0.400000 +1559 3095 0.400000 +1559 3197 0.400000 +1560 101 0.400000 +1560 112 0.400000 +1560 133 0.400000 +1560 173 0.400000 +1560 214 0.400000 +1560 346 0.400000 +1560 396 0.400000 +1560 427 0.400000 +1560 454 0.400000 +1560 492 0.400000 +1560 545 0.400000 +1560 580 0.400000 +1560 596 0.400000 +1560 722 0.400000 +1560 741 0.400000 +1560 817 0.400000 +1560 881 0.400000 +1560 889 0.400000 +1560 894 0.400000 +1560 921 0.400000 +1560 987 0.400000 +1560 1047 0.400000 +1560 1065 0.400000 +1560 1071 0.400000 +1560 1085 0.400000 +1560 1094 0.400000 +1560 1196 0.400000 +1560 1248 0.400000 +1560 1342 0.400000 +1560 1354 0.400000 +1560 1365 0.400000 +1560 1374 0.400000 +1560 1554 0.400000 +1560 1577 0.400000 +1560 1622 0.400000 +1560 1687 0.400000 +1560 1704 0.400000 +1560 1706 0.400000 +1560 1738 0.400000 +1560 1769 0.400000 +1560 1809 0.400000 +1560 1873 0.400000 +1560 1892 0.400000 +1560 1940 0.400000 +1560 1942 0.400000 +1560 1947 0.400000 +1560 2001 0.400000 +1560 2021 0.400000 +1560 2071 0.400000 +1560 2087 0.400000 +1560 2128 0.400000 +1560 2169 0.400000 +1560 2238 0.400000 +1560 2268 0.400000 +1560 2316 0.400000 +1560 2400 0.400000 +1560 2408 0.400000 +1560 2508 0.400000 +1560 2526 0.400000 +1560 2589 0.400000 +1560 2606 0.400000 +1560 2679 0.400000 +1560 2767 0.400000 +1560 2770 0.400000 +1560 2793 0.400000 +1560 2813 0.400000 +1560 2838 0.400000 +1560 2858 0.400000 +1560 2900 0.400000 +1560 2916 0.400000 +1560 2926 0.400000 +1560 3025 0.400000 +1560 3178 0.400000 +1561 5 0.400000 +1561 18 0.400000 +1561 131 0.400000 +1561 155 0.400000 +1561 162 0.400000 +1561 252 0.400000 +1561 316 0.400000 +1561 329 0.400000 +1561 349 0.400000 +1561 367 0.400000 +1561 407 0.400000 +1561 430 0.400000 +1561 482 0.400000 +1561 485 0.400000 +1561 488 0.400000 +1561 515 0.400000 +1561 617 0.400000 +1561 630 0.400000 +1561 634 0.400000 +1561 670 0.400000 +1561 688 0.400000 +1561 702 0.400000 +1561 844 0.400000 +1561 938 0.400000 +1561 1175 0.400000 +1561 1176 0.400000 +1561 1184 0.400000 +1561 1395 0.400000 +1561 1574 0.400000 +1561 1627 0.400000 +1561 1651 0.400000 +1561 1667 0.400000 +1561 1689 0.400000 +1561 1836 0.400000 +1561 1873 0.400000 +1561 2048 0.400000 +1561 2143 0.400000 +1561 2242 0.400000 +1561 2346 0.400000 +1561 2403 0.400000 +1561 2476 0.400000 +1561 2580 0.400000 +1561 2583 0.400000 +1561 2614 0.400000 +1561 2659 0.400000 +1561 2707 0.400000 +1561 2727 0.400000 +1561 2882 0.400000 +1561 2898 0.400000 +1561 2959 0.400000 +1561 3070 0.400000 +1561 3138 0.400000 +1561 3154 0.400000 +1561 3173 0.400000 +1561 3174 0.400000 +1561 3182 0.400000 +1561 3183 0.400000 +1562 43 0.400000 +1562 176 0.400000 +1562 231 0.400000 +1562 238 0.400000 +1562 282 0.400000 +1562 387 0.400000 +1562 398 0.400000 +1562 429 0.400000 +1562 440 0.400000 +1562 501 0.400000 +1562 526 0.400000 +1562 597 0.400000 +1562 639 0.400000 +1562 691 0.400000 +1562 697 0.400000 +1562 836 0.400000 +1562 844 0.400000 +1562 857 0.400000 +1562 877 0.400000 +1562 987 0.400000 +1562 1043 0.400000 +1562 1233 0.400000 +1562 1237 0.400000 +1562 1280 0.400000 +1562 1282 0.400000 +1562 1404 0.400000 +1562 1415 0.400000 +1562 1482 0.400000 +1562 1521 0.400000 +1562 1585 0.400000 +1562 1607 0.400000 +1562 1624 0.400000 +1562 1639 0.400000 +1562 1774 0.400000 +1562 1939 0.400000 +1562 2009 0.400000 +1562 2026 0.400000 +1562 2069 0.400000 +1562 2101 0.400000 +1562 2177 0.400000 +1562 2219 0.400000 +1562 2260 0.400000 +1562 2322 0.400000 +1562 2335 0.400000 +1562 2459 0.400000 +1562 2471 0.400000 +1562 2486 0.400000 +1562 2531 0.400000 +1562 2722 0.400000 +1562 2746 0.400000 +1562 2797 0.400000 +1562 2815 0.400000 +1562 2829 0.400000 +1562 3197 0.400000 +1563 73 0.400000 +1563 88 0.400000 +1563 92 0.400000 +1563 149 0.400000 +1563 159 0.400000 +1563 282 0.400000 +1563 285 0.400000 +1563 303 0.400000 +1563 304 0.400000 +1563 404 0.400000 +1563 447 0.400000 +1563 516 0.400000 +1563 716 0.400000 +1563 777 0.400000 +1563 834 0.400000 +1563 908 0.400000 +1563 923 0.400000 +1563 956 0.400000 +1563 1007 0.400000 +1563 1019 0.400000 +1563 1034 0.400000 +1563 1064 0.400000 +1563 1134 0.400000 +1563 1171 0.400000 +1563 1176 0.400000 +1563 1191 0.400000 +1563 1328 0.400000 +1563 1365 0.400000 +1563 1399 0.400000 +1563 1447 0.400000 +1563 1472 0.400000 +1563 1533 0.400000 +1563 1604 0.400000 +1563 1667 0.400000 +1563 1693 0.400000 +1563 1726 0.400000 +1563 1790 0.400000 +1563 1867 0.400000 +1563 1876 0.400000 +1563 1888 0.400000 +1563 1909 0.400000 +1563 2000 0.400000 +1563 2129 0.400000 +1563 2144 0.400000 +1563 2170 0.400000 +1563 2275 0.400000 +1563 2291 0.400000 +1563 2320 0.400000 +1563 2370 0.400000 +1563 2419 0.400000 +1563 2527 0.400000 +1563 2551 0.400000 +1563 2685 0.400000 +1563 2704 0.400000 +1563 2983 0.400000 +1563 3028 0.400000 +1563 3114 0.400000 +1563 3133 0.400000 +1563 3137 0.400000 +1563 3196 0.400000 +1564 5 0.400000 +1564 71 0.400000 +1564 93 0.400000 +1564 142 0.400000 +1564 173 0.400000 +1564 227 0.400000 +1564 253 0.400000 +1564 254 0.400000 +1564 310 0.400000 +1564 323 0.400000 +1564 478 0.400000 +1564 527 0.400000 +1564 566 0.400000 +1564 577 0.400000 +1564 579 0.400000 +1564 639 0.400000 +1564 659 0.400000 +1564 690 0.400000 +1564 744 0.400000 +1564 766 0.400000 +1564 787 0.400000 +1564 946 0.400000 +1564 976 0.400000 +1564 978 0.400000 +1564 1016 0.400000 +1564 1120 0.400000 +1564 1159 0.400000 +1564 1360 0.400000 +1564 1364 0.400000 +1564 1403 0.400000 +1564 1456 0.400000 +1564 1570 0.400000 +1564 1657 0.400000 +1564 1688 0.400000 +1564 1743 0.400000 +1564 1750 0.400000 +1564 1752 0.400000 +1564 1851 0.400000 +1564 1884 0.400000 +1564 1931 0.400000 +1564 1970 0.400000 +1564 1979 0.400000 +1564 2030 0.400000 +1564 2038 0.400000 +1564 2039 0.400000 +1564 2053 0.400000 +1564 2097 0.400000 +1564 2207 0.400000 +1564 2245 0.400000 +1564 2247 0.400000 +1564 2317 0.400000 +1564 2368 0.400000 +1564 2416 0.400000 +1564 2424 0.400000 +1564 2438 0.400000 +1564 2520 0.400000 +1564 2522 0.400000 +1564 2599 0.400000 +1564 2604 0.400000 +1564 2661 0.400000 +1564 2712 0.400000 +1564 2719 0.400000 +1564 2739 0.400000 +1564 2747 0.400000 +1564 2771 0.400000 +1564 2874 0.400000 +1564 2900 0.400000 +1564 2990 0.400000 +1564 3014 0.400000 +1564 3025 0.400000 +1564 3038 0.400000 +1564 3053 0.400000 +1564 3056 0.400000 +1564 3065 0.400000 +1565 26 0.400000 +1565 48 0.400000 +1565 92 0.400000 +1565 162 0.400000 +1565 214 0.400000 +1565 252 0.400000 +1565 316 0.400000 +1565 387 0.400000 +1565 392 0.400000 +1565 408 0.400000 +1565 424 0.400000 +1565 463 0.400000 +1565 496 0.400000 +1565 519 0.400000 +1565 525 0.400000 +1565 587 0.400000 +1565 684 0.400000 +1565 732 0.400000 +1565 743 0.400000 +1565 746 0.400000 +1565 778 0.400000 +1565 791 0.400000 +1565 833 0.400000 +1565 842 0.400000 +1565 849 0.400000 +1565 872 0.400000 +1565 932 0.400000 +1565 938 0.400000 +1565 981 0.400000 +1565 1054 0.400000 +1565 1141 0.400000 +1565 1205 0.400000 +1565 1208 0.400000 +1565 1217 0.400000 +1565 1267 0.400000 +1565 1307 0.400000 +1565 1343 0.400000 +1565 1347 0.400000 +1565 1483 0.400000 +1565 1523 0.400000 +1565 1528 0.400000 +1565 1733 0.400000 +1565 1825 0.400000 +1565 1840 0.400000 +1565 1875 0.400000 +1565 1890 0.400000 +1565 1956 0.400000 +1565 2073 0.400000 +1565 2104 0.400000 +1565 2208 0.400000 +1565 2239 0.400000 +1565 2256 0.400000 +1565 2285 0.400000 +1565 2321 0.400000 +1565 2359 0.400000 +1565 2507 0.400000 +1565 2556 0.400000 +1565 2573 0.400000 +1565 2579 0.400000 +1565 2615 0.400000 +1565 2626 0.400000 +1565 2641 0.400000 +1565 2648 0.400000 +1565 2684 0.400000 +1565 2729 0.400000 +1565 2790 0.400000 +1565 2910 0.400000 +1565 2934 0.400000 +1565 2997 0.400000 +1565 3018 0.400000 +1565 3071 0.400000 +1565 3133 0.400000 +1565 3159 0.400000 +1566 94 0.400000 +1566 170 0.400000 +1566 388 0.400000 +1566 475 0.400000 +1566 484 0.400000 +1566 531 0.400000 +1566 658 0.400000 +1566 694 0.400000 +1566 782 0.400000 +1566 786 0.400000 +1566 795 0.400000 +1566 898 0.400000 +1566 1265 0.400000 +1566 1300 0.400000 +1566 1308 0.400000 +1566 1386 0.400000 +1566 1413 0.400000 +1566 1572 0.400000 +1566 1615 0.400000 +1566 1652 0.400000 +1566 1667 0.400000 +1566 1680 0.400000 +1566 1702 0.400000 +1566 1787 0.400000 +1566 1898 0.400000 +1566 1997 0.400000 +1566 2078 0.400000 +1566 2092 0.400000 +1566 2251 0.400000 +1566 2288 0.400000 +1566 2318 0.400000 +1566 2339 0.400000 +1566 2567 0.400000 +1566 2571 0.400000 +1566 2710 0.400000 +1566 2720 0.400000 +1566 2784 0.400000 +1566 2893 0.400000 +1566 2917 0.400000 +1566 2927 0.400000 +1566 2951 0.400000 +1566 2959 0.400000 +1566 3018 0.400000 +1566 3042 0.400000 +1566 3123 0.400000 +1566 3137 0.400000 +1566 3138 0.400000 +1567 30 0.400000 +1567 117 0.400000 +1567 156 0.400000 +1567 261 0.400000 +1567 344 0.400000 +1567 429 0.400000 +1567 634 0.400000 +1567 642 0.400000 +1567 676 0.400000 +1567 691 0.400000 +1567 762 0.400000 +1567 807 0.400000 +1567 827 0.400000 +1567 878 0.400000 +1567 907 0.400000 +1567 939 0.400000 +1567 981 0.400000 +1567 1061 0.400000 +1567 1067 0.400000 +1567 1164 0.400000 +1567 1274 0.400000 +1567 1314 0.400000 +1567 1333 0.400000 +1567 1384 0.400000 +1567 1410 0.400000 +1567 1442 0.400000 +1567 1478 0.400000 +1567 1502 0.400000 +1567 1564 0.400000 +1567 1618 0.400000 +1567 1644 0.400000 +1567 1828 0.400000 +1567 1851 0.400000 +1567 1903 0.400000 +1567 1946 0.400000 +1567 1990 0.400000 +1567 2051 0.400000 +1567 2102 0.400000 +1567 2111 0.400000 +1567 2113 0.400000 +1567 2183 0.400000 +1567 2217 0.400000 +1567 2246 0.400000 +1567 2257 0.400000 +1567 2312 0.400000 +1567 2360 0.400000 +1567 2409 0.400000 +1567 2504 0.400000 +1567 2533 0.400000 +1567 2685 0.400000 +1567 2803 0.400000 +1567 2806 0.400000 +1567 2854 0.400000 +1567 2923 0.400000 +1567 2945 0.400000 +1567 3007 0.400000 +1567 3025 0.400000 +1567 3059 0.400000 +1567 3092 0.400000 +1567 3093 0.400000 +1567 3123 0.400000 +1568 9 0.400000 +1568 63 0.400000 +1568 161 0.400000 +1568 165 0.400000 +1568 174 0.400000 +1568 210 0.400000 +1568 242 0.400000 +1568 276 0.400000 +1568 325 0.400000 +1568 377 0.400000 +1568 449 0.400000 +1568 505 0.400000 +1568 518 0.400000 +1568 568 0.400000 +1568 624 0.400000 +1568 656 0.400000 +1568 670 0.400000 +1568 689 0.400000 +1568 732 0.400000 +1568 735 0.400000 +1568 739 0.400000 +1568 766 0.400000 +1568 811 0.400000 +1568 849 0.400000 +1568 890 0.400000 +1568 993 0.400000 +1568 1079 0.400000 +1568 1184 0.400000 +1568 1223 0.400000 +1568 1231 0.400000 +1568 1293 0.400000 +1568 1335 0.400000 +1568 1371 0.400000 +1568 1410 0.400000 +1568 1413 0.400000 +1568 1482 0.400000 +1568 1498 0.400000 +1568 1544 0.400000 +1568 1571 0.400000 +1568 1584 0.400000 +1568 1595 0.400000 +1568 1609 0.400000 +1568 1663 0.400000 +1568 1692 0.400000 +1568 1695 0.400000 +1568 1823 0.400000 +1568 1920 0.400000 +1568 1933 0.400000 +1568 1953 0.400000 +1568 2088 0.400000 +1568 2162 0.400000 +1568 2163 0.400000 +1568 2173 0.400000 +1568 2182 0.400000 +1568 2257 0.400000 +1568 2347 0.400000 +1568 2375 0.400000 +1568 2414 0.400000 +1568 2433 0.400000 +1568 2441 0.400000 +1568 2495 0.400000 +1568 2509 0.400000 +1568 2516 0.400000 +1568 2517 0.400000 +1568 2535 0.400000 +1568 2544 0.400000 +1568 2595 0.400000 +1568 2643 0.400000 +1568 2738 0.400000 +1568 2793 0.400000 +1568 2851 0.400000 +1568 3004 0.400000 +1568 3022 0.400000 +1568 3082 0.400000 +1568 3095 0.400000 +1568 3124 0.400000 +1569 42 0.400000 +1569 126 0.400000 +1569 140 0.400000 +1569 147 0.400000 +1569 156 0.400000 +1569 201 0.400000 +1569 250 0.400000 +1569 304 0.400000 +1569 308 0.400000 +1569 387 0.400000 +1569 403 0.400000 +1569 485 0.400000 +1569 494 0.400000 +1569 603 0.400000 +1569 605 0.400000 +1569 636 0.400000 +1569 666 0.400000 +1569 720 0.400000 +1569 769 0.400000 +1569 927 0.400000 +1569 933 0.400000 +1569 955 0.400000 +1569 959 0.400000 +1569 967 0.400000 +1569 971 0.400000 +1569 999 0.400000 +1569 1045 0.400000 +1569 1148 0.400000 +1569 1223 0.400000 +1569 1290 0.400000 +1569 1444 0.400000 +1569 1541 0.400000 +1569 1565 0.400000 +1569 1599 0.400000 +1569 1610 0.400000 +1569 1679 0.400000 +1569 1769 0.400000 +1569 1825 0.400000 +1569 1882 0.400000 +1569 1889 0.400000 +1569 1893 0.400000 +1569 1895 0.400000 +1569 1940 0.400000 +1569 1952 0.400000 +1569 2069 0.400000 +1569 2209 0.400000 +1569 2225 0.400000 +1569 2305 0.400000 +1569 2440 0.400000 +1569 2516 0.400000 +1569 2533 0.400000 +1569 2535 0.400000 +1569 2545 0.400000 +1569 2610 0.400000 +1569 2698 0.400000 +1569 2756 0.400000 +1569 2769 0.400000 +1569 2814 0.400000 +1569 2907 0.400000 +1569 2987 0.400000 +1569 3070 0.400000 +1569 3109 0.400000 +1569 3150 0.400000 +1569 3162 0.400000 +1570 98 0.400000 +1570 128 0.400000 +1570 140 0.400000 +1570 167 0.400000 +1570 189 0.400000 +1570 241 0.400000 +1570 288 0.400000 +1570 328 0.400000 +1570 402 0.400000 +1570 403 0.400000 +1570 426 0.400000 +1570 551 0.400000 +1570 785 0.400000 +1570 791 0.400000 +1570 891 0.400000 +1570 984 0.400000 +1570 1072 0.400000 +1570 1157 0.400000 +1570 1201 0.400000 +1570 1381 0.400000 +1570 1496 0.400000 +1570 1865 0.400000 +1570 2048 0.400000 +1570 2163 0.400000 +1570 2223 0.400000 +1570 2225 0.400000 +1570 2290 0.400000 +1570 2346 0.400000 +1570 2431 0.400000 +1570 2508 0.400000 +1570 2519 0.400000 +1570 2551 0.400000 +1570 2556 0.400000 +1570 2675 0.400000 +1570 2682 0.400000 +1570 2737 0.400000 +1570 2813 0.400000 +1570 2935 0.400000 +1570 2938 0.400000 +1570 3078 0.400000 +1570 3167 0.400000 +1570 3173 0.400000 +1570 3174 0.400000 +1571 10 0.400000 +1571 37 0.400000 +1571 174 0.400000 +1571 201 0.400000 +1571 212 0.400000 +1571 225 0.400000 +1571 302 0.400000 +1571 407 0.400000 +1571 470 0.400000 +1571 524 0.400000 +1571 830 0.400000 +1571 841 0.400000 +1571 868 0.400000 +1571 972 0.400000 +1571 990 0.400000 +1571 1000 0.400000 +1571 1054 0.400000 +1571 1141 0.400000 +1571 1249 0.400000 +1571 1253 0.400000 +1571 1368 0.400000 +1571 1419 0.400000 +1571 1437 0.400000 +1571 1479 0.400000 +1571 1494 0.400000 +1571 1495 0.400000 +1571 1497 0.400000 +1571 1666 0.400000 +1571 1785 0.400000 +1571 1838 0.400000 +1571 1841 0.400000 +1571 2059 0.400000 +1571 2195 0.400000 +1571 2227 0.400000 +1571 2235 0.400000 +1571 2281 0.400000 +1571 2289 0.400000 +1571 2326 0.400000 +1571 2328 0.400000 +1571 2382 0.400000 +1571 2429 0.400000 +1571 2474 0.400000 +1571 2558 0.400000 +1571 2688 0.400000 +1571 2699 0.400000 +1571 2701 0.400000 +1571 2720 0.400000 +1571 2742 0.400000 +1571 2776 0.400000 +1571 2818 0.400000 +1571 2894 0.400000 +1571 2916 0.400000 +1571 2969 0.400000 +1571 3014 0.400000 +1571 3036 0.400000 +1571 3051 0.400000 +1571 3093 0.400000 +1571 3095 0.400000 +1571 3104 0.400000 +1571 3163 0.400000 +1571 3186 0.400000 +1572 5 0.400000 +1572 18 0.400000 +1572 37 0.400000 +1572 100 0.400000 +1572 125 0.400000 +1572 144 0.400000 +1572 169 0.400000 +1572 274 0.400000 +1572 417 0.400000 +1572 443 0.400000 +1572 451 0.400000 +1572 461 0.400000 +1572 479 0.400000 +1572 480 0.400000 +1572 509 0.400000 +1572 555 0.400000 +1572 572 0.400000 +1572 579 0.400000 +1572 651 0.400000 +1572 697 0.400000 +1572 746 0.400000 +1572 747 0.400000 +1572 808 0.400000 +1572 830 0.400000 +1572 880 0.400000 +1572 922 0.400000 +1572 963 0.400000 +1572 988 0.400000 +1572 1019 0.400000 +1572 1035 0.400000 +1572 1041 0.400000 +1572 1129 0.400000 +1572 1211 0.400000 +1572 1321 0.400000 +1572 1385 0.400000 +1572 1494 0.400000 +1572 1495 0.400000 +1572 1540 0.400000 +1572 1597 0.400000 +1572 1630 0.400000 +1572 1639 0.400000 +1572 1709 0.400000 +1572 1742 0.400000 +1572 1788 0.400000 +1572 2032 0.400000 +1572 2037 0.400000 +1572 2140 0.400000 +1572 2227 0.400000 +1572 2236 0.400000 +1572 2423 0.400000 +1572 2430 0.400000 +1572 2461 0.400000 +1572 2580 0.400000 +1572 2582 0.400000 +1572 2639 0.400000 +1572 2659 0.400000 +1572 2679 0.400000 +1572 2701 0.400000 +1572 2710 0.400000 +1572 2781 0.400000 +1572 2867 0.400000 +1572 2929 0.400000 +1572 3022 0.400000 +1572 3037 0.400000 +1572 3095 0.400000 +1572 3118 0.400000 +1572 3193 0.400000 +1573 43 0.400000 +1573 51 0.400000 +1573 57 0.400000 +1573 74 0.400000 +1573 260 0.400000 +1573 267 0.400000 +1573 356 0.400000 +1573 390 0.400000 +1573 465 0.400000 +1573 603 0.400000 +1573 606 0.400000 +1573 726 0.400000 +1573 896 0.400000 +1573 947 0.400000 +1573 1071 0.400000 +1573 1137 0.400000 +1573 1140 0.400000 +1573 1173 0.400000 +1573 1425 0.400000 +1573 1433 0.400000 +1573 1492 0.400000 +1573 1497 0.400000 +1573 1524 0.400000 +1573 1562 0.400000 +1573 1591 0.400000 +1573 1636 0.400000 +1573 1684 0.400000 +1573 1738 0.400000 +1573 1843 0.400000 +1573 1852 0.400000 +1573 1865 0.400000 +1573 1906 0.400000 +1573 1960 0.400000 +1573 2096 0.400000 +1573 2147 0.400000 +1573 2245 0.400000 +1573 2261 0.400000 +1573 2275 0.400000 +1573 2341 0.400000 +1573 2344 0.400000 +1573 2386 0.400000 +1573 2419 0.400000 +1573 2429 0.400000 +1573 2439 0.400000 +1573 2457 0.400000 +1573 2498 0.400000 +1573 2569 0.400000 +1573 2604 0.400000 +1573 2609 0.400000 +1573 2619 0.400000 +1573 2684 0.400000 +1573 2732 0.400000 +1573 2773 0.400000 +1573 2848 0.400000 +1573 2857 0.400000 +1573 2875 0.400000 +1573 2888 0.400000 +1573 2920 0.400000 +1573 2921 0.400000 +1573 3024 0.400000 +1574 18 0.400000 +1574 83 0.400000 +1574 90 0.400000 +1574 126 0.400000 +1574 180 0.400000 +1574 253 0.400000 +1574 334 0.400000 +1574 549 0.400000 +1574 610 0.400000 +1574 651 0.400000 +1574 715 0.400000 +1574 738 0.400000 +1574 826 0.400000 +1574 902 0.400000 +1574 978 0.400000 +1574 1029 0.400000 +1574 1034 0.400000 +1574 1074 0.400000 +1574 1113 0.400000 +1574 1137 0.400000 +1574 1144 0.400000 +1574 1234 0.400000 +1574 1237 0.400000 +1574 1240 0.400000 +1574 1312 0.400000 +1574 1313 0.400000 +1574 1347 0.400000 +1574 1437 0.400000 +1574 1491 0.400000 +1574 1544 0.400000 +1574 1551 0.400000 +1574 1581 0.400000 +1574 1642 0.400000 +1574 1667 0.400000 +1574 1703 0.400000 +1574 1705 0.400000 +1574 1718 0.400000 +1574 1725 0.400000 +1574 1750 0.400000 +1574 1885 0.400000 +1574 1960 0.400000 +1574 1993 0.400000 +1574 2040 0.400000 +1574 2050 0.400000 +1574 2078 0.400000 +1574 2101 0.400000 +1574 2174 0.400000 +1574 2309 0.400000 +1574 2350 0.400000 +1574 2430 0.400000 +1574 2515 0.400000 +1574 2537 0.400000 +1574 2602 0.400000 +1574 2749 0.400000 +1574 2776 0.400000 +1574 3043 0.400000 +1574 3195 0.400000 +1575 26 0.400000 +1575 50 0.400000 +1575 101 0.400000 +1575 232 0.400000 +1575 262 0.400000 +1575 283 0.400000 +1575 324 0.400000 +1575 383 0.400000 +1575 392 0.400000 +1575 416 0.400000 +1575 436 0.400000 +1575 444 0.400000 +1575 527 0.400000 +1575 535 0.400000 +1575 592 0.400000 +1575 596 0.400000 +1575 694 0.400000 +1575 716 0.400000 +1575 791 0.400000 +1575 939 0.400000 +1575 940 0.400000 +1575 999 0.400000 +1575 1066 0.400000 +1575 1070 0.400000 +1575 1078 0.400000 +1575 1128 0.400000 +1575 1132 0.400000 +1575 1208 0.400000 +1575 1269 0.400000 +1575 1283 0.400000 +1575 1287 0.400000 +1575 1301 0.400000 +1575 1366 0.400000 +1575 1372 0.400000 +1575 1376 0.400000 +1575 1424 0.400000 +1575 1529 0.400000 +1575 1531 0.400000 +1575 1532 0.400000 +1575 1614 0.400000 +1575 1746 0.400000 +1575 1791 0.400000 +1575 1806 0.400000 +1575 1845 0.400000 +1575 1852 0.400000 +1575 1905 0.400000 +1575 1957 0.400000 +1575 1998 0.400000 +1575 2021 0.400000 +1575 2052 0.400000 +1575 2067 0.400000 +1575 2091 0.400000 +1575 2092 0.400000 +1575 2127 0.400000 +1575 2133 0.400000 +1575 2192 0.400000 +1575 2212 0.400000 +1575 2214 0.400000 +1575 2300 0.400000 +1575 2508 0.400000 +1575 2530 0.400000 +1575 2559 0.400000 +1575 2568 0.400000 +1575 2578 0.400000 +1575 2625 0.400000 +1575 2671 0.400000 +1575 2698 0.400000 +1575 2760 0.400000 +1575 2872 0.400000 +1575 3012 0.400000 +1575 3094 0.400000 +1575 3107 0.400000 +1575 3115 0.400000 +1575 3130 0.400000 +1576 14 0.400000 +1576 21 0.400000 +1576 31 0.400000 +1576 60 0.400000 +1576 117 0.400000 +1576 125 0.400000 +1576 153 0.400000 +1576 312 0.400000 +1576 337 0.400000 +1576 338 0.400000 +1576 433 0.400000 +1576 455 0.400000 +1576 458 0.400000 +1576 559 0.400000 +1576 561 0.400000 +1576 595 0.400000 +1576 677 0.400000 +1576 693 0.400000 +1576 719 0.400000 +1576 756 0.400000 +1576 801 0.400000 +1576 814 0.400000 +1576 861 0.400000 +1576 943 0.400000 +1576 962 0.400000 +1576 994 0.400000 +1576 1043 0.400000 +1576 1087 0.400000 +1576 1095 0.400000 +1576 1100 0.400000 +1576 1148 0.400000 +1576 1240 0.400000 +1576 1381 0.400000 +1576 1577 0.400000 +1576 1585 0.400000 +1576 1587 0.400000 +1576 1676 0.400000 +1576 1814 0.400000 +1576 1967 0.400000 +1576 1981 0.400000 +1576 1985 0.400000 +1576 1987 0.400000 +1576 2005 0.400000 +1576 2082 0.400000 +1576 2085 0.400000 +1576 2123 0.400000 +1576 2225 0.400000 +1576 2284 0.400000 +1576 2345 0.400000 +1576 2366 0.400000 +1576 2433 0.400000 +1576 2455 0.400000 +1576 2557 0.400000 +1576 2604 0.400000 +1576 2694 0.400000 +1576 2715 0.400000 +1576 2780 0.400000 +1576 2810 0.400000 +1576 2830 0.400000 +1576 2974 0.400000 +1576 3023 0.400000 +1576 3045 0.400000 +1576 3108 0.400000 +1576 3170 0.400000 +1577 13 0.400000 +1577 25 0.400000 +1577 44 0.400000 +1577 148 0.400000 +1577 184 0.400000 +1577 190 0.400000 +1577 267 0.400000 +1577 268 0.400000 +1577 288 0.400000 +1577 360 0.400000 +1577 368 0.400000 +1577 384 0.400000 +1577 486 0.400000 +1577 572 0.400000 +1577 590 0.400000 +1577 622 0.400000 +1577 681 0.400000 +1577 842 0.400000 +1577 856 0.400000 +1577 870 0.400000 +1577 877 0.400000 +1577 927 0.400000 +1577 934 0.400000 +1577 968 0.400000 +1577 1027 0.400000 +1577 1125 0.400000 +1577 1187 0.400000 +1577 1197 0.400000 +1577 1231 0.400000 +1577 1284 0.400000 +1577 1315 0.400000 +1577 1388 0.400000 +1577 1561 0.400000 +1577 1582 0.400000 +1577 1585 0.400000 +1577 1676 0.400000 +1577 1707 0.400000 +1577 1711 0.400000 +1577 1714 0.400000 +1577 1818 0.400000 +1577 1859 0.400000 +1577 1871 0.400000 +1577 1873 0.400000 +1577 1933 0.400000 +1577 2007 0.400000 +1577 2066 0.400000 +1577 2109 0.400000 +1577 2111 0.400000 +1577 2114 0.400000 +1577 2128 0.400000 +1577 2156 0.400000 +1577 2184 0.400000 +1577 2243 0.400000 +1577 2264 0.400000 +1577 2274 0.400000 +1577 2392 0.400000 +1577 2424 0.400000 +1577 2441 0.400000 +1577 2443 0.400000 +1577 2488 0.400000 +1577 2636 0.400000 +1577 2700 0.400000 +1577 2735 0.400000 +1577 2745 0.400000 +1577 2754 0.400000 +1577 2755 0.400000 +1577 2819 0.400000 +1577 2823 0.400000 +1577 2847 0.400000 +1577 2874 0.400000 +1577 2907 0.400000 +1577 2922 0.400000 +1577 2984 0.400000 +1577 2987 0.400000 +1577 2988 0.400000 +1577 3066 0.400000 +1578 101 0.400000 +1578 161 0.400000 +1578 237 0.400000 +1578 570 0.400000 +1578 609 0.400000 +1578 633 0.400000 +1578 656 0.400000 +1578 695 0.400000 +1578 718 0.400000 +1578 794 0.400000 +1578 821 0.400000 +1578 961 0.400000 +1578 1024 0.400000 +1578 1032 0.400000 +1578 1144 0.400000 +1578 1148 0.400000 +1578 1177 0.400000 +1578 1204 0.400000 +1578 1248 0.400000 +1578 1276 0.400000 +1578 1277 0.400000 +1578 1291 0.400000 +1578 1309 0.400000 +1578 1408 0.400000 +1578 1633 0.400000 +1578 1644 0.400000 +1578 1744 0.400000 +1578 1783 0.400000 +1578 1796 0.400000 +1578 1797 0.400000 +1578 1811 0.400000 +1578 1878 0.400000 +1578 1913 0.400000 +1578 2023 0.400000 +1578 2043 0.400000 +1578 2061 0.400000 +1578 2090 0.400000 +1578 2138 0.400000 +1578 2156 0.400000 +1578 2186 0.400000 +1578 2218 0.400000 +1578 2318 0.400000 +1578 2325 0.400000 +1578 2370 0.400000 +1578 2517 0.400000 +1578 2526 0.400000 +1578 2529 0.400000 +1578 2560 0.400000 +1578 2606 0.400000 +1578 2672 0.400000 +1578 2678 0.400000 +1578 2680 0.400000 +1578 2698 0.400000 +1578 2767 0.400000 +1578 2768 0.400000 +1578 2771 0.400000 +1578 2873 0.400000 +1578 2947 0.400000 +1578 2981 0.400000 +1578 3087 0.400000 +1578 3151 0.400000 +1578 3152 0.400000 +1579 43 0.400000 +1579 65 0.400000 +1579 104 0.400000 +1579 141 0.400000 +1579 157 0.400000 +1579 231 0.400000 +1579 302 0.400000 +1579 306 0.400000 +1579 308 0.400000 +1579 312 0.400000 +1579 353 0.400000 +1579 441 0.400000 +1579 512 0.400000 +1579 546 0.400000 +1579 672 0.400000 +1579 682 0.400000 +1579 702 0.400000 +1579 729 0.400000 +1579 752 0.400000 +1579 877 0.400000 +1579 893 0.400000 +1579 903 0.400000 +1579 1121 0.400000 +1579 1158 0.400000 +1579 1192 0.400000 +1579 1273 0.400000 +1579 1290 0.400000 +1579 1375 0.400000 +1579 1381 0.400000 +1579 1388 0.400000 +1579 1399 0.400000 +1579 1532 0.400000 +1579 1537 0.400000 +1579 1567 0.400000 +1579 1570 0.400000 +1579 1572 0.400000 +1579 1623 0.400000 +1579 1649 0.400000 +1579 1662 0.400000 +1579 1752 0.400000 +1579 1801 0.400000 +1579 1805 0.400000 +1579 1851 0.400000 +1579 1855 0.400000 +1579 1901 0.400000 +1579 2008 0.400000 +1579 2046 0.400000 +1579 2064 0.400000 +1579 2126 0.400000 +1579 2127 0.400000 +1579 2177 0.400000 +1579 2182 0.400000 +1579 2233 0.400000 +1579 2256 0.400000 +1579 2282 0.400000 +1579 2364 0.400000 +1579 2407 0.400000 +1579 2414 0.400000 +1579 2480 0.400000 +1579 2496 0.400000 +1579 2527 0.400000 +1579 2590 0.400000 +1579 2630 0.400000 +1579 2648 0.400000 +1579 2679 0.400000 +1579 2737 0.400000 +1579 2933 0.400000 +1579 2954 0.400000 +1579 2984 0.400000 +1579 3190 0.400000 +1580 102 0.400000 +1580 116 0.400000 +1580 130 0.400000 +1580 142 0.400000 +1580 165 0.400000 +1580 192 0.400000 +1580 213 0.400000 +1580 292 0.400000 +1580 361 0.400000 +1580 455 0.400000 +1580 505 0.400000 +1580 560 0.400000 +1580 585 0.400000 +1580 598 0.400000 +1580 776 0.400000 +1580 892 0.400000 +1580 968 0.400000 +1580 1002 0.400000 +1580 1018 0.400000 +1580 1031 0.400000 +1580 1085 0.400000 +1580 1132 0.400000 +1580 1174 0.400000 +1580 1212 0.400000 +1580 1254 0.400000 +1580 1283 0.400000 +1580 1293 0.400000 +1580 1310 0.400000 +1580 1384 0.400000 +1580 1464 0.400000 +1580 1502 0.400000 +1580 1563 0.400000 +1580 1716 0.400000 +1580 1726 0.400000 +1580 1763 0.400000 +1580 1845 0.400000 +1580 1857 0.400000 +1580 1905 0.400000 +1580 2011 0.400000 +1580 2019 0.400000 +1580 2091 0.400000 +1580 2197 0.400000 +1580 2247 0.400000 +1580 2257 0.400000 +1580 2269 0.400000 +1580 2319 0.400000 +1580 2360 0.400000 +1580 2411 0.400000 +1580 2462 0.400000 +1580 2520 0.400000 +1580 2713 0.400000 +1580 2783 0.400000 +1580 2788 0.400000 +1580 2846 0.400000 +1580 3033 0.400000 +1580 3040 0.400000 +1580 3051 0.400000 +1580 3104 0.400000 +1580 3109 0.400000 +1580 3154 0.400000 +1580 3182 0.400000 +1581 12 0.400000 +1581 13 0.400000 +1581 109 0.400000 +1581 152 0.400000 +1581 237 0.400000 +1581 315 0.400000 +1581 370 0.400000 +1581 375 0.400000 +1581 379 0.400000 +1581 508 0.400000 +1581 540 0.400000 +1581 554 0.400000 +1581 665 0.400000 +1581 744 0.400000 +1581 801 0.400000 +1581 812 0.400000 +1581 819 0.400000 +1581 833 0.400000 +1581 844 0.400000 +1581 931 0.400000 +1581 1048 0.400000 +1581 1066 0.400000 +1581 1069 0.400000 +1581 1093 0.400000 +1581 1204 0.400000 +1581 1227 0.400000 +1581 1236 0.400000 +1581 1390 0.400000 +1581 1428 0.400000 +1581 1538 0.400000 +1581 1599 0.400000 +1581 1637 0.400000 +1581 1667 0.400000 +1581 1669 0.400000 +1581 1673 0.400000 +1581 1684 0.400000 +1581 1690 0.400000 +1581 1785 0.400000 +1581 1786 0.400000 +1581 1787 0.400000 +1581 1791 0.400000 +1581 1853 0.400000 +1581 1863 0.400000 +1581 1882 0.400000 +1581 1948 0.400000 +1581 1996 0.400000 +1581 2022 0.400000 +1581 2117 0.400000 +1581 2172 0.400000 +1581 2196 0.400000 +1581 2280 0.400000 +1581 2295 0.400000 +1581 2296 0.400000 +1581 2363 0.400000 +1581 2419 0.400000 +1581 2431 0.400000 +1581 2501 0.400000 +1581 2704 0.400000 +1581 2731 0.400000 +1581 2735 0.400000 +1581 2857 0.400000 +1581 2891 0.400000 +1581 3026 0.400000 +1581 3100 0.400000 +1581 3145 0.400000 +1581 3164 0.400000 +1582 22 0.400000 +1582 124 0.400000 +1582 167 0.400000 +1582 223 0.400000 +1582 296 0.400000 +1582 307 0.400000 +1582 362 0.400000 +1582 391 0.400000 +1582 406 0.400000 +1582 443 0.400000 +1582 508 0.400000 +1582 517 0.400000 +1582 519 0.400000 +1582 542 0.400000 +1582 616 0.400000 +1582 641 0.400000 +1582 664 0.400000 +1582 776 0.400000 +1582 814 0.400000 +1582 825 0.400000 +1582 920 0.400000 +1582 1021 0.400000 +1582 1032 0.400000 +1582 1043 0.400000 +1582 1163 0.400000 +1582 1213 0.400000 +1582 1215 0.400000 +1582 1263 0.400000 +1582 1286 0.400000 +1582 1308 0.400000 +1582 1335 0.400000 +1582 1361 0.400000 +1582 1397 0.400000 +1582 1555 0.400000 +1582 1575 0.400000 +1582 1621 0.400000 +1582 1683 0.400000 +1582 1774 0.400000 +1582 1781 0.400000 +1582 1804 0.400000 +1582 1868 0.400000 +1582 1897 0.400000 +1582 1991 0.400000 +1582 2035 0.400000 +1582 2048 0.400000 +1582 2089 0.400000 +1582 2203 0.400000 +1582 2208 0.400000 +1582 2231 0.400000 +1582 2247 0.400000 +1582 2302 0.400000 +1582 2317 0.400000 +1582 2323 0.400000 +1582 2382 0.400000 +1582 2392 0.400000 +1582 2465 0.400000 +1582 2541 0.400000 +1582 2547 0.400000 +1582 2768 0.400000 +1582 2936 0.400000 +1582 3014 0.400000 +1582 3090 0.400000 +1582 3116 0.400000 +1582 3145 0.400000 +1583 82 0.400000 +1583 84 0.400000 +1583 105 0.400000 +1583 152 0.400000 +1583 168 0.400000 +1583 230 0.400000 +1583 241 0.400000 +1583 250 0.400000 +1583 283 0.400000 +1583 305 0.400000 +1583 341 0.400000 +1583 391 0.400000 +1583 398 0.400000 +1583 465 0.400000 +1583 468 0.400000 +1583 599 0.400000 +1583 734 0.400000 +1583 747 0.400000 +1583 770 0.400000 +1583 823 0.400000 +1583 1045 0.400000 +1583 1046 0.400000 +1583 1130 0.400000 +1583 1164 0.400000 +1583 1192 0.400000 +1583 1226 0.400000 +1583 1269 0.400000 +1583 1299 0.400000 +1583 1378 0.400000 +1583 1397 0.400000 +1583 1402 0.400000 +1583 1434 0.400000 +1583 1503 0.400000 +1583 1549 0.400000 +1583 1587 0.400000 +1583 1614 0.400000 +1583 1698 0.400000 +1583 1731 0.400000 +1583 1737 0.400000 +1583 1808 0.400000 +1583 1823 0.400000 +1583 1849 0.400000 +1583 1886 0.400000 +1583 1966 0.400000 +1583 1991 0.400000 +1583 2132 0.400000 +1583 2382 0.400000 +1583 2496 0.400000 +1583 2505 0.400000 +1583 2607 0.400000 +1583 2610 0.400000 +1583 2762 0.400000 +1583 2842 0.400000 +1583 2933 0.400000 +1583 2935 0.400000 +1583 2993 0.400000 +1583 3053 0.400000 +1583 3066 0.400000 +1583 3079 0.400000 +1583 3111 0.400000 +1583 3152 0.400000 +1584 38 0.400000 +1584 127 0.400000 +1584 237 0.400000 +1584 250 0.400000 +1584 412 0.400000 +1584 466 0.400000 +1584 508 0.400000 +1584 602 0.400000 +1584 648 0.400000 +1584 657 0.400000 +1584 801 0.400000 +1584 859 0.400000 +1584 871 0.400000 +1584 910 0.400000 +1584 911 0.400000 +1584 1041 0.400000 +1584 1096 0.400000 +1584 1108 0.400000 +1584 1129 0.400000 +1584 1139 0.400000 +1584 1211 0.400000 +1584 1228 0.400000 +1584 1251 0.400000 +1584 1295 0.400000 +1584 1350 0.400000 +1584 1487 0.400000 +1584 1584 0.400000 +1584 1629 0.400000 +1584 1690 0.400000 +1584 1736 0.400000 +1584 1749 0.400000 +1584 1795 0.400000 +1584 1816 0.400000 +1584 1856 0.400000 +1584 1897 0.400000 +1584 2025 0.400000 +1584 2063 0.400000 +1584 2172 0.400000 +1584 2213 0.400000 +1584 2250 0.400000 +1584 2254 0.400000 +1584 2391 0.400000 +1584 2681 0.400000 +1584 2794 0.400000 +1584 2861 0.400000 +1584 2997 0.400000 +1584 3093 0.400000 +1585 10 0.400000 +1585 18 0.400000 +1585 69 0.400000 +1585 88 0.400000 +1585 135 0.400000 +1585 271 0.400000 +1585 384 0.400000 +1585 414 0.400000 +1585 542 0.400000 +1585 614 0.400000 +1585 623 0.400000 +1585 624 0.400000 +1585 693 0.400000 +1585 844 0.400000 +1585 883 0.400000 +1585 899 0.400000 +1585 989 0.400000 +1585 1025 0.400000 +1585 1029 0.400000 +1585 1072 0.400000 +1585 1110 0.400000 +1585 1183 0.400000 +1585 1185 0.400000 +1585 1262 0.400000 +1585 1324 0.400000 +1585 1331 0.400000 +1585 1408 0.400000 +1585 1602 0.400000 +1585 1605 0.400000 +1585 1628 0.400000 +1585 1730 0.400000 +1585 1792 0.400000 +1585 1863 0.400000 +1585 1952 0.400000 +1585 2006 0.400000 +1585 2015 0.400000 +1585 2022 0.400000 +1585 2133 0.400000 +1585 2198 0.400000 +1585 2459 0.400000 +1585 2466 0.400000 +1585 2554 0.400000 +1585 2565 0.400000 +1585 2610 0.400000 +1585 2718 0.400000 +1585 2720 0.400000 +1585 2723 0.400000 +1585 2772 0.400000 +1585 2778 0.400000 +1585 2785 0.400000 +1585 2807 0.400000 +1585 2874 0.400000 +1585 2878 0.400000 +1585 2978 0.400000 +1585 3004 0.400000 +1585 3008 0.400000 +1585 3009 0.400000 +1585 3094 0.400000 +1585 3102 0.400000 +1585 3106 0.400000 +1585 3117 0.400000 +1586 21 0.400000 +1586 33 0.400000 +1586 50 0.400000 +1586 58 0.400000 +1586 66 0.400000 +1586 162 0.400000 +1586 221 0.400000 +1586 254 0.400000 +1586 255 0.400000 +1586 291 0.400000 +1586 294 0.400000 +1586 400 0.400000 +1586 541 0.400000 +1586 542 0.400000 +1586 558 0.400000 +1586 573 0.400000 +1586 615 0.400000 +1586 714 0.400000 +1586 783 0.400000 +1586 795 0.400000 +1586 818 0.400000 +1586 925 0.400000 +1586 932 0.400000 +1586 950 0.400000 +1586 958 0.400000 +1586 960 0.400000 +1586 1047 0.400000 +1586 1054 0.400000 +1586 1058 0.400000 +1586 1071 0.400000 +1586 1186 0.400000 +1586 1294 0.400000 +1586 1335 0.400000 +1586 1378 0.400000 +1586 1543 0.400000 +1586 1560 0.400000 +1586 1617 0.400000 +1586 1666 0.400000 +1586 1819 0.400000 +1586 1872 0.400000 +1586 1914 0.400000 +1586 1969 0.400000 +1586 1977 0.400000 +1586 2042 0.400000 +1586 2069 0.400000 +1586 2076 0.400000 +1586 2148 0.400000 +1586 2231 0.400000 +1586 2233 0.400000 +1586 2293 0.400000 +1586 2418 0.400000 +1586 2424 0.400000 +1586 2428 0.400000 +1586 2454 0.400000 +1586 2590 0.400000 +1586 2695 0.400000 +1586 2790 0.400000 +1586 2865 0.400000 +1586 2868 0.400000 +1586 2944 0.400000 +1586 3061 0.400000 +1587 49 0.400000 +1587 53 0.400000 +1587 159 0.400000 +1587 189 0.400000 +1587 347 0.400000 +1587 350 0.400000 +1587 358 0.400000 +1587 363 0.400000 +1587 453 0.400000 +1587 510 0.400000 +1587 523 0.400000 +1587 539 0.400000 +1587 564 0.400000 +1587 576 0.400000 +1587 699 0.400000 +1587 849 0.400000 +1587 851 0.400000 +1587 852 0.400000 +1587 855 0.400000 +1587 883 0.400000 +1587 920 0.400000 +1587 1005 0.400000 +1587 1075 0.400000 +1587 1085 0.400000 +1587 1095 0.400000 +1587 1163 0.400000 +1587 1188 0.400000 +1587 1233 0.400000 +1587 1308 0.400000 +1587 1313 0.400000 +1587 1341 0.400000 +1587 1352 0.400000 +1587 1384 0.400000 +1587 1448 0.400000 +1587 1480 0.400000 +1587 1491 0.400000 +1587 1492 0.400000 +1587 1543 0.400000 +1587 1549 0.400000 +1587 1618 0.400000 +1587 1695 0.400000 +1587 1704 0.400000 +1587 1709 0.400000 +1587 1733 0.400000 +1587 1761 0.400000 +1587 1805 0.400000 +1587 1833 0.400000 +1587 2058 0.400000 +1587 2099 0.400000 +1587 2131 0.400000 +1587 2246 0.400000 +1587 2352 0.400000 +1587 2388 0.400000 +1587 2445 0.400000 +1587 2456 0.400000 +1587 2527 0.400000 +1587 2584 0.400000 +1587 2600 0.400000 +1587 2887 0.400000 +1587 2922 0.400000 +1587 2958 0.400000 +1587 3028 0.400000 +1587 3163 0.400000 +1587 3175 0.400000 +1588 13 0.400000 +1588 31 0.400000 +1588 198 0.400000 +1588 245 0.400000 +1588 379 0.400000 +1588 496 0.400000 +1588 499 0.400000 +1588 605 0.400000 +1588 724 0.400000 +1588 740 0.400000 +1588 896 0.400000 +1588 904 0.400000 +1588 909 0.400000 +1588 938 0.400000 +1588 939 0.400000 +1588 973 0.400000 +1588 989 0.400000 +1588 1005 0.400000 +1588 1048 0.400000 +1588 1054 0.400000 +1588 1162 0.400000 +1588 1169 0.400000 +1588 1210 0.400000 +1588 1264 0.400000 +1588 1281 0.400000 +1588 1424 0.400000 +1588 1559 0.400000 +1588 1581 0.400000 +1588 1599 0.400000 +1588 1654 0.400000 +1588 1700 0.400000 +1588 1729 0.400000 +1588 1809 0.400000 +1588 1907 0.400000 +1588 1939 0.400000 +1588 1956 0.400000 +1588 1985 0.400000 +1588 2061 0.400000 +1588 2106 0.400000 +1588 2117 0.400000 +1588 2128 0.400000 +1588 2173 0.400000 +1588 2216 0.400000 +1588 2311 0.400000 +1588 2354 0.400000 +1588 2359 0.400000 +1588 2409 0.400000 +1588 2443 0.400000 +1588 2460 0.400000 +1588 2496 0.400000 +1588 2540 0.400000 +1588 2558 0.400000 +1588 2571 0.400000 +1588 2609 0.400000 +1588 2784 0.400000 +1588 2850 0.400000 +1588 2868 0.400000 +1588 2956 0.400000 +1588 2958 0.400000 +1588 3006 0.400000 +1588 3013 0.400000 +1588 3062 0.400000 +1588 3072 0.400000 +1589 18 0.400000 +1589 41 0.400000 +1589 55 0.400000 +1589 93 0.400000 +1589 153 0.400000 +1589 200 0.400000 +1589 357 0.400000 +1589 407 0.400000 +1589 427 0.400000 +1589 570 0.400000 +1589 617 0.400000 +1589 727 0.400000 +1589 873 0.400000 +1589 890 0.400000 +1589 901 0.400000 +1589 1016 0.400000 +1589 1077 0.400000 +1589 1117 0.400000 +1589 1128 0.400000 +1589 1177 0.400000 +1589 1227 0.400000 +1589 1363 0.400000 +1589 1501 0.400000 +1589 1659 0.400000 +1589 1679 0.400000 +1589 1733 0.400000 +1589 1813 0.400000 +1589 1882 0.400000 +1589 1945 0.400000 +1589 1949 0.400000 +1589 1960 0.400000 +1589 2103 0.400000 +1589 2206 0.400000 +1589 2239 0.400000 +1589 2362 0.400000 +1589 2512 0.400000 +1589 2520 0.400000 +1589 2524 0.400000 +1589 2706 0.400000 +1589 2725 0.400000 +1589 2777 0.400000 +1589 2825 0.400000 +1589 2828 0.400000 +1589 3110 0.400000 +1589 3150 0.400000 +1589 3157 0.400000 +1590 116 0.400000 +1590 181 0.400000 +1590 199 0.400000 +1590 402 0.400000 +1590 560 0.400000 +1590 688 0.400000 +1590 689 0.400000 +1590 724 0.400000 +1590 786 0.400000 +1590 826 0.400000 +1590 846 0.400000 +1590 903 0.400000 +1590 1004 0.400000 +1590 1055 0.400000 +1590 1057 0.400000 +1590 1186 0.400000 +1590 1231 0.400000 +1590 1360 0.400000 +1590 1375 0.400000 +1590 1401 0.400000 +1590 1449 0.400000 +1590 1497 0.400000 +1590 1502 0.400000 +1590 1626 0.400000 +1590 1629 0.400000 +1590 1695 0.400000 +1590 1701 0.400000 +1590 1780 0.400000 +1590 1917 0.400000 +1590 2019 0.400000 +1590 2201 0.400000 +1590 2278 0.400000 +1590 2294 0.400000 +1590 2317 0.400000 +1590 2342 0.400000 +1590 2396 0.400000 +1590 2400 0.400000 +1590 2438 0.400000 +1590 2591 0.400000 +1590 2699 0.400000 +1590 2704 0.400000 +1590 2732 0.400000 +1590 2770 0.400000 +1590 2793 0.400000 +1590 2875 0.400000 +1590 2919 0.400000 +1590 2933 0.400000 +1590 2976 0.400000 +1590 2982 0.400000 +1590 3057 0.400000 +1590 3069 0.400000 +1590 3149 0.400000 +1591 76 0.400000 +1591 78 0.400000 +1591 102 0.400000 +1591 348 0.400000 +1591 369 0.400000 +1591 372 0.400000 +1591 403 0.400000 +1591 410 0.400000 +1591 421 0.400000 +1591 495 0.400000 +1591 503 0.400000 +1591 514 0.400000 +1591 517 0.400000 +1591 549 0.400000 +1591 622 0.400000 +1591 637 0.400000 +1591 690 0.400000 +1591 725 0.400000 +1591 767 0.400000 +1591 813 0.400000 +1591 849 0.400000 +1591 851 0.400000 +1591 893 0.400000 +1591 931 0.400000 +1591 943 0.400000 +1591 951 0.400000 +1591 974 0.400000 +1591 1110 0.400000 +1591 1129 0.400000 +1591 1195 0.400000 +1591 1324 0.400000 +1591 1365 0.400000 +1591 1404 0.400000 +1591 1470 0.400000 +1591 1512 0.400000 +1591 1524 0.400000 +1591 1536 0.400000 +1591 1539 0.400000 +1591 1591 0.400000 +1591 1653 0.400000 +1591 1726 0.400000 +1591 1753 0.400000 +1591 1756 0.400000 +1591 1907 0.400000 +1591 1937 0.400000 +1591 2048 0.400000 +1591 2069 0.400000 +1591 2090 0.400000 +1591 2094 0.400000 +1591 2145 0.400000 +1591 2195 0.400000 +1591 2213 0.400000 +1591 2357 0.400000 +1591 2510 0.400000 +1591 2612 0.400000 +1591 2736 0.400000 +1591 2760 0.400000 +1591 2841 0.400000 +1591 2894 0.400000 +1591 2982 0.400000 +1591 2983 0.400000 +1591 3157 0.400000 +1591 3159 0.400000 +1591 3197 0.400000 +1592 13 0.400000 +1592 37 0.400000 +1592 180 0.400000 +1592 191 0.400000 +1592 202 0.400000 +1592 339 0.400000 +1592 367 0.400000 +1592 410 0.400000 +1592 451 0.400000 +1592 456 0.400000 +1592 468 0.400000 +1592 502 0.400000 +1592 572 0.400000 +1592 618 0.400000 +1592 728 0.400000 +1592 799 0.400000 +1592 809 0.400000 +1592 814 0.400000 +1592 821 0.400000 +1592 837 0.400000 +1592 890 0.400000 +1592 929 0.400000 +1592 979 0.400000 +1592 985 0.400000 +1592 1029 0.400000 +1592 1037 0.400000 +1592 1046 0.400000 +1592 1090 0.400000 +1592 1179 0.400000 +1592 1215 0.400000 +1592 1248 0.400000 +1592 1313 0.400000 +1592 1320 0.400000 +1592 1353 0.400000 +1592 1364 0.400000 +1592 1368 0.400000 +1592 1371 0.400000 +1592 1426 0.400000 +1592 1456 0.400000 +1592 1542 0.400000 +1592 1580 0.400000 +1592 1583 0.400000 +1592 1618 0.400000 +1592 1709 0.400000 +1592 1751 0.400000 +1592 1770 0.400000 +1592 1771 0.400000 +1592 1779 0.400000 +1592 1792 0.400000 +1592 1846 0.400000 +1592 1953 0.400000 +1592 1995 0.400000 +1592 2072 0.400000 +1592 2142 0.400000 +1592 2173 0.400000 +1592 2226 0.400000 +1592 2242 0.400000 +1592 2262 0.400000 +1592 2270 0.400000 +1592 2355 0.400000 +1592 2357 0.400000 +1592 2536 0.400000 +1592 2622 0.400000 +1592 2728 0.400000 +1592 2730 0.400000 +1592 2731 0.400000 +1592 2760 0.400000 +1592 2822 0.400000 +1592 2825 0.400000 +1592 2848 0.400000 +1592 2901 0.400000 +1592 2998 0.400000 +1592 3028 0.400000 +1592 3067 0.400000 +1592 3070 0.400000 +1592 3156 0.400000 +1592 3175 0.400000 +1593 94 0.400000 +1593 191 0.400000 +1593 194 0.400000 +1593 209 0.400000 +1593 296 0.400000 +1593 302 0.400000 +1593 362 0.400000 +1593 364 0.400000 +1593 460 0.400000 +1593 502 0.400000 +1593 540 0.400000 +1593 739 0.400000 +1593 776 0.400000 +1593 822 0.400000 +1593 841 0.400000 +1593 877 0.400000 +1593 885 0.400000 +1593 980 0.400000 +1593 1033 0.400000 +1593 1172 0.400000 +1593 1222 0.400000 +1593 1227 0.400000 +1593 1253 0.400000 +1593 1266 0.400000 +1593 1292 0.400000 +1593 1443 0.400000 +1593 1477 0.400000 +1593 1633 0.400000 +1593 1912 0.400000 +1593 1999 0.400000 +1593 2096 0.400000 +1593 2184 0.400000 +1593 2207 0.400000 +1593 2214 0.400000 +1593 2218 0.400000 +1593 2364 0.400000 +1593 2369 0.400000 +1593 2438 0.400000 +1593 2470 0.400000 +1593 2482 0.400000 +1593 2543 0.400000 +1593 2561 0.400000 +1593 2584 0.400000 +1593 2603 0.400000 +1593 2617 0.400000 +1593 2657 0.400000 +1593 2665 0.400000 +1593 2732 0.400000 +1593 2790 0.400000 +1593 2797 0.400000 +1593 2874 0.400000 +1593 2970 0.400000 +1593 3120 0.400000 +1593 3161 0.400000 +1593 3174 0.400000 +1594 2 0.400000 +1594 50 0.400000 +1594 130 0.400000 +1594 131 0.400000 +1594 159 0.400000 +1594 198 0.400000 +1594 203 0.400000 +1594 223 0.400000 +1594 242 0.400000 +1594 310 0.400000 +1594 359 0.400000 +1594 370 0.400000 +1594 399 0.400000 +1594 458 0.400000 +1594 531 0.400000 +1594 533 0.400000 +1594 534 0.400000 +1594 601 0.400000 +1594 689 0.400000 +1594 744 0.400000 +1594 801 0.400000 +1594 842 0.400000 +1594 973 0.400000 +1594 982 0.400000 +1594 1035 0.400000 +1594 1041 0.400000 +1594 1044 0.400000 +1594 1067 0.400000 +1594 1073 0.400000 +1594 1082 0.400000 +1594 1167 0.400000 +1594 1174 0.400000 +1594 1215 0.400000 +1594 1345 0.400000 +1594 1355 0.400000 +1594 1423 0.400000 +1594 1445 0.400000 +1594 1513 0.400000 +1594 1589 0.400000 +1594 1628 0.400000 +1594 1668 0.400000 +1594 1683 0.400000 +1594 1711 0.400000 +1594 1723 0.400000 +1594 1727 0.400000 +1594 1796 0.400000 +1594 1822 0.400000 +1594 1868 0.400000 +1594 1881 0.400000 +1594 1974 0.400000 +1594 2002 0.400000 +1594 2258 0.400000 +1594 2287 0.400000 +1594 2365 0.400000 +1594 2456 0.400000 +1594 2509 0.400000 +1594 2542 0.400000 +1594 2619 0.400000 +1594 2678 0.400000 +1594 2684 0.400000 +1594 2688 0.400000 +1594 2730 0.400000 +1594 2793 0.400000 +1594 2808 0.400000 +1594 2842 0.400000 +1594 3002 0.400000 +1594 3026 0.400000 +1594 3094 0.400000 +1594 3111 0.400000 +1594 3149 0.400000 +1594 3159 0.400000 +1595 133 0.400000 +1595 150 0.400000 +1595 160 0.400000 +1595 212 0.400000 +1595 251 0.400000 +1595 258 0.400000 +1595 276 0.400000 +1595 319 0.400000 +1595 377 0.400000 +1595 400 0.400000 +1595 401 0.400000 +1595 447 0.400000 +1595 508 0.400000 +1595 669 0.400000 +1595 693 0.400000 +1595 704 0.400000 +1595 845 0.400000 +1595 904 0.400000 +1595 964 0.400000 +1595 983 0.400000 +1595 1077 0.400000 +1595 1147 0.400000 +1595 1167 0.400000 +1595 1207 0.400000 +1595 1223 0.400000 +1595 1251 0.400000 +1595 1258 0.400000 +1595 1392 0.400000 +1595 1412 0.400000 +1595 1446 0.400000 +1595 1458 0.400000 +1595 1459 0.400000 +1595 1482 0.400000 +1595 1911 0.400000 +1595 2093 0.400000 +1595 2119 0.400000 +1595 2164 0.400000 +1595 2169 0.400000 +1595 2192 0.400000 +1595 2209 0.400000 +1595 2217 0.400000 +1595 2343 0.400000 +1595 2383 0.400000 +1595 2399 0.400000 +1595 2472 0.400000 +1595 2534 0.400000 +1595 2580 0.400000 +1595 2711 0.400000 +1595 2819 0.400000 +1595 3054 0.400000 +1595 3094 0.400000 +1595 3129 0.400000 +1595 3140 0.400000 +1596 66 0.400000 +1596 182 0.400000 +1596 245 0.400000 +1596 290 0.400000 +1596 319 0.400000 +1596 351 0.400000 +1596 473 0.400000 +1596 514 0.400000 +1596 577 0.400000 +1596 674 0.400000 +1596 724 0.400000 +1596 810 0.400000 +1596 828 0.400000 +1596 835 0.400000 +1596 963 0.400000 +1596 1018 0.400000 +1596 1079 0.400000 +1596 1081 0.400000 +1596 1136 0.400000 +1596 1142 0.400000 +1596 1190 0.400000 +1596 1227 0.400000 +1596 1229 0.400000 +1596 1251 0.400000 +1596 1285 0.400000 +1596 1309 0.400000 +1596 1455 0.400000 +1596 1457 0.400000 +1596 1476 0.400000 +1596 1484 0.400000 +1596 1500 0.400000 +1596 1508 0.400000 +1596 1513 0.400000 +1596 1525 0.400000 +1596 1556 0.400000 +1596 1558 0.400000 +1596 1566 0.400000 +1596 1634 0.400000 +1596 1640 0.400000 +1596 1740 0.400000 +1596 1782 0.400000 +1596 1799 0.400000 +1596 1915 0.400000 +1596 2010 0.400000 +1596 2015 0.400000 +1596 2060 0.400000 +1596 2083 0.400000 +1596 2089 0.400000 +1596 2111 0.400000 +1596 2142 0.400000 +1596 2262 0.400000 +1596 2304 0.400000 +1596 2320 0.400000 +1596 2425 0.400000 +1596 2488 0.400000 +1596 2703 0.400000 +1596 2751 0.400000 +1596 2813 0.400000 +1596 2845 0.400000 +1596 2847 0.400000 +1596 2888 0.400000 +1596 2922 0.400000 +1596 2953 0.400000 +1596 2989 0.400000 +1596 2993 0.400000 +1596 3092 0.400000 +1596 3140 0.400000 +1596 3141 0.400000 +1596 3188 0.400000 +1596 3189 0.400000 +1597 92 0.400000 +1597 168 0.400000 +1597 206 0.400000 +1597 213 0.400000 +1597 291 0.400000 +1597 380 0.400000 +1597 405 0.400000 +1597 433 0.400000 +1597 451 0.400000 +1597 454 0.400000 +1597 519 0.400000 +1597 523 0.400000 +1597 576 0.400000 +1597 648 0.400000 +1597 663 0.400000 +1597 680 0.400000 +1597 777 0.400000 +1597 799 0.400000 +1597 922 0.400000 +1597 931 0.400000 +1597 943 0.400000 +1597 958 0.400000 +1597 983 0.400000 +1597 1030 0.400000 +1597 1040 0.400000 +1597 1080 0.400000 +1597 1114 0.400000 +1597 1131 0.400000 +1597 1170 0.400000 +1597 1220 0.400000 +1597 1244 0.400000 +1597 1290 0.400000 +1597 1341 0.400000 +1597 1402 0.400000 +1597 1431 0.400000 +1597 1447 0.400000 +1597 1548 0.400000 +1597 1593 0.400000 +1597 1605 0.400000 +1597 1610 0.400000 +1597 1699 0.400000 +1597 1704 0.400000 +1597 1869 0.400000 +1597 1885 0.400000 +1597 1891 0.400000 +1597 1900 0.400000 +1597 1917 0.400000 +1597 1944 0.400000 +1597 1950 0.400000 +1597 1978 0.400000 +1597 1986 0.400000 +1597 1995 0.400000 +1597 2155 0.400000 +1597 2171 0.400000 +1597 2281 0.400000 +1597 2355 0.400000 +1597 2378 0.400000 +1597 2421 0.400000 +1597 2503 0.400000 +1597 2605 0.400000 +1597 2626 0.400000 +1597 2642 0.400000 +1597 2664 0.400000 +1597 2685 0.400000 +1597 2742 0.400000 +1597 2858 0.400000 +1597 2952 0.400000 +1597 2956 0.400000 +1597 3002 0.400000 +1597 3060 0.400000 +1597 3066 0.400000 +1597 3135 0.400000 +1597 3143 0.400000 +1598 36 0.400000 +1598 67 0.400000 +1598 129 0.400000 +1598 131 0.400000 +1598 154 0.400000 +1598 165 0.400000 +1598 369 0.400000 +1598 400 0.400000 +1598 456 0.400000 +1598 523 0.400000 +1598 573 0.400000 +1598 671 0.400000 +1598 701 0.400000 +1598 705 0.400000 +1598 732 0.400000 +1598 762 0.400000 +1598 778 0.400000 +1598 898 0.400000 +1598 920 0.400000 +1598 946 0.400000 +1598 954 0.400000 +1598 1005 0.400000 +1598 1050 0.400000 +1598 1107 0.400000 +1598 1170 0.400000 +1598 1274 0.400000 +1598 1348 0.400000 +1598 1382 0.400000 +1598 1427 0.400000 +1598 1445 0.400000 +1598 1546 0.400000 +1598 1579 0.400000 +1598 1615 0.400000 +1598 1622 0.400000 +1598 1730 0.400000 +1598 1793 0.400000 +1598 1872 0.400000 +1598 1923 0.400000 +1598 1962 0.400000 +1598 1975 0.400000 +1598 1981 0.400000 +1598 2001 0.400000 +1598 2053 0.400000 +1598 2067 0.400000 +1598 2076 0.400000 +1598 2077 0.400000 +1598 2089 0.400000 +1598 2095 0.400000 +1598 2102 0.400000 +1598 2164 0.400000 +1598 2165 0.400000 +1598 2252 0.400000 +1598 2274 0.400000 +1598 2352 0.400000 +1598 2406 0.400000 +1598 2561 0.400000 +1598 2613 0.400000 +1598 2640 0.400000 +1598 2656 0.400000 +1598 2672 0.400000 +1598 2688 0.400000 +1598 2700 0.400000 +1598 2717 0.400000 +1598 2786 0.400000 +1598 2880 0.400000 +1598 2888 0.400000 +1598 3058 0.400000 +1598 3079 0.400000 +1598 3111 0.400000 +1598 3116 0.400000 +1599 48 0.400000 +1599 113 0.400000 +1599 219 0.400000 +1599 225 0.400000 +1599 241 0.400000 +1599 276 0.400000 +1599 316 0.400000 +1599 375 0.400000 +1599 393 0.400000 +1599 478 0.400000 +1599 510 0.400000 +1599 591 0.400000 +1599 611 0.400000 +1599 658 0.400000 +1599 757 0.400000 +1599 801 0.400000 +1599 816 0.400000 +1599 844 0.400000 +1599 993 0.400000 +1599 1000 0.400000 +1599 1048 0.400000 +1599 1223 0.400000 +1599 1224 0.400000 +1599 1231 0.400000 +1599 1252 0.400000 +1599 1331 0.400000 +1599 1355 0.400000 +1599 1408 0.400000 +1599 1481 0.400000 +1599 1534 0.400000 +1599 1618 0.400000 +1599 1630 0.400000 +1599 1799 0.400000 +1599 1822 0.400000 +1599 1851 0.400000 +1599 1870 0.400000 +1599 1920 0.400000 +1599 1947 0.400000 +1599 1964 0.400000 +1599 2009 0.400000 +1599 2029 0.400000 +1599 2115 0.400000 +1599 2140 0.400000 +1599 2310 0.400000 +1599 2358 0.400000 +1599 2365 0.400000 +1599 2470 0.400000 +1599 2520 0.400000 +1599 2586 0.400000 +1599 2732 0.400000 +1599 2802 0.400000 +1599 2836 0.400000 +1599 2861 0.400000 +1599 2962 0.400000 +1599 2970 0.400000 +1599 3022 0.400000 +1600 4 0.400000 +1600 43 0.400000 +1600 167 0.400000 +1600 175 0.400000 +1600 224 0.400000 +1600 308 0.400000 +1600 381 0.400000 +1600 432 0.400000 +1600 494 0.400000 +1600 498 0.400000 +1600 660 0.400000 +1600 731 0.400000 +1600 761 0.400000 +1600 763 0.400000 +1600 912 0.400000 +1600 933 0.400000 +1600 1003 0.400000 +1600 1050 0.400000 +1600 1086 0.400000 +1600 1141 0.400000 +1600 1210 0.400000 +1600 1276 0.400000 +1600 1412 0.400000 +1600 1466 0.400000 +1600 1771 0.400000 +1600 1777 0.400000 +1600 1796 0.400000 +1600 1798 0.400000 +1600 1974 0.400000 +1600 2048 0.400000 +1600 2126 0.400000 +1600 2134 0.400000 +1600 2194 0.400000 +1600 2199 0.400000 +1600 2313 0.400000 +1600 2329 0.400000 +1600 2354 0.400000 +1600 2403 0.400000 +1600 2423 0.400000 +1600 2448 0.400000 +1600 2460 0.400000 +1600 2483 0.400000 +1600 2531 0.400000 +1600 2541 0.400000 +1600 2555 0.400000 +1600 2567 0.400000 +1600 2614 0.400000 +1600 2625 0.400000 +1600 2685 0.400000 +1600 2730 0.400000 +1600 2754 0.400000 +1600 2767 0.400000 +1600 2820 0.400000 +1600 2863 0.400000 +1600 2868 0.400000 +1600 2885 0.400000 +1600 2898 0.400000 +1600 2939 0.400000 +1600 3094 0.400000 +1600 3116 0.400000 +1600 3157 0.400000 +1600 3172 0.400000 +1601 34 0.400000 +1601 89 0.400000 +1601 154 0.400000 +1601 187 0.400000 +1601 204 0.400000 +1601 244 0.400000 +1601 266 0.400000 +1601 285 0.400000 +1601 344 0.400000 +1601 413 0.400000 +1601 467 0.400000 +1601 486 0.400000 +1601 518 0.400000 +1601 545 0.400000 +1601 560 0.400000 +1601 619 0.400000 +1601 632 0.400000 +1601 638 0.400000 +1601 702 0.400000 +1601 855 0.400000 +1601 873 0.400000 +1601 898 0.400000 +1601 949 0.400000 +1601 1010 0.400000 +1601 1132 0.400000 +1601 1138 0.400000 +1601 1200 0.400000 +1601 1227 0.400000 +1601 1229 0.400000 +1601 1242 0.400000 +1601 1313 0.400000 +1601 1331 0.400000 +1601 1416 0.400000 +1601 1466 0.400000 +1601 1556 0.400000 +1601 1578 0.400000 +1601 1593 0.400000 +1601 1630 0.400000 +1601 1683 0.400000 +1601 1723 0.400000 +1601 1733 0.400000 +1601 1759 0.400000 +1601 1780 0.400000 +1601 1893 0.400000 +1601 1967 0.400000 +1601 1996 0.400000 +1601 2002 0.400000 +1601 2017 0.400000 +1601 2026 0.400000 +1601 2060 0.400000 +1601 2165 0.400000 +1601 2177 0.400000 +1601 2180 0.400000 +1601 2221 0.400000 +1601 2227 0.400000 +1601 2254 0.400000 +1601 2355 0.400000 +1601 2376 0.400000 +1601 2386 0.400000 +1601 2425 0.400000 +1601 2436 0.400000 +1601 2438 0.400000 +1601 2520 0.400000 +1601 2540 0.400000 +1601 2548 0.400000 +1601 2672 0.400000 +1601 2680 0.400000 +1601 2726 0.400000 +1601 2790 0.400000 +1601 2854 0.400000 +1601 2869 0.400000 +1601 2884 0.400000 +1601 2970 0.400000 +1601 2973 0.400000 +1601 3021 0.400000 +1601 3086 0.400000 +1601 3089 0.400000 +1601 3095 0.400000 +1601 3133 0.400000 +1602 16 0.400000 +1602 31 0.400000 +1602 40 0.400000 +1602 108 0.400000 +1602 133 0.400000 +1602 155 0.400000 +1602 172 0.400000 +1602 184 0.400000 +1602 244 0.400000 +1602 304 0.400000 +1602 367 0.400000 +1602 387 0.400000 +1602 410 0.400000 +1602 424 0.400000 +1602 459 0.400000 +1602 461 0.400000 +1602 667 0.400000 +1602 721 0.400000 +1602 877 0.400000 +1602 884 0.400000 +1602 989 0.400000 +1602 1011 0.400000 +1602 1022 0.400000 +1602 1057 0.400000 +1602 1099 0.400000 +1602 1148 0.400000 +1602 1170 0.400000 +1602 1179 0.400000 +1602 1189 0.400000 +1602 1211 0.400000 +1602 1256 0.400000 +1602 1258 0.400000 +1602 1274 0.400000 +1602 1344 0.400000 +1602 1379 0.400000 +1602 1418 0.400000 +1602 1621 0.400000 +1602 1638 0.400000 +1602 1807 0.400000 +1602 1813 0.400000 +1602 1823 0.400000 +1602 1867 0.400000 +1602 1939 0.400000 +1602 1957 0.400000 +1602 2175 0.400000 +1602 2227 0.400000 +1602 2237 0.400000 +1602 2268 0.400000 +1602 2305 0.400000 +1602 2511 0.400000 +1602 2521 0.400000 +1602 2538 0.400000 +1602 2560 0.400000 +1602 2686 0.400000 +1602 2745 0.400000 +1602 2902 0.400000 +1602 2976 0.400000 +1602 3073 0.400000 +1602 3114 0.400000 +1602 3145 0.400000 +1602 3149 0.400000 +1602 3179 0.400000 +1603 28 0.400000 +1603 79 0.400000 +1603 135 0.400000 +1603 141 0.400000 +1603 156 0.400000 +1603 223 0.400000 +1603 247 0.400000 +1603 283 0.400000 +1603 466 0.400000 +1603 493 0.400000 +1603 554 0.400000 +1603 614 0.400000 +1603 615 0.400000 +1603 623 0.400000 +1603 631 0.400000 +1603 682 0.400000 +1603 707 0.400000 +1603 737 0.400000 +1603 953 0.400000 +1603 993 0.400000 +1603 995 0.400000 +1603 1023 0.400000 +1603 1066 0.400000 +1603 1085 0.400000 +1603 1092 0.400000 +1603 1113 0.400000 +1603 1276 0.400000 +1603 1346 0.400000 +1603 1469 0.400000 +1603 1476 0.400000 +1603 1617 0.400000 +1603 1637 0.400000 +1603 1638 0.400000 +1603 1647 0.400000 +1603 1672 0.400000 +1603 1698 0.400000 +1603 1700 0.400000 +1603 1714 0.400000 +1603 1780 0.400000 +1603 1791 0.400000 +1603 1857 0.400000 +1603 1861 0.400000 +1603 1937 0.400000 +1603 2032 0.400000 +1603 2083 0.400000 +1603 2097 0.400000 +1603 2120 0.400000 +1603 2157 0.400000 +1603 2211 0.400000 +1603 2228 0.400000 +1603 2245 0.400000 +1603 2253 0.400000 +1603 2354 0.400000 +1603 2370 0.400000 +1603 2382 0.400000 +1603 2473 0.400000 +1603 2529 0.400000 +1603 2606 0.400000 +1603 2622 0.400000 +1603 2643 0.400000 +1603 2654 0.400000 +1603 2666 0.400000 +1603 2670 0.400000 +1603 2726 0.400000 +1603 2732 0.400000 +1603 2796 0.400000 +1603 2979 0.400000 +1603 3047 0.400000 +1603 3078 0.400000 +1604 14 0.400000 +1604 55 0.400000 +1604 81 0.400000 +1604 203 0.400000 +1604 254 0.400000 +1604 490 0.400000 +1604 501 0.400000 +1604 550 0.400000 +1604 593 0.400000 +1604 615 0.400000 +1604 628 0.400000 +1604 752 0.400000 +1604 763 0.400000 +1604 818 0.400000 +1604 867 0.400000 +1604 898 0.400000 +1604 1086 0.400000 +1604 1092 0.400000 +1604 1137 0.400000 +1604 1147 0.400000 +1604 1262 0.400000 +1604 1316 0.400000 +1604 1319 0.400000 +1604 1347 0.400000 +1604 1454 0.400000 +1604 1508 0.400000 +1604 1529 0.400000 +1604 1537 0.400000 +1604 1539 0.400000 +1604 1568 0.400000 +1604 1611 0.400000 +1604 1632 0.400000 +1604 1702 0.400000 +1604 1966 0.400000 +1604 1970 0.400000 +1604 2066 0.400000 +1604 2070 0.400000 +1604 2076 0.400000 +1604 2192 0.400000 +1604 2241 0.400000 +1604 2344 0.400000 +1604 2373 0.400000 +1604 2375 0.400000 +1604 2392 0.400000 +1604 2424 0.400000 +1604 2666 0.400000 +1604 2680 0.400000 +1604 2690 0.400000 +1604 2738 0.400000 +1604 2912 0.400000 +1604 3055 0.400000 +1604 3068 0.400000 +1604 3086 0.400000 +1604 3102 0.400000 +1604 3155 0.400000 +1605 16 0.400000 +1605 105 0.400000 +1605 186 0.400000 +1605 232 0.400000 +1605 240 0.400000 +1605 356 0.400000 +1605 378 0.400000 +1605 408 0.400000 +1605 416 0.400000 +1605 513 0.400000 +1605 627 0.400000 +1605 642 0.400000 +1605 727 0.400000 +1605 753 0.400000 +1605 754 0.400000 +1605 915 0.400000 +1605 917 0.400000 +1605 1048 0.400000 +1605 1058 0.400000 +1605 1074 0.400000 +1605 1117 0.400000 +1605 1147 0.400000 +1605 1251 0.400000 +1605 1263 0.400000 +1605 1282 0.400000 +1605 1326 0.400000 +1605 1331 0.400000 +1605 1386 0.400000 +1605 1412 0.400000 +1605 1439 0.400000 +1605 1462 0.400000 +1605 1469 0.400000 +1605 1628 0.400000 +1605 1662 0.400000 +1605 1706 0.400000 +1605 1833 0.400000 +1605 1855 0.400000 +1605 1859 0.400000 +1605 1934 0.400000 +1605 1937 0.400000 +1605 1959 0.400000 +1605 1990 0.400000 +1605 2042 0.400000 +1605 2080 0.400000 +1605 2301 0.400000 +1605 2333 0.400000 +1605 2435 0.400000 +1605 2516 0.400000 +1605 2533 0.400000 +1605 2593 0.400000 +1605 2644 0.400000 +1605 2713 0.400000 +1605 2732 0.400000 +1605 2760 0.400000 +1605 2961 0.400000 +1605 2983 0.400000 +1605 2998 0.400000 +1605 3054 0.400000 +1605 3071 0.400000 +1605 3089 0.400000 +1605 3149 0.400000 +1605 3162 0.400000 +1605 3181 0.400000 +1606 45 0.400000 +1606 135 0.400000 +1606 191 0.400000 +1606 195 0.400000 +1606 276 0.400000 +1606 296 0.400000 +1606 381 0.400000 +1606 420 0.400000 +1606 422 0.400000 +1606 484 0.400000 +1606 491 0.400000 +1606 496 0.400000 +1606 556 0.400000 +1606 609 0.400000 +1606 678 0.400000 +1606 713 0.400000 +1606 721 0.400000 +1606 789 0.400000 +1606 802 0.400000 +1606 895 0.400000 +1606 943 0.400000 +1606 954 0.400000 +1606 957 0.400000 +1606 966 0.400000 +1606 1075 0.400000 +1606 1302 0.400000 +1606 1324 0.400000 +1606 1422 0.400000 +1606 1460 0.400000 +1606 1494 0.400000 +1606 1676 0.400000 +1606 1679 0.400000 +1606 1709 0.400000 +1606 1723 0.400000 +1606 1742 0.400000 +1606 1886 0.400000 +1606 1895 0.400000 +1606 1912 0.400000 +1606 1923 0.400000 +1606 2008 0.400000 +1606 2074 0.400000 +1606 2135 0.400000 +1606 2217 0.400000 +1606 2219 0.400000 +1606 2224 0.400000 +1606 2268 0.400000 +1606 2293 0.400000 +1606 2335 0.400000 +1606 2339 0.400000 +1606 2379 0.400000 +1606 2401 0.400000 +1606 2423 0.400000 +1606 2426 0.400000 +1606 2475 0.400000 +1606 2585 0.400000 +1606 2592 0.400000 +1606 2594 0.400000 +1606 2632 0.400000 +1606 2686 0.400000 +1606 2710 0.400000 +1606 2749 0.400000 +1606 2844 0.400000 +1606 2864 0.400000 +1606 2951 0.400000 +1606 2968 0.400000 +1606 3035 0.400000 +1606 3038 0.400000 +1606 3047 0.400000 +1606 3092 0.400000 +1606 3184 0.400000 +1607 21 0.400000 +1607 23 0.400000 +1607 78 0.400000 +1607 103 0.400000 +1607 193 0.400000 +1607 288 0.400000 +1607 420 0.400000 +1607 421 0.400000 +1607 559 0.400000 +1607 571 0.400000 +1607 626 0.400000 +1607 742 0.400000 +1607 892 0.400000 +1607 904 0.400000 +1607 1118 0.400000 +1607 1179 0.400000 +1607 1239 0.400000 +1607 1299 0.400000 +1607 1456 0.400000 +1607 1490 0.400000 +1607 1527 0.400000 +1607 1552 0.400000 +1607 1565 0.400000 +1607 1582 0.400000 +1607 1654 0.400000 +1607 1666 0.400000 +1607 1707 0.400000 +1607 1729 0.400000 +1607 1774 0.400000 +1607 1808 0.400000 +1607 1812 0.400000 +1607 1851 0.400000 +1607 1921 0.400000 +1607 1951 0.400000 +1607 1954 0.400000 +1607 2014 0.400000 +1607 2023 0.400000 +1607 2024 0.400000 +1607 2047 0.400000 +1607 2083 0.400000 +1607 2084 0.400000 +1607 2092 0.400000 +1607 2101 0.400000 +1607 2138 0.400000 +1607 2155 0.400000 +1607 2167 0.400000 +1607 2210 0.400000 +1607 2222 0.400000 +1607 2291 0.400000 +1607 2394 0.400000 +1607 2414 0.400000 +1607 2439 0.400000 +1607 2494 0.400000 +1607 2503 0.400000 +1607 2554 0.400000 +1607 2612 0.400000 +1607 2628 0.400000 +1607 2653 0.400000 +1607 2662 0.400000 +1607 2680 0.400000 +1607 2696 0.400000 +1607 2740 0.400000 +1607 2798 0.400000 +1607 2849 0.400000 +1607 2871 0.400000 +1607 3069 0.400000 +1607 3094 0.400000 +1607 3155 0.400000 +1607 3184 0.400000 +1608 9 0.400000 +1608 48 0.400000 +1608 86 0.400000 +1608 138 0.400000 +1608 304 0.400000 +1608 325 0.400000 +1608 353 0.400000 +1608 392 0.400000 +1608 413 0.400000 +1608 524 0.400000 +1608 684 0.400000 +1608 693 0.400000 +1608 726 0.400000 +1608 836 0.400000 +1608 890 0.400000 +1608 952 0.400000 +1608 1000 0.400000 +1608 1105 0.400000 +1608 1116 0.400000 +1608 1124 0.400000 +1608 1178 0.400000 +1608 1235 0.400000 +1608 1262 0.400000 +1608 1320 0.400000 +1608 1636 0.400000 +1608 1653 0.400000 +1608 1722 0.400000 +1608 1776 0.400000 +1608 1815 0.400000 +1608 1848 0.400000 +1608 1885 0.400000 +1608 1950 0.400000 +1608 1957 0.400000 +1608 1978 0.400000 +1608 1983 0.400000 +1608 2034 0.400000 +1608 2040 0.400000 +1608 2162 0.400000 +1608 2192 0.400000 +1608 2201 0.400000 +1608 2226 0.400000 +1608 2261 0.400000 +1608 2316 0.400000 +1608 2355 0.400000 +1608 2356 0.400000 +1608 2357 0.400000 +1608 2364 0.400000 +1608 2371 0.400000 +1608 2400 0.400000 +1608 2405 0.400000 +1608 2480 0.400000 +1608 2481 0.400000 +1608 2507 0.400000 +1608 2508 0.400000 +1608 2525 0.400000 +1608 2606 0.400000 +1608 2704 0.400000 +1608 2730 0.400000 +1608 2801 0.400000 +1608 2814 0.400000 +1608 2839 0.400000 +1608 2883 0.400000 +1608 2899 0.400000 +1608 2909 0.400000 +1608 2950 0.400000 +1608 3049 0.400000 +1608 3074 0.400000 +1608 3128 0.400000 +1609 46 0.400000 +1609 139 0.400000 +1609 163 0.400000 +1609 177 0.400000 +1609 212 0.400000 +1609 259 0.400000 +1609 296 0.400000 +1609 323 0.400000 +1609 353 0.400000 +1609 545 0.400000 +1609 603 0.400000 +1609 613 0.400000 +1609 616 0.400000 +1609 655 0.400000 +1609 683 0.400000 +1609 731 0.400000 +1609 759 0.400000 +1609 775 0.400000 +1609 1024 0.400000 +1609 1056 0.400000 +1609 1067 0.400000 +1609 1159 0.400000 +1609 1174 0.400000 +1609 1238 0.400000 +1609 1239 0.400000 +1609 1303 0.400000 +1609 1336 0.400000 +1609 1398 0.400000 +1609 1436 0.400000 +1609 1458 0.400000 +1609 1462 0.400000 +1609 1508 0.400000 +1609 1521 0.400000 +1609 1592 0.400000 +1609 1756 0.400000 +1609 1772 0.400000 +1609 1782 0.400000 +1609 1806 0.400000 +1609 1810 0.400000 +1609 1946 0.400000 +1609 2147 0.400000 +1609 2151 0.400000 +1609 2206 0.400000 +1609 2287 0.400000 +1609 2474 0.400000 +1609 2559 0.400000 +1609 2628 0.400000 +1609 2666 0.400000 +1609 2736 0.400000 +1609 2767 0.400000 +1609 2770 0.400000 +1609 2822 0.400000 +1609 2863 0.400000 +1609 2912 0.400000 +1609 2992 0.400000 +1609 3018 0.400000 +1609 3037 0.400000 +1609 3078 0.400000 +1609 3081 0.400000 +1609 3148 0.400000 +1610 21 0.400000 +1610 45 0.400000 +1610 47 0.400000 +1610 123 0.400000 +1610 168 0.400000 +1610 198 0.400000 +1610 246 0.400000 +1610 254 0.400000 +1610 288 0.400000 +1610 302 0.400000 +1610 362 0.400000 +1610 370 0.400000 +1610 420 0.400000 +1610 489 0.400000 +1610 550 0.400000 +1610 572 0.400000 +1610 621 0.400000 +1610 670 0.400000 +1610 742 0.400000 +1610 743 0.400000 +1610 786 0.400000 +1610 816 0.400000 +1610 915 0.400000 +1610 1058 0.400000 +1610 1065 0.400000 +1610 1146 0.400000 +1610 1147 0.400000 +1610 1164 0.400000 +1610 1236 0.400000 +1610 1258 0.400000 +1610 1272 0.400000 +1610 1287 0.400000 +1610 1312 0.400000 +1610 1346 0.400000 +1610 1378 0.400000 +1610 1382 0.400000 +1610 1400 0.400000 +1610 1429 0.400000 +1610 1580 0.400000 +1610 1591 0.400000 +1610 1606 0.400000 +1610 1612 0.400000 +1610 1616 0.400000 +1610 1669 0.400000 +1610 1702 0.400000 +1610 1793 0.400000 +1610 1818 0.400000 +1610 1923 0.400000 +1610 1960 0.400000 +1610 1987 0.400000 +1610 2045 0.400000 +1610 2047 0.400000 +1610 2135 0.400000 +1610 2157 0.400000 +1610 2243 0.400000 +1610 2296 0.400000 +1610 2312 0.400000 +1610 2330 0.400000 +1610 2349 0.400000 +1610 2358 0.400000 +1610 2503 0.400000 +1610 2610 0.400000 +1610 2763 0.400000 +1610 2764 0.400000 +1610 2768 0.400000 +1610 2792 0.400000 +1610 2806 0.400000 +1610 2848 0.400000 +1610 3073 0.400000 +1610 3156 0.400000 +1611 5 0.400000 +1611 13 0.400000 +1611 102 0.400000 +1611 174 0.400000 +1611 182 0.400000 +1611 187 0.400000 +1611 191 0.400000 +1611 230 0.400000 +1611 265 0.400000 +1611 289 0.400000 +1611 352 0.400000 +1611 359 0.400000 +1611 425 0.400000 +1611 490 0.400000 +1611 538 0.400000 +1611 591 0.400000 +1611 609 0.400000 +1611 622 0.400000 +1611 638 0.400000 +1611 688 0.400000 +1611 692 0.400000 +1611 693 0.400000 +1611 707 0.400000 +1611 720 0.400000 +1611 747 0.400000 +1611 782 0.400000 +1611 801 0.400000 +1611 882 0.400000 +1611 956 0.400000 +1611 985 0.400000 +1611 1075 0.400000 +1611 1129 0.400000 +1611 1178 0.400000 +1611 1227 0.400000 +1611 1229 0.400000 +1611 1241 0.400000 +1611 1263 0.400000 +1611 1306 0.400000 +1611 1367 0.400000 +1611 1400 0.400000 +1611 1406 0.400000 +1611 1459 0.400000 +1611 1471 0.400000 +1611 1521 0.400000 +1611 1525 0.400000 +1611 1589 0.400000 +1611 1612 0.400000 +1611 1657 0.400000 +1611 1679 0.400000 +1611 1798 0.400000 +1611 1821 0.400000 +1611 1900 0.400000 +1611 2011 0.400000 +1611 2029 0.400000 +1611 2045 0.400000 +1611 2069 0.400000 +1611 2076 0.400000 +1611 2082 0.400000 +1611 2148 0.400000 +1611 2228 0.400000 +1611 2247 0.400000 +1611 2338 0.400000 +1611 2423 0.400000 +1611 2632 0.400000 +1611 2637 0.400000 +1611 2727 0.400000 +1611 2732 0.400000 +1611 2763 0.400000 +1611 2766 0.400000 +1611 2851 0.400000 +1611 2885 0.400000 +1611 2929 0.400000 +1611 2940 0.400000 +1611 3119 0.400000 +1611 3164 0.400000 +1611 3196 0.400000 +1612 19 0.400000 +1612 117 0.400000 +1612 145 0.400000 +1612 225 0.400000 +1612 230 0.400000 +1612 236 0.400000 +1612 268 0.400000 +1612 317 0.400000 +1612 480 0.400000 +1612 549 0.400000 +1612 615 0.400000 +1612 659 0.400000 +1612 820 0.400000 +1612 905 0.400000 +1612 908 0.400000 +1612 926 0.400000 +1612 929 0.400000 +1612 933 0.400000 +1612 949 0.400000 +1612 952 0.400000 +1612 1004 0.400000 +1612 1063 0.400000 +1612 1088 0.400000 +1612 1105 0.400000 +1612 1125 0.400000 +1612 1278 0.400000 +1612 1401 0.400000 +1612 1421 0.400000 +1612 1442 0.400000 +1612 1462 0.400000 +1612 1468 0.400000 +1612 1483 0.400000 +1612 1565 0.400000 +1612 1705 0.400000 +1612 1731 0.400000 +1612 1737 0.400000 +1612 1765 0.400000 +1612 1850 0.400000 +1612 1926 0.400000 +1612 1930 0.400000 +1612 1935 0.400000 +1612 1959 0.400000 +1612 1964 0.400000 +1612 2031 0.400000 +1612 2049 0.400000 +1612 2059 0.400000 +1612 2105 0.400000 +1612 2114 0.400000 +1612 2168 0.400000 +1612 2233 0.400000 +1612 2250 0.400000 +1612 2327 0.400000 +1612 2382 0.400000 +1612 2410 0.400000 +1612 2448 0.400000 +1612 2461 0.400000 +1612 2484 0.400000 +1612 2607 0.400000 +1612 2625 0.400000 +1612 2727 0.400000 +1612 2784 0.400000 +1612 2818 0.400000 +1612 2874 0.400000 +1612 2883 0.400000 +1612 2901 0.400000 +1612 2931 0.400000 +1612 2967 0.400000 +1612 3026 0.400000 +1612 3048 0.400000 +1612 3090 0.400000 +1612 3158 0.400000 +1612 3195 0.400000 +1613 25 0.400000 +1613 188 0.400000 +1613 199 0.400000 +1613 211 0.400000 +1613 218 0.400000 +1613 255 0.400000 +1613 309 0.400000 +1613 364 0.400000 +1613 446 0.400000 +1613 487 0.400000 +1613 520 0.400000 +1613 654 0.400000 +1613 791 0.400000 +1613 867 0.400000 +1613 951 0.400000 +1613 968 0.400000 +1613 1103 0.400000 +1613 1204 0.400000 +1613 1302 0.400000 +1613 1314 0.400000 +1613 1342 0.400000 +1613 1363 0.400000 +1613 1364 0.400000 +1613 1392 0.400000 +1613 1558 0.400000 +1613 1584 0.400000 +1613 1593 0.400000 +1613 1604 0.400000 +1613 1707 0.400000 +1613 1715 0.400000 +1613 1743 0.400000 +1613 1757 0.400000 +1613 1759 0.400000 +1613 1805 0.400000 +1613 1850 0.400000 +1613 1860 0.400000 +1613 1976 0.400000 +1613 2102 0.400000 +1613 2210 0.400000 +1613 2255 0.400000 +1613 2311 0.400000 +1613 2345 0.400000 +1613 2365 0.400000 +1613 2383 0.400000 +1613 2404 0.400000 +1613 2476 0.400000 +1613 2545 0.400000 +1613 2646 0.400000 +1613 2744 0.400000 +1613 2766 0.400000 +1613 3046 0.400000 +1613 3055 0.400000 +1613 3146 0.400000 +1614 78 0.400000 +1614 84 0.400000 +1614 188 0.400000 +1614 445 0.400000 +1614 491 0.400000 +1614 536 0.400000 +1614 544 0.400000 +1614 550 0.400000 +1614 706 0.400000 +1614 711 0.400000 +1614 769 0.400000 +1614 801 0.400000 +1614 832 0.400000 +1614 889 0.400000 +1614 931 0.400000 +1614 1077 0.400000 +1614 1087 0.400000 +1614 1148 0.400000 +1614 1154 0.400000 +1614 1198 0.400000 +1614 1261 0.400000 +1614 1314 0.400000 +1614 1343 0.400000 +1614 1504 0.400000 +1614 1506 0.400000 +1614 1591 0.400000 +1614 1691 0.400000 +1614 1736 0.400000 +1614 1740 0.400000 +1614 1800 0.400000 +1614 1805 0.400000 +1614 1944 0.400000 +1614 2110 0.400000 +1614 2133 0.400000 +1614 2153 0.400000 +1614 2172 0.400000 +1614 2215 0.400000 +1614 2237 0.400000 +1614 2304 0.400000 +1614 2336 0.400000 +1614 2421 0.400000 +1614 2433 0.400000 +1614 2462 0.400000 +1614 2522 0.400000 +1614 2537 0.400000 +1614 2606 0.400000 +1614 2699 0.400000 +1614 2717 0.400000 +1614 2759 0.400000 +1614 2769 0.400000 +1614 2778 0.400000 +1614 2818 0.400000 +1614 2828 0.400000 +1614 2830 0.400000 +1614 2957 0.400000 +1614 3062 0.400000 +1614 3108 0.400000 +1614 3114 0.400000 +1614 3154 0.400000 +1615 28 0.400000 +1615 38 0.400000 +1615 215 0.400000 +1615 232 0.400000 +1615 266 0.400000 +1615 300 0.400000 +1615 346 0.400000 +1615 464 0.400000 +1615 522 0.400000 +1615 565 0.400000 +1615 598 0.400000 +1615 656 0.400000 +1615 771 0.400000 +1615 792 0.400000 +1615 885 0.400000 +1615 907 0.400000 +1615 926 0.400000 +1615 1031 0.400000 +1615 1036 0.400000 +1615 1041 0.400000 +1615 1109 0.400000 +1615 1161 0.400000 +1615 1162 0.400000 +1615 1262 0.400000 +1615 1404 0.400000 +1615 1423 0.400000 +1615 1460 0.400000 +1615 1496 0.400000 +1615 1510 0.400000 +1615 1525 0.400000 +1615 1535 0.400000 +1615 1644 0.400000 +1615 1719 0.400000 +1615 1789 0.400000 +1615 1939 0.400000 +1615 1949 0.400000 +1615 2011 0.400000 +1615 2024 0.400000 +1615 2054 0.400000 +1615 2117 0.400000 +1615 2177 0.400000 +1615 2275 0.400000 +1615 2295 0.400000 +1615 2339 0.400000 +1615 2411 0.400000 +1615 2417 0.400000 +1615 2545 0.400000 +1615 2631 0.400000 +1615 2713 0.400000 +1615 2750 0.400000 +1615 2765 0.400000 +1615 2851 0.400000 +1615 2881 0.400000 +1615 3014 0.400000 +1615 3016 0.400000 +1615 3025 0.400000 +1615 3043 0.400000 +1615 3173 0.400000 +1616 6 0.400000 +1616 14 0.400000 +1616 26 0.400000 +1616 213 0.400000 +1616 293 0.400000 +1616 301 0.400000 +1616 491 0.400000 +1616 499 0.400000 +1616 668 0.400000 +1616 806 0.400000 +1616 831 0.400000 +1616 842 0.400000 +1616 891 0.400000 +1616 893 0.400000 +1616 897 0.400000 +1616 900 0.400000 +1616 976 0.400000 +1616 982 0.400000 +1616 1068 0.400000 +1616 1086 0.400000 +1616 1153 0.400000 +1616 1154 0.400000 +1616 1229 0.400000 +1616 1469 0.400000 +1616 1582 0.400000 +1616 1647 0.400000 +1616 1803 0.400000 +1616 1834 0.400000 +1616 1848 0.400000 +1616 1876 0.400000 +1616 2038 0.400000 +1616 2128 0.400000 +1616 2165 0.400000 +1616 2211 0.400000 +1616 2254 0.400000 +1616 2274 0.400000 +1616 2298 0.400000 +1616 2329 0.400000 +1616 2419 0.400000 +1616 2444 0.400000 +1616 2463 0.400000 +1616 2520 0.400000 +1616 2567 0.400000 +1616 2570 0.400000 +1616 2667 0.400000 +1616 2674 0.400000 +1616 2826 0.400000 +1616 3031 0.400000 +1616 3071 0.400000 +1616 3073 0.400000 +1616 3137 0.400000 +1616 3149 0.400000 +1617 22 0.400000 +1617 50 0.400000 +1617 239 0.400000 +1617 249 0.400000 +1617 369 0.400000 +1617 386 0.400000 +1617 478 0.400000 +1617 540 0.400000 +1617 559 0.400000 +1617 607 0.400000 +1617 647 0.400000 +1617 707 0.400000 +1617 715 0.400000 +1617 740 0.400000 +1617 752 0.400000 +1617 880 0.400000 +1617 891 0.400000 +1617 969 0.400000 +1617 1035 0.400000 +1617 1048 0.400000 +1617 1113 0.400000 +1617 1134 0.400000 +1617 1290 0.400000 +1617 1296 0.400000 +1617 1312 0.400000 +1617 1386 0.400000 +1617 1440 0.400000 +1617 1445 0.400000 +1617 1492 0.400000 +1617 1541 0.400000 +1617 1543 0.400000 +1617 1562 0.400000 +1617 1605 0.400000 +1617 1841 0.400000 +1617 1859 0.400000 +1617 1876 0.400000 +1617 1908 0.400000 +1617 1919 0.400000 +1617 1942 0.400000 +1617 1976 0.400000 +1617 2224 0.400000 +1617 2342 0.400000 +1617 2351 0.400000 +1617 2355 0.400000 +1617 2392 0.400000 +1617 2472 0.400000 +1617 2493 0.400000 +1617 2581 0.400000 +1617 2716 0.400000 +1617 2749 0.400000 +1617 2761 0.400000 +1617 2829 0.400000 +1617 2983 0.400000 +1617 2988 0.400000 +1617 3013 0.400000 +1617 3020 0.400000 +1617 3108 0.400000 +1617 3119 0.400000 +1617 3141 0.400000 +1617 3193 0.400000 +1618 34 0.400000 +1618 84 0.400000 +1618 286 0.400000 +1618 416 0.400000 +1618 430 0.400000 +1618 492 0.400000 +1618 528 0.400000 +1618 560 0.400000 +1618 561 0.400000 +1618 586 0.400000 +1618 603 0.400000 +1618 605 0.400000 +1618 696 0.400000 +1618 796 0.400000 +1618 874 0.400000 +1618 884 0.400000 +1618 959 0.400000 +1618 1014 0.400000 +1618 1051 0.400000 +1618 1085 0.400000 +1618 1148 0.400000 +1618 1178 0.400000 +1618 1187 0.400000 +1618 1284 0.400000 +1618 1285 0.400000 +1618 1336 0.400000 +1618 1450 0.400000 +1618 1490 0.400000 +1618 1578 0.400000 +1618 1607 0.400000 +1618 1637 0.400000 +1618 1684 0.400000 +1618 1735 0.400000 +1618 1917 0.400000 +1618 1927 0.400000 +1618 1972 0.400000 +1618 2010 0.400000 +1618 2059 0.400000 +1618 2065 0.400000 +1618 2095 0.400000 +1618 2147 0.400000 +1618 2250 0.400000 +1618 2295 0.400000 +1618 2301 0.400000 +1618 2438 0.400000 +1618 2445 0.400000 +1618 2481 0.400000 +1618 2515 0.400000 +1618 2595 0.400000 +1618 2610 0.400000 +1618 2618 0.400000 +1618 2692 0.400000 +1618 2726 0.400000 +1618 2746 0.400000 +1618 2755 0.400000 +1618 2785 0.400000 +1618 2808 0.400000 +1618 2861 0.400000 +1618 2864 0.400000 +1618 2968 0.400000 +1618 2984 0.400000 +1618 2988 0.400000 +1618 3183 0.400000 +1619 64 0.400000 +1619 134 0.400000 +1619 158 0.400000 +1619 179 0.400000 +1619 195 0.400000 +1619 219 0.400000 +1619 221 0.400000 +1619 285 0.400000 +1619 289 0.400000 +1619 300 0.400000 +1619 306 0.400000 +1619 445 0.400000 +1619 496 0.400000 +1619 575 0.400000 +1619 585 0.400000 +1619 638 0.400000 +1619 652 0.400000 +1619 678 0.400000 +1619 825 0.400000 +1619 841 0.400000 +1619 906 0.400000 +1619 908 0.400000 +1619 912 0.400000 +1619 967 0.400000 +1619 969 0.400000 +1619 989 0.400000 +1619 1019 0.400000 +1619 1076 0.400000 +1619 1082 0.400000 +1619 1118 0.400000 +1619 1123 0.400000 +1619 1132 0.400000 +1619 1143 0.400000 +1619 1146 0.400000 +1619 1153 0.400000 +1619 1248 0.400000 +1619 1250 0.400000 +1619 1262 0.400000 +1619 1277 0.400000 +1619 1396 0.400000 +1619 1428 0.400000 +1619 1443 0.400000 +1619 1456 0.400000 +1619 1513 0.400000 +1619 1542 0.400000 +1619 1551 0.400000 +1619 1761 0.400000 +1619 1893 0.400000 +1619 1897 0.400000 +1619 1942 0.400000 +1619 1946 0.400000 +1619 1979 0.400000 +1619 2003 0.400000 +1619 2006 0.400000 +1619 2036 0.400000 +1619 2059 0.400000 +1619 2074 0.400000 +1619 2169 0.400000 +1619 2220 0.400000 +1619 2260 0.400000 +1619 2296 0.400000 +1619 2314 0.400000 +1619 2329 0.400000 +1619 2339 0.400000 +1619 2369 0.400000 +1619 2450 0.400000 +1619 2455 0.400000 +1619 2582 0.400000 +1619 2608 0.400000 +1619 2619 0.400000 +1619 2673 0.400000 +1619 2902 0.400000 +1619 2930 0.400000 +1619 2966 0.400000 +1619 2979 0.400000 +1619 2981 0.400000 +1619 3047 0.400000 +1619 3056 0.400000 +1619 3062 0.400000 +1619 3096 0.400000 +1619 3176 0.400000 +1619 3189 0.400000 +1620 75 0.400000 +1620 115 0.400000 +1620 130 0.400000 +1620 196 0.400000 +1620 198 0.400000 +1620 290 0.400000 +1620 297 0.400000 +1620 369 0.400000 +1620 400 0.400000 +1620 452 0.400000 +1620 493 0.400000 +1620 644 0.400000 +1620 662 0.400000 +1620 683 0.400000 +1620 698 0.400000 +1620 878 0.400000 +1620 912 0.400000 +1620 1009 0.400000 +1620 1090 0.400000 +1620 1107 0.400000 +1620 1226 0.400000 +1620 1249 0.400000 +1620 1321 0.400000 +1620 1328 0.400000 +1620 1359 0.400000 +1620 1396 0.400000 +1620 1441 0.400000 +1620 1531 0.400000 +1620 1597 0.400000 +1620 1637 0.400000 +1620 1655 0.400000 +1620 1684 0.400000 +1620 1740 0.400000 +1620 1745 0.400000 +1620 1759 0.400000 +1620 1769 0.400000 +1620 1783 0.400000 +1620 1821 0.400000 +1620 1967 0.400000 +1620 1976 0.400000 +1620 2028 0.400000 +1620 2071 0.400000 +1620 2078 0.400000 +1620 2081 0.400000 +1620 2128 0.400000 +1620 2198 0.400000 +1620 2220 0.400000 +1620 2293 0.400000 +1620 2322 0.400000 +1620 2368 0.400000 +1620 2462 0.400000 +1620 2468 0.400000 +1620 2609 0.400000 +1620 2611 0.400000 +1620 2614 0.400000 +1620 2648 0.400000 +1620 2715 0.400000 +1620 2812 0.400000 +1620 2864 0.400000 +1620 2953 0.400000 +1620 3050 0.400000 +1620 3053 0.400000 +1620 3091 0.400000 +1620 3094 0.400000 +1620 3111 0.400000 +1620 3118 0.400000 +1620 3181 0.400000 +1620 3187 0.400000 +1621 67 0.400000 +1621 70 0.400000 +1621 299 0.400000 +1621 392 0.400000 +1621 396 0.400000 +1621 435 0.400000 +1621 457 0.400000 +1621 472 0.400000 +1621 520 0.400000 +1621 552 0.400000 +1621 633 0.400000 +1621 635 0.400000 +1621 732 0.400000 +1621 793 0.400000 +1621 815 0.400000 +1621 928 0.400000 +1621 939 0.400000 +1621 973 0.400000 +1621 991 0.400000 +1621 1038 0.400000 +1621 1212 0.400000 +1621 1248 0.400000 +1621 1329 0.400000 +1621 1537 0.400000 +1621 1640 0.400000 +1621 1684 0.400000 +1621 1947 0.400000 +1621 2072 0.400000 +1621 2090 0.400000 +1621 2103 0.400000 +1621 2122 0.400000 +1621 2154 0.400000 +1621 2242 0.400000 +1621 2289 0.400000 +1621 2321 0.400000 +1621 2325 0.400000 +1621 2351 0.400000 +1621 2404 0.400000 +1621 2504 0.400000 +1621 2512 0.400000 +1621 2552 0.400000 +1621 2569 0.400000 +1621 2852 0.400000 +1621 2860 0.400000 +1621 2885 0.400000 +1621 2935 0.400000 +1621 2955 0.400000 +1621 2974 0.400000 +1621 3023 0.400000 +1621 3029 0.400000 +1621 3080 0.400000 +1621 3093 0.400000 +1621 3198 0.400000 +1622 31 0.400000 +1622 82 0.400000 +1622 91 0.400000 +1622 191 0.400000 +1622 229 0.400000 +1622 255 0.400000 +1622 338 0.400000 +1622 369 0.400000 +1622 413 0.400000 +1622 494 0.400000 +1622 651 0.400000 +1622 653 0.400000 +1622 662 0.400000 +1622 678 0.400000 +1622 765 0.400000 +1622 793 0.400000 +1622 848 0.400000 +1622 887 0.400000 +1622 930 0.400000 +1622 1011 0.400000 +1622 1031 0.400000 +1622 1044 0.400000 +1622 1059 0.400000 +1622 1098 0.400000 +1622 1175 0.400000 +1622 1224 0.400000 +1622 1227 0.400000 +1622 1279 0.400000 +1622 1397 0.400000 +1622 1400 0.400000 +1622 1418 0.400000 +1622 1427 0.400000 +1622 1429 0.400000 +1622 1441 0.400000 +1622 1514 0.400000 +1622 1591 0.400000 +1622 1604 0.400000 +1622 1615 0.400000 +1622 1616 0.400000 +1622 1686 0.400000 +1622 1738 0.400000 +1622 1739 0.400000 +1622 1767 0.400000 +1622 1770 0.400000 +1622 1779 0.400000 +1622 1855 0.400000 +1622 1907 0.400000 +1622 1999 0.400000 +1622 2140 0.400000 +1622 2175 0.400000 +1622 2209 0.400000 +1622 2217 0.400000 +1622 2228 0.400000 +1622 2613 0.400000 +1622 2624 0.400000 +1622 2747 0.400000 +1622 2754 0.400000 +1622 2785 0.400000 +1622 2786 0.400000 +1622 2901 0.400000 +1622 3027 0.400000 +1622 3035 0.400000 +1622 3074 0.400000 +1622 3079 0.400000 +1623 31 0.400000 +1623 163 0.400000 +1623 176 0.400000 +1623 217 0.400000 +1623 219 0.400000 +1623 263 0.400000 +1623 370 0.400000 +1623 375 0.400000 +1623 411 0.400000 +1623 449 0.400000 +1623 477 0.400000 +1623 588 0.400000 +1623 703 0.400000 +1623 776 0.400000 +1623 779 0.400000 +1623 798 0.400000 +1623 807 0.400000 +1623 815 0.400000 +1623 833 0.400000 +1623 854 0.400000 +1623 884 0.400000 +1623 981 0.400000 +1623 1059 0.400000 +1623 1140 0.400000 +1623 1148 0.400000 +1623 1161 0.400000 +1623 1228 0.400000 +1623 1308 0.400000 +1623 1325 0.400000 +1623 1330 0.400000 +1623 1337 0.400000 +1623 1361 0.400000 +1623 1385 0.400000 +1623 1388 0.400000 +1623 1428 0.400000 +1623 1504 0.400000 +1623 1508 0.400000 +1623 1543 0.400000 +1623 1576 0.400000 +1623 1598 0.400000 +1623 1609 0.400000 +1623 1710 0.400000 +1623 1716 0.400000 +1623 1888 0.400000 +1623 1904 0.400000 +1623 1910 0.400000 +1623 1974 0.400000 +1623 2004 0.400000 +1623 2043 0.400000 +1623 2070 0.400000 +1623 2084 0.400000 +1623 2096 0.400000 +1623 2194 0.400000 +1623 2212 0.400000 +1623 2218 0.400000 +1623 2221 0.400000 +1623 2226 0.400000 +1623 2249 0.400000 +1623 2290 0.400000 +1623 2296 0.400000 +1623 2339 0.400000 +1623 2371 0.400000 +1623 2477 0.400000 +1623 2481 0.400000 +1623 2539 0.400000 +1623 2587 0.400000 +1623 2602 0.400000 +1623 2623 0.400000 +1623 2691 0.400000 +1623 2767 0.400000 +1623 2777 0.400000 +1623 2799 0.400000 +1623 2932 0.400000 +1623 2947 0.400000 +1623 2989 0.400000 +1623 3033 0.400000 +1624 148 0.400000 +1624 151 0.400000 +1624 207 0.400000 +1624 234 0.400000 +1624 264 0.400000 +1624 291 0.400000 +1624 434 0.400000 +1624 492 0.400000 +1624 520 0.400000 +1624 527 0.400000 +1624 613 0.400000 +1624 672 0.400000 +1624 682 0.400000 +1624 728 0.400000 +1624 778 0.400000 +1624 798 0.400000 +1624 812 0.400000 +1624 907 0.400000 +1624 918 0.400000 +1624 920 0.400000 +1624 1028 0.400000 +1624 1052 0.400000 +1624 1093 0.400000 +1624 1150 0.400000 +1624 1216 0.400000 +1624 1227 0.400000 +1624 1265 0.400000 +1624 1288 0.400000 +1624 1457 0.400000 +1624 1482 0.400000 +1624 1484 0.400000 +1624 1525 0.400000 +1624 1547 0.400000 +1624 1690 0.400000 +1624 1714 0.400000 +1624 1716 0.400000 +1624 1720 0.400000 +1624 1788 0.400000 +1624 1796 0.400000 +1624 1812 0.400000 +1624 1866 0.400000 +1624 1906 0.400000 +1624 2118 0.400000 +1624 2153 0.400000 +1624 2157 0.400000 +1624 2199 0.400000 +1624 2208 0.400000 +1624 2215 0.400000 +1624 2282 0.400000 +1624 2359 0.400000 +1624 2446 0.400000 +1624 2480 0.400000 +1624 2529 0.400000 +1624 2552 0.400000 +1624 2757 0.400000 +1624 2770 0.400000 +1624 2797 0.400000 +1624 2840 0.400000 +1624 2916 0.400000 +1624 2933 0.400000 +1624 2957 0.400000 +1624 2971 0.400000 +1624 3028 0.400000 +1624 3079 0.400000 +1624 3088 0.400000 +1624 3173 0.400000 +1625 16 0.400000 +1625 150 0.400000 +1625 196 0.400000 +1625 208 0.400000 +1625 239 0.400000 +1625 336 0.400000 +1625 362 0.400000 +1625 454 0.400000 +1625 472 0.400000 +1625 509 0.400000 +1625 639 0.400000 +1625 684 0.400000 +1625 726 0.400000 +1625 944 0.400000 +1625 1012 0.400000 +1625 1019 0.400000 +1625 1036 0.400000 +1625 1079 0.400000 +1625 1161 0.400000 +1625 1170 0.400000 +1625 1242 0.400000 +1625 1244 0.400000 +1625 1262 0.400000 +1625 1290 0.400000 +1625 1416 0.400000 +1625 1459 0.400000 +1625 1477 0.400000 +1625 1480 0.400000 +1625 1499 0.400000 +1625 1507 0.400000 +1625 1534 0.400000 +1625 1621 0.400000 +1625 1632 0.400000 +1625 1677 0.400000 +1625 1763 0.400000 +1625 1810 0.400000 +1625 1824 0.400000 +1625 1829 0.400000 +1625 1830 0.400000 +1625 1858 0.400000 +1625 1992 0.400000 +1625 2105 0.400000 +1625 2137 0.400000 +1625 2342 0.400000 +1625 2411 0.400000 +1625 2472 0.400000 +1625 2495 0.400000 +1625 2501 0.400000 +1625 2512 0.400000 +1625 2518 0.400000 +1625 2545 0.400000 +1625 2594 0.400000 +1625 2808 0.400000 +1625 2861 0.400000 +1625 2918 0.400000 +1625 2924 0.400000 +1625 2941 0.400000 +1625 2953 0.400000 +1625 2992 0.400000 +1625 3132 0.400000 +1625 3148 0.400000 +1625 3153 0.400000 +1626 7 0.400000 +1626 101 0.400000 +1626 204 0.400000 +1626 214 0.400000 +1626 290 0.400000 +1626 392 0.400000 +1626 458 0.400000 +1626 503 0.400000 +1626 588 0.400000 +1626 611 0.400000 +1626 691 0.400000 +1626 700 0.400000 +1626 814 0.400000 +1626 837 0.400000 +1626 839 0.400000 +1626 967 0.400000 +1626 1051 0.400000 +1626 1107 0.400000 +1626 1139 0.400000 +1626 1228 0.400000 +1626 1250 0.400000 +1626 1323 0.400000 +1626 1380 0.400000 +1626 1381 0.400000 +1626 1418 0.400000 +1626 1503 0.400000 +1626 1542 0.400000 +1626 1564 0.400000 +1626 1579 0.400000 +1626 1621 0.400000 +1626 1646 0.400000 +1626 1738 0.400000 +1626 1767 0.400000 +1626 1780 0.400000 +1626 1811 0.400000 +1626 1884 0.400000 +1626 1907 0.400000 +1626 1923 0.400000 +1626 1982 0.400000 +1626 1988 0.400000 +1626 2148 0.400000 +1626 2192 0.400000 +1626 2282 0.400000 +1626 2316 0.400000 +1626 2352 0.400000 +1626 2354 0.400000 +1626 2367 0.400000 +1626 2394 0.400000 +1626 2424 0.400000 +1626 2577 0.400000 +1626 2595 0.400000 +1626 2655 0.400000 +1626 2678 0.400000 +1626 2746 0.400000 +1626 2850 0.400000 +1626 2878 0.400000 +1626 3047 0.400000 +1626 3190 0.400000 +1627 46 0.400000 +1627 60 0.400000 +1627 200 0.400000 +1627 262 0.400000 +1627 355 0.400000 +1627 367 0.400000 +1627 416 0.400000 +1627 421 0.400000 +1627 501 0.400000 +1627 757 0.400000 +1627 787 0.400000 +1627 815 0.400000 +1627 819 0.400000 +1627 851 0.400000 +1627 936 0.400000 +1627 951 0.400000 +1627 973 0.400000 +1627 1068 0.400000 +1627 1089 0.400000 +1627 1127 0.400000 +1627 1137 0.400000 +1627 1300 0.400000 +1627 1328 0.400000 +1627 1332 0.400000 +1627 1525 0.400000 +1627 1548 0.400000 +1627 1570 0.400000 +1627 1575 0.400000 +1627 1613 0.400000 +1627 1622 0.400000 +1627 1650 0.400000 +1627 1696 0.400000 +1627 1711 0.400000 +1627 1802 0.400000 +1627 1880 0.400000 +1627 1936 0.400000 +1627 2055 0.400000 +1627 2067 0.400000 +1627 2172 0.400000 +1627 2191 0.400000 +1627 2207 0.400000 +1627 2233 0.400000 +1627 2340 0.400000 +1627 2354 0.400000 +1627 2387 0.400000 +1627 2418 0.400000 +1627 2500 0.400000 +1627 2568 0.400000 +1627 2570 0.400000 +1627 2610 0.400000 +1627 2635 0.400000 +1627 2678 0.400000 +1627 2688 0.400000 +1627 2766 0.400000 +1627 2779 0.400000 +1627 2827 0.400000 +1627 2899 0.400000 +1627 2907 0.400000 +1627 2920 0.400000 +1627 2925 0.400000 +1627 3004 0.400000 +1627 3051 0.400000 +1627 3091 0.400000 +1627 3172 0.400000 +1628 67 0.400000 +1628 177 0.400000 +1628 201 0.400000 +1628 251 0.400000 +1628 263 0.400000 +1628 315 0.400000 +1628 333 0.400000 +1628 366 0.400000 +1628 383 0.400000 +1628 403 0.400000 +1628 427 0.400000 +1628 470 0.400000 +1628 519 0.400000 +1628 648 0.400000 +1628 683 0.400000 +1628 698 0.400000 +1628 727 0.400000 +1628 738 0.400000 +1628 792 0.400000 +1628 803 0.400000 +1628 839 0.400000 +1628 862 0.400000 +1628 935 0.400000 +1628 946 0.400000 +1628 949 0.400000 +1628 1106 0.400000 +1628 1158 0.400000 +1628 1214 0.400000 +1628 1227 0.400000 +1628 1301 0.400000 +1628 1336 0.400000 +1628 1370 0.400000 +1628 1377 0.400000 +1628 1528 0.400000 +1628 1570 0.400000 +1628 1591 0.400000 +1628 1691 0.400000 +1628 1772 0.400000 +1628 1834 0.400000 +1628 1880 0.400000 +1628 1926 0.400000 +1628 1971 0.400000 +1628 1986 0.400000 +1628 2010 0.400000 +1628 2102 0.400000 +1628 2121 0.400000 +1628 2296 0.400000 +1628 2337 0.400000 +1628 2369 0.400000 +1628 2452 0.400000 +1628 2495 0.400000 +1628 2520 0.400000 +1628 2579 0.400000 +1628 2584 0.400000 +1628 2625 0.400000 +1628 2627 0.400000 +1628 2634 0.400000 +1628 2803 0.400000 +1628 2895 0.400000 +1628 2912 0.400000 +1628 2933 0.400000 +1628 2981 0.400000 +1628 3044 0.400000 +1629 42 0.400000 +1629 72 0.400000 +1629 87 0.400000 +1629 119 0.400000 +1629 174 0.400000 +1629 203 0.400000 +1629 205 0.400000 +1629 257 0.400000 +1629 331 0.400000 +1629 333 0.400000 +1629 364 0.400000 +1629 410 0.400000 +1629 442 0.400000 +1629 455 0.400000 +1629 474 0.400000 +1629 479 0.400000 +1629 506 0.400000 +1629 611 0.400000 +1629 622 0.400000 +1629 645 0.400000 +1629 669 0.400000 +1629 693 0.400000 +1629 713 0.400000 +1629 751 0.400000 +1629 761 0.400000 +1629 799 0.400000 +1629 821 0.400000 +1629 845 0.400000 +1629 940 0.400000 +1629 988 0.400000 +1629 1088 0.400000 +1629 1134 0.400000 +1629 1144 0.400000 +1629 1161 0.400000 +1629 1177 0.400000 +1629 1238 0.400000 +1629 1242 0.400000 +1629 1297 0.400000 +1629 1372 0.400000 +1629 1531 0.400000 +1629 1537 0.400000 +1629 1578 0.400000 +1629 1579 0.400000 +1629 1634 0.400000 +1629 1726 0.400000 +1629 1843 0.400000 +1629 1845 0.400000 +1629 1856 0.400000 +1629 1917 0.400000 +1629 1930 0.400000 +1629 1951 0.400000 +1629 1996 0.400000 +1629 2033 0.400000 +1629 2072 0.400000 +1629 2129 0.400000 +1629 2141 0.400000 +1629 2177 0.400000 +1629 2230 0.400000 +1629 2247 0.400000 +1629 2433 0.400000 +1629 2445 0.400000 +1629 2485 0.400000 +1629 2530 0.400000 +1629 2571 0.400000 +1629 2583 0.400000 +1629 2650 0.400000 +1629 2703 0.400000 +1629 2721 0.400000 +1629 2859 0.400000 +1629 2940 0.400000 +1629 2944 0.400000 +1629 2959 0.400000 +1629 3111 0.400000 +1629 3151 0.400000 +1629 3161 0.400000 +1629 3196 0.400000 +1630 60 0.400000 +1630 64 0.400000 +1630 130 0.400000 +1630 169 0.400000 +1630 215 0.400000 +1630 237 0.400000 +1630 283 0.400000 +1630 292 0.400000 +1630 362 0.400000 +1630 380 0.400000 +1630 392 0.400000 +1630 397 0.400000 +1630 601 0.400000 +1630 611 0.400000 +1630 620 0.400000 +1630 639 0.400000 +1630 651 0.400000 +1630 703 0.400000 +1630 773 0.400000 +1630 785 0.400000 +1630 820 0.400000 +1630 851 0.400000 +1630 931 0.400000 +1630 934 0.400000 +1630 998 0.400000 +1630 1001 0.400000 +1630 1117 0.400000 +1630 1280 0.400000 +1630 1290 0.400000 +1630 1362 0.400000 +1630 1379 0.400000 +1630 1415 0.400000 +1630 1417 0.400000 +1630 1449 0.400000 +1630 1541 0.400000 +1630 1606 0.400000 +1630 1643 0.400000 +1630 1654 0.400000 +1630 1699 0.400000 +1630 1757 0.400000 +1630 1771 0.400000 +1630 1845 0.400000 +1630 1923 0.400000 +1630 1928 0.400000 +1630 1929 0.400000 +1630 1930 0.400000 +1630 1970 0.400000 +1630 2034 0.400000 +1630 2047 0.400000 +1630 2049 0.400000 +1630 2125 0.400000 +1630 2136 0.400000 +1630 2212 0.400000 +1630 2298 0.400000 +1630 2385 0.400000 +1630 2439 0.400000 +1630 2507 0.400000 +1630 2526 0.400000 +1630 2614 0.400000 +1630 2698 0.400000 +1630 2732 0.400000 +1630 2766 0.400000 +1630 2781 0.400000 +1630 2790 0.400000 +1630 2822 0.400000 +1630 2880 0.400000 +1630 2975 0.400000 +1630 3038 0.400000 +1630 3089 0.400000 +1631 10 0.400000 +1631 90 0.400000 +1631 170 0.400000 +1631 261 0.400000 +1631 318 0.400000 +1631 345 0.400000 +1631 474 0.400000 +1631 477 0.400000 +1631 611 0.400000 +1631 651 0.400000 +1631 665 0.400000 +1631 705 0.400000 +1631 731 0.400000 +1631 750 0.400000 +1631 773 0.400000 +1631 807 0.400000 +1631 818 0.400000 +1631 826 0.400000 +1631 832 0.400000 +1631 833 0.400000 +1631 1118 0.400000 +1631 1153 0.400000 +1631 1219 0.400000 +1631 1290 0.400000 +1631 1346 0.400000 +1631 1351 0.400000 +1631 1425 0.400000 +1631 1428 0.400000 +1631 1444 0.400000 +1631 1461 0.400000 +1631 1605 0.400000 +1631 1608 0.400000 +1631 1627 0.400000 +1631 1628 0.400000 +1631 1633 0.400000 +1631 1661 0.400000 +1631 1760 0.400000 +1631 2012 0.400000 +1631 2039 0.400000 +1631 2085 0.400000 +1631 2163 0.400000 +1631 2201 0.400000 +1631 2207 0.400000 +1631 2220 0.400000 +1631 2240 0.400000 +1631 2464 0.400000 +1631 2481 0.400000 +1631 2495 0.400000 +1631 2507 0.400000 +1631 2538 0.400000 +1631 2565 0.400000 +1631 2614 0.400000 +1631 2670 0.400000 +1631 2756 0.400000 +1631 2824 0.400000 +1631 2898 0.400000 +1631 2917 0.400000 +1631 2927 0.400000 +1631 2959 0.400000 +1631 2975 0.400000 +1631 3009 0.400000 +1631 3014 0.400000 +1631 3057 0.400000 +1631 3084 0.400000 +1631 3111 0.400000 +1631 3196 0.400000 +1632 127 0.400000 +1632 263 0.400000 +1632 291 0.400000 +1632 422 0.400000 +1632 476 0.400000 +1632 559 0.400000 +1632 584 0.400000 +1632 605 0.400000 +1632 656 0.400000 +1632 690 0.400000 +1632 903 0.400000 +1632 971 0.400000 +1632 975 0.400000 +1632 982 0.400000 +1632 1016 0.400000 +1632 1045 0.400000 +1632 1187 0.400000 +1632 1225 0.400000 +1632 1240 0.400000 +1632 1360 0.400000 +1632 1392 0.400000 +1632 1447 0.400000 +1632 1530 0.400000 +1632 1550 0.400000 +1632 1572 0.400000 +1632 1583 0.400000 +1632 1605 0.400000 +1632 1692 0.400000 +1632 1722 0.400000 +1632 1854 0.400000 +1632 2009 0.400000 +1632 2096 0.400000 +1632 2217 0.400000 +1632 2420 0.400000 +1632 2464 0.400000 +1632 2480 0.400000 +1632 2510 0.400000 +1632 2526 0.400000 +1632 2624 0.400000 +1632 2716 0.400000 +1632 2723 0.400000 +1632 2782 0.400000 +1632 2804 0.400000 +1632 2811 0.400000 +1632 2835 0.400000 +1632 2939 0.400000 +1632 2991 0.400000 +1632 3052 0.400000 +1632 3058 0.400000 +1632 3065 0.400000 +1632 3140 0.400000 +1632 3154 0.400000 +1632 3182 0.400000 +1633 7 0.400000 +1633 12 0.400000 +1633 232 0.400000 +1633 290 0.400000 +1633 308 0.400000 +1633 435 0.400000 +1633 469 0.400000 +1633 609 0.400000 +1633 637 0.400000 +1633 651 0.400000 +1633 715 0.400000 +1633 792 0.400000 +1633 1214 0.400000 +1633 1223 0.400000 +1633 1363 0.400000 +1633 1420 0.400000 +1633 1429 0.400000 +1633 1535 0.400000 +1633 1538 0.400000 +1633 1609 0.400000 +1633 1763 0.400000 +1633 1843 0.400000 +1633 1876 0.400000 +1633 1893 0.400000 +1633 1933 0.400000 +1633 1963 0.400000 +1633 1975 0.400000 +1633 2057 0.400000 +1633 2134 0.400000 +1633 2139 0.400000 +1633 2203 0.400000 +1633 2244 0.400000 +1633 2291 0.400000 +1633 2298 0.400000 +1633 2339 0.400000 +1633 2414 0.400000 +1633 2418 0.400000 +1633 2428 0.400000 +1633 2438 0.400000 +1633 2570 0.400000 +1633 2595 0.400000 +1633 2648 0.400000 +1633 2763 0.400000 +1633 2825 0.400000 +1633 2836 0.400000 +1633 2886 0.400000 +1633 2892 0.400000 +1633 2965 0.400000 +1633 3139 0.400000 +1633 3175 0.400000 +1634 69 0.400000 +1634 150 0.400000 +1634 164 0.400000 +1634 226 0.400000 +1634 280 0.400000 +1634 297 0.400000 +1634 364 0.400000 +1634 408 0.400000 +1634 469 0.400000 +1634 514 0.400000 +1634 551 0.400000 +1634 555 0.400000 +1634 592 0.400000 +1634 596 0.400000 +1634 627 0.400000 +1634 653 0.400000 +1634 662 0.400000 +1634 669 0.400000 +1634 690 0.400000 +1634 755 0.400000 +1634 769 0.400000 +1634 940 0.400000 +1634 966 0.400000 +1634 992 0.400000 +1634 1066 0.400000 +1634 1118 0.400000 +1634 1150 0.400000 +1634 1262 0.400000 +1634 1357 0.400000 +1634 1397 0.400000 +1634 1465 0.400000 +1634 1481 0.400000 +1634 1530 0.400000 +1634 1571 0.400000 +1634 1586 0.400000 +1634 1599 0.400000 +1634 1635 0.400000 +1634 1681 0.400000 +1634 1713 0.400000 +1634 1714 0.400000 +1634 1716 0.400000 +1634 1819 0.400000 +1634 1838 0.400000 +1634 1881 0.400000 +1634 2060 0.400000 +1634 2128 0.400000 +1634 2130 0.400000 +1634 2229 0.400000 +1634 2272 0.400000 +1634 2507 0.400000 +1634 2513 0.400000 +1634 2544 0.400000 +1634 2550 0.400000 +1634 2647 0.400000 +1634 2691 0.400000 +1634 2705 0.400000 +1634 2806 0.400000 +1634 2826 0.400000 +1634 3042 0.400000 +1634 3082 0.400000 +1634 3083 0.400000 +1634 3095 0.400000 +1634 3127 0.400000 +1634 3159 0.400000 +1634 3167 0.400000 +1634 3168 0.400000 +1634 3194 0.400000 +1635 19 0.400000 +1635 23 0.400000 +1635 57 0.400000 +1635 146 0.400000 +1635 173 0.400000 +1635 185 0.400000 +1635 213 0.400000 +1635 261 0.400000 +1635 321 0.400000 +1635 334 0.400000 +1635 342 0.400000 +1635 346 0.400000 +1635 407 0.400000 +1635 410 0.400000 +1635 442 0.400000 +1635 446 0.400000 +1635 518 0.400000 +1635 592 0.400000 +1635 620 0.400000 +1635 666 0.400000 +1635 676 0.400000 +1635 711 0.400000 +1635 777 0.400000 +1635 800 0.400000 +1635 880 0.400000 +1635 952 0.400000 +1635 977 0.400000 +1635 1015 0.400000 +1635 1170 0.400000 +1635 1303 0.400000 +1635 1332 0.400000 +1635 1361 0.400000 +1635 1405 0.400000 +1635 1435 0.400000 +1635 1461 0.400000 +1635 1590 0.400000 +1635 1599 0.400000 +1635 1602 0.400000 +1635 1698 0.400000 +1635 1758 0.400000 +1635 1809 0.400000 +1635 1844 0.400000 +1635 1871 0.400000 +1635 1931 0.400000 +1635 2021 0.400000 +1635 2062 0.400000 +1635 2102 0.400000 +1635 2256 0.400000 +1635 2300 0.400000 +1635 2305 0.400000 +1635 2327 0.400000 +1635 2470 0.400000 +1635 2565 0.400000 +1635 2608 0.400000 +1635 2638 0.400000 +1635 2684 0.400000 +1635 2695 0.400000 +1635 2710 0.400000 +1635 2722 0.400000 +1635 2785 0.400000 +1635 2806 0.400000 +1635 2838 0.400000 +1635 2855 0.400000 +1635 2943 0.400000 +1635 3061 0.400000 +1635 3147 0.400000 +1635 3162 0.400000 +1636 36 0.400000 +1636 74 0.400000 +1636 75 0.400000 +1636 99 0.400000 +1636 124 0.400000 +1636 181 0.400000 +1636 186 0.400000 +1636 192 0.400000 +1636 208 0.400000 +1636 277 0.400000 +1636 280 0.400000 +1636 317 0.400000 +1636 353 0.400000 +1636 429 0.400000 +1636 431 0.400000 +1636 555 0.400000 +1636 560 0.400000 +1636 580 0.400000 +1636 599 0.400000 +1636 601 0.400000 +1636 667 0.400000 +1636 700 0.400000 +1636 724 0.400000 +1636 754 0.400000 +1636 797 0.400000 +1636 869 0.400000 +1636 871 0.400000 +1636 935 0.400000 +1636 950 0.400000 +1636 1000 0.400000 +1636 1035 0.400000 +1636 1041 0.400000 +1636 1183 0.400000 +1636 1252 0.400000 +1636 1260 0.400000 +1636 1338 0.400000 +1636 1366 0.400000 +1636 1432 0.400000 +1636 1435 0.400000 +1636 1451 0.400000 +1636 1515 0.400000 +1636 1522 0.400000 +1636 1528 0.400000 +1636 1545 0.400000 +1636 1610 0.400000 +1636 1616 0.400000 +1636 1652 0.400000 +1636 1746 0.400000 +1636 1783 0.400000 +1636 1805 0.400000 +1636 1852 0.400000 +1636 2052 0.400000 +1636 2092 0.400000 +1636 2173 0.400000 +1636 2190 0.400000 +1636 2202 0.400000 +1636 2209 0.400000 +1636 2265 0.400000 +1636 2272 0.400000 +1636 2383 0.400000 +1636 2389 0.400000 +1636 2390 0.400000 +1636 2522 0.400000 +1636 2530 0.400000 +1636 2549 0.400000 +1636 2602 0.400000 +1636 2633 0.400000 +1636 2702 0.400000 +1636 2752 0.400000 +1636 2761 0.400000 +1636 2865 0.400000 +1636 2871 0.400000 +1636 2921 0.400000 +1636 3076 0.400000 +1636 3117 0.400000 +1637 45 0.400000 +1637 71 0.400000 +1637 194 0.400000 +1637 201 0.400000 +1637 211 0.400000 +1637 243 0.400000 +1637 590 0.400000 +1637 603 0.400000 +1637 644 0.400000 +1637 652 0.400000 +1637 656 0.400000 +1637 684 0.400000 +1637 708 0.400000 +1637 711 0.400000 +1637 760 0.400000 +1637 770 0.400000 +1637 776 0.400000 +1637 854 0.400000 +1637 942 0.400000 +1637 1015 0.400000 +1637 1034 0.400000 +1637 1035 0.400000 +1637 1050 0.400000 +1637 1064 0.400000 +1637 1108 0.400000 +1637 1137 0.400000 +1637 1151 0.400000 +1637 1188 0.400000 +1637 1201 0.400000 +1637 1216 0.400000 +1637 1290 0.400000 +1637 1308 0.400000 +1637 1366 0.400000 +1637 1569 0.400000 +1637 1597 0.400000 +1637 1656 0.400000 +1637 1669 0.400000 +1637 1748 0.400000 +1637 1769 0.400000 +1637 1778 0.400000 +1637 1837 0.400000 +1637 1895 0.400000 +1637 2101 0.400000 +1637 2105 0.400000 +1637 2242 0.400000 +1637 2271 0.400000 +1637 2373 0.400000 +1637 2377 0.400000 +1637 2397 0.400000 +1637 2401 0.400000 +1637 2452 0.400000 +1637 2499 0.400000 +1637 2559 0.400000 +1637 2576 0.400000 +1637 2598 0.400000 +1637 2603 0.400000 +1637 2644 0.400000 +1637 2707 0.400000 +1637 2755 0.400000 +1637 2823 0.400000 +1637 2871 0.400000 +1637 2880 0.400000 +1637 2889 0.400000 +1637 2907 0.400000 +1637 2997 0.400000 +1637 3036 0.400000 +1637 3089 0.400000 +1637 3091 0.400000 +1637 3121 0.400000 +1637 3179 0.400000 +1637 3185 0.400000 +1638 31 0.400000 +1638 119 0.400000 +1638 165 0.400000 +1638 192 0.400000 +1638 195 0.400000 +1638 248 0.400000 +1638 315 0.400000 +1638 316 0.400000 +1638 425 0.400000 +1638 474 0.400000 +1638 511 0.400000 +1638 525 0.400000 +1638 558 0.400000 +1638 615 0.400000 +1638 754 0.400000 +1638 777 0.400000 +1638 829 0.400000 +1638 837 0.400000 +1638 890 0.400000 +1638 949 0.400000 +1638 1071 0.400000 +1638 1140 0.400000 +1638 1167 0.400000 +1638 1219 0.400000 +1638 1267 0.400000 +1638 1270 0.400000 +1638 1274 0.400000 +1638 1287 0.400000 +1638 1294 0.400000 +1638 1298 0.400000 +1638 1327 0.400000 +1638 1446 0.400000 +1638 1469 0.400000 +1638 1504 0.400000 +1638 1542 0.400000 +1638 1580 0.400000 +1638 1617 0.400000 +1638 1736 0.400000 +1638 1752 0.400000 +1638 1782 0.400000 +1638 1812 0.400000 +1638 1830 0.400000 +1638 1870 0.400000 +1638 1883 0.400000 +1638 1924 0.400000 +1638 1933 0.400000 +1638 1972 0.400000 +1638 1980 0.400000 +1638 2026 0.400000 +1638 2033 0.400000 +1638 2044 0.400000 +1638 2096 0.400000 +1638 2139 0.400000 +1638 2192 0.400000 +1638 2207 0.400000 +1638 2248 0.400000 +1638 2368 0.400000 +1638 2378 0.400000 +1638 2412 0.400000 +1638 2452 0.400000 +1638 2485 0.400000 +1638 2537 0.400000 +1638 2616 0.400000 +1638 2669 0.400000 +1638 2740 0.400000 +1638 2749 0.400000 +1638 2766 0.400000 +1638 2854 0.400000 +1638 2872 0.400000 +1638 2934 0.400000 +1638 2976 0.400000 +1638 3019 0.400000 +1638 3174 0.400000 +1639 3 0.400000 +1639 21 0.400000 +1639 123 0.400000 +1639 185 0.400000 +1639 191 0.400000 +1639 194 0.400000 +1639 231 0.400000 +1639 291 0.400000 +1639 365 0.400000 +1639 374 0.400000 +1639 429 0.400000 +1639 543 0.400000 +1639 557 0.400000 +1639 561 0.400000 +1639 589 0.400000 +1639 610 0.400000 +1639 622 0.400000 +1639 631 0.400000 +1639 639 0.400000 +1639 643 0.400000 +1639 651 0.400000 +1639 675 0.400000 +1639 846 0.400000 +1639 896 0.400000 +1639 928 0.400000 +1639 950 0.400000 +1639 988 0.400000 +1639 1078 0.400000 +1639 1118 0.400000 +1639 1131 0.400000 +1639 1219 0.400000 +1639 1236 0.400000 +1639 1299 0.400000 +1639 1301 0.400000 +1639 1316 0.400000 +1639 1369 0.400000 +1639 1394 0.400000 +1639 1494 0.400000 +1639 1600 0.400000 +1639 1691 0.400000 +1639 1791 0.400000 +1639 1806 0.400000 +1639 1856 0.400000 +1639 1863 0.400000 +1639 1869 0.400000 +1639 1921 0.400000 +1639 1948 0.400000 +1639 1952 0.400000 +1639 2001 0.400000 +1639 2077 0.400000 +1639 2086 0.400000 +1639 2162 0.400000 +1639 2197 0.400000 +1639 2214 0.400000 +1639 2259 0.400000 +1639 2274 0.400000 +1639 2290 0.400000 +1639 2305 0.400000 +1639 2440 0.400000 +1639 2534 0.400000 +1639 2583 0.400000 +1639 2861 0.400000 +1639 2953 0.400000 +1639 2974 0.400000 +1639 2985 0.400000 +1639 3030 0.400000 +1639 3078 0.400000 +1639 3087 0.400000 +1639 3110 0.400000 +1639 3162 0.400000 +1640 83 0.400000 +1640 107 0.400000 +1640 123 0.400000 +1640 148 0.400000 +1640 272 0.400000 +1640 375 0.400000 +1640 413 0.400000 +1640 469 0.400000 +1640 495 0.400000 +1640 535 0.400000 +1640 544 0.400000 +1640 698 0.400000 +1640 814 0.400000 +1640 879 0.400000 +1640 942 0.400000 +1640 947 0.400000 +1640 997 0.400000 +1640 1188 0.400000 +1640 1395 0.400000 +1640 1457 0.400000 +1640 1581 0.400000 +1640 1667 0.400000 +1640 1718 0.400000 +1640 1795 0.400000 +1640 1819 0.400000 +1640 1854 0.400000 +1640 1947 0.400000 +1640 2082 0.400000 +1640 2197 0.400000 +1640 2235 0.400000 +1640 2247 0.400000 +1640 2275 0.400000 +1640 2307 0.400000 +1640 2488 0.400000 +1640 2493 0.400000 +1640 2497 0.400000 +1640 2533 0.400000 +1640 2546 0.400000 +1640 2552 0.400000 +1640 2557 0.400000 +1640 2570 0.400000 +1640 2685 0.400000 +1640 2755 0.400000 +1640 2791 0.400000 +1640 2799 0.400000 +1640 2802 0.400000 +1640 2844 0.400000 +1640 2846 0.400000 +1640 2880 0.400000 +1640 2983 0.400000 +1640 2993 0.400000 +1640 3019 0.400000 +1640 3146 0.400000 +1640 3148 0.400000 +1641 17 0.400000 +1641 29 0.400000 +1641 40 0.400000 +1641 59 0.400000 +1641 87 0.400000 +1641 283 0.400000 +1641 290 0.400000 +1641 309 0.400000 +1641 315 0.400000 +1641 388 0.400000 +1641 513 0.400000 +1641 616 0.400000 +1641 640 0.400000 +1641 682 0.400000 +1641 826 0.400000 +1641 862 0.400000 +1641 1003 0.400000 +1641 1062 0.400000 +1641 1073 0.400000 +1641 1091 0.400000 +1641 1145 0.400000 +1641 1150 0.400000 +1641 1180 0.400000 +1641 1210 0.400000 +1641 1384 0.400000 +1641 1392 0.400000 +1641 1396 0.400000 +1641 1448 0.400000 +1641 1456 0.400000 +1641 1542 0.400000 +1641 1614 0.400000 +1641 1670 0.400000 +1641 1838 0.400000 +1641 1959 0.400000 +1641 2137 0.400000 +1641 2155 0.400000 +1641 2188 0.400000 +1641 2200 0.400000 +1641 2218 0.400000 +1641 2269 0.400000 +1641 2364 0.400000 +1641 2386 0.400000 +1641 2443 0.400000 +1641 2452 0.400000 +1641 2470 0.400000 +1641 2520 0.400000 +1641 2571 0.400000 +1641 2607 0.400000 +1641 2769 0.400000 +1641 2821 0.400000 +1641 2843 0.400000 +1641 2952 0.400000 +1641 2962 0.400000 +1641 2978 0.400000 +1641 3000 0.400000 +1641 3068 0.400000 +1641 3080 0.400000 +1641 3104 0.400000 +1641 3114 0.400000 +1641 3143 0.400000 +1641 3153 0.400000 +1641 3158 0.400000 +1641 3173 0.400000 +1642 19 0.400000 +1642 30 0.400000 +1642 95 0.400000 +1642 155 0.400000 +1642 162 0.400000 +1642 173 0.400000 +1642 196 0.400000 +1642 221 0.400000 +1642 298 0.400000 +1642 301 0.400000 +1642 325 0.400000 +1642 327 0.400000 +1642 377 0.400000 +1642 589 0.400000 +1642 598 0.400000 +1642 632 0.400000 +1642 707 0.400000 +1642 807 0.400000 +1642 808 0.400000 +1642 815 0.400000 +1642 877 0.400000 +1642 910 0.400000 +1642 1029 0.400000 +1642 1044 0.400000 +1642 1113 0.400000 +1642 1211 0.400000 +1642 1243 0.400000 +1642 1268 0.400000 +1642 1342 0.400000 +1642 1363 0.400000 +1642 1427 0.400000 +1642 1492 0.400000 +1642 1516 0.400000 +1642 1520 0.400000 +1642 1564 0.400000 +1642 1719 0.400000 +1642 1759 0.400000 +1642 1796 0.400000 +1642 1850 0.400000 +1642 1888 0.400000 +1642 1892 0.400000 +1642 1893 0.400000 +1642 1929 0.400000 +1642 1955 0.400000 +1642 2044 0.400000 +1642 2054 0.400000 +1642 2076 0.400000 +1642 2084 0.400000 +1642 2193 0.400000 +1642 2224 0.400000 +1642 2406 0.400000 +1642 2421 0.400000 +1642 2431 0.400000 +1642 2516 0.400000 +1642 2528 0.400000 +1642 2589 0.400000 +1642 2661 0.400000 +1642 2925 0.400000 +1642 2956 0.400000 +1642 3014 0.400000 +1642 3117 0.400000 +1642 3126 0.400000 +1642 3134 0.400000 +1642 3176 0.400000 +1643 14 0.400000 +1643 46 0.400000 +1643 117 0.400000 +1643 244 0.400000 +1643 335 0.400000 +1643 362 0.400000 +1643 422 0.400000 +1643 452 0.400000 +1643 508 0.400000 +1643 558 0.400000 +1643 582 0.400000 +1643 585 0.400000 +1643 590 0.400000 +1643 703 0.400000 +1643 706 0.400000 +1643 727 0.400000 +1643 751 0.400000 +1643 831 0.400000 +1643 884 0.400000 +1643 903 0.400000 +1643 994 0.400000 +1643 1043 0.400000 +1643 1154 0.400000 +1643 1205 0.400000 +1643 1301 0.400000 +1643 1308 0.400000 +1643 1324 0.400000 +1643 1334 0.400000 +1643 1346 0.400000 +1643 1510 0.400000 +1643 1529 0.400000 +1643 1543 0.400000 +1643 1584 0.400000 +1643 1585 0.400000 +1643 1615 0.400000 +1643 1637 0.400000 +1643 1643 0.400000 +1643 1711 0.400000 +1643 1970 0.400000 +1643 2126 0.400000 +1643 2343 0.400000 +1643 2344 0.400000 +1643 2411 0.400000 +1643 2466 0.400000 +1643 2587 0.400000 +1643 2598 0.400000 +1643 2629 0.400000 +1643 2677 0.400000 +1643 2705 0.400000 +1643 2715 0.400000 +1643 2742 0.400000 +1643 2817 0.400000 +1643 2820 0.400000 +1643 2827 0.400000 +1643 2837 0.400000 +1643 2844 0.400000 +1643 2951 0.400000 +1643 2983 0.400000 +1643 3035 0.400000 +1643 3040 0.400000 +1643 3187 0.400000 +1644 19 0.400000 +1644 39 0.400000 +1644 82 0.400000 +1644 163 0.400000 +1644 368 0.400000 +1644 485 0.400000 +1644 644 0.400000 +1644 660 0.400000 +1644 672 0.400000 +1644 690 0.400000 +1644 694 0.400000 +1644 723 0.400000 +1644 779 0.400000 +1644 866 0.400000 +1644 910 0.400000 +1644 1014 0.400000 +1644 1064 0.400000 +1644 1097 0.400000 +1644 1154 0.400000 +1644 1207 0.400000 +1644 1274 0.400000 +1644 1281 0.400000 +1644 1442 0.400000 +1644 1444 0.400000 +1644 1449 0.400000 +1644 1453 0.400000 +1644 1536 0.400000 +1644 1544 0.400000 +1644 1668 0.400000 +1644 1698 0.400000 +1644 1709 0.400000 +1644 1784 0.400000 +1644 1806 0.400000 +1644 1824 0.400000 +1644 1867 0.400000 +1644 1978 0.400000 +1644 2025 0.400000 +1644 2265 0.400000 +1644 2295 0.400000 +1644 2474 0.400000 +1644 2541 0.400000 +1644 2585 0.400000 +1644 2603 0.400000 +1644 2841 0.400000 +1644 2893 0.400000 +1644 2956 0.400000 +1644 3049 0.400000 +1644 3170 0.400000 +1644 3177 0.400000 +1644 3192 0.400000 +1645 118 0.400000 +1645 120 0.400000 +1645 159 0.400000 +1645 196 0.400000 +1645 400 0.400000 +1645 454 0.400000 +1645 477 0.400000 +1645 500 0.400000 +1645 616 0.400000 +1645 676 0.400000 +1645 699 0.400000 +1645 731 0.400000 +1645 811 0.400000 +1645 911 0.400000 +1645 915 0.400000 +1645 995 0.400000 +1645 1000 0.400000 +1645 1073 0.400000 +1645 1139 0.400000 +1645 1140 0.400000 +1645 1178 0.400000 +1645 1283 0.400000 +1645 1443 0.400000 +1645 1553 0.400000 +1645 1606 0.400000 +1645 1722 0.400000 +1645 1734 0.400000 +1645 1753 0.400000 +1645 1802 0.400000 +1645 1821 0.400000 +1645 1836 0.400000 +1645 1862 0.400000 +1645 1886 0.400000 +1645 1936 0.400000 +1645 2060 0.400000 +1645 2104 0.400000 +1645 2138 0.400000 +1645 2151 0.400000 +1645 2185 0.400000 +1645 2193 0.400000 +1645 2232 0.400000 +1645 2248 0.400000 +1645 2284 0.400000 +1645 2293 0.400000 +1645 2347 0.400000 +1645 2384 0.400000 +1645 2399 0.400000 +1645 2416 0.400000 +1645 2450 0.400000 +1645 2454 0.400000 +1645 2550 0.400000 +1645 2556 0.400000 +1645 2573 0.400000 +1645 2608 0.400000 +1645 2733 0.400000 +1645 2843 0.400000 +1645 2861 0.400000 +1645 2873 0.400000 +1645 2919 0.400000 +1645 2975 0.400000 +1645 3054 0.400000 +1645 3055 0.400000 +1645 3077 0.400000 +1645 3102 0.400000 +1646 43 0.400000 +1646 67 0.400000 +1646 125 0.400000 +1646 161 0.400000 +1646 185 0.400000 +1646 190 0.400000 +1646 201 0.400000 +1646 209 0.400000 +1646 272 0.400000 +1646 419 0.400000 +1646 560 0.400000 +1646 575 0.400000 +1646 579 0.400000 +1646 591 0.400000 +1646 604 0.400000 +1646 627 0.400000 +1646 688 0.400000 +1646 752 0.400000 +1646 941 0.400000 +1646 945 0.400000 +1646 964 0.400000 +1646 1086 0.400000 +1646 1099 0.400000 +1646 1195 0.400000 +1646 1346 0.400000 +1646 1374 0.400000 +1646 1419 0.400000 +1646 1445 0.400000 +1646 1478 0.400000 +1646 1585 0.400000 +1646 1592 0.400000 +1646 1687 0.400000 +1646 1859 0.400000 +1646 1869 0.400000 +1646 1879 0.400000 +1646 1966 0.400000 +1646 1969 0.400000 +1646 1977 0.400000 +1646 2062 0.400000 +1646 2106 0.400000 +1646 2147 0.400000 +1646 2191 0.400000 +1646 2311 0.400000 +1646 2379 0.400000 +1646 2389 0.400000 +1646 2583 0.400000 +1646 2611 0.400000 +1646 2629 0.400000 +1646 2630 0.400000 +1646 2652 0.400000 +1646 2667 0.400000 +1646 2719 0.400000 +1646 2721 0.400000 +1646 2723 0.400000 +1646 2851 0.400000 +1646 2882 0.400000 +1646 3026 0.400000 +1646 3081 0.400000 +1646 3089 0.400000 +1646 3128 0.400000 +1647 26 0.400000 +1647 225 0.400000 +1647 525 0.400000 +1647 546 0.400000 +1647 567 0.400000 +1647 573 0.400000 +1647 575 0.400000 +1647 630 0.400000 +1647 662 0.400000 +1647 731 0.400000 +1647 846 0.400000 +1647 848 0.400000 +1647 871 0.400000 +1647 1017 0.400000 +1647 1032 0.400000 +1647 1039 0.400000 +1647 1048 0.400000 +1647 1075 0.400000 +1647 1210 0.400000 +1647 1294 0.400000 +1647 1305 0.400000 +1647 1398 0.400000 +1647 1437 0.400000 +1647 1533 0.400000 +1647 1549 0.400000 +1647 1562 0.400000 +1647 1657 0.400000 +1647 1685 0.400000 +1647 1821 0.400000 +1647 1832 0.400000 +1647 1874 0.400000 +1647 1917 0.400000 +1647 2047 0.400000 +1647 2115 0.400000 +1647 2153 0.400000 +1647 2223 0.400000 +1647 2255 0.400000 +1647 2272 0.400000 +1647 2302 0.400000 +1647 2378 0.400000 +1647 2513 0.400000 +1647 2514 0.400000 +1647 2520 0.400000 +1647 2543 0.400000 +1647 2561 0.400000 +1647 2588 0.400000 +1647 2698 0.400000 +1647 2732 0.400000 +1647 2747 0.400000 +1647 2769 0.400000 +1647 2796 0.400000 +1647 2814 0.400000 +1647 3109 0.400000 +1647 3118 0.400000 +1648 104 0.400000 +1648 160 0.400000 +1648 165 0.400000 +1648 210 0.400000 +1648 233 0.400000 +1648 239 0.400000 +1648 277 0.400000 +1648 331 0.400000 +1648 355 0.400000 +1648 404 0.400000 +1648 490 0.400000 +1648 495 0.400000 +1648 496 0.400000 +1648 630 0.400000 +1648 721 0.400000 +1648 722 0.400000 +1648 893 0.400000 +1648 894 0.400000 +1648 937 0.400000 +1648 991 0.400000 +1648 1025 0.400000 +1648 1053 0.400000 +1648 1064 0.400000 +1648 1195 0.400000 +1648 1269 0.400000 +1648 1317 0.400000 +1648 1446 0.400000 +1648 1465 0.400000 +1648 1526 0.400000 +1648 1527 0.400000 +1648 1604 0.400000 +1648 1676 0.400000 +1648 1686 0.400000 +1648 1700 0.400000 +1648 1715 0.400000 +1648 1728 0.400000 +1648 1801 0.400000 +1648 1986 0.400000 +1648 2071 0.400000 +1648 2075 0.400000 +1648 2140 0.400000 +1648 2219 0.400000 +1648 2270 0.400000 +1648 2314 0.400000 +1648 2417 0.400000 +1648 2460 0.400000 +1648 2532 0.400000 +1648 2583 0.400000 +1648 2643 0.400000 +1648 2644 0.400000 +1648 2720 0.400000 +1648 2764 0.400000 +1648 2777 0.400000 +1648 2794 0.400000 +1648 2851 0.400000 +1648 2878 0.400000 +1648 2885 0.400000 +1648 2894 0.400000 +1648 2941 0.400000 +1648 2943 0.400000 +1648 3072 0.400000 +1648 3097 0.400000 +1648 3170 0.400000 +1648 3197 0.400000 +1649 21 0.400000 +1649 51 0.400000 +1649 52 0.400000 +1649 129 0.400000 +1649 274 0.400000 +1649 418 0.400000 +1649 422 0.400000 +1649 432 0.400000 +1649 513 0.400000 +1649 560 0.400000 +1649 631 0.400000 +1649 659 0.400000 +1649 891 0.400000 +1649 898 0.400000 +1649 936 0.400000 +1649 986 0.400000 +1649 1013 0.400000 +1649 1089 0.400000 +1649 1193 0.400000 +1649 1236 0.400000 +1649 1259 0.400000 +1649 1439 0.400000 +1649 1496 0.400000 +1649 1552 0.400000 +1649 1561 0.400000 +1649 1687 0.400000 +1649 1757 0.400000 +1649 1791 0.400000 +1649 1814 0.400000 +1649 1882 0.400000 +1649 1918 0.400000 +1649 2081 0.400000 +1649 2123 0.400000 +1649 2170 0.400000 +1649 2201 0.400000 +1649 2209 0.400000 +1649 2256 0.400000 +1649 2257 0.400000 +1649 2304 0.400000 +1649 2305 0.400000 +1649 2411 0.400000 +1649 2458 0.400000 +1649 2470 0.400000 +1649 2471 0.400000 +1649 2532 0.400000 +1649 2703 0.400000 +1649 2720 0.400000 +1649 2807 0.400000 +1649 2819 0.400000 +1649 2901 0.400000 +1649 2954 0.400000 +1649 2976 0.400000 +1649 2995 0.400000 +1649 3015 0.400000 +1649 3018 0.400000 +1649 3065 0.400000 +1649 3099 0.400000 +1649 3148 0.400000 +1649 3174 0.400000 +1650 21 0.400000 +1650 42 0.400000 +1650 98 0.400000 +1650 129 0.400000 +1650 272 0.400000 +1650 305 0.400000 +1650 307 0.400000 +1650 308 0.400000 +1650 318 0.400000 +1650 325 0.400000 +1650 413 0.400000 +1650 414 0.400000 +1650 466 0.400000 +1650 540 0.400000 +1650 624 0.400000 +1650 639 0.400000 +1650 696 0.400000 +1650 700 0.400000 +1650 720 0.400000 +1650 733 0.400000 +1650 742 0.400000 +1650 806 0.400000 +1650 833 0.400000 +1650 857 0.400000 +1650 946 0.400000 +1650 958 0.400000 +1650 984 0.400000 +1650 1148 0.400000 +1650 1249 0.400000 +1650 1265 0.400000 +1650 1269 0.400000 +1650 1317 0.400000 +1650 1378 0.400000 +1650 1463 0.400000 +1650 1464 0.400000 +1650 1466 0.400000 +1650 1469 0.400000 +1650 1517 0.400000 +1650 1572 0.400000 +1650 1661 0.400000 +1650 1666 0.400000 +1650 1710 0.400000 +1650 1762 0.400000 +1650 1763 0.400000 +1650 1782 0.400000 +1650 1796 0.400000 +1650 1839 0.400000 +1650 1925 0.400000 +1650 1945 0.400000 +1650 1952 0.400000 +1650 1988 0.400000 +1650 2020 0.400000 +1650 2059 0.400000 +1650 2103 0.400000 +1650 2136 0.400000 +1650 2154 0.400000 +1650 2181 0.400000 +1650 2195 0.400000 +1650 2196 0.400000 +1650 2300 0.400000 +1650 2304 0.400000 +1650 2374 0.400000 +1650 2548 0.400000 +1650 2568 0.400000 +1650 2640 0.400000 +1650 2642 0.400000 +1650 2708 0.400000 +1650 2709 0.400000 +1650 2724 0.400000 +1650 2732 0.400000 +1650 2776 0.400000 +1650 2805 0.400000 +1650 2818 0.400000 +1650 2885 0.400000 +1650 2901 0.400000 +1650 2963 0.400000 +1650 3030 0.400000 +1650 3047 0.400000 +1650 3107 0.400000 +1650 3139 0.400000 +1651 41 0.400000 +1651 74 0.400000 +1651 90 0.400000 +1651 150 0.400000 +1651 210 0.400000 +1651 262 0.400000 +1651 280 0.400000 +1651 307 0.400000 +1651 322 0.400000 +1651 338 0.400000 +1651 384 0.400000 +1651 625 0.400000 +1651 670 0.400000 +1651 708 0.400000 +1651 717 0.400000 +1651 739 0.400000 +1651 776 0.400000 +1651 846 0.400000 +1651 857 0.400000 +1651 901 0.400000 +1651 962 0.400000 +1651 969 0.400000 +1651 1143 0.400000 +1651 1161 0.400000 +1651 1193 0.400000 +1651 1200 0.400000 +1651 1213 0.400000 +1651 1250 0.400000 +1651 1313 0.400000 +1651 1328 0.400000 +1651 1456 0.400000 +1651 1529 0.400000 +1651 1534 0.400000 +1651 1571 0.400000 +1651 1601 0.400000 +1651 1630 0.400000 +1651 1652 0.400000 +1651 1665 0.400000 +1651 1667 0.400000 +1651 1692 0.400000 +1651 1705 0.400000 +1651 1782 0.400000 +1651 1954 0.400000 +1651 1989 0.400000 +1651 2134 0.400000 +1651 2229 0.400000 +1651 2246 0.400000 +1651 2319 0.400000 +1651 2440 0.400000 +1651 2450 0.400000 +1651 2451 0.400000 +1651 2457 0.400000 +1651 2477 0.400000 +1651 2574 0.400000 +1651 2585 0.400000 +1651 2605 0.400000 +1651 2612 0.400000 +1651 2671 0.400000 +1651 2734 0.400000 +1651 2752 0.400000 +1651 2755 0.400000 +1651 2930 0.400000 +1651 2931 0.400000 +1651 2972 0.400000 +1651 3081 0.400000 +1652 10 0.400000 +1652 223 0.400000 +1652 238 0.400000 +1652 399 0.400000 +1652 451 0.400000 +1652 534 0.400000 +1652 662 0.400000 +1652 669 0.400000 +1652 717 0.400000 +1652 731 0.400000 +1652 783 0.400000 +1652 868 0.400000 +1652 890 0.400000 +1652 925 0.400000 +1652 928 0.400000 +1652 936 0.400000 +1652 956 0.400000 +1652 960 0.400000 +1652 964 0.400000 +1652 971 0.400000 +1652 997 0.400000 +1652 1033 0.400000 +1652 1222 0.400000 +1652 1225 0.400000 +1652 1239 0.400000 +1652 1274 0.400000 +1652 1320 0.400000 +1652 1332 0.400000 +1652 1347 0.400000 +1652 1348 0.400000 +1652 1362 0.400000 +1652 1502 0.400000 +1652 1567 0.400000 +1652 1615 0.400000 +1652 1639 0.400000 +1652 1651 0.400000 +1652 1727 0.400000 +1652 1847 0.400000 +1652 1867 0.400000 +1652 1931 0.400000 +1652 2045 0.400000 +1652 2064 0.400000 +1652 2117 0.400000 +1652 2118 0.400000 +1652 2141 0.400000 +1652 2196 0.400000 +1652 2286 0.400000 +1652 2289 0.400000 +1652 2344 0.400000 +1652 2524 0.400000 +1652 2536 0.400000 +1652 2550 0.400000 +1652 2554 0.400000 +1652 2581 0.400000 +1652 2606 0.400000 +1652 2715 0.400000 +1652 2823 0.400000 +1652 2939 0.400000 +1652 3016 0.400000 +1652 3034 0.400000 +1652 3041 0.400000 +1652 3059 0.400000 +1652 3165 0.400000 +1653 48 0.400000 +1653 61 0.400000 +1653 72 0.400000 +1653 155 0.400000 +1653 184 0.400000 +1653 354 0.400000 +1653 418 0.400000 +1653 472 0.400000 +1653 542 0.400000 +1653 544 0.400000 +1653 597 0.400000 +1653 617 0.400000 +1653 657 0.400000 +1653 686 0.400000 +1653 763 0.400000 +1653 794 0.400000 +1653 861 0.400000 +1653 983 0.400000 +1653 1010 0.400000 +1653 1129 0.400000 +1653 1168 0.400000 +1653 1232 0.400000 +1653 1262 0.400000 +1653 1359 0.400000 +1653 1392 0.400000 +1653 1393 0.400000 +1653 1560 0.400000 +1653 1700 0.400000 +1653 1708 0.400000 +1653 1772 0.400000 +1653 1791 0.400000 +1653 1792 0.400000 +1653 1816 0.400000 +1653 1823 0.400000 +1653 1877 0.400000 +1653 1930 0.400000 +1653 1956 0.400000 +1653 1962 0.400000 +1653 2019 0.400000 +1653 2072 0.400000 +1653 2101 0.400000 +1653 2102 0.400000 +1653 2123 0.400000 +1653 2158 0.400000 +1653 2185 0.400000 +1653 2225 0.400000 +1653 2257 0.400000 +1653 2267 0.400000 +1653 2283 0.400000 +1653 2291 0.400000 +1653 2343 0.400000 +1653 2365 0.400000 +1653 2398 0.400000 +1653 2508 0.400000 +1653 2539 0.400000 +1653 2653 0.400000 +1653 2735 0.400000 +1653 2737 0.400000 +1653 2749 0.400000 +1653 2769 0.400000 +1653 2802 0.400000 +1653 2841 0.400000 +1653 2887 0.400000 +1653 2912 0.400000 +1653 2926 0.400000 +1653 2937 0.400000 +1653 2959 0.400000 +1653 2978 0.400000 +1653 2998 0.400000 +1653 3075 0.400000 +1653 3119 0.400000 +1653 3121 0.400000 +1654 41 0.400000 +1654 74 0.400000 +1654 100 0.400000 +1654 113 0.400000 +1654 220 0.400000 +1654 268 0.400000 +1654 292 0.400000 +1654 323 0.400000 +1654 333 0.400000 +1654 338 0.400000 +1654 486 0.400000 +1654 501 0.400000 +1654 502 0.400000 +1654 587 0.400000 +1654 667 0.400000 +1654 690 0.400000 +1654 695 0.400000 +1654 786 0.400000 +1654 849 0.400000 +1654 945 0.400000 +1654 963 0.400000 +1654 986 0.400000 +1654 1000 0.400000 +1654 1035 0.400000 +1654 1136 0.400000 +1654 1161 0.400000 +1654 1207 0.400000 +1654 1261 0.400000 +1654 1296 0.400000 +1654 1366 0.400000 +1654 1390 0.400000 +1654 1468 0.400000 +1654 1566 0.400000 +1654 1593 0.400000 +1654 1687 0.400000 +1654 1691 0.400000 +1654 1812 0.400000 +1654 1830 0.400000 +1654 1848 0.400000 +1654 1872 0.400000 +1654 1906 0.400000 +1654 1987 0.400000 +1654 2072 0.400000 +1654 2129 0.400000 +1654 2227 0.400000 +1654 2322 0.400000 +1654 2396 0.400000 +1654 2400 0.400000 +1654 2428 0.400000 +1654 2566 0.400000 +1654 2593 0.400000 +1654 2722 0.400000 +1654 2735 0.400000 +1654 2827 0.400000 +1654 2892 0.400000 +1654 2932 0.400000 +1654 2998 0.400000 +1654 3101 0.400000 +1654 3138 0.400000 +1655 36 0.400000 +1655 113 0.400000 +1655 170 0.400000 +1655 230 0.400000 +1655 277 0.400000 +1655 281 0.400000 +1655 319 0.400000 +1655 322 0.400000 +1655 336 0.400000 +1655 411 0.400000 +1655 473 0.400000 +1655 485 0.400000 +1655 631 0.400000 +1655 667 0.400000 +1655 676 0.400000 +1655 693 0.400000 +1655 726 0.400000 +1655 732 0.400000 +1655 795 0.400000 +1655 810 0.400000 +1655 831 0.400000 +1655 885 0.400000 +1655 975 0.400000 +1655 1020 0.400000 +1655 1047 0.400000 +1655 1062 0.400000 +1655 1221 0.400000 +1655 1258 0.400000 +1655 1341 0.400000 +1655 1389 0.400000 +1655 1415 0.400000 +1655 1421 0.400000 +1655 1447 0.400000 +1655 1467 0.400000 +1655 1494 0.400000 +1655 1547 0.400000 +1655 1570 0.400000 +1655 1739 0.400000 +1655 1816 0.400000 +1655 1939 0.400000 +1655 1955 0.400000 +1655 2032 0.400000 +1655 2101 0.400000 +1655 2125 0.400000 +1655 2185 0.400000 +1655 2232 0.400000 +1655 2261 0.400000 +1655 2267 0.400000 +1655 2279 0.400000 +1655 2366 0.400000 +1655 2372 0.400000 +1655 2468 0.400000 +1655 2482 0.400000 +1655 2504 0.400000 +1655 2682 0.400000 +1655 2715 0.400000 +1655 2781 0.400000 +1655 2874 0.400000 +1655 2905 0.400000 +1655 2914 0.400000 +1655 2957 0.400000 +1655 2973 0.400000 +1655 2992 0.400000 +1655 3015 0.400000 +1655 3109 0.400000 +1655 3195 0.400000 +1656 9 0.400000 +1656 11 0.400000 +1656 19 0.400000 +1656 25 0.400000 +1656 57 0.400000 +1656 71 0.400000 +1656 94 0.400000 +1656 184 0.400000 +1656 217 0.400000 +1656 369 0.400000 +1656 479 0.400000 +1656 499 0.400000 +1656 587 0.400000 +1656 657 0.400000 +1656 677 0.400000 +1656 703 0.400000 +1656 757 0.400000 +1656 759 0.400000 +1656 972 0.400000 +1656 973 0.400000 +1656 1136 0.400000 +1656 1150 0.400000 +1656 1165 0.400000 +1656 1217 0.400000 +1656 1222 0.400000 +1656 1233 0.400000 +1656 1234 0.400000 +1656 1278 0.400000 +1656 1296 0.400000 +1656 1369 0.400000 +1656 1371 0.400000 +1656 1494 0.400000 +1656 1529 0.400000 +1656 1559 0.400000 +1656 1695 0.400000 +1656 1735 0.400000 +1656 1802 0.400000 +1656 1852 0.400000 +1656 1949 0.400000 +1656 2044 0.400000 +1656 2206 0.400000 +1656 2235 0.400000 +1656 2266 0.400000 +1656 2308 0.400000 +1656 2406 0.400000 +1656 2449 0.400000 +1656 2451 0.400000 +1656 2465 0.400000 +1656 2552 0.400000 +1656 2560 0.400000 +1656 2650 0.400000 +1656 2676 0.400000 +1656 2730 0.400000 +1656 2757 0.400000 +1656 2769 0.400000 +1656 2917 0.400000 +1656 3053 0.400000 +1656 3069 0.400000 +1656 3132 0.400000 +1656 3167 0.400000 +1657 117 0.400000 +1657 324 0.400000 +1657 326 0.400000 +1657 462 0.400000 +1657 476 0.400000 +1657 558 0.400000 +1657 562 0.400000 +1657 577 0.400000 +1657 580 0.400000 +1657 638 0.400000 +1657 666 0.400000 +1657 679 0.400000 +1657 695 0.400000 +1657 698 0.400000 +1657 717 0.400000 +1657 759 0.400000 +1657 799 0.400000 +1657 895 0.400000 +1657 976 0.400000 +1657 1045 0.400000 +1657 1051 0.400000 +1657 1096 0.400000 +1657 1130 0.400000 +1657 1146 0.400000 +1657 1212 0.400000 +1657 1233 0.400000 +1657 1248 0.400000 +1657 1256 0.400000 +1657 1258 0.400000 +1657 1270 0.400000 +1657 1432 0.400000 +1657 1488 0.400000 +1657 1562 0.400000 +1657 1599 0.400000 +1657 1642 0.400000 +1657 1691 0.400000 +1657 1717 0.400000 +1657 1729 0.400000 +1657 1741 0.400000 +1657 1805 0.400000 +1657 1829 0.400000 +1657 1911 0.400000 +1657 1954 0.400000 +1657 2003 0.400000 +1657 2028 0.400000 +1657 2047 0.400000 +1657 2252 0.400000 +1657 2323 0.400000 +1657 2414 0.400000 +1657 2470 0.400000 +1657 2491 0.400000 +1657 2549 0.400000 +1657 2623 0.400000 +1657 2634 0.400000 +1657 2662 0.400000 +1657 2667 0.400000 +1657 2706 0.400000 +1657 2814 0.400000 +1657 2844 0.400000 +1657 3000 0.400000 +1657 3004 0.400000 +1657 3031 0.400000 +1657 3046 0.400000 +1657 3171 0.400000 +1657 3178 0.400000 +1657 3200 0.400000 +1658 39 0.400000 +1658 45 0.400000 +1658 105 0.400000 +1658 175 0.400000 +1658 234 0.400000 +1658 320 0.400000 +1658 367 0.400000 +1658 384 0.400000 +1658 447 0.400000 +1658 563 0.400000 +1658 640 0.400000 +1658 648 0.400000 +1658 773 0.400000 +1658 776 0.400000 +1658 801 0.400000 +1658 894 0.400000 +1658 927 0.400000 +1658 1057 0.400000 +1658 1092 0.400000 +1658 1109 0.400000 +1658 1135 0.400000 +1658 1146 0.400000 +1658 1161 0.400000 +1658 1180 0.400000 +1658 1213 0.400000 +1658 1297 0.400000 +1658 1391 0.400000 +1658 1397 0.400000 +1658 1440 0.400000 +1658 1442 0.400000 +1658 1480 0.400000 +1658 1573 0.400000 +1658 1660 0.400000 +1658 1664 0.400000 +1658 1715 0.400000 +1658 1881 0.400000 +1658 1895 0.400000 +1658 1922 0.400000 +1658 1984 0.400000 +1658 2106 0.400000 +1658 2161 0.400000 +1658 2213 0.400000 +1658 2357 0.400000 +1658 2442 0.400000 +1658 2463 0.400000 +1658 2574 0.400000 +1658 2599 0.400000 +1658 2601 0.400000 +1658 2613 0.400000 +1658 2905 0.400000 +1658 2991 0.400000 +1658 3006 0.400000 +1658 3051 0.400000 +1658 3063 0.400000 +1658 3133 0.400000 +1658 3165 0.400000 +1659 37 0.400000 +1659 38 0.400000 +1659 56 0.400000 +1659 98 0.400000 +1659 106 0.400000 +1659 126 0.400000 +1659 152 0.400000 +1659 206 0.400000 +1659 207 0.400000 +1659 288 0.400000 +1659 317 0.400000 +1659 537 0.400000 +1659 581 0.400000 +1659 590 0.400000 +1659 619 0.400000 +1659 689 0.400000 +1659 699 0.400000 +1659 706 0.400000 +1659 761 0.400000 +1659 776 0.400000 +1659 866 0.400000 +1659 871 0.400000 +1659 895 0.400000 +1659 918 0.400000 +1659 1000 0.400000 +1659 1043 0.400000 +1659 1106 0.400000 +1659 1174 0.400000 +1659 1205 0.400000 +1659 1218 0.400000 +1659 1380 0.400000 +1659 1417 0.400000 +1659 1497 0.400000 +1659 1505 0.400000 +1659 1541 0.400000 +1659 1588 0.400000 +1659 1619 0.400000 +1659 1643 0.400000 +1659 1671 0.400000 +1659 1721 0.400000 +1659 1872 0.400000 +1659 1976 0.400000 +1659 2066 0.400000 +1659 2133 0.400000 +1659 2142 0.400000 +1659 2149 0.400000 +1659 2246 0.400000 +1659 2348 0.400000 +1659 2365 0.400000 +1659 2376 0.400000 +1659 2441 0.400000 +1659 2445 0.400000 +1659 2470 0.400000 +1659 2576 0.400000 +1659 2599 0.400000 +1659 2607 0.400000 +1659 2677 0.400000 +1659 2720 0.400000 +1659 2748 0.400000 +1659 2814 0.400000 +1659 2889 0.400000 +1659 2904 0.400000 +1659 2957 0.400000 +1659 3131 0.400000 +1659 3155 0.400000 +1659 3165 0.400000 +1659 3177 0.400000 +1660 37 0.400000 +1660 80 0.400000 +1660 113 0.400000 +1660 169 0.400000 +1660 207 0.400000 +1660 231 0.400000 +1660 283 0.400000 +1660 330 0.400000 +1660 355 0.400000 +1660 457 0.400000 +1660 509 0.400000 +1660 552 0.400000 +1660 577 0.400000 +1660 602 0.400000 +1660 633 0.400000 +1660 665 0.400000 +1660 700 0.400000 +1660 738 0.400000 +1660 771 0.400000 +1660 797 0.400000 +1660 822 0.400000 +1660 877 0.400000 +1660 954 0.400000 +1660 960 0.400000 +1660 1017 0.400000 +1660 1026 0.400000 +1660 1079 0.400000 +1660 1117 0.400000 +1660 1123 0.400000 +1660 1126 0.400000 +1660 1127 0.400000 +1660 1197 0.400000 +1660 1220 0.400000 +1660 1235 0.400000 +1660 1276 0.400000 +1660 1489 0.400000 +1660 1522 0.400000 +1660 1539 0.400000 +1660 1612 0.400000 +1660 1690 0.400000 +1660 1730 0.400000 +1660 1746 0.400000 +1660 1806 0.400000 +1660 1818 0.400000 +1660 1852 0.400000 +1660 1887 0.400000 +1660 1942 0.400000 +1660 1947 0.400000 +1660 2012 0.400000 +1660 2103 0.400000 +1660 2126 0.400000 +1660 2261 0.400000 +1660 2267 0.400000 +1660 2293 0.400000 +1660 2341 0.400000 +1660 2385 0.400000 +1660 2386 0.400000 +1660 2485 0.400000 +1660 2535 0.400000 +1660 2567 0.400000 +1660 2614 0.400000 +1660 2628 0.400000 +1660 2656 0.400000 +1660 2850 0.400000 +1660 2887 0.400000 +1660 2893 0.400000 +1660 2935 0.400000 +1660 2938 0.400000 +1660 3022 0.400000 +1660 3054 0.400000 +1660 3106 0.400000 +1660 3120 0.400000 +1660 3158 0.400000 +1661 76 0.400000 +1661 124 0.400000 +1661 192 0.400000 +1661 228 0.400000 +1661 311 0.400000 +1661 344 0.400000 +1661 385 0.400000 +1661 478 0.400000 +1661 515 0.400000 +1661 525 0.400000 +1661 540 0.400000 +1661 548 0.400000 +1661 708 0.400000 +1661 970 0.400000 +1661 1017 0.400000 +1661 1145 0.400000 +1661 1202 0.400000 +1661 1235 0.400000 +1661 1258 0.400000 +1661 1273 0.400000 +1661 1293 0.400000 +1661 1304 0.400000 +1661 1328 0.400000 +1661 1350 0.400000 +1661 1411 0.400000 +1661 1424 0.400000 +1661 1433 0.400000 +1661 1434 0.400000 +1661 1518 0.400000 +1661 1587 0.400000 +1661 1636 0.400000 +1661 1661 0.400000 +1661 1665 0.400000 +1661 1673 0.400000 +1661 1751 0.400000 +1661 1802 0.400000 +1661 1829 0.400000 +1661 1850 0.400000 +1661 1863 0.400000 +1661 1931 0.400000 +1661 1991 0.400000 +1661 2017 0.400000 +1661 2028 0.400000 +1661 2087 0.400000 +1661 2130 0.400000 +1661 2171 0.400000 +1661 2228 0.400000 +1661 2283 0.400000 +1661 2462 0.400000 +1661 2515 0.400000 +1661 2545 0.400000 +1661 2570 0.400000 +1661 2573 0.400000 +1661 2616 0.400000 +1661 2722 0.400000 +1661 2734 0.400000 +1661 2789 0.400000 +1661 2830 0.400000 +1661 2912 0.400000 +1661 3081 0.400000 +1661 3150 0.400000 +1662 16 0.400000 +1662 41 0.400000 +1662 47 0.400000 +1662 75 0.400000 +1662 82 0.400000 +1662 133 0.400000 +1662 138 0.400000 +1662 146 0.400000 +1662 186 0.400000 +1662 362 0.400000 +1662 404 0.400000 +1662 508 0.400000 +1662 522 0.400000 +1662 538 0.400000 +1662 614 0.400000 +1662 652 0.400000 +1662 657 0.400000 +1662 686 0.400000 +1662 771 0.400000 +1662 856 0.400000 +1662 872 0.400000 +1662 907 0.400000 +1662 919 0.400000 +1662 929 0.400000 +1662 934 0.400000 +1662 962 0.400000 +1662 966 0.400000 +1662 1022 0.400000 +1662 1034 0.400000 +1662 1069 0.400000 +1662 1216 0.400000 +1662 1250 0.400000 +1662 1383 0.400000 +1662 1399 0.400000 +1662 1479 0.400000 +1662 1649 0.400000 +1662 1821 0.400000 +1662 1825 0.400000 +1662 1906 0.400000 +1662 1963 0.400000 +1662 1986 0.400000 +1662 2017 0.400000 +1662 2063 0.400000 +1662 2097 0.400000 +1662 2141 0.400000 +1662 2157 0.400000 +1662 2165 0.400000 +1662 2185 0.400000 +1662 2186 0.400000 +1662 2195 0.400000 +1662 2212 0.400000 +1662 2356 0.400000 +1662 2535 0.400000 +1662 2569 0.400000 +1662 2638 0.400000 +1662 2654 0.400000 +1662 2675 0.400000 +1662 2684 0.400000 +1662 2702 0.400000 +1662 2752 0.400000 +1662 2784 0.400000 +1662 2804 0.400000 +1662 2875 0.400000 +1662 2888 0.400000 +1662 2910 0.400000 +1662 2960 0.400000 +1662 2966 0.400000 +1662 3101 0.400000 +1662 3122 0.400000 +1663 3 0.400000 +1663 15 0.400000 +1663 50 0.400000 +1663 95 0.400000 +1663 125 0.400000 +1663 129 0.400000 +1663 334 0.400000 +1663 346 0.400000 +1663 353 0.400000 +1663 361 0.400000 +1663 378 0.400000 +1663 392 0.400000 +1663 404 0.400000 +1663 422 0.400000 +1663 445 0.400000 +1663 493 0.400000 +1663 564 0.400000 +1663 568 0.400000 +1663 589 0.400000 +1663 602 0.400000 +1663 610 0.400000 +1663 631 0.400000 +1663 664 0.400000 +1663 687 0.400000 +1663 763 0.400000 +1663 778 0.400000 +1663 793 0.400000 +1663 826 0.400000 +1663 891 0.400000 +1663 898 0.400000 +1663 1016 0.400000 +1663 1102 0.400000 +1663 1113 0.400000 +1663 1225 0.400000 +1663 1226 0.400000 +1663 1283 0.400000 +1663 1300 0.400000 +1663 1384 0.400000 +1663 1405 0.400000 +1663 1541 0.400000 +1663 1577 0.400000 +1663 1700 0.400000 +1663 1723 0.400000 +1663 1738 0.400000 +1663 1799 0.400000 +1663 1817 0.400000 +1663 1828 0.400000 +1663 1851 0.400000 +1663 1907 0.400000 +1663 1935 0.400000 +1663 1955 0.400000 +1663 1989 0.400000 +1663 2013 0.400000 +1663 2031 0.400000 +1663 2032 0.400000 +1663 2103 0.400000 +1663 2116 0.400000 +1663 2120 0.400000 +1663 2175 0.400000 +1663 2195 0.400000 +1663 2211 0.400000 +1663 2213 0.400000 +1663 2236 0.400000 +1663 2302 0.400000 +1663 2359 0.400000 +1663 2391 0.400000 +1663 2398 0.400000 +1663 2400 0.400000 +1663 2426 0.400000 +1663 2428 0.400000 +1663 2482 0.400000 +1663 2499 0.400000 +1663 2527 0.400000 +1663 2574 0.400000 +1663 2595 0.400000 +1663 2686 0.400000 +1663 2692 0.400000 +1663 2696 0.400000 +1663 2719 0.400000 +1663 2747 0.400000 +1663 2898 0.400000 +1663 2913 0.400000 +1663 2940 0.400000 +1663 2951 0.400000 +1663 3013 0.400000 +1664 21 0.400000 +1664 122 0.400000 +1664 130 0.400000 +1664 134 0.400000 +1664 154 0.400000 +1664 176 0.400000 +1664 326 0.400000 +1664 369 0.400000 +1664 423 0.400000 +1664 476 0.400000 +1664 536 0.400000 +1664 565 0.400000 +1664 580 0.400000 +1664 722 0.400000 +1664 753 0.400000 +1664 943 0.400000 +1664 979 0.400000 +1664 991 0.400000 +1664 1025 0.400000 +1664 1061 0.400000 +1664 1229 0.400000 +1664 1239 0.400000 +1664 1324 0.400000 +1664 1330 0.400000 +1664 1484 0.400000 +1664 1560 0.400000 +1664 1620 0.400000 +1664 1640 0.400000 +1664 1661 0.400000 +1664 1722 0.400000 +1664 1726 0.400000 +1664 1781 0.400000 +1664 1810 0.400000 +1664 1814 0.400000 +1664 1815 0.400000 +1664 1823 0.400000 +1664 1845 0.400000 +1664 1881 0.400000 +1664 1923 0.400000 +1664 1925 0.400000 +1664 1936 0.400000 +1664 1998 0.400000 +1664 1999 0.400000 +1664 2103 0.400000 +1664 2263 0.400000 +1664 2284 0.400000 +1664 2463 0.400000 +1664 2695 0.400000 +1664 2786 0.400000 +1664 2810 0.400000 +1664 2896 0.400000 +1664 2938 0.400000 +1664 2962 0.400000 +1664 2965 0.400000 +1664 2970 0.400000 +1664 3003 0.400000 +1664 3036 0.400000 +1664 3053 0.400000 +1664 3060 0.400000 +1664 3062 0.400000 +1664 3112 0.400000 +1665 29 0.400000 +1665 41 0.400000 +1665 45 0.400000 +1665 58 0.400000 +1665 60 0.400000 +1665 69 0.400000 +1665 96 0.400000 +1665 109 0.400000 +1665 116 0.400000 +1665 131 0.400000 +1665 186 0.400000 +1665 187 0.400000 +1665 241 0.400000 +1665 300 0.400000 +1665 316 0.400000 +1665 330 0.400000 +1665 399 0.400000 +1665 546 0.400000 +1665 569 0.400000 +1665 575 0.400000 +1665 602 0.400000 +1665 606 0.400000 +1665 646 0.400000 +1665 702 0.400000 +1665 746 0.400000 +1665 785 0.400000 +1665 842 0.400000 +1665 923 0.400000 +1665 929 0.400000 +1665 1116 0.400000 +1665 1134 0.400000 +1665 1162 0.400000 +1665 1369 0.400000 +1665 1370 0.400000 +1665 1417 0.400000 +1665 1429 0.400000 +1665 1588 0.400000 +1665 1636 0.400000 +1665 1706 0.400000 +1665 1714 0.400000 +1665 1748 0.400000 +1665 1753 0.400000 +1665 1762 0.400000 +1665 1781 0.400000 +1665 1796 0.400000 +1665 1881 0.400000 +1665 1882 0.400000 +1665 1893 0.400000 +1665 1995 0.400000 +1665 1997 0.400000 +1665 2045 0.400000 +1665 2089 0.400000 +1665 2202 0.400000 +1665 2217 0.400000 +1665 2307 0.400000 +1665 2321 0.400000 +1665 2355 0.400000 +1665 2385 0.400000 +1665 2701 0.400000 +1665 2706 0.400000 +1665 2798 0.400000 +1665 2805 0.400000 +1665 2892 0.400000 +1665 2913 0.400000 +1665 2924 0.400000 +1665 2937 0.400000 +1665 3001 0.400000 +1665 3039 0.400000 +1665 3108 0.400000 +1665 3112 0.400000 +1665 3125 0.400000 +1665 3155 0.400000 +1666 14 0.400000 +1666 195 0.400000 +1666 198 0.400000 +1666 207 0.400000 +1666 329 0.400000 +1666 374 0.400000 +1666 388 0.400000 +1666 530 0.400000 +1666 589 0.400000 +1666 636 0.400000 +1666 717 0.400000 +1666 792 0.400000 +1666 839 0.400000 +1666 937 0.400000 +1666 998 0.400000 +1666 1083 0.400000 +1666 1110 0.400000 +1666 1147 0.400000 +1666 1218 0.400000 +1666 1243 0.400000 +1666 1247 0.400000 +1666 1288 0.400000 +1666 1305 0.400000 +1666 1312 0.400000 +1666 1351 0.400000 +1666 1390 0.400000 +1666 1442 0.400000 +1666 1445 0.400000 +1666 1490 0.400000 +1666 1617 0.400000 +1666 1665 0.400000 +1666 1683 0.400000 +1666 1698 0.400000 +1666 1758 0.400000 +1666 1814 0.400000 +1666 1860 0.400000 +1666 1915 0.400000 +1666 1931 0.400000 +1666 1932 0.400000 +1666 1934 0.400000 +1666 1943 0.400000 +1666 1974 0.400000 +1666 2025 0.400000 +1666 2124 0.400000 +1666 2208 0.400000 +1666 2288 0.400000 +1666 2290 0.400000 +1666 2332 0.400000 +1666 2401 0.400000 +1666 2409 0.400000 +1666 2453 0.400000 +1666 2486 0.400000 +1666 2567 0.400000 +1666 2617 0.400000 +1666 2634 0.400000 +1666 2654 0.400000 +1666 2735 0.400000 +1666 2804 0.400000 +1666 2824 0.400000 +1666 2837 0.400000 +1666 2861 0.400000 +1666 2897 0.400000 +1666 2911 0.400000 +1666 2915 0.400000 +1666 2939 0.400000 +1666 3076 0.400000 +1666 3109 0.400000 +1666 3155 0.400000 +1666 3160 0.400000 +1666 3200 0.400000 +1667 101 0.400000 +1667 115 0.400000 +1667 129 0.400000 +1667 181 0.400000 +1667 389 0.400000 +1667 442 0.400000 +1667 516 0.400000 +1667 582 0.400000 +1667 596 0.400000 +1667 652 0.400000 +1667 677 0.400000 +1667 691 0.400000 +1667 729 0.400000 +1667 789 0.400000 +1667 824 0.400000 +1667 842 0.400000 +1667 875 0.400000 +1667 1021 0.400000 +1667 1066 0.400000 +1667 1176 0.400000 +1667 1208 0.400000 +1667 1234 0.400000 +1667 1243 0.400000 +1667 1252 0.400000 +1667 1279 0.400000 +1667 1415 0.400000 +1667 1432 0.400000 +1667 1453 0.400000 +1667 1506 0.400000 +1667 1519 0.400000 +1667 1658 0.400000 +1667 1687 0.400000 +1667 1706 0.400000 +1667 1707 0.400000 +1667 1712 0.400000 +1667 1733 0.400000 +1667 1768 0.400000 +1667 1789 0.400000 +1667 1859 0.400000 +1667 2013 0.400000 +1667 2028 0.400000 +1667 2040 0.400000 +1667 2067 0.400000 +1667 2132 0.400000 +1667 2218 0.400000 +1667 2238 0.400000 +1667 2278 0.400000 +1667 2320 0.400000 +1667 2330 0.400000 +1667 2341 0.400000 +1667 2438 0.400000 +1667 2447 0.400000 +1667 2470 0.400000 +1667 2491 0.400000 +1667 2495 0.400000 +1667 2539 0.400000 +1667 2545 0.400000 +1667 2609 0.400000 +1667 2637 0.400000 +1667 2783 0.400000 +1667 2791 0.400000 +1667 2855 0.400000 +1667 2924 0.400000 +1667 3023 0.400000 +1667 3039 0.400000 +1667 3099 0.400000 +1668 44 0.400000 +1668 73 0.400000 +1668 153 0.400000 +1668 234 0.400000 +1668 292 0.400000 +1668 387 0.400000 +1668 423 0.400000 +1668 499 0.400000 +1668 516 0.400000 +1668 524 0.400000 +1668 535 0.400000 +1668 697 0.400000 +1668 772 0.400000 +1668 777 0.400000 +1668 779 0.400000 +1668 787 0.400000 +1668 855 0.400000 +1668 862 0.400000 +1668 885 0.400000 +1668 900 0.400000 +1668 919 0.400000 +1668 944 0.400000 +1668 974 0.400000 +1668 998 0.400000 +1668 1020 0.400000 +1668 1087 0.400000 +1668 1088 0.400000 +1668 1090 0.400000 +1668 1107 0.400000 +1668 1129 0.400000 +1668 1141 0.400000 +1668 1289 0.400000 +1668 1291 0.400000 +1668 1379 0.400000 +1668 1469 0.400000 +1668 1507 0.400000 +1668 1539 0.400000 +1668 1676 0.400000 +1668 1740 0.400000 +1668 1822 0.400000 +1668 1830 0.400000 +1668 1968 0.400000 +1668 1998 0.400000 +1668 2002 0.400000 +1668 2067 0.400000 +1668 2149 0.400000 +1668 2152 0.400000 +1668 2319 0.400000 +1668 2480 0.400000 +1668 2506 0.400000 +1668 2586 0.400000 +1668 2680 0.400000 +1668 2770 0.400000 +1668 2825 0.400000 +1668 2955 0.400000 +1668 3008 0.400000 +1668 3039 0.400000 +1669 5 0.400000 +1669 43 0.400000 +1669 76 0.400000 +1669 126 0.400000 +1669 265 0.400000 +1669 309 0.400000 +1669 331 0.400000 +1669 345 0.400000 +1669 354 0.400000 +1669 379 0.400000 +1669 404 0.400000 +1669 410 0.400000 +1669 413 0.400000 +1669 418 0.400000 +1669 495 0.400000 +1669 604 0.400000 +1669 646 0.400000 +1669 704 0.400000 +1669 781 0.400000 +1669 926 0.400000 +1669 995 0.400000 +1669 1058 0.400000 +1669 1113 0.400000 +1669 1128 0.400000 +1669 1210 0.400000 +1669 1222 0.400000 +1669 1237 0.400000 +1669 1241 0.400000 +1669 1368 0.400000 +1669 1409 0.400000 +1669 1422 0.400000 +1669 1518 0.400000 +1669 1601 0.400000 +1669 1605 0.400000 +1669 1621 0.400000 +1669 1657 0.400000 +1669 1702 0.400000 +1669 1777 0.400000 +1669 1800 0.400000 +1669 1828 0.400000 +1669 1862 0.400000 +1669 1984 0.400000 +1669 2063 0.400000 +1669 2064 0.400000 +1669 2079 0.400000 +1669 2102 0.400000 +1669 2165 0.400000 +1669 2345 0.400000 +1669 2376 0.400000 +1669 2415 0.400000 +1669 2427 0.400000 +1669 2455 0.400000 +1669 2462 0.400000 +1669 2473 0.400000 +1669 2474 0.400000 +1669 2506 0.400000 +1669 2597 0.400000 +1669 2716 0.400000 +1669 2724 0.400000 +1669 2770 0.400000 +1669 2788 0.400000 +1669 2819 0.400000 +1669 2973 0.400000 +1669 2978 0.400000 +1669 3070 0.400000 +1669 3071 0.400000 +1669 3096 0.400000 +1669 3173 0.400000 +1670 49 0.400000 +1670 58 0.400000 +1670 202 0.400000 +1670 238 0.400000 +1670 475 0.400000 +1670 555 0.400000 +1670 566 0.400000 +1670 583 0.400000 +1670 622 0.400000 +1670 625 0.400000 +1670 645 0.400000 +1670 662 0.400000 +1670 693 0.400000 +1670 695 0.400000 +1670 721 0.400000 +1670 724 0.400000 +1670 742 0.400000 +1670 750 0.400000 +1670 785 0.400000 +1670 836 0.400000 +1670 847 0.400000 +1670 852 0.400000 +1670 949 0.400000 +1670 1048 0.400000 +1670 1120 0.400000 +1670 1132 0.400000 +1670 1171 0.400000 +1670 1190 0.400000 +1670 1228 0.400000 +1670 1229 0.400000 +1670 1269 0.400000 +1670 1276 0.400000 +1670 1309 0.400000 +1670 1345 0.400000 +1670 1435 0.400000 +1670 1459 0.400000 +1670 1536 0.400000 +1670 1596 0.400000 +1670 1598 0.400000 +1670 1622 0.400000 +1670 1654 0.400000 +1670 1660 0.400000 +1670 1661 0.400000 +1670 1666 0.400000 +1670 1718 0.400000 +1670 1758 0.400000 +1670 1764 0.400000 +1670 1801 0.400000 +1670 1980 0.400000 +1670 2007 0.400000 +1670 2020 0.400000 +1670 2033 0.400000 +1670 2073 0.400000 +1670 2098 0.400000 +1670 2131 0.400000 +1670 2152 0.400000 +1670 2155 0.400000 +1670 2168 0.400000 +1670 2260 0.400000 +1670 2279 0.400000 +1670 2284 0.400000 +1670 2328 0.400000 +1670 2396 0.400000 +1670 2436 0.400000 +1670 2462 0.400000 +1670 2470 0.400000 +1670 2563 0.400000 +1670 2607 0.400000 +1670 2641 0.400000 +1670 2698 0.400000 +1670 2756 0.400000 +1670 2814 0.400000 +1670 2910 0.400000 +1670 2964 0.400000 +1670 2971 0.400000 +1670 2982 0.400000 +1670 3056 0.400000 +1670 3082 0.400000 +1670 3150 0.400000 +1671 27 0.400000 +1671 79 0.400000 +1671 114 0.400000 +1671 119 0.400000 +1671 124 0.400000 +1671 171 0.400000 +1671 338 0.400000 +1671 361 0.400000 +1671 419 0.400000 +1671 437 0.400000 +1671 490 0.400000 +1671 577 0.400000 +1671 604 0.400000 +1671 628 0.400000 +1671 652 0.400000 +1671 672 0.400000 +1671 685 0.400000 +1671 709 0.400000 +1671 869 0.400000 +1671 886 0.400000 +1671 888 0.400000 +1671 899 0.400000 +1671 922 0.400000 +1671 933 0.400000 +1671 939 0.400000 +1671 940 0.400000 +1671 979 0.400000 +1671 1001 0.400000 +1671 1005 0.400000 +1671 1013 0.400000 +1671 1059 0.400000 +1671 1102 0.400000 +1671 1321 0.400000 +1671 1327 0.400000 +1671 1415 0.400000 +1671 1440 0.400000 +1671 1593 0.400000 +1671 1691 0.400000 +1671 1797 0.400000 +1671 1811 0.400000 +1671 1831 0.400000 +1671 1912 0.400000 +1671 1980 0.400000 +1671 2050 0.400000 +1671 2066 0.400000 +1671 2097 0.400000 +1671 2116 0.400000 +1671 2153 0.400000 +1671 2177 0.400000 +1671 2195 0.400000 +1671 2265 0.400000 +1671 2297 0.400000 +1671 2301 0.400000 +1671 2315 0.400000 +1671 2324 0.400000 +1671 2340 0.400000 +1671 2349 0.400000 +1671 2377 0.400000 +1671 2411 0.400000 +1671 2463 0.400000 +1671 2519 0.400000 +1671 2632 0.400000 +1671 2642 0.400000 +1671 2690 0.400000 +1671 2834 0.400000 +1671 2861 0.400000 +1671 2915 0.400000 +1671 3083 0.400000 +1671 3085 0.400000 +1671 3090 0.400000 +1671 3124 0.400000 +1671 3179 0.400000 +1672 20 0.400000 +1672 61 0.400000 +1672 116 0.400000 +1672 170 0.400000 +1672 225 0.400000 +1672 234 0.400000 +1672 265 0.400000 +1672 397 0.400000 +1672 409 0.400000 +1672 421 0.400000 +1672 438 0.400000 +1672 447 0.400000 +1672 501 0.400000 +1672 601 0.400000 +1672 679 0.400000 +1672 711 0.400000 +1672 770 0.400000 +1672 778 0.400000 +1672 832 0.400000 +1672 885 0.400000 +1672 903 0.400000 +1672 936 0.400000 +1672 1033 0.400000 +1672 1056 0.400000 +1672 1160 0.400000 +1672 1178 0.400000 +1672 1228 0.400000 +1672 1352 0.400000 +1672 1415 0.400000 +1672 1449 0.400000 +1672 1520 0.400000 +1672 1590 0.400000 +1672 1647 0.400000 +1672 1704 0.400000 +1672 1741 0.400000 +1672 1956 0.400000 +1672 2031 0.400000 +1672 2032 0.400000 +1672 2091 0.400000 +1672 2138 0.400000 +1672 2249 0.400000 +1672 2266 0.400000 +1672 2273 0.400000 +1672 2292 0.400000 +1672 2389 0.400000 +1672 2424 0.400000 +1672 2483 0.400000 +1672 2564 0.400000 +1672 2594 0.400000 +1672 2597 0.400000 +1672 2601 0.400000 +1672 2605 0.400000 +1672 2628 0.400000 +1672 2686 0.400000 +1672 2704 0.400000 +1672 2746 0.400000 +1672 2779 0.400000 +1672 2850 0.400000 +1672 3005 0.400000 +1672 3130 0.400000 +1672 3133 0.400000 +1673 52 0.400000 +1673 112 0.400000 +1673 188 0.400000 +1673 213 0.400000 +1673 214 0.400000 +1673 297 0.400000 +1673 304 0.400000 +1673 414 0.400000 +1673 441 0.400000 +1673 474 0.400000 +1673 551 0.400000 +1673 556 0.400000 +1673 609 0.400000 +1673 643 0.400000 +1673 665 0.400000 +1673 694 0.400000 +1673 765 0.400000 +1673 808 0.400000 +1673 810 0.400000 +1673 813 0.400000 +1673 855 0.400000 +1673 859 0.400000 +1673 995 0.400000 +1673 1018 0.400000 +1673 1051 0.400000 +1673 1067 0.400000 +1673 1108 0.400000 +1673 1150 0.400000 +1673 1177 0.400000 +1673 1232 0.400000 +1673 1347 0.400000 +1673 1359 0.400000 +1673 1364 0.400000 +1673 1394 0.400000 +1673 1396 0.400000 +1673 1494 0.400000 +1673 1539 0.400000 +1673 1706 0.400000 +1673 1716 0.400000 +1673 1795 0.400000 +1673 1850 0.400000 +1673 1864 0.400000 +1673 1997 0.400000 +1673 2087 0.400000 +1673 2123 0.400000 +1673 2136 0.400000 +1673 2217 0.400000 +1673 2368 0.400000 +1673 2404 0.400000 +1673 2456 0.400000 +1673 2463 0.400000 +1673 2489 0.400000 +1673 2494 0.400000 +1673 2580 0.400000 +1673 2654 0.400000 +1673 2737 0.400000 +1673 2758 0.400000 +1673 2905 0.400000 +1673 2940 0.400000 +1673 2961 0.400000 +1673 3005 0.400000 +1673 3013 0.400000 +1673 3098 0.400000 +1673 3110 0.400000 +1673 3119 0.400000 +1673 3176 0.400000 +1673 3190 0.400000 +1674 32 0.400000 +1674 78 0.400000 +1674 130 0.400000 +1674 159 0.400000 +1674 178 0.400000 +1674 189 0.400000 +1674 224 0.400000 +1674 238 0.400000 +1674 320 0.400000 +1674 387 0.400000 +1674 446 0.400000 +1674 472 0.400000 +1674 478 0.400000 +1674 514 0.400000 +1674 525 0.400000 +1674 532 0.400000 +1674 639 0.400000 +1674 671 0.400000 +1674 672 0.400000 +1674 676 0.400000 +1674 712 0.400000 +1674 714 0.400000 +1674 718 0.400000 +1674 742 0.400000 +1674 782 0.400000 +1674 816 0.400000 +1674 873 0.400000 +1674 992 0.400000 +1674 996 0.400000 +1674 997 0.400000 +1674 1006 0.400000 +1674 1052 0.400000 +1674 1056 0.400000 +1674 1168 0.400000 +1674 1213 0.400000 +1674 1234 0.400000 +1674 1280 0.400000 +1674 1296 0.400000 +1674 1309 0.400000 +1674 1352 0.400000 +1674 1473 0.400000 +1674 1518 0.400000 +1674 1623 0.400000 +1674 1686 0.400000 +1674 1733 0.400000 +1674 1765 0.400000 +1674 1779 0.400000 +1674 1865 0.400000 +1674 1871 0.400000 +1674 2040 0.400000 +1674 2047 0.400000 +1674 2057 0.400000 +1674 2072 0.400000 +1674 2118 0.400000 +1674 2222 0.400000 +1674 2243 0.400000 +1674 2250 0.400000 +1674 2256 0.400000 +1674 2260 0.400000 +1674 2359 0.400000 +1674 2409 0.400000 +1674 2411 0.400000 +1674 2414 0.400000 +1674 2431 0.400000 +1674 2651 0.400000 +1674 2696 0.400000 +1674 2707 0.400000 +1674 2715 0.400000 +1674 2785 0.400000 +1674 2864 0.400000 +1674 2865 0.400000 +1674 2900 0.400000 +1674 3022 0.400000 +1674 3107 0.400000 +1674 3112 0.400000 +1675 24 0.400000 +1675 124 0.400000 +1675 201 0.400000 +1675 224 0.400000 +1675 340 0.400000 +1675 363 0.400000 +1675 373 0.400000 +1675 483 0.400000 +1675 517 0.400000 +1675 530 0.400000 +1675 592 0.400000 +1675 633 0.400000 +1675 653 0.400000 +1675 706 0.400000 +1675 767 0.400000 +1675 796 0.400000 +1675 814 0.400000 +1675 830 0.400000 +1675 838 0.400000 +1675 855 0.400000 +1675 882 0.400000 +1675 928 0.400000 +1675 963 0.400000 +1675 998 0.400000 +1675 1019 0.400000 +1675 1044 0.400000 +1675 1049 0.400000 +1675 1080 0.400000 +1675 1094 0.400000 +1675 1095 0.400000 +1675 1143 0.400000 +1675 1201 0.400000 +1675 1212 0.400000 +1675 1257 0.400000 +1675 1316 0.400000 +1675 1412 0.400000 +1675 1440 0.400000 +1675 1452 0.400000 +1675 1503 0.400000 +1675 1555 0.400000 +1675 1560 0.400000 +1675 1569 0.400000 +1675 1589 0.400000 +1675 1797 0.400000 +1675 1806 0.400000 +1675 1826 0.400000 +1675 1917 0.400000 +1675 2006 0.400000 +1675 2012 0.400000 +1675 2077 0.400000 +1675 2267 0.400000 +1675 2305 0.400000 +1675 2318 0.400000 +1675 2400 0.400000 +1675 2416 0.400000 +1675 2427 0.400000 +1675 2506 0.400000 +1675 2557 0.400000 +1675 2627 0.400000 +1675 2629 0.400000 +1675 2658 0.400000 +1675 2705 0.400000 +1675 2728 0.400000 +1675 2894 0.400000 +1675 2978 0.400000 +1675 3007 0.400000 +1675 3086 0.400000 +1675 3173 0.400000 +1675 3180 0.400000 +1676 45 0.400000 +1676 81 0.400000 +1676 114 0.400000 +1676 192 0.400000 +1676 215 0.400000 +1676 326 0.400000 +1676 344 0.400000 +1676 346 0.400000 +1676 367 0.400000 +1676 368 0.400000 +1676 377 0.400000 +1676 490 0.400000 +1676 587 0.400000 +1676 656 0.400000 +1676 661 0.400000 +1676 726 0.400000 +1676 738 0.400000 +1676 944 0.400000 +1676 950 0.400000 +1676 959 0.400000 +1676 966 0.400000 +1676 967 0.400000 +1676 1008 0.400000 +1676 1013 0.400000 +1676 1033 0.400000 +1676 1112 0.400000 +1676 1129 0.400000 +1676 1213 0.400000 +1676 1230 0.400000 +1676 1240 0.400000 +1676 1361 0.400000 +1676 1368 0.400000 +1676 1385 0.400000 +1676 1420 0.400000 +1676 1430 0.400000 +1676 1511 0.400000 +1676 1513 0.400000 +1676 1580 0.400000 +1676 1657 0.400000 +1676 1685 0.400000 +1676 1780 0.400000 +1676 1822 0.400000 +1676 1832 0.400000 +1676 1980 0.400000 +1676 2022 0.400000 +1676 2038 0.400000 +1676 2058 0.400000 +1676 2061 0.400000 +1676 2156 0.400000 +1676 2171 0.400000 +1676 2194 0.400000 +1676 2266 0.400000 +1676 2287 0.400000 +1676 2290 0.400000 +1676 2345 0.400000 +1676 2378 0.400000 +1676 2411 0.400000 +1676 2429 0.400000 +1676 2542 0.400000 +1676 2655 0.400000 +1676 2767 0.400000 +1676 2818 0.400000 +1676 2839 0.400000 +1676 2841 0.400000 +1676 2888 0.400000 +1676 2904 0.400000 +1676 3001 0.400000 +1676 3019 0.400000 +1676 3119 0.400000 +1676 3144 0.400000 +1676 3171 0.400000 +1676 3188 0.400000 +1677 83 0.400000 +1677 185 0.400000 +1677 285 0.400000 +1677 295 0.400000 +1677 443 0.400000 +1677 446 0.400000 +1677 577 0.400000 +1677 628 0.400000 +1677 787 0.400000 +1677 871 0.400000 +1677 898 0.400000 +1677 903 0.400000 +1677 914 0.400000 +1677 1002 0.400000 +1677 1018 0.400000 +1677 1058 0.400000 +1677 1080 0.400000 +1677 1160 0.400000 +1677 1189 0.400000 +1677 1347 0.400000 +1677 1352 0.400000 +1677 1370 0.400000 +1677 1464 0.400000 +1677 1472 0.400000 +1677 1579 0.400000 +1677 1595 0.400000 +1677 1644 0.400000 +1677 1666 0.400000 +1677 1714 0.400000 +1677 1728 0.400000 +1677 1791 0.400000 +1677 1837 0.400000 +1677 1939 0.400000 +1677 2028 0.400000 +1677 2033 0.400000 +1677 2064 0.400000 +1677 2145 0.400000 +1677 2155 0.400000 +1677 2182 0.400000 +1677 2259 0.400000 +1677 2305 0.400000 +1677 2360 0.400000 +1677 2385 0.400000 +1677 2387 0.400000 +1677 2404 0.400000 +1677 2421 0.400000 +1677 2503 0.400000 +1677 2515 0.400000 +1677 2522 0.400000 +1677 2573 0.400000 +1677 2578 0.400000 +1677 2605 0.400000 +1677 2647 0.400000 +1677 2660 0.400000 +1677 2665 0.400000 +1677 2724 0.400000 +1677 2988 0.400000 +1677 2991 0.400000 +1677 3020 0.400000 +1677 3101 0.400000 +1677 3132 0.400000 +1677 3158 0.400000 +1678 129 0.400000 +1678 193 0.400000 +1678 227 0.400000 +1678 286 0.400000 +1678 347 0.400000 +1678 367 0.400000 +1678 378 0.400000 +1678 415 0.400000 +1678 535 0.400000 +1678 568 0.400000 +1678 588 0.400000 +1678 636 0.400000 +1678 649 0.400000 +1678 672 0.400000 +1678 874 0.400000 +1678 888 0.400000 +1678 984 0.400000 +1678 1072 0.400000 +1678 1170 0.400000 +1678 1219 0.400000 +1678 1236 0.400000 +1678 1241 0.400000 +1678 1259 0.400000 +1678 1278 0.400000 +1678 1353 0.400000 +1678 1362 0.400000 +1678 1391 0.400000 +1678 1432 0.400000 +1678 1433 0.400000 +1678 1603 0.400000 +1678 1628 0.400000 +1678 1688 0.400000 +1678 1701 0.400000 +1678 1709 0.400000 +1678 1750 0.400000 +1678 1752 0.400000 +1678 1787 0.400000 +1678 1827 0.400000 +1678 1879 0.400000 +1678 2053 0.400000 +1678 2099 0.400000 +1678 2145 0.400000 +1678 2193 0.400000 +1678 2270 0.400000 +1678 2319 0.400000 +1678 2413 0.400000 +1678 2444 0.400000 +1678 2548 0.400000 +1678 2552 0.400000 +1678 2560 0.400000 +1678 2811 0.400000 +1678 2823 0.400000 +1678 2851 0.400000 +1678 2909 0.400000 +1678 2910 0.400000 +1678 2998 0.400000 +1678 3066 0.400000 +1678 3083 0.400000 +1678 3108 0.400000 +1678 3126 0.400000 +1678 3154 0.400000 +1678 3180 0.400000 +1678 3186 0.400000 +1679 19 0.400000 +1679 153 0.400000 +1679 191 0.400000 +1679 226 0.400000 +1679 255 0.400000 +1679 277 0.400000 +1679 340 0.400000 +1679 343 0.400000 +1679 429 0.400000 +1679 434 0.400000 +1679 440 0.400000 +1679 468 0.400000 +1679 505 0.400000 +1679 730 0.400000 +1679 763 0.400000 +1679 855 0.400000 +1679 891 0.400000 +1679 933 0.400000 +1679 957 0.400000 +1679 992 0.400000 +1679 1099 0.400000 +1679 1108 0.400000 +1679 1335 0.400000 +1679 1480 0.400000 +1679 1597 0.400000 +1679 1682 0.400000 +1679 1693 0.400000 +1679 1703 0.400000 +1679 1768 0.400000 +1679 1889 0.400000 +1679 1913 0.400000 +1679 1929 0.400000 +1679 1949 0.400000 +1679 1972 0.400000 +1679 2015 0.400000 +1679 2113 0.400000 +1679 2118 0.400000 +1679 2190 0.400000 +1679 2201 0.400000 +1679 2261 0.400000 +1679 2312 0.400000 +1679 2317 0.400000 +1679 2336 0.400000 +1679 2409 0.400000 +1679 2440 0.400000 +1679 2471 0.400000 +1679 2487 0.400000 +1679 2491 0.400000 +1679 2537 0.400000 +1679 2553 0.400000 +1679 2596 0.400000 +1679 2618 0.400000 +1679 2728 0.400000 +1679 2741 0.400000 +1679 2766 0.400000 +1679 2779 0.400000 +1679 2841 0.400000 +1679 2870 0.400000 +1679 2916 0.400000 +1679 2933 0.400000 +1679 3002 0.400000 +1679 3138 0.400000 +1680 9 0.400000 +1680 61 0.400000 +1680 84 0.400000 +1680 219 0.400000 +1680 240 0.400000 +1680 362 0.400000 +1680 365 0.400000 +1680 371 0.400000 +1680 384 0.400000 +1680 401 0.400000 +1680 418 0.400000 +1680 434 0.400000 +1680 466 0.400000 +1680 665 0.400000 +1680 753 0.400000 +1680 808 0.400000 +1680 829 0.400000 +1680 936 0.400000 +1680 959 0.400000 +1680 986 0.400000 +1680 1049 0.400000 +1680 1064 0.400000 +1680 1076 0.400000 +1680 1165 0.400000 +1680 1177 0.400000 +1680 1221 0.400000 +1680 1238 0.400000 +1680 1271 0.400000 +1680 1309 0.400000 +1680 1431 0.400000 +1680 1460 0.400000 +1680 1609 0.400000 +1680 1643 0.400000 +1680 1802 0.400000 +1680 1820 0.400000 +1680 1927 0.400000 +1680 1955 0.400000 +1680 1981 0.400000 +1680 2039 0.400000 +1680 2153 0.400000 +1680 2189 0.400000 +1680 2270 0.400000 +1680 2435 0.400000 +1680 2445 0.400000 +1680 2450 0.400000 +1680 2481 0.400000 +1680 2514 0.400000 +1680 2563 0.400000 +1680 2595 0.400000 +1680 2630 0.400000 +1680 2855 0.400000 +1680 2867 0.400000 +1680 2879 0.400000 +1680 2887 0.400000 +1680 3072 0.400000 +1680 3093 0.400000 +1680 3116 0.400000 +1680 3118 0.400000 +1680 3167 0.400000 +1680 3192 0.400000 +1681 70 0.400000 +1681 79 0.400000 +1681 105 0.400000 +1681 120 0.400000 +1681 133 0.400000 +1681 144 0.400000 +1681 192 0.400000 +1681 211 0.400000 +1681 223 0.400000 +1681 243 0.400000 +1681 282 0.400000 +1681 321 0.400000 +1681 324 0.400000 +1681 513 0.400000 +1681 610 0.400000 +1681 620 0.400000 +1681 643 0.400000 +1681 749 0.400000 +1681 767 0.400000 +1681 876 0.400000 +1681 888 0.400000 +1681 974 0.400000 +1681 1003 0.400000 +1681 1012 0.400000 +1681 1244 0.400000 +1681 1264 0.400000 +1681 1354 0.400000 +1681 1383 0.400000 +1681 1558 0.400000 +1681 1697 0.400000 +1681 1708 0.400000 +1681 1825 0.400000 +1681 1833 0.400000 +1681 1841 0.400000 +1681 1896 0.400000 +1681 1916 0.400000 +1681 1978 0.400000 +1681 2082 0.400000 +1681 2094 0.400000 +1681 2163 0.400000 +1681 2165 0.400000 +1681 2177 0.400000 +1681 2180 0.400000 +1681 2428 0.400000 +1681 2452 0.400000 +1681 2506 0.400000 +1681 2616 0.400000 +1681 2652 0.400000 +1681 2679 0.400000 +1681 2713 0.400000 +1681 2753 0.400000 +1681 2796 0.400000 +1681 2797 0.400000 +1681 3005 0.400000 +1681 3017 0.400000 +1681 3026 0.400000 +1681 3058 0.400000 +1681 3075 0.400000 +1681 3085 0.400000 +1681 3098 0.400000 +1681 3145 0.400000 +1682 42 0.400000 +1682 53 0.400000 +1682 66 0.400000 +1682 139 0.400000 +1682 192 0.400000 +1682 198 0.400000 +1682 258 0.400000 +1682 313 0.400000 +1682 385 0.400000 +1682 412 0.400000 +1682 457 0.400000 +1682 474 0.400000 +1682 517 0.400000 +1682 546 0.400000 +1682 620 0.400000 +1682 628 0.400000 +1682 736 0.400000 +1682 832 0.400000 +1682 879 0.400000 +1682 882 0.400000 +1682 917 0.400000 +1682 971 0.400000 +1682 1030 0.400000 +1682 1031 0.400000 +1682 1052 0.400000 +1682 1091 0.400000 +1682 1135 0.400000 +1682 1181 0.400000 +1682 1215 0.400000 +1682 1218 0.400000 +1682 1274 0.400000 +1682 1297 0.400000 +1682 1312 0.400000 +1682 1324 0.400000 +1682 1369 0.400000 +1682 1440 0.400000 +1682 1525 0.400000 +1682 1608 0.400000 +1682 1634 0.400000 +1682 1670 0.400000 +1682 1680 0.400000 +1682 1720 0.400000 +1682 1743 0.400000 +1682 1807 0.400000 +1682 1822 0.400000 +1682 1833 0.400000 +1682 1850 0.400000 +1682 1893 0.400000 +1682 1927 0.400000 +1682 1932 0.400000 +1682 1958 0.400000 +1682 1996 0.400000 +1682 2005 0.400000 +1682 2107 0.400000 +1682 2131 0.400000 +1682 2145 0.400000 +1682 2250 0.400000 +1682 2264 0.400000 +1682 2401 0.400000 +1682 2445 0.400000 +1682 2498 0.400000 +1682 2606 0.400000 +1682 2689 0.400000 +1682 2983 0.400000 +1682 3064 0.400000 +1682 3083 0.400000 +1682 3170 0.400000 +1682 3191 0.400000 +1683 20 0.400000 +1683 50 0.400000 +1683 58 0.400000 +1683 81 0.400000 +1683 135 0.400000 +1683 234 0.400000 +1683 249 0.400000 +1683 312 0.400000 +1683 339 0.400000 +1683 398 0.400000 +1683 456 0.400000 +1683 526 0.400000 +1683 611 0.400000 +1683 651 0.400000 +1683 804 0.400000 +1683 858 0.400000 +1683 878 0.400000 +1683 888 0.400000 +1683 929 0.400000 +1683 937 0.400000 +1683 979 0.400000 +1683 1050 0.400000 +1683 1079 0.400000 +1683 1226 0.400000 +1683 1261 0.400000 +1683 1284 0.400000 +1683 1319 0.400000 +1683 1349 0.400000 +1683 1357 0.400000 +1683 1419 0.400000 +1683 1475 0.400000 +1683 1511 0.400000 +1683 1610 0.400000 +1683 1636 0.400000 +1683 1651 0.400000 +1683 1703 0.400000 +1683 1730 0.400000 +1683 1744 0.400000 +1683 1750 0.400000 +1683 1854 0.400000 +1683 1891 0.400000 +1683 1934 0.400000 +1683 1958 0.400000 +1683 1971 0.400000 +1683 2009 0.400000 +1683 2024 0.400000 +1683 2069 0.400000 +1683 2114 0.400000 +1683 2178 0.400000 +1683 2252 0.400000 +1683 2257 0.400000 +1683 2266 0.400000 +1683 2277 0.400000 +1683 2308 0.400000 +1683 2352 0.400000 +1683 2494 0.400000 +1683 2540 0.400000 +1683 2645 0.400000 +1683 2664 0.400000 +1683 2700 0.400000 +1683 2714 0.400000 +1683 2765 0.400000 +1683 2829 0.400000 +1683 2870 0.400000 +1683 2925 0.400000 +1683 2949 0.400000 +1683 2956 0.400000 +1683 3138 0.400000 +1683 3154 0.400000 +1683 3156 0.400000 +1683 3184 0.400000 +1684 14 0.400000 +1684 59 0.400000 +1684 115 0.400000 +1684 165 0.400000 +1684 175 0.400000 +1684 181 0.400000 +1684 260 0.400000 +1684 275 0.400000 +1684 331 0.400000 +1684 342 0.400000 +1684 393 0.400000 +1684 401 0.400000 +1684 416 0.400000 +1684 434 0.400000 +1684 443 0.400000 +1684 480 0.400000 +1684 631 0.400000 +1684 666 0.400000 +1684 669 0.400000 +1684 729 0.400000 +1684 740 0.400000 +1684 748 0.400000 +1684 769 0.400000 +1684 773 0.400000 +1684 840 0.400000 +1684 897 0.400000 +1684 905 0.400000 +1684 1028 0.400000 +1684 1040 0.400000 +1684 1145 0.400000 +1684 1189 0.400000 +1684 1207 0.400000 +1684 1210 0.400000 +1684 1230 0.400000 +1684 1275 0.400000 +1684 1451 0.400000 +1684 1498 0.400000 +1684 1519 0.400000 +1684 1581 0.400000 +1684 1602 0.400000 +1684 1709 0.400000 +1684 1722 0.400000 +1684 1853 0.400000 +1684 2049 0.400000 +1684 2064 0.400000 +1684 2100 0.400000 +1684 2101 0.400000 +1684 2124 0.400000 +1684 2208 0.400000 +1684 2227 0.400000 +1684 2244 0.400000 +1684 2313 0.400000 +1684 2342 0.400000 +1684 2439 0.400000 +1684 2478 0.400000 +1684 2498 0.400000 +1684 2517 0.400000 +1684 2728 0.400000 +1684 2798 0.400000 +1684 2861 0.400000 +1684 2872 0.400000 +1684 2908 0.400000 +1684 2930 0.400000 +1684 2931 0.400000 +1684 2951 0.400000 +1685 15 0.400000 +1685 39 0.400000 +1685 54 0.400000 +1685 105 0.400000 +1685 183 0.400000 +1685 287 0.400000 +1685 291 0.400000 +1685 375 0.400000 +1685 451 0.400000 +1685 496 0.400000 +1685 592 0.400000 +1685 692 0.400000 +1685 705 0.400000 +1685 822 0.400000 +1685 829 0.400000 +1685 931 0.400000 +1685 994 0.400000 +1685 1023 0.400000 +1685 1086 0.400000 +1685 1113 0.400000 +1685 1174 0.400000 +1685 1267 0.400000 +1685 1302 0.400000 +1685 1354 0.400000 +1685 1360 0.400000 +1685 1441 0.400000 +1685 1461 0.400000 +1685 1487 0.400000 +1685 1491 0.400000 +1685 1522 0.400000 +1685 1601 0.400000 +1685 1703 0.400000 +1685 1820 0.400000 +1685 1839 0.400000 +1685 1873 0.400000 +1685 1883 0.400000 +1685 2034 0.400000 +1685 2053 0.400000 +1685 2054 0.400000 +1685 2107 0.400000 +1685 2174 0.400000 +1685 2223 0.400000 +1685 2236 0.400000 +1685 2288 0.400000 +1685 2336 0.400000 +1685 2378 0.400000 +1685 2441 0.400000 +1685 2456 0.400000 +1685 2531 0.400000 +1685 2588 0.400000 +1685 2720 0.400000 +1685 2727 0.400000 +1685 2745 0.400000 +1685 2764 0.400000 +1685 2885 0.400000 +1685 3017 0.400000 +1685 3077 0.400000 +1685 3124 0.400000 +1685 3169 0.400000 +1685 3196 0.400000 +1686 10 0.400000 +1686 14 0.400000 +1686 20 0.400000 +1686 34 0.400000 +1686 148 0.400000 +1686 179 0.400000 +1686 214 0.400000 +1686 240 0.400000 +1686 337 0.400000 +1686 566 0.400000 +1686 570 0.400000 +1686 592 0.400000 +1686 598 0.400000 +1686 618 0.400000 +1686 642 0.400000 +1686 707 0.400000 +1686 806 0.400000 +1686 822 0.400000 +1686 908 0.400000 +1686 919 0.400000 +1686 1046 0.400000 +1686 1083 0.400000 +1686 1194 0.400000 +1686 1271 0.400000 +1686 1300 0.400000 +1686 1307 0.400000 +1686 1331 0.400000 +1686 1367 0.400000 +1686 1459 0.400000 +1686 1517 0.400000 +1686 1703 0.400000 +1686 1765 0.400000 +1686 1788 0.400000 +1686 1824 0.400000 +1686 1875 0.400000 +1686 1887 0.400000 +1686 1897 0.400000 +1686 1902 0.400000 +1686 1951 0.400000 +1686 1959 0.400000 +1686 2012 0.400000 +1686 2056 0.400000 +1686 2097 0.400000 +1686 2267 0.400000 +1686 2315 0.400000 +1686 2433 0.400000 +1686 2480 0.400000 +1686 2491 0.400000 +1686 2496 0.400000 +1686 2635 0.400000 +1686 2703 0.400000 +1686 2707 0.400000 +1686 2781 0.400000 +1686 2826 0.400000 +1686 2872 0.400000 +1686 2877 0.400000 +1686 3060 0.400000 +1686 3116 0.400000 +1686 3150 0.400000 +1686 3186 0.400000 +1686 3192 0.400000 +1687 68 0.400000 +1687 148 0.400000 +1687 204 0.400000 +1687 223 0.400000 +1687 225 0.400000 +1687 226 0.400000 +1687 258 0.400000 +1687 260 0.400000 +1687 269 0.400000 +1687 271 0.400000 +1687 336 0.400000 +1687 438 0.400000 +1687 461 0.400000 +1687 489 0.400000 +1687 492 0.400000 +1687 666 0.400000 +1687 684 0.400000 +1687 703 0.400000 +1687 833 0.400000 +1687 884 0.400000 +1687 895 0.400000 +1687 988 0.400000 +1687 1084 0.400000 +1687 1192 0.400000 +1687 1209 0.400000 +1687 1291 0.400000 +1687 1345 0.400000 +1687 1484 0.400000 +1687 1489 0.400000 +1687 1527 0.400000 +1687 1579 0.400000 +1687 1638 0.400000 +1687 1717 0.400000 +1687 1729 0.400000 +1687 1751 0.400000 +1687 1814 0.400000 +1687 1880 0.400000 +1687 1886 0.400000 +1687 2075 0.400000 +1687 2105 0.400000 +1687 2149 0.400000 +1687 2256 0.400000 +1687 2279 0.400000 +1687 2340 0.400000 +1687 2365 0.400000 +1687 2432 0.400000 +1687 2567 0.400000 +1687 2595 0.400000 +1687 2682 0.400000 +1687 2692 0.400000 +1687 2703 0.400000 +1687 2711 0.400000 +1687 2717 0.400000 +1687 2751 0.400000 +1687 2885 0.400000 +1687 2906 0.400000 +1687 2931 0.400000 +1687 2944 0.400000 +1687 3001 0.400000 +1687 3029 0.400000 +1687 3081 0.400000 +1687 3111 0.400000 +1687 3114 0.400000 +1687 3173 0.400000 +1688 64 0.400000 +1688 172 0.400000 +1688 208 0.400000 +1688 275 0.400000 +1688 276 0.400000 +1688 306 0.400000 +1688 312 0.400000 +1688 351 0.400000 +1688 426 0.400000 +1688 442 0.400000 +1688 462 0.400000 +1688 485 0.400000 +1688 590 0.400000 +1688 754 0.400000 +1688 766 0.400000 +1688 788 0.400000 +1688 894 0.400000 +1688 1068 0.400000 +1688 1174 0.400000 +1688 1196 0.400000 +1688 1266 0.400000 +1688 1386 0.400000 +1688 1451 0.400000 +1688 1465 0.400000 +1688 1492 0.400000 +1688 1515 0.400000 +1688 1541 0.400000 +1688 1554 0.400000 +1688 1613 0.400000 +1688 1648 0.400000 +1688 1662 0.400000 +1688 1783 0.400000 +1688 1922 0.400000 +1688 2039 0.400000 +1688 2063 0.400000 +1688 2066 0.400000 +1688 2105 0.400000 +1688 2166 0.400000 +1688 2210 0.400000 +1688 2308 0.400000 +1688 2416 0.400000 +1688 2477 0.400000 +1688 2492 0.400000 +1688 2566 0.400000 +1688 2654 0.400000 +1688 2696 0.400000 +1688 2724 0.400000 +1688 2736 0.400000 +1688 2750 0.400000 +1688 2942 0.400000 +1688 2946 0.400000 +1688 2948 0.400000 +1688 2978 0.400000 +1688 2991 0.400000 +1688 3034 0.400000 +1688 3057 0.400000 +1688 3075 0.400000 +1688 3128 0.400000 +1689 3 0.400000 +1689 8 0.400000 +1689 93 0.400000 +1689 137 0.400000 +1689 140 0.400000 +1689 158 0.400000 +1689 245 0.400000 +1689 265 0.400000 +1689 278 0.400000 +1689 322 0.400000 +1689 332 0.400000 +1689 345 0.400000 +1689 357 0.400000 +1689 408 0.400000 +1689 415 0.400000 +1689 428 0.400000 +1689 429 0.400000 +1689 546 0.400000 +1689 553 0.400000 +1689 575 0.400000 +1689 619 0.400000 +1689 643 0.400000 +1689 664 0.400000 +1689 683 0.400000 +1689 713 0.400000 +1689 770 0.400000 +1689 808 0.400000 +1689 819 0.400000 +1689 873 0.400000 +1689 887 0.400000 +1689 888 0.400000 +1689 905 0.400000 +1689 911 0.400000 +1689 949 0.400000 +1689 1095 0.400000 +1689 1161 0.400000 +1689 1189 0.400000 +1689 1197 0.400000 +1689 1199 0.400000 +1689 1210 0.400000 +1689 1211 0.400000 +1689 1217 0.400000 +1689 1233 0.400000 +1689 1306 0.400000 +1689 1346 0.400000 +1689 1375 0.400000 +1689 1472 0.400000 +1689 1485 0.400000 +1689 1488 0.400000 +1689 1559 0.400000 +1689 1578 0.400000 +1689 1698 0.400000 +1689 1715 0.400000 +1689 1761 0.400000 +1689 1842 0.400000 +1689 1856 0.400000 +1689 1866 0.400000 +1689 1901 0.400000 +1689 1959 0.400000 +1689 2012 0.400000 +1689 2028 0.400000 +1689 2104 0.400000 +1689 2128 0.400000 +1689 2212 0.400000 +1689 2225 0.400000 +1689 2255 0.400000 +1689 2273 0.400000 +1689 2318 0.400000 +1689 2409 0.400000 +1689 2466 0.400000 +1689 2488 0.400000 +1689 2505 0.400000 +1689 2536 0.400000 +1689 2772 0.400000 +1689 3130 0.400000 +1690 3 0.400000 +1690 136 0.400000 +1690 252 0.400000 +1690 389 0.400000 +1690 444 0.400000 +1690 492 0.400000 +1690 571 0.400000 +1690 583 0.400000 +1690 712 0.400000 +1690 850 0.400000 +1690 958 0.400000 +1690 1025 0.400000 +1690 1081 0.400000 +1690 1083 0.400000 +1690 1154 0.400000 +1690 1171 0.400000 +1690 1229 0.400000 +1690 1362 0.400000 +1690 1366 0.400000 +1690 1379 0.400000 +1690 1399 0.400000 +1690 1442 0.400000 +1690 1464 0.400000 +1690 1494 0.400000 +1690 1589 0.400000 +1690 1599 0.400000 +1690 1606 0.400000 +1690 1654 0.400000 +1690 1656 0.400000 +1690 1749 0.400000 +1690 1815 0.400000 +1690 1986 0.400000 +1690 2002 0.400000 +1690 2111 0.400000 +1690 2200 0.400000 +1690 2207 0.400000 +1690 2269 0.400000 +1690 2338 0.400000 +1690 2365 0.400000 +1690 2452 0.400000 +1690 2466 0.400000 +1690 2510 0.400000 +1690 2600 0.400000 +1690 2642 0.400000 +1690 2646 0.400000 +1690 2703 0.400000 +1690 2731 0.400000 +1690 2747 0.400000 +1690 2802 0.400000 +1690 2953 0.400000 +1690 2982 0.400000 +1690 2998 0.400000 +1690 3005 0.400000 +1690 3019 0.400000 +1690 3074 0.400000 +1691 11 0.400000 +1691 15 0.400000 +1691 16 0.400000 +1691 26 0.400000 +1691 146 0.400000 +1691 244 0.400000 +1691 304 0.400000 +1691 346 0.400000 +1691 434 0.400000 +1691 526 0.400000 +1691 585 0.400000 +1691 613 0.400000 +1691 722 0.400000 +1691 792 0.400000 +1691 857 0.400000 +1691 918 0.400000 +1691 922 0.400000 +1691 955 0.400000 +1691 1086 0.400000 +1691 1109 0.400000 +1691 1166 0.400000 +1691 1228 0.400000 +1691 1315 0.400000 +1691 1320 0.400000 +1691 1324 0.400000 +1691 1339 0.400000 +1691 1354 0.400000 +1691 1412 0.400000 +1691 1463 0.400000 +1691 1512 0.400000 +1691 1543 0.400000 +1691 1553 0.400000 +1691 1578 0.400000 +1691 1588 0.400000 +1691 1616 0.400000 +1691 1618 0.400000 +1691 1645 0.400000 +1691 1648 0.400000 +1691 1680 0.400000 +1691 1715 0.400000 +1691 1738 0.400000 +1691 1765 0.400000 +1691 1868 0.400000 +1691 1900 0.400000 +1691 2051 0.400000 +1691 2115 0.400000 +1691 2168 0.400000 +1691 2212 0.400000 +1691 2315 0.400000 +1691 2335 0.400000 +1691 2387 0.400000 +1691 2473 0.400000 +1691 2477 0.400000 +1691 2479 0.400000 +1691 2547 0.400000 +1691 2566 0.400000 +1691 2590 0.400000 +1691 2727 0.400000 +1691 2791 0.400000 +1691 2802 0.400000 +1691 2822 0.400000 +1691 2935 0.400000 +1691 2951 0.400000 +1691 3000 0.400000 +1691 3055 0.400000 +1691 3118 0.400000 +1691 3189 0.400000 +1692 6 0.400000 +1692 83 0.400000 +1692 171 0.400000 +1692 209 0.400000 +1692 228 0.400000 +1692 302 0.400000 +1692 378 0.400000 +1692 389 0.400000 +1692 541 0.400000 +1692 589 0.400000 +1692 616 0.400000 +1692 678 0.400000 +1692 686 0.400000 +1692 706 0.400000 +1692 727 0.400000 +1692 740 0.400000 +1692 764 0.400000 +1692 881 0.400000 +1692 925 0.400000 +1692 940 0.400000 +1692 997 0.400000 +1692 1001 0.400000 +1692 1023 0.400000 +1692 1066 0.400000 +1692 1072 0.400000 +1692 1080 0.400000 +1692 1087 0.400000 +1692 1111 0.400000 +1692 1147 0.400000 +1692 1168 0.400000 +1692 1292 0.400000 +1692 1315 0.400000 +1692 1388 0.400000 +1692 1404 0.400000 +1692 1476 0.400000 +1692 1618 0.400000 +1692 1688 0.400000 +1692 1778 0.400000 +1692 1835 0.400000 +1692 1943 0.400000 +1692 1949 0.400000 +1692 2003 0.400000 +1692 2004 0.400000 +1692 2037 0.400000 +1692 2089 0.400000 +1692 2153 0.400000 +1692 2229 0.400000 +1692 2292 0.400000 +1692 2330 0.400000 +1692 2429 0.400000 +1692 2459 0.400000 +1692 2519 0.400000 +1692 2664 0.400000 +1692 2706 0.400000 +1692 2762 0.400000 +1692 2850 0.400000 +1692 2883 0.400000 +1692 2890 0.400000 +1692 2944 0.400000 +1692 2965 0.400000 +1692 2997 0.400000 +1692 3019 0.400000 +1692 3032 0.400000 +1692 3097 0.400000 +1692 3172 0.400000 +1692 3193 0.400000 +1693 26 0.400000 +1693 44 0.400000 +1693 189 0.400000 +1693 203 0.400000 +1693 210 0.400000 +1693 228 0.400000 +1693 255 0.400000 +1693 268 0.400000 +1693 422 0.400000 +1693 425 0.400000 +1693 427 0.400000 +1693 474 0.400000 +1693 583 0.400000 +1693 619 0.400000 +1693 623 0.400000 +1693 693 0.400000 +1693 925 0.400000 +1693 951 0.400000 +1693 979 0.400000 +1693 1013 0.400000 +1693 1023 0.400000 +1693 1031 0.400000 +1693 1053 0.400000 +1693 1087 0.400000 +1693 1108 0.400000 +1693 1166 0.400000 +1693 1213 0.400000 +1693 1329 0.400000 +1693 1377 0.400000 +1693 1423 0.400000 +1693 1427 0.400000 +1693 1449 0.400000 +1693 1619 0.400000 +1693 1656 0.400000 +1693 1798 0.400000 +1693 1830 0.400000 +1693 1851 0.400000 +1693 1876 0.400000 +1693 1911 0.400000 +1693 1931 0.400000 +1693 1975 0.400000 +1693 2092 0.400000 +1693 2093 0.400000 +1693 2209 0.400000 +1693 2310 0.400000 +1693 2380 0.400000 +1693 2503 0.400000 +1693 2567 0.400000 +1693 2585 0.400000 +1693 2684 0.400000 +1693 2742 0.400000 +1693 2760 0.400000 +1693 2763 0.400000 +1693 2849 0.400000 +1693 2882 0.400000 +1693 2920 0.400000 +1693 3016 0.400000 +1693 3052 0.400000 +1693 3053 0.400000 +1693 3137 0.400000 +1693 3150 0.400000 +1693 3190 0.400000 +1694 18 0.400000 +1694 41 0.400000 +1694 88 0.400000 +1694 150 0.400000 +1694 158 0.400000 +1694 225 0.400000 +1694 259 0.400000 +1694 278 0.400000 +1694 338 0.400000 +1694 395 0.400000 +1694 535 0.400000 +1694 566 0.400000 +1694 777 0.400000 +1694 809 0.400000 +1694 882 0.400000 +1694 999 0.400000 +1694 1036 0.400000 +1694 1184 0.400000 +1694 1226 0.400000 +1694 1279 0.400000 +1694 1383 0.400000 +1694 1393 0.400000 +1694 1418 0.400000 +1694 1486 0.400000 +1694 1612 0.400000 +1694 1613 0.400000 +1694 1630 0.400000 +1694 1633 0.400000 +1694 1713 0.400000 +1694 1760 0.400000 +1694 1776 0.400000 +1694 1858 0.400000 +1694 2006 0.400000 +1694 2037 0.400000 +1694 2120 0.400000 +1694 2142 0.400000 +1694 2145 0.400000 +1694 2188 0.400000 +1694 2201 0.400000 +1694 2242 0.400000 +1694 2245 0.400000 +1694 2278 0.400000 +1694 2332 0.400000 +1694 2335 0.400000 +1694 2417 0.400000 +1694 2458 0.400000 +1694 2508 0.400000 +1694 2522 0.400000 +1694 2609 0.400000 +1694 2673 0.400000 +1694 2674 0.400000 +1694 2741 0.400000 +1694 2750 0.400000 +1694 2776 0.400000 +1694 2791 0.400000 +1694 2918 0.400000 +1694 2929 0.400000 +1694 3008 0.400000 +1694 3029 0.400000 +1694 3033 0.400000 +1694 3115 0.400000 +1694 3117 0.400000 +1694 3128 0.400000 +1694 3186 0.400000 +1695 10 0.400000 +1695 98 0.400000 +1695 252 0.400000 +1695 270 0.400000 +1695 303 0.400000 +1695 308 0.400000 +1695 345 0.400000 +1695 359 0.400000 +1695 535 0.400000 +1695 559 0.400000 +1695 572 0.400000 +1695 575 0.400000 +1695 587 0.400000 +1695 611 0.400000 +1695 621 0.400000 +1695 676 0.400000 +1695 699 0.400000 +1695 708 0.400000 +1695 906 0.400000 +1695 940 0.400000 +1695 950 0.400000 +1695 1047 0.400000 +1695 1084 0.400000 +1695 1149 0.400000 +1695 1173 0.400000 +1695 1201 0.400000 +1695 1279 0.400000 +1695 1322 0.400000 +1695 1346 0.400000 +1695 1372 0.400000 +1695 1395 0.400000 +1695 1416 0.400000 +1695 1427 0.400000 +1695 1479 0.400000 +1695 1489 0.400000 +1695 1609 0.400000 +1695 1700 0.400000 +1695 1702 0.400000 +1695 1721 0.400000 +1695 1764 0.400000 +1695 1822 0.400000 +1695 1825 0.400000 +1695 1834 0.400000 +1695 1899 0.400000 +1695 1948 0.400000 +1695 1999 0.400000 +1695 2021 0.400000 +1695 2029 0.400000 +1695 2136 0.400000 +1695 2160 0.400000 +1695 2175 0.400000 +1695 2213 0.400000 +1695 2232 0.400000 +1695 2345 0.400000 +1695 2457 0.400000 +1695 2544 0.400000 +1695 2545 0.400000 +1695 2598 0.400000 +1695 2613 0.400000 +1695 2650 0.400000 +1695 2730 0.400000 +1695 2751 0.400000 +1695 2818 0.400000 +1695 2896 0.400000 +1695 2940 0.400000 +1695 2955 0.400000 +1695 3049 0.400000 +1695 3091 0.400000 +1695 3119 0.400000 +1696 32 0.400000 +1696 105 0.400000 +1696 107 0.400000 +1696 134 0.400000 +1696 212 0.400000 +1696 275 0.400000 +1696 334 0.400000 +1696 384 0.400000 +1696 404 0.400000 +1696 492 0.400000 +1696 593 0.400000 +1696 622 0.400000 +1696 659 0.400000 +1696 789 0.400000 +1696 875 0.400000 +1696 899 0.400000 +1696 900 0.400000 +1696 932 0.400000 +1696 976 0.400000 +1696 1060 0.400000 +1696 1065 0.400000 +1696 1090 0.400000 +1696 1188 0.400000 +1696 1355 0.400000 +1696 1389 0.400000 +1696 1425 0.400000 +1696 1488 0.400000 +1696 1576 0.400000 +1696 1625 0.400000 +1696 1707 0.400000 +1696 1735 0.400000 +1696 1812 0.400000 +1696 1851 0.400000 +1696 1885 0.400000 +1696 1908 0.400000 +1696 1992 0.400000 +1696 2004 0.400000 +1696 2006 0.400000 +1696 2180 0.400000 +1696 2222 0.400000 +1696 2258 0.400000 +1696 2295 0.400000 +1696 2304 0.400000 +1696 2355 0.400000 +1696 2406 0.400000 +1696 2458 0.400000 +1696 2466 0.400000 +1696 2516 0.400000 +1696 2558 0.400000 +1696 2608 0.400000 +1696 2729 0.400000 +1696 2762 0.400000 +1696 2827 0.400000 +1696 2834 0.400000 +1696 2841 0.400000 +1696 2880 0.400000 +1696 2919 0.400000 +1696 3052 0.400000 +1696 3073 0.400000 +1696 3135 0.400000 +1696 3167 0.400000 +1697 52 0.400000 +1697 204 0.400000 +1697 345 0.400000 +1697 351 0.400000 +1697 390 0.400000 +1697 430 0.400000 +1697 441 0.400000 +1697 476 0.400000 +1697 477 0.400000 +1697 558 0.400000 +1697 574 0.400000 +1697 658 0.400000 +1697 703 0.400000 +1697 732 0.400000 +1697 761 0.400000 +1697 832 0.400000 +1697 903 0.400000 +1697 916 0.400000 +1697 928 0.400000 +1697 1066 0.400000 +1697 1123 0.400000 +1697 1125 0.400000 +1697 1244 0.400000 +1697 1259 0.400000 +1697 1316 0.400000 +1697 1362 0.400000 +1697 1376 0.400000 +1697 1377 0.400000 +1697 1494 0.400000 +1697 1520 0.400000 +1697 1577 0.400000 +1697 1609 0.400000 +1697 1610 0.400000 +1697 1645 0.400000 +1697 1685 0.400000 +1697 1745 0.400000 +1697 1753 0.400000 +1697 1893 0.400000 +1697 1901 0.400000 +1697 1969 0.400000 +1697 1983 0.400000 +1697 1991 0.400000 +1697 2061 0.400000 +1697 2097 0.400000 +1697 2110 0.400000 +1697 2115 0.400000 +1697 2116 0.400000 +1697 2125 0.400000 +1697 2138 0.400000 +1697 2210 0.400000 +1697 2270 0.400000 +1697 2275 0.400000 +1697 2354 0.400000 +1697 2404 0.400000 +1697 2408 0.400000 +1697 2424 0.400000 +1697 2453 0.400000 +1697 2505 0.400000 +1697 2514 0.400000 +1697 2520 0.400000 +1697 2544 0.400000 +1697 2571 0.400000 +1697 2632 0.400000 +1697 2666 0.400000 +1697 2688 0.400000 +1697 2697 0.400000 +1697 2760 0.400000 +1697 2829 0.400000 +1697 2924 0.400000 +1697 2926 0.400000 +1697 3005 0.400000 +1697 3030 0.400000 +1697 3054 0.400000 +1697 3091 0.400000 +1697 3137 0.400000 +1697 3187 0.400000 +1698 6 0.400000 +1698 158 0.400000 +1698 180 0.400000 +1698 194 0.400000 +1698 281 0.400000 +1698 285 0.400000 +1698 310 0.400000 +1698 313 0.400000 +1698 380 0.400000 +1698 479 0.400000 +1698 489 0.400000 +1698 567 0.400000 +1698 590 0.400000 +1698 690 0.400000 +1698 722 0.400000 +1698 795 0.400000 +1698 885 0.400000 +1698 979 0.400000 +1698 994 0.400000 +1698 996 0.400000 +1698 1135 0.400000 +1698 1154 0.400000 +1698 1206 0.400000 +1698 1275 0.400000 +1698 1298 0.400000 +1698 1324 0.400000 +1698 1440 0.400000 +1698 1536 0.400000 +1698 1541 0.400000 +1698 1602 0.400000 +1698 1609 0.400000 +1698 1662 0.400000 +1698 1687 0.400000 +1698 1770 0.400000 +1698 1779 0.400000 +1698 1956 0.400000 +1698 1960 0.400000 +1698 1974 0.400000 +1698 2000 0.400000 +1698 2053 0.400000 +1698 2092 0.400000 +1698 2132 0.400000 +1698 2202 0.400000 +1698 2280 0.400000 +1698 2297 0.400000 +1698 2397 0.400000 +1698 2528 0.400000 +1698 2589 0.400000 +1698 2716 0.400000 +1698 2780 0.400000 +1698 2871 0.400000 +1698 2884 0.400000 +1698 2919 0.400000 +1698 2923 0.400000 +1698 2943 0.400000 +1698 2976 0.400000 +1698 2980 0.400000 +1698 3012 0.400000 +1698 3022 0.400000 +1698 3040 0.400000 +1698 3048 0.400000 +1698 3060 0.400000 +1698 3067 0.400000 +1699 46 0.400000 +1699 73 0.400000 +1699 82 0.400000 +1699 86 0.400000 +1699 91 0.400000 +1699 155 0.400000 +1699 192 0.400000 +1699 201 0.400000 +1699 215 0.400000 +1699 242 0.400000 +1699 254 0.400000 +1699 365 0.400000 +1699 377 0.400000 +1699 407 0.400000 +1699 488 0.400000 +1699 527 0.400000 +1699 548 0.400000 +1699 557 0.400000 +1699 629 0.400000 +1699 778 0.400000 +1699 779 0.400000 +1699 783 0.400000 +1699 801 0.400000 +1699 811 0.400000 +1699 856 0.400000 +1699 902 0.400000 +1699 1108 0.400000 +1699 1136 0.400000 +1699 1193 0.400000 +1699 1231 0.400000 +1699 1318 0.400000 +1699 1323 0.400000 +1699 1354 0.400000 +1699 1481 0.400000 +1699 1652 0.400000 +1699 1701 0.400000 +1699 1707 0.400000 +1699 1714 0.400000 +1699 1716 0.400000 +1699 1778 0.400000 +1699 1798 0.400000 +1699 1936 0.400000 +1699 1996 0.400000 +1699 2021 0.400000 +1699 2089 0.400000 +1699 2209 0.400000 +1699 2213 0.400000 +1699 2344 0.400000 +1699 2439 0.400000 +1699 2553 0.400000 +1699 2595 0.400000 +1699 2623 0.400000 +1699 2644 0.400000 +1699 2672 0.400000 +1699 2674 0.400000 +1699 2750 0.400000 +1699 2761 0.400000 +1699 2765 0.400000 +1699 2781 0.400000 +1699 2788 0.400000 +1699 2929 0.400000 +1699 2979 0.400000 +1699 2981 0.400000 +1699 3045 0.400000 +1699 3076 0.400000 +1699 3080 0.400000 +1699 3162 0.400000 +1699 3188 0.400000 +1699 3199 0.400000 +1700 44 0.400000 +1700 126 0.400000 +1700 133 0.400000 +1700 138 0.400000 +1700 328 0.400000 +1700 330 0.400000 +1700 331 0.400000 +1700 583 0.400000 +1700 604 0.400000 +1700 711 0.400000 +1700 743 0.400000 +1700 754 0.400000 +1700 828 0.400000 +1700 926 0.400000 +1700 990 0.400000 +1700 999 0.400000 +1700 1007 0.400000 +1700 1138 0.400000 +1700 1158 0.400000 +1700 1332 0.400000 +1700 1446 0.400000 +1700 1450 0.400000 +1700 1485 0.400000 +1700 1564 0.400000 +1700 1585 0.400000 +1700 1601 0.400000 +1700 1608 0.400000 +1700 1648 0.400000 +1700 1668 0.400000 +1700 1710 0.400000 +1700 1737 0.400000 +1700 1854 0.400000 +1700 1948 0.400000 +1700 2013 0.400000 +1700 2019 0.400000 +1700 2245 0.400000 +1700 2248 0.400000 +1700 2328 0.400000 +1700 2349 0.400000 +1700 2353 0.400000 +1700 2362 0.400000 +1700 2378 0.400000 +1700 2410 0.400000 +1700 2416 0.400000 +1700 2436 0.400000 +1700 2464 0.400000 +1700 2504 0.400000 +1700 2515 0.400000 +1700 2674 0.400000 +1700 2677 0.400000 +1700 2727 0.400000 +1700 2758 0.400000 +1700 2759 0.400000 +1700 2787 0.400000 +1700 2788 0.400000 +1700 2867 0.400000 +1700 2877 0.400000 +1700 2894 0.400000 +1700 2910 0.400000 +1700 2940 0.400000 +1700 2987 0.400000 +1700 3038 0.400000 +1700 3111 0.400000 +1701 183 0.400000 +1701 370 0.400000 +1701 482 0.400000 +1701 504 0.400000 +1701 531 0.400000 +1701 642 0.400000 +1701 663 0.400000 +1701 709 0.400000 +1701 748 0.400000 +1701 758 0.400000 +1701 766 0.400000 +1701 778 0.400000 +1701 809 0.400000 +1701 916 0.400000 +1701 963 0.400000 +1701 1011 0.400000 +1701 1034 0.400000 +1701 1185 0.400000 +1701 1224 0.400000 +1701 1266 0.400000 +1701 1304 0.400000 +1701 1305 0.400000 +1701 1330 0.400000 +1701 1351 0.400000 +1701 1386 0.400000 +1701 1648 0.400000 +1701 1693 0.400000 +1701 1857 0.400000 +1701 1958 0.400000 +1701 1963 0.400000 +1701 2029 0.400000 +1701 2046 0.400000 +1701 2096 0.400000 +1701 2097 0.400000 +1701 2113 0.400000 +1701 2138 0.400000 +1701 2266 0.400000 +1701 2270 0.400000 +1701 2295 0.400000 +1701 2410 0.400000 +1701 2432 0.400000 +1701 2439 0.400000 +1701 2448 0.400000 +1701 2535 0.400000 +1701 2626 0.400000 +1701 2648 0.400000 +1701 2698 0.400000 +1701 2732 0.400000 +1701 2747 0.400000 +1701 2792 0.400000 +1701 2832 0.400000 +1701 2845 0.400000 +1701 2853 0.400000 +1701 2858 0.400000 +1701 3015 0.400000 +1701 3085 0.400000 +1701 3105 0.400000 +1701 3113 0.400000 +1701 3155 0.400000 +1701 3167 0.400000 +1702 9 0.400000 +1702 123 0.400000 +1702 159 0.400000 +1702 215 0.400000 +1702 297 0.400000 +1702 298 0.400000 +1702 338 0.400000 +1702 435 0.400000 +1702 469 0.400000 +1702 498 0.400000 +1702 599 0.400000 +1702 646 0.400000 +1702 688 0.400000 +1702 892 0.400000 +1702 962 0.400000 +1702 995 0.400000 +1702 1008 0.400000 +1702 1023 0.400000 +1702 1052 0.400000 +1702 1054 0.400000 +1702 1078 0.400000 +1702 1116 0.400000 +1702 1150 0.400000 +1702 1165 0.400000 +1702 1208 0.400000 +1702 1234 0.400000 +1702 1280 0.400000 +1702 1331 0.400000 +1702 1351 0.400000 +1702 1364 0.400000 +1702 1388 0.400000 +1702 1400 0.400000 +1702 1436 0.400000 +1702 1461 0.400000 +1702 1472 0.400000 +1702 1562 0.400000 +1702 1664 0.400000 +1702 1721 0.400000 +1702 1836 0.400000 +1702 2169 0.400000 +1702 2200 0.400000 +1702 2219 0.400000 +1702 2228 0.400000 +1702 2234 0.400000 +1702 2277 0.400000 +1702 2279 0.400000 +1702 2280 0.400000 +1702 2294 0.400000 +1702 2300 0.400000 +1702 2382 0.400000 +1702 2417 0.400000 +1702 2491 0.400000 +1702 2502 0.400000 +1702 2519 0.400000 +1702 2545 0.400000 +1702 2613 0.400000 +1702 2722 0.400000 +1702 2723 0.400000 +1702 2756 0.400000 +1702 2767 0.400000 +1702 2888 0.400000 +1702 2961 0.400000 +1702 2985 0.400000 +1702 3085 0.400000 +1702 3104 0.400000 +1702 3131 0.400000 +1702 3173 0.400000 +1703 31 0.400000 +1703 98 0.400000 +1703 138 0.400000 +1703 143 0.400000 +1703 174 0.400000 +1703 194 0.400000 +1703 220 0.400000 +1703 272 0.400000 +1703 283 0.400000 +1703 386 0.400000 +1703 393 0.400000 +1703 493 0.400000 +1703 510 0.400000 +1703 598 0.400000 +1703 798 0.400000 +1703 808 0.400000 +1703 820 0.400000 +1703 868 0.400000 +1703 875 0.400000 +1703 920 0.400000 +1703 993 0.400000 +1703 1023 0.400000 +1703 1024 0.400000 +1703 1078 0.400000 +1703 1116 0.400000 +1703 1130 0.400000 +1703 1133 0.400000 +1703 1174 0.400000 +1703 1193 0.400000 +1703 1300 0.400000 +1703 1395 0.400000 +1703 1428 0.400000 +1703 1446 0.400000 +1703 1501 0.400000 +1703 1596 0.400000 +1703 1621 0.400000 +1703 1629 0.400000 +1703 1641 0.400000 +1703 1692 0.400000 +1703 1833 0.400000 +1703 1840 0.400000 +1703 1871 0.400000 +1703 1882 0.400000 +1703 1929 0.400000 +1703 1946 0.400000 +1703 1947 0.400000 +1703 1995 0.400000 +1703 2152 0.400000 +1703 2222 0.400000 +1703 2303 0.400000 +1703 2412 0.400000 +1703 2484 0.400000 +1703 2588 0.400000 +1703 2616 0.400000 +1703 2671 0.400000 +1703 2715 0.400000 +1703 2722 0.400000 +1703 2747 0.400000 +1703 2766 0.400000 +1703 2969 0.400000 +1703 3013 0.400000 +1703 3024 0.400000 +1703 3028 0.400000 +1703 3050 0.400000 +1703 3104 0.400000 +1703 3121 0.400000 +1703 3128 0.400000 +1703 3142 0.400000 +1704 18 0.400000 +1704 52 0.400000 +1704 72 0.400000 +1704 75 0.400000 +1704 116 0.400000 +1704 149 0.400000 +1704 158 0.400000 +1704 243 0.400000 +1704 304 0.400000 +1704 364 0.400000 +1704 381 0.400000 +1704 391 0.400000 +1704 423 0.400000 +1704 482 0.400000 +1704 497 0.400000 +1704 585 0.400000 +1704 589 0.400000 +1704 596 0.400000 +1704 610 0.400000 +1704 650 0.400000 +1704 760 0.400000 +1704 774 0.400000 +1704 841 0.400000 +1704 910 0.400000 +1704 931 0.400000 +1704 933 0.400000 +1704 970 0.400000 +1704 971 0.400000 +1704 982 0.400000 +1704 1003 0.400000 +1704 1004 0.400000 +1704 1182 0.400000 +1704 1259 0.400000 +1704 1377 0.400000 +1704 1386 0.400000 +1704 1421 0.400000 +1704 1492 0.400000 +1704 1586 0.400000 +1704 1588 0.400000 +1704 1595 0.400000 +1704 1605 0.400000 +1704 1656 0.400000 +1704 1779 0.400000 +1704 1793 0.400000 +1704 1823 0.400000 +1704 1829 0.400000 +1704 1908 0.400000 +1704 1999 0.400000 +1704 2238 0.400000 +1704 2281 0.400000 +1704 2295 0.400000 +1704 2301 0.400000 +1704 2412 0.400000 +1704 2450 0.400000 +1704 2453 0.400000 +1704 2473 0.400000 +1704 2660 0.400000 +1704 2661 0.400000 +1704 2777 0.400000 +1704 2844 0.400000 +1704 2948 0.400000 +1704 2954 0.400000 +1704 2974 0.400000 +1704 3018 0.400000 +1704 3087 0.400000 +1704 3184 0.400000 +1705 49 0.400000 +1705 94 0.400000 +1705 111 0.400000 +1705 127 0.400000 +1705 167 0.400000 +1705 187 0.400000 +1705 339 0.400000 +1705 353 0.400000 +1705 423 0.400000 +1705 540 0.400000 +1705 585 0.400000 +1705 591 0.400000 +1705 607 0.400000 +1705 687 0.400000 +1705 718 0.400000 +1705 811 0.400000 +1705 978 0.400000 +1705 1033 0.400000 +1705 1071 0.400000 +1705 1073 0.400000 +1705 1126 0.400000 +1705 1167 0.400000 +1705 1186 0.400000 +1705 1191 0.400000 +1705 1261 0.400000 +1705 1290 0.400000 +1705 1298 0.400000 +1705 1343 0.400000 +1705 1344 0.400000 +1705 1455 0.400000 +1705 1498 0.400000 +1705 1564 0.400000 +1705 1633 0.400000 +1705 1705 0.400000 +1705 1736 0.400000 +1705 1756 0.400000 +1705 1810 0.400000 +1705 1893 0.400000 +1705 2014 0.400000 +1705 2042 0.400000 +1705 2138 0.400000 +1705 2183 0.400000 +1705 2305 0.400000 +1705 2383 0.400000 +1705 2414 0.400000 +1705 2437 0.400000 +1705 2538 0.400000 +1705 2570 0.400000 +1705 2578 0.400000 +1705 2685 0.400000 +1705 2688 0.400000 +1705 2724 0.400000 +1705 2728 0.400000 +1705 2745 0.400000 +1705 2758 0.400000 +1705 2787 0.400000 +1705 2886 0.400000 +1705 2953 0.400000 +1705 3008 0.400000 +1705 3031 0.400000 +1705 3034 0.400000 +1705 3035 0.400000 +1705 3125 0.400000 +1705 3195 0.400000 +1706 46 0.400000 +1706 211 0.400000 +1706 241 0.400000 +1706 273 0.400000 +1706 390 0.400000 +1706 448 0.400000 +1706 485 0.400000 +1706 504 0.400000 +1706 875 0.400000 +1706 915 0.400000 +1706 922 0.400000 +1706 1007 0.400000 +1706 1070 0.400000 +1706 1117 0.400000 +1706 1183 0.400000 +1706 1200 0.400000 +1706 1363 0.400000 +1706 1433 0.400000 +1706 1500 0.400000 +1706 1839 0.400000 +1706 1953 0.400000 +1706 1984 0.400000 +1706 2047 0.400000 +1706 2094 0.400000 +1706 2180 0.400000 +1706 2217 0.400000 +1706 2262 0.400000 +1706 2296 0.400000 +1706 2313 0.400000 +1706 2451 0.400000 +1706 2494 0.400000 +1706 2504 0.400000 +1706 2517 0.400000 +1706 2575 0.400000 +1706 2592 0.400000 +1706 2646 0.400000 +1706 2647 0.400000 +1706 2681 0.400000 +1706 2713 0.400000 +1706 2722 0.400000 +1706 2785 0.400000 +1706 2797 0.400000 +1706 2834 0.400000 +1706 2885 0.400000 +1706 2918 0.400000 +1706 2941 0.400000 +1706 2951 0.400000 +1706 2980 0.400000 +1706 2992 0.400000 +1706 2997 0.400000 +1706 3018 0.400000 +1706 3083 0.400000 +1706 3141 0.400000 +1706 3157 0.400000 +1706 3166 0.400000 +1706 3189 0.400000 +1707 9 0.400000 +1707 30 0.400000 +1707 83 0.400000 +1707 109 0.400000 +1707 132 0.400000 +1707 135 0.400000 +1707 172 0.400000 +1707 181 0.400000 +1707 197 0.400000 +1707 208 0.400000 +1707 212 0.400000 +1707 241 0.400000 +1707 246 0.400000 +1707 264 0.400000 +1707 390 0.400000 +1707 415 0.400000 +1707 416 0.400000 +1707 490 0.400000 +1707 507 0.400000 +1707 522 0.400000 +1707 572 0.400000 +1707 597 0.400000 +1707 636 0.400000 +1707 652 0.400000 +1707 676 0.400000 +1707 729 0.400000 +1707 742 0.400000 +1707 749 0.400000 +1707 783 0.400000 +1707 893 0.400000 +1707 963 0.400000 +1707 1010 0.400000 +1707 1016 0.400000 +1707 1020 0.400000 +1707 1026 0.400000 +1707 1036 0.400000 +1707 1063 0.400000 +1707 1168 0.400000 +1707 1197 0.400000 +1707 1264 0.400000 +1707 1467 0.400000 +1707 1504 0.400000 +1707 1522 0.400000 +1707 1545 0.400000 +1707 1660 0.400000 +1707 1673 0.400000 +1707 1744 0.400000 +1707 1823 0.400000 +1707 1837 0.400000 +1707 1839 0.400000 +1707 1858 0.400000 +1707 1881 0.400000 +1707 1955 0.400000 +1707 2130 0.400000 +1707 2187 0.400000 +1707 2260 0.400000 +1707 2264 0.400000 +1707 2269 0.400000 +1707 2352 0.400000 +1707 2385 0.400000 +1707 2448 0.400000 +1707 2542 0.400000 +1707 2570 0.400000 +1707 2630 0.400000 +1707 2719 0.400000 +1707 2749 0.400000 +1707 2803 0.400000 +1707 2813 0.400000 +1707 2854 0.400000 +1707 2907 0.400000 +1707 3000 0.400000 +1707 3141 0.400000 +1707 3183 0.400000 +1708 43 0.400000 +1708 50 0.400000 +1708 130 0.400000 +1708 211 0.400000 +1708 213 0.400000 +1708 264 0.400000 +1708 279 0.400000 +1708 293 0.400000 +1708 303 0.400000 +1708 342 0.400000 +1708 389 0.400000 +1708 447 0.400000 +1708 489 0.400000 +1708 618 0.400000 +1708 692 0.400000 +1708 705 0.400000 +1708 781 0.400000 +1708 912 0.400000 +1708 942 0.400000 +1708 946 0.400000 +1708 996 0.400000 +1708 1002 0.400000 +1708 1052 0.400000 +1708 1161 0.400000 +1708 1229 0.400000 +1708 1360 0.400000 +1708 1394 0.400000 +1708 1401 0.400000 +1708 1497 0.400000 +1708 1537 0.400000 +1708 1572 0.400000 +1708 1657 0.400000 +1708 1725 0.400000 +1708 1766 0.400000 +1708 1776 0.400000 +1708 1972 0.400000 +1708 2059 0.400000 +1708 2109 0.400000 +1708 2140 0.400000 +1708 2184 0.400000 +1708 2267 0.400000 +1708 2419 0.400000 +1708 2498 0.400000 +1708 2512 0.400000 +1708 2519 0.400000 +1708 2539 0.400000 +1708 2601 0.400000 +1708 2627 0.400000 +1708 2635 0.400000 +1708 2716 0.400000 +1708 2763 0.400000 +1708 2804 0.400000 +1708 2876 0.400000 +1708 2994 0.400000 +1708 3019 0.400000 +1708 3101 0.400000 +1708 3106 0.400000 +1708 3151 0.400000 +1708 3164 0.400000 +1709 33 0.400000 +1709 89 0.400000 +1709 118 0.400000 +1709 130 0.400000 +1709 197 0.400000 +1709 239 0.400000 +1709 324 0.400000 +1709 380 0.400000 +1709 390 0.400000 +1709 496 0.400000 +1709 507 0.400000 +1709 550 0.400000 +1709 558 0.400000 +1709 560 0.400000 +1709 587 0.400000 +1709 664 0.400000 +1709 799 0.400000 +1709 874 0.400000 +1709 918 0.400000 +1709 1002 0.400000 +1709 1039 0.400000 +1709 1121 0.400000 +1709 1215 0.400000 +1709 1270 0.400000 +1709 1339 0.400000 +1709 1347 0.400000 +1709 1350 0.400000 +1709 1461 0.400000 +1709 1485 0.400000 +1709 1551 0.400000 +1709 1574 0.400000 +1709 1628 0.400000 +1709 1647 0.400000 +1709 1687 0.400000 +1709 1793 0.400000 +1709 1807 0.400000 +1709 1868 0.400000 +1709 1890 0.400000 +1709 1912 0.400000 +1709 1964 0.400000 +1709 1967 0.400000 +1709 1976 0.400000 +1709 1987 0.400000 +1709 2013 0.400000 +1709 2040 0.400000 +1709 2123 0.400000 +1709 2216 0.400000 +1709 2328 0.400000 +1709 2337 0.400000 +1709 2405 0.400000 +1709 2451 0.400000 +1709 2524 0.400000 +1709 2546 0.400000 +1709 2622 0.400000 +1709 2721 0.400000 +1709 2724 0.400000 +1709 2746 0.400000 +1709 2788 0.400000 +1709 2796 0.400000 +1709 2808 0.400000 +1709 2833 0.400000 +1709 2900 0.400000 +1709 2973 0.400000 +1709 3002 0.400000 +1709 3053 0.400000 +1709 3076 0.400000 +1709 3140 0.400000 +1709 3197 0.400000 +1710 33 0.400000 +1710 90 0.400000 +1710 146 0.400000 +1710 150 0.400000 +1710 174 0.400000 +1710 215 0.400000 +1710 386 0.400000 +1710 395 0.400000 +1710 436 0.400000 +1710 441 0.400000 +1710 465 0.400000 +1710 488 0.400000 +1710 535 0.400000 +1710 678 0.400000 +1710 728 0.400000 +1710 747 0.400000 +1710 781 0.400000 +1710 789 0.400000 +1710 891 0.400000 +1710 971 0.400000 +1710 977 0.400000 +1710 980 0.400000 +1710 1032 0.400000 +1710 1052 0.400000 +1710 1127 0.400000 +1710 1170 0.400000 +1710 1230 0.400000 +1710 1238 0.400000 +1710 1285 0.400000 +1710 1364 0.400000 +1710 1365 0.400000 +1710 1389 0.400000 +1710 1416 0.400000 +1710 1480 0.400000 +1710 1507 0.400000 +1710 1549 0.400000 +1710 1554 0.400000 +1710 1608 0.400000 +1710 1610 0.400000 +1710 1653 0.400000 +1710 1695 0.400000 +1710 1867 0.400000 +1710 1963 0.400000 +1710 2015 0.400000 +1710 2025 0.400000 +1710 2031 0.400000 +1710 2065 0.400000 +1710 2094 0.400000 +1710 2096 0.400000 +1710 2126 0.400000 +1710 2146 0.400000 +1710 2180 0.400000 +1710 2234 0.400000 +1710 2253 0.400000 +1710 2322 0.400000 +1710 2380 0.400000 +1710 2449 0.400000 +1710 2487 0.400000 +1710 2571 0.400000 +1710 2586 0.400000 +1710 2615 0.400000 +1710 2674 0.400000 +1710 2680 0.400000 +1710 2684 0.400000 +1710 2737 0.400000 +1710 2740 0.400000 +1710 2755 0.400000 +1710 2762 0.400000 +1710 2802 0.400000 +1710 2807 0.400000 +1710 2817 0.400000 +1710 2923 0.400000 +1710 2940 0.400000 +1710 3066 0.400000 +1710 3074 0.400000 +1710 3129 0.400000 +1710 3134 0.400000 +1710 3165 0.400000 +1711 61 0.400000 +1711 207 0.400000 +1711 354 0.400000 +1711 379 0.400000 +1711 431 0.400000 +1711 442 0.400000 +1711 468 0.400000 +1711 545 0.400000 +1711 553 0.400000 +1711 561 0.400000 +1711 599 0.400000 +1711 610 0.400000 +1711 729 0.400000 +1711 768 0.400000 +1711 792 0.400000 +1711 898 0.400000 +1711 968 0.400000 +1711 1050 0.400000 +1711 1199 0.400000 +1711 1229 0.400000 +1711 1311 0.400000 +1711 1430 0.400000 +1711 1436 0.400000 +1711 1543 0.400000 +1711 1560 0.400000 +1711 1615 0.400000 +1711 1651 0.400000 +1711 1652 0.400000 +1711 1679 0.400000 +1711 1812 0.400000 +1711 1843 0.400000 +1711 1876 0.400000 +1711 1885 0.400000 +1711 1903 0.400000 +1711 1928 0.400000 +1711 1952 0.400000 +1711 2014 0.400000 +1711 2068 0.400000 +1711 2084 0.400000 +1711 2124 0.400000 +1711 2173 0.400000 +1711 2180 0.400000 +1711 2213 0.400000 +1711 2238 0.400000 +1711 2260 0.400000 +1711 2348 0.400000 +1711 2394 0.400000 +1711 2398 0.400000 +1711 2407 0.400000 +1711 2416 0.400000 +1711 2531 0.400000 +1711 2569 0.400000 +1711 2715 0.400000 +1711 2759 0.400000 +1711 2767 0.400000 +1711 2802 0.400000 +1711 2823 0.400000 +1711 2851 0.400000 +1711 2893 0.400000 +1711 2900 0.400000 +1711 2988 0.400000 +1711 2997 0.400000 +1711 3019 0.400000 +1711 3103 0.400000 +1711 3117 0.400000 +1711 3152 0.400000 +1711 3162 0.400000 +1712 12 0.400000 +1712 19 0.400000 +1712 81 0.400000 +1712 87 0.400000 +1712 276 0.400000 +1712 322 0.400000 +1712 360 0.400000 +1712 363 0.400000 +1712 400 0.400000 +1712 463 0.400000 +1712 494 0.400000 +1712 496 0.400000 +1712 509 0.400000 +1712 511 0.400000 +1712 535 0.400000 +1712 602 0.400000 +1712 630 0.400000 +1712 667 0.400000 +1712 733 0.400000 +1712 738 0.400000 +1712 745 0.400000 +1712 818 0.400000 +1712 902 0.400000 +1712 1014 0.400000 +1712 1042 0.400000 +1712 1131 0.400000 +1712 1195 0.400000 +1712 1251 0.400000 +1712 1292 0.400000 +1712 1320 0.400000 +1712 1372 0.400000 +1712 1418 0.400000 +1712 1428 0.400000 +1712 1489 0.400000 +1712 1614 0.400000 +1712 1688 0.400000 +1712 1734 0.400000 +1712 1772 0.400000 +1712 1872 0.400000 +1712 1894 0.400000 +1712 1935 0.400000 +1712 2000 0.400000 +1712 2078 0.400000 +1712 2105 0.400000 +1712 2137 0.400000 +1712 2146 0.400000 +1712 2184 0.400000 +1712 2233 0.400000 +1712 2243 0.400000 +1712 2278 0.400000 +1712 2331 0.400000 +1712 2400 0.400000 +1712 2432 0.400000 +1712 2446 0.400000 +1712 2459 0.400000 +1712 2494 0.400000 +1712 2521 0.400000 +1712 2549 0.400000 +1712 2609 0.400000 +1712 2648 0.400000 +1712 2679 0.400000 +1712 2763 0.400000 +1712 2767 0.400000 +1712 2927 0.400000 +1712 3053 0.400000 +1712 3100 0.400000 +1712 3124 0.400000 +1712 3154 0.400000 +1712 3165 0.400000 +1713 4 0.400000 +1713 63 0.400000 +1713 70 0.400000 +1713 143 0.400000 +1713 169 0.400000 +1713 171 0.400000 +1713 184 0.400000 +1713 237 0.400000 +1713 277 0.400000 +1713 301 0.400000 +1713 318 0.400000 +1713 349 0.400000 +1713 414 0.400000 +1713 441 0.400000 +1713 448 0.400000 +1713 451 0.400000 +1713 492 0.400000 +1713 562 0.400000 +1713 580 0.400000 +1713 604 0.400000 +1713 615 0.400000 +1713 661 0.400000 +1713 679 0.400000 +1713 796 0.400000 +1713 845 0.400000 +1713 899 0.400000 +1713 914 0.400000 +1713 981 0.400000 +1713 1047 0.400000 +1713 1057 0.400000 +1713 1273 0.400000 +1713 1290 0.400000 +1713 1314 0.400000 +1713 1403 0.400000 +1713 1447 0.400000 +1713 1544 0.400000 +1713 1603 0.400000 +1713 1683 0.400000 +1713 1846 0.400000 +1713 1853 0.400000 +1713 1869 0.400000 +1713 1887 0.400000 +1713 1982 0.400000 +1713 1984 0.400000 +1713 1994 0.400000 +1713 2047 0.400000 +1713 2414 0.400000 +1713 2417 0.400000 +1713 2444 0.400000 +1713 2484 0.400000 +1713 2490 0.400000 +1713 2514 0.400000 +1713 2631 0.400000 +1713 2675 0.400000 +1713 2769 0.400000 +1713 2803 0.400000 +1713 2963 0.400000 +1713 2999 0.400000 +1713 3010 0.400000 +1713 3081 0.400000 +1713 3137 0.400000 +1713 3158 0.400000 +1714 8 0.400000 +1714 116 0.400000 +1714 167 0.400000 +1714 212 0.400000 +1714 262 0.400000 +1714 383 0.400000 +1714 665 0.400000 +1714 701 0.400000 +1714 765 0.400000 +1714 839 0.400000 +1714 859 0.400000 +1714 980 0.400000 +1714 987 0.400000 +1714 1025 0.400000 +1714 1170 0.400000 +1714 1237 0.400000 +1714 1338 0.400000 +1714 1377 0.400000 +1714 1382 0.400000 +1714 1473 0.400000 +1714 1499 0.400000 +1714 1516 0.400000 +1714 1649 0.400000 +1714 1679 0.400000 +1714 1728 0.400000 +1714 1899 0.400000 +1714 1912 0.400000 +1714 1992 0.400000 +1714 2080 0.400000 +1714 2115 0.400000 +1714 2142 0.400000 +1714 2321 0.400000 +1714 2420 0.400000 +1714 2438 0.400000 +1714 2540 0.400000 +1714 2551 0.400000 +1714 2570 0.400000 +1714 2679 0.400000 +1714 2698 0.400000 +1714 2791 0.400000 +1714 2867 0.400000 +1714 2893 0.400000 +1714 3107 0.400000 +1714 3129 0.400000 +1715 120 0.400000 +1715 145 0.400000 +1715 206 0.400000 +1715 242 0.400000 +1715 318 0.400000 +1715 329 0.400000 +1715 348 0.400000 +1715 356 0.400000 +1715 386 0.400000 +1715 396 0.400000 +1715 504 0.400000 +1715 564 0.400000 +1715 570 0.400000 +1715 635 0.400000 +1715 655 0.400000 +1715 672 0.400000 +1715 732 0.400000 +1715 801 0.400000 +1715 804 0.400000 +1715 832 0.400000 +1715 862 0.400000 +1715 1009 0.400000 +1715 1019 0.400000 +1715 1047 0.400000 +1715 1053 0.400000 +1715 1056 0.400000 +1715 1107 0.400000 +1715 1116 0.400000 +1715 1217 0.400000 +1715 1221 0.400000 +1715 1249 0.400000 +1715 1262 0.400000 +1715 1265 0.400000 +1715 1270 0.400000 +1715 1422 0.400000 +1715 1438 0.400000 +1715 1470 0.400000 +1715 1510 0.400000 +1715 1529 0.400000 +1715 1542 0.400000 +1715 1598 0.400000 +1715 1621 0.400000 +1715 1684 0.400000 +1715 1687 0.400000 +1715 1722 0.400000 +1715 1736 0.400000 +1715 1873 0.400000 +1715 1977 0.400000 +1715 2027 0.400000 +1715 2053 0.400000 +1715 2057 0.400000 +1715 2058 0.400000 +1715 2088 0.400000 +1715 2110 0.400000 +1715 2116 0.400000 +1715 2182 0.400000 +1715 2231 0.400000 +1715 2332 0.400000 +1715 2377 0.400000 +1715 2425 0.400000 +1715 2534 0.400000 +1715 2583 0.400000 +1715 2605 0.400000 +1715 2707 0.400000 +1715 2716 0.400000 +1715 2923 0.400000 +1715 2958 0.400000 +1715 3010 0.400000 +1715 3048 0.400000 +1715 3099 0.400000 +1716 73 0.400000 +1716 87 0.400000 +1716 119 0.400000 +1716 140 0.400000 +1716 199 0.400000 +1716 263 0.400000 +1716 284 0.400000 +1716 359 0.400000 +1716 592 0.400000 +1716 682 0.400000 +1716 713 0.400000 +1716 716 0.400000 +1716 722 0.400000 +1716 724 0.400000 +1716 738 0.400000 +1716 808 0.400000 +1716 861 0.400000 +1716 1124 0.400000 +1716 1157 0.400000 +1716 1227 0.400000 +1716 1273 0.400000 +1716 1289 0.400000 +1716 1291 0.400000 +1716 1341 0.400000 +1716 1348 0.400000 +1716 1360 0.400000 +1716 1381 0.400000 +1716 1386 0.400000 +1716 1401 0.400000 +1716 1402 0.400000 +1716 1525 0.400000 +1716 1547 0.400000 +1716 1603 0.400000 +1716 1644 0.400000 +1716 1664 0.400000 +1716 1675 0.400000 +1716 1739 0.400000 +1716 1768 0.400000 +1716 1812 0.400000 +1716 1840 0.400000 +1716 1976 0.400000 +1716 1988 0.400000 +1716 1999 0.400000 +1716 2210 0.400000 +1716 2358 0.400000 +1716 2430 0.400000 +1716 2461 0.400000 +1716 2468 0.400000 +1716 2473 0.400000 +1716 2492 0.400000 +1716 2500 0.400000 +1716 2537 0.400000 +1716 2549 0.400000 +1716 2632 0.400000 +1716 2644 0.400000 +1716 2651 0.400000 +1716 2708 0.400000 +1716 2724 0.400000 +1716 2729 0.400000 +1716 2730 0.400000 +1716 2824 0.400000 +1716 2825 0.400000 +1716 2891 0.400000 +1716 2944 0.400000 +1716 3068 0.400000 +1716 3074 0.400000 +1716 3092 0.400000 +1716 3133 0.400000 +1716 3155 0.400000 +1716 3159 0.400000 +1717 42 0.400000 +1717 44 0.400000 +1717 98 0.400000 +1717 113 0.400000 +1717 183 0.400000 +1717 223 0.400000 +1717 390 0.400000 +1717 461 0.400000 +1717 462 0.400000 +1717 496 0.400000 +1717 593 0.400000 +1717 619 0.400000 +1717 640 0.400000 +1717 665 0.400000 +1717 676 0.400000 +1717 690 0.400000 +1717 764 0.400000 +1717 811 0.400000 +1717 874 0.400000 +1717 943 0.400000 +1717 1046 0.400000 +1717 1057 0.400000 +1717 1078 0.400000 +1717 1083 0.400000 +1717 1252 0.400000 +1717 1264 0.400000 +1717 1407 0.400000 +1717 1416 0.400000 +1717 1482 0.400000 +1717 1500 0.400000 +1717 1587 0.400000 +1717 1591 0.400000 +1717 1635 0.400000 +1717 1652 0.400000 +1717 1665 0.400000 +1717 1675 0.400000 +1717 1847 0.400000 +1717 2035 0.400000 +1717 2141 0.400000 +1717 2150 0.400000 +1717 2189 0.400000 +1717 2234 0.400000 +1717 2245 0.400000 +1717 2304 0.400000 +1717 2391 0.400000 +1717 2423 0.400000 +1717 2562 0.400000 +1717 2595 0.400000 +1717 2769 0.400000 +1717 2776 0.400000 +1717 2790 0.400000 +1717 2792 0.400000 +1717 2831 0.400000 +1717 2851 0.400000 +1717 2857 0.400000 +1717 2938 0.400000 +1717 2946 0.400000 +1717 2966 0.400000 +1717 3016 0.400000 +1717 3081 0.400000 +1717 3088 0.400000 +1717 3142 0.400000 +1718 2 0.400000 +1718 6 0.400000 +1718 8 0.400000 +1718 20 0.400000 +1718 24 0.400000 +1718 51 0.400000 +1718 64 0.400000 +1718 136 0.400000 +1718 142 0.400000 +1718 268 0.400000 +1718 325 0.400000 +1718 383 0.400000 +1718 552 0.400000 +1718 618 0.400000 +1718 621 0.400000 +1718 622 0.400000 +1718 648 0.400000 +1718 653 0.400000 +1718 727 0.400000 +1718 766 0.400000 +1718 775 0.400000 +1718 801 0.400000 +1718 814 0.400000 +1718 867 0.400000 +1718 931 0.400000 +1718 956 0.400000 +1718 1017 0.400000 +1718 1073 0.400000 +1718 1104 0.400000 +1718 1108 0.400000 +1718 1146 0.400000 +1718 1252 0.400000 +1718 1263 0.400000 +1718 1416 0.400000 +1718 1426 0.400000 +1718 1437 0.400000 +1718 1476 0.400000 +1718 1518 0.400000 +1718 1522 0.400000 +1718 1554 0.400000 +1718 1558 0.400000 +1718 1594 0.400000 +1718 1721 0.400000 +1718 1839 0.400000 +1718 1940 0.400000 +1718 2045 0.400000 +1718 2069 0.400000 +1718 2075 0.400000 +1718 2126 0.400000 +1718 2145 0.400000 +1718 2202 0.400000 +1718 2212 0.400000 +1718 2246 0.400000 +1718 2332 0.400000 +1718 2469 0.400000 +1718 2503 0.400000 +1718 2507 0.400000 +1718 2509 0.400000 +1718 2531 0.400000 +1718 2618 0.400000 +1718 2718 0.400000 +1718 2739 0.400000 +1718 2820 0.400000 +1718 2821 0.400000 +1718 2859 0.400000 +1718 2942 0.400000 +1718 2997 0.400000 +1718 3007 0.400000 +1718 3009 0.400000 +1718 3032 0.400000 +1718 3080 0.400000 +1718 3158 0.400000 +1719 30 0.400000 +1719 59 0.400000 +1719 72 0.400000 +1719 228 0.400000 +1719 327 0.400000 +1719 417 0.400000 +1719 507 0.400000 +1719 521 0.400000 +1719 561 0.400000 +1719 605 0.400000 +1719 620 0.400000 +1719 644 0.400000 +1719 697 0.400000 +1719 722 0.400000 +1719 752 0.400000 +1719 775 0.400000 +1719 819 0.400000 +1719 894 0.400000 +1719 901 0.400000 +1719 932 0.400000 +1719 942 0.400000 +1719 977 0.400000 +1719 1180 0.400000 +1719 1181 0.400000 +1719 1233 0.400000 +1719 1345 0.400000 +1719 1366 0.400000 +1719 1368 0.400000 +1719 1449 0.400000 +1719 1565 0.400000 +1719 1669 0.400000 +1719 1676 0.400000 +1719 1728 0.400000 +1719 1730 0.400000 +1719 1767 0.400000 +1719 1770 0.400000 +1719 1834 0.400000 +1719 1897 0.400000 +1719 1951 0.400000 +1719 1963 0.400000 +1719 1966 0.400000 +1719 2063 0.400000 +1719 2170 0.400000 +1719 2272 0.400000 +1719 2284 0.400000 +1719 2316 0.400000 +1719 2332 0.400000 +1719 2355 0.400000 +1719 2372 0.400000 +1719 2555 0.400000 +1719 2589 0.400000 +1719 2598 0.400000 +1719 2670 0.400000 +1719 2705 0.400000 +1719 2719 0.400000 +1719 2775 0.400000 +1719 2782 0.400000 +1719 2885 0.400000 +1719 2902 0.400000 +1719 2975 0.400000 +1720 12 0.400000 +1720 14 0.400000 +1720 18 0.400000 +1720 34 0.400000 +1720 65 0.400000 +1720 103 0.400000 +1720 187 0.400000 +1720 212 0.400000 +1720 309 0.400000 +1720 396 0.400000 +1720 431 0.400000 +1720 433 0.400000 +1720 594 0.400000 +1720 735 0.400000 +1720 880 0.400000 +1720 900 0.400000 +1720 929 0.400000 +1720 936 0.400000 +1720 1043 0.400000 +1720 1088 0.400000 +1720 1198 0.400000 +1720 1216 0.400000 +1720 1272 0.400000 +1720 1297 0.400000 +1720 1303 0.400000 +1720 1331 0.400000 +1720 1421 0.400000 +1720 1437 0.400000 +1720 1442 0.400000 +1720 1448 0.400000 +1720 1452 0.400000 +1720 1533 0.400000 +1720 1569 0.400000 +1720 1588 0.400000 +1720 1592 0.400000 +1720 1611 0.400000 +1720 1657 0.400000 +1720 1891 0.400000 +1720 1980 0.400000 +1720 2009 0.400000 +1720 2081 0.400000 +1720 2141 0.400000 +1720 2149 0.400000 +1720 2302 0.400000 +1720 2336 0.400000 +1720 2408 0.400000 +1720 2417 0.400000 +1720 2475 0.400000 +1720 2496 0.400000 +1720 2506 0.400000 +1720 2521 0.400000 +1720 2585 0.400000 +1720 2597 0.400000 +1720 2680 0.400000 +1720 2717 0.400000 +1720 2785 0.400000 +1720 2901 0.400000 +1720 2991 0.400000 +1720 3000 0.400000 +1720 3097 0.400000 +1721 75 0.400000 +1721 135 0.400000 +1721 272 0.400000 +1721 384 0.400000 +1721 497 0.400000 +1721 561 0.400000 +1721 682 0.400000 +1721 716 0.400000 +1721 739 0.400000 +1721 747 0.400000 +1721 787 0.400000 +1721 815 0.400000 +1721 838 0.400000 +1721 859 0.400000 +1721 924 0.400000 +1721 1087 0.400000 +1721 1096 0.400000 +1721 1194 0.400000 +1721 1207 0.400000 +1721 1219 0.400000 +1721 1224 0.400000 +1721 1236 0.400000 +1721 1266 0.400000 +1721 1336 0.400000 +1721 1388 0.400000 +1721 1396 0.400000 +1721 1409 0.400000 +1721 1422 0.400000 +1721 1460 0.400000 +1721 1676 0.400000 +1721 1741 0.400000 +1721 1877 0.400000 +1721 1922 0.400000 +1721 1950 0.400000 +1721 2010 0.400000 +1721 2041 0.400000 +1721 2064 0.400000 +1721 2073 0.400000 +1721 2155 0.400000 +1721 2156 0.400000 +1721 2239 0.400000 +1721 2320 0.400000 +1721 2397 0.400000 +1721 2401 0.400000 +1721 2467 0.400000 +1721 2593 0.400000 +1721 2624 0.400000 +1721 2675 0.400000 +1721 2754 0.400000 +1721 2881 0.400000 +1721 2889 0.400000 +1721 2898 0.400000 +1721 2991 0.400000 +1721 2994 0.400000 +1721 3045 0.400000 +1721 3056 0.400000 +1721 3142 0.400000 +1721 3143 0.400000 +1721 3179 0.400000 +1722 33 0.400000 +1722 38 0.400000 +1722 73 0.400000 +1722 218 0.400000 +1722 222 0.400000 +1722 276 0.400000 +1722 334 0.400000 +1722 416 0.400000 +1722 418 0.400000 +1722 459 0.400000 +1722 489 0.400000 +1722 517 0.400000 +1722 612 0.400000 +1722 636 0.400000 +1722 697 0.400000 +1722 712 0.400000 +1722 775 0.400000 +1722 897 0.400000 +1722 922 0.400000 +1722 931 0.400000 +1722 937 0.400000 +1722 975 0.400000 +1722 1016 0.400000 +1722 1174 0.400000 +1722 1330 0.400000 +1722 1331 0.400000 +1722 1340 0.400000 +1722 1594 0.400000 +1722 1604 0.400000 +1722 1607 0.400000 +1722 1654 0.400000 +1722 1667 0.400000 +1722 1678 0.400000 +1722 1706 0.400000 +1722 1823 0.400000 +1722 1831 0.400000 +1722 1928 0.400000 +1722 1999 0.400000 +1722 2074 0.400000 +1722 2081 0.400000 +1722 2104 0.400000 +1722 2160 0.400000 +1722 2231 0.400000 +1722 2234 0.400000 +1722 2305 0.400000 +1722 2306 0.400000 +1722 2308 0.400000 +1722 2352 0.400000 +1722 2432 0.400000 +1722 2438 0.400000 +1722 2514 0.400000 +1722 2520 0.400000 +1722 2591 0.400000 +1722 2598 0.400000 +1722 2660 0.400000 +1722 2756 0.400000 +1722 2779 0.400000 +1722 2829 0.400000 +1722 2846 0.400000 +1722 2893 0.400000 +1722 2922 0.400000 +1722 2928 0.400000 +1722 2996 0.400000 +1722 3011 0.400000 +1722 3073 0.400000 +1722 3081 0.400000 +1722 3120 0.400000 +1722 3124 0.400000 +1722 3129 0.400000 +1723 18 0.400000 +1723 88 0.400000 +1723 102 0.400000 +1723 126 0.400000 +1723 204 0.400000 +1723 403 0.400000 +1723 408 0.400000 +1723 459 0.400000 +1723 592 0.400000 +1723 688 0.400000 +1723 716 0.400000 +1723 783 0.400000 +1723 786 0.400000 +1723 809 0.400000 +1723 810 0.400000 +1723 872 0.400000 +1723 1025 0.400000 +1723 1047 0.400000 +1723 1171 0.400000 +1723 1200 0.400000 +1723 1243 0.400000 +1723 1266 0.400000 +1723 1290 0.400000 +1723 1439 0.400000 +1723 1470 0.400000 +1723 1555 0.400000 +1723 1601 0.400000 +1723 1611 0.400000 +1723 1626 0.400000 +1723 1700 0.400000 +1723 1717 0.400000 +1723 1733 0.400000 +1723 1808 0.400000 +1723 1940 0.400000 +1723 1958 0.400000 +1723 1965 0.400000 +1723 1986 0.400000 +1723 2068 0.400000 +1723 2071 0.400000 +1723 2147 0.400000 +1723 2199 0.400000 +1723 2208 0.400000 +1723 2242 0.400000 +1723 2302 0.400000 +1723 2323 0.400000 +1723 2345 0.400000 +1723 2370 0.400000 +1723 2404 0.400000 +1723 2457 0.400000 +1723 2492 0.400000 +1723 2587 0.400000 +1723 2592 0.400000 +1723 2754 0.400000 +1723 2767 0.400000 +1723 2827 0.400000 +1723 2898 0.400000 +1723 2917 0.400000 +1723 2922 0.400000 +1723 2923 0.400000 +1723 2998 0.400000 +1723 3017 0.400000 +1723 3182 0.400000 +1724 51 0.400000 +1724 62 0.400000 +1724 126 0.400000 +1724 148 0.400000 +1724 193 0.400000 +1724 281 0.400000 +1724 348 0.400000 +1724 387 0.400000 +1724 437 0.400000 +1724 471 0.400000 +1724 510 0.400000 +1724 519 0.400000 +1724 526 0.400000 +1724 615 0.400000 +1724 619 0.400000 +1724 657 0.400000 +1724 713 0.400000 +1724 784 0.400000 +1724 838 0.400000 +1724 848 0.400000 +1724 879 0.400000 +1724 882 0.400000 +1724 908 0.400000 +1724 943 0.400000 +1724 993 0.400000 +1724 1072 0.400000 +1724 1085 0.400000 +1724 1230 0.400000 +1724 1257 0.400000 +1724 1283 0.400000 +1724 1302 0.400000 +1724 1324 0.400000 +1724 1401 0.400000 +1724 1413 0.400000 +1724 1545 0.400000 +1724 1630 0.400000 +1724 1670 0.400000 +1724 1704 0.400000 +1724 1767 0.400000 +1724 1799 0.400000 +1724 1823 0.400000 +1724 1829 0.400000 +1724 1840 0.400000 +1724 1930 0.400000 +1724 1966 0.400000 +1724 1985 0.400000 +1724 1987 0.400000 +1724 2091 0.400000 +1724 2101 0.400000 +1724 2116 0.400000 +1724 2129 0.400000 +1724 2145 0.400000 +1724 2214 0.400000 +1724 2336 0.400000 +1724 2373 0.400000 +1724 2446 0.400000 +1724 2448 0.400000 +1724 2455 0.400000 +1724 2568 0.400000 +1724 2664 0.400000 +1724 2699 0.400000 +1724 2707 0.400000 +1724 2726 0.400000 +1724 2784 0.400000 +1724 2803 0.400000 +1724 2844 0.400000 +1724 2857 0.400000 +1724 2881 0.400000 +1724 2961 0.400000 +1724 2988 0.400000 +1724 3063 0.400000 +1724 3099 0.400000 +1724 3134 0.400000 +1724 3187 0.400000 +1725 26 0.400000 +1725 73 0.400000 +1725 74 0.400000 +1725 83 0.400000 +1725 161 0.400000 +1725 237 0.400000 +1725 279 0.400000 +1725 421 0.400000 +1725 486 0.400000 +1725 571 0.400000 +1725 583 0.400000 +1725 594 0.400000 +1725 599 0.400000 +1725 673 0.400000 +1725 717 0.400000 +1725 735 0.400000 +1725 756 0.400000 +1725 780 0.400000 +1725 798 0.400000 +1725 845 0.400000 +1725 885 0.400000 +1725 1023 0.400000 +1725 1058 0.400000 +1725 1076 0.400000 +1725 1237 0.400000 +1725 1289 0.400000 +1725 1376 0.400000 +1725 1427 0.400000 +1725 1440 0.400000 +1725 1507 0.400000 +1725 1514 0.400000 +1725 1576 0.400000 +1725 1587 0.400000 +1725 1602 0.400000 +1725 1609 0.400000 +1725 1623 0.400000 +1725 1720 0.400000 +1725 1740 0.400000 +1725 1743 0.400000 +1725 1758 0.400000 +1725 1764 0.400000 +1725 1792 0.400000 +1725 1840 0.400000 +1725 1927 0.400000 +1725 1958 0.400000 +1725 1960 0.400000 +1725 2006 0.400000 +1725 2047 0.400000 +1725 2164 0.400000 +1725 2176 0.400000 +1725 2414 0.400000 +1725 2503 0.400000 +1725 2507 0.400000 +1725 2597 0.400000 +1725 2599 0.400000 +1725 2612 0.400000 +1725 2633 0.400000 +1725 2649 0.400000 +1725 2674 0.400000 +1725 2776 0.400000 +1725 2780 0.400000 +1725 2823 0.400000 +1725 2828 0.400000 +1725 2842 0.400000 +1725 2956 0.400000 +1725 3019 0.400000 +1725 3048 0.400000 +1725 3055 0.400000 +1725 3079 0.400000 +1725 3083 0.400000 +1725 3101 0.400000 +1725 3199 0.400000 +1726 34 0.400000 +1726 89 0.400000 +1726 98 0.400000 +1726 103 0.400000 +1726 124 0.400000 +1726 130 0.400000 +1726 138 0.400000 +1726 147 0.400000 +1726 194 0.400000 +1726 232 0.400000 +1726 252 0.400000 +1726 315 0.400000 +1726 337 0.400000 +1726 344 0.400000 +1726 379 0.400000 +1726 410 0.400000 +1726 436 0.400000 +1726 446 0.400000 +1726 656 0.400000 +1726 687 0.400000 +1726 726 0.400000 +1726 778 0.400000 +1726 784 0.400000 +1726 790 0.400000 +1726 802 0.400000 +1726 819 0.400000 +1726 921 0.400000 +1726 976 0.400000 +1726 1043 0.400000 +1726 1057 0.400000 +1726 1103 0.400000 +1726 1276 0.400000 +1726 1360 0.400000 +1726 1392 0.400000 +1726 1428 0.400000 +1726 1468 0.400000 +1726 1514 0.400000 +1726 1540 0.400000 +1726 1548 0.400000 +1726 1591 0.400000 +1726 1728 0.400000 +1726 1774 0.400000 +1726 1786 0.400000 +1726 1791 0.400000 +1726 1807 0.400000 +1726 1952 0.400000 +1726 1960 0.400000 +1726 2005 0.400000 +1726 2062 0.400000 +1726 2064 0.400000 +1726 2102 0.400000 +1726 2111 0.400000 +1726 2141 0.400000 +1726 2170 0.400000 +1726 2419 0.400000 +1726 2535 0.400000 +1726 2583 0.400000 +1726 2623 0.400000 +1726 2627 0.400000 +1726 2635 0.400000 +1726 2646 0.400000 +1726 2650 0.400000 +1726 2788 0.400000 +1726 2791 0.400000 +1726 2839 0.400000 +1726 2850 0.400000 +1726 2991 0.400000 +1726 3000 0.400000 +1726 3001 0.400000 +1726 3032 0.400000 +1726 3052 0.400000 +1726 3054 0.400000 +1726 3092 0.400000 +1726 3130 0.400000 +1726 3136 0.400000 +1727 60 0.400000 +1727 158 0.400000 +1727 230 0.400000 +1727 385 0.400000 +1727 533 0.400000 +1727 556 0.400000 +1727 651 0.400000 +1727 687 0.400000 +1727 740 0.400000 +1727 749 0.400000 +1727 817 0.400000 +1727 839 0.400000 +1727 866 0.400000 +1727 958 0.400000 +1727 1006 0.400000 +1727 1093 0.400000 +1727 1131 0.400000 +1727 1202 0.400000 +1727 1279 0.400000 +1727 1308 0.400000 +1727 1318 0.400000 +1727 1431 0.400000 +1727 1455 0.400000 +1727 1571 0.400000 +1727 1574 0.400000 +1727 1576 0.400000 +1727 1613 0.400000 +1727 1671 0.400000 +1727 1692 0.400000 +1727 1726 0.400000 +1727 1783 0.400000 +1727 1800 0.400000 +1727 1920 0.400000 +1727 1931 0.400000 +1727 2013 0.400000 +1727 2066 0.400000 +1727 2096 0.400000 +1727 2133 0.400000 +1727 2142 0.400000 +1727 2268 0.400000 +1727 2289 0.400000 +1727 2354 0.400000 +1727 2368 0.400000 +1727 2416 0.400000 +1727 2490 0.400000 +1727 2553 0.400000 +1727 2696 0.400000 +1727 2885 0.400000 +1727 2938 0.400000 +1727 2963 0.400000 +1727 2999 0.400000 +1727 3000 0.400000 +1727 3040 0.400000 +1727 3047 0.400000 +1727 3052 0.400000 +1727 3098 0.400000 +1727 3113 0.400000 +1727 3146 0.400000 +1727 3149 0.400000 +1728 132 0.400000 +1728 215 0.400000 +1728 301 0.400000 +1728 396 0.400000 +1728 442 0.400000 +1728 467 0.400000 +1728 498 0.400000 +1728 584 0.400000 +1728 591 0.400000 +1728 603 0.400000 +1728 693 0.400000 +1728 805 0.400000 +1728 831 0.400000 +1728 927 0.400000 +1728 1016 0.400000 +1728 1037 0.400000 +1728 1079 0.400000 +1728 1177 0.400000 +1728 1212 0.400000 +1728 1234 0.400000 +1728 1389 0.400000 +1728 1431 0.400000 +1728 1439 0.400000 +1728 1482 0.400000 +1728 1712 0.400000 +1728 1717 0.400000 +1728 1786 0.400000 +1728 1823 0.400000 +1728 1830 0.400000 +1728 1851 0.400000 +1728 1988 0.400000 +1728 2054 0.400000 +1728 2079 0.400000 +1728 2117 0.400000 +1728 2128 0.400000 +1728 2198 0.400000 +1728 2274 0.400000 +1728 2290 0.400000 +1728 2354 0.400000 +1728 2363 0.400000 +1728 2454 0.400000 +1728 2467 0.400000 +1728 2474 0.400000 +1728 2617 0.400000 +1728 2649 0.400000 +1728 2658 0.400000 +1728 2717 0.400000 +1728 2761 0.400000 +1728 2849 0.400000 +1728 2855 0.400000 +1728 2862 0.400000 +1728 2878 0.400000 +1728 2930 0.400000 +1728 3006 0.400000 +1729 15 0.400000 +1729 83 0.400000 +1729 132 0.400000 +1729 283 0.400000 +1729 372 0.400000 +1729 653 0.400000 +1729 670 0.400000 +1729 890 0.400000 +1729 905 0.400000 +1729 931 0.400000 +1729 953 0.400000 +1729 967 0.400000 +1729 1080 0.400000 +1729 1140 0.400000 +1729 1165 0.400000 +1729 1195 0.400000 +1729 1238 0.400000 +1729 1249 0.400000 +1729 1281 0.400000 +1729 1308 0.400000 +1729 1310 0.400000 +1729 1336 0.400000 +1729 1453 0.400000 +1729 1455 0.400000 +1729 1473 0.400000 +1729 1503 0.400000 +1729 1522 0.400000 +1729 1554 0.400000 +1729 1579 0.400000 +1729 1612 0.400000 +1729 1618 0.400000 +1729 1634 0.400000 +1729 1778 0.400000 +1729 1819 0.400000 +1729 1959 0.400000 +1729 1996 0.400000 +1729 2054 0.400000 +1729 2057 0.400000 +1729 2058 0.400000 +1729 2233 0.400000 +1729 2275 0.400000 +1729 2353 0.400000 +1729 2354 0.400000 +1729 2359 0.400000 +1729 2375 0.400000 +1729 2403 0.400000 +1729 2404 0.400000 +1729 2417 0.400000 +1729 2427 0.400000 +1729 2449 0.400000 +1729 2514 0.400000 +1729 2520 0.400000 +1729 2523 0.400000 +1729 2636 0.400000 +1729 2640 0.400000 +1729 2720 0.400000 +1729 2735 0.400000 +1729 2737 0.400000 +1729 2762 0.400000 +1729 2796 0.400000 +1729 2873 0.400000 +1729 2956 0.400000 +1729 3032 0.400000 +1729 3056 0.400000 +1729 3195 0.400000 +1729 3200 0.400000 +1730 97 0.400000 +1730 152 0.400000 +1730 225 0.400000 +1730 245 0.400000 +1730 272 0.400000 +1730 273 0.400000 +1730 311 0.400000 +1730 319 0.400000 +1730 333 0.400000 +1730 356 0.400000 +1730 362 0.400000 +1730 403 0.400000 +1730 441 0.400000 +1730 457 0.400000 +1730 473 0.400000 +1730 513 0.400000 +1730 554 0.400000 +1730 571 0.400000 +1730 651 0.400000 +1730 678 0.400000 +1730 870 0.400000 +1730 916 0.400000 +1730 985 0.400000 +1730 992 0.400000 +1730 1011 0.400000 +1730 1031 0.400000 +1730 1065 0.400000 +1730 1158 0.400000 +1730 1159 0.400000 +1730 1178 0.400000 +1730 1212 0.400000 +1730 1219 0.400000 +1730 1253 0.400000 +1730 1298 0.400000 +1730 1510 0.400000 +1730 1579 0.400000 +1730 1636 0.400000 +1730 1645 0.400000 +1730 1784 0.400000 +1730 1829 0.400000 +1730 1864 0.400000 +1730 1866 0.400000 +1730 1872 0.400000 +1730 1914 0.400000 +1730 2047 0.400000 +1730 2134 0.400000 +1730 2147 0.400000 +1730 2190 0.400000 +1730 2206 0.400000 +1730 2353 0.400000 +1730 2464 0.400000 +1730 2538 0.400000 +1730 2557 0.400000 +1730 2587 0.400000 +1730 2645 0.400000 +1730 2647 0.400000 +1730 2759 0.400000 +1730 2905 0.400000 +1730 2933 0.400000 +1730 2979 0.400000 +1730 3104 0.400000 +1730 3164 0.400000 +1731 27 0.400000 +1731 76 0.400000 +1731 133 0.400000 +1731 200 0.400000 +1731 238 0.400000 +1731 269 0.400000 +1731 275 0.400000 +1731 303 0.400000 +1731 311 0.400000 +1731 317 0.400000 +1731 320 0.400000 +1731 364 0.400000 +1731 552 0.400000 +1731 554 0.400000 +1731 556 0.400000 +1731 604 0.400000 +1731 659 0.400000 +1731 692 0.400000 +1731 693 0.400000 +1731 702 0.400000 +1731 709 0.400000 +1731 756 0.400000 +1731 766 0.400000 +1731 823 0.400000 +1731 828 0.400000 +1731 843 0.400000 +1731 928 0.400000 +1731 984 0.400000 +1731 1035 0.400000 +1731 1056 0.400000 +1731 1079 0.400000 +1731 1086 0.400000 +1731 1194 0.400000 +1731 1269 0.400000 +1731 1417 0.400000 +1731 1456 0.400000 +1731 1457 0.400000 +1731 1465 0.400000 +1731 1633 0.400000 +1731 1650 0.400000 +1731 1721 0.400000 +1731 1872 0.400000 +1731 1976 0.400000 +1731 2028 0.400000 +1731 2067 0.400000 +1731 2071 0.400000 +1731 2077 0.400000 +1731 2111 0.400000 +1731 2168 0.400000 +1731 2181 0.400000 +1731 2232 0.400000 +1731 2262 0.400000 +1731 2273 0.400000 +1731 2288 0.400000 +1731 2345 0.400000 +1731 2353 0.400000 +1731 2565 0.400000 +1731 2626 0.400000 +1731 2639 0.400000 +1731 2666 0.400000 +1731 2818 0.400000 +1731 2841 0.400000 +1731 2848 0.400000 +1731 2872 0.400000 +1731 2882 0.400000 +1731 2888 0.400000 +1731 2920 0.400000 +1731 3012 0.400000 +1731 3055 0.400000 +1731 3082 0.400000 +1731 3124 0.400000 +1731 3180 0.400000 +1731 3194 0.400000 +1732 32 0.400000 +1732 123 0.400000 +1732 161 0.400000 +1732 312 0.400000 +1732 345 0.400000 +1732 373 0.400000 +1732 426 0.400000 +1732 432 0.400000 +1732 522 0.400000 +1732 527 0.400000 +1732 549 0.400000 +1732 569 0.400000 +1732 607 0.400000 +1732 928 0.400000 +1732 956 0.400000 +1732 1003 0.400000 +1732 1016 0.400000 +1732 1020 0.400000 +1732 1063 0.400000 +1732 1076 0.400000 +1732 1200 0.400000 +1732 1259 0.400000 +1732 1271 0.400000 +1732 1289 0.400000 +1732 1333 0.400000 +1732 1365 0.400000 +1732 1391 0.400000 +1732 1414 0.400000 +1732 1495 0.400000 +1732 1525 0.400000 +1732 1573 0.400000 +1732 1584 0.400000 +1732 1617 0.400000 +1732 1623 0.400000 +1732 1708 0.400000 +1732 1816 0.400000 +1732 1906 0.400000 +1732 1985 0.400000 +1732 1998 0.400000 +1732 2054 0.400000 +1732 2154 0.400000 +1732 2228 0.400000 +1732 2252 0.400000 +1732 2475 0.400000 +1732 2524 0.400000 +1732 2531 0.400000 +1732 2552 0.400000 +1732 2662 0.400000 +1732 2751 0.400000 +1732 2769 0.400000 +1732 2792 0.400000 +1732 2801 0.400000 +1732 2813 0.400000 +1732 2839 0.400000 +1732 2883 0.400000 +1732 2954 0.400000 +1732 3044 0.400000 +1732 3098 0.400000 +1733 3 0.400000 +1733 31 0.400000 +1733 60 0.400000 +1733 63 0.400000 +1733 85 0.400000 +1733 110 0.400000 +1733 223 0.400000 +1733 229 0.400000 +1733 280 0.400000 +1733 372 0.400000 +1733 373 0.400000 +1733 496 0.400000 +1733 537 0.400000 +1733 543 0.400000 +1733 614 0.400000 +1733 625 0.400000 +1733 724 0.400000 +1733 730 0.400000 +1733 731 0.400000 +1733 752 0.400000 +1733 852 0.400000 +1733 895 0.400000 +1733 902 0.400000 +1733 927 0.400000 +1733 966 0.400000 +1733 997 0.400000 +1733 1184 0.400000 +1733 1313 0.400000 +1733 1364 0.400000 +1733 1533 0.400000 +1733 1617 0.400000 +1733 1747 0.400000 +1733 1797 0.400000 +1733 1799 0.400000 +1733 1877 0.400000 +1733 1970 0.400000 +1733 2027 0.400000 +1733 2063 0.400000 +1733 2154 0.400000 +1733 2302 0.400000 +1733 2445 0.400000 +1733 2590 0.400000 +1733 2604 0.400000 +1733 2609 0.400000 +1733 2698 0.400000 +1733 2740 0.400000 +1733 2795 0.400000 +1733 2878 0.400000 +1733 2942 0.400000 +1733 2982 0.400000 +1733 3009 0.400000 +1734 149 0.400000 +1734 251 0.400000 +1734 262 0.400000 +1734 339 0.400000 +1734 428 0.400000 +1734 530 0.400000 +1734 534 0.400000 +1734 535 0.400000 +1734 543 0.400000 +1734 579 0.400000 +1734 720 0.400000 +1734 744 0.400000 +1734 767 0.400000 +1734 787 0.400000 +1734 968 0.400000 +1734 1007 0.400000 +1734 1030 0.400000 +1734 1097 0.400000 +1734 1106 0.400000 +1734 1258 0.400000 +1734 1262 0.400000 +1734 1269 0.400000 +1734 1362 0.400000 +1734 1367 0.400000 +1734 1401 0.400000 +1734 1446 0.400000 +1734 1566 0.400000 +1734 1624 0.400000 +1734 1654 0.400000 +1734 1672 0.400000 +1734 1683 0.400000 +1734 1761 0.400000 +1734 1766 0.400000 +1734 1786 0.400000 +1734 1828 0.400000 +1734 1829 0.400000 +1734 1842 0.400000 +1734 1854 0.400000 +1734 1893 0.400000 +1734 1941 0.400000 +1734 1948 0.400000 +1734 1975 0.400000 +1734 2075 0.400000 +1734 2149 0.400000 +1734 2201 0.400000 +1734 2295 0.400000 +1734 2315 0.400000 +1734 2388 0.400000 +1734 2421 0.400000 +1734 2502 0.400000 +1734 2522 0.400000 +1734 2535 0.400000 +1734 2545 0.400000 +1734 2603 0.400000 +1734 2694 0.400000 +1734 2710 0.400000 +1734 2745 0.400000 +1734 2841 0.400000 +1734 2859 0.400000 +1734 2860 0.400000 +1734 2885 0.400000 +1734 2914 0.400000 +1734 2958 0.400000 +1734 3026 0.400000 +1734 3028 0.400000 +1734 3031 0.400000 +1734 3046 0.400000 +1734 3113 0.400000 +1734 3152 0.400000 +1735 72 0.400000 +1735 97 0.400000 +1735 198 0.400000 +1735 204 0.400000 +1735 205 0.400000 +1735 250 0.400000 +1735 271 0.400000 +1735 288 0.400000 +1735 377 0.400000 +1735 405 0.400000 +1735 419 0.400000 +1735 442 0.400000 +1735 534 0.400000 +1735 559 0.400000 +1735 586 0.400000 +1735 588 0.400000 +1735 611 0.400000 +1735 671 0.400000 +1735 677 0.400000 +1735 687 0.400000 +1735 693 0.400000 +1735 725 0.400000 +1735 760 0.400000 +1735 781 0.400000 +1735 809 0.400000 +1735 885 0.400000 +1735 905 0.400000 +1735 925 0.400000 +1735 957 0.400000 +1735 964 0.400000 +1735 1042 0.400000 +1735 1077 0.400000 +1735 1085 0.400000 +1735 1139 0.400000 +1735 1149 0.400000 +1735 1279 0.400000 +1735 1291 0.400000 +1735 1304 0.400000 +1735 1445 0.400000 +1735 1476 0.400000 +1735 1536 0.400000 +1735 1595 0.400000 +1735 1598 0.400000 +1735 1626 0.400000 +1735 1663 0.400000 +1735 1691 0.400000 +1735 1726 0.400000 +1735 1760 0.400000 +1735 1831 0.400000 +1735 1991 0.400000 +1735 2056 0.400000 +1735 2082 0.400000 +1735 2101 0.400000 +1735 2117 0.400000 +1735 2125 0.400000 +1735 2145 0.400000 +1735 2168 0.400000 +1735 2191 0.400000 +1735 2202 0.400000 +1735 2237 0.400000 +1735 2246 0.400000 +1735 2354 0.400000 +1735 2397 0.400000 +1735 2410 0.400000 +1735 2461 0.400000 +1735 2607 0.400000 +1735 2642 0.400000 +1735 2674 0.400000 +1735 2747 0.400000 +1735 2762 0.400000 +1735 2768 0.400000 +1735 2776 0.400000 +1735 2839 0.400000 +1735 2925 0.400000 +1735 3108 0.400000 +1735 3115 0.400000 +1735 3165 0.400000 +1736 24 0.400000 +1736 81 0.400000 +1736 190 0.400000 +1736 267 0.400000 +1736 318 0.400000 +1736 476 0.400000 +1736 477 0.400000 +1736 501 0.400000 +1736 509 0.400000 +1736 592 0.400000 +1736 735 0.400000 +1736 827 0.400000 +1736 856 0.400000 +1736 870 0.400000 +1736 884 0.400000 +1736 1004 0.400000 +1736 1017 0.400000 +1736 1158 0.400000 +1736 1262 0.400000 +1736 1270 0.400000 +1736 1319 0.400000 +1736 1379 0.400000 +1736 1630 0.400000 +1736 1645 0.400000 +1736 1648 0.400000 +1736 1658 0.400000 +1736 1736 0.400000 +1736 1756 0.400000 +1736 1762 0.400000 +1736 1798 0.400000 +1736 1806 0.400000 +1736 1821 0.400000 +1736 1895 0.400000 +1736 1998 0.400000 +1736 2048 0.400000 +1736 2074 0.400000 +1736 2103 0.400000 +1736 2197 0.400000 +1736 2300 0.400000 +1736 2325 0.400000 +1736 2353 0.400000 +1736 2403 0.400000 +1736 2412 0.400000 +1736 2471 0.400000 +1736 2599 0.400000 +1736 2632 0.400000 +1736 2646 0.400000 +1736 2716 0.400000 +1736 2747 0.400000 +1736 2779 0.400000 +1736 2800 0.400000 +1736 2819 0.400000 +1736 2858 0.400000 +1736 2873 0.400000 +1736 2933 0.400000 +1736 2936 0.400000 +1736 3074 0.400000 +1736 3083 0.400000 +1736 3171 0.400000 +1737 15 0.400000 +1737 24 0.400000 +1737 32 0.400000 +1737 79 0.400000 +1737 91 0.400000 +1737 130 0.400000 +1737 143 0.400000 +1737 196 0.400000 +1737 255 0.400000 +1737 275 0.400000 +1737 324 0.400000 +1737 413 0.400000 +1737 434 0.400000 +1737 437 0.400000 +1737 508 0.400000 +1737 609 0.400000 +1737 613 0.400000 +1737 649 0.400000 +1737 727 0.400000 +1737 734 0.400000 +1737 747 0.400000 +1737 984 0.400000 +1737 1056 0.400000 +1737 1198 0.400000 +1737 1214 0.400000 +1737 1222 0.400000 +1737 1259 0.400000 +1737 1266 0.400000 +1737 1280 0.400000 +1737 1301 0.400000 +1737 1343 0.400000 +1737 1388 0.400000 +1737 1592 0.400000 +1737 1612 0.400000 +1737 1701 0.400000 +1737 1877 0.400000 +1737 1914 0.400000 +1737 1993 0.400000 +1737 2257 0.400000 +1737 2289 0.400000 +1737 2335 0.400000 +1737 2370 0.400000 +1737 2551 0.400000 +1737 2552 0.400000 +1737 2561 0.400000 +1737 2585 0.400000 +1737 2635 0.400000 +1737 2651 0.400000 +1737 2686 0.400000 +1737 2769 0.400000 +1737 2803 0.400000 +1737 2805 0.400000 +1737 2837 0.400000 +1737 2865 0.400000 +1737 3050 0.400000 +1737 3072 0.400000 +1737 3074 0.400000 +1737 3155 0.400000 +1738 26 0.400000 +1738 27 0.400000 +1738 137 0.400000 +1738 157 0.400000 +1738 194 0.400000 +1738 244 0.400000 +1738 299 0.400000 +1738 322 0.400000 +1738 330 0.400000 +1738 410 0.400000 +1738 421 0.400000 +1738 468 0.400000 +1738 524 0.400000 +1738 525 0.400000 +1738 532 0.400000 +1738 535 0.400000 +1738 538 0.400000 +1738 539 0.400000 +1738 640 0.400000 +1738 668 0.400000 +1738 770 0.400000 +1738 814 0.400000 +1738 901 0.400000 +1738 979 0.400000 +1738 981 0.400000 +1738 986 0.400000 +1738 1025 0.400000 +1738 1063 0.400000 +1738 1077 0.400000 +1738 1079 0.400000 +1738 1126 0.400000 +1738 1193 0.400000 +1738 1194 0.400000 +1738 1200 0.400000 +1738 1282 0.400000 +1738 1287 0.400000 +1738 1308 0.400000 +1738 1353 0.400000 +1738 1456 0.400000 +1738 1476 0.400000 +1738 1538 0.400000 +1738 1573 0.400000 +1738 1589 0.400000 +1738 1659 0.400000 +1738 1715 0.400000 +1738 1759 0.400000 +1738 1809 0.400000 +1738 1930 0.400000 +1738 1958 0.400000 +1738 1967 0.400000 +1738 2004 0.400000 +1738 2014 0.400000 +1738 2047 0.400000 +1738 2056 0.400000 +1738 2085 0.400000 +1738 2134 0.400000 +1738 2176 0.400000 +1738 2191 0.400000 +1738 2239 0.400000 +1738 2338 0.400000 +1738 2583 0.400000 +1738 2646 0.400000 +1738 2680 0.400000 +1738 2696 0.400000 +1738 2796 0.400000 +1738 2857 0.400000 +1738 3132 0.400000 +1738 3162 0.400000 +1738 3180 0.400000 +1739 17 0.400000 +1739 258 0.400000 +1739 343 0.400000 +1739 487 0.400000 +1739 549 0.400000 +1739 580 0.400000 +1739 597 0.400000 +1739 839 0.400000 +1739 1069 0.400000 +1739 1147 0.400000 +1739 1150 0.400000 +1739 1192 0.400000 +1739 1219 0.400000 +1739 1240 0.400000 +1739 1258 0.400000 +1739 1349 0.400000 +1739 1357 0.400000 +1739 1443 0.400000 +1739 1646 0.400000 +1739 1700 0.400000 +1739 1720 0.400000 +1739 1770 0.400000 +1739 1819 0.400000 +1739 1961 0.400000 +1739 1978 0.400000 +1739 2068 0.400000 +1739 2078 0.400000 +1739 2089 0.400000 +1739 2249 0.400000 +1739 2258 0.400000 +1739 2271 0.400000 +1739 2287 0.400000 +1739 2350 0.400000 +1739 2367 0.400000 +1739 2405 0.400000 +1739 2560 0.400000 +1739 2593 0.400000 +1739 2594 0.400000 +1739 2666 0.400000 +1739 2719 0.400000 +1739 2748 0.400000 +1739 2759 0.400000 +1739 2797 0.400000 +1739 2809 0.400000 +1739 2919 0.400000 +1739 2934 0.400000 +1739 2939 0.400000 +1739 2948 0.400000 +1739 2990 0.400000 +1739 3004 0.400000 +1739 3160 0.400000 +1740 9 0.400000 +1740 11 0.400000 +1740 133 0.400000 +1740 206 0.400000 +1740 349 0.400000 +1740 350 0.400000 +1740 472 0.400000 +1740 516 0.400000 +1740 602 0.400000 +1740 675 0.400000 +1740 689 0.400000 +1740 752 0.400000 +1740 786 0.400000 +1740 830 0.400000 +1740 863 0.400000 +1740 893 0.400000 +1740 989 0.400000 +1740 1004 0.400000 +1740 1006 0.400000 +1740 1066 0.400000 +1740 1157 0.400000 +1740 1174 0.400000 +1740 1267 0.400000 +1740 1379 0.400000 +1740 1434 0.400000 +1740 1458 0.400000 +1740 1549 0.400000 +1740 1569 0.400000 +1740 1715 0.400000 +1740 1727 0.400000 +1740 1728 0.400000 +1740 1753 0.400000 +1740 1852 0.400000 +1740 1863 0.400000 +1740 1876 0.400000 +1740 1896 0.400000 +1740 1941 0.400000 +1740 2098 0.400000 +1740 2179 0.400000 +1740 2276 0.400000 +1740 2322 0.400000 +1740 2326 0.400000 +1740 2361 0.400000 +1740 2392 0.400000 +1740 2396 0.400000 +1740 2517 0.400000 +1740 2570 0.400000 +1740 2573 0.400000 +1740 2623 0.400000 +1740 2716 0.400000 +1740 2794 0.400000 +1740 2822 0.400000 +1740 2876 0.400000 +1740 2891 0.400000 +1740 2957 0.400000 +1740 2960 0.400000 +1740 3023 0.400000 +1740 3058 0.400000 +1740 3098 0.400000 +1741 25 0.400000 +1741 40 0.400000 +1741 72 0.400000 +1741 145 0.400000 +1741 152 0.400000 +1741 184 0.400000 +1741 232 0.400000 +1741 493 0.400000 +1741 539 0.400000 +1741 544 0.400000 +1741 613 0.400000 +1741 626 0.400000 +1741 638 0.400000 +1741 716 0.400000 +1741 824 0.400000 +1741 885 0.400000 +1741 925 0.400000 +1741 997 0.400000 +1741 1113 0.400000 +1741 1170 0.400000 +1741 1241 0.400000 +1741 1381 0.400000 +1741 1431 0.400000 +1741 1467 0.400000 +1741 1479 0.400000 +1741 1493 0.400000 +1741 1578 0.400000 +1741 1616 0.400000 +1741 1645 0.400000 +1741 1725 0.400000 +1741 1820 0.400000 +1741 1833 0.400000 +1741 1840 0.400000 +1741 1963 0.400000 +1741 2004 0.400000 +1741 2014 0.400000 +1741 2132 0.400000 +1741 2144 0.400000 +1741 2234 0.400000 +1741 2248 0.400000 +1741 2291 0.400000 +1741 2305 0.400000 +1741 2366 0.400000 +1741 2379 0.400000 +1741 2457 0.400000 +1741 2600 0.400000 +1741 2630 0.400000 +1741 2674 0.400000 +1741 2734 0.400000 +1741 2786 0.400000 +1741 2809 0.400000 +1741 2830 0.400000 +1741 2935 0.400000 +1741 2973 0.400000 +1741 2993 0.400000 +1741 3058 0.400000 +1741 3073 0.400000 +1741 3104 0.400000 +1741 3114 0.400000 +1741 3151 0.400000 +1742 42 0.400000 +1742 62 0.400000 +1742 83 0.400000 +1742 94 0.400000 +1742 135 0.400000 +1742 202 0.400000 +1742 250 0.400000 +1742 288 0.400000 +1742 307 0.400000 +1742 326 0.400000 +1742 330 0.400000 +1742 340 0.400000 +1742 346 0.400000 +1742 364 0.400000 +1742 386 0.400000 +1742 404 0.400000 +1742 444 0.400000 +1742 485 0.400000 +1742 530 0.400000 +1742 548 0.400000 +1742 586 0.400000 +1742 592 0.400000 +1742 597 0.400000 +1742 625 0.400000 +1742 633 0.400000 +1742 662 0.400000 +1742 666 0.400000 +1742 710 0.400000 +1742 717 0.400000 +1742 751 0.400000 +1742 762 0.400000 +1742 767 0.400000 +1742 804 0.400000 +1742 887 0.400000 +1742 1071 0.400000 +1742 1075 0.400000 +1742 1105 0.400000 +1742 1130 0.400000 +1742 1236 0.400000 +1742 1255 0.400000 +1742 1265 0.400000 +1742 1271 0.400000 +1742 1388 0.400000 +1742 1398 0.400000 +1742 1452 0.400000 +1742 1459 0.400000 +1742 1499 0.400000 +1742 1509 0.400000 +1742 1541 0.400000 +1742 1577 0.400000 +1742 1579 0.400000 +1742 1686 0.400000 +1742 1723 0.400000 +1742 1761 0.400000 +1742 1781 0.400000 +1742 1792 0.400000 +1742 1949 0.400000 +1742 1958 0.400000 +1742 1962 0.400000 +1742 2014 0.400000 +1742 2030 0.400000 +1742 2038 0.400000 +1742 2112 0.400000 +1742 2134 0.400000 +1742 2137 0.400000 +1742 2141 0.400000 +1742 2304 0.400000 +1742 2316 0.400000 +1742 2329 0.400000 +1742 2370 0.400000 +1742 2466 0.400000 +1742 2486 0.400000 +1742 2583 0.400000 +1742 2595 0.400000 +1742 2630 0.400000 +1742 2682 0.400000 +1742 2770 0.400000 +1742 2786 0.400000 +1742 2990 0.400000 +1742 3003 0.400000 +1742 3072 0.400000 +1742 3154 0.400000 +1742 3174 0.400000 +1743 48 0.400000 +1743 93 0.400000 +1743 103 0.400000 +1743 289 0.400000 +1743 327 0.400000 +1743 359 0.400000 +1743 401 0.400000 +1743 451 0.400000 +1743 468 0.400000 +1743 515 0.400000 +1743 518 0.400000 +1743 605 0.400000 +1743 634 0.400000 +1743 765 0.400000 +1743 848 0.400000 +1743 850 0.400000 +1743 861 0.400000 +1743 896 0.400000 +1743 932 0.400000 +1743 981 0.400000 +1743 1056 0.400000 +1743 1140 0.400000 +1743 1162 0.400000 +1743 1204 0.400000 +1743 1246 0.400000 +1743 1264 0.400000 +1743 1351 0.400000 +1743 1392 0.400000 +1743 1398 0.400000 +1743 1420 0.400000 +1743 1437 0.400000 +1743 1472 0.400000 +1743 1473 0.400000 +1743 1624 0.400000 +1743 1638 0.400000 +1743 1755 0.400000 +1743 1762 0.400000 +1743 1858 0.400000 +1743 1863 0.400000 +1743 1866 0.400000 +1743 1884 0.400000 +1743 1922 0.400000 +1743 2051 0.400000 +1743 2056 0.400000 +1743 2116 0.400000 +1743 2156 0.400000 +1743 2221 0.400000 +1743 2240 0.400000 +1743 2312 0.400000 +1743 2435 0.400000 +1743 2495 0.400000 +1743 2571 0.400000 +1743 2622 0.400000 +1743 2637 0.400000 +1743 2719 0.400000 +1743 2752 0.400000 +1743 2800 0.400000 +1743 2831 0.400000 +1743 2837 0.400000 +1743 2876 0.400000 +1743 2911 0.400000 +1743 3046 0.400000 +1743 3063 0.400000 +1743 3065 0.400000 +1743 3088 0.400000 +1743 3142 0.400000 +1744 35 0.400000 +1744 109 0.400000 +1744 135 0.400000 +1744 170 0.400000 +1744 236 0.400000 +1744 262 0.400000 +1744 300 0.400000 +1744 348 0.400000 +1744 492 0.400000 +1744 505 0.400000 +1744 506 0.400000 +1744 510 0.400000 +1744 516 0.400000 +1744 545 0.400000 +1744 631 0.400000 +1744 646 0.400000 +1744 671 0.400000 +1744 760 0.400000 +1744 766 0.400000 +1744 784 0.400000 +1744 843 0.400000 +1744 876 0.400000 +1744 942 0.400000 +1744 1004 0.400000 +1744 1006 0.400000 +1744 1010 0.400000 +1744 1028 0.400000 +1744 1164 0.400000 +1744 1270 0.400000 +1744 1291 0.400000 +1744 1357 0.400000 +1744 1394 0.400000 +1744 1407 0.400000 +1744 1494 0.400000 +1744 1531 0.400000 +1744 1576 0.400000 +1744 1753 0.400000 +1744 1879 0.400000 +1744 1926 0.400000 +1744 1983 0.400000 +1744 2006 0.400000 +1744 2029 0.400000 +1744 2103 0.400000 +1744 2113 0.400000 +1744 2201 0.400000 +1744 2214 0.400000 +1744 2219 0.400000 +1744 2285 0.400000 +1744 2337 0.400000 +1744 2407 0.400000 +1744 2417 0.400000 +1744 2433 0.400000 +1744 2445 0.400000 +1744 2568 0.400000 +1744 2621 0.400000 +1744 2757 0.400000 +1744 2781 0.400000 +1744 2787 0.400000 +1744 2799 0.400000 +1744 2819 0.400000 +1744 2841 0.400000 +1744 3056 0.400000 +1744 3061 0.400000 +1744 3113 0.400000 +1744 3121 0.400000 +1744 3127 0.400000 +1744 3192 0.400000 +1745 102 0.400000 +1745 122 0.400000 +1745 140 0.400000 +1745 199 0.400000 +1745 309 0.400000 +1745 333 0.400000 +1745 553 0.400000 +1745 577 0.400000 +1745 585 0.400000 +1745 619 0.400000 +1745 720 0.400000 +1745 726 0.400000 +1745 775 0.400000 +1745 778 0.400000 +1745 816 0.400000 +1745 823 0.400000 +1745 834 0.400000 +1745 909 0.400000 +1745 927 0.400000 +1745 961 0.400000 +1745 984 0.400000 +1745 999 0.400000 +1745 1026 0.400000 +1745 1099 0.400000 +1745 1108 0.400000 +1745 1210 0.400000 +1745 1307 0.400000 +1745 1363 0.400000 +1745 1394 0.400000 +1745 1416 0.400000 +1745 1475 0.400000 +1745 1481 0.400000 +1745 1529 0.400000 +1745 1576 0.400000 +1745 1635 0.400000 +1745 1669 0.400000 +1745 1757 0.400000 +1745 1798 0.400000 +1745 1823 0.400000 +1745 1867 0.400000 +1745 1922 0.400000 +1745 1956 0.400000 +1745 1962 0.400000 +1745 1984 0.400000 +1745 1989 0.400000 +1745 2008 0.400000 +1745 2035 0.400000 +1745 2097 0.400000 +1745 2098 0.400000 +1745 2126 0.400000 +1745 2142 0.400000 +1745 2156 0.400000 +1745 2293 0.400000 +1745 2333 0.400000 +1745 2342 0.400000 +1745 2441 0.400000 +1745 2505 0.400000 +1745 2568 0.400000 +1745 2593 0.400000 +1745 2628 0.400000 +1745 2649 0.400000 +1745 2667 0.400000 +1745 2684 0.400000 +1745 2778 0.400000 +1745 2957 0.400000 +1745 2981 0.400000 +1745 3044 0.400000 +1745 3046 0.400000 +1745 3053 0.400000 +1745 3081 0.400000 +1745 3086 0.400000 +1746 2 0.400000 +1746 71 0.400000 +1746 151 0.400000 +1746 169 0.400000 +1746 228 0.400000 +1746 339 0.400000 +1746 340 0.400000 +1746 352 0.400000 +1746 360 0.400000 +1746 385 0.400000 +1746 426 0.400000 +1746 440 0.400000 +1746 482 0.400000 +1746 514 0.400000 +1746 583 0.400000 +1746 646 0.400000 +1746 651 0.400000 +1746 698 0.400000 +1746 742 0.400000 +1746 750 0.400000 +1746 774 0.400000 +1746 780 0.400000 +1746 941 0.400000 +1746 999 0.400000 +1746 1138 0.400000 +1746 1234 0.400000 +1746 1252 0.400000 +1746 1265 0.400000 +1746 1272 0.400000 +1746 1275 0.400000 +1746 1334 0.400000 +1746 1366 0.400000 +1746 1459 0.400000 +1746 1488 0.400000 +1746 1568 0.400000 +1746 1647 0.400000 +1746 1682 0.400000 +1746 1758 0.400000 +1746 1798 0.400000 +1746 1866 0.400000 +1746 1875 0.400000 +1746 1986 0.400000 +1746 1987 0.400000 +1746 2076 0.400000 +1746 2085 0.400000 +1746 2086 0.400000 +1746 2141 0.400000 +1746 2183 0.400000 +1746 2264 0.400000 +1746 2286 0.400000 +1746 2483 0.400000 +1746 2508 0.400000 +1746 2603 0.400000 +1746 2692 0.400000 +1746 2706 0.400000 +1746 2721 0.400000 +1746 2766 0.400000 +1746 2794 0.400000 +1746 2808 0.400000 +1746 2848 0.400000 +1746 2855 0.400000 +1746 2916 0.400000 +1746 3022 0.400000 +1746 3029 0.400000 +1746 3058 0.400000 +1746 3072 0.400000 +1746 3095 0.400000 +1746 3184 0.400000 +1747 11 0.400000 +1747 116 0.400000 +1747 145 0.400000 +1747 186 0.400000 +1747 270 0.400000 +1747 404 0.400000 +1747 460 0.400000 +1747 511 0.400000 +1747 517 0.400000 +1747 628 0.400000 +1747 663 0.400000 +1747 667 0.400000 +1747 771 0.400000 +1747 945 0.400000 +1747 1026 0.400000 +1747 1069 0.400000 +1747 1124 0.400000 +1747 1156 0.400000 +1747 1186 0.400000 +1747 1199 0.400000 +1747 1235 0.400000 +1747 1238 0.400000 +1747 1239 0.400000 +1747 1259 0.400000 +1747 1331 0.400000 +1747 1388 0.400000 +1747 1390 0.400000 +1747 1443 0.400000 +1747 1460 0.400000 +1747 1512 0.400000 +1747 1526 0.400000 +1747 1590 0.400000 +1747 1708 0.400000 +1747 1802 0.400000 +1747 1833 0.400000 +1747 1868 0.400000 +1747 1898 0.400000 +1747 1921 0.400000 +1747 1930 0.400000 +1747 2036 0.400000 +1747 2152 0.400000 +1747 2170 0.400000 +1747 2174 0.400000 +1747 2197 0.400000 +1747 2290 0.400000 +1747 2354 0.400000 +1747 2384 0.400000 +1747 2455 0.400000 +1747 2486 0.400000 +1747 2494 0.400000 +1747 2503 0.400000 +1747 2626 0.400000 +1747 2700 0.400000 +1747 2710 0.400000 +1747 2753 0.400000 +1747 2772 0.400000 +1747 2969 0.400000 +1747 3007 0.400000 +1747 3046 0.400000 +1747 3081 0.400000 +1747 3121 0.400000 +1747 3143 0.400000 +1747 3159 0.400000 +1747 3184 0.400000 +1748 33 0.400000 +1748 99 0.400000 +1748 251 0.400000 +1748 442 0.400000 +1748 471 0.400000 +1748 497 0.400000 +1748 610 0.400000 +1748 627 0.400000 +1748 732 0.400000 +1748 768 0.400000 +1748 779 0.400000 +1748 792 0.400000 +1748 927 0.400000 +1748 983 0.400000 +1748 994 0.400000 +1748 999 0.400000 +1748 1128 0.400000 +1748 1132 0.400000 +1748 1162 0.400000 +1748 1196 0.400000 +1748 1218 0.400000 +1748 1296 0.400000 +1748 1386 0.400000 +1748 1439 0.400000 +1748 1535 0.400000 +1748 1672 0.400000 +1748 1679 0.400000 +1748 1711 0.400000 +1748 1720 0.400000 +1748 1728 0.400000 +1748 1802 0.400000 +1748 1930 0.400000 +1748 1961 0.400000 +1748 1975 0.400000 +1748 2037 0.400000 +1748 2042 0.400000 +1748 2341 0.400000 +1748 2390 0.400000 +1748 2423 0.400000 +1748 2450 0.400000 +1748 2559 0.400000 +1748 2651 0.400000 +1748 2672 0.400000 +1748 2749 0.400000 +1748 2765 0.400000 +1748 2776 0.400000 +1748 2816 0.400000 +1748 3121 0.400000 +1748 3180 0.400000 +1748 3182 0.400000 +1748 3188 0.400000 +1749 97 0.400000 +1749 201 0.400000 +1749 203 0.400000 +1749 253 0.400000 +1749 305 0.400000 +1749 400 0.400000 +1749 455 0.400000 +1749 460 0.400000 +1749 465 0.400000 +1749 533 0.400000 +1749 581 0.400000 +1749 606 0.400000 +1749 641 0.400000 +1749 654 0.400000 +1749 674 0.400000 +1749 732 0.400000 +1749 765 0.400000 +1749 797 0.400000 +1749 804 0.400000 +1749 863 0.400000 +1749 893 0.400000 +1749 904 0.400000 +1749 927 0.400000 +1749 1096 0.400000 +1749 1148 0.400000 +1749 1193 0.400000 +1749 1239 0.400000 +1749 1257 0.400000 +1749 1330 0.400000 +1749 1474 0.400000 +1749 1483 0.400000 +1749 1512 0.400000 +1749 1524 0.400000 +1749 1600 0.400000 +1749 1646 0.400000 +1749 1660 0.400000 +1749 1878 0.400000 +1749 1971 0.400000 +1749 1989 0.400000 +1749 2030 0.400000 +1749 2032 0.400000 +1749 2102 0.400000 +1749 2143 0.400000 +1749 2163 0.400000 +1749 2201 0.400000 +1749 2258 0.400000 +1749 2275 0.400000 +1749 2311 0.400000 +1749 2430 0.400000 +1749 2551 0.400000 +1749 2724 0.400000 +1749 2911 0.400000 +1749 2920 0.400000 +1749 2929 0.400000 +1749 3077 0.400000 +1749 3124 0.400000 +1749 3151 0.400000 +1749 3156 0.400000 +1750 54 0.400000 +1750 64 0.400000 +1750 150 0.400000 +1750 189 0.400000 +1750 215 0.400000 +1750 269 0.400000 +1750 296 0.400000 +1750 380 0.400000 +1750 433 0.400000 +1750 530 0.400000 +1750 656 0.400000 +1750 701 0.400000 +1750 721 0.400000 +1750 770 0.400000 +1750 776 0.400000 +1750 783 0.400000 +1750 784 0.400000 +1750 815 0.400000 +1750 819 0.400000 +1750 849 0.400000 +1750 895 0.400000 +1750 908 0.400000 +1750 948 0.400000 +1750 951 0.400000 +1750 981 0.400000 +1750 1003 0.400000 +1750 1005 0.400000 +1750 1006 0.400000 +1750 1090 0.400000 +1750 1148 0.400000 +1750 1161 0.400000 +1750 1314 0.400000 +1750 1322 0.400000 +1750 1334 0.400000 +1750 1341 0.400000 +1750 1345 0.400000 +1750 1351 0.400000 +1750 1419 0.400000 +1750 1427 0.400000 +1750 1527 0.400000 +1750 1544 0.400000 +1750 1618 0.400000 +1750 1691 0.400000 +1750 1714 0.400000 +1750 1740 0.400000 +1750 1837 0.400000 +1750 1884 0.400000 +1750 1889 0.400000 +1750 1898 0.400000 +1750 1944 0.400000 +1750 2027 0.400000 +1750 2081 0.400000 +1750 2244 0.400000 +1750 2332 0.400000 +1750 2362 0.400000 +1750 2392 0.400000 +1750 2407 0.400000 +1750 2468 0.400000 +1750 2488 0.400000 +1750 2498 0.400000 +1750 2558 0.400000 +1750 2586 0.400000 +1750 2609 0.400000 +1750 2736 0.400000 +1750 2772 0.400000 +1750 2837 0.400000 +1750 3002 0.400000 +1750 3016 0.400000 +1750 3023 0.400000 +1750 3083 0.400000 +1750 3136 0.400000 +1750 3144 0.400000 +1750 3173 0.400000 +1751 11 0.400000 +1751 15 0.400000 +1751 87 0.400000 +1751 126 0.400000 +1751 237 0.400000 +1751 295 0.400000 +1751 493 0.400000 +1751 628 0.400000 +1751 717 0.400000 +1751 733 0.400000 +1751 742 0.400000 +1751 759 0.400000 +1751 793 0.400000 +1751 794 0.400000 +1751 857 0.400000 +1751 885 0.400000 +1751 890 0.400000 +1751 916 0.400000 +1751 922 0.400000 +1751 951 0.400000 +1751 953 0.400000 +1751 996 0.400000 +1751 1040 0.400000 +1751 1147 0.400000 +1751 1178 0.400000 +1751 1256 0.400000 +1751 1379 0.400000 +1751 1440 0.400000 +1751 1448 0.400000 +1751 1449 0.400000 +1751 1474 0.400000 +1751 1481 0.400000 +1751 1511 0.400000 +1751 1534 0.400000 +1751 1541 0.400000 +1751 1612 0.400000 +1751 1663 0.400000 +1751 1671 0.400000 +1751 1745 0.400000 +1751 1788 0.400000 +1751 1790 0.400000 +1751 1893 0.400000 +1751 1948 0.400000 +1751 1986 0.400000 +1751 2043 0.400000 +1751 2176 0.400000 +1751 2183 0.400000 +1751 2185 0.400000 +1751 2360 0.400000 +1751 2479 0.400000 +1751 2654 0.400000 +1751 2661 0.400000 +1751 2747 0.400000 +1751 2842 0.400000 +1751 2849 0.400000 +1751 2863 0.400000 +1751 2873 0.400000 +1751 2902 0.400000 +1751 2942 0.400000 +1751 3035 0.400000 +1752 44 0.400000 +1752 74 0.400000 +1752 117 0.400000 +1752 360 0.400000 +1752 380 0.400000 +1752 406 0.400000 +1752 486 0.400000 +1752 564 0.400000 +1752 592 0.400000 +1752 610 0.400000 +1752 699 0.400000 +1752 703 0.400000 +1752 757 0.400000 +1752 894 0.400000 +1752 933 0.400000 +1752 942 0.400000 +1752 957 0.400000 +1752 965 0.400000 +1752 996 0.400000 +1752 1089 0.400000 +1752 1130 0.400000 +1752 1231 0.400000 +1752 1283 0.400000 +1752 1295 0.400000 +1752 1332 0.400000 +1752 1438 0.400000 +1752 1440 0.400000 +1752 1640 0.400000 +1752 1689 0.400000 +1752 1698 0.400000 +1752 1710 0.400000 +1752 1719 0.400000 +1752 1728 0.400000 +1752 1745 0.400000 +1752 1757 0.400000 +1752 1782 0.400000 +1752 1857 0.400000 +1752 1939 0.400000 +1752 1954 0.400000 +1752 2087 0.400000 +1752 2118 0.400000 +1752 2188 0.400000 +1752 2217 0.400000 +1752 2254 0.400000 +1752 2312 0.400000 +1752 2502 0.400000 +1752 2535 0.400000 +1752 2571 0.400000 +1752 2600 0.400000 +1752 2684 0.400000 +1752 2705 0.400000 +1752 2800 0.400000 +1752 2876 0.400000 +1752 2961 0.400000 +1752 2988 0.400000 +1752 2990 0.400000 +1752 3015 0.400000 +1752 3055 0.400000 +1752 3097 0.400000 +1752 3120 0.400000 +1752 3139 0.400000 +1753 20 0.400000 +1753 64 0.400000 +1753 101 0.400000 +1753 102 0.400000 +1753 225 0.400000 +1753 331 0.400000 +1753 349 0.400000 +1753 361 0.400000 +1753 367 0.400000 +1753 415 0.400000 +1753 460 0.400000 +1753 479 0.400000 +1753 513 0.400000 +1753 535 0.400000 +1753 591 0.400000 +1753 628 0.400000 +1753 661 0.400000 +1753 749 0.400000 +1753 792 0.400000 +1753 842 0.400000 +1753 981 0.400000 +1753 990 0.400000 +1753 1041 0.400000 +1753 1051 0.400000 +1753 1098 0.400000 +1753 1167 0.400000 +1753 1173 0.400000 +1753 1187 0.400000 +1753 1193 0.400000 +1753 1234 0.400000 +1753 1259 0.400000 +1753 1336 0.400000 +1753 1348 0.400000 +1753 1404 0.400000 +1753 1405 0.400000 +1753 1479 0.400000 +1753 1539 0.400000 +1753 1583 0.400000 +1753 1636 0.400000 +1753 1694 0.400000 +1753 1729 0.400000 +1753 1840 0.400000 +1753 1873 0.400000 +1753 1889 0.400000 +1753 1954 0.400000 +1753 2065 0.400000 +1753 2069 0.400000 +1753 2096 0.400000 +1753 2101 0.400000 +1753 2144 0.400000 +1753 2158 0.400000 +1753 2252 0.400000 +1753 2339 0.400000 +1753 2364 0.400000 +1753 2374 0.400000 +1753 2390 0.400000 +1753 2543 0.400000 +1753 2593 0.400000 +1753 2657 0.400000 +1753 2757 0.400000 +1753 2791 0.400000 +1753 2803 0.400000 +1753 3032 0.400000 +1753 3107 0.400000 +1753 3136 0.400000 +1753 3169 0.400000 +1753 3187 0.400000 +1754 2 0.400000 +1754 42 0.400000 +1754 85 0.400000 +1754 86 0.400000 +1754 92 0.400000 +1754 97 0.400000 +1754 206 0.400000 +1754 331 0.400000 +1754 431 0.400000 +1754 527 0.400000 +1754 550 0.400000 +1754 558 0.400000 +1754 559 0.400000 +1754 669 0.400000 +1754 748 0.400000 +1754 872 0.400000 +1754 892 0.400000 +1754 904 0.400000 +1754 916 0.400000 +1754 961 0.400000 +1754 965 0.400000 +1754 979 0.400000 +1754 1099 0.400000 +1754 1178 0.400000 +1754 1209 0.400000 +1754 1264 0.400000 +1754 1285 0.400000 +1754 1296 0.400000 +1754 1312 0.400000 +1754 1426 0.400000 +1754 1461 0.400000 +1754 1548 0.400000 +1754 1680 0.400000 +1754 1718 0.400000 +1754 1771 0.400000 +1754 1775 0.400000 +1754 1816 0.400000 +1754 1880 0.400000 +1754 1925 0.400000 +1754 1967 0.400000 +1754 1969 0.400000 +1754 2013 0.400000 +1754 2026 0.400000 +1754 2041 0.400000 +1754 2044 0.400000 +1754 2214 0.400000 +1754 2220 0.400000 +1754 2234 0.400000 +1754 2280 0.400000 +1754 2379 0.400000 +1754 2491 0.400000 +1754 2502 0.400000 +1754 2543 0.400000 +1754 2620 0.400000 +1754 2649 0.400000 +1754 2652 0.400000 +1754 2714 0.400000 +1754 2716 0.400000 +1754 2747 0.400000 +1754 2837 0.400000 +1754 2870 0.400000 +1754 2961 0.400000 +1754 2971 0.400000 +1754 3094 0.400000 +1754 3129 0.400000 +1754 3133 0.400000 +1754 3141 0.400000 +1754 3154 0.400000 +1755 144 0.400000 +1755 174 0.400000 +1755 182 0.400000 +1755 203 0.400000 +1755 216 0.400000 +1755 260 0.400000 +1755 335 0.400000 +1755 346 0.400000 +1755 393 0.400000 +1755 407 0.400000 +1755 445 0.400000 +1755 480 0.400000 +1755 514 0.400000 +1755 671 0.400000 +1755 712 0.400000 +1755 785 0.400000 +1755 806 0.400000 +1755 876 0.400000 +1755 910 0.400000 +1755 919 0.400000 +1755 943 0.400000 +1755 954 0.400000 +1755 1022 0.400000 +1755 1059 0.400000 +1755 1112 0.400000 +1755 1142 0.400000 +1755 1143 0.400000 +1755 1226 0.400000 +1755 1257 0.400000 +1755 1264 0.400000 +1755 1283 0.400000 +1755 1326 0.400000 +1755 1374 0.400000 +1755 1466 0.400000 +1755 1483 0.400000 +1755 1506 0.400000 +1755 1514 0.400000 +1755 1543 0.400000 +1755 1548 0.400000 +1755 1563 0.400000 +1755 1589 0.400000 +1755 1592 0.400000 +1755 1602 0.400000 +1755 1613 0.400000 +1755 1652 0.400000 +1755 1709 0.400000 +1755 1829 0.400000 +1755 1940 0.400000 +1755 2113 0.400000 +1755 2153 0.400000 +1755 2162 0.400000 +1755 2206 0.400000 +1755 2282 0.400000 +1755 2311 0.400000 +1755 2332 0.400000 +1755 2413 0.400000 +1755 2466 0.400000 +1755 2472 0.400000 +1755 2480 0.400000 +1755 2482 0.400000 +1755 2536 0.400000 +1755 2612 0.400000 +1755 2625 0.400000 +1755 2630 0.400000 +1755 2749 0.400000 +1755 2826 0.400000 +1755 2888 0.400000 +1755 3021 0.400000 +1755 3057 0.400000 +1755 3092 0.400000 +1755 3117 0.400000 +1756 3 0.400000 +1756 26 0.400000 +1756 28 0.400000 +1756 193 0.400000 +1756 243 0.400000 +1756 261 0.400000 +1756 349 0.400000 +1756 366 0.400000 +1756 447 0.400000 +1756 472 0.400000 +1756 545 0.400000 +1756 583 0.400000 +1756 617 0.400000 +1756 684 0.400000 +1756 720 0.400000 +1756 775 0.400000 +1756 792 0.400000 +1756 853 0.400000 +1756 987 0.400000 +1756 1007 0.400000 +1756 1042 0.400000 +1756 1059 0.400000 +1756 1143 0.400000 +1756 1291 0.400000 +1756 1345 0.400000 +1756 1369 0.400000 +1756 1399 0.400000 +1756 1451 0.400000 +1756 1513 0.400000 +1756 1562 0.400000 +1756 1567 0.400000 +1756 1585 0.400000 +1756 1797 0.400000 +1756 1806 0.400000 +1756 1915 0.400000 +1756 1965 0.400000 +1756 2019 0.400000 +1756 2028 0.400000 +1756 2037 0.400000 +1756 2160 0.400000 +1756 2208 0.400000 +1756 2213 0.400000 +1756 2278 0.400000 +1756 2342 0.400000 +1756 2480 0.400000 +1756 2559 0.400000 +1756 2596 0.400000 +1756 2606 0.400000 +1756 2630 0.400000 +1756 2642 0.400000 +1756 2644 0.400000 +1756 2749 0.400000 +1756 2793 0.400000 +1756 3101 0.400000 +1756 3102 0.400000 +1756 3167 0.400000 +1756 3186 0.400000 +1757 28 0.400000 +1757 45 0.400000 +1757 104 0.400000 +1757 130 0.400000 +1757 135 0.400000 +1757 144 0.400000 +1757 158 0.400000 +1757 200 0.400000 +1757 221 0.400000 +1757 287 0.400000 +1757 311 0.400000 +1757 342 0.400000 +1757 369 0.400000 +1757 474 0.400000 +1757 682 0.400000 +1757 689 0.400000 +1757 697 0.400000 +1757 961 0.400000 +1757 990 0.400000 +1757 1038 0.400000 +1757 1264 0.400000 +1757 1448 0.400000 +1757 1473 0.400000 +1757 1579 0.400000 +1757 1585 0.400000 +1757 1615 0.400000 +1757 1662 0.400000 +1757 1772 0.400000 +1757 1916 0.400000 +1757 1923 0.400000 +1757 1981 0.400000 +1757 2025 0.400000 +1757 2028 0.400000 +1757 2064 0.400000 +1757 2075 0.400000 +1757 2097 0.400000 +1757 2218 0.400000 +1757 2299 0.400000 +1757 2305 0.400000 +1757 2348 0.400000 +1757 2498 0.400000 +1757 2516 0.400000 +1757 2580 0.400000 +1757 2679 0.400000 +1757 2716 0.400000 +1757 2742 0.400000 +1757 2748 0.400000 +1757 2749 0.400000 +1757 2780 0.400000 +1757 2794 0.400000 +1757 2835 0.400000 +1757 2862 0.400000 +1757 2877 0.400000 +1757 2901 0.400000 +1757 2946 0.400000 +1757 2977 0.400000 +1757 2986 0.400000 +1757 2989 0.400000 +1757 3069 0.400000 +1757 3124 0.400000 +1758 26 0.400000 +1758 39 0.400000 +1758 68 0.400000 +1758 86 0.400000 +1758 193 0.400000 +1758 266 0.400000 +1758 296 0.400000 +1758 365 0.400000 +1758 422 0.400000 +1758 445 0.400000 +1758 550 0.400000 +1758 591 0.400000 +1758 597 0.400000 +1758 615 0.400000 +1758 666 0.400000 +1758 669 0.400000 +1758 689 0.400000 +1758 833 0.400000 +1758 854 0.400000 +1758 883 0.400000 +1758 895 0.400000 +1758 981 0.400000 +1758 1058 0.400000 +1758 1172 0.400000 +1758 1264 0.400000 +1758 1268 0.400000 +1758 1312 0.400000 +1758 1318 0.400000 +1758 1365 0.400000 +1758 1452 0.400000 +1758 1483 0.400000 +1758 1592 0.400000 +1758 1608 0.400000 +1758 1683 0.400000 +1758 1704 0.400000 +1758 1748 0.400000 +1758 1779 0.400000 +1758 1811 0.400000 +1758 1832 0.400000 +1758 1834 0.400000 +1758 1852 0.400000 +1758 1905 0.400000 +1758 1936 0.400000 +1758 1947 0.400000 +1758 1966 0.400000 +1758 2021 0.400000 +1758 2073 0.400000 +1758 2101 0.400000 +1758 2103 0.400000 +1758 2321 0.400000 +1758 2325 0.400000 +1758 2328 0.400000 +1758 2369 0.400000 +1758 2374 0.400000 +1758 2428 0.400000 +1758 2476 0.400000 +1758 2506 0.400000 +1758 2513 0.400000 +1758 2515 0.400000 +1758 2541 0.400000 +1758 2673 0.400000 +1758 2767 0.400000 +1758 2791 0.400000 +1758 2840 0.400000 +1758 2867 0.400000 +1758 2884 0.400000 +1758 3035 0.400000 +1758 3192 0.400000 +1758 3196 0.400000 +1758 3199 0.400000 +1759 9 0.400000 +1759 59 0.400000 +1759 66 0.400000 +1759 86 0.400000 +1759 97 0.400000 +1759 122 0.400000 +1759 191 0.400000 +1759 217 0.400000 +1759 236 0.400000 +1759 260 0.400000 +1759 527 0.400000 +1759 562 0.400000 +1759 610 0.400000 +1759 700 0.400000 +1759 704 0.400000 +1759 718 0.400000 +1759 762 0.400000 +1759 788 0.400000 +1759 819 0.400000 +1759 858 0.400000 +1759 1056 0.400000 +1759 1091 0.400000 +1759 1126 0.400000 +1759 1155 0.400000 +1759 1177 0.400000 +1759 1280 0.400000 +1759 1319 0.400000 +1759 1433 0.400000 +1759 1575 0.400000 +1759 1578 0.400000 +1759 1615 0.400000 +1759 1659 0.400000 +1759 1678 0.400000 +1759 1691 0.400000 +1759 1695 0.400000 +1759 1738 0.400000 +1759 1739 0.400000 +1759 1811 0.400000 +1759 1841 0.400000 +1759 1849 0.400000 +1759 1909 0.400000 +1759 2030 0.400000 +1759 2063 0.400000 +1759 2143 0.400000 +1759 2149 0.400000 +1759 2166 0.400000 +1759 2172 0.400000 +1759 2245 0.400000 +1759 2262 0.400000 +1759 2266 0.400000 +1759 2268 0.400000 +1759 2291 0.400000 +1759 2351 0.400000 +1759 2376 0.400000 +1759 2456 0.400000 +1759 2528 0.400000 +1759 2611 0.400000 +1759 2626 0.400000 +1759 2638 0.400000 +1759 2665 0.400000 +1759 2807 0.400000 +1759 2910 0.400000 +1759 2943 0.400000 +1759 2994 0.400000 +1759 3000 0.400000 +1759 3040 0.400000 +1759 3112 0.400000 +1760 43 0.400000 +1760 89 0.400000 +1760 121 0.400000 +1760 184 0.400000 +1760 192 0.400000 +1760 263 0.400000 +1760 349 0.400000 +1760 367 0.400000 +1760 372 0.400000 +1760 548 0.400000 +1760 670 0.400000 +1760 709 0.400000 +1760 733 0.400000 +1760 738 0.400000 +1760 925 0.400000 +1760 1093 0.400000 +1760 1097 0.400000 +1760 1098 0.400000 +1760 1110 0.400000 +1760 1155 0.400000 +1760 1186 0.400000 +1760 1361 0.400000 +1760 1405 0.400000 +1760 1427 0.400000 +1760 1489 0.400000 +1760 1498 0.400000 +1760 1508 0.400000 +1760 1522 0.400000 +1760 1538 0.400000 +1760 1577 0.400000 +1760 1591 0.400000 +1760 1596 0.400000 +1760 1655 0.400000 +1760 1734 0.400000 +1760 1750 0.400000 +1760 1778 0.400000 +1760 1841 0.400000 +1760 1931 0.400000 +1760 1960 0.400000 +1760 2009 0.400000 +1760 2012 0.400000 +1760 2050 0.400000 +1760 2107 0.400000 +1760 2170 0.400000 +1760 2208 0.400000 +1760 2260 0.400000 +1760 2270 0.400000 +1760 2309 0.400000 +1760 2480 0.400000 +1760 2484 0.400000 +1760 2489 0.400000 +1760 2511 0.400000 +1760 2560 0.400000 +1760 2578 0.400000 +1760 2589 0.400000 +1760 2622 0.400000 +1760 2650 0.400000 +1760 2673 0.400000 +1760 2674 0.400000 +1760 2719 0.400000 +1760 2875 0.400000 +1760 2894 0.400000 +1760 3088 0.400000 +1760 3126 0.400000 +1760 3191 0.400000 +1761 20 0.400000 +1761 44 0.400000 +1761 77 0.400000 +1761 102 0.400000 +1761 108 0.400000 +1761 144 0.400000 +1761 160 0.400000 +1761 258 0.400000 +1761 265 0.400000 +1761 415 0.400000 +1761 576 0.400000 +1761 697 0.400000 +1761 767 0.400000 +1761 802 0.400000 +1761 848 0.400000 +1761 870 0.400000 +1761 960 0.400000 +1761 1130 0.400000 +1761 1141 0.400000 +1761 1168 0.400000 +1761 1253 0.400000 +1761 1296 0.400000 +1761 1322 0.400000 +1761 1338 0.400000 +1761 1348 0.400000 +1761 1352 0.400000 +1761 1353 0.400000 +1761 1488 0.400000 +1761 1582 0.400000 +1761 1638 0.400000 +1761 1682 0.400000 +1761 1733 0.400000 +1761 1760 0.400000 +1761 1770 0.400000 +1761 1854 0.400000 +1761 1880 0.400000 +1761 1922 0.400000 +1761 1931 0.400000 +1761 1948 0.400000 +1761 1950 0.400000 +1761 1970 0.400000 +1761 2010 0.400000 +1761 2039 0.400000 +1761 2046 0.400000 +1761 2084 0.400000 +1761 2109 0.400000 +1761 2149 0.400000 +1761 2157 0.400000 +1761 2202 0.400000 +1761 2208 0.400000 +1761 2251 0.400000 +1761 2259 0.400000 +1761 2266 0.400000 +1761 2366 0.400000 +1761 2384 0.400000 +1761 2397 0.400000 +1761 2472 0.400000 +1761 2478 0.400000 +1761 2559 0.400000 +1761 2643 0.400000 +1761 2697 0.400000 +1761 2712 0.400000 +1761 2756 0.400000 +1761 2777 0.400000 +1761 2828 0.400000 +1761 2867 0.400000 +1761 2952 0.400000 +1761 3011 0.400000 +1761 3030 0.400000 +1761 3121 0.400000 +1761 3138 0.400000 +1761 3166 0.400000 +1761 3178 0.400000 +1762 9 0.400000 +1762 112 0.400000 +1762 167 0.400000 +1762 285 0.400000 +1762 323 0.400000 +1762 324 0.400000 +1762 381 0.400000 +1762 425 0.400000 +1762 426 0.400000 +1762 447 0.400000 +1762 498 0.400000 +1762 755 0.400000 +1762 764 0.400000 +1762 781 0.400000 +1762 846 0.400000 +1762 859 0.400000 +1762 895 0.400000 +1762 954 0.400000 +1762 998 0.400000 +1762 1008 0.400000 +1762 1077 0.400000 +1762 1096 0.400000 +1762 1125 0.400000 +1762 1136 0.400000 +1762 1171 0.400000 +1762 1236 0.400000 +1762 1277 0.400000 +1762 1313 0.400000 +1762 1557 0.400000 +1762 1569 0.400000 +1762 1657 0.400000 +1762 1709 0.400000 +1762 1732 0.400000 +1762 1750 0.400000 +1762 1817 0.400000 +1762 1915 0.400000 +1762 2011 0.400000 +1762 2087 0.400000 +1762 2166 0.400000 +1762 2175 0.400000 +1762 2184 0.400000 +1762 2199 0.400000 +1762 2200 0.400000 +1762 2217 0.400000 +1762 2235 0.400000 +1762 2298 0.400000 +1762 2493 0.400000 +1762 2517 0.400000 +1762 2650 0.400000 +1762 2751 0.400000 +1762 2794 0.400000 +1762 2844 0.400000 +1762 2881 0.400000 +1762 3059 0.400000 +1762 3108 0.400000 +1762 3161 0.400000 +1762 3189 0.400000 +1762 3191 0.400000 +1763 70 0.400000 +1763 105 0.400000 +1763 109 0.400000 +1763 135 0.400000 +1763 155 0.400000 +1763 159 0.400000 +1763 253 0.400000 +1763 260 0.400000 +1763 280 0.400000 +1763 297 0.400000 +1763 311 0.400000 +1763 373 0.400000 +1763 478 0.400000 +1763 495 0.400000 +1763 562 0.400000 +1763 579 0.400000 +1763 600 0.400000 +1763 605 0.400000 +1763 625 0.400000 +1763 701 0.400000 +1763 702 0.400000 +1763 706 0.400000 +1763 713 0.400000 +1763 734 0.400000 +1763 806 0.400000 +1763 852 0.400000 +1763 898 0.400000 +1763 938 0.400000 +1763 1007 0.400000 +1763 1038 0.400000 +1763 1051 0.400000 +1763 1097 0.400000 +1763 1108 0.400000 +1763 1209 0.400000 +1763 1249 0.400000 +1763 1301 0.400000 +1763 1475 0.400000 +1763 1481 0.400000 +1763 1556 0.400000 +1763 1568 0.400000 +1763 1614 0.400000 +1763 1628 0.400000 +1763 1664 0.400000 +1763 1720 0.400000 +1763 1759 0.400000 +1763 1769 0.400000 +1763 1887 0.400000 +1763 1957 0.400000 +1763 2087 0.400000 +1763 2172 0.400000 +1763 2219 0.400000 +1763 2276 0.400000 +1763 2301 0.400000 +1763 2396 0.400000 +1763 2447 0.400000 +1763 2477 0.400000 +1763 2543 0.400000 +1763 2555 0.400000 +1763 2564 0.400000 +1763 2588 0.400000 +1763 2597 0.400000 +1763 2691 0.400000 +1763 2735 0.400000 +1763 2819 0.400000 +1763 2829 0.400000 +1763 2960 0.400000 +1763 2983 0.400000 +1763 2992 0.400000 +1763 3052 0.400000 +1763 3104 0.400000 +1763 3119 0.400000 +1763 3176 0.400000 +1763 3186 0.400000 +1763 3193 0.400000 +1764 85 0.400000 +1764 124 0.400000 +1764 234 0.400000 +1764 238 0.400000 +1764 312 0.400000 +1764 362 0.400000 +1764 415 0.400000 +1764 579 0.400000 +1764 620 0.400000 +1764 656 0.400000 +1764 714 0.400000 +1764 750 0.400000 +1764 892 0.400000 +1764 944 0.400000 +1764 957 0.400000 +1764 958 0.400000 +1764 1130 0.400000 +1764 1333 0.400000 +1764 1388 0.400000 +1764 1462 0.400000 +1764 1598 0.400000 +1764 1683 0.400000 +1764 1723 0.400000 +1764 1764 0.400000 +1764 1797 0.400000 +1764 1800 0.400000 +1764 1847 0.400000 +1764 1856 0.400000 +1764 1940 0.400000 +1764 1961 0.400000 +1764 2067 0.400000 +1764 2145 0.400000 +1764 2162 0.400000 +1764 2166 0.400000 +1764 2220 0.400000 +1764 2238 0.400000 +1764 2277 0.400000 +1764 2356 0.400000 +1764 2418 0.400000 +1764 2487 0.400000 +1764 2490 0.400000 +1764 2523 0.400000 +1764 2566 0.400000 +1764 2614 0.400000 +1764 2774 0.400000 +1764 2794 0.400000 +1764 2837 0.400000 +1764 2872 0.400000 +1764 2908 0.400000 +1764 2963 0.400000 +1764 2969 0.400000 +1764 2990 0.400000 +1764 3030 0.400000 +1764 3062 0.400000 +1764 3086 0.400000 +1765 27 0.400000 +1765 145 0.400000 +1765 159 0.400000 +1765 215 0.400000 +1765 226 0.400000 +1765 268 0.400000 +1765 325 0.400000 +1765 388 0.400000 +1765 389 0.400000 +1765 476 0.400000 +1765 529 0.400000 +1765 538 0.400000 +1765 542 0.400000 +1765 624 0.400000 +1765 669 0.400000 +1765 674 0.400000 +1765 725 0.400000 +1765 733 0.400000 +1765 761 0.400000 +1765 836 0.400000 +1765 881 0.400000 +1765 905 0.400000 +1765 942 0.400000 +1765 951 0.400000 +1765 977 0.400000 +1765 1137 0.400000 +1765 1151 0.400000 +1765 1218 0.400000 +1765 1266 0.400000 +1765 1630 0.400000 +1765 1709 0.400000 +1765 1713 0.400000 +1765 1849 0.400000 +1765 1942 0.400000 +1765 2008 0.400000 +1765 2027 0.400000 +1765 2033 0.400000 +1765 2131 0.400000 +1765 2205 0.400000 +1765 2284 0.400000 +1765 2306 0.400000 +1765 2345 0.400000 +1765 2352 0.400000 +1765 2444 0.400000 +1765 2502 0.400000 +1765 2644 0.400000 +1765 2660 0.400000 +1765 2681 0.400000 +1765 2694 0.400000 +1765 2719 0.400000 +1765 2729 0.400000 +1765 2739 0.400000 +1765 2825 0.400000 +1765 2827 0.400000 +1765 2829 0.400000 +1765 3102 0.400000 +1765 3106 0.400000 +1765 3147 0.400000 +1765 3167 0.400000 +1765 3177 0.400000 +1766 170 0.400000 +1766 296 0.400000 +1766 309 0.400000 +1766 317 0.400000 +1766 333 0.400000 +1766 392 0.400000 +1766 407 0.400000 +1766 500 0.400000 +1766 553 0.400000 +1766 693 0.400000 +1766 695 0.400000 +1766 719 0.400000 +1766 844 0.400000 +1766 854 0.400000 +1766 884 0.400000 +1766 898 0.400000 +1766 901 0.400000 +1766 1073 0.400000 +1766 1096 0.400000 +1766 1127 0.400000 +1766 1162 0.400000 +1766 1187 0.400000 +1766 1206 0.400000 +1766 1215 0.400000 +1766 1267 0.400000 +1766 1292 0.400000 +1766 1449 0.400000 +1766 1461 0.400000 +1766 1499 0.400000 +1766 1575 0.400000 +1766 1653 0.400000 +1766 1679 0.400000 +1766 1725 0.400000 +1766 1748 0.400000 +1766 1808 0.400000 +1766 1884 0.400000 +1766 1940 0.400000 +1766 1962 0.400000 +1766 2192 0.400000 +1766 2201 0.400000 +1766 2295 0.400000 +1766 2336 0.400000 +1766 2344 0.400000 +1766 2364 0.400000 +1766 2372 0.400000 +1766 2473 0.400000 +1766 2539 0.400000 +1766 2626 0.400000 +1766 2644 0.400000 +1766 2671 0.400000 +1766 2719 0.400000 +1766 2902 0.400000 +1766 2925 0.400000 +1766 3039 0.400000 +1766 3051 0.400000 +1766 3081 0.400000 +1766 3097 0.400000 +1766 3098 0.400000 +1766 3161 0.400000 +1767 208 0.400000 +1767 497 0.400000 +1767 508 0.400000 +1767 518 0.400000 +1767 533 0.400000 +1767 693 0.400000 +1767 716 0.400000 +1767 728 0.400000 +1767 810 0.400000 +1767 840 0.400000 +1767 844 0.400000 +1767 939 0.400000 +1767 960 0.400000 +1767 990 0.400000 +1767 1033 0.400000 +1767 1090 0.400000 +1767 1148 0.400000 +1767 1167 0.400000 +1767 1405 0.400000 +1767 1456 0.400000 +1767 1607 0.400000 +1767 1628 0.400000 +1767 1771 0.400000 +1767 1776 0.400000 +1767 1777 0.400000 +1767 1823 0.400000 +1767 1946 0.400000 +1767 1984 0.400000 +1767 2160 0.400000 +1767 2236 0.400000 +1767 2306 0.400000 +1767 2409 0.400000 +1767 2453 0.400000 +1767 2576 0.400000 +1767 2607 0.400000 +1767 2654 0.400000 +1767 2664 0.400000 +1767 2685 0.400000 +1767 2722 0.400000 +1767 2768 0.400000 +1767 2786 0.400000 +1767 2980 0.400000 +1767 3039 0.400000 +1767 3072 0.400000 +1767 3083 0.400000 +1767 3141 0.400000 +1767 3146 0.400000 +1768 90 0.400000 +1768 230 0.400000 +1768 248 0.400000 +1768 282 0.400000 +1768 573 0.400000 +1768 602 0.400000 +1768 696 0.400000 +1768 707 0.400000 +1768 824 0.400000 +1768 834 0.400000 +1768 838 0.400000 +1768 841 0.400000 +1768 907 0.400000 +1768 1008 0.400000 +1768 1128 0.400000 +1768 1132 0.400000 +1768 1145 0.400000 +1768 1186 0.400000 +1768 1256 0.400000 +1768 1340 0.400000 +1768 1345 0.400000 +1768 1370 0.400000 +1768 1415 0.400000 +1768 1468 0.400000 +1768 1485 0.400000 +1768 1504 0.400000 +1768 1578 0.400000 +1768 1597 0.400000 +1768 1634 0.400000 +1768 1642 0.400000 +1768 1683 0.400000 +1768 1705 0.400000 +1768 1764 0.400000 +1768 1767 0.400000 +1768 1914 0.400000 +1768 1989 0.400000 +1768 2045 0.400000 +1768 2191 0.400000 +1768 2233 0.400000 +1768 2395 0.400000 +1768 2433 0.400000 +1768 2559 0.400000 +1768 2569 0.400000 +1768 2604 0.400000 +1768 2637 0.400000 +1768 2712 0.400000 +1768 2817 0.400000 +1768 2861 0.400000 +1768 2863 0.400000 +1768 2885 0.400000 +1768 2964 0.400000 +1768 2991 0.400000 +1768 3131 0.400000 +1768 3157 0.400000 +1768 3161 0.400000 +1768 3196 0.400000 +1768 3199 0.400000 +1769 45 0.400000 +1769 77 0.400000 +1769 100 0.400000 +1769 274 0.400000 +1769 302 0.400000 +1769 349 0.400000 +1769 355 0.400000 +1769 392 0.400000 +1769 398 0.400000 +1769 464 0.400000 +1769 521 0.400000 +1769 642 0.400000 +1769 797 0.400000 +1769 810 0.400000 +1769 864 0.400000 +1769 890 0.400000 +1769 891 0.400000 +1769 1057 0.400000 +1769 1062 0.400000 +1769 1071 0.400000 +1769 1114 0.400000 +1769 1137 0.400000 +1769 1190 0.400000 +1769 1196 0.400000 +1769 1218 0.400000 +1769 1245 0.400000 +1769 1256 0.400000 +1769 1285 0.400000 +1769 1330 0.400000 +1769 1355 0.400000 +1769 1560 0.400000 +1769 1581 0.400000 +1769 1612 0.400000 +1769 1620 0.400000 +1769 1685 0.400000 +1769 1725 0.400000 +1769 1760 0.400000 +1769 1819 0.400000 +1769 2099 0.400000 +1769 2129 0.400000 +1769 2142 0.400000 +1769 2158 0.400000 +1769 2218 0.400000 +1769 2269 0.400000 +1769 2270 0.400000 +1769 2290 0.400000 +1769 2304 0.400000 +1769 2317 0.400000 +1769 2324 0.400000 +1769 2336 0.400000 +1769 2367 0.400000 +1769 2444 0.400000 +1769 2499 0.400000 +1769 2515 0.400000 +1769 2534 0.400000 +1769 2670 0.400000 +1769 2741 0.400000 +1769 2795 0.400000 +1769 2803 0.400000 +1769 2904 0.400000 +1769 2918 0.400000 +1769 2998 0.400000 +1769 3006 0.400000 +1769 3011 0.400000 +1769 3013 0.400000 +1769 3059 0.400000 +1769 3082 0.400000 +1769 3099 0.400000 +1769 3102 0.400000 +1769 3154 0.400000 +1769 3194 0.400000 +1770 132 0.400000 +1770 192 0.400000 +1770 244 0.400000 +1770 298 0.400000 +1770 308 0.400000 +1770 423 0.400000 +1770 538 0.400000 +1770 555 0.400000 +1770 571 0.400000 +1770 683 0.400000 +1770 692 0.400000 +1770 865 0.400000 +1770 899 0.400000 +1770 908 0.400000 +1770 974 0.400000 +1770 1108 0.400000 +1770 1118 0.400000 +1770 1145 0.400000 +1770 1192 0.400000 +1770 1268 0.400000 +1770 1269 0.400000 +1770 1324 0.400000 +1770 1330 0.400000 +1770 1382 0.400000 +1770 1435 0.400000 +1770 1647 0.400000 +1770 1688 0.400000 +1770 1720 0.400000 +1770 1768 0.400000 +1770 1795 0.400000 +1770 1854 0.400000 +1770 1904 0.400000 +1770 2121 0.400000 +1770 2166 0.400000 +1770 2223 0.400000 +1770 2245 0.400000 +1770 2252 0.400000 +1770 2342 0.400000 +1770 2392 0.400000 +1770 2413 0.400000 +1770 2432 0.400000 +1770 2518 0.400000 +1770 2522 0.400000 +1770 2592 0.400000 +1770 2593 0.400000 +1770 2619 0.400000 +1770 2687 0.400000 +1770 2699 0.400000 +1770 2846 0.400000 +1770 2860 0.400000 +1770 2883 0.400000 +1771 25 0.400000 +1771 50 0.400000 +1771 137 0.400000 +1771 158 0.400000 +1771 195 0.400000 +1771 281 0.400000 +1771 335 0.400000 +1771 450 0.400000 +1771 521 0.400000 +1771 557 0.400000 +1771 663 0.400000 +1771 883 0.400000 +1771 918 0.400000 +1771 952 0.400000 +1771 964 0.400000 +1771 978 0.400000 +1771 983 0.400000 +1771 993 0.400000 +1771 1023 0.400000 +1771 1084 0.400000 +1771 1108 0.400000 +1771 1129 0.400000 +1771 1279 0.400000 +1771 1286 0.400000 +1771 1296 0.400000 +1771 1301 0.400000 +1771 1527 0.400000 +1771 1555 0.400000 +1771 1574 0.400000 +1771 1626 0.400000 +1771 1666 0.400000 +1771 1726 0.400000 +1771 1753 0.400000 +1771 1758 0.400000 +1771 1969 0.400000 +1771 2058 0.400000 +1771 2077 0.400000 +1771 2088 0.400000 +1771 2185 0.400000 +1771 2192 0.400000 +1771 2227 0.400000 +1771 2265 0.400000 +1771 2285 0.400000 +1771 2477 0.400000 +1771 2478 0.400000 +1771 2504 0.400000 +1771 2506 0.400000 +1771 2692 0.400000 +1771 2732 0.400000 +1771 2733 0.400000 +1771 2741 0.400000 +1771 2746 0.400000 +1771 2747 0.400000 +1771 2789 0.400000 +1771 2832 0.400000 +1771 2877 0.400000 +1771 2885 0.400000 +1771 2917 0.400000 +1771 2982 0.400000 +1771 3057 0.400000 +1771 3127 0.400000 +1771 3197 0.400000 +1772 7 0.400000 +1772 32 0.400000 +1772 54 0.400000 +1772 133 0.400000 +1772 180 0.400000 +1772 230 0.400000 +1772 242 0.400000 +1772 251 0.400000 +1772 253 0.400000 +1772 311 0.400000 +1772 341 0.400000 +1772 362 0.400000 +1772 405 0.400000 +1772 456 0.400000 +1772 479 0.400000 +1772 556 0.400000 +1772 641 0.400000 +1772 724 0.400000 +1772 767 0.400000 +1772 772 0.400000 +1772 950 0.400000 +1772 1021 0.400000 +1772 1032 0.400000 +1772 1047 0.400000 +1772 1090 0.400000 +1772 1208 0.400000 +1772 1241 0.400000 +1772 1272 0.400000 +1772 1360 0.400000 +1772 1402 0.400000 +1772 1436 0.400000 +1772 1473 0.400000 +1772 1490 0.400000 +1772 1500 0.400000 +1772 1532 0.400000 +1772 1586 0.400000 +1772 1682 0.400000 +1772 1790 0.400000 +1772 1820 0.400000 +1772 1823 0.400000 +1772 1942 0.400000 +1772 1978 0.400000 +1772 1990 0.400000 +1772 2006 0.400000 +1772 2009 0.400000 +1772 2017 0.400000 +1772 2106 0.400000 +1772 2124 0.400000 +1772 2184 0.400000 +1772 2236 0.400000 +1772 2279 0.400000 +1772 2301 0.400000 +1772 2302 0.400000 +1772 2613 0.400000 +1772 2640 0.400000 +1772 2654 0.400000 +1772 2661 0.400000 +1772 2671 0.400000 +1772 2795 0.400000 +1772 2813 0.400000 +1772 2849 0.400000 +1772 2915 0.400000 +1772 3052 0.400000 +1772 3055 0.400000 +1772 3057 0.400000 +1772 3176 0.400000 +1772 3189 0.400000 +1772 3195 0.400000 +1773 233 0.400000 +1773 290 0.400000 +1773 315 0.400000 +1773 474 0.400000 +1773 519 0.400000 +1773 535 0.400000 +1773 536 0.400000 +1773 543 0.400000 +1773 733 0.400000 +1773 801 0.400000 +1773 927 0.400000 +1773 936 0.400000 +1773 953 0.400000 +1773 973 0.400000 +1773 1053 0.400000 +1773 1065 0.400000 +1773 1067 0.400000 +1773 1130 0.400000 +1773 1131 0.400000 +1773 1188 0.400000 +1773 1212 0.400000 +1773 1257 0.400000 +1773 1438 0.400000 +1773 1467 0.400000 +1773 1560 0.400000 +1773 1590 0.400000 +1773 1626 0.400000 +1773 1710 0.400000 +1773 1731 0.400000 +1773 1748 0.400000 +1773 1796 0.400000 +1773 1835 0.400000 +1773 1952 0.400000 +1773 1982 0.400000 +1773 2179 0.400000 +1773 2252 0.400000 +1773 2270 0.400000 +1773 2386 0.400000 +1773 2488 0.400000 +1773 2545 0.400000 +1773 2583 0.400000 +1773 2639 0.400000 +1773 2702 0.400000 +1773 2721 0.400000 +1773 2796 0.400000 +1773 2816 0.400000 +1773 2884 0.400000 +1773 2938 0.400000 +1773 2987 0.400000 +1773 3027 0.400000 +1773 3151 0.400000 +1774 30 0.400000 +1774 35 0.400000 +1774 59 0.400000 +1774 175 0.400000 +1774 263 0.400000 +1774 273 0.400000 +1774 279 0.400000 +1774 497 0.400000 +1774 549 0.400000 +1774 591 0.400000 +1774 639 0.400000 +1774 649 0.400000 +1774 654 0.400000 +1774 658 0.400000 +1774 701 0.400000 +1774 770 0.400000 +1774 782 0.400000 +1774 892 0.400000 +1774 948 0.400000 +1774 982 0.400000 +1774 1017 0.400000 +1774 1051 0.400000 +1774 1069 0.400000 +1774 1092 0.400000 +1774 1132 0.400000 +1774 1355 0.400000 +1774 1458 0.400000 +1774 1498 0.400000 +1774 1527 0.400000 +1774 1582 0.400000 +1774 1642 0.400000 +1774 1757 0.400000 +1774 1776 0.400000 +1774 1785 0.400000 +1774 1900 0.400000 +1774 2296 0.400000 +1774 2349 0.400000 +1774 2388 0.400000 +1774 2437 0.400000 +1774 2473 0.400000 +1774 2622 0.400000 +1774 2746 0.400000 +1774 2763 0.400000 +1774 2851 0.400000 +1774 2904 0.400000 +1774 2944 0.400000 +1774 2989 0.400000 +1774 3036 0.400000 +1774 3079 0.400000 +1774 3108 0.400000 +1774 3117 0.400000 +1775 47 0.400000 +1775 136 0.400000 +1775 197 0.400000 +1775 208 0.400000 +1775 246 0.400000 +1775 285 0.400000 +1775 347 0.400000 +1775 353 0.400000 +1775 363 0.400000 +1775 393 0.400000 +1775 395 0.400000 +1775 549 0.400000 +1775 597 0.400000 +1775 641 0.400000 +1775 691 0.400000 +1775 699 0.400000 +1775 839 0.400000 +1775 1002 0.400000 +1775 1041 0.400000 +1775 1254 0.400000 +1775 1276 0.400000 +1775 1303 0.400000 +1775 1332 0.400000 +1775 1398 0.400000 +1775 1447 0.400000 +1775 1532 0.400000 +1775 1561 0.400000 +1775 1584 0.400000 +1775 1618 0.400000 +1775 1670 0.400000 +1775 1685 0.400000 +1775 1723 0.400000 +1775 1737 0.400000 +1775 1777 0.400000 +1775 1838 0.400000 +1775 1880 0.400000 +1775 1979 0.400000 +1775 1988 0.400000 +1775 2071 0.400000 +1775 2082 0.400000 +1775 2111 0.400000 +1775 2144 0.400000 +1775 2200 0.400000 +1775 2247 0.400000 +1775 2318 0.400000 +1775 2334 0.400000 +1775 2353 0.400000 +1775 2358 0.400000 +1775 2442 0.400000 +1775 2463 0.400000 +1775 2469 0.400000 +1775 2492 0.400000 +1775 2573 0.400000 +1775 2587 0.400000 +1775 2654 0.400000 +1775 2838 0.400000 +1775 2932 0.400000 +1775 2958 0.400000 +1775 2959 0.400000 +1775 3109 0.400000 +1775 3144 0.400000 +1776 13 0.400000 +1776 22 0.400000 +1776 113 0.400000 +1776 170 0.400000 +1776 187 0.400000 +1776 208 0.400000 +1776 221 0.400000 +1776 232 0.400000 +1776 244 0.400000 +1776 295 0.400000 +1776 306 0.400000 +1776 318 0.400000 +1776 330 0.400000 +1776 339 0.400000 +1776 357 0.400000 +1776 458 0.400000 +1776 541 0.400000 +1776 559 0.400000 +1776 591 0.400000 +1776 621 0.400000 +1776 672 0.400000 +1776 680 0.400000 +1776 790 0.400000 +1776 848 0.400000 +1776 956 0.400000 +1776 1063 0.400000 +1776 1082 0.400000 +1776 1179 0.400000 +1776 1211 0.400000 +1776 1381 0.400000 +1776 1477 0.400000 +1776 1485 0.400000 +1776 1508 0.400000 +1776 1527 0.400000 +1776 1550 0.400000 +1776 1568 0.400000 +1776 1587 0.400000 +1776 1721 0.400000 +1776 1785 0.400000 +1776 1836 0.400000 +1776 1877 0.400000 +1776 1891 0.400000 +1776 2180 0.400000 +1776 2213 0.400000 +1776 2227 0.400000 +1776 2239 0.400000 +1776 2311 0.400000 +1776 2338 0.400000 +1776 2341 0.400000 +1776 2345 0.400000 +1776 2391 0.400000 +1776 2402 0.400000 +1776 2482 0.400000 +1776 2588 0.400000 +1776 2632 0.400000 +1776 2690 0.400000 +1776 2829 0.400000 +1776 2852 0.400000 +1776 2854 0.400000 +1776 2857 0.400000 +1776 2907 0.400000 +1776 2914 0.400000 +1776 2953 0.400000 +1776 2972 0.400000 +1776 2980 0.400000 +1776 3004 0.400000 +1776 3051 0.400000 +1776 3054 0.400000 +1776 3079 0.400000 +1776 3117 0.400000 +1776 3120 0.400000 +1776 3161 0.400000 +1776 3167 0.400000 +1777 9 0.400000 +1777 25 0.400000 +1777 31 0.400000 +1777 40 0.400000 +1777 68 0.400000 +1777 73 0.400000 +1777 97 0.400000 +1777 119 0.400000 +1777 244 0.400000 +1777 268 0.400000 +1777 314 0.400000 +1777 439 0.400000 +1777 721 0.400000 +1777 761 0.400000 +1777 770 0.400000 +1777 863 0.400000 +1777 868 0.400000 +1777 939 0.400000 +1777 989 0.400000 +1777 1149 0.400000 +1777 1154 0.400000 +1777 1183 0.400000 +1777 1190 0.400000 +1777 1199 0.400000 +1777 1282 0.400000 +1777 1312 0.400000 +1777 1338 0.400000 +1777 1420 0.400000 +1777 1549 0.400000 +1777 1552 0.400000 +1777 1563 0.400000 +1777 1797 0.400000 +1777 1800 0.400000 +1777 1805 0.400000 +1777 1822 0.400000 +1777 1834 0.400000 +1777 1931 0.400000 +1777 1939 0.400000 +1777 2022 0.400000 +1777 2113 0.400000 +1777 2197 0.400000 +1777 2211 0.400000 +1777 2212 0.400000 +1777 2223 0.400000 +1777 2302 0.400000 +1777 2358 0.400000 +1777 2390 0.400000 +1777 2404 0.400000 +1777 2423 0.400000 +1777 2532 0.400000 +1777 2635 0.400000 +1777 2674 0.400000 +1777 2737 0.400000 +1777 2752 0.400000 +1777 2755 0.400000 +1777 2853 0.400000 +1777 2909 0.400000 +1777 2942 0.400000 +1777 2961 0.400000 +1777 3076 0.400000 +1777 3175 0.400000 +1778 47 0.400000 +1778 50 0.400000 +1778 160 0.400000 +1778 216 0.400000 +1778 313 0.400000 +1778 382 0.400000 +1778 417 0.400000 +1778 419 0.400000 +1778 523 0.400000 +1778 545 0.400000 +1778 567 0.400000 +1778 606 0.400000 +1778 631 0.400000 +1778 701 0.400000 +1778 800 0.400000 +1778 806 0.400000 +1778 833 0.400000 +1778 834 0.400000 +1778 968 0.400000 +1778 975 0.400000 +1778 1125 0.400000 +1778 1127 0.400000 +1778 1250 0.400000 +1778 1261 0.400000 +1778 1314 0.400000 +1778 1318 0.400000 +1778 1423 0.400000 +1778 1508 0.400000 +1778 1520 0.400000 +1778 1571 0.400000 +1778 1582 0.400000 +1778 1628 0.400000 +1778 1774 0.400000 +1778 1807 0.400000 +1778 1880 0.400000 +1778 1894 0.400000 +1778 2049 0.400000 +1778 2074 0.400000 +1778 2127 0.400000 +1778 2136 0.400000 +1778 2343 0.400000 +1778 2458 0.400000 +1778 2465 0.400000 +1778 2588 0.400000 +1778 2590 0.400000 +1778 2651 0.400000 +1778 2680 0.400000 +1778 2690 0.400000 +1778 2731 0.400000 +1778 2781 0.400000 +1778 2794 0.400000 +1778 2940 0.400000 +1778 2973 0.400000 +1778 2975 0.400000 +1778 3167 0.400000 +1778 3168 0.400000 +1779 46 0.400000 +1779 98 0.400000 +1779 168 0.400000 +1779 176 0.400000 +1779 211 0.400000 +1779 264 0.400000 +1779 308 0.400000 +1779 347 0.400000 +1779 461 0.400000 +1779 507 0.400000 +1779 634 0.400000 +1779 653 0.400000 +1779 677 0.400000 +1779 683 0.400000 +1779 718 0.400000 +1779 721 0.400000 +1779 724 0.400000 +1779 797 0.400000 +1779 808 0.400000 +1779 831 0.400000 +1779 851 0.400000 +1779 888 0.400000 +1779 905 0.400000 +1779 917 0.400000 +1779 922 0.400000 +1779 923 0.400000 +1779 1024 0.400000 +1779 1044 0.400000 +1779 1246 0.400000 +1779 1292 0.400000 +1779 1349 0.400000 +1779 1417 0.400000 +1779 1422 0.400000 +1779 1445 0.400000 +1779 1466 0.400000 +1779 1497 0.400000 +1779 1562 0.400000 +1779 1599 0.400000 +1779 1651 0.400000 +1779 1788 0.400000 +1779 1825 0.400000 +1779 1943 0.400000 +1779 2010 0.400000 +1779 2024 0.400000 +1779 2053 0.400000 +1779 2163 0.400000 +1779 2301 0.400000 +1779 2358 0.400000 +1779 2385 0.400000 +1779 2415 0.400000 +1779 2436 0.400000 +1779 2472 0.400000 +1779 2505 0.400000 +1779 2557 0.400000 +1779 2587 0.400000 +1779 2603 0.400000 +1779 2606 0.400000 +1779 2655 0.400000 +1779 2749 0.400000 +1779 2842 0.400000 +1779 2912 0.400000 +1779 2919 0.400000 +1779 2975 0.400000 +1779 2986 0.400000 +1779 3016 0.400000 +1779 3025 0.400000 +1779 3084 0.400000 +1779 3124 0.400000 +1779 3184 0.400000 +1780 168 0.400000 +1780 238 0.400000 +1780 296 0.400000 +1780 385 0.400000 +1780 401 0.400000 +1780 436 0.400000 +1780 540 0.400000 +1780 577 0.400000 +1780 803 0.400000 +1780 841 0.400000 +1780 859 0.400000 +1780 876 0.400000 +1780 886 0.400000 +1780 925 0.400000 +1780 946 0.400000 +1780 957 0.400000 +1780 1106 0.400000 +1780 1109 0.400000 +1780 1138 0.400000 +1780 1285 0.400000 +1780 1379 0.400000 +1780 1400 0.400000 +1780 1506 0.400000 +1780 1587 0.400000 +1780 1592 0.400000 +1780 1643 0.400000 +1780 1673 0.400000 +1780 1707 0.400000 +1780 1848 0.400000 +1780 1856 0.400000 +1780 1994 0.400000 +1780 2011 0.400000 +1780 2049 0.400000 +1780 2122 0.400000 +1780 2169 0.400000 +1780 2193 0.400000 +1780 2320 0.400000 +1780 2413 0.400000 +1780 2462 0.400000 +1780 2581 0.400000 +1780 2728 0.400000 +1780 2814 0.400000 +1780 2874 0.400000 +1780 2900 0.400000 +1780 2976 0.400000 +1780 3014 0.400000 +1780 3039 0.400000 +1780 3189 0.400000 +1781 32 0.400000 +1781 74 0.400000 +1781 94 0.400000 +1781 215 0.400000 +1781 253 0.400000 +1781 289 0.400000 +1781 291 0.400000 +1781 430 0.400000 +1781 441 0.400000 +1781 464 0.400000 +1781 473 0.400000 +1781 637 0.400000 +1781 647 0.400000 +1781 654 0.400000 +1781 689 0.400000 +1781 709 0.400000 +1781 791 0.400000 +1781 936 0.400000 +1781 971 0.400000 +1781 990 0.400000 +1781 992 0.400000 +1781 997 0.400000 +1781 1059 0.400000 +1781 1114 0.400000 +1781 1133 0.400000 +1781 1188 0.400000 +1781 1197 0.400000 +1781 1205 0.400000 +1781 1249 0.400000 +1781 1326 0.400000 +1781 1340 0.400000 +1781 1386 0.400000 +1781 1421 0.400000 +1781 1443 0.400000 +1781 1453 0.400000 +1781 1492 0.400000 +1781 1607 0.400000 +1781 1640 0.400000 +1781 1802 0.400000 +1781 1815 0.400000 +1781 1832 0.400000 +1781 1834 0.400000 +1781 1961 0.400000 +1781 2009 0.400000 +1781 2057 0.400000 +1781 2088 0.400000 +1781 2104 0.400000 +1781 2176 0.400000 +1781 2261 0.400000 +1781 2296 0.400000 +1781 2333 0.400000 +1781 2379 0.400000 +1781 2397 0.400000 +1781 2440 0.400000 +1781 2503 0.400000 +1781 2533 0.400000 +1781 2702 0.400000 +1781 2716 0.400000 +1781 2759 0.400000 +1781 2815 0.400000 +1781 2874 0.400000 +1781 2938 0.400000 +1781 2949 0.400000 +1781 2971 0.400000 +1781 2972 0.400000 +1781 2998 0.400000 +1781 3099 0.400000 +1781 3133 0.400000 +1781 3199 0.400000 +1782 21 0.400000 +1782 57 0.400000 +1782 64 0.400000 +1782 289 0.400000 +1782 477 0.400000 +1782 504 0.400000 +1782 511 0.400000 +1782 542 0.400000 +1782 562 0.400000 +1782 593 0.400000 +1782 629 0.400000 +1782 682 0.400000 +1782 993 0.400000 +1782 1020 0.400000 +1782 1061 0.400000 +1782 1082 0.400000 +1782 1095 0.400000 +1782 1154 0.400000 +1782 1280 0.400000 +1782 1307 0.400000 +1782 1308 0.400000 +1782 1386 0.400000 +1782 1508 0.400000 +1782 1650 0.400000 +1782 1653 0.400000 +1782 1731 0.400000 +1782 2059 0.400000 +1782 2103 0.400000 +1782 2200 0.400000 +1782 2260 0.400000 +1782 2372 0.400000 +1782 2457 0.400000 +1782 2462 0.400000 +1782 2481 0.400000 +1782 2554 0.400000 +1782 2556 0.400000 +1782 2592 0.400000 +1782 2599 0.400000 +1782 2609 0.400000 +1782 2641 0.400000 +1782 2719 0.400000 +1782 2729 0.400000 +1782 2780 0.400000 +1782 2783 0.400000 +1782 2827 0.400000 +1782 2913 0.400000 +1782 2937 0.400000 +1782 2974 0.400000 +1782 2990 0.400000 +1782 3010 0.400000 +1782 3051 0.400000 +1782 3107 0.400000 +1782 3168 0.400000 +1782 3171 0.400000 +1782 3185 0.400000 +1782 3186 0.400000 +1783 8 0.400000 +1783 72 0.400000 +1783 103 0.400000 +1783 127 0.400000 +1783 140 0.400000 +1783 154 0.400000 +1783 188 0.400000 +1783 221 0.400000 +1783 225 0.400000 +1783 226 0.400000 +1783 280 0.400000 +1783 290 0.400000 +1783 361 0.400000 +1783 367 0.400000 +1783 408 0.400000 +1783 553 0.400000 +1783 582 0.400000 +1783 719 0.400000 +1783 872 0.400000 +1783 891 0.400000 +1783 906 0.400000 +1783 1096 0.400000 +1783 1138 0.400000 +1783 1175 0.400000 +1783 1235 0.400000 +1783 1311 0.400000 +1783 1322 0.400000 +1783 1354 0.400000 +1783 1361 0.400000 +1783 1382 0.400000 +1783 1398 0.400000 +1783 1455 0.400000 +1783 1491 0.400000 +1783 1505 0.400000 +1783 1533 0.400000 +1783 1632 0.400000 +1783 1667 0.400000 +1783 1701 0.400000 +1783 1829 0.400000 +1783 1840 0.400000 +1783 1863 0.400000 +1783 1949 0.400000 +1783 2000 0.400000 +1783 2122 0.400000 +1783 2194 0.400000 +1783 2244 0.400000 +1783 2256 0.400000 +1783 2265 0.400000 +1783 2296 0.400000 +1783 2345 0.400000 +1783 2352 0.400000 +1783 2443 0.400000 +1783 2544 0.400000 +1783 2694 0.400000 +1783 2702 0.400000 +1783 2710 0.400000 +1783 2725 0.400000 +1783 2773 0.400000 +1783 2843 0.400000 +1783 2883 0.400000 +1783 2888 0.400000 +1783 2948 0.400000 +1783 3098 0.400000 +1784 16 0.400000 +1784 22 0.400000 +1784 32 0.400000 +1784 43 0.400000 +1784 60 0.400000 +1784 68 0.400000 +1784 82 0.400000 +1784 85 0.400000 +1784 94 0.400000 +1784 183 0.400000 +1784 243 0.400000 +1784 264 0.400000 +1784 325 0.400000 +1784 377 0.400000 +1784 427 0.400000 +1784 444 0.400000 +1784 446 0.400000 +1784 504 0.400000 +1784 567 0.400000 +1784 633 0.400000 +1784 730 0.400000 +1784 818 0.400000 +1784 827 0.400000 +1784 844 0.400000 +1784 849 0.400000 +1784 867 0.400000 +1784 900 0.400000 +1784 1011 0.400000 +1784 1012 0.400000 +1784 1211 0.400000 +1784 1216 0.400000 +1784 1224 0.400000 +1784 1228 0.400000 +1784 1294 0.400000 +1784 1312 0.400000 +1784 1327 0.400000 +1784 1371 0.400000 +1784 1401 0.400000 +1784 1540 0.400000 +1784 1638 0.400000 +1784 1648 0.400000 +1784 1659 0.400000 +1784 1668 0.400000 +1784 1689 0.400000 +1784 1856 0.400000 +1784 1900 0.400000 +1784 1913 0.400000 +1784 1922 0.400000 +1784 1941 0.400000 +1784 1949 0.400000 +1784 1994 0.400000 +1784 2044 0.400000 +1784 2133 0.400000 +1784 2157 0.400000 +1784 2297 0.400000 +1784 2299 0.400000 +1784 2370 0.400000 +1784 2375 0.400000 +1784 2378 0.400000 +1784 2445 0.400000 +1784 2459 0.400000 +1784 2467 0.400000 +1784 2473 0.400000 +1784 2475 0.400000 +1784 2524 0.400000 +1784 2579 0.400000 +1784 2597 0.400000 +1784 2633 0.400000 +1784 2641 0.400000 +1784 2826 0.400000 +1784 2890 0.400000 +1784 2891 0.400000 +1784 2899 0.400000 +1784 3024 0.400000 +1784 3050 0.400000 +1784 3075 0.400000 +1784 3183 0.400000 +1785 58 0.400000 +1785 108 0.400000 +1785 133 0.400000 +1785 206 0.400000 +1785 224 0.400000 +1785 239 0.400000 +1785 403 0.400000 +1785 418 0.400000 +1785 462 0.400000 +1785 470 0.400000 +1785 554 0.400000 +1785 611 0.400000 +1785 669 0.400000 +1785 879 0.400000 +1785 934 0.400000 +1785 946 0.400000 +1785 1005 0.400000 +1785 1010 0.400000 +1785 1073 0.400000 +1785 1133 0.400000 +1785 1140 0.400000 +1785 1148 0.400000 +1785 1183 0.400000 +1785 1203 0.400000 +1785 1218 0.400000 +1785 1229 0.400000 +1785 1255 0.400000 +1785 1263 0.400000 +1785 1322 0.400000 +1785 1353 0.400000 +1785 1367 0.400000 +1785 1534 0.400000 +1785 1566 0.400000 +1785 1581 0.400000 +1785 1586 0.400000 +1785 1590 0.400000 +1785 1627 0.400000 +1785 1662 0.400000 +1785 1783 0.400000 +1785 1852 0.400000 +1785 1870 0.400000 +1785 1871 0.400000 +1785 1974 0.400000 +1785 2089 0.400000 +1785 2099 0.400000 +1785 2122 0.400000 +1785 2143 0.400000 +1785 2212 0.400000 +1785 2240 0.400000 +1785 2276 0.400000 +1785 2530 0.400000 +1785 2547 0.400000 +1785 2564 0.400000 +1785 2617 0.400000 +1785 2696 0.400000 +1785 2755 0.400000 +1785 2846 0.400000 +1785 2850 0.400000 +1785 2907 0.400000 +1785 2909 0.400000 +1785 2923 0.400000 +1785 2960 0.400000 +1785 2991 0.400000 +1785 3055 0.400000 +1785 3079 0.400000 +1785 3099 0.400000 +1785 3168 0.400000 +1785 3174 0.400000 +1786 68 0.400000 +1786 83 0.400000 +1786 204 0.400000 +1786 281 0.400000 +1786 297 0.400000 +1786 300 0.400000 +1786 491 0.400000 +1786 550 0.400000 +1786 630 0.400000 +1786 682 0.400000 +1786 778 0.400000 +1786 858 0.400000 +1786 873 0.400000 +1786 1009 0.400000 +1786 1064 0.400000 +1786 1083 0.400000 +1786 1259 0.400000 +1786 1267 0.400000 +1786 1396 0.400000 +1786 1433 0.400000 +1786 1453 0.400000 +1786 1473 0.400000 +1786 1504 0.400000 +1786 1551 0.400000 +1786 1661 0.400000 +1786 1676 0.400000 +1786 1680 0.400000 +1786 1686 0.400000 +1786 1712 0.400000 +1786 1838 0.400000 +1786 1875 0.400000 +1786 1888 0.400000 +1786 1922 0.400000 +1786 1942 0.400000 +1786 1956 0.400000 +1786 1965 0.400000 +1786 1970 0.400000 +1786 2009 0.400000 +1786 2141 0.400000 +1786 2147 0.400000 +1786 2156 0.400000 +1786 2159 0.400000 +1786 2262 0.400000 +1786 2291 0.400000 +1786 2354 0.400000 +1786 2367 0.400000 +1786 2382 0.400000 +1786 2420 0.400000 +1786 2452 0.400000 +1786 2499 0.400000 +1786 2510 0.400000 +1786 2573 0.400000 +1786 2587 0.400000 +1786 2611 0.400000 +1786 2757 0.400000 +1786 2769 0.400000 +1786 2809 0.400000 +1786 2855 0.400000 +1786 2978 0.400000 +1786 3010 0.400000 +1786 3098 0.400000 +1786 3189 0.400000 +1787 105 0.400000 +1787 126 0.400000 +1787 181 0.400000 +1787 205 0.400000 +1787 303 0.400000 +1787 309 0.400000 +1787 379 0.400000 +1787 511 0.400000 +1787 587 0.400000 +1787 591 0.400000 +1787 608 0.400000 +1787 629 0.400000 +1787 709 0.400000 +1787 838 0.400000 +1787 916 0.400000 +1787 951 0.400000 +1787 985 0.400000 +1787 1000 0.400000 +1787 1001 0.400000 +1787 1002 0.400000 +1787 1305 0.400000 +1787 1332 0.400000 +1787 1355 0.400000 +1787 1468 0.400000 +1787 1650 0.400000 +1787 1660 0.400000 +1787 1697 0.400000 +1787 1758 0.400000 +1787 1959 0.400000 +1787 1987 0.400000 +1787 2018 0.400000 +1787 2088 0.400000 +1787 2108 0.400000 +1787 2144 0.400000 +1787 2223 0.400000 +1787 2254 0.400000 +1787 2260 0.400000 +1787 2277 0.400000 +1787 2458 0.400000 +1787 2480 0.400000 +1787 2527 0.400000 +1787 2603 0.400000 +1787 2655 0.400000 +1787 2697 0.400000 +1787 2705 0.400000 +1787 2764 0.400000 +1787 2785 0.400000 +1787 2911 0.400000 +1787 2947 0.400000 +1787 2965 0.400000 +1787 2972 0.400000 +1787 2991 0.400000 +1787 3023 0.400000 +1787 3054 0.400000 +1787 3078 0.400000 +1787 3108 0.400000 +1788 77 0.400000 +1788 94 0.400000 +1788 100 0.400000 +1788 234 0.400000 +1788 236 0.400000 +1788 268 0.400000 +1788 303 0.400000 +1788 315 0.400000 +1788 320 0.400000 +1788 350 0.400000 +1788 353 0.400000 +1788 361 0.400000 +1788 407 0.400000 +1788 431 0.400000 +1788 450 0.400000 +1788 541 0.400000 +1788 559 0.400000 +1788 577 0.400000 +1788 607 0.400000 +1788 621 0.400000 +1788 659 0.400000 +1788 686 0.400000 +1788 703 0.400000 +1788 773 0.400000 +1788 798 0.400000 +1788 919 0.400000 +1788 920 0.400000 +1788 970 0.400000 +1788 1007 0.400000 +1788 1117 0.400000 +1788 1122 0.400000 +1788 1144 0.400000 +1788 1198 0.400000 +1788 1205 0.400000 +1788 1290 0.400000 +1788 1308 0.400000 +1788 1320 0.400000 +1788 1339 0.400000 +1788 1357 0.400000 +1788 1439 0.400000 +1788 1457 0.400000 +1788 1458 0.400000 +1788 1501 0.400000 +1788 1613 0.400000 +1788 1651 0.400000 +1788 1677 0.400000 +1788 1716 0.400000 +1788 1809 0.400000 +1788 1891 0.400000 +1788 1928 0.400000 +1788 1931 0.400000 +1788 1935 0.400000 +1788 2000 0.400000 +1788 2016 0.400000 +1788 2038 0.400000 +1788 2077 0.400000 +1788 2188 0.400000 +1788 2199 0.400000 +1788 2240 0.400000 +1788 2241 0.400000 +1788 2266 0.400000 +1788 2302 0.400000 +1788 2318 0.400000 +1788 2353 0.400000 +1788 2354 0.400000 +1788 2389 0.400000 +1788 2595 0.400000 +1788 2625 0.400000 +1788 2657 0.400000 +1788 2688 0.400000 +1788 2697 0.400000 +1788 2732 0.400000 +1788 2739 0.400000 +1788 2766 0.400000 +1788 2845 0.400000 +1788 2929 0.400000 +1788 3034 0.400000 +1788 3100 0.400000 +1788 3113 0.400000 +1788 3160 0.400000 +1788 3165 0.400000 +1788 3177 0.400000 +1789 3 0.400000 +1789 13 0.400000 +1789 30 0.400000 +1789 88 0.400000 +1789 108 0.400000 +1789 117 0.400000 +1789 153 0.400000 +1789 154 0.400000 +1789 279 0.400000 +1789 316 0.400000 +1789 341 0.400000 +1789 480 0.400000 +1789 519 0.400000 +1789 524 0.400000 +1789 729 0.400000 +1789 750 0.400000 +1789 981 0.400000 +1789 990 0.400000 +1789 997 0.400000 +1789 1012 0.400000 +1789 1049 0.400000 +1789 1063 0.400000 +1789 1117 0.400000 +1789 1128 0.400000 +1789 1167 0.400000 +1789 1221 0.400000 +1789 1277 0.400000 +1789 1312 0.400000 +1789 1330 0.400000 +1789 1344 0.400000 +1789 1353 0.400000 +1789 1412 0.400000 +1789 1525 0.400000 +1789 1718 0.400000 +1789 1724 0.400000 +1789 1761 0.400000 +1789 1767 0.400000 +1789 1861 0.400000 +1789 1905 0.400000 +1789 1910 0.400000 +1789 1946 0.400000 +1789 2002 0.400000 +1789 2010 0.400000 +1789 2079 0.400000 +1789 2127 0.400000 +1789 2143 0.400000 +1789 2247 0.400000 +1789 2252 0.400000 +1789 2264 0.400000 +1789 2284 0.400000 +1789 2294 0.400000 +1789 2426 0.400000 +1789 2429 0.400000 +1789 2562 0.400000 +1789 2583 0.400000 +1789 2587 0.400000 +1789 2649 0.400000 +1789 2664 0.400000 +1789 2713 0.400000 +1789 2847 0.400000 +1789 2980 0.400000 +1789 3087 0.400000 +1789 3122 0.400000 +1789 3151 0.400000 +1789 3197 0.400000 +1790 14 0.400000 +1790 35 0.400000 +1790 79 0.400000 +1790 84 0.400000 +1790 91 0.400000 +1790 135 0.400000 +1790 150 0.400000 +1790 157 0.400000 +1790 210 0.400000 +1790 243 0.400000 +1790 279 0.400000 +1790 404 0.400000 +1790 474 0.400000 +1790 535 0.400000 +1790 689 0.400000 +1790 699 0.400000 +1790 793 0.400000 +1790 907 0.400000 +1790 997 0.400000 +1790 999 0.400000 +1790 1050 0.400000 +1790 1066 0.400000 +1790 1076 0.400000 +1790 1083 0.400000 +1790 1108 0.400000 +1790 1180 0.400000 +1790 1211 0.400000 +1790 1272 0.400000 +1790 1292 0.400000 +1790 1331 0.400000 +1790 1333 0.400000 +1790 1384 0.400000 +1790 1423 0.400000 +1790 1449 0.400000 +1790 1476 0.400000 +1790 1519 0.400000 +1790 1528 0.400000 +1790 1541 0.400000 +1790 1580 0.400000 +1790 1618 0.400000 +1790 1662 0.400000 +1790 1675 0.400000 +1790 1710 0.400000 +1790 1722 0.400000 +1790 1765 0.400000 +1790 1862 0.400000 +1790 1897 0.400000 +1790 1950 0.400000 +1790 1966 0.400000 +1790 1971 0.400000 +1790 2069 0.400000 +1790 2081 0.400000 +1790 2111 0.400000 +1790 2123 0.400000 +1790 2139 0.400000 +1790 2140 0.400000 +1790 2185 0.400000 +1790 2194 0.400000 +1790 2231 0.400000 +1790 2302 0.400000 +1790 2386 0.400000 +1790 2413 0.400000 +1790 2445 0.400000 +1790 2527 0.400000 +1790 2577 0.400000 +1790 2588 0.400000 +1790 2637 0.400000 +1790 2663 0.400000 +1790 2667 0.400000 +1790 2749 0.400000 +1790 2774 0.400000 +1790 2837 0.400000 +1790 2885 0.400000 +1790 2973 0.400000 +1790 3005 0.400000 +1790 3057 0.400000 +1790 3058 0.400000 +1791 142 0.400000 +1791 161 0.400000 +1791 178 0.400000 +1791 251 0.400000 +1791 326 0.400000 +1791 445 0.400000 +1791 461 0.400000 +1791 633 0.400000 +1791 665 0.400000 +1791 713 0.400000 +1791 746 0.400000 +1791 775 0.400000 +1791 791 0.400000 +1791 844 0.400000 +1791 846 0.400000 +1791 911 0.400000 +1791 931 0.400000 +1791 1025 0.400000 +1791 1040 0.400000 +1791 1082 0.400000 +1791 1130 0.400000 +1791 1143 0.400000 +1791 1151 0.400000 +1791 1157 0.400000 +1791 1159 0.400000 +1791 1182 0.400000 +1791 1226 0.400000 +1791 1242 0.400000 +1791 1249 0.400000 +1791 1254 0.400000 +1791 1362 0.400000 +1791 1421 0.400000 +1791 1551 0.400000 +1791 1560 0.400000 +1791 1711 0.400000 +1791 1720 0.400000 +1791 1746 0.400000 +1791 1785 0.400000 +1791 1792 0.400000 +1791 1867 0.400000 +1791 1890 0.400000 +1791 1971 0.400000 +1791 2011 0.400000 +1791 2026 0.400000 +1791 2130 0.400000 +1791 2131 0.400000 +1791 2139 0.400000 +1791 2194 0.400000 +1791 2421 0.400000 +1791 2434 0.400000 +1791 2475 0.400000 +1791 2651 0.400000 +1791 2735 0.400000 +1791 2798 0.400000 +1791 2805 0.400000 +1791 2916 0.400000 +1791 2936 0.400000 +1791 3031 0.400000 +1791 3032 0.400000 +1791 3089 0.400000 +1791 3091 0.400000 +1791 3178 0.400000 +1792 137 0.400000 +1792 175 0.400000 +1792 202 0.400000 +1792 212 0.400000 +1792 267 0.400000 +1792 292 0.400000 +1792 317 0.400000 +1792 318 0.400000 +1792 337 0.400000 +1792 397 0.400000 +1792 411 0.400000 +1792 425 0.400000 +1792 559 0.400000 +1792 591 0.400000 +1792 649 0.400000 +1792 690 0.400000 +1792 702 0.400000 +1792 788 0.400000 +1792 831 0.400000 +1792 903 0.400000 +1792 937 0.400000 +1792 947 0.400000 +1792 966 0.400000 +1792 977 0.400000 +1792 1009 0.400000 +1792 1053 0.400000 +1792 1058 0.400000 +1792 1099 0.400000 +1792 1171 0.400000 +1792 1249 0.400000 +1792 1338 0.400000 +1792 1423 0.400000 +1792 1469 0.400000 +1792 1543 0.400000 +1792 1637 0.400000 +1792 1737 0.400000 +1792 1769 0.400000 +1792 1946 0.400000 +1792 1977 0.400000 +1792 1979 0.400000 +1792 2065 0.400000 +1792 2112 0.400000 +1792 2130 0.400000 +1792 2184 0.400000 +1792 2262 0.400000 +1792 2353 0.400000 +1792 2396 0.400000 +1792 2490 0.400000 +1792 2511 0.400000 +1792 2512 0.400000 +1792 2542 0.400000 +1792 2608 0.400000 +1792 2659 0.400000 +1792 2673 0.400000 +1792 2759 0.400000 +1792 2764 0.400000 +1792 2857 0.400000 +1792 2868 0.400000 +1792 2887 0.400000 +1792 2919 0.400000 +1792 2985 0.400000 +1792 3011 0.400000 +1792 3014 0.400000 +1792 3071 0.400000 +1792 3193 0.400000 +1793 37 0.400000 +1793 64 0.400000 +1793 162 0.400000 +1793 166 0.400000 +1793 230 0.400000 +1793 287 0.400000 +1793 291 0.400000 +1793 302 0.400000 +1793 406 0.400000 +1793 442 0.400000 +1793 452 0.400000 +1793 460 0.400000 +1793 465 0.400000 +1793 479 0.400000 +1793 523 0.400000 +1793 667 0.400000 +1793 691 0.400000 +1793 783 0.400000 +1793 867 0.400000 +1793 889 0.400000 +1793 928 0.400000 +1793 981 0.400000 +1793 1031 0.400000 +1793 1176 0.400000 +1793 1189 0.400000 +1793 1292 0.400000 +1793 1295 0.400000 +1793 1483 0.400000 +1793 1580 0.400000 +1793 1602 0.400000 +1793 1622 0.400000 +1793 1761 0.400000 +1793 1832 0.400000 +1793 1901 0.400000 +1793 1976 0.400000 +1793 1978 0.400000 +1793 2005 0.400000 +1793 2046 0.400000 +1793 2056 0.400000 +1793 2057 0.400000 +1793 2195 0.400000 +1793 2246 0.400000 +1793 2247 0.400000 +1793 2272 0.400000 +1793 2308 0.400000 +1793 2326 0.400000 +1793 2338 0.400000 +1793 2424 0.400000 +1793 2510 0.400000 +1793 2592 0.400000 +1793 2662 0.400000 +1793 2720 0.400000 +1793 2839 0.400000 +1793 2855 0.400000 +1793 2889 0.400000 +1793 2900 0.400000 +1793 2906 0.400000 +1793 3104 0.400000 +1793 3168 0.400000 +1794 36 0.400000 +1794 136 0.400000 +1794 213 0.400000 +1794 285 0.400000 +1794 310 0.400000 +1794 426 0.400000 +1794 475 0.400000 +1794 483 0.400000 +1794 547 0.400000 +1794 844 0.400000 +1794 875 0.400000 +1794 970 0.400000 +1794 1008 0.400000 +1794 1043 0.400000 +1794 1180 0.400000 +1794 1222 0.400000 +1794 1252 0.400000 +1794 1261 0.400000 +1794 1329 0.400000 +1794 1345 0.400000 +1794 1434 0.400000 +1794 1477 0.400000 +1794 1481 0.400000 +1794 1608 0.400000 +1794 1679 0.400000 +1794 1760 0.400000 +1794 1793 0.400000 +1794 1897 0.400000 +1794 1969 0.400000 +1794 2114 0.400000 +1794 2228 0.400000 +1794 2235 0.400000 +1794 2290 0.400000 +1794 2362 0.400000 +1794 2366 0.400000 +1794 2448 0.400000 +1794 2504 0.400000 +1794 2515 0.400000 +1794 2653 0.400000 +1794 2707 0.400000 +1794 2710 0.400000 +1794 2759 0.400000 +1794 2763 0.400000 +1794 2834 0.400000 +1794 2902 0.400000 +1794 2911 0.400000 +1794 2924 0.400000 +1794 2996 0.400000 +1794 3108 0.400000 +1795 8 0.400000 +1795 72 0.400000 +1795 111 0.400000 +1795 135 0.400000 +1795 166 0.400000 +1795 171 0.400000 +1795 226 0.400000 +1795 239 0.400000 +1795 245 0.400000 +1795 362 0.400000 +1795 407 0.400000 +1795 521 0.400000 +1795 580 0.400000 +1795 636 0.400000 +1795 646 0.400000 +1795 663 0.400000 +1795 677 0.400000 +1795 680 0.400000 +1795 716 0.400000 +1795 807 0.400000 +1795 845 0.400000 +1795 1025 0.400000 +1795 1034 0.400000 +1795 1052 0.400000 +1795 1073 0.400000 +1795 1083 0.400000 +1795 1108 0.400000 +1795 1187 0.400000 +1795 1235 0.400000 +1795 1278 0.400000 +1795 1332 0.400000 +1795 1424 0.400000 +1795 1500 0.400000 +1795 1523 0.400000 +1795 1524 0.400000 +1795 1525 0.400000 +1795 1545 0.400000 +1795 1579 0.400000 +1795 1592 0.400000 +1795 1611 0.400000 +1795 1662 0.400000 +1795 1689 0.400000 +1795 1755 0.400000 +1795 1832 0.400000 +1795 1855 0.400000 +1795 1969 0.400000 +1795 1979 0.400000 +1795 2018 0.400000 +1795 2042 0.400000 +1795 2074 0.400000 +1795 2105 0.400000 +1795 2142 0.400000 +1795 2148 0.400000 +1795 2207 0.400000 +1795 2273 0.400000 +1795 2293 0.400000 +1795 2311 0.400000 +1795 2320 0.400000 +1795 2358 0.400000 +1795 2385 0.400000 +1795 2409 0.400000 +1795 2449 0.400000 +1795 2541 0.400000 +1795 2552 0.400000 +1795 2557 0.400000 +1795 2635 0.400000 +1795 2674 0.400000 +1795 2712 0.400000 +1795 2747 0.400000 +1795 2762 0.400000 +1795 2768 0.400000 +1795 2775 0.400000 +1795 2883 0.400000 +1795 2913 0.400000 +1795 2953 0.400000 +1795 3038 0.400000 +1795 3063 0.400000 +1795 3124 0.400000 +1795 3171 0.400000 +1795 3172 0.400000 +1796 14 0.400000 +1796 48 0.400000 +1796 73 0.400000 +1796 127 0.400000 +1796 147 0.400000 +1796 175 0.400000 +1796 191 0.400000 +1796 259 0.400000 +1796 263 0.400000 +1796 282 0.400000 +1796 314 0.400000 +1796 387 0.400000 +1796 507 0.400000 +1796 542 0.400000 +1796 555 0.400000 +1796 630 0.400000 +1796 640 0.400000 +1796 664 0.400000 +1796 692 0.400000 +1796 746 0.400000 +1796 811 0.400000 +1796 827 0.400000 +1796 895 0.400000 +1796 916 0.400000 +1796 1021 0.400000 +1796 1029 0.400000 +1796 1086 0.400000 +1796 1143 0.400000 +1796 1170 0.400000 +1796 1359 0.400000 +1796 1380 0.400000 +1796 1441 0.400000 +1796 1457 0.400000 +1796 1568 0.400000 +1796 1613 0.400000 +1796 1652 0.400000 +1796 1711 0.400000 +1796 1852 0.400000 +1796 1868 0.400000 +1796 1887 0.400000 +1796 1913 0.400000 +1796 1928 0.400000 +1796 2198 0.400000 +1796 2265 0.400000 +1796 2308 0.400000 +1796 2357 0.400000 +1796 2375 0.400000 +1796 2407 0.400000 +1796 2430 0.400000 +1796 2451 0.400000 +1796 2532 0.400000 +1796 2553 0.400000 +1796 2652 0.400000 +1796 2665 0.400000 +1796 2799 0.400000 +1796 2825 0.400000 +1796 2847 0.400000 +1796 2953 0.400000 +1796 2954 0.400000 +1796 2992 0.400000 +1796 3008 0.400000 +1796 3009 0.400000 +1796 3010 0.400000 +1796 3044 0.400000 +1796 3071 0.400000 +1796 3116 0.400000 +1796 3177 0.400000 +1797 36 0.400000 +1797 79 0.400000 +1797 82 0.400000 +1797 100 0.400000 +1797 134 0.400000 +1797 163 0.400000 +1797 178 0.400000 +1797 228 0.400000 +1797 285 0.400000 +1797 293 0.400000 +1797 308 0.400000 +1797 389 0.400000 +1797 399 0.400000 +1797 410 0.400000 +1797 442 0.400000 +1797 506 0.400000 +1797 558 0.400000 +1797 751 0.400000 +1797 817 0.400000 +1797 863 0.400000 +1797 907 0.400000 +1797 1041 0.400000 +1797 1043 0.400000 +1797 1104 0.400000 +1797 1121 0.400000 +1797 1159 0.400000 +1797 1182 0.400000 +1797 1193 0.400000 +1797 1222 0.400000 +1797 1258 0.400000 +1797 1305 0.400000 +1797 1313 0.400000 +1797 1354 0.400000 +1797 1372 0.400000 +1797 1431 0.400000 +1797 1487 0.400000 +1797 1515 0.400000 +1797 1548 0.400000 +1797 1572 0.400000 +1797 1619 0.400000 +1797 1637 0.400000 +1797 1709 0.400000 +1797 1740 0.400000 +1797 1775 0.400000 +1797 1819 0.400000 +1797 2118 0.400000 +1797 2245 0.400000 +1797 2270 0.400000 +1797 2318 0.400000 +1797 2320 0.400000 +1797 2395 0.400000 +1797 2425 0.400000 +1797 2443 0.400000 +1797 2472 0.400000 +1797 2551 0.400000 +1797 2553 0.400000 +1797 2562 0.400000 +1797 2609 0.400000 +1797 2614 0.400000 +1797 2638 0.400000 +1797 2650 0.400000 +1797 2651 0.400000 +1797 2884 0.400000 +1797 2902 0.400000 +1797 2908 0.400000 +1797 2969 0.400000 +1797 2998 0.400000 +1797 3011 0.400000 +1797 3026 0.400000 +1797 3035 0.400000 +1797 3041 0.400000 +1797 3079 0.400000 +1797 3082 0.400000 +1797 3086 0.400000 +1797 3092 0.400000 +1797 3148 0.400000 +1797 3168 0.400000 +1798 47 0.400000 +1798 48 0.400000 +1798 145 0.400000 +1798 201 0.400000 +1798 221 0.400000 +1798 242 0.400000 +1798 254 0.400000 +1798 291 0.400000 +1798 314 0.400000 +1798 344 0.400000 +1798 363 0.400000 +1798 371 0.400000 +1798 409 0.400000 +1798 500 0.400000 +1798 695 0.400000 +1798 701 0.400000 +1798 724 0.400000 +1798 772 0.400000 +1798 776 0.400000 +1798 784 0.400000 +1798 796 0.400000 +1798 830 0.400000 +1798 878 0.400000 +1798 880 0.400000 +1798 888 0.400000 +1798 1032 0.400000 +1798 1157 0.400000 +1798 1185 0.400000 +1798 1211 0.400000 +1798 1524 0.400000 +1798 1589 0.400000 +1798 1604 0.400000 +1798 1702 0.400000 +1798 1719 0.400000 +1798 1728 0.400000 +1798 1771 0.400000 +1798 1873 0.400000 +1798 1881 0.400000 +1798 1941 0.400000 +1798 1998 0.400000 +1798 2110 0.400000 +1798 2127 0.400000 +1798 2269 0.400000 +1798 2281 0.400000 +1798 2447 0.400000 +1798 2468 0.400000 +1798 2523 0.400000 +1798 2529 0.400000 +1798 2537 0.400000 +1798 2556 0.400000 +1798 2568 0.400000 +1798 2574 0.400000 +1798 2645 0.400000 +1798 2688 0.400000 +1798 2725 0.400000 +1798 2735 0.400000 +1798 2746 0.400000 +1798 2795 0.400000 +1798 2820 0.400000 +1798 2878 0.400000 +1798 2882 0.400000 +1798 2887 0.400000 +1798 2907 0.400000 +1798 2924 0.400000 +1798 3031 0.400000 +1798 3111 0.400000 +1798 3132 0.400000 +1798 3169 0.400000 +1798 3188 0.400000 +1799 57 0.400000 +1799 62 0.400000 +1799 123 0.400000 +1799 128 0.400000 +1799 246 0.400000 +1799 283 0.400000 +1799 459 0.400000 +1799 463 0.400000 +1799 508 0.400000 +1799 513 0.400000 +1799 577 0.400000 +1799 685 0.400000 +1799 727 0.400000 +1799 873 0.400000 +1799 898 0.400000 +1799 916 0.400000 +1799 919 0.400000 +1799 968 0.400000 +1799 1053 0.400000 +1799 1069 0.400000 +1799 1091 0.400000 +1799 1119 0.400000 +1799 1165 0.400000 +1799 1179 0.400000 +1799 1248 0.400000 +1799 1263 0.400000 +1799 1298 0.400000 +1799 1305 0.400000 +1799 1306 0.400000 +1799 1314 0.400000 +1799 1339 0.400000 +1799 1514 0.400000 +1799 1535 0.400000 +1799 1593 0.400000 +1799 1686 0.400000 +1799 1698 0.400000 +1799 1717 0.400000 +1799 1758 0.400000 +1799 1783 0.400000 +1799 1823 0.400000 +1799 1844 0.400000 +1799 1879 0.400000 +1799 1933 0.400000 +1799 1952 0.400000 +1799 2060 0.400000 +1799 2072 0.400000 +1799 2163 0.400000 +1799 2245 0.400000 +1799 2282 0.400000 +1799 2405 0.400000 +1799 2453 0.400000 +1799 2461 0.400000 +1799 2473 0.400000 +1799 2504 0.400000 +1799 2551 0.400000 +1799 2633 0.400000 +1799 2636 0.400000 +1799 2653 0.400000 +1799 2680 0.400000 +1799 2716 0.400000 +1799 2866 0.400000 +1799 2905 0.400000 +1799 2930 0.400000 +1799 2945 0.400000 +1799 2977 0.400000 +1799 3005 0.400000 +1799 3061 0.400000 +1799 3120 0.400000 +1799 3129 0.400000 +1799 3184 0.400000 +1800 54 0.400000 +1800 170 0.400000 +1800 351 0.400000 +1800 364 0.400000 +1800 408 0.400000 +1800 443 0.400000 +1800 448 0.400000 +1800 489 0.400000 +1800 491 0.400000 +1800 516 0.400000 +1800 626 0.400000 +1800 658 0.400000 +1800 665 0.400000 +1800 686 0.400000 +1800 707 0.400000 +1800 720 0.400000 +1800 814 0.400000 +1800 1005 0.400000 +1800 1087 0.400000 +1800 1216 0.400000 +1800 1244 0.400000 +1800 1246 0.400000 +1800 1265 0.400000 +1800 1417 0.400000 +1800 1430 0.400000 +1800 1480 0.400000 +1800 1511 0.400000 +1800 1549 0.400000 +1800 1646 0.400000 +1800 1650 0.400000 +1800 1670 0.400000 +1800 1689 0.400000 +1800 1693 0.400000 +1800 1774 0.400000 +1800 1801 0.400000 +1800 1862 0.400000 +1800 1900 0.400000 +1800 1943 0.400000 +1800 1999 0.400000 +1800 2052 0.400000 +1800 2053 0.400000 +1800 2059 0.400000 +1800 2095 0.400000 +1800 2177 0.400000 +1800 2184 0.400000 +1800 2207 0.400000 +1800 2250 0.400000 +1800 2281 0.400000 +1800 2384 0.400000 +1800 2452 0.400000 +1800 2458 0.400000 +1800 2517 0.400000 +1800 2551 0.400000 +1800 2562 0.400000 +1800 2581 0.400000 +1800 2583 0.400000 +1800 2615 0.400000 +1800 2620 0.400000 +1800 2637 0.400000 +1800 2720 0.400000 +1800 2783 0.400000 +1800 2787 0.400000 +1800 2808 0.400000 +1800 2887 0.400000 +1800 2927 0.400000 +1800 2975 0.400000 +1800 3001 0.400000 +1800 3021 0.400000 +1800 3068 0.400000 +1800 3071 0.400000 +1800 3094 0.400000 +1800 3116 0.400000 +1800 3147 0.400000 +1800 3181 0.400000 +1801 64 0.400000 +1801 104 0.400000 +1801 152 0.400000 +1801 190 0.400000 +1801 220 0.400000 +1801 227 0.400000 +1801 259 0.400000 +1801 302 0.400000 +1801 305 0.400000 +1801 352 0.400000 +1801 397 0.400000 +1801 428 0.400000 +1801 441 0.400000 +1801 590 0.400000 +1801 637 0.400000 +1801 752 0.400000 +1801 786 0.400000 +1801 825 0.400000 +1801 964 0.400000 +1801 987 0.400000 +1801 990 0.400000 +1801 1060 0.400000 +1801 1069 0.400000 +1801 1103 0.400000 +1801 1229 0.400000 +1801 1254 0.400000 +1801 1348 0.400000 +1801 1371 0.400000 +1801 1419 0.400000 +1801 1445 0.400000 +1801 1467 0.400000 +1801 1526 0.400000 +1801 1704 0.400000 +1801 1754 0.400000 +1801 1759 0.400000 +1801 1779 0.400000 +1801 1810 0.400000 +1801 1877 0.400000 +1801 1911 0.400000 +1801 1933 0.400000 +1801 2007 0.400000 +1801 2239 0.400000 +1801 2278 0.400000 +1801 2314 0.400000 +1801 2383 0.400000 +1801 2431 0.400000 +1801 2436 0.400000 +1801 2544 0.400000 +1801 2562 0.400000 +1801 2630 0.400000 +1801 2730 0.400000 +1801 2815 0.400000 +1801 2816 0.400000 +1801 2840 0.400000 +1801 2843 0.400000 +1801 2909 0.400000 +1801 2993 0.400000 +1801 3089 0.400000 +1802 20 0.400000 +1802 62 0.400000 +1802 69 0.400000 +1802 106 0.400000 +1802 169 0.400000 +1802 217 0.400000 +1802 273 0.400000 +1802 340 0.400000 +1802 404 0.400000 +1802 579 0.400000 +1802 602 0.400000 +1802 604 0.400000 +1802 606 0.400000 +1802 609 0.400000 +1802 677 0.400000 +1802 679 0.400000 +1802 695 0.400000 +1802 875 0.400000 +1802 972 0.400000 +1802 991 0.400000 +1802 1037 0.400000 +1802 1054 0.400000 +1802 1069 0.400000 +1802 1089 0.400000 +1802 1108 0.400000 +1802 1132 0.400000 +1802 1139 0.400000 +1802 1174 0.400000 +1802 1175 0.400000 +1802 1228 0.400000 +1802 1283 0.400000 +1802 1393 0.400000 +1802 1424 0.400000 +1802 1433 0.400000 +1802 1514 0.400000 +1802 1520 0.400000 +1802 1595 0.400000 +1802 1609 0.400000 +1802 1616 0.400000 +1802 1675 0.400000 +1802 1753 0.400000 +1802 1754 0.400000 +1802 1880 0.400000 +1802 1934 0.400000 +1802 1935 0.400000 +1802 1957 0.400000 +1802 2141 0.400000 +1802 2185 0.400000 +1802 2257 0.400000 +1802 2293 0.400000 +1802 2312 0.400000 +1802 2444 0.400000 +1802 2499 0.400000 +1802 2514 0.400000 +1802 2582 0.400000 +1802 2612 0.400000 +1802 2615 0.400000 +1802 2630 0.400000 +1802 2636 0.400000 +1802 2864 0.400000 +1802 2936 0.400000 +1802 3010 0.400000 +1802 3056 0.400000 +1802 3089 0.400000 +1802 3162 0.400000 +1803 73 0.400000 +1803 114 0.400000 +1803 164 0.400000 +1803 365 0.400000 +1803 394 0.400000 +1803 411 0.400000 +1803 464 0.400000 +1803 495 0.400000 +1803 510 0.400000 +1803 540 0.400000 +1803 594 0.400000 +1803 691 0.400000 +1803 717 0.400000 +1803 742 0.400000 +1803 866 0.400000 +1803 893 0.400000 +1803 939 0.400000 +1803 1000 0.400000 +1803 1057 0.400000 +1803 1129 0.400000 +1803 1132 0.400000 +1803 1138 0.400000 +1803 1148 0.400000 +1803 1176 0.400000 +1803 1204 0.400000 +1803 1206 0.400000 +1803 1221 0.400000 +1803 1270 0.400000 +1803 1320 0.400000 +1803 1397 0.400000 +1803 1419 0.400000 +1803 1422 0.400000 +1803 1447 0.400000 +1803 1461 0.400000 +1803 1620 0.400000 +1803 1769 0.400000 +1803 1781 0.400000 +1803 1871 0.400000 +1803 1903 0.400000 +1803 1906 0.400000 +1803 1908 0.400000 +1803 1962 0.400000 +1803 2047 0.400000 +1803 2056 0.400000 +1803 2070 0.400000 +1803 2075 0.400000 +1803 2152 0.400000 +1803 2225 0.400000 +1803 2263 0.400000 +1803 2281 0.400000 +1803 2307 0.400000 +1803 2342 0.400000 +1803 2378 0.400000 +1803 2389 0.400000 +1803 2535 0.400000 +1803 2659 0.400000 +1803 2761 0.400000 +1803 2796 0.400000 +1803 2811 0.400000 +1803 2820 0.400000 +1803 2861 0.400000 +1803 2934 0.400000 +1803 2944 0.400000 +1803 3025 0.400000 +1803 3028 0.400000 +1803 3088 0.400000 +1803 3138 0.400000 +1803 3141 0.400000 +1803 3190 0.400000 +1804 29 0.400000 +1804 86 0.400000 +1804 133 0.400000 +1804 134 0.400000 +1804 244 0.400000 +1804 356 0.400000 +1804 404 0.400000 +1804 418 0.400000 +1804 440 0.400000 +1804 479 0.400000 +1804 500 0.400000 +1804 523 0.400000 +1804 529 0.400000 +1804 546 0.400000 +1804 646 0.400000 +1804 720 0.400000 +1804 780 0.400000 +1804 807 0.400000 +1804 939 0.400000 +1804 943 0.400000 +1804 1033 0.400000 +1804 1082 0.400000 +1804 1104 0.400000 +1804 1106 0.400000 +1804 1128 0.400000 +1804 1186 0.400000 +1804 1410 0.400000 +1804 1561 0.400000 +1804 1566 0.400000 +1804 1611 0.400000 +1804 1616 0.400000 +1804 1697 0.400000 +1804 1711 0.400000 +1804 1800 0.400000 +1804 1865 0.400000 +1804 1905 0.400000 +1804 1922 0.400000 +1804 1925 0.400000 +1804 2028 0.400000 +1804 2087 0.400000 +1804 2108 0.400000 +1804 2167 0.400000 +1804 2205 0.400000 +1804 2236 0.400000 +1804 2293 0.400000 +1804 2310 0.400000 +1804 2362 0.400000 +1804 2375 0.400000 +1804 2381 0.400000 +1804 2385 0.400000 +1804 2475 0.400000 +1804 2481 0.400000 +1804 2499 0.400000 +1804 2572 0.400000 +1804 2620 0.400000 +1804 2628 0.400000 +1804 2648 0.400000 +1804 2664 0.400000 +1804 2696 0.400000 +1804 2725 0.400000 +1804 2772 0.400000 +1804 2790 0.400000 +1804 2800 0.400000 +1804 2870 0.400000 +1804 2950 0.400000 +1804 3090 0.400000 +1804 3153 0.400000 +1805 30 0.400000 +1805 41 0.400000 +1805 68 0.400000 +1805 108 0.400000 +1805 173 0.400000 +1805 355 0.400000 +1805 366 0.400000 +1805 565 0.400000 +1805 613 0.400000 +1805 651 0.400000 +1805 760 0.400000 +1805 828 0.400000 +1805 928 0.400000 +1805 1129 0.400000 +1805 1174 0.400000 +1805 1215 0.400000 +1805 1230 0.400000 +1805 1296 0.400000 +1805 1338 0.400000 +1805 1439 0.400000 +1805 1478 0.400000 +1805 1491 0.400000 +1805 1513 0.400000 +1805 1539 0.400000 +1805 1556 0.400000 +1805 1558 0.400000 +1805 1778 0.400000 +1805 1791 0.400000 +1805 1812 0.400000 +1805 1825 0.400000 +1805 1839 0.400000 +1805 1976 0.400000 +1805 1986 0.400000 +1805 2140 0.400000 +1805 2145 0.400000 +1805 2256 0.400000 +1805 2295 0.400000 +1805 2298 0.400000 +1805 2313 0.400000 +1805 2315 0.400000 +1805 2332 0.400000 +1805 2340 0.400000 +1805 2447 0.400000 +1805 2518 0.400000 +1805 2558 0.400000 +1805 2577 0.400000 +1805 2583 0.400000 +1805 2584 0.400000 +1805 2587 0.400000 +1805 2609 0.400000 +1805 2631 0.400000 +1805 2712 0.400000 +1805 2723 0.400000 +1805 2758 0.400000 +1805 2797 0.400000 +1805 2804 0.400000 +1805 2808 0.400000 +1805 2901 0.400000 +1805 2936 0.400000 +1805 2944 0.400000 +1805 2948 0.400000 +1805 2956 0.400000 +1805 2958 0.400000 +1805 2970 0.400000 +1805 3019 0.400000 +1805 3026 0.400000 +1805 3096 0.400000 +1805 3107 0.400000 +1806 12 0.400000 +1806 21 0.400000 +1806 59 0.400000 +1806 92 0.400000 +1806 149 0.400000 +1806 186 0.400000 +1806 306 0.400000 +1806 313 0.400000 +1806 333 0.400000 +1806 379 0.400000 +1806 394 0.400000 +1806 413 0.400000 +1806 448 0.400000 +1806 451 0.400000 +1806 484 0.400000 +1806 586 0.400000 +1806 664 0.400000 +1806 752 0.400000 +1806 948 0.400000 +1806 997 0.400000 +1806 1041 0.400000 +1806 1048 0.400000 +1806 1051 0.400000 +1806 1068 0.400000 +1806 1203 0.400000 +1806 1208 0.400000 +1806 1212 0.400000 +1806 1213 0.400000 +1806 1331 0.400000 +1806 1333 0.400000 +1806 1349 0.400000 +1806 1383 0.400000 +1806 1438 0.400000 +1806 1440 0.400000 +1806 1463 0.400000 +1806 1560 0.400000 +1806 1606 0.400000 +1806 1719 0.400000 +1806 1731 0.400000 +1806 1816 0.400000 +1806 1910 0.400000 +1806 1929 0.400000 +1806 1944 0.400000 +1806 1970 0.400000 +1806 1982 0.400000 +1806 2001 0.400000 +1806 2014 0.400000 +1806 2025 0.400000 +1806 2085 0.400000 +1806 2086 0.400000 +1806 2087 0.400000 +1806 2098 0.400000 +1806 2121 0.400000 +1806 2123 0.400000 +1806 2140 0.400000 +1806 2236 0.400000 +1806 2346 0.400000 +1806 2399 0.400000 +1806 2457 0.400000 +1806 2512 0.400000 +1806 2587 0.400000 +1806 2602 0.400000 +1806 2646 0.400000 +1806 2743 0.400000 +1806 2770 0.400000 +1806 2932 0.400000 +1806 2998 0.400000 +1806 3042 0.400000 +1806 3074 0.400000 +1806 3104 0.400000 +1806 3138 0.400000 +1806 3173 0.400000 +1806 3174 0.400000 +1807 55 0.400000 +1807 131 0.400000 +1807 169 0.400000 +1807 191 0.400000 +1807 344 0.400000 +1807 376 0.400000 +1807 406 0.400000 +1807 448 0.400000 +1807 579 0.400000 +1807 583 0.400000 +1807 604 0.400000 +1807 630 0.400000 +1807 636 0.400000 +1807 639 0.400000 +1807 671 0.400000 +1807 680 0.400000 +1807 766 0.400000 +1807 800 0.400000 +1807 865 0.400000 +1807 874 0.400000 +1807 957 0.400000 +1807 1102 0.400000 +1807 1151 0.400000 +1807 1170 0.400000 +1807 1180 0.400000 +1807 1197 0.400000 +1807 1302 0.400000 +1807 1369 0.400000 +1807 1378 0.400000 +1807 1407 0.400000 +1807 1438 0.400000 +1807 1444 0.400000 +1807 1471 0.400000 +1807 1496 0.400000 +1807 1516 0.400000 +1807 1551 0.400000 +1807 1609 0.400000 +1807 1627 0.400000 +1807 1686 0.400000 +1807 1695 0.400000 +1807 1707 0.400000 +1807 1727 0.400000 +1807 1813 0.400000 +1807 1847 0.400000 +1807 1857 0.400000 +1807 1881 0.400000 +1807 1894 0.400000 +1807 1911 0.400000 +1807 1913 0.400000 +1807 2006 0.400000 +1807 2013 0.400000 +1807 2016 0.400000 +1807 2033 0.400000 +1807 2077 0.400000 +1807 2078 0.400000 +1807 2103 0.400000 +1807 2128 0.400000 +1807 2191 0.400000 +1807 2354 0.400000 +1807 2363 0.400000 +1807 2366 0.400000 +1807 2393 0.400000 +1807 2447 0.400000 +1807 2464 0.400000 +1807 2482 0.400000 +1807 2556 0.400000 +1807 2576 0.400000 +1807 2645 0.400000 +1807 2680 0.400000 +1807 2682 0.400000 +1807 2696 0.400000 +1807 2701 0.400000 +1807 2815 0.400000 +1807 2834 0.400000 +1807 2858 0.400000 +1807 2867 0.400000 +1807 2869 0.400000 +1807 2871 0.400000 +1807 2897 0.400000 +1807 2982 0.400000 +1807 3003 0.400000 +1807 3027 0.400000 +1807 3050 0.400000 +1807 3076 0.400000 +1807 3091 0.400000 +1807 3174 0.400000 +1808 20 0.400000 +1808 55 0.400000 +1808 130 0.400000 +1808 137 0.400000 +1808 176 0.400000 +1808 223 0.400000 +1808 249 0.400000 +1808 261 0.400000 +1808 351 0.400000 +1808 370 0.400000 +1808 444 0.400000 +1808 445 0.400000 +1808 510 0.400000 +1808 536 0.400000 +1808 538 0.400000 +1808 650 0.400000 +1808 664 0.400000 +1808 669 0.400000 +1808 685 0.400000 +1808 708 0.400000 +1808 844 0.400000 +1808 952 0.400000 +1808 1009 0.400000 +1808 1076 0.400000 +1808 1088 0.400000 +1808 1103 0.400000 +1808 1185 0.400000 +1808 1202 0.400000 +1808 1208 0.400000 +1808 1226 0.400000 +1808 1263 0.400000 +1808 1269 0.400000 +1808 1324 0.400000 +1808 1333 0.400000 +1808 1361 0.400000 +1808 1407 0.400000 +1808 1417 0.400000 +1808 1443 0.400000 +1808 1492 0.400000 +1808 1508 0.400000 +1808 1530 0.400000 +1808 1545 0.400000 +1808 1587 0.400000 +1808 1599 0.400000 +1808 1614 0.400000 +1808 1657 0.400000 +1808 1786 0.400000 +1808 1848 0.400000 +1808 1938 0.400000 +1808 1993 0.400000 +1808 1999 0.400000 +1808 2044 0.400000 +1808 2047 0.400000 +1808 2114 0.400000 +1808 2133 0.400000 +1808 2148 0.400000 +1808 2152 0.400000 +1808 2159 0.400000 +1808 2197 0.400000 +1808 2215 0.400000 +1808 2238 0.400000 +1808 2274 0.400000 +1808 2316 0.400000 +1808 2397 0.400000 +1808 2401 0.400000 +1808 2424 0.400000 +1808 2489 0.400000 +1808 2490 0.400000 +1808 2570 0.400000 +1808 2588 0.400000 +1808 2629 0.400000 +1808 2779 0.400000 +1808 2839 0.400000 +1808 2840 0.400000 +1808 2957 0.400000 +1808 3032 0.400000 +1808 3123 0.400000 +1808 3155 0.400000 +1808 3174 0.400000 +1809 8 0.400000 +1809 119 0.400000 +1809 166 0.400000 +1809 203 0.400000 +1809 224 0.400000 +1809 273 0.400000 +1809 330 0.400000 +1809 434 0.400000 +1809 494 0.400000 +1809 668 0.400000 +1809 754 0.400000 +1809 763 0.400000 +1809 809 0.400000 +1809 810 0.400000 +1809 822 0.400000 +1809 855 0.400000 +1809 869 0.400000 +1809 873 0.400000 +1809 885 0.400000 +1809 914 0.400000 +1809 942 0.400000 +1809 953 0.400000 +1809 1023 0.400000 +1809 1203 0.400000 +1809 1378 0.400000 +1809 1473 0.400000 +1809 1683 0.400000 +1809 1704 0.400000 +1809 1784 0.400000 +1809 1794 0.400000 +1809 1801 0.400000 +1809 1858 0.400000 +1809 1875 0.400000 +1809 1971 0.400000 +1809 2040 0.400000 +1809 2110 0.400000 +1809 2141 0.400000 +1809 2207 0.400000 +1809 2268 0.400000 +1809 2332 0.400000 +1809 2346 0.400000 +1809 2355 0.400000 +1809 2356 0.400000 +1809 2386 0.400000 +1809 2423 0.400000 +1809 2455 0.400000 +1809 2546 0.400000 +1809 2594 0.400000 +1809 2629 0.400000 +1809 2645 0.400000 +1809 2697 0.400000 +1809 2718 0.400000 +1809 2735 0.400000 +1809 2852 0.400000 +1809 2911 0.400000 +1809 2997 0.400000 +1809 3002 0.400000 +1809 3015 0.400000 +1809 3048 0.400000 +1809 3109 0.400000 +1809 3128 0.400000 +1810 24 0.400000 +1810 119 0.400000 +1810 152 0.400000 +1810 211 0.400000 +1810 327 0.400000 +1810 378 0.400000 +1810 439 0.400000 +1810 572 0.400000 +1810 582 0.400000 +1810 645 0.400000 +1810 727 0.400000 +1810 751 0.400000 +1810 783 0.400000 +1810 788 0.400000 +1810 864 0.400000 +1810 880 0.400000 +1810 965 0.400000 +1810 970 0.400000 +1810 1025 0.400000 +1810 1132 0.400000 +1810 1225 0.400000 +1810 1467 0.400000 +1810 1580 0.400000 +1810 1609 0.400000 +1810 1621 0.400000 +1810 1751 0.400000 +1810 1779 0.400000 +1810 1856 0.400000 +1810 1869 0.400000 +1810 1982 0.400000 +1810 2103 0.400000 +1810 2116 0.400000 +1810 2241 0.400000 +1810 2322 0.400000 +1810 2369 0.400000 +1810 2373 0.400000 +1810 2382 0.400000 +1810 2473 0.400000 +1810 2478 0.400000 +1810 2547 0.400000 +1810 2713 0.400000 +1810 2721 0.400000 +1810 2884 0.400000 +1810 2902 0.400000 +1810 2916 0.400000 +1810 2998 0.400000 +1810 3057 0.400000 +1810 3193 0.400000 +1811 81 0.400000 +1811 127 0.400000 +1811 194 0.400000 +1811 238 0.400000 +1811 276 0.400000 +1811 335 0.400000 +1811 418 0.400000 +1811 442 0.400000 +1811 448 0.400000 +1811 634 0.400000 +1811 676 0.400000 +1811 704 0.400000 +1811 705 0.400000 +1811 747 0.400000 +1811 757 0.400000 +1811 798 0.400000 +1811 821 0.400000 +1811 861 0.400000 +1811 892 0.400000 +1811 958 0.400000 +1811 1083 0.400000 +1811 1138 0.400000 +1811 1175 0.400000 +1811 1245 0.400000 +1811 1258 0.400000 +1811 1261 0.400000 +1811 1309 0.400000 +1811 1340 0.400000 +1811 1385 0.400000 +1811 1513 0.400000 +1811 1585 0.400000 +1811 1681 0.400000 +1811 1856 0.400000 +1811 1894 0.400000 +1811 1940 0.400000 +1811 1987 0.400000 +1811 2052 0.400000 +1811 2087 0.400000 +1811 2103 0.400000 +1811 2207 0.400000 +1811 2212 0.400000 +1811 2336 0.400000 +1811 2354 0.400000 +1811 2369 0.400000 +1811 2372 0.400000 +1811 2440 0.400000 +1811 2464 0.400000 +1811 2550 0.400000 +1811 2561 0.400000 +1811 2563 0.400000 +1811 2582 0.400000 +1811 2624 0.400000 +1811 2696 0.400000 +1811 2792 0.400000 +1811 2823 0.400000 +1811 2963 0.400000 +1811 2967 0.400000 +1811 3007 0.400000 +1811 3036 0.400000 +1811 3097 0.400000 +1811 3163 0.400000 +1811 3169 0.400000 +1812 28 0.400000 +1812 341 0.400000 +1812 343 0.400000 +1812 356 0.400000 +1812 635 0.400000 +1812 636 0.400000 +1812 655 0.400000 +1812 784 0.400000 +1812 824 0.400000 +1812 883 0.400000 +1812 902 0.400000 +1812 945 0.400000 +1812 978 0.400000 +1812 979 0.400000 +1812 986 0.400000 +1812 988 0.400000 +1812 1202 0.400000 +1812 1231 0.400000 +1812 1313 0.400000 +1812 1438 0.400000 +1812 1497 0.400000 +1812 1520 0.400000 +1812 1538 0.400000 +1812 1573 0.400000 +1812 1609 0.400000 +1812 1617 0.400000 +1812 1628 0.400000 +1812 1640 0.400000 +1812 1695 0.400000 +1812 1732 0.400000 +1812 1824 0.400000 +1812 1828 0.400000 +1812 1834 0.400000 +1812 1871 0.400000 +1812 1964 0.400000 +1812 1966 0.400000 +1812 2013 0.400000 +1812 2022 0.400000 +1812 2086 0.400000 +1812 2128 0.400000 +1812 2190 0.400000 +1812 2258 0.400000 +1812 2261 0.400000 +1812 2332 0.400000 +1812 2406 0.400000 +1812 2418 0.400000 +1812 2424 0.400000 +1812 2753 0.400000 +1812 2767 0.400000 +1812 2775 0.400000 +1812 2782 0.400000 +1812 2817 0.400000 +1812 2844 0.400000 +1812 2855 0.400000 +1812 3115 0.400000 +1812 3122 0.400000 +1812 3131 0.400000 +1812 3155 0.400000 +1812 3167 0.400000 +1813 23 0.400000 +1813 56 0.400000 +1813 62 0.400000 +1813 83 0.400000 +1813 230 0.400000 +1813 344 0.400000 +1813 566 0.400000 +1813 589 0.400000 +1813 679 0.400000 +1813 698 0.400000 +1813 760 0.400000 +1813 762 0.400000 +1813 819 0.400000 +1813 847 0.400000 +1813 851 0.400000 +1813 856 0.400000 +1813 924 0.400000 +1813 972 0.400000 +1813 1123 0.400000 +1813 1147 0.400000 +1813 1191 0.400000 +1813 1217 0.400000 +1813 1230 0.400000 +1813 1246 0.400000 +1813 1295 0.400000 +1813 1354 0.400000 +1813 1369 0.400000 +1813 1412 0.400000 +1813 1516 0.400000 +1813 1589 0.400000 +1813 1612 0.400000 +1813 1618 0.400000 +1813 1644 0.400000 +1813 1667 0.400000 +1813 1686 0.400000 +1813 1701 0.400000 +1813 1707 0.400000 +1813 1741 0.400000 +1813 1762 0.400000 +1813 1790 0.400000 +1813 1904 0.400000 +1813 2017 0.400000 +1813 2057 0.400000 +1813 2104 0.400000 +1813 2163 0.400000 +1813 2269 0.400000 +1813 2330 0.400000 +1813 2361 0.400000 +1813 2400 0.400000 +1813 2413 0.400000 +1813 2442 0.400000 +1813 2444 0.400000 +1813 2465 0.400000 +1813 2504 0.400000 +1813 2508 0.400000 +1813 2564 0.400000 +1813 2645 0.400000 +1813 2677 0.400000 +1813 2846 0.400000 +1813 2862 0.400000 +1813 2895 0.400000 +1813 2911 0.400000 +1813 2944 0.400000 +1813 2956 0.400000 +1813 3059 0.400000 +1813 3077 0.400000 +1813 3097 0.400000 +1813 3135 0.400000 +1814 5 0.400000 +1814 47 0.400000 +1814 85 0.400000 +1814 150 0.400000 +1814 181 0.400000 +1814 188 0.400000 +1814 190 0.400000 +1814 221 0.400000 +1814 378 0.400000 +1814 584 0.400000 +1814 590 0.400000 +1814 631 0.400000 +1814 755 0.400000 +1814 784 0.400000 +1814 840 0.400000 +1814 859 0.400000 +1814 869 0.400000 +1814 909 0.400000 +1814 935 0.400000 +1814 970 0.400000 +1814 972 0.400000 +1814 1039 0.400000 +1814 1068 0.400000 +1814 1072 0.400000 +1814 1149 0.400000 +1814 1155 0.400000 +1814 1168 0.400000 +1814 1176 0.400000 +1814 1206 0.400000 +1814 1218 0.400000 +1814 1237 0.400000 +1814 1239 0.400000 +1814 1245 0.400000 +1814 1270 0.400000 +1814 1272 0.400000 +1814 1304 0.400000 +1814 1309 0.400000 +1814 1369 0.400000 +1814 1455 0.400000 +1814 1581 0.400000 +1814 1628 0.400000 +1814 1646 0.400000 +1814 1699 0.400000 +1814 1764 0.400000 +1814 1819 0.400000 +1814 1852 0.400000 +1814 1864 0.400000 +1814 1987 0.400000 +1814 2101 0.400000 +1814 2206 0.400000 +1814 2289 0.400000 +1814 2295 0.400000 +1814 2382 0.400000 +1814 2443 0.400000 +1814 2461 0.400000 +1814 2524 0.400000 +1814 2534 0.400000 +1814 2557 0.400000 +1814 2574 0.400000 +1814 2609 0.400000 +1814 2640 0.400000 +1814 2651 0.400000 +1814 2664 0.400000 +1814 2670 0.400000 +1814 2895 0.400000 +1814 2934 0.400000 +1814 2991 0.400000 +1814 2998 0.400000 +1814 3036 0.400000 +1814 3079 0.400000 +1814 3088 0.400000 +1814 3144 0.400000 +1814 3178 0.400000 +1814 3183 0.400000 +1814 3200 0.400000 +1815 40 0.400000 +1815 66 0.400000 +1815 208 0.400000 +1815 219 0.400000 +1815 241 0.400000 +1815 429 0.400000 +1815 463 0.400000 +1815 487 0.400000 +1815 497 0.400000 +1815 666 0.400000 +1815 692 0.400000 +1815 754 0.400000 +1815 810 0.400000 +1815 924 0.400000 +1815 963 0.400000 +1815 1002 0.400000 +1815 1022 0.400000 +1815 1082 0.400000 +1815 1125 0.400000 +1815 1162 0.400000 +1815 1192 0.400000 +1815 1193 0.400000 +1815 1196 0.400000 +1815 1198 0.400000 +1815 1287 0.400000 +1815 1445 0.400000 +1815 1500 0.400000 +1815 1552 0.400000 +1815 1569 0.400000 +1815 1579 0.400000 +1815 1637 0.400000 +1815 1657 0.400000 +1815 1693 0.400000 +1815 1699 0.400000 +1815 1758 0.400000 +1815 1769 0.400000 +1815 1830 0.400000 +1815 1917 0.400000 +1815 1981 0.400000 +1815 2014 0.400000 +1815 2026 0.400000 +1815 2150 0.400000 +1815 2227 0.400000 +1815 2363 0.400000 +1815 2427 0.400000 +1815 2460 0.400000 +1815 2659 0.400000 +1815 2710 0.400000 +1815 2739 0.400000 +1815 2831 0.400000 +1815 2890 0.400000 +1815 2977 0.400000 +1815 2978 0.400000 +1815 2991 0.400000 +1815 3139 0.400000 +1815 3177 0.400000 +1816 77 0.400000 +1816 127 0.400000 +1816 161 0.400000 +1816 234 0.400000 +1816 243 0.400000 +1816 312 0.400000 +1816 322 0.400000 +1816 381 0.400000 +1816 414 0.400000 +1816 616 0.400000 +1816 621 0.400000 +1816 644 0.400000 +1816 672 0.400000 +1816 687 0.400000 +1816 692 0.400000 +1816 703 0.400000 +1816 764 0.400000 +1816 834 0.400000 +1816 838 0.400000 +1816 889 0.400000 +1816 900 0.400000 +1816 933 0.400000 +1816 953 0.400000 +1816 988 0.400000 +1816 1116 0.400000 +1816 1191 0.400000 +1816 1203 0.400000 +1816 1386 0.400000 +1816 1425 0.400000 +1816 1476 0.400000 +1816 1504 0.400000 +1816 1537 0.400000 +1816 1550 0.400000 +1816 1645 0.400000 +1816 1677 0.400000 +1816 1697 0.400000 +1816 1713 0.400000 +1816 1798 0.400000 +1816 1825 0.400000 +1816 1883 0.400000 +1816 1925 0.400000 +1816 1926 0.400000 +1816 1968 0.400000 +1816 1988 0.400000 +1816 1994 0.400000 +1816 2011 0.400000 +1816 2151 0.400000 +1816 2219 0.400000 +1816 2235 0.400000 +1816 2396 0.400000 +1816 2426 0.400000 +1816 2574 0.400000 +1816 2589 0.400000 +1816 2600 0.400000 +1816 2637 0.400000 +1816 2699 0.400000 +1816 2703 0.400000 +1816 2757 0.400000 +1816 2784 0.400000 +1816 2803 0.400000 +1816 2885 0.400000 +1816 2898 0.400000 +1816 3038 0.400000 +1816 3044 0.400000 +1816 3101 0.400000 +1816 3116 0.400000 +1816 3172 0.400000 +1816 3174 0.400000 +1816 3177 0.400000 +1816 3200 0.400000 +1817 26 0.400000 +1817 27 0.400000 +1817 43 0.400000 +1817 110 0.400000 +1817 179 0.400000 +1817 226 0.400000 +1817 305 0.400000 +1817 338 0.400000 +1817 404 0.400000 +1817 415 0.400000 +1817 443 0.400000 +1817 472 0.400000 +1817 477 0.400000 +1817 483 0.400000 +1817 573 0.400000 +1817 596 0.400000 +1817 638 0.400000 +1817 718 0.400000 +1817 783 0.400000 +1817 854 0.400000 +1817 900 0.400000 +1817 933 0.400000 +1817 966 0.400000 +1817 975 0.400000 +1817 982 0.400000 +1817 1018 0.400000 +1817 1034 0.400000 +1817 1045 0.400000 +1817 1047 0.400000 +1817 1061 0.400000 +1817 1067 0.400000 +1817 1101 0.400000 +1817 1131 0.400000 +1817 1183 0.400000 +1817 1291 0.400000 +1817 1342 0.400000 +1817 1344 0.400000 +1817 1346 0.400000 +1817 1365 0.400000 +1817 1368 0.400000 +1817 1509 0.400000 +1817 1551 0.400000 +1817 1603 0.400000 +1817 1624 0.400000 +1817 1659 0.400000 +1817 1672 0.400000 +1817 1711 0.400000 +1817 1751 0.400000 +1817 1878 0.400000 +1817 1925 0.400000 +1817 2030 0.400000 +1817 2128 0.400000 +1817 2212 0.400000 +1817 2213 0.400000 +1817 2291 0.400000 +1817 2310 0.400000 +1817 2468 0.400000 +1817 2570 0.400000 +1817 2573 0.400000 +1817 2611 0.400000 +1817 2635 0.400000 +1817 2684 0.400000 +1817 2778 0.400000 +1817 2799 0.400000 +1817 2866 0.400000 +1817 2872 0.400000 +1817 2881 0.400000 +1817 2917 0.400000 +1817 2953 0.400000 +1817 2973 0.400000 +1817 3061 0.400000 +1818 134 0.400000 +1818 141 0.400000 +1818 182 0.400000 +1818 225 0.400000 +1818 333 0.400000 +1818 356 0.400000 +1818 465 0.400000 +1818 520 0.400000 +1818 522 0.400000 +1818 549 0.400000 +1818 552 0.400000 +1818 668 0.400000 +1818 687 0.400000 +1818 718 0.400000 +1818 752 0.400000 +1818 825 0.400000 +1818 862 0.400000 +1818 900 0.400000 +1818 992 0.400000 +1818 1098 0.400000 +1818 1100 0.400000 +1818 1166 0.400000 +1818 1167 0.400000 +1818 1272 0.400000 +1818 1273 0.400000 +1818 1289 0.400000 +1818 1330 0.400000 +1818 1416 0.400000 +1818 1506 0.400000 +1818 1593 0.400000 +1818 1613 0.400000 +1818 1676 0.400000 +1818 1752 0.400000 +1818 1900 0.400000 +1818 1975 0.400000 +1818 2014 0.400000 +1818 2077 0.400000 +1818 2191 0.400000 +1818 2194 0.400000 +1818 2195 0.400000 +1818 2458 0.400000 +1818 2498 0.400000 +1818 2512 0.400000 +1818 2517 0.400000 +1818 2526 0.400000 +1818 2552 0.400000 +1818 2600 0.400000 +1818 2669 0.400000 +1818 2689 0.400000 +1818 2690 0.400000 +1818 2694 0.400000 +1818 2857 0.400000 +1818 2895 0.400000 +1818 3019 0.400000 +1818 3027 0.400000 +1818 3055 0.400000 +1819 146 0.400000 +1819 163 0.400000 +1819 281 0.400000 +1819 297 0.400000 +1819 323 0.400000 +1819 394 0.400000 +1819 424 0.400000 +1819 435 0.400000 +1819 465 0.400000 +1819 617 0.400000 +1819 641 0.400000 +1819 733 0.400000 +1819 744 0.400000 +1819 980 0.400000 +1819 1083 0.400000 +1819 1217 0.400000 +1819 1275 0.400000 +1819 1303 0.400000 +1819 1374 0.400000 +1819 1451 0.400000 +1819 1461 0.400000 +1819 1517 0.400000 +1819 1537 0.400000 +1819 1628 0.400000 +1819 1682 0.400000 +1819 1683 0.400000 +1819 1818 0.400000 +1819 1820 0.400000 +1819 1855 0.400000 +1819 1891 0.400000 +1819 1914 0.400000 +1819 1987 0.400000 +1819 2016 0.400000 +1819 2110 0.400000 +1819 2124 0.400000 +1819 2140 0.400000 +1819 2148 0.400000 +1819 2221 0.400000 +1819 2321 0.400000 +1819 2376 0.400000 +1819 2410 0.400000 +1819 2607 0.400000 +1819 2683 0.400000 +1819 2754 0.400000 +1819 3002 0.400000 +1819 3064 0.400000 +1820 8 0.400000 +1820 23 0.400000 +1820 177 0.400000 +1820 202 0.400000 +1820 224 0.400000 +1820 232 0.400000 +1820 352 0.400000 +1820 360 0.400000 +1820 422 0.400000 +1820 423 0.400000 +1820 429 0.400000 +1820 473 0.400000 +1820 493 0.400000 +1820 517 0.400000 +1820 518 0.400000 +1820 562 0.400000 +1820 577 0.400000 +1820 582 0.400000 +1820 619 0.400000 +1820 700 0.400000 +1820 739 0.400000 +1820 741 0.400000 +1820 800 0.400000 +1820 882 0.400000 +1820 994 0.400000 +1820 1001 0.400000 +1820 1063 0.400000 +1820 1101 0.400000 +1820 1136 0.400000 +1820 1219 0.400000 +1820 1358 0.400000 +1820 1411 0.400000 +1820 1452 0.400000 +1820 1464 0.400000 +1820 1469 0.400000 +1820 1503 0.400000 +1820 1550 0.400000 +1820 1576 0.400000 +1820 1784 0.400000 +1820 1840 0.400000 +1820 2060 0.400000 +1820 2114 0.400000 +1820 2115 0.400000 +1820 2141 0.400000 +1820 2170 0.400000 +1820 2279 0.400000 +1820 2427 0.400000 +1820 2428 0.400000 +1820 2706 0.400000 +1820 2707 0.400000 +1820 2723 0.400000 +1820 2797 0.400000 +1820 2802 0.400000 +1820 2970 0.400000 +1820 3017 0.400000 +1820 3112 0.400000 +1820 3191 0.400000 +1821 10 0.400000 +1821 144 0.400000 +1821 145 0.400000 +1821 146 0.400000 +1821 171 0.400000 +1821 219 0.400000 +1821 222 0.400000 +1821 277 0.400000 +1821 281 0.400000 +1821 340 0.400000 +1821 407 0.400000 +1821 420 0.400000 +1821 637 0.400000 +1821 670 0.400000 +1821 694 0.400000 +1821 729 0.400000 +1821 747 0.400000 +1821 748 0.400000 +1821 790 0.400000 +1821 793 0.400000 +1821 802 0.400000 +1821 810 0.400000 +1821 867 0.400000 +1821 882 0.400000 +1821 939 0.400000 +1821 954 0.400000 +1821 968 0.400000 +1821 1041 0.400000 +1821 1042 0.400000 +1821 1074 0.400000 +1821 1077 0.400000 +1821 1091 0.400000 +1821 1104 0.400000 +1821 1136 0.400000 +1821 1274 0.400000 +1821 1355 0.400000 +1821 1365 0.400000 +1821 1381 0.400000 +1821 1390 0.400000 +1821 1397 0.400000 +1821 1446 0.400000 +1821 1504 0.400000 +1821 1562 0.400000 +1821 1716 0.400000 +1821 1868 0.400000 +1821 1887 0.400000 +1821 1919 0.400000 +1821 1959 0.400000 +1821 2014 0.400000 +1821 2048 0.400000 +1821 2058 0.400000 +1821 2205 0.400000 +1821 2323 0.400000 +1821 2333 0.400000 +1821 2363 0.400000 +1821 2372 0.400000 +1821 2425 0.400000 +1821 2430 0.400000 +1821 2434 0.400000 +1821 2471 0.400000 +1821 2572 0.400000 +1821 2627 0.400000 +1821 2689 0.400000 +1821 2724 0.400000 +1821 2739 0.400000 +1821 2795 0.400000 +1821 2846 0.400000 +1821 2868 0.400000 +1821 2938 0.400000 +1821 2958 0.400000 +1821 2964 0.400000 +1821 3021 0.400000 +1821 3044 0.400000 +1821 3151 0.400000 +1821 3159 0.400000 +1821 3182 0.400000 +1822 47 0.400000 +1822 88 0.400000 +1822 135 0.400000 +1822 150 0.400000 +1822 155 0.400000 +1822 242 0.400000 +1822 292 0.400000 +1822 295 0.400000 +1822 308 0.400000 +1822 347 0.400000 +1822 371 0.400000 +1822 375 0.400000 +1822 389 0.400000 +1822 440 0.400000 +1822 462 0.400000 +1822 498 0.400000 +1822 504 0.400000 +1822 524 0.400000 +1822 534 0.400000 +1822 537 0.400000 +1822 570 0.400000 +1822 587 0.400000 +1822 633 0.400000 +1822 644 0.400000 +1822 646 0.400000 +1822 705 0.400000 +1822 713 0.400000 +1822 722 0.400000 +1822 734 0.400000 +1822 753 0.400000 +1822 788 0.400000 +1822 791 0.400000 +1822 854 0.400000 +1822 1078 0.400000 +1822 1162 0.400000 +1822 1214 0.400000 +1822 1233 0.400000 +1822 1240 0.400000 +1822 1259 0.400000 +1822 1303 0.400000 +1822 1390 0.400000 +1822 1405 0.400000 +1822 1427 0.400000 +1822 1431 0.400000 +1822 1486 0.400000 +1822 1602 0.400000 +1822 1760 0.400000 +1822 1769 0.400000 +1822 1774 0.400000 +1822 1810 0.400000 +1822 1861 0.400000 +1822 1946 0.400000 +1822 1952 0.400000 +1822 1980 0.400000 +1822 2058 0.400000 +1822 2076 0.400000 +1822 2176 0.400000 +1822 2324 0.400000 +1822 2350 0.400000 +1822 2382 0.400000 +1822 2394 0.400000 +1822 2414 0.400000 +1822 2591 0.400000 +1822 2627 0.400000 +1822 2681 0.400000 +1822 2691 0.400000 +1822 2710 0.400000 +1822 2722 0.400000 +1822 2733 0.400000 +1822 2758 0.400000 +1822 2760 0.400000 +1822 2796 0.400000 +1822 2908 0.400000 +1822 2946 0.400000 +1822 2990 0.400000 +1822 3083 0.400000 +1822 3121 0.400000 +1822 3122 0.400000 +1822 3126 0.400000 +1823 68 0.400000 +1823 91 0.400000 +1823 136 0.400000 +1823 173 0.400000 +1823 197 0.400000 +1823 215 0.400000 +1823 350 0.400000 +1823 351 0.400000 +1823 358 0.400000 +1823 413 0.400000 +1823 472 0.400000 +1823 480 0.400000 +1823 486 0.400000 +1823 520 0.400000 +1823 562 0.400000 +1823 631 0.400000 +1823 655 0.400000 +1823 773 0.400000 +1823 867 0.400000 +1823 884 0.400000 +1823 936 0.400000 +1823 980 0.400000 +1823 993 0.400000 +1823 1006 0.400000 +1823 1019 0.400000 +1823 1187 0.400000 +1823 1243 0.400000 +1823 1283 0.400000 +1823 1445 0.400000 +1823 1527 0.400000 +1823 1558 0.400000 +1823 1599 0.400000 +1823 1613 0.400000 +1823 1641 0.400000 +1823 1664 0.400000 +1823 1678 0.400000 +1823 1737 0.400000 +1823 1829 0.400000 +1823 1881 0.400000 +1823 2065 0.400000 +1823 2215 0.400000 +1823 2275 0.400000 +1823 2307 0.400000 +1823 2315 0.400000 +1823 2348 0.400000 +1823 2358 0.400000 +1823 2382 0.400000 +1823 2383 0.400000 +1823 2390 0.400000 +1823 2391 0.400000 +1823 2467 0.400000 +1823 2571 0.400000 +1823 2614 0.400000 +1823 2626 0.400000 +1823 2633 0.400000 +1823 2794 0.400000 +1823 2854 0.400000 +1823 2967 0.400000 +1823 2991 0.400000 +1823 3024 0.400000 +1823 3072 0.400000 +1823 3102 0.400000 +1823 3147 0.400000 +1823 3152 0.400000 +1824 18 0.400000 +1824 28 0.400000 +1824 54 0.400000 +1824 100 0.400000 +1824 169 0.400000 +1824 182 0.400000 +1824 186 0.400000 +1824 232 0.400000 +1824 390 0.400000 +1824 412 0.400000 +1824 426 0.400000 +1824 505 0.400000 +1824 625 0.400000 +1824 651 0.400000 +1824 665 0.400000 +1824 692 0.400000 +1824 717 0.400000 +1824 725 0.400000 +1824 744 0.400000 +1824 779 0.400000 +1824 819 0.400000 +1824 825 0.400000 +1824 882 0.400000 +1824 972 0.400000 +1824 1072 0.400000 +1824 1169 0.400000 +1824 1234 0.400000 +1824 1240 0.400000 +1824 1248 0.400000 +1824 1251 0.400000 +1824 1306 0.400000 +1824 1362 0.400000 +1824 1372 0.400000 +1824 1423 0.400000 +1824 1519 0.400000 +1824 1565 0.400000 +1824 1586 0.400000 +1824 1682 0.400000 +1824 1788 0.400000 +1824 1842 0.400000 +1824 1875 0.400000 +1824 1942 0.400000 +1824 1964 0.400000 +1824 1973 0.400000 +1824 1975 0.400000 +1824 2000 0.400000 +1824 2044 0.400000 +1824 2060 0.400000 +1824 2105 0.400000 +1824 2230 0.400000 +1824 2366 0.400000 +1824 2369 0.400000 +1824 2381 0.400000 +1824 2384 0.400000 +1824 2420 0.400000 +1824 2472 0.400000 +1824 2558 0.400000 +1824 2559 0.400000 +1824 2652 0.400000 +1824 2671 0.400000 +1824 2679 0.400000 +1824 2726 0.400000 +1824 2771 0.400000 +1824 2804 0.400000 +1824 2807 0.400000 +1824 2905 0.400000 +1824 2953 0.400000 +1824 2975 0.400000 +1824 3012 0.400000 +1824 3062 0.400000 +1824 3096 0.400000 +1824 3125 0.400000 +1824 3140 0.400000 +1825 125 0.400000 +1825 133 0.400000 +1825 176 0.400000 +1825 210 0.400000 +1825 229 0.400000 +1825 283 0.400000 +1825 357 0.400000 +1825 363 0.400000 +1825 383 0.400000 +1825 402 0.400000 +1825 435 0.400000 +1825 448 0.400000 +1825 512 0.400000 +1825 561 0.400000 +1825 575 0.400000 +1825 603 0.400000 +1825 637 0.400000 +1825 661 0.400000 +1825 673 0.400000 +1825 702 0.400000 +1825 737 0.400000 +1825 876 0.400000 +1825 913 0.400000 +1825 947 0.400000 +1825 1003 0.400000 +1825 1059 0.400000 +1825 1112 0.400000 +1825 1132 0.400000 +1825 1133 0.400000 +1825 1162 0.400000 +1825 1173 0.400000 +1825 1178 0.400000 +1825 1203 0.400000 +1825 1215 0.400000 +1825 1348 0.400000 +1825 1387 0.400000 +1825 1453 0.400000 +1825 1457 0.400000 +1825 1514 0.400000 +1825 1586 0.400000 +1825 1595 0.400000 +1825 1603 0.400000 +1825 1615 0.400000 +1825 1624 0.400000 +1825 1638 0.400000 +1825 1666 0.400000 +1825 1673 0.400000 +1825 1744 0.400000 +1825 1758 0.400000 +1825 1771 0.400000 +1825 1815 0.400000 +1825 1821 0.400000 +1825 1828 0.400000 +1825 1837 0.400000 +1825 1903 0.400000 +1825 1961 0.400000 +1825 1997 0.400000 +1825 2007 0.400000 +1825 2071 0.400000 +1825 2130 0.400000 +1825 2148 0.400000 +1825 2259 0.400000 +1825 2278 0.400000 +1825 2323 0.400000 +1825 2333 0.400000 +1825 2347 0.400000 +1825 2382 0.400000 +1825 2392 0.400000 +1825 2417 0.400000 +1825 2423 0.400000 +1825 2425 0.400000 +1825 2474 0.400000 +1825 2616 0.400000 +1825 2625 0.400000 +1825 2637 0.400000 +1825 2661 0.400000 +1825 2671 0.400000 +1825 2709 0.400000 +1825 2710 0.400000 +1825 2729 0.400000 +1825 2760 0.400000 +1825 2769 0.400000 +1825 2830 0.400000 +1825 2870 0.400000 +1825 2907 0.400000 +1825 2931 0.400000 +1825 2961 0.400000 +1825 3039 0.400000 +1825 3175 0.400000 +1825 3191 0.400000 +1826 65 0.400000 +1826 116 0.400000 +1826 155 0.400000 +1826 178 0.400000 +1826 190 0.400000 +1826 248 0.400000 +1826 278 0.400000 +1826 334 0.400000 +1826 394 0.400000 +1826 483 0.400000 +1826 524 0.400000 +1826 552 0.400000 +1826 588 0.400000 +1826 720 0.400000 +1826 758 0.400000 +1826 885 0.400000 +1826 930 0.400000 +1826 1163 0.400000 +1826 1172 0.400000 +1826 1212 0.400000 +1826 1229 0.400000 +1826 1479 0.400000 +1826 1585 0.400000 +1826 1622 0.400000 +1826 1681 0.400000 +1826 1688 0.400000 +1826 1895 0.400000 +1826 1924 0.400000 +1826 1985 0.400000 +1826 2204 0.400000 +1826 2214 0.400000 +1826 2406 0.400000 +1826 2434 0.400000 +1826 2486 0.400000 +1826 2507 0.400000 +1826 2520 0.400000 +1826 2531 0.400000 +1826 2651 0.400000 +1826 2671 0.400000 +1826 2712 0.400000 +1826 2718 0.400000 +1826 2786 0.400000 +1826 2790 0.400000 +1826 2826 0.400000 +1826 2884 0.400000 +1826 2886 0.400000 +1826 2978 0.400000 +1826 3004 0.400000 +1826 3010 0.400000 +1826 3024 0.400000 +1826 3126 0.400000 +1826 3142 0.400000 +1826 3176 0.400000 +1826 3180 0.400000 +1827 21 0.400000 +1827 29 0.400000 +1827 34 0.400000 +1827 77 0.400000 +1827 105 0.400000 +1827 159 0.400000 +1827 218 0.400000 +1827 273 0.400000 +1827 426 0.400000 +1827 505 0.400000 +1827 665 0.400000 +1827 738 0.400000 +1827 779 0.400000 +1827 871 0.400000 +1827 912 0.400000 +1827 976 0.400000 +1827 980 0.400000 +1827 986 0.400000 +1827 1001 0.400000 +1827 1018 0.400000 +1827 1074 0.400000 +1827 1080 0.400000 +1827 1086 0.400000 +1827 1090 0.400000 +1827 1093 0.400000 +1827 1203 0.400000 +1827 1218 0.400000 +1827 1294 0.400000 +1827 1346 0.400000 +1827 1381 0.400000 +1827 1438 0.400000 +1827 1472 0.400000 +1827 1475 0.400000 +1827 1504 0.400000 +1827 1541 0.400000 +1827 1553 0.400000 +1827 1605 0.400000 +1827 1657 0.400000 +1827 1700 0.400000 +1827 1724 0.400000 +1827 1727 0.400000 +1827 1811 0.400000 +1827 1936 0.400000 +1827 1991 0.400000 +1827 2002 0.400000 +1827 2069 0.400000 +1827 2131 0.400000 +1827 2132 0.400000 +1827 2139 0.400000 +1827 2179 0.400000 +1827 2242 0.400000 +1827 2294 0.400000 +1827 2335 0.400000 +1827 2409 0.400000 +1827 2411 0.400000 +1827 2423 0.400000 +1827 2491 0.400000 +1827 2573 0.400000 +1827 2575 0.400000 +1827 2615 0.400000 +1827 2637 0.400000 +1827 2693 0.400000 +1827 2696 0.400000 +1827 2722 0.400000 +1827 2798 0.400000 +1827 2930 0.400000 +1827 2988 0.400000 +1827 2991 0.400000 +1827 3005 0.400000 +1827 3139 0.400000 +1827 3147 0.400000 +1827 3172 0.400000 +1828 5 0.400000 +1828 121 0.400000 +1828 123 0.400000 +1828 135 0.400000 +1828 275 0.400000 +1828 321 0.400000 +1828 348 0.400000 +1828 558 0.400000 +1828 604 0.400000 +1828 614 0.400000 +1828 639 0.400000 +1828 643 0.400000 +1828 710 0.400000 +1828 737 0.400000 +1828 816 0.400000 +1828 830 0.400000 +1828 847 0.400000 +1828 857 0.400000 +1828 883 0.400000 +1828 949 0.400000 +1828 1080 0.400000 +1828 1084 0.400000 +1828 1254 0.400000 +1828 1269 0.400000 +1828 1277 0.400000 +1828 1298 0.400000 +1828 1344 0.400000 +1828 1392 0.400000 +1828 1605 0.400000 +1828 1614 0.400000 +1828 1655 0.400000 +1828 1698 0.400000 +1828 1963 0.400000 +1828 1992 0.400000 +1828 2033 0.400000 +1828 2053 0.400000 +1828 2073 0.400000 +1828 2112 0.400000 +1828 2115 0.400000 +1828 2127 0.400000 +1828 2170 0.400000 +1828 2312 0.400000 +1828 2338 0.400000 +1828 2441 0.400000 +1828 2604 0.400000 +1828 2618 0.400000 +1828 2668 0.400000 +1828 2683 0.400000 +1828 2749 0.400000 +1828 2759 0.400000 +1828 2778 0.400000 +1828 2816 0.400000 +1828 2850 0.400000 +1828 2852 0.400000 +1828 2907 0.400000 +1828 2922 0.400000 +1828 2985 0.400000 +1828 3016 0.400000 +1828 3039 0.400000 +1828 3055 0.400000 +1828 3072 0.400000 +1828 3160 0.400000 +1828 3170 0.400000 +1828 3193 0.400000 +1829 2 0.400000 +1829 65 0.400000 +1829 88 0.400000 +1829 111 0.400000 +1829 233 0.400000 +1829 240 0.400000 +1829 278 0.400000 +1829 309 0.400000 +1829 360 0.400000 +1829 437 0.400000 +1829 518 0.400000 +1829 519 0.400000 +1829 530 0.400000 +1829 531 0.400000 +1829 556 0.400000 +1829 618 0.400000 +1829 676 0.400000 +1829 713 0.400000 +1829 721 0.400000 +1829 853 0.400000 +1829 855 0.400000 +1829 890 0.400000 +1829 922 0.400000 +1829 990 0.400000 +1829 1007 0.400000 +1829 1011 0.400000 +1829 1081 0.400000 +1829 1107 0.400000 +1829 1186 0.400000 +1829 1297 0.400000 +1829 1442 0.400000 +1829 1498 0.400000 +1829 1504 0.400000 +1829 1527 0.400000 +1829 1532 0.400000 +1829 1635 0.400000 +1829 1646 0.400000 +1829 1736 0.400000 +1829 1746 0.400000 +1829 1817 0.400000 +1829 1846 0.400000 +1829 1882 0.400000 +1829 1895 0.400000 +1829 1904 0.400000 +1829 1917 0.400000 +1829 1925 0.400000 +1829 1963 0.400000 +1829 1971 0.400000 +1829 2011 0.400000 +1829 2098 0.400000 +1829 2123 0.400000 +1829 2128 0.400000 +1829 2198 0.400000 +1829 2215 0.400000 +1829 2261 0.400000 +1829 2589 0.400000 +1829 2608 0.400000 +1829 2612 0.400000 +1829 2697 0.400000 +1829 2727 0.400000 +1829 2783 0.400000 +1829 2785 0.400000 +1829 2842 0.400000 +1829 2876 0.400000 +1829 2917 0.400000 +1829 2969 0.400000 +1829 3004 0.400000 +1829 3015 0.400000 +1829 3064 0.400000 +1829 3200 0.400000 +1830 95 0.400000 +1830 209 0.400000 +1830 234 0.400000 +1830 235 0.400000 +1830 273 0.400000 +1830 292 0.400000 +1830 316 0.400000 +1830 376 0.400000 +1830 379 0.400000 +1830 393 0.400000 +1830 467 0.400000 +1830 480 0.400000 +1830 620 0.400000 +1830 771 0.400000 +1830 784 0.400000 +1830 785 0.400000 +1830 814 0.400000 +1830 881 0.400000 +1830 908 0.400000 +1830 991 0.400000 +1830 1236 0.400000 +1830 1255 0.400000 +1830 1287 0.400000 +1830 1368 0.400000 +1830 1387 0.400000 +1830 1505 0.400000 +1830 1671 0.400000 +1830 1712 0.400000 +1830 1713 0.400000 +1830 1806 0.400000 +1830 1815 0.400000 +1830 1822 0.400000 +1830 1902 0.400000 +1830 1976 0.400000 +1830 2003 0.400000 +1830 2060 0.400000 +1830 2076 0.400000 +1830 2184 0.400000 +1830 2193 0.400000 +1830 2215 0.400000 +1830 2248 0.400000 +1830 2302 0.400000 +1830 2320 0.400000 +1830 2435 0.400000 +1830 2627 0.400000 +1830 2639 0.400000 +1830 2640 0.400000 +1830 2679 0.400000 +1830 2798 0.400000 +1830 2844 0.400000 +1830 2852 0.400000 +1830 2891 0.400000 +1830 2944 0.400000 +1830 2954 0.400000 +1830 2967 0.400000 +1830 2993 0.400000 +1830 3118 0.400000 +1830 3119 0.400000 +1830 3140 0.400000 +1831 11 0.400000 +1831 26 0.400000 +1831 133 0.400000 +1831 135 0.400000 +1831 158 0.400000 +1831 398 0.400000 +1831 401 0.400000 +1831 487 0.400000 +1831 493 0.400000 +1831 541 0.400000 +1831 579 0.400000 +1831 627 0.400000 +1831 629 0.400000 +1831 667 0.400000 +1831 720 0.400000 +1831 733 0.400000 +1831 785 0.400000 +1831 901 0.400000 +1831 961 0.400000 +1831 1053 0.400000 +1831 1096 0.400000 +1831 1102 0.400000 +1831 1111 0.400000 +1831 1220 0.400000 +1831 1223 0.400000 +1831 1302 0.400000 +1831 1375 0.400000 +1831 1393 0.400000 +1831 1415 0.400000 +1831 1474 0.400000 +1831 1513 0.400000 +1831 1553 0.400000 +1831 1571 0.400000 +1831 1618 0.400000 +1831 1734 0.400000 +1831 1736 0.400000 +1831 1767 0.400000 +1831 1973 0.400000 +1831 1987 0.400000 +1831 1995 0.400000 +1831 2008 0.400000 +1831 2137 0.400000 +1831 2163 0.400000 +1831 2231 0.400000 +1831 2251 0.400000 +1831 2260 0.400000 +1831 2277 0.400000 +1831 2364 0.400000 +1831 2435 0.400000 +1831 2452 0.400000 +1831 2494 0.400000 +1831 2528 0.400000 +1831 2530 0.400000 +1831 2540 0.400000 +1831 2698 0.400000 +1831 2801 0.400000 +1831 2854 0.400000 +1831 3040 0.400000 +1831 3073 0.400000 +1831 3104 0.400000 +1831 3187 0.400000 +1832 24 0.400000 +1832 115 0.400000 +1832 165 0.400000 +1832 189 0.400000 +1832 237 0.400000 +1832 240 0.400000 +1832 245 0.400000 +1832 251 0.400000 +1832 253 0.400000 +1832 372 0.400000 +1832 464 0.400000 +1832 499 0.400000 +1832 605 0.400000 +1832 613 0.400000 +1832 687 0.400000 +1832 723 0.400000 +1832 743 0.400000 +1832 770 0.400000 +1832 775 0.400000 +1832 885 0.400000 +1832 985 0.400000 +1832 986 0.400000 +1832 1154 0.400000 +1832 1182 0.400000 +1832 1233 0.400000 +1832 1257 0.400000 +1832 1347 0.400000 +1832 1412 0.400000 +1832 1441 0.400000 +1832 1451 0.400000 +1832 1535 0.400000 +1832 1569 0.400000 +1832 1583 0.400000 +1832 1611 0.400000 +1832 1615 0.400000 +1832 1702 0.400000 +1832 1732 0.400000 +1832 1742 0.400000 +1832 1931 0.400000 +1832 1993 0.400000 +1832 2044 0.400000 +1832 2075 0.400000 +1832 2124 0.400000 +1832 2126 0.400000 +1832 2210 0.400000 +1832 2234 0.400000 +1832 2247 0.400000 +1832 2345 0.400000 +1832 2392 0.400000 +1832 2432 0.400000 +1832 2433 0.400000 +1832 2444 0.400000 +1832 2463 0.400000 +1832 2494 0.400000 +1832 2531 0.400000 +1832 2545 0.400000 +1832 2570 0.400000 +1832 2591 0.400000 +1832 2595 0.400000 +1832 2681 0.400000 +1832 2709 0.400000 +1832 2731 0.400000 +1832 2768 0.400000 +1832 2786 0.400000 +1832 2822 0.400000 +1832 2828 0.400000 +1832 2838 0.400000 +1832 2888 0.400000 +1832 3013 0.400000 +1832 3057 0.400000 +1832 3178 0.400000 +1833 69 0.400000 +1833 150 0.400000 +1833 181 0.400000 +1833 242 0.400000 +1833 255 0.400000 +1833 331 0.400000 +1833 352 0.400000 +1833 359 0.400000 +1833 364 0.400000 +1833 415 0.400000 +1833 445 0.400000 +1833 448 0.400000 +1833 507 0.400000 +1833 563 0.400000 +1833 706 0.400000 +1833 772 0.400000 +1833 785 0.400000 +1833 793 0.400000 +1833 858 0.400000 +1833 869 0.400000 +1833 873 0.400000 +1833 921 0.400000 +1833 973 0.400000 +1833 978 0.400000 +1833 1009 0.400000 +1833 1079 0.400000 +1833 1091 0.400000 +1833 1161 0.400000 +1833 1174 0.400000 +1833 1178 0.400000 +1833 1180 0.400000 +1833 1214 0.400000 +1833 1230 0.400000 +1833 1254 0.400000 +1833 1278 0.400000 +1833 1301 0.400000 +1833 1403 0.400000 +1833 1413 0.400000 +1833 1541 0.400000 +1833 1576 0.400000 +1833 1646 0.400000 +1833 1710 0.400000 +1833 1726 0.400000 +1833 1748 0.400000 +1833 1764 0.400000 +1833 1811 0.400000 +1833 1914 0.400000 +1833 1920 0.400000 +1833 1933 0.400000 +1833 1951 0.400000 +1833 2033 0.400000 +1833 2078 0.400000 +1833 2127 0.400000 +1833 2187 0.400000 +1833 2201 0.400000 +1833 2233 0.400000 +1833 2243 0.400000 +1833 2244 0.400000 +1833 2253 0.400000 +1833 2292 0.400000 +1833 2359 0.400000 +1833 2447 0.400000 +1833 2508 0.400000 +1833 2550 0.400000 +1833 2554 0.400000 +1833 2618 0.400000 +1833 2757 0.400000 +1833 2868 0.400000 +1833 2893 0.400000 +1833 2945 0.400000 +1833 2962 0.400000 +1833 3007 0.400000 +1833 3164 0.400000 +1833 3189 0.400000 +1833 3190 0.400000 +1834 35 0.400000 +1834 99 0.400000 +1834 125 0.400000 +1834 263 0.400000 +1834 346 0.400000 +1834 379 0.400000 +1834 512 0.400000 +1834 519 0.400000 +1834 545 0.400000 +1834 557 0.400000 +1834 636 0.400000 +1834 641 0.400000 +1834 662 0.400000 +1834 673 0.400000 +1834 675 0.400000 +1834 703 0.400000 +1834 848 0.400000 +1834 867 0.400000 +1834 1014 0.400000 +1834 1020 0.400000 +1834 1036 0.400000 +1834 1050 0.400000 +1834 1059 0.400000 +1834 1060 0.400000 +1834 1154 0.400000 +1834 1185 0.400000 +1834 1310 0.400000 +1834 1328 0.400000 +1834 1407 0.400000 +1834 1480 0.400000 +1834 1494 0.400000 +1834 1495 0.400000 +1834 1497 0.400000 +1834 1506 0.400000 +1834 1531 0.400000 +1834 1566 0.400000 +1834 1605 0.400000 +1834 1617 0.400000 +1834 1700 0.400000 +1834 1708 0.400000 +1834 1758 0.400000 +1834 1884 0.400000 +1834 1988 0.400000 +1834 2003 0.400000 +1834 2175 0.400000 +1834 2177 0.400000 +1834 2183 0.400000 +1834 2193 0.400000 +1834 2257 0.400000 +1834 2288 0.400000 +1834 2329 0.400000 +1834 2437 0.400000 +1834 2450 0.400000 +1834 2491 0.400000 +1834 2520 0.400000 +1834 2556 0.400000 +1834 2631 0.400000 +1834 2721 0.400000 +1834 2728 0.400000 +1834 2775 0.400000 +1834 2805 0.400000 +1834 2834 0.400000 +1834 2858 0.400000 +1834 2874 0.400000 +1834 2925 0.400000 +1834 3001 0.400000 +1834 3015 0.400000 +1834 3035 0.400000 +1834 3097 0.400000 +1835 60 0.400000 +1835 65 0.400000 +1835 71 0.400000 +1835 75 0.400000 +1835 76 0.400000 +1835 101 0.400000 +1835 147 0.400000 +1835 277 0.400000 +1835 423 0.400000 +1835 527 0.400000 +1835 671 0.400000 +1835 705 0.400000 +1835 802 0.400000 +1835 810 0.400000 +1835 814 0.400000 +1835 829 0.400000 +1835 830 0.400000 +1835 844 0.400000 +1835 1113 0.400000 +1835 1190 0.400000 +1835 1210 0.400000 +1835 1250 0.400000 +1835 1368 0.400000 +1835 1422 0.400000 +1835 1578 0.400000 +1835 1647 0.400000 +1835 1658 0.400000 +1835 1718 0.400000 +1835 1751 0.400000 +1835 1816 0.400000 +1835 1831 0.400000 +1835 1852 0.400000 +1835 1999 0.400000 +1835 2004 0.400000 +1835 2065 0.400000 +1835 2067 0.400000 +1835 2144 0.400000 +1835 2179 0.400000 +1835 2251 0.400000 +1835 2304 0.400000 +1835 2313 0.400000 +1835 2348 0.400000 +1835 2379 0.400000 +1835 2457 0.400000 +1835 2468 0.400000 +1835 2493 0.400000 +1835 2548 0.400000 +1835 2555 0.400000 +1835 2558 0.400000 +1835 2655 0.400000 +1835 2749 0.400000 +1835 2762 0.400000 +1835 2811 0.400000 +1835 2820 0.400000 +1835 2883 0.400000 +1835 2914 0.400000 +1835 2965 0.400000 +1835 2971 0.400000 +1835 3034 0.400000 +1835 3068 0.400000 +1835 3110 0.400000 +1836 46 0.400000 +1836 266 0.400000 +1836 288 0.400000 +1836 309 0.400000 +1836 327 0.400000 +1836 364 0.400000 +1836 419 0.400000 +1836 508 0.400000 +1836 566 0.400000 +1836 588 0.400000 +1836 601 0.400000 +1836 611 0.400000 +1836 625 0.400000 +1836 760 0.400000 +1836 815 0.400000 +1836 877 0.400000 +1836 909 0.400000 +1836 957 0.400000 +1836 1000 0.400000 +1836 1176 0.400000 +1836 1180 0.400000 +1836 1203 0.400000 +1836 1239 0.400000 +1836 1281 0.400000 +1836 1324 0.400000 +1836 1348 0.400000 +1836 1356 0.400000 +1836 1359 0.400000 +1836 1525 0.400000 +1836 1581 0.400000 +1836 1593 0.400000 +1836 1734 0.400000 +1836 1794 0.400000 +1836 1895 0.400000 +1836 1911 0.400000 +1836 1965 0.400000 +1836 1992 0.400000 +1836 2121 0.400000 +1836 2159 0.400000 +1836 2255 0.400000 +1836 2325 0.400000 +1836 2329 0.400000 +1836 2367 0.400000 +1836 2381 0.400000 +1836 2416 0.400000 +1836 2469 0.400000 +1836 2504 0.400000 +1836 2630 0.400000 +1836 2669 0.400000 +1836 2725 0.400000 +1836 2730 0.400000 +1836 2758 0.400000 +1836 2816 0.400000 +1836 2875 0.400000 +1836 2948 0.400000 +1836 2949 0.400000 +1836 3024 0.400000 +1836 3044 0.400000 +1836 3062 0.400000 +1836 3083 0.400000 +1836 3140 0.400000 +1836 3146 0.400000 +1836 3186 0.400000 +1836 3189 0.400000 +1837 85 0.400000 +1837 101 0.400000 +1837 125 0.400000 +1837 221 0.400000 +1837 252 0.400000 +1837 296 0.400000 +1837 303 0.400000 +1837 348 0.400000 +1837 362 0.400000 +1837 471 0.400000 +1837 572 0.400000 +1837 698 0.400000 +1837 759 0.400000 +1837 805 0.400000 +1837 807 0.400000 +1837 887 0.400000 +1837 892 0.400000 +1837 944 0.400000 +1837 1007 0.400000 +1837 1035 0.400000 +1837 1047 0.400000 +1837 1100 0.400000 +1837 1115 0.400000 +1837 1182 0.400000 +1837 1199 0.400000 +1837 1247 0.400000 +1837 1258 0.400000 +1837 1283 0.400000 +1837 1310 0.400000 +1837 1354 0.400000 +1837 1377 0.400000 +1837 1414 0.400000 +1837 1482 0.400000 +1837 1509 0.400000 +1837 1510 0.400000 +1837 1518 0.400000 +1837 1529 0.400000 +1837 1619 0.400000 +1837 1862 0.400000 +1837 1891 0.400000 +1837 1940 0.400000 +1837 1942 0.400000 +1837 1951 0.400000 +1837 2000 0.400000 +1837 2019 0.400000 +1837 2115 0.400000 +1837 2191 0.400000 +1837 2213 0.400000 +1837 2259 0.400000 +1837 2267 0.400000 +1837 2321 0.400000 +1837 2354 0.400000 +1837 2359 0.400000 +1837 2374 0.400000 +1837 2379 0.400000 +1837 2473 0.400000 +1837 2498 0.400000 +1837 2580 0.400000 +1837 2684 0.400000 +1837 2699 0.400000 +1837 2779 0.400000 +1837 2785 0.400000 +1837 2806 0.400000 +1837 2973 0.400000 +1837 2974 0.400000 +1837 3073 0.400000 +1837 3083 0.400000 +1838 43 0.400000 +1838 84 0.400000 +1838 115 0.400000 +1838 185 0.400000 +1838 316 0.400000 +1838 383 0.400000 +1838 397 0.400000 +1838 434 0.400000 +1838 436 0.400000 +1838 471 0.400000 +1838 537 0.400000 +1838 631 0.400000 +1838 716 0.400000 +1838 738 0.400000 +1838 799 0.400000 +1838 1014 0.400000 +1838 1015 0.400000 +1838 1027 0.400000 +1838 1033 0.400000 +1838 1159 0.400000 +1838 1184 0.400000 +1838 1187 0.400000 +1838 1242 0.400000 +1838 1338 0.400000 +1838 1344 0.400000 +1838 1439 0.400000 +1838 1494 0.400000 +1838 1591 0.400000 +1838 1635 0.400000 +1838 1663 0.400000 +1838 1665 0.400000 +1838 1687 0.400000 +1838 1756 0.400000 +1838 1841 0.400000 +1838 1915 0.400000 +1838 1952 0.400000 +1838 1964 0.400000 +1838 2078 0.400000 +1838 2114 0.400000 +1838 2196 0.400000 +1838 2272 0.400000 +1838 2396 0.400000 +1838 2430 0.400000 +1838 2507 0.400000 +1838 2563 0.400000 +1838 2665 0.400000 +1838 2785 0.400000 +1838 2876 0.400000 +1838 2905 0.400000 +1838 2956 0.400000 +1838 3119 0.400000 +1838 3156 0.400000 +1839 41 0.400000 +1839 59 0.400000 +1839 141 0.400000 +1839 167 0.400000 +1839 209 0.400000 +1839 212 0.400000 +1839 229 0.400000 +1839 230 0.400000 +1839 296 0.400000 +1839 357 0.400000 +1839 381 0.400000 +1839 418 0.400000 +1839 538 0.400000 +1839 540 0.400000 +1839 654 0.400000 +1839 680 0.400000 +1839 696 0.400000 +1839 718 0.400000 +1839 775 0.400000 +1839 793 0.400000 +1839 847 0.400000 +1839 854 0.400000 +1839 875 0.400000 +1839 931 0.400000 +1839 965 0.400000 +1839 1043 0.400000 +1839 1093 0.400000 +1839 1110 0.400000 +1839 1115 0.400000 +1839 1341 0.400000 +1839 1365 0.400000 +1839 1369 0.400000 +1839 1410 0.400000 +1839 1425 0.400000 +1839 1596 0.400000 +1839 1600 0.400000 +1839 1690 0.400000 +1839 1698 0.400000 +1839 1704 0.400000 +1839 1802 0.400000 +1839 1828 0.400000 +1839 1844 0.400000 +1839 1864 0.400000 +1839 1880 0.400000 +1839 1883 0.400000 +1839 1901 0.400000 +1839 1966 0.400000 +1839 2008 0.400000 +1839 2038 0.400000 +1839 2042 0.400000 +1839 2093 0.400000 +1839 2130 0.400000 +1839 2147 0.400000 +1839 2215 0.400000 +1839 2266 0.400000 +1839 2283 0.400000 +1839 2322 0.400000 +1839 2373 0.400000 +1839 2504 0.400000 +1839 2631 0.400000 +1839 2666 0.400000 +1839 2672 0.400000 +1839 2684 0.400000 +1839 2762 0.400000 +1839 2765 0.400000 +1839 2790 0.400000 +1839 2799 0.400000 +1839 2848 0.400000 +1839 2864 0.400000 +1839 2891 0.400000 +1839 2926 0.400000 +1839 2956 0.400000 +1839 3027 0.400000 +1839 3036 0.400000 +1839 3067 0.400000 +1839 3083 0.400000 +1839 3131 0.400000 +1839 3178 0.400000 +1840 77 0.400000 +1840 128 0.400000 +1840 198 0.400000 +1840 229 0.400000 +1840 230 0.400000 +1840 240 0.400000 +1840 276 0.400000 +1840 390 0.400000 +1840 395 0.400000 +1840 466 0.400000 +1840 513 0.400000 +1840 586 0.400000 +1840 633 0.400000 +1840 649 0.400000 +1840 692 0.400000 +1840 698 0.400000 +1840 718 0.400000 +1840 751 0.400000 +1840 802 0.400000 +1840 897 0.400000 +1840 936 0.400000 +1840 1071 0.400000 +1840 1113 0.400000 +1840 1119 0.400000 +1840 1120 0.400000 +1840 1257 0.400000 +1840 1287 0.400000 +1840 1296 0.400000 +1840 1409 0.400000 +1840 1496 0.400000 +1840 1550 0.400000 +1840 1557 0.400000 +1840 1630 0.400000 +1840 1678 0.400000 +1840 1700 0.400000 +1840 1724 0.400000 +1840 1757 0.400000 +1840 1768 0.400000 +1840 1769 0.400000 +1840 1778 0.400000 +1840 1802 0.400000 +1840 1805 0.400000 +1840 1816 0.400000 +1840 1834 0.400000 +1840 1843 0.400000 +1840 1877 0.400000 +1840 2002 0.400000 +1840 2070 0.400000 +1840 2118 0.400000 +1840 2129 0.400000 +1840 2158 0.400000 +1840 2173 0.400000 +1840 2213 0.400000 +1840 2267 0.400000 +1840 2343 0.400000 +1840 2345 0.400000 +1840 2415 0.400000 +1840 2479 0.400000 +1840 2514 0.400000 +1840 2586 0.400000 +1840 2642 0.400000 +1840 2684 0.400000 +1840 2755 0.400000 +1840 2846 0.400000 +1840 2897 0.400000 +1840 2940 0.400000 +1840 2996 0.400000 +1840 3032 0.400000 +1840 3115 0.400000 +1841 40 0.400000 +1841 71 0.400000 +1841 76 0.400000 +1841 186 0.400000 +1841 290 0.400000 +1841 468 0.400000 +1841 569 0.400000 +1841 791 0.400000 +1841 833 0.400000 +1841 860 0.400000 +1841 906 0.400000 +1841 1105 0.400000 +1841 1227 0.400000 +1841 1248 0.400000 +1841 1283 0.400000 +1841 1315 0.400000 +1841 1350 0.400000 +1841 1395 0.400000 +1841 1416 0.400000 +1841 1425 0.400000 +1841 1447 0.400000 +1841 1473 0.400000 +1841 1565 0.400000 +1841 1602 0.400000 +1841 1692 0.400000 +1841 1722 0.400000 +1841 1735 0.400000 +1841 1766 0.400000 +1841 1821 0.400000 +1841 1854 0.400000 +1841 1890 0.400000 +1841 1913 0.400000 +1841 1970 0.400000 +1841 2013 0.400000 +1841 2103 0.400000 +1841 2106 0.400000 +1841 2161 0.400000 +1841 2208 0.400000 +1841 2223 0.400000 +1841 2246 0.400000 +1841 2263 0.400000 +1841 2335 0.400000 +1841 2463 0.400000 +1841 2470 0.400000 +1841 2477 0.400000 +1841 2493 0.400000 +1841 2591 0.400000 +1841 2711 0.400000 +1841 2892 0.400000 +1841 2923 0.400000 +1841 2991 0.400000 +1841 3161 0.400000 +1841 3174 0.400000 +1842 53 0.400000 +1842 107 0.400000 +1842 114 0.400000 +1842 192 0.400000 +1842 245 0.400000 +1842 318 0.400000 +1842 334 0.400000 +1842 341 0.400000 +1842 359 0.400000 +1842 430 0.400000 +1842 439 0.400000 +1842 469 0.400000 +1842 551 0.400000 +1842 576 0.400000 +1842 656 0.400000 +1842 723 0.400000 +1842 804 0.400000 +1842 820 0.400000 +1842 839 0.400000 +1842 977 0.400000 +1842 1034 0.400000 +1842 1066 0.400000 +1842 1122 0.400000 +1842 1218 0.400000 +1842 1323 0.400000 +1842 1332 0.400000 +1842 1465 0.400000 +1842 1623 0.400000 +1842 1643 0.400000 +1842 1645 0.400000 +1842 1689 0.400000 +1842 1709 0.400000 +1842 1723 0.400000 +1842 1729 0.400000 +1842 1754 0.400000 +1842 1756 0.400000 +1842 1772 0.400000 +1842 1810 0.400000 +1842 1865 0.400000 +1842 1867 0.400000 +1842 1877 0.400000 +1842 1906 0.400000 +1842 1965 0.400000 +1842 2019 0.400000 +1842 2094 0.400000 +1842 2157 0.400000 +1842 2247 0.400000 +1842 2261 0.400000 +1842 2265 0.400000 +1842 2314 0.400000 +1842 2377 0.400000 +1842 2382 0.400000 +1842 2476 0.400000 +1842 2581 0.400000 +1842 2591 0.400000 +1842 2680 0.400000 +1842 2696 0.400000 +1842 2777 0.400000 +1842 2818 0.400000 +1842 2854 0.400000 +1842 2889 0.400000 +1842 2902 0.400000 +1842 2949 0.400000 +1842 2998 0.400000 +1842 3045 0.400000 +1842 3047 0.400000 +1842 3136 0.400000 +1842 3170 0.400000 +1843 17 0.400000 +1843 31 0.400000 +1843 99 0.400000 +1843 122 0.400000 +1843 130 0.400000 +1843 162 0.400000 +1843 174 0.400000 +1843 224 0.400000 +1843 253 0.400000 +1843 259 0.400000 +1843 346 0.400000 +1843 358 0.400000 +1843 520 0.400000 +1843 527 0.400000 +1843 544 0.400000 +1843 642 0.400000 +1843 728 0.400000 +1843 729 0.400000 +1843 743 0.400000 +1843 779 0.400000 +1843 817 0.400000 +1843 824 0.400000 +1843 863 0.400000 +1843 1048 0.400000 +1843 1049 0.400000 +1843 1120 0.400000 +1843 1123 0.400000 +1843 1185 0.400000 +1843 1200 0.400000 +1843 1254 0.400000 +1843 1289 0.400000 +1843 1332 0.400000 +1843 1344 0.400000 +1843 1370 0.400000 +1843 1439 0.400000 +1843 1733 0.400000 +1843 1754 0.400000 +1843 1774 0.400000 +1843 1886 0.400000 +1843 1897 0.400000 +1843 1958 0.400000 +1843 1999 0.400000 +1843 2018 0.400000 +1843 2030 0.400000 +1843 2088 0.400000 +1843 2145 0.400000 +1843 2173 0.400000 +1843 2196 0.400000 +1843 2204 0.400000 +1843 2205 0.400000 +1843 2255 0.400000 +1843 2256 0.400000 +1843 2274 0.400000 +1843 2394 0.400000 +1843 2404 0.400000 +1843 2521 0.400000 +1843 2536 0.400000 +1843 2539 0.400000 +1843 2600 0.400000 +1843 2601 0.400000 +1843 2622 0.400000 +1843 2735 0.400000 +1843 2749 0.400000 +1843 2799 0.400000 +1843 2867 0.400000 +1843 2983 0.400000 +1843 2984 0.400000 +1843 3046 0.400000 +1844 113 0.400000 +1844 150 0.400000 +1844 166 0.400000 +1844 185 0.400000 +1844 191 0.400000 +1844 276 0.400000 +1844 290 0.400000 +1844 295 0.400000 +1844 337 0.400000 +1844 399 0.400000 +1844 405 0.400000 +1844 462 0.400000 +1844 539 0.400000 +1844 565 0.400000 +1844 584 0.400000 +1844 587 0.400000 +1844 630 0.400000 +1844 642 0.400000 +1844 762 0.400000 +1844 828 0.400000 +1844 978 0.400000 +1844 1000 0.400000 +1844 1056 0.400000 +1844 1079 0.400000 +1844 1089 0.400000 +1844 1094 0.400000 +1844 1251 0.400000 +1844 1311 0.400000 +1844 1377 0.400000 +1844 1407 0.400000 +1844 1427 0.400000 +1844 1454 0.400000 +1844 1495 0.400000 +1844 1561 0.400000 +1844 1587 0.400000 +1844 1588 0.400000 +1844 1595 0.400000 +1844 1637 0.400000 +1844 1654 0.400000 +1844 1658 0.400000 +1844 1666 0.400000 +1844 1688 0.400000 +1844 1735 0.400000 +1844 1744 0.400000 +1844 1761 0.400000 +1844 1851 0.400000 +1844 1856 0.400000 +1844 1981 0.400000 +1844 1998 0.400000 +1844 2079 0.400000 +1844 2102 0.400000 +1844 2184 0.400000 +1844 2269 0.400000 +1844 2287 0.400000 +1844 2391 0.400000 +1844 2444 0.400000 +1844 2477 0.400000 +1844 2527 0.400000 +1844 2544 0.400000 +1844 2619 0.400000 +1844 2658 0.400000 +1844 2660 0.400000 +1844 2834 0.400000 +1844 2840 0.400000 +1844 2862 0.400000 +1844 2910 0.400000 +1844 3019 0.400000 +1844 3079 0.400000 +1844 3196 0.400000 +1845 71 0.400000 +1845 99 0.400000 +1845 177 0.400000 +1845 262 0.400000 +1845 489 0.400000 +1845 526 0.400000 +1845 581 0.400000 +1845 625 0.400000 +1845 687 0.400000 +1845 769 0.400000 +1845 774 0.400000 +1845 808 0.400000 +1845 942 0.400000 +1845 991 0.400000 +1845 1000 0.400000 +1845 1002 0.400000 +1845 1008 0.400000 +1845 1026 0.400000 +1845 1144 0.400000 +1845 1150 0.400000 +1845 1172 0.400000 +1845 1252 0.400000 +1845 1267 0.400000 +1845 1336 0.400000 +1845 1436 0.400000 +1845 1501 0.400000 +1845 1608 0.400000 +1845 1667 0.400000 +1845 1690 0.400000 +1845 1696 0.400000 +1845 1734 0.400000 +1845 1769 0.400000 +1845 1801 0.400000 +1845 1804 0.400000 +1845 1810 0.400000 +1845 1996 0.400000 +1845 2021 0.400000 +1845 2113 0.400000 +1845 2180 0.400000 +1845 2228 0.400000 +1845 2250 0.400000 +1845 2274 0.400000 +1845 2279 0.400000 +1845 2354 0.400000 +1845 2502 0.400000 +1845 2557 0.400000 +1845 2630 0.400000 +1845 2667 0.400000 +1845 2744 0.400000 +1845 2750 0.400000 +1845 2806 0.400000 +1845 2813 0.400000 +1845 2820 0.400000 +1845 2849 0.400000 +1845 2860 0.400000 +1845 2864 0.400000 +1845 2943 0.400000 +1845 2983 0.400000 +1845 3003 0.400000 +1845 3008 0.400000 +1845 3029 0.400000 +1845 3131 0.400000 +1845 3135 0.400000 +1845 3194 0.400000 +1846 88 0.400000 +1846 90 0.400000 +1846 98 0.400000 +1846 109 0.400000 +1846 133 0.400000 +1846 155 0.400000 +1846 193 0.400000 +1846 203 0.400000 +1846 268 0.400000 +1846 284 0.400000 +1846 313 0.400000 +1846 398 0.400000 +1846 483 0.400000 +1846 498 0.400000 +1846 548 0.400000 +1846 563 0.400000 +1846 673 0.400000 +1846 908 0.400000 +1846 922 0.400000 +1846 940 0.400000 +1846 963 0.400000 +1846 1012 0.400000 +1846 1065 0.400000 +1846 1087 0.400000 +1846 1090 0.400000 +1846 1128 0.400000 +1846 1142 0.400000 +1846 1151 0.400000 +1846 1159 0.400000 +1846 1164 0.400000 +1846 1318 0.400000 +1846 1321 0.400000 +1846 1369 0.400000 +1846 1421 0.400000 +1846 1562 0.400000 +1846 1580 0.400000 +1846 1651 0.400000 +1846 1725 0.400000 +1846 1753 0.400000 +1846 1785 0.400000 +1846 1799 0.400000 +1846 1905 0.400000 +1846 1990 0.400000 +1846 2016 0.400000 +1846 2034 0.400000 +1846 2216 0.400000 +1846 2400 0.400000 +1846 2659 0.400000 +1846 2688 0.400000 +1846 2860 0.400000 +1846 2892 0.400000 +1846 2977 0.400000 +1846 3014 0.400000 +1846 3068 0.400000 +1846 3145 0.400000 +1846 3200 0.400000 +1847 123 0.400000 +1847 126 0.400000 +1847 189 0.400000 +1847 272 0.400000 +1847 405 0.400000 +1847 466 0.400000 +1847 512 0.400000 +1847 564 0.400000 +1847 583 0.400000 +1847 719 0.400000 +1847 898 0.400000 +1847 945 0.400000 +1847 954 0.400000 +1847 1063 0.400000 +1847 1134 0.400000 +1847 1186 0.400000 +1847 1317 0.400000 +1847 1318 0.400000 +1847 1332 0.400000 +1847 1461 0.400000 +1847 1488 0.400000 +1847 1495 0.400000 +1847 1571 0.400000 +1847 1616 0.400000 +1847 1674 0.400000 +1847 1861 0.400000 +1847 1953 0.400000 +1847 1963 0.400000 +1847 2042 0.400000 +1847 2060 0.400000 +1847 2092 0.400000 +1847 2193 0.400000 +1847 2292 0.400000 +1847 2318 0.400000 +1847 2323 0.400000 +1847 2402 0.400000 +1847 2459 0.400000 +1847 2493 0.400000 +1847 2577 0.400000 +1847 2582 0.400000 +1847 2626 0.400000 +1847 2660 0.400000 +1847 2782 0.400000 +1847 2851 0.400000 +1847 2892 0.400000 +1847 2955 0.400000 +1847 2977 0.400000 +1847 3040 0.400000 +1847 3047 0.400000 +1847 3059 0.400000 +1847 3076 0.400000 +1847 3102 0.400000 +1847 3105 0.400000 +1847 3128 0.400000 +1848 69 0.400000 +1848 87 0.400000 +1848 90 0.400000 +1848 125 0.400000 +1848 127 0.400000 +1848 199 0.400000 +1848 219 0.400000 +1848 287 0.400000 +1848 347 0.400000 +1848 380 0.400000 +1848 382 0.400000 +1848 428 0.400000 +1848 557 0.400000 +1848 567 0.400000 +1848 589 0.400000 +1848 696 0.400000 +1848 727 0.400000 +1848 733 0.400000 +1848 799 0.400000 +1848 822 0.400000 +1848 873 0.400000 +1848 942 0.400000 +1848 962 0.400000 +1848 994 0.400000 +1848 1014 0.400000 +1848 1053 0.400000 +1848 1082 0.400000 +1848 1127 0.400000 +1848 1164 0.400000 +1848 1249 0.400000 +1848 1258 0.400000 +1848 1311 0.400000 +1848 1344 0.400000 +1848 1388 0.400000 +1848 1392 0.400000 +1848 1399 0.400000 +1848 1415 0.400000 +1848 1428 0.400000 +1848 1451 0.400000 +1848 1459 0.400000 +1848 1495 0.400000 +1848 1627 0.400000 +1848 1638 0.400000 +1848 1657 0.400000 +1848 1697 0.400000 +1848 1753 0.400000 +1848 1776 0.400000 +1848 1856 0.400000 +1848 1863 0.400000 +1848 1900 0.400000 +1848 2013 0.400000 +1848 2017 0.400000 +1848 2039 0.400000 +1848 2042 0.400000 +1848 2079 0.400000 +1848 2084 0.400000 +1848 2117 0.400000 +1848 2280 0.400000 +1848 2290 0.400000 +1848 2347 0.400000 +1848 2352 0.400000 +1848 2394 0.400000 +1848 2449 0.400000 +1848 2546 0.400000 +1848 2548 0.400000 +1848 2554 0.400000 +1848 2664 0.400000 +1848 2725 0.400000 +1848 2782 0.400000 +1848 2835 0.400000 +1848 2893 0.400000 +1848 2991 0.400000 +1848 2995 0.400000 +1848 3019 0.400000 +1848 3132 0.400000 +1848 3147 0.400000 +1848 3163 0.400000 +1849 6 0.400000 +1849 36 0.400000 +1849 176 0.400000 +1849 241 0.400000 +1849 245 0.400000 +1849 280 0.400000 +1849 285 0.400000 +1849 404 0.400000 +1849 405 0.400000 +1849 479 0.400000 +1849 492 0.400000 +1849 585 0.400000 +1849 587 0.400000 +1849 625 0.400000 +1849 687 0.400000 +1849 739 0.400000 +1849 825 0.400000 +1849 959 0.400000 +1849 1026 0.400000 +1849 1032 0.400000 +1849 1075 0.400000 +1849 1081 0.400000 +1849 1102 0.400000 +1849 1125 0.400000 +1849 1133 0.400000 +1849 1134 0.400000 +1849 1158 0.400000 +1849 1168 0.400000 +1849 1187 0.400000 +1849 1206 0.400000 +1849 1234 0.400000 +1849 1327 0.400000 +1849 1365 0.400000 +1849 1397 0.400000 +1849 1453 0.400000 +1849 1531 0.400000 +1849 1633 0.400000 +1849 1640 0.400000 +1849 1714 0.400000 +1849 1754 0.400000 +1849 1824 0.400000 +1849 2079 0.400000 +1849 2167 0.400000 +1849 2176 0.400000 +1849 2185 0.400000 +1849 2390 0.400000 +1849 2479 0.400000 +1849 2599 0.400000 +1849 2607 0.400000 +1849 2800 0.400000 +1849 2812 0.400000 +1849 2865 0.400000 +1849 2918 0.400000 +1849 3097 0.400000 +1850 1 0.400000 +1850 50 0.400000 +1850 188 0.400000 +1850 196 0.400000 +1850 240 0.400000 +1850 263 0.400000 +1850 343 0.400000 +1850 508 0.400000 +1850 519 0.400000 +1850 539 0.400000 +1850 545 0.400000 +1850 558 0.400000 +1850 599 0.400000 +1850 624 0.400000 +1850 628 0.400000 +1850 652 0.400000 +1850 676 0.400000 +1850 725 0.400000 +1850 744 0.400000 +1850 769 0.400000 +1850 838 0.400000 +1850 855 0.400000 +1850 983 0.400000 +1850 1047 0.400000 +1850 1079 0.400000 +1850 1236 0.400000 +1850 1271 0.400000 +1850 1423 0.400000 +1850 1526 0.400000 +1850 1562 0.400000 +1850 1610 0.400000 +1850 1625 0.400000 +1850 1685 0.400000 +1850 1695 0.400000 +1850 1865 0.400000 +1850 1868 0.400000 +1850 1869 0.400000 +1850 1875 0.400000 +1850 2008 0.400000 +1850 2022 0.400000 +1850 2143 0.400000 +1850 2210 0.400000 +1850 2408 0.400000 +1850 2436 0.400000 +1850 2492 0.400000 +1850 2591 0.400000 +1850 2627 0.400000 +1850 2840 0.400000 +1850 2875 0.400000 +1850 2962 0.400000 +1850 3047 0.400000 +1850 3063 0.400000 +1851 98 0.400000 +1851 132 0.400000 +1851 136 0.400000 +1851 148 0.400000 +1851 292 0.400000 +1851 344 0.400000 +1851 422 0.400000 +1851 440 0.400000 +1851 474 0.400000 +1851 516 0.400000 +1851 574 0.400000 +1851 585 0.400000 +1851 683 0.400000 +1851 697 0.400000 +1851 704 0.400000 +1851 739 0.400000 +1851 745 0.400000 +1851 925 0.400000 +1851 984 0.400000 +1851 1064 0.400000 +1851 1080 0.400000 +1851 1087 0.400000 +1851 1138 0.400000 +1851 1201 0.400000 +1851 1215 0.400000 +1851 1329 0.400000 +1851 1388 0.400000 +1851 1397 0.400000 +1851 1543 0.400000 +1851 1843 0.400000 +1851 1844 0.400000 +1851 1863 0.400000 +1851 1900 0.400000 +1851 1912 0.400000 +1851 2060 0.400000 +1851 2116 0.400000 +1851 2276 0.400000 +1851 2297 0.400000 +1851 2391 0.400000 +1851 2397 0.400000 +1851 2415 0.400000 +1851 2490 0.400000 +1851 2504 0.400000 +1851 2518 0.400000 +1851 2532 0.400000 +1851 2534 0.400000 +1851 2555 0.400000 +1851 2640 0.400000 +1851 2685 0.400000 +1851 2693 0.400000 +1851 2750 0.400000 +1851 2941 0.400000 +1851 2989 0.400000 +1851 3023 0.400000 +1851 3046 0.400000 +1851 3059 0.400000 +1851 3115 0.400000 +1851 3198 0.400000 +1852 73 0.400000 +1852 95 0.400000 +1852 165 0.400000 +1852 210 0.400000 +1852 222 0.400000 +1852 233 0.400000 +1852 289 0.400000 +1852 293 0.400000 +1852 313 0.400000 +1852 333 0.400000 +1852 353 0.400000 +1852 372 0.400000 +1852 475 0.400000 +1852 539 0.400000 +1852 607 0.400000 +1852 699 0.400000 +1852 857 0.400000 +1852 892 0.400000 +1852 907 0.400000 +1852 924 0.400000 +1852 929 0.400000 +1852 954 0.400000 +1852 966 0.400000 +1852 982 0.400000 +1852 1013 0.400000 +1852 1169 0.400000 +1852 1190 0.400000 +1852 1416 0.400000 +1852 1423 0.400000 +1852 1482 0.400000 +1852 1493 0.400000 +1852 1518 0.400000 +1852 1549 0.400000 +1852 1553 0.400000 +1852 1559 0.400000 +1852 1599 0.400000 +1852 1601 0.400000 +1852 1622 0.400000 +1852 1664 0.400000 +1852 1691 0.400000 +1852 1717 0.400000 +1852 1761 0.400000 +1852 1775 0.400000 +1852 1835 0.400000 +1852 1966 0.400000 +1852 1993 0.400000 +1852 2072 0.400000 +1852 2095 0.400000 +1852 2156 0.400000 +1852 2171 0.400000 +1852 2180 0.400000 +1852 2207 0.400000 +1852 2232 0.400000 +1852 2249 0.400000 +1852 2349 0.400000 +1852 2369 0.400000 +1852 2395 0.400000 +1852 2605 0.400000 +1852 2615 0.400000 +1852 2652 0.400000 +1852 2742 0.400000 +1852 2790 0.400000 +1852 2897 0.400000 +1852 2915 0.400000 +1852 3070 0.400000 +1852 3150 0.400000 +1852 3160 0.400000 +1853 33 0.400000 +1853 119 0.400000 +1853 128 0.400000 +1853 256 0.400000 +1853 261 0.400000 +1853 277 0.400000 +1853 293 0.400000 +1853 374 0.400000 +1853 402 0.400000 +1853 474 0.400000 +1853 524 0.400000 +1853 530 0.400000 +1853 557 0.400000 +1853 639 0.400000 +1853 640 0.400000 +1853 650 0.400000 +1853 703 0.400000 +1853 735 0.400000 +1853 780 0.400000 +1853 803 0.400000 +1853 899 0.400000 +1853 919 0.400000 +1853 966 0.400000 +1853 968 0.400000 +1853 979 0.400000 +1853 1002 0.400000 +1853 1100 0.400000 +1853 1150 0.400000 +1853 1199 0.400000 +1853 1217 0.400000 +1853 1267 0.400000 +1853 1312 0.400000 +1853 1317 0.400000 +1853 1324 0.400000 +1853 1417 0.400000 +1853 1480 0.400000 +1853 1538 0.400000 +1853 1543 0.400000 +1853 1556 0.400000 +1853 1613 0.400000 +1853 1700 0.400000 +1853 1729 0.400000 +1853 1814 0.400000 +1853 1824 0.400000 +1853 1835 0.400000 +1853 1896 0.400000 +1853 1954 0.400000 +1853 2024 0.400000 +1853 2049 0.400000 +1853 2066 0.400000 +1853 2137 0.400000 +1853 2140 0.400000 +1853 2153 0.400000 +1853 2191 0.400000 +1853 2234 0.400000 +1853 2258 0.400000 +1853 2277 0.400000 +1853 2294 0.400000 +1853 2333 0.400000 +1853 2448 0.400000 +1853 2484 0.400000 +1853 2486 0.400000 +1853 2487 0.400000 +1853 2543 0.400000 +1853 2634 0.400000 +1853 2657 0.400000 +1853 2897 0.400000 +1853 2912 0.400000 +1853 2940 0.400000 +1853 3061 0.400000 +1853 3144 0.400000 +1854 83 0.400000 +1854 89 0.400000 +1854 234 0.400000 +1854 504 0.400000 +1854 522 0.400000 +1854 669 0.400000 +1854 701 0.400000 +1854 812 0.400000 +1854 907 0.400000 +1854 1011 0.400000 +1854 1015 0.400000 +1854 1176 0.400000 +1854 1209 0.400000 +1854 1268 0.400000 +1854 1332 0.400000 +1854 1363 0.400000 +1854 1371 0.400000 +1854 1383 0.400000 +1854 1478 0.400000 +1854 1497 0.400000 +1854 1509 0.400000 +1854 1564 0.400000 +1854 1707 0.400000 +1854 1787 0.400000 +1854 1816 0.400000 +1854 1837 0.400000 +1854 1902 0.400000 +1854 1956 0.400000 +1854 2001 0.400000 +1854 2002 0.400000 +1854 2014 0.400000 +1854 2030 0.400000 +1854 2038 0.400000 +1854 2056 0.400000 +1854 2073 0.400000 +1854 2137 0.400000 +1854 2151 0.400000 +1854 2212 0.400000 +1854 2279 0.400000 +1854 2289 0.400000 +1854 2347 0.400000 +1854 2365 0.400000 +1854 2434 0.400000 +1854 2456 0.400000 +1854 2487 0.400000 +1854 2489 0.400000 +1854 2507 0.400000 +1854 2521 0.400000 +1854 2525 0.400000 +1854 2548 0.400000 +1854 2762 0.400000 +1854 2769 0.400000 +1854 2892 0.400000 +1854 2960 0.400000 +1854 2970 0.400000 +1854 3031 0.400000 +1854 3118 0.400000 +1854 3141 0.400000 +1854 3143 0.400000 +1854 3150 0.400000 +1854 3153 0.400000 +1854 3157 0.400000 +1854 3159 0.400000 +1854 3190 0.400000 +1855 51 0.400000 +1855 54 0.400000 +1855 99 0.400000 +1855 121 0.400000 +1855 152 0.400000 +1855 230 0.400000 +1855 231 0.400000 +1855 248 0.400000 +1855 253 0.400000 +1855 261 0.400000 +1855 288 0.400000 +1855 442 0.400000 +1855 501 0.400000 +1855 519 0.400000 +1855 541 0.400000 +1855 568 0.400000 +1855 624 0.400000 +1855 640 0.400000 +1855 643 0.400000 +1855 674 0.400000 +1855 685 0.400000 +1855 754 0.400000 +1855 781 0.400000 +1855 820 0.400000 +1855 821 0.400000 +1855 896 0.400000 +1855 1032 0.400000 +1855 1203 0.400000 +1855 1214 0.400000 +1855 1293 0.400000 +1855 1300 0.400000 +1855 1398 0.400000 +1855 1519 0.400000 +1855 1602 0.400000 +1855 1667 0.400000 +1855 1803 0.400000 +1855 1834 0.400000 +1855 1916 0.400000 +1855 1948 0.400000 +1855 2048 0.400000 +1855 2204 0.400000 +1855 2283 0.400000 +1855 2290 0.400000 +1855 2299 0.400000 +1855 2555 0.400000 +1855 2665 0.400000 +1855 2747 0.400000 +1855 2915 0.400000 +1855 2993 0.400000 +1856 42 0.400000 +1856 61 0.400000 +1856 74 0.400000 +1856 88 0.400000 +1856 133 0.400000 +1856 211 0.400000 +1856 216 0.400000 +1856 308 0.400000 +1856 489 0.400000 +1856 496 0.400000 +1856 597 0.400000 +1856 669 0.400000 +1856 688 0.400000 +1856 696 0.400000 +1856 697 0.400000 +1856 712 0.400000 +1856 761 0.400000 +1856 774 0.400000 +1856 778 0.400000 +1856 815 0.400000 +1856 850 0.400000 +1856 1023 0.400000 +1856 1046 0.400000 +1856 1091 0.400000 +1856 1188 0.400000 +1856 1190 0.400000 +1856 1199 0.400000 +1856 1273 0.400000 +1856 1350 0.400000 +1856 1379 0.400000 +1856 1429 0.400000 +1856 1436 0.400000 +1856 1452 0.400000 +1856 1473 0.400000 +1856 1513 0.400000 +1856 1541 0.400000 +1856 1555 0.400000 +1856 1594 0.400000 +1856 1599 0.400000 +1856 1632 0.400000 +1856 1686 0.400000 +1856 1763 0.400000 +1856 1779 0.400000 +1856 1873 0.400000 +1856 2042 0.400000 +1856 2050 0.400000 +1856 2113 0.400000 +1856 2197 0.400000 +1856 2220 0.400000 +1856 2262 0.400000 +1856 2275 0.400000 +1856 2319 0.400000 +1856 2577 0.400000 +1856 2597 0.400000 +1856 2690 0.400000 +1856 2742 0.400000 +1856 2793 0.400000 +1856 2824 0.400000 +1856 2825 0.400000 +1856 2836 0.400000 +1856 2839 0.400000 +1856 2856 0.400000 +1856 3023 0.400000 +1856 3034 0.400000 +1856 3048 0.400000 +1856 3093 0.400000 +1856 3127 0.400000 +1856 3128 0.400000 +1857 17 0.400000 +1857 44 0.400000 +1857 272 0.400000 +1857 289 0.400000 +1857 293 0.400000 +1857 336 0.400000 +1857 403 0.400000 +1857 426 0.400000 +1857 456 0.400000 +1857 462 0.400000 +1857 514 0.400000 +1857 560 0.400000 +1857 586 0.400000 +1857 618 0.400000 +1857 642 0.400000 +1857 652 0.400000 +1857 657 0.400000 +1857 844 0.400000 +1857 864 0.400000 +1857 896 0.400000 +1857 934 0.400000 +1857 1013 0.400000 +1857 1016 0.400000 +1857 1030 0.400000 +1857 1079 0.400000 +1857 1172 0.400000 +1857 1261 0.400000 +1857 1295 0.400000 +1857 1345 0.400000 +1857 1355 0.400000 +1857 1397 0.400000 +1857 1425 0.400000 +1857 1440 0.400000 +1857 1515 0.400000 +1857 1540 0.400000 +1857 1589 0.400000 +1857 1689 0.400000 +1857 1725 0.400000 +1857 1738 0.400000 +1857 1778 0.400000 +1857 1806 0.400000 +1857 1913 0.400000 +1857 2009 0.400000 +1857 2080 0.400000 +1857 2122 0.400000 +1857 2153 0.400000 +1857 2215 0.400000 +1857 2223 0.400000 +1857 2234 0.400000 +1857 2386 0.400000 +1857 2422 0.400000 +1857 2475 0.400000 +1857 2544 0.400000 +1857 2624 0.400000 +1857 2633 0.400000 +1857 2718 0.400000 +1857 2743 0.400000 +1857 2787 0.400000 +1857 2871 0.400000 +1857 2889 0.400000 +1857 2927 0.400000 +1857 3004 0.400000 +1857 3083 0.400000 +1857 3116 0.400000 +1857 3159 0.400000 +1857 3166 0.400000 +1858 63 0.400000 +1858 90 0.400000 +1858 181 0.400000 +1858 218 0.400000 +1858 234 0.400000 +1858 270 0.400000 +1858 330 0.400000 +1858 407 0.400000 +1858 453 0.400000 +1858 472 0.400000 +1858 504 0.400000 +1858 555 0.400000 +1858 567 0.400000 +1858 578 0.400000 +1858 630 0.400000 +1858 709 0.400000 +1858 718 0.400000 +1858 733 0.400000 +1858 743 0.400000 +1858 757 0.400000 +1858 800 0.400000 +1858 895 0.400000 +1858 926 0.400000 +1858 1009 0.400000 +1858 1039 0.400000 +1858 1207 0.400000 +1858 1221 0.400000 +1858 1352 0.400000 +1858 1430 0.400000 +1858 1470 0.400000 +1858 1571 0.400000 +1858 1726 0.400000 +1858 1787 0.400000 +1858 1795 0.400000 +1858 1796 0.400000 +1858 1852 0.400000 +1858 1884 0.400000 +1858 1907 0.400000 +1858 1952 0.400000 +1858 2008 0.400000 +1858 2079 0.400000 +1858 2093 0.400000 +1858 2156 0.400000 +1858 2184 0.400000 +1858 2190 0.400000 +1858 2216 0.400000 +1858 2262 0.400000 +1858 2286 0.400000 +1858 2290 0.400000 +1858 2395 0.400000 +1858 2400 0.400000 +1858 2406 0.400000 +1858 2450 0.400000 +1858 2478 0.400000 +1858 2479 0.400000 +1858 2498 0.400000 +1858 2500 0.400000 +1858 2557 0.400000 +1858 2571 0.400000 +1858 2675 0.400000 +1858 2693 0.400000 +1858 2703 0.400000 +1858 3013 0.400000 +1858 3021 0.400000 +1858 3070 0.400000 +1858 3073 0.400000 +1858 3081 0.400000 +1858 3093 0.400000 +1858 3109 0.400000 +1858 3160 0.400000 +1858 3186 0.400000 +1859 50 0.400000 +1859 118 0.400000 +1859 134 0.400000 +1859 142 0.400000 +1859 248 0.400000 +1859 292 0.400000 +1859 297 0.400000 +1859 302 0.400000 +1859 364 0.400000 +1859 486 0.400000 +1859 524 0.400000 +1859 559 0.400000 +1859 573 0.400000 +1859 609 0.400000 +1859 619 0.400000 +1859 639 0.400000 +1859 652 0.400000 +1859 701 0.400000 +1859 779 0.400000 +1859 788 0.400000 +1859 926 0.400000 +1859 934 0.400000 +1859 958 0.400000 +1859 982 0.400000 +1859 985 0.400000 +1859 997 0.400000 +1859 1062 0.400000 +1859 1134 0.400000 +1859 1191 0.400000 +1859 1192 0.400000 +1859 1222 0.400000 +1859 1249 0.400000 +1859 1340 0.400000 +1859 1388 0.400000 +1859 1442 0.400000 +1859 1447 0.400000 +1859 1481 0.400000 +1859 1583 0.400000 +1859 1593 0.400000 +1859 1604 0.400000 +1859 1645 0.400000 +1859 1721 0.400000 +1859 1764 0.400000 +1859 1825 0.400000 +1859 1859 0.400000 +1859 1862 0.400000 +1859 1935 0.400000 +1859 1979 0.400000 +1859 1983 0.400000 +1859 2089 0.400000 +1859 2091 0.400000 +1859 2118 0.400000 +1859 2132 0.400000 +1859 2169 0.400000 +1859 2284 0.400000 +1859 2335 0.400000 +1859 2418 0.400000 +1859 2450 0.400000 +1859 2541 0.400000 +1859 2550 0.400000 +1859 2564 0.400000 +1859 2592 0.400000 +1859 2744 0.400000 +1859 2790 0.400000 +1859 2793 0.400000 +1859 2804 0.400000 +1859 2830 0.400000 +1859 2923 0.400000 +1859 2976 0.400000 +1859 3021 0.400000 +1859 3055 0.400000 +1859 3057 0.400000 +1859 3065 0.400000 +1859 3158 0.400000 +1859 3159 0.400000 +1860 17 0.400000 +1860 33 0.400000 +1860 58 0.400000 +1860 122 0.400000 +1860 146 0.400000 +1860 250 0.400000 +1860 269 0.400000 +1860 272 0.400000 +1860 396 0.400000 +1860 477 0.400000 +1860 480 0.400000 +1860 485 0.400000 +1860 490 0.400000 +1860 527 0.400000 +1860 564 0.400000 +1860 672 0.400000 +1860 691 0.400000 +1860 787 0.400000 +1860 867 0.400000 +1860 886 0.400000 +1860 1047 0.400000 +1860 1079 0.400000 +1860 1129 0.400000 +1860 1159 0.400000 +1860 1234 0.400000 +1860 1257 0.400000 +1860 1277 0.400000 +1860 1281 0.400000 +1860 1291 0.400000 +1860 1311 0.400000 +1860 1725 0.400000 +1860 1758 0.400000 +1860 1795 0.400000 +1860 1810 0.400000 +1860 1833 0.400000 +1860 1871 0.400000 +1860 1967 0.400000 +1860 2015 0.400000 +1860 2052 0.400000 +1860 2094 0.400000 +1860 2103 0.400000 +1860 2266 0.400000 +1860 2372 0.400000 +1860 2386 0.400000 +1860 2424 0.400000 +1860 2558 0.400000 +1860 2576 0.400000 +1860 2577 0.400000 +1860 2615 0.400000 +1860 2628 0.400000 +1860 2641 0.400000 +1860 2756 0.400000 +1860 2797 0.400000 +1860 2810 0.400000 +1860 2940 0.400000 +1860 2941 0.400000 +1860 3015 0.400000 +1860 3027 0.400000 +1860 3037 0.400000 +1860 3140 0.400000 +1860 3188 0.400000 +1860 3197 0.400000 +1861 18 0.400000 +1861 27 0.400000 +1861 240 0.400000 +1861 246 0.400000 +1861 249 0.400000 +1861 266 0.400000 +1861 268 0.400000 +1861 270 0.400000 +1861 368 0.400000 +1861 369 0.400000 +1861 387 0.400000 +1861 396 0.400000 +1861 405 0.400000 +1861 472 0.400000 +1861 636 0.400000 +1861 641 0.400000 +1861 722 0.400000 +1861 732 0.400000 +1861 801 0.400000 +1861 900 0.400000 +1861 903 0.400000 +1861 967 0.400000 +1861 974 0.400000 +1861 987 0.400000 +1861 1021 0.400000 +1861 1049 0.400000 +1861 1091 0.400000 +1861 1164 0.400000 +1861 1190 0.400000 +1861 1219 0.400000 +1861 1265 0.400000 +1861 1275 0.400000 +1861 1302 0.400000 +1861 1392 0.400000 +1861 1470 0.400000 +1861 1496 0.400000 +1861 1525 0.400000 +1861 1615 0.400000 +1861 1678 0.400000 +1861 1689 0.400000 +1861 1695 0.400000 +1861 1727 0.400000 +1861 1812 0.400000 +1861 1834 0.400000 +1861 1961 0.400000 +1861 2027 0.400000 +1861 2066 0.400000 +1861 2367 0.400000 +1861 2377 0.400000 +1861 2462 0.400000 +1861 2584 0.400000 +1861 2644 0.400000 +1861 2697 0.400000 +1861 2760 0.400000 +1861 2774 0.400000 +1861 2804 0.400000 +1861 2847 0.400000 +1861 2849 0.400000 +1861 2983 0.400000 +1861 3015 0.400000 +1861 3029 0.400000 +1861 3056 0.400000 +1861 3074 0.400000 +1861 3075 0.400000 +1861 3077 0.400000 +1861 3088 0.400000 +1861 3098 0.400000 +1861 3105 0.400000 +1861 3106 0.400000 +1861 3110 0.400000 +1861 3125 0.400000 +1861 3133 0.400000 +1861 3149 0.400000 +1861 3173 0.400000 +1861 3191 0.400000 +1861 3193 0.400000 +1862 21 0.400000 +1862 54 0.400000 +1862 55 0.400000 +1862 76 0.400000 +1862 180 0.400000 +1862 229 0.400000 +1862 270 0.400000 +1862 351 0.400000 +1862 389 0.400000 +1862 446 0.400000 +1862 471 0.400000 +1862 490 0.400000 +1862 573 0.400000 +1862 612 0.400000 +1862 704 0.400000 +1862 722 0.400000 +1862 743 0.400000 +1862 745 0.400000 +1862 771 0.400000 +1862 1037 0.400000 +1862 1068 0.400000 +1862 1098 0.400000 +1862 1275 0.400000 +1862 1458 0.400000 +1862 1556 0.400000 +1862 1589 0.400000 +1862 1644 0.400000 +1862 1647 0.400000 +1862 1737 0.400000 +1862 1843 0.400000 +1862 1912 0.400000 +1862 1914 0.400000 +1862 1935 0.400000 +1862 2053 0.400000 +1862 2075 0.400000 +1862 2119 0.400000 +1862 2209 0.400000 +1862 2225 0.400000 +1862 2283 0.400000 +1862 2602 0.400000 +1862 2650 0.400000 +1862 2673 0.400000 +1862 2736 0.400000 +1862 2746 0.400000 +1862 2783 0.400000 +1862 2786 0.400000 +1862 2913 0.400000 +1862 2935 0.400000 +1862 2957 0.400000 +1862 3045 0.400000 +1862 3154 0.400000 +1863 22 0.400000 +1863 30 0.400000 +1863 60 0.400000 +1863 65 0.400000 +1863 136 0.400000 +1863 187 0.400000 +1863 209 0.400000 +1863 402 0.400000 +1863 498 0.400000 +1863 524 0.400000 +1863 615 0.400000 +1863 678 0.400000 +1863 796 0.400000 +1863 808 0.400000 +1863 823 0.400000 +1863 840 0.400000 +1863 900 0.400000 +1863 949 0.400000 +1863 1003 0.400000 +1863 1057 0.400000 +1863 1107 0.400000 +1863 1129 0.400000 +1863 1137 0.400000 +1863 1168 0.400000 +1863 1178 0.400000 +1863 1213 0.400000 +1863 1267 0.400000 +1863 1338 0.400000 +1863 1355 0.400000 +1863 1382 0.400000 +1863 1406 0.400000 +1863 1421 0.400000 +1863 1560 0.400000 +1863 1581 0.400000 +1863 1610 0.400000 +1863 1686 0.400000 +1863 1731 0.400000 +1863 1740 0.400000 +1863 1744 0.400000 +1863 2029 0.400000 +1863 2229 0.400000 +1863 2324 0.400000 +1863 2505 0.400000 +1863 2671 0.400000 +1863 2706 0.400000 +1863 2784 0.400000 +1863 2792 0.400000 +1863 2871 0.400000 +1863 2893 0.400000 +1863 2974 0.400000 +1863 2992 0.400000 +1863 3007 0.400000 +1863 3035 0.400000 +1863 3059 0.400000 +1863 3063 0.400000 +1864 139 0.400000 +1864 156 0.400000 +1864 349 0.400000 +1864 361 0.400000 +1864 375 0.400000 +1864 397 0.400000 +1864 401 0.400000 +1864 406 0.400000 +1864 443 0.400000 +1864 526 0.400000 +1864 540 0.400000 +1864 721 0.400000 +1864 739 0.400000 +1864 746 0.400000 +1864 848 0.400000 +1864 914 0.400000 +1864 945 0.400000 +1864 959 0.400000 +1864 1004 0.400000 +1864 1015 0.400000 +1864 1054 0.400000 +1864 1113 0.400000 +1864 1168 0.400000 +1864 1203 0.400000 +1864 1225 0.400000 +1864 1248 0.400000 +1864 1254 0.400000 +1864 1294 0.400000 +1864 1324 0.400000 +1864 1358 0.400000 +1864 1374 0.400000 +1864 1424 0.400000 +1864 1432 0.400000 +1864 1519 0.400000 +1864 1530 0.400000 +1864 1754 0.400000 +1864 1757 0.400000 +1864 1765 0.400000 +1864 1869 0.400000 +1864 1931 0.400000 +1864 2013 0.400000 +1864 2112 0.400000 +1864 2166 0.400000 +1864 2231 0.400000 +1864 2297 0.400000 +1864 2463 0.400000 +1864 2498 0.400000 +1864 2513 0.400000 +1864 2531 0.400000 +1864 2610 0.400000 +1864 2613 0.400000 +1864 2624 0.400000 +1864 2679 0.400000 +1864 2695 0.400000 +1864 2700 0.400000 +1864 2706 0.400000 +1864 2713 0.400000 +1864 2749 0.400000 +1864 2946 0.400000 +1864 3126 0.400000 +1865 195 0.400000 +1865 323 0.400000 +1865 352 0.400000 +1865 365 0.400000 +1865 516 0.400000 +1865 603 0.400000 +1865 612 0.400000 +1865 647 0.400000 +1865 726 0.400000 +1865 773 0.400000 +1865 774 0.400000 +1865 776 0.400000 +1865 817 0.400000 +1865 975 0.400000 +1865 1019 0.400000 +1865 1028 0.400000 +1865 1134 0.400000 +1865 1217 0.400000 +1865 1239 0.400000 +1865 1241 0.400000 +1865 1247 0.400000 +1865 1264 0.400000 +1865 1302 0.400000 +1865 1414 0.400000 +1865 1449 0.400000 +1865 1459 0.400000 +1865 1520 0.400000 +1865 1583 0.400000 +1865 1587 0.400000 +1865 1589 0.400000 +1865 1614 0.400000 +1865 1631 0.400000 +1865 1657 0.400000 +1865 2023 0.400000 +1865 2098 0.400000 +1865 2102 0.400000 +1865 2208 0.400000 +1865 2219 0.400000 +1865 2238 0.400000 +1865 2256 0.400000 +1865 2300 0.400000 +1865 2308 0.400000 +1865 2370 0.400000 +1865 2425 0.400000 +1865 2437 0.400000 +1865 2462 0.400000 +1865 2491 0.400000 +1865 2504 0.400000 +1865 2544 0.400000 +1865 2554 0.400000 +1865 2568 0.400000 +1865 2610 0.400000 +1865 2633 0.400000 +1865 2705 0.400000 +1865 2711 0.400000 +1865 2748 0.400000 +1865 2758 0.400000 +1865 2762 0.400000 +1865 2809 0.400000 +1865 2822 0.400000 +1865 2849 0.400000 +1865 2864 0.400000 +1865 2995 0.400000 +1865 3000 0.400000 +1865 3032 0.400000 +1865 3064 0.400000 +1865 3113 0.400000 +1865 3157 0.400000 +1865 3163 0.400000 +1866 3 0.400000 +1866 30 0.400000 +1866 32 0.400000 +1866 96 0.400000 +1866 105 0.400000 +1866 159 0.400000 +1866 212 0.400000 +1866 221 0.400000 +1866 253 0.400000 +1866 261 0.400000 +1866 276 0.400000 +1866 307 0.400000 +1866 373 0.400000 +1866 414 0.400000 +1866 500 0.400000 +1866 554 0.400000 +1866 566 0.400000 +1866 610 0.400000 +1866 641 0.400000 +1866 643 0.400000 +1866 675 0.400000 +1866 692 0.400000 +1866 736 0.400000 +1866 890 0.400000 +1866 1004 0.400000 +1866 1047 0.400000 +1866 1054 0.400000 +1866 1096 0.400000 +1866 1396 0.400000 +1866 1438 0.400000 +1866 1442 0.400000 +1866 1489 0.400000 +1866 1592 0.400000 +1866 1611 0.400000 +1866 1704 0.400000 +1866 1746 0.400000 +1866 1832 0.400000 +1866 1844 0.400000 +1866 1994 0.400000 +1866 1997 0.400000 +1866 2062 0.400000 +1866 2089 0.400000 +1866 2110 0.400000 +1866 2135 0.400000 +1866 2194 0.400000 +1866 2248 0.400000 +1866 2280 0.400000 +1866 2290 0.400000 +1866 2294 0.400000 +1866 2332 0.400000 +1866 2343 0.400000 +1866 2420 0.400000 +1866 2432 0.400000 +1866 2512 0.400000 +1866 2597 0.400000 +1866 2734 0.400000 +1866 2735 0.400000 +1866 2776 0.400000 +1866 2824 0.400000 +1866 2837 0.400000 +1866 2854 0.400000 +1866 2863 0.400000 +1866 2870 0.400000 +1866 3013 0.400000 +1866 3075 0.400000 +1866 3114 0.400000 +1866 3125 0.400000 +1867 107 0.400000 +1867 123 0.400000 +1867 144 0.400000 +1867 205 0.400000 +1867 237 0.400000 +1867 346 0.400000 +1867 352 0.400000 +1867 358 0.400000 +1867 398 0.400000 +1867 421 0.400000 +1867 423 0.400000 +1867 533 0.400000 +1867 542 0.400000 +1867 556 0.400000 +1867 649 0.400000 +1867 684 0.400000 +1867 801 0.400000 +1867 829 0.400000 +1867 914 0.400000 +1867 923 0.400000 +1867 926 0.400000 +1867 938 0.400000 +1867 945 0.400000 +1867 1004 0.400000 +1867 1035 0.400000 +1867 1103 0.400000 +1867 1230 0.400000 +1867 1244 0.400000 +1867 1256 0.400000 +1867 1304 0.400000 +1867 1315 0.400000 +1867 1365 0.400000 +1867 1399 0.400000 +1867 1402 0.400000 +1867 1440 0.400000 +1867 1527 0.400000 +1867 1550 0.400000 +1867 1560 0.400000 +1867 1563 0.400000 +1867 1584 0.400000 +1867 1693 0.400000 +1867 1702 0.400000 +1867 1711 0.400000 +1867 1775 0.400000 +1867 1805 0.400000 +1867 1888 0.400000 +1867 1921 0.400000 +1867 1927 0.400000 +1867 1985 0.400000 +1867 2028 0.400000 +1867 2074 0.400000 +1867 2094 0.400000 +1867 2121 0.400000 +1867 2149 0.400000 +1867 2179 0.400000 +1867 2195 0.400000 +1867 2214 0.400000 +1867 2229 0.400000 +1867 2232 0.400000 +1867 2266 0.400000 +1867 2336 0.400000 +1867 2337 0.400000 +1867 2374 0.400000 +1867 2380 0.400000 +1867 2422 0.400000 +1867 2461 0.400000 +1867 2532 0.400000 +1867 2590 0.400000 +1867 2676 0.400000 +1867 2738 0.400000 +1867 2787 0.400000 +1867 2849 0.400000 +1867 2892 0.400000 +1867 3001 0.400000 +1867 3021 0.400000 +1867 3056 0.400000 +1867 3179 0.400000 +1868 31 0.400000 +1868 110 0.400000 +1868 137 0.400000 +1868 198 0.400000 +1868 257 0.400000 +1868 258 0.400000 +1868 298 0.400000 +1868 335 0.400000 +1868 381 0.400000 +1868 443 0.400000 +1868 477 0.400000 +1868 533 0.400000 +1868 561 0.400000 +1868 573 0.400000 +1868 587 0.400000 +1868 605 0.400000 +1868 642 0.400000 +1868 656 0.400000 +1868 664 0.400000 +1868 855 0.400000 +1868 856 0.400000 +1868 959 0.400000 +1868 1096 0.400000 +1868 1147 0.400000 +1868 1199 0.400000 +1868 1204 0.400000 +1868 1216 0.400000 +1868 1339 0.400000 +1868 1382 0.400000 +1868 1387 0.400000 +1868 1428 0.400000 +1868 1455 0.400000 +1868 1500 0.400000 +1868 1505 0.400000 +1868 1539 0.400000 +1868 1542 0.400000 +1868 1601 0.400000 +1868 1665 0.400000 +1868 1741 0.400000 +1868 1799 0.400000 +1868 1930 0.400000 +1868 1941 0.400000 +1868 1964 0.400000 +1868 2048 0.400000 +1868 2214 0.400000 +1868 2290 0.400000 +1868 2337 0.400000 +1868 2459 0.400000 +1868 2536 0.400000 +1868 2571 0.400000 +1868 2584 0.400000 +1868 2592 0.400000 +1868 2606 0.400000 +1868 2709 0.400000 +1868 2766 0.400000 +1868 2774 0.400000 +1868 2791 0.400000 +1869 220 0.400000 +1869 236 0.400000 +1869 303 0.400000 +1869 345 0.400000 +1869 365 0.400000 +1869 456 0.400000 +1869 509 0.400000 +1869 514 0.400000 +1869 535 0.400000 +1869 536 0.400000 +1869 549 0.400000 +1869 574 0.400000 +1869 799 0.400000 +1869 897 0.400000 +1869 945 0.400000 +1869 956 0.400000 +1869 980 0.400000 +1869 995 0.400000 +1869 999 0.400000 +1869 1031 0.400000 +1869 1099 0.400000 +1869 1188 0.400000 +1869 1221 0.400000 +1869 1229 0.400000 +1869 1233 0.400000 +1869 1302 0.400000 +1869 1343 0.400000 +1869 1349 0.400000 +1869 1440 0.400000 +1869 1461 0.400000 +1869 1520 0.400000 +1869 1529 0.400000 +1869 1633 0.400000 +1869 1638 0.400000 +1869 1642 0.400000 +1869 1969 0.400000 +1869 2022 0.400000 +1869 2089 0.400000 +1869 2126 0.400000 +1869 2151 0.400000 +1869 2189 0.400000 +1869 2240 0.400000 +1869 2247 0.400000 +1869 2258 0.400000 +1869 2290 0.400000 +1869 2336 0.400000 +1869 2342 0.400000 +1869 2357 0.400000 +1869 2370 0.400000 +1869 2415 0.400000 +1869 2505 0.400000 +1869 2509 0.400000 +1869 2581 0.400000 +1869 2660 0.400000 +1869 2680 0.400000 +1869 2699 0.400000 +1869 2768 0.400000 +1869 2834 0.400000 +1869 2835 0.400000 +1869 2846 0.400000 +1869 2860 0.400000 +1869 2865 0.400000 +1869 2883 0.400000 +1869 2973 0.400000 +1869 3059 0.400000 +1869 3065 0.400000 +1869 3160 0.400000 +1870 124 0.400000 +1870 144 0.400000 +1870 192 0.400000 +1870 279 0.400000 +1870 285 0.400000 +1870 352 0.400000 +1870 365 0.400000 +1870 417 0.400000 +1870 423 0.400000 +1870 517 0.400000 +1870 532 0.400000 +1870 589 0.400000 +1870 617 0.400000 +1870 628 0.400000 +1870 852 0.400000 +1870 942 0.400000 +1870 950 0.400000 +1870 982 0.400000 +1870 1102 0.400000 +1870 1154 0.400000 +1870 1256 0.400000 +1870 1257 0.400000 +1870 1271 0.400000 +1870 1287 0.400000 +1870 1326 0.400000 +1870 1349 0.400000 +1870 1375 0.400000 +1870 1392 0.400000 +1870 1482 0.400000 +1870 1519 0.400000 +1870 1559 0.400000 +1870 1651 0.400000 +1870 1715 0.400000 +1870 1724 0.400000 +1870 1779 0.400000 +1870 1993 0.400000 +1870 2052 0.400000 +1870 2153 0.400000 +1870 2190 0.400000 +1870 2263 0.400000 +1870 2383 0.400000 +1870 2492 0.400000 +1870 2513 0.400000 +1870 2533 0.400000 +1870 2567 0.400000 +1870 2784 0.400000 +1870 3010 0.400000 +1870 3069 0.400000 +1870 3071 0.400000 +1870 3093 0.400000 +1871 67 0.400000 +1871 121 0.400000 +1871 134 0.400000 +1871 156 0.400000 +1871 225 0.400000 +1871 230 0.400000 +1871 280 0.400000 +1871 300 0.400000 +1871 344 0.400000 +1871 365 0.400000 +1871 440 0.400000 +1871 513 0.400000 +1871 675 0.400000 +1871 737 0.400000 +1871 744 0.400000 +1871 798 0.400000 +1871 813 0.400000 +1871 883 0.400000 +1871 884 0.400000 +1871 991 0.400000 +1871 1004 0.400000 +1871 1022 0.400000 +1871 1246 0.400000 +1871 1266 0.400000 +1871 1316 0.400000 +1871 1341 0.400000 +1871 1356 0.400000 +1871 1379 0.400000 +1871 1475 0.400000 +1871 1539 0.400000 +1871 1549 0.400000 +1871 1671 0.400000 +1871 1678 0.400000 +1871 1702 0.400000 +1871 1761 0.400000 +1871 1819 0.400000 +1871 1862 0.400000 +1871 1877 0.400000 +1871 1946 0.400000 +1871 2008 0.400000 +1871 2066 0.400000 +1871 2071 0.400000 +1871 2142 0.400000 +1871 2254 0.400000 +1871 2313 0.400000 +1871 2338 0.400000 +1871 2371 0.400000 +1871 2447 0.400000 +1871 2501 0.400000 +1871 2519 0.400000 +1871 2574 0.400000 +1871 2631 0.400000 +1871 2639 0.400000 +1871 2739 0.400000 +1871 2777 0.400000 +1871 2783 0.400000 +1871 2826 0.400000 +1871 2999 0.400000 +1871 3011 0.400000 +1871 3019 0.400000 +1871 3027 0.400000 +1871 3068 0.400000 +1871 3091 0.400000 +1871 3189 0.400000 +1872 68 0.400000 +1872 73 0.400000 +1872 265 0.400000 +1872 313 0.400000 +1872 352 0.400000 +1872 361 0.400000 +1872 400 0.400000 +1872 453 0.400000 +1872 474 0.400000 +1872 538 0.400000 +1872 563 0.400000 +1872 569 0.400000 +1872 575 0.400000 +1872 629 0.400000 +1872 659 0.400000 +1872 681 0.400000 +1872 777 0.400000 +1872 811 0.400000 +1872 927 0.400000 +1872 1082 0.400000 +1872 1105 0.400000 +1872 1141 0.400000 +1872 1166 0.400000 +1872 1233 0.400000 +1872 1296 0.400000 +1872 1319 0.400000 +1872 1330 0.400000 +1872 1377 0.400000 +1872 1391 0.400000 +1872 1515 0.400000 +1872 1628 0.400000 +1872 1651 0.400000 +1872 1658 0.400000 +1872 1756 0.400000 +1872 1775 0.400000 +1872 1850 0.400000 +1872 1865 0.400000 +1872 1872 0.400000 +1872 2000 0.400000 +1872 2018 0.400000 +1872 2021 0.400000 +1872 2057 0.400000 +1872 2259 0.400000 +1872 2266 0.400000 +1872 2282 0.400000 +1872 2331 0.400000 +1872 2376 0.400000 +1872 2438 0.400000 +1872 2442 0.400000 +1872 2535 0.400000 +1872 2581 0.400000 +1872 2717 0.400000 +1872 2751 0.400000 +1872 2765 0.400000 +1872 2813 0.400000 +1872 2861 0.400000 +1872 2911 0.400000 +1872 2964 0.400000 +1872 3013 0.400000 +1872 3064 0.400000 +1872 3091 0.400000 +1872 3097 0.400000 +1872 3130 0.400000 +1872 3157 0.400000 +1872 3199 0.400000 +1873 34 0.400000 +1873 131 0.400000 +1873 135 0.400000 +1873 206 0.400000 +1873 229 0.400000 +1873 255 0.400000 +1873 378 0.400000 +1873 397 0.400000 +1873 442 0.400000 +1873 452 0.400000 +1873 553 0.400000 +1873 626 0.400000 +1873 633 0.400000 +1873 728 0.400000 +1873 758 0.400000 +1873 836 0.400000 +1873 876 0.400000 +1873 897 0.400000 +1873 918 0.400000 +1873 983 0.400000 +1873 1021 0.400000 +1873 1148 0.400000 +1873 1182 0.400000 +1873 1222 0.400000 +1873 1279 0.400000 +1873 1329 0.400000 +1873 1411 0.400000 +1873 1413 0.400000 +1873 1501 0.400000 +1873 1542 0.400000 +1873 1566 0.400000 +1873 1647 0.400000 +1873 1702 0.400000 +1873 1809 0.400000 +1873 1826 0.400000 +1873 1918 0.400000 +1873 2013 0.400000 +1873 2096 0.400000 +1873 2196 0.400000 +1873 2236 0.400000 +1873 2238 0.400000 +1873 2417 0.400000 +1873 2518 0.400000 +1873 2527 0.400000 +1873 2539 0.400000 +1873 2598 0.400000 +1873 2708 0.400000 +1873 2747 0.400000 +1873 2752 0.400000 +1873 2763 0.400000 +1873 2778 0.400000 +1873 2916 0.400000 +1873 2938 0.400000 +1873 2975 0.400000 +1873 3040 0.400000 +1873 3058 0.400000 +1873 3181 0.400000 +1874 118 0.400000 +1874 271 0.400000 +1874 419 0.400000 +1874 490 0.400000 +1874 497 0.400000 +1874 530 0.400000 +1874 603 0.400000 +1874 715 0.400000 +1874 748 0.400000 +1874 758 0.400000 +1874 980 0.400000 +1874 1090 0.400000 +1874 1211 0.400000 +1874 1233 0.400000 +1874 1246 0.400000 +1874 1422 0.400000 +1874 1518 0.400000 +1874 1652 0.400000 +1874 1687 0.400000 +1874 1815 0.400000 +1874 1835 0.400000 +1874 1879 0.400000 +1874 1880 0.400000 +1874 1940 0.400000 +1874 2012 0.400000 +1874 2037 0.400000 +1874 2165 0.400000 +1874 2248 0.400000 +1874 2257 0.400000 +1874 2262 0.400000 +1874 2264 0.400000 +1874 2266 0.400000 +1874 2271 0.400000 +1874 2304 0.400000 +1874 2406 0.400000 +1874 2440 0.400000 +1874 2444 0.400000 +1874 2473 0.400000 +1874 2485 0.400000 +1874 2503 0.400000 +1874 2542 0.400000 +1874 2578 0.400000 +1874 2599 0.400000 +1874 2697 0.400000 +1874 2703 0.400000 +1874 2748 0.400000 +1874 2767 0.400000 +1874 2775 0.400000 +1874 2829 0.400000 +1874 2840 0.400000 +1874 2880 0.400000 +1874 2899 0.400000 +1874 3003 0.400000 +1874 3032 0.400000 +1874 3049 0.400000 +1874 3159 0.400000 +1875 74 0.400000 +1875 96 0.400000 +1875 112 0.400000 +1875 172 0.400000 +1875 188 0.400000 +1875 271 0.400000 +1875 277 0.400000 +1875 285 0.400000 +1875 477 0.400000 +1875 581 0.400000 +1875 653 0.400000 +1875 700 0.400000 +1875 908 0.400000 +1875 1020 0.400000 +1875 1067 0.400000 +1875 1207 0.400000 +1875 1251 0.400000 +1875 1289 0.400000 +1875 1363 0.400000 +1875 1407 0.400000 +1875 1498 0.400000 +1875 1516 0.400000 +1875 1576 0.400000 +1875 1650 0.400000 +1875 1731 0.400000 +1875 1785 0.400000 +1875 1823 0.400000 +1875 1938 0.400000 +1875 2019 0.400000 +1875 2144 0.400000 +1875 2170 0.400000 +1875 2333 0.400000 +1875 2365 0.400000 +1875 2371 0.400000 +1875 2453 0.400000 +1875 2492 0.400000 +1875 2493 0.400000 +1875 2515 0.400000 +1875 2587 0.400000 +1875 2590 0.400000 +1875 2651 0.400000 +1875 2703 0.400000 +1875 2705 0.400000 +1875 2750 0.400000 +1875 2798 0.400000 +1875 2827 0.400000 +1875 2843 0.400000 +1875 2847 0.400000 +1875 2967 0.400000 +1875 2988 0.400000 +1875 2991 0.400000 +1875 3003 0.400000 +1875 3011 0.400000 +1875 3079 0.400000 +1875 3097 0.400000 +1875 3114 0.400000 +1875 3151 0.400000 +1876 114 0.400000 +1876 154 0.400000 +1876 163 0.400000 +1876 229 0.400000 +1876 277 0.400000 +1876 280 0.400000 +1876 318 0.400000 +1876 698 0.400000 +1876 784 0.400000 +1876 848 0.400000 +1876 849 0.400000 +1876 879 0.400000 +1876 1044 0.400000 +1876 1149 0.400000 +1876 1165 0.400000 +1876 1315 0.400000 +1876 1344 0.400000 +1876 1391 0.400000 +1876 1427 0.400000 +1876 1500 0.400000 +1876 1508 0.400000 +1876 1563 0.400000 +1876 1600 0.400000 +1876 1781 0.400000 +1876 1791 0.400000 +1876 1850 0.400000 +1876 1853 0.400000 +1876 1873 0.400000 +1876 1888 0.400000 +1876 1915 0.400000 +1876 1998 0.400000 +1876 2013 0.400000 +1876 2130 0.400000 +1876 2188 0.400000 +1876 2192 0.400000 +1876 2269 0.400000 +1876 2301 0.400000 +1876 2326 0.400000 +1876 2345 0.400000 +1876 2389 0.400000 +1876 2442 0.400000 +1876 2448 0.400000 +1876 2520 0.400000 +1876 2584 0.400000 +1876 2590 0.400000 +1876 2694 0.400000 +1876 2705 0.400000 +1876 2855 0.400000 +1876 2878 0.400000 +1876 2892 0.400000 +1876 2921 0.400000 +1876 2987 0.400000 +1876 3025 0.400000 +1876 3155 0.400000 +1876 3171 0.400000 +1877 12 0.400000 +1877 110 0.400000 +1877 123 0.400000 +1877 173 0.400000 +1877 228 0.400000 +1877 236 0.400000 +1877 332 0.400000 +1877 375 0.400000 +1877 481 0.400000 +1877 488 0.400000 +1877 545 0.400000 +1877 558 0.400000 +1877 580 0.400000 +1877 625 0.400000 +1877 650 0.400000 +1877 673 0.400000 +1877 712 0.400000 +1877 745 0.400000 +1877 771 0.400000 +1877 789 0.400000 +1877 918 0.400000 +1877 1080 0.400000 +1877 1214 0.400000 +1877 1355 0.400000 +1877 1411 0.400000 +1877 1418 0.400000 +1877 1453 0.400000 +1877 1454 0.400000 +1877 1457 0.400000 +1877 1584 0.400000 +1877 1673 0.400000 +1877 1674 0.400000 +1877 1729 0.400000 +1877 1763 0.400000 +1877 1777 0.400000 +1877 1823 0.400000 +1877 1923 0.400000 +1877 2042 0.400000 +1877 2071 0.400000 +1877 2080 0.400000 +1877 2090 0.400000 +1877 2092 0.400000 +1877 2222 0.400000 +1877 2250 0.400000 +1877 2304 0.400000 +1877 2586 0.400000 +1877 2622 0.400000 +1877 2639 0.400000 +1877 2661 0.400000 +1877 2664 0.400000 +1877 2805 0.400000 +1877 2891 0.400000 +1877 2896 0.400000 +1877 2953 0.400000 +1877 3129 0.400000 +1878 58 0.400000 +1878 72 0.400000 +1878 160 0.400000 +1878 170 0.400000 +1878 190 0.400000 +1878 301 0.400000 +1878 321 0.400000 +1878 381 0.400000 +1878 575 0.400000 +1878 693 0.400000 +1878 696 0.400000 +1878 752 0.400000 +1878 800 0.400000 +1878 844 0.400000 +1878 908 0.400000 +1878 1047 0.400000 +1878 1172 0.400000 +1878 1197 0.400000 +1878 1208 0.400000 +1878 1265 0.400000 +1878 1366 0.400000 +1878 1459 0.400000 +1878 1517 0.400000 +1878 1519 0.400000 +1878 1552 0.400000 +1878 1668 0.400000 +1878 1788 0.400000 +1878 1842 0.400000 +1878 1890 0.400000 +1878 1904 0.400000 +1878 1996 0.400000 +1878 2093 0.400000 +1878 2098 0.400000 +1878 2140 0.400000 +1878 2181 0.400000 +1878 2206 0.400000 +1878 2266 0.400000 +1878 2379 0.400000 +1878 2414 0.400000 +1878 2443 0.400000 +1878 2510 0.400000 +1878 2511 0.400000 +1878 2527 0.400000 +1878 2532 0.400000 +1878 2537 0.400000 +1878 2653 0.400000 +1878 2683 0.400000 +1878 2774 0.400000 +1878 2805 0.400000 +1878 2851 0.400000 +1878 2868 0.400000 +1878 2932 0.400000 +1878 2934 0.400000 +1878 2953 0.400000 +1878 2954 0.400000 +1878 2958 0.400000 +1878 3045 0.400000 +1878 3071 0.400000 +1878 3084 0.400000 +1878 3167 0.400000 +1878 3196 0.400000 +1879 60 0.400000 +1879 82 0.400000 +1879 96 0.400000 +1879 158 0.400000 +1879 201 0.400000 +1879 246 0.400000 +1879 290 0.400000 +1879 331 0.400000 +1879 334 0.400000 +1879 365 0.400000 +1879 368 0.400000 +1879 377 0.400000 +1879 429 0.400000 +1879 443 0.400000 +1879 535 0.400000 +1879 540 0.400000 +1879 545 0.400000 +1879 551 0.400000 +1879 627 0.400000 +1879 660 0.400000 +1879 671 0.400000 +1879 694 0.400000 +1879 707 0.400000 +1879 1008 0.400000 +1879 1017 0.400000 +1879 1033 0.400000 +1879 1085 0.400000 +1879 1144 0.400000 +1879 1153 0.400000 +1879 1160 0.400000 +1879 1190 0.400000 +1879 1231 0.400000 +1879 1286 0.400000 +1879 1306 0.400000 +1879 1381 0.400000 +1879 1491 0.400000 +1879 1538 0.400000 +1879 1544 0.400000 +1879 1645 0.400000 +1879 1672 0.400000 +1879 1925 0.400000 +1879 1941 0.400000 +1879 1952 0.400000 +1879 2152 0.400000 +1879 2162 0.400000 +1879 2318 0.400000 +1879 2323 0.400000 +1879 2353 0.400000 +1879 2447 0.400000 +1879 2452 0.400000 +1879 2566 0.400000 +1879 2589 0.400000 +1879 2639 0.400000 +1879 2681 0.400000 +1879 2755 0.400000 +1879 2766 0.400000 +1879 2789 0.400000 +1879 2826 0.400000 +1879 2855 0.400000 +1879 2931 0.400000 +1879 2936 0.400000 +1879 3034 0.400000 +1879 3090 0.400000 +1879 3145 0.400000 +1880 32 0.400000 +1880 43 0.400000 +1880 78 0.400000 +1880 81 0.400000 +1880 88 0.400000 +1880 117 0.400000 +1880 236 0.400000 +1880 454 0.400000 +1880 524 0.400000 +1880 570 0.400000 +1880 606 0.400000 +1880 621 0.400000 +1880 671 0.400000 +1880 697 0.400000 +1880 746 0.400000 +1880 747 0.400000 +1880 775 0.400000 +1880 917 0.400000 +1880 977 0.400000 +1880 997 0.400000 +1880 1033 0.400000 +1880 1097 0.400000 +1880 1112 0.400000 +1880 1128 0.400000 +1880 1134 0.400000 +1880 1176 0.400000 +1880 1273 0.400000 +1880 1275 0.400000 +1880 1279 0.400000 +1880 1296 0.400000 +1880 1332 0.400000 +1880 1368 0.400000 +1880 1457 0.400000 +1880 1484 0.400000 +1880 1599 0.400000 +1880 1719 0.400000 +1880 1731 0.400000 +1880 1785 0.400000 +1880 1807 0.400000 +1880 1811 0.400000 +1880 1820 0.400000 +1880 1843 0.400000 +1880 1911 0.400000 +1880 1976 0.400000 +1880 2011 0.400000 +1880 2015 0.400000 +1880 2036 0.400000 +1880 2039 0.400000 +1880 2067 0.400000 +1880 2145 0.400000 +1880 2175 0.400000 +1880 2187 0.400000 +1880 2261 0.400000 +1880 2322 0.400000 +1880 2355 0.400000 +1880 2424 0.400000 +1880 2482 0.400000 +1880 2500 0.400000 +1880 2581 0.400000 +1880 2617 0.400000 +1880 2753 0.400000 +1880 2780 0.400000 +1880 2816 0.400000 +1880 2833 0.400000 +1880 2850 0.400000 +1880 2950 0.400000 +1880 2953 0.400000 +1880 3011 0.400000 +1880 3187 0.400000 +1881 24 0.400000 +1881 40 0.400000 +1881 46 0.400000 +1881 56 0.400000 +1881 78 0.400000 +1881 136 0.400000 +1881 155 0.400000 +1881 257 0.400000 +1881 294 0.400000 +1881 320 0.400000 +1881 344 0.400000 +1881 410 0.400000 +1881 434 0.400000 +1881 447 0.400000 +1881 485 0.400000 +1881 500 0.400000 +1881 542 0.400000 +1881 548 0.400000 +1881 611 0.400000 +1881 621 0.400000 +1881 645 0.400000 +1881 646 0.400000 +1881 649 0.400000 +1881 665 0.400000 +1881 715 0.400000 +1881 871 0.400000 +1881 983 0.400000 +1881 1011 0.400000 +1881 1127 0.400000 +1881 1171 0.400000 +1881 1217 0.400000 +1881 1328 0.400000 +1881 1492 0.400000 +1881 1567 0.400000 +1881 1640 0.400000 +1881 1665 0.400000 +1881 1712 0.400000 +1881 1790 0.400000 +1881 1878 0.400000 +1881 1888 0.400000 +1881 1907 0.400000 +1881 1940 0.400000 +1881 1953 0.400000 +1881 1995 0.400000 +1881 2116 0.400000 +1881 2145 0.400000 +1881 2151 0.400000 +1881 2220 0.400000 +1881 2231 0.400000 +1881 2355 0.400000 +1881 2413 0.400000 +1881 2444 0.400000 +1881 2445 0.400000 +1881 2497 0.400000 +1881 2558 0.400000 +1881 2599 0.400000 +1881 2629 0.400000 +1881 2707 0.400000 +1881 2940 0.400000 +1881 2960 0.400000 +1881 2968 0.400000 +1881 3075 0.400000 +1881 3103 0.400000 +1882 118 0.400000 +1882 243 0.400000 +1882 256 0.400000 +1882 265 0.400000 +1882 278 0.400000 +1882 347 0.400000 +1882 452 0.400000 +1882 457 0.400000 +1882 600 0.400000 +1882 655 0.400000 +1882 721 0.400000 +1882 728 0.400000 +1882 752 0.400000 +1882 848 0.400000 +1882 864 0.400000 +1882 932 0.400000 +1882 943 0.400000 +1882 963 0.400000 +1882 978 0.400000 +1882 1010 0.400000 +1882 1018 0.400000 +1882 1068 0.400000 +1882 1096 0.400000 +1882 1182 0.400000 +1882 1203 0.400000 +1882 1233 0.400000 +1882 1314 0.400000 +1882 1398 0.400000 +1882 1498 0.400000 +1882 1537 0.400000 +1882 1549 0.400000 +1882 1599 0.400000 +1882 1622 0.400000 +1882 1677 0.400000 +1882 1681 0.400000 +1882 1685 0.400000 +1882 1697 0.400000 +1882 1806 0.400000 +1882 1929 0.400000 +1882 1947 0.400000 +1882 2019 0.400000 +1882 2133 0.400000 +1882 2141 0.400000 +1882 2236 0.400000 +1882 2242 0.400000 +1882 2320 0.400000 +1882 2337 0.400000 +1882 2374 0.400000 +1882 2419 0.400000 +1882 2521 0.400000 +1882 2578 0.400000 +1882 2600 0.400000 +1882 2609 0.400000 +1882 2683 0.400000 +1882 2703 0.400000 +1882 2764 0.400000 +1882 2780 0.400000 +1882 2796 0.400000 +1882 2927 0.400000 +1882 2937 0.400000 +1882 2940 0.400000 +1882 2988 0.400000 +1882 3042 0.400000 +1882 3149 0.400000 +1882 3157 0.400000 +1882 3195 0.400000 +1883 25 0.400000 +1883 44 0.400000 +1883 79 0.400000 +1883 126 0.400000 +1883 260 0.400000 +1883 283 0.400000 +1883 302 0.400000 +1883 377 0.400000 +1883 378 0.400000 +1883 464 0.400000 +1883 468 0.400000 +1883 615 0.400000 +1883 754 0.400000 +1883 786 0.400000 +1883 848 0.400000 +1883 868 0.400000 +1883 910 0.400000 +1883 930 0.400000 +1883 1041 0.400000 +1883 1085 0.400000 +1883 1148 0.400000 +1883 1289 0.400000 +1883 1297 0.400000 +1883 1425 0.400000 +1883 1430 0.400000 +1883 1565 0.400000 +1883 1599 0.400000 +1883 1626 0.400000 +1883 1660 0.400000 +1883 1695 0.400000 +1883 1724 0.400000 +1883 1763 0.400000 +1883 1807 0.400000 +1883 1865 0.400000 +1883 1934 0.400000 +1883 1956 0.400000 +1883 2075 0.400000 +1883 2105 0.400000 +1883 2164 0.400000 +1883 2194 0.400000 +1883 2221 0.400000 +1883 2228 0.400000 +1883 2260 0.400000 +1883 2304 0.400000 +1883 2323 0.400000 +1883 2339 0.400000 +1883 2344 0.400000 +1883 2394 0.400000 +1883 2473 0.400000 +1883 2477 0.400000 +1883 2603 0.400000 +1883 2617 0.400000 +1883 2668 0.400000 +1883 2675 0.400000 +1883 2833 0.400000 +1883 2836 0.400000 +1883 2845 0.400000 +1883 2881 0.400000 +1883 2962 0.400000 +1883 2975 0.400000 +1883 2978 0.400000 +1883 3200 0.400000 +1884 71 0.400000 +1884 177 0.400000 +1884 204 0.400000 +1884 261 0.400000 +1884 290 0.400000 +1884 318 0.400000 +1884 322 0.400000 +1884 386 0.400000 +1884 462 0.400000 +1884 531 0.400000 +1884 536 0.400000 +1884 537 0.400000 +1884 558 0.400000 +1884 567 0.400000 +1884 726 0.400000 +1884 784 0.400000 +1884 836 0.400000 +1884 847 0.400000 +1884 1074 0.400000 +1884 1081 0.400000 +1884 1100 0.400000 +1884 1141 0.400000 +1884 1176 0.400000 +1884 1180 0.400000 +1884 1288 0.400000 +1884 1393 0.400000 +1884 1413 0.400000 +1884 1462 0.400000 +1884 1503 0.400000 +1884 1510 0.400000 +1884 1627 0.400000 +1884 1639 0.400000 +1884 1649 0.400000 +1884 1661 0.400000 +1884 1709 0.400000 +1884 1799 0.400000 +1884 1834 0.400000 +1884 1927 0.400000 +1884 1929 0.400000 +1884 1969 0.400000 +1884 2041 0.400000 +1884 2048 0.400000 +1884 2099 0.400000 +1884 2106 0.400000 +1884 2156 0.400000 +1884 2262 0.400000 +1884 2310 0.400000 +1884 2467 0.400000 +1884 2494 0.400000 +1884 2541 0.400000 +1884 2640 0.400000 +1884 2646 0.400000 +1884 2653 0.400000 +1884 2770 0.400000 +1884 2779 0.400000 +1884 2788 0.400000 +1884 2837 0.400000 +1884 2855 0.400000 +1884 2859 0.400000 +1884 2870 0.400000 +1884 3096 0.400000 +1884 3118 0.400000 +1884 3173 0.400000 +1884 3191 0.400000 +1885 57 0.400000 +1885 192 0.400000 +1885 245 0.400000 +1885 279 0.400000 +1885 280 0.400000 +1885 447 0.400000 +1885 460 0.400000 +1885 495 0.400000 +1885 553 0.400000 +1885 555 0.400000 +1885 582 0.400000 +1885 644 0.400000 +1885 662 0.400000 +1885 688 0.400000 +1885 741 0.400000 +1885 767 0.400000 +1885 794 0.400000 +1885 797 0.400000 +1885 864 0.400000 +1885 1006 0.400000 +1885 1007 0.400000 +1885 1028 0.400000 +1885 1165 0.400000 +1885 1217 0.400000 +1885 1279 0.400000 +1885 1318 0.400000 +1885 1444 0.400000 +1885 1448 0.400000 +1885 1455 0.400000 +1885 1585 0.400000 +1885 1623 0.400000 +1885 1835 0.400000 +1885 1924 0.400000 +1885 1960 0.400000 +1885 2101 0.400000 +1885 2164 0.400000 +1885 2222 0.400000 +1885 2288 0.400000 +1885 2316 0.400000 +1885 2383 0.400000 +1885 2394 0.400000 +1885 2421 0.400000 +1885 2484 0.400000 +1885 2521 0.400000 +1885 2622 0.400000 +1885 2638 0.400000 +1885 2656 0.400000 +1885 2789 0.400000 +1885 2792 0.400000 +1885 2827 0.400000 +1885 2859 0.400000 +1885 2988 0.400000 +1885 3025 0.400000 +1885 3053 0.400000 +1885 3142 0.400000 +1885 3193 0.400000 +1886 18 0.400000 +1886 101 0.400000 +1886 120 0.400000 +1886 154 0.400000 +1886 176 0.400000 +1886 187 0.400000 +1886 189 0.400000 +1886 192 0.400000 +1886 208 0.400000 +1886 229 0.400000 +1886 305 0.400000 +1886 389 0.400000 +1886 391 0.400000 +1886 393 0.400000 +1886 439 0.400000 +1886 473 0.400000 +1886 533 0.400000 +1886 534 0.400000 +1886 563 0.400000 +1886 656 0.400000 +1886 658 0.400000 +1886 747 0.400000 +1886 766 0.400000 +1886 863 0.400000 +1886 873 0.400000 +1886 883 0.400000 +1886 933 0.400000 +1886 958 0.400000 +1886 1003 0.400000 +1886 1009 0.400000 +1886 1019 0.400000 +1886 1029 0.400000 +1886 1108 0.400000 +1886 1117 0.400000 +1886 1215 0.400000 +1886 1335 0.400000 +1886 1363 0.400000 +1886 1446 0.400000 +1886 1513 0.400000 +1886 1514 0.400000 +1886 1515 0.400000 +1886 1543 0.400000 +1886 1562 0.400000 +1886 1568 0.400000 +1886 1585 0.400000 +1886 1602 0.400000 +1886 1616 0.400000 +1886 1660 0.400000 +1886 1744 0.400000 +1886 1772 0.400000 +1886 1825 0.400000 +1886 1847 0.400000 +1886 1896 0.400000 +1886 1954 0.400000 +1886 2005 0.400000 +1886 2063 0.400000 +1886 2092 0.400000 +1886 2221 0.400000 +1886 2222 0.400000 +1886 2236 0.400000 +1886 2264 0.400000 +1886 2284 0.400000 +1886 2298 0.400000 +1886 2472 0.400000 +1886 2547 0.400000 +1886 2569 0.400000 +1886 2623 0.400000 +1886 2627 0.400000 +1886 2678 0.400000 +1886 2709 0.400000 +1886 2710 0.400000 +1886 2751 0.400000 +1886 2783 0.400000 +1886 2805 0.400000 +1886 2879 0.400000 +1886 2971 0.400000 +1886 3169 0.400000 +1886 3179 0.400000 +1887 66 0.400000 +1887 79 0.400000 +1887 86 0.400000 +1887 129 0.400000 +1887 143 0.400000 +1887 213 0.400000 +1887 222 0.400000 +1887 263 0.400000 +1887 314 0.400000 +1887 333 0.400000 +1887 427 0.400000 +1887 748 0.400000 +1887 756 0.400000 +1887 796 0.400000 +1887 934 0.400000 +1887 1001 0.400000 +1887 1035 0.400000 +1887 1075 0.400000 +1887 1077 0.400000 +1887 1080 0.400000 +1887 1097 0.400000 +1887 1104 0.400000 +1887 1107 0.400000 +1887 1142 0.400000 +1887 1241 0.400000 +1887 1277 0.400000 +1887 1298 0.400000 +1887 1304 0.400000 +1887 1334 0.400000 +1887 1413 0.400000 +1887 1518 0.400000 +1887 1554 0.400000 +1887 1653 0.400000 +1887 1659 0.400000 +1887 1672 0.400000 +1887 1688 0.400000 +1887 1754 0.400000 +1887 1809 0.400000 +1887 1829 0.400000 +1887 1893 0.400000 +1887 1919 0.400000 +1887 1952 0.400000 +1887 2044 0.400000 +1887 2103 0.400000 +1887 2127 0.400000 +1887 2273 0.400000 +1887 2483 0.400000 +1887 2514 0.400000 +1887 2523 0.400000 +1887 2692 0.400000 +1887 2693 0.400000 +1887 2729 0.400000 +1887 2822 0.400000 +1887 2824 0.400000 +1887 2829 0.400000 +1887 2888 0.400000 +1887 2937 0.400000 +1887 2985 0.400000 +1887 3040 0.400000 +1887 3045 0.400000 +1887 3068 0.400000 +1887 3142 0.400000 +1887 3184 0.400000 +1888 1 0.400000 +1888 31 0.400000 +1888 140 0.400000 +1888 243 0.400000 +1888 416 0.400000 +1888 457 0.400000 +1888 523 0.400000 +1888 695 0.400000 +1888 726 0.400000 +1888 792 0.400000 +1888 805 0.400000 +1888 832 0.400000 +1888 921 0.400000 +1888 990 0.400000 +1888 1069 0.400000 +1888 1074 0.400000 +1888 1210 0.400000 +1888 1299 0.400000 +1888 1352 0.400000 +1888 1388 0.400000 +1888 1456 0.400000 +1888 1488 0.400000 +1888 1542 0.400000 +1888 1567 0.400000 +1888 1578 0.400000 +1888 1673 0.400000 +1888 1726 0.400000 +1888 1786 0.400000 +1888 1796 0.400000 +1888 1906 0.400000 +1888 1912 0.400000 +1888 1963 0.400000 +1888 1968 0.400000 +1888 1977 0.400000 +1888 2010 0.400000 +1888 2078 0.400000 +1888 2109 0.400000 +1888 2172 0.400000 +1888 2191 0.400000 +1888 2202 0.400000 +1888 2239 0.400000 +1888 2267 0.400000 +1888 2306 0.400000 +1888 2365 0.400000 +1888 2393 0.400000 +1888 2404 0.400000 +1888 2429 0.400000 +1888 2456 0.400000 +1888 2476 0.400000 +1888 2504 0.400000 +1888 2629 0.400000 +1888 2680 0.400000 +1888 2792 0.400000 +1888 2857 0.400000 +1888 2942 0.400000 +1888 2978 0.400000 +1888 2979 0.400000 +1888 3064 0.400000 +1888 3131 0.400000 +1889 20 0.400000 +1889 83 0.400000 +1889 133 0.400000 +1889 154 0.400000 +1889 176 0.400000 +1889 258 0.400000 +1889 263 0.400000 +1889 301 0.400000 +1889 470 0.400000 +1889 476 0.400000 +1889 480 0.400000 +1889 529 0.400000 +1889 617 0.400000 +1889 671 0.400000 +1889 672 0.400000 +1889 712 0.400000 +1889 769 0.400000 +1889 809 0.400000 +1889 852 0.400000 +1889 862 0.400000 +1889 1043 0.400000 +1889 1045 0.400000 +1889 1085 0.400000 +1889 1086 0.400000 +1889 1177 0.400000 +1889 1221 0.400000 +1889 1343 0.400000 +1889 1356 0.400000 +1889 1408 0.400000 +1889 1430 0.400000 +1889 1464 0.400000 +1889 1513 0.400000 +1889 1514 0.400000 +1889 1515 0.400000 +1889 1516 0.400000 +1889 1527 0.400000 +1889 1545 0.400000 +1889 1705 0.400000 +1889 1743 0.400000 +1889 1761 0.400000 +1889 1825 0.400000 +1889 1897 0.400000 +1889 1899 0.400000 +1889 2076 0.400000 +1889 2116 0.400000 +1889 2121 0.400000 +1889 2142 0.400000 +1889 2166 0.400000 +1889 2196 0.400000 +1889 2227 0.400000 +1889 2340 0.400000 +1889 2376 0.400000 +1889 2390 0.400000 +1889 2417 0.400000 +1889 2425 0.400000 +1889 2433 0.400000 +1889 2438 0.400000 +1889 2466 0.400000 +1889 2497 0.400000 +1889 2567 0.400000 +1889 2684 0.400000 +1889 2720 0.400000 +1889 2724 0.400000 +1889 2796 0.400000 +1889 2872 0.400000 +1889 2879 0.400000 +1889 2909 0.400000 +1889 3058 0.400000 +1889 3134 0.400000 +1890 13 0.400000 +1890 105 0.400000 +1890 112 0.400000 +1890 131 0.400000 +1890 132 0.400000 +1890 148 0.400000 +1890 205 0.400000 +1890 222 0.400000 +1890 248 0.400000 +1890 273 0.400000 +1890 308 0.400000 +1890 309 0.400000 +1890 318 0.400000 +1890 417 0.400000 +1890 444 0.400000 +1890 468 0.400000 +1890 470 0.400000 +1890 508 0.400000 +1890 549 0.400000 +1890 554 0.400000 +1890 560 0.400000 +1890 635 0.400000 +1890 645 0.400000 +1890 668 0.400000 +1890 681 0.400000 +1890 808 0.400000 +1890 832 0.400000 +1890 846 0.400000 +1890 913 0.400000 +1890 953 0.400000 +1890 955 0.400000 +1890 995 0.400000 +1890 996 0.400000 +1890 1072 0.400000 +1890 1074 0.400000 +1890 1078 0.400000 +1890 1086 0.400000 +1890 1154 0.400000 +1890 1185 0.400000 +1890 1188 0.400000 +1890 1208 0.400000 +1890 1348 0.400000 +1890 1498 0.400000 +1890 1513 0.400000 +1890 1538 0.400000 +1890 1630 0.400000 +1890 1683 0.400000 +1890 1770 0.400000 +1890 1838 0.400000 +1890 1861 0.400000 +1890 2033 0.400000 +1890 2045 0.400000 +1890 2064 0.400000 +1890 2102 0.400000 +1890 2111 0.400000 +1890 2183 0.400000 +1890 2262 0.400000 +1890 2336 0.400000 +1890 2360 0.400000 +1890 2412 0.400000 +1890 2446 0.400000 +1890 2481 0.400000 +1890 2572 0.400000 +1890 2743 0.400000 +1890 2825 0.400000 +1890 2828 0.400000 +1890 2904 0.400000 +1890 3001 0.400000 +1890 3051 0.400000 +1890 3130 0.400000 +1890 3160 0.400000 +1890 3168 0.400000 +1890 3182 0.400000 +1890 3186 0.400000 +1891 146 0.400000 +1891 266 0.400000 +1891 300 0.400000 +1891 328 0.400000 +1891 423 0.400000 +1891 447 0.400000 +1891 492 0.400000 +1891 495 0.400000 +1891 679 0.400000 +1891 762 0.400000 +1891 770 0.400000 +1891 853 0.400000 +1891 879 0.400000 +1891 979 0.400000 +1891 995 0.400000 +1891 1008 0.400000 +1891 1056 0.400000 +1891 1092 0.400000 +1891 1117 0.400000 +1891 1135 0.400000 +1891 1157 0.400000 +1891 1172 0.400000 +1891 1258 0.400000 +1891 1385 0.400000 +1891 1395 0.400000 +1891 1397 0.400000 +1891 1456 0.400000 +1891 1548 0.400000 +1891 1592 0.400000 +1891 1602 0.400000 +1891 1742 0.400000 +1891 1767 0.400000 +1891 1772 0.400000 +1891 1794 0.400000 +1891 1796 0.400000 +1891 1820 0.400000 +1891 1834 0.400000 +1891 1873 0.400000 +1891 1877 0.400000 +1891 1901 0.400000 +1891 2004 0.400000 +1891 2019 0.400000 +1891 2110 0.400000 +1891 2133 0.400000 +1891 2226 0.400000 +1891 2269 0.400000 +1891 2318 0.400000 +1891 2341 0.400000 +1891 2445 0.400000 +1891 2465 0.400000 +1891 2646 0.400000 +1891 2678 0.400000 +1891 2690 0.400000 +1891 2701 0.400000 +1891 2714 0.400000 +1891 2906 0.400000 +1891 2936 0.400000 +1891 3050 0.400000 +1891 3076 0.400000 +1891 3077 0.400000 +1891 3123 0.400000 +1891 3134 0.400000 +1891 3150 0.400000 +1891 3165 0.400000 +1891 3192 0.400000 +1892 47 0.400000 +1892 152 0.400000 +1892 173 0.400000 +1892 270 0.400000 +1892 277 0.400000 +1892 357 0.400000 +1892 383 0.400000 +1892 403 0.400000 +1892 554 0.400000 +1892 558 0.400000 +1892 589 0.400000 +1892 594 0.400000 +1892 601 0.400000 +1892 722 0.400000 +1892 834 0.400000 +1892 899 0.400000 +1892 1046 0.400000 +1892 1109 0.400000 +1892 1111 0.400000 +1892 1116 0.400000 +1892 1259 0.400000 +1892 1265 0.400000 +1892 1277 0.400000 +1892 1314 0.400000 +1892 1325 0.400000 +1892 1330 0.400000 +1892 1353 0.400000 +1892 1375 0.400000 +1892 1431 0.400000 +1892 1491 0.400000 +1892 1500 0.400000 +1892 1596 0.400000 +1892 1597 0.400000 +1892 1635 0.400000 +1892 1660 0.400000 +1892 1752 0.400000 +1892 1776 0.400000 +1892 1806 0.400000 +1892 1824 0.400000 +1892 1947 0.400000 +1892 1964 0.400000 +1892 1988 0.400000 +1892 2111 0.400000 +1892 2132 0.400000 +1892 2169 0.400000 +1892 2187 0.400000 +1892 2228 0.400000 +1892 2290 0.400000 +1892 2306 0.400000 +1892 2308 0.400000 +1892 2309 0.400000 +1892 2319 0.400000 +1892 2336 0.400000 +1892 2337 0.400000 +1892 2488 0.400000 +1892 2521 0.400000 +1892 2524 0.400000 +1892 2530 0.400000 +1892 2547 0.400000 +1892 2562 0.400000 +1892 2637 0.400000 +1892 2643 0.400000 +1892 2680 0.400000 +1892 2737 0.400000 +1892 2807 0.400000 +1892 2808 0.400000 +1892 2819 0.400000 +1892 2847 0.400000 +1892 2994 0.400000 +1892 2997 0.400000 +1892 3066 0.400000 +1892 3100 0.400000 +1892 3111 0.400000 +1893 74 0.400000 +1893 95 0.400000 +1893 127 0.400000 +1893 221 0.400000 +1893 310 0.400000 +1893 323 0.400000 +1893 426 0.400000 +1893 567 0.400000 +1893 576 0.400000 +1893 601 0.400000 +1893 690 0.400000 +1893 704 0.400000 +1893 706 0.400000 +1893 879 0.400000 +1893 889 0.400000 +1893 914 0.400000 +1893 968 0.400000 +1893 1034 0.400000 +1893 1123 0.400000 +1893 1276 0.400000 +1893 1284 0.400000 +1893 1325 0.400000 +1893 1329 0.400000 +1893 1426 0.400000 +1893 1525 0.400000 +1893 1586 0.400000 +1893 1629 0.400000 +1893 1647 0.400000 +1893 1655 0.400000 +1893 1796 0.400000 +1893 1803 0.400000 +1893 1840 0.400000 +1893 2099 0.400000 +1893 2100 0.400000 +1893 2184 0.400000 +1893 2246 0.400000 +1893 2261 0.400000 +1893 2283 0.400000 +1893 2295 0.400000 +1893 2362 0.400000 +1893 2411 0.400000 +1893 2420 0.400000 +1893 2484 0.400000 +1893 2536 0.400000 +1893 2540 0.400000 +1893 2582 0.400000 +1893 2606 0.400000 +1893 2688 0.400000 +1893 2716 0.400000 +1893 2721 0.400000 +1893 2936 0.400000 +1893 3016 0.400000 +1893 3083 0.400000 +1893 3113 0.400000 +1893 3126 0.400000 +1893 3138 0.400000 +1893 3194 0.400000 +1894 9 0.400000 +1894 104 0.400000 +1894 162 0.400000 +1894 176 0.400000 +1894 224 0.400000 +1894 228 0.400000 +1894 243 0.400000 +1894 291 0.400000 +1894 349 0.400000 +1894 569 0.400000 +1894 703 0.400000 +1894 803 0.400000 +1894 859 0.400000 +1894 875 0.400000 +1894 922 0.400000 +1894 932 0.400000 +1894 957 0.400000 +1894 1008 0.400000 +1894 1072 0.400000 +1894 1140 0.400000 +1894 1206 0.400000 +1894 1341 0.400000 +1894 1359 0.400000 +1894 1468 0.400000 +1894 1514 0.400000 +1894 1534 0.400000 +1894 1569 0.400000 +1894 1639 0.400000 +1894 1651 0.400000 +1894 1710 0.400000 +1894 1720 0.400000 +1894 1780 0.400000 +1894 1854 0.400000 +1894 1857 0.400000 +1894 1888 0.400000 +1894 1905 0.400000 +1894 1911 0.400000 +1894 1940 0.400000 +1894 1953 0.400000 +1894 2045 0.400000 +1894 2067 0.400000 +1894 2194 0.400000 +1894 2278 0.400000 +1894 2359 0.400000 +1894 2368 0.400000 +1894 2373 0.400000 +1894 2401 0.400000 +1894 2441 0.400000 +1894 2506 0.400000 +1894 2535 0.400000 +1894 2536 0.400000 +1894 2571 0.400000 +1894 2597 0.400000 +1894 2711 0.400000 +1894 2730 0.400000 +1894 2742 0.400000 +1894 2759 0.400000 +1894 2766 0.400000 +1894 2793 0.400000 +1894 2864 0.400000 +1894 2869 0.400000 +1894 2891 0.400000 +1894 2906 0.400000 +1894 2960 0.400000 +1894 3018 0.400000 +1894 3031 0.400000 +1894 3074 0.400000 +1894 3088 0.400000 +1895 34 0.400000 +1895 114 0.400000 +1895 277 0.400000 +1895 310 0.400000 +1895 376 0.400000 +1895 410 0.400000 +1895 431 0.400000 +1895 472 0.400000 +1895 520 0.400000 +1895 542 0.400000 +1895 557 0.400000 +1895 655 0.400000 +1895 671 0.400000 +1895 692 0.400000 +1895 751 0.400000 +1895 788 0.400000 +1895 797 0.400000 +1895 806 0.400000 +1895 849 0.400000 +1895 856 0.400000 +1895 922 0.400000 +1895 923 0.400000 +1895 962 0.400000 +1895 1015 0.400000 +1895 1063 0.400000 +1895 1143 0.400000 +1895 1149 0.400000 +1895 1168 0.400000 +1895 1239 0.400000 +1895 1253 0.400000 +1895 1412 0.400000 +1895 1442 0.400000 +1895 1466 0.400000 +1895 1632 0.400000 +1895 1653 0.400000 +1895 1677 0.400000 +1895 1683 0.400000 +1895 1788 0.400000 +1895 1808 0.400000 +1895 1931 0.400000 +1895 1969 0.400000 +1895 2030 0.400000 +1895 2045 0.400000 +1895 2068 0.400000 +1895 2074 0.400000 +1895 2116 0.400000 +1895 2153 0.400000 +1895 2178 0.400000 +1895 2195 0.400000 +1895 2247 0.400000 +1895 2276 0.400000 +1895 2294 0.400000 +1895 2382 0.400000 +1895 2385 0.400000 +1895 2436 0.400000 +1895 2476 0.400000 +1895 2505 0.400000 +1895 2508 0.400000 +1895 2533 0.400000 +1895 2548 0.400000 +1895 2583 0.400000 +1895 2612 0.400000 +1895 2669 0.400000 +1895 2766 0.400000 +1895 2772 0.400000 +1895 2782 0.400000 +1895 2783 0.400000 +1895 2819 0.400000 +1895 2874 0.400000 +1895 2889 0.400000 +1895 3027 0.400000 +1895 3146 0.400000 +1896 75 0.400000 +1896 107 0.400000 +1896 117 0.400000 +1896 159 0.400000 +1896 209 0.400000 +1896 248 0.400000 +1896 306 0.400000 +1896 350 0.400000 +1896 374 0.400000 +1896 385 0.400000 +1896 392 0.400000 +1896 424 0.400000 +1896 434 0.400000 +1896 564 0.400000 +1896 579 0.400000 +1896 596 0.400000 +1896 607 0.400000 +1896 687 0.400000 +1896 795 0.400000 +1896 867 0.400000 +1896 883 0.400000 +1896 981 0.400000 +1896 986 0.400000 +1896 1166 0.400000 +1896 1186 0.400000 +1896 1254 0.400000 +1896 1265 0.400000 +1896 1376 0.400000 +1896 1394 0.400000 +1896 1408 0.400000 +1896 1438 0.400000 +1896 1502 0.400000 +1896 1510 0.400000 +1896 1555 0.400000 +1896 1576 0.400000 +1896 1584 0.400000 +1896 1606 0.400000 +1896 1663 0.400000 +1896 1680 0.400000 +1896 1702 0.400000 +1896 1750 0.400000 +1896 2022 0.400000 +1896 2065 0.400000 +1896 2069 0.400000 +1896 2070 0.400000 +1896 2110 0.400000 +1896 2147 0.400000 +1896 2197 0.400000 +1896 2279 0.400000 +1896 2334 0.400000 +1896 2373 0.400000 +1896 2382 0.400000 +1896 2431 0.400000 +1896 2448 0.400000 +1896 2517 0.400000 +1896 2542 0.400000 +1896 2568 0.400000 +1896 2586 0.400000 +1896 2601 0.400000 +1896 2636 0.400000 +1896 2681 0.400000 +1896 2688 0.400000 +1896 2817 0.400000 +1896 3002 0.400000 +1896 3048 0.400000 +1896 3100 0.400000 +1896 3106 0.400000 +1896 3147 0.400000 +1896 3167 0.400000 +1896 3182 0.400000 +1897 21 0.400000 +1897 55 0.400000 +1897 58 0.400000 +1897 70 0.400000 +1897 89 0.400000 +1897 112 0.400000 +1897 208 0.400000 +1897 213 0.400000 +1897 260 0.400000 +1897 358 0.400000 +1897 373 0.400000 +1897 403 0.400000 +1897 463 0.400000 +1897 467 0.400000 +1897 472 0.400000 +1897 563 0.400000 +1897 637 0.400000 +1897 728 0.400000 +1897 791 0.400000 +1897 838 0.400000 +1897 844 0.400000 +1897 852 0.400000 +1897 876 0.400000 +1897 915 0.400000 +1897 1044 0.400000 +1897 1069 0.400000 +1897 1171 0.400000 +1897 1191 0.400000 +1897 1244 0.400000 +1897 1312 0.400000 +1897 1342 0.400000 +1897 1358 0.400000 +1897 1430 0.400000 +1897 1460 0.400000 +1897 1496 0.400000 +1897 1510 0.400000 +1897 1536 0.400000 +1897 1566 0.400000 +1897 1580 0.400000 +1897 1638 0.400000 +1897 1740 0.400000 +1897 1798 0.400000 +1897 1848 0.400000 +1897 1967 0.400000 +1897 2000 0.400000 +1897 2057 0.400000 +1897 2074 0.400000 +1897 2089 0.400000 +1897 2173 0.400000 +1897 2234 0.400000 +1897 2236 0.400000 +1897 2345 0.400000 +1897 2348 0.400000 +1897 2378 0.400000 +1897 2434 0.400000 +1897 2535 0.400000 +1897 2575 0.400000 +1897 2621 0.400000 +1897 2652 0.400000 +1897 2658 0.400000 +1897 2804 0.400000 +1897 2836 0.400000 +1897 2842 0.400000 +1897 2846 0.400000 +1897 2855 0.400000 +1897 2875 0.400000 +1897 3010 0.400000 +1897 3150 0.400000 +1897 3175 0.400000 +1897 3196 0.400000 +1897 3198 0.400000 +1898 36 0.400000 +1898 65 0.400000 +1898 110 0.400000 +1898 126 0.400000 +1898 178 0.400000 +1898 195 0.400000 +1898 196 0.400000 +1898 199 0.400000 +1898 236 0.400000 +1898 304 0.400000 +1898 323 0.400000 +1898 368 0.400000 +1898 432 0.400000 +1898 436 0.400000 +1898 478 0.400000 +1898 505 0.400000 +1898 510 0.400000 +1898 579 0.400000 +1898 606 0.400000 +1898 643 0.400000 +1898 667 0.400000 +1898 868 0.400000 +1898 875 0.400000 +1898 905 0.400000 +1898 950 0.400000 +1898 981 0.400000 +1898 997 0.400000 +1898 1096 0.400000 +1898 1156 0.400000 +1898 1157 0.400000 +1898 1204 0.400000 +1898 1224 0.400000 +1898 1238 0.400000 +1898 1334 0.400000 +1898 1343 0.400000 +1898 1357 0.400000 +1898 1380 0.400000 +1898 1395 0.400000 +1898 1397 0.400000 +1898 1560 0.400000 +1898 1737 0.400000 +1898 1751 0.400000 +1898 1763 0.400000 +1898 1789 0.400000 +1898 1870 0.400000 +1898 1929 0.400000 +1898 2000 0.400000 +1898 2086 0.400000 +1898 2120 0.400000 +1898 2130 0.400000 +1898 2133 0.400000 +1898 2240 0.400000 +1898 2283 0.400000 +1898 2290 0.400000 +1898 2411 0.400000 +1898 2447 0.400000 +1898 2490 0.400000 +1898 2513 0.400000 +1898 2634 0.400000 +1898 2650 0.400000 +1898 2710 0.400000 +1898 2857 0.400000 +1898 3008 0.400000 +1898 3024 0.400000 +1898 3101 0.400000 +1898 3156 0.400000 +1898 3169 0.400000 +1898 3190 0.400000 +1898 3194 0.400000 +1899 68 0.400000 +1899 184 0.400000 +1899 195 0.400000 +1899 202 0.400000 +1899 210 0.400000 +1899 374 0.400000 +1899 389 0.400000 +1899 418 0.400000 +1899 424 0.400000 +1899 490 0.400000 +1899 513 0.400000 +1899 520 0.400000 +1899 542 0.400000 +1899 548 0.400000 +1899 557 0.400000 +1899 656 0.400000 +1899 678 0.400000 +1899 685 0.400000 +1899 690 0.400000 +1899 828 0.400000 +1899 898 0.400000 +1899 904 0.400000 +1899 907 0.400000 +1899 946 0.400000 +1899 986 0.400000 +1899 996 0.400000 +1899 1010 0.400000 +1899 1038 0.400000 +1899 1081 0.400000 +1899 1168 0.400000 +1899 1190 0.400000 +1899 1248 0.400000 +1899 1417 0.400000 +1899 1423 0.400000 +1899 1524 0.400000 +1899 1594 0.400000 +1899 1611 0.400000 +1899 1646 0.400000 +1899 1767 0.400000 +1899 1813 0.400000 +1899 1825 0.400000 +1899 1869 0.400000 +1899 1908 0.400000 +1899 1953 0.400000 +1899 2004 0.400000 +1899 2095 0.400000 +1899 2103 0.400000 +1899 2217 0.400000 +1899 2227 0.400000 +1899 2329 0.400000 +1899 2397 0.400000 +1899 2517 0.400000 +1899 2539 0.400000 +1899 2548 0.400000 +1899 2589 0.400000 +1899 2619 0.400000 +1899 2635 0.400000 +1899 2650 0.400000 +1899 2657 0.400000 +1899 2666 0.400000 +1899 2680 0.400000 +1899 2697 0.400000 +1899 2779 0.400000 +1899 2820 0.400000 +1899 2836 0.400000 +1899 2858 0.400000 +1899 2873 0.400000 +1899 2938 0.400000 +1899 2994 0.400000 +1899 3103 0.400000 +1899 3131 0.400000 +1899 3132 0.400000 +1899 3198 0.400000 +1900 187 0.400000 +1900 262 0.400000 +1900 365 0.400000 +1900 480 0.400000 +1900 692 0.400000 +1900 725 0.400000 +1900 786 0.400000 +1900 902 0.400000 +1900 956 0.400000 +1900 1039 0.400000 +1900 1041 0.400000 +1900 1051 0.400000 +1900 1195 0.400000 +1900 1232 0.400000 +1900 1271 0.400000 +1900 1596 0.400000 +1900 1659 0.400000 +1900 1708 0.400000 +1900 1787 0.400000 +1900 1807 0.400000 +1900 1931 0.400000 +1900 1953 0.400000 +1900 2058 0.400000 +1900 2108 0.400000 +1900 2228 0.400000 +1900 2289 0.400000 +1900 2389 0.400000 +1900 2408 0.400000 +1900 2414 0.400000 +1900 2439 0.400000 +1900 2550 0.400000 +1900 2561 0.400000 +1900 2607 0.400000 +1900 2659 0.400000 +1900 2694 0.400000 +1900 2730 0.400000 +1900 2785 0.400000 +1900 2867 0.400000 +1900 2882 0.400000 +1900 2892 0.400000 +1900 2921 0.400000 +1900 2963 0.400000 +1900 2972 0.400000 +1900 3001 0.400000 +1900 3020 0.400000 +1900 3120 0.400000 +1900 3136 0.400000 +1900 3160 0.400000 +1900 3180 0.400000 +1900 3184 0.400000 +1901 67 0.400000 +1901 73 0.400000 +1901 85 0.400000 +1901 121 0.400000 +1901 210 0.400000 +1901 227 0.400000 +1901 344 0.400000 +1901 346 0.400000 +1901 407 0.400000 +1901 517 0.400000 +1901 627 0.400000 +1901 735 0.400000 +1901 736 0.400000 +1901 762 0.400000 +1901 781 0.400000 +1901 815 0.400000 +1901 858 0.400000 +1901 912 0.400000 +1901 1060 0.400000 +1901 1076 0.400000 +1901 1221 0.400000 +1901 1316 0.400000 +1901 1382 0.400000 +1901 1406 0.400000 +1901 1572 0.400000 +1901 1585 0.400000 +1901 1619 0.400000 +1901 1658 0.400000 +1901 1665 0.400000 +1901 1672 0.400000 +1901 1716 0.400000 +1901 1730 0.400000 +1901 1777 0.400000 +1901 1796 0.400000 +1901 1943 0.400000 +1901 1955 0.400000 +1901 1981 0.400000 +1901 2055 0.400000 +1901 2062 0.400000 +1901 2077 0.400000 +1901 2100 0.400000 +1901 2195 0.400000 +1901 2252 0.400000 +1901 2290 0.400000 +1901 2319 0.400000 +1901 2362 0.400000 +1901 2545 0.400000 +1901 2546 0.400000 +1901 2617 0.400000 +1901 2724 0.400000 +1901 2755 0.400000 +1901 2783 0.400000 +1901 2876 0.400000 +1901 2888 0.400000 +1901 2925 0.400000 +1901 2964 0.400000 +1901 2995 0.400000 +1901 3020 0.400000 +1901 3046 0.400000 +1901 3095 0.400000 +1901 3194 0.400000 +1902 37 0.400000 +1902 135 0.400000 +1902 159 0.400000 +1902 335 0.400000 +1902 382 0.400000 +1902 398 0.400000 +1902 403 0.400000 +1902 502 0.400000 +1902 557 0.400000 +1902 575 0.400000 +1902 600 0.400000 +1902 637 0.400000 +1902 753 0.400000 +1902 780 0.400000 +1902 847 0.400000 +1902 865 0.400000 +1902 872 0.400000 +1902 976 0.400000 +1902 986 0.400000 +1902 1124 0.400000 +1902 1149 0.400000 +1902 1213 0.400000 +1902 1241 0.400000 +1902 1279 0.400000 +1902 1372 0.400000 +1902 1433 0.400000 +1902 1442 0.400000 +1902 1547 0.400000 +1902 1555 0.400000 +1902 1708 0.400000 +1902 1906 0.400000 +1902 2088 0.400000 +1902 2089 0.400000 +1902 2113 0.400000 +1902 2122 0.400000 +1902 2168 0.400000 +1902 2176 0.400000 +1902 2196 0.400000 +1902 2340 0.400000 +1902 2449 0.400000 +1902 2527 0.400000 +1902 2754 0.400000 +1902 2865 0.400000 +1902 2866 0.400000 +1902 3120 0.400000 +1902 3121 0.400000 +1902 3123 0.400000 +1903 62 0.400000 +1903 75 0.400000 +1903 134 0.400000 +1903 150 0.400000 +1903 224 0.400000 +1903 265 0.400000 +1903 356 0.400000 +1903 364 0.400000 +1903 373 0.400000 +1903 427 0.400000 +1903 455 0.400000 +1903 465 0.400000 +1903 495 0.400000 +1903 586 0.400000 +1903 674 0.400000 +1903 749 0.400000 +1903 808 0.400000 +1903 838 0.400000 +1903 859 0.400000 +1903 867 0.400000 +1903 876 0.400000 +1903 883 0.400000 +1903 1006 0.400000 +1903 1086 0.400000 +1903 1105 0.400000 +1903 1150 0.400000 +1903 1180 0.400000 +1903 1197 0.400000 +1903 1213 0.400000 +1903 1257 0.400000 +1903 1353 0.400000 +1903 1354 0.400000 +1903 1409 0.400000 +1903 1470 0.400000 +1903 1473 0.400000 +1903 1506 0.400000 +1903 1550 0.400000 +1903 1643 0.400000 +1903 1706 0.400000 +1903 1721 0.400000 +1903 1772 0.400000 +1903 1813 0.400000 +1903 1964 0.400000 +1903 2014 0.400000 +1903 2015 0.400000 +1903 2028 0.400000 +1903 2143 0.400000 +1903 2167 0.400000 +1903 2173 0.400000 +1903 2207 0.400000 +1903 2232 0.400000 +1903 2248 0.400000 +1903 2265 0.400000 +1903 2304 0.400000 +1903 2369 0.400000 +1903 2373 0.400000 +1903 2433 0.400000 +1903 2532 0.400000 +1903 2540 0.400000 +1903 2543 0.400000 +1903 2666 0.400000 +1903 2722 0.400000 +1903 2899 0.400000 +1903 2903 0.400000 +1903 2939 0.400000 +1903 2959 0.400000 +1903 2995 0.400000 +1903 3003 0.400000 +1903 3055 0.400000 +1903 3083 0.400000 +1903 3190 0.400000 +1903 3197 0.400000 +1904 81 0.400000 +1904 85 0.400000 +1904 195 0.400000 +1904 199 0.400000 +1904 287 0.400000 +1904 405 0.400000 +1904 443 0.400000 +1904 507 0.400000 +1904 508 0.400000 +1904 510 0.400000 +1904 549 0.400000 +1904 733 0.400000 +1904 797 0.400000 +1904 837 0.400000 +1904 923 0.400000 +1904 1080 0.400000 +1904 1164 0.400000 +1904 1227 0.400000 +1904 1234 0.400000 +1904 1302 0.400000 +1904 1307 0.400000 +1904 1493 0.400000 +1904 1512 0.400000 +1904 1635 0.400000 +1904 1643 0.400000 +1904 1677 0.400000 +1904 1692 0.400000 +1904 1891 0.400000 +1904 1995 0.400000 +1904 2033 0.400000 +1904 2134 0.400000 +1904 2176 0.400000 +1904 2266 0.400000 +1904 2299 0.400000 +1904 2310 0.400000 +1904 2515 0.400000 +1904 2544 0.400000 +1904 2557 0.400000 +1904 2571 0.400000 +1904 2584 0.400000 +1904 2631 0.400000 +1904 2762 0.400000 +1904 2789 0.400000 +1904 2828 0.400000 +1904 2834 0.400000 +1904 2979 0.400000 +1904 3053 0.400000 +1904 3081 0.400000 +1904 3199 0.400000 +1905 7 0.400000 +1905 15 0.400000 +1905 81 0.400000 +1905 245 0.400000 +1905 352 0.400000 +1905 521 0.400000 +1905 615 0.400000 +1905 636 0.400000 +1905 703 0.400000 +1905 724 0.400000 +1905 775 0.400000 +1905 832 0.400000 +1905 860 0.400000 +1905 870 0.400000 +1905 1008 0.400000 +1905 1241 0.400000 +1905 1255 0.400000 +1905 1288 0.400000 +1905 1298 0.400000 +1905 1308 0.400000 +1905 1433 0.400000 +1905 1442 0.400000 +1905 1525 0.400000 +1905 1553 0.400000 +1905 1692 0.400000 +1905 1810 0.400000 +1905 1913 0.400000 +1905 1941 0.400000 +1905 1961 0.400000 +1905 2004 0.400000 +1905 2029 0.400000 +1905 2104 0.400000 +1905 2161 0.400000 +1905 2289 0.400000 +1905 2374 0.400000 +1905 2501 0.400000 +1905 2561 0.400000 +1905 2600 0.400000 +1905 2646 0.400000 +1905 2716 0.400000 +1905 2767 0.400000 +1905 2956 0.400000 +1905 2983 0.400000 +1905 3044 0.400000 +1905 3090 0.400000 +1905 3137 0.400000 +1905 3175 0.400000 +1905 3199 0.400000 +1906 216 0.400000 +1906 262 0.400000 +1906 318 0.400000 +1906 325 0.400000 +1906 339 0.400000 +1906 361 0.400000 +1906 378 0.400000 +1906 529 0.400000 +1906 548 0.400000 +1906 552 0.400000 +1906 798 0.400000 +1906 818 0.400000 +1906 825 0.400000 +1906 853 0.400000 +1906 918 0.400000 +1906 980 0.400000 +1906 1109 0.400000 +1906 1142 0.400000 +1906 1196 0.400000 +1906 1270 0.400000 +1906 1289 0.400000 +1906 1302 0.400000 +1906 1317 0.400000 +1906 1325 0.400000 +1906 1378 0.400000 +1906 1438 0.400000 +1906 1462 0.400000 +1906 1472 0.400000 +1906 1680 0.400000 +1906 1786 0.400000 +1906 1805 0.400000 +1906 1886 0.400000 +1906 1925 0.400000 +1906 1929 0.400000 +1906 2027 0.400000 +1906 2039 0.400000 +1906 2182 0.400000 +1906 2192 0.400000 +1906 2205 0.400000 +1906 2286 0.400000 +1906 2297 0.400000 +1906 2417 0.400000 +1906 2445 0.400000 +1906 2457 0.400000 +1906 2474 0.400000 +1906 2494 0.400000 +1906 2522 0.400000 +1906 2661 0.400000 +1906 2819 0.400000 +1906 2955 0.400000 +1906 2982 0.400000 +1906 3031 0.400000 +1906 3037 0.400000 +1907 46 0.400000 +1907 168 0.400000 +1907 169 0.400000 +1907 175 0.400000 +1907 216 0.400000 +1907 314 0.400000 +1907 333 0.400000 +1907 359 0.400000 +1907 399 0.400000 +1907 482 0.400000 +1907 663 0.400000 +1907 674 0.400000 +1907 689 0.400000 +1907 723 0.400000 +1907 754 0.400000 +1907 758 0.400000 +1907 763 0.400000 +1907 943 0.400000 +1907 998 0.400000 +1907 1048 0.400000 +1907 1055 0.400000 +1907 1075 0.400000 +1907 1085 0.400000 +1907 1097 0.400000 +1907 1128 0.400000 +1907 1206 0.400000 +1907 1216 0.400000 +1907 1222 0.400000 +1907 1267 0.400000 +1907 1302 0.400000 +1907 1374 0.400000 +1907 1448 0.400000 +1907 1493 0.400000 +1907 1499 0.400000 +1907 1631 0.400000 +1907 1694 0.400000 +1907 1730 0.400000 +1907 1763 0.400000 +1907 1793 0.400000 +1907 1852 0.400000 +1907 1902 0.400000 +1907 1907 0.400000 +1907 1953 0.400000 +1907 1971 0.400000 +1907 1985 0.400000 +1907 2024 0.400000 +1907 2031 0.400000 +1907 2060 0.400000 +1907 2132 0.400000 +1907 2157 0.400000 +1907 2162 0.400000 +1907 2163 0.400000 +1907 2199 0.400000 +1907 2205 0.400000 +1907 2206 0.400000 +1907 2218 0.400000 +1907 2260 0.400000 +1907 2270 0.400000 +1907 2363 0.400000 +1907 2411 0.400000 +1907 2491 0.400000 +1907 2510 0.400000 +1907 2525 0.400000 +1907 2536 0.400000 +1907 2552 0.400000 +1907 2588 0.400000 +1907 2679 0.400000 +1907 2705 0.400000 +1907 2801 0.400000 +1907 2857 0.400000 +1907 2887 0.400000 +1907 2946 0.400000 +1907 2971 0.400000 +1907 2976 0.400000 +1907 3000 0.400000 +1907 3005 0.400000 +1907 3018 0.400000 +1907 3076 0.400000 +1907 3143 0.400000 +1907 3185 0.400000 +1908 110 0.400000 +1908 133 0.400000 +1908 140 0.400000 +1908 234 0.400000 +1908 283 0.400000 +1908 329 0.400000 +1908 345 0.400000 +1908 350 0.400000 +1908 384 0.400000 +1908 394 0.400000 +1908 414 0.400000 +1908 439 0.400000 +1908 455 0.400000 +1908 466 0.400000 +1908 468 0.400000 +1908 619 0.400000 +1908 629 0.400000 +1908 674 0.400000 +1908 688 0.400000 +1908 716 0.400000 +1908 953 0.400000 +1908 985 0.400000 +1908 1005 0.400000 +1908 1064 0.400000 +1908 1239 0.400000 +1908 1320 0.400000 +1908 1392 0.400000 +1908 1394 0.400000 +1908 1416 0.400000 +1908 1420 0.400000 +1908 1475 0.400000 +1908 1513 0.400000 +1908 1562 0.400000 +1908 1596 0.400000 +1908 1761 0.400000 +1908 1850 0.400000 +1908 1862 0.400000 +1908 1868 0.400000 +1908 1925 0.400000 +1908 2212 0.400000 +1908 2223 0.400000 +1908 2294 0.400000 +1908 2299 0.400000 +1908 2346 0.400000 +1908 2392 0.400000 +1908 2441 0.400000 +1908 2476 0.400000 +1908 2491 0.400000 +1908 2520 0.400000 +1908 2564 0.400000 +1908 2631 0.400000 +1908 2640 0.400000 +1908 2650 0.400000 +1908 2689 0.400000 +1908 2725 0.400000 +1908 2728 0.400000 +1908 2787 0.400000 +1908 2841 0.400000 +1908 2858 0.400000 +1908 2884 0.400000 +1908 2910 0.400000 +1908 2943 0.400000 +1908 3034 0.400000 +1909 25 0.400000 +1909 200 0.400000 +1909 217 0.400000 +1909 238 0.400000 +1909 256 0.400000 +1909 262 0.400000 +1909 312 0.400000 +1909 336 0.400000 +1909 348 0.400000 +1909 412 0.400000 +1909 465 0.400000 +1909 497 0.400000 +1909 648 0.400000 +1909 676 0.400000 +1909 744 0.400000 +1909 756 0.400000 +1909 854 0.400000 +1909 954 0.400000 +1909 971 0.400000 +1909 1073 0.400000 +1909 1095 0.400000 +1909 1237 0.400000 +1909 1252 0.400000 +1909 1287 0.400000 +1909 1290 0.400000 +1909 1293 0.400000 +1909 1308 0.400000 +1909 1339 0.400000 +1909 1344 0.400000 +1909 1471 0.400000 +1909 1484 0.400000 +1909 1499 0.400000 +1909 1524 0.400000 +1909 1541 0.400000 +1909 1657 0.400000 +1909 1679 0.400000 +1909 1701 0.400000 +1909 1722 0.400000 +1909 1774 0.400000 +1909 1799 0.400000 +1909 1817 0.400000 +1909 1848 0.400000 +1909 1865 0.400000 +1909 1988 0.400000 +1909 2027 0.400000 +1909 2200 0.400000 +1909 2219 0.400000 +1909 2228 0.400000 +1909 2302 0.400000 +1909 2340 0.400000 +1909 2520 0.400000 +1909 2555 0.400000 +1909 2570 0.400000 +1909 2578 0.400000 +1909 2591 0.400000 +1909 2611 0.400000 +1909 2755 0.400000 +1909 2823 0.400000 +1909 2858 0.400000 +1909 2978 0.400000 +1909 2986 0.400000 +1909 3035 0.400000 +1909 3081 0.400000 +1909 3099 0.400000 +1909 3193 0.400000 +1910 64 0.400000 +1910 75 0.400000 +1910 134 0.400000 +1910 144 0.400000 +1910 194 0.400000 +1910 210 0.400000 +1910 225 0.400000 +1910 264 0.400000 +1910 355 0.400000 +1910 361 0.400000 +1910 381 0.400000 +1910 426 0.400000 +1910 532 0.400000 +1910 662 0.400000 +1910 706 0.400000 +1910 708 0.400000 +1910 788 0.400000 +1910 879 0.400000 +1910 906 0.400000 +1910 1012 0.400000 +1910 1016 0.400000 +1910 1043 0.400000 +1910 1082 0.400000 +1910 1111 0.400000 +1910 1142 0.400000 +1910 1143 0.400000 +1910 1201 0.400000 +1910 1251 0.400000 +1910 1253 0.400000 +1910 1271 0.400000 +1910 1280 0.400000 +1910 1336 0.400000 +1910 1433 0.400000 +1910 1439 0.400000 +1910 1459 0.400000 +1910 1467 0.400000 +1910 1512 0.400000 +1910 1547 0.400000 +1910 1572 0.400000 +1910 1615 0.400000 +1910 1661 0.400000 +1910 1761 0.400000 +1910 1902 0.400000 +1910 1913 0.400000 +1910 1940 0.400000 +1910 1953 0.400000 +1910 2027 0.400000 +1910 2079 0.400000 +1910 2093 0.400000 +1910 2121 0.400000 +1910 2180 0.400000 +1910 2197 0.400000 +1910 2359 0.400000 +1910 2408 0.400000 +1910 2570 0.400000 +1910 2714 0.400000 +1910 2765 0.400000 +1910 2827 0.400000 +1910 2872 0.400000 +1910 2889 0.400000 +1910 2896 0.400000 +1910 3033 0.400000 +1910 3068 0.400000 +1910 3123 0.400000 +1910 3145 0.400000 +1911 4 0.400000 +1911 58 0.400000 +1911 153 0.400000 +1911 191 0.400000 +1911 202 0.400000 +1911 215 0.400000 +1911 222 0.400000 +1911 259 0.400000 +1911 272 0.400000 +1911 308 0.400000 +1911 309 0.400000 +1911 335 0.400000 +1911 367 0.400000 +1911 368 0.400000 +1911 370 0.400000 +1911 418 0.400000 +1911 475 0.400000 +1911 476 0.400000 +1911 526 0.400000 +1911 609 0.400000 +1911 615 0.400000 +1911 627 0.400000 +1911 723 0.400000 +1911 763 0.400000 +1911 860 0.400000 +1911 1019 0.400000 +1911 1089 0.400000 +1911 1093 0.400000 +1911 1180 0.400000 +1911 1199 0.400000 +1911 1269 0.400000 +1911 1325 0.400000 +1911 1351 0.400000 +1911 1413 0.400000 +1911 1525 0.400000 +1911 1536 0.400000 +1911 1624 0.400000 +1911 1749 0.400000 +1911 1785 0.400000 +1911 1801 0.400000 +1911 1809 0.400000 +1911 1838 0.400000 +1911 1947 0.400000 +1911 1969 0.400000 +1911 2049 0.400000 +1911 2108 0.400000 +1911 2165 0.400000 +1911 2316 0.400000 +1911 2361 0.400000 +1911 2362 0.400000 +1911 2389 0.400000 +1911 2394 0.400000 +1911 2499 0.400000 +1911 2509 0.400000 +1911 2515 0.400000 +1911 2541 0.400000 +1911 2558 0.400000 +1911 2625 0.400000 +1911 2713 0.400000 +1911 2830 0.400000 +1911 2853 0.400000 +1911 2900 0.400000 +1911 2922 0.400000 +1911 2949 0.400000 +1911 2954 0.400000 +1911 2977 0.400000 +1911 3006 0.400000 +1911 3008 0.400000 +1911 3098 0.400000 +1911 3124 0.400000 +1911 3155 0.400000 +1911 3158 0.400000 +1911 3186 0.400000 +1912 31 0.400000 +1912 63 0.400000 +1912 103 0.400000 +1912 159 0.400000 +1912 162 0.400000 +1912 184 0.400000 +1912 187 0.400000 +1912 218 0.400000 +1912 223 0.400000 +1912 397 0.400000 +1912 522 0.400000 +1912 528 0.400000 +1912 582 0.400000 +1912 653 0.400000 +1912 731 0.400000 +1912 780 0.400000 +1912 969 0.400000 +1912 978 0.400000 +1912 1079 0.400000 +1912 1121 0.400000 +1912 1244 0.400000 +1912 1258 0.400000 +1912 1278 0.400000 +1912 1280 0.400000 +1912 1317 0.400000 +1912 1429 0.400000 +1912 1456 0.400000 +1912 1611 0.400000 +1912 1636 0.400000 +1912 1663 0.400000 +1912 1685 0.400000 +1912 1712 0.400000 +1912 1726 0.400000 +1912 1771 0.400000 +1912 1879 0.400000 +1912 1898 0.400000 +1912 1947 0.400000 +1912 1981 0.400000 +1912 2065 0.400000 +1912 2137 0.400000 +1912 2206 0.400000 +1912 2264 0.400000 +1912 2284 0.400000 +1912 2306 0.400000 +1912 2324 0.400000 +1912 2442 0.400000 +1912 2511 0.400000 +1912 2512 0.400000 +1912 2542 0.400000 +1912 2621 0.400000 +1912 2662 0.400000 +1912 2737 0.400000 +1912 2797 0.400000 +1912 2819 0.400000 +1912 2852 0.400000 +1912 2947 0.400000 +1912 3048 0.400000 +1912 3077 0.400000 +1912 3110 0.400000 +1913 85 0.400000 +1913 104 0.400000 +1913 112 0.400000 +1913 128 0.400000 +1913 153 0.400000 +1913 210 0.400000 +1913 267 0.400000 +1913 285 0.400000 +1913 303 0.400000 +1913 315 0.400000 +1913 325 0.400000 +1913 438 0.400000 +1913 490 0.400000 +1913 533 0.400000 +1913 539 0.400000 +1913 545 0.400000 +1913 556 0.400000 +1913 626 0.400000 +1913 665 0.400000 +1913 705 0.400000 +1913 787 0.400000 +1913 817 0.400000 +1913 930 0.400000 +1913 978 0.400000 +1913 991 0.400000 +1913 993 0.400000 +1913 1009 0.400000 +1913 1032 0.400000 +1913 1065 0.400000 +1913 1126 0.400000 +1913 1129 0.400000 +1913 1211 0.400000 +1913 1354 0.400000 +1913 1420 0.400000 +1913 1436 0.400000 +1913 1450 0.400000 +1913 1459 0.400000 +1913 1551 0.400000 +1913 1689 0.400000 +1913 1693 0.400000 +1913 1816 0.400000 +1913 1904 0.400000 +1913 1910 0.400000 +1913 1951 0.400000 +1913 2052 0.400000 +1913 2060 0.400000 +1913 2061 0.400000 +1913 2148 0.400000 +1913 2202 0.400000 +1913 2213 0.400000 +1913 2253 0.400000 +1913 2317 0.400000 +1913 2323 0.400000 +1913 2435 0.400000 +1913 2446 0.400000 +1913 2502 0.400000 +1913 2521 0.400000 +1913 2640 0.400000 +1913 2726 0.400000 +1913 2761 0.400000 +1913 2793 0.400000 +1913 2939 0.400000 +1913 2952 0.400000 +1913 2958 0.400000 +1913 2976 0.400000 +1913 3023 0.400000 +1913 3027 0.400000 +1913 3084 0.400000 +1913 3126 0.400000 +1913 3128 0.400000 +1913 3143 0.400000 +1913 3145 0.400000 +1914 31 0.400000 +1914 64 0.400000 +1914 101 0.400000 +1914 105 0.400000 +1914 109 0.400000 +1914 198 0.400000 +1914 383 0.400000 +1914 386 0.400000 +1914 399 0.400000 +1914 425 0.400000 +1914 578 0.400000 +1914 590 0.400000 +1914 612 0.400000 +1914 738 0.400000 +1914 793 0.400000 +1914 848 0.400000 +1914 865 0.400000 +1914 892 0.400000 +1914 977 0.400000 +1914 1001 0.400000 +1914 1039 0.400000 +1914 1142 0.400000 +1914 1157 0.400000 +1914 1186 0.400000 +1914 1237 0.400000 +1914 1240 0.400000 +1914 1288 0.400000 +1914 1300 0.400000 +1914 1327 0.400000 +1914 1343 0.400000 +1914 1366 0.400000 +1914 1375 0.400000 +1914 1388 0.400000 +1914 1521 0.400000 +1914 1608 0.400000 +1914 1720 0.400000 +1914 1740 0.400000 +1914 1750 0.400000 +1914 1780 0.400000 +1914 1841 0.400000 +1914 1968 0.400000 +1914 2020 0.400000 +1914 2061 0.400000 +1914 2065 0.400000 +1914 2085 0.400000 +1914 2341 0.400000 +1914 2360 0.400000 +1914 2603 0.400000 +1914 2639 0.400000 +1914 2667 0.400000 +1914 2685 0.400000 +1914 2706 0.400000 +1914 2790 0.400000 +1914 2842 0.400000 +1914 2944 0.400000 +1914 3008 0.400000 +1914 3095 0.400000 +1914 3132 0.400000 +1914 3176 0.400000 +1914 3187 0.400000 +1915 184 0.400000 +1915 278 0.400000 +1915 426 0.400000 +1915 596 0.400000 +1915 622 0.400000 +1915 683 0.400000 +1915 696 0.400000 +1915 745 0.400000 +1915 749 0.400000 +1915 853 0.400000 +1915 1000 0.400000 +1915 1031 0.400000 +1915 1034 0.400000 +1915 1150 0.400000 +1915 1212 0.400000 +1915 1231 0.400000 +1915 1254 0.400000 +1915 1290 0.400000 +1915 1344 0.400000 +1915 1392 0.400000 +1915 1429 0.400000 +1915 1444 0.400000 +1915 1446 0.400000 +1915 1485 0.400000 +1915 1738 0.400000 +1915 1917 0.400000 +1915 1920 0.400000 +1915 1964 0.400000 +1915 2045 0.400000 +1915 2068 0.400000 +1915 2111 0.400000 +1915 2121 0.400000 +1915 2129 0.400000 +1915 2237 0.400000 +1915 2254 0.400000 +1915 2318 0.400000 +1915 2329 0.400000 +1915 2333 0.400000 +1915 2464 0.400000 +1915 2490 0.400000 +1915 2495 0.400000 +1915 2527 0.400000 +1915 2533 0.400000 +1915 2541 0.400000 +1915 2550 0.400000 +1915 2568 0.400000 +1915 2615 0.400000 +1915 2643 0.400000 +1915 2706 0.400000 +1915 2715 0.400000 +1915 2757 0.400000 +1915 2898 0.400000 +1915 2931 0.400000 +1915 2968 0.400000 +1915 2992 0.400000 +1915 2999 0.400000 +1915 3069 0.400000 +1915 3133 0.400000 +1915 3150 0.400000 +1915 3153 0.400000 +1915 3166 0.400000 +1915 3178 0.400000 +1916 113 0.400000 +1916 120 0.400000 +1916 141 0.400000 +1916 144 0.400000 +1916 190 0.400000 +1916 200 0.400000 +1916 240 0.400000 +1916 399 0.400000 +1916 404 0.400000 +1916 431 0.400000 +1916 448 0.400000 +1916 462 0.400000 +1916 515 0.400000 +1916 519 0.400000 +1916 541 0.400000 +1916 573 0.400000 +1916 585 0.400000 +1916 638 0.400000 +1916 641 0.400000 +1916 718 0.400000 +1916 731 0.400000 +1916 750 0.400000 +1916 845 0.400000 +1916 987 0.400000 +1916 1003 0.400000 +1916 1022 0.400000 +1916 1072 0.400000 +1916 1136 0.400000 +1916 1165 0.400000 +1916 1210 0.400000 +1916 1249 0.400000 +1916 1279 0.400000 +1916 1296 0.400000 +1916 1604 0.400000 +1916 1606 0.400000 +1916 1629 0.400000 +1916 1681 0.400000 +1916 1695 0.400000 +1916 1705 0.400000 +1916 1747 0.400000 +1916 1805 0.400000 +1916 1840 0.400000 +1916 1891 0.400000 +1916 1894 0.400000 +1916 1954 0.400000 +1916 2008 0.400000 +1916 2051 0.400000 +1916 2264 0.400000 +1916 2276 0.400000 +1916 2286 0.400000 +1916 2335 0.400000 +1916 2370 0.400000 +1916 2380 0.400000 +1916 2407 0.400000 +1916 2410 0.400000 +1916 2578 0.400000 +1916 2776 0.400000 +1916 2924 0.400000 +1916 2933 0.400000 +1916 2968 0.400000 +1916 3045 0.400000 +1916 3061 0.400000 +1916 3117 0.400000 +1916 3148 0.400000 +1917 71 0.400000 +1917 120 0.400000 +1917 135 0.400000 +1917 195 0.400000 +1917 312 0.400000 +1917 356 0.400000 +1917 470 0.400000 +1917 557 0.400000 +1917 567 0.400000 +1917 595 0.400000 +1917 597 0.400000 +1917 678 0.400000 +1917 766 0.400000 +1917 803 0.400000 +1917 1015 0.400000 +1917 1049 0.400000 +1917 1094 0.400000 +1917 1245 0.400000 +1917 1282 0.400000 +1917 1284 0.400000 +1917 1345 0.400000 +1917 1476 0.400000 +1917 1548 0.400000 +1917 1735 0.400000 +1917 1792 0.400000 +1917 1809 0.400000 +1917 1827 0.400000 +1917 1893 0.400000 +1917 1952 0.400000 +1917 1968 0.400000 +1917 1994 0.400000 +1917 2024 0.400000 +1917 2039 0.400000 +1917 2152 0.400000 +1917 2192 0.400000 +1917 2281 0.400000 +1917 2297 0.400000 +1917 2409 0.400000 +1917 2451 0.400000 +1917 2485 0.400000 +1917 2491 0.400000 +1917 2727 0.400000 +1917 2812 0.400000 +1917 2839 0.400000 +1917 2855 0.400000 +1917 2926 0.400000 +1917 2946 0.400000 +1917 2984 0.400000 +1917 3063 0.400000 +1917 3101 0.400000 +1917 3121 0.400000 +1917 3132 0.400000 +1917 3161 0.400000 +1918 21 0.400000 +1918 119 0.400000 +1918 120 0.400000 +1918 190 0.400000 +1918 242 0.400000 +1918 304 0.400000 +1918 399 0.400000 +1918 408 0.400000 +1918 535 0.400000 +1918 548 0.400000 +1918 590 0.400000 +1918 602 0.400000 +1918 625 0.400000 +1918 716 0.400000 +1918 787 0.400000 +1918 817 0.400000 +1918 843 0.400000 +1918 870 0.400000 +1918 934 0.400000 +1918 948 0.400000 +1918 972 0.400000 +1918 1034 0.400000 +1918 1076 0.400000 +1918 1181 0.400000 +1918 1267 0.400000 +1918 1312 0.400000 +1918 1396 0.400000 +1918 1439 0.400000 +1918 1443 0.400000 +1918 1520 0.400000 +1918 1542 0.400000 +1918 1547 0.400000 +1918 1555 0.400000 +1918 1625 0.400000 +1918 1763 0.400000 +1918 1767 0.400000 +1918 1966 0.400000 +1918 2015 0.400000 +1918 2099 0.400000 +1918 2184 0.400000 +1918 2243 0.400000 +1918 2251 0.400000 +1918 2466 0.400000 +1918 2507 0.400000 +1918 2524 0.400000 +1918 2541 0.400000 +1918 2549 0.400000 +1918 2750 0.400000 +1918 2828 0.400000 +1918 2844 0.400000 +1918 2886 0.400000 +1918 2919 0.400000 +1918 2930 0.400000 +1918 2973 0.400000 +1918 3059 0.400000 +1918 3118 0.400000 +1918 3140 0.400000 +1918 3141 0.400000 +1919 8 0.400000 +1919 24 0.400000 +1919 121 0.400000 +1919 162 0.400000 +1919 173 0.400000 +1919 253 0.400000 +1919 324 0.400000 +1919 347 0.400000 +1919 386 0.400000 +1919 497 0.400000 +1919 590 0.400000 +1919 635 0.400000 +1919 747 0.400000 +1919 762 0.400000 +1919 868 0.400000 +1919 920 0.400000 +1919 957 0.400000 +1919 964 0.400000 +1919 1106 0.400000 +1919 1171 0.400000 +1919 1278 0.400000 +1919 1415 0.400000 +1919 1482 0.400000 +1919 1494 0.400000 +1919 1551 0.400000 +1919 1641 0.400000 +1919 1713 0.400000 +1919 1746 0.400000 +1919 1805 0.400000 +1919 1812 0.400000 +1919 1970 0.400000 +1919 2001 0.400000 +1919 2114 0.400000 +1919 2161 0.400000 +1919 2207 0.400000 +1919 2277 0.400000 +1919 2282 0.400000 +1919 2294 0.400000 +1919 2313 0.400000 +1919 2318 0.400000 +1919 2325 0.400000 +1919 2344 0.400000 +1919 2375 0.400000 +1919 2400 0.400000 +1919 2460 0.400000 +1919 2529 0.400000 +1919 2532 0.400000 +1919 2554 0.400000 +1919 2569 0.400000 +1919 2592 0.400000 +1919 2701 0.400000 +1919 2876 0.400000 +1919 2901 0.400000 +1919 3027 0.400000 +1919 3073 0.400000 +1919 3096 0.400000 +1920 2 0.400000 +1920 58 0.400000 +1920 188 0.400000 +1920 221 0.400000 +1920 234 0.400000 +1920 241 0.400000 +1920 265 0.400000 +1920 340 0.400000 +1920 475 0.400000 +1920 480 0.400000 +1920 503 0.400000 +1920 535 0.400000 +1920 547 0.400000 +1920 551 0.400000 +1920 572 0.400000 +1920 593 0.400000 +1920 596 0.400000 +1920 694 0.400000 +1920 786 0.400000 +1920 810 0.400000 +1920 836 0.400000 +1920 850 0.400000 +1920 862 0.400000 +1920 933 0.400000 +1920 957 0.400000 +1920 1011 0.400000 +1920 1032 0.400000 +1920 1170 0.400000 +1920 1216 0.400000 +1920 1270 0.400000 +1920 1298 0.400000 +1920 1380 0.400000 +1920 1422 0.400000 +1920 1566 0.400000 +1920 1595 0.400000 +1920 1599 0.400000 +1920 1665 0.400000 +1920 1667 0.400000 +1920 1700 0.400000 +1920 1729 0.400000 +1920 1905 0.400000 +1920 1965 0.400000 +1920 1974 0.400000 +1920 2063 0.400000 +1920 2204 0.400000 +1920 2243 0.400000 +1920 2256 0.400000 +1920 2277 0.400000 +1920 2319 0.400000 +1920 2423 0.400000 +1920 2548 0.400000 +1920 2555 0.400000 +1920 2562 0.400000 +1920 2643 0.400000 +1920 2657 0.400000 +1920 2667 0.400000 +1920 2714 0.400000 +1920 2716 0.400000 +1920 2754 0.400000 +1920 2766 0.400000 +1920 2788 0.400000 +1920 2799 0.400000 +1920 2821 0.400000 +1920 2937 0.400000 +1920 2940 0.400000 +1920 2947 0.400000 +1920 2980 0.400000 +1920 3046 0.400000 +1920 3069 0.400000 +1920 3114 0.400000 +1920 3122 0.400000 +1920 3138 0.400000 +1920 3163 0.400000 +1921 7 0.400000 +1921 41 0.400000 +1921 87 0.400000 +1921 98 0.400000 +1921 122 0.400000 +1921 182 0.400000 +1921 279 0.400000 +1921 317 0.400000 +1921 434 0.400000 +1921 465 0.400000 +1921 552 0.400000 +1921 656 0.400000 +1921 753 0.400000 +1921 770 0.400000 +1921 784 0.400000 +1921 872 0.400000 +1921 921 0.400000 +1921 957 0.400000 +1921 995 0.400000 +1921 1131 0.400000 +1921 1150 0.400000 +1921 1172 0.400000 +1921 1231 0.400000 +1921 1305 0.400000 +1921 1389 0.400000 +1921 1451 0.400000 +1921 1476 0.400000 +1921 1479 0.400000 +1921 1489 0.400000 +1921 1500 0.400000 +1921 1516 0.400000 +1921 1553 0.400000 +1921 1680 0.400000 +1921 1732 0.400000 +1921 1843 0.400000 +1921 1871 0.400000 +1921 1900 0.400000 +1921 1972 0.400000 +1921 1994 0.400000 +1921 2007 0.400000 +1921 2032 0.400000 +1921 2097 0.400000 +1921 2274 0.400000 +1921 2316 0.400000 +1921 2402 0.400000 +1921 2456 0.400000 +1921 2466 0.400000 +1921 2469 0.400000 +1921 2472 0.400000 +1921 2513 0.400000 +1921 2552 0.400000 +1921 2564 0.400000 +1921 2570 0.400000 +1921 2576 0.400000 +1921 2648 0.400000 +1921 2687 0.400000 +1921 2700 0.400000 +1921 2748 0.400000 +1921 2764 0.400000 +1921 2818 0.400000 +1921 2960 0.400000 +1921 2979 0.400000 +1921 3062 0.400000 +1921 3139 0.400000 +1921 3147 0.400000 +1921 3191 0.400000 +1922 23 0.400000 +1922 74 0.400000 +1922 101 0.400000 +1922 105 0.400000 +1922 113 0.400000 +1922 164 0.400000 +1922 233 0.400000 +1922 317 0.400000 +1922 352 0.400000 +1922 376 0.400000 +1922 387 0.400000 +1922 403 0.400000 +1922 455 0.400000 +1922 584 0.400000 +1922 617 0.400000 +1922 624 0.400000 +1922 671 0.400000 +1922 697 0.400000 +1922 715 0.400000 +1922 726 0.400000 +1922 729 0.400000 +1922 742 0.400000 +1922 749 0.400000 +1922 784 0.400000 +1922 924 0.400000 +1922 959 0.400000 +1922 1028 0.400000 +1922 1059 0.400000 +1922 1072 0.400000 +1922 1120 0.400000 +1922 1191 0.400000 +1922 1215 0.400000 +1922 1352 0.400000 +1922 1361 0.400000 +1922 1375 0.400000 +1922 1479 0.400000 +1922 1537 0.400000 +1922 1606 0.400000 +1922 1667 0.400000 +1922 1687 0.400000 +1922 1708 0.400000 +1922 1716 0.400000 +1922 1810 0.400000 +1922 1869 0.400000 +1922 1895 0.400000 +1922 2025 0.400000 +1922 2172 0.400000 +1922 2230 0.400000 +1922 2268 0.400000 +1922 2282 0.400000 +1922 2297 0.400000 +1922 2323 0.400000 +1922 2336 0.400000 +1922 2347 0.400000 +1922 2519 0.400000 +1922 2525 0.400000 +1922 2571 0.400000 +1922 2595 0.400000 +1922 2630 0.400000 +1922 2645 0.400000 +1922 2678 0.400000 +1922 2703 0.400000 +1922 2781 0.400000 +1922 2788 0.400000 +1922 2811 0.400000 +1922 2869 0.400000 +1922 2912 0.400000 +1922 2915 0.400000 +1922 2996 0.400000 +1922 3076 0.400000 +1922 3110 0.400000 +1922 3117 0.400000 +1923 30 0.400000 +1923 50 0.400000 +1923 70 0.400000 +1923 182 0.400000 +1923 204 0.400000 +1923 241 0.400000 +1923 273 0.400000 +1923 286 0.400000 +1923 298 0.400000 +1923 362 0.400000 +1923 420 0.400000 +1923 429 0.400000 +1923 479 0.400000 +1923 490 0.400000 +1923 525 0.400000 +1923 633 0.400000 +1923 688 0.400000 +1923 702 0.400000 +1923 709 0.400000 +1923 715 0.400000 +1923 723 0.400000 +1923 771 0.400000 +1923 793 0.400000 +1923 799 0.400000 +1923 824 0.400000 +1923 825 0.400000 +1923 876 0.400000 +1923 900 0.400000 +1923 981 0.400000 +1923 1005 0.400000 +1923 1151 0.400000 +1923 1155 0.400000 +1923 1187 0.400000 +1923 1215 0.400000 +1923 1223 0.400000 +1923 1239 0.400000 +1923 1261 0.400000 +1923 1262 0.400000 +1923 1296 0.400000 +1923 1368 0.400000 +1923 1463 0.400000 +1923 1508 0.400000 +1923 1551 0.400000 +1923 1560 0.400000 +1923 1680 0.400000 +1923 1726 0.400000 +1923 1732 0.400000 +1923 1781 0.400000 +1923 1786 0.400000 +1923 1826 0.400000 +1923 1855 0.400000 +1923 1887 0.400000 +1923 1976 0.400000 +1923 2162 0.400000 +1923 2331 0.400000 +1923 2346 0.400000 +1923 2393 0.400000 +1923 2472 0.400000 +1923 2493 0.400000 +1923 2495 0.400000 +1923 2519 0.400000 +1923 2543 0.400000 +1923 2619 0.400000 +1923 2770 0.400000 +1923 2796 0.400000 +1923 2894 0.400000 +1923 2985 0.400000 +1923 3030 0.400000 +1923 3060 0.400000 +1923 3100 0.400000 +1923 3150 0.400000 +1923 3158 0.400000 +1924 5 0.400000 +1924 7 0.400000 +1924 146 0.400000 +1924 239 0.400000 +1924 264 0.400000 +1924 277 0.400000 +1924 326 0.400000 +1924 375 0.400000 +1924 511 0.400000 +1924 531 0.400000 +1924 569 0.400000 +1924 706 0.400000 +1924 751 0.400000 +1924 801 0.400000 +1924 855 0.400000 +1924 962 0.400000 +1924 987 0.400000 +1924 1001 0.400000 +1924 1017 0.400000 +1924 1029 0.400000 +1924 1038 0.400000 +1924 1048 0.400000 +1924 1132 0.400000 +1924 1159 0.400000 +1924 1176 0.400000 +1924 1230 0.400000 +1924 1264 0.400000 +1924 1326 0.400000 +1924 1345 0.400000 +1924 1426 0.400000 +1924 1460 0.400000 +1924 1637 0.400000 +1924 1701 0.400000 +1924 1741 0.400000 +1924 1788 0.400000 +1924 1928 0.400000 +1924 1943 0.400000 +1924 1955 0.400000 +1924 1959 0.400000 +1924 2039 0.400000 +1924 2065 0.400000 +1924 2095 0.400000 +1924 2102 0.400000 +1924 2186 0.400000 +1924 2240 0.400000 +1924 2405 0.400000 +1924 2429 0.400000 +1924 2499 0.400000 +1924 2508 0.400000 +1924 2551 0.400000 +1924 2579 0.400000 +1924 2674 0.400000 +1924 2730 0.400000 +1924 2799 0.400000 +1924 2831 0.400000 +1924 2897 0.400000 +1924 2920 0.400000 +1924 2963 0.400000 +1924 2987 0.400000 +1924 3020 0.400000 +1924 3035 0.400000 +1924 3045 0.400000 +1924 3048 0.400000 +1924 3064 0.400000 +1924 3126 0.400000 +1924 3199 0.400000 +1925 58 0.400000 +1925 129 0.400000 +1925 139 0.400000 +1925 157 0.400000 +1925 192 0.400000 +1925 288 0.400000 +1925 350 0.400000 +1925 462 0.400000 +1925 510 0.400000 +1925 526 0.400000 +1925 650 0.400000 +1925 673 0.400000 +1925 710 0.400000 +1925 815 0.400000 +1925 821 0.400000 +1925 831 0.400000 +1925 890 0.400000 +1925 891 0.400000 +1925 911 0.400000 +1925 920 0.400000 +1925 936 0.400000 +1925 938 0.400000 +1925 949 0.400000 +1925 1190 0.400000 +1925 1198 0.400000 +1925 1201 0.400000 +1925 1216 0.400000 +1925 1227 0.400000 +1925 1254 0.400000 +1925 1273 0.400000 +1925 1277 0.400000 +1925 1304 0.400000 +1925 1374 0.400000 +1925 1504 0.400000 +1925 1521 0.400000 +1925 1523 0.400000 +1925 1563 0.400000 +1925 1576 0.400000 +1925 1644 0.400000 +1925 1772 0.400000 +1925 1906 0.400000 +1925 1911 0.400000 +1925 1924 0.400000 +1925 1934 0.400000 +1925 1968 0.400000 +1925 1971 0.400000 +1925 2097 0.400000 +1925 2175 0.400000 +1925 2197 0.400000 +1925 2225 0.400000 +1925 2370 0.400000 +1925 2455 0.400000 +1925 2458 0.400000 +1925 2460 0.400000 +1925 2474 0.400000 +1925 2534 0.400000 +1925 2536 0.400000 +1925 2567 0.400000 +1925 2572 0.400000 +1925 2578 0.400000 +1925 2677 0.400000 +1925 2712 0.400000 +1925 2762 0.400000 +1925 2785 0.400000 +1925 2878 0.400000 +1925 3054 0.400000 +1925 3087 0.400000 +1925 3105 0.400000 +1926 26 0.400000 +1926 80 0.400000 +1926 100 0.400000 +1926 102 0.400000 +1926 109 0.400000 +1926 137 0.400000 +1926 310 0.400000 +1926 399 0.400000 +1926 409 0.400000 +1926 442 0.400000 +1926 590 0.400000 +1926 591 0.400000 +1926 672 0.400000 +1926 721 0.400000 +1926 770 0.400000 +1926 771 0.400000 +1926 800 0.400000 +1926 805 0.400000 +1926 833 0.400000 +1926 854 0.400000 +1926 960 0.400000 +1926 977 0.400000 +1926 1025 0.400000 +1926 1044 0.400000 +1926 1164 0.400000 +1926 1180 0.400000 +1926 1184 0.400000 +1926 1202 0.400000 +1926 1236 0.400000 +1926 1310 0.400000 +1926 1366 0.400000 +1926 1438 0.400000 +1926 1446 0.400000 +1926 1486 0.400000 +1926 1585 0.400000 +1926 1742 0.400000 +1926 1749 0.400000 +1926 1753 0.400000 +1926 1759 0.400000 +1926 1797 0.400000 +1926 1863 0.400000 +1926 1918 0.400000 +1926 1949 0.400000 +1926 1985 0.400000 +1926 2105 0.400000 +1926 2116 0.400000 +1926 2139 0.400000 +1926 2155 0.400000 +1926 2248 0.400000 +1926 2259 0.400000 +1926 2372 0.400000 +1926 2455 0.400000 +1926 2456 0.400000 +1926 2613 0.400000 +1926 2661 0.400000 +1926 2761 0.400000 +1926 2798 0.400000 +1926 2806 0.400000 +1926 2841 0.400000 +1926 2942 0.400000 +1926 2985 0.400000 +1926 2998 0.400000 +1926 3041 0.400000 +1926 3123 0.400000 +1926 3149 0.400000 +1926 3166 0.400000 +1926 3171 0.400000 +1926 3195 0.400000 +1927 40 0.400000 +1927 60 0.400000 +1927 80 0.400000 +1927 119 0.400000 +1927 168 0.400000 +1927 311 0.400000 +1927 324 0.400000 +1927 498 0.400000 +1927 504 0.400000 +1927 516 0.400000 +1927 536 0.400000 +1927 543 0.400000 +1927 559 0.400000 +1927 617 0.400000 +1927 622 0.400000 +1927 717 0.400000 +1927 731 0.400000 +1927 799 0.400000 +1927 825 0.400000 +1927 936 0.400000 +1927 981 0.400000 +1927 1169 0.400000 +1927 1219 0.400000 +1927 1234 0.400000 +1927 1239 0.400000 +1927 1386 0.400000 +1927 1402 0.400000 +1927 1430 0.400000 +1927 1432 0.400000 +1927 1496 0.400000 +1927 1551 0.400000 +1927 1654 0.400000 +1927 1720 0.400000 +1927 1807 0.400000 +1927 1808 0.400000 +1927 1949 0.400000 +1927 1960 0.400000 +1927 2003 0.400000 +1927 2085 0.400000 +1927 2111 0.400000 +1927 2122 0.400000 +1927 2137 0.400000 +1927 2159 0.400000 +1927 2213 0.400000 +1927 2363 0.400000 +1927 2377 0.400000 +1927 2387 0.400000 +1927 2439 0.400000 +1927 2517 0.400000 +1927 2696 0.400000 +1927 2761 0.400000 +1927 2806 0.400000 +1927 2807 0.400000 +1927 2857 0.400000 +1927 3043 0.400000 +1927 3085 0.400000 +1927 3105 0.400000 +1927 3144 0.400000 +1927 3157 0.400000 +1927 3170 0.400000 +1928 57 0.400000 +1928 88 0.400000 +1928 96 0.400000 +1928 111 0.400000 +1928 280 0.400000 +1928 354 0.400000 +1928 407 0.400000 +1928 473 0.400000 +1928 601 0.400000 +1928 620 0.400000 +1928 636 0.400000 +1928 643 0.400000 +1928 683 0.400000 +1928 732 0.400000 +1928 766 0.400000 +1928 827 0.400000 +1928 872 0.400000 +1928 1035 0.400000 +1928 1060 0.400000 +1928 1172 0.400000 +1928 1254 0.400000 +1928 1255 0.400000 +1928 1309 0.400000 +1928 1337 0.400000 +1928 1342 0.400000 +1928 1345 0.400000 +1928 1447 0.400000 +1928 1467 0.400000 +1928 1502 0.400000 +1928 1507 0.400000 +1928 1558 0.400000 +1928 1575 0.400000 +1928 1602 0.400000 +1928 1669 0.400000 +1928 1844 0.400000 +1928 1955 0.400000 +1928 2008 0.400000 +1928 2023 0.400000 +1928 2046 0.400000 +1928 2099 0.400000 +1928 2141 0.400000 +1928 2260 0.400000 +1928 2266 0.400000 +1928 2273 0.400000 +1928 2327 0.400000 +1928 2376 0.400000 +1928 2428 0.400000 +1928 2469 0.400000 +1928 2477 0.400000 +1928 2495 0.400000 +1928 2519 0.400000 +1928 2582 0.400000 +1928 2644 0.400000 +1928 2650 0.400000 +1928 2676 0.400000 +1928 2724 0.400000 +1928 2964 0.400000 +1928 3166 0.400000 +1928 3176 0.400000 +1928 3187 0.400000 +1928 3190 0.400000 +1929 11 0.400000 +1929 14 0.400000 +1929 111 0.400000 +1929 136 0.400000 +1929 146 0.400000 +1929 189 0.400000 +1929 209 0.400000 +1929 212 0.400000 +1929 270 0.400000 +1929 384 0.400000 +1929 399 0.400000 +1929 408 0.400000 +1929 423 0.400000 +1929 469 0.400000 +1929 535 0.400000 +1929 554 0.400000 +1929 587 0.400000 +1929 626 0.400000 +1929 648 0.400000 +1929 812 0.400000 +1929 1141 0.400000 +1929 1177 0.400000 +1929 1294 0.400000 +1929 1377 0.400000 +1929 1525 0.400000 +1929 1635 0.400000 +1929 1715 0.400000 +1929 1752 0.400000 +1929 1772 0.400000 +1929 1821 0.400000 +1929 1829 0.400000 +1929 1937 0.400000 +1929 1940 0.400000 +1929 1946 0.400000 +1929 1954 0.400000 +1929 1976 0.400000 +1929 2131 0.400000 +1929 2147 0.400000 +1929 2196 0.400000 +1929 2216 0.400000 +1929 2259 0.400000 +1929 2299 0.400000 +1929 2313 0.400000 +1929 2318 0.400000 +1929 2408 0.400000 +1929 2587 0.400000 +1929 2607 0.400000 +1929 2699 0.400000 +1929 2759 0.400000 +1929 2796 0.400000 +1929 2806 0.400000 +1929 2843 0.400000 +1929 2901 0.400000 +1929 3023 0.400000 +1929 3024 0.400000 +1929 3109 0.400000 +1929 3133 0.400000 +1929 3141 0.400000 +1929 3194 0.400000 +1930 128 0.400000 +1930 134 0.400000 +1930 201 0.400000 +1930 234 0.400000 +1930 286 0.400000 +1930 307 0.400000 +1930 440 0.400000 +1930 479 0.400000 +1930 507 0.400000 +1930 521 0.400000 +1930 545 0.400000 +1930 660 0.400000 +1930 747 0.400000 +1930 783 0.400000 +1930 784 0.400000 +1930 836 0.400000 +1930 863 0.400000 +1930 874 0.400000 +1930 917 0.400000 +1930 1015 0.400000 +1930 1097 0.400000 +1930 1111 0.400000 +1930 1263 0.400000 +1930 1296 0.400000 +1930 1365 0.400000 +1930 1491 0.400000 +1930 1505 0.400000 +1930 1530 0.400000 +1930 1536 0.400000 +1930 1661 0.400000 +1930 1748 0.400000 +1930 1883 0.400000 +1930 1927 0.400000 +1930 1996 0.400000 +1930 2064 0.400000 +1930 2159 0.400000 +1930 2194 0.400000 +1930 2228 0.400000 +1930 2233 0.400000 +1930 2268 0.400000 +1930 2309 0.400000 +1930 2334 0.400000 +1930 2339 0.400000 +1930 2361 0.400000 +1930 2399 0.400000 +1930 2453 0.400000 +1930 2514 0.400000 +1930 2533 0.400000 +1930 2536 0.400000 +1930 2538 0.400000 +1930 2594 0.400000 +1930 2654 0.400000 +1930 2716 0.400000 +1930 2727 0.400000 +1930 2805 0.400000 +1930 2811 0.400000 +1930 2899 0.400000 +1930 2992 0.400000 +1930 3012 0.400000 +1930 3101 0.400000 +1930 3114 0.400000 +1930 3176 0.400000 +1931 5 0.400000 +1931 52 0.400000 +1931 100 0.400000 +1931 141 0.400000 +1931 155 0.400000 +1931 303 0.400000 +1931 321 0.400000 +1931 384 0.400000 +1931 612 0.400000 +1931 731 0.400000 +1931 854 0.400000 +1931 977 0.400000 +1931 1025 0.400000 +1931 1030 0.400000 +1931 1052 0.400000 +1931 1056 0.400000 +1931 1091 0.400000 +1931 1130 0.400000 +1931 1131 0.400000 +1931 1178 0.400000 +1931 1287 0.400000 +1931 1307 0.400000 +1931 1396 0.400000 +1931 1420 0.400000 +1931 1553 0.400000 +1931 1711 0.400000 +1931 1776 0.400000 +1931 1919 0.400000 +1931 1920 0.400000 +1931 1940 0.400000 +1931 2015 0.400000 +1931 2110 0.400000 +1931 2138 0.400000 +1931 2252 0.400000 +1931 2273 0.400000 +1931 2300 0.400000 +1931 2400 0.400000 +1931 2448 0.400000 +1931 2544 0.400000 +1931 2559 0.400000 +1931 2584 0.400000 +1931 2592 0.400000 +1931 2618 0.400000 +1931 2621 0.400000 +1931 2662 0.400000 +1931 2769 0.400000 +1931 2772 0.400000 +1931 2778 0.400000 +1931 2807 0.400000 +1931 2822 0.400000 +1931 2848 0.400000 +1931 2854 0.400000 +1931 2891 0.400000 +1931 2900 0.400000 +1931 2910 0.400000 +1931 2937 0.400000 +1931 2944 0.400000 +1931 2948 0.400000 +1931 2977 0.400000 +1931 2988 0.400000 +1931 3004 0.400000 +1931 3150 0.400000 +1931 3172 0.400000 +1932 33 0.400000 +1932 36 0.400000 +1932 45 0.400000 +1932 59 0.400000 +1932 78 0.400000 +1932 85 0.400000 +1932 139 0.400000 +1932 140 0.400000 +1932 281 0.400000 +1932 346 0.400000 +1932 400 0.400000 +1932 460 0.400000 +1932 511 0.400000 +1932 523 0.400000 +1932 564 0.400000 +1932 615 0.400000 +1932 628 0.400000 +1932 698 0.400000 +1932 742 0.400000 +1932 979 0.400000 +1932 1057 0.400000 +1932 1059 0.400000 +1932 1083 0.400000 +1932 1096 0.400000 +1932 1242 0.400000 +1932 1299 0.400000 +1932 1332 0.400000 +1932 1376 0.400000 +1932 1394 0.400000 +1932 1466 0.400000 +1932 1484 0.400000 +1932 1501 0.400000 +1932 1558 0.400000 +1932 1623 0.400000 +1932 1630 0.400000 +1932 1654 0.400000 +1932 1656 0.400000 +1932 1747 0.400000 +1932 1815 0.400000 +1932 1816 0.400000 +1932 1823 0.400000 +1932 1887 0.400000 +1932 1952 0.400000 +1932 2037 0.400000 +1932 2059 0.400000 +1932 2091 0.400000 +1932 2115 0.400000 +1932 2255 0.400000 +1932 2256 0.400000 +1932 2305 0.400000 +1932 2346 0.400000 +1932 2349 0.400000 +1932 2354 0.400000 +1932 2392 0.400000 +1932 2394 0.400000 +1932 2553 0.400000 +1932 2557 0.400000 +1932 2561 0.400000 +1932 2629 0.400000 +1932 2635 0.400000 +1932 2701 0.400000 +1932 2739 0.400000 +1932 2842 0.400000 +1932 2854 0.400000 +1932 2900 0.400000 +1932 3018 0.400000 +1932 3100 0.400000 +1932 3152 0.400000 +1932 3160 0.400000 +1932 3189 0.400000 +1933 79 0.400000 +1933 215 0.400000 +1933 235 0.400000 +1933 335 0.400000 +1933 363 0.400000 +1933 395 0.400000 +1933 404 0.400000 +1933 480 0.400000 +1933 546 0.400000 +1933 614 0.400000 +1933 618 0.400000 +1933 654 0.400000 +1933 746 0.400000 +1933 865 0.400000 +1933 881 0.400000 +1933 891 0.400000 +1933 929 0.400000 +1933 971 0.400000 +1933 982 0.400000 +1933 1049 0.400000 +1933 1089 0.400000 +1933 1144 0.400000 +1933 1265 0.400000 +1933 1394 0.400000 +1933 1508 0.400000 +1933 1525 0.400000 +1933 1577 0.400000 +1933 1636 0.400000 +1933 1824 0.400000 +1933 1825 0.400000 +1933 1856 0.400000 +1933 1859 0.400000 +1933 1907 0.400000 +1933 1926 0.400000 +1933 1982 0.400000 +1933 2077 0.400000 +1933 2085 0.400000 +1933 2097 0.400000 +1933 2117 0.400000 +1933 2230 0.400000 +1933 2257 0.400000 +1933 2294 0.400000 +1933 2438 0.400000 +1933 2497 0.400000 +1933 2519 0.400000 +1933 2574 0.400000 +1933 2593 0.400000 +1933 2598 0.400000 +1933 2831 0.400000 +1933 2834 0.400000 +1933 2906 0.400000 +1933 2910 0.400000 +1933 3071 0.400000 +1933 3114 0.400000 +1934 140 0.400000 +1934 239 0.400000 +1934 314 0.400000 +1934 321 0.400000 +1934 414 0.400000 +1934 431 0.400000 +1934 435 0.400000 +1934 466 0.400000 +1934 476 0.400000 +1934 500 0.400000 +1934 696 0.400000 +1934 724 0.400000 +1934 766 0.400000 +1934 782 0.400000 +1934 855 0.400000 +1934 866 0.400000 +1934 924 0.400000 +1934 953 0.400000 +1934 958 0.400000 +1934 997 0.400000 +1934 1131 0.400000 +1934 1229 0.400000 +1934 1264 0.400000 +1934 1343 0.400000 +1934 1360 0.400000 +1934 1413 0.400000 +1934 1477 0.400000 +1934 1506 0.400000 +1934 1543 0.400000 +1934 1591 0.400000 +1934 1598 0.400000 +1934 1747 0.400000 +1934 1822 0.400000 +1934 1870 0.400000 +1934 1883 0.400000 +1934 1947 0.400000 +1934 2071 0.400000 +1934 2112 0.400000 +1934 2118 0.400000 +1934 2190 0.400000 +1934 2210 0.400000 +1934 2259 0.400000 +1934 2278 0.400000 +1934 2302 0.400000 +1934 2327 0.400000 +1934 2443 0.400000 +1934 2446 0.400000 +1934 2486 0.400000 +1934 2520 0.400000 +1934 2526 0.400000 +1934 2621 0.400000 +1934 2730 0.400000 +1934 2853 0.400000 +1934 2918 0.400000 +1934 2985 0.400000 +1934 3020 0.400000 +1934 3045 0.400000 +1934 3063 0.400000 +1934 3097 0.400000 +1934 3134 0.400000 +1934 3155 0.400000 +1934 3159 0.400000 +1934 3169 0.400000 +1935 11 0.400000 +1935 49 0.400000 +1935 66 0.400000 +1935 68 0.400000 +1935 100 0.400000 +1935 161 0.400000 +1935 309 0.400000 +1935 371 0.400000 +1935 390 0.400000 +1935 419 0.400000 +1935 459 0.400000 +1935 480 0.400000 +1935 533 0.400000 +1935 538 0.400000 +1935 624 0.400000 +1935 655 0.400000 +1935 707 0.400000 +1935 719 0.400000 +1935 726 0.400000 +1935 735 0.400000 +1935 747 0.400000 +1935 760 0.400000 +1935 769 0.400000 +1935 778 0.400000 +1935 809 0.400000 +1935 855 0.400000 +1935 880 0.400000 +1935 935 0.400000 +1935 944 0.400000 +1935 1011 0.400000 +1935 1140 0.400000 +1935 1286 0.400000 +1935 1391 0.400000 +1935 1416 0.400000 +1935 1462 0.400000 +1935 1533 0.400000 +1935 1557 0.400000 +1935 1695 0.400000 +1935 1705 0.400000 +1935 1838 0.400000 +1935 1872 0.400000 +1935 1911 0.400000 +1935 1940 0.400000 +1935 2005 0.400000 +1935 2021 0.400000 +1935 2097 0.400000 +1935 2240 0.400000 +1935 2243 0.400000 +1935 2319 0.400000 +1935 2367 0.400000 +1935 2407 0.400000 +1935 2802 0.400000 +1935 2803 0.400000 +1935 2814 0.400000 +1935 2940 0.400000 +1935 3027 0.400000 +1935 3041 0.400000 +1935 3057 0.400000 +1935 3063 0.400000 +1935 3177 0.400000 +1936 49 0.400000 +1936 93 0.400000 +1936 114 0.400000 +1936 180 0.400000 +1936 314 0.400000 +1936 332 0.400000 +1936 357 0.400000 +1936 369 0.400000 +1936 424 0.400000 +1936 455 0.400000 +1936 526 0.400000 +1936 580 0.400000 +1936 599 0.400000 +1936 648 0.400000 +1936 664 0.400000 +1936 703 0.400000 +1936 735 0.400000 +1936 994 0.400000 +1936 995 0.400000 +1936 1090 0.400000 +1936 1151 0.400000 +1936 1248 0.400000 +1936 1304 0.400000 +1936 1319 0.400000 +1936 1396 0.400000 +1936 1468 0.400000 +1936 1518 0.400000 +1936 1527 0.400000 +1936 1629 0.400000 +1936 1712 0.400000 +1936 1785 0.400000 +1936 1840 0.400000 +1936 1949 0.400000 +1936 1988 0.400000 +1936 2021 0.400000 +1936 2073 0.400000 +1936 2094 0.400000 +1936 2144 0.400000 +1936 2255 0.400000 +1936 2264 0.400000 +1936 2392 0.400000 +1936 2418 0.400000 +1936 2435 0.400000 +1936 2467 0.400000 +1936 2510 0.400000 +1936 2570 0.400000 +1936 2590 0.400000 +1936 2645 0.400000 +1936 2647 0.400000 +1936 2692 0.400000 +1936 2727 0.400000 +1936 2728 0.400000 +1936 2734 0.400000 +1936 2807 0.400000 +1936 2808 0.400000 +1936 2850 0.400000 +1936 2890 0.400000 +1936 2948 0.400000 +1936 2969 0.400000 +1936 2993 0.400000 +1936 2998 0.400000 +1936 3014 0.400000 +1936 3104 0.400000 +1936 3132 0.400000 +1936 3151 0.400000 +1937 104 0.400000 +1937 157 0.400000 +1937 181 0.400000 +1937 184 0.400000 +1937 198 0.400000 +1937 366 0.400000 +1937 367 0.400000 +1937 373 0.400000 +1937 427 0.400000 +1937 459 0.400000 +1937 477 0.400000 +1937 497 0.400000 +1937 502 0.400000 +1937 542 0.400000 +1937 619 0.400000 +1937 622 0.400000 +1937 681 0.400000 +1937 682 0.400000 +1937 799 0.400000 +1937 1004 0.400000 +1937 1033 0.400000 +1937 1041 0.400000 +1937 1073 0.400000 +1937 1075 0.400000 +1937 1093 0.400000 +1937 1100 0.400000 +1937 1135 0.400000 +1937 1144 0.400000 +1937 1159 0.400000 +1937 1290 0.400000 +1937 1318 0.400000 +1937 1324 0.400000 +1937 1379 0.400000 +1937 1399 0.400000 +1937 1489 0.400000 +1937 1524 0.400000 +1937 1602 0.400000 +1937 1636 0.400000 +1937 1711 0.400000 +1937 1733 0.400000 +1937 1842 0.400000 +1937 1850 0.400000 +1937 1905 0.400000 +1937 1948 0.400000 +1937 1978 0.400000 +1937 2013 0.400000 +1937 2069 0.400000 +1937 2080 0.400000 +1937 2088 0.400000 +1937 2102 0.400000 +1937 2127 0.400000 +1937 2144 0.400000 +1937 2169 0.400000 +1937 2236 0.400000 +1937 2286 0.400000 +1937 2308 0.400000 +1937 2330 0.400000 +1937 2417 0.400000 +1937 2456 0.400000 +1937 2459 0.400000 +1937 2552 0.400000 +1937 2569 0.400000 +1937 2596 0.400000 +1937 2646 0.400000 +1937 2719 0.400000 +1937 2893 0.400000 +1937 2954 0.400000 +1937 3124 0.400000 +1937 3168 0.400000 +1938 6 0.400000 +1938 77 0.400000 +1938 108 0.400000 +1938 120 0.400000 +1938 146 0.400000 +1938 210 0.400000 +1938 230 0.400000 +1938 259 0.400000 +1938 307 0.400000 +1938 308 0.400000 +1938 309 0.400000 +1938 318 0.400000 +1938 355 0.400000 +1938 490 0.400000 +1938 523 0.400000 +1938 551 0.400000 +1938 703 0.400000 +1938 816 0.400000 +1938 833 0.400000 +1938 845 0.400000 +1938 861 0.400000 +1938 864 0.400000 +1938 898 0.400000 +1938 1015 0.400000 +1938 1046 0.400000 +1938 1145 0.400000 +1938 1149 0.400000 +1938 1193 0.400000 +1938 1209 0.400000 +1938 1239 0.400000 +1938 1263 0.400000 +1938 1284 0.400000 +1938 1320 0.400000 +1938 1439 0.400000 +1938 1450 0.400000 +1938 1453 0.400000 +1938 1471 0.400000 +1938 1566 0.400000 +1938 1679 0.400000 +1938 1692 0.400000 +1938 1695 0.400000 +1938 1703 0.400000 +1938 1726 0.400000 +1938 1865 0.400000 +1938 1895 0.400000 +1938 1919 0.400000 +1938 1991 0.400000 +1938 2174 0.400000 +1938 2187 0.400000 +1938 2206 0.400000 +1938 2212 0.400000 +1938 2244 0.400000 +1938 2274 0.400000 +1938 2320 0.400000 +1938 2325 0.400000 +1938 2355 0.400000 +1938 2387 0.400000 +1938 2485 0.400000 +1938 2493 0.400000 +1938 2515 0.400000 +1938 2544 0.400000 +1938 2598 0.400000 +1938 2606 0.400000 +1938 2608 0.400000 +1938 2643 0.400000 +1938 2653 0.400000 +1938 2700 0.400000 +1938 2746 0.400000 +1938 2906 0.400000 +1938 2956 0.400000 +1938 3014 0.400000 +1938 3137 0.400000 +1938 3174 0.400000 +1939 124 0.400000 +1939 235 0.400000 +1939 283 0.400000 +1939 323 0.400000 +1939 350 0.400000 +1939 410 0.400000 +1939 438 0.400000 +1939 440 0.400000 +1939 610 0.400000 +1939 713 0.400000 +1939 844 0.400000 +1939 912 0.400000 +1939 924 0.400000 +1939 994 0.400000 +1939 1067 0.400000 +1939 1070 0.400000 +1939 1161 0.400000 +1939 1277 0.400000 +1939 1317 0.400000 +1939 1447 0.400000 +1939 1559 0.400000 +1939 1565 0.400000 +1939 1631 0.400000 +1939 1649 0.400000 +1939 1764 0.400000 +1939 1821 0.400000 +1939 1860 0.400000 +1939 1903 0.400000 +1939 1990 0.400000 +1939 2010 0.400000 +1939 2294 0.400000 +1939 2326 0.400000 +1939 2478 0.400000 +1939 2562 0.400000 +1939 2674 0.400000 +1939 2675 0.400000 +1939 2783 0.400000 +1939 2969 0.400000 +1939 3007 0.400000 +1939 3033 0.400000 +1939 3047 0.400000 +1939 3122 0.400000 +1940 48 0.400000 +1940 95 0.400000 +1940 120 0.400000 +1940 129 0.400000 +1940 130 0.400000 +1940 233 0.400000 +1940 251 0.400000 +1940 275 0.400000 +1940 302 0.400000 +1940 318 0.400000 +1940 327 0.400000 +1940 345 0.400000 +1940 366 0.400000 +1940 393 0.400000 +1940 396 0.400000 +1940 411 0.400000 +1940 551 0.400000 +1940 635 0.400000 +1940 704 0.400000 +1940 747 0.400000 +1940 835 0.400000 +1940 845 0.400000 +1940 949 0.400000 +1940 1055 0.400000 +1940 1060 0.400000 +1940 1113 0.400000 +1940 1138 0.400000 +1940 1159 0.400000 +1940 1160 0.400000 +1940 1284 0.400000 +1940 1311 0.400000 +1940 1364 0.400000 +1940 1410 0.400000 +1940 1520 0.400000 +1940 1526 0.400000 +1940 1676 0.400000 +1940 1692 0.400000 +1940 1710 0.400000 +1940 1713 0.400000 +1940 1726 0.400000 +1940 1757 0.400000 +1940 1986 0.400000 +1940 2022 0.400000 +1940 2040 0.400000 +1940 2092 0.400000 +1940 2121 0.400000 +1940 2189 0.400000 +1940 2287 0.400000 +1940 2302 0.400000 +1940 2314 0.400000 +1940 2479 0.400000 +1940 2522 0.400000 +1940 2599 0.400000 +1940 2612 0.400000 +1940 2691 0.400000 +1940 2713 0.400000 +1940 2726 0.400000 +1940 3032 0.400000 +1940 3174 0.400000 +1941 28 0.400000 +1941 51 0.400000 +1941 88 0.400000 +1941 158 0.400000 +1941 223 0.400000 +1941 288 0.400000 +1941 297 0.400000 +1941 355 0.400000 +1941 360 0.400000 +1941 409 0.400000 +1941 418 0.400000 +1941 451 0.400000 +1941 487 0.400000 +1941 508 0.400000 +1941 539 0.400000 +1941 543 0.400000 +1941 546 0.400000 +1941 609 0.400000 +1941 627 0.400000 +1941 651 0.400000 +1941 654 0.400000 +1941 658 0.400000 +1941 695 0.400000 +1941 741 0.400000 +1941 813 0.400000 +1941 873 0.400000 +1941 912 0.400000 +1941 979 0.400000 +1941 1003 0.400000 +1941 1145 0.400000 +1941 1148 0.400000 +1941 1172 0.400000 +1941 1177 0.400000 +1941 1298 0.400000 +1941 1338 0.400000 +1941 1354 0.400000 +1941 1423 0.400000 +1941 1452 0.400000 +1941 1492 0.400000 +1941 1650 0.400000 +1941 1718 0.400000 +1941 1738 0.400000 +1941 1752 0.400000 +1941 1757 0.400000 +1941 1779 0.400000 +1941 1791 0.400000 +1941 1811 0.400000 +1941 1977 0.400000 +1941 1988 0.400000 +1941 2075 0.400000 +1941 2097 0.400000 +1941 2119 0.400000 +1941 2202 0.400000 +1941 2203 0.400000 +1941 2261 0.400000 +1941 2265 0.400000 +1941 2278 0.400000 +1941 2370 0.400000 +1941 2502 0.400000 +1941 2528 0.400000 +1941 2621 0.400000 +1941 2669 0.400000 +1941 2816 0.400000 +1941 2842 0.400000 +1941 2918 0.400000 +1941 2940 0.400000 +1941 2960 0.400000 +1941 2961 0.400000 +1941 2989 0.400000 +1941 3026 0.400000 +1941 3109 0.400000 +1942 86 0.400000 +1942 94 0.400000 +1942 95 0.400000 +1942 236 0.400000 +1942 275 0.400000 +1942 424 0.400000 +1942 439 0.400000 +1942 457 0.400000 +1942 495 0.400000 +1942 604 0.400000 +1942 728 0.400000 +1942 733 0.400000 +1942 741 0.400000 +1942 805 0.400000 +1942 855 0.400000 +1942 874 0.400000 +1942 936 0.400000 +1942 1065 0.400000 +1942 1089 0.400000 +1942 1125 0.400000 +1942 1300 0.400000 +1942 1303 0.400000 +1942 1312 0.400000 +1942 1339 0.400000 +1942 1430 0.400000 +1942 1436 0.400000 +1942 1474 0.400000 +1942 1475 0.400000 +1942 1487 0.400000 +1942 1492 0.400000 +1942 1544 0.400000 +1942 1574 0.400000 +1942 1640 0.400000 +1942 1822 0.400000 +1942 1869 0.400000 +1942 1898 0.400000 +1942 1901 0.400000 +1942 1928 0.400000 +1942 1980 0.400000 +1942 2001 0.400000 +1942 2020 0.400000 +1942 2034 0.400000 +1942 2073 0.400000 +1942 2150 0.400000 +1942 2176 0.400000 +1942 2183 0.400000 +1942 2208 0.400000 +1942 2233 0.400000 +1942 2276 0.400000 +1942 2385 0.400000 +1942 2402 0.400000 +1942 2413 0.400000 +1942 2438 0.400000 +1942 2439 0.400000 +1942 2723 0.400000 +1942 2821 0.400000 +1942 2868 0.400000 +1942 2900 0.400000 +1942 2937 0.400000 +1942 3024 0.400000 +1942 3052 0.400000 +1942 3071 0.400000 +1942 3122 0.400000 +1943 17 0.400000 +1943 34 0.400000 +1943 77 0.400000 +1943 135 0.400000 +1943 209 0.400000 +1943 288 0.400000 +1943 369 0.400000 +1943 442 0.400000 +1943 456 0.400000 +1943 529 0.400000 +1943 568 0.400000 +1943 581 0.400000 +1943 582 0.400000 +1943 602 0.400000 +1943 616 0.400000 +1943 643 0.400000 +1943 698 0.400000 +1943 717 0.400000 +1943 745 0.400000 +1943 788 0.400000 +1943 875 0.400000 +1943 1000 0.400000 +1943 1119 0.400000 +1943 1124 0.400000 +1943 1160 0.400000 +1943 1184 0.400000 +1943 1204 0.400000 +1943 1288 0.400000 +1943 1301 0.400000 +1943 1377 0.400000 +1943 1421 0.400000 +1943 1467 0.400000 +1943 1496 0.400000 +1943 1533 0.400000 +1943 1643 0.400000 +1943 1696 0.400000 +1943 1716 0.400000 +1943 1806 0.400000 +1943 1831 0.400000 +1943 1858 0.400000 +1943 1861 0.400000 +1943 1892 0.400000 +1943 2001 0.400000 +1943 2011 0.400000 +1943 2030 0.400000 +1943 2189 0.400000 +1943 2260 0.400000 +1943 2294 0.400000 +1943 2300 0.400000 +1943 2421 0.400000 +1943 2447 0.400000 +1943 2488 0.400000 +1943 2520 0.400000 +1943 2524 0.400000 +1943 2554 0.400000 +1943 2658 0.400000 +1943 2732 0.400000 +1943 2742 0.400000 +1943 2951 0.400000 +1943 2956 0.400000 +1943 2992 0.400000 +1943 3011 0.400000 +1943 3012 0.400000 +1943 3016 0.400000 +1943 3035 0.400000 +1943 3089 0.400000 +1943 3150 0.400000 +1944 61 0.400000 +1944 136 0.400000 +1944 191 0.400000 +1944 231 0.400000 +1944 272 0.400000 +1944 343 0.400000 +1944 532 0.400000 +1944 581 0.400000 +1944 605 0.400000 +1944 666 0.400000 +1944 683 0.400000 +1944 685 0.400000 +1944 790 0.400000 +1944 870 0.400000 +1944 893 0.400000 +1944 971 0.400000 +1944 988 0.400000 +1944 1058 0.400000 +1944 1141 0.400000 +1944 1185 0.400000 +1944 1223 0.400000 +1944 1232 0.400000 +1944 1308 0.400000 +1944 1309 0.400000 +1944 1314 0.400000 +1944 1349 0.400000 +1944 1507 0.400000 +1944 1561 0.400000 +1944 1571 0.400000 +1944 1572 0.400000 +1944 1610 0.400000 +1944 1712 0.400000 +1944 1785 0.400000 +1944 1790 0.400000 +1944 1978 0.400000 +1944 2005 0.400000 +1944 2047 0.400000 +1944 2127 0.400000 +1944 2179 0.400000 +1944 2193 0.400000 +1944 2295 0.400000 +1944 2384 0.400000 +1944 2475 0.400000 +1944 2506 0.400000 +1944 2543 0.400000 +1944 2590 0.400000 +1944 2629 0.400000 +1944 2639 0.400000 +1944 2643 0.400000 +1944 2730 0.400000 +1944 2763 0.400000 +1944 2823 0.400000 +1944 2883 0.400000 +1944 3090 0.400000 +1944 3179 0.400000 +1945 14 0.400000 +1945 25 0.400000 +1945 248 0.400000 +1945 399 0.400000 +1945 662 0.400000 +1945 715 0.400000 +1945 749 0.400000 +1945 889 0.400000 +1945 967 0.400000 +1945 988 0.400000 +1945 1037 0.400000 +1945 1048 0.400000 +1945 1065 0.400000 +1945 1071 0.400000 +1945 1074 0.400000 +1945 1092 0.400000 +1945 1137 0.400000 +1945 1153 0.400000 +1945 1159 0.400000 +1945 1174 0.400000 +1945 1233 0.400000 +1945 1294 0.400000 +1945 1313 0.400000 +1945 1325 0.400000 +1945 1361 0.400000 +1945 1461 0.400000 +1945 1489 0.400000 +1945 1617 0.400000 +1945 1628 0.400000 +1945 1673 0.400000 +1945 1747 0.400000 +1945 1824 0.400000 +1945 1960 0.400000 +1945 1977 0.400000 +1945 2002 0.400000 +1945 2030 0.400000 +1945 2031 0.400000 +1945 2096 0.400000 +1945 2117 0.400000 +1945 2130 0.400000 +1945 2169 0.400000 +1945 2211 0.400000 +1945 2228 0.400000 +1945 2303 0.400000 +1945 2328 0.400000 +1945 2344 0.400000 +1945 2414 0.400000 +1945 2481 0.400000 +1945 2636 0.400000 +1945 2900 0.400000 +1945 2907 0.400000 +1945 2919 0.400000 +1945 2935 0.400000 +1945 2961 0.400000 +1945 3056 0.400000 +1946 47 0.400000 +1946 83 0.400000 +1946 97 0.400000 +1946 127 0.400000 +1946 140 0.400000 +1946 167 0.400000 +1946 198 0.400000 +1946 222 0.400000 +1946 226 0.400000 +1946 356 0.400000 +1946 402 0.400000 +1946 410 0.400000 +1946 599 0.400000 +1946 631 0.400000 +1946 652 0.400000 +1946 685 0.400000 +1946 713 0.400000 +1946 754 0.400000 +1946 760 0.400000 +1946 761 0.400000 +1946 805 0.400000 +1946 842 0.400000 +1946 880 0.400000 +1946 944 0.400000 +1946 1077 0.400000 +1946 1133 0.400000 +1946 1159 0.400000 +1946 1261 0.400000 +1946 1331 0.400000 +1946 1345 0.400000 +1946 1410 0.400000 +1946 1470 0.400000 +1946 1572 0.400000 +1946 1613 0.400000 +1946 1692 0.400000 +1946 1800 0.400000 +1946 1840 0.400000 +1946 1851 0.400000 +1946 1858 0.400000 +1946 1917 0.400000 +1946 2001 0.400000 +1946 2036 0.400000 +1946 2091 0.400000 +1946 2126 0.400000 +1946 2170 0.400000 +1946 2289 0.400000 +1946 2302 0.400000 +1946 2315 0.400000 +1946 2355 0.400000 +1946 2370 0.400000 +1946 2384 0.400000 +1946 2399 0.400000 +1946 2443 0.400000 +1946 2455 0.400000 +1946 2476 0.400000 +1946 2510 0.400000 +1946 2513 0.400000 +1946 2574 0.400000 +1946 2726 0.400000 +1946 2773 0.400000 +1946 2803 0.400000 +1946 2870 0.400000 +1946 2896 0.400000 +1946 2946 0.400000 +1946 2995 0.400000 +1946 3020 0.400000 +1946 3025 0.400000 +1946 3034 0.400000 +1946 3066 0.400000 +1947 9 0.400000 +1947 198 0.400000 +1947 224 0.400000 +1947 248 0.400000 +1947 268 0.400000 +1947 379 0.400000 +1947 437 0.400000 +1947 502 0.400000 +1947 527 0.400000 +1947 534 0.400000 +1947 550 0.400000 +1947 612 0.400000 +1947 745 0.400000 +1947 756 0.400000 +1947 945 0.400000 +1947 990 0.400000 +1947 1053 0.400000 +1947 1065 0.400000 +1947 1152 0.400000 +1947 1182 0.400000 +1947 1192 0.400000 +1947 1225 0.400000 +1947 1228 0.400000 +1947 1237 0.400000 +1947 1328 0.400000 +1947 1342 0.400000 +1947 1359 0.400000 +1947 1365 0.400000 +1947 1406 0.400000 +1947 1409 0.400000 +1947 1451 0.400000 +1947 1545 0.400000 +1947 1558 0.400000 +1947 1627 0.400000 +1947 1669 0.400000 +1947 1704 0.400000 +1947 1710 0.400000 +1947 1717 0.400000 +1947 1726 0.400000 +1947 1804 0.400000 +1947 1857 0.400000 +1947 1880 0.400000 +1947 1927 0.400000 +1947 1941 0.400000 +1947 2017 0.400000 +1947 2020 0.400000 +1947 2038 0.400000 +1947 2225 0.400000 +1947 2245 0.400000 +1947 2290 0.400000 +1947 2296 0.400000 +1947 2382 0.400000 +1947 2461 0.400000 +1947 2492 0.400000 +1947 2504 0.400000 +1947 2566 0.400000 +1947 2616 0.400000 +1947 2636 0.400000 +1947 2642 0.400000 +1947 2654 0.400000 +1947 2722 0.400000 +1947 2738 0.400000 +1947 2798 0.400000 +1947 2841 0.400000 +1947 2858 0.400000 +1947 2862 0.400000 +1947 3000 0.400000 +1947 3049 0.400000 +1947 3119 0.400000 +1947 3142 0.400000 +1947 3156 0.400000 +1948 32 0.400000 +1948 49 0.400000 +1948 57 0.400000 +1948 60 0.400000 +1948 98 0.400000 +1948 111 0.400000 +1948 153 0.400000 +1948 167 0.400000 +1948 218 0.400000 +1948 354 0.400000 +1948 362 0.400000 +1948 495 0.400000 +1948 614 0.400000 +1948 637 0.400000 +1948 643 0.400000 +1948 709 0.400000 +1948 720 0.400000 +1948 768 0.400000 +1948 771 0.400000 +1948 795 0.400000 +1948 1017 0.400000 +1948 1262 0.400000 +1948 1340 0.400000 +1948 1464 0.400000 +1948 1527 0.400000 +1948 1544 0.400000 +1948 1549 0.400000 +1948 1558 0.400000 +1948 1561 0.400000 +1948 1563 0.400000 +1948 1627 0.400000 +1948 1689 0.400000 +1948 1764 0.400000 +1948 1936 0.400000 +1948 2063 0.400000 +1948 2066 0.400000 +1948 2079 0.400000 +1948 2193 0.400000 +1948 2202 0.400000 +1948 2207 0.400000 +1948 2277 0.400000 +1948 2329 0.400000 +1948 2379 0.400000 +1948 2471 0.400000 +1948 2487 0.400000 +1948 2505 0.400000 +1948 2583 0.400000 +1948 2618 0.400000 +1948 2660 0.400000 +1948 2690 0.400000 +1948 2693 0.400000 +1948 2768 0.400000 +1948 2769 0.400000 +1948 2834 0.400000 +1948 3032 0.400000 +1948 3064 0.400000 +1948 3104 0.400000 +1948 3123 0.400000 +1948 3180 0.400000 +1948 3194 0.400000 +1949 79 0.400000 +1949 84 0.400000 +1949 86 0.400000 +1949 185 0.400000 +1949 205 0.400000 +1949 414 0.400000 +1949 514 0.400000 +1949 657 0.400000 +1949 659 0.400000 +1949 788 0.400000 +1949 828 0.400000 +1949 833 0.400000 +1949 927 0.400000 +1949 1013 0.400000 +1949 1047 0.400000 +1949 1104 0.400000 +1949 1191 0.400000 +1949 1379 0.400000 +1949 1466 0.400000 +1949 1474 0.400000 +1949 1630 0.400000 +1949 1653 0.400000 +1949 1663 0.400000 +1949 1716 0.400000 +1949 1775 0.400000 +1949 1796 0.400000 +1949 1822 0.400000 +1949 1859 0.400000 +1949 1868 0.400000 +1949 1888 0.400000 +1949 1908 0.400000 +1949 1936 0.400000 +1949 1968 0.400000 +1949 1995 0.400000 +1949 2016 0.400000 +1949 2037 0.400000 +1949 2052 0.400000 +1949 2063 0.400000 +1949 2187 0.400000 +1949 2210 0.400000 +1949 2326 0.400000 +1949 2327 0.400000 +1949 2333 0.400000 +1949 2409 0.400000 +1949 2433 0.400000 +1949 2464 0.400000 +1949 2501 0.400000 +1949 2539 0.400000 +1949 2728 0.400000 +1949 2741 0.400000 +1949 2783 0.400000 +1949 2821 0.400000 +1949 2841 0.400000 +1949 2869 0.400000 +1949 2986 0.400000 +1949 3083 0.400000 +1949 3105 0.400000 +1950 49 0.400000 +1950 54 0.400000 +1950 68 0.400000 +1950 105 0.400000 +1950 128 0.400000 +1950 137 0.400000 +1950 174 0.400000 +1950 208 0.400000 +1950 269 0.400000 +1950 280 0.400000 +1950 293 0.400000 +1950 359 0.400000 +1950 467 0.400000 +1950 574 0.400000 +1950 665 0.400000 +1950 683 0.400000 +1950 723 0.400000 +1950 985 0.400000 +1950 1046 0.400000 +1950 1080 0.400000 +1950 1085 0.400000 +1950 1122 0.400000 +1950 1125 0.400000 +1950 1338 0.400000 +1950 1381 0.400000 +1950 1403 0.400000 +1950 1404 0.400000 +1950 1408 0.400000 +1950 1558 0.400000 +1950 1686 0.400000 +1950 1749 0.400000 +1950 1773 0.400000 +1950 1882 0.400000 +1950 1998 0.400000 +1950 2016 0.400000 +1950 2043 0.400000 +1950 2048 0.400000 +1950 2173 0.400000 +1950 2252 0.400000 +1950 2344 0.400000 +1950 2476 0.400000 +1950 2493 0.400000 +1950 2512 0.400000 +1950 2527 0.400000 +1950 2551 0.400000 +1950 2562 0.400000 +1950 2597 0.400000 +1950 2668 0.400000 +1950 2704 0.400000 +1950 2785 0.400000 +1950 2815 0.400000 +1950 2868 0.400000 +1950 2916 0.400000 +1950 2918 0.400000 +1950 2936 0.400000 +1950 3011 0.400000 +1950 3074 0.400000 +1950 3131 0.400000 +1950 3159 0.400000 +1950 3181 0.400000 +1950 3188 0.400000 +1951 165 0.400000 +1951 171 0.400000 +1951 197 0.400000 +1951 272 0.400000 +1951 281 0.400000 +1951 328 0.400000 +1951 369 0.400000 +1951 457 0.400000 +1951 464 0.400000 +1951 504 0.400000 +1951 525 0.400000 +1951 531 0.400000 +1951 589 0.400000 +1951 636 0.400000 +1951 644 0.400000 +1951 660 0.400000 +1951 661 0.400000 +1951 673 0.400000 +1951 695 0.400000 +1951 742 0.400000 +1951 763 0.400000 +1951 788 0.400000 +1951 877 0.400000 +1951 1024 0.400000 +1951 1047 0.400000 +1951 1069 0.400000 +1951 1085 0.400000 +1951 1163 0.400000 +1951 1174 0.400000 +1951 1180 0.400000 +1951 1287 0.400000 +1951 1308 0.400000 +1951 1332 0.400000 +1951 1361 0.400000 +1951 1422 0.400000 +1951 1502 0.400000 +1951 1669 0.400000 +1951 1897 0.400000 +1951 1966 0.400000 +1951 1973 0.400000 +1951 2061 0.400000 +1951 2079 0.400000 +1951 2143 0.400000 +1951 2172 0.400000 +1951 2247 0.400000 +1951 2262 0.400000 +1951 2266 0.400000 +1951 2328 0.400000 +1951 2509 0.400000 +1951 2584 0.400000 +1951 2611 0.400000 +1951 2659 0.400000 +1951 2672 0.400000 +1951 2698 0.400000 +1951 2751 0.400000 +1951 2781 0.400000 +1951 2831 0.400000 +1951 2839 0.400000 +1951 2893 0.400000 +1951 2933 0.400000 +1951 2935 0.400000 +1951 3067 0.400000 +1951 3098 0.400000 +1951 3103 0.400000 +1951 3178 0.400000 +1951 3184 0.400000 +1951 3197 0.400000 +1952 44 0.400000 +1952 68 0.400000 +1952 74 0.400000 +1952 113 0.400000 +1952 175 0.400000 +1952 244 0.400000 +1952 282 0.400000 +1952 314 0.400000 +1952 406 0.400000 +1952 474 0.400000 +1952 482 0.400000 +1952 485 0.400000 +1952 510 0.400000 +1952 570 0.400000 +1952 609 0.400000 +1952 743 0.400000 +1952 825 0.400000 +1952 843 0.400000 +1952 862 0.400000 +1952 873 0.400000 +1952 890 0.400000 +1952 925 0.400000 +1952 935 0.400000 +1952 940 0.400000 +1952 1135 0.400000 +1952 1162 0.400000 +1952 1210 0.400000 +1952 1340 0.400000 +1952 1395 0.400000 +1952 1406 0.400000 +1952 1413 0.400000 +1952 1428 0.400000 +1952 1432 0.400000 +1952 1448 0.400000 +1952 1533 0.400000 +1952 1568 0.400000 +1952 1660 0.400000 +1952 1710 0.400000 +1952 1734 0.400000 +1952 1741 0.400000 +1952 1796 0.400000 +1952 1830 0.400000 +1952 1939 0.400000 +1952 2016 0.400000 +1952 2142 0.400000 +1952 2150 0.400000 +1952 2153 0.400000 +1952 2165 0.400000 +1952 2221 0.400000 +1952 2239 0.400000 +1952 2366 0.400000 +1952 2411 0.400000 +1952 2493 0.400000 +1952 2503 0.400000 +1952 2532 0.400000 +1952 2597 0.400000 +1952 2643 0.400000 +1952 2740 0.400000 +1952 2749 0.400000 +1952 2797 0.400000 +1952 2824 0.400000 +1952 2902 0.400000 +1952 3000 0.400000 +1952 3105 0.400000 +1952 3132 0.400000 +1952 3146 0.400000 +1952 3167 0.400000 +1952 3197 0.400000 +1953 35 0.400000 +1953 41 0.400000 +1953 97 0.400000 +1953 125 0.400000 +1953 311 0.400000 +1953 337 0.400000 +1953 372 0.400000 +1953 432 0.400000 +1953 458 0.400000 +1953 464 0.400000 +1953 484 0.400000 +1953 531 0.400000 +1953 537 0.400000 +1953 541 0.400000 +1953 562 0.400000 +1953 604 0.400000 +1953 643 0.400000 +1953 648 0.400000 +1953 678 0.400000 +1953 848 0.400000 +1953 958 0.400000 +1953 991 0.400000 +1953 1030 0.400000 +1953 1035 0.400000 +1953 1179 0.400000 +1953 1191 0.400000 +1953 1214 0.400000 +1953 1276 0.400000 +1953 1306 0.400000 +1953 1363 0.400000 +1953 1450 0.400000 +1953 1574 0.400000 +1953 1617 0.400000 +1953 1620 0.400000 +1953 1669 0.400000 +1953 1725 0.400000 +1953 1755 0.400000 +1953 1795 0.400000 +1953 1804 0.400000 +1953 1908 0.400000 +1953 1912 0.400000 +1953 1917 0.400000 +1953 1935 0.400000 +1953 1978 0.400000 +1953 2071 0.400000 +1953 2093 0.400000 +1953 2155 0.400000 +1953 2179 0.400000 +1953 2222 0.400000 +1953 2258 0.400000 +1953 2287 0.400000 +1953 2366 0.400000 +1953 2380 0.400000 +1953 2486 0.400000 +1953 2675 0.400000 +1953 2698 0.400000 +1953 2705 0.400000 +1953 2737 0.400000 +1953 2999 0.400000 +1953 3004 0.400000 +1953 3074 0.400000 +1953 3126 0.400000 +1954 55 0.400000 +1954 119 0.400000 +1954 123 0.400000 +1954 220 0.400000 +1954 244 0.400000 +1954 311 0.400000 +1954 383 0.400000 +1954 419 0.400000 +1954 492 0.400000 +1954 498 0.400000 +1954 519 0.400000 +1954 608 0.400000 +1954 617 0.400000 +1954 623 0.400000 +1954 725 0.400000 +1954 740 0.400000 +1954 757 0.400000 +1954 784 0.400000 +1954 787 0.400000 +1954 827 0.400000 +1954 894 0.400000 +1954 921 0.400000 +1954 932 0.400000 +1954 973 0.400000 +1954 1039 0.400000 +1954 1081 0.400000 +1954 1133 0.400000 +1954 1178 0.400000 +1954 1244 0.400000 +1954 1264 0.400000 +1954 1332 0.400000 +1954 1384 0.400000 +1954 1685 0.400000 +1954 1866 0.400000 +1954 1950 0.400000 +1954 1955 0.400000 +1954 1987 0.400000 +1954 2011 0.400000 +1954 2081 0.400000 +1954 2139 0.400000 +1954 2178 0.400000 +1954 2198 0.400000 +1954 2217 0.400000 +1954 2258 0.400000 +1954 2388 0.400000 +1954 2398 0.400000 +1954 2471 0.400000 +1954 2561 0.400000 +1954 2665 0.400000 +1954 2708 0.400000 +1954 2798 0.400000 +1954 2925 0.400000 +1954 2953 0.400000 +1954 2958 0.400000 +1954 2960 0.400000 +1954 2965 0.400000 +1954 3070 0.400000 +1954 3115 0.400000 +1954 3119 0.400000 +1954 3140 0.400000 +1954 3146 0.400000 +1954 3165 0.400000 +1954 3168 0.400000 +1955 36 0.400000 +1955 63 0.400000 +1955 93 0.400000 +1955 128 0.400000 +1955 152 0.400000 +1955 221 0.400000 +1955 225 0.400000 +1955 230 0.400000 +1955 331 0.400000 +1955 353 0.400000 +1955 365 0.400000 +1955 393 0.400000 +1955 428 0.400000 +1955 443 0.400000 +1955 476 0.400000 +1955 563 0.400000 +1955 674 0.400000 +1955 689 0.400000 +1955 833 0.400000 +1955 909 0.400000 +1955 928 0.400000 +1955 940 0.400000 +1955 986 0.400000 +1955 1021 0.400000 +1955 1032 0.400000 +1955 1044 0.400000 +1955 1065 0.400000 +1955 1177 0.400000 +1955 1189 0.400000 +1955 1239 0.400000 +1955 1245 0.400000 +1955 1401 0.400000 +1955 1422 0.400000 +1955 1423 0.400000 +1955 1462 0.400000 +1955 1566 0.400000 +1955 1696 0.400000 +1955 1701 0.400000 +1955 1735 0.400000 +1955 1872 0.400000 +1955 1885 0.400000 +1955 1920 0.400000 +1955 1952 0.400000 +1955 1961 0.400000 +1955 1975 0.400000 +1955 1984 0.400000 +1955 2089 0.400000 +1955 2183 0.400000 +1955 2202 0.400000 +1955 2227 0.400000 +1955 2229 0.400000 +1955 2249 0.400000 +1955 2263 0.400000 +1955 2346 0.400000 +1955 2369 0.400000 +1955 2416 0.400000 +1955 2423 0.400000 +1955 2499 0.400000 +1955 2631 0.400000 +1955 2656 0.400000 +1955 2658 0.400000 +1955 2897 0.400000 +1955 2927 0.400000 +1955 2937 0.400000 +1955 3071 0.400000 +1955 3123 0.400000 +1955 3168 0.400000 +1956 16 0.400000 +1956 79 0.400000 +1956 88 0.400000 +1956 160 0.400000 +1956 317 0.400000 +1956 324 0.400000 +1956 334 0.400000 +1956 369 0.400000 +1956 433 0.400000 +1956 478 0.400000 +1956 490 0.400000 +1956 548 0.400000 +1956 566 0.400000 +1956 601 0.400000 +1956 650 0.400000 +1956 667 0.400000 +1956 712 0.400000 +1956 722 0.400000 +1956 812 0.400000 +1956 1282 0.400000 +1956 1336 0.400000 +1956 1339 0.400000 +1956 1342 0.400000 +1956 1421 0.400000 +1956 1479 0.400000 +1956 1490 0.400000 +1956 1606 0.400000 +1956 1872 0.400000 +1956 1891 0.400000 +1956 1897 0.400000 +1956 1942 0.400000 +1956 2028 0.400000 +1956 2034 0.400000 +1956 2088 0.400000 +1956 2118 0.400000 +1956 2124 0.400000 +1956 2189 0.400000 +1956 2385 0.400000 +1956 2401 0.400000 +1956 2505 0.400000 +1956 2518 0.400000 +1956 2542 0.400000 +1956 2715 0.400000 +1956 2763 0.400000 +1956 2783 0.400000 +1956 2970 0.400000 +1956 2973 0.400000 +1956 3022 0.400000 +1956 3023 0.400000 +1956 3112 0.400000 +1956 3179 0.400000 +1957 77 0.400000 +1957 153 0.400000 +1957 166 0.400000 +1957 243 0.400000 +1957 245 0.400000 +1957 281 0.400000 +1957 294 0.400000 +1957 309 0.400000 +1957 356 0.400000 +1957 363 0.400000 +1957 383 0.400000 +1957 388 0.400000 +1957 403 0.400000 +1957 459 0.400000 +1957 510 0.400000 +1957 515 0.400000 +1957 551 0.400000 +1957 579 0.400000 +1957 603 0.400000 +1957 604 0.400000 +1957 626 0.400000 +1957 629 0.400000 +1957 630 0.400000 +1957 783 0.400000 +1957 815 0.400000 +1957 855 0.400000 +1957 867 0.400000 +1957 911 0.400000 +1957 971 0.400000 +1957 1015 0.400000 +1957 1042 0.400000 +1957 1065 0.400000 +1957 1172 0.400000 +1957 1224 0.400000 +1957 1377 0.400000 +1957 1534 0.400000 +1957 1581 0.400000 +1957 1594 0.400000 +1957 1632 0.400000 +1957 1904 0.400000 +1957 1981 0.400000 +1957 1995 0.400000 +1957 2010 0.400000 +1957 2056 0.400000 +1957 2202 0.400000 +1957 2207 0.400000 +1957 2217 0.400000 +1957 2288 0.400000 +1957 2345 0.400000 +1957 2393 0.400000 +1957 2433 0.400000 +1957 2449 0.400000 +1957 2463 0.400000 +1957 2483 0.400000 +1957 2500 0.400000 +1957 2514 0.400000 +1957 2571 0.400000 +1957 2573 0.400000 +1957 2574 0.400000 +1957 2648 0.400000 +1957 2683 0.400000 +1957 2733 0.400000 +1957 2751 0.400000 +1957 2803 0.400000 +1957 2825 0.400000 +1957 2916 0.400000 +1957 2941 0.400000 +1957 2955 0.400000 +1957 2959 0.400000 +1957 3006 0.400000 +1957 3060 0.400000 +1957 3070 0.400000 +1957 3134 0.400000 +1958 69 0.400000 +1958 141 0.400000 +1958 160 0.400000 +1958 233 0.400000 +1958 313 0.400000 +1958 324 0.400000 +1958 412 0.400000 +1958 453 0.400000 +1958 457 0.400000 +1958 471 0.400000 +1958 556 0.400000 +1958 571 0.400000 +1958 583 0.400000 +1958 635 0.400000 +1958 677 0.400000 +1958 809 0.400000 +1958 926 0.400000 +1958 957 0.400000 +1958 1031 0.400000 +1958 1059 0.400000 +1958 1072 0.400000 +1958 1105 0.400000 +1958 1117 0.400000 +1958 1121 0.400000 +1958 1196 0.400000 +1958 1200 0.400000 +1958 1239 0.400000 +1958 1296 0.400000 +1958 1318 0.400000 +1958 1341 0.400000 +1958 1450 0.400000 +1958 1672 0.400000 +1958 1713 0.400000 +1958 1799 0.400000 +1958 1854 0.400000 +1958 1923 0.400000 +1958 1964 0.400000 +1958 1999 0.400000 +1958 2053 0.400000 +1958 2095 0.400000 +1958 2105 0.400000 +1958 2134 0.400000 +1958 2170 0.400000 +1958 2181 0.400000 +1958 2221 0.400000 +1958 2361 0.400000 +1958 2577 0.400000 +1958 2614 0.400000 +1958 2679 0.400000 +1958 2735 0.400000 +1958 2760 0.400000 +1958 2806 0.400000 +1958 2822 0.400000 +1958 2824 0.400000 +1958 2900 0.400000 +1958 2933 0.400000 +1958 3012 0.400000 +1958 3037 0.400000 +1958 3085 0.400000 +1958 3094 0.400000 +1958 3177 0.400000 +1959 44 0.400000 +1959 103 0.400000 +1959 184 0.400000 +1959 245 0.400000 +1959 365 0.400000 +1959 418 0.400000 +1959 419 0.400000 +1959 522 0.400000 +1959 581 0.400000 +1959 750 0.400000 +1959 788 0.400000 +1959 789 0.400000 +1959 853 0.400000 +1959 1050 0.400000 +1959 1093 0.400000 +1959 1099 0.400000 +1959 1199 0.400000 +1959 1213 0.400000 +1959 1237 0.400000 +1959 1243 0.400000 +1959 1274 0.400000 +1959 1309 0.400000 +1959 1338 0.400000 +1959 1349 0.400000 +1959 1394 0.400000 +1959 1414 0.400000 +1959 1422 0.400000 +1959 1423 0.400000 +1959 1476 0.400000 +1959 1564 0.400000 +1959 1567 0.400000 +1959 1683 0.400000 +1959 1698 0.400000 +1959 1732 0.400000 +1959 1737 0.400000 +1959 1833 0.400000 +1959 1836 0.400000 +1959 1912 0.400000 +1959 1957 0.400000 +1959 2068 0.400000 +1959 2092 0.400000 +1959 2140 0.400000 +1959 2197 0.400000 +1959 2204 0.400000 +1959 2211 0.400000 +1959 2238 0.400000 +1959 2299 0.400000 +1959 2365 0.400000 +1959 2465 0.400000 +1959 2475 0.400000 +1959 2487 0.400000 +1959 2515 0.400000 +1959 2551 0.400000 +1959 2606 0.400000 +1959 2608 0.400000 +1959 2617 0.400000 +1959 2658 0.400000 +1959 2745 0.400000 +1959 2757 0.400000 +1959 2768 0.400000 +1959 2833 0.400000 +1959 2837 0.400000 +1959 2865 0.400000 +1959 2916 0.400000 +1959 2962 0.400000 +1959 3057 0.400000 +1959 3156 0.400000 +1960 27 0.400000 +1960 75 0.400000 +1960 85 0.400000 +1960 97 0.400000 +1960 166 0.400000 +1960 202 0.400000 +1960 238 0.400000 +1960 298 0.400000 +1960 474 0.400000 +1960 482 0.400000 +1960 491 0.400000 +1960 582 0.400000 +1960 601 0.400000 +1960 618 0.400000 +1960 625 0.400000 +1960 682 0.400000 +1960 712 0.400000 +1960 736 0.400000 +1960 884 0.400000 +1960 888 0.400000 +1960 905 0.400000 +1960 928 0.400000 +1960 936 0.400000 +1960 994 0.400000 +1960 1051 0.400000 +1960 1120 0.400000 +1960 1157 0.400000 +1960 1185 0.400000 +1960 1311 0.400000 +1960 1427 0.400000 +1960 1433 0.400000 +1960 1520 0.400000 +1960 1576 0.400000 +1960 1729 0.400000 +1960 1753 0.400000 +1960 1768 0.400000 +1960 1770 0.400000 +1960 1814 0.400000 +1960 1832 0.400000 +1960 1849 0.400000 +1960 1858 0.400000 +1960 1864 0.400000 +1960 1926 0.400000 +1960 2124 0.400000 +1960 2169 0.400000 +1960 2237 0.400000 +1960 2342 0.400000 +1960 2358 0.400000 +1960 2360 0.400000 +1960 2390 0.400000 +1960 2411 0.400000 +1960 2415 0.400000 +1960 2425 0.400000 +1960 2482 0.400000 +1960 2609 0.400000 +1960 2659 0.400000 +1960 2660 0.400000 +1960 2817 0.400000 +1960 2837 0.400000 +1960 2844 0.400000 +1960 2880 0.400000 +1960 2921 0.400000 +1960 2940 0.400000 +1960 3005 0.400000 +1961 16 0.400000 +1961 387 0.400000 +1961 403 0.400000 +1961 424 0.400000 +1961 426 0.400000 +1961 515 0.400000 +1961 535 0.400000 +1961 537 0.400000 +1961 561 0.400000 +1961 739 0.400000 +1961 742 0.400000 +1961 744 0.400000 +1961 802 0.400000 +1961 829 0.400000 +1961 907 0.400000 +1961 915 0.400000 +1961 1039 0.400000 +1961 1051 0.400000 +1961 1077 0.400000 +1961 1186 0.400000 +1961 1230 0.400000 +1961 1234 0.400000 +1961 1268 0.400000 +1961 1281 0.400000 +1961 1312 0.400000 +1961 1341 0.400000 +1961 1415 0.400000 +1961 1514 0.400000 +1961 1546 0.400000 +1961 1590 0.400000 +1961 1643 0.400000 +1961 1723 0.400000 +1961 1807 0.400000 +1961 1850 0.400000 +1961 1927 0.400000 +1961 1968 0.400000 +1961 1974 0.400000 +1961 2005 0.400000 +1961 2045 0.400000 +1961 2262 0.400000 +1961 2275 0.400000 +1961 2419 0.400000 +1961 2487 0.400000 +1961 2606 0.400000 +1961 2717 0.400000 +1961 2736 0.400000 +1961 2753 0.400000 +1961 2766 0.400000 +1961 2824 0.400000 +1961 3090 0.400000 +1961 3155 0.400000 +1961 3165 0.400000 +1962 99 0.400000 +1962 111 0.400000 +1962 124 0.400000 +1962 164 0.400000 +1962 173 0.400000 +1962 188 0.400000 +1962 375 0.400000 +1962 387 0.400000 +1962 472 0.400000 +1962 551 0.400000 +1962 594 0.400000 +1962 619 0.400000 +1962 665 0.400000 +1962 675 0.400000 +1962 743 0.400000 +1962 759 0.400000 +1962 866 0.400000 +1962 897 0.400000 +1962 998 0.400000 +1962 1009 0.400000 +1962 1047 0.400000 +1962 1097 0.400000 +1962 1128 0.400000 +1962 1254 0.400000 +1962 1314 0.400000 +1962 1357 0.400000 +1962 1445 0.400000 +1962 1522 0.400000 +1962 1568 0.400000 +1962 1671 0.400000 +1962 1725 0.400000 +1962 1727 0.400000 +1962 1735 0.400000 +1962 1755 0.400000 +1962 1794 0.400000 +1962 1849 0.400000 +1962 1859 0.400000 +1962 1942 0.400000 +1962 1966 0.400000 +1962 2001 0.400000 +1962 2027 0.400000 +1962 2035 0.400000 +1962 2090 0.400000 +1962 2183 0.400000 +1962 2187 0.400000 +1962 2317 0.400000 +1962 2397 0.400000 +1962 2437 0.400000 +1962 2456 0.400000 +1962 2564 0.400000 +1962 2579 0.400000 +1962 2674 0.400000 +1962 2693 0.400000 +1962 2716 0.400000 +1962 2748 0.400000 +1962 2987 0.400000 +1962 3094 0.400000 +1962 3135 0.400000 +1963 3 0.400000 +1963 134 0.400000 +1963 163 0.400000 +1963 166 0.400000 +1963 195 0.400000 +1963 326 0.400000 +1963 348 0.400000 +1963 366 0.400000 +1963 520 0.400000 +1963 611 0.400000 +1963 636 0.400000 +1963 668 0.400000 +1963 673 0.400000 +1963 718 0.400000 +1963 738 0.400000 +1963 797 0.400000 +1963 801 0.400000 +1963 895 0.400000 +1963 896 0.400000 +1963 940 0.400000 +1963 1031 0.400000 +1963 1111 0.400000 +1963 1185 0.400000 +1963 1198 0.400000 +1963 1309 0.400000 +1963 1335 0.400000 +1963 1376 0.400000 +1963 1404 0.400000 +1963 1425 0.400000 +1963 1474 0.400000 +1963 1522 0.400000 +1963 1563 0.400000 +1963 1680 0.400000 +1963 1687 0.400000 +1963 1745 0.400000 +1963 1840 0.400000 +1963 1878 0.400000 +1963 1894 0.400000 +1963 1968 0.400000 +1963 2065 0.400000 +1963 2068 0.400000 +1963 2071 0.400000 +1963 2121 0.400000 +1963 2156 0.400000 +1963 2197 0.400000 +1963 2404 0.400000 +1963 2407 0.400000 +1963 2413 0.400000 +1963 2457 0.400000 +1963 2463 0.400000 +1963 2470 0.400000 +1963 2542 0.400000 +1963 2573 0.400000 +1963 2690 0.400000 +1963 2826 0.400000 +1963 2941 0.400000 +1963 2945 0.400000 +1963 2977 0.400000 +1963 3004 0.400000 +1963 3051 0.400000 +1963 3155 0.400000 +1963 3165 0.400000 +1963 3174 0.400000 +1963 3190 0.400000 +1964 56 0.400000 +1964 109 0.400000 +1964 229 0.400000 +1964 286 0.400000 +1964 305 0.400000 +1964 376 0.400000 +1964 381 0.400000 +1964 445 0.400000 +1964 470 0.400000 +1964 741 0.400000 +1964 751 0.400000 +1964 790 0.400000 +1964 899 0.400000 +1964 945 0.400000 +1964 994 0.400000 +1964 1064 0.400000 +1964 1105 0.400000 +1964 1140 0.400000 +1964 1189 0.400000 +1964 1266 0.400000 +1964 1339 0.400000 +1964 1403 0.400000 +1964 1460 0.400000 +1964 1461 0.400000 +1964 1541 0.400000 +1964 1558 0.400000 +1964 1635 0.400000 +1964 1657 0.400000 +1964 1692 0.400000 +1964 1758 0.400000 +1964 1846 0.400000 +1964 1872 0.400000 +1964 2014 0.400000 +1964 2033 0.400000 +1964 2048 0.400000 +1964 2077 0.400000 +1964 2115 0.400000 +1964 2158 0.400000 +1964 2213 0.400000 +1964 2221 0.400000 +1964 2233 0.400000 +1964 2259 0.400000 +1964 2326 0.400000 +1964 2338 0.400000 +1964 2345 0.400000 +1964 2412 0.400000 +1964 2423 0.400000 +1964 2573 0.400000 +1964 2600 0.400000 +1964 2646 0.400000 +1964 2694 0.400000 +1964 2730 0.400000 +1964 2744 0.400000 +1964 2761 0.400000 +1964 2767 0.400000 +1964 2810 0.400000 +1964 2819 0.400000 +1964 2891 0.400000 +1964 2925 0.400000 +1964 2976 0.400000 +1964 3030 0.400000 +1964 3083 0.400000 +1964 3097 0.400000 +1964 3100 0.400000 +1964 3109 0.400000 +1964 3131 0.400000 +1964 3134 0.400000 +1964 3144 0.400000 +1964 3148 0.400000 +1965 6 0.400000 +1965 16 0.400000 +1965 27 0.400000 +1965 184 0.400000 +1965 221 0.400000 +1965 301 0.400000 +1965 341 0.400000 +1965 351 0.400000 +1965 457 0.400000 +1965 554 0.400000 +1965 569 0.400000 +1965 582 0.400000 +1965 743 0.400000 +1965 873 0.400000 +1965 911 0.400000 +1965 994 0.400000 +1965 1131 0.400000 +1965 1166 0.400000 +1965 1202 0.400000 +1965 1293 0.400000 +1965 1450 0.400000 +1965 1516 0.400000 +1965 1543 0.400000 +1965 1561 0.400000 +1965 1565 0.400000 +1965 1616 0.400000 +1965 1625 0.400000 +1965 1652 0.400000 +1965 1668 0.400000 +1965 1688 0.400000 +1965 1689 0.400000 +1965 1807 0.400000 +1965 1829 0.400000 +1965 1851 0.400000 +1965 1914 0.400000 +1965 1984 0.400000 +1965 2141 0.400000 +1965 2149 0.400000 +1965 2156 0.400000 +1965 2163 0.400000 +1965 2338 0.400000 +1965 2347 0.400000 +1965 2356 0.400000 +1965 2437 0.400000 +1965 2454 0.400000 +1965 2476 0.400000 +1965 2485 0.400000 +1965 2538 0.400000 +1965 2584 0.400000 +1965 2699 0.400000 +1965 2817 0.400000 +1965 2846 0.400000 +1965 2888 0.400000 +1965 2902 0.400000 +1965 2960 0.400000 +1965 2994 0.400000 +1965 3019 0.400000 +1965 3036 0.400000 +1965 3044 0.400000 +1965 3070 0.400000 +1965 3094 0.400000 +1965 3133 0.400000 +1965 3186 0.400000 +1966 147 0.400000 +1966 167 0.400000 +1966 228 0.400000 +1966 314 0.400000 +1966 407 0.400000 +1966 417 0.400000 +1966 519 0.400000 +1966 576 0.400000 +1966 593 0.400000 +1966 618 0.400000 +1966 726 0.400000 +1966 759 0.400000 +1966 796 0.400000 +1966 838 0.400000 +1966 883 0.400000 +1966 906 0.400000 +1966 998 0.400000 +1966 1003 0.400000 +1966 1077 0.400000 +1966 1084 0.400000 +1966 1183 0.400000 +1966 1273 0.400000 +1966 1294 0.400000 +1966 1334 0.400000 +1966 1337 0.400000 +1966 1401 0.400000 +1966 1425 0.400000 +1966 1516 0.400000 +1966 1525 0.400000 +1966 1598 0.400000 +1966 1605 0.400000 +1966 1643 0.400000 +1966 1647 0.400000 +1966 1655 0.400000 +1966 1791 0.400000 +1966 2014 0.400000 +1966 2032 0.400000 +1966 2127 0.400000 +1966 2191 0.400000 +1966 2252 0.400000 +1966 2300 0.400000 +1966 2348 0.400000 +1966 2393 0.400000 +1966 2651 0.400000 +1966 2750 0.400000 +1966 2759 0.400000 +1966 2778 0.400000 +1966 2783 0.400000 +1966 2798 0.400000 +1966 2877 0.400000 +1966 3010 0.400000 +1966 3040 0.400000 +1966 3042 0.400000 +1966 3061 0.400000 +1966 3100 0.400000 +1966 3118 0.400000 +1966 3125 0.400000 +1967 37 0.400000 +1967 72 0.400000 +1967 156 0.400000 +1967 164 0.400000 +1967 357 0.400000 +1967 390 0.400000 +1967 476 0.400000 +1967 486 0.400000 +1967 487 0.400000 +1967 518 0.400000 +1967 563 0.400000 +1967 566 0.400000 +1967 677 0.400000 +1967 786 0.400000 +1967 902 0.400000 +1967 989 0.400000 +1967 1003 0.400000 +1967 1153 0.400000 +1967 1155 0.400000 +1967 1171 0.400000 +1967 1185 0.400000 +1967 1225 0.400000 +1967 1338 0.400000 +1967 1353 0.400000 +1967 1401 0.400000 +1967 1447 0.400000 +1967 1626 0.400000 +1967 1696 0.400000 +1967 1737 0.400000 +1967 1785 0.400000 +1967 1824 0.400000 +1967 1900 0.400000 +1967 1907 0.400000 +1967 1926 0.400000 +1967 1940 0.400000 +1967 2003 0.400000 +1967 2022 0.400000 +1967 2036 0.400000 +1967 2062 0.400000 +1967 2089 0.400000 +1967 2114 0.400000 +1967 2283 0.400000 +1967 2421 0.400000 +1967 2477 0.400000 +1967 2506 0.400000 +1967 2530 0.400000 +1967 2607 0.400000 +1967 2668 0.400000 +1967 2735 0.400000 +1967 2954 0.400000 +1967 2967 0.400000 +1967 2997 0.400000 +1967 3135 0.400000 +1967 3149 0.400000 +1968 55 0.400000 +1968 95 0.400000 +1968 153 0.400000 +1968 154 0.400000 +1968 180 0.400000 +1968 243 0.400000 +1968 250 0.400000 +1968 587 0.400000 +1968 677 0.400000 +1968 704 0.400000 +1968 764 0.400000 +1968 784 0.400000 +1968 826 0.400000 +1968 831 0.400000 +1968 849 0.400000 +1968 872 0.400000 +1968 933 0.400000 +1968 1093 0.400000 +1968 1137 0.400000 +1968 1163 0.400000 +1968 1195 0.400000 +1968 1247 0.400000 +1968 1262 0.400000 +1968 1313 0.400000 +1968 1330 0.400000 +1968 1343 0.400000 +1968 1400 0.400000 +1968 1411 0.400000 +1968 1414 0.400000 +1968 1536 0.400000 +1968 1552 0.400000 +1968 1557 0.400000 +1968 1564 0.400000 +1968 1694 0.400000 +1968 1806 0.400000 +1968 1816 0.400000 +1968 1837 0.400000 +1968 1907 0.400000 +1968 2086 0.400000 +1968 2151 0.400000 +1968 2202 0.400000 +1968 2235 0.400000 +1968 2247 0.400000 +1968 2266 0.400000 +1968 2283 0.400000 +1968 2358 0.400000 +1968 2365 0.400000 +1968 2374 0.400000 +1968 2411 0.400000 +1968 2459 0.400000 +1968 2463 0.400000 +1968 2507 0.400000 +1968 2545 0.400000 +1968 2673 0.400000 +1968 2680 0.400000 +1968 2711 0.400000 +1968 2753 0.400000 +1968 2915 0.400000 +1968 2940 0.400000 +1968 2981 0.400000 +1968 3081 0.400000 +1968 3091 0.400000 +1968 3136 0.400000 +1968 3190 0.400000 +1969 10 0.400000 +1969 37 0.400000 +1969 98 0.400000 +1969 111 0.400000 +1969 124 0.400000 +1969 151 0.400000 +1969 244 0.400000 +1969 265 0.400000 +1969 273 0.400000 +1969 275 0.400000 +1969 321 0.400000 +1969 360 0.400000 +1969 369 0.400000 +1969 387 0.400000 +1969 403 0.400000 +1969 405 0.400000 +1969 461 0.400000 +1969 504 0.400000 +1969 560 0.400000 +1969 616 0.400000 +1969 679 0.400000 +1969 737 0.400000 +1969 738 0.400000 +1969 750 0.400000 +1969 760 0.400000 +1969 906 0.400000 +1969 914 0.400000 +1969 970 0.400000 +1969 1040 0.400000 +1969 1162 0.400000 +1969 1299 0.400000 +1969 1354 0.400000 +1969 1402 0.400000 +1969 1414 0.400000 +1969 1444 0.400000 +1969 1474 0.400000 +1969 1556 0.400000 +1969 1569 0.400000 +1969 1581 0.400000 +1969 1637 0.400000 +1969 1796 0.400000 +1969 1817 0.400000 +1969 1867 0.400000 +1969 1872 0.400000 +1969 1880 0.400000 +1969 1903 0.400000 +1969 1957 0.400000 +1969 2052 0.400000 +1969 2137 0.400000 +1969 2139 0.400000 +1969 2157 0.400000 +1969 2218 0.400000 +1969 2429 0.400000 +1969 2652 0.400000 +1969 2659 0.400000 +1969 2861 0.400000 +1969 2983 0.400000 +1969 3006 0.400000 +1969 3030 0.400000 +1969 3031 0.400000 +1969 3055 0.400000 +1969 3065 0.400000 +1969 3182 0.400000 +1970 33 0.400000 +1970 132 0.400000 +1970 156 0.400000 +1970 241 0.400000 +1970 250 0.400000 +1970 286 0.400000 +1970 413 0.400000 +1970 442 0.400000 +1970 445 0.400000 +1970 492 0.400000 +1970 573 0.400000 +1970 720 0.400000 +1970 729 0.400000 +1970 759 0.400000 +1970 802 0.400000 +1970 811 0.400000 +1970 824 0.400000 +1970 833 0.400000 +1970 930 0.400000 +1970 943 0.400000 +1970 955 0.400000 +1970 970 0.400000 +1970 1199 0.400000 +1970 1213 0.400000 +1970 1228 0.400000 +1970 1344 0.400000 +1970 1347 0.400000 +1970 1363 0.400000 +1970 1487 0.400000 +1970 1680 0.400000 +1970 1702 0.400000 +1970 1759 0.400000 +1970 1825 0.400000 +1970 1869 0.400000 +1970 1890 0.400000 +1970 1938 0.400000 +1970 1957 0.400000 +1970 2000 0.400000 +1970 2017 0.400000 +1970 2044 0.400000 +1970 2049 0.400000 +1970 2277 0.400000 +1970 2317 0.400000 +1970 2369 0.400000 +1970 2451 0.400000 +1970 2497 0.400000 +1970 2521 0.400000 +1970 2615 0.400000 +1970 2689 0.400000 +1970 2693 0.400000 +1970 2808 0.400000 +1970 2899 0.400000 +1970 2910 0.400000 +1970 2937 0.400000 +1970 2953 0.400000 +1970 2980 0.400000 +1970 2981 0.400000 +1970 3063 0.400000 +1970 3073 0.400000 +1970 3075 0.400000 +1971 175 0.400000 +1971 189 0.400000 +1971 198 0.400000 +1971 237 0.400000 +1971 329 0.400000 +1971 373 0.400000 +1971 446 0.400000 +1971 464 0.400000 +1971 496 0.400000 +1971 611 0.400000 +1971 810 0.400000 +1971 836 0.400000 +1971 915 0.400000 +1971 1073 0.400000 +1971 1210 0.400000 +1971 1239 0.400000 +1971 1251 0.400000 +1971 1298 0.400000 +1971 1364 0.400000 +1971 1372 0.400000 +1971 1420 0.400000 +1971 1464 0.400000 +1971 1469 0.400000 +1971 1483 0.400000 +1971 1514 0.400000 +1971 1678 0.400000 +1971 1680 0.400000 +1971 1689 0.400000 +1971 1735 0.400000 +1971 1888 0.400000 +1971 1891 0.400000 +1971 1985 0.400000 +1971 2076 0.400000 +1971 2107 0.400000 +1971 2218 0.400000 +1971 2319 0.400000 +1971 2327 0.400000 +1971 2398 0.400000 +1971 2448 0.400000 +1971 2452 0.400000 +1971 2580 0.400000 +1971 2738 0.400000 +1971 2769 0.400000 +1971 2770 0.400000 +1971 2820 0.400000 +1971 2825 0.400000 +1971 2861 0.400000 +1971 2864 0.400000 +1971 2912 0.400000 +1972 6 0.400000 +1972 31 0.400000 +1972 269 0.400000 +1972 282 0.400000 +1972 339 0.400000 +1972 349 0.400000 +1972 375 0.400000 +1972 381 0.400000 +1972 422 0.400000 +1972 500 0.400000 +1972 551 0.400000 +1972 604 0.400000 +1972 641 0.400000 +1972 667 0.400000 +1972 736 0.400000 +1972 810 0.400000 +1972 840 0.400000 +1972 841 0.400000 +1972 932 0.400000 +1972 933 0.400000 +1972 940 0.400000 +1972 995 0.400000 +1972 1201 0.400000 +1972 1252 0.400000 +1972 1260 0.400000 +1972 1283 0.400000 +1972 1336 0.400000 +1972 1337 0.400000 +1972 1395 0.400000 +1972 1420 0.400000 +1972 1509 0.400000 +1972 1557 0.400000 +1972 1615 0.400000 +1972 1792 0.400000 +1972 1867 0.400000 +1972 1882 0.400000 +1972 1962 0.400000 +1972 2045 0.400000 +1972 2062 0.400000 +1972 2076 0.400000 +1972 2124 0.400000 +1972 2316 0.400000 +1972 2327 0.400000 +1972 2491 0.400000 +1972 2568 0.400000 +1972 2579 0.400000 +1972 2647 0.400000 +1972 2664 0.400000 +1972 2688 0.400000 +1972 2710 0.400000 +1972 2716 0.400000 +1972 2778 0.400000 +1972 2801 0.400000 +1972 2872 0.400000 +1972 2949 0.400000 +1972 3020 0.400000 +1972 3084 0.400000 +1972 3086 0.400000 +1972 3170 0.400000 +1973 33 0.400000 +1973 83 0.400000 +1973 128 0.400000 +1973 134 0.400000 +1973 176 0.400000 +1973 301 0.400000 +1973 337 0.400000 +1973 358 0.400000 +1973 391 0.400000 +1973 471 0.400000 +1973 507 0.400000 +1973 532 0.400000 +1973 569 0.400000 +1973 650 0.400000 +1973 655 0.400000 +1973 741 0.400000 +1973 767 0.400000 +1973 808 0.400000 +1973 813 0.400000 +1973 827 0.400000 +1973 847 0.400000 +1973 892 0.400000 +1973 925 0.400000 +1973 937 0.400000 +1973 1002 0.400000 +1973 1045 0.400000 +1973 1104 0.400000 +1973 1162 0.400000 +1973 1319 0.400000 +1973 1378 0.400000 +1973 1385 0.400000 +1973 1389 0.400000 +1973 1478 0.400000 +1973 1483 0.400000 +1973 1484 0.400000 +1973 1492 0.400000 +1973 1562 0.400000 +1973 1621 0.400000 +1973 1667 0.400000 +1973 1697 0.400000 +1973 1699 0.400000 +1973 1719 0.400000 +1973 1737 0.400000 +1973 1924 0.400000 +1973 1983 0.400000 +1973 2013 0.400000 +1973 2120 0.400000 +1973 2133 0.400000 +1973 2166 0.400000 +1973 2186 0.400000 +1973 2202 0.400000 +1973 2348 0.400000 +1973 2364 0.400000 +1973 2544 0.400000 +1973 2592 0.400000 +1973 2690 0.400000 +1973 2726 0.400000 +1973 2732 0.400000 +1973 2824 0.400000 +1973 2882 0.400000 +1973 2972 0.400000 +1973 3040 0.400000 +1973 3042 0.400000 +1973 3046 0.400000 +1974 35 0.400000 +1974 43 0.400000 +1974 59 0.400000 +1974 72 0.400000 +1974 200 0.400000 +1974 230 0.400000 +1974 321 0.400000 +1974 457 0.400000 +1974 498 0.400000 +1974 542 0.400000 +1974 624 0.400000 +1974 660 0.400000 +1974 760 0.400000 +1974 839 0.400000 +1974 867 0.400000 +1974 885 0.400000 +1974 991 0.400000 +1974 1051 0.400000 +1974 1078 0.400000 +1974 1168 0.400000 +1974 1358 0.400000 +1974 1361 0.400000 +1974 1486 0.400000 +1974 1510 0.400000 +1974 1566 0.400000 +1974 1698 0.400000 +1974 1721 0.400000 +1974 1803 0.400000 +1974 1823 0.400000 +1974 1825 0.400000 +1974 1861 0.400000 +1974 1896 0.400000 +1974 1977 0.400000 +1974 2038 0.400000 +1974 2048 0.400000 +1974 2056 0.400000 +1974 2079 0.400000 +1974 2203 0.400000 +1974 2236 0.400000 +1974 2263 0.400000 +1974 2411 0.400000 +1974 2430 0.400000 +1974 2610 0.400000 +1974 2733 0.400000 +1974 2736 0.400000 +1974 2741 0.400000 +1974 2753 0.400000 +1974 2777 0.400000 +1974 2850 0.400000 +1974 2895 0.400000 +1974 3031 0.400000 +1974 3098 0.400000 +1974 3105 0.400000 +1974 3109 0.400000 +1974 3163 0.400000 +1974 3174 0.400000 +1974 3189 0.400000 +1974 3192 0.400000 +1975 132 0.400000 +1975 160 0.400000 +1975 175 0.400000 +1975 202 0.400000 +1975 300 0.400000 +1975 302 0.400000 +1975 320 0.400000 +1975 385 0.400000 +1975 427 0.400000 +1975 463 0.400000 +1975 513 0.400000 +1975 556 0.400000 +1975 647 0.400000 +1975 677 0.400000 +1975 690 0.400000 +1975 807 0.400000 +1975 899 0.400000 +1975 1006 0.400000 +1975 1012 0.400000 +1975 1084 0.400000 +1975 1175 0.400000 +1975 1208 0.400000 +1975 1301 0.400000 +1975 1334 0.400000 +1975 1349 0.400000 +1975 1375 0.400000 +1975 1448 0.400000 +1975 1483 0.400000 +1975 1490 0.400000 +1975 1494 0.400000 +1975 1625 0.400000 +1975 1665 0.400000 +1975 1678 0.400000 +1975 1724 0.400000 +1975 1789 0.400000 +1975 1850 0.400000 +1975 1853 0.400000 +1975 1856 0.400000 +1975 1867 0.400000 +1975 1926 0.400000 +1975 1947 0.400000 +1975 1959 0.400000 +1975 2027 0.400000 +1975 2043 0.400000 +1975 2106 0.400000 +1975 2196 0.400000 +1975 2241 0.400000 +1975 2294 0.400000 +1975 2299 0.400000 +1975 2314 0.400000 +1975 2340 0.400000 +1975 2442 0.400000 +1975 2530 0.400000 +1975 2543 0.400000 +1975 2547 0.400000 +1975 2689 0.400000 +1975 2702 0.400000 +1975 2791 0.400000 +1975 2814 0.400000 +1975 2895 0.400000 +1975 2909 0.400000 +1975 2916 0.400000 +1975 2921 0.400000 +1975 2952 0.400000 +1975 2995 0.400000 +1975 3011 0.400000 +1975 3058 0.400000 +1975 3138 0.400000 +1975 3174 0.400000 +1976 6 0.400000 +1976 85 0.400000 +1976 161 0.400000 +1976 188 0.400000 +1976 258 0.400000 +1976 285 0.400000 +1976 314 0.400000 +1976 412 0.400000 +1976 505 0.400000 +1976 602 0.400000 +1976 606 0.400000 +1976 655 0.400000 +1976 763 0.400000 +1976 787 0.400000 +1976 790 0.400000 +1976 800 0.400000 +1976 828 0.400000 +1976 862 0.400000 +1976 936 0.400000 +1976 939 0.400000 +1976 951 0.400000 +1976 1035 0.400000 +1976 1064 0.400000 +1976 1087 0.400000 +1976 1135 0.400000 +1976 1160 0.400000 +1976 1203 0.400000 +1976 1254 0.400000 +1976 1257 0.400000 +1976 1283 0.400000 +1976 1287 0.400000 +1976 1344 0.400000 +1976 1346 0.400000 +1976 1371 0.400000 +1976 1412 0.400000 +1976 1419 0.400000 +1976 1472 0.400000 +1976 1506 0.400000 +1976 1652 0.400000 +1976 1721 0.400000 +1976 1816 0.400000 +1976 1820 0.400000 +1976 1830 0.400000 +1976 2095 0.400000 +1976 2123 0.400000 +1976 2241 0.400000 +1976 2287 0.400000 +1976 2356 0.400000 +1976 2371 0.400000 +1976 2385 0.400000 +1976 2423 0.400000 +1976 2463 0.400000 +1976 2578 0.400000 +1976 2612 0.400000 +1976 2750 0.400000 +1976 2774 0.400000 +1976 2823 0.400000 +1976 2858 0.400000 +1976 2879 0.400000 +1976 2885 0.400000 +1976 2938 0.400000 +1976 3051 0.400000 +1977 21 0.400000 +1977 115 0.400000 +1977 122 0.400000 +1977 136 0.400000 +1977 162 0.400000 +1977 169 0.400000 +1977 213 0.400000 +1977 234 0.400000 +1977 257 0.400000 +1977 297 0.400000 +1977 340 0.400000 +1977 417 0.400000 +1977 539 0.400000 +1977 584 0.400000 +1977 652 0.400000 +1977 772 0.400000 +1977 844 0.400000 +1977 856 0.400000 +1977 924 0.400000 +1977 1018 0.400000 +1977 1043 0.400000 +1977 1057 0.400000 +1977 1067 0.400000 +1977 1125 0.400000 +1977 1163 0.400000 +1977 1168 0.400000 +1977 1192 0.400000 +1977 1211 0.400000 +1977 1265 0.400000 +1977 1269 0.400000 +1977 1293 0.400000 +1977 1555 0.400000 +1977 1567 0.400000 +1977 1676 0.400000 +1977 1746 0.400000 +1977 1758 0.400000 +1977 1796 0.400000 +1977 1828 0.400000 +1977 1842 0.400000 +1977 1916 0.400000 +1977 1930 0.400000 +1977 1963 0.400000 +1977 1970 0.400000 +1977 2169 0.400000 +1977 2283 0.400000 +1977 2289 0.400000 +1977 2292 0.400000 +1977 2358 0.400000 +1977 2401 0.400000 +1977 2421 0.400000 +1977 2436 0.400000 +1977 2481 0.400000 +1977 2500 0.400000 +1977 2511 0.400000 +1977 2512 0.400000 +1977 2575 0.400000 +1977 2588 0.400000 +1977 2592 0.400000 +1977 2608 0.400000 +1977 2722 0.400000 +1977 2849 0.400000 +1977 2863 0.400000 +1977 2930 0.400000 +1977 2960 0.400000 +1977 3085 0.400000 +1977 3136 0.400000 +1977 3151 0.400000 +1977 3194 0.400000 +1978 4 0.400000 +1978 50 0.400000 +1978 55 0.400000 +1978 97 0.400000 +1978 159 0.400000 +1978 198 0.400000 +1978 216 0.400000 +1978 295 0.400000 +1978 384 0.400000 +1978 409 0.400000 +1978 411 0.400000 +1978 506 0.400000 +1978 519 0.400000 +1978 549 0.400000 +1978 582 0.400000 +1978 857 0.400000 +1978 873 0.400000 +1978 946 0.400000 +1978 957 0.400000 +1978 1014 0.400000 +1978 1057 0.400000 +1978 1118 0.400000 +1978 1122 0.400000 +1978 1148 0.400000 +1978 1192 0.400000 +1978 1216 0.400000 +1978 1258 0.400000 +1978 1293 0.400000 +1978 1312 0.400000 +1978 1330 0.400000 +1978 1357 0.400000 +1978 1445 0.400000 +1978 1477 0.400000 +1978 1546 0.400000 +1978 1560 0.400000 +1978 1576 0.400000 +1978 1621 0.400000 +1978 1633 0.400000 +1978 1680 0.400000 +1978 1738 0.400000 +1978 1757 0.400000 +1978 1824 0.400000 +1978 1838 0.400000 +1978 1858 0.400000 +1978 1884 0.400000 +1978 1909 0.400000 +1978 1920 0.400000 +1978 1996 0.400000 +1978 2022 0.400000 +1978 2033 0.400000 +1978 2069 0.400000 +1978 2152 0.400000 +1978 2219 0.400000 +1978 2289 0.400000 +1978 2310 0.400000 +1978 2390 0.400000 +1978 2403 0.400000 +1978 2423 0.400000 +1978 2438 0.400000 +1978 2490 0.400000 +1978 2541 0.400000 +1978 2588 0.400000 +1978 2647 0.400000 +1978 2673 0.400000 +1978 2732 0.400000 +1978 2769 0.400000 +1978 2800 0.400000 +1978 2809 0.400000 +1978 2832 0.400000 +1978 2951 0.400000 +1978 2971 0.400000 +1978 2984 0.400000 +1978 2996 0.400000 +1978 3003 0.400000 +1978 3075 0.400000 +1978 3103 0.400000 +1979 32 0.400000 +1979 100 0.400000 +1979 147 0.400000 +1979 156 0.400000 +1979 174 0.400000 +1979 201 0.400000 +1979 325 0.400000 +1979 351 0.400000 +1979 429 0.400000 +1979 487 0.400000 +1979 510 0.400000 +1979 564 0.400000 +1979 584 0.400000 +1979 672 0.400000 +1979 681 0.400000 +1979 686 0.400000 +1979 731 0.400000 +1979 759 0.400000 +1979 859 0.400000 +1979 889 0.400000 +1979 920 0.400000 +1979 951 0.400000 +1979 1037 0.400000 +1979 1071 0.400000 +1979 1103 0.400000 +1979 1137 0.400000 +1979 1146 0.400000 +1979 1176 0.400000 +1979 1267 0.400000 +1979 1303 0.400000 +1979 1406 0.400000 +1979 1413 0.400000 +1979 1426 0.400000 +1979 1493 0.400000 +1979 1577 0.400000 +1979 1598 0.400000 +1979 1659 0.400000 +1979 1876 0.400000 +1979 1921 0.400000 +1979 1979 0.400000 +1979 1980 0.400000 +1979 2128 0.400000 +1979 2141 0.400000 +1979 2179 0.400000 +1979 2218 0.400000 +1979 2338 0.400000 +1979 2395 0.400000 +1979 2517 0.400000 +1979 2537 0.400000 +1979 2542 0.400000 +1979 2543 0.400000 +1979 2552 0.400000 +1979 2679 0.400000 +1979 2719 0.400000 +1979 2728 0.400000 +1979 2783 0.400000 +1979 3008 0.400000 +1979 3121 0.400000 +1980 3 0.400000 +1980 21 0.400000 +1980 90 0.400000 +1980 145 0.400000 +1980 188 0.400000 +1980 207 0.400000 +1980 210 0.400000 +1980 245 0.400000 +1980 320 0.400000 +1980 371 0.400000 +1980 409 0.400000 +1980 442 0.400000 +1980 518 0.400000 +1980 532 0.400000 +1980 556 0.400000 +1980 579 0.400000 +1980 608 0.400000 +1980 661 0.400000 +1980 742 0.400000 +1980 743 0.400000 +1980 752 0.400000 +1980 779 0.400000 +1980 818 0.400000 +1980 844 0.400000 +1980 875 0.400000 +1980 885 0.400000 +1980 915 0.400000 +1980 916 0.400000 +1980 956 0.400000 +1980 972 0.400000 +1980 1034 0.400000 +1980 1040 0.400000 +1980 1053 0.400000 +1980 1065 0.400000 +1980 1120 0.400000 +1980 1123 0.400000 +1980 1125 0.400000 +1980 1142 0.400000 +1980 1155 0.400000 +1980 1242 0.400000 +1980 1375 0.400000 +1980 1380 0.400000 +1980 1453 0.400000 +1980 1529 0.400000 +1980 1690 0.400000 +1980 1695 0.400000 +1980 1719 0.400000 +1980 1807 0.400000 +1980 1827 0.400000 +1980 1964 0.400000 +1980 1968 0.400000 +1980 2040 0.400000 +1980 2123 0.400000 +1980 2141 0.400000 +1980 2184 0.400000 +1980 2218 0.400000 +1980 2436 0.400000 +1980 2463 0.400000 +1980 2478 0.400000 +1980 2512 0.400000 +1980 2537 0.400000 +1980 2538 0.400000 +1980 2613 0.400000 +1980 2841 0.400000 +1980 2888 0.400000 +1980 2938 0.400000 +1980 3006 0.400000 +1980 3027 0.400000 +1980 3038 0.400000 +1980 3060 0.400000 +1980 3080 0.400000 +1980 3126 0.400000 +1980 3161 0.400000 +1981 28 0.400000 +1981 165 0.400000 +1981 462 0.400000 +1981 502 0.400000 +1981 524 0.400000 +1981 541 0.400000 +1981 554 0.400000 +1981 563 0.400000 +1981 611 0.400000 +1981 744 0.400000 +1981 777 0.400000 +1981 810 0.400000 +1981 861 0.400000 +1981 862 0.400000 +1981 865 0.400000 +1981 876 0.400000 +1981 882 0.400000 +1981 920 0.400000 +1981 1111 0.400000 +1981 1165 0.400000 +1981 1324 0.400000 +1981 1381 0.400000 +1981 1453 0.400000 +1981 1542 0.400000 +1981 1734 0.400000 +1981 1780 0.400000 +1981 1784 0.400000 +1981 1786 0.400000 +1981 1794 0.400000 +1981 1813 0.400000 +1981 1817 0.400000 +1981 1904 0.400000 +1981 1910 0.400000 +1981 2067 0.400000 +1981 2115 0.400000 +1981 2267 0.400000 +1981 2294 0.400000 +1981 2565 0.400000 +1981 2593 0.400000 +1981 2653 0.400000 +1981 2656 0.400000 +1981 2665 0.400000 +1981 2666 0.400000 +1981 2738 0.400000 +1981 2816 0.400000 +1981 2843 0.400000 +1981 2873 0.400000 +1981 2906 0.400000 +1981 2941 0.400000 +1981 2989 0.400000 +1981 3008 0.400000 +1981 3032 0.400000 +1981 3074 0.400000 +1981 3111 0.400000 +1981 3174 0.400000 +1982 18 0.400000 +1982 190 0.400000 +1982 280 0.400000 +1982 315 0.400000 +1982 322 0.400000 +1982 346 0.400000 +1982 446 0.400000 +1982 471 0.400000 +1982 569 0.400000 +1982 596 0.400000 +1982 621 0.400000 +1982 741 0.400000 +1982 862 0.400000 +1982 877 0.400000 +1982 878 0.400000 +1982 891 0.400000 +1982 894 0.400000 +1982 942 0.400000 +1982 1050 0.400000 +1982 1052 0.400000 +1982 1083 0.400000 +1982 1099 0.400000 +1982 1187 0.400000 +1982 1209 0.400000 +1982 1221 0.400000 +1982 1242 0.400000 +1982 1256 0.400000 +1982 1294 0.400000 +1982 1305 0.400000 +1982 1374 0.400000 +1982 1400 0.400000 +1982 1432 0.400000 +1982 1433 0.400000 +1982 1453 0.400000 +1982 1514 0.400000 +1982 1574 0.400000 +1982 1672 0.400000 +1982 1721 0.400000 +1982 1756 0.400000 +1982 1872 0.400000 +1982 1903 0.400000 +1982 1911 0.400000 +1982 2008 0.400000 +1982 2026 0.400000 +1982 2040 0.400000 +1982 2063 0.400000 +1982 2080 0.400000 +1982 2164 0.400000 +1982 2231 0.400000 +1982 2259 0.400000 +1982 2284 0.400000 +1982 2332 0.400000 +1982 2411 0.400000 +1982 2432 0.400000 +1982 2556 0.400000 +1982 2566 0.400000 +1982 2568 0.400000 +1982 2597 0.400000 +1982 2608 0.400000 +1982 2694 0.400000 +1982 2753 0.400000 +1982 2759 0.400000 +1982 2844 0.400000 +1982 2855 0.400000 +1982 2866 0.400000 +1982 2871 0.400000 +1982 2873 0.400000 +1982 2903 0.400000 +1982 2998 0.400000 +1982 3002 0.400000 +1982 3051 0.400000 +1982 3140 0.400000 +1983 138 0.400000 +1983 197 0.400000 +1983 201 0.400000 +1983 214 0.400000 +1983 223 0.400000 +1983 247 0.400000 +1983 297 0.400000 +1983 305 0.400000 +1983 327 0.400000 +1983 358 0.400000 +1983 423 0.400000 +1983 449 0.400000 +1983 451 0.400000 +1983 656 0.400000 +1983 678 0.400000 +1983 810 0.400000 +1983 843 0.400000 +1983 901 0.400000 +1983 938 0.400000 +1983 961 0.400000 +1983 1038 0.400000 +1983 1146 0.400000 +1983 1165 0.400000 +1983 1238 0.400000 +1983 1299 0.400000 +1983 1361 0.400000 +1983 1380 0.400000 +1983 1401 0.400000 +1983 1411 0.400000 +1983 1426 0.400000 +1983 1434 0.400000 +1983 1569 0.400000 +1983 1574 0.400000 +1983 1608 0.400000 +1983 1689 0.400000 +1983 1702 0.400000 +1983 1703 0.400000 +1983 1743 0.400000 +1983 1967 0.400000 +1983 1974 0.400000 +1983 1987 0.400000 +1983 2010 0.400000 +1983 2064 0.400000 +1983 2070 0.400000 +1983 2079 0.400000 +1983 2092 0.400000 +1983 2178 0.400000 +1983 2218 0.400000 +1983 2223 0.400000 +1983 2247 0.400000 +1983 2336 0.400000 +1983 2368 0.400000 +1983 2424 0.400000 +1983 2470 0.400000 +1983 2477 0.400000 +1983 2565 0.400000 +1983 2615 0.400000 +1983 2616 0.400000 +1983 2621 0.400000 +1983 2685 0.400000 +1983 2777 0.400000 +1983 2813 0.400000 +1983 2834 0.400000 +1983 2843 0.400000 +1983 2868 0.400000 +1983 2874 0.400000 +1983 3094 0.400000 +1983 3148 0.400000 +1984 202 0.400000 +1984 212 0.400000 +1984 220 0.400000 +1984 251 0.400000 +1984 259 0.400000 +1984 365 0.400000 +1984 395 0.400000 +1984 432 0.400000 +1984 437 0.400000 +1984 496 0.400000 +1984 512 0.400000 +1984 558 0.400000 +1984 586 0.400000 +1984 607 0.400000 +1984 614 0.400000 +1984 628 0.400000 +1984 649 0.400000 +1984 657 0.400000 +1984 663 0.400000 +1984 683 0.400000 +1984 687 0.400000 +1984 692 0.400000 +1984 795 0.400000 +1984 806 0.400000 +1984 814 0.400000 +1984 822 0.400000 +1984 1016 0.400000 +1984 1028 0.400000 +1984 1148 0.400000 +1984 1181 0.400000 +1984 1194 0.400000 +1984 1263 0.400000 +1984 1277 0.400000 +1984 1312 0.400000 +1984 1321 0.400000 +1984 1397 0.400000 +1984 1413 0.400000 +1984 1415 0.400000 +1984 1530 0.400000 +1984 1605 0.400000 +1984 1688 0.400000 +1984 1758 0.400000 +1984 1818 0.400000 +1984 1929 0.400000 +1984 1979 0.400000 +1984 2007 0.400000 +1984 2018 0.400000 +1984 2029 0.400000 +1984 2172 0.400000 +1984 2175 0.400000 +1984 2208 0.400000 +1984 2213 0.400000 +1984 2451 0.400000 +1984 2458 0.400000 +1984 2460 0.400000 +1984 2485 0.400000 +1984 2545 0.400000 +1984 2594 0.400000 +1984 2615 0.400000 +1984 2627 0.400000 +1984 2681 0.400000 +1984 2694 0.400000 +1984 2740 0.400000 +1984 2746 0.400000 +1984 2768 0.400000 +1984 2819 0.400000 +1984 2871 0.400000 +1984 2895 0.400000 +1984 2952 0.400000 +1984 3027 0.400000 +1984 3043 0.400000 +1984 3139 0.400000 +1984 3142 0.400000 +1984 3177 0.400000 +1984 3197 0.400000 +1985 63 0.400000 +1985 80 0.400000 +1985 246 0.400000 +1985 293 0.400000 +1985 548 0.400000 +1985 616 0.400000 +1985 652 0.400000 +1985 676 0.400000 +1985 706 0.400000 +1985 759 0.400000 +1985 858 0.400000 +1985 947 0.400000 +1985 983 0.400000 +1985 1031 0.400000 +1985 1036 0.400000 +1985 1130 0.400000 +1985 1308 0.400000 +1985 1342 0.400000 +1985 1397 0.400000 +1985 1426 0.400000 +1985 1455 0.400000 +1985 1472 0.400000 +1985 1637 0.400000 +1985 1639 0.400000 +1985 1642 0.400000 +1985 1648 0.400000 +1985 1665 0.400000 +1985 1676 0.400000 +1985 1779 0.400000 +1985 1793 0.400000 +1985 1821 0.400000 +1985 1844 0.400000 +1985 1868 0.400000 +1985 1909 0.400000 +1985 1951 0.400000 +1985 1982 0.400000 +1985 1997 0.400000 +1985 2034 0.400000 +1985 2091 0.400000 +1985 2103 0.400000 +1985 2104 0.400000 +1985 2134 0.400000 +1985 2263 0.400000 +1985 2273 0.400000 +1985 2345 0.400000 +1985 2377 0.400000 +1985 2489 0.400000 +1985 2490 0.400000 +1985 2539 0.400000 +1985 2605 0.400000 +1985 2626 0.400000 +1985 2646 0.400000 +1985 2670 0.400000 +1985 2681 0.400000 +1985 2756 0.400000 +1985 2760 0.400000 +1985 2858 0.400000 +1985 2879 0.400000 +1985 3025 0.400000 +1985 3033 0.400000 +1985 3090 0.400000 +1985 3136 0.400000 +1986 7 0.400000 +1986 205 0.400000 +1986 296 0.400000 +1986 348 0.400000 +1986 399 0.400000 +1986 401 0.400000 +1986 473 0.400000 +1986 507 0.400000 +1986 511 0.400000 +1986 545 0.400000 +1986 576 0.400000 +1986 761 0.400000 +1986 853 0.400000 +1986 954 0.400000 +1986 968 0.400000 +1986 1007 0.400000 +1986 1052 0.400000 +1986 1164 0.400000 +1986 1185 0.400000 +1986 1198 0.400000 +1986 1253 0.400000 +1986 1297 0.400000 +1986 1329 0.400000 +1986 1543 0.400000 +1986 1572 0.400000 +1986 1576 0.400000 +1986 1637 0.400000 +1986 1707 0.400000 +1986 1776 0.400000 +1986 1863 0.400000 +1986 2003 0.400000 +1986 2044 0.400000 +1986 2056 0.400000 +1986 2126 0.400000 +1986 2203 0.400000 +1986 2237 0.400000 +1986 2254 0.400000 +1986 2260 0.400000 +1986 2341 0.400000 +1986 2511 0.400000 +1986 2543 0.400000 +1986 2554 0.400000 +1986 2563 0.400000 +1986 2586 0.400000 +1986 2683 0.400000 +1986 2747 0.400000 +1986 2798 0.400000 +1986 2807 0.400000 +1986 2898 0.400000 +1986 2986 0.400000 +1986 2997 0.400000 +1986 3057 0.400000 +1986 3163 0.400000 +1987 1 0.400000 +1987 51 0.400000 +1987 64 0.400000 +1987 74 0.400000 +1987 200 0.400000 +1987 258 0.400000 +1987 387 0.400000 +1987 390 0.400000 +1987 469 0.400000 +1987 499 0.400000 +1987 529 0.400000 +1987 569 0.400000 +1987 586 0.400000 +1987 678 0.400000 +1987 681 0.400000 +1987 803 0.400000 +1987 849 0.400000 +1987 857 0.400000 +1987 858 0.400000 +1987 900 0.400000 +1987 909 0.400000 +1987 928 0.400000 +1987 980 0.400000 +1987 995 0.400000 +1987 1134 0.400000 +1987 1135 0.400000 +1987 1182 0.400000 +1987 1185 0.400000 +1987 1308 0.400000 +1987 1315 0.400000 +1987 1365 0.400000 +1987 1403 0.400000 +1987 1433 0.400000 +1987 1445 0.400000 +1987 1511 0.400000 +1987 1517 0.400000 +1987 1520 0.400000 +1987 1528 0.400000 +1987 1535 0.400000 +1987 1645 0.400000 +1987 1665 0.400000 +1987 1706 0.400000 +1987 1710 0.400000 +1987 1911 0.400000 +1987 1948 0.400000 +1987 1967 0.400000 +1987 2037 0.400000 +1987 2110 0.400000 +1987 2137 0.400000 +1987 2138 0.400000 +1987 2173 0.400000 +1987 2248 0.400000 +1987 2281 0.400000 +1987 2353 0.400000 +1987 2363 0.400000 +1987 2377 0.400000 +1987 2436 0.400000 +1987 2490 0.400000 +1987 2538 0.400000 +1987 2600 0.400000 +1987 2677 0.400000 +1987 2810 0.400000 +1987 2910 0.400000 +1987 2919 0.400000 +1987 3011 0.400000 +1987 3136 0.400000 +1987 3150 0.400000 +1987 3192 0.400000 +1988 34 0.400000 +1988 144 0.400000 +1988 145 0.400000 +1988 187 0.400000 +1988 220 0.400000 +1988 223 0.400000 +1988 279 0.400000 +1988 300 0.400000 +1988 313 0.400000 +1988 344 0.400000 +1988 465 0.400000 +1988 663 0.400000 +1988 718 0.400000 +1988 763 0.400000 +1988 817 0.400000 +1988 822 0.400000 +1988 883 0.400000 +1988 925 0.400000 +1988 948 0.400000 +1988 968 0.400000 +1988 978 0.400000 +1988 993 0.400000 +1988 1001 0.400000 +1988 1157 0.400000 +1988 1186 0.400000 +1988 1195 0.400000 +1988 1200 0.400000 +1988 1209 0.400000 +1988 1319 0.400000 +1988 1364 0.400000 +1988 1425 0.400000 +1988 1468 0.400000 +1988 1510 0.400000 +1988 1570 0.400000 +1988 1773 0.400000 +1988 1786 0.400000 +1988 1986 0.400000 +1988 2037 0.400000 +1988 2068 0.400000 +1988 2075 0.400000 +1988 2234 0.400000 +1988 2454 0.400000 +1988 2459 0.400000 +1988 2481 0.400000 +1988 2601 0.400000 +1988 2791 0.400000 +1988 2808 0.400000 +1988 2822 0.400000 +1988 2840 0.400000 +1988 2911 0.400000 +1988 2988 0.400000 +1988 3192 0.400000 +1989 31 0.400000 +1989 48 0.400000 +1989 173 0.400000 +1989 180 0.400000 +1989 232 0.400000 +1989 250 0.400000 +1989 344 0.400000 +1989 408 0.400000 +1989 418 0.400000 +1989 444 0.400000 +1989 446 0.400000 +1989 486 0.400000 +1989 592 0.400000 +1989 642 0.400000 +1989 665 0.400000 +1989 728 0.400000 +1989 729 0.400000 +1989 751 0.400000 +1989 818 0.400000 +1989 874 0.400000 +1989 883 0.400000 +1989 928 0.400000 +1989 1113 0.400000 +1989 1119 0.400000 +1989 1142 0.400000 +1989 1457 0.400000 +1989 1598 0.400000 +1989 1615 0.400000 +1989 1724 0.400000 +1989 1770 0.400000 +1989 1867 0.400000 +1989 1932 0.400000 +1989 1998 0.400000 +1989 2208 0.400000 +1989 2210 0.400000 +1989 2212 0.400000 +1989 2423 0.400000 +1989 2426 0.400000 +1989 2472 0.400000 +1989 2565 0.400000 +1989 2646 0.400000 +1989 2675 0.400000 +1989 2712 0.400000 +1989 2741 0.400000 +1989 2757 0.400000 +1989 2843 0.400000 +1989 2873 0.400000 +1989 2904 0.400000 +1989 2947 0.400000 +1989 3007 0.400000 +1989 3051 0.400000 +1989 3100 0.400000 +1989 3121 0.400000 +1990 19 0.400000 +1990 33 0.400000 +1990 35 0.400000 +1990 83 0.400000 +1990 364 0.400000 +1990 439 0.400000 +1990 453 0.400000 +1990 454 0.400000 +1990 687 0.400000 +1990 707 0.400000 +1990 761 0.400000 +1990 1105 0.400000 +1990 1110 0.400000 +1990 1138 0.400000 +1990 1148 0.400000 +1990 1179 0.400000 +1990 1202 0.400000 +1990 1265 0.400000 +1990 1352 0.400000 +1990 1389 0.400000 +1990 1438 0.400000 +1990 1474 0.400000 +1990 1525 0.400000 +1990 1538 0.400000 +1990 1572 0.400000 +1990 1578 0.400000 +1990 1589 0.400000 +1990 1756 0.400000 +1990 1769 0.400000 +1990 1779 0.400000 +1990 1790 0.400000 +1990 1793 0.400000 +1990 1893 0.400000 +1990 1915 0.400000 +1990 2001 0.400000 +1990 2018 0.400000 +1990 2054 0.400000 +1990 2103 0.400000 +1990 2112 0.400000 +1990 2116 0.400000 +1990 2170 0.400000 +1990 2207 0.400000 +1990 2210 0.400000 +1990 2277 0.400000 +1990 2399 0.400000 +1990 2401 0.400000 +1990 2448 0.400000 +1990 2449 0.400000 +1990 2451 0.400000 +1990 2508 0.400000 +1990 2530 0.400000 +1990 2707 0.400000 +1990 2709 0.400000 +1990 2745 0.400000 +1990 2818 0.400000 +1990 2924 0.400000 +1990 2965 0.400000 +1990 3074 0.400000 +1990 3090 0.400000 +1990 3156 0.400000 +1991 153 0.400000 +1991 206 0.400000 +1991 217 0.400000 +1991 291 0.400000 +1991 318 0.400000 +1991 373 0.400000 +1991 376 0.400000 +1991 379 0.400000 +1991 416 0.400000 +1991 492 0.400000 +1991 584 0.400000 +1991 738 0.400000 +1991 780 0.400000 +1991 811 0.400000 +1991 847 0.400000 +1991 868 0.400000 +1991 929 0.400000 +1991 947 0.400000 +1991 982 0.400000 +1991 1058 0.400000 +1991 1136 0.400000 +1991 1193 0.400000 +1991 1228 0.400000 +1991 1265 0.400000 +1991 1281 0.400000 +1991 1298 0.400000 +1991 1513 0.400000 +1991 1570 0.400000 +1991 1577 0.400000 +1991 1616 0.400000 +1991 1626 0.400000 +1991 1685 0.400000 +1991 1838 0.400000 +1991 1879 0.400000 +1991 1898 0.400000 +1991 1932 0.400000 +1991 1945 0.400000 +1991 1959 0.400000 +1991 2042 0.400000 +1991 2048 0.400000 +1991 2053 0.400000 +1991 2133 0.400000 +1991 2170 0.400000 +1991 2203 0.400000 +1991 2212 0.400000 +1991 2228 0.400000 +1991 2289 0.400000 +1991 2345 0.400000 +1991 2358 0.400000 +1991 2365 0.400000 +1991 2374 0.400000 +1991 2667 0.400000 +1991 2880 0.400000 +1991 2993 0.400000 +1991 3006 0.400000 +1991 3035 0.400000 +1991 3146 0.400000 +1992 93 0.400000 +1992 196 0.400000 +1992 269 0.400000 +1992 309 0.400000 +1992 350 0.400000 +1992 366 0.400000 +1992 425 0.400000 +1992 439 0.400000 +1992 448 0.400000 +1992 486 0.400000 +1992 499 0.400000 +1992 592 0.400000 +1992 636 0.400000 +1992 684 0.400000 +1992 689 0.400000 +1992 777 0.400000 +1992 821 0.400000 +1992 884 0.400000 +1992 896 0.400000 +1992 905 0.400000 +1992 967 0.400000 +1992 1021 0.400000 +1992 1107 0.400000 +1992 1454 0.400000 +1992 1456 0.400000 +1992 1730 0.400000 +1992 1829 0.400000 +1992 1885 0.400000 +1992 1886 0.400000 +1992 1991 0.400000 +1992 2077 0.400000 +1992 2179 0.400000 +1992 2307 0.400000 +1992 2365 0.400000 +1992 2426 0.400000 +1992 2437 0.400000 +1992 2459 0.400000 +1992 2512 0.400000 +1992 2526 0.400000 +1992 2528 0.400000 +1992 2610 0.400000 +1992 2631 0.400000 +1992 2679 0.400000 +1992 2698 0.400000 +1992 2715 0.400000 +1992 2734 0.400000 +1992 2735 0.400000 +1992 2764 0.400000 +1992 2897 0.400000 +1992 2969 0.400000 +1992 2971 0.400000 +1992 2980 0.400000 +1992 2989 0.400000 +1992 3088 0.400000 +1992 3170 0.400000 +1992 3185 0.400000 +1993 21 0.400000 +1993 43 0.400000 +1993 61 0.400000 +1993 148 0.400000 +1993 165 0.400000 +1993 176 0.400000 +1993 234 0.400000 +1993 237 0.400000 +1993 322 0.400000 +1993 334 0.400000 +1993 385 0.400000 +1993 458 0.400000 +1993 493 0.400000 +1993 563 0.400000 +1993 678 0.400000 +1993 732 0.400000 +1993 762 0.400000 +1993 773 0.400000 +1993 788 0.400000 +1993 827 0.400000 +1993 839 0.400000 +1993 857 0.400000 +1993 885 0.400000 +1993 893 0.400000 +1993 922 0.400000 +1993 1147 0.400000 +1993 1154 0.400000 +1993 1206 0.400000 +1993 1237 0.400000 +1993 1279 0.400000 +1993 1299 0.400000 +1993 1310 0.400000 +1993 1326 0.400000 +1993 1340 0.400000 +1993 1368 0.400000 +1993 1379 0.400000 +1993 1409 0.400000 +1993 1417 0.400000 +1993 1487 0.400000 +1993 1492 0.400000 +1993 1504 0.400000 +1993 1589 0.400000 +1993 1659 0.400000 +1993 1667 0.400000 +1993 1734 0.400000 +1993 1764 0.400000 +1993 2004 0.400000 +1993 2132 0.400000 +1993 2215 0.400000 +1993 2222 0.400000 +1993 2347 0.400000 +1993 2389 0.400000 +1993 2440 0.400000 +1993 2479 0.400000 +1993 2483 0.400000 +1993 2507 0.400000 +1993 2573 0.400000 +1993 2601 0.400000 +1993 2659 0.400000 +1993 2696 0.400000 +1993 2701 0.400000 +1993 2709 0.400000 +1993 2748 0.400000 +1993 2786 0.400000 +1993 2807 0.400000 +1993 2837 0.400000 +1993 2859 0.400000 +1993 3005 0.400000 +1993 3125 0.400000 +1994 32 0.400000 +1994 106 0.400000 +1994 145 0.400000 +1994 160 0.400000 +1994 212 0.400000 +1994 244 0.400000 +1994 259 0.400000 +1994 330 0.400000 +1994 373 0.400000 +1994 402 0.400000 +1994 439 0.400000 +1994 458 0.400000 +1994 462 0.400000 +1994 527 0.400000 +1994 568 0.400000 +1994 569 0.400000 +1994 583 0.400000 +1994 640 0.400000 +1994 748 0.400000 +1994 782 0.400000 +1994 807 0.400000 +1994 850 0.400000 +1994 944 0.400000 +1994 945 0.400000 +1994 970 0.400000 +1994 972 0.400000 +1994 993 0.400000 +1994 1072 0.400000 +1994 1195 0.400000 +1994 1225 0.400000 +1994 1236 0.400000 +1994 1334 0.400000 +1994 1481 0.400000 +1994 1494 0.400000 +1994 1545 0.400000 +1994 1586 0.400000 +1994 1593 0.400000 +1994 1671 0.400000 +1994 1756 0.400000 +1994 1765 0.400000 +1994 1782 0.400000 +1994 1783 0.400000 +1994 1801 0.400000 +1994 1805 0.400000 +1994 1854 0.400000 +1994 1920 0.400000 +1994 2085 0.400000 +1994 2150 0.400000 +1994 2184 0.400000 +1994 2225 0.400000 +1994 2256 0.400000 +1994 2275 0.400000 +1994 2289 0.400000 +1994 2295 0.400000 +1994 2429 0.400000 +1994 2477 0.400000 +1994 2550 0.400000 +1994 2553 0.400000 +1994 2610 0.400000 +1994 2611 0.400000 +1994 2705 0.400000 +1994 2757 0.400000 +1994 2853 0.400000 +1994 2857 0.400000 +1994 3110 0.400000 +1994 3153 0.400000 +1995 146 0.400000 +1995 163 0.400000 +1995 165 0.400000 +1995 169 0.400000 +1995 196 0.400000 +1995 240 0.400000 +1995 316 0.400000 +1995 345 0.400000 +1995 346 0.400000 +1995 394 0.400000 +1995 440 0.400000 +1995 474 0.400000 +1995 476 0.400000 +1995 492 0.400000 +1995 610 0.400000 +1995 673 0.400000 +1995 926 0.400000 +1995 996 0.400000 +1995 1082 0.400000 +1995 1110 0.400000 +1995 1163 0.400000 +1995 1196 0.400000 +1995 1257 0.400000 +1995 1259 0.400000 +1995 1279 0.400000 +1995 1385 0.400000 +1995 1421 0.400000 +1995 1427 0.400000 +1995 1550 0.400000 +1995 1586 0.400000 +1995 1630 0.400000 +1995 1659 0.400000 +1995 1747 0.400000 +1995 1759 0.400000 +1995 1770 0.400000 +1995 1815 0.400000 +1995 1823 0.400000 +1995 1912 0.400000 +1995 1989 0.400000 +1995 2059 0.400000 +1995 2212 0.400000 +1995 2326 0.400000 +1995 2441 0.400000 +1995 2448 0.400000 +1995 2505 0.400000 +1995 2510 0.400000 +1995 2583 0.400000 +1995 2593 0.400000 +1995 2653 0.400000 +1995 2738 0.400000 +1995 2764 0.400000 +1995 2880 0.400000 +1995 3042 0.400000 +1995 3078 0.400000 +1995 3135 0.400000 +1995 3193 0.400000 +1996 113 0.400000 +1996 324 0.400000 +1996 370 0.400000 +1996 429 0.400000 +1996 576 0.400000 +1996 595 0.400000 +1996 659 0.400000 +1996 699 0.400000 +1996 821 0.400000 +1996 834 0.400000 +1996 863 0.400000 +1996 872 0.400000 +1996 876 0.400000 +1996 887 0.400000 +1996 895 0.400000 +1996 914 0.400000 +1996 935 0.400000 +1996 957 0.400000 +1996 1149 0.400000 +1996 1153 0.400000 +1996 1191 0.400000 +1996 1209 0.400000 +1996 1277 0.400000 +1996 1282 0.400000 +1996 1293 0.400000 +1996 1444 0.400000 +1996 1458 0.400000 +1996 1551 0.400000 +1996 1648 0.400000 +1996 1690 0.400000 +1996 1707 0.400000 +1996 1892 0.400000 +1996 1983 0.400000 +1996 2016 0.400000 +1996 2111 0.400000 +1996 2149 0.400000 +1996 2240 0.400000 +1996 2288 0.400000 +1996 2300 0.400000 +1996 2321 0.400000 +1996 2363 0.400000 +1996 2372 0.400000 +1996 2453 0.400000 +1996 2507 0.400000 +1996 2543 0.400000 +1996 2738 0.400000 +1996 2750 0.400000 +1996 2752 0.400000 +1996 2768 0.400000 +1996 3019 0.400000 +1996 3027 0.400000 +1996 3059 0.400000 +1996 3181 0.400000 +1997 73 0.400000 +1997 74 0.400000 +1997 130 0.400000 +1997 173 0.400000 +1997 232 0.400000 +1997 323 0.400000 +1997 325 0.400000 +1997 340 0.400000 +1997 352 0.400000 +1997 417 0.400000 +1997 458 0.400000 +1997 543 0.400000 +1997 676 0.400000 +1997 810 0.400000 +1997 887 0.400000 +1997 919 0.400000 +1997 949 0.400000 +1997 959 0.400000 +1997 981 0.400000 +1997 1012 0.400000 +1997 1061 0.400000 +1997 1104 0.400000 +1997 1148 0.400000 +1997 1156 0.400000 +1997 1171 0.400000 +1997 1188 0.400000 +1997 1265 0.400000 +1997 1268 0.400000 +1997 1334 0.400000 +1997 1338 0.400000 +1997 1435 0.400000 +1997 1497 0.400000 +1997 1519 0.400000 +1997 1526 0.400000 +1997 1544 0.400000 +1997 1598 0.400000 +1997 1674 0.400000 +1997 1681 0.400000 +1997 1747 0.400000 +1997 1752 0.400000 +1997 1827 0.400000 +1997 1843 0.400000 +1997 1851 0.400000 +1997 1985 0.400000 +1997 1999 0.400000 +1997 2127 0.400000 +1997 2128 0.400000 +1997 2173 0.400000 +1997 2193 0.400000 +1997 2306 0.400000 +1997 2344 0.400000 +1997 2365 0.400000 +1997 2475 0.400000 +1997 2484 0.400000 +1997 2540 0.400000 +1997 2601 0.400000 +1997 2613 0.400000 +1997 2847 0.400000 +1997 2918 0.400000 +1997 2976 0.400000 +1997 2994 0.400000 +1997 3072 0.400000 +1997 3198 0.400000 +1998 20 0.400000 +1998 92 0.400000 +1998 95 0.400000 +1998 200 0.400000 +1998 226 0.400000 +1998 290 0.400000 +1998 335 0.400000 +1998 360 0.400000 +1998 451 0.400000 +1998 493 0.400000 +1998 503 0.400000 +1998 569 0.400000 +1998 688 0.400000 +1998 697 0.400000 +1998 718 0.400000 +1998 723 0.400000 +1998 746 0.400000 +1998 822 0.400000 +1998 876 0.400000 +1998 933 0.400000 +1998 972 0.400000 +1998 973 0.400000 +1998 1034 0.400000 +1998 1079 0.400000 +1998 1094 0.400000 +1998 1162 0.400000 +1998 1204 0.400000 +1998 1245 0.400000 +1998 1354 0.400000 +1998 1439 0.400000 +1998 1485 0.400000 +1998 1487 0.400000 +1998 1497 0.400000 +1998 1522 0.400000 +1998 1563 0.400000 +1998 1588 0.400000 +1998 1596 0.400000 +1998 1601 0.400000 +1998 1624 0.400000 +1998 1752 0.400000 +1998 1774 0.400000 +1998 1783 0.400000 +1998 1803 0.400000 +1998 1809 0.400000 +1998 1878 0.400000 +1998 1898 0.400000 +1998 1900 0.400000 +1998 1946 0.400000 +1998 1977 0.400000 +1998 2032 0.400000 +1998 2093 0.400000 +1998 2116 0.400000 +1998 2143 0.400000 +1998 2214 0.400000 +1998 2234 0.400000 +1998 2286 0.400000 +1998 2301 0.400000 +1998 2379 0.400000 +1998 2422 0.400000 +1998 2589 0.400000 +1998 2625 0.400000 +1998 2695 0.400000 +1998 2725 0.400000 +1998 2876 0.400000 +1998 2912 0.400000 +1998 2961 0.400000 +1998 2996 0.400000 +1998 3002 0.400000 +1998 3044 0.400000 +1998 3072 0.400000 +1998 3126 0.400000 +1998 3180 0.400000 +1998 3195 0.400000 +1998 3196 0.400000 +1999 11 0.400000 +1999 302 0.400000 +1999 308 0.400000 +1999 312 0.400000 +1999 314 0.400000 +1999 493 0.400000 +1999 571 0.400000 +1999 578 0.400000 +1999 597 0.400000 +1999 723 0.400000 +1999 745 0.400000 +1999 814 0.400000 +1999 907 0.400000 +1999 964 0.400000 +1999 977 0.400000 +1999 995 0.400000 +1999 1023 0.400000 +1999 1066 0.400000 +1999 1199 0.400000 +1999 1267 0.400000 +1999 1287 0.400000 +1999 1318 0.400000 +1999 1350 0.400000 +1999 1421 0.400000 +1999 1470 0.400000 +1999 1484 0.400000 +1999 1590 0.400000 +1999 1643 0.400000 +1999 1664 0.400000 +1999 1750 0.400000 +1999 1763 0.400000 +1999 1847 0.400000 +1999 1861 0.400000 +1999 1974 0.400000 +1999 2000 0.400000 +1999 2062 0.400000 +1999 2066 0.400000 +1999 2189 0.400000 +1999 2254 0.400000 +1999 2259 0.400000 +1999 2277 0.400000 +1999 2294 0.400000 +1999 2355 0.400000 +1999 2385 0.400000 +1999 2454 0.400000 +1999 2461 0.400000 +1999 2521 0.400000 +1999 2523 0.400000 +1999 2539 0.400000 +1999 2591 0.400000 +1999 2604 0.400000 +1999 2738 0.400000 +1999 2764 0.400000 +1999 2792 0.400000 +1999 2799 0.400000 +1999 2883 0.400000 +1999 2906 0.400000 +1999 2929 0.400000 +1999 2995 0.400000 +1999 3011 0.400000 +1999 3031 0.400000 +1999 3079 0.400000 +1999 3123 0.400000 +1999 3143 0.400000 +2000 2 0.400000 +2000 25 0.400000 +2000 34 0.400000 +2000 42 0.400000 +2000 54 0.400000 +2000 69 0.400000 +2000 105 0.400000 +2000 117 0.400000 +2000 171 0.400000 +2000 310 0.400000 +2000 372 0.400000 +2000 378 0.400000 +2000 424 0.400000 +2000 485 0.400000 +2000 570 0.400000 +2000 638 0.400000 +2000 673 0.400000 +2000 696 0.400000 +2000 714 0.400000 +2000 756 0.400000 +2000 771 0.400000 +2000 800 0.400000 +2000 897 0.400000 +2000 962 0.400000 +2000 995 0.400000 +2000 1051 0.400000 +2000 1150 0.400000 +2000 1169 0.400000 +2000 1176 0.400000 +2000 1181 0.400000 +2000 1210 0.400000 +2000 1295 0.400000 +2000 1307 0.400000 +2000 1464 0.400000 +2000 1485 0.400000 +2000 1490 0.400000 +2000 1505 0.400000 +2000 1581 0.400000 +2000 1912 0.400000 +2000 1929 0.400000 +2000 1956 0.400000 +2000 2030 0.400000 +2000 2266 0.400000 +2000 2290 0.400000 +2000 2328 0.400000 +2000 2333 0.400000 +2000 2355 0.400000 +2000 2375 0.400000 +2000 2406 0.400000 +2000 2460 0.400000 +2000 2518 0.400000 +2000 2536 0.400000 +2000 2540 0.400000 +2000 2562 0.400000 +2000 2648 0.400000 +2000 2705 0.400000 +2000 2725 0.400000 +2000 2734 0.400000 +2000 2745 0.400000 +2000 2757 0.400000 +2000 2766 0.400000 +2000 2783 0.400000 +2000 2840 0.400000 +2000 2852 0.400000 +2000 2894 0.400000 +2000 2903 0.400000 +2000 2955 0.400000 +2000 2989 0.400000 +2000 3024 0.400000 +2000 3042 0.400000 +2000 3075 0.400000 +2000 3130 0.400000 +2000 3150 0.400000 +2001 137 0.400000 +2001 165 0.400000 +2001 170 0.400000 +2001 172 0.400000 +2001 251 0.400000 +2001 286 0.400000 +2001 312 0.400000 +2001 314 0.400000 +2001 335 0.400000 +2001 383 0.400000 +2001 439 0.400000 +2001 454 0.400000 +2001 485 0.400000 +2001 508 0.400000 +2001 518 0.400000 +2001 683 0.400000 +2001 700 0.400000 +2001 834 0.400000 +2001 930 0.400000 +2001 970 0.400000 +2001 1010 0.400000 +2001 1073 0.400000 +2001 1114 0.400000 +2001 1179 0.400000 +2001 1180 0.400000 +2001 1203 0.400000 +2001 1221 0.400000 +2001 1376 0.400000 +2001 1380 0.400000 +2001 1387 0.400000 +2001 1464 0.400000 +2001 1528 0.400000 +2001 1530 0.400000 +2001 1596 0.400000 +2001 1618 0.400000 +2001 1685 0.400000 +2001 1750 0.400000 +2001 1779 0.400000 +2001 1814 0.400000 +2001 1839 0.400000 +2001 1871 0.400000 +2001 1953 0.400000 +2001 2039 0.400000 +2001 2063 0.400000 +2001 2087 0.400000 +2001 2151 0.400000 +2001 2205 0.400000 +2001 2225 0.400000 +2001 2241 0.400000 +2001 2277 0.400000 +2001 2291 0.400000 +2001 2312 0.400000 +2001 2388 0.400000 +2001 2394 0.400000 +2001 2416 0.400000 +2001 2579 0.400000 +2001 2628 0.400000 +2001 2634 0.400000 +2001 2690 0.400000 +2001 2726 0.400000 +2001 2771 0.400000 +2001 2784 0.400000 +2001 2789 0.400000 +2001 2900 0.400000 +2001 2942 0.400000 +2001 2961 0.400000 +2001 2974 0.400000 +2001 2981 0.400000 +2001 3029 0.400000 +2001 3077 0.400000 +2001 3101 0.400000 +2001 3105 0.400000 +2001 3128 0.400000 +2001 3133 0.400000 +2002 101 0.400000 +2002 176 0.400000 +2002 235 0.400000 +2002 335 0.400000 +2002 422 0.400000 +2002 436 0.400000 +2002 499 0.400000 +2002 543 0.400000 +2002 690 0.400000 +2002 754 0.400000 +2002 776 0.400000 +2002 844 0.400000 +2002 889 0.400000 +2002 914 0.400000 +2002 987 0.400000 +2002 1067 0.400000 +2002 1078 0.400000 +2002 1128 0.400000 +2002 1167 0.400000 +2002 1306 0.400000 +2002 1333 0.400000 +2002 1382 0.400000 +2002 1515 0.400000 +2002 1576 0.400000 +2002 1608 0.400000 +2002 1659 0.400000 +2002 1664 0.400000 +2002 1810 0.400000 +2002 1870 0.400000 +2002 1888 0.400000 +2002 1910 0.400000 +2002 1940 0.400000 +2002 1972 0.400000 +2002 1989 0.400000 +2002 2009 0.400000 +2002 2078 0.400000 +2002 2163 0.400000 +2002 2223 0.400000 +2002 2233 0.400000 +2002 2283 0.400000 +2002 2319 0.400000 +2002 2399 0.400000 +2002 2425 0.400000 +2002 2445 0.400000 +2002 2452 0.400000 +2002 2526 0.400000 +2002 2540 0.400000 +2002 2671 0.400000 +2002 2768 0.400000 +2002 2808 0.400000 +2002 2809 0.400000 +2002 2827 0.400000 +2002 2920 0.400000 +2002 2990 0.400000 +2002 2996 0.400000 +2002 3033 0.400000 +2002 3165 0.400000 +2002 3178 0.400000 +2003 29 0.400000 +2003 72 0.400000 +2003 154 0.400000 +2003 200 0.400000 +2003 282 0.400000 +2003 349 0.400000 +2003 375 0.400000 +2003 419 0.400000 +2003 432 0.400000 +2003 583 0.400000 +2003 592 0.400000 +2003 635 0.400000 +2003 739 0.400000 +2003 762 0.400000 +2003 785 0.400000 +2003 801 0.400000 +2003 979 0.400000 +2003 1069 0.400000 +2003 1087 0.400000 +2003 1173 0.400000 +2003 1226 0.400000 +2003 1253 0.400000 +2003 1274 0.400000 +2003 1327 0.400000 +2003 1398 0.400000 +2003 1456 0.400000 +2003 1479 0.400000 +2003 1494 0.400000 +2003 1535 0.400000 +2003 1562 0.400000 +2003 1568 0.400000 +2003 1605 0.400000 +2003 1638 0.400000 +2003 1643 0.400000 +2003 1758 0.400000 +2003 1777 0.400000 +2003 1812 0.400000 +2003 1813 0.400000 +2003 1836 0.400000 +2003 1862 0.400000 +2003 1863 0.400000 +2003 1973 0.400000 +2003 1989 0.400000 +2003 2020 0.400000 +2003 2035 0.400000 +2003 2071 0.400000 +2003 2072 0.400000 +2003 2100 0.400000 +2003 2163 0.400000 +2003 2170 0.400000 +2003 2193 0.400000 +2003 2260 0.400000 +2003 2357 0.400000 +2003 2378 0.400000 +2003 2433 0.400000 +2003 2633 0.400000 +2003 2662 0.400000 +2003 2665 0.400000 +2003 2729 0.400000 +2003 2759 0.400000 +2003 2854 0.400000 +2003 2856 0.400000 +2003 2893 0.400000 +2003 2901 0.400000 +2003 2921 0.400000 +2003 2948 0.400000 +2003 3017 0.400000 +2003 3042 0.400000 +2003 3048 0.400000 +2003 3107 0.400000 +2003 3168 0.400000 +2003 3170 0.400000 +2003 3183 0.400000 +2004 4 0.400000 +2004 39 0.400000 +2004 46 0.400000 +2004 92 0.400000 +2004 122 0.400000 +2004 130 0.400000 +2004 163 0.400000 +2004 250 0.400000 +2004 288 0.400000 +2004 298 0.400000 +2004 340 0.400000 +2004 353 0.400000 +2004 490 0.400000 +2004 546 0.400000 +2004 591 0.400000 +2004 617 0.400000 +2004 673 0.400000 +2004 684 0.400000 +2004 756 0.400000 +2004 761 0.400000 +2004 764 0.400000 +2004 771 0.400000 +2004 837 0.400000 +2004 1019 0.400000 +2004 1025 0.400000 +2004 1062 0.400000 +2004 1096 0.400000 +2004 1116 0.400000 +2004 1147 0.400000 +2004 1192 0.400000 +2004 1270 0.400000 +2004 1284 0.400000 +2004 1366 0.400000 +2004 1376 0.400000 +2004 1418 0.400000 +2004 1478 0.400000 +2004 1514 0.400000 +2004 1572 0.400000 +2004 1676 0.400000 +2004 1687 0.400000 +2004 1692 0.400000 +2004 1735 0.400000 +2004 1787 0.400000 +2004 1845 0.400000 +2004 1857 0.400000 +2004 1926 0.400000 +2004 1986 0.400000 +2004 2016 0.400000 +2004 2044 0.400000 +2004 2046 0.400000 +2004 2124 0.400000 +2004 2159 0.400000 +2004 2306 0.400000 +2004 2394 0.400000 +2004 2435 0.400000 +2004 2476 0.400000 +2004 2584 0.400000 +2004 2648 0.400000 +2004 2682 0.400000 +2004 2745 0.400000 +2004 2824 0.400000 +2004 2868 0.400000 +2004 2897 0.400000 +2004 2926 0.400000 +2004 2953 0.400000 +2004 2956 0.400000 +2004 2968 0.400000 +2004 3057 0.400000 +2004 3133 0.400000 +2004 3156 0.400000 +2005 30 0.400000 +2005 36 0.400000 +2005 48 0.400000 +2005 91 0.400000 +2005 100 0.400000 +2005 191 0.400000 +2005 224 0.400000 +2005 243 0.400000 +2005 252 0.400000 +2005 308 0.400000 +2005 365 0.400000 +2005 378 0.400000 +2005 392 0.400000 +2005 444 0.400000 +2005 503 0.400000 +2005 519 0.400000 +2005 763 0.400000 +2005 828 0.400000 +2005 868 0.400000 +2005 902 0.400000 +2005 940 0.400000 +2005 960 0.400000 +2005 1040 0.400000 +2005 1131 0.400000 +2005 1184 0.400000 +2005 1286 0.400000 +2005 1337 0.400000 +2005 1376 0.400000 +2005 1410 0.400000 +2005 1416 0.400000 +2005 1425 0.400000 +2005 1433 0.400000 +2005 1447 0.400000 +2005 1464 0.400000 +2005 1475 0.400000 +2005 1498 0.400000 +2005 1529 0.400000 +2005 1548 0.400000 +2005 1659 0.400000 +2005 1758 0.400000 +2005 1816 0.400000 +2005 1885 0.400000 +2005 1887 0.400000 +2005 1934 0.400000 +2005 1965 0.400000 +2005 1972 0.400000 +2005 1973 0.400000 +2005 2038 0.400000 +2005 2102 0.400000 +2005 2243 0.400000 +2005 2247 0.400000 +2005 2314 0.400000 +2005 2348 0.400000 +2005 2412 0.400000 +2005 2487 0.400000 +2005 2542 0.400000 +2005 2614 0.400000 +2005 2617 0.400000 +2005 2802 0.400000 +2005 2819 0.400000 +2005 2968 0.400000 +2005 2977 0.400000 +2005 2981 0.400000 +2005 3047 0.400000 +2005 3061 0.400000 +2005 3134 0.400000 +2006 114 0.400000 +2006 269 0.400000 +2006 289 0.400000 +2006 294 0.400000 +2006 322 0.400000 +2006 487 0.400000 +2006 573 0.400000 +2006 576 0.400000 +2006 597 0.400000 +2006 613 0.400000 +2006 750 0.400000 +2006 774 0.400000 +2006 887 0.400000 +2006 926 0.400000 +2006 932 0.400000 +2006 1096 0.400000 +2006 1290 0.400000 +2006 1305 0.400000 +2006 1354 0.400000 +2006 1393 0.400000 +2006 1453 0.400000 +2006 1535 0.400000 +2006 1559 0.400000 +2006 1592 0.400000 +2006 1604 0.400000 +2006 1637 0.400000 +2006 1752 0.400000 +2006 1792 0.400000 +2006 1794 0.400000 +2006 1832 0.400000 +2006 1867 0.400000 +2006 1880 0.400000 +2006 1931 0.400000 +2006 1989 0.400000 +2006 2052 0.400000 +2006 2111 0.400000 +2006 2117 0.400000 +2006 2139 0.400000 +2006 2158 0.400000 +2006 2257 0.400000 +2006 2275 0.400000 +2006 2309 0.400000 +2006 2353 0.400000 +2006 2473 0.400000 +2006 2491 0.400000 +2006 2532 0.400000 +2006 2537 0.400000 +2006 2637 0.400000 +2006 2751 0.400000 +2006 2756 0.400000 +2006 2811 0.400000 +2006 2820 0.400000 +2006 2848 0.400000 +2006 2917 0.400000 +2006 2924 0.400000 +2006 3104 0.400000 +2007 28 0.400000 +2007 59 0.400000 +2007 93 0.400000 +2007 130 0.400000 +2007 197 0.400000 +2007 260 0.400000 +2007 316 0.400000 +2007 343 0.400000 +2007 402 0.400000 +2007 420 0.400000 +2007 458 0.400000 +2007 468 0.400000 +2007 477 0.400000 +2007 488 0.400000 +2007 538 0.400000 +2007 545 0.400000 +2007 600 0.400000 +2007 617 0.400000 +2007 626 0.400000 +2007 711 0.400000 +2007 726 0.400000 +2007 749 0.400000 +2007 893 0.400000 +2007 922 0.400000 +2007 963 0.400000 +2007 992 0.400000 +2007 1071 0.400000 +2007 1085 0.400000 +2007 1137 0.400000 +2007 1150 0.400000 +2007 1226 0.400000 +2007 1328 0.400000 +2007 1352 0.400000 +2007 1457 0.400000 +2007 1479 0.400000 +2007 1538 0.400000 +2007 1586 0.400000 +2007 1622 0.400000 +2007 1641 0.400000 +2007 1823 0.400000 +2007 1827 0.400000 +2007 1861 0.400000 +2007 1875 0.400000 +2007 1896 0.400000 +2007 1978 0.400000 +2007 2202 0.400000 +2007 2307 0.400000 +2007 2328 0.400000 +2007 2597 0.400000 +2007 2644 0.400000 +2007 2737 0.400000 +2007 2841 0.400000 +2007 2897 0.400000 +2007 2976 0.400000 +2007 2977 0.400000 +2007 3075 0.400000 +2007 3198 0.400000 +2008 24 0.400000 +2008 71 0.400000 +2008 109 0.400000 +2008 114 0.400000 +2008 129 0.400000 +2008 269 0.400000 +2008 296 0.400000 +2008 338 0.400000 +2008 474 0.400000 +2008 495 0.400000 +2008 538 0.400000 +2008 545 0.400000 +2008 646 0.400000 +2008 690 0.400000 +2008 711 0.400000 +2008 792 0.400000 +2008 826 0.400000 +2008 868 0.400000 +2008 904 0.400000 +2008 936 0.400000 +2008 995 0.400000 +2008 996 0.400000 +2008 1040 0.400000 +2008 1095 0.400000 +2008 1105 0.400000 +2008 1119 0.400000 +2008 1247 0.400000 +2008 1281 0.400000 +2008 1509 0.400000 +2008 1614 0.400000 +2008 1628 0.400000 +2008 1861 0.400000 +2008 2057 0.400000 +2008 2083 0.400000 +2008 2104 0.400000 +2008 2140 0.400000 +2008 2337 0.400000 +2008 2392 0.400000 +2008 2454 0.400000 +2008 2458 0.400000 +2008 2462 0.400000 +2008 2468 0.400000 +2008 2542 0.400000 +2008 2566 0.400000 +2008 2570 0.400000 +2008 2604 0.400000 +2008 2614 0.400000 +2008 2696 0.400000 +2008 2705 0.400000 +2008 2709 0.400000 +2008 2760 0.400000 +2008 2761 0.400000 +2008 2781 0.400000 +2008 2810 0.400000 +2008 2881 0.400000 +2008 2890 0.400000 +2008 2911 0.400000 +2008 2923 0.400000 +2008 3004 0.400000 +2008 3058 0.400000 +2008 3072 0.400000 +2009 38 0.400000 +2009 45 0.400000 +2009 54 0.400000 +2009 58 0.400000 +2009 101 0.400000 +2009 118 0.400000 +2009 174 0.400000 +2009 210 0.400000 +2009 270 0.400000 +2009 292 0.400000 +2009 297 0.400000 +2009 342 0.400000 +2009 376 0.400000 +2009 402 0.400000 +2009 653 0.400000 +2009 765 0.400000 +2009 777 0.400000 +2009 798 0.400000 +2009 946 0.400000 +2009 1056 0.400000 +2009 1101 0.400000 +2009 1149 0.400000 +2009 1165 0.400000 +2009 1205 0.400000 +2009 1219 0.400000 +2009 1309 0.400000 +2009 1376 0.400000 +2009 1382 0.400000 +2009 1385 0.400000 +2009 1391 0.400000 +2009 1457 0.400000 +2009 1499 0.400000 +2009 1528 0.400000 +2009 1689 0.400000 +2009 1712 0.400000 +2009 1724 0.400000 +2009 1859 0.400000 +2009 1930 0.400000 +2009 1958 0.400000 +2009 2111 0.400000 +2009 2245 0.400000 +2009 2332 0.400000 +2009 2401 0.400000 +2009 2456 0.400000 +2009 2504 0.400000 +2009 2576 0.400000 +2009 2586 0.400000 +2009 2630 0.400000 +2009 2655 0.400000 +2009 2675 0.400000 +2009 2678 0.400000 +2009 2685 0.400000 +2009 2714 0.400000 +2009 2797 0.400000 +2009 2830 0.400000 +2009 2866 0.400000 +2009 2941 0.400000 +2009 2956 0.400000 +2009 3011 0.400000 +2009 3028 0.400000 +2009 3040 0.400000 +2009 3178 0.400000 +2010 41 0.400000 +2010 124 0.400000 +2010 285 0.400000 +2010 370 0.400000 +2010 371 0.400000 +2010 404 0.400000 +2010 434 0.400000 +2010 517 0.400000 +2010 662 0.400000 +2010 681 0.400000 +2010 717 0.400000 +2010 780 0.400000 +2010 923 0.400000 +2010 946 0.400000 +2010 996 0.400000 +2010 1014 0.400000 +2010 1089 0.400000 +2010 1128 0.400000 +2010 1150 0.400000 +2010 1153 0.400000 +2010 1329 0.400000 +2010 1466 0.400000 +2010 1484 0.400000 +2010 1515 0.400000 +2010 1570 0.400000 +2010 1572 0.400000 +2010 1597 0.400000 +2010 1626 0.400000 +2010 1650 0.400000 +2010 1877 0.400000 +2010 1883 0.400000 +2010 1930 0.400000 +2010 1998 0.400000 +2010 2002 0.400000 +2010 2008 0.400000 +2010 2116 0.400000 +2010 2148 0.400000 +2010 2217 0.400000 +2010 2305 0.400000 +2010 2312 0.400000 +2010 2387 0.400000 +2010 2554 0.400000 +2010 2585 0.400000 +2010 2606 0.400000 +2010 2705 0.400000 +2010 2759 0.400000 +2010 2847 0.400000 +2010 2907 0.400000 +2010 3005 0.400000 +2010 3008 0.400000 +2010 3053 0.400000 +2010 3061 0.400000 +2010 3125 0.400000 +2010 3196 0.400000 +2011 168 0.400000 +2011 218 0.400000 +2011 262 0.400000 +2011 278 0.400000 +2011 490 0.400000 +2011 520 0.400000 +2011 541 0.400000 +2011 549 0.400000 +2011 569 0.400000 +2011 615 0.400000 +2011 666 0.400000 +2011 712 0.400000 +2011 729 0.400000 +2011 789 0.400000 +2011 845 0.400000 +2011 867 0.400000 +2011 908 0.400000 +2011 956 0.400000 +2011 963 0.400000 +2011 966 0.400000 +2011 967 0.400000 +2011 1010 0.400000 +2011 1113 0.400000 +2011 1125 0.400000 +2011 1147 0.400000 +2011 1161 0.400000 +2011 1167 0.400000 +2011 1169 0.400000 +2011 1192 0.400000 +2011 1193 0.400000 +2011 1199 0.400000 +2011 1224 0.400000 +2011 1277 0.400000 +2011 1387 0.400000 +2011 1427 0.400000 +2011 1442 0.400000 +2011 1501 0.400000 +2011 1527 0.400000 +2011 1650 0.400000 +2011 1651 0.400000 +2011 1657 0.400000 +2011 1799 0.400000 +2011 1830 0.400000 +2011 1884 0.400000 +2011 1958 0.400000 +2011 2069 0.400000 +2011 2169 0.400000 +2011 2194 0.400000 +2011 2218 0.400000 +2011 2247 0.400000 +2011 2260 0.400000 +2011 2315 0.400000 +2011 2355 0.400000 +2011 2499 0.400000 +2011 2515 0.400000 +2011 2516 0.400000 +2011 2567 0.400000 +2011 2603 0.400000 +2011 2612 0.400000 +2011 2716 0.400000 +2011 2775 0.400000 +2011 2841 0.400000 +2011 2853 0.400000 +2011 2894 0.400000 +2011 2901 0.400000 +2011 2923 0.400000 +2011 2966 0.400000 +2011 2982 0.400000 +2011 3014 0.400000 +2011 3147 0.400000 +2011 3157 0.400000 +2012 13 0.400000 +2012 25 0.400000 +2012 98 0.400000 +2012 117 0.400000 +2012 127 0.400000 +2012 153 0.400000 +2012 178 0.400000 +2012 204 0.400000 +2012 213 0.400000 +2012 317 0.400000 +2012 367 0.400000 +2012 418 0.400000 +2012 441 0.400000 +2012 510 0.400000 +2012 525 0.400000 +2012 551 0.400000 +2012 597 0.400000 +2012 655 0.400000 +2012 691 0.400000 +2012 716 0.400000 +2012 757 0.400000 +2012 778 0.400000 +2012 845 0.400000 +2012 867 0.400000 +2012 968 0.400000 +2012 982 0.400000 +2012 1044 0.400000 +2012 1055 0.400000 +2012 1083 0.400000 +2012 1089 0.400000 +2012 1093 0.400000 +2012 1121 0.400000 +2012 1144 0.400000 +2012 1158 0.400000 +2012 1243 0.400000 +2012 1248 0.400000 +2012 1414 0.400000 +2012 1571 0.400000 +2012 1588 0.400000 +2012 1602 0.400000 +2012 1606 0.400000 +2012 1620 0.400000 +2012 1721 0.400000 +2012 1726 0.400000 +2012 1746 0.400000 +2012 1755 0.400000 +2012 1768 0.400000 +2012 1777 0.400000 +2012 1786 0.400000 +2012 1822 0.400000 +2012 1884 0.400000 +2012 2044 0.400000 +2012 2055 0.400000 +2012 2074 0.400000 +2012 2176 0.400000 +2012 2253 0.400000 +2012 2258 0.400000 +2012 2276 0.400000 +2012 2545 0.400000 +2012 2554 0.400000 +2012 2797 0.400000 +2012 2826 0.400000 +2012 3029 0.400000 +2012 3070 0.400000 +2012 3097 0.400000 +2012 3144 0.400000 +2012 3184 0.400000 +2012 3192 0.400000 +2013 61 0.400000 +2013 98 0.400000 +2013 103 0.400000 +2013 117 0.400000 +2013 199 0.400000 +2013 267 0.400000 +2013 283 0.400000 +2013 334 0.400000 +2013 415 0.400000 +2013 480 0.400000 +2013 659 0.400000 +2013 709 0.400000 +2013 736 0.400000 +2013 812 0.400000 +2013 856 0.400000 +2013 922 0.400000 +2013 971 0.400000 +2013 990 0.400000 +2013 1018 0.400000 +2013 1127 0.400000 +2013 1154 0.400000 +2013 1155 0.400000 +2013 1193 0.400000 +2013 1431 0.400000 +2013 1458 0.400000 +2013 1543 0.400000 +2013 1549 0.400000 +2013 1603 0.400000 +2013 1608 0.400000 +2013 1615 0.400000 +2013 1622 0.400000 +2013 1625 0.400000 +2013 1663 0.400000 +2013 1707 0.400000 +2013 1784 0.400000 +2013 1864 0.400000 +2013 1913 0.400000 +2013 1915 0.400000 +2013 1918 0.400000 +2013 1930 0.400000 +2013 2015 0.400000 +2013 2116 0.400000 +2013 2161 0.400000 +2013 2187 0.400000 +2013 2215 0.400000 +2013 2301 0.400000 +2013 2342 0.400000 +2013 2352 0.400000 +2013 2353 0.400000 +2013 2424 0.400000 +2013 2443 0.400000 +2013 2467 0.400000 +2013 2608 0.400000 +2013 2729 0.400000 +2013 2765 0.400000 +2013 2780 0.400000 +2013 2828 0.400000 +2013 2831 0.400000 +2013 2852 0.400000 +2013 2950 0.400000 +2013 3013 0.400000 +2013 3146 0.400000 +2013 3167 0.400000 +2014 22 0.400000 +2014 79 0.400000 +2014 86 0.400000 +2014 112 0.400000 +2014 129 0.400000 +2014 189 0.400000 +2014 298 0.400000 +2014 303 0.400000 +2014 328 0.400000 +2014 493 0.400000 +2014 514 0.400000 +2014 587 0.400000 +2014 597 0.400000 +2014 621 0.400000 +2014 646 0.400000 +2014 655 0.400000 +2014 718 0.400000 +2014 731 0.400000 +2014 741 0.400000 +2014 764 0.400000 +2014 790 0.400000 +2014 823 0.400000 +2014 910 0.400000 +2014 1010 0.400000 +2014 1124 0.400000 +2014 1127 0.400000 +2014 1158 0.400000 +2014 1166 0.400000 +2014 1253 0.400000 +2014 1280 0.400000 +2014 1311 0.400000 +2014 1367 0.400000 +2014 1386 0.400000 +2014 1475 0.400000 +2014 1697 0.400000 +2014 1724 0.400000 +2014 1730 0.400000 +2014 1755 0.400000 +2014 1763 0.400000 +2014 1797 0.400000 +2014 1874 0.400000 +2014 1890 0.400000 +2014 1924 0.400000 +2014 1959 0.400000 +2014 2018 0.400000 +2014 2086 0.400000 +2014 2105 0.400000 +2014 2144 0.400000 +2014 2239 0.400000 +2014 2260 0.400000 +2014 2302 0.400000 +2014 2325 0.400000 +2014 2401 0.400000 +2014 2471 0.400000 +2014 2488 0.400000 +2014 2509 0.400000 +2014 2573 0.400000 +2014 2586 0.400000 +2014 2718 0.400000 +2014 2729 0.400000 +2014 2824 0.400000 +2014 2901 0.400000 +2014 3004 0.400000 +2014 3009 0.400000 +2014 3164 0.400000 +2014 3170 0.400000 +2014 3190 0.400000 +2015 18 0.400000 +2015 24 0.400000 +2015 32 0.400000 +2015 52 0.400000 +2015 88 0.400000 +2015 144 0.400000 +2015 249 0.400000 +2015 299 0.400000 +2015 315 0.400000 +2015 316 0.400000 +2015 346 0.400000 +2015 378 0.400000 +2015 396 0.400000 +2015 452 0.400000 +2015 520 0.400000 +2015 663 0.400000 +2015 705 0.400000 +2015 965 0.400000 +2015 1043 0.400000 +2015 1149 0.400000 +2015 1151 0.400000 +2015 1189 0.400000 +2015 1379 0.400000 +2015 1417 0.400000 +2015 1483 0.400000 +2015 1658 0.400000 +2015 1676 0.400000 +2015 1783 0.400000 +2015 1870 0.400000 +2015 1930 0.400000 +2015 1962 0.400000 +2015 2006 0.400000 +2015 2076 0.400000 +2015 2090 0.400000 +2015 2096 0.400000 +2015 2114 0.400000 +2015 2131 0.400000 +2015 2202 0.400000 +2015 2215 0.400000 +2015 2274 0.400000 +2015 2480 0.400000 +2015 2544 0.400000 +2015 2590 0.400000 +2015 2648 0.400000 +2015 2660 0.400000 +2015 2673 0.400000 +2015 2689 0.400000 +2015 2710 0.400000 +2015 2772 0.400000 +2015 2928 0.400000 +2015 3039 0.400000 +2015 3042 0.400000 +2015 3073 0.400000 +2015 3086 0.400000 +2015 3093 0.400000 +2015 3129 0.400000 +2015 3133 0.400000 +2016 3 0.400000 +2016 56 0.400000 +2016 192 0.400000 +2016 202 0.400000 +2016 240 0.400000 +2016 271 0.400000 +2016 285 0.400000 +2016 319 0.400000 +2016 372 0.400000 +2016 465 0.400000 +2016 507 0.400000 +2016 509 0.400000 +2016 515 0.400000 +2016 602 0.400000 +2016 607 0.400000 +2016 633 0.400000 +2016 648 0.400000 +2016 671 0.400000 +2016 702 0.400000 +2016 725 0.400000 +2016 763 0.400000 +2016 764 0.400000 +2016 842 0.400000 +2016 1019 0.400000 +2016 1047 0.400000 +2016 1051 0.400000 +2016 1052 0.400000 +2016 1071 0.400000 +2016 1076 0.400000 +2016 1262 0.400000 +2016 1265 0.400000 +2016 1269 0.400000 +2016 1304 0.400000 +2016 1400 0.400000 +2016 1522 0.400000 +2016 1642 0.400000 +2016 1651 0.400000 +2016 1709 0.400000 +2016 1752 0.400000 +2016 1845 0.400000 +2016 1846 0.400000 +2016 1932 0.400000 +2016 1956 0.400000 +2016 2038 0.400000 +2016 2206 0.400000 +2016 2238 0.400000 +2016 2255 0.400000 +2016 2410 0.400000 +2016 2416 0.400000 +2016 2513 0.400000 +2016 2518 0.400000 +2016 2533 0.400000 +2016 2604 0.400000 +2016 2665 0.400000 +2016 2678 0.400000 +2016 2698 0.400000 +2016 2767 0.400000 +2016 2799 0.400000 +2016 2802 0.400000 +2016 2839 0.400000 +2016 2840 0.400000 +2016 3156 0.400000 +2017 19 0.400000 +2017 30 0.400000 +2017 53 0.400000 +2017 180 0.400000 +2017 192 0.400000 +2017 244 0.400000 +2017 276 0.400000 +2017 281 0.400000 +2017 289 0.400000 +2017 316 0.400000 +2017 362 0.400000 +2017 502 0.400000 +2017 551 0.400000 +2017 633 0.400000 +2017 674 0.400000 +2017 678 0.400000 +2017 743 0.400000 +2017 787 0.400000 +2017 822 0.400000 +2017 835 0.400000 +2017 910 0.400000 +2017 959 0.400000 +2017 991 0.400000 +2017 1025 0.400000 +2017 1096 0.400000 +2017 1107 0.400000 +2017 1244 0.400000 +2017 1304 0.400000 +2017 1376 0.400000 +2017 1455 0.400000 +2017 1546 0.400000 +2017 1549 0.400000 +2017 1688 0.400000 +2017 1689 0.400000 +2017 1717 0.400000 +2017 1801 0.400000 +2017 1816 0.400000 +2017 1821 0.400000 +2017 1838 0.400000 +2017 1912 0.400000 +2017 1924 0.400000 +2017 1938 0.400000 +2017 1982 0.400000 +2017 2039 0.400000 +2017 2065 0.400000 +2017 2069 0.400000 +2017 2131 0.400000 +2017 2220 0.400000 +2017 2504 0.400000 +2017 2755 0.400000 +2017 2786 0.400000 +2017 2942 0.400000 +2017 2976 0.400000 +2017 2980 0.400000 +2017 3008 0.400000 +2017 3041 0.400000 +2017 3063 0.400000 +2017 3092 0.400000 +2017 3102 0.400000 +2017 3171 0.400000 +2018 26 0.400000 +2018 29 0.400000 +2018 30 0.400000 +2018 89 0.400000 +2018 93 0.400000 +2018 145 0.400000 +2018 255 0.400000 +2018 278 0.400000 +2018 297 0.400000 +2018 325 0.400000 +2018 487 0.400000 +2018 509 0.400000 +2018 512 0.400000 +2018 557 0.400000 +2018 559 0.400000 +2018 644 0.400000 +2018 704 0.400000 +2018 736 0.400000 +2018 975 0.400000 +2018 1061 0.400000 +2018 1080 0.400000 +2018 1088 0.400000 +2018 1162 0.400000 +2018 1205 0.400000 +2018 1259 0.400000 +2018 1261 0.400000 +2018 1285 0.400000 +2018 1441 0.400000 +2018 1445 0.400000 +2018 1497 0.400000 +2018 1553 0.400000 +2018 1603 0.400000 +2018 1648 0.400000 +2018 1837 0.400000 +2018 1843 0.400000 +2018 1906 0.400000 +2018 1908 0.400000 +2018 2020 0.400000 +2018 2058 0.400000 +2018 2065 0.400000 +2018 2129 0.400000 +2018 2170 0.400000 +2018 2183 0.400000 +2018 2268 0.400000 +2018 2295 0.400000 +2018 2458 0.400000 +2018 2599 0.400000 +2018 2683 0.400000 +2018 2714 0.400000 +2018 2748 0.400000 +2018 2777 0.400000 +2018 2827 0.400000 +2018 2844 0.400000 +2018 2907 0.400000 +2018 2933 0.400000 +2018 2974 0.400000 +2018 3035 0.400000 +2018 3059 0.400000 +2018 3080 0.400000 +2018 3110 0.400000 +2018 3115 0.400000 +2018 3141 0.400000 +2018 3162 0.400000 +2018 3173 0.400000 +2019 10 0.400000 +2019 21 0.400000 +2019 90 0.400000 +2019 335 0.400000 +2019 390 0.400000 +2019 451 0.400000 +2019 488 0.400000 +2019 588 0.400000 +2019 685 0.400000 +2019 727 0.400000 +2019 734 0.400000 +2019 831 0.400000 +2019 836 0.400000 +2019 849 0.400000 +2019 887 0.400000 +2019 923 0.400000 +2019 977 0.400000 +2019 1140 0.400000 +2019 1243 0.400000 +2019 1307 0.400000 +2019 1331 0.400000 +2019 1375 0.400000 +2019 1434 0.400000 +2019 1480 0.400000 +2019 1526 0.400000 +2019 1557 0.400000 +2019 1570 0.400000 +2019 1674 0.400000 +2019 1682 0.400000 +2019 1691 0.400000 +2019 1693 0.400000 +2019 1735 0.400000 +2019 1737 0.400000 +2019 1772 0.400000 +2019 1861 0.400000 +2019 1961 0.400000 +2019 2042 0.400000 +2019 2160 0.400000 +2019 2199 0.400000 +2019 2215 0.400000 +2019 2238 0.400000 +2019 2250 0.400000 +2019 2302 0.400000 +2019 2366 0.400000 +2019 2493 0.400000 +2019 2503 0.400000 +2019 2613 0.400000 +2019 2712 0.400000 +2019 2762 0.400000 +2019 2806 0.400000 +2019 2807 0.400000 +2019 2830 0.400000 +2019 2834 0.400000 +2019 2843 0.400000 +2019 2865 0.400000 +2019 3000 0.400000 +2019 3095 0.400000 +2019 3098 0.400000 +2019 3116 0.400000 +2019 3188 0.400000 +2019 3191 0.400000 +2020 77 0.400000 +2020 160 0.400000 +2020 162 0.400000 +2020 164 0.400000 +2020 184 0.400000 +2020 475 0.400000 +2020 484 0.400000 +2020 497 0.400000 +2020 503 0.400000 +2020 507 0.400000 +2020 766 0.400000 +2020 777 0.400000 +2020 796 0.400000 +2020 975 0.400000 +2020 1013 0.400000 +2020 1035 0.400000 +2020 1053 0.400000 +2020 1087 0.400000 +2020 1093 0.400000 +2020 1209 0.400000 +2020 1274 0.400000 +2020 1292 0.400000 +2020 1304 0.400000 +2020 1308 0.400000 +2020 1383 0.400000 +2020 1431 0.400000 +2020 1454 0.400000 +2020 1457 0.400000 +2020 1478 0.400000 +2020 1499 0.400000 +2020 1529 0.400000 +2020 1562 0.400000 +2020 1599 0.400000 +2020 1602 0.400000 +2020 1704 0.400000 +2020 1734 0.400000 +2020 1744 0.400000 +2020 1750 0.400000 +2020 1788 0.400000 +2020 1849 0.400000 +2020 1860 0.400000 +2020 1958 0.400000 +2020 1982 0.400000 +2020 2050 0.400000 +2020 2136 0.400000 +2020 2173 0.400000 +2020 2239 0.400000 +2020 2271 0.400000 +2020 2290 0.400000 +2020 2329 0.400000 +2020 2401 0.400000 +2020 2411 0.400000 +2020 2419 0.400000 +2020 2486 0.400000 +2020 2559 0.400000 +2020 2613 0.400000 +2020 2697 0.400000 +2020 2698 0.400000 +2020 2744 0.400000 +2020 2769 0.400000 +2020 2776 0.400000 +2020 2807 0.400000 +2020 2819 0.400000 +2020 2839 0.400000 +2020 2856 0.400000 +2020 2890 0.400000 +2020 2935 0.400000 +2020 2992 0.400000 +2020 3010 0.400000 +2020 3086 0.400000 +2020 3088 0.400000 +2020 3095 0.400000 +2020 3131 0.400000 +2020 3195 0.400000 +2021 21 0.400000 +2021 52 0.400000 +2021 61 0.400000 +2021 113 0.400000 +2021 336 0.400000 +2021 340 0.400000 +2021 382 0.400000 +2021 444 0.400000 +2021 500 0.400000 +2021 520 0.400000 +2021 598 0.400000 +2021 736 0.400000 +2021 785 0.400000 +2021 809 0.400000 +2021 828 0.400000 +2021 867 0.400000 +2021 901 0.400000 +2021 971 0.400000 +2021 1056 0.400000 +2021 1070 0.400000 +2021 1157 0.400000 +2021 1194 0.400000 +2021 1212 0.400000 +2021 1274 0.400000 +2021 1291 0.400000 +2021 1341 0.400000 +2021 1420 0.400000 +2021 1513 0.400000 +2021 1531 0.400000 +2021 1547 0.400000 +2021 1567 0.400000 +2021 1628 0.400000 +2021 1671 0.400000 +2021 1673 0.400000 +2021 1706 0.400000 +2021 1718 0.400000 +2021 1765 0.400000 +2021 1899 0.400000 +2021 1954 0.400000 +2021 1981 0.400000 +2021 2047 0.400000 +2021 2076 0.400000 +2021 2091 0.400000 +2021 2100 0.400000 +2021 2102 0.400000 +2021 2134 0.400000 +2021 2144 0.400000 +2021 2278 0.400000 +2021 2421 0.400000 +2021 2427 0.400000 +2021 2433 0.400000 +2021 2445 0.400000 +2021 2477 0.400000 +2021 2611 0.400000 +2021 2630 0.400000 +2021 2665 0.400000 +2021 2666 0.400000 +2021 2725 0.400000 +2021 2763 0.400000 +2021 2767 0.400000 +2021 2789 0.400000 +2021 2821 0.400000 +2021 2823 0.400000 +2021 2828 0.400000 +2021 2887 0.400000 +2021 2964 0.400000 +2021 2970 0.400000 +2021 3009 0.400000 +2021 3138 0.400000 +2021 3145 0.400000 +2021 3159 0.400000 +2022 220 0.400000 +2022 243 0.400000 +2022 251 0.400000 +2022 312 0.400000 +2022 324 0.400000 +2022 390 0.400000 +2022 492 0.400000 +2022 574 0.400000 +2022 653 0.400000 +2022 761 0.400000 +2022 879 0.400000 +2022 899 0.400000 +2022 1040 0.400000 +2022 1057 0.400000 +2022 1134 0.400000 +2022 1219 0.400000 +2022 1264 0.400000 +2022 1301 0.400000 +2022 1468 0.400000 +2022 1520 0.400000 +2022 1570 0.400000 +2022 1601 0.400000 +2022 1622 0.400000 +2022 1627 0.400000 +2022 1637 0.400000 +2022 1658 0.400000 +2022 1694 0.400000 +2022 1713 0.400000 +2022 1794 0.400000 +2022 1825 0.400000 +2022 1866 0.400000 +2022 2105 0.400000 +2022 2142 0.400000 +2022 2164 0.400000 +2022 2209 0.400000 +2022 2261 0.400000 +2022 2283 0.400000 +2022 2289 0.400000 +2022 2293 0.400000 +2022 2306 0.400000 +2022 2353 0.400000 +2022 2394 0.400000 +2022 2590 0.400000 +2022 2648 0.400000 +2022 2681 0.400000 +2022 2686 0.400000 +2022 2734 0.400000 +2022 2861 0.400000 +2022 2933 0.400000 +2022 3002 0.400000 +2022 3109 0.400000 +2023 9 0.400000 +2023 79 0.400000 +2023 111 0.400000 +2023 117 0.400000 +2023 189 0.400000 +2023 307 0.400000 +2023 393 0.400000 +2023 493 0.400000 +2023 569 0.400000 +2023 598 0.400000 +2023 720 0.400000 +2023 746 0.400000 +2023 769 0.400000 +2023 780 0.400000 +2023 844 0.400000 +2023 862 0.400000 +2023 893 0.400000 +2023 899 0.400000 +2023 908 0.400000 +2023 962 0.400000 +2023 1042 0.400000 +2023 1056 0.400000 +2023 1108 0.400000 +2023 1116 0.400000 +2023 1245 0.400000 +2023 1304 0.400000 +2023 1306 0.400000 +2023 1357 0.400000 +2023 1419 0.400000 +2023 1435 0.400000 +2023 1445 0.400000 +2023 1501 0.400000 +2023 1521 0.400000 +2023 1526 0.400000 +2023 1538 0.400000 +2023 1579 0.400000 +2023 1596 0.400000 +2023 1609 0.400000 +2023 1650 0.400000 +2023 1686 0.400000 +2023 1742 0.400000 +2023 1804 0.400000 +2023 1808 0.400000 +2023 1829 0.400000 +2023 1835 0.400000 +2023 1849 0.400000 +2023 1937 0.400000 +2023 1977 0.400000 +2023 2006 0.400000 +2023 2008 0.400000 +2023 2061 0.400000 +2023 2199 0.400000 +2023 2214 0.400000 +2023 2225 0.400000 +2023 2331 0.400000 +2023 2334 0.400000 +2023 2343 0.400000 +2023 2350 0.400000 +2023 2433 0.400000 +2023 2440 0.400000 +2023 2763 0.400000 +2023 2845 0.400000 +2023 2858 0.400000 +2023 2860 0.400000 +2023 2892 0.400000 +2023 2905 0.400000 +2023 2912 0.400000 +2023 2997 0.400000 +2023 3095 0.400000 +2023 3113 0.400000 +2023 3150 0.400000 +2023 3170 0.400000 +2024 15 0.400000 +2024 21 0.400000 +2024 96 0.400000 +2024 158 0.400000 +2024 199 0.400000 +2024 205 0.400000 +2024 273 0.400000 +2024 336 0.400000 +2024 338 0.400000 +2024 385 0.400000 +2024 462 0.400000 +2024 470 0.400000 +2024 491 0.400000 +2024 539 0.400000 +2024 545 0.400000 +2024 746 0.400000 +2024 871 0.400000 +2024 902 0.400000 +2024 922 0.400000 +2024 941 0.400000 +2024 1017 0.400000 +2024 1030 0.400000 +2024 1040 0.400000 +2024 1095 0.400000 +2024 1308 0.400000 +2024 1310 0.400000 +2024 1330 0.400000 +2024 1377 0.400000 +2024 1469 0.400000 +2024 1476 0.400000 +2024 1480 0.400000 +2024 1631 0.400000 +2024 1636 0.400000 +2024 1669 0.400000 +2024 1705 0.400000 +2024 1733 0.400000 +2024 1838 0.400000 +2024 1839 0.400000 +2024 1865 0.400000 +2024 1886 0.400000 +2024 1953 0.400000 +2024 1976 0.400000 +2024 2013 0.400000 +2024 2076 0.400000 +2024 2087 0.400000 +2024 2180 0.400000 +2024 2264 0.400000 +2024 2308 0.400000 +2024 2357 0.400000 +2024 2365 0.400000 +2024 2458 0.400000 +2024 2555 0.400000 +2024 2573 0.400000 +2024 2643 0.400000 +2024 2653 0.400000 +2024 2663 0.400000 +2024 2695 0.400000 +2024 2816 0.400000 +2024 2854 0.400000 +2024 2867 0.400000 +2024 3065 0.400000 +2024 3137 0.400000 +2024 3178 0.400000 +2025 64 0.400000 +2025 73 0.400000 +2025 78 0.400000 +2025 142 0.400000 +2025 144 0.400000 +2025 172 0.400000 +2025 178 0.400000 +2025 205 0.400000 +2025 297 0.400000 +2025 306 0.400000 +2025 350 0.400000 +2025 469 0.400000 +2025 489 0.400000 +2025 503 0.400000 +2025 529 0.400000 +2025 576 0.400000 +2025 583 0.400000 +2025 760 0.400000 +2025 769 0.400000 +2025 797 0.400000 +2025 950 0.400000 +2025 959 0.400000 +2025 1015 0.400000 +2025 1136 0.400000 +2025 1157 0.400000 +2025 1217 0.400000 +2025 1282 0.400000 +2025 1370 0.400000 +2025 1372 0.400000 +2025 1405 0.400000 +2025 1409 0.400000 +2025 1457 0.400000 +2025 1528 0.400000 +2025 1635 0.400000 +2025 1657 0.400000 +2025 1671 0.400000 +2025 1725 0.400000 +2025 1797 0.400000 +2025 1829 0.400000 +2025 1897 0.400000 +2025 1901 0.400000 +2025 1910 0.400000 +2025 1917 0.400000 +2025 1938 0.400000 +2025 1955 0.400000 +2025 1975 0.400000 +2025 2013 0.400000 +2025 2078 0.400000 +2025 2115 0.400000 +2025 2150 0.400000 +2025 2188 0.400000 +2025 2210 0.400000 +2025 2217 0.400000 +2025 2246 0.400000 +2025 2312 0.400000 +2025 2316 0.400000 +2025 2362 0.400000 +2025 2397 0.400000 +2025 2432 0.400000 +2025 2447 0.400000 +2025 2531 0.400000 +2025 2552 0.400000 +2025 2613 0.400000 +2025 2699 0.400000 +2025 2753 0.400000 +2025 2756 0.400000 +2025 2770 0.400000 +2025 2883 0.400000 +2025 2903 0.400000 +2025 3092 0.400000 +2025 3116 0.400000 +2025 3179 0.400000 +2026 202 0.400000 +2026 284 0.400000 +2026 288 0.400000 +2026 308 0.400000 +2026 352 0.400000 +2026 435 0.400000 +2026 466 0.400000 +2026 504 0.400000 +2026 516 0.400000 +2026 526 0.400000 +2026 543 0.400000 +2026 565 0.400000 +2026 595 0.400000 +2026 692 0.400000 +2026 782 0.400000 +2026 847 0.400000 +2026 933 0.400000 +2026 995 0.400000 +2026 1004 0.400000 +2026 1005 0.400000 +2026 1014 0.400000 +2026 1036 0.400000 +2026 1079 0.400000 +2026 1123 0.400000 +2026 1150 0.400000 +2026 1155 0.400000 +2026 1169 0.400000 +2026 1244 0.400000 +2026 1253 0.400000 +2026 1281 0.400000 +2026 1283 0.400000 +2026 1363 0.400000 +2026 1375 0.400000 +2026 1397 0.400000 +2026 1510 0.400000 +2026 1616 0.400000 +2026 1657 0.400000 +2026 1715 0.400000 +2026 1810 0.400000 +2026 1840 0.400000 +2026 1867 0.400000 +2026 1906 0.400000 +2026 1951 0.400000 +2026 1996 0.400000 +2026 2006 0.400000 +2026 2030 0.400000 +2026 2062 0.400000 +2026 2078 0.400000 +2026 2094 0.400000 +2026 2110 0.400000 +2026 2231 0.400000 +2026 2253 0.400000 +2026 2317 0.400000 +2026 2331 0.400000 +2026 2385 0.400000 +2026 2403 0.400000 +2026 2421 0.400000 +2026 2423 0.400000 +2026 2468 0.400000 +2026 2577 0.400000 +2026 2579 0.400000 +2026 2618 0.400000 +2026 2631 0.400000 +2026 2868 0.400000 +2026 2920 0.400000 +2026 2992 0.400000 +2026 3022 0.400000 +2026 3027 0.400000 +2026 3044 0.400000 +2026 3051 0.400000 +2026 3075 0.400000 +2026 3117 0.400000 +2026 3132 0.400000 +2026 3197 0.400000 +2027 62 0.400000 +2027 66 0.400000 +2027 133 0.400000 +2027 138 0.400000 +2027 160 0.400000 +2027 166 0.400000 +2027 234 0.400000 +2027 262 0.400000 +2027 279 0.400000 +2027 329 0.400000 +2027 335 0.400000 +2027 336 0.400000 +2027 376 0.400000 +2027 449 0.400000 +2027 519 0.400000 +2027 542 0.400000 +2027 544 0.400000 +2027 606 0.400000 +2027 615 0.400000 +2027 750 0.400000 +2027 796 0.400000 +2027 881 0.400000 +2027 904 0.400000 +2027 1001 0.400000 +2027 1017 0.400000 +2027 1019 0.400000 +2027 1030 0.400000 +2027 1085 0.400000 +2027 1175 0.400000 +2027 1240 0.400000 +2027 1241 0.400000 +2027 1303 0.400000 +2027 1318 0.400000 +2027 1393 0.400000 +2027 1425 0.400000 +2027 1439 0.400000 +2027 1456 0.400000 +2027 1489 0.400000 +2027 1506 0.400000 +2027 1515 0.400000 +2027 1528 0.400000 +2027 1551 0.400000 +2027 1713 0.400000 +2027 1747 0.400000 +2027 1834 0.400000 +2027 1877 0.400000 +2027 1927 0.400000 +2027 1979 0.400000 +2027 1985 0.400000 +2027 1991 0.400000 +2027 2118 0.400000 +2027 2120 0.400000 +2027 2144 0.400000 +2027 2193 0.400000 +2027 2233 0.400000 +2027 2251 0.400000 +2027 2264 0.400000 +2027 2273 0.400000 +2027 2313 0.400000 +2027 2353 0.400000 +2027 2409 0.400000 +2027 2517 0.400000 +2027 2534 0.400000 +2027 2552 0.400000 +2027 2652 0.400000 +2027 2733 0.400000 +2027 2845 0.400000 +2027 2860 0.400000 +2027 2864 0.400000 +2027 2874 0.400000 +2027 2893 0.400000 +2027 2904 0.400000 +2027 2919 0.400000 +2027 2949 0.400000 +2027 3079 0.400000 +2027 3082 0.400000 +2028 74 0.400000 +2028 199 0.400000 +2028 203 0.400000 +2028 243 0.400000 +2028 250 0.400000 +2028 291 0.400000 +2028 297 0.400000 +2028 356 0.400000 +2028 396 0.400000 +2028 435 0.400000 +2028 497 0.400000 +2028 501 0.400000 +2028 562 0.400000 +2028 582 0.400000 +2028 615 0.400000 +2028 639 0.400000 +2028 677 0.400000 +2028 711 0.400000 +2028 751 0.400000 +2028 780 0.400000 +2028 811 0.400000 +2028 821 0.400000 +2028 861 0.400000 +2028 893 0.400000 +2028 930 0.400000 +2028 934 0.400000 +2028 943 0.400000 +2028 983 0.400000 +2028 1045 0.400000 +2028 1101 0.400000 +2028 1164 0.400000 +2028 1230 0.400000 +2028 1271 0.400000 +2028 1284 0.400000 +2028 1327 0.400000 +2028 1378 0.400000 +2028 1685 0.400000 +2028 1941 0.400000 +2028 2057 0.400000 +2028 2173 0.400000 +2028 2396 0.400000 +2028 2402 0.400000 +2028 2558 0.400000 +2028 2588 0.400000 +2028 2597 0.400000 +2028 2602 0.400000 +2028 2611 0.400000 +2028 2670 0.400000 +2028 2690 0.400000 +2028 2704 0.400000 +2028 2743 0.400000 +2028 2759 0.400000 +2028 2760 0.400000 +2028 2779 0.400000 +2028 2815 0.400000 +2028 2869 0.400000 +2028 2883 0.400000 +2028 2890 0.400000 +2028 2985 0.400000 +2028 3023 0.400000 +2028 3059 0.400000 +2028 3098 0.400000 +2029 15 0.400000 +2029 97 0.400000 +2029 126 0.400000 +2029 136 0.400000 +2029 192 0.400000 +2029 193 0.400000 +2029 236 0.400000 +2029 392 0.400000 +2029 401 0.400000 +2029 459 0.400000 +2029 514 0.400000 +2029 611 0.400000 +2029 680 0.400000 +2029 712 0.400000 +2029 831 0.400000 +2029 864 0.400000 +2029 882 0.400000 +2029 925 0.400000 +2029 942 0.400000 +2029 977 0.400000 +2029 1002 0.400000 +2029 1015 0.400000 +2029 1021 0.400000 +2029 1029 0.400000 +2029 1139 0.400000 +2029 1165 0.400000 +2029 1195 0.400000 +2029 1202 0.400000 +2029 1282 0.400000 +2029 1284 0.400000 +2029 1286 0.400000 +2029 1321 0.400000 +2029 1326 0.400000 +2029 1339 0.400000 +2029 1365 0.400000 +2029 1367 0.400000 +2029 1523 0.400000 +2029 1533 0.400000 +2029 1571 0.400000 +2029 1600 0.400000 +2029 1683 0.400000 +2029 1737 0.400000 +2029 1785 0.400000 +2029 1876 0.400000 +2029 1914 0.400000 +2029 2082 0.400000 +2029 2328 0.400000 +2029 2337 0.400000 +2029 2345 0.400000 +2029 2386 0.400000 +2029 2387 0.400000 +2029 2427 0.400000 +2029 2458 0.400000 +2029 2469 0.400000 +2029 2491 0.400000 +2029 2577 0.400000 +2029 2589 0.400000 +2029 2597 0.400000 +2029 2636 0.400000 +2029 2716 0.400000 +2029 2756 0.400000 +2029 2862 0.400000 +2029 2885 0.400000 +2029 2926 0.400000 +2029 2983 0.400000 +2029 3014 0.400000 +2030 39 0.400000 +2030 75 0.400000 +2030 143 0.400000 +2030 177 0.400000 +2030 187 0.400000 +2030 203 0.400000 +2030 216 0.400000 +2030 222 0.400000 +2030 241 0.400000 +2030 443 0.400000 +2030 448 0.400000 +2030 454 0.400000 +2030 457 0.400000 +2030 485 0.400000 +2030 530 0.400000 +2030 572 0.400000 +2030 595 0.400000 +2030 661 0.400000 +2030 712 0.400000 +2030 740 0.400000 +2030 816 0.400000 +2030 837 0.400000 +2030 845 0.400000 +2030 932 0.400000 +2030 1083 0.400000 +2030 1088 0.400000 +2030 1167 0.400000 +2030 1231 0.400000 +2030 1394 0.400000 +2030 1488 0.400000 +2030 1528 0.400000 +2030 1614 0.400000 +2030 1801 0.400000 +2030 1912 0.400000 +2030 2020 0.400000 +2030 2060 0.400000 +2030 2085 0.400000 +2030 2117 0.400000 +2030 2207 0.400000 +2030 2361 0.400000 +2030 2494 0.400000 +2030 2522 0.400000 +2030 2542 0.400000 +2030 2635 0.400000 +2030 2639 0.400000 +2030 2673 0.400000 +2030 2705 0.400000 +2030 2720 0.400000 +2030 2800 0.400000 +2030 2877 0.400000 +2030 2954 0.400000 +2030 2979 0.400000 +2030 3014 0.400000 +2030 3074 0.400000 +2030 3108 0.400000 +2031 45 0.400000 +2031 223 0.400000 +2031 241 0.400000 +2031 293 0.400000 +2031 323 0.400000 +2031 349 0.400000 +2031 352 0.400000 +2031 360 0.400000 +2031 460 0.400000 +2031 479 0.400000 +2031 495 0.400000 +2031 552 0.400000 +2031 583 0.400000 +2031 591 0.400000 +2031 665 0.400000 +2031 720 0.400000 +2031 756 0.400000 +2031 763 0.400000 +2031 815 0.400000 +2031 894 0.400000 +2031 916 0.400000 +2031 920 0.400000 +2031 937 0.400000 +2031 1019 0.400000 +2031 1033 0.400000 +2031 1077 0.400000 +2031 1099 0.400000 +2031 1174 0.400000 +2031 1230 0.400000 +2031 1289 0.400000 +2031 1293 0.400000 +2031 1611 0.400000 +2031 1641 0.400000 +2031 1684 0.400000 +2031 1772 0.400000 +2031 1780 0.400000 +2031 1786 0.400000 +2031 1797 0.400000 +2031 1803 0.400000 +2031 1824 0.400000 +2031 1984 0.400000 +2031 2066 0.400000 +2031 2087 0.400000 +2031 2261 0.400000 +2031 2330 0.400000 +2031 2343 0.400000 +2031 2372 0.400000 +2031 2381 0.400000 +2031 2413 0.400000 +2031 2448 0.400000 +2031 2453 0.400000 +2031 2547 0.400000 +2031 2572 0.400000 +2031 2643 0.400000 +2031 2859 0.400000 +2031 2985 0.400000 +2031 3083 0.400000 +2031 3118 0.400000 +2031 3200 0.400000 +2032 25 0.400000 +2032 44 0.400000 +2032 45 0.400000 +2032 107 0.400000 +2032 140 0.400000 +2032 187 0.400000 +2032 275 0.400000 +2032 291 0.400000 +2032 293 0.400000 +2032 393 0.400000 +2032 397 0.400000 +2032 468 0.400000 +2032 500 0.400000 +2032 504 0.400000 +2032 519 0.400000 +2032 559 0.400000 +2032 581 0.400000 +2032 610 0.400000 +2032 644 0.400000 +2032 658 0.400000 +2032 730 0.400000 +2032 787 0.400000 +2032 866 0.400000 +2032 881 0.400000 +2032 885 0.400000 +2032 898 0.400000 +2032 902 0.400000 +2032 996 0.400000 +2032 1010 0.400000 +2032 1177 0.400000 +2032 1191 0.400000 +2032 1197 0.400000 +2032 1319 0.400000 +2032 1324 0.400000 +2032 1338 0.400000 +2032 1397 0.400000 +2032 1467 0.400000 +2032 1468 0.400000 +2032 1508 0.400000 +2032 1521 0.400000 +2032 1531 0.400000 +2032 1565 0.400000 +2032 1609 0.400000 +2032 1613 0.400000 +2032 1663 0.400000 +2032 1746 0.400000 +2032 1880 0.400000 +2032 1890 0.400000 +2032 1918 0.400000 +2032 1983 0.400000 +2032 2030 0.400000 +2032 2045 0.400000 +2032 2081 0.400000 +2032 2109 0.400000 +2032 2135 0.400000 +2032 2158 0.400000 +2032 2227 0.400000 +2032 2258 0.400000 +2032 2302 0.400000 +2032 2311 0.400000 +2032 2330 0.400000 +2032 2333 0.400000 +2032 2505 0.400000 +2032 2583 0.400000 +2032 2645 0.400000 +2032 2671 0.400000 +2032 2690 0.400000 +2032 2780 0.400000 +2032 2831 0.400000 +2032 2933 0.400000 +2032 3033 0.400000 +2032 3127 0.400000 +2032 3129 0.400000 +2032 3155 0.400000 +2032 3194 0.400000 +2033 75 0.400000 +2033 118 0.400000 +2033 228 0.400000 +2033 278 0.400000 +2033 279 0.400000 +2033 304 0.400000 +2033 471 0.400000 +2033 563 0.400000 +2033 571 0.400000 +2033 612 0.400000 +2033 799 0.400000 +2033 800 0.400000 +2033 833 0.400000 +2033 847 0.400000 +2033 994 0.400000 +2033 1032 0.400000 +2033 1165 0.400000 +2033 1209 0.400000 +2033 1240 0.400000 +2033 1260 0.400000 +2033 1342 0.400000 +2033 1345 0.400000 +2033 1392 0.400000 +2033 1498 0.400000 +2033 1690 0.400000 +2033 1726 0.400000 +2033 1811 0.400000 +2033 1998 0.400000 +2033 2016 0.400000 +2033 2173 0.400000 +2033 2212 0.400000 +2033 2214 0.400000 +2033 2493 0.400000 +2033 2551 0.400000 +2033 2579 0.400000 +2033 2610 0.400000 +2033 2698 0.400000 +2033 2735 0.400000 +2033 2911 0.400000 +2033 3046 0.400000 +2033 3049 0.400000 +2033 3063 0.400000 +2033 3069 0.400000 +2034 2 0.400000 +2034 22 0.400000 +2034 38 0.400000 +2034 174 0.400000 +2034 220 0.400000 +2034 266 0.400000 +2034 273 0.400000 +2034 505 0.400000 +2034 526 0.400000 +2034 534 0.400000 +2034 535 0.400000 +2034 664 0.400000 +2034 670 0.400000 +2034 881 0.400000 +2034 888 0.400000 +2034 890 0.400000 +2034 1028 0.400000 +2034 1076 0.400000 +2034 1085 0.400000 +2034 1111 0.400000 +2034 1246 0.400000 +2034 1258 0.400000 +2034 1259 0.400000 +2034 1297 0.400000 +2034 1399 0.400000 +2034 1426 0.400000 +2034 1446 0.400000 +2034 1507 0.400000 +2034 1538 0.400000 +2034 1576 0.400000 +2034 1622 0.400000 +2034 1627 0.400000 +2034 1665 0.400000 +2034 1807 0.400000 +2034 1836 0.400000 +2034 1850 0.400000 +2034 1868 0.400000 +2034 1917 0.400000 +2034 1942 0.400000 +2034 2013 0.400000 +2034 2025 0.400000 +2034 2066 0.400000 +2034 2110 0.400000 +2034 2216 0.400000 +2034 2222 0.400000 +2034 2252 0.400000 +2034 2283 0.400000 +2034 2305 0.400000 +2034 2326 0.400000 +2034 2428 0.400000 +2034 2440 0.400000 +2034 2454 0.400000 +2034 2556 0.400000 +2034 2575 0.400000 +2034 2671 0.400000 +2034 2773 0.400000 +2034 2776 0.400000 +2034 2803 0.400000 +2034 2842 0.400000 +2034 2885 0.400000 +2034 2998 0.400000 +2034 3082 0.400000 +2034 3154 0.400000 +2035 95 0.400000 +2035 109 0.400000 +2035 180 0.400000 +2035 197 0.400000 +2035 236 0.400000 +2035 253 0.400000 +2035 276 0.400000 +2035 330 0.400000 +2035 379 0.400000 +2035 470 0.400000 +2035 513 0.400000 +2035 554 0.400000 +2035 579 0.400000 +2035 597 0.400000 +2035 626 0.400000 +2035 648 0.400000 +2035 730 0.400000 +2035 751 0.400000 +2035 801 0.400000 +2035 869 0.400000 +2035 903 0.400000 +2035 946 0.400000 +2035 1008 0.400000 +2035 1011 0.400000 +2035 1124 0.400000 +2035 1125 0.400000 +2035 1245 0.400000 +2035 1258 0.400000 +2035 1265 0.400000 +2035 1290 0.400000 +2035 1311 0.400000 +2035 1345 0.400000 +2035 1350 0.400000 +2035 1352 0.400000 +2035 1353 0.400000 +2035 1419 0.400000 +2035 1519 0.400000 +2035 1534 0.400000 +2035 1553 0.400000 +2035 1582 0.400000 +2035 1618 0.400000 +2035 1624 0.400000 +2035 1641 0.400000 +2035 1673 0.400000 +2035 1704 0.400000 +2035 1746 0.400000 +2035 1776 0.400000 +2035 1828 0.400000 +2035 1902 0.400000 +2035 2047 0.400000 +2035 2073 0.400000 +2035 2075 0.400000 +2035 2165 0.400000 +2035 2171 0.400000 +2035 2228 0.400000 +2035 2262 0.400000 +2035 2296 0.400000 +2035 2350 0.400000 +2035 2418 0.400000 +2035 2442 0.400000 +2035 2482 0.400000 +2035 2559 0.400000 +2035 2570 0.400000 +2035 2588 0.400000 +2035 2600 0.400000 +2035 2629 0.400000 +2035 2645 0.400000 +2035 2713 0.400000 +2035 2724 0.400000 +2035 2742 0.400000 +2035 2809 0.400000 +2035 2867 0.400000 +2035 2908 0.400000 +2035 2959 0.400000 +2036 22 0.400000 +2036 81 0.400000 +2036 87 0.400000 +2036 99 0.400000 +2036 225 0.400000 +2036 332 0.400000 +2036 341 0.400000 +2036 356 0.400000 +2036 381 0.400000 +2036 397 0.400000 +2036 439 0.400000 +2036 470 0.400000 +2036 557 0.400000 +2036 570 0.400000 +2036 571 0.400000 +2036 842 0.400000 +2036 883 0.400000 +2036 933 0.400000 +2036 963 0.400000 +2036 992 0.400000 +2036 1076 0.400000 +2036 1131 0.400000 +2036 1161 0.400000 +2036 1207 0.400000 +2036 1223 0.400000 +2036 1354 0.400000 +2036 1454 0.400000 +2036 1577 0.400000 +2036 1710 0.400000 +2036 1777 0.400000 +2036 1778 0.400000 +2036 1860 0.400000 +2036 1867 0.400000 +2036 1876 0.400000 +2036 1902 0.400000 +2036 1968 0.400000 +2036 1979 0.400000 +2036 2005 0.400000 +2036 2060 0.400000 +2036 2066 0.400000 +2036 2073 0.400000 +2036 2205 0.400000 +2036 2207 0.400000 +2036 2340 0.400000 +2036 2367 0.400000 +2036 2405 0.400000 +2036 2409 0.400000 +2036 2566 0.400000 +2036 2594 0.400000 +2036 2636 0.400000 +2036 2683 0.400000 +2036 2731 0.400000 +2036 2739 0.400000 +2036 2791 0.400000 +2036 2833 0.400000 +2036 2866 0.400000 +2036 2874 0.400000 +2036 3146 0.400000 +2037 67 0.400000 +2037 268 0.400000 +2037 361 0.400000 +2037 388 0.400000 +2037 414 0.400000 +2037 445 0.400000 +2037 455 0.400000 +2037 481 0.400000 +2037 529 0.400000 +2037 565 0.400000 +2037 807 0.400000 +2037 824 0.400000 +2037 841 0.400000 +2037 979 0.400000 +2037 987 0.400000 +2037 1063 0.400000 +2037 1102 0.400000 +2037 1167 0.400000 +2037 1170 0.400000 +2037 1338 0.400000 +2037 1391 0.400000 +2037 1424 0.400000 +2037 1448 0.400000 +2037 1508 0.400000 +2037 1710 0.400000 +2037 1743 0.400000 +2037 1763 0.400000 +2037 1766 0.400000 +2037 1776 0.400000 +2037 1785 0.400000 +2037 1825 0.400000 +2037 1849 0.400000 +2037 2077 0.400000 +2037 2089 0.400000 +2037 2090 0.400000 +2037 2101 0.400000 +2037 2124 0.400000 +2037 2180 0.400000 +2037 2190 0.400000 +2037 2253 0.400000 +2037 2298 0.400000 +2037 2342 0.400000 +2037 2401 0.400000 +2037 2439 0.400000 +2037 2521 0.400000 +2037 2597 0.400000 +2037 2602 0.400000 +2037 2626 0.400000 +2037 2640 0.400000 +2037 2704 0.400000 +2037 2795 0.400000 +2037 2949 0.400000 +2037 3016 0.400000 +2037 3053 0.400000 +2037 3070 0.400000 +2037 3142 0.400000 +2037 3154 0.400000 +2037 3170 0.400000 +2037 3182 0.400000 +2038 28 0.400000 +2038 95 0.400000 +2038 127 0.400000 +2038 153 0.400000 +2038 192 0.400000 +2038 196 0.400000 +2038 260 0.400000 +2038 294 0.400000 +2038 349 0.400000 +2038 350 0.400000 +2038 526 0.400000 +2038 539 0.400000 +2038 569 0.400000 +2038 614 0.400000 +2038 632 0.400000 +2038 638 0.400000 +2038 660 0.400000 +2038 680 0.400000 +2038 839 0.400000 +2038 867 0.400000 +2038 929 0.400000 +2038 930 0.400000 +2038 1118 0.400000 +2038 1190 0.400000 +2038 1250 0.400000 +2038 1265 0.400000 +2038 1292 0.400000 +2038 1414 0.400000 +2038 1424 0.400000 +2038 1464 0.400000 +2038 1578 0.400000 +2038 1622 0.400000 +2038 1657 0.400000 +2038 1668 0.400000 +2038 1761 0.400000 +2038 1789 0.400000 +2038 1820 0.400000 +2038 1852 0.400000 +2038 1865 0.400000 +2038 1964 0.400000 +2038 2011 0.400000 +2038 2049 0.400000 +2038 2050 0.400000 +2038 2101 0.400000 +2038 2130 0.400000 +2038 2160 0.400000 +2038 2166 0.400000 +2038 2178 0.400000 +2038 2274 0.400000 +2038 2276 0.400000 +2038 2295 0.400000 +2038 2313 0.400000 +2038 2317 0.400000 +2038 2323 0.400000 +2038 2368 0.400000 +2038 2390 0.400000 +2038 2427 0.400000 +2038 2492 0.400000 +2038 2515 0.400000 +2038 2516 0.400000 +2038 2621 0.400000 +2038 2749 0.400000 +2038 2769 0.400000 +2038 2774 0.400000 +2038 2828 0.400000 +2038 2877 0.400000 +2038 2879 0.400000 +2038 2880 0.400000 +2038 2924 0.400000 +2038 2929 0.400000 +2038 2980 0.400000 +2038 3098 0.400000 +2038 3126 0.400000 +2039 129 0.400000 +2039 237 0.400000 +2039 285 0.400000 +2039 305 0.400000 +2039 333 0.400000 +2039 347 0.400000 +2039 352 0.400000 +2039 375 0.400000 +2039 410 0.400000 +2039 474 0.400000 +2039 541 0.400000 +2039 611 0.400000 +2039 736 0.400000 +2039 880 0.400000 +2039 936 0.400000 +2039 980 0.400000 +2039 988 0.400000 +2039 1007 0.400000 +2039 1078 0.400000 +2039 1197 0.400000 +2039 1214 0.400000 +2039 1236 0.400000 +2039 1244 0.400000 +2039 1268 0.400000 +2039 1273 0.400000 +2039 1295 0.400000 +2039 1316 0.400000 +2039 1319 0.400000 +2039 1328 0.400000 +2039 1346 0.400000 +2039 1444 0.400000 +2039 1451 0.400000 +2039 1462 0.400000 +2039 1541 0.400000 +2039 1622 0.400000 +2039 1646 0.400000 +2039 1662 0.400000 +2039 1742 0.400000 +2039 1900 0.400000 +2039 1978 0.400000 +2039 2128 0.400000 +2039 2159 0.400000 +2039 2185 0.400000 +2039 2188 0.400000 +2039 2239 0.400000 +2039 2291 0.400000 +2039 2298 0.400000 +2039 2396 0.400000 +2039 2502 0.400000 +2039 2516 0.400000 +2039 2602 0.400000 +2039 2610 0.400000 +2039 2743 0.400000 +2039 2746 0.400000 +2039 2830 0.400000 +2039 2859 0.400000 +2039 2866 0.400000 +2039 2878 0.400000 +2039 2886 0.400000 +2039 2936 0.400000 +2039 2981 0.400000 +2039 2984 0.400000 +2039 2998 0.400000 +2039 3099 0.400000 +2039 3120 0.400000 +2040 9 0.400000 +2040 166 0.400000 +2040 182 0.400000 +2040 242 0.400000 +2040 248 0.400000 +2040 287 0.400000 +2040 345 0.400000 +2040 435 0.400000 +2040 516 0.400000 +2040 712 0.400000 +2040 729 0.400000 +2040 823 0.400000 +2040 829 0.400000 +2040 836 0.400000 +2040 918 0.400000 +2040 1065 0.400000 +2040 1097 0.400000 +2040 1231 0.400000 +2040 1333 0.400000 +2040 1348 0.400000 +2040 1358 0.400000 +2040 1442 0.400000 +2040 1628 0.400000 +2040 1633 0.400000 +2040 1636 0.400000 +2040 1639 0.400000 +2040 1682 0.400000 +2040 1717 0.400000 +2040 1778 0.400000 +2040 1795 0.400000 +2040 1840 0.400000 +2040 2002 0.400000 +2040 2005 0.400000 +2040 2009 0.400000 +2040 2088 0.400000 +2040 2100 0.400000 +2040 2156 0.400000 +2040 2193 0.400000 +2040 2230 0.400000 +2040 2238 0.400000 +2040 2272 0.400000 +2040 2285 0.400000 +2040 2364 0.400000 +2040 2478 0.400000 +2040 2571 0.400000 +2040 2618 0.400000 +2040 2844 0.400000 +2040 2872 0.400000 +2040 2877 0.400000 +2040 3088 0.400000 +2041 44 0.400000 +2041 107 0.400000 +2041 135 0.400000 +2041 139 0.400000 +2041 187 0.400000 +2041 228 0.400000 +2041 261 0.400000 +2041 476 0.400000 +2041 516 0.400000 +2041 532 0.400000 +2041 537 0.400000 +2041 542 0.400000 +2041 599 0.400000 +2041 725 0.400000 +2041 742 0.400000 +2041 778 0.400000 +2041 827 0.400000 +2041 843 0.400000 +2041 935 0.400000 +2041 1099 0.400000 +2041 1115 0.400000 +2041 1138 0.400000 +2041 1165 0.400000 +2041 1168 0.400000 +2041 1183 0.400000 +2041 1215 0.400000 +2041 1301 0.400000 +2041 1401 0.400000 +2041 1408 0.400000 +2041 1477 0.400000 +2041 1548 0.400000 +2041 1561 0.400000 +2041 1582 0.400000 +2041 1652 0.400000 +2041 1673 0.400000 +2041 1769 0.400000 +2041 1780 0.400000 +2041 1827 0.400000 +2041 1835 0.400000 +2041 1837 0.400000 +2041 1883 0.400000 +2041 1948 0.400000 +2041 2051 0.400000 +2041 2074 0.400000 +2041 2101 0.400000 +2041 2219 0.400000 +2041 2319 0.400000 +2041 2338 0.400000 +2041 2426 0.400000 +2041 2437 0.400000 +2041 2509 0.400000 +2041 2582 0.400000 +2041 2637 0.400000 +2041 2718 0.400000 +2041 2775 0.400000 +2041 2794 0.400000 +2041 2834 0.400000 +2041 2838 0.400000 +2041 2849 0.400000 +2041 2886 0.400000 +2041 2892 0.400000 +2041 2901 0.400000 +2041 2919 0.400000 +2041 2958 0.400000 +2041 3077 0.400000 +2041 3153 0.400000 +2041 3155 0.400000 +2041 3158 0.400000 +2042 47 0.400000 +2042 83 0.400000 +2042 110 0.400000 +2042 188 0.400000 +2042 296 0.400000 +2042 297 0.400000 +2042 324 0.400000 +2042 353 0.400000 +2042 394 0.400000 +2042 474 0.400000 +2042 560 0.400000 +2042 563 0.400000 +2042 578 0.400000 +2042 641 0.400000 +2042 648 0.400000 +2042 696 0.400000 +2042 740 0.400000 +2042 786 0.400000 +2042 804 0.400000 +2042 843 0.400000 +2042 854 0.400000 +2042 884 0.400000 +2042 905 0.400000 +2042 914 0.400000 +2042 928 0.400000 +2042 1007 0.400000 +2042 1069 0.400000 +2042 1160 0.400000 +2042 1169 0.400000 +2042 1175 0.400000 +2042 1199 0.400000 +2042 1227 0.400000 +2042 1239 0.400000 +2042 1251 0.400000 +2042 1277 0.400000 +2042 1285 0.400000 +2042 1322 0.400000 +2042 1381 0.400000 +2042 1404 0.400000 +2042 1494 0.400000 +2042 1524 0.400000 +2042 1525 0.400000 +2042 1549 0.400000 +2042 1756 0.400000 +2042 1787 0.400000 +2042 1808 0.400000 +2042 1848 0.400000 +2042 1936 0.400000 +2042 1954 0.400000 +2042 2091 0.400000 +2042 2151 0.400000 +2042 2272 0.400000 +2042 2382 0.400000 +2042 2383 0.400000 +2042 2434 0.400000 +2042 2494 0.400000 +2042 2531 0.400000 +2042 2563 0.400000 +2042 2565 0.400000 +2042 2620 0.400000 +2042 2675 0.400000 +2042 2790 0.400000 +2042 2847 0.400000 +2042 2863 0.400000 +2042 2926 0.400000 +2042 2972 0.400000 +2042 3003 0.400000 +2042 3035 0.400000 +2042 3058 0.400000 +2042 3140 0.400000 +2043 43 0.400000 +2043 66 0.400000 +2043 248 0.400000 +2043 270 0.400000 +2043 340 0.400000 +2043 350 0.400000 +2043 505 0.400000 +2043 511 0.400000 +2043 516 0.400000 +2043 529 0.400000 +2043 633 0.400000 +2043 691 0.400000 +2043 847 0.400000 +2043 921 0.400000 +2043 974 0.400000 +2043 1127 0.400000 +2043 1183 0.400000 +2043 1196 0.400000 +2043 1275 0.400000 +2043 1373 0.400000 +2043 1378 0.400000 +2043 1527 0.400000 +2043 1529 0.400000 +2043 1555 0.400000 +2043 1712 0.400000 +2043 1817 0.400000 +2043 1894 0.400000 +2043 1956 0.400000 +2043 1978 0.400000 +2043 1986 0.400000 +2043 2031 0.400000 +2043 2129 0.400000 +2043 2166 0.400000 +2043 2190 0.400000 +2043 2216 0.400000 +2043 2221 0.400000 +2043 2244 0.400000 +2043 2297 0.400000 +2043 2418 0.400000 +2043 2465 0.400000 +2043 2482 0.400000 +2043 2508 0.400000 +2043 2532 0.400000 +2043 2556 0.400000 +2043 2677 0.400000 +2043 2682 0.400000 +2043 2714 0.400000 +2043 2832 0.400000 +2043 2877 0.400000 +2043 2899 0.400000 +2043 3009 0.400000 +2043 3140 0.400000 +2043 3163 0.400000 +2044 16 0.400000 +2044 168 0.400000 +2044 222 0.400000 +2044 251 0.400000 +2044 264 0.400000 +2044 313 0.400000 +2044 398 0.400000 +2044 541 0.400000 +2044 567 0.400000 +2044 568 0.400000 +2044 575 0.400000 +2044 663 0.400000 +2044 667 0.400000 +2044 699 0.400000 +2044 736 0.400000 +2044 839 0.400000 +2044 900 0.400000 +2044 903 0.400000 +2044 948 0.400000 +2044 968 0.400000 +2044 1000 0.400000 +2044 1008 0.400000 +2044 1058 0.400000 +2044 1059 0.400000 +2044 1085 0.400000 +2044 1128 0.400000 +2044 1131 0.400000 +2044 1182 0.400000 +2044 1221 0.400000 +2044 1237 0.400000 +2044 1249 0.400000 +2044 1360 0.400000 +2044 1445 0.400000 +2044 1474 0.400000 +2044 1480 0.400000 +2044 1578 0.400000 +2044 1626 0.400000 +2044 1647 0.400000 +2044 1721 0.400000 +2044 1742 0.400000 +2044 1752 0.400000 +2044 1776 0.400000 +2044 1787 0.400000 +2044 1937 0.400000 +2044 1975 0.400000 +2044 2130 0.400000 +2044 2144 0.400000 +2044 2234 0.400000 +2044 2265 0.400000 +2044 2299 0.400000 +2044 2319 0.400000 +2044 2429 0.400000 +2044 2466 0.400000 +2044 2522 0.400000 +2044 2641 0.400000 +2044 2707 0.400000 +2044 2754 0.400000 +2044 2792 0.400000 +2044 2803 0.400000 +2044 2912 0.400000 +2044 2931 0.400000 +2044 3120 0.400000 +2044 3147 0.400000 +2044 3153 0.400000 +2045 55 0.400000 +2045 111 0.400000 +2045 178 0.400000 +2045 191 0.400000 +2045 205 0.400000 +2045 263 0.400000 +2045 382 0.400000 +2045 524 0.400000 +2045 541 0.400000 +2045 611 0.400000 +2045 644 0.400000 +2045 894 0.400000 +2045 896 0.400000 +2045 947 0.400000 +2045 1081 0.400000 +2045 1133 0.400000 +2045 1143 0.400000 +2045 1180 0.400000 +2045 1343 0.400000 +2045 1346 0.400000 +2045 1361 0.400000 +2045 1364 0.400000 +2045 1391 0.400000 +2045 1392 0.400000 +2045 1443 0.400000 +2045 1479 0.400000 +2045 1483 0.400000 +2045 1506 0.400000 +2045 1516 0.400000 +2045 1645 0.400000 +2045 1660 0.400000 +2045 1723 0.400000 +2045 1754 0.400000 +2045 1787 0.400000 +2045 1905 0.400000 +2045 1923 0.400000 +2045 1948 0.400000 +2045 1978 0.400000 +2045 1997 0.400000 +2045 2036 0.400000 +2045 2048 0.400000 +2045 2068 0.400000 +2045 2127 0.400000 +2045 2247 0.400000 +2045 2278 0.400000 +2045 2296 0.400000 +2045 2297 0.400000 +2045 2307 0.400000 +2045 2328 0.400000 +2045 2337 0.400000 +2045 2338 0.400000 +2045 2346 0.400000 +2045 2415 0.400000 +2045 2502 0.400000 +2045 2553 0.400000 +2045 2564 0.400000 +2045 2610 0.400000 +2045 2707 0.400000 +2045 2734 0.400000 +2045 2757 0.400000 +2045 2829 0.400000 +2045 2997 0.400000 +2045 3197 0.400000 +2046 105 0.400000 +2046 116 0.400000 +2046 232 0.400000 +2046 284 0.400000 +2046 329 0.400000 +2046 394 0.400000 +2046 406 0.400000 +2046 430 0.400000 +2046 456 0.400000 +2046 461 0.400000 +2046 521 0.400000 +2046 579 0.400000 +2046 589 0.400000 +2046 629 0.400000 +2046 653 0.400000 +2046 657 0.400000 +2046 686 0.400000 +2046 798 0.400000 +2046 910 0.400000 +2046 911 0.400000 +2046 919 0.400000 +2046 933 0.400000 +2046 960 0.400000 +2046 1006 0.400000 +2046 1174 0.400000 +2046 1194 0.400000 +2046 1297 0.400000 +2046 1428 0.400000 +2046 1460 0.400000 +2046 1538 0.400000 +2046 1583 0.400000 +2046 1592 0.400000 +2046 1697 0.400000 +2046 1742 0.400000 +2046 1794 0.400000 +2046 1887 0.400000 +2046 1989 0.400000 +2046 2047 0.400000 +2046 2127 0.400000 +2046 2166 0.400000 +2046 2287 0.400000 +2046 2289 0.400000 +2046 2332 0.400000 +2046 2435 0.400000 +2046 2457 0.400000 +2046 2479 0.400000 +2046 2524 0.400000 +2046 2585 0.400000 +2046 2662 0.400000 +2046 2734 0.400000 +2046 2831 0.400000 +2046 2922 0.400000 +2046 2923 0.400000 +2046 2952 0.400000 +2046 2989 0.400000 +2046 3084 0.400000 +2046 3091 0.400000 +2047 28 0.400000 +2047 121 0.400000 +2047 123 0.400000 +2047 129 0.400000 +2047 130 0.400000 +2047 143 0.400000 +2047 161 0.400000 +2047 174 0.400000 +2047 468 0.400000 +2047 607 0.400000 +2047 609 0.400000 +2047 621 0.400000 +2047 637 0.400000 +2047 816 0.400000 +2047 889 0.400000 +2047 937 0.400000 +2047 952 0.400000 +2047 1011 0.400000 +2047 1039 0.400000 +2047 1223 0.400000 +2047 1288 0.400000 +2047 1372 0.400000 +2047 1385 0.400000 +2047 1482 0.400000 +2047 1495 0.400000 +2047 1565 0.400000 +2047 1575 0.400000 +2047 1596 0.400000 +2047 1614 0.400000 +2047 1639 0.400000 +2047 1791 0.400000 +2047 1857 0.400000 +2047 1863 0.400000 +2047 1915 0.400000 +2047 1941 0.400000 +2047 1962 0.400000 +2047 1978 0.400000 +2047 2026 0.400000 +2047 2127 0.400000 +2047 2170 0.400000 +2047 2175 0.400000 +2047 2193 0.400000 +2047 2216 0.400000 +2047 2229 0.400000 +2047 2250 0.400000 +2047 2279 0.400000 +2047 2321 0.400000 +2047 2333 0.400000 +2047 2383 0.400000 +2047 2399 0.400000 +2047 2404 0.400000 +2047 2451 0.400000 +2047 2664 0.400000 +2047 2739 0.400000 +2047 2791 0.400000 +2047 2819 0.400000 +2047 2861 0.400000 +2047 2884 0.400000 +2047 2912 0.400000 +2047 2953 0.400000 +2047 3015 0.400000 +2047 3025 0.400000 +2047 3058 0.400000 +2047 3121 0.400000 +2047 3147 0.400000 +2047 3149 0.400000 +2047 3151 0.400000 +2047 3189 0.400000 +2048 65 0.400000 +2048 107 0.400000 +2048 148 0.400000 +2048 167 0.400000 +2048 184 0.400000 +2048 204 0.400000 +2048 227 0.400000 +2048 238 0.400000 +2048 278 0.400000 +2048 321 0.400000 +2048 417 0.400000 +2048 435 0.400000 +2048 467 0.400000 +2048 591 0.400000 +2048 675 0.400000 +2048 738 0.400000 +2048 756 0.400000 +2048 806 0.400000 +2048 884 0.400000 +2048 925 0.400000 +2048 1049 0.400000 +2048 1082 0.400000 +2048 1089 0.400000 +2048 1167 0.400000 +2048 1198 0.400000 +2048 1215 0.400000 +2048 1216 0.400000 +2048 1266 0.400000 +2048 1271 0.400000 +2048 1313 0.400000 +2048 1336 0.400000 +2048 1362 0.400000 +2048 1455 0.400000 +2048 1479 0.400000 +2048 1501 0.400000 +2048 1578 0.400000 +2048 1681 0.400000 +2048 1684 0.400000 +2048 1698 0.400000 +2048 1755 0.400000 +2048 1904 0.400000 +2048 1905 0.400000 +2048 1980 0.400000 +2048 2013 0.400000 +2048 2032 0.400000 +2048 2083 0.400000 +2048 2094 0.400000 +2048 2141 0.400000 +2048 2142 0.400000 +2048 2143 0.400000 +2048 2154 0.400000 +2048 2155 0.400000 +2048 2377 0.400000 +2048 2559 0.400000 +2048 2624 0.400000 +2048 2666 0.400000 +2048 2703 0.400000 +2048 2758 0.400000 +2048 2761 0.400000 +2048 2858 0.400000 +2048 2866 0.400000 +2048 2879 0.400000 +2048 2887 0.400000 +2048 2894 0.400000 +2048 2976 0.400000 +2049 23 0.400000 +2049 165 0.400000 +2049 172 0.400000 +2049 195 0.400000 +2049 238 0.400000 +2049 281 0.400000 +2049 366 0.400000 +2049 393 0.400000 +2049 505 0.400000 +2049 508 0.400000 +2049 565 0.400000 +2049 575 0.400000 +2049 577 0.400000 +2049 583 0.400000 +2049 674 0.400000 +2049 682 0.400000 +2049 734 0.400000 +2049 905 0.400000 +2049 935 0.400000 +2049 981 0.400000 +2049 1181 0.400000 +2049 1208 0.400000 +2049 1232 0.400000 +2049 1332 0.400000 +2049 1393 0.400000 +2049 1427 0.400000 +2049 1431 0.400000 +2049 1506 0.400000 +2049 1532 0.400000 +2049 1537 0.400000 +2049 1596 0.400000 +2049 1620 0.400000 +2049 1659 0.400000 +2049 1668 0.400000 +2049 1697 0.400000 +2049 1735 0.400000 +2049 1740 0.400000 +2049 1819 0.400000 +2049 1829 0.400000 +2049 1888 0.400000 +2049 1942 0.400000 +2049 1984 0.400000 +2049 1999 0.400000 +2049 2018 0.400000 +2049 2022 0.400000 +2049 2047 0.400000 +2049 2067 0.400000 +2049 2202 0.400000 +2049 2243 0.400000 +2049 2339 0.400000 +2049 2453 0.400000 +2049 2514 0.400000 +2049 2532 0.400000 +2049 2536 0.400000 +2049 2693 0.400000 +2049 2707 0.400000 +2049 2711 0.400000 +2049 2760 0.400000 +2049 2816 0.400000 +2049 2836 0.400000 +2049 2890 0.400000 +2049 2939 0.400000 +2049 2982 0.400000 +2049 2997 0.400000 +2049 3154 0.400000 +2050 52 0.400000 +2050 129 0.400000 +2050 136 0.400000 +2050 141 0.400000 +2050 155 0.400000 +2050 203 0.400000 +2050 215 0.400000 +2050 335 0.400000 +2050 339 0.400000 +2050 376 0.400000 +2050 485 0.400000 +2050 531 0.400000 +2050 537 0.400000 +2050 545 0.400000 +2050 744 0.400000 +2050 929 0.400000 +2050 979 0.400000 +2050 1022 0.400000 +2050 1046 0.400000 +2050 1076 0.400000 +2050 1083 0.400000 +2050 1098 0.400000 +2050 1109 0.400000 +2050 1147 0.400000 +2050 1247 0.400000 +2050 1270 0.400000 +2050 1275 0.400000 +2050 1280 0.400000 +2050 1515 0.400000 +2050 1538 0.400000 +2050 1580 0.400000 +2050 1600 0.400000 +2050 1670 0.400000 +2050 1705 0.400000 +2050 1805 0.400000 +2050 1831 0.400000 +2050 1839 0.400000 +2050 1844 0.400000 +2050 1988 0.400000 +2050 2048 0.400000 +2050 2124 0.400000 +2050 2272 0.400000 +2050 2333 0.400000 +2050 2411 0.400000 +2050 2446 0.400000 +2050 2498 0.400000 +2050 2519 0.400000 +2050 2585 0.400000 +2050 2617 0.400000 +2050 2708 0.400000 +2050 2737 0.400000 +2050 2762 0.400000 +2050 2894 0.400000 +2050 2966 0.400000 +2050 3050 0.400000 +2050 3057 0.400000 +2050 3064 0.400000 +2050 3086 0.400000 +2050 3112 0.400000 +2050 3120 0.400000 +2050 3171 0.400000 +2051 26 0.400000 +2051 47 0.400000 +2051 49 0.400000 +2051 141 0.400000 +2051 218 0.400000 +2051 331 0.400000 +2051 433 0.400000 +2051 456 0.400000 +2051 510 0.400000 +2051 550 0.400000 +2051 610 0.400000 +2051 696 0.400000 +2051 697 0.400000 +2051 752 0.400000 +2051 789 0.400000 +2051 790 0.400000 +2051 826 0.400000 +2051 846 0.400000 +2051 847 0.400000 +2051 878 0.400000 +2051 894 0.400000 +2051 966 0.400000 +2051 1131 0.400000 +2051 1245 0.400000 +2051 1267 0.400000 +2051 1417 0.400000 +2051 1418 0.400000 +2051 1563 0.400000 +2051 1588 0.400000 +2051 1719 0.400000 +2051 1757 0.400000 +2051 1760 0.400000 +2051 1773 0.400000 +2051 1817 0.400000 +2051 1823 0.400000 +2051 1879 0.400000 +2051 1916 0.400000 +2051 1955 0.400000 +2051 1982 0.400000 +2051 1991 0.400000 +2051 2012 0.400000 +2051 2046 0.400000 +2051 2093 0.400000 +2051 2099 0.400000 +2051 2188 0.400000 +2051 2193 0.400000 +2051 2224 0.400000 +2051 2317 0.400000 +2051 2332 0.400000 +2051 2335 0.400000 +2051 2572 0.400000 +2051 2667 0.400000 +2051 2670 0.400000 +2051 2918 0.400000 +2051 2987 0.400000 +2051 3025 0.400000 +2051 3042 0.400000 +2051 3071 0.400000 +2052 10 0.400000 +2052 11 0.400000 +2052 50 0.400000 +2052 83 0.400000 +2052 122 0.400000 +2052 321 0.400000 +2052 387 0.400000 +2052 483 0.400000 +2052 509 0.400000 +2052 618 0.400000 +2052 675 0.400000 +2052 685 0.400000 +2052 748 0.400000 +2052 752 0.400000 +2052 772 0.400000 +2052 811 0.400000 +2052 876 0.400000 +2052 903 0.400000 +2052 981 0.400000 +2052 1063 0.400000 +2052 1183 0.400000 +2052 1327 0.400000 +2052 1368 0.400000 +2052 1423 0.400000 +2052 1453 0.400000 +2052 1455 0.400000 +2052 1456 0.400000 +2052 1552 0.400000 +2052 1650 0.400000 +2052 1663 0.400000 +2052 1736 0.400000 +2052 1789 0.400000 +2052 1873 0.400000 +2052 1908 0.400000 +2052 1938 0.400000 +2052 1973 0.400000 +2052 1979 0.400000 +2052 2170 0.400000 +2052 2241 0.400000 +2052 2308 0.400000 +2052 2370 0.400000 +2052 2586 0.400000 +2052 2632 0.400000 +2052 2835 0.400000 +2052 2838 0.400000 +2052 2990 0.400000 +2052 3041 0.400000 +2052 3145 0.400000 +2052 3162 0.400000 +2052 3200 0.400000 +2053 16 0.400000 +2053 56 0.400000 +2053 61 0.400000 +2053 91 0.400000 +2053 145 0.400000 +2053 270 0.400000 +2053 315 0.400000 +2053 342 0.400000 +2053 437 0.400000 +2053 466 0.400000 +2053 482 0.400000 +2053 545 0.400000 +2053 647 0.400000 +2053 659 0.400000 +2053 679 0.400000 +2053 731 0.400000 +2053 755 0.400000 +2053 775 0.400000 +2053 781 0.400000 +2053 784 0.400000 +2053 865 0.400000 +2053 882 0.400000 +2053 906 0.400000 +2053 943 0.400000 +2053 1084 0.400000 +2053 1115 0.400000 +2053 1307 0.400000 +2053 1426 0.400000 +2053 1452 0.400000 +2053 1467 0.400000 +2053 1541 0.400000 +2053 1549 0.400000 +2053 1633 0.400000 +2053 1636 0.400000 +2053 1639 0.400000 +2053 1653 0.400000 +2053 1654 0.400000 +2053 1699 0.400000 +2053 1737 0.400000 +2053 1758 0.400000 +2053 1795 0.400000 +2053 1805 0.400000 +2053 1948 0.400000 +2053 1997 0.400000 +2053 2071 0.400000 +2053 2098 0.400000 +2053 2178 0.400000 +2053 2216 0.400000 +2053 2248 0.400000 +2053 2286 0.400000 +2053 2292 0.400000 +2053 2393 0.400000 +2053 2421 0.400000 +2053 2454 0.400000 +2053 2460 0.400000 +2053 2499 0.400000 +2053 2514 0.400000 +2053 2649 0.400000 +2053 2681 0.400000 +2053 2697 0.400000 +2053 2708 0.400000 +2053 2725 0.400000 +2053 2853 0.400000 +2053 2872 0.400000 +2053 2882 0.400000 +2053 2890 0.400000 +2053 2912 0.400000 +2053 2916 0.400000 +2053 2983 0.400000 +2053 2995 0.400000 +2053 3123 0.400000 +2054 100 0.400000 +2054 119 0.400000 +2054 146 0.400000 +2054 183 0.400000 +2054 231 0.400000 +2054 234 0.400000 +2054 257 0.400000 +2054 266 0.400000 +2054 298 0.400000 +2054 352 0.400000 +2054 362 0.400000 +2054 380 0.400000 +2054 421 0.400000 +2054 435 0.400000 +2054 450 0.400000 +2054 487 0.400000 +2054 512 0.400000 +2054 560 0.400000 +2054 674 0.400000 +2054 740 0.400000 +2054 792 0.400000 +2054 894 0.400000 +2054 896 0.400000 +2054 945 0.400000 +2054 967 0.400000 +2054 1025 0.400000 +2054 1031 0.400000 +2054 1038 0.400000 +2054 1053 0.400000 +2054 1085 0.400000 +2054 1120 0.400000 +2054 1159 0.400000 +2054 1188 0.400000 +2054 1296 0.400000 +2054 1309 0.400000 +2054 1318 0.400000 +2054 1339 0.400000 +2054 1446 0.400000 +2054 1489 0.400000 +2054 1510 0.400000 +2054 1513 0.400000 +2054 1524 0.400000 +2054 1540 0.400000 +2054 1544 0.400000 +2054 1607 0.400000 +2054 1632 0.400000 +2054 1687 0.400000 +2054 1766 0.400000 +2054 1782 0.400000 +2054 1801 0.400000 +2054 1803 0.400000 +2054 1826 0.400000 +2054 1864 0.400000 +2054 1882 0.400000 +2054 1889 0.400000 +2054 1968 0.400000 +2054 2129 0.400000 +2054 2189 0.400000 +2054 2232 0.400000 +2054 2292 0.400000 +2054 2397 0.400000 +2054 2435 0.400000 +2054 2545 0.400000 +2054 2564 0.400000 +2054 2626 0.400000 +2054 2656 0.400000 +2054 2682 0.400000 +2054 2771 0.400000 +2054 2777 0.400000 +2054 2786 0.400000 +2054 2800 0.400000 +2054 2817 0.400000 +2054 2970 0.400000 +2054 3015 0.400000 +2054 3104 0.400000 +2055 54 0.400000 +2055 96 0.400000 +2055 107 0.400000 +2055 166 0.400000 +2055 178 0.400000 +2055 281 0.400000 +2055 345 0.400000 +2055 473 0.400000 +2055 597 0.400000 +2055 683 0.400000 +2055 735 0.400000 +2055 746 0.400000 +2055 786 0.400000 +2055 901 0.400000 +2055 983 0.400000 +2055 1021 0.400000 +2055 1042 0.400000 +2055 1170 0.400000 +2055 1212 0.400000 +2055 1253 0.400000 +2055 1306 0.400000 +2055 1334 0.400000 +2055 1527 0.400000 +2055 1605 0.400000 +2055 1667 0.400000 +2055 1716 0.400000 +2055 1728 0.400000 +2055 1796 0.400000 +2055 1822 0.400000 +2055 1891 0.400000 +2055 1902 0.400000 +2055 1914 0.400000 +2055 1967 0.400000 +2055 1972 0.400000 +2055 2056 0.400000 +2055 2073 0.400000 +2055 2122 0.400000 +2055 2369 0.400000 +2055 2507 0.400000 +2055 2562 0.400000 +2055 2620 0.400000 +2055 2682 0.400000 +2055 2701 0.400000 +2055 2823 0.400000 +2055 2946 0.400000 +2055 3048 0.400000 +2055 3056 0.400000 +2055 3077 0.400000 +2055 3145 0.400000 +2055 3168 0.400000 +2055 3170 0.400000 +2055 3180 0.400000 +2056 1 0.400000 +2056 53 0.400000 +2056 485 0.400000 +2056 840 0.400000 +2056 852 0.400000 +2056 1066 0.400000 +2056 1075 0.400000 +2056 1077 0.400000 +2056 1081 0.400000 +2056 1090 0.400000 +2056 1181 0.400000 +2056 1183 0.400000 +2056 1234 0.400000 +2056 1265 0.400000 +2056 1272 0.400000 +2056 1391 0.400000 +2056 1427 0.400000 +2056 1483 0.400000 +2056 1497 0.400000 +2056 1520 0.400000 +2056 1536 0.400000 +2056 1545 0.400000 +2056 1552 0.400000 +2056 1797 0.400000 +2056 1811 0.400000 +2056 1812 0.400000 +2056 1839 0.400000 +2056 1930 0.400000 +2056 1982 0.400000 +2056 1991 0.400000 +2056 2006 0.400000 +2056 2048 0.400000 +2056 2106 0.400000 +2056 2126 0.400000 +2056 2134 0.400000 +2056 2202 0.400000 +2056 2257 0.400000 +2056 2325 0.400000 +2056 2346 0.400000 +2056 2408 0.400000 +2056 2459 0.400000 +2056 2463 0.400000 +2056 2471 0.400000 +2056 2481 0.400000 +2056 2579 0.400000 +2056 2614 0.400000 +2056 2644 0.400000 +2056 2727 0.400000 +2056 2781 0.400000 +2056 2850 0.400000 +2056 3071 0.400000 +2056 3095 0.400000 +2056 3105 0.400000 +2056 3159 0.400000 +2057 166 0.400000 +2057 172 0.400000 +2057 232 0.400000 +2057 252 0.400000 +2057 286 0.400000 +2057 351 0.400000 +2057 394 0.400000 +2057 428 0.400000 +2057 484 0.400000 +2057 591 0.400000 +2057 700 0.400000 +2057 749 0.400000 +2057 786 0.400000 +2057 839 0.400000 +2057 856 0.400000 +2057 860 0.400000 +2057 884 0.400000 +2057 886 0.400000 +2057 951 0.400000 +2057 1004 0.400000 +2057 1012 0.400000 +2057 1022 0.400000 +2057 1026 0.400000 +2057 1030 0.400000 +2057 1119 0.400000 +2057 1214 0.400000 +2057 1222 0.400000 +2057 1236 0.400000 +2057 1300 0.400000 +2057 1321 0.400000 +2057 1358 0.400000 +2057 1468 0.400000 +2057 1503 0.400000 +2057 1508 0.400000 +2057 1588 0.400000 +2057 1717 0.400000 +2057 1765 0.400000 +2057 1784 0.400000 +2057 1802 0.400000 +2057 1831 0.400000 +2057 1832 0.400000 +2057 1846 0.400000 +2057 1872 0.400000 +2057 1962 0.400000 +2057 1971 0.400000 +2057 1983 0.400000 +2057 2070 0.400000 +2057 2126 0.400000 +2057 2138 0.400000 +2057 2152 0.400000 +2057 2154 0.400000 +2057 2250 0.400000 +2057 2326 0.400000 +2057 2331 0.400000 +2057 2360 0.400000 +2057 2455 0.400000 +2057 2645 0.400000 +2057 2696 0.400000 +2057 2709 0.400000 +2057 2752 0.400000 +2057 2753 0.400000 +2057 2772 0.400000 +2057 2853 0.400000 +2057 2887 0.400000 +2057 3131 0.400000 +2057 3140 0.400000 +2058 29 0.400000 +2058 237 0.400000 +2058 263 0.400000 +2058 321 0.400000 +2058 329 0.400000 +2058 343 0.400000 +2058 354 0.400000 +2058 486 0.400000 +2058 578 0.400000 +2058 618 0.400000 +2058 654 0.400000 +2058 674 0.400000 +2058 697 0.400000 +2058 731 0.400000 +2058 758 0.400000 +2058 783 0.400000 +2058 796 0.400000 +2058 848 0.400000 +2058 850 0.400000 +2058 889 0.400000 +2058 900 0.400000 +2058 913 0.400000 +2058 932 0.400000 +2058 1010 0.400000 +2058 1015 0.400000 +2058 1108 0.400000 +2058 1129 0.400000 +2058 1137 0.400000 +2058 1164 0.400000 +2058 1330 0.400000 +2058 1358 0.400000 +2058 1405 0.400000 +2058 1503 0.400000 +2058 1529 0.400000 +2058 1572 0.400000 +2058 1682 0.400000 +2058 1747 0.400000 +2058 1760 0.400000 +2058 1779 0.400000 +2058 1798 0.400000 +2058 1810 0.400000 +2058 2004 0.400000 +2058 2017 0.400000 +2058 2025 0.400000 +2058 2046 0.400000 +2058 2091 0.400000 +2058 2104 0.400000 +2058 2170 0.400000 +2058 2204 0.400000 +2058 2248 0.400000 +2058 2274 0.400000 +2058 2396 0.400000 +2058 2475 0.400000 +2058 2532 0.400000 +2058 2631 0.400000 +2058 2649 0.400000 +2058 2830 0.400000 +2058 2833 0.400000 +2058 2860 0.400000 +2058 2895 0.400000 +2058 2984 0.400000 +2058 2989 0.400000 +2058 3039 0.400000 +2058 3079 0.400000 +2058 3132 0.400000 +2058 3173 0.400000 +2058 3178 0.400000 +2059 119 0.400000 +2059 120 0.400000 +2059 226 0.400000 +2059 241 0.400000 +2059 293 0.400000 +2059 321 0.400000 +2059 414 0.400000 +2059 553 0.400000 +2059 576 0.400000 +2059 587 0.400000 +2059 603 0.400000 +2059 623 0.400000 +2059 700 0.400000 +2059 706 0.400000 +2059 712 0.400000 +2059 788 0.400000 +2059 903 0.400000 +2059 904 0.400000 +2059 971 0.400000 +2059 991 0.400000 +2059 1023 0.400000 +2059 1037 0.400000 +2059 1087 0.400000 +2059 1118 0.400000 +2059 1241 0.400000 +2059 1269 0.400000 +2059 1296 0.400000 +2059 1312 0.400000 +2059 1374 0.400000 +2059 1509 0.400000 +2059 1513 0.400000 +2059 1523 0.400000 +2059 1539 0.400000 +2059 1632 0.400000 +2059 1713 0.400000 +2059 1743 0.400000 +2059 1747 0.400000 +2059 1802 0.400000 +2059 1838 0.400000 +2059 1920 0.400000 +2059 2034 0.400000 +2059 2063 0.400000 +2059 2100 0.400000 +2059 2181 0.400000 +2059 2204 0.400000 +2059 2268 0.400000 +2059 2277 0.400000 +2059 2290 0.400000 +2059 2364 0.400000 +2059 2377 0.400000 +2059 2514 0.400000 +2059 2523 0.400000 +2059 2529 0.400000 +2059 2550 0.400000 +2059 2561 0.400000 +2059 2602 0.400000 +2059 2622 0.400000 +2059 2664 0.400000 +2059 2669 0.400000 +2059 2673 0.400000 +2059 2697 0.400000 +2059 2709 0.400000 +2059 2717 0.400000 +2059 2836 0.400000 +2059 2964 0.400000 +2059 3003 0.400000 +2059 3073 0.400000 +2059 3089 0.400000 +2059 3107 0.400000 +2059 3143 0.400000 +2059 3148 0.400000 +2059 3150 0.400000 +2059 3155 0.400000 +2059 3177 0.400000 +2060 39 0.400000 +2060 43 0.400000 +2060 96 0.400000 +2060 125 0.400000 +2060 164 0.400000 +2060 251 0.400000 +2060 288 0.400000 +2060 444 0.400000 +2060 449 0.400000 +2060 464 0.400000 +2060 466 0.400000 +2060 473 0.400000 +2060 506 0.400000 +2060 535 0.400000 +2060 554 0.400000 +2060 656 0.400000 +2060 675 0.400000 +2060 749 0.400000 +2060 829 0.400000 +2060 941 0.400000 +2060 1023 0.400000 +2060 1048 0.400000 +2060 1061 0.400000 +2060 1108 0.400000 +2060 1142 0.400000 +2060 1393 0.400000 +2060 1399 0.400000 +2060 1423 0.400000 +2060 1443 0.400000 +2060 1508 0.400000 +2060 1511 0.400000 +2060 1582 0.400000 +2060 1642 0.400000 +2060 1715 0.400000 +2060 1830 0.400000 +2060 1965 0.400000 +2060 2057 0.400000 +2060 2091 0.400000 +2060 2160 0.400000 +2060 2165 0.400000 +2060 2235 0.400000 +2060 2276 0.400000 +2060 2279 0.400000 +2060 2300 0.400000 +2060 2361 0.400000 +2060 2366 0.400000 +2060 2373 0.400000 +2060 2527 0.400000 +2060 2591 0.400000 +2060 2694 0.400000 +2060 2759 0.400000 +2060 2840 0.400000 +2060 2938 0.400000 +2060 2955 0.400000 +2060 3017 0.400000 +2060 3023 0.400000 +2060 3146 0.400000 +2060 3185 0.400000 +2061 17 0.400000 +2061 27 0.400000 +2061 39 0.400000 +2061 69 0.400000 +2061 154 0.400000 +2061 234 0.400000 +2061 337 0.400000 +2061 371 0.400000 +2061 388 0.400000 +2061 391 0.400000 +2061 393 0.400000 +2061 414 0.400000 +2061 425 0.400000 +2061 429 0.400000 +2061 610 0.400000 +2061 694 0.400000 +2061 751 0.400000 +2061 832 0.400000 +2061 878 0.400000 +2061 886 0.400000 +2061 927 0.400000 +2061 937 0.400000 +2061 982 0.400000 +2061 1028 0.400000 +2061 1080 0.400000 +2061 1120 0.400000 +2061 1167 0.400000 +2061 1259 0.400000 +2061 1313 0.400000 +2061 1367 0.400000 +2061 1377 0.400000 +2061 1444 0.400000 +2061 1556 0.400000 +2061 1599 0.400000 +2061 1659 0.400000 +2061 1666 0.400000 +2061 1703 0.400000 +2061 1719 0.400000 +2061 1747 0.400000 +2061 1832 0.400000 +2061 1915 0.400000 +2061 1925 0.400000 +2061 1971 0.400000 +2061 1986 0.400000 +2061 1995 0.400000 +2061 1996 0.400000 +2061 2020 0.400000 +2061 2054 0.400000 +2061 2113 0.400000 +2061 2130 0.400000 +2061 2161 0.400000 +2061 2194 0.400000 +2061 2213 0.400000 +2061 2239 0.400000 +2061 2340 0.400000 +2061 2408 0.400000 +2061 2443 0.400000 +2061 2448 0.400000 +2061 2457 0.400000 +2061 2488 0.400000 +2061 2603 0.400000 +2061 2686 0.400000 +2061 2729 0.400000 +2061 2741 0.400000 +2061 2746 0.400000 +2061 2790 0.400000 +2061 2794 0.400000 +2061 2857 0.400000 +2061 2862 0.400000 +2061 2907 0.400000 +2061 2919 0.400000 +2061 2931 0.400000 +2061 2951 0.400000 +2061 3005 0.400000 +2061 3014 0.400000 +2061 3025 0.400000 +2061 3073 0.400000 +2061 3084 0.400000 +2061 3115 0.400000 +2061 3127 0.400000 +2061 3138 0.400000 +2062 99 0.400000 +2062 113 0.400000 +2062 177 0.400000 +2062 273 0.400000 +2062 280 0.400000 +2062 286 0.400000 +2062 319 0.400000 +2062 349 0.400000 +2062 444 0.400000 +2062 499 0.400000 +2062 602 0.400000 +2062 605 0.400000 +2062 612 0.400000 +2062 631 0.400000 +2062 652 0.400000 +2062 670 0.400000 +2062 696 0.400000 +2062 808 0.400000 +2062 914 0.400000 +2062 926 0.400000 +2062 937 0.400000 +2062 1051 0.400000 +2062 1116 0.400000 +2062 1125 0.400000 +2062 1144 0.400000 +2062 1200 0.400000 +2062 1210 0.400000 +2062 1266 0.400000 +2062 1469 0.400000 +2062 1481 0.400000 +2062 1503 0.400000 +2062 1627 0.400000 +2062 1636 0.400000 +2062 1655 0.400000 +2062 1682 0.400000 +2062 1755 0.400000 +2062 1781 0.400000 +2062 1928 0.400000 +2062 1982 0.400000 +2062 2047 0.400000 +2062 2212 0.400000 +2062 2354 0.400000 +2062 2387 0.400000 +2062 2406 0.400000 +2062 2411 0.400000 +2062 2490 0.400000 +2062 2509 0.400000 +2062 2538 0.400000 +2062 2560 0.400000 +2062 2591 0.400000 +2062 2766 0.400000 +2062 2794 0.400000 +2062 2995 0.400000 +2062 3172 0.400000 +2063 20 0.400000 +2063 166 0.400000 +2063 344 0.400000 +2063 508 0.400000 +2063 625 0.400000 +2063 642 0.400000 +2063 656 0.400000 +2063 674 0.400000 +2063 676 0.400000 +2063 689 0.400000 +2063 698 0.400000 +2063 732 0.400000 +2063 746 0.400000 +2063 760 0.400000 +2063 763 0.400000 +2063 788 0.400000 +2063 823 0.400000 +2063 825 0.400000 +2063 851 0.400000 +2063 871 0.400000 +2063 958 0.400000 +2063 995 0.400000 +2063 1021 0.400000 +2063 1120 0.400000 +2063 1165 0.400000 +2063 1201 0.400000 +2063 1207 0.400000 +2063 1277 0.400000 +2063 1435 0.400000 +2063 1473 0.400000 +2063 1523 0.400000 +2063 1528 0.400000 +2063 1592 0.400000 +2063 1707 0.400000 +2063 1719 0.400000 +2063 1908 0.400000 +2063 1974 0.400000 +2063 2015 0.400000 +2063 2024 0.400000 +2063 2149 0.400000 +2063 2201 0.400000 +2063 2231 0.400000 +2063 2236 0.400000 +2063 2270 0.400000 +2063 2296 0.400000 +2063 2299 0.400000 +2063 2317 0.400000 +2063 2318 0.400000 +2063 2510 0.400000 +2063 2623 0.400000 +2063 2634 0.400000 +2063 2680 0.400000 +2063 2720 0.400000 +2063 2723 0.400000 +2063 2743 0.400000 +2063 2747 0.400000 +2063 2793 0.400000 +2063 2812 0.400000 +2063 2845 0.400000 +2063 2900 0.400000 +2063 2931 0.400000 +2063 2950 0.400000 +2063 2972 0.400000 +2063 2994 0.400000 +2063 3085 0.400000 +2063 3174 0.400000 +2064 5 0.400000 +2064 76 0.400000 +2064 143 0.400000 +2064 146 0.400000 +2064 154 0.400000 +2064 156 0.400000 +2064 164 0.400000 +2064 230 0.400000 +2064 278 0.400000 +2064 364 0.400000 +2064 411 0.400000 +2064 414 0.400000 +2064 416 0.400000 +2064 456 0.400000 +2064 565 0.400000 +2064 663 0.400000 +2064 753 0.400000 +2064 787 0.400000 +2064 818 0.400000 +2064 875 0.400000 +2064 901 0.400000 +2064 921 0.400000 +2064 1025 0.400000 +2064 1156 0.400000 +2064 1166 0.400000 +2064 1224 0.400000 +2064 1338 0.400000 +2064 1530 0.400000 +2064 1538 0.400000 +2064 1547 0.400000 +2064 1565 0.400000 +2064 1579 0.400000 +2064 1763 0.400000 +2064 1844 0.400000 +2064 1895 0.400000 +2064 1934 0.400000 +2064 2011 0.400000 +2064 2037 0.400000 +2064 2088 0.400000 +2064 2221 0.400000 +2064 2244 0.400000 +2064 2334 0.400000 +2064 2526 0.400000 +2064 2620 0.400000 +2064 2703 0.400000 +2064 2740 0.400000 +2064 2798 0.400000 +2064 2824 0.400000 +2064 2849 0.400000 +2064 2894 0.400000 +2064 3019 0.400000 +2064 3034 0.400000 +2064 3086 0.400000 +2064 3143 0.400000 +2065 28 0.400000 +2065 104 0.400000 +2065 109 0.400000 +2065 130 0.400000 +2065 166 0.400000 +2065 187 0.400000 +2065 250 0.400000 +2065 270 0.400000 +2065 324 0.400000 +2065 353 0.400000 +2065 442 0.400000 +2065 618 0.400000 +2065 625 0.400000 +2065 685 0.400000 +2065 725 0.400000 +2065 753 0.400000 +2065 780 0.400000 +2065 971 0.400000 +2065 987 0.400000 +2065 999 0.400000 +2065 1048 0.400000 +2065 1051 0.400000 +2065 1077 0.400000 +2065 1108 0.400000 +2065 1125 0.400000 +2065 1192 0.400000 +2065 1203 0.400000 +2065 1321 0.400000 +2065 1417 0.400000 +2065 1424 0.400000 +2065 1495 0.400000 +2065 1745 0.400000 +2065 1825 0.400000 +2065 1876 0.400000 +2065 2034 0.400000 +2065 2045 0.400000 +2065 2063 0.400000 +2065 2097 0.400000 +2065 2124 0.400000 +2065 2190 0.400000 +2065 2211 0.400000 +2065 2220 0.400000 +2065 2260 0.400000 +2065 2321 0.400000 +2065 2323 0.400000 +2065 2375 0.400000 +2065 2378 0.400000 +2065 2399 0.400000 +2065 2502 0.400000 +2065 2519 0.400000 +2065 2546 0.400000 +2065 2572 0.400000 +2065 2618 0.400000 +2065 2624 0.400000 +2065 2660 0.400000 +2065 2783 0.400000 +2065 2798 0.400000 +2065 2832 0.400000 +2065 2900 0.400000 +2065 3033 0.400000 +2065 3123 0.400000 +2065 3127 0.400000 +2065 3144 0.400000 +2065 3192 0.400000 +2066 32 0.400000 +2066 76 0.400000 +2066 138 0.400000 +2066 160 0.400000 +2066 358 0.400000 +2066 374 0.400000 +2066 424 0.400000 +2066 453 0.400000 +2066 471 0.400000 +2066 507 0.400000 +2066 539 0.400000 +2066 698 0.400000 +2066 813 0.400000 +2066 869 0.400000 +2066 1039 0.400000 +2066 1064 0.400000 +2066 1070 0.400000 +2066 1190 0.400000 +2066 1226 0.400000 +2066 1271 0.400000 +2066 1301 0.400000 +2066 1322 0.400000 +2066 1361 0.400000 +2066 1394 0.400000 +2066 1437 0.400000 +2066 1478 0.400000 +2066 1507 0.400000 +2066 1553 0.400000 +2066 1589 0.400000 +2066 1606 0.400000 +2066 1758 0.400000 +2066 1774 0.400000 +2066 1794 0.400000 +2066 2134 0.400000 +2066 2154 0.400000 +2066 2157 0.400000 +2066 2166 0.400000 +2066 2186 0.400000 +2066 2252 0.400000 +2066 2253 0.400000 +2066 2433 0.400000 +2066 2458 0.400000 +2066 2475 0.400000 +2066 2508 0.400000 +2066 2525 0.400000 +2066 2539 0.400000 +2066 2599 0.400000 +2066 2607 0.400000 +2066 2622 0.400000 +2066 2633 0.400000 +2066 2644 0.400000 +2066 2818 0.400000 +2066 2838 0.400000 +2066 2853 0.400000 +2066 2888 0.400000 +2066 2892 0.400000 +2066 2956 0.400000 +2066 2962 0.400000 +2066 3015 0.400000 +2067 53 0.400000 +2067 136 0.400000 +2067 160 0.400000 +2067 164 0.400000 +2067 240 0.400000 +2067 256 0.400000 +2067 265 0.400000 +2067 296 0.400000 +2067 382 0.400000 +2067 457 0.400000 +2067 561 0.400000 +2067 603 0.400000 +2067 739 0.400000 +2067 765 0.400000 +2067 953 0.400000 +2067 960 0.400000 +2067 970 0.400000 +2067 1014 0.400000 +2067 1105 0.400000 +2067 1178 0.400000 +2067 1264 0.400000 +2067 1402 0.400000 +2067 1407 0.400000 +2067 1419 0.400000 +2067 1423 0.400000 +2067 1458 0.400000 +2067 1469 0.400000 +2067 1534 0.400000 +2067 1549 0.400000 +2067 1552 0.400000 +2067 1600 0.400000 +2067 1602 0.400000 +2067 1624 0.400000 +2067 1629 0.400000 +2067 1713 0.400000 +2067 1716 0.400000 +2067 1719 0.400000 +2067 1727 0.400000 +2067 1897 0.400000 +2067 1925 0.400000 +2067 1968 0.400000 +2067 1988 0.400000 +2067 2091 0.400000 +2067 2143 0.400000 +2067 2215 0.400000 +2067 2272 0.400000 +2067 2394 0.400000 +2067 2492 0.400000 +2067 2541 0.400000 +2067 2543 0.400000 +2067 2561 0.400000 +2067 2574 0.400000 +2067 2625 0.400000 +2067 2808 0.400000 +2067 2892 0.400000 +2067 2927 0.400000 +2067 2953 0.400000 +2067 2972 0.400000 +2067 2985 0.400000 +2067 3047 0.400000 +2067 3059 0.400000 +2067 3089 0.400000 +2067 3108 0.400000 +2067 3125 0.400000 +2067 3158 0.400000 +2067 3160 0.400000 +2067 3168 0.400000 +2068 19 0.400000 +2068 58 0.400000 +2068 82 0.400000 +2068 106 0.400000 +2068 237 0.400000 +2068 322 0.400000 +2068 329 0.400000 +2068 333 0.400000 +2068 408 0.400000 +2068 459 0.400000 +2068 498 0.400000 +2068 610 0.400000 +2068 619 0.400000 +2068 658 0.400000 +2068 708 0.400000 +2068 737 0.400000 +2068 749 0.400000 +2068 864 0.400000 +2068 896 0.400000 +2068 1050 0.400000 +2068 1061 0.400000 +2068 1100 0.400000 +2068 1102 0.400000 +2068 1139 0.400000 +2068 1249 0.400000 +2068 1263 0.400000 +2068 1274 0.400000 +2068 1316 0.400000 +2068 1388 0.400000 +2068 1422 0.400000 +2068 1465 0.400000 +2068 1573 0.400000 +2068 1631 0.400000 +2068 1734 0.400000 +2068 1784 0.400000 +2068 1847 0.400000 +2068 1899 0.400000 +2068 1908 0.400000 +2068 1933 0.400000 +2068 1988 0.400000 +2068 2098 0.400000 +2068 2099 0.400000 +2068 2108 0.400000 +2068 2140 0.400000 +2068 2164 0.400000 +2068 2205 0.400000 +2068 2251 0.400000 +2068 2381 0.400000 +2068 2437 0.400000 +2068 2473 0.400000 +2068 2605 0.400000 +2068 2615 0.400000 +2068 2644 0.400000 +2068 2716 0.400000 +2068 2767 0.400000 +2068 2797 0.400000 +2068 2801 0.400000 +2068 2836 0.400000 +2068 2847 0.400000 +2068 3109 0.400000 +2068 3161 0.400000 +2068 3185 0.400000 +2069 63 0.400000 +2069 141 0.400000 +2069 146 0.400000 +2069 196 0.400000 +2069 219 0.400000 +2069 241 0.400000 +2069 251 0.400000 +2069 256 0.400000 +2069 259 0.400000 +2069 294 0.400000 +2069 316 0.400000 +2069 375 0.400000 +2069 516 0.400000 +2069 551 0.400000 +2069 556 0.400000 +2069 670 0.400000 +2069 720 0.400000 +2069 772 0.400000 +2069 839 0.400000 +2069 856 0.400000 +2069 868 0.400000 +2069 1042 0.400000 +2069 1154 0.400000 +2069 1155 0.400000 +2069 1223 0.400000 +2069 1238 0.400000 +2069 1250 0.400000 +2069 1332 0.400000 +2069 1344 0.400000 +2069 1346 0.400000 +2069 1366 0.400000 +2069 1399 0.400000 +2069 1425 0.400000 +2069 1541 0.400000 +2069 1644 0.400000 +2069 1687 0.400000 +2069 1761 0.400000 +2069 1770 0.400000 +2069 2002 0.400000 +2069 2017 0.400000 +2069 2139 0.400000 +2069 2142 0.400000 +2069 2207 0.400000 +2069 2212 0.400000 +2069 2222 0.400000 +2069 2272 0.400000 +2069 2290 0.400000 +2069 2300 0.400000 +2069 2314 0.400000 +2069 2362 0.400000 +2069 2442 0.400000 +2069 2458 0.400000 +2069 2494 0.400000 +2069 2508 0.400000 +2069 2518 0.400000 +2069 2528 0.400000 +2069 2581 0.400000 +2069 2639 0.400000 +2069 2746 0.400000 +2069 2817 0.400000 +2069 2819 0.400000 +2069 2837 0.400000 +2069 2892 0.400000 +2069 2905 0.400000 +2069 2967 0.400000 +2069 3049 0.400000 +2069 3060 0.400000 +2069 3101 0.400000 +2069 3143 0.400000 +2069 3189 0.400000 +2070 18 0.400000 +2070 73 0.400000 +2070 146 0.400000 +2070 182 0.400000 +2070 249 0.400000 +2070 294 0.400000 +2070 342 0.400000 +2070 428 0.400000 +2070 439 0.400000 +2070 441 0.400000 +2070 452 0.400000 +2070 471 0.400000 +2070 482 0.400000 +2070 587 0.400000 +2070 631 0.400000 +2070 632 0.400000 +2070 659 0.400000 +2070 723 0.400000 +2070 759 0.400000 +2070 762 0.400000 +2070 810 0.400000 +2070 818 0.400000 +2070 897 0.400000 +2070 979 0.400000 +2070 982 0.400000 +2070 1073 0.400000 +2070 1077 0.400000 +2070 1201 0.400000 +2070 1217 0.400000 +2070 1485 0.400000 +2070 1497 0.400000 +2070 1503 0.400000 +2070 1505 0.400000 +2070 1522 0.400000 +2070 1526 0.400000 +2070 1616 0.400000 +2070 1640 0.400000 +2070 1658 0.400000 +2070 1676 0.400000 +2070 1706 0.400000 +2070 1749 0.400000 +2070 1784 0.400000 +2070 2041 0.400000 +2070 2136 0.400000 +2070 2241 0.400000 +2070 2291 0.400000 +2070 2322 0.400000 +2070 2337 0.400000 +2070 2342 0.400000 +2070 2394 0.400000 +2070 2452 0.400000 +2070 2554 0.400000 +2070 2589 0.400000 +2070 2763 0.400000 +2070 2817 0.400000 +2070 2836 0.400000 +2070 2850 0.400000 +2070 2915 0.400000 +2070 3014 0.400000 +2070 3078 0.400000 +2071 7 0.400000 +2071 206 0.400000 +2071 292 0.400000 +2071 321 0.400000 +2071 367 0.400000 +2071 416 0.400000 +2071 432 0.400000 +2071 480 0.400000 +2071 538 0.400000 +2071 689 0.400000 +2071 731 0.400000 +2071 733 0.400000 +2071 806 0.400000 +2071 841 0.400000 +2071 851 0.400000 +2071 858 0.400000 +2071 890 0.400000 +2071 926 0.400000 +2071 950 0.400000 +2071 991 0.400000 +2071 998 0.400000 +2071 1028 0.400000 +2071 1051 0.400000 +2071 1116 0.400000 +2071 1128 0.400000 +2071 1193 0.400000 +2071 1227 0.400000 +2071 1244 0.400000 +2071 1276 0.400000 +2071 1309 0.400000 +2071 1368 0.400000 +2071 1436 0.400000 +2071 1461 0.400000 +2071 1576 0.400000 +2071 1773 0.400000 +2071 1887 0.400000 +2071 1917 0.400000 +2071 1954 0.400000 +2071 1970 0.400000 +2071 2007 0.400000 +2071 2025 0.400000 +2071 2132 0.400000 +2071 2192 0.400000 +2071 2259 0.400000 +2071 2467 0.400000 +2071 2495 0.400000 +2071 2557 0.400000 +2071 2674 0.400000 +2071 2688 0.400000 +2071 2716 0.400000 +2071 2723 0.400000 +2071 2771 0.400000 +2071 2785 0.400000 +2071 2793 0.400000 +2071 2814 0.400000 +2071 2869 0.400000 +2071 2874 0.400000 +2071 2899 0.400000 +2071 2909 0.400000 +2071 2940 0.400000 +2071 2972 0.400000 +2071 3052 0.400000 +2071 3058 0.400000 +2071 3089 0.400000 +2071 3127 0.400000 +2071 3145 0.400000 +2072 27 0.400000 +2072 262 0.400000 +2072 285 0.400000 +2072 287 0.400000 +2072 297 0.400000 +2072 348 0.400000 +2072 354 0.400000 +2072 357 0.400000 +2072 390 0.400000 +2072 465 0.400000 +2072 493 0.400000 +2072 494 0.400000 +2072 553 0.400000 +2072 555 0.400000 +2072 558 0.400000 +2072 573 0.400000 +2072 575 0.400000 +2072 578 0.400000 +2072 599 0.400000 +2072 661 0.400000 +2072 677 0.400000 +2072 818 0.400000 +2072 823 0.400000 +2072 874 0.400000 +2072 903 0.400000 +2072 1066 0.400000 +2072 1251 0.400000 +2072 1296 0.400000 +2072 1353 0.400000 +2072 1376 0.400000 +2072 1417 0.400000 +2072 1465 0.400000 +2072 1488 0.400000 +2072 1489 0.400000 +2072 1533 0.400000 +2072 1739 0.400000 +2072 1762 0.400000 +2072 1796 0.400000 +2072 1839 0.400000 +2072 1844 0.400000 +2072 1869 0.400000 +2072 1997 0.400000 +2072 2087 0.400000 +2072 2092 0.400000 +2072 2108 0.400000 +2072 2124 0.400000 +2072 2181 0.400000 +2072 2221 0.400000 +2072 2227 0.400000 +2072 2273 0.400000 +2072 2287 0.400000 +2072 2302 0.400000 +2072 2305 0.400000 +2072 2317 0.400000 +2072 2326 0.400000 +2072 2344 0.400000 +2072 2384 0.400000 +2072 2393 0.400000 +2072 2397 0.400000 +2072 2420 0.400000 +2072 2426 0.400000 +2072 2435 0.400000 +2072 2456 0.400000 +2072 2465 0.400000 +2072 2494 0.400000 +2072 2535 0.400000 +2072 2603 0.400000 +2072 2618 0.400000 +2072 2664 0.400000 +2072 2722 0.400000 +2072 2745 0.400000 +2072 2839 0.400000 +2072 2982 0.400000 +2072 3025 0.400000 +2072 3029 0.400000 +2072 3121 0.400000 +2073 51 0.400000 +2073 91 0.400000 +2073 97 0.400000 +2073 103 0.400000 +2073 139 0.400000 +2073 194 0.400000 +2073 259 0.400000 +2073 283 0.400000 +2073 309 0.400000 +2073 324 0.400000 +2073 365 0.400000 +2073 519 0.400000 +2073 546 0.400000 +2073 621 0.400000 +2073 653 0.400000 +2073 677 0.400000 +2073 746 0.400000 +2073 844 0.400000 +2073 849 0.400000 +2073 855 0.400000 +2073 947 0.400000 +2073 998 0.400000 +2073 1100 0.400000 +2073 1214 0.400000 +2073 1325 0.400000 +2073 1334 0.400000 +2073 1371 0.400000 +2073 1391 0.400000 +2073 1406 0.400000 +2073 1490 0.400000 +2073 1530 0.400000 +2073 1579 0.400000 +2073 1587 0.400000 +2073 1593 0.400000 +2073 1654 0.400000 +2073 1659 0.400000 +2073 1710 0.400000 +2073 1719 0.400000 +2073 1731 0.400000 +2073 1836 0.400000 +2073 1921 0.400000 +2073 2024 0.400000 +2073 2069 0.400000 +2073 2140 0.400000 +2073 2150 0.400000 +2073 2155 0.400000 +2073 2225 0.400000 +2073 2427 0.400000 +2073 2437 0.400000 +2073 2539 0.400000 +2073 2560 0.400000 +2073 2598 0.400000 +2073 2604 0.400000 +2073 2616 0.400000 +2073 2631 0.400000 +2073 2699 0.400000 +2073 2753 0.400000 +2073 2794 0.400000 +2073 2856 0.400000 +2073 2977 0.400000 +2073 2987 0.400000 +2073 3175 0.400000 +2073 3184 0.400000 +2074 1 0.400000 +2074 138 0.400000 +2074 161 0.400000 +2074 172 0.400000 +2074 217 0.400000 +2074 282 0.400000 +2074 295 0.400000 +2074 356 0.400000 +2074 364 0.400000 +2074 400 0.400000 +2074 431 0.400000 +2074 448 0.400000 +2074 548 0.400000 +2074 578 0.400000 +2074 615 0.400000 +2074 619 0.400000 +2074 787 0.400000 +2074 849 0.400000 +2074 882 0.400000 +2074 924 0.400000 +2074 966 0.400000 +2074 1026 0.400000 +2074 1077 0.400000 +2074 1104 0.400000 +2074 1144 0.400000 +2074 1178 0.400000 +2074 1184 0.400000 +2074 1220 0.400000 +2074 1228 0.400000 +2074 1261 0.400000 +2074 1304 0.400000 +2074 1425 0.400000 +2074 1503 0.400000 +2074 1548 0.400000 +2074 1556 0.400000 +2074 1584 0.400000 +2074 1625 0.400000 +2074 1768 0.400000 +2074 1778 0.400000 +2074 1887 0.400000 +2074 1901 0.400000 +2074 1920 0.400000 +2074 2092 0.400000 +2074 2106 0.400000 +2074 2146 0.400000 +2074 2224 0.400000 +2074 2353 0.400000 +2074 2393 0.400000 +2074 2466 0.400000 +2074 2561 0.400000 +2074 2638 0.400000 +2074 2677 0.400000 +2074 2697 0.400000 +2074 2716 0.400000 +2074 2844 0.400000 +2074 2960 0.400000 +2074 2982 0.400000 +2074 3145 0.400000 +2075 20 0.400000 +2075 99 0.400000 +2075 123 0.400000 +2075 146 0.400000 +2075 168 0.400000 +2075 242 0.400000 +2075 252 0.400000 +2075 387 0.400000 +2075 472 0.400000 +2075 480 0.400000 +2075 488 0.400000 +2075 498 0.400000 +2075 517 0.400000 +2075 518 0.400000 +2075 603 0.400000 +2075 653 0.400000 +2075 660 0.400000 +2075 683 0.400000 +2075 692 0.400000 +2075 719 0.400000 +2075 874 0.400000 +2075 920 0.400000 +2075 939 0.400000 +2075 961 0.400000 +2075 1030 0.400000 +2075 1037 0.400000 +2075 1135 0.400000 +2075 1160 0.400000 +2075 1185 0.400000 +2075 1200 0.400000 +2075 1221 0.400000 +2075 1227 0.400000 +2075 1232 0.400000 +2075 1237 0.400000 +2075 1390 0.400000 +2075 1484 0.400000 +2075 1485 0.400000 +2075 1516 0.400000 +2075 1543 0.400000 +2075 1548 0.400000 +2075 1613 0.400000 +2075 1656 0.400000 +2075 1693 0.400000 +2075 1766 0.400000 +2075 1778 0.400000 +2075 1784 0.400000 +2075 1802 0.400000 +2075 1873 0.400000 +2075 1887 0.400000 +2075 1902 0.400000 +2075 1981 0.400000 +2075 2201 0.400000 +2075 2217 0.400000 +2075 2296 0.400000 +2075 2310 0.400000 +2075 2343 0.400000 +2075 2479 0.400000 +2075 2536 0.400000 +2075 2671 0.400000 +2075 2673 0.400000 +2075 2844 0.400000 +2075 2876 0.400000 +2075 2913 0.400000 +2075 2927 0.400000 +2075 3057 0.400000 +2075 3085 0.400000 +2075 3139 0.400000 +2076 29 0.400000 +2076 47 0.400000 +2076 97 0.400000 +2076 142 0.400000 +2076 155 0.400000 +2076 383 0.400000 +2076 490 0.400000 +2076 554 0.400000 +2076 577 0.400000 +2076 607 0.400000 +2076 643 0.400000 +2076 711 0.400000 +2076 837 0.400000 +2076 840 0.400000 +2076 880 0.400000 +2076 946 0.400000 +2076 981 0.400000 +2076 1078 0.400000 +2076 1120 0.400000 +2076 1181 0.400000 +2076 1209 0.400000 +2076 1252 0.400000 +2076 1265 0.400000 +2076 1266 0.400000 +2076 1393 0.400000 +2076 1412 0.400000 +2076 1419 0.400000 +2076 1498 0.400000 +2076 1571 0.400000 +2076 1579 0.400000 +2076 1614 0.400000 +2076 1658 0.400000 +2076 1731 0.400000 +2076 1766 0.400000 +2076 1807 0.400000 +2076 1880 0.400000 +2076 1906 0.400000 +2076 1958 0.400000 +2076 2024 0.400000 +2076 2030 0.400000 +2076 2037 0.400000 +2076 2057 0.400000 +2076 2099 0.400000 +2076 2104 0.400000 +2076 2126 0.400000 +2076 2147 0.400000 +2076 2149 0.400000 +2076 2254 0.400000 +2076 2328 0.400000 +2076 2343 0.400000 +2076 2355 0.400000 +2076 2426 0.400000 +2076 2446 0.400000 +2076 2565 0.400000 +2076 2581 0.400000 +2076 2623 0.400000 +2076 2631 0.400000 +2076 2637 0.400000 +2076 2680 0.400000 +2076 2727 0.400000 +2076 2728 0.400000 +2076 2835 0.400000 +2076 2909 0.400000 +2076 2915 0.400000 +2076 2916 0.400000 +2076 2931 0.400000 +2076 2951 0.400000 +2076 2959 0.400000 +2076 3072 0.400000 +2076 3079 0.400000 +2076 3080 0.400000 +2076 3101 0.400000 +2076 3200 0.400000 +2077 15 0.400000 +2077 22 0.400000 +2077 32 0.400000 +2077 186 0.400000 +2077 231 0.400000 +2077 322 0.400000 +2077 361 0.400000 +2077 411 0.400000 +2077 428 0.400000 +2077 447 0.400000 +2077 542 0.400000 +2077 633 0.400000 +2077 688 0.400000 +2077 732 0.400000 +2077 867 0.400000 +2077 994 0.400000 +2077 1030 0.400000 +2077 1069 0.400000 +2077 1071 0.400000 +2077 1097 0.400000 +2077 1121 0.400000 +2077 1153 0.400000 +2077 1172 0.400000 +2077 1234 0.400000 +2077 1257 0.400000 +2077 1274 0.400000 +2077 1334 0.400000 +2077 1365 0.400000 +2077 1391 0.400000 +2077 1441 0.400000 +2077 1500 0.400000 +2077 1543 0.400000 +2077 1605 0.400000 +2077 1665 0.400000 +2077 1768 0.400000 +2077 1775 0.400000 +2077 1794 0.400000 +2077 1838 0.400000 +2077 1845 0.400000 +2077 1952 0.400000 +2077 2019 0.400000 +2077 2071 0.400000 +2077 2090 0.400000 +2077 2112 0.400000 +2077 2127 0.400000 +2077 2129 0.400000 +2077 2185 0.400000 +2077 2199 0.400000 +2077 2373 0.400000 +2077 2395 0.400000 +2077 2477 0.400000 +2077 2493 0.400000 +2077 2585 0.400000 +2077 2718 0.400000 +2077 2811 0.400000 +2077 2899 0.400000 +2077 2917 0.400000 +2077 2924 0.400000 +2077 2966 0.400000 +2077 2970 0.400000 +2077 3007 0.400000 +2077 3027 0.400000 +2077 3032 0.400000 +2077 3124 0.400000 +2077 3167 0.400000 +2078 60 0.400000 +2078 74 0.400000 +2078 152 0.400000 +2078 168 0.400000 +2078 175 0.400000 +2078 239 0.400000 +2078 388 0.400000 +2078 461 0.400000 +2078 462 0.400000 +2078 529 0.400000 +2078 576 0.400000 +2078 629 0.400000 +2078 672 0.400000 +2078 675 0.400000 +2078 726 0.400000 +2078 855 0.400000 +2078 915 0.400000 +2078 931 0.400000 +2078 989 0.400000 +2078 1074 0.400000 +2078 1082 0.400000 +2078 1086 0.400000 +2078 1106 0.400000 +2078 1149 0.400000 +2078 1306 0.400000 +2078 1323 0.400000 +2078 1327 0.400000 +2078 1345 0.400000 +2078 1361 0.400000 +2078 1377 0.400000 +2078 1394 0.400000 +2078 1441 0.400000 +2078 1482 0.400000 +2078 1677 0.400000 +2078 1728 0.400000 +2078 1767 0.400000 +2078 1774 0.400000 +2078 1827 0.400000 +2078 1841 0.400000 +2078 1852 0.400000 +2078 1855 0.400000 +2078 2087 0.400000 +2078 2098 0.400000 +2078 2178 0.400000 +2078 2253 0.400000 +2078 2349 0.400000 +2078 2355 0.400000 +2078 2369 0.400000 +2078 2403 0.400000 +2078 2455 0.400000 +2078 2605 0.400000 +2078 2789 0.400000 +2078 2819 0.400000 +2078 2903 0.400000 +2078 2907 0.400000 +2078 2961 0.400000 +2078 2971 0.400000 +2078 3103 0.400000 +2078 3117 0.400000 +2078 3158 0.400000 +2079 54 0.400000 +2079 84 0.400000 +2079 113 0.400000 +2079 195 0.400000 +2079 319 0.400000 +2079 377 0.400000 +2079 534 0.400000 +2079 631 0.400000 +2079 643 0.400000 +2079 678 0.400000 +2079 737 0.400000 +2079 850 0.400000 +2079 861 0.400000 +2079 896 0.400000 +2079 949 0.400000 +2079 1029 0.400000 +2079 1142 0.400000 +2079 1250 0.400000 +2079 1283 0.400000 +2079 1366 0.400000 +2079 1387 0.400000 +2079 1414 0.400000 +2079 1541 0.400000 +2079 1571 0.400000 +2079 1635 0.400000 +2079 1686 0.400000 +2079 1723 0.400000 +2079 1810 0.400000 +2079 1835 0.400000 +2079 1890 0.400000 +2079 1945 0.400000 +2079 1952 0.400000 +2079 1979 0.400000 +2079 2050 0.400000 +2079 2087 0.400000 +2079 2165 0.400000 +2079 2302 0.400000 +2079 2371 0.400000 +2079 2391 0.400000 +2079 2393 0.400000 +2079 2408 0.400000 +2079 2535 0.400000 +2079 2566 0.400000 +2079 2614 0.400000 +2079 2657 0.400000 +2079 2747 0.400000 +2079 2813 0.400000 +2079 2861 0.400000 +2079 2910 0.400000 +2079 2915 0.400000 +2079 2923 0.400000 +2079 3142 0.400000 +2079 3154 0.400000 +2080 9 0.400000 +2080 21 0.400000 +2080 22 0.400000 +2080 130 0.400000 +2080 153 0.400000 +2080 203 0.400000 +2080 259 0.400000 +2080 366 0.400000 +2080 509 0.400000 +2080 552 0.400000 +2080 591 0.400000 +2080 607 0.400000 +2080 618 0.400000 +2080 655 0.400000 +2080 695 0.400000 +2080 736 0.400000 +2080 740 0.400000 +2080 843 0.400000 +2080 909 0.400000 +2080 981 0.400000 +2080 1002 0.400000 +2080 1009 0.400000 +2080 1123 0.400000 +2080 1212 0.400000 +2080 1231 0.400000 +2080 1273 0.400000 +2080 1293 0.400000 +2080 1311 0.400000 +2080 1341 0.400000 +2080 1391 0.400000 +2080 1402 0.400000 +2080 1602 0.400000 +2080 1607 0.400000 +2080 1670 0.400000 +2080 1694 0.400000 +2080 1785 0.400000 +2080 1814 0.400000 +2080 1958 0.400000 +2080 2124 0.400000 +2080 2154 0.400000 +2080 2171 0.400000 +2080 2244 0.400000 +2080 2285 0.400000 +2080 2334 0.400000 +2080 2352 0.400000 +2080 2456 0.400000 +2080 2480 0.400000 +2080 2509 0.400000 +2080 2519 0.400000 +2080 2601 0.400000 +2080 2626 0.400000 +2080 2652 0.400000 +2080 2667 0.400000 +2080 2690 0.400000 +2080 2700 0.400000 +2080 2703 0.400000 +2080 2719 0.400000 +2080 2783 0.400000 +2080 2858 0.400000 +2080 2910 0.400000 +2080 2928 0.400000 +2080 2984 0.400000 +2080 3001 0.400000 +2080 3004 0.400000 +2080 3162 0.400000 +2081 142 0.400000 +2081 173 0.400000 +2081 212 0.400000 +2081 355 0.400000 +2081 438 0.400000 +2081 511 0.400000 +2081 535 0.400000 +2081 547 0.400000 +2081 643 0.400000 +2081 659 0.400000 +2081 689 0.400000 +2081 724 0.400000 +2081 729 0.400000 +2081 754 0.400000 +2081 838 0.400000 +2081 861 0.400000 +2081 918 0.400000 +2081 930 0.400000 +2081 1035 0.400000 +2081 1039 0.400000 +2081 1074 0.400000 +2081 1077 0.400000 +2081 1095 0.400000 +2081 1124 0.400000 +2081 1140 0.400000 +2081 1215 0.400000 +2081 1264 0.400000 +2081 1488 0.400000 +2081 1522 0.400000 +2081 1715 0.400000 +2081 1726 0.400000 +2081 1756 0.400000 +2081 1760 0.400000 +2081 1783 0.400000 +2081 1793 0.400000 +2081 1874 0.400000 +2081 1896 0.400000 +2081 1907 0.400000 +2081 1968 0.400000 +2081 2010 0.400000 +2081 2180 0.400000 +2081 2211 0.400000 +2081 2263 0.400000 +2081 2283 0.400000 +2081 2321 0.400000 +2081 2326 0.400000 +2081 2386 0.400000 +2081 2387 0.400000 +2081 2439 0.400000 +2081 2528 0.400000 +2081 2536 0.400000 +2081 2835 0.400000 +2081 2858 0.400000 +2081 2885 0.400000 +2081 2905 0.400000 +2081 3123 0.400000 +2082 71 0.400000 +2082 76 0.400000 +2082 90 0.400000 +2082 104 0.400000 +2082 153 0.400000 +2082 238 0.400000 +2082 257 0.400000 +2082 262 0.400000 +2082 366 0.400000 +2082 401 0.400000 +2082 442 0.400000 +2082 488 0.400000 +2082 516 0.400000 +2082 569 0.400000 +2082 587 0.400000 +2082 673 0.400000 +2082 816 0.400000 +2082 849 0.400000 +2082 925 0.400000 +2082 940 0.400000 +2082 979 0.400000 +2082 1013 0.400000 +2082 1037 0.400000 +2082 1123 0.400000 +2082 1169 0.400000 +2082 1268 0.400000 +2082 1301 0.400000 +2082 1469 0.400000 +2082 1553 0.400000 +2082 1614 0.400000 +2082 1648 0.400000 +2082 1669 0.400000 +2082 1740 0.400000 +2082 1745 0.400000 +2082 1852 0.400000 +2082 1878 0.400000 +2082 1891 0.400000 +2082 1931 0.400000 +2082 1960 0.400000 +2082 2044 0.400000 +2082 2064 0.400000 +2082 2070 0.400000 +2082 2072 0.400000 +2082 2073 0.400000 +2082 2080 0.400000 +2082 2244 0.400000 +2082 2250 0.400000 +2082 2266 0.400000 +2082 2343 0.400000 +2082 2603 0.400000 +2082 2607 0.400000 +2082 2619 0.400000 +2082 2729 0.400000 +2082 2730 0.400000 +2082 2773 0.400000 +2082 2836 0.400000 +2082 2910 0.400000 +2082 2912 0.400000 +2082 2963 0.400000 +2082 2982 0.400000 +2082 3000 0.400000 +2082 3115 0.400000 +2082 3146 0.400000 +2083 20 0.400000 +2083 48 0.400000 +2083 52 0.400000 +2083 185 0.400000 +2083 217 0.400000 +2083 244 0.400000 +2083 251 0.400000 +2083 301 0.400000 +2083 303 0.400000 +2083 341 0.400000 +2083 446 0.400000 +2083 515 0.400000 +2083 544 0.400000 +2083 577 0.400000 +2083 596 0.400000 +2083 617 0.400000 +2083 653 0.400000 +2083 678 0.400000 +2083 690 0.400000 +2083 788 0.400000 +2083 839 0.400000 +2083 943 0.400000 +2083 955 0.400000 +2083 980 0.400000 +2083 990 0.400000 +2083 1030 0.400000 +2083 1041 0.400000 +2083 1120 0.400000 +2083 1138 0.400000 +2083 1185 0.400000 +2083 1190 0.400000 +2083 1220 0.400000 +2083 1288 0.400000 +2083 1295 0.400000 +2083 1372 0.400000 +2083 1385 0.400000 +2083 1397 0.400000 +2083 1435 0.400000 +2083 1461 0.400000 +2083 1462 0.400000 +2083 1616 0.400000 +2083 1617 0.400000 +2083 1714 0.400000 +2083 1798 0.400000 +2083 1802 0.400000 +2083 1871 0.400000 +2083 1883 0.400000 +2083 2029 0.400000 +2083 2038 0.400000 +2083 2116 0.400000 +2083 2168 0.400000 +2083 2226 0.400000 +2083 2322 0.400000 +2083 2329 0.400000 +2083 2372 0.400000 +2083 2381 0.400000 +2083 2407 0.400000 +2083 2414 0.400000 +2083 2607 0.400000 +2083 2770 0.400000 +2083 2841 0.400000 +2083 2880 0.400000 +2083 2895 0.400000 +2083 3028 0.400000 +2083 3065 0.400000 +2083 3100 0.400000 +2083 3121 0.400000 +2083 3135 0.400000 +2083 3196 0.400000 +2084 6 0.400000 +2084 102 0.400000 +2084 131 0.400000 +2084 155 0.400000 +2084 247 0.400000 +2084 329 0.400000 +2084 408 0.400000 +2084 410 0.400000 +2084 412 0.400000 +2084 431 0.400000 +2084 451 0.400000 +2084 472 0.400000 +2084 493 0.400000 +2084 520 0.400000 +2084 592 0.400000 +2084 671 0.400000 +2084 677 0.400000 +2084 765 0.400000 +2084 857 0.400000 +2084 860 0.400000 +2084 896 0.400000 +2084 975 0.400000 +2084 1101 0.400000 +2084 1108 0.400000 +2084 1121 0.400000 +2084 1159 0.400000 +2084 1199 0.400000 +2084 1223 0.400000 +2084 1240 0.400000 +2084 1241 0.400000 +2084 1271 0.400000 +2084 1410 0.400000 +2084 1438 0.400000 +2084 1510 0.400000 +2084 1554 0.400000 +2084 1557 0.400000 +2084 1612 0.400000 +2084 1632 0.400000 +2084 1678 0.400000 +2084 1684 0.400000 +2084 1696 0.400000 +2084 1754 0.400000 +2084 1787 0.400000 +2084 1851 0.400000 +2084 1882 0.400000 +2084 1933 0.400000 +2084 1937 0.400000 +2084 1944 0.400000 +2084 1996 0.400000 +2084 2006 0.400000 +2084 2030 0.400000 +2084 2069 0.400000 +2084 2099 0.400000 +2084 2127 0.400000 +2084 2172 0.400000 +2084 2181 0.400000 +2084 2193 0.400000 +2084 2213 0.400000 +2084 2214 0.400000 +2084 2221 0.400000 +2084 2282 0.400000 +2084 2445 0.400000 +2084 2499 0.400000 +2084 2515 0.400000 +2084 2516 0.400000 +2084 2532 0.400000 +2084 2534 0.400000 +2084 2540 0.400000 +2084 2593 0.400000 +2084 2595 0.400000 +2084 2638 0.400000 +2084 2657 0.400000 +2084 2672 0.400000 +2084 2684 0.400000 +2084 2685 0.400000 +2084 2767 0.400000 +2084 2842 0.400000 +2084 2899 0.400000 +2084 2933 0.400000 +2084 3054 0.400000 +2084 3067 0.400000 +2084 3091 0.400000 +2084 3103 0.400000 +2084 3111 0.400000 +2084 3165 0.400000 +2085 6 0.400000 +2085 42 0.400000 +2085 109 0.400000 +2085 123 0.400000 +2085 172 0.400000 +2085 261 0.400000 +2085 302 0.400000 +2085 399 0.400000 +2085 495 0.400000 +2085 507 0.400000 +2085 531 0.400000 +2085 599 0.400000 +2085 600 0.400000 +2085 686 0.400000 +2085 762 0.400000 +2085 764 0.400000 +2085 805 0.400000 +2085 874 0.400000 +2085 921 0.400000 +2085 983 0.400000 +2085 1000 0.400000 +2085 1065 0.400000 +2085 1102 0.400000 +2085 1181 0.400000 +2085 1193 0.400000 +2085 1222 0.400000 +2085 1354 0.400000 +2085 1462 0.400000 +2085 1527 0.400000 +2085 1574 0.400000 +2085 1575 0.400000 +2085 1622 0.400000 +2085 1649 0.400000 +2085 1664 0.400000 +2085 1703 0.400000 +2085 1756 0.400000 +2085 1828 0.400000 +2085 1861 0.400000 +2085 1873 0.400000 +2085 1920 0.400000 +2085 1944 0.400000 +2085 1968 0.400000 +2085 1970 0.400000 +2085 1973 0.400000 +2085 2036 0.400000 +2085 2037 0.400000 +2085 2125 0.400000 +2085 2155 0.400000 +2085 2168 0.400000 +2085 2312 0.400000 +2085 2319 0.400000 +2085 2328 0.400000 +2085 2345 0.400000 +2085 2352 0.400000 +2085 2362 0.400000 +2085 2382 0.400000 +2085 2449 0.400000 +2085 2479 0.400000 +2085 2545 0.400000 +2085 2662 0.400000 +2085 2666 0.400000 +2085 2719 0.400000 +2085 2771 0.400000 +2085 2882 0.400000 +2085 2931 0.400000 +2085 2942 0.400000 +2085 2943 0.400000 +2085 2987 0.400000 +2085 3022 0.400000 +2085 3066 0.400000 +2085 3067 0.400000 +2085 3076 0.400000 +2085 3080 0.400000 +2085 3092 0.400000 +2085 3100 0.400000 +2085 3112 0.400000 +2086 73 0.400000 +2086 191 0.400000 +2086 214 0.400000 +2086 225 0.400000 +2086 229 0.400000 +2086 233 0.400000 +2086 249 0.400000 +2086 250 0.400000 +2086 265 0.400000 +2086 348 0.400000 +2086 386 0.400000 +2086 498 0.400000 +2086 678 0.400000 +2086 709 0.400000 +2086 713 0.400000 +2086 798 0.400000 +2086 942 0.400000 +2086 950 0.400000 +2086 1194 0.400000 +2086 1201 0.400000 +2086 1237 0.400000 +2086 1257 0.400000 +2086 1388 0.400000 +2086 1451 0.400000 +2086 1575 0.400000 +2086 1606 0.400000 +2086 1626 0.400000 +2086 1716 0.400000 +2086 1758 0.400000 +2086 1795 0.400000 +2086 1846 0.400000 +2086 1847 0.400000 +2086 1899 0.400000 +2086 2019 0.400000 +2086 2170 0.400000 +2086 2171 0.400000 +2086 2217 0.400000 +2086 2250 0.400000 +2086 2267 0.400000 +2086 2591 0.400000 +2086 2616 0.400000 +2086 2675 0.400000 +2086 2692 0.400000 +2086 2744 0.400000 +2086 2757 0.400000 +2086 2775 0.400000 +2086 2885 0.400000 +2086 2964 0.400000 +2086 3004 0.400000 +2086 3012 0.400000 +2086 3027 0.400000 +2086 3074 0.400000 +2086 3099 0.400000 +2086 3116 0.400000 +2086 3124 0.400000 +2087 6 0.400000 +2087 19 0.400000 +2087 244 0.400000 +2087 253 0.400000 +2087 317 0.400000 +2087 343 0.400000 +2087 502 0.400000 +2087 514 0.400000 +2087 520 0.400000 +2087 546 0.400000 +2087 552 0.400000 +2087 560 0.400000 +2087 573 0.400000 +2087 831 0.400000 +2087 845 0.400000 +2087 854 0.400000 +2087 888 0.400000 +2087 912 0.400000 +2087 928 0.400000 +2087 992 0.400000 +2087 1077 0.400000 +2087 1109 0.400000 +2087 1180 0.400000 +2087 1241 0.400000 +2087 1288 0.400000 +2087 1323 0.400000 +2087 1381 0.400000 +2087 1448 0.400000 +2087 1449 0.400000 +2087 1470 0.400000 +2087 1544 0.400000 +2087 1561 0.400000 +2087 1625 0.400000 +2087 1829 0.400000 +2087 1866 0.400000 +2087 1883 0.400000 +2087 1894 0.400000 +2087 1955 0.400000 +2087 1959 0.400000 +2087 2017 0.400000 +2087 2021 0.400000 +2087 2140 0.400000 +2087 2165 0.400000 +2087 2221 0.400000 +2087 2267 0.400000 +2087 2278 0.400000 +2087 2328 0.400000 +2087 2368 0.400000 +2087 2451 0.400000 +2087 2667 0.400000 +2087 2761 0.400000 +2087 2925 0.400000 +2087 2977 0.400000 +2087 2982 0.400000 +2087 3130 0.400000 +2087 3164 0.400000 +2087 3190 0.400000 +2088 61 0.400000 +2088 65 0.400000 +2088 117 0.400000 +2088 132 0.400000 +2088 164 0.400000 +2088 196 0.400000 +2088 263 0.400000 +2088 277 0.400000 +2088 289 0.400000 +2088 304 0.400000 +2088 337 0.400000 +2088 467 0.400000 +2088 479 0.400000 +2088 484 0.400000 +2088 490 0.400000 +2088 549 0.400000 +2088 592 0.400000 +2088 685 0.400000 +2088 722 0.400000 +2088 783 0.400000 +2088 809 0.400000 +2088 834 0.400000 +2088 946 0.400000 +2088 1065 0.400000 +2088 1080 0.400000 +2088 1135 0.400000 +2088 1153 0.400000 +2088 1165 0.400000 +2088 1217 0.400000 +2088 1305 0.400000 +2088 1437 0.400000 +2088 1472 0.400000 +2088 1484 0.400000 +2088 1528 0.400000 +2088 1555 0.400000 +2088 1636 0.400000 +2088 1660 0.400000 +2088 1706 0.400000 +2088 1738 0.400000 +2088 1759 0.400000 +2088 1783 0.400000 +2088 1788 0.400000 +2088 1797 0.400000 +2088 1888 0.400000 +2088 1946 0.400000 +2088 1973 0.400000 +2088 2013 0.400000 +2088 2059 0.400000 +2088 2298 0.400000 +2088 2364 0.400000 +2088 2368 0.400000 +2088 2430 0.400000 +2088 2508 0.400000 +2088 2510 0.400000 +2088 2544 0.400000 +2088 2571 0.400000 +2088 2637 0.400000 +2088 2761 0.400000 +2088 2856 0.400000 +2088 2872 0.400000 +2088 2884 0.400000 +2088 2966 0.400000 +2088 3028 0.400000 +2088 3109 0.400000 +2088 3124 0.400000 +2089 131 0.400000 +2089 145 0.400000 +2089 160 0.400000 +2089 278 0.400000 +2089 471 0.400000 +2089 514 0.400000 +2089 634 0.400000 +2089 686 0.400000 +2089 922 0.400000 +2089 929 0.400000 +2089 1265 0.400000 +2089 1268 0.400000 +2089 1319 0.400000 +2089 1341 0.400000 +2089 1395 0.400000 +2089 1445 0.400000 +2089 1481 0.400000 +2089 1554 0.400000 +2089 1694 0.400000 +2089 1703 0.400000 +2089 1707 0.400000 +2089 1712 0.400000 +2089 1869 0.400000 +2089 1873 0.400000 +2089 1882 0.400000 +2089 1900 0.400000 +2089 1904 0.400000 +2089 1919 0.400000 +2089 2020 0.400000 +2089 2037 0.400000 +2089 2078 0.400000 +2089 2114 0.400000 +2089 2135 0.400000 +2089 2146 0.400000 +2089 2181 0.400000 +2089 2442 0.400000 +2089 2447 0.400000 +2089 2469 0.400000 +2089 2550 0.400000 +2089 2564 0.400000 +2089 2613 0.400000 +2089 2688 0.400000 +2089 2692 0.400000 +2089 2696 0.400000 +2089 2796 0.400000 +2089 2797 0.400000 +2089 2812 0.400000 +2089 2840 0.400000 +2089 2852 0.400000 +2089 2876 0.400000 +2089 3015 0.400000 +2089 3020 0.400000 +2089 3026 0.400000 +2089 3136 0.400000 +2090 64 0.400000 +2090 99 0.400000 +2090 114 0.400000 +2090 122 0.400000 +2090 148 0.400000 +2090 175 0.400000 +2090 212 0.400000 +2090 216 0.400000 +2090 234 0.400000 +2090 274 0.400000 +2090 313 0.400000 +2090 328 0.400000 +2090 469 0.400000 +2090 495 0.400000 +2090 499 0.400000 +2090 641 0.400000 +2090 677 0.400000 +2090 695 0.400000 +2090 697 0.400000 +2090 707 0.400000 +2090 765 0.400000 +2090 819 0.400000 +2090 852 0.400000 +2090 870 0.400000 +2090 939 0.400000 +2090 990 0.400000 +2090 1000 0.400000 +2090 1079 0.400000 +2090 1084 0.400000 +2090 1148 0.400000 +2090 1154 0.400000 +2090 1157 0.400000 +2090 1190 0.400000 +2090 1272 0.400000 +2090 1284 0.400000 +2090 1354 0.400000 +2090 1359 0.400000 +2090 1395 0.400000 +2090 1481 0.400000 +2090 1489 0.400000 +2090 1636 0.400000 +2090 1645 0.400000 +2090 1658 0.400000 +2090 1762 0.400000 +2090 1768 0.400000 +2090 1847 0.400000 +2090 1870 0.400000 +2090 1964 0.400000 +2090 2061 0.400000 +2090 2062 0.400000 +2090 2102 0.400000 +2090 2167 0.400000 +2090 2280 0.400000 +2090 2372 0.400000 +2090 2426 0.400000 +2090 2481 0.400000 +2090 2510 0.400000 +2090 2529 0.400000 +2090 2548 0.400000 +2090 2560 0.400000 +2090 2568 0.400000 +2090 2607 0.400000 +2090 2654 0.400000 +2090 2683 0.400000 +2090 2708 0.400000 +2090 2740 0.400000 +2090 2825 0.400000 +2090 2852 0.400000 +2090 2925 0.400000 +2090 3040 0.400000 +2090 3061 0.400000 +2090 3069 0.400000 +2090 3074 0.400000 +2091 2 0.400000 +2091 17 0.400000 +2091 42 0.400000 +2091 79 0.400000 +2091 103 0.400000 +2091 240 0.400000 +2091 260 0.400000 +2091 279 0.400000 +2091 386 0.400000 +2091 414 0.400000 +2091 527 0.400000 +2091 629 0.400000 +2091 687 0.400000 +2091 720 0.400000 +2091 747 0.400000 +2091 785 0.400000 +2091 891 0.400000 +2091 1066 0.400000 +2091 1075 0.400000 +2091 1158 0.400000 +2091 1220 0.400000 +2091 1259 0.400000 +2091 1267 0.400000 +2091 1283 0.400000 +2091 1355 0.400000 +2091 1388 0.400000 +2091 1423 0.400000 +2091 1459 0.400000 +2091 1546 0.400000 +2091 1557 0.400000 +2091 1560 0.400000 +2091 1592 0.400000 +2091 1702 0.400000 +2091 1735 0.400000 +2091 1787 0.400000 +2091 1805 0.400000 +2091 1826 0.400000 +2091 1872 0.400000 +2091 2119 0.400000 +2091 2130 0.400000 +2091 2205 0.400000 +2091 2208 0.400000 +2091 2212 0.400000 +2091 2399 0.400000 +2091 2433 0.400000 +2091 2450 0.400000 +2091 2468 0.400000 +2091 2489 0.400000 +2091 2509 0.400000 +2091 2544 0.400000 +2091 2623 0.400000 +2091 2636 0.400000 +2091 2646 0.400000 +2091 2774 0.400000 +2091 2798 0.400000 +2091 2876 0.400000 +2091 2897 0.400000 +2091 2950 0.400000 +2091 3044 0.400000 +2091 3060 0.400000 +2091 3137 0.400000 +2092 9 0.400000 +2092 96 0.400000 +2092 98 0.400000 +2092 198 0.400000 +2092 217 0.400000 +2092 235 0.400000 +2092 248 0.400000 +2092 271 0.400000 +2092 290 0.400000 +2092 388 0.400000 +2092 394 0.400000 +2092 413 0.400000 +2092 455 0.400000 +2092 491 0.400000 +2092 516 0.400000 +2092 605 0.400000 +2092 644 0.400000 +2092 677 0.400000 +2092 711 0.400000 +2092 768 0.400000 +2092 769 0.400000 +2092 806 0.400000 +2092 829 0.400000 +2092 1027 0.400000 +2092 1086 0.400000 +2092 1116 0.400000 +2092 1288 0.400000 +2092 1304 0.400000 +2092 1316 0.400000 +2092 1493 0.400000 +2092 1498 0.400000 +2092 1510 0.400000 +2092 1527 0.400000 +2092 1608 0.400000 +2092 1640 0.400000 +2092 1676 0.400000 +2092 1696 0.400000 +2092 1708 0.400000 +2092 1714 0.400000 +2092 1809 0.400000 +2092 1874 0.400000 +2092 1966 0.400000 +2092 2053 0.400000 +2092 2099 0.400000 +2092 2184 0.400000 +2092 2204 0.400000 +2092 2326 0.400000 +2092 2330 0.400000 +2092 2343 0.400000 +2092 2379 0.400000 +2092 2420 0.400000 +2092 2422 0.400000 +2092 2433 0.400000 +2092 2434 0.400000 +2092 2490 0.400000 +2092 2511 0.400000 +2092 2551 0.400000 +2092 2689 0.400000 +2092 2712 0.400000 +2092 2744 0.400000 +2092 2784 0.400000 +2092 2806 0.400000 +2092 2816 0.400000 +2092 2947 0.400000 +2092 3003 0.400000 +2092 3016 0.400000 +2092 3111 0.400000 +2092 3145 0.400000 +2092 3152 0.400000 +2093 171 0.400000 +2093 177 0.400000 +2093 223 0.400000 +2093 248 0.400000 +2093 270 0.400000 +2093 306 0.400000 +2093 444 0.400000 +2093 459 0.400000 +2093 481 0.400000 +2093 486 0.400000 +2093 507 0.400000 +2093 531 0.400000 +2093 592 0.400000 +2093 611 0.400000 +2093 612 0.400000 +2093 724 0.400000 +2093 747 0.400000 +2093 864 0.400000 +2093 899 0.400000 +2093 913 0.400000 +2093 936 0.400000 +2093 1010 0.400000 +2093 1030 0.400000 +2093 1280 0.400000 +2093 1343 0.400000 +2093 1372 0.400000 +2093 1393 0.400000 +2093 1406 0.400000 +2093 1421 0.400000 +2093 1744 0.400000 +2093 1797 0.400000 +2093 1827 0.400000 +2093 1870 0.400000 +2093 1935 0.400000 +2093 2033 0.400000 +2093 2184 0.400000 +2093 2205 0.400000 +2093 2229 0.400000 +2093 2249 0.400000 +2093 2312 0.400000 +2093 2370 0.400000 +2093 2404 0.400000 +2093 2441 0.400000 +2093 2509 0.400000 +2093 2588 0.400000 +2093 2589 0.400000 +2093 2636 0.400000 +2093 2752 0.400000 +2093 2859 0.400000 +2093 2946 0.400000 +2093 3081 0.400000 +2093 3105 0.400000 +2093 3117 0.400000 +2093 3195 0.400000 +2094 13 0.400000 +2094 49 0.400000 +2094 67 0.400000 +2094 142 0.400000 +2094 186 0.400000 +2094 273 0.400000 +2094 331 0.400000 +2094 398 0.400000 +2094 403 0.400000 +2094 430 0.400000 +2094 493 0.400000 +2094 503 0.400000 +2094 514 0.400000 +2094 529 0.400000 +2094 559 0.400000 +2094 589 0.400000 +2094 626 0.400000 +2094 659 0.400000 +2094 742 0.400000 +2094 864 0.400000 +2094 968 0.400000 +2094 978 0.400000 +2094 994 0.400000 +2094 1039 0.400000 +2094 1141 0.400000 +2094 1168 0.400000 +2094 1216 0.400000 +2094 1236 0.400000 +2094 1288 0.400000 +2094 1298 0.400000 +2094 1325 0.400000 +2094 1345 0.400000 +2094 1346 0.400000 +2094 1349 0.400000 +2094 1354 0.400000 +2094 1367 0.400000 +2094 1422 0.400000 +2094 1457 0.400000 +2094 1464 0.400000 +2094 1488 0.400000 +2094 1551 0.400000 +2094 1609 0.400000 +2094 1618 0.400000 +2094 1649 0.400000 +2094 1822 0.400000 +2094 1831 0.400000 +2094 1853 0.400000 +2094 1912 0.400000 +2094 1923 0.400000 +2094 1932 0.400000 +2094 2061 0.400000 +2094 2072 0.400000 +2094 2192 0.400000 +2094 2197 0.400000 +2094 2234 0.400000 +2094 2279 0.400000 +2094 2294 0.400000 +2094 2371 0.400000 +2094 2503 0.400000 +2094 2529 0.400000 +2094 2530 0.400000 +2094 2566 0.400000 +2094 2613 0.400000 +2094 2641 0.400000 +2094 2657 0.400000 +2094 2660 0.400000 +2094 2883 0.400000 +2094 2910 0.400000 +2094 2973 0.400000 +2094 3002 0.400000 +2094 3031 0.400000 +2094 3085 0.400000 +2095 3 0.400000 +2095 15 0.400000 +2095 23 0.400000 +2095 34 0.400000 +2095 56 0.400000 +2095 69 0.400000 +2095 88 0.400000 +2095 112 0.400000 +2095 164 0.400000 +2095 318 0.400000 +2095 398 0.400000 +2095 430 0.400000 +2095 439 0.400000 +2095 507 0.400000 +2095 572 0.400000 +2095 581 0.400000 +2095 640 0.400000 +2095 650 0.400000 +2095 651 0.400000 +2095 714 0.400000 +2095 743 0.400000 +2095 762 0.400000 +2095 776 0.400000 +2095 831 0.400000 +2095 842 0.400000 +2095 844 0.400000 +2095 857 0.400000 +2095 889 0.400000 +2095 1014 0.400000 +2095 1101 0.400000 +2095 1292 0.400000 +2095 1315 0.400000 +2095 1468 0.400000 +2095 1512 0.400000 +2095 1538 0.400000 +2095 1583 0.400000 +2095 1603 0.400000 +2095 1678 0.400000 +2095 1680 0.400000 +2095 1698 0.400000 +2095 1700 0.400000 +2095 1814 0.400000 +2095 1863 0.400000 +2095 1895 0.400000 +2095 1921 0.400000 +2095 2049 0.400000 +2095 2127 0.400000 +2095 2143 0.400000 +2095 2218 0.400000 +2095 2344 0.400000 +2095 2345 0.400000 +2095 2402 0.400000 +2095 2419 0.400000 +2095 2428 0.400000 +2095 2476 0.400000 +2095 2487 0.400000 +2095 2553 0.400000 +2095 2567 0.400000 +2095 2576 0.400000 +2095 2635 0.400000 +2095 2719 0.400000 +2095 2741 0.400000 +2095 2789 0.400000 +2095 2800 0.400000 +2095 2803 0.400000 +2095 2899 0.400000 +2095 2904 0.400000 +2095 2961 0.400000 +2095 3105 0.400000 +2095 3115 0.400000 +2095 3156 0.400000 +2095 3178 0.400000 +2095 3197 0.400000 +2096 92 0.400000 +2096 107 0.400000 +2096 168 0.400000 +2096 247 0.400000 +2096 325 0.400000 +2096 343 0.400000 +2096 369 0.400000 +2096 420 0.400000 +2096 549 0.400000 +2096 556 0.400000 +2096 562 0.400000 +2096 569 0.400000 +2096 575 0.400000 +2096 604 0.400000 +2096 671 0.400000 +2096 708 0.400000 +2096 719 0.400000 +2096 729 0.400000 +2096 829 0.400000 +2096 873 0.400000 +2096 883 0.400000 +2096 906 0.400000 +2096 932 0.400000 +2096 969 0.400000 +2096 979 0.400000 +2096 981 0.400000 +2096 1008 0.400000 +2096 1011 0.400000 +2096 1029 0.400000 +2096 1056 0.400000 +2096 1133 0.400000 +2096 1155 0.400000 +2096 1196 0.400000 +2096 1202 0.400000 +2096 1331 0.400000 +2096 1412 0.400000 +2096 1510 0.400000 +2096 1524 0.400000 +2096 1572 0.400000 +2096 1601 0.400000 +2096 1604 0.400000 +2096 1653 0.400000 +2096 1671 0.400000 +2096 1699 0.400000 +2096 1746 0.400000 +2096 1807 0.400000 +2096 1817 0.400000 +2096 1825 0.400000 +2096 1944 0.400000 +2096 1971 0.400000 +2096 2035 0.400000 +2096 2099 0.400000 +2096 2132 0.400000 +2096 2146 0.400000 +2096 2170 0.400000 +2096 2181 0.400000 +2096 2255 0.400000 +2096 2258 0.400000 +2096 2306 0.400000 +2096 2308 0.400000 +2096 2691 0.400000 +2096 2734 0.400000 +2096 2837 0.400000 +2096 2847 0.400000 +2096 2867 0.400000 +2096 2897 0.400000 +2096 3001 0.400000 +2096 3013 0.400000 +2096 3090 0.400000 +2096 3103 0.400000 +2096 3110 0.400000 +2097 138 0.400000 +2097 175 0.400000 +2097 192 0.400000 +2097 231 0.400000 +2097 242 0.400000 +2097 318 0.400000 +2097 321 0.400000 +2097 386 0.400000 +2097 797 0.400000 +2097 856 0.400000 +2097 896 0.400000 +2097 907 0.400000 +2097 920 0.400000 +2097 1007 0.400000 +2097 1117 0.400000 +2097 1126 0.400000 +2097 1256 0.400000 +2097 1307 0.400000 +2097 1311 0.400000 +2097 1334 0.400000 +2097 1409 0.400000 +2097 1410 0.400000 +2097 1414 0.400000 +2097 1523 0.400000 +2097 1549 0.400000 +2097 1588 0.400000 +2097 1599 0.400000 +2097 1648 0.400000 +2097 1730 0.400000 +2097 1769 0.400000 +2097 1794 0.400000 +2097 1826 0.400000 +2097 1883 0.400000 +2097 1988 0.400000 +2097 2005 0.400000 +2097 2227 0.400000 +2097 2230 0.400000 +2097 2232 0.400000 +2097 2254 0.400000 +2097 2267 0.400000 +2097 2320 0.400000 +2097 2321 0.400000 +2097 2353 0.400000 +2097 2363 0.400000 +2097 2385 0.400000 +2097 2413 0.400000 +2097 2415 0.400000 +2097 2458 0.400000 +2097 2480 0.400000 +2097 2562 0.400000 +2097 2593 0.400000 +2097 2604 0.400000 +2097 2775 0.400000 +2097 2810 0.400000 +2097 2834 0.400000 +2097 2856 0.400000 +2097 2948 0.400000 +2097 3109 0.400000 +2097 3126 0.400000 +2097 3192 0.400000 +2098 49 0.400000 +2098 79 0.400000 +2098 107 0.400000 +2098 166 0.400000 +2098 194 0.400000 +2098 232 0.400000 +2098 269 0.400000 +2098 272 0.400000 +2098 317 0.400000 +2098 353 0.400000 +2098 366 0.400000 +2098 404 0.400000 +2098 484 0.400000 +2098 495 0.400000 +2098 555 0.400000 +2098 592 0.400000 +2098 634 0.400000 +2098 683 0.400000 +2098 698 0.400000 +2098 766 0.400000 +2098 784 0.400000 +2098 840 0.400000 +2098 872 0.400000 +2098 874 0.400000 +2098 935 0.400000 +2098 994 0.400000 +2098 1018 0.400000 +2098 1076 0.400000 +2098 1131 0.400000 +2098 1154 0.400000 +2098 1338 0.400000 +2098 1471 0.400000 +2098 1557 0.400000 +2098 1562 0.400000 +2098 1604 0.400000 +2098 1673 0.400000 +2098 1701 0.400000 +2098 1723 0.400000 +2098 1762 0.400000 +2098 1878 0.400000 +2098 1899 0.400000 +2098 2014 0.400000 +2098 2100 0.400000 +2098 2149 0.400000 +2098 2161 0.400000 +2098 2190 0.400000 +2098 2232 0.400000 +2098 2327 0.400000 +2098 2343 0.400000 +2098 2358 0.400000 +2098 2389 0.400000 +2098 2477 0.400000 +2098 2549 0.400000 +2098 2572 0.400000 +2098 2643 0.400000 +2098 2684 0.400000 +2098 2803 0.400000 +2098 2841 0.400000 +2098 2891 0.400000 +2098 2900 0.400000 +2098 2931 0.400000 +2098 2943 0.400000 +2098 2996 0.400000 +2098 3004 0.400000 +2098 3065 0.400000 +2098 3083 0.400000 +2098 3183 0.400000 +2098 3192 0.400000 +2099 25 0.400000 +2099 53 0.400000 +2099 76 0.400000 +2099 166 0.400000 +2099 179 0.400000 +2099 253 0.400000 +2099 267 0.400000 +2099 337 0.400000 +2099 425 0.400000 +2099 471 0.400000 +2099 491 0.400000 +2099 506 0.400000 +2099 607 0.400000 +2099 726 0.400000 +2099 827 0.400000 +2099 880 0.400000 +2099 1018 0.400000 +2099 1047 0.400000 +2099 1066 0.400000 +2099 1104 0.400000 +2099 1147 0.400000 +2099 1150 0.400000 +2099 1156 0.400000 +2099 1159 0.400000 +2099 1292 0.400000 +2099 1300 0.400000 +2099 1309 0.400000 +2099 1366 0.400000 +2099 1423 0.400000 +2099 1531 0.400000 +2099 1621 0.400000 +2099 1661 0.400000 +2099 1714 0.400000 +2099 1741 0.400000 +2099 1864 0.400000 +2099 2111 0.400000 +2099 2153 0.400000 +2099 2221 0.400000 +2099 2258 0.400000 +2099 2354 0.400000 +2099 2419 0.400000 +2099 2441 0.400000 +2099 2455 0.400000 +2099 2500 0.400000 +2099 2514 0.400000 +2099 2528 0.400000 +2099 2537 0.400000 +2099 2565 0.400000 +2099 2669 0.400000 +2099 2712 0.400000 +2099 2720 0.400000 +2099 2737 0.400000 +2099 2741 0.400000 +2099 2759 0.400000 +2099 2799 0.400000 +2099 2884 0.400000 +2099 2914 0.400000 +2099 2982 0.400000 +2099 2993 0.400000 +2099 3036 0.400000 +2099 3064 0.400000 +2099 3147 0.400000 +2100 21 0.400000 +2100 105 0.400000 +2100 321 0.400000 +2100 332 0.400000 +2100 349 0.400000 +2100 369 0.400000 +2100 387 0.400000 +2100 444 0.400000 +2100 462 0.400000 +2100 513 0.400000 +2100 547 0.400000 +2100 687 0.400000 +2100 743 0.400000 +2100 756 0.400000 +2100 790 0.400000 +2100 793 0.400000 +2100 947 0.400000 +2100 948 0.400000 +2100 987 0.400000 +2100 1041 0.400000 +2100 1270 0.400000 +2100 1317 0.400000 +2100 1318 0.400000 +2100 1341 0.400000 +2100 1386 0.400000 +2100 1388 0.400000 +2100 1429 0.400000 +2100 1448 0.400000 +2100 1634 0.400000 +2100 1742 0.400000 +2100 1891 0.400000 +2100 1942 0.400000 +2100 1996 0.400000 +2100 2003 0.400000 +2100 2032 0.400000 +2100 2034 0.400000 +2100 2118 0.400000 +2100 2194 0.400000 +2100 2355 0.400000 +2100 2438 0.400000 +2100 2499 0.400000 +2100 2588 0.400000 +2100 2590 0.400000 +2100 2598 0.400000 +2100 2727 0.400000 +2100 2768 0.400000 +2100 2792 0.400000 +2100 2809 0.400000 +2100 2839 0.400000 +2100 2850 0.400000 +2100 2860 0.400000 +2100 2946 0.400000 +2100 2966 0.400000 +2100 2997 0.400000 +2100 3007 0.400000 +2100 3015 0.400000 +2100 3036 0.400000 +2100 3047 0.400000 +2100 3083 0.400000 +2101 3 0.400000 +2101 23 0.400000 +2101 92 0.400000 +2101 95 0.400000 +2101 181 0.400000 +2101 221 0.400000 +2101 243 0.400000 +2101 325 0.400000 +2101 372 0.400000 +2101 615 0.400000 +2101 638 0.400000 +2101 645 0.400000 +2101 646 0.400000 +2101 672 0.400000 +2101 695 0.400000 +2101 700 0.400000 +2101 734 0.400000 +2101 740 0.400000 +2101 753 0.400000 +2101 756 0.400000 +2101 822 0.400000 +2101 883 0.400000 +2101 954 0.400000 +2101 1013 0.400000 +2101 1124 0.400000 +2101 1222 0.400000 +2101 1237 0.400000 +2101 1547 0.400000 +2101 1564 0.400000 +2101 1620 0.400000 +2101 1670 0.400000 +2101 1775 0.400000 +2101 1785 0.400000 +2101 1794 0.400000 +2101 1795 0.400000 +2101 1964 0.400000 +2101 2130 0.400000 +2101 2146 0.400000 +2101 2184 0.400000 +2101 2250 0.400000 +2101 2257 0.400000 +2101 2270 0.400000 +2101 2303 0.400000 +2101 2331 0.400000 +2101 2414 0.400000 +2101 2456 0.400000 +2101 2473 0.400000 +2101 2494 0.400000 +2101 2562 0.400000 +2101 2590 0.400000 +2101 2616 0.400000 +2101 2742 0.400000 +2101 2795 0.400000 +2101 2905 0.400000 +2101 3034 0.400000 +2101 3065 0.400000 +2101 3086 0.400000 +2101 3137 0.400000 +2101 3147 0.400000 +2101 3158 0.400000 +2102 109 0.400000 +2102 131 0.400000 +2102 174 0.400000 +2102 230 0.400000 +2102 243 0.400000 +2102 281 0.400000 +2102 308 0.400000 +2102 355 0.400000 +2102 383 0.400000 +2102 428 0.400000 +2102 490 0.400000 +2102 591 0.400000 +2102 616 0.400000 +2102 651 0.400000 +2102 719 0.400000 +2102 725 0.400000 +2102 729 0.400000 +2102 740 0.400000 +2102 788 0.400000 +2102 802 0.400000 +2102 949 0.400000 +2102 964 0.400000 +2102 986 0.400000 +2102 1007 0.400000 +2102 1066 0.400000 +2102 1118 0.400000 +2102 1127 0.400000 +2102 1128 0.400000 +2102 1213 0.400000 +2102 1267 0.400000 +2102 1273 0.400000 +2102 1280 0.400000 +2102 1301 0.400000 +2102 1340 0.400000 +2102 1452 0.400000 +2102 1460 0.400000 +2102 1462 0.400000 +2102 1467 0.400000 +2102 1500 0.400000 +2102 1578 0.400000 +2102 1581 0.400000 +2102 1601 0.400000 +2102 1643 0.400000 +2102 1675 0.400000 +2102 1707 0.400000 +2102 1798 0.400000 +2102 1934 0.400000 +2102 1960 0.400000 +2102 1996 0.400000 +2102 2040 0.400000 +2102 2054 0.400000 +2102 2058 0.400000 +2102 2082 0.400000 +2102 2109 0.400000 +2102 2138 0.400000 +2102 2147 0.400000 +2102 2349 0.400000 +2102 2419 0.400000 +2102 2473 0.400000 +2102 2512 0.400000 +2102 2615 0.400000 +2102 2636 0.400000 +2102 2664 0.400000 +2102 2677 0.400000 +2102 2752 0.400000 +2102 2796 0.400000 +2102 2825 0.400000 +2102 2848 0.400000 +2102 2969 0.400000 +2102 2983 0.400000 +2102 3004 0.400000 +2102 3014 0.400000 +2102 3095 0.400000 +2102 3105 0.400000 +2103 5 0.400000 +2103 100 0.400000 +2103 101 0.400000 +2103 151 0.400000 +2103 170 0.400000 +2103 220 0.400000 +2103 335 0.400000 +2103 349 0.400000 +2103 406 0.400000 +2103 417 0.400000 +2103 423 0.400000 +2103 442 0.400000 +2103 561 0.400000 +2103 576 0.400000 +2103 590 0.400000 +2103 644 0.400000 +2103 730 0.400000 +2103 733 0.400000 +2103 754 0.400000 +2103 773 0.400000 +2103 807 0.400000 +2103 886 0.400000 +2103 975 0.400000 +2103 1000 0.400000 +2103 1121 0.400000 +2103 1158 0.400000 +2103 1305 0.400000 +2103 1350 0.400000 +2103 1380 0.400000 +2103 1577 0.400000 +2103 1599 0.400000 +2103 1616 0.400000 +2103 1653 0.400000 +2103 1752 0.400000 +2103 1756 0.400000 +2103 1764 0.400000 +2103 1945 0.400000 +2103 1974 0.400000 +2103 1986 0.400000 +2103 2047 0.400000 +2103 2053 0.400000 +2103 2119 0.400000 +2103 2165 0.400000 +2103 2244 0.400000 +2103 2252 0.400000 +2103 2257 0.400000 +2103 2282 0.400000 +2103 2299 0.400000 +2103 2302 0.400000 +2103 2379 0.400000 +2103 2464 0.400000 +2103 2495 0.400000 +2103 2540 0.400000 +2103 2710 0.400000 +2103 2726 0.400000 +2103 2750 0.400000 +2103 2860 0.400000 +2103 3009 0.400000 +2103 3071 0.400000 +2103 3087 0.400000 +2103 3160 0.400000 +2103 3195 0.400000 +2104 140 0.400000 +2104 159 0.400000 +2104 171 0.400000 +2104 286 0.400000 +2104 407 0.400000 +2104 416 0.400000 +2104 503 0.400000 +2104 504 0.400000 +2104 661 0.400000 +2104 674 0.400000 +2104 779 0.400000 +2104 825 0.400000 +2104 957 0.400000 +2104 1018 0.400000 +2104 1019 0.400000 +2104 1035 0.400000 +2104 1117 0.400000 +2104 1268 0.400000 +2104 1273 0.400000 +2104 1289 0.400000 +2104 1328 0.400000 +2104 1346 0.400000 +2104 1347 0.400000 +2104 1458 0.400000 +2104 1483 0.400000 +2104 1504 0.400000 +2104 1521 0.400000 +2104 1528 0.400000 +2104 1541 0.400000 +2104 1619 0.400000 +2104 1626 0.400000 +2104 1633 0.400000 +2104 1687 0.400000 +2104 1734 0.400000 +2104 1745 0.400000 +2104 1765 0.400000 +2104 1766 0.400000 +2104 1846 0.400000 +2104 1887 0.400000 +2104 1915 0.400000 +2104 2148 0.400000 +2104 2291 0.400000 +2104 2315 0.400000 +2104 2319 0.400000 +2104 2327 0.400000 +2104 2352 0.400000 +2104 2434 0.400000 +2104 2479 0.400000 +2104 2535 0.400000 +2104 2547 0.400000 +2104 2567 0.400000 +2104 2577 0.400000 +2104 2596 0.400000 +2104 2608 0.400000 +2104 2620 0.400000 +2104 2634 0.400000 +2104 2656 0.400000 +2104 2689 0.400000 +2104 2760 0.400000 +2104 2790 0.400000 +2104 2798 0.400000 +2104 2902 0.400000 +2104 3002 0.400000 +2104 3014 0.400000 +2104 3083 0.400000 +2104 3102 0.400000 +2104 3106 0.400000 +2104 3192 0.400000 +2105 2 0.400000 +2105 119 0.400000 +2105 165 0.400000 +2105 197 0.400000 +2105 211 0.400000 +2105 416 0.400000 +2105 446 0.400000 +2105 638 0.400000 +2105 727 0.400000 +2105 733 0.400000 +2105 859 0.400000 +2105 922 0.400000 +2105 927 0.400000 +2105 970 0.400000 +2105 991 0.400000 +2105 1008 0.400000 +2105 1047 0.400000 +2105 1093 0.400000 +2105 1119 0.400000 +2105 1312 0.400000 +2105 1380 0.400000 +2105 1395 0.400000 +2105 1443 0.400000 +2105 1483 0.400000 +2105 1514 0.400000 +2105 1609 0.400000 +2105 1712 0.400000 +2105 1753 0.400000 +2105 1758 0.400000 +2105 1797 0.400000 +2105 1838 0.400000 +2105 1917 0.400000 +2105 2040 0.400000 +2105 2065 0.400000 +2105 2067 0.400000 +2105 2138 0.400000 +2105 2225 0.400000 +2105 2238 0.400000 +2105 2325 0.400000 +2105 2494 0.400000 +2105 2726 0.400000 +2105 2888 0.400000 +2105 2897 0.400000 +2105 2942 0.400000 +2105 3022 0.400000 +2105 3038 0.400000 +2105 3065 0.400000 +2105 3088 0.400000 +2105 3098 0.400000 +2105 3104 0.400000 +2105 3136 0.400000 +2105 3143 0.400000 +2106 56 0.400000 +2106 247 0.400000 +2106 258 0.400000 +2106 276 0.400000 +2106 281 0.400000 +2106 362 0.400000 +2106 519 0.400000 +2106 525 0.400000 +2106 607 0.400000 +2106 699 0.400000 +2106 871 0.400000 +2106 924 0.400000 +2106 927 0.400000 +2106 1003 0.400000 +2106 1065 0.400000 +2106 1076 0.400000 +2106 1132 0.400000 +2106 1214 0.400000 +2106 1260 0.400000 +2106 1268 0.400000 +2106 1298 0.400000 +2106 1302 0.400000 +2106 1437 0.400000 +2106 1444 0.400000 +2106 1450 0.400000 +2106 1562 0.400000 +2106 1603 0.400000 +2106 1765 0.400000 +2106 1803 0.400000 +2106 1826 0.400000 +2106 1863 0.400000 +2106 1872 0.400000 +2106 1898 0.400000 +2106 1949 0.400000 +2106 1953 0.400000 +2106 2163 0.400000 +2106 2170 0.400000 +2106 2288 0.400000 +2106 2314 0.400000 +2106 2353 0.400000 +2106 2371 0.400000 +2106 2378 0.400000 +2106 2515 0.400000 +2106 2541 0.400000 +2106 2544 0.400000 +2106 2585 0.400000 +2106 2586 0.400000 +2106 2595 0.400000 +2106 2619 0.400000 +2106 2628 0.400000 +2106 2837 0.400000 +2106 2922 0.400000 +2106 2957 0.400000 +2106 3012 0.400000 +2106 3016 0.400000 +2106 3019 0.400000 +2106 3043 0.400000 +2106 3078 0.400000 +2106 3093 0.400000 +2106 3122 0.400000 +2106 3151 0.400000 +2107 72 0.400000 +2107 118 0.400000 +2107 125 0.400000 +2107 135 0.400000 +2107 146 0.400000 +2107 163 0.400000 +2107 241 0.400000 +2107 291 0.400000 +2107 296 0.400000 +2107 372 0.400000 +2107 380 0.400000 +2107 410 0.400000 +2107 460 0.400000 +2107 461 0.400000 +2107 564 0.400000 +2107 603 0.400000 +2107 644 0.400000 +2107 665 0.400000 +2107 707 0.400000 +2107 762 0.400000 +2107 765 0.400000 +2107 811 0.400000 +2107 814 0.400000 +2107 820 0.400000 +2107 840 0.400000 +2107 850 0.400000 +2107 854 0.400000 +2107 967 0.400000 +2107 982 0.400000 +2107 998 0.400000 +2107 1022 0.400000 +2107 1137 0.400000 +2107 1174 0.400000 +2107 1269 0.400000 +2107 1273 0.400000 +2107 1305 0.400000 +2107 1342 0.400000 +2107 1538 0.400000 +2107 1553 0.400000 +2107 1631 0.400000 +2107 1742 0.400000 +2107 1782 0.400000 +2107 1817 0.400000 +2107 1889 0.400000 +2107 1913 0.400000 +2107 1937 0.400000 +2107 1938 0.400000 +2107 1988 0.400000 +2107 2038 0.400000 +2107 2088 0.400000 +2107 2105 0.400000 +2107 2115 0.400000 +2107 2176 0.400000 +2107 2206 0.400000 +2107 2267 0.400000 +2107 2318 0.400000 +2107 2348 0.400000 +2107 2355 0.400000 +2107 2376 0.400000 +2107 2401 0.400000 +2107 2439 0.400000 +2107 2466 0.400000 +2107 2490 0.400000 +2107 2518 0.400000 +2107 2567 0.400000 +2107 2579 0.400000 +2107 2591 0.400000 +2107 2603 0.400000 +2107 2667 0.400000 +2107 2669 0.400000 +2107 2828 0.400000 +2107 2834 0.400000 +2107 2876 0.400000 +2107 2901 0.400000 +2107 2948 0.400000 +2107 2973 0.400000 +2107 2988 0.400000 +2107 3032 0.400000 +2107 3116 0.400000 +2107 3130 0.400000 +2107 3135 0.400000 +2108 88 0.400000 +2108 127 0.400000 +2108 157 0.400000 +2108 158 0.400000 +2108 203 0.400000 +2108 221 0.400000 +2108 282 0.400000 +2108 298 0.400000 +2108 333 0.400000 +2108 339 0.400000 +2108 425 0.400000 +2108 490 0.400000 +2108 756 0.400000 +2108 759 0.400000 +2108 783 0.400000 +2108 807 0.400000 +2108 808 0.400000 +2108 926 0.400000 +2108 969 0.400000 +2108 1084 0.400000 +2108 1093 0.400000 +2108 1124 0.400000 +2108 1217 0.400000 +2108 1239 0.400000 +2108 1250 0.400000 +2108 1291 0.400000 +2108 1381 0.400000 +2108 1433 0.400000 +2108 1438 0.400000 +2108 1451 0.400000 +2108 1458 0.400000 +2108 1583 0.400000 +2108 1601 0.400000 +2108 1682 0.400000 +2108 1798 0.400000 +2108 1813 0.400000 +2108 1821 0.400000 +2108 1841 0.400000 +2108 1872 0.400000 +2108 1879 0.400000 +2108 1965 0.400000 +2108 1995 0.400000 +2108 2029 0.400000 +2108 2031 0.400000 +2108 2103 0.400000 +2108 2170 0.400000 +2108 2286 0.400000 +2108 2303 0.400000 +2108 2327 0.400000 +2108 2342 0.400000 +2108 2353 0.400000 +2108 2472 0.400000 +2108 2504 0.400000 +2108 2535 0.400000 +2108 2685 0.400000 +2108 2703 0.400000 +2108 2795 0.400000 +2108 2869 0.400000 +2108 2871 0.400000 +2108 2876 0.400000 +2108 2955 0.400000 +2108 2983 0.400000 +2108 3037 0.400000 +2108 3089 0.400000 +2108 3144 0.400000 +2108 3183 0.400000 +2109 8 0.400000 +2109 37 0.400000 +2109 55 0.400000 +2109 65 0.400000 +2109 119 0.400000 +2109 176 0.400000 +2109 240 0.400000 +2109 250 0.400000 +2109 339 0.400000 +2109 357 0.400000 +2109 404 0.400000 +2109 496 0.400000 +2109 505 0.400000 +2109 507 0.400000 +2109 510 0.400000 +2109 550 0.400000 +2109 583 0.400000 +2109 626 0.400000 +2109 808 0.400000 +2109 814 0.400000 +2109 845 0.400000 +2109 849 0.400000 +2109 909 0.400000 +2109 1021 0.400000 +2109 1022 0.400000 +2109 1038 0.400000 +2109 1065 0.400000 +2109 1067 0.400000 +2109 1076 0.400000 +2109 1081 0.400000 +2109 1093 0.400000 +2109 1193 0.400000 +2109 1214 0.400000 +2109 1266 0.400000 +2109 1288 0.400000 +2109 1299 0.400000 +2109 1393 0.400000 +2109 1405 0.400000 +2109 1420 0.400000 +2109 1424 0.400000 +2109 1428 0.400000 +2109 1506 0.400000 +2109 1562 0.400000 +2109 1602 0.400000 +2109 1636 0.400000 +2109 1639 0.400000 +2109 1652 0.400000 +2109 1723 0.400000 +2109 1798 0.400000 +2109 1815 0.400000 +2109 1828 0.400000 +2109 1838 0.400000 +2109 1880 0.400000 +2109 1886 0.400000 +2109 1936 0.400000 +2109 1993 0.400000 +2109 2043 0.400000 +2109 2064 0.400000 +2109 2181 0.400000 +2109 2189 0.400000 +2109 2219 0.400000 +2109 2238 0.400000 +2109 2247 0.400000 +2109 2390 0.400000 +2109 2430 0.400000 +2109 2478 0.400000 +2109 2586 0.400000 +2109 2666 0.400000 +2109 2710 0.400000 +2109 2719 0.400000 +2109 2728 0.400000 +2109 2746 0.400000 +2109 2883 0.400000 +2109 2925 0.400000 +2109 2953 0.400000 +2109 2958 0.400000 +2109 3007 0.400000 +2109 3032 0.400000 +2109 3075 0.400000 +2109 3115 0.400000 +2109 3167 0.400000 +2109 3171 0.400000 +2109 3174 0.400000 +2110 119 0.400000 +2110 148 0.400000 +2110 223 0.400000 +2110 244 0.400000 +2110 279 0.400000 +2110 294 0.400000 +2110 334 0.400000 +2110 373 0.400000 +2110 465 0.400000 +2110 487 0.400000 +2110 558 0.400000 +2110 688 0.400000 +2110 692 0.400000 +2110 702 0.400000 +2110 705 0.400000 +2110 708 0.400000 +2110 729 0.400000 +2110 771 0.400000 +2110 796 0.400000 +2110 841 0.400000 +2110 935 0.400000 +2110 953 0.400000 +2110 1010 0.400000 +2110 1015 0.400000 +2110 1057 0.400000 +2110 1061 0.400000 +2110 1139 0.400000 +2110 1457 0.400000 +2110 1512 0.400000 +2110 1528 0.400000 +2110 1606 0.400000 +2110 1729 0.400000 +2110 1789 0.400000 +2110 1896 0.400000 +2110 1912 0.400000 +2110 1940 0.400000 +2110 1953 0.400000 +2110 1955 0.400000 +2110 1991 0.400000 +2110 2039 0.400000 +2110 2078 0.400000 +2110 2181 0.400000 +2110 2206 0.400000 +2110 2312 0.400000 +2110 2340 0.400000 +2110 2380 0.400000 +2110 2386 0.400000 +2110 2404 0.400000 +2110 2461 0.400000 +2110 2547 0.400000 +2110 2684 0.400000 +2110 2692 0.400000 +2110 2721 0.400000 +2110 2833 0.400000 +2110 2905 0.400000 +2110 2915 0.400000 +2110 2936 0.400000 +2110 2973 0.400000 +2110 3078 0.400000 +2110 3168 0.400000 +2111 32 0.400000 +2111 51 0.400000 +2111 189 0.400000 +2111 206 0.400000 +2111 284 0.400000 +2111 300 0.400000 +2111 310 0.400000 +2111 412 0.400000 +2111 420 0.400000 +2111 470 0.400000 +2111 515 0.400000 +2111 592 0.400000 +2111 678 0.400000 +2111 796 0.400000 +2111 825 0.400000 +2111 892 0.400000 +2111 919 0.400000 +2111 1030 0.400000 +2111 1041 0.400000 +2111 1061 0.400000 +2111 1086 0.400000 +2111 1089 0.400000 +2111 1108 0.400000 +2111 1158 0.400000 +2111 1167 0.400000 +2111 1427 0.400000 +2111 1437 0.400000 +2111 1444 0.400000 +2111 1481 0.400000 +2111 1538 0.400000 +2111 1546 0.400000 +2111 1604 0.400000 +2111 1620 0.400000 +2111 1665 0.400000 +2111 1739 0.400000 +2111 1855 0.400000 +2111 1887 0.400000 +2111 1907 0.400000 +2111 1988 0.400000 +2111 2120 0.400000 +2111 2157 0.400000 +2111 2200 0.400000 +2111 2213 0.400000 +2111 2219 0.400000 +2111 2229 0.400000 +2111 2346 0.400000 +2111 2359 0.400000 +2111 2361 0.400000 +2111 2381 0.400000 +2111 2510 0.400000 +2111 2514 0.400000 +2111 2543 0.400000 +2111 2549 0.400000 +2111 2577 0.400000 +2111 2624 0.400000 +2111 2644 0.400000 +2111 2670 0.400000 +2111 2719 0.400000 +2111 2790 0.400000 +2111 2843 0.400000 +2111 2868 0.400000 +2111 2875 0.400000 +2111 2892 0.400000 +2111 2921 0.400000 +2111 3063 0.400000 +2111 3092 0.400000 +2111 3191 0.400000 +2112 17 0.400000 +2112 37 0.400000 +2112 51 0.400000 +2112 118 0.400000 +2112 135 0.400000 +2112 195 0.400000 +2112 206 0.400000 +2112 243 0.400000 +2112 325 0.400000 +2112 341 0.400000 +2112 356 0.400000 +2112 657 0.400000 +2112 689 0.400000 +2112 745 0.400000 +2112 782 0.400000 +2112 861 0.400000 +2112 1014 0.400000 +2112 1070 0.400000 +2112 1199 0.400000 +2112 1254 0.400000 +2112 1326 0.400000 +2112 1373 0.400000 +2112 1454 0.400000 +2112 1456 0.400000 +2112 1478 0.400000 +2112 1496 0.400000 +2112 1534 0.400000 +2112 1672 0.400000 +2112 1698 0.400000 +2112 1734 0.400000 +2112 1836 0.400000 +2112 1847 0.400000 +2112 1919 0.400000 +2112 1968 0.400000 +2112 2028 0.400000 +2112 2080 0.400000 +2112 2101 0.400000 +2112 2152 0.400000 +2112 2164 0.400000 +2112 2189 0.400000 +2112 2252 0.400000 +2112 2363 0.400000 +2112 2367 0.400000 +2112 2442 0.400000 +2112 2450 0.400000 +2112 2541 0.400000 +2112 2600 0.400000 +2112 2707 0.400000 +2112 2844 0.400000 +2112 2942 0.400000 +2112 2963 0.400000 +2112 2976 0.400000 +2112 3049 0.400000 +2112 3119 0.400000 +2112 3139 0.400000 +2112 3153 0.400000 +2112 3178 0.400000 +2112 3189 0.400000 +2113 59 0.400000 +2113 76 0.400000 +2113 108 0.400000 +2113 116 0.400000 +2113 164 0.400000 +2113 193 0.400000 +2113 212 0.400000 +2113 247 0.400000 +2113 348 0.400000 +2113 487 0.400000 +2113 503 0.400000 +2113 520 0.400000 +2113 528 0.400000 +2113 579 0.400000 +2113 592 0.400000 +2113 705 0.400000 +2113 844 0.400000 +2113 882 0.400000 +2113 932 0.400000 +2113 942 0.400000 +2113 950 0.400000 +2113 962 0.400000 +2113 1039 0.400000 +2113 1130 0.400000 +2113 1165 0.400000 +2113 1227 0.400000 +2113 1290 0.400000 +2113 1315 0.400000 +2113 1374 0.400000 +2113 1411 0.400000 +2113 1453 0.400000 +2113 1515 0.400000 +2113 1604 0.400000 +2113 1673 0.400000 +2113 1679 0.400000 +2113 1796 0.400000 +2113 1955 0.400000 +2113 1989 0.400000 +2113 2075 0.400000 +2113 2088 0.400000 +2113 2114 0.400000 +2113 2128 0.400000 +2113 2132 0.400000 +2113 2186 0.400000 +2113 2250 0.400000 +2113 2385 0.400000 +2113 2474 0.400000 +2113 2556 0.400000 +2113 2573 0.400000 +2113 2616 0.400000 +2113 2677 0.400000 +2113 2699 0.400000 +2113 2711 0.400000 +2113 2718 0.400000 +2113 2724 0.400000 +2113 2754 0.400000 +2113 2820 0.400000 +2113 2834 0.400000 +2113 2937 0.400000 +2113 2945 0.400000 +2113 2980 0.400000 +2113 3021 0.400000 +2113 3087 0.400000 +2113 3139 0.400000 +2113 3161 0.400000 +2114 54 0.400000 +2114 60 0.400000 +2114 68 0.400000 +2114 76 0.400000 +2114 165 0.400000 +2114 367 0.400000 +2114 413 0.400000 +2114 423 0.400000 +2114 558 0.400000 +2114 661 0.400000 +2114 669 0.400000 +2114 676 0.400000 +2114 680 0.400000 +2114 718 0.400000 +2114 882 0.400000 +2114 952 0.400000 +2114 1054 0.400000 +2114 1126 0.400000 +2114 1135 0.400000 +2114 1191 0.400000 +2114 1223 0.400000 +2114 1394 0.400000 +2114 1412 0.400000 +2114 1453 0.400000 +2114 1628 0.400000 +2114 1644 0.400000 +2114 1655 0.400000 +2114 1718 0.400000 +2114 1724 0.400000 +2114 1819 0.400000 +2114 1820 0.400000 +2114 1838 0.400000 +2114 1885 0.400000 +2114 1958 0.400000 +2114 1970 0.400000 +2114 2044 0.400000 +2114 2145 0.400000 +2114 2230 0.400000 +2114 2261 0.400000 +2114 2289 0.400000 +2114 2396 0.400000 +2114 2401 0.400000 +2114 2443 0.400000 +2114 2552 0.400000 +2114 2594 0.400000 +2114 2653 0.400000 +2114 2712 0.400000 +2114 2718 0.400000 +2114 2734 0.400000 +2114 2815 0.400000 +2114 2816 0.400000 +2114 3021 0.400000 +2114 3051 0.400000 +2114 3094 0.400000 +2114 3105 0.400000 +2114 3198 0.400000 +2115 38 0.400000 +2115 60 0.400000 +2115 87 0.400000 +2115 92 0.400000 +2115 99 0.400000 +2115 119 0.400000 +2115 216 0.400000 +2115 255 0.400000 +2115 266 0.400000 +2115 289 0.400000 +2115 291 0.400000 +2115 325 0.400000 +2115 364 0.400000 +2115 381 0.400000 +2115 419 0.400000 +2115 468 0.400000 +2115 518 0.400000 +2115 550 0.400000 +2115 564 0.400000 +2115 666 0.400000 +2115 734 0.400000 +2115 747 0.400000 +2115 876 0.400000 +2115 965 0.400000 +2115 980 0.400000 +2115 996 0.400000 +2115 1025 0.400000 +2115 1134 0.400000 +2115 1185 0.400000 +2115 1191 0.400000 +2115 1192 0.400000 +2115 1315 0.400000 +2115 1320 0.400000 +2115 1427 0.400000 +2115 1466 0.400000 +2115 1590 0.400000 +2115 1611 0.400000 +2115 1618 0.400000 +2115 1632 0.400000 +2115 1867 0.400000 +2115 1897 0.400000 +2115 1936 0.400000 +2115 1950 0.400000 +2115 1979 0.400000 +2115 1998 0.400000 +2115 2007 0.400000 +2115 2235 0.400000 +2115 2258 0.400000 +2115 2316 0.400000 +2115 2346 0.400000 +2115 2364 0.400000 +2115 2365 0.400000 +2115 2468 0.400000 +2115 2484 0.400000 +2115 2489 0.400000 +2115 2498 0.400000 +2115 2529 0.400000 +2115 2554 0.400000 +2115 2827 0.400000 +2115 2853 0.400000 +2115 2855 0.400000 +2115 2865 0.400000 +2115 2879 0.400000 +2115 2978 0.400000 +2115 3027 0.400000 +2115 3052 0.400000 +2115 3053 0.400000 +2115 3087 0.400000 +2115 3091 0.400000 +2115 3139 0.400000 +2115 3152 0.400000 +2115 3154 0.400000 +2115 3179 0.400000 +2116 95 0.400000 +2116 123 0.400000 +2116 156 0.400000 +2116 235 0.400000 +2116 257 0.400000 +2116 285 0.400000 +2116 289 0.400000 +2116 314 0.400000 +2116 392 0.400000 +2116 414 0.400000 +2116 428 0.400000 +2116 492 0.400000 +2116 512 0.400000 +2116 540 0.400000 +2116 568 0.400000 +2116 602 0.400000 +2116 634 0.400000 +2116 656 0.400000 +2116 694 0.400000 +2116 751 0.400000 +2116 884 0.400000 +2116 972 0.400000 +2116 1060 0.400000 +2116 1075 0.400000 +2116 1131 0.400000 +2116 1137 0.400000 +2116 1167 0.400000 +2116 1177 0.400000 +2116 1204 0.400000 +2116 1245 0.400000 +2116 1292 0.400000 +2116 1365 0.400000 +2116 1600 0.400000 +2116 1766 0.400000 +2116 1774 0.400000 +2116 1807 0.400000 +2116 1817 0.400000 +2116 1824 0.400000 +2116 1847 0.400000 +2116 1900 0.400000 +2116 1922 0.400000 +2116 2101 0.400000 +2116 2172 0.400000 +2116 2208 0.400000 +2116 2241 0.400000 +2116 2275 0.400000 +2116 2282 0.400000 +2116 2464 0.400000 +2116 2535 0.400000 +2116 2602 0.400000 +2116 2610 0.400000 +2116 2617 0.400000 +2116 2690 0.400000 +2116 2720 0.400000 +2116 2727 0.400000 +2116 2734 0.400000 +2116 2864 0.400000 +2116 2897 0.400000 +2116 2923 0.400000 +2116 2963 0.400000 +2117 3 0.400000 +2117 92 0.400000 +2117 167 0.400000 +2117 208 0.400000 +2117 387 0.400000 +2117 449 0.400000 +2117 502 0.400000 +2117 549 0.400000 +2117 612 0.400000 +2117 620 0.400000 +2117 652 0.400000 +2117 774 0.400000 +2117 816 0.400000 +2117 888 0.400000 +2117 937 0.400000 +2117 940 0.400000 +2117 945 0.400000 +2117 957 0.400000 +2117 985 0.400000 +2117 991 0.400000 +2117 1001 0.400000 +2117 1007 0.400000 +2117 1028 0.400000 +2117 1144 0.400000 +2117 1289 0.400000 +2117 1292 0.400000 +2117 1323 0.400000 +2117 1351 0.400000 +2117 1490 0.400000 +2117 1491 0.400000 +2117 1520 0.400000 +2117 1617 0.400000 +2117 1634 0.400000 +2117 1719 0.400000 +2117 1736 0.400000 +2117 1777 0.400000 +2117 1785 0.400000 +2117 1807 0.400000 +2117 1808 0.400000 +2117 1978 0.400000 +2117 1989 0.400000 +2117 2020 0.400000 +2117 2040 0.400000 +2117 2048 0.400000 +2117 2076 0.400000 +2117 2112 0.400000 +2117 2176 0.400000 +2117 2258 0.400000 +2117 2385 0.400000 +2117 2386 0.400000 +2117 2398 0.400000 +2117 2434 0.400000 +2117 2527 0.400000 +2117 2593 0.400000 +2117 2609 0.400000 +2117 2652 0.400000 +2117 2743 0.400000 +2117 2762 0.400000 +2117 2763 0.400000 +2117 2847 0.400000 +2117 2856 0.400000 +2117 2889 0.400000 +2117 2898 0.400000 +2117 2899 0.400000 +2117 2901 0.400000 +2117 2916 0.400000 +2117 2972 0.400000 +2117 3071 0.400000 +2118 39 0.400000 +2118 76 0.400000 +2118 84 0.400000 +2118 142 0.400000 +2118 327 0.400000 +2118 347 0.400000 +2118 362 0.400000 +2118 493 0.400000 +2118 547 0.400000 +2118 552 0.400000 +2118 562 0.400000 +2118 620 0.400000 +2118 695 0.400000 +2118 703 0.400000 +2118 716 0.400000 +2118 958 0.400000 +2118 997 0.400000 +2118 1044 0.400000 +2118 1060 0.400000 +2118 1067 0.400000 +2118 1188 0.400000 +2118 1216 0.400000 +2118 1268 0.400000 +2118 1320 0.400000 +2118 1450 0.400000 +2118 1523 0.400000 +2118 1570 0.400000 +2118 1700 0.400000 +2118 1701 0.400000 +2118 1724 0.400000 +2118 1766 0.400000 +2118 1785 0.400000 +2118 1814 0.400000 +2118 1844 0.400000 +2118 1930 0.400000 +2118 1943 0.400000 +2118 1972 0.400000 +2118 2017 0.400000 +2118 2123 0.400000 +2118 2139 0.400000 +2118 2150 0.400000 +2118 2211 0.400000 +2118 2250 0.400000 +2118 2305 0.400000 +2118 2346 0.400000 +2118 2410 0.400000 +2118 2493 0.400000 +2118 2504 0.400000 +2118 2526 0.400000 +2118 2563 0.400000 +2118 2610 0.400000 +2118 2617 0.400000 +2118 2681 0.400000 +2118 2689 0.400000 +2118 2725 0.400000 +2118 2846 0.400000 +2118 2871 0.400000 +2118 2878 0.400000 +2118 2924 0.400000 +2118 3059 0.400000 +2118 3070 0.400000 +2118 3149 0.400000 +2119 10 0.400000 +2119 51 0.400000 +2119 79 0.400000 +2119 91 0.400000 +2119 98 0.400000 +2119 104 0.400000 +2119 457 0.400000 +2119 664 0.400000 +2119 706 0.400000 +2119 708 0.400000 +2119 775 0.400000 +2119 826 0.400000 +2119 831 0.400000 +2119 881 0.400000 +2119 909 0.400000 +2119 930 0.400000 +2119 979 0.400000 +2119 995 0.400000 +2119 1020 0.400000 +2119 1032 0.400000 +2119 1059 0.400000 +2119 1061 0.400000 +2119 1084 0.400000 +2119 1126 0.400000 +2119 1152 0.400000 +2119 1288 0.400000 +2119 1346 0.400000 +2119 1364 0.400000 +2119 1503 0.400000 +2119 1592 0.400000 +2119 1645 0.400000 +2119 1711 0.400000 +2119 1731 0.400000 +2119 1852 0.400000 +2119 1863 0.400000 +2119 1942 0.400000 +2119 1951 0.400000 +2119 1977 0.400000 +2119 2005 0.400000 +2119 2029 0.400000 +2119 2087 0.400000 +2119 2089 0.400000 +2119 2126 0.400000 +2119 2352 0.400000 +2119 2496 0.400000 +2119 2511 0.400000 +2119 2521 0.400000 +2119 2632 0.400000 +2119 2649 0.400000 +2119 2708 0.400000 +2119 2710 0.400000 +2119 2749 0.400000 +2119 2844 0.400000 +2119 2935 0.400000 +2119 3049 0.400000 +2119 3132 0.400000 +2119 3158 0.400000 +2119 3179 0.400000 +2119 3181 0.400000 +2120 30 0.400000 +2120 120 0.400000 +2120 132 0.400000 +2120 205 0.400000 +2120 224 0.400000 +2120 237 0.400000 +2120 286 0.400000 +2120 428 0.400000 +2120 569 0.400000 +2120 621 0.400000 +2120 623 0.400000 +2120 626 0.400000 +2120 861 0.400000 +2120 948 0.400000 +2120 955 0.400000 +2120 1113 0.400000 +2120 1120 0.400000 +2120 1131 0.400000 +2120 1137 0.400000 +2120 1152 0.400000 +2120 1164 0.400000 +2120 1195 0.400000 +2120 1327 0.400000 +2120 1343 0.400000 +2120 1366 0.400000 +2120 1379 0.400000 +2120 1388 0.400000 +2120 1465 0.400000 +2120 1579 0.400000 +2120 1582 0.400000 +2120 1645 0.400000 +2120 1774 0.400000 +2120 1819 0.400000 +2120 1861 0.400000 +2120 1862 0.400000 +2120 1891 0.400000 +2120 1894 0.400000 +2120 1969 0.400000 +2120 2000 0.400000 +2120 2023 0.400000 +2120 2034 0.400000 +2120 2048 0.400000 +2120 2113 0.400000 +2120 2124 0.400000 +2120 2159 0.400000 +2120 2206 0.400000 +2120 2363 0.400000 +2120 2421 0.400000 +2120 2587 0.400000 +2120 2628 0.400000 +2120 2629 0.400000 +2120 2646 0.400000 +2120 2651 0.400000 +2120 2667 0.400000 +2120 2773 0.400000 +2120 2788 0.400000 +2120 2795 0.400000 +2120 2906 0.400000 +2120 2937 0.400000 +2120 3185 0.400000 +2120 3190 0.400000 +2120 3194 0.400000 +2121 54 0.400000 +2121 156 0.400000 +2121 210 0.400000 +2121 326 0.400000 +2121 440 0.400000 +2121 461 0.400000 +2121 482 0.400000 +2121 546 0.400000 +2121 547 0.400000 +2121 558 0.400000 +2121 561 0.400000 +2121 562 0.400000 +2121 563 0.400000 +2121 607 0.400000 +2121 643 0.400000 +2121 737 0.400000 +2121 755 0.400000 +2121 758 0.400000 +2121 782 0.400000 +2121 814 0.400000 +2121 833 0.400000 +2121 840 0.400000 +2121 858 0.400000 +2121 940 0.400000 +2121 945 0.400000 +2121 954 0.400000 +2121 1098 0.400000 +2121 1142 0.400000 +2121 1196 0.400000 +2121 1220 0.400000 +2121 1228 0.400000 +2121 1298 0.400000 +2121 1561 0.400000 +2121 1679 0.400000 +2121 1687 0.400000 +2121 1816 0.400000 +2121 1820 0.400000 +2121 1821 0.400000 +2121 1884 0.400000 +2121 2160 0.400000 +2121 2216 0.400000 +2121 2225 0.400000 +2121 2241 0.400000 +2121 2274 0.400000 +2121 2281 0.400000 +2121 2302 0.400000 +2121 2367 0.400000 +2121 2379 0.400000 +2121 2488 0.400000 +2121 2497 0.400000 +2121 2532 0.400000 +2121 2558 0.400000 +2121 2575 0.400000 +2121 2582 0.400000 +2121 2639 0.400000 +2121 2661 0.400000 +2121 2672 0.400000 +2121 2796 0.400000 +2121 2804 0.400000 +2121 2820 0.400000 +2121 2964 0.400000 +2121 3037 0.400000 +2121 3039 0.400000 +2121 3055 0.400000 +2121 3081 0.400000 +2121 3087 0.400000 +2122 37 0.400000 +2122 51 0.400000 +2122 54 0.400000 +2122 301 0.400000 +2122 329 0.400000 +2122 340 0.400000 +2122 348 0.400000 +2122 403 0.400000 +2122 423 0.400000 +2122 429 0.400000 +2122 430 0.400000 +2122 524 0.400000 +2122 572 0.400000 +2122 644 0.400000 +2122 661 0.400000 +2122 726 0.400000 +2122 786 0.400000 +2122 815 0.400000 +2122 833 0.400000 +2122 858 0.400000 +2122 862 0.400000 +2122 916 0.400000 +2122 980 0.400000 +2122 1019 0.400000 +2122 1067 0.400000 +2122 1091 0.400000 +2122 1129 0.400000 +2122 1147 0.400000 +2122 1148 0.400000 +2122 1208 0.400000 +2122 1227 0.400000 +2122 1270 0.400000 +2122 1348 0.400000 +2122 1352 0.400000 +2122 1376 0.400000 +2122 1399 0.400000 +2122 1476 0.400000 +2122 1585 0.400000 +2122 1600 0.400000 +2122 1633 0.400000 +2122 1688 0.400000 +2122 1751 0.400000 +2122 1896 0.400000 +2122 1984 0.400000 +2122 1985 0.400000 +2122 2032 0.400000 +2122 2056 0.400000 +2122 2076 0.400000 +2122 2079 0.400000 +2122 2163 0.400000 +2122 2318 0.400000 +2122 2344 0.400000 +2122 2368 0.400000 +2122 2391 0.400000 +2122 2721 0.400000 +2122 2722 0.400000 +2122 2853 0.400000 +2122 3020 0.400000 +2122 3024 0.400000 +2122 3044 0.400000 +2122 3058 0.400000 +2122 3077 0.400000 +2122 3089 0.400000 +2122 3104 0.400000 +2122 3143 0.400000 +2122 3164 0.400000 +2123 16 0.400000 +2123 68 0.400000 +2123 128 0.400000 +2123 144 0.400000 +2123 182 0.400000 +2123 196 0.400000 +2123 328 0.400000 +2123 405 0.400000 +2123 454 0.400000 +2123 505 0.400000 +2123 557 0.400000 +2123 631 0.400000 +2123 658 0.400000 +2123 742 0.400000 +2123 794 0.400000 +2123 809 0.400000 +2123 991 0.400000 +2123 1046 0.400000 +2123 1139 0.400000 +2123 1172 0.400000 +2123 1225 0.400000 +2123 1310 0.400000 +2123 1352 0.400000 +2123 1371 0.400000 +2123 1434 0.400000 +2123 1451 0.400000 +2123 1559 0.400000 +2123 1603 0.400000 +2123 1662 0.400000 +2123 1695 0.400000 +2123 1719 0.400000 +2123 1725 0.400000 +2123 1831 0.400000 +2123 1865 0.400000 +2123 1874 0.400000 +2123 1884 0.400000 +2123 1902 0.400000 +2123 1919 0.400000 +2123 1945 0.400000 +2123 1960 0.400000 +2123 2003 0.400000 +2123 2009 0.400000 +2123 2026 0.400000 +2123 2127 0.400000 +2123 2156 0.400000 +2123 2240 0.400000 +2123 2245 0.400000 +2123 2255 0.400000 +2123 2291 0.400000 +2123 2328 0.400000 +2123 2330 0.400000 +2123 2354 0.400000 +2123 2358 0.400000 +2123 2434 0.400000 +2123 2440 0.400000 +2123 2459 0.400000 +2123 2487 0.400000 +2123 2489 0.400000 +2123 2517 0.400000 +2123 2749 0.400000 +2123 2807 0.400000 +2123 2864 0.400000 +2123 2867 0.400000 +2123 3074 0.400000 +2123 3108 0.400000 +2123 3136 0.400000 +2123 3138 0.400000 +2123 3151 0.400000 +2124 113 0.400000 +2124 115 0.400000 +2124 136 0.400000 +2124 220 0.400000 +2124 254 0.400000 +2124 292 0.400000 +2124 302 0.400000 +2124 426 0.400000 +2124 449 0.400000 +2124 527 0.400000 +2124 625 0.400000 +2124 628 0.400000 +2124 701 0.400000 +2124 926 0.400000 +2124 1005 0.400000 +2124 1006 0.400000 +2124 1035 0.400000 +2124 1042 0.400000 +2124 1058 0.400000 +2124 1233 0.400000 +2124 1296 0.400000 +2124 1391 0.400000 +2124 1395 0.400000 +2124 1425 0.400000 +2124 1448 0.400000 +2124 1459 0.400000 +2124 1482 0.400000 +2124 1565 0.400000 +2124 1637 0.400000 +2124 1648 0.400000 +2124 1656 0.400000 +2124 1777 0.400000 +2124 1805 0.400000 +2124 1896 0.400000 +2124 1899 0.400000 +2124 1912 0.400000 +2124 1982 0.400000 +2124 2175 0.400000 +2124 2215 0.400000 +2124 2268 0.400000 +2124 2332 0.400000 +2124 2387 0.400000 +2124 2464 0.400000 +2124 2491 0.400000 +2124 2594 0.400000 +2124 2640 0.400000 +2124 2669 0.400000 +2124 2680 0.400000 +2124 2708 0.400000 +2124 2747 0.400000 +2124 2816 0.400000 +2124 2835 0.400000 +2124 2996 0.400000 +2124 3119 0.400000 +2124 3120 0.400000 +2124 3179 0.400000 +2125 142 0.400000 +2125 212 0.400000 +2125 345 0.400000 +2125 411 0.400000 +2125 442 0.400000 +2125 566 0.400000 +2125 728 0.400000 +2125 729 0.400000 +2125 739 0.400000 +2125 775 0.400000 +2125 777 0.400000 +2125 840 0.400000 +2125 841 0.400000 +2125 853 0.400000 +2125 898 0.400000 +2125 902 0.400000 +2125 933 0.400000 +2125 1026 0.400000 +2125 1036 0.400000 +2125 1062 0.400000 +2125 1121 0.400000 +2125 1137 0.400000 +2125 1153 0.400000 +2125 1210 0.400000 +2125 1233 0.400000 +2125 1399 0.400000 +2125 1437 0.400000 +2125 1441 0.400000 +2125 1519 0.400000 +2125 1554 0.400000 +2125 1611 0.400000 +2125 1620 0.400000 +2125 1624 0.400000 +2125 1692 0.400000 +2125 1721 0.400000 +2125 1749 0.400000 +2125 1779 0.400000 +2125 1822 0.400000 +2125 1993 0.400000 +2125 2096 0.400000 +2125 2160 0.400000 +2125 2164 0.400000 +2125 2213 0.400000 +2125 2273 0.400000 +2125 2323 0.400000 +2125 2377 0.400000 +2125 2394 0.400000 +2125 2406 0.400000 +2125 2464 0.400000 +2125 2511 0.400000 +2125 2512 0.400000 +2125 2666 0.400000 +2125 2672 0.400000 +2125 2687 0.400000 +2125 2708 0.400000 +2125 2711 0.400000 +2125 2712 0.400000 +2125 2835 0.400000 +2125 2847 0.400000 +2125 2937 0.400000 +2125 3029 0.400000 +2125 3072 0.400000 +2125 3094 0.400000 +2125 3095 0.400000 +2125 3138 0.400000 +2126 11 0.400000 +2126 16 0.400000 +2126 82 0.400000 +2126 136 0.400000 +2126 163 0.400000 +2126 190 0.400000 +2126 234 0.400000 +2126 278 0.400000 +2126 303 0.400000 +2126 353 0.400000 +2126 388 0.400000 +2126 416 0.400000 +2126 474 0.400000 +2126 513 0.400000 +2126 516 0.400000 +2126 562 0.400000 +2126 563 0.400000 +2126 623 0.400000 +2126 647 0.400000 +2126 678 0.400000 +2126 753 0.400000 +2126 828 0.400000 +2126 865 0.400000 +2126 870 0.400000 +2126 873 0.400000 +2126 1082 0.400000 +2126 1104 0.400000 +2126 1164 0.400000 +2126 1239 0.400000 +2126 1261 0.400000 +2126 1327 0.400000 +2126 1347 0.400000 +2126 1396 0.400000 +2126 1431 0.400000 +2126 1447 0.400000 +2126 1477 0.400000 +2126 1491 0.400000 +2126 1539 0.400000 +2126 1545 0.400000 +2126 1581 0.400000 +2126 1609 0.400000 +2126 1631 0.400000 +2126 1647 0.400000 +2126 1666 0.400000 +2126 1768 0.400000 +2126 1774 0.400000 +2126 1813 0.400000 +2126 1853 0.400000 +2126 1970 0.400000 +2126 2015 0.400000 +2126 2219 0.400000 +2126 2254 0.400000 +2126 2333 0.400000 +2126 2382 0.400000 +2126 2385 0.400000 +2126 2456 0.400000 +2126 2591 0.400000 +2126 2613 0.400000 +2126 2686 0.400000 +2126 2718 0.400000 +2126 2724 0.400000 +2126 2726 0.400000 +2126 2773 0.400000 +2126 2777 0.400000 +2126 2795 0.400000 +2126 2835 0.400000 +2126 2860 0.400000 +2126 2889 0.400000 +2126 2922 0.400000 +2126 2930 0.400000 +2126 2998 0.400000 +2126 3032 0.400000 +2126 3038 0.400000 +2126 3047 0.400000 +2126 3131 0.400000 +2126 3199 0.400000 +2127 136 0.400000 +2127 139 0.400000 +2127 149 0.400000 +2127 242 0.400000 +2127 281 0.400000 +2127 322 0.400000 +2127 331 0.400000 +2127 334 0.400000 +2127 353 0.400000 +2127 361 0.400000 +2127 373 0.400000 +2127 570 0.400000 +2127 600 0.400000 +2127 634 0.400000 +2127 645 0.400000 +2127 651 0.400000 +2127 689 0.400000 +2127 705 0.400000 +2127 737 0.400000 +2127 810 0.400000 +2127 854 0.400000 +2127 898 0.400000 +2127 946 0.400000 +2127 1035 0.400000 +2127 1073 0.400000 +2127 1122 0.400000 +2127 1194 0.400000 +2127 1209 0.400000 +2127 1213 0.400000 +2127 1224 0.400000 +2127 1235 0.400000 +2127 1284 0.400000 +2127 1364 0.400000 +2127 1369 0.400000 +2127 1379 0.400000 +2127 1444 0.400000 +2127 1447 0.400000 +2127 1464 0.400000 +2127 1470 0.400000 +2127 1474 0.400000 +2127 1490 0.400000 +2127 1509 0.400000 +2127 1557 0.400000 +2127 1659 0.400000 +2127 1722 0.400000 +2127 1758 0.400000 +2127 1798 0.400000 +2127 1801 0.400000 +2127 1808 0.400000 +2127 1843 0.400000 +2127 1897 0.400000 +2127 1900 0.400000 +2127 1966 0.400000 +2127 2039 0.400000 +2127 2089 0.400000 +2127 2196 0.400000 +2127 2208 0.400000 +2127 2278 0.400000 +2127 2331 0.400000 +2127 2347 0.400000 +2127 2378 0.400000 +2127 2384 0.400000 +2127 2444 0.400000 +2127 2526 0.400000 +2127 2549 0.400000 +2127 2586 0.400000 +2127 2594 0.400000 +2127 2648 0.400000 +2127 2670 0.400000 +2127 2681 0.400000 +2127 2714 0.400000 +2127 2755 0.400000 +2127 2798 0.400000 +2127 2899 0.400000 +2127 2969 0.400000 +2127 3040 0.400000 +2127 3071 0.400000 +2127 3125 0.400000 +2128 99 0.400000 +2128 237 0.400000 +2128 336 0.400000 +2128 374 0.400000 +2128 386 0.400000 +2128 389 0.400000 +2128 496 0.400000 +2128 530 0.400000 +2128 597 0.400000 +2128 618 0.400000 +2128 697 0.400000 +2128 729 0.400000 +2128 817 0.400000 +2128 850 0.400000 +2128 876 0.400000 +2128 1007 0.400000 +2128 1053 0.400000 +2128 1081 0.400000 +2128 1117 0.400000 +2128 1121 0.400000 +2128 1125 0.400000 +2128 1140 0.400000 +2128 1186 0.400000 +2128 1235 0.400000 +2128 1244 0.400000 +2128 1255 0.400000 +2128 1381 0.400000 +2128 1397 0.400000 +2128 1429 0.400000 +2128 1454 0.400000 +2128 1531 0.400000 +2128 1585 0.400000 +2128 1587 0.400000 +2128 1735 0.400000 +2128 1870 0.400000 +2128 2051 0.400000 +2128 2101 0.400000 +2128 2111 0.400000 +2128 2244 0.400000 +2128 2268 0.400000 +2128 2332 0.400000 +2128 2457 0.400000 +2128 2467 0.400000 +2128 2554 0.400000 +2128 2607 0.400000 +2128 2714 0.400000 +2128 2764 0.400000 +2128 2823 0.400000 +2128 2826 0.400000 +2128 2856 0.400000 +2128 2932 0.400000 +2128 2962 0.400000 +2128 3013 0.400000 +2128 3147 0.400000 +2128 3168 0.400000 +2129 121 0.400000 +2129 159 0.400000 +2129 219 0.400000 +2129 248 0.400000 +2129 307 0.400000 +2129 390 0.400000 +2129 583 0.400000 +2129 595 0.400000 +2129 619 0.400000 +2129 663 0.400000 +2129 691 0.400000 +2129 701 0.400000 +2129 737 0.400000 +2129 810 0.400000 +2129 1008 0.400000 +2129 1123 0.400000 +2129 1138 0.400000 +2129 1171 0.400000 +2129 1262 0.400000 +2129 1297 0.400000 +2129 1298 0.400000 +2129 1427 0.400000 +2129 1472 0.400000 +2129 1508 0.400000 +2129 1532 0.400000 +2129 1689 0.400000 +2129 1704 0.400000 +2129 1754 0.400000 +2129 1868 0.400000 +2129 1916 0.400000 +2129 2010 0.400000 +2129 2023 0.400000 +2129 2040 0.400000 +2129 2044 0.400000 +2129 2053 0.400000 +2129 2145 0.400000 +2129 2256 0.400000 +2129 2259 0.400000 +2129 2333 0.400000 +2129 2366 0.400000 +2129 2392 0.400000 +2129 2452 0.400000 +2129 2481 0.400000 +2129 2671 0.400000 +2129 2672 0.400000 +2129 2674 0.400000 +2129 2685 0.400000 +2129 2781 0.400000 +2129 2786 0.400000 +2129 2809 0.400000 +2129 2820 0.400000 +2129 2964 0.400000 +2129 3024 0.400000 +2129 3144 0.400000 +2129 3151 0.400000 +2129 3195 0.400000 +2130 4 0.400000 +2130 27 0.400000 +2130 32 0.400000 +2130 60 0.400000 +2130 79 0.400000 +2130 118 0.400000 +2130 119 0.400000 +2130 124 0.400000 +2130 140 0.400000 +2130 232 0.400000 +2130 346 0.400000 +2130 494 0.400000 +2130 554 0.400000 +2130 689 0.400000 +2130 769 0.400000 +2130 846 0.400000 +2130 864 0.400000 +2130 877 0.400000 +2130 1170 0.400000 +2130 1255 0.400000 +2130 1342 0.400000 +2130 1417 0.400000 +2130 1437 0.400000 +2130 1500 0.400000 +2130 1543 0.400000 +2130 1576 0.400000 +2130 1697 0.400000 +2130 1843 0.400000 +2130 1885 0.400000 +2130 1944 0.400000 +2130 1955 0.400000 +2130 1987 0.400000 +2130 2034 0.400000 +2130 2069 0.400000 +2130 2088 0.400000 +2130 2117 0.400000 +2130 2189 0.400000 +2130 2196 0.400000 +2130 2216 0.400000 +2130 2278 0.400000 +2130 2327 0.400000 +2130 2375 0.400000 +2130 2380 0.400000 +2130 2424 0.400000 +2130 2612 0.400000 +2130 2618 0.400000 +2130 2650 0.400000 +2130 2730 0.400000 +2130 2812 0.400000 +2130 2821 0.400000 +2130 2843 0.400000 +2130 2917 0.400000 +2130 2935 0.400000 +2130 3008 0.400000 +2130 3022 0.400000 +2130 3157 0.400000 +2130 3172 0.400000 +2130 3176 0.400000 +2130 3193 0.400000 +2131 72 0.400000 +2131 89 0.400000 +2131 158 0.400000 +2131 238 0.400000 +2131 379 0.400000 +2131 418 0.400000 +2131 526 0.400000 +2131 580 0.400000 +2131 720 0.400000 +2131 738 0.400000 +2131 831 0.400000 +2131 995 0.400000 +2131 1001 0.400000 +2131 1037 0.400000 +2131 1056 0.400000 +2131 1119 0.400000 +2131 1132 0.400000 +2131 1205 0.400000 +2131 1269 0.400000 +2131 1323 0.400000 +2131 1364 0.400000 +2131 1515 0.400000 +2131 1531 0.400000 +2131 1550 0.400000 +2131 1561 0.400000 +2131 1731 0.400000 +2131 1850 0.400000 +2131 2024 0.400000 +2131 2038 0.400000 +2131 2164 0.400000 +2131 2297 0.400000 +2131 2304 0.400000 +2131 2451 0.400000 +2131 2472 0.400000 +2131 2506 0.400000 +2131 2519 0.400000 +2131 2774 0.400000 +2131 2784 0.400000 +2131 2801 0.400000 +2131 2817 0.400000 +2131 2971 0.400000 +2131 2974 0.400000 +2131 3164 0.400000 +2131 3187 0.400000 +2132 69 0.400000 +2132 89 0.400000 +2132 109 0.400000 +2132 112 0.400000 +2132 142 0.400000 +2132 149 0.400000 +2132 257 0.400000 +2132 285 0.400000 +2132 311 0.400000 +2132 343 0.400000 +2132 392 0.400000 +2132 432 0.400000 +2132 446 0.400000 +2132 466 0.400000 +2132 581 0.400000 +2132 614 0.400000 +2132 658 0.400000 +2132 669 0.400000 +2132 847 0.400000 +2132 899 0.400000 +2132 900 0.400000 +2132 913 0.400000 +2132 981 0.400000 +2132 1025 0.400000 +2132 1114 0.400000 +2132 1180 0.400000 +2132 1249 0.400000 +2132 1251 0.400000 +2132 1308 0.400000 +2132 1326 0.400000 +2132 1429 0.400000 +2132 1496 0.400000 +2132 1516 0.400000 +2132 1533 0.400000 +2132 1571 0.400000 +2132 1587 0.400000 +2132 1690 0.400000 +2132 1740 0.400000 +2132 1787 0.400000 +2132 1805 0.400000 +2132 1812 0.400000 +2132 1843 0.400000 +2132 1907 0.400000 +2132 1976 0.400000 +2132 2098 0.400000 +2132 2266 0.400000 +2132 2330 0.400000 +2132 2357 0.400000 +2132 2390 0.400000 +2132 2393 0.400000 +2132 2403 0.400000 +2132 2409 0.400000 +2132 2531 0.400000 +2132 2549 0.400000 +2132 2638 0.400000 +2132 2695 0.400000 +2132 2736 0.400000 +2132 2756 0.400000 +2132 2765 0.400000 +2132 2778 0.400000 +2132 2928 0.400000 +2132 2936 0.400000 +2132 2993 0.400000 +2132 3044 0.400000 +2132 3074 0.400000 +2132 3089 0.400000 +2132 3105 0.400000 +2132 3141 0.400000 +2132 3190 0.400000 +2133 42 0.400000 +2133 115 0.400000 +2133 137 0.400000 +2133 180 0.400000 +2133 253 0.400000 +2133 256 0.400000 +2133 308 0.400000 +2133 354 0.400000 +2133 364 0.400000 +2133 461 0.400000 +2133 478 0.400000 +2133 485 0.400000 +2133 604 0.400000 +2133 643 0.400000 +2133 710 0.400000 +2133 724 0.400000 +2133 814 0.400000 +2133 850 0.400000 +2133 858 0.400000 +2133 874 0.400000 +2133 898 0.400000 +2133 904 0.400000 +2133 935 0.400000 +2133 951 0.400000 +2133 963 0.400000 +2133 1045 0.400000 +2133 1086 0.400000 +2133 1157 0.400000 +2133 1248 0.400000 +2133 1280 0.400000 +2133 1319 0.400000 +2133 1382 0.400000 +2133 1393 0.400000 +2133 1471 0.400000 +2133 1486 0.400000 +2133 1487 0.400000 +2133 1509 0.400000 +2133 1515 0.400000 +2133 1521 0.400000 +2133 1540 0.400000 +2133 1586 0.400000 +2133 1635 0.400000 +2133 1644 0.400000 +2133 1765 0.400000 +2133 1819 0.400000 +2133 1829 0.400000 +2133 1958 0.400000 +2133 1966 0.400000 +2133 1992 0.400000 +2133 1996 0.400000 +2133 2025 0.400000 +2133 2116 0.400000 +2133 2146 0.400000 +2133 2274 0.400000 +2133 2278 0.400000 +2133 2323 0.400000 +2133 2359 0.400000 +2133 2498 0.400000 +2133 2508 0.400000 +2133 2530 0.400000 +2133 2580 0.400000 +2133 2592 0.400000 +2133 2670 0.400000 +2133 2696 0.400000 +2133 2703 0.400000 +2133 2710 0.400000 +2133 2713 0.400000 +2133 2871 0.400000 +2133 2891 0.400000 +2133 2937 0.400000 +2133 2943 0.400000 +2133 2948 0.400000 +2133 3033 0.400000 +2133 3069 0.400000 +2133 3107 0.400000 +2133 3144 0.400000 +2133 3145 0.400000 +2134 52 0.400000 +2134 65 0.400000 +2134 101 0.400000 +2134 199 0.400000 +2134 360 0.400000 +2134 415 0.400000 +2134 416 0.400000 +2134 440 0.400000 +2134 466 0.400000 +2134 544 0.400000 +2134 551 0.400000 +2134 651 0.400000 +2134 704 0.400000 +2134 711 0.400000 +2134 836 0.400000 +2134 959 0.400000 +2134 996 0.400000 +2134 1024 0.400000 +2134 1060 0.400000 +2134 1112 0.400000 +2134 1158 0.400000 +2134 1173 0.400000 +2134 1176 0.400000 +2134 1183 0.400000 +2134 1308 0.400000 +2134 1322 0.400000 +2134 1329 0.400000 +2134 1340 0.400000 +2134 1344 0.400000 +2134 1353 0.400000 +2134 1365 0.400000 +2134 1444 0.400000 +2134 1559 0.400000 +2134 1588 0.400000 +2134 1620 0.400000 +2134 1629 0.400000 +2134 1654 0.400000 +2134 1778 0.400000 +2134 1791 0.400000 +2134 1796 0.400000 +2134 1841 0.400000 +2134 1856 0.400000 +2134 1880 0.400000 +2134 1915 0.400000 +2134 1935 0.400000 +2134 1947 0.400000 +2134 1973 0.400000 +2134 2029 0.400000 +2134 2030 0.400000 +2134 2099 0.400000 +2134 2171 0.400000 +2134 2175 0.400000 +2134 2192 0.400000 +2134 2527 0.400000 +2134 2571 0.400000 +2134 2574 0.400000 +2134 2605 0.400000 +2134 2619 0.400000 +2134 2790 0.400000 +2134 2827 0.400000 +2134 2835 0.400000 +2134 2954 0.400000 +2134 3013 0.400000 +2134 3079 0.400000 +2134 3095 0.400000 +2134 3113 0.400000 +2134 3118 0.400000 +2134 3150 0.400000 +2135 7 0.400000 +2135 48 0.400000 +2135 91 0.400000 +2135 139 0.400000 +2135 156 0.400000 +2135 174 0.400000 +2135 344 0.400000 +2135 423 0.400000 +2135 435 0.400000 +2135 469 0.400000 +2135 488 0.400000 +2135 574 0.400000 +2135 630 0.400000 +2135 657 0.400000 +2135 715 0.400000 +2135 752 0.400000 +2135 857 0.400000 +2135 983 0.400000 +2135 1038 0.400000 +2135 1049 0.400000 +2135 1115 0.400000 +2135 1130 0.400000 +2135 1178 0.400000 +2135 1186 0.400000 +2135 1236 0.400000 +2135 1251 0.400000 +2135 1328 0.400000 +2135 1370 0.400000 +2135 1451 0.400000 +2135 1475 0.400000 +2135 1540 0.400000 +2135 1622 0.400000 +2135 1677 0.400000 +2135 1707 0.400000 +2135 1717 0.400000 +2135 1725 0.400000 +2135 1727 0.400000 +2135 1729 0.400000 +2135 1741 0.400000 +2135 1754 0.400000 +2135 1767 0.400000 +2135 1811 0.400000 +2135 1950 0.400000 +2135 1986 0.400000 +2135 2002 0.400000 +2135 2014 0.400000 +2135 2016 0.400000 +2135 2101 0.400000 +2135 2211 0.400000 +2135 2231 0.400000 +2135 2238 0.400000 +2135 2277 0.400000 +2135 2318 0.400000 +2135 2408 0.400000 +2135 2508 0.400000 +2135 2540 0.400000 +2135 2576 0.400000 +2135 2609 0.400000 +2135 2673 0.400000 +2135 2730 0.400000 +2135 2774 0.400000 +2135 2800 0.400000 +2135 2806 0.400000 +2135 2857 0.400000 +2135 2893 0.400000 +2135 2895 0.400000 +2135 2918 0.400000 +2135 2939 0.400000 +2135 2956 0.400000 +2135 2971 0.400000 +2135 3130 0.400000 +2135 3189 0.400000 +2136 31 0.400000 +2136 81 0.400000 +2136 101 0.400000 +2136 226 0.400000 +2136 257 0.400000 +2136 258 0.400000 +2136 261 0.400000 +2136 365 0.400000 +2136 432 0.400000 +2136 459 0.400000 +2136 512 0.400000 +2136 543 0.400000 +2136 567 0.400000 +2136 575 0.400000 +2136 590 0.400000 +2136 614 0.400000 +2136 621 0.400000 +2136 704 0.400000 +2136 779 0.400000 +2136 796 0.400000 +2136 798 0.400000 +2136 855 0.400000 +2136 895 0.400000 +2136 994 0.400000 +2136 1061 0.400000 +2136 1106 0.400000 +2136 1157 0.400000 +2136 1158 0.400000 +2136 1334 0.400000 +2136 1357 0.400000 +2136 1364 0.400000 +2136 1389 0.400000 +2136 1407 0.400000 +2136 1433 0.400000 +2136 1448 0.400000 +2136 1483 0.400000 +2136 1507 0.400000 +2136 1557 0.400000 +2136 1570 0.400000 +2136 1628 0.400000 +2136 1689 0.400000 +2136 1694 0.400000 +2136 1722 0.400000 +2136 1741 0.400000 +2136 1804 0.400000 +2136 1842 0.400000 +2136 1998 0.400000 +2136 2035 0.400000 +2136 2059 0.400000 +2136 2071 0.400000 +2136 2186 0.400000 +2136 2385 0.400000 +2136 2472 0.400000 +2136 2476 0.400000 +2136 2478 0.400000 +2136 2526 0.400000 +2136 2530 0.400000 +2136 2565 0.400000 +2136 2603 0.400000 +2136 2611 0.400000 +2136 2654 0.400000 +2136 2717 0.400000 +2136 2778 0.400000 +2136 2871 0.400000 +2136 2895 0.400000 +2136 2904 0.400000 +2136 2911 0.400000 +2136 2926 0.400000 +2136 2982 0.400000 +2136 2993 0.400000 +2136 3016 0.400000 +2136 3030 0.400000 +2136 3042 0.400000 +2136 3104 0.400000 +2136 3118 0.400000 +2137 4 0.400000 +2137 46 0.400000 +2137 88 0.400000 +2137 166 0.400000 +2137 195 0.400000 +2137 233 0.400000 +2137 358 0.400000 +2137 374 0.400000 +2137 463 0.400000 +2137 551 0.400000 +2137 564 0.400000 +2137 595 0.400000 +2137 603 0.400000 +2137 605 0.400000 +2137 613 0.400000 +2137 630 0.400000 +2137 636 0.400000 +2137 647 0.400000 +2137 672 0.400000 +2137 724 0.400000 +2137 727 0.400000 +2137 837 0.400000 +2137 855 0.400000 +2137 921 0.400000 +2137 935 0.400000 +2137 1011 0.400000 +2137 1044 0.400000 +2137 1098 0.400000 +2137 1118 0.400000 +2137 1181 0.400000 +2137 1215 0.400000 +2137 1279 0.400000 +2137 1287 0.400000 +2137 1442 0.400000 +2137 1570 0.400000 +2137 1662 0.400000 +2137 1702 0.400000 +2137 1713 0.400000 +2137 1882 0.400000 +2137 1952 0.400000 +2137 2043 0.400000 +2137 2066 0.400000 +2137 2153 0.400000 +2137 2176 0.400000 +2137 2216 0.400000 +2137 2230 0.400000 +2137 2248 0.400000 +2137 2279 0.400000 +2137 2312 0.400000 +2137 2408 0.400000 +2137 2439 0.400000 +2137 2444 0.400000 +2137 2492 0.400000 +2137 2515 0.400000 +2137 2525 0.400000 +2137 2629 0.400000 +2137 2650 0.400000 +2137 2652 0.400000 +2137 2661 0.400000 +2137 2673 0.400000 +2137 2716 0.400000 +2137 2726 0.400000 +2137 2783 0.400000 +2137 2814 0.400000 +2137 2851 0.400000 +2137 2861 0.400000 +2137 2898 0.400000 +2137 2911 0.400000 +2137 2938 0.400000 +2137 3003 0.400000 +2137 3051 0.400000 +2137 3145 0.400000 +2137 3152 0.400000 +2137 3179 0.400000 +2137 3199 0.400000 +2138 6 0.400000 +2138 30 0.400000 +2138 95 0.400000 +2138 114 0.400000 +2138 138 0.400000 +2138 200 0.400000 +2138 297 0.400000 +2138 361 0.400000 +2138 394 0.400000 +2138 400 0.400000 +2138 524 0.400000 +2138 573 0.400000 +2138 611 0.400000 +2138 687 0.400000 +2138 800 0.400000 +2138 811 0.400000 +2138 825 0.400000 +2138 1007 0.400000 +2138 1051 0.400000 +2138 1101 0.400000 +2138 1114 0.400000 +2138 1116 0.400000 +2138 1142 0.400000 +2138 1164 0.400000 +2138 1179 0.400000 +2138 1304 0.400000 +2138 1357 0.400000 +2138 1373 0.400000 +2138 1376 0.400000 +2138 1380 0.400000 +2138 1415 0.400000 +2138 1447 0.400000 +2138 1642 0.400000 +2138 1653 0.400000 +2138 1764 0.400000 +2138 1768 0.400000 +2138 1793 0.400000 +2138 1864 0.400000 +2138 1881 0.400000 +2138 1884 0.400000 +2138 1919 0.400000 +2138 1943 0.400000 +2138 1962 0.400000 +2138 1973 0.400000 +2138 2029 0.400000 +2138 2030 0.400000 +2138 2210 0.400000 +2138 2211 0.400000 +2138 2296 0.400000 +2138 2355 0.400000 +2138 2508 0.400000 +2138 2619 0.400000 +2138 2637 0.400000 +2138 2668 0.400000 +2138 2706 0.400000 +2138 2853 0.400000 +2138 2928 0.400000 +2138 2962 0.400000 +2138 3028 0.400000 +2138 3042 0.400000 +2138 3130 0.400000 +2139 86 0.400000 +2139 117 0.400000 +2139 127 0.400000 +2139 130 0.400000 +2139 203 0.400000 +2139 455 0.400000 +2139 480 0.400000 +2139 521 0.400000 +2139 656 0.400000 +2139 773 0.400000 +2139 800 0.400000 +2139 817 0.400000 +2139 871 0.400000 +2139 892 0.400000 +2139 906 0.400000 +2139 982 0.400000 +2139 1089 0.400000 +2139 1272 0.400000 +2139 1319 0.400000 +2139 1335 0.400000 +2139 1376 0.400000 +2139 1454 0.400000 +2139 1523 0.400000 +2139 1541 0.400000 +2139 1553 0.400000 +2139 1606 0.400000 +2139 1621 0.400000 +2139 1669 0.400000 +2139 1752 0.400000 +2139 1755 0.400000 +2139 1884 0.400000 +2139 1909 0.400000 +2139 1936 0.400000 +2139 1972 0.400000 +2139 1986 0.400000 +2139 2024 0.400000 +2139 2152 0.400000 +2139 2214 0.400000 +2139 2241 0.400000 +2139 2257 0.400000 +2139 2289 0.400000 +2139 2335 0.400000 +2139 2357 0.400000 +2139 2412 0.400000 +2139 2427 0.400000 +2139 2472 0.400000 +2139 2577 0.400000 +2139 2627 0.400000 +2139 2649 0.400000 +2139 2661 0.400000 +2139 2667 0.400000 +2139 2711 0.400000 +2139 2721 0.400000 +2139 2829 0.400000 +2139 2847 0.400000 +2139 2953 0.400000 +2139 2978 0.400000 +2139 2992 0.400000 +2139 3030 0.400000 +2139 3058 0.400000 +2139 3168 0.400000 +2139 3188 0.400000 +2140 93 0.400000 +2140 261 0.400000 +2140 305 0.400000 +2140 314 0.400000 +2140 336 0.400000 +2140 340 0.400000 +2140 384 0.400000 +2140 408 0.400000 +2140 450 0.400000 +2140 466 0.400000 +2140 477 0.400000 +2140 509 0.400000 +2140 522 0.400000 +2140 584 0.400000 +2140 630 0.400000 +2140 705 0.400000 +2140 716 0.400000 +2140 755 0.400000 +2140 759 0.400000 +2140 877 0.400000 +2140 927 0.400000 +2140 937 0.400000 +2140 971 0.400000 +2140 1020 0.400000 +2140 1029 0.400000 +2140 1040 0.400000 +2140 1127 0.400000 +2140 1157 0.400000 +2140 1264 0.400000 +2140 1269 0.400000 +2140 1285 0.400000 +2140 1303 0.400000 +2140 1308 0.400000 +2140 1341 0.400000 +2140 1353 0.400000 +2140 1356 0.400000 +2140 1382 0.400000 +2140 1474 0.400000 +2140 1509 0.400000 +2140 1636 0.400000 +2140 1900 0.400000 +2140 1990 0.400000 +2140 1993 0.400000 +2140 2015 0.400000 +2140 2016 0.400000 +2140 2149 0.400000 +2140 2151 0.400000 +2140 2171 0.400000 +2140 2267 0.400000 +2140 2393 0.400000 +2140 2448 0.400000 +2140 2464 0.400000 +2140 2502 0.400000 +2140 2586 0.400000 +2140 2657 0.400000 +2140 2738 0.400000 +2140 2749 0.400000 +2140 2863 0.400000 +2140 2877 0.400000 +2140 2952 0.400000 +2140 3103 0.400000 +2140 3131 0.400000 +2140 3149 0.400000 +2140 3158 0.400000 +2140 3169 0.400000 +2140 3177 0.400000 +2140 3198 0.400000 +2141 12 0.400000 +2141 83 0.400000 +2141 207 0.400000 +2141 252 0.400000 +2141 312 0.400000 +2141 320 0.400000 +2141 381 0.400000 +2141 487 0.400000 +2141 628 0.400000 +2141 694 0.400000 +2141 757 0.400000 +2141 773 0.400000 +2141 893 0.400000 +2141 904 0.400000 +2141 920 0.400000 +2141 926 0.400000 +2141 937 0.400000 +2141 983 0.400000 +2141 1154 0.400000 +2141 1214 0.400000 +2141 1253 0.400000 +2141 1283 0.400000 +2141 1358 0.400000 +2141 1596 0.400000 +2141 1619 0.400000 +2141 1684 0.400000 +2141 1786 0.400000 +2141 1803 0.400000 +2141 1826 0.400000 +2141 1847 0.400000 +2141 1879 0.400000 +2141 1887 0.400000 +2141 1953 0.400000 +2141 1966 0.400000 +2141 1971 0.400000 +2141 1973 0.400000 +2141 2012 0.400000 +2141 2017 0.400000 +2141 2076 0.400000 +2141 2132 0.400000 +2141 2242 0.400000 +2141 2313 0.400000 +2141 2346 0.400000 +2141 2407 0.400000 +2141 2500 0.400000 +2141 2553 0.400000 +2141 2562 0.400000 +2141 2675 0.400000 +2141 2714 0.400000 +2141 2721 0.400000 +2141 2729 0.400000 +2141 2782 0.400000 +2141 2829 0.400000 +2141 2833 0.400000 +2141 2900 0.400000 +2141 2962 0.400000 +2141 3046 0.400000 +2141 3069 0.400000 +2141 3141 0.400000 +2141 3164 0.400000 +2141 3167 0.400000 +2141 3191 0.400000 +2142 191 0.400000 +2142 201 0.400000 +2142 210 0.400000 +2142 251 0.400000 +2142 253 0.400000 +2142 385 0.400000 +2142 502 0.400000 +2142 594 0.400000 +2142 638 0.400000 +2142 639 0.400000 +2142 769 0.400000 +2142 786 0.400000 +2142 805 0.400000 +2142 895 0.400000 +2142 967 0.400000 +2142 1079 0.400000 +2142 1104 0.400000 +2142 1123 0.400000 +2142 1142 0.400000 +2142 1175 0.400000 +2142 1178 0.400000 +2142 1185 0.400000 +2142 1260 0.400000 +2142 1341 0.400000 +2142 1344 0.400000 +2142 1352 0.400000 +2142 1406 0.400000 +2142 1413 0.400000 +2142 1442 0.400000 +2142 1467 0.400000 +2142 1559 0.400000 +2142 1640 0.400000 +2142 1662 0.400000 +2142 1664 0.400000 +2142 1804 0.400000 +2142 1867 0.400000 +2142 1868 0.400000 +2142 1895 0.400000 +2142 1936 0.400000 +2142 2064 0.400000 +2142 2111 0.400000 +2142 2130 0.400000 +2142 2260 0.400000 +2142 2304 0.400000 +2142 2338 0.400000 +2142 2416 0.400000 +2142 2485 0.400000 +2142 2486 0.400000 +2142 2517 0.400000 +2142 2543 0.400000 +2142 2547 0.400000 +2142 2606 0.400000 +2142 2609 0.400000 +2142 2615 0.400000 +2142 2671 0.400000 +2142 2711 0.400000 +2142 2793 0.400000 +2142 2828 0.400000 +2142 2869 0.400000 +2142 2875 0.400000 +2142 2886 0.400000 +2142 2930 0.400000 +2142 2956 0.400000 +2142 3088 0.400000 +2142 3095 0.400000 +2142 3109 0.400000 +2142 3119 0.400000 +2142 3167 0.400000 +2143 32 0.400000 +2143 35 0.400000 +2143 42 0.400000 +2143 64 0.400000 +2143 234 0.400000 +2143 238 0.400000 +2143 278 0.400000 +2143 319 0.400000 +2143 367 0.400000 +2143 448 0.400000 +2143 452 0.400000 +2143 522 0.400000 +2143 644 0.400000 +2143 688 0.400000 +2143 711 0.400000 +2143 734 0.400000 +2143 825 0.400000 +2143 832 0.400000 +2143 837 0.400000 +2143 895 0.400000 +2143 901 0.400000 +2143 1023 0.400000 +2143 1036 0.400000 +2143 1101 0.400000 +2143 1120 0.400000 +2143 1132 0.400000 +2143 1175 0.400000 +2143 1184 0.400000 +2143 1214 0.400000 +2143 1251 0.400000 +2143 1301 0.400000 +2143 1410 0.400000 +2143 1542 0.400000 +2143 1556 0.400000 +2143 1569 0.400000 +2143 1611 0.400000 +2143 1677 0.400000 +2143 1757 0.400000 +2143 1800 0.400000 +2143 1895 0.400000 +2143 1898 0.400000 +2143 1916 0.400000 +2143 1923 0.400000 +2143 1930 0.400000 +2143 1932 0.400000 +2143 1962 0.400000 +2143 1979 0.400000 +2143 1999 0.400000 +2143 2027 0.400000 +2143 2033 0.400000 +2143 2084 0.400000 +2143 2118 0.400000 +2143 2185 0.400000 +2143 2188 0.400000 +2143 2228 0.400000 +2143 2243 0.400000 +2143 2304 0.400000 +2143 2364 0.400000 +2143 2414 0.400000 +2143 2420 0.400000 +2143 2460 0.400000 +2143 2519 0.400000 +2143 2571 0.400000 +2143 2576 0.400000 +2143 2603 0.400000 +2143 2621 0.400000 +2143 2670 0.400000 +2143 2733 0.400000 +2143 2741 0.400000 +2143 2788 0.400000 +2143 2882 0.400000 +2143 2913 0.400000 +2143 3054 0.400000 +2143 3059 0.400000 +2143 3117 0.400000 +2143 3144 0.400000 +2143 3145 0.400000 +2143 3194 0.400000 +2144 205 0.400000 +2144 218 0.400000 +2144 318 0.400000 +2144 375 0.400000 +2144 403 0.400000 +2144 425 0.400000 +2144 436 0.400000 +2144 709 0.400000 +2144 753 0.400000 +2144 779 0.400000 +2144 793 0.400000 +2144 817 0.400000 +2144 877 0.400000 +2144 1060 0.400000 +2144 1121 0.400000 +2144 1132 0.400000 +2144 1201 0.400000 +2144 1242 0.400000 +2144 1355 0.400000 +2144 1528 0.400000 +2144 1606 0.400000 +2144 1620 0.400000 +2144 1650 0.400000 +2144 1662 0.400000 +2144 1701 0.400000 +2144 1717 0.400000 +2144 1787 0.400000 +2144 1880 0.400000 +2144 1893 0.400000 +2144 1925 0.400000 +2144 1933 0.400000 +2144 1976 0.400000 +2144 1992 0.400000 +2144 1996 0.400000 +2144 2009 0.400000 +2144 2064 0.400000 +2144 2131 0.400000 +2144 2159 0.400000 +2144 2182 0.400000 +2144 2280 0.400000 +2144 2290 0.400000 +2144 2345 0.400000 +2144 2415 0.400000 +2144 2506 0.400000 +2144 2651 0.400000 +2144 2725 0.400000 +2144 2761 0.400000 +2144 3024 0.400000 +2144 3076 0.400000 +2145 22 0.400000 +2145 23 0.400000 +2145 36 0.400000 +2145 41 0.400000 +2145 75 0.400000 +2145 79 0.400000 +2145 175 0.400000 +2145 196 0.400000 +2145 205 0.400000 +2145 250 0.400000 +2145 316 0.400000 +2145 440 0.400000 +2145 501 0.400000 +2145 521 0.400000 +2145 557 0.400000 +2145 616 0.400000 +2145 619 0.400000 +2145 674 0.400000 +2145 775 0.400000 +2145 797 0.400000 +2145 802 0.400000 +2145 812 0.400000 +2145 920 0.400000 +2145 1098 0.400000 +2145 1107 0.400000 +2145 1237 0.400000 +2145 1256 0.400000 +2145 1286 0.400000 +2145 1363 0.400000 +2145 1448 0.400000 +2145 1451 0.400000 +2145 1454 0.400000 +2145 1459 0.400000 +2145 1503 0.400000 +2145 1516 0.400000 +2145 1558 0.400000 +2145 1600 0.400000 +2145 1616 0.400000 +2145 1653 0.400000 +2145 1682 0.400000 +2145 1689 0.400000 +2145 1718 0.400000 +2145 1737 0.400000 +2145 1805 0.400000 +2145 1849 0.400000 +2145 1933 0.400000 +2145 2034 0.400000 +2145 2079 0.400000 +2145 2091 0.400000 +2145 2109 0.400000 +2145 2124 0.400000 +2145 2129 0.400000 +2145 2137 0.400000 +2145 2185 0.400000 +2145 2294 0.400000 +2145 2308 0.400000 +2145 2337 0.400000 +2145 2349 0.400000 +2145 2394 0.400000 +2145 2430 0.400000 +2145 2457 0.400000 +2145 2459 0.400000 +2145 2526 0.400000 +2145 2548 0.400000 +2145 2672 0.400000 +2145 2690 0.400000 +2145 2701 0.400000 +2145 2738 0.400000 +2145 2769 0.400000 +2145 2786 0.400000 +2145 2793 0.400000 +2145 2797 0.400000 +2145 2800 0.400000 +2145 2815 0.400000 +2145 2872 0.400000 +2145 2972 0.400000 +2145 3037 0.400000 +2145 3047 0.400000 +2145 3072 0.400000 +2145 3119 0.400000 +2146 56 0.400000 +2146 243 0.400000 +2146 244 0.400000 +2146 277 0.400000 +2146 330 0.400000 +2146 333 0.400000 +2146 339 0.400000 +2146 441 0.400000 +2146 496 0.400000 +2146 524 0.400000 +2146 545 0.400000 +2146 549 0.400000 +2146 564 0.400000 +2146 615 0.400000 +2146 647 0.400000 +2146 670 0.400000 +2146 700 0.400000 +2146 710 0.400000 +2146 778 0.400000 +2146 850 0.400000 +2146 943 0.400000 +2146 977 0.400000 +2146 992 0.400000 +2146 1052 0.400000 +2146 1062 0.400000 +2146 1206 0.400000 +2146 1219 0.400000 +2146 1273 0.400000 +2146 1301 0.400000 +2146 1302 0.400000 +2146 1311 0.400000 +2146 1368 0.400000 +2146 1390 0.400000 +2146 1394 0.400000 +2146 1454 0.400000 +2146 1503 0.400000 +2146 1522 0.400000 +2146 1524 0.400000 +2146 1550 0.400000 +2146 1635 0.400000 +2146 1657 0.400000 +2146 1736 0.400000 +2146 1761 0.400000 +2146 1772 0.400000 +2146 1811 0.400000 +2146 1835 0.400000 +2146 1846 0.400000 +2146 1918 0.400000 +2146 1933 0.400000 +2146 1955 0.400000 +2146 2015 0.400000 +2146 2104 0.400000 +2146 2220 0.400000 +2146 2283 0.400000 +2146 2300 0.400000 +2146 2400 0.400000 +2146 2498 0.400000 +2146 2545 0.400000 +2146 2671 0.400000 +2146 2777 0.400000 +2146 2792 0.400000 +2146 2802 0.400000 +2146 2809 0.400000 +2146 2947 0.400000 +2146 2965 0.400000 +2146 3009 0.400000 +2146 3093 0.400000 +2146 3129 0.400000 +2146 3159 0.400000 +2146 3198 0.400000 +2147 35 0.400000 +2147 39 0.400000 +2147 44 0.400000 +2147 75 0.400000 +2147 78 0.400000 +2147 103 0.400000 +2147 262 0.400000 +2147 339 0.400000 +2147 424 0.400000 +2147 425 0.400000 +2147 478 0.400000 +2147 604 0.400000 +2147 605 0.400000 +2147 735 0.400000 +2147 908 0.400000 +2147 962 0.400000 +2147 991 0.400000 +2147 1014 0.400000 +2147 1027 0.400000 +2147 1041 0.400000 +2147 1071 0.400000 +2147 1183 0.400000 +2147 1218 0.400000 +2147 1243 0.400000 +2147 1260 0.400000 +2147 1326 0.400000 +2147 1374 0.400000 +2147 1391 0.400000 +2147 1488 0.400000 +2147 1595 0.400000 +2147 1649 0.400000 +2147 1656 0.400000 +2147 1665 0.400000 +2147 1702 0.400000 +2147 1741 0.400000 +2147 1824 0.400000 +2147 1846 0.400000 +2147 1959 0.400000 +2147 1974 0.400000 +2147 2000 0.400000 +2147 2135 0.400000 +2147 2154 0.400000 +2147 2367 0.400000 +2147 2375 0.400000 +2147 2386 0.400000 +2147 2500 0.400000 +2147 2509 0.400000 +2147 2548 0.400000 +2147 2562 0.400000 +2147 2603 0.400000 +2147 2678 0.400000 +2147 2691 0.400000 +2147 2727 0.400000 +2147 2749 0.400000 +2147 2790 0.400000 +2147 2800 0.400000 +2147 2801 0.400000 +2147 2817 0.400000 +2147 2819 0.400000 +2147 2892 0.400000 +2147 2919 0.400000 +2147 3023 0.400000 +2147 3024 0.400000 +2147 3098 0.400000 +2147 3102 0.400000 +2147 3149 0.400000 +2147 3181 0.400000 +2147 3195 0.400000 +2148 7 0.400000 +2148 175 0.400000 +2148 224 0.400000 +2148 231 0.400000 +2148 361 0.400000 +2148 367 0.400000 +2148 394 0.400000 +2148 538 0.400000 +2148 541 0.400000 +2148 552 0.400000 +2148 557 0.400000 +2148 567 0.400000 +2148 821 0.400000 +2148 832 0.400000 +2148 837 0.400000 +2148 895 0.400000 +2148 949 0.400000 +2148 1018 0.400000 +2148 1136 0.400000 +2148 1138 0.400000 +2148 1169 0.400000 +2148 1174 0.400000 +2148 1206 0.400000 +2148 1212 0.400000 +2148 1221 0.400000 +2148 1224 0.400000 +2148 1238 0.400000 +2148 1331 0.400000 +2148 1421 0.400000 +2148 1454 0.400000 +2148 1455 0.400000 +2148 1589 0.400000 +2148 1745 0.400000 +2148 1793 0.400000 +2148 1809 0.400000 +2148 1854 0.400000 +2148 1942 0.400000 +2148 2048 0.400000 +2148 2092 0.400000 +2148 2110 0.400000 +2148 2172 0.400000 +2148 2174 0.400000 +2148 2188 0.400000 +2148 2239 0.400000 +2148 2242 0.400000 +2148 2257 0.400000 +2148 2270 0.400000 +2148 2280 0.400000 +2148 2310 0.400000 +2148 2357 0.400000 +2148 2451 0.400000 +2148 2481 0.400000 +2148 2496 0.400000 +2148 2506 0.400000 +2148 2532 0.400000 +2148 2595 0.400000 +2148 2701 0.400000 +2148 2747 0.400000 +2148 2794 0.400000 +2148 2814 0.400000 +2148 2869 0.400000 +2148 2979 0.400000 +2148 3065 0.400000 +2148 3126 0.400000 +2149 101 0.400000 +2149 215 0.400000 +2149 238 0.400000 +2149 400 0.400000 +2149 475 0.400000 +2149 511 0.400000 +2149 523 0.400000 +2149 876 0.400000 +2149 883 0.400000 +2149 948 0.400000 +2149 956 0.400000 +2149 995 0.400000 +2149 1022 0.400000 +2149 1029 0.400000 +2149 1079 0.400000 +2149 1319 0.400000 +2149 1366 0.400000 +2149 1405 0.400000 +2149 1409 0.400000 +2149 1411 0.400000 +2149 1493 0.400000 +2149 1517 0.400000 +2149 1624 0.400000 +2149 1628 0.400000 +2149 1632 0.400000 +2149 1650 0.400000 +2149 1716 0.400000 +2149 1738 0.400000 +2149 1809 0.400000 +2149 1812 0.400000 +2149 1906 0.400000 +2149 1971 0.400000 +2149 1974 0.400000 +2149 1986 0.400000 +2149 2065 0.400000 +2149 2070 0.400000 +2149 2084 0.400000 +2149 2111 0.400000 +2149 2186 0.400000 +2149 2222 0.400000 +2149 2254 0.400000 +2149 2262 0.400000 +2149 2268 0.400000 +2149 2295 0.400000 +2149 2521 0.400000 +2149 2525 0.400000 +2149 2609 0.400000 +2149 2644 0.400000 +2149 2648 0.400000 +2149 2692 0.400000 +2149 2699 0.400000 +2149 2743 0.400000 +2149 2747 0.400000 +2149 2809 0.400000 +2149 2819 0.400000 +2149 2879 0.400000 +2149 2891 0.400000 +2149 2918 0.400000 +2149 2919 0.400000 +2149 2970 0.400000 +2149 2973 0.400000 +2149 3106 0.400000 +2149 3183 0.400000 +2150 34 0.400000 +2150 113 0.400000 +2150 125 0.400000 +2150 206 0.400000 +2150 241 0.400000 +2150 282 0.400000 +2150 296 0.400000 +2150 338 0.400000 +2150 354 0.400000 +2150 512 0.400000 +2150 537 0.400000 +2150 538 0.400000 +2150 575 0.400000 +2150 622 0.400000 +2150 641 0.400000 +2150 679 0.400000 +2150 682 0.400000 +2150 749 0.400000 +2150 760 0.400000 +2150 764 0.400000 +2150 832 0.400000 +2150 862 0.400000 +2150 883 0.400000 +2150 931 0.400000 +2150 1026 0.400000 +2150 1200 0.400000 +2150 1206 0.400000 +2150 1223 0.400000 +2150 1226 0.400000 +2150 1235 0.400000 +2150 1277 0.400000 +2150 1285 0.400000 +2150 1297 0.400000 +2150 1325 0.400000 +2150 1445 0.400000 +2150 1446 0.400000 +2150 1462 0.400000 +2150 1589 0.400000 +2150 1617 0.400000 +2150 1671 0.400000 +2150 1761 0.400000 +2150 1776 0.400000 +2150 1958 0.400000 +2150 2029 0.400000 +2150 2033 0.400000 +2150 2034 0.400000 +2150 2044 0.400000 +2150 2117 0.400000 +2150 2198 0.400000 +2150 2217 0.400000 +2150 2238 0.400000 +2150 2261 0.400000 +2150 2402 0.400000 +2150 2456 0.400000 +2150 2482 0.400000 +2150 2512 0.400000 +2150 2535 0.400000 +2150 2672 0.400000 +2150 2691 0.400000 +2150 2695 0.400000 +2150 2703 0.400000 +2150 2740 0.400000 +2150 2768 0.400000 +2150 2802 0.400000 +2150 2819 0.400000 +2150 2846 0.400000 +2150 2850 0.400000 +2150 2862 0.400000 +2150 2886 0.400000 +2150 3017 0.400000 +2150 3056 0.400000 +2150 3076 0.400000 +2150 3143 0.400000 +2151 89 0.400000 +2151 139 0.400000 +2151 151 0.400000 +2151 171 0.400000 +2151 355 0.400000 +2151 376 0.400000 +2151 384 0.400000 +2151 390 0.400000 +2151 472 0.400000 +2151 517 0.400000 +2151 548 0.400000 +2151 549 0.400000 +2151 590 0.400000 +2151 620 0.400000 +2151 637 0.400000 +2151 805 0.400000 +2151 820 0.400000 +2151 901 0.400000 +2151 952 0.400000 +2151 1029 0.400000 +2151 1048 0.400000 +2151 1054 0.400000 +2151 1077 0.400000 +2151 1097 0.400000 +2151 1187 0.400000 +2151 1196 0.400000 +2151 1266 0.400000 +2151 1375 0.400000 +2151 1405 0.400000 +2151 1494 0.400000 +2151 1514 0.400000 +2151 1603 0.400000 +2151 1610 0.400000 +2151 1796 0.400000 +2151 1947 0.400000 +2151 1959 0.400000 +2151 1968 0.400000 +2151 2012 0.400000 +2151 2028 0.400000 +2151 2034 0.400000 +2151 2092 0.400000 +2151 2146 0.400000 +2151 2191 0.400000 +2151 2233 0.400000 +2151 2290 0.400000 +2151 2396 0.400000 +2151 2440 0.400000 +2151 2485 0.400000 +2151 2497 0.400000 +2151 2595 0.400000 +2151 2612 0.400000 +2151 2621 0.400000 +2151 2683 0.400000 +2151 2723 0.400000 +2151 2728 0.400000 +2151 2753 0.400000 +2151 2777 0.400000 +2151 2829 0.400000 +2151 2865 0.400000 +2151 2932 0.400000 +2151 2946 0.400000 +2151 2955 0.400000 +2151 2983 0.400000 +2151 3002 0.400000 +2151 3017 0.400000 +2151 3029 0.400000 +2151 3052 0.400000 +2151 3085 0.400000 +2151 3090 0.400000 +2152 65 0.400000 +2152 82 0.400000 +2152 118 0.400000 +2152 356 0.400000 +2152 556 0.400000 +2152 689 0.400000 +2152 773 0.400000 +2152 882 0.400000 +2152 916 0.400000 +2152 944 0.400000 +2152 993 0.400000 +2152 1071 0.400000 +2152 1088 0.400000 +2152 1116 0.400000 +2152 1180 0.400000 +2152 1185 0.400000 +2152 1223 0.400000 +2152 1225 0.400000 +2152 1304 0.400000 +2152 1422 0.400000 +2152 1450 0.400000 +2152 1492 0.400000 +2152 1534 0.400000 +2152 1586 0.400000 +2152 1615 0.400000 +2152 1655 0.400000 +2152 1779 0.400000 +2152 1805 0.400000 +2152 1812 0.400000 +2152 1821 0.400000 +2152 1891 0.400000 +2152 1918 0.400000 +2152 1957 0.400000 +2152 2045 0.400000 +2152 2084 0.400000 +2152 2124 0.400000 +2152 2139 0.400000 +2152 2147 0.400000 +2152 2208 0.400000 +2152 2239 0.400000 +2152 2257 0.400000 +2152 2320 0.400000 +2152 2353 0.400000 +2152 2384 0.400000 +2152 2452 0.400000 +2152 2497 0.400000 +2152 2540 0.400000 +2152 2612 0.400000 +2152 2629 0.400000 +2152 2634 0.400000 +2152 2734 0.400000 +2152 2761 0.400000 +2152 2772 0.400000 +2152 2869 0.400000 +2152 2922 0.400000 +2152 3014 0.400000 +2152 3021 0.400000 +2152 3051 0.400000 +2152 3141 0.400000 +2153 15 0.400000 +2153 304 0.400000 +2153 326 0.400000 +2153 384 0.400000 +2153 439 0.400000 +2153 504 0.400000 +2153 611 0.400000 +2153 683 0.400000 +2153 692 0.400000 +2153 717 0.400000 +2153 787 0.400000 +2153 794 0.400000 +2153 837 0.400000 +2153 849 0.400000 +2153 870 0.400000 +2153 888 0.400000 +2153 890 0.400000 +2153 1020 0.400000 +2153 1043 0.400000 +2153 1047 0.400000 +2153 1049 0.400000 +2153 1151 0.400000 +2153 1175 0.400000 +2153 1182 0.400000 +2153 1185 0.400000 +2153 1213 0.400000 +2153 1280 0.400000 +2153 1299 0.400000 +2153 1301 0.400000 +2153 1307 0.400000 +2153 1313 0.400000 +2153 1390 0.400000 +2153 1412 0.400000 +2153 1441 0.400000 +2153 1473 0.400000 +2153 1716 0.400000 +2153 1815 0.400000 +2153 1904 0.400000 +2153 2042 0.400000 +2153 2099 0.400000 +2153 2110 0.400000 +2153 2126 0.400000 +2153 2243 0.400000 +2153 2299 0.400000 +2153 2345 0.400000 +2153 2386 0.400000 +2153 2397 0.400000 +2153 2465 0.400000 +2153 2476 0.400000 +2153 2548 0.400000 +2153 2607 0.400000 +2153 2747 0.400000 +2153 2775 0.400000 +2153 2788 0.400000 +2153 2830 0.400000 +2153 2872 0.400000 +2153 2888 0.400000 +2153 2908 0.400000 +2153 3003 0.400000 +2153 3146 0.400000 +2153 3193 0.400000 +2154 47 0.400000 +2154 62 0.400000 +2154 191 0.400000 +2154 296 0.400000 +2154 331 0.400000 +2154 369 0.400000 +2154 378 0.400000 +2154 386 0.400000 +2154 402 0.400000 +2154 408 0.400000 +2154 409 0.400000 +2154 419 0.400000 +2154 501 0.400000 +2154 533 0.400000 +2154 607 0.400000 +2154 619 0.400000 +2154 641 0.400000 +2154 722 0.400000 +2154 726 0.400000 +2154 782 0.400000 +2154 885 0.400000 +2154 894 0.400000 +2154 925 0.400000 +2154 987 0.400000 +2154 1026 0.400000 +2154 1038 0.400000 +2154 1078 0.400000 +2154 1104 0.400000 +2154 1132 0.400000 +2154 1143 0.400000 +2154 1322 0.400000 +2154 1341 0.400000 +2154 1385 0.400000 +2154 1460 0.400000 +2154 1475 0.400000 +2154 1518 0.400000 +2154 1536 0.400000 +2154 1547 0.400000 +2154 1702 0.400000 +2154 1723 0.400000 +2154 1742 0.400000 +2154 1767 0.400000 +2154 1817 0.400000 +2154 1868 0.400000 +2154 1877 0.400000 +2154 1924 0.400000 +2154 1988 0.400000 +2154 2061 0.400000 +2154 2069 0.400000 +2154 2230 0.400000 +2154 2261 0.400000 +2154 2277 0.400000 +2154 2278 0.400000 +2154 2335 0.400000 +2154 2345 0.400000 +2154 2371 0.400000 +2154 2421 0.400000 +2154 2423 0.400000 +2154 2459 0.400000 +2154 2504 0.400000 +2154 2580 0.400000 +2154 2607 0.400000 +2154 2631 0.400000 +2154 2646 0.400000 +2154 2687 0.400000 +2154 2698 0.400000 +2154 2700 0.400000 +2154 2710 0.400000 +2154 2801 0.400000 +2154 2848 0.400000 +2154 2910 0.400000 +2154 2943 0.400000 +2154 2956 0.400000 +2154 2993 0.400000 +2154 3055 0.400000 +2154 3094 0.400000 +2154 3097 0.400000 +2154 3108 0.400000 +2155 7 0.400000 +2155 71 0.400000 +2155 279 0.400000 +2155 285 0.400000 +2155 386 0.400000 +2155 411 0.400000 +2155 413 0.400000 +2155 451 0.400000 +2155 461 0.400000 +2155 489 0.400000 +2155 507 0.400000 +2155 527 0.400000 +2155 560 0.400000 +2155 587 0.400000 +2155 643 0.400000 +2155 821 0.400000 +2155 846 0.400000 +2155 917 0.400000 +2155 995 0.400000 +2155 998 0.400000 +2155 1097 0.400000 +2155 1138 0.400000 +2155 1154 0.400000 +2155 1225 0.400000 +2155 1286 0.400000 +2155 1290 0.400000 +2155 1324 0.400000 +2155 1337 0.400000 +2155 1465 0.400000 +2155 1481 0.400000 +2155 1523 0.400000 +2155 1592 0.400000 +2155 1644 0.400000 +2155 1704 0.400000 +2155 1790 0.400000 +2155 1875 0.400000 +2155 1902 0.400000 +2155 1931 0.400000 +2155 1941 0.400000 +2155 1956 0.400000 +2155 2041 0.400000 +2155 2071 0.400000 +2155 2099 0.400000 +2155 2119 0.400000 +2155 2179 0.400000 +2155 2205 0.400000 +2155 2266 0.400000 +2155 2267 0.400000 +2155 2285 0.400000 +2155 2378 0.400000 +2155 2417 0.400000 +2155 2590 0.400000 +2155 2653 0.400000 +2155 2685 0.400000 +2155 2820 0.400000 +2155 2887 0.400000 +2155 2899 0.400000 +2155 2920 0.400000 +2155 2990 0.400000 +2155 3057 0.400000 +2155 3109 0.400000 +2155 3117 0.400000 +2155 3148 0.400000 +2155 3156 0.400000 +2156 21 0.400000 +2156 52 0.400000 +2156 54 0.400000 +2156 56 0.400000 +2156 79 0.400000 +2156 106 0.400000 +2156 128 0.400000 +2156 130 0.400000 +2156 148 0.400000 +2156 172 0.400000 +2156 184 0.400000 +2156 230 0.400000 +2156 302 0.400000 +2156 399 0.400000 +2156 483 0.400000 +2156 494 0.400000 +2156 544 0.400000 +2156 657 0.400000 +2156 706 0.400000 +2156 714 0.400000 +2156 782 0.400000 +2156 786 0.400000 +2156 795 0.400000 +2156 800 0.400000 +2156 829 0.400000 +2156 848 0.400000 +2156 917 0.400000 +2156 1018 0.400000 +2156 1022 0.400000 +2156 1049 0.400000 +2156 1057 0.400000 +2156 1109 0.400000 +2156 1187 0.400000 +2156 1219 0.400000 +2156 1256 0.400000 +2156 1328 0.400000 +2156 1330 0.400000 +2156 1337 0.400000 +2156 1416 0.400000 +2156 1466 0.400000 +2156 1498 0.400000 +2156 1525 0.400000 +2156 1526 0.400000 +2156 1552 0.400000 +2156 1562 0.400000 +2156 1579 0.400000 +2156 1643 0.400000 +2156 1650 0.400000 +2156 1738 0.400000 +2156 1743 0.400000 +2156 1799 0.400000 +2156 1839 0.400000 +2156 1865 0.400000 +2156 1988 0.400000 +2156 2008 0.400000 +2156 2017 0.400000 +2156 2049 0.400000 +2156 2123 0.400000 +2156 2154 0.400000 +2156 2171 0.400000 +2156 2179 0.400000 +2156 2206 0.400000 +2156 2243 0.400000 +2156 2357 0.400000 +2156 2401 0.400000 +2156 2455 0.400000 +2156 2674 0.400000 +2156 2698 0.400000 +2156 2739 0.400000 +2156 2798 0.400000 +2156 2893 0.400000 +2156 2907 0.400000 +2156 2989 0.400000 +2156 3170 0.400000 +2157 18 0.400000 +2157 25 0.400000 +2157 106 0.400000 +2157 113 0.400000 +2157 137 0.400000 +2157 220 0.400000 +2157 256 0.400000 +2157 278 0.400000 +2157 305 0.400000 +2157 310 0.400000 +2157 314 0.400000 +2157 344 0.400000 +2157 351 0.400000 +2157 417 0.400000 +2157 426 0.400000 +2157 468 0.400000 +2157 480 0.400000 +2157 676 0.400000 +2157 677 0.400000 +2157 760 0.400000 +2157 816 0.400000 +2157 873 0.400000 +2157 876 0.400000 +2157 879 0.400000 +2157 889 0.400000 +2157 946 0.400000 +2157 959 0.400000 +2157 1003 0.400000 +2157 1031 0.400000 +2157 1053 0.400000 +2157 1058 0.400000 +2157 1060 0.400000 +2157 1069 0.400000 +2157 1092 0.400000 +2157 1120 0.400000 +2157 1164 0.400000 +2157 1208 0.400000 +2157 1309 0.400000 +2157 1321 0.400000 +2157 1360 0.400000 +2157 1433 0.400000 +2157 1541 0.400000 +2157 1590 0.400000 +2157 1618 0.400000 +2157 1622 0.400000 +2157 1755 0.400000 +2157 1756 0.400000 +2157 1784 0.400000 +2157 1792 0.400000 +2157 1797 0.400000 +2157 1871 0.400000 +2157 1924 0.400000 +2157 1959 0.400000 +2157 1980 0.400000 +2157 2101 0.400000 +2157 2160 0.400000 +2157 2178 0.400000 +2157 2278 0.400000 +2157 2292 0.400000 +2157 2337 0.400000 +2157 2355 0.400000 +2157 2397 0.400000 +2157 2587 0.400000 +2157 2612 0.400000 +2157 2626 0.400000 +2157 2741 0.400000 +2157 2758 0.400000 +2157 2821 0.400000 +2157 2846 0.400000 +2157 2874 0.400000 +2157 2963 0.400000 +2157 2980 0.400000 +2157 3018 0.400000 +2157 3093 0.400000 +2157 3099 0.400000 +2157 3177 0.400000 +2157 3180 0.400000 +2158 49 0.400000 +2158 78 0.400000 +2158 94 0.400000 +2158 124 0.400000 +2158 202 0.400000 +2158 209 0.400000 +2158 316 0.400000 +2158 352 0.400000 +2158 475 0.400000 +2158 482 0.400000 +2158 490 0.400000 +2158 539 0.400000 +2158 542 0.400000 +2158 561 0.400000 +2158 628 0.400000 +2158 636 0.400000 +2158 707 0.400000 +2158 869 0.400000 +2158 1052 0.400000 +2158 1146 0.400000 +2158 1157 0.400000 +2158 1254 0.400000 +2158 1346 0.400000 +2158 1422 0.400000 +2158 1466 0.400000 +2158 1484 0.400000 +2158 1485 0.400000 +2158 1516 0.400000 +2158 1530 0.400000 +2158 1552 0.400000 +2158 1611 0.400000 +2158 1680 0.400000 +2158 1704 0.400000 +2158 1739 0.400000 +2158 1753 0.400000 +2158 1915 0.400000 +2158 1950 0.400000 +2158 2003 0.400000 +2158 2049 0.400000 +2158 2068 0.400000 +2158 2093 0.400000 +2158 2107 0.400000 +2158 2129 0.400000 +2158 2173 0.400000 +2158 2200 0.400000 +2158 2209 0.400000 +2158 2224 0.400000 +2158 2273 0.400000 +2158 2291 0.400000 +2158 2294 0.400000 +2158 2354 0.400000 +2158 2375 0.400000 +2158 2378 0.400000 +2158 2389 0.400000 +2158 2451 0.400000 +2158 2482 0.400000 +2158 2511 0.400000 +2158 2524 0.400000 +2158 2529 0.400000 +2158 2547 0.400000 +2158 2615 0.400000 +2158 2658 0.400000 +2158 2667 0.400000 +2158 2680 0.400000 +2158 2700 0.400000 +2158 2737 0.400000 +2158 2759 0.400000 +2158 2849 0.400000 +2158 2862 0.400000 +2158 2911 0.400000 +2158 2915 0.400000 +2158 3000 0.400000 +2158 3002 0.400000 +2158 3099 0.400000 +2158 3140 0.400000 +2159 8 0.400000 +2159 43 0.400000 +2159 80 0.400000 +2159 173 0.400000 +2159 204 0.400000 +2159 245 0.400000 +2159 264 0.400000 +2159 309 0.400000 +2159 320 0.400000 +2159 369 0.400000 +2159 391 0.400000 +2159 481 0.400000 +2159 506 0.400000 +2159 526 0.400000 +2159 571 0.400000 +2159 593 0.400000 +2159 603 0.400000 +2159 750 0.400000 +2159 772 0.400000 +2159 781 0.400000 +2159 784 0.400000 +2159 792 0.400000 +2159 795 0.400000 +2159 840 0.400000 +2159 852 0.400000 +2159 871 0.400000 +2159 908 0.400000 +2159 991 0.400000 +2159 1080 0.400000 +2159 1247 0.400000 +2159 1269 0.400000 +2159 1309 0.400000 +2159 1340 0.400000 +2159 1473 0.400000 +2159 1499 0.400000 +2159 1658 0.400000 +2159 1700 0.400000 +2159 1720 0.400000 +2159 1721 0.400000 +2159 1726 0.400000 +2159 1784 0.400000 +2159 1806 0.400000 +2159 1822 0.400000 +2159 1871 0.400000 +2159 2002 0.400000 +2159 2010 0.400000 +2159 2019 0.400000 +2159 2085 0.400000 +2159 2166 0.400000 +2159 2308 0.400000 +2159 2333 0.400000 +2159 2396 0.400000 +2159 2452 0.400000 +2159 2473 0.400000 +2159 2627 0.400000 +2159 2662 0.400000 +2159 2675 0.400000 +2159 2716 0.400000 +2159 2750 0.400000 +2159 2834 0.400000 +2159 2973 0.400000 +2159 2997 0.400000 +2159 3063 0.400000 +2159 3074 0.400000 +2159 3098 0.400000 +2159 3169 0.400000 +2160 9 0.400000 +2160 11 0.400000 +2160 24 0.400000 +2160 31 0.400000 +2160 35 0.400000 +2160 40 0.400000 +2160 76 0.400000 +2160 94 0.400000 +2160 166 0.400000 +2160 167 0.400000 +2160 169 0.400000 +2160 184 0.400000 +2160 186 0.400000 +2160 230 0.400000 +2160 264 0.400000 +2160 276 0.400000 +2160 488 0.400000 +2160 537 0.400000 +2160 596 0.400000 +2160 605 0.400000 +2160 663 0.400000 +2160 713 0.400000 +2160 738 0.400000 +2160 789 0.400000 +2160 829 0.400000 +2160 831 0.400000 +2160 966 0.400000 +2160 967 0.400000 +2160 969 0.400000 +2160 1095 0.400000 +2160 1099 0.400000 +2160 1149 0.400000 +2160 1172 0.400000 +2160 1218 0.400000 +2160 1226 0.400000 +2160 1256 0.400000 +2160 1260 0.400000 +2160 1350 0.400000 +2160 1383 0.400000 +2160 1447 0.400000 +2160 1463 0.400000 +2160 1530 0.400000 +2160 1596 0.400000 +2160 1601 0.400000 +2160 1726 0.400000 +2160 1728 0.400000 +2160 1762 0.400000 +2160 1792 0.400000 +2160 1869 0.400000 +2160 1973 0.400000 +2160 2004 0.400000 +2160 2048 0.400000 +2160 2087 0.400000 +2160 2103 0.400000 +2160 2124 0.400000 +2160 2163 0.400000 +2160 2190 0.400000 +2160 2223 0.400000 +2160 2324 0.400000 +2160 2442 0.400000 +2160 2489 0.400000 +2160 2536 0.400000 +2160 2547 0.400000 +2160 2555 0.400000 +2160 2608 0.400000 +2160 2724 0.400000 +2160 2759 0.400000 +2160 2932 0.400000 +2160 2939 0.400000 +2160 2952 0.400000 +2160 2965 0.400000 +2160 2967 0.400000 +2160 3125 0.400000 +2160 3155 0.400000 +2160 3181 0.400000 +2160 3184 0.400000 +2160 3195 0.400000 +2161 24 0.400000 +2161 61 0.400000 +2161 116 0.400000 +2161 163 0.400000 +2161 182 0.400000 +2161 337 0.400000 +2161 355 0.400000 +2161 374 0.400000 +2161 447 0.400000 +2161 476 0.400000 +2161 551 0.400000 +2161 633 0.400000 +2161 659 0.400000 +2161 689 0.400000 +2161 721 0.400000 +2161 746 0.400000 +2161 766 0.400000 +2161 771 0.400000 +2161 787 0.400000 +2161 789 0.400000 +2161 797 0.400000 +2161 915 0.400000 +2161 994 0.400000 +2161 996 0.400000 +2161 1036 0.400000 +2161 1038 0.400000 +2161 1090 0.400000 +2161 1108 0.400000 +2161 1151 0.400000 +2161 1154 0.400000 +2161 1240 0.400000 +2161 1427 0.400000 +2161 1638 0.400000 +2161 1660 0.400000 +2161 1663 0.400000 +2161 1719 0.400000 +2161 1797 0.400000 +2161 1904 0.400000 +2161 1918 0.400000 +2161 1996 0.400000 +2161 2029 0.400000 +2161 2091 0.400000 +2161 2161 0.400000 +2161 2168 0.400000 +2161 2185 0.400000 +2161 2211 0.400000 +2161 2302 0.400000 +2161 2339 0.400000 +2161 2439 0.400000 +2161 2446 0.400000 +2161 2466 0.400000 +2161 2515 0.400000 +2161 2547 0.400000 +2161 2563 0.400000 +2161 2613 0.400000 +2161 2632 0.400000 +2161 2758 0.400000 +2161 2767 0.400000 +2161 2815 0.400000 +2161 2838 0.400000 +2161 2913 0.400000 +2161 2928 0.400000 +2161 3011 0.400000 +2161 3024 0.400000 +2161 3052 0.400000 +2161 3056 0.400000 +2161 3177 0.400000 +2162 3 0.400000 +2162 33 0.400000 +2162 70 0.400000 +2162 92 0.400000 +2162 249 0.400000 +2162 356 0.400000 +2162 508 0.400000 +2162 511 0.400000 +2162 616 0.400000 +2162 750 0.400000 +2162 796 0.400000 +2162 803 0.400000 +2162 816 0.400000 +2162 829 0.400000 +2162 925 0.400000 +2162 1004 0.400000 +2162 1027 0.400000 +2162 1038 0.400000 +2162 1158 0.400000 +2162 1222 0.400000 +2162 1270 0.400000 +2162 1318 0.400000 +2162 1327 0.400000 +2162 1336 0.400000 +2162 1346 0.400000 +2162 1529 0.400000 +2162 1551 0.400000 +2162 1627 0.400000 +2162 1634 0.400000 +2162 1644 0.400000 +2162 1794 0.400000 +2162 1800 0.400000 +2162 1846 0.400000 +2162 1911 0.400000 +2162 1935 0.400000 +2162 1938 0.400000 +2162 1955 0.400000 +2162 1958 0.400000 +2162 1972 0.400000 +2162 2070 0.400000 +2162 2110 0.400000 +2162 2139 0.400000 +2162 2144 0.400000 +2162 2149 0.400000 +2162 2157 0.400000 +2162 2246 0.400000 +2162 2255 0.400000 +2162 2281 0.400000 +2162 2295 0.400000 +2162 2305 0.400000 +2162 2348 0.400000 +2162 2406 0.400000 +2162 2513 0.400000 +2162 2550 0.400000 +2162 2558 0.400000 +2162 2598 0.400000 +2162 2605 0.400000 +2162 2615 0.400000 +2162 2619 0.400000 +2162 2715 0.400000 +2162 2734 0.400000 +2162 2764 0.400000 +2162 2796 0.400000 +2162 2873 0.400000 +2162 2933 0.400000 +2162 2961 0.400000 +2162 2966 0.400000 +2162 2973 0.400000 +2162 3040 0.400000 +2162 3050 0.400000 +2162 3074 0.400000 +2162 3076 0.400000 +2162 3146 0.400000 +2162 3160 0.400000 +2162 3162 0.400000 +2163 32 0.400000 +2163 186 0.400000 +2163 228 0.400000 +2163 277 0.400000 +2163 299 0.400000 +2163 328 0.400000 +2163 357 0.400000 +2163 393 0.400000 +2163 469 0.400000 +2163 480 0.400000 +2163 507 0.400000 +2163 605 0.400000 +2163 659 0.400000 +2163 761 0.400000 +2163 832 0.400000 +2163 855 0.400000 +2163 859 0.400000 +2163 884 0.400000 +2163 922 0.400000 +2163 944 0.400000 +2163 1010 0.400000 +2163 1067 0.400000 +2163 1079 0.400000 +2163 1191 0.400000 +2163 1200 0.400000 +2163 1265 0.400000 +2163 1343 0.400000 +2163 1355 0.400000 +2163 1362 0.400000 +2163 1425 0.400000 +2163 1490 0.400000 +2163 1559 0.400000 +2163 1584 0.400000 +2163 1713 0.400000 +2163 1724 0.400000 +2163 1744 0.400000 +2163 1801 0.400000 +2163 1829 0.400000 +2163 1941 0.400000 +2163 1997 0.400000 +2163 2013 0.400000 +2163 2028 0.400000 +2163 2032 0.400000 +2163 2074 0.400000 +2163 2135 0.400000 +2163 2170 0.400000 +2163 2200 0.400000 +2163 2251 0.400000 +2163 2273 0.400000 +2163 2306 0.400000 +2163 2318 0.400000 +2163 2437 0.400000 +2163 2453 0.400000 +2163 2582 0.400000 +2163 2682 0.400000 +2163 2721 0.400000 +2163 2748 0.400000 +2163 2819 0.400000 +2163 2977 0.400000 +2163 3004 0.400000 +2163 3089 0.400000 +2163 3097 0.400000 +2163 3107 0.400000 +2163 3132 0.400000 +2163 3161 0.400000 +2163 3176 0.400000 +2164 133 0.400000 +2164 221 0.400000 +2164 246 0.400000 +2164 357 0.400000 +2164 423 0.400000 +2164 461 0.400000 +2164 612 0.400000 +2164 614 0.400000 +2164 616 0.400000 +2164 765 0.400000 +2164 866 0.400000 +2164 936 0.400000 +2164 1064 0.400000 +2164 1161 0.400000 +2164 1271 0.400000 +2164 1279 0.400000 +2164 1321 0.400000 +2164 1325 0.400000 +2164 1374 0.400000 +2164 1380 0.400000 +2164 1391 0.400000 +2164 1479 0.400000 +2164 1481 0.400000 +2164 1595 0.400000 +2164 1606 0.400000 +2164 1664 0.400000 +2164 1716 0.400000 +2164 1781 0.400000 +2164 1808 0.400000 +2164 1833 0.400000 +2164 1879 0.400000 +2164 1899 0.400000 +2164 1908 0.400000 +2164 1973 0.400000 +2164 2003 0.400000 +2164 2047 0.400000 +2164 2101 0.400000 +2164 2227 0.400000 +2164 2319 0.400000 +2164 2409 0.400000 +2164 2431 0.400000 +2164 2465 0.400000 +2164 2523 0.400000 +2164 2538 0.400000 +2164 2560 0.400000 +2164 2567 0.400000 +2164 2627 0.400000 +2164 2633 0.400000 +2164 2714 0.400000 +2164 2819 0.400000 +2164 2857 0.400000 +2164 2981 0.400000 +2164 2989 0.400000 +2164 2993 0.400000 +2164 2994 0.400000 +2165 42 0.400000 +2165 81 0.400000 +2165 84 0.400000 +2165 118 0.400000 +2165 136 0.400000 +2165 195 0.400000 +2165 329 0.400000 +2165 338 0.400000 +2165 396 0.400000 +2165 462 0.400000 +2165 570 0.400000 +2165 571 0.400000 +2165 600 0.400000 +2165 711 0.400000 +2165 757 0.400000 +2165 777 0.400000 +2165 842 0.400000 +2165 911 0.400000 +2165 1015 0.400000 +2165 1062 0.400000 +2165 1073 0.400000 +2165 1191 0.400000 +2165 1251 0.400000 +2165 1260 0.400000 +2165 1330 0.400000 +2165 1341 0.400000 +2165 1461 0.400000 +2165 1503 0.400000 +2165 1513 0.400000 +2165 1542 0.400000 +2165 1562 0.400000 +2165 1585 0.400000 +2165 1664 0.400000 +2165 1759 0.400000 +2165 1768 0.400000 +2165 1796 0.400000 +2165 1811 0.400000 +2165 1815 0.400000 +2165 1876 0.400000 +2165 1892 0.400000 +2165 2021 0.400000 +2165 2022 0.400000 +2165 2147 0.400000 +2165 2156 0.400000 +2165 2258 0.400000 +2165 2304 0.400000 +2165 2373 0.400000 +2165 2384 0.400000 +2165 2414 0.400000 +2165 2436 0.400000 +2165 2452 0.400000 +2165 2534 0.400000 +2165 2550 0.400000 +2165 2600 0.400000 +2165 2608 0.400000 +2165 2630 0.400000 +2165 2649 0.400000 +2165 2670 0.400000 +2165 2745 0.400000 +2165 2833 0.400000 +2165 2843 0.400000 +2165 2856 0.400000 +2165 2910 0.400000 +2165 2920 0.400000 +2165 2963 0.400000 +2165 3006 0.400000 +2165 3108 0.400000 +2166 43 0.400000 +2166 78 0.400000 +2166 81 0.400000 +2166 137 0.400000 +2166 171 0.400000 +2166 361 0.400000 +2166 421 0.400000 +2166 505 0.400000 +2166 599 0.400000 +2166 687 0.400000 +2166 811 0.400000 +2166 857 0.400000 +2166 895 0.400000 +2166 1020 0.400000 +2166 1032 0.400000 +2166 1094 0.400000 +2166 1108 0.400000 +2166 1184 0.400000 +2166 1196 0.400000 +2166 1272 0.400000 +2166 1279 0.400000 +2166 1297 0.400000 +2166 1414 0.400000 +2166 1561 0.400000 +2166 1562 0.400000 +2166 1605 0.400000 +2166 1631 0.400000 +2166 1705 0.400000 +2166 1764 0.400000 +2166 1802 0.400000 +2166 1807 0.400000 +2166 1811 0.400000 +2166 1884 0.400000 +2166 1913 0.400000 +2166 1923 0.400000 +2166 2110 0.400000 +2166 2172 0.400000 +2166 2290 0.400000 +2166 2320 0.400000 +2166 2344 0.400000 +2166 2345 0.400000 +2166 2349 0.400000 +2166 2376 0.400000 +2166 2459 0.400000 +2166 2634 0.400000 +2166 2641 0.400000 +2166 2667 0.400000 +2166 2674 0.400000 +2166 2872 0.400000 +2166 2985 0.400000 +2166 3047 0.400000 +2166 3106 0.400000 +2166 3150 0.400000 +2166 3189 0.400000 +2167 14 0.400000 +2167 17 0.400000 +2167 57 0.400000 +2167 96 0.400000 +2167 126 0.400000 +2167 156 0.400000 +2167 191 0.400000 +2167 273 0.400000 +2167 305 0.400000 +2167 324 0.400000 +2167 326 0.400000 +2167 472 0.400000 +2167 496 0.400000 +2167 497 0.400000 +2167 557 0.400000 +2167 580 0.400000 +2167 697 0.400000 +2167 705 0.400000 +2167 735 0.400000 +2167 758 0.400000 +2167 811 0.400000 +2167 856 0.400000 +2167 865 0.400000 +2167 897 0.400000 +2167 913 0.400000 +2167 976 0.400000 +2167 978 0.400000 +2167 979 0.400000 +2167 1018 0.400000 +2167 1030 0.400000 +2167 1035 0.400000 +2167 1051 0.400000 +2167 1080 0.400000 +2167 1135 0.400000 +2167 1199 0.400000 +2167 1220 0.400000 +2167 1224 0.400000 +2167 1274 0.400000 +2167 1299 0.400000 +2167 1319 0.400000 +2167 1415 0.400000 +2167 1461 0.400000 +2167 1483 0.400000 +2167 1503 0.400000 +2167 1626 0.400000 +2167 1629 0.400000 +2167 1719 0.400000 +2167 1724 0.400000 +2167 1786 0.400000 +2167 1836 0.400000 +2167 1840 0.400000 +2167 1845 0.400000 +2167 1847 0.400000 +2167 1881 0.400000 +2167 1905 0.400000 +2167 1915 0.400000 +2167 1981 0.400000 +2167 2017 0.400000 +2167 2130 0.400000 +2167 2257 0.400000 +2167 2312 0.400000 +2167 2552 0.400000 +2167 2616 0.400000 +2167 2640 0.400000 +2167 2714 0.400000 +2167 2753 0.400000 +2167 2789 0.400000 +2167 2822 0.400000 +2167 2850 0.400000 +2167 2863 0.400000 +2167 2999 0.400000 +2167 3006 0.400000 +2167 3022 0.400000 +2167 3065 0.400000 +2167 3098 0.400000 +2167 3113 0.400000 +2167 3118 0.400000 +2167 3125 0.400000 +2167 3138 0.400000 +2168 239 0.400000 +2168 285 0.400000 +2168 302 0.400000 +2168 321 0.400000 +2168 329 0.400000 +2168 348 0.400000 +2168 429 0.400000 +2168 464 0.400000 +2168 476 0.400000 +2168 580 0.400000 +2168 623 0.400000 +2168 659 0.400000 +2168 661 0.400000 +2168 676 0.400000 +2168 720 0.400000 +2168 745 0.400000 +2168 752 0.400000 +2168 806 0.400000 +2168 925 0.400000 +2168 926 0.400000 +2168 1047 0.400000 +2168 1067 0.400000 +2168 1089 0.400000 +2168 1102 0.400000 +2168 1242 0.400000 +2168 1299 0.400000 +2168 1349 0.400000 +2168 1356 0.400000 +2168 1536 0.400000 +2168 1594 0.400000 +2168 1616 0.400000 +2168 1657 0.400000 +2168 1675 0.400000 +2168 1770 0.400000 +2168 1809 0.400000 +2168 1821 0.400000 +2168 1856 0.400000 +2168 1902 0.400000 +2168 1999 0.400000 +2168 2105 0.400000 +2168 2125 0.400000 +2168 2149 0.400000 +2168 2173 0.400000 +2168 2193 0.400000 +2168 2248 0.400000 +2168 2334 0.400000 +2168 2345 0.400000 +2168 2368 0.400000 +2168 2680 0.400000 +2168 2699 0.400000 +2168 2873 0.400000 +2168 2894 0.400000 +2168 2924 0.400000 +2168 2934 0.400000 +2168 2944 0.400000 +2168 2984 0.400000 +2168 3032 0.400000 +2168 3044 0.400000 +2168 3168 0.400000 +2168 3196 0.400000 +2169 2 0.400000 +2169 51 0.400000 +2169 155 0.400000 +2169 192 0.400000 +2169 224 0.400000 +2169 252 0.400000 +2169 313 0.400000 +2169 368 0.400000 +2169 373 0.400000 +2169 411 0.400000 +2169 437 0.400000 +2169 517 0.400000 +2169 568 0.400000 +2169 616 0.400000 +2169 660 0.400000 +2169 707 0.400000 +2169 723 0.400000 +2169 775 0.400000 +2169 808 0.400000 +2169 810 0.400000 +2169 858 0.400000 +2169 918 0.400000 +2169 1036 0.400000 +2169 1072 0.400000 +2169 1165 0.400000 +2169 1320 0.400000 +2169 1452 0.400000 +2169 1468 0.400000 +2169 1530 0.400000 +2169 1641 0.400000 +2169 1656 0.400000 +2169 1731 0.400000 +2169 1833 0.400000 +2169 1878 0.400000 +2169 1886 0.400000 +2169 1918 0.400000 +2169 1950 0.400000 +2169 2021 0.400000 +2169 2057 0.400000 +2169 2129 0.400000 +2169 2139 0.400000 +2169 2170 0.400000 +2169 2272 0.400000 +2169 2322 0.400000 +2169 2355 0.400000 +2169 2518 0.400000 +2169 2660 0.400000 +2169 2663 0.400000 +2169 2749 0.400000 +2169 2923 0.400000 +2169 2958 0.400000 +2169 2981 0.400000 +2169 2988 0.400000 +2169 2998 0.400000 +2169 3042 0.400000 +2169 3063 0.400000 +2170 5 0.400000 +2170 75 0.400000 +2170 79 0.400000 +2170 151 0.400000 +2170 243 0.400000 +2170 384 0.400000 +2170 387 0.400000 +2170 412 0.400000 +2170 420 0.400000 +2170 447 0.400000 +2170 512 0.400000 +2170 533 0.400000 +2170 534 0.400000 +2170 600 0.400000 +2170 725 0.400000 +2170 735 0.400000 +2170 799 0.400000 +2170 811 0.400000 +2170 846 0.400000 +2170 911 0.400000 +2170 943 0.400000 +2170 1010 0.400000 +2170 1018 0.400000 +2170 1182 0.400000 +2170 1187 0.400000 +2170 1267 0.400000 +2170 1268 0.400000 +2170 1280 0.400000 +2170 1294 0.400000 +2170 1371 0.400000 +2170 1374 0.400000 +2170 1386 0.400000 +2170 1422 0.400000 +2170 1423 0.400000 +2170 1485 0.400000 +2170 1566 0.400000 +2170 1662 0.400000 +2170 1668 0.400000 +2170 1734 0.400000 +2170 1783 0.400000 +2170 1935 0.400000 +2170 1950 0.400000 +2170 1962 0.400000 +2170 1991 0.400000 +2170 2018 0.400000 +2170 2042 0.400000 +2170 2078 0.400000 +2170 2102 0.400000 +2170 2121 0.400000 +2170 2226 0.400000 +2170 2245 0.400000 +2170 2387 0.400000 +2170 2448 0.400000 +2170 2500 0.400000 +2170 2516 0.400000 +2170 2618 0.400000 +2170 2712 0.400000 +2170 2720 0.400000 +2170 2728 0.400000 +2170 2748 0.400000 +2170 2753 0.400000 +2170 2833 0.400000 +2170 2999 0.400000 +2170 3059 0.400000 +2170 3079 0.400000 +2170 3107 0.400000 +2170 3141 0.400000 +2170 3150 0.400000 +2171 6 0.400000 +2171 32 0.400000 +2171 42 0.400000 +2171 88 0.400000 +2171 91 0.400000 +2171 185 0.400000 +2171 192 0.400000 +2171 236 0.400000 +2171 334 0.400000 +2171 366 0.400000 +2171 371 0.400000 +2171 373 0.400000 +2171 418 0.400000 +2171 428 0.400000 +2171 651 0.400000 +2171 696 0.400000 +2171 792 0.400000 +2171 797 0.400000 +2171 919 0.400000 +2171 993 0.400000 +2171 1063 0.400000 +2171 1090 0.400000 +2171 1109 0.400000 +2171 1133 0.400000 +2171 1210 0.400000 +2171 1246 0.400000 +2171 1259 0.400000 +2171 1377 0.400000 +2171 1387 0.400000 +2171 1421 0.400000 +2171 1439 0.400000 +2171 1550 0.400000 +2171 1573 0.400000 +2171 1624 0.400000 +2171 1729 0.400000 +2171 1756 0.400000 +2171 1854 0.400000 +2171 1881 0.400000 +2171 1917 0.400000 +2171 2061 0.400000 +2171 2101 0.400000 +2171 2130 0.400000 +2171 2183 0.400000 +2171 2207 0.400000 +2171 2209 0.400000 +2171 2344 0.400000 +2171 2506 0.400000 +2171 2514 0.400000 +2171 2543 0.400000 +2171 2621 0.400000 +2171 2812 0.400000 +2171 2838 0.400000 +2171 2897 0.400000 +2171 2939 0.400000 +2171 2952 0.400000 +2171 3014 0.400000 +2171 3062 0.400000 +2171 3086 0.400000 +2172 21 0.400000 +2172 33 0.400000 +2172 94 0.400000 +2172 179 0.400000 +2172 216 0.400000 +2172 217 0.400000 +2172 226 0.400000 +2172 228 0.400000 +2172 303 0.400000 +2172 324 0.400000 +2172 395 0.400000 +2172 469 0.400000 +2172 479 0.400000 +2172 495 0.400000 +2172 529 0.400000 +2172 576 0.400000 +2172 597 0.400000 +2172 725 0.400000 +2172 912 0.400000 +2172 971 0.400000 +2172 979 0.400000 +2172 996 0.400000 +2172 1013 0.400000 +2172 1034 0.400000 +2172 1074 0.400000 +2172 1099 0.400000 +2172 1157 0.400000 +2172 1233 0.400000 +2172 1239 0.400000 +2172 1253 0.400000 +2172 1281 0.400000 +2172 1282 0.400000 +2172 1291 0.400000 +2172 1293 0.400000 +2172 1354 0.400000 +2172 1474 0.400000 +2172 1520 0.400000 +2172 1549 0.400000 +2172 1567 0.400000 +2172 1621 0.400000 +2172 1721 0.400000 +2172 1781 0.400000 +2172 1787 0.400000 +2172 1854 0.400000 +2172 2025 0.400000 +2172 2026 0.400000 +2172 2032 0.400000 +2172 2094 0.400000 +2172 2156 0.400000 +2172 2182 0.400000 +2172 2189 0.400000 +2172 2197 0.400000 +2172 2201 0.400000 +2172 2221 0.400000 +2172 2222 0.400000 +2172 2261 0.400000 +2172 2385 0.400000 +2172 2455 0.400000 +2172 2561 0.400000 +2172 2633 0.400000 +2172 2789 0.400000 +2172 2834 0.400000 +2172 2846 0.400000 +2172 2856 0.400000 +2172 3033 0.400000 +2172 3083 0.400000 +2172 3188 0.400000 +2172 3190 0.400000 +2173 275 0.400000 +2173 340 0.400000 +2173 414 0.400000 +2173 462 0.400000 +2173 484 0.400000 +2173 535 0.400000 +2173 543 0.400000 +2173 589 0.400000 +2173 690 0.400000 +2173 692 0.400000 +2173 727 0.400000 +2173 729 0.400000 +2173 868 0.400000 +2173 873 0.400000 +2173 884 0.400000 +2173 896 0.400000 +2173 906 0.400000 +2173 975 0.400000 +2173 1115 0.400000 +2173 1197 0.400000 +2173 1198 0.400000 +2173 1211 0.400000 +2173 1399 0.400000 +2173 1508 0.400000 +2173 1572 0.400000 +2173 1598 0.400000 +2173 1614 0.400000 +2173 1635 0.400000 +2173 1671 0.400000 +2173 1719 0.400000 +2173 1810 0.400000 +2173 1812 0.400000 +2173 1898 0.400000 +2173 1917 0.400000 +2173 1924 0.400000 +2173 1930 0.400000 +2173 2000 0.400000 +2173 2012 0.400000 +2173 2046 0.400000 +2173 2079 0.400000 +2173 2105 0.400000 +2173 2117 0.400000 +2173 2172 0.400000 +2173 2255 0.400000 +2173 2267 0.400000 +2173 2268 0.400000 +2173 2312 0.400000 +2173 2324 0.400000 +2173 2361 0.400000 +2173 2390 0.400000 +2173 2402 0.400000 +2173 2445 0.400000 +2173 2476 0.400000 +2173 2507 0.400000 +2173 2536 0.400000 +2173 2567 0.400000 +2173 2573 0.400000 +2173 2595 0.400000 +2173 2606 0.400000 +2173 2735 0.400000 +2173 2740 0.400000 +2173 2742 0.400000 +2173 2882 0.400000 +2173 3002 0.400000 +2173 3037 0.400000 +2173 3045 0.400000 +2173 3077 0.400000 +2173 3088 0.400000 +2173 3093 0.400000 +2173 3118 0.400000 +2173 3132 0.400000 +2173 3156 0.400000 +2173 3160 0.400000 +2174 3 0.400000 +2174 17 0.400000 +2174 95 0.400000 +2174 117 0.400000 +2174 152 0.400000 +2174 205 0.400000 +2174 221 0.400000 +2174 299 0.400000 +2174 326 0.400000 +2174 409 0.400000 +2174 459 0.400000 +2174 569 0.400000 +2174 572 0.400000 +2174 596 0.400000 +2174 624 0.400000 +2174 647 0.400000 +2174 659 0.400000 +2174 661 0.400000 +2174 758 0.400000 +2174 763 0.400000 +2174 799 0.400000 +2174 803 0.400000 +2174 1011 0.400000 +2174 1032 0.400000 +2174 1204 0.400000 +2174 1248 0.400000 +2174 1326 0.400000 +2174 1436 0.400000 +2174 1449 0.400000 +2174 1460 0.400000 +2174 1476 0.400000 +2174 1645 0.400000 +2174 1648 0.400000 +2174 1650 0.400000 +2174 1657 0.400000 +2174 1744 0.400000 +2174 1758 0.400000 +2174 1787 0.400000 +2174 1847 0.400000 +2174 1855 0.400000 +2174 1877 0.400000 +2174 1903 0.400000 +2174 1913 0.400000 +2174 1964 0.400000 +2174 2031 0.400000 +2174 2079 0.400000 +2174 2122 0.400000 +2174 2166 0.400000 +2174 2170 0.400000 +2174 2183 0.400000 +2174 2261 0.400000 +2174 2321 0.400000 +2174 2427 0.400000 +2174 2429 0.400000 +2174 2461 0.400000 +2174 2506 0.400000 +2174 2610 0.400000 +2174 2614 0.400000 +2174 2677 0.400000 +2174 2711 0.400000 +2174 2772 0.400000 +2174 2847 0.400000 +2174 2866 0.400000 +2174 2894 0.400000 +2174 2900 0.400000 +2174 2909 0.400000 +2174 2950 0.400000 +2174 2968 0.400000 +2174 2971 0.400000 +2174 3025 0.400000 +2174 3030 0.400000 +2174 3142 0.400000 +2174 3188 0.400000 +2175 2 0.400000 +2175 10 0.400000 +2175 56 0.400000 +2175 206 0.400000 +2175 245 0.400000 +2175 591 0.400000 +2175 614 0.400000 +2175 615 0.400000 +2175 711 0.400000 +2175 716 0.400000 +2175 826 0.400000 +2175 872 0.400000 +2175 879 0.400000 +2175 930 0.400000 +2175 988 0.400000 +2175 1008 0.400000 +2175 1029 0.400000 +2175 1043 0.400000 +2175 1070 0.400000 +2175 1083 0.400000 +2175 1131 0.400000 +2175 1147 0.400000 +2175 1154 0.400000 +2175 1343 0.400000 +2175 1439 0.400000 +2175 1457 0.400000 +2175 1535 0.400000 +2175 1606 0.400000 +2175 1632 0.400000 +2175 1660 0.400000 +2175 1730 0.400000 +2175 1976 0.400000 +2175 1996 0.400000 +2175 2259 0.400000 +2175 2263 0.400000 +2175 2265 0.400000 +2175 2279 0.400000 +2175 2291 0.400000 +2175 2307 0.400000 +2175 2354 0.400000 +2175 2370 0.400000 +2175 2375 0.400000 +2175 2547 0.400000 +2175 2714 0.400000 +2175 2802 0.400000 +2175 2803 0.400000 +2175 2806 0.400000 +2175 2821 0.400000 +2175 2902 0.400000 +2175 2922 0.400000 +2175 2981 0.400000 +2175 3009 0.400000 +2175 3025 0.400000 +2175 3113 0.400000 +2175 3155 0.400000 +2176 33 0.400000 +2176 67 0.400000 +2176 92 0.400000 +2176 196 0.400000 +2176 202 0.400000 +2176 242 0.400000 +2176 300 0.400000 +2176 302 0.400000 +2176 354 0.400000 +2176 373 0.400000 +2176 462 0.400000 +2176 485 0.400000 +2176 526 0.400000 +2176 533 0.400000 +2176 541 0.400000 +2176 579 0.400000 +2176 636 0.400000 +2176 675 0.400000 +2176 705 0.400000 +2176 706 0.400000 +2176 758 0.400000 +2176 874 0.400000 +2176 925 0.400000 +2176 980 0.400000 +2176 1225 0.400000 +2176 1239 0.400000 +2176 1302 0.400000 +2176 1355 0.400000 +2176 1425 0.400000 +2176 1480 0.400000 +2176 1591 0.400000 +2176 1688 0.400000 +2176 1748 0.400000 +2176 1807 0.400000 +2176 1808 0.400000 +2176 1887 0.400000 +2176 1909 0.400000 +2176 2001 0.400000 +2176 2067 0.400000 +2176 2168 0.400000 +2176 2172 0.400000 +2176 2320 0.400000 +2176 2442 0.400000 +2176 2669 0.400000 +2176 2829 0.400000 +2176 2855 0.400000 +2176 2864 0.400000 +2176 2899 0.400000 +2176 2929 0.400000 +2176 2977 0.400000 +2176 2986 0.400000 +2176 3156 0.400000 +2177 54 0.400000 +2177 108 0.400000 +2177 203 0.400000 +2177 206 0.400000 +2177 211 0.400000 +2177 243 0.400000 +2177 345 0.400000 +2177 450 0.400000 +2177 458 0.400000 +2177 469 0.400000 +2177 481 0.400000 +2177 506 0.400000 +2177 537 0.400000 +2177 673 0.400000 +2177 726 0.400000 +2177 746 0.400000 +2177 748 0.400000 +2177 817 0.400000 +2177 829 0.400000 +2177 841 0.400000 +2177 855 0.400000 +2177 862 0.400000 +2177 868 0.400000 +2177 871 0.400000 +2177 901 0.400000 +2177 925 0.400000 +2177 1065 0.400000 +2177 1085 0.400000 +2177 1192 0.400000 +2177 1218 0.400000 +2177 1243 0.400000 +2177 1258 0.400000 +2177 1341 0.400000 +2177 1427 0.400000 +2177 1438 0.400000 +2177 1443 0.400000 +2177 1485 0.400000 +2177 1547 0.400000 +2177 1609 0.400000 +2177 1689 0.400000 +2177 1693 0.400000 +2177 1749 0.400000 +2177 1770 0.400000 +2177 1823 0.400000 +2177 1836 0.400000 +2177 1927 0.400000 +2177 1934 0.400000 +2177 1975 0.400000 +2177 1984 0.400000 +2177 2186 0.400000 +2177 2279 0.400000 +2177 2335 0.400000 +2177 2341 0.400000 +2177 2379 0.400000 +2177 2401 0.400000 +2177 2486 0.400000 +2177 2531 0.400000 +2177 2589 0.400000 +2177 2660 0.400000 +2177 2664 0.400000 +2177 2696 0.400000 +2177 2709 0.400000 +2177 2721 0.400000 +2177 2751 0.400000 +2177 2828 0.400000 +2177 2923 0.400000 +2177 2986 0.400000 +2177 3022 0.400000 +2177 3052 0.400000 +2177 3094 0.400000 +2177 3098 0.400000 +2177 3112 0.400000 +2177 3117 0.400000 +2177 3120 0.400000 +2177 3126 0.400000 +2177 3161 0.400000 +2177 3176 0.400000 +2178 55 0.400000 +2178 145 0.400000 +2178 153 0.400000 +2178 185 0.400000 +2178 195 0.400000 +2178 259 0.400000 +2178 264 0.400000 +2178 308 0.400000 +2178 365 0.400000 +2178 398 0.400000 +2178 488 0.400000 +2178 514 0.400000 +2178 531 0.400000 +2178 551 0.400000 +2178 591 0.400000 +2178 658 0.400000 +2178 672 0.400000 +2178 674 0.400000 +2178 733 0.400000 +2178 783 0.400000 +2178 917 0.400000 +2178 1006 0.400000 +2178 1089 0.400000 +2178 1358 0.400000 +2178 1401 0.400000 +2178 1440 0.400000 +2178 1468 0.400000 +2178 1517 0.400000 +2178 1525 0.400000 +2178 1731 0.400000 +2178 1744 0.400000 +2178 1760 0.400000 +2178 1818 0.400000 +2178 1932 0.400000 +2178 1952 0.400000 +2178 1984 0.400000 +2178 2062 0.400000 +2178 2081 0.400000 +2178 2234 0.400000 +2178 2247 0.400000 +2178 2335 0.400000 +2178 2337 0.400000 +2178 2350 0.400000 +2178 2363 0.400000 +2178 2365 0.400000 +2178 2397 0.400000 +2178 2399 0.400000 +2178 2496 0.400000 +2178 2536 0.400000 +2178 2538 0.400000 +2178 2623 0.400000 +2178 2691 0.400000 +2178 2714 0.400000 +2178 2790 0.400000 +2178 2849 0.400000 +2178 2891 0.400000 +2178 2899 0.400000 +2178 2929 0.400000 +2178 3023 0.400000 +2178 3045 0.400000 +2178 3063 0.400000 +2178 3087 0.400000 +2179 30 0.400000 +2179 210 0.400000 +2179 233 0.400000 +2179 260 0.400000 +2179 262 0.400000 +2179 282 0.400000 +2179 335 0.400000 +2179 347 0.400000 +2179 362 0.400000 +2179 408 0.400000 +2179 431 0.400000 +2179 453 0.400000 +2179 477 0.400000 +2179 514 0.400000 +2179 611 0.400000 +2179 662 0.400000 +2179 728 0.400000 +2179 791 0.400000 +2179 855 0.400000 +2179 991 0.400000 +2179 1023 0.400000 +2179 1025 0.400000 +2179 1078 0.400000 +2179 1177 0.400000 +2179 1198 0.400000 +2179 1231 0.400000 +2179 1258 0.400000 +2179 1315 0.400000 +2179 1346 0.400000 +2179 1380 0.400000 +2179 1402 0.400000 +2179 1458 0.400000 +2179 1459 0.400000 +2179 1595 0.400000 +2179 1683 0.400000 +2179 1689 0.400000 +2179 1734 0.400000 +2179 1790 0.400000 +2179 1798 0.400000 +2179 1806 0.400000 +2179 1908 0.400000 +2179 1942 0.400000 +2179 1954 0.400000 +2179 1962 0.400000 +2179 1973 0.400000 +2179 1975 0.400000 +2179 1980 0.400000 +2179 2038 0.400000 +2179 2067 0.400000 +2179 2334 0.400000 +2179 2374 0.400000 +2179 2581 0.400000 +2179 2596 0.400000 +2179 2652 0.400000 +2179 2774 0.400000 +2179 2775 0.400000 +2179 2781 0.400000 +2179 2861 0.400000 +2179 2916 0.400000 +2179 3014 0.400000 +2179 3046 0.400000 +2179 3047 0.400000 +2179 3073 0.400000 +2180 28 0.400000 +2180 36 0.400000 +2180 76 0.400000 +2180 136 0.400000 +2180 187 0.400000 +2180 293 0.400000 +2180 333 0.400000 +2180 351 0.400000 +2180 423 0.400000 +2180 436 0.400000 +2180 462 0.400000 +2180 477 0.400000 +2180 566 0.400000 +2180 572 0.400000 +2180 605 0.400000 +2180 641 0.400000 +2180 714 0.400000 +2180 741 0.400000 +2180 771 0.400000 +2180 785 0.400000 +2180 812 0.400000 +2180 881 0.400000 +2180 942 0.400000 +2180 981 0.400000 +2180 982 0.400000 +2180 986 0.400000 +2180 1066 0.400000 +2180 1143 0.400000 +2180 1148 0.400000 +2180 1176 0.400000 +2180 1215 0.400000 +2180 1259 0.400000 +2180 1277 0.400000 +2180 1293 0.400000 +2180 1374 0.400000 +2180 1428 0.400000 +2180 1433 0.400000 +2180 1493 0.400000 +2180 1621 0.400000 +2180 1662 0.400000 +2180 1710 0.400000 +2180 1779 0.400000 +2180 1803 0.400000 +2180 1810 0.400000 +2180 1814 0.400000 +2180 1825 0.400000 +2180 1843 0.400000 +2180 1879 0.400000 +2180 1923 0.400000 +2180 2013 0.400000 +2180 2030 0.400000 +2180 2111 0.400000 +2180 2155 0.400000 +2180 2199 0.400000 +2180 2309 0.400000 +2180 2412 0.400000 +2180 2443 0.400000 +2180 2474 0.400000 +2180 2524 0.400000 +2180 2536 0.400000 +2180 2568 0.400000 +2180 2628 0.400000 +2180 2730 0.400000 +2180 2800 0.400000 +2180 2810 0.400000 +2180 2847 0.400000 +2180 2923 0.400000 +2180 2974 0.400000 +2180 3055 0.400000 +2180 3173 0.400000 +2180 3183 0.400000 +2181 103 0.400000 +2181 132 0.400000 +2181 258 0.400000 +2181 323 0.400000 +2181 338 0.400000 +2181 360 0.400000 +2181 432 0.400000 +2181 435 0.400000 +2181 443 0.400000 +2181 479 0.400000 +2181 489 0.400000 +2181 492 0.400000 +2181 610 0.400000 +2181 622 0.400000 +2181 654 0.400000 +2181 683 0.400000 +2181 698 0.400000 +2181 743 0.400000 +2181 747 0.400000 +2181 770 0.400000 +2181 776 0.400000 +2181 792 0.400000 +2181 871 0.400000 +2181 873 0.400000 +2181 889 0.400000 +2181 931 0.400000 +2181 945 0.400000 +2181 995 0.400000 +2181 1072 0.400000 +2181 1093 0.400000 +2181 1141 0.400000 +2181 1179 0.400000 +2181 1184 0.400000 +2181 1226 0.400000 +2181 1238 0.400000 +2181 1347 0.400000 +2181 1379 0.400000 +2181 1513 0.400000 +2181 1591 0.400000 +2181 1609 0.400000 +2181 1677 0.400000 +2181 1686 0.400000 +2181 1726 0.400000 +2181 1765 0.400000 +2181 1773 0.400000 +2181 1792 0.400000 +2181 1914 0.400000 +2181 2050 0.400000 +2181 2064 0.400000 +2181 2066 0.400000 +2181 2154 0.400000 +2181 2218 0.400000 +2181 2219 0.400000 +2181 2228 0.400000 +2181 2308 0.400000 +2181 2340 0.400000 +2181 2407 0.400000 +2181 2424 0.400000 +2181 2704 0.400000 +2181 2745 0.400000 +2181 2771 0.400000 +2181 2774 0.400000 +2181 2923 0.400000 +2181 2925 0.400000 +2181 3108 0.400000 +2181 3153 0.400000 +2181 3164 0.400000 +2182 39 0.400000 +2182 43 0.400000 +2182 46 0.400000 +2182 69 0.400000 +2182 113 0.400000 +2182 121 0.400000 +2182 174 0.400000 +2182 309 0.400000 +2182 311 0.400000 +2182 408 0.400000 +2182 496 0.400000 +2182 592 0.400000 +2182 647 0.400000 +2182 662 0.400000 +2182 686 0.400000 +2182 696 0.400000 +2182 933 0.400000 +2182 986 0.400000 +2182 1042 0.400000 +2182 1063 0.400000 +2182 1083 0.400000 +2182 1089 0.400000 +2182 1094 0.400000 +2182 1187 0.400000 +2182 1252 0.400000 +2182 1281 0.400000 +2182 1310 0.400000 +2182 1331 0.400000 +2182 1335 0.400000 +2182 1373 0.400000 +2182 1442 0.400000 +2182 1465 0.400000 +2182 1520 0.400000 +2182 1590 0.400000 +2182 1641 0.400000 +2182 1656 0.400000 +2182 1676 0.400000 +2182 1769 0.400000 +2182 1779 0.400000 +2182 1795 0.400000 +2182 1873 0.400000 +2182 1883 0.400000 +2182 1903 0.400000 +2182 1934 0.400000 +2182 1938 0.400000 +2182 2005 0.400000 +2182 2043 0.400000 +2182 2047 0.400000 +2182 2057 0.400000 +2182 2113 0.400000 +2182 2134 0.400000 +2182 2191 0.400000 +2182 2244 0.400000 +2182 2276 0.400000 +2182 2280 0.400000 +2182 2389 0.400000 +2182 2426 0.400000 +2182 2545 0.400000 +2182 2578 0.400000 +2182 2662 0.400000 +2182 2689 0.400000 +2182 2712 0.400000 +2182 2793 0.400000 +2182 2806 0.400000 +2182 2870 0.400000 +2182 2910 0.400000 +2182 2961 0.400000 +2182 3006 0.400000 +2182 3019 0.400000 +2182 3136 0.400000 +2182 3176 0.400000 +2183 36 0.400000 +2183 94 0.400000 +2183 187 0.400000 +2183 201 0.400000 +2183 259 0.400000 +2183 262 0.400000 +2183 275 0.400000 +2183 362 0.400000 +2183 448 0.400000 +2183 459 0.400000 +2183 540 0.400000 +2183 628 0.400000 +2183 650 0.400000 +2183 653 0.400000 +2183 715 0.400000 +2183 722 0.400000 +2183 806 0.400000 +2183 902 0.400000 +2183 978 0.400000 +2183 1055 0.400000 +2183 1174 0.400000 +2183 1210 0.400000 +2183 1239 0.400000 +2183 1240 0.400000 +2183 1248 0.400000 +2183 1319 0.400000 +2183 1360 0.400000 +2183 1417 0.400000 +2183 1461 0.400000 +2183 1483 0.400000 +2183 1503 0.400000 +2183 1600 0.400000 +2183 1617 0.400000 +2183 1645 0.400000 +2183 1711 0.400000 +2183 1720 0.400000 +2183 1760 0.400000 +2183 1815 0.400000 +2183 1919 0.400000 +2183 2033 0.400000 +2183 2044 0.400000 +2183 2195 0.400000 +2183 2210 0.400000 +2183 2248 0.400000 +2183 2280 0.400000 +2183 2336 0.400000 +2183 2373 0.400000 +2183 2421 0.400000 +2183 2427 0.400000 +2183 2446 0.400000 +2183 2532 0.400000 +2183 2577 0.400000 +2183 2715 0.400000 +2183 2721 0.400000 +2183 2722 0.400000 +2183 2776 0.400000 +2183 2814 0.400000 +2183 2829 0.400000 +2183 2855 0.400000 +2183 2904 0.400000 +2183 2983 0.400000 +2183 2997 0.400000 +2183 3025 0.400000 +2183 3083 0.400000 +2183 3092 0.400000 +2183 3117 0.400000 +2183 3194 0.400000 +2184 2 0.400000 +2184 62 0.400000 +2184 63 0.400000 +2184 146 0.400000 +2184 280 0.400000 +2184 285 0.400000 +2184 308 0.400000 +2184 440 0.400000 +2184 442 0.400000 +2184 445 0.400000 +2184 449 0.400000 +2184 457 0.400000 +2184 470 0.400000 +2184 517 0.400000 +2184 533 0.400000 +2184 553 0.400000 +2184 681 0.400000 +2184 821 0.400000 +2184 896 0.400000 +2184 940 0.400000 +2184 961 0.400000 +2184 976 0.400000 +2184 1001 0.400000 +2184 1148 0.400000 +2184 1161 0.400000 +2184 1176 0.400000 +2184 1178 0.400000 +2184 1271 0.400000 +2184 1294 0.400000 +2184 1354 0.400000 +2184 1367 0.400000 +2184 1372 0.400000 +2184 1387 0.400000 +2184 1446 0.400000 +2184 1524 0.400000 +2184 1562 0.400000 +2184 1628 0.400000 +2184 1666 0.400000 +2184 1703 0.400000 +2184 1817 0.400000 +2184 1859 0.400000 +2184 1869 0.400000 +2184 1946 0.400000 +2184 1965 0.400000 +2184 1979 0.400000 +2184 2116 0.400000 +2184 2148 0.400000 +2184 2210 0.400000 +2184 2285 0.400000 +2184 2297 0.400000 +2184 2421 0.400000 +2184 2459 0.400000 +2184 2552 0.400000 +2184 2589 0.400000 +2184 2591 0.400000 +2184 2600 0.400000 +2184 2603 0.400000 +2184 2681 0.400000 +2184 2745 0.400000 +2184 2793 0.400000 +2184 2814 0.400000 +2184 2875 0.400000 +2184 2885 0.400000 +2184 2899 0.400000 +2184 2938 0.400000 +2184 2949 0.400000 +2184 3007 0.400000 +2184 3009 0.400000 +2184 3084 0.400000 +2184 3090 0.400000 +2185 11 0.400000 +2185 19 0.400000 +2185 132 0.400000 +2185 186 0.400000 +2185 189 0.400000 +2185 196 0.400000 +2185 221 0.400000 +2185 233 0.400000 +2185 367 0.400000 +2185 385 0.400000 +2185 396 0.400000 +2185 435 0.400000 +2185 441 0.400000 +2185 491 0.400000 +2185 497 0.400000 +2185 592 0.400000 +2185 610 0.400000 +2185 661 0.400000 +2185 716 0.400000 +2185 728 0.400000 +2185 809 0.400000 +2185 881 0.400000 +2185 943 0.400000 +2185 1077 0.400000 +2185 1089 0.400000 +2185 1216 0.400000 +2185 1263 0.400000 +2185 1284 0.400000 +2185 1352 0.400000 +2185 1359 0.400000 +2185 1404 0.400000 +2185 1407 0.400000 +2185 1493 0.400000 +2185 1506 0.400000 +2185 1684 0.400000 +2185 1768 0.400000 +2185 1816 0.400000 +2185 1837 0.400000 +2185 1863 0.400000 +2185 1897 0.400000 +2185 2009 0.400000 +2185 2104 0.400000 +2185 2108 0.400000 +2185 2159 0.400000 +2185 2218 0.400000 +2185 2282 0.400000 +2185 2286 0.400000 +2185 2296 0.400000 +2185 2323 0.400000 +2185 2335 0.400000 +2185 2514 0.400000 +2185 2527 0.400000 +2185 2550 0.400000 +2185 2555 0.400000 +2185 2572 0.400000 +2185 2641 0.400000 +2185 2649 0.400000 +2185 2659 0.400000 +2185 2695 0.400000 +2185 2705 0.400000 +2185 2864 0.400000 +2185 2910 0.400000 +2185 2943 0.400000 +2185 2947 0.400000 +2185 2981 0.400000 +2185 3003 0.400000 +2185 3074 0.400000 +2185 3113 0.400000 +2185 3120 0.400000 +2185 3126 0.400000 +2185 3149 0.400000 +2186 55 0.400000 +2186 74 0.400000 +2186 78 0.400000 +2186 92 0.400000 +2186 130 0.400000 +2186 188 0.400000 +2186 250 0.400000 +2186 321 0.400000 +2186 330 0.400000 +2186 348 0.400000 +2186 351 0.400000 +2186 391 0.400000 +2186 396 0.400000 +2186 397 0.400000 +2186 418 0.400000 +2186 428 0.400000 +2186 476 0.400000 +2186 511 0.400000 +2186 567 0.400000 +2186 637 0.400000 +2186 667 0.400000 +2186 712 0.400000 +2186 902 0.400000 +2186 967 0.400000 +2186 981 0.400000 +2186 1017 0.400000 +2186 1044 0.400000 +2186 1120 0.400000 +2186 1180 0.400000 +2186 1262 0.400000 +2186 1283 0.400000 +2186 1287 0.400000 +2186 1345 0.400000 +2186 1347 0.400000 +2186 1418 0.400000 +2186 1476 0.400000 +2186 1526 0.400000 +2186 1750 0.400000 +2186 1872 0.400000 +2186 1957 0.400000 +2186 2080 0.400000 +2186 2114 0.400000 +2186 2206 0.400000 +2186 2324 0.400000 +2186 2328 0.400000 +2186 2349 0.400000 +2186 2383 0.400000 +2186 2413 0.400000 +2186 2416 0.400000 +2186 2462 0.400000 +2186 2504 0.400000 +2186 2643 0.400000 +2186 2865 0.400000 +2186 2951 0.400000 +2186 2994 0.400000 +2186 3072 0.400000 +2186 3078 0.400000 +2186 3106 0.400000 +2186 3140 0.400000 +2186 3159 0.400000 +2187 45 0.400000 +2187 49 0.400000 +2187 58 0.400000 +2187 93 0.400000 +2187 99 0.400000 +2187 100 0.400000 +2187 129 0.400000 +2187 264 0.400000 +2187 270 0.400000 +2187 274 0.400000 +2187 313 0.400000 +2187 342 0.400000 +2187 372 0.400000 +2187 373 0.400000 +2187 436 0.400000 +2187 467 0.400000 +2187 552 0.400000 +2187 577 0.400000 +2187 711 0.400000 +2187 736 0.400000 +2187 756 0.400000 +2187 820 0.400000 +2187 830 0.400000 +2187 892 0.400000 +2187 896 0.400000 +2187 944 0.400000 +2187 949 0.400000 +2187 1021 0.400000 +2187 1022 0.400000 +2187 1071 0.400000 +2187 1118 0.400000 +2187 1122 0.400000 +2187 1258 0.400000 +2187 1368 0.400000 +2187 1401 0.400000 +2187 1418 0.400000 +2187 1431 0.400000 +2187 1450 0.400000 +2187 1494 0.400000 +2187 1496 0.400000 +2187 1521 0.400000 +2187 1533 0.400000 +2187 1699 0.400000 +2187 1716 0.400000 +2187 1736 0.400000 +2187 1763 0.400000 +2187 1764 0.400000 +2187 1793 0.400000 +2187 1803 0.400000 +2187 1823 0.400000 +2187 1831 0.400000 +2187 1853 0.400000 +2187 1869 0.400000 +2187 1970 0.400000 +2187 1993 0.400000 +2187 2059 0.400000 +2187 2182 0.400000 +2187 2298 0.400000 +2187 2315 0.400000 +2187 2355 0.400000 +2187 2441 0.400000 +2187 2443 0.400000 +2187 2446 0.400000 +2187 2459 0.400000 +2187 2504 0.400000 +2187 2524 0.400000 +2187 2685 0.400000 +2187 2690 0.400000 +2187 2798 0.400000 +2187 2805 0.400000 +2187 2806 0.400000 +2187 2850 0.400000 +2187 2859 0.400000 +2187 2965 0.400000 +2187 3037 0.400000 +2187 3153 0.400000 +2188 61 0.400000 +2188 180 0.400000 +2188 204 0.400000 +2188 212 0.400000 +2188 301 0.400000 +2188 313 0.400000 +2188 326 0.400000 +2188 429 0.400000 +2188 449 0.400000 +2188 459 0.400000 +2188 481 0.400000 +2188 560 0.400000 +2188 575 0.400000 +2188 635 0.400000 +2188 826 0.400000 +2188 854 0.400000 +2188 877 0.400000 +2188 914 0.400000 +2188 955 0.400000 +2188 1078 0.400000 +2188 1170 0.400000 +2188 1201 0.400000 +2188 1229 0.400000 +2188 1268 0.400000 +2188 1345 0.400000 +2188 1369 0.400000 +2188 1399 0.400000 +2188 1410 0.400000 +2188 1418 0.400000 +2188 1437 0.400000 +2188 1467 0.400000 +2188 1494 0.400000 +2188 1537 0.400000 +2188 1583 0.400000 +2188 1617 0.400000 +2188 1625 0.400000 +2188 1674 0.400000 +2188 1695 0.400000 +2188 1740 0.400000 +2188 1806 0.400000 +2188 1841 0.400000 +2188 1987 0.400000 +2188 2063 0.400000 +2188 2072 0.400000 +2188 2080 0.400000 +2188 2144 0.400000 +2188 2147 0.400000 +2188 2160 0.400000 +2188 2189 0.400000 +2188 2205 0.400000 +2188 2267 0.400000 +2188 2268 0.400000 +2188 2296 0.400000 +2188 2302 0.400000 +2188 2339 0.400000 +2188 2347 0.400000 +2188 2422 0.400000 +2188 2447 0.400000 +2188 2560 0.400000 +2188 2604 0.400000 +2188 2618 0.400000 +2188 2643 0.400000 +2188 2699 0.400000 +2188 2704 0.400000 +2188 2748 0.400000 +2188 2773 0.400000 +2188 2775 0.400000 +2188 2832 0.400000 +2188 2893 0.400000 +2188 2929 0.400000 +2188 2963 0.400000 +2188 2994 0.400000 +2188 3035 0.400000 +2188 3079 0.400000 +2188 3095 0.400000 +2188 3105 0.400000 +2188 3165 0.400000 +2188 3182 0.400000 +2188 3190 0.400000 +2189 101 0.400000 +2189 123 0.400000 +2189 126 0.400000 +2189 157 0.400000 +2189 205 0.400000 +2189 341 0.400000 +2189 364 0.400000 +2189 470 0.400000 +2189 516 0.400000 +2189 577 0.400000 +2189 584 0.400000 +2189 630 0.400000 +2189 789 0.400000 +2189 795 0.400000 +2189 851 0.400000 +2189 925 0.400000 +2189 1285 0.400000 +2189 1352 0.400000 +2189 1353 0.400000 +2189 1355 0.400000 +2189 1472 0.400000 +2189 1474 0.400000 +2189 1493 0.400000 +2189 1605 0.400000 +2189 1623 0.400000 +2189 1654 0.400000 +2189 1691 0.400000 +2189 1754 0.400000 +2189 1780 0.400000 +2189 1808 0.400000 +2189 1815 0.400000 +2189 1829 0.400000 +2189 1859 0.400000 +2189 1992 0.400000 +2189 2058 0.400000 +2189 2097 0.400000 +2189 2136 0.400000 +2189 2138 0.400000 +2189 2188 0.400000 +2189 2245 0.400000 +2189 2274 0.400000 +2189 2281 0.400000 +2189 2304 0.400000 +2189 2338 0.400000 +2189 2437 0.400000 +2189 2446 0.400000 +2189 2450 0.400000 +2189 2462 0.400000 +2189 2579 0.400000 +2189 2630 0.400000 +2189 2718 0.400000 +2189 2742 0.400000 +2189 2752 0.400000 +2189 2836 0.400000 +2189 2854 0.400000 +2189 2858 0.400000 +2189 2899 0.400000 +2189 2943 0.400000 +2189 3023 0.400000 +2189 3059 0.400000 +2189 3105 0.400000 +2190 19 0.400000 +2190 53 0.400000 +2190 96 0.400000 +2190 165 0.400000 +2190 184 0.400000 +2190 272 0.400000 +2190 278 0.400000 +2190 294 0.400000 +2190 307 0.400000 +2190 341 0.400000 +2190 347 0.400000 +2190 375 0.400000 +2190 415 0.400000 +2190 540 0.400000 +2190 627 0.400000 +2190 638 0.400000 +2190 675 0.400000 +2190 695 0.400000 +2190 827 0.400000 +2190 867 0.400000 +2190 881 0.400000 +2190 897 0.400000 +2190 952 0.400000 +2190 988 0.400000 +2190 1001 0.400000 +2190 1081 0.400000 +2190 1093 0.400000 +2190 1102 0.400000 +2190 1106 0.400000 +2190 1131 0.400000 +2190 1133 0.400000 +2190 1140 0.400000 +2190 1178 0.400000 +2190 1184 0.400000 +2190 1247 0.400000 +2190 1325 0.400000 +2190 1336 0.400000 +2190 1338 0.400000 +2190 1472 0.400000 +2190 1544 0.400000 +2190 1559 0.400000 +2190 1607 0.400000 +2190 1671 0.400000 +2190 1680 0.400000 +2190 1762 0.400000 +2190 1839 0.400000 +2190 1886 0.400000 +2190 1962 0.400000 +2190 1986 0.400000 +2190 2083 0.400000 +2190 2173 0.400000 +2190 2251 0.400000 +2190 2290 0.400000 +2190 2313 0.400000 +2190 2325 0.400000 +2190 2334 0.400000 +2190 2404 0.400000 +2190 2453 0.400000 +2190 2503 0.400000 +2190 2535 0.400000 +2190 2582 0.400000 +2190 2634 0.400000 +2190 2644 0.400000 +2190 2660 0.400000 +2190 2673 0.400000 +2190 2736 0.400000 +2190 2737 0.400000 +2190 2766 0.400000 +2190 2774 0.400000 +2190 2859 0.400000 +2190 2879 0.400000 +2190 2966 0.400000 +2190 2969 0.400000 +2190 2985 0.400000 +2190 3042 0.400000 +2190 3135 0.400000 +2191 48 0.400000 +2191 62 0.400000 +2191 130 0.400000 +2191 271 0.400000 +2191 376 0.400000 +2191 377 0.400000 +2191 387 0.400000 +2191 414 0.400000 +2191 456 0.400000 +2191 499 0.400000 +2191 511 0.400000 +2191 551 0.400000 +2191 555 0.400000 +2191 636 0.400000 +2191 648 0.400000 +2191 685 0.400000 +2191 746 0.400000 +2191 792 0.400000 +2191 851 0.400000 +2191 881 0.400000 +2191 1011 0.400000 +2191 1074 0.400000 +2191 1116 0.400000 +2191 1146 0.400000 +2191 1157 0.400000 +2191 1158 0.400000 +2191 1177 0.400000 +2191 1179 0.400000 +2191 1194 0.400000 +2191 1231 0.400000 +2191 1236 0.400000 +2191 1268 0.400000 +2191 1397 0.400000 +2191 1423 0.400000 +2191 1531 0.400000 +2191 1608 0.400000 +2191 1609 0.400000 +2191 1613 0.400000 +2191 1888 0.400000 +2191 1895 0.400000 +2191 1983 0.400000 +2191 2061 0.400000 +2191 2122 0.400000 +2191 2134 0.400000 +2191 2147 0.400000 +2191 2317 0.400000 +2191 2320 0.400000 +2191 2349 0.400000 +2191 2420 0.400000 +2191 2426 0.400000 +2191 2463 0.400000 +2191 2487 0.400000 +2191 2694 0.400000 +2191 2750 0.400000 +2191 2752 0.400000 +2191 2779 0.400000 +2191 2809 0.400000 +2191 2842 0.400000 +2191 2862 0.400000 +2191 2879 0.400000 +2191 2953 0.400000 +2191 2991 0.400000 +2191 3087 0.400000 +2192 17 0.400000 +2192 50 0.400000 +2192 54 0.400000 +2192 151 0.400000 +2192 216 0.400000 +2192 313 0.400000 +2192 367 0.400000 +2192 503 0.400000 +2192 526 0.400000 +2192 537 0.400000 +2192 560 0.400000 +2192 617 0.400000 +2192 639 0.400000 +2192 688 0.400000 +2192 745 0.400000 +2192 770 0.400000 +2192 922 0.400000 +2192 928 0.400000 +2192 931 0.400000 +2192 1049 0.400000 +2192 1050 0.400000 +2192 1059 0.400000 +2192 1173 0.400000 +2192 1214 0.400000 +2192 1288 0.400000 +2192 1404 0.400000 +2192 1499 0.400000 +2192 1559 0.400000 +2192 1599 0.400000 +2192 1633 0.400000 +2192 1641 0.400000 +2192 1774 0.400000 +2192 1941 0.400000 +2192 1971 0.400000 +2192 2013 0.400000 +2192 2042 0.400000 +2192 2084 0.400000 +2192 2103 0.400000 +2192 2113 0.400000 +2192 2221 0.400000 +2192 2370 0.400000 +2192 2379 0.400000 +2192 2464 0.400000 +2192 2525 0.400000 +2192 2556 0.400000 +2192 2689 0.400000 +2192 2716 0.400000 +2192 2776 0.400000 +2192 2785 0.400000 +2192 2787 0.400000 +2192 2814 0.400000 +2192 2868 0.400000 +2192 2887 0.400000 +2192 2893 0.400000 +2192 3077 0.400000 +2192 3078 0.400000 +2192 3101 0.400000 +2192 3102 0.400000 +2192 3146 0.400000 +2192 3186 0.400000 +2193 6 0.400000 +2193 8 0.400000 +2193 117 0.400000 +2193 175 0.400000 +2193 215 0.400000 +2193 218 0.400000 +2193 446 0.400000 +2193 459 0.400000 +2193 477 0.400000 +2193 519 0.400000 +2193 524 0.400000 +2193 547 0.400000 +2193 628 0.400000 +2193 687 0.400000 +2193 724 0.400000 +2193 746 0.400000 +2193 753 0.400000 +2193 787 0.400000 +2193 805 0.400000 +2193 862 0.400000 +2193 873 0.400000 +2193 1047 0.400000 +2193 1158 0.400000 +2193 1215 0.400000 +2193 1270 0.400000 +2193 1273 0.400000 +2193 1312 0.400000 +2193 1390 0.400000 +2193 1519 0.400000 +2193 1557 0.400000 +2193 1586 0.400000 +2193 1587 0.400000 +2193 1591 0.400000 +2193 1617 0.400000 +2193 1636 0.400000 +2193 1649 0.400000 +2193 1652 0.400000 +2193 1710 0.400000 +2193 1837 0.400000 +2193 1886 0.400000 +2193 1911 0.400000 +2193 1962 0.400000 +2193 1998 0.400000 +2193 2039 0.400000 +2193 2073 0.400000 +2193 2113 0.400000 +2193 2117 0.400000 +2193 2160 0.400000 +2193 2161 0.400000 +2193 2163 0.400000 +2193 2171 0.400000 +2193 2272 0.400000 +2193 2302 0.400000 +2193 2469 0.400000 +2193 2552 0.400000 +2193 2629 0.400000 +2193 2635 0.400000 +2193 2686 0.400000 +2193 2718 0.400000 +2193 2729 0.400000 +2193 2776 0.400000 +2193 2806 0.400000 +2193 2864 0.400000 +2193 2963 0.400000 +2193 2967 0.400000 +2193 3048 0.400000 +2193 3063 0.400000 +2193 3148 0.400000 +2193 3180 0.400000 +2193 3190 0.400000 +2194 51 0.400000 +2194 69 0.400000 +2194 135 0.400000 +2194 189 0.400000 +2194 205 0.400000 +2194 243 0.400000 +2194 346 0.400000 +2194 347 0.400000 +2194 440 0.400000 +2194 464 0.400000 +2194 522 0.400000 +2194 528 0.400000 +2194 552 0.400000 +2194 595 0.400000 +2194 628 0.400000 +2194 642 0.400000 +2194 696 0.400000 +2194 757 0.400000 +2194 761 0.400000 +2194 766 0.400000 +2194 799 0.400000 +2194 823 0.400000 +2194 939 0.400000 +2194 954 0.400000 +2194 983 0.400000 +2194 1078 0.400000 +2194 1182 0.400000 +2194 1185 0.400000 +2194 1229 0.400000 +2194 1256 0.400000 +2194 1382 0.400000 +2194 1519 0.400000 +2194 1542 0.400000 +2194 1550 0.400000 +2194 1619 0.400000 +2194 1669 0.400000 +2194 1685 0.400000 +2194 1771 0.400000 +2194 1834 0.400000 +2194 1912 0.400000 +2194 1929 0.400000 +2194 2069 0.400000 +2194 2125 0.400000 +2194 2160 0.400000 +2194 2161 0.400000 +2194 2275 0.400000 +2194 2298 0.400000 +2194 2309 0.400000 +2194 2411 0.400000 +2194 2526 0.400000 +2194 2534 0.400000 +2194 2556 0.400000 +2194 2606 0.400000 +2194 2622 0.400000 +2194 2624 0.400000 +2194 2836 0.400000 +2194 2871 0.400000 +2194 2929 0.400000 +2194 3003 0.400000 +2194 3081 0.400000 +2194 3145 0.400000 +2195 50 0.400000 +2195 63 0.400000 +2195 299 0.400000 +2195 343 0.400000 +2195 344 0.400000 +2195 356 0.400000 +2195 372 0.400000 +2195 511 0.400000 +2195 518 0.400000 +2195 587 0.400000 +2195 640 0.400000 +2195 702 0.400000 +2195 791 0.400000 +2195 831 0.400000 +2195 839 0.400000 +2195 958 0.400000 +2195 974 0.400000 +2195 995 0.400000 +2195 1011 0.400000 +2195 1161 0.400000 +2195 1164 0.400000 +2195 1276 0.400000 +2195 1348 0.400000 +2195 1363 0.400000 +2195 1475 0.400000 +2195 1505 0.400000 +2195 1561 0.400000 +2195 1601 0.400000 +2195 1635 0.400000 +2195 1732 0.400000 +2195 1765 0.400000 +2195 1873 0.400000 +2195 1992 0.400000 +2195 2033 0.400000 +2195 2048 0.400000 +2195 2102 0.400000 +2195 2115 0.400000 +2195 2162 0.400000 +2195 2258 0.400000 +2195 2297 0.400000 +2195 2340 0.400000 +2195 2349 0.400000 +2195 2352 0.400000 +2195 2373 0.400000 +2195 2477 0.400000 +2195 2497 0.400000 +2195 2543 0.400000 +2195 2553 0.400000 +2195 2626 0.400000 +2195 2664 0.400000 +2195 2690 0.400000 +2195 2742 0.400000 +2195 2761 0.400000 +2195 2889 0.400000 +2195 2951 0.400000 +2195 3035 0.400000 +2195 3044 0.400000 +2195 3050 0.400000 +2195 3059 0.400000 +2195 3072 0.400000 +2195 3089 0.400000 +2195 3090 0.400000 +2195 3091 0.400000 +2195 3137 0.400000 +2195 3157 0.400000 +2195 3170 0.400000 +2195 3179 0.400000 +2195 3194 0.400000 +2196 4 0.400000 +2196 11 0.400000 +2196 20 0.400000 +2196 36 0.400000 +2196 37 0.400000 +2196 146 0.400000 +2196 199 0.400000 +2196 273 0.400000 +2196 373 0.400000 +2196 428 0.400000 +2196 469 0.400000 +2196 598 0.400000 +2196 788 0.400000 +2196 842 0.400000 +2196 1009 0.400000 +2196 1027 0.400000 +2196 1116 0.400000 +2196 1185 0.400000 +2196 1299 0.400000 +2196 1308 0.400000 +2196 1352 0.400000 +2196 1366 0.400000 +2196 1410 0.400000 +2196 1420 0.400000 +2196 1476 0.400000 +2196 1538 0.400000 +2196 1546 0.400000 +2196 1624 0.400000 +2196 1687 0.400000 +2196 1688 0.400000 +2196 1698 0.400000 +2196 1803 0.400000 +2196 1837 0.400000 +2196 2006 0.400000 +2196 2057 0.400000 +2196 2130 0.400000 +2196 2147 0.400000 +2196 2182 0.400000 +2196 2305 0.400000 +2196 2329 0.400000 +2196 2350 0.400000 +2196 2408 0.400000 +2196 2454 0.400000 +2196 2484 0.400000 +2196 2497 0.400000 +2196 2506 0.400000 +2196 2535 0.400000 +2196 2629 0.400000 +2196 2754 0.400000 +2196 2765 0.400000 +2196 2778 0.400000 +2196 2799 0.400000 +2196 2833 0.400000 +2196 2897 0.400000 +2196 2905 0.400000 +2196 2989 0.400000 +2197 32 0.400000 +2197 52 0.400000 +2197 55 0.400000 +2197 79 0.400000 +2197 232 0.400000 +2197 261 0.400000 +2197 330 0.400000 +2197 377 0.400000 +2197 398 0.400000 +2197 475 0.400000 +2197 525 0.400000 +2197 671 0.400000 +2197 733 0.400000 +2197 735 0.400000 +2197 802 0.400000 +2197 840 0.400000 +2197 847 0.400000 +2197 851 0.400000 +2197 892 0.400000 +2197 895 0.400000 +2197 924 0.400000 +2197 1019 0.400000 +2197 1059 0.400000 +2197 1123 0.400000 +2197 1214 0.400000 +2197 1263 0.400000 +2197 1316 0.400000 +2197 1335 0.400000 +2197 1336 0.400000 +2197 1363 0.400000 +2197 1409 0.400000 +2197 1425 0.400000 +2197 1487 0.400000 +2197 1576 0.400000 +2197 1678 0.400000 +2197 1739 0.400000 +2197 1803 0.400000 +2197 1808 0.400000 +2197 1905 0.400000 +2197 1987 0.400000 +2197 2058 0.400000 +2197 2076 0.400000 +2197 2083 0.400000 +2197 2113 0.400000 +2197 2159 0.400000 +2197 2191 0.400000 +2197 2218 0.400000 +2197 2267 0.400000 +2197 2281 0.400000 +2197 2289 0.400000 +2197 2318 0.400000 +2197 2340 0.400000 +2197 2352 0.400000 +2197 2432 0.400000 +2197 2475 0.400000 +2197 2586 0.400000 +2197 2613 0.400000 +2197 2686 0.400000 +2197 2695 0.400000 +2197 2751 0.400000 +2197 2759 0.400000 +2197 2813 0.400000 +2197 2919 0.400000 +2197 2943 0.400000 +2197 2963 0.400000 +2197 2967 0.400000 +2197 2993 0.400000 +2197 3065 0.400000 +2197 3069 0.400000 +2197 3096 0.400000 +2197 3110 0.400000 +2197 3116 0.400000 +2197 3138 0.400000 +2197 3197 0.400000 +2198 27 0.400000 +2198 85 0.400000 +2198 113 0.400000 +2198 157 0.400000 +2198 161 0.400000 +2198 207 0.400000 +2198 244 0.400000 +2198 277 0.400000 +2198 296 0.400000 +2198 322 0.400000 +2198 348 0.400000 +2198 373 0.400000 +2198 427 0.400000 +2198 476 0.400000 +2198 495 0.400000 +2198 524 0.400000 +2198 561 0.400000 +2198 637 0.400000 +2198 653 0.400000 +2198 713 0.400000 +2198 831 0.400000 +2198 857 0.400000 +2198 977 0.400000 +2198 990 0.400000 +2198 1070 0.400000 +2198 1091 0.400000 +2198 1192 0.400000 +2198 1193 0.400000 +2198 1240 0.400000 +2198 1253 0.400000 +2198 1362 0.400000 +2198 1373 0.400000 +2198 1375 0.400000 +2198 1380 0.400000 +2198 1451 0.400000 +2198 1455 0.400000 +2198 1459 0.400000 +2198 1538 0.400000 +2198 1559 0.400000 +2198 1570 0.400000 +2198 1620 0.400000 +2198 1725 0.400000 +2198 1819 0.400000 +2198 1828 0.400000 +2198 1838 0.400000 +2198 1884 0.400000 +2198 1954 0.400000 +2198 2125 0.400000 +2198 2165 0.400000 +2198 2200 0.400000 +2198 2216 0.400000 +2198 2408 0.400000 +2198 2618 0.400000 +2198 2626 0.400000 +2198 2627 0.400000 +2198 2663 0.400000 +2198 2691 0.400000 +2198 2701 0.400000 +2198 2753 0.400000 +2198 2801 0.400000 +2198 2900 0.400000 +2198 2924 0.400000 +2198 2933 0.400000 +2198 2938 0.400000 +2198 2983 0.400000 +2198 3044 0.400000 +2198 3148 0.400000 +2199 1 0.400000 +2199 48 0.400000 +2199 120 0.400000 +2199 250 0.400000 +2199 362 0.400000 +2199 365 0.400000 +2199 429 0.400000 +2199 518 0.400000 +2199 694 0.400000 +2199 695 0.400000 +2199 865 0.400000 +2199 867 0.400000 +2199 936 0.400000 +2199 971 0.400000 +2199 1024 0.400000 +2199 1087 0.400000 +2199 1109 0.400000 +2199 1118 0.400000 +2199 1125 0.400000 +2199 1222 0.400000 +2199 1237 0.400000 +2199 1257 0.400000 +2199 1278 0.400000 +2199 1304 0.400000 +2199 1376 0.400000 +2199 1379 0.400000 +2199 1391 0.400000 +2199 1428 0.400000 +2199 1470 0.400000 +2199 1478 0.400000 +2199 1605 0.400000 +2199 1634 0.400000 +2199 1674 0.400000 +2199 1690 0.400000 +2199 1693 0.400000 +2199 1702 0.400000 +2199 1772 0.400000 +2199 1833 0.400000 +2199 1895 0.400000 +2199 1938 0.400000 +2199 1991 0.400000 +2199 2075 0.400000 +2199 2130 0.400000 +2199 2135 0.400000 +2199 2156 0.400000 +2199 2168 0.400000 +2199 2171 0.400000 +2199 2330 0.400000 +2199 2466 0.400000 +2199 2527 0.400000 +2199 2538 0.400000 +2199 2568 0.400000 +2199 2608 0.400000 +2199 2692 0.400000 +2199 2740 0.400000 +2199 2794 0.400000 +2199 2839 0.400000 +2199 2872 0.400000 +2199 2920 0.400000 +2199 2958 0.400000 +2199 2977 0.400000 +2199 2998 0.400000 +2199 3012 0.400000 +2199 3053 0.400000 +2199 3097 0.400000 +2199 3099 0.400000 +2199 3130 0.400000 +2199 3163 0.400000 +2199 3164 0.400000 +2199 3184 0.400000 +2200 2 0.400000 +2200 61 0.400000 +2200 107 0.400000 +2200 146 0.400000 +2200 241 0.400000 +2200 409 0.400000 +2200 416 0.400000 +2200 573 0.400000 +2200 648 0.400000 +2200 695 0.400000 +2200 729 0.400000 +2200 755 0.400000 +2200 788 0.400000 +2200 818 0.400000 +2200 876 0.400000 +2200 908 0.400000 +2200 925 0.400000 +2200 1119 0.400000 +2200 1169 0.400000 +2200 1200 0.400000 +2200 1369 0.400000 +2200 1401 0.400000 +2200 1409 0.400000 +2200 1421 0.400000 +2200 1485 0.400000 +2200 1502 0.400000 +2200 1663 0.400000 +2200 1678 0.400000 +2200 1740 0.400000 +2200 1834 0.400000 +2200 1869 0.400000 +2200 1887 0.400000 +2200 1937 0.400000 +2200 1985 0.400000 +2200 2024 0.400000 +2200 2122 0.400000 +2200 2136 0.400000 +2200 2168 0.400000 +2200 2218 0.400000 +2200 2257 0.400000 +2200 2310 0.400000 +2200 2349 0.400000 +2200 2390 0.400000 +2200 2395 0.400000 +2200 2424 0.400000 +2200 2462 0.400000 +2200 2524 0.400000 +2200 2540 0.400000 +2200 2648 0.400000 +2200 2654 0.400000 +2200 2657 0.400000 +2200 2658 0.400000 +2200 2660 0.400000 +2200 2678 0.400000 +2200 2693 0.400000 +2200 2735 0.400000 +2200 2760 0.400000 +2200 2794 0.400000 +2200 2907 0.400000 +2200 2972 0.400000 +2200 3033 0.400000 +2200 3034 0.400000 +2200 3086 0.400000 +2200 3103 0.400000 +2200 3127 0.400000 +2200 3139 0.400000 +2200 3195 0.400000 +2201 79 0.400000 +2201 100 0.400000 +2201 196 0.400000 +2201 209 0.400000 +2201 226 0.400000 +2201 231 0.400000 +2201 255 0.400000 +2201 272 0.400000 +2201 318 0.400000 +2201 343 0.400000 +2201 345 0.400000 +2201 452 0.400000 +2201 468 0.400000 +2201 485 0.400000 +2201 506 0.400000 +2201 558 0.400000 +2201 648 0.400000 +2201 727 0.400000 +2201 817 0.400000 +2201 869 0.400000 +2201 926 0.400000 +2201 999 0.400000 +2201 1102 0.400000 +2201 1113 0.400000 +2201 1157 0.400000 +2201 1182 0.400000 +2201 1428 0.400000 +2201 1447 0.400000 +2201 1563 0.400000 +2201 1566 0.400000 +2201 1681 0.400000 +2201 1762 0.400000 +2201 1793 0.400000 +2201 1797 0.400000 +2201 1822 0.400000 +2201 1864 0.400000 +2201 1978 0.400000 +2201 1979 0.400000 +2201 1992 0.400000 +2201 2030 0.400000 +2201 2040 0.400000 +2201 2140 0.400000 +2201 2163 0.400000 +2201 2254 0.400000 +2201 2255 0.400000 +2201 2286 0.400000 +2201 2389 0.400000 +2201 2475 0.400000 +2201 2510 0.400000 +2201 2534 0.400000 +2201 2572 0.400000 +2201 2573 0.400000 +2201 2627 0.400000 +2201 2678 0.400000 +2201 2754 0.400000 +2201 2777 0.400000 +2201 2858 0.400000 +2201 2867 0.400000 +2201 2899 0.400000 +2201 2912 0.400000 +2201 3000 0.400000 +2201 3052 0.400000 +2201 3148 0.400000 +2201 3184 0.400000 +2202 6 0.400000 +2202 24 0.400000 +2202 99 0.400000 +2202 105 0.400000 +2202 200 0.400000 +2202 353 0.400000 +2202 355 0.400000 +2202 383 0.400000 +2202 384 0.400000 +2202 398 0.400000 +2202 407 0.400000 +2202 435 0.400000 +2202 446 0.400000 +2202 448 0.400000 +2202 479 0.400000 +2202 539 0.400000 +2202 631 0.400000 +2202 664 0.400000 +2202 815 0.400000 +2202 1007 0.400000 +2202 1048 0.400000 +2202 1106 0.400000 +2202 1142 0.400000 +2202 1150 0.400000 +2202 1205 0.400000 +2202 1409 0.400000 +2202 1605 0.400000 +2202 1653 0.400000 +2202 1657 0.400000 +2202 1702 0.400000 +2202 1713 0.400000 +2202 1761 0.400000 +2202 1812 0.400000 +2202 1862 0.400000 +2202 1901 0.400000 +2202 1923 0.400000 +2202 1933 0.400000 +2202 2103 0.400000 +2202 2128 0.400000 +2202 2220 0.400000 +2202 2236 0.400000 +2202 2358 0.400000 +2202 2410 0.400000 +2202 2575 0.400000 +2202 2881 0.400000 +2202 2888 0.400000 +2202 2904 0.400000 +2202 2959 0.400000 +2202 3021 0.400000 +2202 3054 0.400000 +2202 3069 0.400000 +2202 3070 0.400000 +2202 3151 0.400000 +2203 93 0.400000 +2203 277 0.400000 +2203 421 0.400000 +2203 493 0.400000 +2203 572 0.400000 +2203 586 0.400000 +2203 655 0.400000 +2203 700 0.400000 +2203 786 0.400000 +2203 838 0.400000 +2203 873 0.400000 +2203 876 0.400000 +2203 1011 0.400000 +2203 1053 0.400000 +2203 1061 0.400000 +2203 1118 0.400000 +2203 1132 0.400000 +2203 1142 0.400000 +2203 1198 0.400000 +2203 1233 0.400000 +2203 1323 0.400000 +2203 1345 0.400000 +2203 1357 0.400000 +2203 1416 0.400000 +2203 1486 0.400000 +2203 1494 0.400000 +2203 1570 0.400000 +2203 1578 0.400000 +2203 1665 0.400000 +2203 1721 0.400000 +2203 1733 0.400000 +2203 1833 0.400000 +2203 1837 0.400000 +2203 1857 0.400000 +2203 1863 0.400000 +2203 1952 0.400000 +2203 1978 0.400000 +2203 2048 0.400000 +2203 2110 0.400000 +2203 2118 0.400000 +2203 2179 0.400000 +2203 2243 0.400000 +2203 2266 0.400000 +2203 2301 0.400000 +2203 2324 0.400000 +2203 2412 0.400000 +2203 2435 0.400000 +2203 2457 0.400000 +2203 2522 0.400000 +2203 2535 0.400000 +2203 2582 0.400000 +2203 2639 0.400000 +2203 2657 0.400000 +2203 2701 0.400000 +2203 2726 0.400000 +2203 2731 0.400000 +2203 2795 0.400000 +2203 2940 0.400000 +2203 2963 0.400000 +2204 7 0.400000 +2204 74 0.400000 +2204 167 0.400000 +2204 205 0.400000 +2204 225 0.400000 +2204 228 0.400000 +2204 244 0.400000 +2204 411 0.400000 +2204 469 0.400000 +2204 495 0.400000 +2204 537 0.400000 +2204 600 0.400000 +2204 655 0.400000 +2204 751 0.400000 +2204 827 0.400000 +2204 861 0.400000 +2204 940 0.400000 +2204 955 0.400000 +2204 966 0.400000 +2204 1116 0.400000 +2204 1211 0.400000 +2204 1221 0.400000 +2204 1222 0.400000 +2204 1238 0.400000 +2204 1272 0.400000 +2204 1401 0.400000 +2204 1405 0.400000 +2204 1435 0.400000 +2204 1471 0.400000 +2204 1477 0.400000 +2204 1552 0.400000 +2204 1559 0.400000 +2204 1757 0.400000 +2204 1827 0.400000 +2204 1850 0.400000 +2204 2009 0.400000 +2204 2032 0.400000 +2204 2080 0.400000 +2204 2121 0.400000 +2204 2156 0.400000 +2204 2218 0.400000 +2204 2232 0.400000 +2204 2291 0.400000 +2204 2323 0.400000 +2204 2328 0.400000 +2204 2335 0.400000 +2204 2407 0.400000 +2204 2428 0.400000 +2204 2451 0.400000 +2204 2505 0.400000 +2204 2506 0.400000 +2204 2565 0.400000 +2204 2583 0.400000 +2204 2632 0.400000 +2204 2646 0.400000 +2204 2671 0.400000 +2204 2747 0.400000 +2204 2809 0.400000 +2204 2824 0.400000 +2204 2838 0.400000 +2204 2856 0.400000 +2204 2858 0.400000 +2204 2867 0.400000 +2204 2912 0.400000 +2204 2949 0.400000 +2204 3023 0.400000 +2204 3038 0.400000 +2204 3044 0.400000 +2204 3080 0.400000 +2205 88 0.400000 +2205 154 0.400000 +2205 290 0.400000 +2205 346 0.400000 +2205 351 0.400000 +2205 366 0.400000 +2205 399 0.400000 +2205 424 0.400000 +2205 465 0.400000 +2205 547 0.400000 +2205 573 0.400000 +2205 737 0.400000 +2205 773 0.400000 +2205 806 0.400000 +2205 851 0.400000 +2205 881 0.400000 +2205 882 0.400000 +2205 889 0.400000 +2205 921 0.400000 +2205 952 0.400000 +2205 963 0.400000 +2205 1115 0.400000 +2205 1121 0.400000 +2205 1218 0.400000 +2205 1244 0.400000 +2205 1247 0.400000 +2205 1285 0.400000 +2205 1304 0.400000 +2205 1498 0.400000 +2205 1564 0.400000 +2205 1615 0.400000 +2205 1718 0.400000 +2205 1741 0.400000 +2205 1808 0.400000 +2205 2068 0.400000 +2205 2085 0.400000 +2205 2179 0.400000 +2205 2253 0.400000 +2205 2262 0.400000 +2205 2324 0.400000 +2205 2329 0.400000 +2205 2338 0.400000 +2205 2403 0.400000 +2205 2504 0.400000 +2205 2508 0.400000 +2205 2538 0.400000 +2205 2644 0.400000 +2205 2674 0.400000 +2205 2683 0.400000 +2205 2767 0.400000 +2205 2794 0.400000 +2205 2835 0.400000 +2205 2857 0.400000 +2205 2858 0.400000 +2205 2876 0.400000 +2205 2993 0.400000 +2205 3012 0.400000 +2205 3054 0.400000 +2205 3103 0.400000 +2206 15 0.400000 +2206 30 0.400000 +2206 75 0.400000 +2206 96 0.400000 +2206 144 0.400000 +2206 149 0.400000 +2206 191 0.400000 +2206 247 0.400000 +2206 269 0.400000 +2206 308 0.400000 +2206 310 0.400000 +2206 340 0.400000 +2206 359 0.400000 +2206 424 0.400000 +2206 429 0.400000 +2206 468 0.400000 +2206 470 0.400000 +2206 556 0.400000 +2206 570 0.400000 +2206 604 0.400000 +2206 639 0.400000 +2206 652 0.400000 +2206 678 0.400000 +2206 767 0.400000 +2206 791 0.400000 +2206 807 0.400000 +2206 811 0.400000 +2206 843 0.400000 +2206 954 0.400000 +2206 972 0.400000 +2206 1051 0.400000 +2206 1058 0.400000 +2206 1110 0.400000 +2206 1139 0.400000 +2206 1159 0.400000 +2206 1290 0.400000 +2206 1335 0.400000 +2206 1349 0.400000 +2206 1450 0.400000 +2206 1485 0.400000 +2206 1560 0.400000 +2206 1569 0.400000 +2206 1579 0.400000 +2206 1580 0.400000 +2206 1683 0.400000 +2206 1721 0.400000 +2206 1740 0.400000 +2206 1890 0.400000 +2206 1941 0.400000 +2206 1989 0.400000 +2206 1998 0.400000 +2206 2002 0.400000 +2206 2380 0.400000 +2206 2496 0.400000 +2206 2603 0.400000 +2206 2609 0.400000 +2206 2857 0.400000 +2206 2875 0.400000 +2206 2894 0.400000 +2206 2906 0.400000 +2206 2918 0.400000 +2206 2987 0.400000 +2206 3082 0.400000 +2206 3109 0.400000 +2206 3182 0.400000 +2206 3184 0.400000 +2206 3198 0.400000 +2207 20 0.400000 +2207 251 0.400000 +2207 280 0.400000 +2207 334 0.400000 +2207 359 0.400000 +2207 371 0.400000 +2207 402 0.400000 +2207 447 0.400000 +2207 457 0.400000 +2207 465 0.400000 +2207 475 0.400000 +2207 482 0.400000 +2207 502 0.400000 +2207 697 0.400000 +2207 814 0.400000 +2207 860 0.400000 +2207 879 0.400000 +2207 882 0.400000 +2207 907 0.400000 +2207 940 0.400000 +2207 1009 0.400000 +2207 1023 0.400000 +2207 1052 0.400000 +2207 1126 0.400000 +2207 1171 0.400000 +2207 1221 0.400000 +2207 1250 0.400000 +2207 1273 0.400000 +2207 1374 0.400000 +2207 1460 0.400000 +2207 1550 0.400000 +2207 1578 0.400000 +2207 1598 0.400000 +2207 1641 0.400000 +2207 1743 0.400000 +2207 1753 0.400000 +2207 1775 0.400000 +2207 1868 0.400000 +2207 1916 0.400000 +2207 1935 0.400000 +2207 2005 0.400000 +2207 2007 0.400000 +2207 2063 0.400000 +2207 2095 0.400000 +2207 2137 0.400000 +2207 2320 0.400000 +2207 2360 0.400000 +2207 2559 0.400000 +2207 2562 0.400000 +2207 2580 0.400000 +2207 2586 0.400000 +2207 2600 0.400000 +2207 2603 0.400000 +2207 2624 0.400000 +2207 2681 0.400000 +2207 2691 0.400000 +2207 2706 0.400000 +2207 2739 0.400000 +2207 2822 0.400000 +2207 2838 0.400000 +2207 2862 0.400000 +2207 3010 0.400000 +2208 5 0.400000 +2208 35 0.400000 +2208 51 0.400000 +2208 110 0.400000 +2208 177 0.400000 +2208 236 0.400000 +2208 240 0.400000 +2208 247 0.400000 +2208 303 0.400000 +2208 397 0.400000 +2208 475 0.400000 +2208 506 0.400000 +2208 647 0.400000 +2208 667 0.400000 +2208 706 0.400000 +2208 942 0.400000 +2208 975 0.400000 +2208 988 0.400000 +2208 1070 0.400000 +2208 1301 0.400000 +2208 1311 0.400000 +2208 1316 0.400000 +2208 1358 0.400000 +2208 1385 0.400000 +2208 1393 0.400000 +2208 1421 0.400000 +2208 1454 0.400000 +2208 1618 0.400000 +2208 1671 0.400000 +2208 1721 0.400000 +2208 1769 0.400000 +2208 1892 0.400000 +2208 1909 0.400000 +2208 1938 0.400000 +2208 1961 0.400000 +2208 1984 0.400000 +2208 2000 0.400000 +2208 2032 0.400000 +2208 2079 0.400000 +2208 2084 0.400000 +2208 2098 0.400000 +2208 2111 0.400000 +2208 2163 0.400000 +2208 2210 0.400000 +2208 2266 0.400000 +2208 2282 0.400000 +2208 2459 0.400000 +2208 2545 0.400000 +2208 2570 0.400000 +2208 2614 0.400000 +2208 2620 0.400000 +2208 2626 0.400000 +2208 2649 0.400000 +2208 2691 0.400000 +2208 2703 0.400000 +2208 2714 0.400000 +2208 2751 0.400000 +2208 2767 0.400000 +2208 2775 0.400000 +2208 2806 0.400000 +2208 2831 0.400000 +2208 2891 0.400000 +2208 2895 0.400000 +2208 2899 0.400000 +2208 2919 0.400000 +2208 2933 0.400000 +2208 2941 0.400000 +2208 3012 0.400000 +2208 3052 0.400000 +2208 3103 0.400000 +2208 3114 0.400000 +2208 3115 0.400000 +2208 3127 0.400000 +2208 3146 0.400000 +2208 3152 0.400000 +2209 24 0.400000 +2209 43 0.400000 +2209 66 0.400000 +2209 123 0.400000 +2209 133 0.400000 +2209 150 0.400000 +2209 158 0.400000 +2209 271 0.400000 +2209 276 0.400000 +2209 303 0.400000 +2209 505 0.400000 +2209 590 0.400000 +2209 594 0.400000 +2209 654 0.400000 +2209 721 0.400000 +2209 731 0.400000 +2209 817 0.400000 +2209 830 0.400000 +2209 906 0.400000 +2209 972 0.400000 +2209 1022 0.400000 +2209 1079 0.400000 +2209 1097 0.400000 +2209 1115 0.400000 +2209 1119 0.400000 +2209 1154 0.400000 +2209 1171 0.400000 +2209 1176 0.400000 +2209 1181 0.400000 +2209 1277 0.400000 +2209 1298 0.400000 +2209 1335 0.400000 +2209 1430 0.400000 +2209 1533 0.400000 +2209 1608 0.400000 +2209 1643 0.400000 +2209 1676 0.400000 +2209 1686 0.400000 +2209 1711 0.400000 +2209 1750 0.400000 +2209 1773 0.400000 +2209 1794 0.400000 +2209 1798 0.400000 +2209 1799 0.400000 +2209 1800 0.400000 +2209 1839 0.400000 +2209 2046 0.400000 +2209 2067 0.400000 +2209 2139 0.400000 +2209 2223 0.400000 +2209 2242 0.400000 +2209 2360 0.400000 +2209 2373 0.400000 +2209 2400 0.400000 +2209 2428 0.400000 +2209 2540 0.400000 +2209 2563 0.400000 +2209 2648 0.400000 +2209 2723 0.400000 +2209 2725 0.400000 +2209 2897 0.400000 +2209 3024 0.400000 +2209 3164 0.400000 +2210 196 0.400000 +2210 391 0.400000 +2210 432 0.400000 +2210 433 0.400000 +2210 483 0.400000 +2210 485 0.400000 +2210 488 0.400000 +2210 500 0.400000 +2210 508 0.400000 +2210 559 0.400000 +2210 615 0.400000 +2210 688 0.400000 +2210 710 0.400000 +2210 713 0.400000 +2210 725 0.400000 +2210 914 0.400000 +2210 1083 0.400000 +2210 1139 0.400000 +2210 1142 0.400000 +2210 1192 0.400000 +2210 1278 0.400000 +2210 1316 0.400000 +2210 1368 0.400000 +2210 1467 0.400000 +2210 1502 0.400000 +2210 1572 0.400000 +2210 1575 0.400000 +2210 1657 0.400000 +2210 1669 0.400000 +2210 1706 0.400000 +2210 1772 0.400000 +2210 2017 0.400000 +2210 2057 0.400000 +2210 2164 0.400000 +2210 2175 0.400000 +2210 2227 0.400000 +2210 2247 0.400000 +2210 2249 0.400000 +2210 2292 0.400000 +2210 2358 0.400000 +2210 2500 0.400000 +2210 2514 0.400000 +2210 2552 0.400000 +2210 2573 0.400000 +2210 2601 0.400000 +2210 2604 0.400000 +2210 2698 0.400000 +2210 2704 0.400000 +2210 2711 0.400000 +2210 2809 0.400000 +2210 2841 0.400000 +2210 2845 0.400000 +2210 2899 0.400000 +2210 2921 0.400000 +2210 2932 0.400000 +2210 2935 0.400000 +2210 2982 0.400000 +2210 2990 0.400000 +2210 3077 0.400000 +2210 3123 0.400000 +2211 4 0.400000 +2211 25 0.400000 +2211 69 0.400000 +2211 108 0.400000 +2211 239 0.400000 +2211 258 0.400000 +2211 396 0.400000 +2211 531 0.400000 +2211 602 0.400000 +2211 684 0.400000 +2211 696 0.400000 +2211 700 0.400000 +2211 704 0.400000 +2211 759 0.400000 +2211 820 0.400000 +2211 901 0.400000 +2211 906 0.400000 +2211 920 0.400000 +2211 935 0.400000 +2211 995 0.400000 +2211 1015 0.400000 +2211 1056 0.400000 +2211 1111 0.400000 +2211 1127 0.400000 +2211 1128 0.400000 +2211 1143 0.400000 +2211 1180 0.400000 +2211 1295 0.400000 +2211 1346 0.400000 +2211 1387 0.400000 +2211 1466 0.400000 +2211 1520 0.400000 +2211 1545 0.400000 +2211 1625 0.400000 +2211 1663 0.400000 +2211 1668 0.400000 +2211 1756 0.400000 +2211 1782 0.400000 +2211 1819 0.400000 +2211 1851 0.400000 +2211 1921 0.400000 +2211 1938 0.400000 +2211 2082 0.400000 +2211 2083 0.400000 +2211 2120 0.400000 +2211 2166 0.400000 +2211 2171 0.400000 +2211 2260 0.400000 +2211 2331 0.400000 +2211 2382 0.400000 +2211 2397 0.400000 +2211 2400 0.400000 +2211 2440 0.400000 +2211 2538 0.400000 +2211 2541 0.400000 +2211 2545 0.400000 +2211 2606 0.400000 +2211 2662 0.400000 +2211 2688 0.400000 +2211 2776 0.400000 +2211 2804 0.400000 +2211 2816 0.400000 +2211 2836 0.400000 +2211 2849 0.400000 +2211 2853 0.400000 +2211 2901 0.400000 +2211 2931 0.400000 +2211 2967 0.400000 +2211 3010 0.400000 +2211 3040 0.400000 +2211 3175 0.400000 +2211 3190 0.400000 +2212 80 0.400000 +2212 119 0.400000 +2212 169 0.400000 +2212 222 0.400000 +2212 223 0.400000 +2212 294 0.400000 +2212 316 0.400000 +2212 342 0.400000 +2212 347 0.400000 +2212 357 0.400000 +2212 513 0.400000 +2212 517 0.400000 +2212 535 0.400000 +2212 545 0.400000 +2212 679 0.400000 +2212 774 0.400000 +2212 793 0.400000 +2212 830 0.400000 +2212 837 0.400000 +2212 878 0.400000 +2212 923 0.400000 +2212 1117 0.400000 +2212 1143 0.400000 +2212 1207 0.400000 +2212 1283 0.400000 +2212 1347 0.400000 +2212 1421 0.400000 +2212 1457 0.400000 +2212 1607 0.400000 +2212 1691 0.400000 +2212 1770 0.400000 +2212 1938 0.400000 +2212 1981 0.400000 +2212 2024 0.400000 +2212 2047 0.400000 +2212 2150 0.400000 +2212 2156 0.400000 +2212 2239 0.400000 +2212 2283 0.400000 +2212 2304 0.400000 +2212 2320 0.400000 +2212 2326 0.400000 +2212 2342 0.400000 +2212 2377 0.400000 +2212 2411 0.400000 +2212 2497 0.400000 +2212 2531 0.400000 +2212 2533 0.400000 +2212 2660 0.400000 +2212 2678 0.400000 +2212 2723 0.400000 +2212 2788 0.400000 +2212 2823 0.400000 +2212 2970 0.400000 +2212 3003 0.400000 +2212 3107 0.400000 +2213 143 0.400000 +2213 203 0.400000 +2213 210 0.400000 +2213 219 0.400000 +2213 308 0.400000 +2213 363 0.400000 +2213 417 0.400000 +2213 427 0.400000 +2213 460 0.400000 +2213 578 0.400000 +2213 582 0.400000 +2213 657 0.400000 +2213 770 0.400000 +2213 836 0.400000 +2213 887 0.400000 +2213 988 0.400000 +2213 1036 0.400000 +2213 1089 0.400000 +2213 1111 0.400000 +2213 1178 0.400000 +2213 1211 0.400000 +2213 1347 0.400000 +2213 1357 0.400000 +2213 1400 0.400000 +2213 1421 0.400000 +2213 1428 0.400000 +2213 1587 0.400000 +2213 1619 0.400000 +2213 1711 0.400000 +2213 1719 0.400000 +2213 1744 0.400000 +2213 1755 0.400000 +2213 1833 0.400000 +2213 1848 0.400000 +2213 1871 0.400000 +2213 1873 0.400000 +2213 1930 0.400000 +2213 1931 0.400000 +2213 2047 0.400000 +2213 2100 0.400000 +2213 2161 0.400000 +2213 2208 0.400000 +2213 2291 0.400000 +2213 2297 0.400000 +2213 2310 0.400000 +2213 2321 0.400000 +2213 2352 0.400000 +2213 2362 0.400000 +2213 2374 0.400000 +2213 2419 0.400000 +2213 2453 0.400000 +2213 2461 0.400000 +2213 2478 0.400000 +2213 2481 0.400000 +2213 2485 0.400000 +2213 2579 0.400000 +2213 2752 0.400000 +2213 2944 0.400000 +2213 3035 0.400000 +2213 3079 0.400000 +2214 15 0.400000 +2214 19 0.400000 +2214 31 0.400000 +2214 184 0.400000 +2214 242 0.400000 +2214 293 0.400000 +2214 329 0.400000 +2214 447 0.400000 +2214 525 0.400000 +2214 530 0.400000 +2214 542 0.400000 +2214 543 0.400000 +2214 559 0.400000 +2214 751 0.400000 +2214 768 0.400000 +2214 830 0.400000 +2214 841 0.400000 +2214 857 0.400000 +2214 945 0.400000 +2214 960 0.400000 +2214 963 0.400000 +2214 967 0.400000 +2214 1016 0.400000 +2214 1059 0.400000 +2214 1094 0.400000 +2214 1106 0.400000 +2214 1137 0.400000 +2214 1174 0.400000 +2214 1217 0.400000 +2214 1231 0.400000 +2214 1235 0.400000 +2214 1379 0.400000 +2214 1445 0.400000 +2214 1459 0.400000 +2214 1495 0.400000 +2214 1541 0.400000 +2214 1612 0.400000 +2214 1694 0.400000 +2214 1759 0.400000 +2214 1815 0.400000 +2214 1826 0.400000 +2214 1981 0.400000 +2214 2090 0.400000 +2214 2138 0.400000 +2214 2222 0.400000 +2214 2322 0.400000 +2214 2328 0.400000 +2214 2374 0.400000 +2214 2402 0.400000 +2214 2516 0.400000 +2214 2746 0.400000 +2214 2842 0.400000 +2214 2843 0.400000 +2214 2850 0.400000 +2214 2867 0.400000 +2214 2879 0.400000 +2214 2922 0.400000 +2214 2944 0.400000 +2214 3127 0.400000 +2215 37 0.400000 +2215 43 0.400000 +2215 63 0.400000 +2215 71 0.400000 +2215 217 0.400000 +2215 227 0.400000 +2215 298 0.400000 +2215 316 0.400000 +2215 399 0.400000 +2215 457 0.400000 +2215 464 0.400000 +2215 730 0.400000 +2215 744 0.400000 +2215 775 0.400000 +2215 776 0.400000 +2215 891 0.400000 +2215 943 0.400000 +2215 969 0.400000 +2215 990 0.400000 +2215 1005 0.400000 +2215 1006 0.400000 +2215 1050 0.400000 +2215 1052 0.400000 +2215 1063 0.400000 +2215 1075 0.400000 +2215 1092 0.400000 +2215 1117 0.400000 +2215 1133 0.400000 +2215 1152 0.400000 +2215 1282 0.400000 +2215 1296 0.400000 +2215 1322 0.400000 +2215 1415 0.400000 +2215 1465 0.400000 +2215 1677 0.400000 +2215 1840 0.400000 +2215 2026 0.400000 +2215 2101 0.400000 +2215 2117 0.400000 +2215 2138 0.400000 +2215 2141 0.400000 +2215 2163 0.400000 +2215 2167 0.400000 +2215 2213 0.400000 +2215 2241 0.400000 +2215 2283 0.400000 +2215 2334 0.400000 +2215 2341 0.400000 +2215 2379 0.400000 +2215 2442 0.400000 +2215 2450 0.400000 +2215 2464 0.400000 +2215 2489 0.400000 +2215 2565 0.400000 +2215 2575 0.400000 +2215 2646 0.400000 +2215 2757 0.400000 +2215 2794 0.400000 +2215 2807 0.400000 +2215 2811 0.400000 +2215 2855 0.400000 +2215 2874 0.400000 +2215 2927 0.400000 +2215 3016 0.400000 +2215 3052 0.400000 +2215 3115 0.400000 +2216 70 0.400000 +2216 101 0.400000 +2216 356 0.400000 +2216 434 0.400000 +2216 563 0.400000 +2216 569 0.400000 +2216 579 0.400000 +2216 596 0.400000 +2216 607 0.400000 +2216 627 0.400000 +2216 723 0.400000 +2216 741 0.400000 +2216 793 0.400000 +2216 813 0.400000 +2216 840 0.400000 +2216 852 0.400000 +2216 897 0.400000 +2216 1029 0.400000 +2216 1033 0.400000 +2216 1134 0.400000 +2216 1138 0.400000 +2216 1158 0.400000 +2216 1170 0.400000 +2216 1335 0.400000 +2216 1358 0.400000 +2216 1380 0.400000 +2216 1396 0.400000 +2216 1484 0.400000 +2216 1513 0.400000 +2216 1518 0.400000 +2216 1550 0.400000 +2216 1593 0.400000 +2216 1598 0.400000 +2216 1680 0.400000 +2216 1699 0.400000 +2216 1720 0.400000 +2216 1730 0.400000 +2216 1764 0.400000 +2216 1789 0.400000 +2216 1804 0.400000 +2216 1846 0.400000 +2216 1937 0.400000 +2216 1951 0.400000 +2216 1968 0.400000 +2216 1997 0.400000 +2216 2015 0.400000 +2216 2085 0.400000 +2216 2093 0.400000 +2216 2149 0.400000 +2216 2183 0.400000 +2216 2232 0.400000 +2216 2246 0.400000 +2216 2259 0.400000 +2216 2413 0.400000 +2216 2464 0.400000 +2216 2469 0.400000 +2216 2481 0.400000 +2216 2535 0.400000 +2216 2571 0.400000 +2216 2579 0.400000 +2216 2645 0.400000 +2216 2657 0.400000 +2216 2672 0.400000 +2216 2700 0.400000 +2216 2701 0.400000 +2216 2721 0.400000 +2216 2776 0.400000 +2216 2813 0.400000 +2216 2867 0.400000 +2216 2885 0.400000 +2216 2907 0.400000 +2216 3033 0.400000 +2216 3044 0.400000 +2216 3154 0.400000 +2216 3164 0.400000 +2217 2 0.400000 +2217 147 0.400000 +2217 280 0.400000 +2217 308 0.400000 +2217 316 0.400000 +2217 565 0.400000 +2217 603 0.400000 +2217 699 0.400000 +2217 728 0.400000 +2217 761 0.400000 +2217 788 0.400000 +2217 796 0.400000 +2217 805 0.400000 +2217 982 0.400000 +2217 1101 0.400000 +2217 1231 0.400000 +2217 1268 0.400000 +2217 1300 0.400000 +2217 1317 0.400000 +2217 1346 0.400000 +2217 1498 0.400000 +2217 1504 0.400000 +2217 1513 0.400000 +2217 1519 0.400000 +2217 1567 0.400000 +2217 1652 0.400000 +2217 1709 0.400000 +2217 1756 0.400000 +2217 1791 0.400000 +2217 1826 0.400000 +2217 1862 0.400000 +2217 1879 0.400000 +2217 1882 0.400000 +2217 1886 0.400000 +2217 1890 0.400000 +2217 1925 0.400000 +2217 1939 0.400000 +2217 1991 0.400000 +2217 2057 0.400000 +2217 2068 0.400000 +2217 2103 0.400000 +2217 2152 0.400000 +2217 2206 0.400000 +2217 2295 0.400000 +2217 2321 0.400000 +2217 2322 0.400000 +2217 2357 0.400000 +2217 2362 0.400000 +2217 2416 0.400000 +2217 2555 0.400000 +2217 2674 0.400000 +2217 2846 0.400000 +2217 2980 0.400000 +2217 3145 0.400000 +2217 3149 0.400000 +2217 3164 0.400000 +2218 106 0.400000 +2218 107 0.400000 +2218 158 0.400000 +2218 178 0.400000 +2218 184 0.400000 +2218 195 0.400000 +2218 206 0.400000 +2218 223 0.400000 +2218 224 0.400000 +2218 232 0.400000 +2218 292 0.400000 +2218 335 0.400000 +2218 361 0.400000 +2218 375 0.400000 +2218 377 0.400000 +2218 394 0.400000 +2218 526 0.400000 +2218 670 0.400000 +2218 720 0.400000 +2218 836 0.400000 +2218 854 0.400000 +2218 912 0.400000 +2218 957 0.400000 +2218 981 0.400000 +2218 1021 0.400000 +2218 1039 0.400000 +2218 1044 0.400000 +2218 1068 0.400000 +2218 1120 0.400000 +2218 1122 0.400000 +2218 1361 0.400000 +2218 1426 0.400000 +2218 1428 0.400000 +2218 1494 0.400000 +2218 1547 0.400000 +2218 1595 0.400000 +2218 1600 0.400000 +2218 1603 0.400000 +2218 1607 0.400000 +2218 1657 0.400000 +2218 1850 0.400000 +2218 1884 0.400000 +2218 1897 0.400000 +2218 1923 0.400000 +2218 1975 0.400000 +2218 2164 0.400000 +2218 2193 0.400000 +2218 2306 0.400000 +2218 2340 0.400000 +2218 2347 0.400000 +2218 2408 0.400000 +2218 2473 0.400000 +2218 2511 0.400000 +2218 2608 0.400000 +2218 2839 0.400000 +2218 2848 0.400000 +2218 3016 0.400000 +2219 46 0.400000 +2219 53 0.400000 +2219 59 0.400000 +2219 102 0.400000 +2219 105 0.400000 +2219 152 0.400000 +2219 194 0.400000 +2219 201 0.400000 +2219 213 0.400000 +2219 308 0.400000 +2219 333 0.400000 +2219 403 0.400000 +2219 445 0.400000 +2219 453 0.400000 +2219 461 0.400000 +2219 498 0.400000 +2219 507 0.400000 +2219 520 0.400000 +2219 619 0.400000 +2219 669 0.400000 +2219 670 0.400000 +2219 705 0.400000 +2219 770 0.400000 +2219 796 0.400000 +2219 1027 0.400000 +2219 1052 0.400000 +2219 1059 0.400000 +2219 1171 0.400000 +2219 1181 0.400000 +2219 1229 0.400000 +2219 1259 0.400000 +2219 1279 0.400000 +2219 1328 0.400000 +2219 1366 0.400000 +2219 1402 0.400000 +2219 1426 0.400000 +2219 1427 0.400000 +2219 1467 0.400000 +2219 1479 0.400000 +2219 1482 0.400000 +2219 1491 0.400000 +2219 1495 0.400000 +2219 1501 0.400000 +2219 1507 0.400000 +2219 1541 0.400000 +2219 1564 0.400000 +2219 1581 0.400000 +2219 1599 0.400000 +2219 1637 0.400000 +2219 1646 0.400000 +2219 1657 0.400000 +2219 1658 0.400000 +2219 1676 0.400000 +2219 1690 0.400000 +2219 1737 0.400000 +2219 1833 0.400000 +2219 1921 0.400000 +2219 2065 0.400000 +2219 2113 0.400000 +2219 2133 0.400000 +2219 2195 0.400000 +2219 2210 0.400000 +2219 2222 0.400000 +2219 2233 0.400000 +2219 2298 0.400000 +2219 2420 0.400000 +2219 2456 0.400000 +2219 2511 0.400000 +2219 2523 0.400000 +2219 2545 0.400000 +2219 2585 0.400000 +2219 2634 0.400000 +2219 2638 0.400000 +2219 2663 0.400000 +2219 2686 0.400000 +2219 2689 0.400000 +2219 2704 0.400000 +2219 2740 0.400000 +2219 2822 0.400000 +2219 2886 0.400000 +2219 2936 0.400000 +2219 2955 0.400000 +2219 2978 0.400000 +2219 2993 0.400000 +2219 3031 0.400000 +2219 3107 0.400000 +2219 3108 0.400000 +2219 3137 0.400000 +2220 55 0.400000 +2220 71 0.400000 +2220 99 0.400000 +2220 101 0.400000 +2220 168 0.400000 +2220 227 0.400000 +2220 231 0.400000 +2220 311 0.400000 +2220 364 0.400000 +2220 365 0.400000 +2220 432 0.400000 +2220 489 0.400000 +2220 518 0.400000 +2220 595 0.400000 +2220 598 0.400000 +2220 655 0.400000 +2220 721 0.400000 +2220 732 0.400000 +2220 838 0.400000 +2220 853 0.400000 +2220 905 0.400000 +2220 920 0.400000 +2220 1009 0.400000 +2220 1078 0.400000 +2220 1093 0.400000 +2220 1131 0.400000 +2220 1148 0.400000 +2220 1192 0.400000 +2220 1212 0.400000 +2220 1265 0.400000 +2220 1516 0.400000 +2220 1548 0.400000 +2220 1570 0.400000 +2220 1593 0.400000 +2220 1610 0.400000 +2220 1616 0.400000 +2220 1622 0.400000 +2220 1660 0.400000 +2220 1665 0.400000 +2220 1684 0.400000 +2220 1753 0.400000 +2220 1819 0.400000 +2220 1866 0.400000 +2220 1882 0.400000 +2220 1919 0.400000 +2220 1921 0.400000 +2220 2027 0.400000 +2220 2082 0.400000 +2220 2089 0.400000 +2220 2177 0.400000 +2220 2211 0.400000 +2220 2268 0.400000 +2220 2292 0.400000 +2220 2301 0.400000 +2220 2388 0.400000 +2220 2443 0.400000 +2220 2520 0.400000 +2220 2586 0.400000 +2220 2591 0.400000 +2220 2608 0.400000 +2220 2766 0.400000 +2220 2872 0.400000 +2220 3012 0.400000 +2220 3057 0.400000 +2221 14 0.400000 +2221 57 0.400000 +2221 78 0.400000 +2221 116 0.400000 +2221 181 0.400000 +2221 246 0.400000 +2221 278 0.400000 +2221 296 0.400000 +2221 311 0.400000 +2221 395 0.400000 +2221 501 0.400000 +2221 523 0.400000 +2221 636 0.400000 +2221 658 0.400000 +2221 681 0.400000 +2221 771 0.400000 +2221 810 0.400000 +2221 873 0.400000 +2221 1012 0.400000 +2221 1037 0.400000 +2221 1040 0.400000 +2221 1052 0.400000 +2221 1057 0.400000 +2221 1077 0.400000 +2221 1080 0.400000 +2221 1115 0.400000 +2221 1154 0.400000 +2221 1185 0.400000 +2221 1210 0.400000 +2221 1249 0.400000 +2221 1267 0.400000 +2221 1302 0.400000 +2221 1426 0.400000 +2221 1605 0.400000 +2221 1612 0.400000 +2221 1626 0.400000 +2221 1651 0.400000 +2221 1865 0.400000 +2221 1872 0.400000 +2221 1880 0.400000 +2221 1884 0.400000 +2221 1977 0.400000 +2221 2019 0.400000 +2221 2041 0.400000 +2221 2191 0.400000 +2221 2251 0.400000 +2221 2276 0.400000 +2221 2375 0.400000 +2221 2552 0.400000 +2221 2568 0.400000 +2221 2705 0.400000 +2221 2777 0.400000 +2221 2798 0.400000 +2221 2813 0.400000 +2221 2828 0.400000 +2221 2833 0.400000 +2221 2849 0.400000 +2221 2895 0.400000 +2221 2926 0.400000 +2221 3008 0.400000 +2221 3011 0.400000 +2221 3033 0.400000 +2221 3096 0.400000 +2221 3131 0.400000 +2222 46 0.400000 +2222 98 0.400000 +2222 120 0.400000 +2222 137 0.400000 +2222 152 0.400000 +2222 191 0.400000 +2222 215 0.400000 +2222 311 0.400000 +2222 341 0.400000 +2222 376 0.400000 +2222 382 0.400000 +2222 512 0.400000 +2222 521 0.400000 +2222 541 0.400000 +2222 559 0.400000 +2222 584 0.400000 +2222 660 0.400000 +2222 721 0.400000 +2222 791 0.400000 +2222 816 0.400000 +2222 828 0.400000 +2222 845 0.400000 +2222 889 0.400000 +2222 958 0.400000 +2222 1067 0.400000 +2222 1070 0.400000 +2222 1086 0.400000 +2222 1113 0.400000 +2222 1117 0.400000 +2222 1134 0.400000 +2222 1252 0.400000 +2222 1283 0.400000 +2222 1391 0.400000 +2222 1521 0.400000 +2222 1627 0.400000 +2222 1648 0.400000 +2222 1710 0.400000 +2222 1749 0.400000 +2222 1777 0.400000 +2222 1807 0.400000 +2222 1822 0.400000 +2222 1900 0.400000 +2222 1932 0.400000 +2222 1938 0.400000 +2222 2034 0.400000 +2222 2116 0.400000 +2222 2139 0.400000 +2222 2208 0.400000 +2222 2232 0.400000 +2222 2303 0.400000 +2222 2306 0.400000 +2222 2352 0.400000 +2222 2358 0.400000 +2222 2409 0.400000 +2222 2521 0.400000 +2222 2619 0.400000 +2222 2690 0.400000 +2222 2714 0.400000 +2222 2769 0.400000 +2222 2782 0.400000 +2222 2849 0.400000 +2222 2929 0.400000 +2222 2935 0.400000 +2222 3002 0.400000 +2222 3043 0.400000 +2222 3044 0.400000 +2222 3175 0.400000 +2223 142 0.400000 +2223 156 0.400000 +2223 177 0.400000 +2223 270 0.400000 +2223 276 0.400000 +2223 299 0.400000 +2223 353 0.400000 +2223 452 0.400000 +2223 560 0.400000 +2223 624 0.400000 +2223 641 0.400000 +2223 759 0.400000 +2223 777 0.400000 +2223 795 0.400000 +2223 856 0.400000 +2223 905 0.400000 +2223 913 0.400000 +2223 957 0.400000 +2223 967 0.400000 +2223 980 0.400000 +2223 991 0.400000 +2223 1036 0.400000 +2223 1055 0.400000 +2223 1079 0.400000 +2223 1143 0.400000 +2223 1223 0.400000 +2223 1241 0.400000 +2223 1348 0.400000 +2223 1367 0.400000 +2223 1611 0.400000 +2223 1619 0.400000 +2223 1628 0.400000 +2223 1694 0.400000 +2223 1817 0.400000 +2223 1890 0.400000 +2223 1895 0.400000 +2223 1900 0.400000 +2223 1925 0.400000 +2223 1963 0.400000 +2223 2162 0.400000 +2223 2185 0.400000 +2223 2194 0.400000 +2223 2337 0.400000 +2223 2338 0.400000 +2223 2366 0.400000 +2223 2467 0.400000 +2223 2473 0.400000 +2223 2502 0.400000 +2223 2534 0.400000 +2223 2543 0.400000 +2223 2545 0.400000 +2223 2629 0.400000 +2223 2838 0.400000 +2223 2899 0.400000 +2223 2929 0.400000 +2223 2965 0.400000 +2223 2999 0.400000 +2223 3004 0.400000 +2223 3150 0.400000 +2223 3152 0.400000 +2223 3197 0.400000 +2224 49 0.400000 +2224 153 0.400000 +2224 176 0.400000 +2224 188 0.400000 +2224 189 0.400000 +2224 251 0.400000 +2224 268 0.400000 +2224 269 0.400000 +2224 276 0.400000 +2224 278 0.400000 +2224 310 0.400000 +2224 492 0.400000 +2224 501 0.400000 +2224 545 0.400000 +2224 585 0.400000 +2224 734 0.400000 +2224 749 0.400000 +2224 852 0.400000 +2224 867 0.400000 +2224 920 0.400000 +2224 971 0.400000 +2224 983 0.400000 +2224 993 0.400000 +2224 1082 0.400000 +2224 1164 0.400000 +2224 1247 0.400000 +2224 1268 0.400000 +2224 1359 0.400000 +2224 1372 0.400000 +2224 1397 0.400000 +2224 1405 0.400000 +2224 1424 0.400000 +2224 1426 0.400000 +2224 1474 0.400000 +2224 1486 0.400000 +2224 1563 0.400000 +2224 1624 0.400000 +2224 1763 0.400000 +2224 1849 0.400000 +2224 1906 0.400000 +2224 1992 0.400000 +2224 1996 0.400000 +2224 2012 0.400000 +2224 2105 0.400000 +2224 2142 0.400000 +2224 2155 0.400000 +2224 2246 0.400000 +2224 2259 0.400000 +2224 2290 0.400000 +2224 2369 0.400000 +2224 2417 0.400000 +2224 2485 0.400000 +2224 2489 0.400000 +2224 2602 0.400000 +2224 2653 0.400000 +2224 2718 0.400000 +2224 2763 0.400000 +2224 2826 0.400000 +2224 2888 0.400000 +2224 2907 0.400000 +2224 2909 0.400000 +2224 2970 0.400000 +2224 2971 0.400000 +2224 2986 0.400000 +2224 2996 0.400000 +2224 3193 0.400000 +2225 244 0.400000 +2225 280 0.400000 +2225 286 0.400000 +2225 531 0.400000 +2225 571 0.400000 +2225 607 0.400000 +2225 682 0.400000 +2225 739 0.400000 +2225 816 0.400000 +2225 824 0.400000 +2225 930 0.400000 +2225 991 0.400000 +2225 997 0.400000 +2225 1013 0.400000 +2225 1095 0.400000 +2225 1121 0.400000 +2225 1267 0.400000 +2225 1301 0.400000 +2225 1368 0.400000 +2225 1426 0.400000 +2225 1437 0.400000 +2225 1482 0.400000 +2225 1505 0.400000 +2225 1518 0.400000 +2225 1599 0.400000 +2225 1723 0.400000 +2225 1742 0.400000 +2225 1872 0.400000 +2225 1917 0.400000 +2225 1958 0.400000 +2225 1976 0.400000 +2225 1992 0.400000 +2225 2006 0.400000 +2225 2085 0.400000 +2225 2119 0.400000 +2225 2126 0.400000 +2225 2144 0.400000 +2225 2160 0.400000 +2225 2291 0.400000 +2225 2298 0.400000 +2225 2346 0.400000 +2225 2377 0.400000 +2225 2396 0.400000 +2225 2405 0.400000 +2225 2424 0.400000 +2225 2471 0.400000 +2225 2606 0.400000 +2225 2644 0.400000 +2225 2679 0.400000 +2225 2777 0.400000 +2225 2807 0.400000 +2225 2868 0.400000 +2225 2941 0.400000 +2225 2974 0.400000 +2225 3052 0.400000 +2225 3137 0.400000 +2225 3161 0.400000 +2226 41 0.400000 +2226 176 0.400000 +2226 361 0.400000 +2226 373 0.400000 +2226 438 0.400000 +2226 469 0.400000 +2226 472 0.400000 +2226 534 0.400000 +2226 557 0.400000 +2226 649 0.400000 +2226 705 0.400000 +2226 768 0.400000 +2226 774 0.400000 +2226 783 0.400000 +2226 847 0.400000 +2226 1017 0.400000 +2226 1085 0.400000 +2226 1095 0.400000 +2226 1140 0.400000 +2226 1144 0.400000 +2226 1175 0.400000 +2226 1181 0.400000 +2226 1274 0.400000 +2226 1406 0.400000 +2226 1442 0.400000 +2226 1459 0.400000 +2226 1468 0.400000 +2226 1474 0.400000 +2226 1526 0.400000 +2226 1592 0.400000 +2226 1681 0.400000 +2226 1697 0.400000 +2226 1736 0.400000 +2226 1820 0.400000 +2226 1882 0.400000 +2226 1966 0.400000 +2226 1972 0.400000 +2226 2025 0.400000 +2226 2065 0.400000 +2226 2077 0.400000 +2226 2078 0.400000 +2226 2131 0.400000 +2226 2154 0.400000 +2226 2239 0.400000 +2226 2240 0.400000 +2226 2416 0.400000 +2226 2420 0.400000 +2226 2421 0.400000 +2226 2425 0.400000 +2226 2562 0.400000 +2226 2563 0.400000 +2226 2610 0.400000 +2226 2616 0.400000 +2226 2655 0.400000 +2226 2670 0.400000 +2226 2694 0.400000 +2226 2724 0.400000 +2226 2788 0.400000 +2226 2791 0.400000 +2226 2800 0.400000 +2226 2801 0.400000 +2226 2890 0.400000 +2226 2965 0.400000 +2226 3003 0.400000 +2227 39 0.400000 +2227 99 0.400000 +2227 113 0.400000 +2227 117 0.400000 +2227 190 0.400000 +2227 307 0.400000 +2227 314 0.400000 +2227 379 0.400000 +2227 394 0.400000 +2227 443 0.400000 +2227 474 0.400000 +2227 538 0.400000 +2227 586 0.400000 +2227 588 0.400000 +2227 707 0.400000 +2227 864 0.400000 +2227 885 0.400000 +2227 930 0.400000 +2227 1037 0.400000 +2227 1116 0.400000 +2227 1196 0.400000 +2227 1225 0.400000 +2227 1263 0.400000 +2227 1293 0.400000 +2227 1305 0.400000 +2227 1321 0.400000 +2227 1404 0.400000 +2227 1442 0.400000 +2227 1555 0.400000 +2227 1581 0.400000 +2227 1623 0.400000 +2227 1727 0.400000 +2227 1741 0.400000 +2227 1794 0.400000 +2227 1800 0.400000 +2227 2009 0.400000 +2227 2164 0.400000 +2227 2176 0.400000 +2227 2189 0.400000 +2227 2231 0.400000 +2227 2314 0.400000 +2227 2331 0.400000 +2227 2433 0.400000 +2227 2511 0.400000 +2227 2540 0.400000 +2227 2593 0.400000 +2227 2601 0.400000 +2227 2704 0.400000 +2227 2717 0.400000 +2227 2747 0.400000 +2227 2804 0.400000 +2227 2918 0.400000 +2227 2988 0.400000 +2227 3048 0.400000 +2227 3075 0.400000 +2228 22 0.400000 +2228 74 0.400000 +2228 166 0.400000 +2228 355 0.400000 +2228 376 0.400000 +2228 545 0.400000 +2228 603 0.400000 +2228 674 0.400000 +2228 824 0.400000 +2228 843 0.400000 +2228 911 0.400000 +2228 990 0.400000 +2228 1003 0.400000 +2228 1007 0.400000 +2228 1046 0.400000 +2228 1069 0.400000 +2228 1071 0.400000 +2228 1094 0.400000 +2228 1102 0.400000 +2228 1239 0.400000 +2228 1248 0.400000 +2228 1286 0.400000 +2228 1297 0.400000 +2228 1304 0.400000 +2228 1337 0.400000 +2228 1365 0.400000 +2228 1415 0.400000 +2228 1429 0.400000 +2228 1497 0.400000 +2228 1506 0.400000 +2228 1547 0.400000 +2228 1592 0.400000 +2228 1670 0.400000 +2228 1803 0.400000 +2228 1839 0.400000 +2228 1908 0.400000 +2228 1925 0.400000 +2228 2001 0.400000 +2228 2054 0.400000 +2228 2058 0.400000 +2228 2078 0.400000 +2228 2232 0.400000 +2228 2244 0.400000 +2228 2290 0.400000 +2228 2334 0.400000 +2228 2336 0.400000 +2228 2414 0.400000 +2228 2431 0.400000 +2228 2504 0.400000 +2228 2607 0.400000 +2228 2621 0.400000 +2228 2638 0.400000 +2228 2653 0.400000 +2228 2718 0.400000 +2228 2825 0.400000 +2228 2854 0.400000 +2228 2867 0.400000 +2228 2896 0.400000 +2228 2921 0.400000 +2228 2971 0.400000 +2228 3084 0.400000 +2228 3120 0.400000 +2228 3141 0.400000 +2229 105 0.400000 +2229 113 0.400000 +2229 198 0.400000 +2229 221 0.400000 +2229 230 0.400000 +2229 290 0.400000 +2229 310 0.400000 +2229 327 0.400000 +2229 367 0.400000 +2229 382 0.400000 +2229 389 0.400000 +2229 484 0.400000 +2229 632 0.400000 +2229 741 0.400000 +2229 797 0.400000 +2229 861 0.400000 +2229 889 0.400000 +2229 930 0.400000 +2229 935 0.400000 +2229 937 0.400000 +2229 1096 0.400000 +2229 1127 0.400000 +2229 1163 0.400000 +2229 1178 0.400000 +2229 1250 0.400000 +2229 1251 0.400000 +2229 1318 0.400000 +2229 1439 0.400000 +2229 1502 0.400000 +2229 1603 0.400000 +2229 1647 0.400000 +2229 1744 0.400000 +2229 1879 0.400000 +2229 1920 0.400000 +2229 1955 0.400000 +2229 2000 0.400000 +2229 2043 0.400000 +2229 2090 0.400000 +2229 2092 0.400000 +2229 2112 0.400000 +2229 2119 0.400000 +2229 2208 0.400000 +2229 2304 0.400000 +2229 2341 0.400000 +2229 2370 0.400000 +2229 2382 0.400000 +2229 2411 0.400000 +2229 2417 0.400000 +2229 2430 0.400000 +2229 2546 0.400000 +2229 2592 0.400000 +2229 2596 0.400000 +2229 2635 0.400000 +2229 2646 0.400000 +2229 2666 0.400000 +2229 2677 0.400000 +2229 2714 0.400000 +2229 2718 0.400000 +2229 2784 0.400000 +2229 2811 0.400000 +2229 2828 0.400000 +2229 2856 0.400000 +2229 2985 0.400000 +2229 3146 0.400000 +2230 54 0.400000 +2230 117 0.400000 +2230 119 0.400000 +2230 158 0.400000 +2230 169 0.400000 +2230 292 0.400000 +2230 341 0.400000 +2230 344 0.400000 +2230 379 0.400000 +2230 432 0.400000 +2230 464 0.400000 +2230 480 0.400000 +2230 513 0.400000 +2230 573 0.400000 +2230 616 0.400000 +2230 625 0.400000 +2230 628 0.400000 +2230 644 0.400000 +2230 687 0.400000 +2230 712 0.400000 +2230 814 0.400000 +2230 815 0.400000 +2230 817 0.400000 +2230 822 0.400000 +2230 842 0.400000 +2230 888 0.400000 +2230 1163 0.400000 +2230 1183 0.400000 +2230 1190 0.400000 +2230 1226 0.400000 +2230 1296 0.400000 +2230 1362 0.400000 +2230 1550 0.400000 +2230 1556 0.400000 +2230 1604 0.400000 +2230 1724 0.400000 +2230 1750 0.400000 +2230 1757 0.400000 +2230 1850 0.400000 +2230 1855 0.400000 +2230 1871 0.400000 +2230 1999 0.400000 +2230 2027 0.400000 +2230 2122 0.400000 +2230 2141 0.400000 +2230 2312 0.400000 +2230 2313 0.400000 +2230 2315 0.400000 +2230 2362 0.400000 +2230 2372 0.400000 +2230 2439 0.400000 +2230 2469 0.400000 +2230 2471 0.400000 +2230 2493 0.400000 +2230 2548 0.400000 +2230 2622 0.400000 +2230 2791 0.400000 +2230 2838 0.400000 +2230 2863 0.400000 +2230 2945 0.400000 +2230 2976 0.400000 +2230 2987 0.400000 +2230 2992 0.400000 +2230 3184 0.400000 +2231 3 0.400000 +2231 133 0.400000 +2231 178 0.400000 +2231 200 0.400000 +2231 264 0.400000 +2231 314 0.400000 +2231 453 0.400000 +2231 557 0.400000 +2231 648 0.400000 +2231 651 0.400000 +2231 765 0.400000 +2231 776 0.400000 +2231 839 0.400000 +2231 906 0.400000 +2231 933 0.400000 +2231 982 0.400000 +2231 1014 0.400000 +2231 1125 0.400000 +2231 1173 0.400000 +2231 1238 0.400000 +2231 1273 0.400000 +2231 1374 0.400000 +2231 1381 0.400000 +2231 1449 0.400000 +2231 1521 0.400000 +2231 1571 0.400000 +2231 1631 0.400000 +2231 1760 0.400000 +2231 1922 0.400000 +2231 1972 0.400000 +2231 2026 0.400000 +2231 2073 0.400000 +2231 2095 0.400000 +2231 2170 0.400000 +2231 2229 0.400000 +2231 2263 0.400000 +2231 2306 0.400000 +2231 2349 0.400000 +2231 2462 0.400000 +2231 2477 0.400000 +2231 2508 0.400000 +2231 2522 0.400000 +2231 2539 0.400000 +2231 2556 0.400000 +2231 2578 0.400000 +2231 2607 0.400000 +2231 2662 0.400000 +2231 2695 0.400000 +2231 2714 0.400000 +2231 2715 0.400000 +2231 2734 0.400000 +2231 2743 0.400000 +2231 2777 0.400000 +2231 2843 0.400000 +2231 2907 0.400000 +2231 2923 0.400000 +2231 2999 0.400000 +2231 3029 0.400000 +2231 3058 0.400000 +2231 3060 0.400000 +2231 3062 0.400000 +2232 42 0.400000 +2232 68 0.400000 +2232 191 0.400000 +2232 206 0.400000 +2232 260 0.400000 +2232 385 0.400000 +2232 473 0.400000 +2232 490 0.400000 +2232 764 0.400000 +2232 832 0.400000 +2232 959 0.400000 +2232 1023 0.400000 +2232 1040 0.400000 +2232 1058 0.400000 +2232 1119 0.400000 +2232 1161 0.400000 +2232 1204 0.400000 +2232 1242 0.400000 +2232 1315 0.400000 +2232 1382 0.400000 +2232 1477 0.400000 +2232 1484 0.400000 +2232 1511 0.400000 +2232 1582 0.400000 +2232 1771 0.400000 +2232 1789 0.400000 +2232 1826 0.400000 +2232 1860 0.400000 +2232 1880 0.400000 +2232 1934 0.400000 +2232 2002 0.400000 +2232 2057 0.400000 +2232 2137 0.400000 +2232 2285 0.400000 +2232 2364 0.400000 +2232 2492 0.400000 +2232 2512 0.400000 +2232 2740 0.400000 +2232 2757 0.400000 +2232 2829 0.400000 +2232 2862 0.400000 +2232 3063 0.400000 +2232 3105 0.400000 +2233 139 0.400000 +2233 337 0.400000 +2233 381 0.400000 +2233 396 0.400000 +2233 498 0.400000 +2233 556 0.400000 +2233 569 0.400000 +2233 578 0.400000 +2233 584 0.400000 +2233 677 0.400000 +2233 736 0.400000 +2233 740 0.400000 +2233 745 0.400000 +2233 794 0.400000 +2233 820 0.400000 +2233 875 0.400000 +2233 939 0.400000 +2233 1039 0.400000 +2233 1050 0.400000 +2233 1133 0.400000 +2233 1162 0.400000 +2233 1175 0.400000 +2233 1230 0.400000 +2233 1378 0.400000 +2233 1472 0.400000 +2233 1488 0.400000 +2233 1626 0.400000 +2233 1631 0.400000 +2233 1638 0.400000 +2233 1657 0.400000 +2233 1742 0.400000 +2233 1744 0.400000 +2233 1803 0.400000 +2233 1832 0.400000 +2233 1853 0.400000 +2233 1949 0.400000 +2233 2094 0.400000 +2233 2166 0.400000 +2233 2176 0.400000 +2233 2222 0.400000 +2233 2278 0.400000 +2233 2311 0.400000 +2233 2351 0.400000 +2233 2358 0.400000 +2233 2372 0.400000 +2233 2407 0.400000 +2233 2462 0.400000 +2233 2563 0.400000 +2233 2587 0.400000 +2233 2591 0.400000 +2233 2626 0.400000 +2233 2698 0.400000 +2233 2801 0.400000 +2233 2822 0.400000 +2233 2828 0.400000 +2233 2834 0.400000 +2233 2852 0.400000 +2233 2873 0.400000 +2233 2875 0.400000 +2233 2890 0.400000 +2233 3055 0.400000 +2233 3056 0.400000 +2233 3107 0.400000 +2233 3142 0.400000 +2233 3176 0.400000 +2234 7 0.400000 +2234 22 0.400000 +2234 35 0.400000 +2234 86 0.400000 +2234 116 0.400000 +2234 190 0.400000 +2234 198 0.400000 +2234 348 0.400000 +2234 384 0.400000 +2234 505 0.400000 +2234 510 0.400000 +2234 516 0.400000 +2234 523 0.400000 +2234 555 0.400000 +2234 655 0.400000 +2234 692 0.400000 +2234 773 0.400000 +2234 847 0.400000 +2234 853 0.400000 +2234 876 0.400000 +2234 900 0.400000 +2234 904 0.400000 +2234 1082 0.400000 +2234 1117 0.400000 +2234 1129 0.400000 +2234 1173 0.400000 +2234 1264 0.400000 +2234 1294 0.400000 +2234 1331 0.400000 +2234 1361 0.400000 +2234 1445 0.400000 +2234 1454 0.400000 +2234 1498 0.400000 +2234 1549 0.400000 +2234 1551 0.400000 +2234 1663 0.400000 +2234 1698 0.400000 +2234 1725 0.400000 +2234 1797 0.400000 +2234 1854 0.400000 +2234 1955 0.400000 +2234 1994 0.400000 +2234 2005 0.400000 +2234 2035 0.400000 +2234 2131 0.400000 +2234 2140 0.400000 +2234 2241 0.400000 +2234 2296 0.400000 +2234 2442 0.400000 +2234 2477 0.400000 +2234 2480 0.400000 +2234 2482 0.400000 +2234 2505 0.400000 +2234 2547 0.400000 +2234 2549 0.400000 +2234 2618 0.400000 +2234 2643 0.400000 +2234 2671 0.400000 +2234 2697 0.400000 +2234 2835 0.400000 +2234 2839 0.400000 +2234 2916 0.400000 +2234 2947 0.400000 +2234 2985 0.400000 +2234 3106 0.400000 +2234 3159 0.400000 +2234 3166 0.400000 +2235 24 0.400000 +2235 64 0.400000 +2235 203 0.400000 +2235 448 0.400000 +2235 560 0.400000 +2235 647 0.400000 +2235 1009 0.400000 +2235 1019 0.400000 +2235 1048 0.400000 +2235 1135 0.400000 +2235 1156 0.400000 +2235 1208 0.400000 +2235 1213 0.400000 +2235 1296 0.400000 +2235 1351 0.400000 +2235 1381 0.400000 +2235 1394 0.400000 +2235 1400 0.400000 +2235 1464 0.400000 +2235 1473 0.400000 +2235 1492 0.400000 +2235 1524 0.400000 +2235 1543 0.400000 +2235 1572 0.400000 +2235 1575 0.400000 +2235 1610 0.400000 +2235 1621 0.400000 +2235 1623 0.400000 +2235 1684 0.400000 +2235 1746 0.400000 +2235 1781 0.400000 +2235 1876 0.400000 +2235 1901 0.400000 +2235 1909 0.400000 +2235 1932 0.400000 +2235 2001 0.400000 +2235 2061 0.400000 +2235 2105 0.400000 +2235 2137 0.400000 +2235 2206 0.400000 +2235 2224 0.400000 +2235 2235 0.400000 +2235 2257 0.400000 +2235 2280 0.400000 +2235 2308 0.400000 +2235 2387 0.400000 +2235 2389 0.400000 +2235 2414 0.400000 +2235 2582 0.400000 +2235 2624 0.400000 +2235 2644 0.400000 +2235 2783 0.400000 +2235 2886 0.400000 +2235 2999 0.400000 +2235 3037 0.400000 +2235 3064 0.400000 +2235 3068 0.400000 +2235 3095 0.400000 +2236 143 0.400000 +2236 154 0.400000 +2236 320 0.400000 +2236 384 0.400000 +2236 552 0.400000 +2236 631 0.400000 +2236 648 0.400000 +2236 667 0.400000 +2236 794 0.400000 +2236 806 0.400000 +2236 825 0.400000 +2236 848 0.400000 +2236 881 0.400000 +2236 940 0.400000 +2236 994 0.400000 +2236 1008 0.400000 +2236 1047 0.400000 +2236 1118 0.400000 +2236 1119 0.400000 +2236 1330 0.400000 +2236 1336 0.400000 +2236 1354 0.400000 +2236 1418 0.400000 +2236 1496 0.400000 +2236 1573 0.400000 +2236 1608 0.400000 +2236 1673 0.400000 +2236 1713 0.400000 +2236 1826 0.400000 +2236 1960 0.400000 +2236 2048 0.400000 +2236 2094 0.400000 +2236 2148 0.400000 +2236 2255 0.400000 +2236 2332 0.400000 +2236 2451 0.400000 +2236 2532 0.400000 +2236 2700 0.400000 +2236 2734 0.400000 +2236 2995 0.400000 +2236 3038 0.400000 +2236 3056 0.400000 +2236 3095 0.400000 +2236 3140 0.400000 +2236 3161 0.400000 +2236 3199 0.400000 +2237 100 0.400000 +2237 110 0.400000 +2237 117 0.400000 +2237 149 0.400000 +2237 338 0.400000 +2237 340 0.400000 +2237 427 0.400000 +2237 472 0.400000 +2237 479 0.400000 +2237 528 0.400000 +2237 572 0.400000 +2237 597 0.400000 +2237 614 0.400000 +2237 642 0.400000 +2237 664 0.400000 +2237 669 0.400000 +2237 835 0.400000 +2237 938 0.400000 +2237 964 0.400000 +2237 990 0.400000 +2237 1033 0.400000 +2237 1147 0.400000 +2237 1178 0.400000 +2237 1251 0.400000 +2237 1324 0.400000 +2237 1340 0.400000 +2237 1353 0.400000 +2237 1413 0.400000 +2237 1414 0.400000 +2237 1462 0.400000 +2237 1476 0.400000 +2237 1490 0.400000 +2237 1515 0.400000 +2237 1584 0.400000 +2237 1684 0.400000 +2237 1701 0.400000 +2237 1720 0.400000 +2237 1730 0.400000 +2237 1895 0.400000 +2237 1956 0.400000 +2237 1958 0.400000 +2237 1983 0.400000 +2237 2030 0.400000 +2237 2055 0.400000 +2237 2086 0.400000 +2237 2097 0.400000 +2237 2149 0.400000 +2237 2153 0.400000 +2237 2310 0.400000 +2237 2382 0.400000 +2237 2480 0.400000 +2237 2631 0.400000 +2237 2665 0.400000 +2237 2747 0.400000 +2237 2773 0.400000 +2237 2786 0.400000 +2237 2992 0.400000 +2237 3069 0.400000 +2237 3095 0.400000 +2237 3128 0.400000 +2238 14 0.400000 +2238 49 0.400000 +2238 67 0.400000 +2238 144 0.400000 +2238 181 0.400000 +2238 278 0.400000 +2238 290 0.400000 +2238 292 0.400000 +2238 320 0.400000 +2238 367 0.400000 +2238 380 0.400000 +2238 406 0.400000 +2238 410 0.400000 +2238 485 0.400000 +2238 589 0.400000 +2238 612 0.400000 +2238 640 0.400000 +2238 645 0.400000 +2238 689 0.400000 +2238 706 0.400000 +2238 709 0.400000 +2238 731 0.400000 +2238 741 0.400000 +2238 744 0.400000 +2238 793 0.400000 +2238 798 0.400000 +2238 831 0.400000 +2238 849 0.400000 +2238 987 0.400000 +2238 1043 0.400000 +2238 1080 0.400000 +2238 1152 0.400000 +2238 1185 0.400000 +2238 1204 0.400000 +2238 1249 0.400000 +2238 1411 0.400000 +2238 1526 0.400000 +2238 1531 0.400000 +2238 1612 0.400000 +2238 1621 0.400000 +2238 1643 0.400000 +2238 1690 0.400000 +2238 1751 0.400000 +2238 1752 0.400000 +2238 1832 0.400000 +2238 1848 0.400000 +2238 1926 0.400000 +2238 1973 0.400000 +2238 2000 0.400000 +2238 2059 0.400000 +2238 2076 0.400000 +2238 2117 0.400000 +2238 2123 0.400000 +2238 2180 0.400000 +2238 2229 0.400000 +2238 2263 0.400000 +2238 2332 0.400000 +2238 2507 0.400000 +2238 2534 0.400000 +2238 2546 0.400000 +2238 2598 0.400000 +2238 2632 0.400000 +2238 2675 0.400000 +2238 2695 0.400000 +2238 2800 0.400000 +2238 2835 0.400000 +2238 2856 0.400000 +2238 3002 0.400000 +2238 3029 0.400000 +2238 3143 0.400000 +2238 3182 0.400000 +2239 70 0.400000 +2239 299 0.400000 +2239 339 0.400000 +2239 363 0.400000 +2239 386 0.400000 +2239 398 0.400000 +2239 431 0.400000 +2239 652 0.400000 +2239 713 0.400000 +2239 821 0.400000 +2239 855 0.400000 +2239 860 0.400000 +2239 947 0.400000 +2239 1059 0.400000 +2239 1095 0.400000 +2239 1098 0.400000 +2239 1138 0.400000 +2239 1142 0.400000 +2239 1222 0.400000 +2239 1258 0.400000 +2239 1264 0.400000 +2239 1334 0.400000 +2239 1405 0.400000 +2239 1429 0.400000 +2239 1444 0.400000 +2239 1506 0.400000 +2239 1518 0.400000 +2239 1588 0.400000 +2239 1590 0.400000 +2239 1593 0.400000 +2239 1620 0.400000 +2239 1642 0.400000 +2239 1674 0.400000 +2239 1805 0.400000 +2239 1848 0.400000 +2239 1866 0.400000 +2239 1906 0.400000 +2239 1920 0.400000 +2239 1976 0.400000 +2239 1991 0.400000 +2239 2083 0.400000 +2239 2103 0.400000 +2239 2187 0.400000 +2239 2221 0.400000 +2239 2230 0.400000 +2239 2237 0.400000 +2239 2243 0.400000 +2239 2283 0.400000 +2239 2354 0.400000 +2239 2422 0.400000 +2239 2586 0.400000 +2239 2593 0.400000 +2239 2598 0.400000 +2239 2666 0.400000 +2239 2767 0.400000 +2239 2786 0.400000 +2239 2788 0.400000 +2239 2839 0.400000 +2239 2929 0.400000 +2239 3050 0.400000 +2239 3171 0.400000 +2239 3181 0.400000 +2240 155 0.400000 +2240 207 0.400000 +2240 245 0.400000 +2240 248 0.400000 +2240 283 0.400000 +2240 296 0.400000 +2240 321 0.400000 +2240 416 0.400000 +2240 469 0.400000 +2240 497 0.400000 +2240 541 0.400000 +2240 570 0.400000 +2240 597 0.400000 +2240 696 0.400000 +2240 710 0.400000 +2240 729 0.400000 +2240 770 0.400000 +2240 783 0.400000 +2240 798 0.400000 +2240 799 0.400000 +2240 856 0.400000 +2240 857 0.400000 +2240 963 0.400000 +2240 979 0.400000 +2240 1071 0.400000 +2240 1223 0.400000 +2240 1234 0.400000 +2240 1330 0.400000 +2240 1338 0.400000 +2240 1490 0.400000 +2240 1528 0.400000 +2240 1551 0.400000 +2240 1697 0.400000 +2240 1698 0.400000 +2240 1730 0.400000 +2240 1936 0.400000 +2240 1943 0.400000 +2240 1952 0.400000 +2240 1992 0.400000 +2240 2004 0.400000 +2240 2090 0.400000 +2240 2130 0.400000 +2240 2193 0.400000 +2240 2283 0.400000 +2240 2284 0.400000 +2240 2297 0.400000 +2240 2377 0.400000 +2240 2517 0.400000 +2240 2565 0.400000 +2240 2680 0.400000 +2240 2751 0.400000 +2240 2776 0.400000 +2240 2868 0.400000 +2240 2912 0.400000 +2240 2975 0.400000 +2240 3147 0.400000 +2240 3154 0.400000 +2241 40 0.400000 +2241 124 0.400000 +2241 142 0.400000 +2241 145 0.400000 +2241 169 0.400000 +2241 170 0.400000 +2241 232 0.400000 +2241 234 0.400000 +2241 274 0.400000 +2241 277 0.400000 +2241 305 0.400000 +2241 348 0.400000 +2241 401 0.400000 +2241 407 0.400000 +2241 410 0.400000 +2241 412 0.400000 +2241 428 0.400000 +2241 435 0.400000 +2241 580 0.400000 +2241 585 0.400000 +2241 611 0.400000 +2241 637 0.400000 +2241 684 0.400000 +2241 719 0.400000 +2241 730 0.400000 +2241 750 0.400000 +2241 764 0.400000 +2241 847 0.400000 +2241 849 0.400000 +2241 860 0.400000 +2241 960 0.400000 +2241 1074 0.400000 +2241 1086 0.400000 +2241 1133 0.400000 +2241 1139 0.400000 +2241 1214 0.400000 +2241 1230 0.400000 +2241 1239 0.400000 +2241 1283 0.400000 +2241 1559 0.400000 +2241 1600 0.400000 +2241 1608 0.400000 +2241 1691 0.400000 +2241 1813 0.400000 +2241 1817 0.400000 +2241 1822 0.400000 +2241 1898 0.400000 +2241 1915 0.400000 +2241 1965 0.400000 +2241 2094 0.400000 +2241 2208 0.400000 +2241 2210 0.400000 +2241 2236 0.400000 +2241 2238 0.400000 +2241 2273 0.400000 +2241 2299 0.400000 +2241 2417 0.400000 +2241 2433 0.400000 +2241 2516 0.400000 +2241 2546 0.400000 +2241 2587 0.400000 +2241 2618 0.400000 +2241 2674 0.400000 +2241 2693 0.400000 +2241 2723 0.400000 +2241 2880 0.400000 +2241 2884 0.400000 +2241 2895 0.400000 +2241 3045 0.400000 +2241 3048 0.400000 +2241 3122 0.400000 +2241 3183 0.400000 +2242 77 0.400000 +2242 79 0.400000 +2242 132 0.400000 +2242 214 0.400000 +2242 229 0.400000 +2242 324 0.400000 +2242 443 0.400000 +2242 521 0.400000 +2242 615 0.400000 +2242 713 0.400000 +2242 776 0.400000 +2242 805 0.400000 +2242 839 0.400000 +2242 973 0.400000 +2242 989 0.400000 +2242 1014 0.400000 +2242 1018 0.400000 +2242 1141 0.400000 +2242 1148 0.400000 +2242 1164 0.400000 +2242 1189 0.400000 +2242 1197 0.400000 +2242 1200 0.400000 +2242 1228 0.400000 +2242 1297 0.400000 +2242 1400 0.400000 +2242 1638 0.400000 +2242 1645 0.400000 +2242 1653 0.400000 +2242 1693 0.400000 +2242 1708 0.400000 +2242 1709 0.400000 +2242 1722 0.400000 +2242 1768 0.400000 +2242 1771 0.400000 +2242 1772 0.400000 +2242 1792 0.400000 +2242 1844 0.400000 +2242 1916 0.400000 +2242 1954 0.400000 +2242 1965 0.400000 +2242 2050 0.400000 +2242 2058 0.400000 +2242 2111 0.400000 +2242 2176 0.400000 +2242 2187 0.400000 +2242 2257 0.400000 +2242 2335 0.400000 +2242 2346 0.400000 +2242 2558 0.400000 +2242 2560 0.400000 +2242 2605 0.400000 +2242 2635 0.400000 +2242 2637 0.400000 +2242 2711 0.400000 +2242 2838 0.400000 +2242 2937 0.400000 +2242 2963 0.400000 +2242 2997 0.400000 +2242 3014 0.400000 +2242 3023 0.400000 +2242 3069 0.400000 +2242 3149 0.400000 +2243 40 0.400000 +2243 91 0.400000 +2243 141 0.400000 +2243 204 0.400000 +2243 241 0.400000 +2243 251 0.400000 +2243 345 0.400000 +2243 552 0.400000 +2243 557 0.400000 +2243 583 0.400000 +2243 637 0.400000 +2243 661 0.400000 +2243 688 0.400000 +2243 747 0.400000 +2243 773 0.400000 +2243 787 0.400000 +2243 875 0.400000 +2243 911 0.400000 +2243 975 0.400000 +2243 1048 0.400000 +2243 1063 0.400000 +2243 1076 0.400000 +2243 1177 0.400000 +2243 1198 0.400000 +2243 1235 0.400000 +2243 1253 0.400000 +2243 1288 0.400000 +2243 1404 0.400000 +2243 1460 0.400000 +2243 1463 0.400000 +2243 1479 0.400000 +2243 1540 0.400000 +2243 1617 0.400000 +2243 1622 0.400000 +2243 1640 0.400000 +2243 1652 0.400000 +2243 1722 0.400000 +2243 1757 0.400000 +2243 1767 0.400000 +2243 1768 0.400000 +2243 1949 0.400000 +2243 1967 0.400000 +2243 2013 0.400000 +2243 2021 0.400000 +2243 2038 0.400000 +2243 2039 0.400000 +2243 2066 0.400000 +2243 2091 0.400000 +2243 2092 0.400000 +2243 2097 0.400000 +2243 2111 0.400000 +2243 2204 0.400000 +2243 2231 0.400000 +2243 2236 0.400000 +2243 2253 0.400000 +2243 2329 0.400000 +2243 2387 0.400000 +2243 2396 0.400000 +2243 2491 0.400000 +2243 2666 0.400000 +2243 2785 0.400000 +2243 2816 0.400000 +2243 3010 0.400000 +2243 3026 0.400000 +2243 3112 0.400000 +2243 3129 0.400000 +2243 3141 0.400000 +2243 3178 0.400000 +2244 6 0.400000 +2244 42 0.400000 +2244 92 0.400000 +2244 354 0.400000 +2244 365 0.400000 +2244 387 0.400000 +2244 613 0.400000 +2244 623 0.400000 +2244 640 0.400000 +2244 718 0.400000 +2244 763 0.400000 +2244 919 0.400000 +2244 1015 0.400000 +2244 1136 0.400000 +2244 1152 0.400000 +2244 1164 0.400000 +2244 1260 0.400000 +2244 1263 0.400000 +2244 1324 0.400000 +2244 1326 0.400000 +2244 1372 0.400000 +2244 1375 0.400000 +2244 1380 0.400000 +2244 1389 0.400000 +2244 1550 0.400000 +2244 1584 0.400000 +2244 1735 0.400000 +2244 1765 0.400000 +2244 1806 0.400000 +2244 1884 0.400000 +2244 1953 0.400000 +2244 2066 0.400000 +2244 2105 0.400000 +2244 2112 0.400000 +2244 2158 0.400000 +2244 2170 0.400000 +2244 2244 0.400000 +2244 2259 0.400000 +2244 2260 0.400000 +2244 2370 0.400000 +2244 2483 0.400000 +2244 2486 0.400000 +2244 2552 0.400000 +2244 2555 0.400000 +2244 2556 0.400000 +2244 2615 0.400000 +2244 2625 0.400000 +2244 2659 0.400000 +2244 2763 0.400000 +2244 2862 0.400000 +2244 2880 0.400000 +2244 2899 0.400000 +2244 2926 0.400000 +2244 2980 0.400000 +2244 3002 0.400000 +2244 3022 0.400000 +2244 3026 0.400000 +2244 3070 0.400000 +2245 48 0.400000 +2245 52 0.400000 +2245 75 0.400000 +2245 122 0.400000 +2245 132 0.400000 +2245 142 0.400000 +2245 157 0.400000 +2245 191 0.400000 +2245 390 0.400000 +2245 483 0.400000 +2245 490 0.400000 +2245 559 0.400000 +2245 589 0.400000 +2245 705 0.400000 +2245 816 0.400000 +2245 842 0.400000 +2245 919 0.400000 +2245 940 0.400000 +2245 969 0.400000 +2245 1088 0.400000 +2245 1134 0.400000 +2245 1196 0.400000 +2245 1272 0.400000 +2245 1346 0.400000 +2245 1359 0.400000 +2245 1363 0.400000 +2245 1380 0.400000 +2245 1423 0.400000 +2245 1440 0.400000 +2245 1464 0.400000 +2245 1488 0.400000 +2245 1498 0.400000 +2245 1503 0.400000 +2245 1571 0.400000 +2245 1574 0.400000 +2245 1583 0.400000 +2245 1587 0.400000 +2245 1654 0.400000 +2245 1688 0.400000 +2245 1743 0.400000 +2245 1749 0.400000 +2245 1787 0.400000 +2245 1866 0.400000 +2245 1870 0.400000 +2245 1872 0.400000 +2245 1905 0.400000 +2245 2021 0.400000 +2245 2055 0.400000 +2245 2119 0.400000 +2245 2131 0.400000 +2245 2140 0.400000 +2245 2188 0.400000 +2245 2380 0.400000 +2245 2390 0.400000 +2245 2448 0.400000 +2245 2562 0.400000 +2245 2598 0.400000 +2245 2600 0.400000 +2245 2608 0.400000 +2245 2680 0.400000 +2245 2698 0.400000 +2245 2967 0.400000 +2245 3011 0.400000 +2245 3037 0.400000 +2246 10 0.400000 +2246 12 0.400000 +2246 103 0.400000 +2246 151 0.400000 +2246 333 0.400000 +2246 353 0.400000 +2246 361 0.400000 +2246 379 0.400000 +2246 463 0.400000 +2246 500 0.400000 +2246 534 0.400000 +2246 599 0.400000 +2246 619 0.400000 +2246 694 0.400000 +2246 706 0.400000 +2246 710 0.400000 +2246 768 0.400000 +2246 781 0.400000 +2246 864 0.400000 +2246 916 0.400000 +2246 953 0.400000 +2246 959 0.400000 +2246 989 0.400000 +2246 996 0.400000 +2246 1049 0.400000 +2246 1059 0.400000 +2246 1104 0.400000 +2246 1158 0.400000 +2246 1194 0.400000 +2246 1270 0.400000 +2246 1323 0.400000 +2246 1325 0.400000 +2246 1342 0.400000 +2246 1457 0.400000 +2246 1611 0.400000 +2246 1692 0.400000 +2246 1719 0.400000 +2246 1720 0.400000 +2246 1817 0.400000 +2246 1825 0.400000 +2246 2003 0.400000 +2246 2022 0.400000 +2246 2038 0.400000 +2246 2077 0.400000 +2246 2153 0.400000 +2246 2160 0.400000 +2246 2187 0.400000 +2246 2189 0.400000 +2246 2206 0.400000 +2246 2265 0.400000 +2246 2274 0.400000 +2246 2289 0.400000 +2246 2352 0.400000 +2246 2387 0.400000 +2246 2461 0.400000 +2246 2472 0.400000 +2246 2490 0.400000 +2246 2546 0.400000 +2246 2572 0.400000 +2246 2624 0.400000 +2246 2644 0.400000 +2246 2656 0.400000 +2246 2677 0.400000 +2246 2711 0.400000 +2246 2757 0.400000 +2246 2775 0.400000 +2246 2802 0.400000 +2246 3022 0.400000 +2246 3069 0.400000 +2246 3076 0.400000 +2246 3080 0.400000 +2246 3087 0.400000 +2246 3106 0.400000 +2246 3147 0.400000 +2246 3157 0.400000 +2247 5 0.400000 +2247 14 0.400000 +2247 86 0.400000 +2247 122 0.400000 +2247 138 0.400000 +2247 177 0.400000 +2247 223 0.400000 +2247 227 0.400000 +2247 229 0.400000 +2247 351 0.400000 +2247 404 0.400000 +2247 409 0.400000 +2247 554 0.400000 +2247 589 0.400000 +2247 598 0.400000 +2247 637 0.400000 +2247 689 0.400000 +2247 762 0.400000 +2247 771 0.400000 +2247 826 0.400000 +2247 983 0.400000 +2247 1035 0.400000 +2247 1076 0.400000 +2247 1210 0.400000 +2247 1247 0.400000 +2247 1251 0.400000 +2247 1261 0.400000 +2247 1339 0.400000 +2247 1358 0.400000 +2247 1367 0.400000 +2247 1471 0.400000 +2247 1620 0.400000 +2247 1628 0.400000 +2247 1679 0.400000 +2247 1725 0.400000 +2247 1742 0.400000 +2247 1748 0.400000 +2247 1846 0.400000 +2247 1957 0.400000 +2247 2159 0.400000 +2247 2200 0.400000 +2247 2356 0.400000 +2247 2376 0.400000 +2247 2489 0.400000 +2247 2610 0.400000 +2247 2668 0.400000 +2247 2675 0.400000 +2247 2685 0.400000 +2247 2745 0.400000 +2247 2778 0.400000 +2247 2793 0.400000 +2247 2814 0.400000 +2247 2907 0.400000 +2247 3028 0.400000 +2247 3119 0.400000 +2247 3146 0.400000 +2247 3150 0.400000 +2248 12 0.400000 +2248 32 0.400000 +2248 39 0.400000 +2248 63 0.400000 +2248 244 0.400000 +2248 261 0.400000 +2248 284 0.400000 +2248 324 0.400000 +2248 401 0.400000 +2248 403 0.400000 +2248 427 0.400000 +2248 524 0.400000 +2248 526 0.400000 +2248 575 0.400000 +2248 649 0.400000 +2248 654 0.400000 +2248 668 0.400000 +2248 749 0.400000 +2248 778 0.400000 +2248 817 0.400000 +2248 859 0.400000 +2248 894 0.400000 +2248 964 0.400000 +2248 1042 0.400000 +2248 1045 0.400000 +2248 1092 0.400000 +2248 1121 0.400000 +2248 1157 0.400000 +2248 1234 0.400000 +2248 1311 0.400000 +2248 1378 0.400000 +2248 1426 0.400000 +2248 1441 0.400000 +2248 1452 0.400000 +2248 1497 0.400000 +2248 1500 0.400000 +2248 1542 0.400000 +2248 1551 0.400000 +2248 1601 0.400000 +2248 1610 0.400000 +2248 1681 0.400000 +2248 1712 0.400000 +2248 1722 0.400000 +2248 1724 0.400000 +2248 1775 0.400000 +2248 1811 0.400000 +2248 1824 0.400000 +2248 1830 0.400000 +2248 1887 0.400000 +2248 1891 0.400000 +2248 1920 0.400000 +2248 1922 0.400000 +2248 1943 0.400000 +2248 1971 0.400000 +2248 1989 0.400000 +2248 2047 0.400000 +2248 2253 0.400000 +2248 2256 0.400000 +2248 2277 0.400000 +2248 2305 0.400000 +2248 2532 0.400000 +2248 2563 0.400000 +2248 2681 0.400000 +2248 2836 0.400000 +2248 2942 0.400000 +2248 2945 0.400000 +2248 2976 0.400000 +2248 2977 0.400000 +2248 2985 0.400000 +2248 3032 0.400000 +2248 3092 0.400000 +2248 3107 0.400000 +2248 3123 0.400000 +2248 3153 0.400000 +2248 3175 0.400000 +2248 3183 0.400000 +2249 46 0.400000 +2249 73 0.400000 +2249 382 0.400000 +2249 498 0.400000 +2249 546 0.400000 +2249 614 0.400000 +2249 615 0.400000 +2249 658 0.400000 +2249 678 0.400000 +2249 683 0.400000 +2249 685 0.400000 +2249 694 0.400000 +2249 743 0.400000 +2249 766 0.400000 +2249 778 0.400000 +2249 831 0.400000 +2249 837 0.400000 +2249 838 0.400000 +2249 888 0.400000 +2249 892 0.400000 +2249 899 0.400000 +2249 918 0.400000 +2249 1065 0.400000 +2249 1082 0.400000 +2249 1083 0.400000 +2249 1126 0.400000 +2249 1157 0.400000 +2249 1181 0.400000 +2249 1254 0.400000 +2249 1256 0.400000 +2249 1258 0.400000 +2249 1273 0.400000 +2249 1357 0.400000 +2249 1414 0.400000 +2249 1549 0.400000 +2249 1585 0.400000 +2249 1682 0.400000 +2249 1776 0.400000 +2249 1794 0.400000 +2249 1829 0.400000 +2249 1856 0.400000 +2249 1860 0.400000 +2249 1919 0.400000 +2249 1927 0.400000 +2249 1989 0.400000 +2249 2000 0.400000 +2249 2079 0.400000 +2249 2161 0.400000 +2249 2217 0.400000 +2249 2234 0.400000 +2249 2241 0.400000 +2249 2266 0.400000 +2249 2326 0.400000 +2249 2342 0.400000 +2249 2368 0.400000 +2249 2371 0.400000 +2249 2373 0.400000 +2249 2430 0.400000 +2249 2535 0.400000 +2249 2575 0.400000 +2249 2616 0.400000 +2249 2653 0.400000 +2249 2666 0.400000 +2249 2685 0.400000 +2249 2698 0.400000 +2249 2783 0.400000 +2249 2789 0.400000 +2249 2813 0.400000 +2249 2859 0.400000 +2249 2918 0.400000 +2249 2960 0.400000 +2249 2968 0.400000 +2249 2974 0.400000 +2249 2995 0.400000 +2249 3059 0.400000 +2249 3093 0.400000 +2249 3107 0.400000 +2250 20 0.400000 +2250 41 0.400000 +2250 83 0.400000 +2250 93 0.400000 +2250 105 0.400000 +2250 199 0.400000 +2250 213 0.400000 +2250 265 0.400000 +2250 278 0.400000 +2250 290 0.400000 +2250 308 0.400000 +2250 310 0.400000 +2250 318 0.400000 +2250 333 0.400000 +2250 361 0.400000 +2250 380 0.400000 +2250 382 0.400000 +2250 437 0.400000 +2250 449 0.400000 +2250 507 0.400000 +2250 509 0.400000 +2250 832 0.400000 +2250 895 0.400000 +2250 929 0.400000 +2250 945 0.400000 +2250 980 0.400000 +2250 1028 0.400000 +2250 1055 0.400000 +2250 1070 0.400000 +2250 1172 0.400000 +2250 1240 0.400000 +2250 1254 0.400000 +2250 1289 0.400000 +2250 1304 0.400000 +2250 1364 0.400000 +2250 1571 0.400000 +2250 1577 0.400000 +2250 1602 0.400000 +2250 1650 0.400000 +2250 1652 0.400000 +2250 1739 0.400000 +2250 1872 0.400000 +2250 1919 0.400000 +2250 1921 0.400000 +2250 1925 0.400000 +2250 1946 0.400000 +2250 1971 0.400000 +2250 2097 0.400000 +2250 2121 0.400000 +2250 2135 0.400000 +2250 2151 0.400000 +2250 2152 0.400000 +2250 2175 0.400000 +2250 2220 0.400000 +2250 2326 0.400000 +2250 2426 0.400000 +2250 2523 0.400000 +2250 2530 0.400000 +2250 2655 0.400000 +2250 2661 0.400000 +2250 2698 0.400000 +2250 2779 0.400000 +2250 2798 0.400000 +2250 2809 0.400000 +2250 2842 0.400000 +2250 2892 0.400000 +2250 2894 0.400000 +2250 3041 0.400000 +2250 3108 0.400000 +2250 3114 0.400000 +2250 3125 0.400000 +2250 3139 0.400000 +2250 3186 0.400000 +2251 126 0.400000 +2251 200 0.400000 +2251 232 0.400000 +2251 307 0.400000 +2251 311 0.400000 +2251 371 0.400000 +2251 450 0.400000 +2251 535 0.400000 +2251 575 0.400000 +2251 579 0.400000 +2251 619 0.400000 +2251 639 0.400000 +2251 881 0.400000 +2251 899 0.400000 +2251 950 0.400000 +2251 1001 0.400000 +2251 1024 0.400000 +2251 1029 0.400000 +2251 1082 0.400000 +2251 1086 0.400000 +2251 1210 0.400000 +2251 1236 0.400000 +2251 1276 0.400000 +2251 1400 0.400000 +2251 1422 0.400000 +2251 1595 0.400000 +2251 1608 0.400000 +2251 1615 0.400000 +2251 1616 0.400000 +2251 1698 0.400000 +2251 1764 0.400000 +2251 1809 0.400000 +2251 1829 0.400000 +2251 1887 0.400000 +2251 1952 0.400000 +2251 1989 0.400000 +2251 2084 0.400000 +2251 2145 0.400000 +2251 2173 0.400000 +2251 2178 0.400000 +2251 2185 0.400000 +2251 2200 0.400000 +2251 2211 0.400000 +2251 2215 0.400000 +2251 2225 0.400000 +2251 2450 0.400000 +2251 2505 0.400000 +2251 2509 0.400000 +2251 2565 0.400000 +2251 2632 0.400000 +2251 2671 0.400000 +2251 2740 0.400000 +2251 2766 0.400000 +2251 2767 0.400000 +2251 2806 0.400000 +2251 2883 0.400000 +2251 2943 0.400000 +2251 2945 0.400000 +2251 3179 0.400000 +2252 10 0.400000 +2252 122 0.400000 +2252 139 0.400000 +2252 153 0.400000 +2252 235 0.400000 +2252 265 0.400000 +2252 284 0.400000 +2252 307 0.400000 +2252 312 0.400000 +2252 364 0.400000 +2252 386 0.400000 +2252 515 0.400000 +2252 526 0.400000 +2252 564 0.400000 +2252 565 0.400000 +2252 644 0.400000 +2252 650 0.400000 +2252 703 0.400000 +2252 713 0.400000 +2252 765 0.400000 +2252 790 0.400000 +2252 796 0.400000 +2252 851 0.400000 +2252 861 0.400000 +2252 876 0.400000 +2252 913 0.400000 +2252 960 0.400000 +2252 970 0.400000 +2252 1010 0.400000 +2252 1040 0.400000 +2252 1044 0.400000 +2252 1071 0.400000 +2252 1117 0.400000 +2252 1134 0.400000 +2252 1164 0.400000 +2252 1218 0.400000 +2252 1287 0.400000 +2252 1484 0.400000 +2252 1511 0.400000 +2252 1701 0.400000 +2252 1750 0.400000 +2252 1812 0.400000 +2252 1866 0.400000 +2252 1913 0.400000 +2252 1926 0.400000 +2252 1967 0.400000 +2252 1985 0.400000 +2252 2112 0.400000 +2252 2122 0.400000 +2252 2153 0.400000 +2252 2158 0.400000 +2252 2160 0.400000 +2252 2164 0.400000 +2252 2165 0.400000 +2252 2187 0.400000 +2252 2268 0.400000 +2252 2286 0.400000 +2252 2366 0.400000 +2252 2370 0.400000 +2252 2379 0.400000 +2252 2572 0.400000 +2252 2583 0.400000 +2252 2623 0.400000 +2252 2752 0.400000 +2252 2822 0.400000 +2252 2968 0.400000 +2252 3007 0.400000 +2252 3012 0.400000 +2252 3013 0.400000 +2252 3103 0.400000 +2252 3195 0.400000 +2253 8 0.400000 +2253 23 0.400000 +2253 71 0.400000 +2253 232 0.400000 +2253 327 0.400000 +2253 375 0.400000 +2253 400 0.400000 +2253 415 0.400000 +2253 433 0.400000 +2253 556 0.400000 +2253 629 0.400000 +2253 703 0.400000 +2253 706 0.400000 +2253 747 0.400000 +2253 755 0.400000 +2253 758 0.400000 +2253 841 0.400000 +2253 889 0.400000 +2253 922 0.400000 +2253 945 0.400000 +2253 957 0.400000 +2253 980 0.400000 +2253 1156 0.400000 +2253 1262 0.400000 +2253 1263 0.400000 +2253 1354 0.400000 +2253 1410 0.400000 +2253 1430 0.400000 +2253 1467 0.400000 +2253 1558 0.400000 +2253 1698 0.400000 +2253 1881 0.400000 +2253 1883 0.400000 +2253 1916 0.400000 +2253 1921 0.400000 +2253 1928 0.400000 +2253 1965 0.400000 +2253 2025 0.400000 +2253 2118 0.400000 +2253 2207 0.400000 +2253 2217 0.400000 +2253 2248 0.400000 +2253 2261 0.400000 +2253 2312 0.400000 +2253 2356 0.400000 +2253 2502 0.400000 +2253 2508 0.400000 +2253 2519 0.400000 +2253 2591 0.400000 +2253 2637 0.400000 +2253 2641 0.400000 +2253 2651 0.400000 +2253 2660 0.400000 +2253 2716 0.400000 +2253 2814 0.400000 +2253 2817 0.400000 +2253 2910 0.400000 +2253 2950 0.400000 +2253 3028 0.400000 +2253 3061 0.400000 +2253 3066 0.400000 +2253 3167 0.400000 +2254 11 0.400000 +2254 45 0.400000 +2254 46 0.400000 +2254 63 0.400000 +2254 87 0.400000 +2254 150 0.400000 +2254 205 0.400000 +2254 347 0.400000 +2254 431 0.400000 +2254 440 0.400000 +2254 463 0.400000 +2254 500 0.400000 +2254 508 0.400000 +2254 556 0.400000 +2254 562 0.400000 +2254 598 0.400000 +2254 603 0.400000 +2254 615 0.400000 +2254 756 0.400000 +2254 782 0.400000 +2254 814 0.400000 +2254 821 0.400000 +2254 833 0.400000 +2254 960 0.400000 +2254 976 0.400000 +2254 1046 0.400000 +2254 1232 0.400000 +2254 1345 0.400000 +2254 1350 0.400000 +2254 1352 0.400000 +2254 1442 0.400000 +2254 1460 0.400000 +2254 1539 0.400000 +2254 1717 0.400000 +2254 1813 0.400000 +2254 1832 0.400000 +2254 1836 0.400000 +2254 1933 0.400000 +2254 1958 0.400000 +2254 1985 0.400000 +2254 2023 0.400000 +2254 2073 0.400000 +2254 2116 0.400000 +2254 2148 0.400000 +2254 2207 0.400000 +2254 2259 0.400000 +2254 2267 0.400000 +2254 2282 0.400000 +2254 2283 0.400000 +2254 2299 0.400000 +2254 2338 0.400000 +2254 2354 0.400000 +2254 2511 0.400000 +2254 2533 0.400000 +2254 2563 0.400000 +2254 2573 0.400000 +2254 2576 0.400000 +2254 2703 0.400000 +2254 2713 0.400000 +2254 2774 0.400000 +2254 2891 0.400000 +2254 2974 0.400000 +2254 3143 0.400000 +2254 3154 0.400000 +2255 99 0.400000 +2255 138 0.400000 +2255 192 0.400000 +2255 242 0.400000 +2255 262 0.400000 +2255 274 0.400000 +2255 390 0.400000 +2255 452 0.400000 +2255 479 0.400000 +2255 522 0.400000 +2255 530 0.400000 +2255 585 0.400000 +2255 586 0.400000 +2255 688 0.400000 +2255 762 0.400000 +2255 856 0.400000 +2255 1012 0.400000 +2255 1053 0.400000 +2255 1147 0.400000 +2255 1154 0.400000 +2255 1211 0.400000 +2255 1263 0.400000 +2255 1299 0.400000 +2255 1359 0.400000 +2255 1390 0.400000 +2255 1464 0.400000 +2255 1467 0.400000 +2255 1575 0.400000 +2255 1613 0.400000 +2255 1645 0.400000 +2255 1679 0.400000 +2255 1706 0.400000 +2255 1728 0.400000 +2255 1747 0.400000 +2255 1779 0.400000 +2255 1844 0.400000 +2255 1865 0.400000 +2255 1891 0.400000 +2255 1937 0.400000 +2255 1963 0.400000 +2255 2027 0.400000 +2255 2104 0.400000 +2255 2162 0.400000 +2255 2182 0.400000 +2255 2207 0.400000 +2255 2279 0.400000 +2255 2408 0.400000 +2255 2410 0.400000 +2255 2427 0.400000 +2255 2546 0.400000 +2255 2549 0.400000 +2255 2551 0.400000 +2255 2617 0.400000 +2255 2645 0.400000 +2255 2678 0.400000 +2255 2748 0.400000 +2255 2867 0.400000 +2255 2919 0.400000 +2255 2991 0.400000 +2255 2995 0.400000 +2255 3021 0.400000 +2255 3024 0.400000 +2255 3034 0.400000 +2255 3058 0.400000 +2255 3143 0.400000 +2255 3162 0.400000 +2255 3177 0.400000 +2256 24 0.400000 +2256 36 0.400000 +2256 39 0.400000 +2256 195 0.400000 +2256 237 0.400000 +2256 318 0.400000 +2256 371 0.400000 +2256 403 0.400000 +2256 467 0.400000 +2256 473 0.400000 +2256 535 0.400000 +2256 560 0.400000 +2256 563 0.400000 +2256 643 0.400000 +2256 751 0.400000 +2256 781 0.400000 +2256 861 0.400000 +2256 867 0.400000 +2256 877 0.400000 +2256 933 0.400000 +2256 953 0.400000 +2256 991 0.400000 +2256 997 0.400000 +2256 1034 0.400000 +2256 1092 0.400000 +2256 1105 0.400000 +2256 1136 0.400000 +2256 1217 0.400000 +2256 1243 0.400000 +2256 1295 0.400000 +2256 1375 0.400000 +2256 1383 0.400000 +2256 1416 0.400000 +2256 1424 0.400000 +2256 1430 0.400000 +2256 1514 0.400000 +2256 1618 0.400000 +2256 1659 0.400000 +2256 1685 0.400000 +2256 1700 0.400000 +2256 1711 0.400000 +2256 1813 0.400000 +2256 1852 0.400000 +2256 1856 0.400000 +2256 1903 0.400000 +2256 1927 0.400000 +2256 1980 0.400000 +2256 2046 0.400000 +2256 2055 0.400000 +2256 2058 0.400000 +2256 2092 0.400000 +2256 2107 0.400000 +2256 2115 0.400000 +2256 2162 0.400000 +2256 2298 0.400000 +2256 2312 0.400000 +2256 2388 0.400000 +2256 2467 0.400000 +2256 2470 0.400000 +2256 2495 0.400000 +2256 2503 0.400000 +2256 2573 0.400000 +2256 2581 0.400000 +2256 2645 0.400000 +2256 2707 0.400000 +2256 2737 0.400000 +2256 2759 0.400000 +2256 2771 0.400000 +2256 2924 0.400000 +2256 3077 0.400000 +2257 119 0.400000 +2257 156 0.400000 +2257 194 0.400000 +2257 203 0.400000 +2257 244 0.400000 +2257 251 0.400000 +2257 285 0.400000 +2257 311 0.400000 +2257 323 0.400000 +2257 501 0.400000 +2257 523 0.400000 +2257 554 0.400000 +2257 571 0.400000 +2257 599 0.400000 +2257 638 0.400000 +2257 747 0.400000 +2257 750 0.400000 +2257 788 0.400000 +2257 862 0.400000 +2257 894 0.400000 +2257 986 0.400000 +2257 999 0.400000 +2257 1017 0.400000 +2257 1035 0.400000 +2257 1144 0.400000 +2257 1202 0.400000 +2257 1203 0.400000 +2257 1282 0.400000 +2257 1301 0.400000 +2257 1364 0.400000 +2257 1380 0.400000 +2257 1398 0.400000 +2257 1453 0.400000 +2257 1536 0.400000 +2257 1538 0.400000 +2257 1568 0.400000 +2257 1577 0.400000 +2257 1647 0.400000 +2257 1720 0.400000 +2257 1812 0.400000 +2257 1953 0.400000 +2257 1980 0.400000 +2257 2078 0.400000 +2257 2094 0.400000 +2257 2101 0.400000 +2257 2144 0.400000 +2257 2155 0.400000 +2257 2287 0.400000 +2257 2363 0.400000 +2257 2406 0.400000 +2257 2528 0.400000 +2257 2591 0.400000 +2257 2686 0.400000 +2257 2753 0.400000 +2257 2781 0.400000 +2257 2846 0.400000 +2257 2900 0.400000 +2257 2936 0.400000 +2257 2957 0.400000 +2257 3032 0.400000 +2257 3047 0.400000 +2257 3051 0.400000 +2257 3154 0.400000 +2257 3191 0.400000 +2258 3 0.400000 +2258 115 0.400000 +2258 272 0.400000 +2258 279 0.400000 +2258 370 0.400000 +2258 426 0.400000 +2258 471 0.400000 +2258 512 0.400000 +2258 567 0.400000 +2258 685 0.400000 +2258 764 0.400000 +2258 931 0.400000 +2258 953 0.400000 +2258 1001 0.400000 +2258 1004 0.400000 +2258 1011 0.400000 +2258 1067 0.400000 +2258 1071 0.400000 +2258 1082 0.400000 +2258 1106 0.400000 +2258 1123 0.400000 +2258 1154 0.400000 +2258 1248 0.400000 +2258 1280 0.400000 +2258 1323 0.400000 +2258 1396 0.400000 +2258 1443 0.400000 +2258 1446 0.400000 +2258 1516 0.400000 +2258 1547 0.400000 +2258 1588 0.400000 +2258 1772 0.400000 +2258 1776 0.400000 +2258 1824 0.400000 +2258 1825 0.400000 +2258 1855 0.400000 +2258 1967 0.400000 +2258 1969 0.400000 +2258 2156 0.400000 +2258 2170 0.400000 +2258 2186 0.400000 +2258 2234 0.400000 +2258 2235 0.400000 +2258 2266 0.400000 +2258 2493 0.400000 +2258 2512 0.400000 +2258 2589 0.400000 +2258 2647 0.400000 +2258 2753 0.400000 +2258 2924 0.400000 +2258 3006 0.400000 +2258 3017 0.400000 +2258 3028 0.400000 +2258 3060 0.400000 +2258 3079 0.400000 +2258 3095 0.400000 +2258 3150 0.400000 +2259 33 0.400000 +2259 52 0.400000 +2259 138 0.400000 +2259 451 0.400000 +2259 517 0.400000 +2259 551 0.400000 +2259 560 0.400000 +2259 565 0.400000 +2259 598 0.400000 +2259 639 0.400000 +2259 679 0.400000 +2259 769 0.400000 +2259 785 0.400000 +2259 954 0.400000 +2259 960 0.400000 +2259 980 0.400000 +2259 1119 0.400000 +2259 1126 0.400000 +2259 1137 0.400000 +2259 1185 0.400000 +2259 1245 0.400000 +2259 1264 0.400000 +2259 1292 0.400000 +2259 1314 0.400000 +2259 1338 0.400000 +2259 1345 0.400000 +2259 1424 0.400000 +2259 1426 0.400000 +2259 1437 0.400000 +2259 1451 0.400000 +2259 1536 0.400000 +2259 1567 0.400000 +2259 1637 0.400000 +2259 1664 0.400000 +2259 1695 0.400000 +2259 1712 0.400000 +2259 1738 0.400000 +2259 1741 0.400000 +2259 1804 0.400000 +2259 1905 0.400000 +2259 1946 0.400000 +2259 1996 0.400000 +2259 2031 0.400000 +2259 2065 0.400000 +2259 2189 0.400000 +2259 2269 0.400000 +2259 2320 0.400000 +2259 2424 0.400000 +2259 2472 0.400000 +2259 2525 0.400000 +2259 2558 0.400000 +2259 2598 0.400000 +2259 2623 0.400000 +2259 2661 0.400000 +2259 2693 0.400000 +2259 2718 0.400000 +2259 2729 0.400000 +2259 2742 0.400000 +2259 2784 0.400000 +2259 2857 0.400000 +2259 2953 0.400000 +2259 2959 0.400000 +2259 2982 0.400000 +2259 3033 0.400000 +2259 3098 0.400000 +2259 3136 0.400000 +2259 3168 0.400000 +2259 3179 0.400000 +2260 6 0.400000 +2260 29 0.400000 +2260 67 0.400000 +2260 75 0.400000 +2260 205 0.400000 +2260 241 0.400000 +2260 302 0.400000 +2260 340 0.400000 +2260 387 0.400000 +2260 424 0.400000 +2260 432 0.400000 +2260 497 0.400000 +2260 534 0.400000 +2260 547 0.400000 +2260 594 0.400000 +2260 636 0.400000 +2260 708 0.400000 +2260 826 0.400000 +2260 842 0.400000 +2260 979 0.400000 +2260 1010 0.400000 +2260 1013 0.400000 +2260 1037 0.400000 +2260 1130 0.400000 +2260 1144 0.400000 +2260 1154 0.400000 +2260 1169 0.400000 +2260 1182 0.400000 +2260 1187 0.400000 +2260 1309 0.400000 +2260 1313 0.400000 +2260 1365 0.400000 +2260 1475 0.400000 +2260 1542 0.400000 +2260 1561 0.400000 +2260 1653 0.400000 +2260 1818 0.400000 +2260 1853 0.400000 +2260 1994 0.400000 +2260 2035 0.400000 +2260 2042 0.400000 +2260 2119 0.400000 +2260 2139 0.400000 +2260 2266 0.400000 +2260 2298 0.400000 +2260 2356 0.400000 +2260 2406 0.400000 +2260 2498 0.400000 +2260 2504 0.400000 +2260 2520 0.400000 +2260 2555 0.400000 +2260 2618 0.400000 +2260 2662 0.400000 +2260 2675 0.400000 +2260 2743 0.400000 +2260 2745 0.400000 +2260 2779 0.400000 +2260 2790 0.400000 +2260 2834 0.400000 +2260 2843 0.400000 +2260 2853 0.400000 +2260 2983 0.400000 +2260 3049 0.400000 +2260 3095 0.400000 +2260 3119 0.400000 +2260 3188 0.400000 +2261 30 0.400000 +2261 157 0.400000 +2261 179 0.400000 +2261 280 0.400000 +2261 317 0.400000 +2261 334 0.400000 +2261 416 0.400000 +2261 437 0.400000 +2261 494 0.400000 +2261 498 0.400000 +2261 557 0.400000 +2261 559 0.400000 +2261 584 0.400000 +2261 658 0.400000 +2261 677 0.400000 +2261 740 0.400000 +2261 801 0.400000 +2261 807 0.400000 +2261 816 0.400000 +2261 953 0.400000 +2261 1112 0.400000 +2261 1165 0.400000 +2261 1230 0.400000 +2261 1258 0.400000 +2261 1286 0.400000 +2261 1302 0.400000 +2261 1334 0.400000 +2261 1380 0.400000 +2261 1390 0.400000 +2261 1410 0.400000 +2261 1427 0.400000 +2261 1447 0.400000 +2261 1541 0.400000 +2261 1544 0.400000 +2261 1599 0.400000 +2261 1647 0.400000 +2261 1676 0.400000 +2261 1772 0.400000 +2261 1782 0.400000 +2261 1848 0.400000 +2261 1887 0.400000 +2261 1934 0.400000 +2261 1946 0.400000 +2261 2011 0.400000 +2261 2026 0.400000 +2261 2052 0.400000 +2261 2099 0.400000 +2261 2121 0.400000 +2261 2168 0.400000 +2261 2267 0.400000 +2261 2296 0.400000 +2261 2318 0.400000 +2261 2323 0.400000 +2261 2342 0.400000 +2261 2360 0.400000 +2261 2376 0.400000 +2261 2395 0.400000 +2261 2452 0.400000 +2261 2484 0.400000 +2261 2485 0.400000 +2261 2532 0.400000 +2261 2563 0.400000 +2261 2655 0.400000 +2261 2726 0.400000 +2261 2750 0.400000 +2261 2778 0.400000 +2261 2991 0.400000 +2261 3036 0.400000 +2261 3074 0.400000 +2261 3157 0.400000 +2262 15 0.400000 +2262 23 0.400000 +2262 35 0.400000 +2262 42 0.400000 +2262 52 0.400000 +2262 103 0.400000 +2262 110 0.400000 +2262 124 0.400000 +2262 229 0.400000 +2262 303 0.400000 +2262 304 0.400000 +2262 359 0.400000 +2262 397 0.400000 +2262 504 0.400000 +2262 533 0.400000 +2262 535 0.400000 +2262 542 0.400000 +2262 556 0.400000 +2262 716 0.400000 +2262 721 0.400000 +2262 778 0.400000 +2262 836 0.400000 +2262 866 0.400000 +2262 922 0.400000 +2262 1102 0.400000 +2262 1164 0.400000 +2262 1176 0.400000 +2262 1249 0.400000 +2262 1256 0.400000 +2262 1291 0.400000 +2262 1376 0.400000 +2262 1380 0.400000 +2262 1508 0.400000 +2262 1530 0.400000 +2262 1633 0.400000 +2262 1740 0.400000 +2262 1867 0.400000 +2262 1875 0.400000 +2262 1876 0.400000 +2262 1961 0.400000 +2262 2018 0.400000 +2262 2073 0.400000 +2262 2227 0.400000 +2262 2338 0.400000 +2262 2349 0.400000 +2262 2350 0.400000 +2262 2381 0.400000 +2262 2425 0.400000 +2262 2433 0.400000 +2262 2448 0.400000 +2262 2476 0.400000 +2262 2493 0.400000 +2262 2522 0.400000 +2262 2672 0.400000 +2262 2690 0.400000 +2262 2781 0.400000 +2262 2836 0.400000 +2262 2885 0.400000 +2262 2912 0.400000 +2262 2925 0.400000 +2262 3034 0.400000 +2262 3131 0.400000 +2262 3181 0.400000 +2263 9 0.400000 +2263 51 0.400000 +2263 56 0.400000 +2263 87 0.400000 +2263 122 0.400000 +2263 132 0.400000 +2263 150 0.400000 +2263 186 0.400000 +2263 194 0.400000 +2263 408 0.400000 +2263 447 0.400000 +2263 496 0.400000 +2263 664 0.400000 +2263 854 0.400000 +2263 859 0.400000 +2263 994 0.400000 +2263 1018 0.400000 +2263 1160 0.400000 +2263 1186 0.400000 +2263 1221 0.400000 +2263 1227 0.400000 +2263 1339 0.400000 +2263 1353 0.400000 +2263 1366 0.400000 +2263 1384 0.400000 +2263 1418 0.400000 +2263 1454 0.400000 +2263 1560 0.400000 +2263 1564 0.400000 +2263 1581 0.400000 +2263 1611 0.400000 +2263 1622 0.400000 +2263 1669 0.400000 +2263 1679 0.400000 +2263 1704 0.400000 +2263 1709 0.400000 +2263 1770 0.400000 +2263 1915 0.400000 +2263 1966 0.400000 +2263 2076 0.400000 +2263 2197 0.400000 +2263 2234 0.400000 +2263 2248 0.400000 +2263 2302 0.400000 +2263 2350 0.400000 +2263 2416 0.400000 +2263 2423 0.400000 +2263 2523 0.400000 +2263 2558 0.400000 +2263 2602 0.400000 +2263 2692 0.400000 +2263 2860 0.400000 +2263 2888 0.400000 +2263 2905 0.400000 +2263 2972 0.400000 +2263 2981 0.400000 +2263 3098 0.400000 +2263 3185 0.400000 +2264 1 0.400000 +2264 31 0.400000 +2264 264 0.400000 +2264 275 0.400000 +2264 294 0.400000 +2264 328 0.400000 +2264 522 0.400000 +2264 647 0.400000 +2264 689 0.400000 +2264 721 0.400000 +2264 725 0.400000 +2264 739 0.400000 +2264 848 0.400000 +2264 882 0.400000 +2264 944 0.400000 +2264 1029 0.400000 +2264 1062 0.400000 +2264 1083 0.400000 +2264 1149 0.400000 +2264 1286 0.400000 +2264 1352 0.400000 +2264 1410 0.400000 +2264 1424 0.400000 +2264 1498 0.400000 +2264 1554 0.400000 +2264 1610 0.400000 +2264 1724 0.400000 +2264 1784 0.400000 +2264 1793 0.400000 +2264 1818 0.400000 +2264 1878 0.400000 +2264 1911 0.400000 +2264 1940 0.400000 +2264 2004 0.400000 +2264 2036 0.400000 +2264 2049 0.400000 +2264 2052 0.400000 +2264 2141 0.400000 +2264 2202 0.400000 +2264 2378 0.400000 +2264 2441 0.400000 +2264 2454 0.400000 +2264 2595 0.400000 +2264 2711 0.400000 +2264 2734 0.400000 +2264 2759 0.400000 +2264 2827 0.400000 +2264 2878 0.400000 +2264 2897 0.400000 +2264 2898 0.400000 +2264 3041 0.400000 +2264 3090 0.400000 +2264 3169 0.400000 +2264 3182 0.400000 +2264 3189 0.400000 +2265 14 0.400000 +2265 22 0.400000 +2265 50 0.400000 +2265 111 0.400000 +2265 136 0.400000 +2265 183 0.400000 +2265 282 0.400000 +2265 319 0.400000 +2265 330 0.400000 +2265 335 0.400000 +2265 410 0.400000 +2265 516 0.400000 +2265 559 0.400000 +2265 573 0.400000 +2265 640 0.400000 +2265 657 0.400000 +2265 687 0.400000 +2265 711 0.400000 +2265 751 0.400000 +2265 829 0.400000 +2265 918 0.400000 +2265 1162 0.400000 +2265 1245 0.400000 +2265 1260 0.400000 +2265 1329 0.400000 +2265 1348 0.400000 +2265 1384 0.400000 +2265 1405 0.400000 +2265 1506 0.400000 +2265 1532 0.400000 +2265 1560 0.400000 +2265 1636 0.400000 +2265 1660 0.400000 +2265 1712 0.400000 +2265 1719 0.400000 +2265 1829 0.400000 +2265 1861 0.400000 +2265 1875 0.400000 +2265 1933 0.400000 +2265 1974 0.400000 +2265 1992 0.400000 +2265 1993 0.400000 +2265 2034 0.400000 +2265 2035 0.400000 +2265 2089 0.400000 +2265 2097 0.400000 +2265 2143 0.400000 +2265 2163 0.400000 +2265 2225 0.400000 +2265 2231 0.400000 +2265 2300 0.400000 +2265 2329 0.400000 +2265 2395 0.400000 +2265 2466 0.400000 +2265 2487 0.400000 +2265 2510 0.400000 +2265 2669 0.400000 +2265 2709 0.400000 +2265 2873 0.400000 +2265 2958 0.400000 +2265 2977 0.400000 +2265 2998 0.400000 +2265 3103 0.400000 +2265 3183 0.400000 +2265 3192 0.400000 +2266 108 0.400000 +2266 150 0.400000 +2266 170 0.400000 +2266 266 0.400000 +2266 275 0.400000 +2266 297 0.400000 +2266 476 0.400000 +2266 510 0.400000 +2266 611 0.400000 +2266 717 0.400000 +2266 737 0.400000 +2266 840 0.400000 +2266 847 0.400000 +2266 848 0.400000 +2266 962 0.400000 +2266 982 0.400000 +2266 1061 0.400000 +2266 1192 0.400000 +2266 1210 0.400000 +2266 1224 0.400000 +2266 1228 0.400000 +2266 1297 0.400000 +2266 1326 0.400000 +2266 1392 0.400000 +2266 1444 0.400000 +2266 1479 0.400000 +2266 1487 0.400000 +2266 1492 0.400000 +2266 1530 0.400000 +2266 1581 0.400000 +2266 1691 0.400000 +2266 1698 0.400000 +2266 1715 0.400000 +2266 1728 0.400000 +2266 1993 0.400000 +2266 2108 0.400000 +2266 2304 0.400000 +2266 2362 0.400000 +2266 2397 0.400000 +2266 2417 0.400000 +2266 2419 0.400000 +2266 2492 0.400000 +2266 2517 0.400000 +2266 2589 0.400000 +2266 2599 0.400000 +2266 2649 0.400000 +2266 2692 0.400000 +2266 2700 0.400000 +2266 2722 0.400000 +2266 2728 0.400000 +2266 2765 0.400000 +2266 2875 0.400000 +2266 2928 0.400000 +2266 2932 0.400000 +2266 3008 0.400000 +2266 3038 0.400000 +2266 3071 0.400000 +2266 3090 0.400000 +2266 3173 0.400000 +2267 6 0.400000 +2267 63 0.400000 +2267 102 0.400000 +2267 110 0.400000 +2267 128 0.400000 +2267 145 0.400000 +2267 241 0.400000 +2267 266 0.400000 +2267 310 0.400000 +2267 325 0.400000 +2267 459 0.400000 +2267 465 0.400000 +2267 478 0.400000 +2267 570 0.400000 +2267 657 0.400000 +2267 721 0.400000 +2267 733 0.400000 +2267 755 0.400000 +2267 771 0.400000 +2267 795 0.400000 +2267 892 0.400000 +2267 948 0.400000 +2267 1084 0.400000 +2267 1089 0.400000 +2267 1096 0.400000 +2267 1119 0.400000 +2267 1131 0.400000 +2267 1134 0.400000 +2267 1199 0.400000 +2267 1201 0.400000 +2267 1313 0.400000 +2267 1373 0.400000 +2267 1393 0.400000 +2267 1421 0.400000 +2267 1477 0.400000 +2267 1489 0.400000 +2267 1528 0.400000 +2267 1569 0.400000 +2267 1634 0.400000 +2267 1653 0.400000 +2267 1660 0.400000 +2267 1682 0.400000 +2267 1720 0.400000 +2267 1733 0.400000 +2267 1778 0.400000 +2267 1813 0.400000 +2267 1851 0.400000 +2267 1892 0.400000 +2267 1893 0.400000 +2267 1894 0.400000 +2267 1991 0.400000 +2267 2031 0.400000 +2267 2073 0.400000 +2267 2161 0.400000 +2267 2237 0.400000 +2267 2270 0.400000 +2267 2360 0.400000 +2267 2361 0.400000 +2267 2388 0.400000 +2267 2446 0.400000 +2267 2488 0.400000 +2267 2655 0.400000 +2267 2676 0.400000 +2267 2688 0.400000 +2267 2742 0.400000 +2267 2795 0.400000 +2267 2922 0.400000 +2267 2946 0.400000 +2267 2965 0.400000 +2267 3057 0.400000 +2267 3070 0.400000 +2267 3146 0.400000 +2268 38 0.400000 +2268 50 0.400000 +2268 103 0.400000 +2268 417 0.400000 +2268 447 0.400000 +2268 573 0.400000 +2268 628 0.400000 +2268 635 0.400000 +2268 662 0.400000 +2268 719 0.400000 +2268 738 0.400000 +2268 760 0.400000 +2268 801 0.400000 +2268 840 0.400000 +2268 897 0.400000 +2268 944 0.400000 +2268 1156 0.400000 +2268 1209 0.400000 +2268 1278 0.400000 +2268 1396 0.400000 +2268 1428 0.400000 +2268 1447 0.400000 +2268 1455 0.400000 +2268 1517 0.400000 +2268 1534 0.400000 +2268 1546 0.400000 +2268 1557 0.400000 +2268 1619 0.400000 +2268 1690 0.400000 +2268 1700 0.400000 +2268 1777 0.400000 +2268 1826 0.400000 +2268 1874 0.400000 +2268 1887 0.400000 +2268 1915 0.400000 +2268 1979 0.400000 +2268 2015 0.400000 +2268 2044 0.400000 +2268 2085 0.400000 +2268 2126 0.400000 +2268 2133 0.400000 +2268 2173 0.400000 +2268 2189 0.400000 +2268 2231 0.400000 +2268 2238 0.400000 +2268 2265 0.400000 +2268 2286 0.400000 +2268 2349 0.400000 +2268 2357 0.400000 +2268 2390 0.400000 +2268 2470 0.400000 +2268 2559 0.400000 +2268 2571 0.400000 +2268 2582 0.400000 +2268 2596 0.400000 +2268 2651 0.400000 +2268 2656 0.400000 +2268 2730 0.400000 +2268 2741 0.400000 +2268 2858 0.400000 +2268 2990 0.400000 +2268 2997 0.400000 +2268 3045 0.400000 +2268 3081 0.400000 +2269 51 0.400000 +2269 152 0.400000 +2269 200 0.400000 +2269 205 0.400000 +2269 306 0.400000 +2269 447 0.400000 +2269 458 0.400000 +2269 467 0.400000 +2269 468 0.400000 +2269 476 0.400000 +2269 494 0.400000 +2269 505 0.400000 +2269 521 0.400000 +2269 550 0.400000 +2269 642 0.400000 +2269 812 0.400000 +2269 817 0.400000 +2269 945 0.400000 +2269 983 0.400000 +2269 995 0.400000 +2269 1086 0.400000 +2269 1132 0.400000 +2269 1174 0.400000 +2269 1199 0.400000 +2269 1221 0.400000 +2269 1272 0.400000 +2269 1313 0.400000 +2269 1360 0.400000 +2269 1430 0.400000 +2269 1433 0.400000 +2269 1447 0.400000 +2269 1465 0.400000 +2269 1478 0.400000 +2269 1492 0.400000 +2269 1567 0.400000 +2269 1644 0.400000 +2269 1663 0.400000 +2269 1664 0.400000 +2269 1678 0.400000 +2269 1706 0.400000 +2269 1727 0.400000 +2269 1973 0.400000 +2269 2092 0.400000 +2269 2300 0.400000 +2269 2348 0.400000 +2269 2391 0.400000 +2269 2402 0.400000 +2269 2421 0.400000 +2269 2427 0.400000 +2269 2487 0.400000 +2269 2543 0.400000 +2269 2564 0.400000 +2269 2583 0.400000 +2269 2634 0.400000 +2269 2812 0.400000 +2269 2901 0.400000 +2269 2916 0.400000 +2269 2978 0.400000 +2269 3004 0.400000 +2269 3012 0.400000 +2269 3037 0.400000 +2269 3109 0.400000 +2269 3160 0.400000 +2269 3180 0.400000 +2269 3192 0.400000 +2270 9 0.400000 +2270 27 0.400000 +2270 34 0.400000 +2270 67 0.400000 +2270 159 0.400000 +2270 208 0.400000 +2270 339 0.400000 +2270 347 0.400000 +2270 359 0.400000 +2270 478 0.400000 +2270 500 0.400000 +2270 523 0.400000 +2270 568 0.400000 +2270 605 0.400000 +2270 628 0.400000 +2270 674 0.400000 +2270 704 0.400000 +2270 805 0.400000 +2270 963 0.400000 +2270 1035 0.400000 +2270 1052 0.400000 +2270 1186 0.400000 +2270 1259 0.400000 +2270 1343 0.400000 +2270 1356 0.400000 +2270 1411 0.400000 +2270 1470 0.400000 +2270 1501 0.400000 +2270 1522 0.400000 +2270 1624 0.400000 +2270 1633 0.400000 +2270 1656 0.400000 +2270 1668 0.400000 +2270 1702 0.400000 +2270 1721 0.400000 +2270 1860 0.400000 +2270 1877 0.400000 +2270 1934 0.400000 +2270 1951 0.400000 +2270 2000 0.400000 +2270 2042 0.400000 +2270 2047 0.400000 +2270 2169 0.400000 +2270 2180 0.400000 +2270 2183 0.400000 +2270 2249 0.400000 +2270 2283 0.400000 +2270 2300 0.400000 +2270 2332 0.400000 +2270 2365 0.400000 +2270 2393 0.400000 +2270 2596 0.400000 +2270 2625 0.400000 +2270 2645 0.400000 +2270 2773 0.400000 +2270 2818 0.400000 +2270 2826 0.400000 +2270 2837 0.400000 +2270 2893 0.400000 +2270 2925 0.400000 +2270 2977 0.400000 +2270 2993 0.400000 +2270 2997 0.400000 +2270 3010 0.400000 +2270 3162 0.400000 +2271 87 0.400000 +2271 171 0.400000 +2271 186 0.400000 +2271 257 0.400000 +2271 276 0.400000 +2271 295 0.400000 +2271 305 0.400000 +2271 342 0.400000 +2271 356 0.400000 +2271 359 0.400000 +2271 431 0.400000 +2271 433 0.400000 +2271 526 0.400000 +2271 529 0.400000 +2271 534 0.400000 +2271 604 0.400000 +2271 624 0.400000 +2271 626 0.400000 +2271 630 0.400000 +2271 639 0.400000 +2271 645 0.400000 +2271 687 0.400000 +2271 740 0.400000 +2271 745 0.400000 +2271 753 0.400000 +2271 962 0.400000 +2271 991 0.400000 +2271 996 0.400000 +2271 1068 0.400000 +2271 1075 0.400000 +2271 1098 0.400000 +2271 1166 0.400000 +2271 1173 0.400000 +2271 1198 0.400000 +2271 1206 0.400000 +2271 1348 0.400000 +2271 1350 0.400000 +2271 1410 0.400000 +2271 1411 0.400000 +2271 1469 0.400000 +2271 1500 0.400000 +2271 1634 0.400000 +2271 1674 0.400000 +2271 1767 0.400000 +2271 1776 0.400000 +2271 1807 0.400000 +2271 1929 0.400000 +2271 1932 0.400000 +2271 1934 0.400000 +2271 2031 0.400000 +2271 2119 0.400000 +2271 2166 0.400000 +2271 2217 0.400000 +2271 2274 0.400000 +2271 2356 0.400000 +2271 2371 0.400000 +2271 2484 0.400000 +2271 2528 0.400000 +2271 2532 0.400000 +2271 2668 0.400000 +2271 2748 0.400000 +2271 2780 0.400000 +2271 2787 0.400000 +2271 2882 0.400000 +2271 2888 0.400000 +2271 2962 0.400000 +2271 2976 0.400000 +2271 3025 0.400000 +2271 3053 0.400000 +2271 3069 0.400000 +2271 3105 0.400000 +2271 3190 0.400000 +2272 1 0.400000 +2272 142 0.400000 +2272 186 0.400000 +2272 230 0.400000 +2272 251 0.400000 +2272 324 0.400000 +2272 490 0.400000 +2272 543 0.400000 +2272 571 0.400000 +2272 623 0.400000 +2272 701 0.400000 +2272 883 0.400000 +2272 919 0.400000 +2272 949 0.400000 +2272 995 0.400000 +2272 1031 0.400000 +2272 1052 0.400000 +2272 1054 0.400000 +2272 1081 0.400000 +2272 1172 0.400000 +2272 1193 0.400000 +2272 1244 0.400000 +2272 1260 0.400000 +2272 1271 0.400000 +2272 1310 0.400000 +2272 1363 0.400000 +2272 1480 0.400000 +2272 1512 0.400000 +2272 1533 0.400000 +2272 1629 0.400000 +2272 1790 0.400000 +2272 1818 0.400000 +2272 1829 0.400000 +2272 1844 0.400000 +2272 1929 0.400000 +2272 1984 0.400000 +2272 1997 0.400000 +2272 2002 0.400000 +2272 2119 0.400000 +2272 2204 0.400000 +2272 2206 0.400000 +2272 2414 0.400000 +2272 2424 0.400000 +2272 2465 0.400000 +2272 2481 0.400000 +2272 2499 0.400000 +2272 2766 0.400000 +2272 2853 0.400000 +2272 2871 0.400000 +2272 2907 0.400000 +2272 2930 0.400000 +2272 2941 0.400000 +2272 2951 0.400000 +2272 3086 0.400000 +2272 3114 0.400000 +2272 3188 0.400000 +2273 59 0.400000 +2273 127 0.400000 +2273 216 0.400000 +2273 286 0.400000 +2273 462 0.400000 +2273 472 0.400000 +2273 503 0.400000 +2273 525 0.400000 +2273 656 0.400000 +2273 664 0.400000 +2273 831 0.400000 +2273 937 0.400000 +2273 1039 0.400000 +2273 1110 0.400000 +2273 1111 0.400000 +2273 1184 0.400000 +2273 1201 0.400000 +2273 1230 0.400000 +2273 1246 0.400000 +2273 1250 0.400000 +2273 1269 0.400000 +2273 1298 0.400000 +2273 1300 0.400000 +2273 1354 0.400000 +2273 1430 0.400000 +2273 1500 0.400000 +2273 1668 0.400000 +2273 1751 0.400000 +2273 1758 0.400000 +2273 1765 0.400000 +2273 1840 0.400000 +2273 1848 0.400000 +2273 1850 0.400000 +2273 1853 0.400000 +2273 1882 0.400000 +2273 1914 0.400000 +2273 1971 0.400000 +2273 1990 0.400000 +2273 1999 0.400000 +2273 2026 0.400000 +2273 2129 0.400000 +2273 2162 0.400000 +2273 2173 0.400000 +2273 2225 0.400000 +2273 2313 0.400000 +2273 2325 0.400000 +2273 2345 0.400000 +2273 2418 0.400000 +2273 2427 0.400000 +2273 2560 0.400000 +2273 2610 0.400000 +2273 2620 0.400000 +2273 2622 0.400000 +2273 2634 0.400000 +2273 2650 0.400000 +2273 2746 0.400000 +2273 2998 0.400000 +2273 3063 0.400000 +2273 3128 0.400000 +2274 28 0.400000 +2274 42 0.400000 +2274 69 0.400000 +2274 91 0.400000 +2274 105 0.400000 +2274 151 0.400000 +2274 162 0.400000 +2274 230 0.400000 +2274 316 0.400000 +2274 423 0.400000 +2274 529 0.400000 +2274 552 0.400000 +2274 641 0.400000 +2274 654 0.400000 +2274 660 0.400000 +2274 664 0.400000 +2274 705 0.400000 +2274 773 0.400000 +2274 793 0.400000 +2274 833 0.400000 +2274 928 0.400000 +2274 932 0.400000 +2274 946 0.400000 +2274 951 0.400000 +2274 1122 0.400000 +2274 1136 0.400000 +2274 1164 0.400000 +2274 1179 0.400000 +2274 1290 0.400000 +2274 1327 0.400000 +2274 1379 0.400000 +2274 1409 0.400000 +2274 1494 0.400000 +2274 1500 0.400000 +2274 1547 0.400000 +2274 1624 0.400000 +2274 1626 0.400000 +2274 1665 0.400000 +2274 1685 0.400000 +2274 1695 0.400000 +2274 1731 0.400000 +2274 1766 0.400000 +2274 1810 0.400000 +2274 1817 0.400000 +2274 1951 0.400000 +2274 1965 0.400000 +2274 1982 0.400000 +2274 2026 0.400000 +2274 2027 0.400000 +2274 2060 0.400000 +2274 2079 0.400000 +2274 2128 0.400000 +2274 2199 0.400000 +2274 2212 0.400000 +2274 2305 0.400000 +2274 2316 0.400000 +2274 2322 0.400000 +2274 2452 0.400000 +2274 2487 0.400000 +2274 2497 0.400000 +2274 2512 0.400000 +2274 2584 0.400000 +2274 2616 0.400000 +2274 2652 0.400000 +2274 2673 0.400000 +2274 2695 0.400000 +2274 2787 0.400000 +2274 2800 0.400000 +2274 2905 0.400000 +2274 3014 0.400000 +2274 3155 0.400000 +2274 3163 0.400000 +2275 29 0.400000 +2275 60 0.400000 +2275 100 0.400000 +2275 204 0.400000 +2275 205 0.400000 +2275 316 0.400000 +2275 385 0.400000 +2275 459 0.400000 +2275 706 0.400000 +2275 752 0.400000 +2275 768 0.400000 +2275 778 0.400000 +2275 803 0.400000 +2275 870 0.400000 +2275 1044 0.400000 +2275 1074 0.400000 +2275 1079 0.400000 +2275 1124 0.400000 +2275 1126 0.400000 +2275 1153 0.400000 +2275 1192 0.400000 +2275 1314 0.400000 +2275 1444 0.400000 +2275 1455 0.400000 +2275 1456 0.400000 +2275 1599 0.400000 +2275 1662 0.400000 +2275 1666 0.400000 +2275 1693 0.400000 +2275 1733 0.400000 +2275 1758 0.400000 +2275 1782 0.400000 +2275 1818 0.400000 +2275 1845 0.400000 +2275 1860 0.400000 +2275 1884 0.400000 +2275 1889 0.400000 +2275 2063 0.400000 +2275 2124 0.400000 +2275 2144 0.400000 +2275 2165 0.400000 +2275 2206 0.400000 +2275 2211 0.400000 +2275 2219 0.400000 +2275 2396 0.400000 +2275 2425 0.400000 +2275 2459 0.400000 +2275 2502 0.400000 +2275 2700 0.400000 +2275 2734 0.400000 +2275 2760 0.400000 +2275 2804 0.400000 +2275 2818 0.400000 +2275 2890 0.400000 +2275 2897 0.400000 +2275 2943 0.400000 +2275 2959 0.400000 +2275 2966 0.400000 +2275 3024 0.400000 +2275 3197 0.400000 +2276 82 0.400000 +2276 109 0.400000 +2276 123 0.400000 +2276 130 0.400000 +2276 136 0.400000 +2276 182 0.400000 +2276 317 0.400000 +2276 324 0.400000 +2276 338 0.400000 +2276 376 0.400000 +2276 410 0.400000 +2276 601 0.400000 +2276 630 0.400000 +2276 680 0.400000 +2276 702 0.400000 +2276 709 0.400000 +2276 830 0.400000 +2276 841 0.400000 +2276 860 0.400000 +2276 896 0.400000 +2276 971 0.400000 +2276 990 0.400000 +2276 1009 0.400000 +2276 1043 0.400000 +2276 1118 0.400000 +2276 1153 0.400000 +2276 1222 0.400000 +2276 1236 0.400000 +2276 1243 0.400000 +2276 1325 0.400000 +2276 1335 0.400000 +2276 1348 0.400000 +2276 1407 0.400000 +2276 1425 0.400000 +2276 1482 0.400000 +2276 1492 0.400000 +2276 1531 0.400000 +2276 1651 0.400000 +2276 1706 0.400000 +2276 1787 0.400000 +2276 1792 0.400000 +2276 1834 0.400000 +2276 1856 0.400000 +2276 1859 0.400000 +2276 1862 0.400000 +2276 1879 0.400000 +2276 1884 0.400000 +2276 1887 0.400000 +2276 1895 0.400000 +2276 2025 0.400000 +2276 2138 0.400000 +2276 2316 0.400000 +2276 2317 0.400000 +2276 2367 0.400000 +2276 2370 0.400000 +2276 2371 0.400000 +2276 2474 0.400000 +2276 2587 0.400000 +2276 2632 0.400000 +2276 2666 0.400000 +2276 2677 0.400000 +2276 2731 0.400000 +2276 2740 0.400000 +2276 2756 0.400000 +2276 2810 0.400000 +2276 2852 0.400000 +2276 2857 0.400000 +2276 2959 0.400000 +2276 2978 0.400000 +2276 2979 0.400000 +2276 3101 0.400000 +2276 3103 0.400000 +2277 51 0.400000 +2277 93 0.400000 +2277 102 0.400000 +2277 113 0.400000 +2277 168 0.400000 +2277 182 0.400000 +2277 198 0.400000 +2277 233 0.400000 +2277 260 0.400000 +2277 273 0.400000 +2277 305 0.400000 +2277 341 0.400000 +2277 373 0.400000 +2277 416 0.400000 +2277 423 0.400000 +2277 454 0.400000 +2277 515 0.400000 +2277 620 0.400000 +2277 698 0.400000 +2277 778 0.400000 +2277 815 0.400000 +2277 862 0.400000 +2277 948 0.400000 +2277 970 0.400000 +2277 983 0.400000 +2277 1049 0.400000 +2277 1056 0.400000 +2277 1207 0.400000 +2277 1238 0.400000 +2277 1309 0.400000 +2277 1316 0.400000 +2277 1405 0.400000 +2277 1484 0.400000 +2277 1578 0.400000 +2277 1765 0.400000 +2277 1904 0.400000 +2277 1941 0.400000 +2277 1958 0.400000 +2277 1988 0.400000 +2277 2034 0.400000 +2277 2038 0.400000 +2277 2066 0.400000 +2277 2108 0.400000 +2277 2160 0.400000 +2277 2172 0.400000 +2277 2185 0.400000 +2277 2231 0.400000 +2277 2254 0.400000 +2277 2273 0.400000 +2277 2299 0.400000 +2277 2334 0.400000 +2277 2414 0.400000 +2277 2556 0.400000 +2277 2643 0.400000 +2277 2677 0.400000 +2277 2726 0.400000 +2277 2768 0.400000 +2277 2830 0.400000 +2277 2888 0.400000 +2277 3170 0.400000 +2278 11 0.400000 +2278 23 0.400000 +2278 27 0.400000 +2278 29 0.400000 +2278 37 0.400000 +2278 77 0.400000 +2278 94 0.400000 +2278 100 0.400000 +2278 156 0.400000 +2278 212 0.400000 +2278 317 0.400000 +2278 332 0.400000 +2278 444 0.400000 +2278 453 0.400000 +2278 479 0.400000 +2278 499 0.400000 +2278 508 0.400000 +2278 527 0.400000 +2278 530 0.400000 +2278 640 0.400000 +2278 661 0.400000 +2278 707 0.400000 +2278 834 0.400000 +2278 836 0.400000 +2278 957 0.400000 +2278 1043 0.400000 +2278 1083 0.400000 +2278 1091 0.400000 +2278 1160 0.400000 +2278 1171 0.400000 +2278 1176 0.400000 +2278 1251 0.400000 +2278 1263 0.400000 +2278 1324 0.400000 +2278 1351 0.400000 +2278 1361 0.400000 +2278 1419 0.400000 +2278 1456 0.400000 +2278 1518 0.400000 +2278 1652 0.400000 +2278 1762 0.400000 +2278 1816 0.400000 +2278 1843 0.400000 +2278 1857 0.400000 +2278 1934 0.400000 +2278 1940 0.400000 +2278 1949 0.400000 +2278 2020 0.400000 +2278 2030 0.400000 +2278 2048 0.400000 +2278 2061 0.400000 +2278 2142 0.400000 +2278 2164 0.400000 +2278 2189 0.400000 +2278 2196 0.400000 +2278 2210 0.400000 +2278 2256 0.400000 +2278 2267 0.400000 +2278 2282 0.400000 +2278 2296 0.400000 +2278 2399 0.400000 +2278 2414 0.400000 +2278 2500 0.400000 +2278 2543 0.400000 +2278 2552 0.400000 +2278 2568 0.400000 +2278 2578 0.400000 +2278 2588 0.400000 +2278 2790 0.400000 +2278 2830 0.400000 +2278 2878 0.400000 +2278 2895 0.400000 +2278 2967 0.400000 +2278 3009 0.400000 +2278 3011 0.400000 +2278 3066 0.400000 +2279 42 0.400000 +2279 75 0.400000 +2279 107 0.400000 +2279 174 0.400000 +2279 183 0.400000 +2279 220 0.400000 +2279 256 0.400000 +2279 262 0.400000 +2279 264 0.400000 +2279 313 0.400000 +2279 443 0.400000 +2279 445 0.400000 +2279 526 0.400000 +2279 536 0.400000 +2279 695 0.400000 +2279 717 0.400000 +2279 802 0.400000 +2279 815 0.400000 +2279 841 0.400000 +2279 1110 0.400000 +2279 1140 0.400000 +2279 1141 0.400000 +2279 1145 0.400000 +2279 1209 0.400000 +2279 1237 0.400000 +2279 1503 0.400000 +2279 1514 0.400000 +2279 1581 0.400000 +2279 1832 0.400000 +2279 1869 0.400000 +2279 1896 0.400000 +2279 1943 0.400000 +2279 1949 0.400000 +2279 2012 0.400000 +2279 2028 0.400000 +2279 2079 0.400000 +2279 2243 0.400000 +2279 2246 0.400000 +2279 2250 0.400000 +2279 2265 0.400000 +2279 2275 0.400000 +2279 2289 0.400000 +2279 2296 0.400000 +2279 2322 0.400000 +2279 2335 0.400000 +2279 2373 0.400000 +2279 2392 0.400000 +2279 2414 0.400000 +2279 2417 0.400000 +2279 2482 0.400000 +2279 2538 0.400000 +2279 2542 0.400000 +2279 2578 0.400000 +2279 2616 0.400000 +2279 2632 0.400000 +2279 2805 0.400000 +2279 2841 0.400000 +2279 2858 0.400000 +2279 2879 0.400000 +2279 2882 0.400000 +2279 2956 0.400000 +2279 2988 0.400000 +2279 3065 0.400000 +2279 3069 0.400000 +2279 3079 0.400000 +2279 3081 0.400000 +2279 3175 0.400000 +2280 75 0.400000 +2280 103 0.400000 +2280 139 0.400000 +2280 197 0.400000 +2280 244 0.400000 +2280 331 0.400000 +2280 334 0.400000 +2280 466 0.400000 +2280 502 0.400000 +2280 515 0.400000 +2280 565 0.400000 +2280 602 0.400000 +2280 607 0.400000 +2280 626 0.400000 +2280 642 0.400000 +2280 644 0.400000 +2280 650 0.400000 +2280 808 0.400000 +2280 887 0.400000 +2280 981 0.400000 +2280 1009 0.400000 +2280 1062 0.400000 +2280 1189 0.400000 +2280 1205 0.400000 +2280 1215 0.400000 +2280 1304 0.400000 +2280 1335 0.400000 +2280 1396 0.400000 +2280 1438 0.400000 +2280 1526 0.400000 +2280 1534 0.400000 +2280 1603 0.400000 +2280 1610 0.400000 +2280 1640 0.400000 +2280 1738 0.400000 +2280 1749 0.400000 +2280 1770 0.400000 +2280 1794 0.400000 +2280 1805 0.400000 +2280 1906 0.400000 +2280 1974 0.400000 +2280 2006 0.400000 +2280 2021 0.400000 +2280 2072 0.400000 +2280 2155 0.400000 +2280 2227 0.400000 +2280 2298 0.400000 +2280 2332 0.400000 +2280 2484 0.400000 +2280 2560 0.400000 +2280 2693 0.400000 +2280 2708 0.400000 +2280 2733 0.400000 +2280 2927 0.400000 +2280 2945 0.400000 +2280 2990 0.400000 +2280 3021 0.400000 +2280 3045 0.400000 +2280 3053 0.400000 +2280 3106 0.400000 +2281 5 0.400000 +2281 23 0.400000 +2281 40 0.400000 +2281 88 0.400000 +2281 117 0.400000 +2281 143 0.400000 +2281 255 0.400000 +2281 421 0.400000 +2281 469 0.400000 +2281 471 0.400000 +2281 480 0.400000 +2281 575 0.400000 +2281 595 0.400000 +2281 602 0.400000 +2281 610 0.400000 +2281 620 0.400000 +2281 652 0.400000 +2281 719 0.400000 +2281 720 0.400000 +2281 769 0.400000 +2281 787 0.400000 +2281 895 0.400000 +2281 943 0.400000 +2281 999 0.400000 +2281 1156 0.400000 +2281 1225 0.400000 +2281 1284 0.400000 +2281 1306 0.400000 +2281 1367 0.400000 +2281 1373 0.400000 +2281 1450 0.400000 +2281 1487 0.400000 +2281 1526 0.400000 +2281 1541 0.400000 +2281 1546 0.400000 +2281 1566 0.400000 +2281 1650 0.400000 +2281 1690 0.400000 +2281 1881 0.400000 +2281 1937 0.400000 +2281 1945 0.400000 +2281 1947 0.400000 +2281 1951 0.400000 +2281 2106 0.400000 +2281 2192 0.400000 +2281 2199 0.400000 +2281 2211 0.400000 +2281 2217 0.400000 +2281 2300 0.400000 +2281 2306 0.400000 +2281 2309 0.400000 +2281 2320 0.400000 +2281 2321 0.400000 +2281 2459 0.400000 +2281 2493 0.400000 +2281 2527 0.400000 +2281 2569 0.400000 +2281 2590 0.400000 +2281 2635 0.400000 +2281 2638 0.400000 +2281 2677 0.400000 +2281 2831 0.400000 +2281 2863 0.400000 +2281 2874 0.400000 +2281 2898 0.400000 +2281 3021 0.400000 +2281 3060 0.400000 +2281 3105 0.400000 +2281 3109 0.400000 +2281 3136 0.400000 +2281 3145 0.400000 +2282 49 0.400000 +2282 134 0.400000 +2282 219 0.400000 +2282 271 0.400000 +2282 314 0.400000 +2282 349 0.400000 +2282 391 0.400000 +2282 413 0.400000 +2282 417 0.400000 +2282 436 0.400000 +2282 446 0.400000 +2282 476 0.400000 +2282 486 0.400000 +2282 521 0.400000 +2282 524 0.400000 +2282 662 0.400000 +2282 667 0.400000 +2282 706 0.400000 +2282 710 0.400000 +2282 724 0.400000 +2282 770 0.400000 +2282 865 0.400000 +2282 868 0.400000 +2282 919 0.400000 +2282 923 0.400000 +2282 981 0.400000 +2282 1008 0.400000 +2282 1110 0.400000 +2282 1222 0.400000 +2282 1256 0.400000 +2282 1263 0.400000 +2282 1296 0.400000 +2282 1417 0.400000 +2282 1451 0.400000 +2282 1530 0.400000 +2282 1603 0.400000 +2282 1683 0.400000 +2282 1696 0.400000 +2282 1739 0.400000 +2282 1830 0.400000 +2282 1856 0.400000 +2282 1884 0.400000 +2282 1943 0.400000 +2282 1977 0.400000 +2282 1980 0.400000 +2282 1983 0.400000 +2282 1988 0.400000 +2282 2002 0.400000 +2282 2009 0.400000 +2282 2064 0.400000 +2282 2151 0.400000 +2282 2206 0.400000 +2282 2275 0.400000 +2282 2307 0.400000 +2282 2379 0.400000 +2282 2385 0.400000 +2282 2393 0.400000 +2282 2402 0.400000 +2282 2414 0.400000 +2282 2472 0.400000 +2282 2508 0.400000 +2282 2517 0.400000 +2282 2572 0.400000 +2282 2598 0.400000 +2282 2625 0.400000 +2282 2759 0.400000 +2282 2804 0.400000 +2282 2842 0.400000 +2282 2858 0.400000 +2282 2924 0.400000 +2282 3091 0.400000 +2282 3131 0.400000 +2282 3175 0.400000 +2282 3182 0.400000 +2283 2 0.400000 +2283 7 0.400000 +2283 94 0.400000 +2283 241 0.400000 +2283 257 0.400000 +2283 363 0.400000 +2283 365 0.400000 +2283 382 0.400000 +2283 416 0.400000 +2283 437 0.400000 +2283 537 0.400000 +2283 544 0.400000 +2283 644 0.400000 +2283 691 0.400000 +2283 704 0.400000 +2283 779 0.400000 +2283 794 0.400000 +2283 811 0.400000 +2283 819 0.400000 +2283 889 0.400000 +2283 917 0.400000 +2283 921 0.400000 +2283 956 0.400000 +2283 962 0.400000 +2283 978 0.400000 +2283 1120 0.400000 +2283 1152 0.400000 +2283 1226 0.400000 +2283 1229 0.400000 +2283 1231 0.400000 +2283 1239 0.400000 +2283 1357 0.400000 +2283 1387 0.400000 +2283 1427 0.400000 +2283 1455 0.400000 +2283 1466 0.400000 +2283 1474 0.400000 +2283 1527 0.400000 +2283 1532 0.400000 +2283 1542 0.400000 +2283 1628 0.400000 +2283 1629 0.400000 +2283 1636 0.400000 +2283 1651 0.400000 +2283 1686 0.400000 +2283 1687 0.400000 +2283 1742 0.400000 +2283 1747 0.400000 +2283 1799 0.400000 +2283 1880 0.400000 +2283 1909 0.400000 +2283 1993 0.400000 +2283 2039 0.400000 +2283 2047 0.400000 +2283 2249 0.400000 +2283 2308 0.400000 +2283 2361 0.400000 +2283 2487 0.400000 +2283 2567 0.400000 +2283 2656 0.400000 +2283 2700 0.400000 +2283 2711 0.400000 +2283 2712 0.400000 +2283 2800 0.400000 +2283 2817 0.400000 +2283 2971 0.400000 +2283 2988 0.400000 +2283 3013 0.400000 +2283 3035 0.400000 +2283 3049 0.400000 +2283 3074 0.400000 +2283 3110 0.400000 +2283 3128 0.400000 +2283 3187 0.400000 +2284 42 0.400000 +2284 65 0.400000 +2284 120 0.400000 +2284 178 0.400000 +2284 223 0.400000 +2284 304 0.400000 +2284 340 0.400000 +2284 370 0.400000 +2284 373 0.400000 +2284 376 0.400000 +2284 495 0.400000 +2284 517 0.400000 +2284 523 0.400000 +2284 578 0.400000 +2284 595 0.400000 +2284 671 0.400000 +2284 731 0.400000 +2284 918 0.400000 +2284 956 0.400000 +2284 984 0.400000 +2284 1091 0.400000 +2284 1165 0.400000 +2284 1217 0.400000 +2284 1559 0.400000 +2284 1566 0.400000 +2284 1590 0.400000 +2284 1602 0.400000 +2284 1708 0.400000 +2284 1753 0.400000 +2284 1767 0.400000 +2284 1786 0.400000 +2284 1809 0.400000 +2284 1920 0.400000 +2284 1952 0.400000 +2284 1974 0.400000 +2284 1976 0.400000 +2284 1988 0.400000 +2284 2024 0.400000 +2284 2034 0.400000 +2284 2087 0.400000 +2284 2163 0.400000 +2284 2193 0.400000 +2284 2266 0.400000 +2284 2272 0.400000 +2284 2294 0.400000 +2284 2295 0.400000 +2284 2400 0.400000 +2284 2491 0.400000 +2284 2522 0.400000 +2284 2622 0.400000 +2284 2658 0.400000 +2284 2675 0.400000 +2284 2677 0.400000 +2284 2684 0.400000 +2284 2688 0.400000 +2284 2712 0.400000 +2284 2756 0.400000 +2284 2940 0.400000 +2284 3145 0.400000 +2285 58 0.400000 +2285 70 0.400000 +2285 91 0.400000 +2285 99 0.400000 +2285 134 0.400000 +2285 170 0.400000 +2285 180 0.400000 +2285 293 0.400000 +2285 416 0.400000 +2285 450 0.400000 +2285 596 0.400000 +2285 807 0.400000 +2285 847 0.400000 +2285 937 0.400000 +2285 944 0.400000 +2285 957 0.400000 +2285 971 0.400000 +2285 1008 0.400000 +2285 1188 0.400000 +2285 1194 0.400000 +2285 1237 0.400000 +2285 1272 0.400000 +2285 1306 0.400000 +2285 1311 0.400000 +2285 1397 0.400000 +2285 1512 0.400000 +2285 1655 0.400000 +2285 1719 0.400000 +2285 1725 0.400000 +2285 1729 0.400000 +2285 1734 0.400000 +2285 1736 0.400000 +2285 1767 0.400000 +2285 1853 0.400000 +2285 1868 0.400000 +2285 1926 0.400000 +2285 2005 0.400000 +2285 2065 0.400000 +2285 2068 0.400000 +2285 2108 0.400000 +2285 2129 0.400000 +2285 2218 0.400000 +2285 2226 0.400000 +2285 2257 0.400000 +2285 2259 0.400000 +2285 2321 0.400000 +2285 2361 0.400000 +2285 2403 0.400000 +2285 2423 0.400000 +2285 2434 0.400000 +2285 2512 0.400000 +2285 2516 0.400000 +2285 2569 0.400000 +2285 2604 0.400000 +2285 2614 0.400000 +2285 2651 0.400000 +2285 2676 0.400000 +2285 2694 0.400000 +2285 2817 0.400000 +2285 2872 0.400000 +2285 2931 0.400000 +2285 3026 0.400000 +2285 3082 0.400000 +2285 3153 0.400000 +2285 3191 0.400000 +2285 3197 0.400000 +2286 84 0.400000 +2286 103 0.400000 +2286 272 0.400000 +2286 287 0.400000 +2286 396 0.400000 +2286 415 0.400000 +2286 496 0.400000 +2286 511 0.400000 +2286 550 0.400000 +2286 566 0.400000 +2286 577 0.400000 +2286 619 0.400000 +2286 623 0.400000 +2286 717 0.400000 +2286 819 0.400000 +2286 873 0.400000 +2286 966 0.400000 +2286 1055 0.400000 +2286 1064 0.400000 +2286 1090 0.400000 +2286 1101 0.400000 +2286 1143 0.400000 +2286 1214 0.400000 +2286 1219 0.400000 +2286 1239 0.400000 +2286 1259 0.400000 +2286 1299 0.400000 +2286 1407 0.400000 +2286 1484 0.400000 +2286 1700 0.400000 +2286 1722 0.400000 +2286 1723 0.400000 +2286 1725 0.400000 +2286 1762 0.400000 +2286 1917 0.400000 +2286 1948 0.400000 +2286 1989 0.400000 +2286 2009 0.400000 +2286 2018 0.400000 +2286 2134 0.400000 +2286 2160 0.400000 +2286 2170 0.400000 +2286 2203 0.400000 +2286 2217 0.400000 +2286 2236 0.400000 +2286 2238 0.400000 +2286 2301 0.400000 +2286 2322 0.400000 +2286 2370 0.400000 +2286 2498 0.400000 +2286 2516 0.400000 +2286 2529 0.400000 +2286 2658 0.400000 +2286 2663 0.400000 +2286 2707 0.400000 +2286 2716 0.400000 +2286 2730 0.400000 +2286 2894 0.400000 +2286 2950 0.400000 +2286 2956 0.400000 +2286 2963 0.400000 +2286 2980 0.400000 +2286 3018 0.400000 +2286 3120 0.400000 +2286 3131 0.400000 +2286 3157 0.400000 +2286 3196 0.400000 +2287 7 0.400000 +2287 196 0.400000 +2287 209 0.400000 +2287 343 0.400000 +2287 387 0.400000 +2287 473 0.400000 +2287 483 0.400000 +2287 485 0.400000 +2287 497 0.400000 +2287 587 0.400000 +2287 647 0.400000 +2287 706 0.400000 +2287 708 0.400000 +2287 794 0.400000 +2287 958 0.400000 +2287 992 0.400000 +2287 1023 0.400000 +2287 1024 0.400000 +2287 1243 0.400000 +2287 1248 0.400000 +2287 1296 0.400000 +2287 1305 0.400000 +2287 1327 0.400000 +2287 1421 0.400000 +2287 1461 0.400000 +2287 1502 0.400000 +2287 1536 0.400000 +2287 1582 0.400000 +2287 1664 0.400000 +2287 1813 0.400000 +2287 1961 0.400000 +2287 2145 0.400000 +2287 2260 0.400000 +2287 2281 0.400000 +2287 2312 0.400000 +2287 2322 0.400000 +2287 2358 0.400000 +2287 2372 0.400000 +2287 2377 0.400000 +2287 2590 0.400000 +2287 2648 0.400000 +2287 2739 0.400000 +2287 2756 0.400000 +2287 3012 0.400000 +2287 3176 0.400000 +2287 3182 0.400000 +2288 22 0.400000 +2288 46 0.400000 +2288 192 0.400000 +2288 255 0.400000 +2288 258 0.400000 +2288 299 0.400000 +2288 355 0.400000 +2288 441 0.400000 +2288 484 0.400000 +2288 487 0.400000 +2288 521 0.400000 +2288 533 0.400000 +2288 556 0.400000 +2288 626 0.400000 +2288 674 0.400000 +2288 706 0.400000 +2288 791 0.400000 +2288 805 0.400000 +2288 809 0.400000 +2288 820 0.400000 +2288 907 0.400000 +2288 916 0.400000 +2288 973 0.400000 +2288 982 0.400000 +2288 1007 0.400000 +2288 1040 0.400000 +2288 1096 0.400000 +2288 1120 0.400000 +2288 1123 0.400000 +2288 1145 0.400000 +2288 1237 0.400000 +2288 1266 0.400000 +2288 1366 0.400000 +2288 1470 0.400000 +2288 1521 0.400000 +2288 1670 0.400000 +2288 1693 0.400000 +2288 1744 0.400000 +2288 1794 0.400000 +2288 1884 0.400000 +2288 1901 0.400000 +2288 1934 0.400000 +2288 1936 0.400000 +2288 1942 0.400000 +2288 1997 0.400000 +2288 2030 0.400000 +2288 2072 0.400000 +2288 2137 0.400000 +2288 2141 0.400000 +2288 2168 0.400000 +2288 2201 0.400000 +2288 2221 0.400000 +2288 2328 0.400000 +2288 2330 0.400000 +2288 2354 0.400000 +2288 2406 0.400000 +2288 2486 0.400000 +2288 2487 0.400000 +2288 2539 0.400000 +2288 2566 0.400000 +2288 2579 0.400000 +2288 2583 0.400000 +2288 2641 0.400000 +2288 2644 0.400000 +2288 2831 0.400000 +2288 2912 0.400000 +2288 2943 0.400000 +2288 2968 0.400000 +2288 2976 0.400000 +2289 44 0.400000 +2289 74 0.400000 +2289 146 0.400000 +2289 224 0.400000 +2289 258 0.400000 +2289 344 0.400000 +2289 513 0.400000 +2289 522 0.400000 +2289 558 0.400000 +2289 679 0.400000 +2289 867 0.400000 +2289 919 0.400000 +2289 940 0.400000 +2289 996 0.400000 +2289 998 0.400000 +2289 1009 0.400000 +2289 1049 0.400000 +2289 1085 0.400000 +2289 1119 0.400000 +2289 1240 0.400000 +2289 1255 0.400000 +2289 1275 0.400000 +2289 1290 0.400000 +2289 1296 0.400000 +2289 1357 0.400000 +2289 1438 0.400000 +2289 1491 0.400000 +2289 1514 0.400000 +2289 1523 0.400000 +2289 1620 0.400000 +2289 1653 0.400000 +2289 1763 0.400000 +2289 1781 0.400000 +2289 1858 0.400000 +2289 1879 0.400000 +2289 1967 0.400000 +2289 2059 0.400000 +2289 2117 0.400000 +2289 2174 0.400000 +2289 2259 0.400000 +2289 2342 0.400000 +2289 2357 0.400000 +2289 2541 0.400000 +2289 2551 0.400000 +2289 2658 0.400000 +2289 2680 0.400000 +2289 2807 0.400000 +2289 2850 0.400000 +2289 2881 0.400000 +2289 2900 0.400000 +2289 2936 0.400000 +2289 2965 0.400000 +2289 2993 0.400000 +2289 2995 0.400000 +2289 3018 0.400000 +2289 3041 0.400000 +2289 3074 0.400000 +2289 3129 0.400000 +2289 3149 0.400000 +2290 5 0.400000 +2290 127 0.400000 +2290 298 0.400000 +2290 374 0.400000 +2290 443 0.400000 +2290 475 0.400000 +2290 505 0.400000 +2290 508 0.400000 +2290 621 0.400000 +2290 761 0.400000 +2290 851 0.400000 +2290 928 0.400000 +2290 1006 0.400000 +2290 1011 0.400000 +2290 1029 0.400000 +2290 1068 0.400000 +2290 1440 0.400000 +2290 1629 0.400000 +2290 1755 0.400000 +2290 1804 0.400000 +2290 1805 0.400000 +2290 1833 0.400000 +2290 1843 0.400000 +2290 1911 0.400000 +2290 1977 0.400000 +2290 1993 0.400000 +2290 2131 0.400000 +2290 2205 0.400000 +2290 2231 0.400000 +2290 2298 0.400000 +2290 2314 0.400000 +2290 2330 0.400000 +2290 2377 0.400000 +2290 2406 0.400000 +2290 2424 0.400000 +2290 2440 0.400000 +2290 2451 0.400000 +2290 2589 0.400000 +2290 2666 0.400000 +2290 2744 0.400000 +2290 2823 0.400000 +2290 2825 0.400000 +2290 2859 0.400000 +2290 2999 0.400000 +2290 3022 0.400000 +2290 3087 0.400000 +2290 3129 0.400000 +2290 3154 0.400000 +2291 216 0.400000 +2291 297 0.400000 +2291 360 0.400000 +2291 364 0.400000 +2291 367 0.400000 +2291 402 0.400000 +2291 407 0.400000 +2291 421 0.400000 +2291 450 0.400000 +2291 470 0.400000 +2291 471 0.400000 +2291 489 0.400000 +2291 540 0.400000 +2291 643 0.400000 +2291 704 0.400000 +2291 721 0.400000 +2291 742 0.400000 +2291 828 0.400000 +2291 1001 0.400000 +2291 1049 0.400000 +2291 1061 0.400000 +2291 1066 0.400000 +2291 1080 0.400000 +2291 1178 0.400000 +2291 1227 0.400000 +2291 1253 0.400000 +2291 1334 0.400000 +2291 1336 0.400000 +2291 1347 0.400000 +2291 1353 0.400000 +2291 1366 0.400000 +2291 1430 0.400000 +2291 1566 0.400000 +2291 1575 0.400000 +2291 1621 0.400000 +2291 1660 0.400000 +2291 1668 0.400000 +2291 1689 0.400000 +2291 1723 0.400000 +2291 1733 0.400000 +2291 1743 0.400000 +2291 1779 0.400000 +2291 1858 0.400000 +2291 1889 0.400000 +2291 1922 0.400000 +2291 1973 0.400000 +2291 1998 0.400000 +2291 2015 0.400000 +2291 2026 0.400000 +2291 2042 0.400000 +2291 2126 0.400000 +2291 2188 0.400000 +2291 2239 0.400000 +2291 2248 0.400000 +2291 2282 0.400000 +2291 2295 0.400000 +2291 2348 0.400000 +2291 2401 0.400000 +2291 2482 0.400000 +2291 2502 0.400000 +2291 2518 0.400000 +2291 2549 0.400000 +2291 2582 0.400000 +2291 2634 0.400000 +2291 2637 0.400000 +2291 2651 0.400000 +2291 2659 0.400000 +2291 2778 0.400000 +2291 2837 0.400000 +2291 3037 0.400000 +2291 3048 0.400000 +2291 3111 0.400000 +2291 3141 0.400000 +2291 3181 0.400000 +2292 119 0.400000 +2292 252 0.400000 +2292 300 0.400000 +2292 394 0.400000 +2292 449 0.400000 +2292 457 0.400000 +2292 610 0.400000 +2292 667 0.400000 +2292 749 0.400000 +2292 798 0.400000 +2292 881 0.400000 +2292 1002 0.400000 +2292 1110 0.400000 +2292 1125 0.400000 +2292 1136 0.400000 +2292 1238 0.400000 +2292 1362 0.400000 +2292 1423 0.400000 +2292 1442 0.400000 +2292 1464 0.400000 +2292 1478 0.400000 +2292 1518 0.400000 +2292 1574 0.400000 +2292 1583 0.400000 +2292 1599 0.400000 +2292 1637 0.400000 +2292 1652 0.400000 +2292 1846 0.400000 +2292 1945 0.400000 +2292 1952 0.400000 +2292 1967 0.400000 +2292 2040 0.400000 +2292 2094 0.400000 +2292 2148 0.400000 +2292 2149 0.400000 +2292 2153 0.400000 +2292 2154 0.400000 +2292 2173 0.400000 +2292 2200 0.400000 +2292 2326 0.400000 +2292 2379 0.400000 +2292 2434 0.400000 +2292 2468 0.400000 +2292 2495 0.400000 +2292 2496 0.400000 +2292 2508 0.400000 +2292 2590 0.400000 +2292 2621 0.400000 +2292 2728 0.400000 +2292 2772 0.400000 +2292 2838 0.400000 +2292 2900 0.400000 +2292 2919 0.400000 +2292 2941 0.400000 +2292 2946 0.400000 +2292 2947 0.400000 +2292 2982 0.400000 +2292 2992 0.400000 +2292 3021 0.400000 +2292 3199 0.400000 +2293 18 0.400000 +2293 26 0.400000 +2293 31 0.400000 +2293 32 0.400000 +2293 112 0.400000 +2293 277 0.400000 +2293 326 0.400000 +2293 352 0.400000 +2293 552 0.400000 +2293 571 0.400000 +2293 700 0.400000 +2293 719 0.400000 +2293 779 0.400000 +2293 801 0.400000 +2293 897 0.400000 +2293 926 0.400000 +2293 984 0.400000 +2293 1039 0.400000 +2293 1060 0.400000 +2293 1083 0.400000 +2293 1149 0.400000 +2293 1220 0.400000 +2293 1481 0.400000 +2293 1572 0.400000 +2293 1608 0.400000 +2293 1632 0.400000 +2293 1639 0.400000 +2293 1779 0.400000 +2293 1829 0.400000 +2293 1915 0.400000 +2293 1927 0.400000 +2293 1929 0.400000 +2293 1997 0.400000 +2293 2010 0.400000 +2293 2036 0.400000 +2293 2106 0.400000 +2293 2225 0.400000 +2293 2353 0.400000 +2293 2388 0.400000 +2293 2563 0.400000 +2293 2574 0.400000 +2293 2626 0.400000 +2293 2654 0.400000 +2293 2695 0.400000 +2293 2716 0.400000 +2293 2719 0.400000 +2293 2759 0.400000 +2293 2826 0.400000 +2293 2879 0.400000 +2293 2890 0.400000 +2293 2891 0.400000 +2293 2960 0.400000 +2293 3002 0.400000 +2293 3018 0.400000 +2293 3035 0.400000 +2293 3072 0.400000 +2293 3094 0.400000 +2293 3127 0.400000 +2293 3184 0.400000 +2294 34 0.400000 +2294 64 0.400000 +2294 229 0.400000 +2294 316 0.400000 +2294 345 0.400000 +2294 364 0.400000 +2294 412 0.400000 +2294 484 0.400000 +2294 522 0.400000 +2294 562 0.400000 +2294 626 0.400000 +2294 783 0.400000 +2294 802 0.400000 +2294 944 0.400000 +2294 975 0.400000 +2294 976 0.400000 +2294 990 0.400000 +2294 991 0.400000 +2294 1009 0.400000 +2294 1026 0.400000 +2294 1045 0.400000 +2294 1069 0.400000 +2294 1098 0.400000 +2294 1115 0.400000 +2294 1126 0.400000 +2294 1138 0.400000 +2294 1237 0.400000 +2294 1260 0.400000 +2294 1277 0.400000 +2294 1775 0.400000 +2294 1839 0.400000 +2294 1872 0.400000 +2294 2065 0.400000 +2294 2073 0.400000 +2294 2148 0.400000 +2294 2195 0.400000 +2294 2297 0.400000 +2294 2392 0.400000 +2294 2460 0.400000 +2294 2512 0.400000 +2294 2516 0.400000 +2294 2527 0.400000 +2294 2532 0.400000 +2294 2663 0.400000 +2294 2674 0.400000 +2294 2724 0.400000 +2294 2775 0.400000 +2294 2791 0.400000 +2294 2851 0.400000 +2294 2880 0.400000 +2294 2915 0.400000 +2294 2983 0.400000 +2294 3057 0.400000 +2294 3078 0.400000 +2294 3085 0.400000 +2294 3102 0.400000 +2294 3106 0.400000 +2294 3110 0.400000 +2294 3137 0.400000 +2294 3140 0.400000 +2294 3152 0.400000 +2295 58 0.400000 +2295 98 0.400000 +2295 119 0.400000 +2295 162 0.400000 +2295 246 0.400000 +2295 455 0.400000 +2295 590 0.400000 +2295 665 0.400000 +2295 675 0.400000 +2295 716 0.400000 +2295 793 0.400000 +2295 795 0.400000 +2295 807 0.400000 +2295 822 0.400000 +2295 831 0.400000 +2295 903 0.400000 +2295 940 0.400000 +2295 1000 0.400000 +2295 1043 0.400000 +2295 1077 0.400000 +2295 1235 0.400000 +2295 1262 0.400000 +2295 1290 0.400000 +2295 1347 0.400000 +2295 1479 0.400000 +2295 1500 0.400000 +2295 1509 0.400000 +2295 1580 0.400000 +2295 1676 0.400000 +2295 1702 0.400000 +2295 1703 0.400000 +2295 1914 0.400000 +2295 1933 0.400000 +2295 1947 0.400000 +2295 1948 0.400000 +2295 2080 0.400000 +2295 2090 0.400000 +2295 2110 0.400000 +2295 2112 0.400000 +2295 2151 0.400000 +2295 2201 0.400000 +2295 2248 0.400000 +2295 2360 0.400000 +2295 2404 0.400000 +2295 2492 0.400000 +2295 2521 0.400000 +2295 2533 0.400000 +2295 2593 0.400000 +2295 2652 0.400000 +2295 2703 0.400000 +2295 2736 0.400000 +2295 2748 0.400000 +2295 2830 0.400000 +2295 2837 0.400000 +2295 2838 0.400000 +2295 2944 0.400000 +2295 2974 0.400000 +2295 2980 0.400000 +2295 3032 0.400000 +2295 3124 0.400000 +2296 57 0.400000 +2296 66 0.400000 +2296 108 0.400000 +2296 135 0.400000 +2296 186 0.400000 +2296 340 0.400000 +2296 440 0.400000 +2296 479 0.400000 +2296 520 0.400000 +2296 540 0.400000 +2296 551 0.400000 +2296 589 0.400000 +2296 596 0.400000 +2296 636 0.400000 +2296 641 0.400000 +2296 664 0.400000 +2296 737 0.400000 +2296 751 0.400000 +2296 851 0.400000 +2296 969 0.400000 +2296 1035 0.400000 +2296 1044 0.400000 +2296 1161 0.400000 +2296 1181 0.400000 +2296 1182 0.400000 +2296 1197 0.400000 +2296 1242 0.400000 +2296 1330 0.400000 +2296 1378 0.400000 +2296 1455 0.400000 +2296 1457 0.400000 +2296 1512 0.400000 +2296 1527 0.400000 +2296 1606 0.400000 +2296 1608 0.400000 +2296 1639 0.400000 +2296 1685 0.400000 +2296 1688 0.400000 +2296 1722 0.400000 +2296 1739 0.400000 +2296 1758 0.400000 +2296 1802 0.400000 +2296 1858 0.400000 +2296 1893 0.400000 +2296 1926 0.400000 +2296 1930 0.400000 +2296 1953 0.400000 +2296 1964 0.400000 +2296 1989 0.400000 +2296 2061 0.400000 +2296 2071 0.400000 +2296 2114 0.400000 +2296 2149 0.400000 +2296 2159 0.400000 +2296 2235 0.400000 +2296 2271 0.400000 +2296 2357 0.400000 +2296 2386 0.400000 +2296 2420 0.400000 +2296 2433 0.400000 +2296 2573 0.400000 +2296 2574 0.400000 +2296 2691 0.400000 +2296 2838 0.400000 +2296 2873 0.400000 +2296 2886 0.400000 +2296 2889 0.400000 +2296 2912 0.400000 +2296 2927 0.400000 +2296 2974 0.400000 +2296 2981 0.400000 +2296 3012 0.400000 +2296 3080 0.400000 +2296 3088 0.400000 +2297 176 0.400000 +2297 300 0.400000 +2297 320 0.400000 +2297 365 0.400000 +2297 379 0.400000 +2297 389 0.400000 +2297 431 0.400000 +2297 515 0.400000 +2297 552 0.400000 +2297 659 0.400000 +2297 710 0.400000 +2297 827 0.400000 +2297 900 0.400000 +2297 1138 0.400000 +2297 1204 0.400000 +2297 1238 0.400000 +2297 1245 0.400000 +2297 1263 0.400000 +2297 1332 0.400000 +2297 1371 0.400000 +2297 1389 0.400000 +2297 1479 0.400000 +2297 1486 0.400000 +2297 1561 0.400000 +2297 1603 0.400000 +2297 1621 0.400000 +2297 1682 0.400000 +2297 1709 0.400000 +2297 1743 0.400000 +2297 1755 0.400000 +2297 1914 0.400000 +2297 1954 0.400000 +2297 1982 0.400000 +2297 2046 0.400000 +2297 2053 0.400000 +2297 2074 0.400000 +2297 2116 0.400000 +2297 2158 0.400000 +2297 2380 0.400000 +2297 2417 0.400000 +2297 2442 0.400000 +2297 2450 0.400000 +2297 2488 0.400000 +2297 2490 0.400000 +2297 2574 0.400000 +2297 2576 0.400000 +2297 2621 0.400000 +2297 2765 0.400000 +2297 2774 0.400000 +2297 2784 0.400000 +2297 2836 0.400000 +2297 2898 0.400000 +2297 2905 0.400000 +2297 3071 0.400000 +2298 10 0.400000 +2298 24 0.400000 +2298 64 0.400000 +2298 228 0.400000 +2298 277 0.400000 +2298 304 0.400000 +2298 351 0.400000 +2298 478 0.400000 +2298 511 0.400000 +2298 579 0.400000 +2298 681 0.400000 +2298 733 0.400000 +2298 845 0.400000 +2298 902 0.400000 +2298 933 0.400000 +2298 962 0.400000 +2298 987 0.400000 +2298 1055 0.400000 +2298 1067 0.400000 +2298 1099 0.400000 +2298 1175 0.400000 +2298 1193 0.400000 +2298 1243 0.400000 +2298 1250 0.400000 +2298 1290 0.400000 +2298 1354 0.400000 +2298 1476 0.400000 +2298 1575 0.400000 +2298 1576 0.400000 +2298 1645 0.400000 +2298 1662 0.400000 +2298 1673 0.400000 +2298 1692 0.400000 +2298 1810 0.400000 +2298 1831 0.400000 +2298 1847 0.400000 +2298 1915 0.400000 +2298 2066 0.400000 +2298 2087 0.400000 +2298 2195 0.400000 +2298 2289 0.400000 +2298 2435 0.400000 +2298 2492 0.400000 +2298 2512 0.400000 +2298 2525 0.400000 +2298 2600 0.400000 +2298 2681 0.400000 +2298 2710 0.400000 +2298 2762 0.400000 +2298 2787 0.400000 +2298 2835 0.400000 +2298 2942 0.400000 +2298 2964 0.400000 +2298 2966 0.400000 +2298 3015 0.400000 +2298 3185 0.400000 +2299 71 0.400000 +2299 83 0.400000 +2299 179 0.400000 +2299 188 0.400000 +2299 240 0.400000 +2299 282 0.400000 +2299 377 0.400000 +2299 387 0.400000 +2299 419 0.400000 +2299 427 0.400000 +2299 435 0.400000 +2299 451 0.400000 +2299 496 0.400000 +2299 553 0.400000 +2299 562 0.400000 +2299 835 0.400000 +2299 912 0.400000 +2299 942 0.400000 +2299 1006 0.400000 +2299 1027 0.400000 +2299 1036 0.400000 +2299 1092 0.400000 +2299 1110 0.400000 +2299 1115 0.400000 +2299 1156 0.400000 +2299 1167 0.400000 +2299 1188 0.400000 +2299 1230 0.400000 +2299 1344 0.400000 +2299 1404 0.400000 +2299 1477 0.400000 +2299 1525 0.400000 +2299 1542 0.400000 +2299 1611 0.400000 +2299 1624 0.400000 +2299 1744 0.400000 +2299 1809 0.400000 +2299 1837 0.400000 +2299 1972 0.400000 +2299 1998 0.400000 +2299 2091 0.400000 +2299 2094 0.400000 +2299 2226 0.400000 +2299 2260 0.400000 +2299 2266 0.400000 +2299 2316 0.400000 +2299 2320 0.400000 +2299 2325 0.400000 +2299 2481 0.400000 +2299 2490 0.400000 +2299 2553 0.400000 +2299 2603 0.400000 +2299 2646 0.400000 +2299 2696 0.400000 +2299 2775 0.400000 +2299 2841 0.400000 +2299 2951 0.400000 +2299 3095 0.400000 +2300 8 0.400000 +2300 78 0.400000 +2300 97 0.400000 +2300 111 0.400000 +2300 196 0.400000 +2300 362 0.400000 +2300 376 0.400000 +2300 378 0.400000 +2300 398 0.400000 +2300 408 0.400000 +2300 452 0.400000 +2300 468 0.400000 +2300 520 0.400000 +2300 543 0.400000 +2300 749 0.400000 +2300 863 0.400000 +2300 889 0.400000 +2300 911 0.400000 +2300 1030 0.400000 +2300 1168 0.400000 +2300 1350 0.400000 +2300 1374 0.400000 +2300 1403 0.400000 +2300 1478 0.400000 +2300 1582 0.400000 +2300 1704 0.400000 +2300 1708 0.400000 +2300 1808 0.400000 +2300 1940 0.400000 +2300 1968 0.400000 +2300 2014 0.400000 +2300 2128 0.400000 +2300 2143 0.400000 +2300 2236 0.400000 +2300 2292 0.400000 +2300 2347 0.400000 +2300 2377 0.400000 +2300 2409 0.400000 +2300 2523 0.400000 +2300 2532 0.400000 +2300 2538 0.400000 +2300 2576 0.400000 +2300 2582 0.400000 +2300 2818 0.400000 +2300 2852 0.400000 +2300 2904 0.400000 +2300 2991 0.400000 +2300 3003 0.400000 +2300 3005 0.400000 +2300 3016 0.400000 +2300 3117 0.400000 +2301 31 0.400000 +2301 64 0.400000 +2301 67 0.400000 +2301 103 0.400000 +2301 110 0.400000 +2301 190 0.400000 +2301 198 0.400000 +2301 214 0.400000 +2301 284 0.400000 +2301 326 0.400000 +2301 446 0.400000 +2301 448 0.400000 +2301 473 0.400000 +2301 487 0.400000 +2301 489 0.400000 +2301 496 0.400000 +2301 534 0.400000 +2301 669 0.400000 +2301 733 0.400000 +2301 851 0.400000 +2301 1007 0.400000 +2301 1020 0.400000 +2301 1144 0.400000 +2301 1151 0.400000 +2301 1190 0.400000 +2301 1195 0.400000 +2301 1201 0.400000 +2301 1290 0.400000 +2301 1327 0.400000 +2301 1350 0.400000 +2301 1362 0.400000 +2301 1436 0.400000 +2301 1479 0.400000 +2301 1544 0.400000 +2301 1592 0.400000 +2301 1632 0.400000 +2301 1654 0.400000 +2301 1663 0.400000 +2301 1684 0.400000 +2301 1688 0.400000 +2301 1700 0.400000 +2301 1736 0.400000 +2301 1737 0.400000 +2301 1786 0.400000 +2301 1794 0.400000 +2301 1809 0.400000 +2301 1871 0.400000 +2301 1882 0.400000 +2301 1956 0.400000 +2301 1975 0.400000 +2301 2024 0.400000 +2301 2035 0.400000 +2301 2047 0.400000 +2301 2077 0.400000 +2301 2125 0.400000 +2301 2183 0.400000 +2301 2217 0.400000 +2301 2224 0.400000 +2301 2263 0.400000 +2301 2336 0.400000 +2301 2357 0.400000 +2301 2362 0.400000 +2301 2424 0.400000 +2301 2451 0.400000 +2301 2465 0.400000 +2301 2500 0.400000 +2301 2640 0.400000 +2301 2681 0.400000 +2301 2697 0.400000 +2301 2726 0.400000 +2301 2737 0.400000 +2301 2812 0.400000 +2301 2828 0.400000 +2301 2850 0.400000 +2301 2879 0.400000 +2301 2957 0.400000 +2301 2977 0.400000 +2301 2984 0.400000 +2301 3004 0.400000 +2301 3011 0.400000 +2301 3050 0.400000 +2301 3127 0.400000 +2301 3134 0.400000 +2302 15 0.400000 +2302 195 0.400000 +2302 276 0.400000 +2302 349 0.400000 +2302 444 0.400000 +2302 477 0.400000 +2302 546 0.400000 +2302 568 0.400000 +2302 657 0.400000 +2302 684 0.400000 +2302 717 0.400000 +2302 742 0.400000 +2302 754 0.400000 +2302 765 0.400000 +2302 810 0.400000 +2302 826 0.400000 +2302 835 0.400000 +2302 852 0.400000 +2302 1096 0.400000 +2302 1099 0.400000 +2302 1174 0.400000 +2302 1189 0.400000 +2302 1222 0.400000 +2302 1246 0.400000 +2302 1258 0.400000 +2302 1261 0.400000 +2302 1355 0.400000 +2302 1360 0.400000 +2302 1414 0.400000 +2302 1421 0.400000 +2302 1501 0.400000 +2302 1512 0.400000 +2302 1601 0.400000 +2302 1614 0.400000 +2302 1639 0.400000 +2302 1842 0.400000 +2302 1873 0.400000 +2302 1934 0.400000 +2302 1996 0.400000 +2302 2099 0.400000 +2302 2111 0.400000 +2302 2151 0.400000 +2302 2194 0.400000 +2302 2208 0.400000 +2302 2214 0.400000 +2302 2258 0.400000 +2302 2416 0.400000 +2302 2556 0.400000 +2302 2568 0.400000 +2302 2623 0.400000 +2302 2650 0.400000 +2302 2773 0.400000 +2302 2878 0.400000 +2302 2970 0.400000 +2302 3025 0.400000 +2302 3040 0.400000 +2302 3077 0.400000 +2302 3126 0.400000 +2302 3131 0.400000 +2302 3195 0.400000 +2303 8 0.400000 +2303 15 0.400000 +2303 17 0.400000 +2303 33 0.400000 +2303 34 0.400000 +2303 54 0.400000 +2303 67 0.400000 +2303 166 0.400000 +2303 229 0.400000 +2303 240 0.400000 +2303 247 0.400000 +2303 254 0.400000 +2303 361 0.400000 +2303 383 0.400000 +2303 457 0.400000 +2303 464 0.400000 +2303 483 0.400000 +2303 583 0.400000 +2303 615 0.400000 +2303 633 0.400000 +2303 637 0.400000 +2303 691 0.400000 +2303 694 0.400000 +2303 714 0.400000 +2303 742 0.400000 +2303 766 0.400000 +2303 863 0.400000 +2303 880 0.400000 +2303 895 0.400000 +2303 907 0.400000 +2303 946 0.400000 +2303 955 0.400000 +2303 985 0.400000 +2303 1055 0.400000 +2303 1073 0.400000 +2303 1125 0.400000 +2303 1292 0.400000 +2303 1312 0.400000 +2303 1341 0.400000 +2303 1372 0.400000 +2303 1386 0.400000 +2303 1430 0.400000 +2303 1491 0.400000 +2303 1536 0.400000 +2303 1575 0.400000 +2303 1581 0.400000 +2303 1586 0.400000 +2303 1620 0.400000 +2303 1643 0.400000 +2303 1650 0.400000 +2303 1672 0.400000 +2303 1780 0.400000 +2303 1784 0.400000 +2303 1840 0.400000 +2303 1865 0.400000 +2303 1918 0.400000 +2303 1950 0.400000 +2303 1975 0.400000 +2303 2141 0.400000 +2303 2163 0.400000 +2303 2185 0.400000 +2303 2187 0.400000 +2303 2260 0.400000 +2303 2265 0.400000 +2303 2300 0.400000 +2303 2367 0.400000 +2303 2446 0.400000 +2303 2488 0.400000 +2303 2513 0.400000 +2303 2568 0.400000 +2303 2590 0.400000 +2303 2647 0.400000 +2303 2663 0.400000 +2303 2780 0.400000 +2303 2793 0.400000 +2303 2796 0.400000 +2303 2902 0.400000 +2303 2926 0.400000 +2303 2952 0.400000 +2303 3107 0.400000 +2303 3155 0.400000 +2303 3180 0.400000 +2304 234 0.400000 +2304 297 0.400000 +2304 426 0.400000 +2304 479 0.400000 +2304 495 0.400000 +2304 616 0.400000 +2304 670 0.400000 +2304 690 0.400000 +2304 763 0.400000 +2304 774 0.400000 +2304 777 0.400000 +2304 793 0.400000 +2304 810 0.400000 +2304 822 0.400000 +2304 962 0.400000 +2304 1093 0.400000 +2304 1104 0.400000 +2304 1118 0.400000 +2304 1185 0.400000 +2304 1258 0.400000 +2304 1303 0.400000 +2304 1324 0.400000 +2304 1380 0.400000 +2304 1408 0.400000 +2304 1455 0.400000 +2304 1548 0.400000 +2304 1904 0.400000 +2304 1980 0.400000 +2304 2046 0.400000 +2304 2236 0.400000 +2304 2463 0.400000 +2304 2490 0.400000 +2304 2531 0.400000 +2304 2550 0.400000 +2304 2563 0.400000 +2304 2573 0.400000 +2304 2619 0.400000 +2304 2627 0.400000 +2304 2671 0.400000 +2304 2689 0.400000 +2304 2694 0.400000 +2304 2772 0.400000 +2304 2789 0.400000 +2304 2814 0.400000 +2304 2857 0.400000 +2304 2858 0.400000 +2304 2865 0.400000 +2304 3063 0.400000 +2304 3081 0.400000 +2304 3097 0.400000 +2304 3123 0.400000 +2304 3158 0.400000 +2304 3172 0.400000 +2305 26 0.400000 +2305 53 0.400000 +2305 82 0.400000 +2305 94 0.400000 +2305 121 0.400000 +2305 132 0.400000 +2305 184 0.400000 +2305 201 0.400000 +2305 207 0.400000 +2305 240 0.400000 +2305 335 0.400000 +2305 394 0.400000 +2305 395 0.400000 +2305 539 0.400000 +2305 543 0.400000 +2305 629 0.400000 +2305 631 0.400000 +2305 667 0.400000 +2305 688 0.400000 +2305 748 0.400000 +2305 754 0.400000 +2305 833 0.400000 +2305 877 0.400000 +2305 878 0.400000 +2305 984 0.400000 +2305 1063 0.400000 +2305 1078 0.400000 +2305 1255 0.400000 +2305 1268 0.400000 +2305 1269 0.400000 +2305 1279 0.400000 +2305 1309 0.400000 +2305 1321 0.400000 +2305 1380 0.400000 +2305 1427 0.400000 +2305 1505 0.400000 +2305 1524 0.400000 +2305 1545 0.400000 +2305 1549 0.400000 +2305 1574 0.400000 +2305 1833 0.400000 +2305 1922 0.400000 +2305 2053 0.400000 +2305 2130 0.400000 +2305 2230 0.400000 +2305 2238 0.400000 +2305 2256 0.400000 +2305 2284 0.400000 +2305 2323 0.400000 +2305 2435 0.400000 +2305 2527 0.400000 +2305 2559 0.400000 +2305 2579 0.400000 +2305 2608 0.400000 +2305 2810 0.400000 +2305 2880 0.400000 +2305 2998 0.400000 +2305 3008 0.400000 +2305 3072 0.400000 +2306 40 0.400000 +2306 87 0.400000 +2306 151 0.400000 +2306 203 0.400000 +2306 227 0.400000 +2306 285 0.400000 +2306 293 0.400000 +2306 377 0.400000 +2306 444 0.400000 +2306 590 0.400000 +2306 703 0.400000 +2306 715 0.400000 +2306 739 0.400000 +2306 788 0.400000 +2306 824 0.400000 +2306 838 0.400000 +2306 880 0.400000 +2306 897 0.400000 +2306 1006 0.400000 +2306 1014 0.400000 +2306 1021 0.400000 +2306 1035 0.400000 +2306 1053 0.400000 +2306 1276 0.400000 +2306 1279 0.400000 +2306 1291 0.400000 +2306 1350 0.400000 +2306 1406 0.400000 +2306 1480 0.400000 +2306 1556 0.400000 +2306 1572 0.400000 +2306 1642 0.400000 +2306 1656 0.400000 +2306 1664 0.400000 +2306 1666 0.400000 +2306 1920 0.400000 +2306 1935 0.400000 +2306 1975 0.400000 +2306 2031 0.400000 +2306 2067 0.400000 +2306 2089 0.400000 +2306 2095 0.400000 +2306 2106 0.400000 +2306 2125 0.400000 +2306 2145 0.400000 +2306 2176 0.400000 +2306 2248 0.400000 +2306 2295 0.400000 +2306 2333 0.400000 +2306 2374 0.400000 +2306 2383 0.400000 +2306 2420 0.400000 +2306 2430 0.400000 +2306 2499 0.400000 +2306 2520 0.400000 +2306 2579 0.400000 +2306 2591 0.400000 +2306 2619 0.400000 +2306 2686 0.400000 +2306 2713 0.400000 +2306 2750 0.400000 +2306 2755 0.400000 +2306 2769 0.400000 +2306 2913 0.400000 +2306 2961 0.400000 +2306 2987 0.400000 +2306 3079 0.400000 +2306 3160 0.400000 +2306 3171 0.400000 +2307 64 0.400000 +2307 92 0.400000 +2307 145 0.400000 +2307 198 0.400000 +2307 293 0.400000 +2307 343 0.400000 +2307 378 0.400000 +2307 467 0.400000 +2307 510 0.400000 +2307 561 0.400000 +2307 563 0.400000 +2307 575 0.400000 +2307 698 0.400000 +2307 706 0.400000 +2307 712 0.400000 +2307 714 0.400000 +2307 777 0.400000 +2307 790 0.400000 +2307 812 0.400000 +2307 827 0.400000 +2307 853 0.400000 +2307 884 0.400000 +2307 957 0.400000 +2307 1005 0.400000 +2307 1088 0.400000 +2307 1129 0.400000 +2307 1214 0.400000 +2307 1254 0.400000 +2307 1256 0.400000 +2307 1367 0.400000 +2307 1421 0.400000 +2307 1447 0.400000 +2307 1499 0.400000 +2307 1529 0.400000 +2307 1556 0.400000 +2307 1580 0.400000 +2307 1641 0.400000 +2307 1714 0.400000 +2307 1782 0.400000 +2307 1884 0.400000 +2307 1917 0.400000 +2307 1963 0.400000 +2307 2038 0.400000 +2307 2079 0.400000 +2307 2085 0.400000 +2307 2127 0.400000 +2307 2156 0.400000 +2307 2236 0.400000 +2307 2263 0.400000 +2307 2266 0.400000 +2307 2283 0.400000 +2307 2327 0.400000 +2307 2399 0.400000 +2307 2547 0.400000 +2307 2669 0.400000 +2307 2724 0.400000 +2307 2732 0.400000 +2307 2770 0.400000 +2307 2785 0.400000 +2307 2822 0.400000 +2307 2855 0.400000 +2307 2875 0.400000 +2307 2897 0.400000 +2307 2994 0.400000 +2307 3067 0.400000 +2307 3093 0.400000 +2307 3160 0.400000 +2308 37 0.400000 +2308 146 0.400000 +2308 189 0.400000 +2308 203 0.400000 +2308 208 0.400000 +2308 219 0.400000 +2308 221 0.400000 +2308 233 0.400000 +2308 291 0.400000 +2308 297 0.400000 +2308 303 0.400000 +2308 312 0.400000 +2308 324 0.400000 +2308 362 0.400000 +2308 371 0.400000 +2308 411 0.400000 +2308 449 0.400000 +2308 451 0.400000 +2308 534 0.400000 +2308 538 0.400000 +2308 542 0.400000 +2308 545 0.400000 +2308 569 0.400000 +2308 590 0.400000 +2308 663 0.400000 +2308 672 0.400000 +2308 693 0.400000 +2308 756 0.400000 +2308 766 0.400000 +2308 772 0.400000 +2308 822 0.400000 +2308 835 0.400000 +2308 1022 0.400000 +2308 1122 0.400000 +2308 1129 0.400000 +2308 1143 0.400000 +2308 1158 0.400000 +2308 1392 0.400000 +2308 1490 0.400000 +2308 1493 0.400000 +2308 1679 0.400000 +2308 1695 0.400000 +2308 1729 0.400000 +2308 1777 0.400000 +2308 1783 0.400000 +2308 1839 0.400000 +2308 1891 0.400000 +2308 1914 0.400000 +2308 1988 0.400000 +2308 1992 0.400000 +2308 2095 0.400000 +2308 2122 0.400000 +2308 2217 0.400000 +2308 2249 0.400000 +2308 2271 0.400000 +2308 2317 0.400000 +2308 2330 0.400000 +2308 2445 0.400000 +2308 2503 0.400000 +2308 2505 0.400000 +2308 2516 0.400000 +2308 2555 0.400000 +2308 2557 0.400000 +2308 2591 0.400000 +2308 2617 0.400000 +2308 2692 0.400000 +2308 2789 0.400000 +2308 2817 0.400000 +2308 2869 0.400000 +2308 2896 0.400000 +2308 2906 0.400000 +2308 2934 0.400000 +2308 3017 0.400000 +2308 3024 0.400000 +2308 3046 0.400000 +2308 3074 0.400000 +2308 3104 0.400000 +2308 3147 0.400000 +2308 3179 0.400000 +2309 3 0.400000 +2309 13 0.400000 +2309 15 0.400000 +2309 17 0.400000 +2309 48 0.400000 +2309 84 0.400000 +2309 132 0.400000 +2309 136 0.400000 +2309 247 0.400000 +2309 376 0.400000 +2309 472 0.400000 +2309 482 0.400000 +2309 493 0.400000 +2309 500 0.400000 +2309 515 0.400000 +2309 639 0.400000 +2309 776 0.400000 +2309 789 0.400000 +2309 827 0.400000 +2309 859 0.400000 +2309 923 0.400000 +2309 934 0.400000 +2309 941 0.400000 +2309 958 0.400000 +2309 1023 0.400000 +2309 1095 0.400000 +2309 1214 0.400000 +2309 1254 0.400000 +2309 1257 0.400000 +2309 1286 0.400000 +2309 1289 0.400000 +2309 1352 0.400000 +2309 1411 0.400000 +2309 1485 0.400000 +2309 1504 0.400000 +2309 1534 0.400000 +2309 1616 0.400000 +2309 1709 0.400000 +2309 1834 0.400000 +2309 1886 0.400000 +2309 1888 0.400000 +2309 1948 0.400000 +2309 1977 0.400000 +2309 2062 0.400000 +2309 2066 0.400000 +2309 2108 0.400000 +2309 2145 0.400000 +2309 2156 0.400000 +2309 2217 0.400000 +2309 2264 0.400000 +2309 2270 0.400000 +2309 2316 0.400000 +2309 2338 0.400000 +2309 2349 0.400000 +2309 2413 0.400000 +2309 2433 0.400000 +2309 2490 0.400000 +2309 2579 0.400000 +2309 2629 0.400000 +2309 2644 0.400000 +2309 2674 0.400000 +2309 2675 0.400000 +2309 2697 0.400000 +2309 2805 0.400000 +2309 2869 0.400000 +2309 2881 0.400000 +2309 2919 0.400000 +2309 2953 0.400000 +2309 2995 0.400000 +2309 3019 0.400000 +2309 3020 0.400000 +2309 3103 0.400000 +2309 3110 0.400000 +2309 3193 0.400000 +2310 63 0.400000 +2310 90 0.400000 +2310 174 0.400000 +2310 189 0.400000 +2310 209 0.400000 +2310 314 0.400000 +2310 331 0.400000 +2310 351 0.400000 +2310 370 0.400000 +2310 402 0.400000 +2310 429 0.400000 +2310 481 0.400000 +2310 539 0.400000 +2310 593 0.400000 +2310 642 0.400000 +2310 658 0.400000 +2310 667 0.400000 +2310 673 0.400000 +2310 679 0.400000 +2310 734 0.400000 +2310 823 0.400000 +2310 927 0.400000 +2310 976 0.400000 +2310 1003 0.400000 +2310 1041 0.400000 +2310 1173 0.400000 +2310 1174 0.400000 +2310 1201 0.400000 +2310 1235 0.400000 +2310 1271 0.400000 +2310 1309 0.400000 +2310 1312 0.400000 +2310 1326 0.400000 +2310 1341 0.400000 +2310 1347 0.400000 +2310 1366 0.400000 +2310 1393 0.400000 +2310 1415 0.400000 +2310 1448 0.400000 +2310 1508 0.400000 +2310 1560 0.400000 +2310 1617 0.400000 +2310 1621 0.400000 +2310 1784 0.400000 +2310 1852 0.400000 +2310 1864 0.400000 +2310 2006 0.400000 +2310 2070 0.400000 +2310 2111 0.400000 +2310 2182 0.400000 +2310 2186 0.400000 +2310 2250 0.400000 +2310 2286 0.400000 +2310 2322 0.400000 +2310 2332 0.400000 +2310 2383 0.400000 +2310 2387 0.400000 +2310 2392 0.400000 +2310 2497 0.400000 +2310 2504 0.400000 +2310 2530 0.400000 +2310 2602 0.400000 +2310 2615 0.400000 +2310 2689 0.400000 +2310 2730 0.400000 +2310 2809 0.400000 +2310 2884 0.400000 +2310 2890 0.400000 +2310 2891 0.400000 +2310 2967 0.400000 +2310 3019 0.400000 +2310 3163 0.400000 +2311 11 0.400000 +2311 41 0.400000 +2311 46 0.400000 +2311 118 0.400000 +2311 132 0.400000 +2311 220 0.400000 +2311 243 0.400000 +2311 253 0.400000 +2311 385 0.400000 +2311 497 0.400000 +2311 501 0.400000 +2311 524 0.400000 +2311 656 0.400000 +2311 662 0.400000 +2311 672 0.400000 +2311 786 0.400000 +2311 995 0.400000 +2311 1044 0.400000 +2311 1088 0.400000 +2311 1153 0.400000 +2311 1199 0.400000 +2311 1215 0.400000 +2311 1298 0.400000 +2311 1305 0.400000 +2311 1323 0.400000 +2311 1421 0.400000 +2311 1437 0.400000 +2311 1441 0.400000 +2311 1502 0.400000 +2311 1509 0.400000 +2311 1646 0.400000 +2311 1703 0.400000 +2311 1819 0.400000 +2311 1923 0.400000 +2311 1930 0.400000 +2311 2002 0.400000 +2311 2111 0.400000 +2311 2156 0.400000 +2311 2176 0.400000 +2311 2248 0.400000 +2311 2253 0.400000 +2311 2274 0.400000 +2311 2375 0.400000 +2311 2389 0.400000 +2311 2503 0.400000 +2311 2560 0.400000 +2311 2569 0.400000 +2311 2685 0.400000 +2311 2727 0.400000 +2311 2776 0.400000 +2311 2818 0.400000 +2311 2849 0.400000 +2311 2872 0.400000 +2311 3016 0.400000 +2311 3049 0.400000 +2311 3088 0.400000 +2311 3105 0.400000 +2311 3114 0.400000 +2311 3159 0.400000 +2311 3186 0.400000 +2312 69 0.400000 +2312 70 0.400000 +2312 74 0.400000 +2312 174 0.400000 +2312 271 0.400000 +2312 341 0.400000 +2312 348 0.400000 +2312 350 0.400000 +2312 400 0.400000 +2312 405 0.400000 +2312 465 0.400000 +2312 498 0.400000 +2312 501 0.400000 +2312 546 0.400000 +2312 555 0.400000 +2312 565 0.400000 +2312 684 0.400000 +2312 765 0.400000 +2312 863 0.400000 +2312 864 0.400000 +2312 897 0.400000 +2312 957 0.400000 +2312 1023 0.400000 +2312 1041 0.400000 +2312 1134 0.400000 +2312 1161 0.400000 +2312 1201 0.400000 +2312 1228 0.400000 +2312 1261 0.400000 +2312 1281 0.400000 +2312 1363 0.400000 +2312 1376 0.400000 +2312 1381 0.400000 +2312 1476 0.400000 +2312 1561 0.400000 +2312 1598 0.400000 +2312 1708 0.400000 +2312 1711 0.400000 +2312 1713 0.400000 +2312 1744 0.400000 +2312 1768 0.400000 +2312 1801 0.400000 +2312 1804 0.400000 +2312 1889 0.400000 +2312 1897 0.400000 +2312 1928 0.400000 +2312 1963 0.400000 +2312 1975 0.400000 +2312 1976 0.400000 +2312 1978 0.400000 +2312 1983 0.400000 +2312 1985 0.400000 +2312 2024 0.400000 +2312 2152 0.400000 +2312 2161 0.400000 +2312 2277 0.400000 +2312 2278 0.400000 +2312 2301 0.400000 +2312 2316 0.400000 +2312 2390 0.400000 +2312 2416 0.400000 +2312 2538 0.400000 +2312 2600 0.400000 +2312 2619 0.400000 +2312 2785 0.400000 +2312 2871 0.400000 +2312 2876 0.400000 +2312 2911 0.400000 +2312 2942 0.400000 +2312 2953 0.400000 +2312 3007 0.400000 +2312 3111 0.400000 +2313 34 0.400000 +2313 37 0.400000 +2313 67 0.400000 +2313 103 0.400000 +2313 126 0.400000 +2313 219 0.400000 +2313 227 0.400000 +2313 241 0.400000 +2313 244 0.400000 +2313 298 0.400000 +2313 310 0.400000 +2313 322 0.400000 +2313 366 0.400000 +2313 453 0.400000 +2313 521 0.400000 +2313 549 0.400000 +2313 580 0.400000 +2313 606 0.400000 +2313 617 0.400000 +2313 638 0.400000 +2313 719 0.400000 +2313 750 0.400000 +2313 803 0.400000 +2313 815 0.400000 +2313 843 0.400000 +2313 867 0.400000 +2313 901 0.400000 +2313 965 0.400000 +2313 997 0.400000 +2313 1015 0.400000 +2313 1065 0.400000 +2313 1097 0.400000 +2313 1109 0.400000 +2313 1129 0.400000 +2313 1150 0.400000 +2313 1195 0.400000 +2313 1282 0.400000 +2313 1306 0.400000 +2313 1336 0.400000 +2313 1424 0.400000 +2313 1535 0.400000 +2313 1546 0.400000 +2313 1651 0.400000 +2313 1664 0.400000 +2313 1701 0.400000 +2313 1716 0.400000 +2313 1729 0.400000 +2313 1744 0.400000 +2313 1770 0.400000 +2313 1816 0.400000 +2313 1879 0.400000 +2313 1949 0.400000 +2313 1986 0.400000 +2313 2033 0.400000 +2313 2096 0.400000 +2313 2145 0.400000 +2313 2257 0.400000 +2313 2277 0.400000 +2313 2301 0.400000 +2313 2360 0.400000 +2313 2422 0.400000 +2313 2428 0.400000 +2313 2509 0.400000 +2313 2607 0.400000 +2313 2659 0.400000 +2313 2676 0.400000 +2313 2698 0.400000 +2313 2796 0.400000 +2313 2850 0.400000 +2313 2890 0.400000 +2313 2896 0.400000 +2313 2897 0.400000 +2313 2924 0.400000 +2313 2944 0.400000 +2313 3023 0.400000 +2313 3083 0.400000 +2313 3144 0.400000 +2314 30 0.400000 +2314 126 0.400000 +2314 207 0.400000 +2314 285 0.400000 +2314 343 0.400000 +2314 388 0.400000 +2314 471 0.400000 +2314 481 0.400000 +2314 535 0.400000 +2314 553 0.400000 +2314 582 0.400000 +2314 621 0.400000 +2314 659 0.400000 +2314 667 0.400000 +2314 778 0.400000 +2314 820 0.400000 +2314 896 0.400000 +2314 976 0.400000 +2314 1078 0.400000 +2314 1103 0.400000 +2314 1208 0.400000 +2314 1246 0.400000 +2314 1278 0.400000 +2314 1368 0.400000 +2314 1372 0.400000 +2314 1427 0.400000 +2314 1568 0.400000 +2314 1593 0.400000 +2314 1636 0.400000 +2314 1685 0.400000 +2314 1764 0.400000 +2314 1779 0.400000 +2314 1881 0.400000 +2314 1887 0.400000 +2314 1888 0.400000 +2314 1923 0.400000 +2314 2000 0.400000 +2314 2066 0.400000 +2314 2080 0.400000 +2314 2118 0.400000 +2314 2253 0.400000 +2314 2286 0.400000 +2314 2341 0.400000 +2314 2367 0.400000 +2314 2459 0.400000 +2314 2493 0.400000 +2314 2506 0.400000 +2314 2533 0.400000 +2314 2544 0.400000 +2314 2778 0.400000 +2314 2808 0.400000 +2314 2877 0.400000 +2314 2898 0.400000 +2314 2931 0.400000 +2314 2948 0.400000 +2314 2986 0.400000 +2314 3077 0.400000 +2314 3083 0.400000 +2314 3118 0.400000 +2314 3168 0.400000 +2315 17 0.400000 +2315 210 0.400000 +2315 225 0.400000 +2315 231 0.400000 +2315 277 0.400000 +2315 349 0.400000 +2315 357 0.400000 +2315 395 0.400000 +2315 413 0.400000 +2315 463 0.400000 +2315 519 0.400000 +2315 589 0.400000 +2315 660 0.400000 +2315 721 0.400000 +2315 736 0.400000 +2315 768 0.400000 +2315 787 0.400000 +2315 788 0.400000 +2315 826 0.400000 +2315 831 0.400000 +2315 888 0.400000 +2315 932 0.400000 +2315 975 0.400000 +2315 976 0.400000 +2315 981 0.400000 +2315 993 0.400000 +2315 1080 0.400000 +2315 1110 0.400000 +2315 1133 0.400000 +2315 1215 0.400000 +2315 1216 0.400000 +2315 1236 0.400000 +2315 1282 0.400000 +2315 1292 0.400000 +2315 1396 0.400000 +2315 1468 0.400000 +2315 1482 0.400000 +2315 1531 0.400000 +2315 1556 0.400000 +2315 1666 0.400000 +2315 1713 0.400000 +2315 1777 0.400000 +2315 1793 0.400000 +2315 1801 0.400000 +2315 1905 0.400000 +2315 2093 0.400000 +2315 2152 0.400000 +2315 2163 0.400000 +2315 2230 0.400000 +2315 2251 0.400000 +2315 2256 0.400000 +2315 2339 0.400000 +2315 2364 0.400000 +2315 2390 0.400000 +2315 2431 0.400000 +2315 2560 0.400000 +2315 2569 0.400000 +2315 2676 0.400000 +2315 2790 0.400000 +2315 2851 0.400000 +2315 2855 0.400000 +2315 2888 0.400000 +2315 2914 0.400000 +2315 2945 0.400000 +2315 2995 0.400000 +2315 2998 0.400000 +2315 3044 0.400000 +2315 3057 0.400000 +2315 3120 0.400000 +2315 3139 0.400000 +2315 3179 0.400000 +2315 3182 0.400000 +2316 2 0.400000 +2316 85 0.400000 +2316 117 0.400000 +2316 137 0.400000 +2316 149 0.400000 +2316 151 0.400000 +2316 152 0.400000 +2316 173 0.400000 +2316 184 0.400000 +2316 187 0.400000 +2316 281 0.400000 +2316 348 0.400000 +2316 404 0.400000 +2316 468 0.400000 +2316 482 0.400000 +2316 490 0.400000 +2316 507 0.400000 +2316 508 0.400000 +2316 609 0.400000 +2316 611 0.400000 +2316 620 0.400000 +2316 626 0.400000 +2316 764 0.400000 +2316 772 0.400000 +2316 888 0.400000 +2316 930 0.400000 +2316 1052 0.400000 +2316 1095 0.400000 +2316 1165 0.400000 +2316 1215 0.400000 +2316 1315 0.400000 +2316 1338 0.400000 +2316 1429 0.400000 +2316 1431 0.400000 +2316 1443 0.400000 +2316 1451 0.400000 +2316 1514 0.400000 +2316 1678 0.400000 +2316 1690 0.400000 +2316 1749 0.400000 +2316 1762 0.400000 +2316 1862 0.400000 +2316 1951 0.400000 +2316 2034 0.400000 +2316 2088 0.400000 +2316 2102 0.400000 +2316 2161 0.400000 +2316 2260 0.400000 +2316 2300 0.400000 +2316 2305 0.400000 +2316 2316 0.400000 +2316 2431 0.400000 +2316 2462 0.400000 +2316 2475 0.400000 +2316 2485 0.400000 +2316 2630 0.400000 +2316 2666 0.400000 +2316 2688 0.400000 +2316 2756 0.400000 +2316 3010 0.400000 +2316 3040 0.400000 +2316 3106 0.400000 +2317 56 0.400000 +2317 95 0.400000 +2317 107 0.400000 +2317 135 0.400000 +2317 218 0.400000 +2317 303 0.400000 +2317 383 0.400000 +2317 420 0.400000 +2317 506 0.400000 +2317 544 0.400000 +2317 691 0.400000 +2317 783 0.400000 +2317 889 0.400000 +2317 905 0.400000 +2317 915 0.400000 +2317 917 0.400000 +2317 955 0.400000 +2317 974 0.400000 +2317 999 0.400000 +2317 1026 0.400000 +2317 1159 0.400000 +2317 1211 0.400000 +2317 1317 0.400000 +2317 1382 0.400000 +2317 1400 0.400000 +2317 1411 0.400000 +2317 1545 0.400000 +2317 1623 0.400000 +2317 1811 0.400000 +2317 1827 0.400000 +2317 1867 0.400000 +2317 1893 0.400000 +2317 2097 0.400000 +2317 2099 0.400000 +2317 2109 0.400000 +2317 2256 0.400000 +2317 2264 0.400000 +2317 2285 0.400000 +2317 2384 0.400000 +2317 2387 0.400000 +2317 2549 0.400000 +2317 2575 0.400000 +2317 2595 0.400000 +2317 2597 0.400000 +2317 2708 0.400000 +2317 2735 0.400000 +2317 2841 0.400000 +2317 2908 0.400000 +2317 2919 0.400000 +2317 2984 0.400000 +2317 3045 0.400000 +2317 3071 0.400000 +2317 3096 0.400000 +2317 3179 0.400000 +2318 17 0.400000 +2318 58 0.400000 +2318 84 0.400000 +2318 264 0.400000 +2318 314 0.400000 +2318 352 0.400000 +2318 456 0.400000 +2318 473 0.400000 +2318 491 0.400000 +2318 628 0.400000 +2318 640 0.400000 +2318 722 0.400000 +2318 770 0.400000 +2318 839 0.400000 +2318 873 0.400000 +2318 894 0.400000 +2318 944 0.400000 +2318 968 0.400000 +2318 1062 0.400000 +2318 1075 0.400000 +2318 1107 0.400000 +2318 1140 0.400000 +2318 1287 0.400000 +2318 1338 0.400000 +2318 1386 0.400000 +2318 1392 0.400000 +2318 1393 0.400000 +2318 1416 0.400000 +2318 1449 0.400000 +2318 1479 0.400000 +2318 1486 0.400000 +2318 1491 0.400000 +2318 1498 0.400000 +2318 1538 0.400000 +2318 1552 0.400000 +2318 1569 0.400000 +2318 1577 0.400000 +2318 1593 0.400000 +2318 1625 0.400000 +2318 1671 0.400000 +2318 1689 0.400000 +2318 1691 0.400000 +2318 1713 0.400000 +2318 1783 0.400000 +2318 1789 0.400000 +2318 1793 0.400000 +2318 1836 0.400000 +2318 1899 0.400000 +2318 1920 0.400000 +2318 2069 0.400000 +2318 2107 0.400000 +2318 2129 0.400000 +2318 2153 0.400000 +2318 2160 0.400000 +2318 2226 0.400000 +2318 2276 0.400000 +2318 2336 0.400000 +2318 2363 0.400000 +2318 2584 0.400000 +2318 2592 0.400000 +2318 2604 0.400000 +2318 2612 0.400000 +2318 2625 0.400000 +2318 2675 0.400000 +2318 2803 0.400000 +2318 2876 0.400000 +2318 2950 0.400000 +2318 2953 0.400000 +2318 2979 0.400000 +2318 2980 0.400000 +2318 3036 0.400000 +2318 3128 0.400000 +2318 3135 0.400000 +2319 116 0.400000 +2319 119 0.400000 +2319 145 0.400000 +2319 295 0.400000 +2319 326 0.400000 +2319 400 0.400000 +2319 414 0.400000 +2319 423 0.400000 +2319 469 0.400000 +2319 543 0.400000 +2319 655 0.400000 +2319 689 0.400000 +2319 724 0.400000 +2319 767 0.400000 +2319 890 0.400000 +2319 903 0.400000 +2319 999 0.400000 +2319 1029 0.400000 +2319 1170 0.400000 +2319 1185 0.400000 +2319 1205 0.400000 +2319 1409 0.400000 +2319 1529 0.400000 +2319 1670 0.400000 +2319 1679 0.400000 +2319 1680 0.400000 +2319 1681 0.400000 +2319 1794 0.400000 +2319 1924 0.400000 +2319 1963 0.400000 +2319 1975 0.400000 +2319 2040 0.400000 +2319 2044 0.400000 +2319 2199 0.400000 +2319 2233 0.400000 +2319 2264 0.400000 +2319 2297 0.400000 +2319 2309 0.400000 +2319 2361 0.400000 +2319 2377 0.400000 +2319 2691 0.400000 +2319 2781 0.400000 +2319 2782 0.400000 +2319 2874 0.400000 +2319 2881 0.400000 +2319 2923 0.400000 +2319 2924 0.400000 +2319 2958 0.400000 +2319 3050 0.400000 +2320 11 0.400000 +2320 116 0.400000 +2320 119 0.400000 +2320 262 0.400000 +2320 280 0.400000 +2320 312 0.400000 +2320 335 0.400000 +2320 374 0.400000 +2320 491 0.400000 +2320 552 0.400000 +2320 557 0.400000 +2320 577 0.400000 +2320 651 0.400000 +2320 697 0.400000 +2320 998 0.400000 +2320 1095 0.400000 +2320 1106 0.400000 +2320 1135 0.400000 +2320 1160 0.400000 +2320 1191 0.400000 +2320 1229 0.400000 +2320 1246 0.400000 +2320 1285 0.400000 +2320 1286 0.400000 +2320 1296 0.400000 +2320 1468 0.400000 +2320 1494 0.400000 +2320 1502 0.400000 +2320 1534 0.400000 +2320 1541 0.400000 +2320 1553 0.400000 +2320 1633 0.400000 +2320 1648 0.400000 +2320 1685 0.400000 +2320 1718 0.400000 +2320 1738 0.400000 +2320 1761 0.400000 +2320 1829 0.400000 +2320 1875 0.400000 +2320 2026 0.400000 +2320 2040 0.400000 +2320 2064 0.400000 +2320 2127 0.400000 +2320 2160 0.400000 +2320 2170 0.400000 +2320 2181 0.400000 +2320 2305 0.400000 +2320 2393 0.400000 +2320 2416 0.400000 +2320 2572 0.400000 +2320 2592 0.400000 +2320 2680 0.400000 +2320 2810 0.400000 +2320 2919 0.400000 +2320 2940 0.400000 +2320 2950 0.400000 +2320 3007 0.400000 +2320 3062 0.400000 +2320 3096 0.400000 +2320 3116 0.400000 +2321 22 0.400000 +2321 46 0.400000 +2321 55 0.400000 +2321 56 0.400000 +2321 113 0.400000 +2321 199 0.400000 +2321 201 0.400000 +2321 254 0.400000 +2321 268 0.400000 +2321 286 0.400000 +2321 333 0.400000 +2321 413 0.400000 +2321 509 0.400000 +2321 534 0.400000 +2321 539 0.400000 +2321 695 0.400000 +2321 708 0.400000 +2321 716 0.400000 +2321 807 0.400000 +2321 831 0.400000 +2321 869 0.400000 +2321 899 0.400000 +2321 901 0.400000 +2321 971 0.400000 +2321 1176 0.400000 +2321 1286 0.400000 +2321 1359 0.400000 +2321 1371 0.400000 +2321 1391 0.400000 +2321 1433 0.400000 +2321 1732 0.400000 +2321 1738 0.400000 +2321 1915 0.400000 +2321 1974 0.400000 +2321 2024 0.400000 +2321 2063 0.400000 +2321 2111 0.400000 +2321 2162 0.400000 +2321 2227 0.400000 +2321 2257 0.400000 +2321 2316 0.400000 +2321 2372 0.400000 +2321 2377 0.400000 +2321 2451 0.400000 +2321 2639 0.400000 +2321 2658 0.400000 +2321 2773 0.400000 +2321 2781 0.400000 +2321 2846 0.400000 +2321 2863 0.400000 +2321 2984 0.400000 +2321 3001 0.400000 +2321 3161 0.400000 +2322 27 0.400000 +2322 43 0.400000 +2322 151 0.400000 +2322 204 0.400000 +2322 223 0.400000 +2322 243 0.400000 +2322 344 0.400000 +2322 350 0.400000 +2322 384 0.400000 +2322 386 0.400000 +2322 398 0.400000 +2322 399 0.400000 +2322 400 0.400000 +2322 506 0.400000 +2322 597 0.400000 +2322 694 0.400000 +2322 744 0.400000 +2322 971 0.400000 +2322 976 0.400000 +2322 1057 0.400000 +2322 1064 0.400000 +2322 1080 0.400000 +2322 1097 0.400000 +2322 1161 0.400000 +2322 1170 0.400000 +2322 1175 0.400000 +2322 1185 0.400000 +2322 1213 0.400000 +2322 1219 0.400000 +2322 1224 0.400000 +2322 1357 0.400000 +2322 1385 0.400000 +2322 1444 0.400000 +2322 1480 0.400000 +2322 1496 0.400000 +2322 1582 0.400000 +2322 1644 0.400000 +2322 1750 0.400000 +2322 1762 0.400000 +2322 1812 0.400000 +2322 1868 0.400000 +2322 1907 0.400000 +2322 1915 0.400000 +2322 1935 0.400000 +2322 1972 0.400000 +2322 2011 0.400000 +2322 2045 0.400000 +2322 2056 0.400000 +2322 2080 0.400000 +2322 2081 0.400000 +2322 2120 0.400000 +2322 2138 0.400000 +2322 2218 0.400000 +2322 2219 0.400000 +2322 2288 0.400000 +2322 2305 0.400000 +2322 2336 0.400000 +2322 2344 0.400000 +2322 2382 0.400000 +2322 2471 0.400000 +2322 2480 0.400000 +2322 2488 0.400000 +2322 2490 0.400000 +2322 2493 0.400000 +2322 2519 0.400000 +2322 2535 0.400000 +2322 2569 0.400000 +2322 2685 0.400000 +2322 2743 0.400000 +2322 2964 0.400000 +2322 2969 0.400000 +2322 3073 0.400000 +2322 3110 0.400000 +2322 3113 0.400000 +2322 3132 0.400000 +2322 3156 0.400000 +2322 3192 0.400000 +2323 90 0.400000 +2323 93 0.400000 +2323 116 0.400000 +2323 136 0.400000 +2323 181 0.400000 +2323 243 0.400000 +2323 271 0.400000 +2323 409 0.400000 +2323 487 0.400000 +2323 533 0.400000 +2323 548 0.400000 +2323 591 0.400000 +2323 665 0.400000 +2323 676 0.400000 +2323 685 0.400000 +2323 740 0.400000 +2323 770 0.400000 +2323 803 0.400000 +2323 937 0.400000 +2323 969 0.400000 +2323 1043 0.400000 +2323 1090 0.400000 +2323 1101 0.400000 +2323 1214 0.400000 +2323 1240 0.400000 +2323 1264 0.400000 +2323 1293 0.400000 +2323 1398 0.400000 +2323 1409 0.400000 +2323 1454 0.400000 +2323 1483 0.400000 +2323 1497 0.400000 +2323 1567 0.400000 +2323 1638 0.400000 +2323 1674 0.400000 +2323 1750 0.400000 +2323 1757 0.400000 +2323 1832 0.400000 +2323 1845 0.400000 +2323 1858 0.400000 +2323 1883 0.400000 +2323 2002 0.400000 +2323 2043 0.400000 +2323 2155 0.400000 +2323 2187 0.400000 +2323 2191 0.400000 +2323 2226 0.400000 +2323 2286 0.400000 +2323 2339 0.400000 +2323 2365 0.400000 +2323 2441 0.400000 +2323 2468 0.400000 +2323 2590 0.400000 +2323 2692 0.400000 +2323 2756 0.400000 +2323 2791 0.400000 +2323 3052 0.400000 +2323 3154 0.400000 +2323 3179 0.400000 +2324 57 0.400000 +2324 107 0.400000 +2324 162 0.400000 +2324 296 0.400000 +2324 390 0.400000 +2324 430 0.400000 +2324 453 0.400000 +2324 474 0.400000 +2324 475 0.400000 +2324 500 0.400000 +2324 538 0.400000 +2324 580 0.400000 +2324 594 0.400000 +2324 616 0.400000 +2324 620 0.400000 +2324 678 0.400000 +2324 788 0.400000 +2324 856 0.400000 +2324 873 0.400000 +2324 879 0.400000 +2324 907 0.400000 +2324 992 0.400000 +2324 1003 0.400000 +2324 1014 0.400000 +2324 1017 0.400000 +2324 1035 0.400000 +2324 1130 0.400000 +2324 1149 0.400000 +2324 1151 0.400000 +2324 1152 0.400000 +2324 1167 0.400000 +2324 1180 0.400000 +2324 1221 0.400000 +2324 1282 0.400000 +2324 1322 0.400000 +2324 1348 0.400000 +2324 1367 0.400000 +2324 1427 0.400000 +2324 1436 0.400000 +2324 1450 0.400000 +2324 1463 0.400000 +2324 1541 0.400000 +2324 1552 0.400000 +2324 1589 0.400000 +2324 1606 0.400000 +2324 1614 0.400000 +2324 1621 0.400000 +2324 1653 0.400000 +2324 1758 0.400000 +2324 1776 0.400000 +2324 1847 0.400000 +2324 1926 0.400000 +2324 1951 0.400000 +2324 2077 0.400000 +2324 2093 0.400000 +2324 2140 0.400000 +2324 2151 0.400000 +2324 2212 0.400000 +2324 2218 0.400000 +2324 2246 0.400000 +2324 2264 0.400000 +2324 2274 0.400000 +2324 2300 0.400000 +2324 2348 0.400000 +2324 2394 0.400000 +2324 2408 0.400000 +2324 2460 0.400000 +2324 2584 0.400000 +2324 2599 0.400000 +2324 2663 0.400000 +2324 2714 0.400000 +2324 2715 0.400000 +2324 2810 0.400000 +2324 2870 0.400000 +2324 2874 0.400000 +2324 2913 0.400000 +2324 2938 0.400000 +2324 2998 0.400000 +2324 3056 0.400000 +2324 3084 0.400000 +2324 3184 0.400000 +2324 3185 0.400000 +2325 119 0.400000 +2325 129 0.400000 +2325 170 0.400000 +2325 192 0.400000 +2325 197 0.400000 +2325 202 0.400000 +2325 287 0.400000 +2325 303 0.400000 +2325 421 0.400000 +2325 472 0.400000 +2325 501 0.400000 +2325 507 0.400000 +2325 651 0.400000 +2325 660 0.400000 +2325 682 0.400000 +2325 714 0.400000 +2325 732 0.400000 +2325 816 0.400000 +2325 838 0.400000 +2325 848 0.400000 +2325 914 0.400000 +2325 951 0.400000 +2325 968 0.400000 +2325 1025 0.400000 +2325 1189 0.400000 +2325 1243 0.400000 +2325 1292 0.400000 +2325 1321 0.400000 +2325 1324 0.400000 +2325 1383 0.400000 +2325 1397 0.400000 +2325 1469 0.400000 +2325 1529 0.400000 +2325 1537 0.400000 +2325 1687 0.400000 +2325 1701 0.400000 +2325 1759 0.400000 +2325 1880 0.400000 +2325 1881 0.400000 +2325 1886 0.400000 +2325 2012 0.400000 +2325 2041 0.400000 +2325 2100 0.400000 +2325 2110 0.400000 +2325 2111 0.400000 +2325 2133 0.400000 +2325 2136 0.400000 +2325 2166 0.400000 +2325 2224 0.400000 +2325 2264 0.400000 +2325 2372 0.400000 +2325 2404 0.400000 +2325 2533 0.400000 +2325 2544 0.400000 +2325 2612 0.400000 +2325 2621 0.400000 +2325 2753 0.400000 +2325 2770 0.400000 +2325 2822 0.400000 +2325 2921 0.400000 +2325 2957 0.400000 +2325 2992 0.400000 +2325 3033 0.400000 +2325 3034 0.400000 +2325 3039 0.400000 +2325 3044 0.400000 +2325 3076 0.400000 +2326 50 0.400000 +2326 161 0.400000 +2326 175 0.400000 +2326 326 0.400000 +2326 370 0.400000 +2326 437 0.400000 +2326 460 0.400000 +2326 542 0.400000 +2326 573 0.400000 +2326 699 0.400000 +2326 730 0.400000 +2326 741 0.400000 +2326 793 0.400000 +2326 821 0.400000 +2326 841 0.400000 +2326 915 0.400000 +2326 965 0.400000 +2326 1004 0.400000 +2326 1026 0.400000 +2326 1032 0.400000 +2326 1088 0.400000 +2326 1174 0.400000 +2326 1217 0.400000 +2326 1313 0.400000 +2326 1388 0.400000 +2326 1411 0.400000 +2326 1428 0.400000 +2326 1431 0.400000 +2326 1446 0.400000 +2326 1492 0.400000 +2326 1565 0.400000 +2326 1613 0.400000 +2326 1645 0.400000 +2326 1734 0.400000 +2326 1741 0.400000 +2326 1750 0.400000 +2326 1787 0.400000 +2326 1794 0.400000 +2326 1883 0.400000 +2326 1937 0.400000 +2326 1962 0.400000 +2326 1995 0.400000 +2326 2055 0.400000 +2326 2089 0.400000 +2326 2155 0.400000 +2326 2177 0.400000 +2326 2271 0.400000 +2326 2281 0.400000 +2326 2345 0.400000 +2326 2378 0.400000 +2326 2477 0.400000 +2326 2527 0.400000 +2326 2543 0.400000 +2326 2589 0.400000 +2326 2669 0.400000 +2326 2699 0.400000 +2326 2701 0.400000 +2326 2798 0.400000 +2326 2844 0.400000 +2326 2847 0.400000 +2326 2864 0.400000 +2326 2948 0.400000 +2326 2995 0.400000 +2326 3098 0.400000 +2326 3113 0.400000 +2326 3197 0.400000 +2327 31 0.400000 +2327 36 0.400000 +2327 58 0.400000 +2327 70 0.400000 +2327 162 0.400000 +2327 216 0.400000 +2327 255 0.400000 +2327 334 0.400000 +2327 385 0.400000 +2327 579 0.400000 +2327 595 0.400000 +2327 728 0.400000 +2327 776 0.400000 +2327 780 0.400000 +2327 803 0.400000 +2327 884 0.400000 +2327 894 0.400000 +2327 966 0.400000 +2327 1025 0.400000 +2327 1183 0.400000 +2327 1184 0.400000 +2327 1189 0.400000 +2327 1230 0.400000 +2327 1298 0.400000 +2327 1324 0.400000 +2327 1342 0.400000 +2327 1364 0.400000 +2327 1400 0.400000 +2327 1478 0.400000 +2327 1533 0.400000 +2327 1544 0.400000 +2327 1554 0.400000 +2327 1576 0.400000 +2327 1671 0.400000 +2327 1745 0.400000 +2327 1755 0.400000 +2327 1776 0.400000 +2327 1805 0.400000 +2327 1809 0.400000 +2327 1812 0.400000 +2327 1853 0.400000 +2327 1881 0.400000 +2327 1925 0.400000 +2327 1956 0.400000 +2327 2011 0.400000 +2327 2037 0.400000 +2327 2091 0.400000 +2327 2149 0.400000 +2327 2171 0.400000 +2327 2175 0.400000 +2327 2233 0.400000 +2327 2263 0.400000 +2327 2276 0.400000 +2327 2524 0.400000 +2327 2533 0.400000 +2327 2549 0.400000 +2327 2601 0.400000 +2327 2649 0.400000 +2327 2690 0.400000 +2327 2700 0.400000 +2327 2728 0.400000 +2327 2842 0.400000 +2327 2869 0.400000 +2327 2914 0.400000 +2327 2922 0.400000 +2327 2930 0.400000 +2327 2943 0.400000 +2327 3002 0.400000 +2327 3075 0.400000 +2327 3123 0.400000 +2327 3125 0.400000 +2327 3132 0.400000 +2328 89 0.400000 +2328 324 0.400000 +2328 341 0.400000 +2328 374 0.400000 +2328 458 0.400000 +2328 465 0.400000 +2328 545 0.400000 +2328 733 0.400000 +2328 797 0.400000 +2328 802 0.400000 +2328 844 0.400000 +2328 969 0.400000 +2328 1001 0.400000 +2328 1142 0.400000 +2328 1194 0.400000 +2328 1216 0.400000 +2328 1280 0.400000 +2328 1360 0.400000 +2328 1380 0.400000 +2328 1392 0.400000 +2328 1459 0.400000 +2328 1482 0.400000 +2328 1494 0.400000 +2328 1573 0.400000 +2328 1608 0.400000 +2328 1630 0.400000 +2328 1744 0.400000 +2328 1925 0.400000 +2328 1967 0.400000 +2328 1968 0.400000 +2328 1979 0.400000 +2328 2075 0.400000 +2328 2092 0.400000 +2328 2158 0.400000 +2328 2203 0.400000 +2328 2205 0.400000 +2328 2228 0.400000 +2328 2336 0.400000 +2328 2346 0.400000 +2328 2372 0.400000 +2328 2387 0.400000 +2328 2397 0.400000 +2328 2503 0.400000 +2328 2528 0.400000 +2328 2625 0.400000 +2328 2641 0.400000 +2328 2646 0.400000 +2328 2750 0.400000 +2328 2751 0.400000 +2328 2823 0.400000 +2328 2860 0.400000 +2328 2890 0.400000 +2328 2898 0.400000 +2328 2964 0.400000 +2328 3016 0.400000 +2328 3069 0.400000 +2328 3099 0.400000 +2328 3107 0.400000 +2328 3113 0.400000 +2328 3125 0.400000 +2328 3145 0.400000 +2328 3172 0.400000 +2329 2 0.400000 +2329 67 0.400000 +2329 180 0.400000 +2329 231 0.400000 +2329 344 0.400000 +2329 364 0.400000 +2329 408 0.400000 +2329 409 0.400000 +2329 415 0.400000 +2329 441 0.400000 +2329 460 0.400000 +2329 471 0.400000 +2329 578 0.400000 +2329 588 0.400000 +2329 755 0.400000 +2329 758 0.400000 +2329 819 0.400000 +2329 832 0.400000 +2329 838 0.400000 +2329 847 0.400000 +2329 975 0.400000 +2329 1022 0.400000 +2329 1051 0.400000 +2329 1052 0.400000 +2329 1159 0.400000 +2329 1184 0.400000 +2329 1240 0.400000 +2329 1260 0.400000 +2329 1296 0.400000 +2329 1310 0.400000 +2329 1407 0.400000 +2329 1450 0.400000 +2329 1471 0.400000 +2329 1530 0.400000 +2329 1583 0.400000 +2329 1585 0.400000 +2329 1660 0.400000 +2329 1666 0.400000 +2329 1732 0.400000 +2329 1736 0.400000 +2329 1853 0.400000 +2329 1957 0.400000 +2329 2116 0.400000 +2329 2134 0.400000 +2329 2207 0.400000 +2329 2344 0.400000 +2329 2349 0.400000 +2329 2570 0.400000 +2329 2617 0.400000 +2329 2618 0.400000 +2329 2639 0.400000 +2329 2676 0.400000 +2329 2682 0.400000 +2329 2712 0.400000 +2329 2756 0.400000 +2329 2763 0.400000 +2329 2899 0.400000 +2329 2902 0.400000 +2330 18 0.400000 +2330 255 0.400000 +2330 282 0.400000 +2330 337 0.400000 +2330 340 0.400000 +2330 388 0.400000 +2330 398 0.400000 +2330 403 0.400000 +2330 444 0.400000 +2330 473 0.400000 +2330 477 0.400000 +2330 517 0.400000 +2330 524 0.400000 +2330 527 0.400000 +2330 568 0.400000 +2330 651 0.400000 +2330 658 0.400000 +2330 846 0.400000 +2330 852 0.400000 +2330 936 0.400000 +2330 977 0.400000 +2330 1052 0.400000 +2330 1101 0.400000 +2330 1146 0.400000 +2330 1321 0.400000 +2330 1377 0.400000 +2330 1445 0.400000 +2330 1476 0.400000 +2330 1492 0.400000 +2330 1501 0.400000 +2330 1539 0.400000 +2330 1549 0.400000 +2330 1552 0.400000 +2330 1576 0.400000 +2330 1801 0.400000 +2330 1840 0.400000 +2330 1842 0.400000 +2330 1953 0.400000 +2330 2029 0.400000 +2330 2035 0.400000 +2330 2062 0.400000 +2330 2158 0.400000 +2330 2162 0.400000 +2330 2191 0.400000 +2330 2206 0.400000 +2330 2212 0.400000 +2330 2216 0.400000 +2330 2218 0.400000 +2330 2347 0.400000 +2330 2348 0.400000 +2330 2365 0.400000 +2330 2419 0.400000 +2330 2454 0.400000 +2330 2641 0.400000 +2330 2664 0.400000 +2330 2710 0.400000 +2330 2742 0.400000 +2330 2765 0.400000 +2330 2788 0.400000 +2330 2945 0.400000 +2330 2992 0.400000 +2330 2996 0.400000 +2330 3009 0.400000 +2330 3017 0.400000 +2330 3040 0.400000 +2330 3113 0.400000 +2330 3145 0.400000 +2331 22 0.400000 +2331 47 0.400000 +2331 89 0.400000 +2331 93 0.400000 +2331 111 0.400000 +2331 160 0.400000 +2331 225 0.400000 +2331 277 0.400000 +2331 370 0.400000 +2331 454 0.400000 +2331 583 0.400000 +2331 640 0.400000 +2331 705 0.400000 +2331 713 0.400000 +2331 723 0.400000 +2331 743 0.400000 +2331 823 0.400000 +2331 831 0.400000 +2331 866 0.400000 +2331 910 0.400000 +2331 992 0.400000 +2331 1000 0.400000 +2331 1038 0.400000 +2331 1073 0.400000 +2331 1129 0.400000 +2331 1212 0.400000 +2331 1252 0.400000 +2331 1255 0.400000 +2331 1266 0.400000 +2331 1292 0.400000 +2331 1443 0.400000 +2331 1452 0.400000 +2331 1466 0.400000 +2331 1473 0.400000 +2331 1482 0.400000 +2331 1487 0.400000 +2331 1501 0.400000 +2331 1540 0.400000 +2331 1606 0.400000 +2331 1674 0.400000 +2331 1679 0.400000 +2331 1741 0.400000 +2331 1763 0.400000 +2331 1999 0.400000 +2331 2027 0.400000 +2331 2137 0.400000 +2331 2218 0.400000 +2331 2305 0.400000 +2331 2351 0.400000 +2331 2459 0.400000 +2331 2470 0.400000 +2331 2484 0.400000 +2331 2534 0.400000 +2331 2547 0.400000 +2331 2556 0.400000 +2331 2607 0.400000 +2331 2713 0.400000 +2331 2768 0.400000 +2331 2788 0.400000 +2331 2838 0.400000 +2331 2850 0.400000 +2331 2888 0.400000 +2331 2906 0.400000 +2331 2954 0.400000 +2331 2985 0.400000 +2331 3015 0.400000 +2331 3069 0.400000 +2331 3109 0.400000 +2332 12 0.400000 +2332 49 0.400000 +2332 125 0.400000 +2332 178 0.400000 +2332 201 0.400000 +2332 277 0.400000 +2332 287 0.400000 +2332 432 0.400000 +2332 458 0.400000 +2332 557 0.400000 +2332 647 0.400000 +2332 694 0.400000 +2332 721 0.400000 +2332 853 0.400000 +2332 863 0.400000 +2332 864 0.400000 +2332 873 0.400000 +2332 904 0.400000 +2332 1011 0.400000 +2332 1087 0.400000 +2332 1119 0.400000 +2332 1124 0.400000 +2332 1136 0.400000 +2332 1147 0.400000 +2332 1189 0.400000 +2332 1309 0.400000 +2332 1310 0.400000 +2332 1339 0.400000 +2332 1363 0.400000 +2332 1562 0.400000 +2332 1654 0.400000 +2332 1675 0.400000 +2332 1688 0.400000 +2332 1692 0.400000 +2332 1795 0.400000 +2332 1838 0.400000 +2332 1872 0.400000 +2332 1886 0.400000 +2332 1896 0.400000 +2332 2067 0.400000 +2332 2149 0.400000 +2332 2161 0.400000 +2332 2171 0.400000 +2332 2200 0.400000 +2332 2208 0.400000 +2332 2230 0.400000 +2332 2301 0.400000 +2332 2304 0.400000 +2332 2329 0.400000 +2332 2416 0.400000 +2332 2446 0.400000 +2332 2547 0.400000 +2332 2577 0.400000 +2332 2678 0.400000 +2332 2684 0.400000 +2332 2793 0.400000 +2332 2949 0.400000 +2332 2975 0.400000 +2332 2998 0.400000 +2332 3038 0.400000 +2332 3166 0.400000 +2332 3181 0.400000 +2332 3191 0.400000 +2333 86 0.400000 +2333 136 0.400000 +2333 258 0.400000 +2333 276 0.400000 +2333 316 0.400000 +2333 329 0.400000 +2333 357 0.400000 +2333 360 0.400000 +2333 419 0.400000 +2333 496 0.400000 +2333 509 0.400000 +2333 511 0.400000 +2333 517 0.400000 +2333 531 0.400000 +2333 634 0.400000 +2333 635 0.400000 +2333 717 0.400000 +2333 756 0.400000 +2333 774 0.400000 +2333 820 0.400000 +2333 831 0.400000 +2333 901 0.400000 +2333 978 0.400000 +2333 1029 0.400000 +2333 1088 0.400000 +2333 1189 0.400000 +2333 1320 0.400000 +2333 1344 0.400000 +2333 1384 0.400000 +2333 1475 0.400000 +2333 1477 0.400000 +2333 1499 0.400000 +2333 1565 0.400000 +2333 1569 0.400000 +2333 1581 0.400000 +2333 1595 0.400000 +2333 1752 0.400000 +2333 1856 0.400000 +2333 1864 0.400000 +2333 1865 0.400000 +2333 1877 0.400000 +2333 1920 0.400000 +2333 1922 0.400000 +2333 1969 0.400000 +2333 2109 0.400000 +2333 2149 0.400000 +2333 2274 0.400000 +2333 2361 0.400000 +2333 2393 0.400000 +2333 2396 0.400000 +2333 2480 0.400000 +2333 2502 0.400000 +2333 2544 0.400000 +2333 2632 0.400000 +2333 2643 0.400000 +2333 2668 0.400000 +2333 2676 0.400000 +2333 2756 0.400000 +2333 2842 0.400000 +2333 2897 0.400000 +2333 2937 0.400000 +2333 2946 0.400000 +2333 2999 0.400000 +2333 3010 0.400000 +2333 3023 0.400000 +2333 3051 0.400000 +2333 3059 0.400000 +2333 3160 0.400000 +2334 49 0.400000 +2334 57 0.400000 +2334 84 0.400000 +2334 156 0.400000 +2334 184 0.400000 +2334 276 0.400000 +2334 278 0.400000 +2334 363 0.400000 +2334 444 0.400000 +2334 459 0.400000 +2334 473 0.400000 +2334 481 0.400000 +2334 499 0.400000 +2334 548 0.400000 +2334 605 0.400000 +2334 801 0.400000 +2334 828 0.400000 +2334 1090 0.400000 +2334 1098 0.400000 +2334 1126 0.400000 +2334 1172 0.400000 +2334 1240 0.400000 +2334 1272 0.400000 +2334 1318 0.400000 +2334 1365 0.400000 +2334 1389 0.400000 +2334 1695 0.400000 +2334 1719 0.400000 +2334 1798 0.400000 +2334 1896 0.400000 +2334 1960 0.400000 +2334 2033 0.400000 +2334 2125 0.400000 +2334 2179 0.400000 +2334 2196 0.400000 +2334 2237 0.400000 +2334 2354 0.400000 +2334 2408 0.400000 +2334 2441 0.400000 +2334 2538 0.400000 +2334 2551 0.400000 +2334 2562 0.400000 +2334 2634 0.400000 +2334 2710 0.400000 +2334 2726 0.400000 +2334 2733 0.400000 +2334 2740 0.400000 +2334 2751 0.400000 +2334 2823 0.400000 +2334 2830 0.400000 +2334 2859 0.400000 +2334 2887 0.400000 +2334 3186 0.400000 +2335 6 0.400000 +2335 145 0.400000 +2335 212 0.400000 +2335 219 0.400000 +2335 247 0.400000 +2335 248 0.400000 +2335 296 0.400000 +2335 391 0.400000 +2335 446 0.400000 +2335 505 0.400000 +2335 549 0.400000 +2335 559 0.400000 +2335 590 0.400000 +2335 634 0.400000 +2335 758 0.400000 +2335 786 0.400000 +2335 838 0.400000 +2335 992 0.400000 +2335 1036 0.400000 +2335 1074 0.400000 +2335 1147 0.400000 +2335 1183 0.400000 +2335 1289 0.400000 +2335 1311 0.400000 +2335 1489 0.400000 +2335 1533 0.400000 +2335 1609 0.400000 +2335 1794 0.400000 +2335 1834 0.400000 +2335 1910 0.400000 +2335 1912 0.400000 +2335 1988 0.400000 +2335 2063 0.400000 +2335 2166 0.400000 +2335 2296 0.400000 +2335 2322 0.400000 +2335 2345 0.400000 +2335 2353 0.400000 +2335 2380 0.400000 +2335 2390 0.400000 +2335 2409 0.400000 +2335 2416 0.400000 +2335 2450 0.400000 +2335 2480 0.400000 +2335 2487 0.400000 +2335 2537 0.400000 +2335 2647 0.400000 +2335 2682 0.400000 +2335 2751 0.400000 +2335 2776 0.400000 +2335 2794 0.400000 +2335 2810 0.400000 +2335 2860 0.400000 +2335 2931 0.400000 +2335 3012 0.400000 +2335 3023 0.400000 +2335 3087 0.400000 +2335 3122 0.400000 +2335 3147 0.400000 +2336 8 0.400000 +2336 186 0.400000 +2336 218 0.400000 +2336 260 0.400000 +2336 325 0.400000 +2336 356 0.400000 +2336 373 0.400000 +2336 410 0.400000 +2336 466 0.400000 +2336 537 0.400000 +2336 569 0.400000 +2336 609 0.400000 +2336 688 0.400000 +2336 699 0.400000 +2336 747 0.400000 +2336 773 0.400000 +2336 801 0.400000 +2336 841 0.400000 +2336 855 0.400000 +2336 920 0.400000 +2336 1105 0.400000 +2336 1209 0.400000 +2336 1337 0.400000 +2336 1414 0.400000 +2336 1449 0.400000 +2336 1562 0.400000 +2336 1612 0.400000 +2336 1614 0.400000 +2336 1643 0.400000 +2336 1659 0.400000 +2336 1737 0.400000 +2336 1741 0.400000 +2336 1746 0.400000 +2336 1751 0.400000 +2336 1801 0.400000 +2336 1888 0.400000 +2336 1889 0.400000 +2336 1895 0.400000 +2336 1925 0.400000 +2336 1945 0.400000 +2336 1964 0.400000 +2336 1974 0.400000 +2336 1998 0.400000 +2336 2005 0.400000 +2336 2022 0.400000 +2336 2033 0.400000 +2336 2084 0.400000 +2336 2100 0.400000 +2336 2152 0.400000 +2336 2208 0.400000 +2336 2425 0.400000 +2336 2476 0.400000 +2336 2531 0.400000 +2336 2560 0.400000 +2336 2584 0.400000 +2336 2657 0.400000 +2336 2745 0.400000 +2336 2779 0.400000 +2336 2860 0.400000 +2336 2888 0.400000 +2336 2941 0.400000 +2336 3007 0.400000 +2336 3070 0.400000 +2337 106 0.400000 +2337 164 0.400000 +2337 176 0.400000 +2337 269 0.400000 +2337 280 0.400000 +2337 388 0.400000 +2337 410 0.400000 +2337 502 0.400000 +2337 534 0.400000 +2337 715 0.400000 +2337 853 0.400000 +2337 906 0.400000 +2337 945 0.400000 +2337 1004 0.400000 +2337 1082 0.400000 +2337 1131 0.400000 +2337 1204 0.400000 +2337 1258 0.400000 +2337 1359 0.400000 +2337 1429 0.400000 +2337 1471 0.400000 +2337 1493 0.400000 +2337 1597 0.400000 +2337 1615 0.400000 +2337 1627 0.400000 +2337 1633 0.400000 +2337 1650 0.400000 +2337 1845 0.400000 +2337 1937 0.400000 +2337 1949 0.400000 +2337 1956 0.400000 +2337 2007 0.400000 +2337 2042 0.400000 +2337 2121 0.400000 +2337 2141 0.400000 +2337 2165 0.400000 +2337 2197 0.400000 +2337 2238 0.400000 +2337 2242 0.400000 +2337 2264 0.400000 +2337 2295 0.400000 +2337 2432 0.400000 +2337 2439 0.400000 +2337 2664 0.400000 +2337 2826 0.400000 +2337 2827 0.400000 +2337 2833 0.400000 +2337 2935 0.400000 +2337 2960 0.400000 +2337 2987 0.400000 +2337 3012 0.400000 +2337 3128 0.400000 +2337 3130 0.400000 +2338 6 0.400000 +2338 132 0.400000 +2338 165 0.400000 +2338 217 0.400000 +2338 266 0.400000 +2338 337 0.400000 +2338 346 0.400000 +2338 347 0.400000 +2338 348 0.400000 +2338 387 0.400000 +2338 514 0.400000 +2338 551 0.400000 +2338 640 0.400000 +2338 648 0.400000 +2338 723 0.400000 +2338 733 0.400000 +2338 775 0.400000 +2338 820 0.400000 +2338 822 0.400000 +2338 916 0.400000 +2338 968 0.400000 +2338 981 0.400000 +2338 1235 0.400000 +2338 1252 0.400000 +2338 1291 0.400000 +2338 1332 0.400000 +2338 1419 0.400000 +2338 1474 0.400000 +2338 1477 0.400000 +2338 1513 0.400000 +2338 1574 0.400000 +2338 1584 0.400000 +2338 1611 0.400000 +2338 1666 0.400000 +2338 1674 0.400000 +2338 1733 0.400000 +2338 1752 0.400000 +2338 1792 0.400000 +2338 1841 0.400000 +2338 1896 0.400000 +2338 1916 0.400000 +2338 1961 0.400000 +2338 2009 0.400000 +2338 2018 0.400000 +2338 2050 0.400000 +2338 2107 0.400000 +2338 2158 0.400000 +2338 2182 0.400000 +2338 2291 0.400000 +2338 2320 0.400000 +2338 2332 0.400000 +2338 2333 0.400000 +2338 2412 0.400000 +2338 2422 0.400000 +2338 2536 0.400000 +2338 2541 0.400000 +2338 2602 0.400000 +2338 2608 0.400000 +2338 2609 0.400000 +2338 2619 0.400000 +2338 2734 0.400000 +2338 2770 0.400000 +2338 2831 0.400000 +2338 2849 0.400000 +2338 2881 0.400000 +2338 2890 0.400000 +2338 2973 0.400000 +2338 3061 0.400000 +2338 3102 0.400000 +2338 3107 0.400000 +2339 1 0.400000 +2339 49 0.400000 +2339 89 0.400000 +2339 97 0.400000 +2339 126 0.400000 +2339 171 0.400000 +2339 258 0.400000 +2339 262 0.400000 +2339 269 0.400000 +2339 273 0.400000 +2339 290 0.400000 +2339 383 0.400000 +2339 415 0.400000 +2339 432 0.400000 +2339 490 0.400000 +2339 536 0.400000 +2339 642 0.400000 +2339 665 0.400000 +2339 692 0.400000 +2339 762 0.400000 +2339 828 0.400000 +2339 890 0.400000 +2339 1041 0.400000 +2339 1128 0.400000 +2339 1149 0.400000 +2339 1211 0.400000 +2339 1219 0.400000 +2339 1247 0.400000 +2339 1257 0.400000 +2339 1287 0.400000 +2339 1294 0.400000 +2339 1319 0.400000 +2339 1366 0.400000 +2339 1415 0.400000 +2339 1431 0.400000 +2339 1461 0.400000 +2339 1575 0.400000 +2339 1666 0.400000 +2339 1687 0.400000 +2339 1699 0.400000 +2339 1710 0.400000 +2339 1970 0.400000 +2339 1971 0.400000 +2339 1977 0.400000 +2339 1983 0.400000 +2339 2300 0.400000 +2339 2308 0.400000 +2339 2323 0.400000 +2339 2502 0.400000 +2339 2530 0.400000 +2339 2549 0.400000 +2339 2717 0.400000 +2339 2786 0.400000 +2339 2792 0.400000 +2339 2815 0.400000 +2339 2920 0.400000 +2339 2960 0.400000 +2339 2976 0.400000 +2339 3010 0.400000 +2339 3025 0.400000 +2339 3154 0.400000 +2339 3170 0.400000 +2340 62 0.400000 +2340 106 0.400000 +2340 136 0.400000 +2340 245 0.400000 +2340 263 0.400000 +2340 396 0.400000 +2340 486 0.400000 +2340 525 0.400000 +2340 538 0.400000 +2340 624 0.400000 +2340 634 0.400000 +2340 734 0.400000 +2340 736 0.400000 +2340 831 0.400000 +2340 857 0.400000 +2340 899 0.400000 +2340 961 0.400000 +2340 983 0.400000 +2340 1053 0.400000 +2340 1093 0.400000 +2340 1140 0.400000 +2340 1173 0.400000 +2340 1244 0.400000 +2340 1280 0.400000 +2340 1282 0.400000 +2340 1365 0.400000 +2340 1409 0.400000 +2340 1435 0.400000 +2340 1464 0.400000 +2340 1493 0.400000 +2340 1597 0.400000 +2340 1609 0.400000 +2340 1634 0.400000 +2340 1641 0.400000 +2340 1738 0.400000 +2340 1747 0.400000 +2340 1791 0.400000 +2340 1938 0.400000 +2340 1965 0.400000 +2340 2003 0.400000 +2340 2133 0.400000 +2340 2163 0.400000 +2340 2243 0.400000 +2340 2340 0.400000 +2340 2422 0.400000 +2340 2504 0.400000 +2340 2530 0.400000 +2340 2561 0.400000 +2340 2568 0.400000 +2340 2569 0.400000 +2340 2652 0.400000 +2340 2709 0.400000 +2340 2747 0.400000 +2340 2855 0.400000 +2340 2936 0.400000 +2340 2992 0.400000 +2340 3022 0.400000 +2340 3025 0.400000 +2340 3110 0.400000 +2340 3141 0.400000 +2341 5 0.400000 +2341 50 0.400000 +2341 60 0.400000 +2341 283 0.400000 +2341 461 0.400000 +2341 503 0.400000 +2341 513 0.400000 +2341 634 0.400000 +2341 679 0.400000 +2341 680 0.400000 +2341 701 0.400000 +2341 805 0.400000 +2341 895 0.400000 +2341 923 0.400000 +2341 956 0.400000 +2341 965 0.400000 +2341 985 0.400000 +2341 1061 0.400000 +2341 1110 0.400000 +2341 1149 0.400000 +2341 1183 0.400000 +2341 1186 0.400000 +2341 1217 0.400000 +2341 1273 0.400000 +2341 1296 0.400000 +2341 1334 0.400000 +2341 1384 0.400000 +2341 1397 0.400000 +2341 1431 0.400000 +2341 1456 0.400000 +2341 1463 0.400000 +2341 1474 0.400000 +2341 1542 0.400000 +2341 1613 0.400000 +2341 1648 0.400000 +2341 1764 0.400000 +2341 1823 0.400000 +2341 1843 0.400000 +2341 1862 0.400000 +2341 1987 0.400000 +2341 2055 0.400000 +2341 2089 0.400000 +2341 2127 0.400000 +2341 2194 0.400000 +2341 2263 0.400000 +2341 2274 0.400000 +2341 2393 0.400000 +2341 2405 0.400000 +2341 2505 0.400000 +2341 2560 0.400000 +2341 2676 0.400000 +2341 2767 0.400000 +2341 2822 0.400000 +2341 2828 0.400000 +2341 2857 0.400000 +2341 2904 0.400000 +2341 2974 0.400000 +2341 2982 0.400000 +2341 2983 0.400000 +2341 2990 0.400000 +2341 3047 0.400000 +2341 3055 0.400000 +2341 3068 0.400000 +2341 3089 0.400000 +2341 3091 0.400000 +2341 3184 0.400000 +2341 3194 0.400000 +2342 160 0.400000 +2342 301 0.400000 +2342 398 0.400000 +2342 414 0.400000 +2342 520 0.400000 +2342 606 0.400000 +2342 641 0.400000 +2342 700 0.400000 +2342 715 0.400000 +2342 1074 0.400000 +2342 1097 0.400000 +2342 1101 0.400000 +2342 1108 0.400000 +2342 1109 0.400000 +2342 1316 0.400000 +2342 1370 0.400000 +2342 1387 0.400000 +2342 1473 0.400000 +2342 1484 0.400000 +2342 1499 0.400000 +2342 1511 0.400000 +2342 1536 0.400000 +2342 1731 0.400000 +2342 1754 0.400000 +2342 1774 0.400000 +2342 1805 0.400000 +2342 1860 0.400000 +2342 1947 0.400000 +2342 1977 0.400000 +2342 1984 0.400000 +2342 1987 0.400000 +2342 2014 0.400000 +2342 2063 0.400000 +2342 2177 0.400000 +2342 2211 0.400000 +2342 2231 0.400000 +2342 2283 0.400000 +2342 2337 0.400000 +2342 2505 0.400000 +2342 2510 0.400000 +2342 2513 0.400000 +2342 2612 0.400000 +2342 2619 0.400000 +2342 2626 0.400000 +2342 2785 0.400000 +2342 2813 0.400000 +2342 2829 0.400000 +2342 2852 0.400000 +2342 2880 0.400000 +2342 2884 0.400000 +2342 2897 0.400000 +2342 2928 0.400000 +2342 3059 0.400000 +2342 3086 0.400000 +2342 3097 0.400000 +2342 3109 0.400000 +2342 3148 0.400000 +2342 3179 0.400000 +2343 25 0.400000 +2343 38 0.400000 +2343 68 0.400000 +2343 92 0.400000 +2343 96 0.400000 +2343 112 0.400000 +2343 283 0.400000 +2343 297 0.400000 +2343 326 0.400000 +2343 461 0.400000 +2343 466 0.400000 +2343 506 0.400000 +2343 543 0.400000 +2343 559 0.400000 +2343 675 0.400000 +2343 764 0.400000 +2343 789 0.400000 +2343 886 0.400000 +2343 929 0.400000 +2343 949 0.400000 +2343 998 0.400000 +2343 1050 0.400000 +2343 1054 0.400000 +2343 1087 0.400000 +2343 1133 0.400000 +2343 1151 0.400000 +2343 1156 0.400000 +2343 1190 0.400000 +2343 1219 0.400000 +2343 1299 0.400000 +2343 1393 0.400000 +2343 1396 0.400000 +2343 1430 0.400000 +2343 1436 0.400000 +2343 1456 0.400000 +2343 1486 0.400000 +2343 1496 0.400000 +2343 1531 0.400000 +2343 1549 0.400000 +2343 1666 0.400000 +2343 1669 0.400000 +2343 1701 0.400000 +2343 1742 0.400000 +2343 1797 0.400000 +2343 1810 0.400000 +2343 1829 0.400000 +2343 1910 0.400000 +2343 1946 0.400000 +2343 1969 0.400000 +2343 1996 0.400000 +2343 2019 0.400000 +2343 2028 0.400000 +2343 2173 0.400000 +2343 2232 0.400000 +2343 2238 0.400000 +2343 2308 0.400000 +2343 2477 0.400000 +2343 2509 0.400000 +2343 2555 0.400000 +2343 2689 0.400000 +2343 2894 0.400000 +2343 2939 0.400000 +2343 3029 0.400000 +2343 3094 0.400000 +2343 3103 0.400000 +2343 3145 0.400000 +2343 3155 0.400000 +2343 3200 0.400000 +2344 58 0.400000 +2344 193 0.400000 +2344 200 0.400000 +2344 210 0.400000 +2344 237 0.400000 +2344 260 0.400000 +2344 276 0.400000 +2344 416 0.400000 +2344 538 0.400000 +2344 539 0.400000 +2344 544 0.400000 +2344 602 0.400000 +2344 662 0.400000 +2344 682 0.400000 +2344 802 0.400000 +2344 891 0.400000 +2344 899 0.400000 +2344 949 0.400000 +2344 955 0.400000 +2344 1082 0.400000 +2344 1115 0.400000 +2344 1148 0.400000 +2344 1178 0.400000 +2344 1190 0.400000 +2344 1196 0.400000 +2344 1224 0.400000 +2344 1279 0.400000 +2344 1294 0.400000 +2344 1300 0.400000 +2344 1450 0.400000 +2344 1485 0.400000 +2344 1486 0.400000 +2344 1515 0.400000 +2344 1527 0.400000 +2344 1534 0.400000 +2344 1704 0.400000 +2344 1724 0.400000 +2344 1749 0.400000 +2344 1817 0.400000 +2344 1824 0.400000 +2344 1988 0.400000 +2344 2006 0.400000 +2344 2040 0.400000 +2344 2102 0.400000 +2344 2167 0.400000 +2344 2219 0.400000 +2344 2366 0.400000 +2344 2380 0.400000 +2344 2440 0.400000 +2344 2443 0.400000 +2344 2483 0.400000 +2344 2496 0.400000 +2344 2518 0.400000 +2344 2529 0.400000 +2344 2533 0.400000 +2344 2550 0.400000 +2344 2642 0.400000 +2344 2700 0.400000 +2344 2794 0.400000 +2344 2871 0.400000 +2344 2976 0.400000 +2344 3037 0.400000 +2344 3047 0.400000 +2344 3061 0.400000 +2344 3091 0.400000 +2344 3107 0.400000 +2344 3119 0.400000 +2344 3192 0.400000 +2345 49 0.400000 +2345 89 0.400000 +2345 98 0.400000 +2345 210 0.400000 +2345 214 0.400000 +2345 249 0.400000 +2345 260 0.400000 +2345 360 0.400000 +2345 361 0.400000 +2345 492 0.400000 +2345 498 0.400000 +2345 512 0.400000 +2345 563 0.400000 +2345 645 0.400000 +2345 679 0.400000 +2345 699 0.400000 +2345 734 0.400000 +2345 738 0.400000 +2345 756 0.400000 +2345 780 0.400000 +2345 783 0.400000 +2345 804 0.400000 +2345 807 0.400000 +2345 978 0.400000 +2345 1034 0.400000 +2345 1043 0.400000 +2345 1068 0.400000 +2345 1135 0.400000 +2345 1206 0.400000 +2345 1266 0.400000 +2345 1316 0.400000 +2345 1368 0.400000 +2345 1398 0.400000 +2345 1442 0.400000 +2345 1444 0.400000 +2345 1459 0.400000 +2345 1499 0.400000 +2345 1527 0.400000 +2345 1540 0.400000 +2345 1588 0.400000 +2345 1616 0.400000 +2345 1644 0.400000 +2345 1664 0.400000 +2345 1792 0.400000 +2345 1820 0.400000 +2345 1847 0.400000 +2345 1861 0.400000 +2345 1923 0.400000 +2345 1980 0.400000 +2345 2030 0.400000 +2345 2183 0.400000 +2345 2184 0.400000 +2345 2219 0.400000 +2345 2251 0.400000 +2345 2426 0.400000 +2345 2466 0.400000 +2345 2505 0.400000 +2345 2570 0.400000 +2345 2625 0.400000 +2345 2627 0.400000 +2345 2674 0.400000 +2345 2875 0.400000 +2346 195 0.400000 +2346 274 0.400000 +2346 277 0.400000 +2346 357 0.400000 +2346 445 0.400000 +2346 513 0.400000 +2346 584 0.400000 +2346 634 0.400000 +2346 681 0.400000 +2346 704 0.400000 +2346 836 0.400000 +2346 850 0.400000 +2346 890 0.400000 +2346 923 0.400000 +2346 925 0.400000 +2346 941 0.400000 +2346 942 0.400000 +2346 1020 0.400000 +2346 1146 0.400000 +2346 1161 0.400000 +2346 1250 0.400000 +2346 1298 0.400000 +2346 1356 0.400000 +2346 1376 0.400000 +2346 1459 0.400000 +2346 1524 0.400000 +2346 1542 0.400000 +2346 1550 0.400000 +2346 1685 0.400000 +2346 1696 0.400000 +2346 1745 0.400000 +2346 1770 0.400000 +2346 1835 0.400000 +2346 1859 0.400000 +2346 1937 0.400000 +2346 1950 0.400000 +2346 2062 0.400000 +2346 2075 0.400000 +2346 2078 0.400000 +2346 2155 0.400000 +2346 2175 0.400000 +2346 2243 0.400000 +2346 2265 0.400000 +2346 2275 0.400000 +2346 2342 0.400000 +2346 2347 0.400000 +2346 2397 0.400000 +2346 2440 0.400000 +2346 2471 0.400000 +2346 2538 0.400000 +2346 2614 0.400000 +2346 2661 0.400000 +2346 2700 0.400000 +2346 2792 0.400000 +2346 2824 0.400000 +2346 2913 0.400000 +2346 2928 0.400000 +2346 2975 0.400000 +2346 2980 0.400000 +2346 3057 0.400000 +2346 3138 0.400000 +2346 3183 0.400000 +2346 3193 0.400000 +2347 19 0.400000 +2347 65 0.400000 +2347 85 0.400000 +2347 192 0.400000 +2347 194 0.400000 +2347 237 0.400000 +2347 247 0.400000 +2347 280 0.400000 +2347 507 0.400000 +2347 559 0.400000 +2347 637 0.400000 +2347 703 0.400000 +2347 804 0.400000 +2347 816 0.400000 +2347 837 0.400000 +2347 916 0.400000 +2347 918 0.400000 +2347 934 0.400000 +2347 939 0.400000 +2347 964 0.400000 +2347 999 0.400000 +2347 1042 0.400000 +2347 1114 0.400000 +2347 1121 0.400000 +2347 1132 0.400000 +2347 1350 0.400000 +2347 1384 0.400000 +2347 1434 0.400000 +2347 1524 0.400000 +2347 1551 0.400000 +2347 1707 0.400000 +2347 1724 0.400000 +2347 1761 0.400000 +2347 1804 0.400000 +2347 1848 0.400000 +2347 1849 0.400000 +2347 1885 0.400000 +2347 1918 0.400000 +2347 1954 0.400000 +2347 1994 0.400000 +2347 2003 0.400000 +2347 2084 0.400000 +2347 2177 0.400000 +2347 2217 0.400000 +2347 2261 0.400000 +2347 2279 0.400000 +2347 2292 0.400000 +2347 2382 0.400000 +2347 2443 0.400000 +2347 2459 0.400000 +2347 2470 0.400000 +2347 2481 0.400000 +2347 2564 0.400000 +2347 2621 0.400000 +2347 2636 0.400000 +2347 2646 0.400000 +2347 2661 0.400000 +2347 2688 0.400000 +2347 2822 0.400000 +2347 2863 0.400000 +2347 2955 0.400000 +2347 3159 0.400000 +2347 3177 0.400000 +2347 3197 0.400000 +2348 47 0.400000 +2348 74 0.400000 +2348 234 0.400000 +2348 255 0.400000 +2348 259 0.400000 +2348 466 0.400000 +2348 661 0.400000 +2348 767 0.400000 +2348 772 0.400000 +2348 806 0.400000 +2348 817 0.400000 +2348 824 0.400000 +2348 922 0.400000 +2348 1079 0.400000 +2348 1122 0.400000 +2348 1165 0.400000 +2348 1220 0.400000 +2348 1276 0.400000 +2348 1283 0.400000 +2348 1315 0.400000 +2348 1334 0.400000 +2348 1352 0.400000 +2348 1365 0.400000 +2348 1415 0.400000 +2348 1429 0.400000 +2348 1475 0.400000 +2348 1512 0.400000 +2348 1631 0.400000 +2348 1702 0.400000 +2348 1739 0.400000 +2348 1798 0.400000 +2348 2032 0.400000 +2348 2089 0.400000 +2348 2172 0.400000 +2348 2241 0.400000 +2348 2266 0.400000 +2348 2325 0.400000 +2348 2344 0.400000 +2348 2350 0.400000 +2348 2387 0.400000 +2348 2424 0.400000 +2348 2468 0.400000 +2348 2569 0.400000 +2348 2723 0.400000 +2348 2724 0.400000 +2348 2846 0.400000 +2348 2868 0.400000 +2348 2880 0.400000 +2348 3021 0.400000 +2348 3106 0.400000 +2348 3180 0.400000 +2348 3198 0.400000 +2349 112 0.400000 +2349 164 0.400000 +2349 465 0.400000 +2349 472 0.400000 +2349 479 0.400000 +2349 487 0.400000 +2349 498 0.400000 +2349 516 0.400000 +2349 625 0.400000 +2349 662 0.400000 +2349 706 0.400000 +2349 733 0.400000 +2349 755 0.400000 +2349 876 0.400000 +2349 1351 0.400000 +2349 1427 0.400000 +2349 1451 0.400000 +2349 1492 0.400000 +2349 1566 0.400000 +2349 1570 0.400000 +2349 1636 0.400000 +2349 1669 0.400000 +2349 1710 0.400000 +2349 1725 0.400000 +2349 1961 0.400000 +2349 2078 0.400000 +2349 2089 0.400000 +2349 2139 0.400000 +2349 2145 0.400000 +2349 2196 0.400000 +2349 2254 0.400000 +2349 2314 0.400000 +2349 2315 0.400000 +2349 2353 0.400000 +2349 2356 0.400000 +2349 2399 0.400000 +2349 2401 0.400000 +2349 2430 0.400000 +2349 2472 0.400000 +2349 2581 0.400000 +2349 2642 0.400000 +2349 2669 0.400000 +2349 2777 0.400000 +2349 2841 0.400000 +2349 2856 0.400000 +2349 2857 0.400000 +2349 2871 0.400000 +2349 2881 0.400000 +2349 2948 0.400000 +2349 2956 0.400000 +2349 3024 0.400000 +2349 3073 0.400000 +2349 3101 0.400000 +2349 3107 0.400000 +2349 3188 0.400000 +2350 15 0.400000 +2350 191 0.400000 +2350 208 0.400000 +2350 520 0.400000 +2350 580 0.400000 +2350 680 0.400000 +2350 724 0.400000 +2350 837 0.400000 +2350 842 0.400000 +2350 889 0.400000 +2350 1007 0.400000 +2350 1026 0.400000 +2350 1202 0.400000 +2350 1247 0.400000 +2350 1279 0.400000 +2350 1294 0.400000 +2350 1415 0.400000 +2350 1422 0.400000 +2350 1564 0.400000 +2350 1600 0.400000 +2350 1611 0.400000 +2350 1698 0.400000 +2350 1699 0.400000 +2350 1736 0.400000 +2350 1750 0.400000 +2350 1801 0.400000 +2350 1815 0.400000 +2350 1858 0.400000 +2350 1940 0.400000 +2350 1947 0.400000 +2350 1967 0.400000 +2350 1987 0.400000 +2350 2257 0.400000 +2350 2310 0.400000 +2350 2432 0.400000 +2350 2578 0.400000 +2350 2590 0.400000 +2350 2661 0.400000 +2350 2698 0.400000 +2350 2708 0.400000 +2350 2913 0.400000 +2350 2942 0.400000 +2350 2974 0.400000 +2350 3157 0.400000 +2350 3184 0.400000 +2351 122 0.400000 +2351 201 0.400000 +2351 238 0.400000 +2351 269 0.400000 +2351 300 0.400000 +2351 369 0.400000 +2351 405 0.400000 +2351 410 0.400000 +2351 433 0.400000 +2351 476 0.400000 +2351 509 0.400000 +2351 571 0.400000 +2351 598 0.400000 +2351 813 0.400000 +2351 843 0.400000 +2351 847 0.400000 +2351 877 0.400000 +2351 892 0.400000 +2351 908 0.400000 +2351 954 0.400000 +2351 999 0.400000 +2351 1074 0.400000 +2351 1156 0.400000 +2351 1190 0.400000 +2351 1227 0.400000 +2351 1599 0.400000 +2351 1605 0.400000 +2351 1733 0.400000 +2351 1738 0.400000 +2351 1788 0.400000 +2351 1826 0.400000 +2351 1865 0.400000 +2351 1872 0.400000 +2351 1923 0.400000 +2351 1979 0.400000 +2351 2011 0.400000 +2351 2057 0.400000 +2351 2091 0.400000 +2351 2115 0.400000 +2351 2175 0.400000 +2351 2191 0.400000 +2351 2223 0.400000 +2351 2267 0.400000 +2351 2341 0.400000 +2351 2412 0.400000 +2351 2470 0.400000 +2351 2573 0.400000 +2351 2576 0.400000 +2351 2647 0.400000 +2351 2812 0.400000 +2351 2841 0.400000 +2351 2850 0.400000 +2351 2875 0.400000 +2351 3040 0.400000 +2351 3064 0.400000 +2351 3141 0.400000 +2352 6 0.400000 +2352 19 0.400000 +2352 27 0.400000 +2352 46 0.400000 +2352 176 0.400000 +2352 211 0.400000 +2352 225 0.400000 +2352 240 0.400000 +2352 390 0.400000 +2352 415 0.400000 +2352 509 0.400000 +2352 526 0.400000 +2352 553 0.400000 +2352 567 0.400000 +2352 638 0.400000 +2352 658 0.400000 +2352 675 0.400000 +2352 735 0.400000 +2352 824 0.400000 +2352 858 0.400000 +2352 870 0.400000 +2352 881 0.400000 +2352 1007 0.400000 +2352 1015 0.400000 +2352 1026 0.400000 +2352 1107 0.400000 +2352 1171 0.400000 +2352 1201 0.400000 +2352 1227 0.400000 +2352 1236 0.400000 +2352 1311 0.400000 +2352 1349 0.400000 +2352 1395 0.400000 +2352 1412 0.400000 +2352 1457 0.400000 +2352 1512 0.400000 +2352 1598 0.400000 +2352 1604 0.400000 +2352 1639 0.400000 +2352 1667 0.400000 +2352 1688 0.400000 +2352 1726 0.400000 +2352 1740 0.400000 +2352 1747 0.400000 +2352 1768 0.400000 +2352 1822 0.400000 +2352 1930 0.400000 +2352 1963 0.400000 +2352 2054 0.400000 +2352 2095 0.400000 +2352 2152 0.400000 +2352 2229 0.400000 +2352 2253 0.400000 +2352 2260 0.400000 +2352 2274 0.400000 +2352 2372 0.400000 +2352 2477 0.400000 +2352 2483 0.400000 +2352 2517 0.400000 +2352 2542 0.400000 +2352 2593 0.400000 +2352 2598 0.400000 +2352 2647 0.400000 +2352 2676 0.400000 +2352 2689 0.400000 +2352 2773 0.400000 +2352 2784 0.400000 +2352 2796 0.400000 +2352 2911 0.400000 +2352 2957 0.400000 +2352 2979 0.400000 +2352 3079 0.400000 +2353 28 0.400000 +2353 56 0.400000 +2353 92 0.400000 +2353 165 0.400000 +2353 216 0.400000 +2353 220 0.400000 +2353 290 0.400000 +2353 315 0.400000 +2353 426 0.400000 +2353 436 0.400000 +2353 457 0.400000 +2353 488 0.400000 +2353 521 0.400000 +2353 611 0.400000 +2353 688 0.400000 +2353 695 0.400000 +2353 768 0.400000 +2353 774 0.400000 +2353 807 0.400000 +2353 811 0.400000 +2353 893 0.400000 +2353 929 0.400000 +2353 1008 0.400000 +2353 1061 0.400000 +2353 1155 0.400000 +2353 1229 0.400000 +2353 1278 0.400000 +2353 1447 0.400000 +2353 1539 0.400000 +2353 1793 0.400000 +2353 1834 0.400000 +2353 1871 0.400000 +2353 1939 0.400000 +2353 1947 0.400000 +2353 1953 0.400000 +2353 1960 0.400000 +2353 2021 0.400000 +2353 2029 0.400000 +2353 2116 0.400000 +2353 2128 0.400000 +2353 2227 0.400000 +2353 2408 0.400000 +2353 2512 0.400000 +2353 2539 0.400000 +2353 2544 0.400000 +2353 2561 0.400000 +2353 2600 0.400000 +2353 2694 0.400000 +2353 2748 0.400000 +2353 2810 0.400000 +2353 2820 0.400000 +2353 2822 0.400000 +2353 2843 0.400000 +2353 2974 0.400000 +2353 3045 0.400000 +2353 3089 0.400000 +2353 3106 0.400000 +2353 3156 0.400000 +2353 3161 0.400000 +2354 15 0.400000 +2354 18 0.400000 +2354 42 0.400000 +2354 67 0.400000 +2354 129 0.400000 +2354 169 0.400000 +2354 172 0.400000 +2354 181 0.400000 +2354 205 0.400000 +2354 260 0.400000 +2354 367 0.400000 +2354 420 0.400000 +2354 460 0.400000 +2354 648 0.400000 +2354 692 0.400000 +2354 701 0.400000 +2354 739 0.400000 +2354 881 0.400000 +2354 1061 0.400000 +2354 1114 0.400000 +2354 1126 0.400000 +2354 1221 0.400000 +2354 1303 0.400000 +2354 1340 0.400000 +2354 1374 0.400000 +2354 1499 0.400000 +2354 1581 0.400000 +2354 1609 0.400000 +2354 1673 0.400000 +2354 1710 0.400000 +2354 1774 0.400000 +2354 1797 0.400000 +2354 1989 0.400000 +2354 2105 0.400000 +2354 2138 0.400000 +2354 2236 0.400000 +2354 2241 0.400000 +2354 2274 0.400000 +2354 2376 0.400000 +2354 2438 0.400000 +2354 2480 0.400000 +2354 2507 0.400000 +2354 2575 0.400000 +2354 2595 0.400000 +2354 2600 0.400000 +2354 2618 0.400000 +2354 2929 0.400000 +2354 3009 0.400000 +2354 3027 0.400000 +2354 3063 0.400000 +2354 3166 0.400000 +2354 3176 0.400000 +2355 16 0.400000 +2355 47 0.400000 +2355 66 0.400000 +2355 94 0.400000 +2355 112 0.400000 +2355 318 0.400000 +2355 325 0.400000 +2355 346 0.400000 +2355 364 0.400000 +2355 365 0.400000 +2355 478 0.400000 +2355 486 0.400000 +2355 586 0.400000 +2355 693 0.400000 +2355 740 0.400000 +2355 756 0.400000 +2355 839 0.400000 +2355 851 0.400000 +2355 959 0.400000 +2355 965 0.400000 +2355 995 0.400000 +2355 998 0.400000 +2355 1069 0.400000 +2355 1074 0.400000 +2355 1101 0.400000 +2355 1302 0.400000 +2355 1317 0.400000 +2355 1379 0.400000 +2355 1535 0.400000 +2355 1639 0.400000 +2355 1671 0.400000 +2355 1814 0.400000 +2355 1822 0.400000 +2355 1824 0.400000 +2355 1830 0.400000 +2355 1862 0.400000 +2355 1866 0.400000 +2355 1871 0.400000 +2355 2039 0.400000 +2355 2049 0.400000 +2355 2103 0.400000 +2355 2233 0.400000 +2355 2262 0.400000 +2355 2308 0.400000 +2355 2349 0.400000 +2355 2374 0.400000 +2355 2435 0.400000 +2355 2464 0.400000 +2355 2507 0.400000 +2355 2521 0.400000 +2355 2626 0.400000 +2355 2636 0.400000 +2355 2704 0.400000 +2355 2743 0.400000 +2355 2771 0.400000 +2355 2783 0.400000 +2355 2814 0.400000 +2355 2869 0.400000 +2355 2930 0.400000 +2355 2941 0.400000 +2355 3008 0.400000 +2355 3046 0.400000 +2355 3065 0.400000 +2355 3111 0.400000 +2355 3140 0.400000 +2355 3194 0.400000 +2356 41 0.400000 +2356 82 0.400000 +2356 115 0.400000 +2356 150 0.400000 +2356 152 0.400000 +2356 281 0.400000 +2356 386 0.400000 +2356 441 0.400000 +2356 575 0.400000 +2356 588 0.400000 +2356 662 0.400000 +2356 684 0.400000 +2356 731 0.400000 +2356 790 0.400000 +2356 820 0.400000 +2356 920 0.400000 +2356 962 0.400000 +2356 988 0.400000 +2356 993 0.400000 +2356 1021 0.400000 +2356 1026 0.400000 +2356 1149 0.400000 +2356 1193 0.400000 +2356 1226 0.400000 +2356 1268 0.400000 +2356 1281 0.400000 +2356 1326 0.400000 +2356 1327 0.400000 +2356 1333 0.400000 +2356 1434 0.400000 +2356 1441 0.400000 +2356 1490 0.400000 +2356 1595 0.400000 +2356 1649 0.400000 +2356 1754 0.400000 +2356 1765 0.400000 +2356 1767 0.400000 +2356 1771 0.400000 +2356 1799 0.400000 +2356 1817 0.400000 +2356 1873 0.400000 +2356 1916 0.400000 +2356 2028 0.400000 +2356 2038 0.400000 +2356 2087 0.400000 +2356 2225 0.400000 +2356 2259 0.400000 +2356 2374 0.400000 +2356 2450 0.400000 +2356 2531 0.400000 +2356 2636 0.400000 +2356 2739 0.400000 +2356 2781 0.400000 +2356 2831 0.400000 +2356 2922 0.400000 +2356 3063 0.400000 +2356 3190 0.400000 +2357 2 0.400000 +2357 8 0.400000 +2357 20 0.400000 +2357 26 0.400000 +2357 191 0.400000 +2357 196 0.400000 +2357 275 0.400000 +2357 300 0.400000 +2357 302 0.400000 +2357 318 0.400000 +2357 337 0.400000 +2357 353 0.400000 +2357 378 0.400000 +2357 410 0.400000 +2357 450 0.400000 +2357 451 0.400000 +2357 478 0.400000 +2357 538 0.400000 +2357 566 0.400000 +2357 667 0.400000 +2357 668 0.400000 +2357 734 0.400000 +2357 813 0.400000 +2357 814 0.400000 +2357 845 0.400000 +2357 986 0.400000 +2357 1036 0.400000 +2357 1066 0.400000 +2357 1127 0.400000 +2357 1218 0.400000 +2357 1305 0.400000 +2357 1387 0.400000 +2357 1422 0.400000 +2357 1507 0.400000 +2357 1545 0.400000 +2357 1628 0.400000 +2357 1660 0.400000 +2357 1679 0.400000 +2357 1707 0.400000 +2357 1747 0.400000 +2357 1843 0.400000 +2357 1897 0.400000 +2357 1901 0.400000 +2357 1923 0.400000 +2357 1925 0.400000 +2357 1948 0.400000 +2357 1985 0.400000 +2357 2055 0.400000 +2357 2063 0.400000 +2357 2138 0.400000 +2357 2145 0.400000 +2357 2152 0.400000 +2357 2177 0.400000 +2357 2249 0.400000 +2357 2329 0.400000 +2357 2393 0.400000 +2357 2539 0.400000 +2357 2556 0.400000 +2357 2616 0.400000 +2357 2633 0.400000 +2357 2646 0.400000 +2357 2650 0.400000 +2357 2671 0.400000 +2357 2946 0.400000 +2357 3019 0.400000 +2357 3025 0.400000 +2357 3135 0.400000 +2357 3146 0.400000 +2357 3168 0.400000 +2358 55 0.400000 +2358 60 0.400000 +2358 71 0.400000 +2358 105 0.400000 +2358 157 0.400000 +2358 243 0.400000 +2358 339 0.400000 +2358 446 0.400000 +2358 457 0.400000 +2358 514 0.400000 +2358 525 0.400000 +2358 539 0.400000 +2358 638 0.400000 +2358 711 0.400000 +2358 728 0.400000 +2358 804 0.400000 +2358 884 0.400000 +2358 1040 0.400000 +2358 1044 0.400000 +2358 1045 0.400000 +2358 1055 0.400000 +2358 1114 0.400000 +2358 1152 0.400000 +2358 1195 0.400000 +2358 1202 0.400000 +2358 1206 0.400000 +2358 1223 0.400000 +2358 1239 0.400000 +2358 1269 0.400000 +2358 1523 0.400000 +2358 1572 0.400000 +2358 1632 0.400000 +2358 1634 0.400000 +2358 1661 0.400000 +2358 1663 0.400000 +2358 1695 0.400000 +2358 1711 0.400000 +2358 1730 0.400000 +2358 1809 0.400000 +2358 1871 0.400000 +2358 1929 0.400000 +2358 1995 0.400000 +2358 2079 0.400000 +2358 2094 0.400000 +2358 2198 0.400000 +2358 2282 0.400000 +2358 2314 0.400000 +2358 2452 0.400000 +2358 2463 0.400000 +2358 2527 0.400000 +2358 2561 0.400000 +2358 2597 0.400000 +2358 2632 0.400000 +2358 2639 0.400000 +2358 2647 0.400000 +2358 2656 0.400000 +2358 2665 0.400000 +2358 2672 0.400000 +2358 2692 0.400000 +2358 2703 0.400000 +2358 2716 0.400000 +2358 2741 0.400000 +2358 2754 0.400000 +2358 2776 0.400000 +2358 2783 0.400000 +2358 2822 0.400000 +2358 2830 0.400000 +2358 2854 0.400000 +2358 2910 0.400000 +2358 2927 0.400000 +2358 2933 0.400000 +2358 2994 0.400000 +2358 3002 0.400000 +2358 3023 0.400000 +2358 3035 0.400000 +2358 3040 0.400000 +2358 3050 0.400000 +2359 5 0.400000 +2359 102 0.400000 +2359 211 0.400000 +2359 227 0.400000 +2359 236 0.400000 +2359 259 0.400000 +2359 286 0.400000 +2359 330 0.400000 +2359 551 0.400000 +2359 558 0.400000 +2359 737 0.400000 +2359 803 0.400000 +2359 833 0.400000 +2359 835 0.400000 +2359 908 0.400000 +2359 931 0.400000 +2359 1082 0.400000 +2359 1087 0.400000 +2359 1105 0.400000 +2359 1112 0.400000 +2359 1165 0.400000 +2359 1190 0.400000 +2359 1250 0.400000 +2359 1299 0.400000 +2359 1377 0.400000 +2359 1387 0.400000 +2359 1429 0.400000 +2359 1466 0.400000 +2359 1488 0.400000 +2359 1569 0.400000 +2359 1613 0.400000 +2359 1706 0.400000 +2359 1752 0.400000 +2359 1811 0.400000 +2359 1813 0.400000 +2359 1831 0.400000 +2359 1878 0.400000 +2359 1985 0.400000 +2359 2111 0.400000 +2359 2120 0.400000 +2359 2250 0.400000 +2359 2280 0.400000 +2359 2360 0.400000 +2359 2400 0.400000 +2359 2483 0.400000 +2359 2492 0.400000 +2359 2498 0.400000 +2359 2604 0.400000 +2359 2605 0.400000 +2359 2618 0.400000 +2359 2663 0.400000 +2359 2818 0.400000 +2359 2838 0.400000 +2359 2903 0.400000 +2359 2995 0.400000 +2359 3033 0.400000 +2359 3085 0.400000 +2359 3112 0.400000 +2360 20 0.400000 +2360 103 0.400000 +2360 121 0.400000 +2360 147 0.400000 +2360 238 0.400000 +2360 330 0.400000 +2360 384 0.400000 +2360 442 0.400000 +2360 457 0.400000 +2360 530 0.400000 +2360 565 0.400000 +2360 583 0.400000 +2360 650 0.400000 +2360 675 0.400000 +2360 746 0.400000 +2360 848 0.400000 +2360 879 0.400000 +2360 880 0.400000 +2360 882 0.400000 +2360 1133 0.400000 +2360 1234 0.400000 +2360 1272 0.400000 +2360 1289 0.400000 +2360 1321 0.400000 +2360 1347 0.400000 +2360 1382 0.400000 +2360 1421 0.400000 +2360 1432 0.400000 +2360 1480 0.400000 +2360 1492 0.400000 +2360 1568 0.400000 +2360 1621 0.400000 +2360 1760 0.400000 +2360 1798 0.400000 +2360 1852 0.400000 +2360 1869 0.400000 +2360 1874 0.400000 +2360 1887 0.400000 +2360 1891 0.400000 +2360 1919 0.400000 +2360 1927 0.400000 +2360 2062 0.400000 +2360 2079 0.400000 +2360 2095 0.400000 +2360 2108 0.400000 +2360 2136 0.400000 +2360 2153 0.400000 +2360 2264 0.400000 +2360 2289 0.400000 +2360 2305 0.400000 +2360 2307 0.400000 +2360 2317 0.400000 +2360 2376 0.400000 +2360 2397 0.400000 +2360 2421 0.400000 +2360 2429 0.400000 +2360 2436 0.400000 +2360 2524 0.400000 +2360 2621 0.400000 +2360 2681 0.400000 +2360 2691 0.400000 +2360 2732 0.400000 +2360 2792 0.400000 +2360 2910 0.400000 +2360 2953 0.400000 +2360 2972 0.400000 +2360 2992 0.400000 +2360 3035 0.400000 +2360 3095 0.400000 +2361 3 0.400000 +2361 112 0.400000 +2361 135 0.400000 +2361 161 0.400000 +2361 169 0.400000 +2361 212 0.400000 +2361 244 0.400000 +2361 249 0.400000 +2361 251 0.400000 +2361 255 0.400000 +2361 292 0.400000 +2361 324 0.400000 +2361 330 0.400000 +2361 443 0.400000 +2361 487 0.400000 +2361 504 0.400000 +2361 589 0.400000 +2361 591 0.400000 +2361 617 0.400000 +2361 651 0.400000 +2361 723 0.400000 +2361 736 0.400000 +2361 923 0.400000 +2361 1039 0.400000 +2361 1106 0.400000 +2361 1109 0.400000 +2361 1140 0.400000 +2361 1150 0.400000 +2361 1271 0.400000 +2361 1300 0.400000 +2361 1383 0.400000 +2361 1418 0.400000 +2361 1618 0.400000 +2361 1713 0.400000 +2361 1857 0.400000 +2361 1933 0.400000 +2361 1976 0.400000 +2361 2070 0.400000 +2361 2105 0.400000 +2361 2153 0.400000 +2361 2160 0.400000 +2361 2279 0.400000 +2361 2441 0.400000 +2361 2529 0.400000 +2361 2543 0.400000 +2361 2554 0.400000 +2361 2556 0.400000 +2361 2573 0.400000 +2361 2612 0.400000 +2361 2710 0.400000 +2361 2795 0.400000 +2361 2806 0.400000 +2361 2840 0.400000 +2361 2892 0.400000 +2361 2922 0.400000 +2361 2958 0.400000 +2361 2978 0.400000 +2361 2994 0.400000 +2361 3017 0.400000 +2361 3061 0.400000 +2361 3086 0.400000 +2361 3127 0.400000 +2361 3182 0.400000 +2362 185 0.400000 +2362 193 0.400000 +2362 250 0.400000 +2362 262 0.400000 +2362 319 0.400000 +2362 327 0.400000 +2362 357 0.400000 +2362 406 0.400000 +2362 411 0.400000 +2362 419 0.400000 +2362 570 0.400000 +2362 630 0.400000 +2362 653 0.400000 +2362 716 0.400000 +2362 719 0.400000 +2362 838 0.400000 +2362 864 0.400000 +2362 956 0.400000 +2362 957 0.400000 +2362 963 0.400000 +2362 1057 0.400000 +2362 1103 0.400000 +2362 1110 0.400000 +2362 1215 0.400000 +2362 1227 0.400000 +2362 1231 0.400000 +2362 1306 0.400000 +2362 1307 0.400000 +2362 1331 0.400000 +2362 1462 0.400000 +2362 1554 0.400000 +2362 1558 0.400000 +2362 1566 0.400000 +2362 1647 0.400000 +2362 1706 0.400000 +2362 1743 0.400000 +2362 1785 0.400000 +2362 1788 0.400000 +2362 1806 0.400000 +2362 1831 0.400000 +2362 1983 0.400000 +2362 2012 0.400000 +2362 2063 0.400000 +2362 2107 0.400000 +2362 2112 0.400000 +2362 2159 0.400000 +2362 2178 0.400000 +2362 2181 0.400000 +2362 2199 0.400000 +2362 2207 0.400000 +2362 2306 0.400000 +2362 2320 0.400000 +2362 2364 0.400000 +2362 2388 0.400000 +2362 2389 0.400000 +2362 2468 0.400000 +2362 2486 0.400000 +2362 2585 0.400000 +2362 2603 0.400000 +2362 2670 0.400000 +2362 2777 0.400000 +2362 2793 0.400000 +2362 2916 0.400000 +2362 2972 0.400000 +2362 3024 0.400000 +2362 3064 0.400000 +2362 3087 0.400000 +2362 3104 0.400000 +2362 3108 0.400000 +2362 3113 0.400000 +2363 35 0.400000 +2363 58 0.400000 +2363 118 0.400000 +2363 172 0.400000 +2363 275 0.400000 +2363 281 0.400000 +2363 307 0.400000 +2363 374 0.400000 +2363 568 0.400000 +2363 592 0.400000 +2363 638 0.400000 +2363 659 0.400000 +2363 666 0.400000 +2363 668 0.400000 +2363 684 0.400000 +2363 706 0.400000 +2363 875 0.400000 +2363 888 0.400000 +2363 918 0.400000 +2363 1342 0.400000 +2363 1361 0.400000 +2363 1440 0.400000 +2363 1473 0.400000 +2363 1479 0.400000 +2363 1509 0.400000 +2363 1572 0.400000 +2363 1705 0.400000 +2363 1856 0.400000 +2363 1914 0.400000 +2363 1938 0.400000 +2363 1967 0.400000 +2363 1973 0.400000 +2363 1981 0.400000 +2363 2014 0.400000 +2363 2035 0.400000 +2363 2038 0.400000 +2363 2103 0.400000 +2363 2169 0.400000 +2363 2199 0.400000 +2363 2217 0.400000 +2363 2255 0.400000 +2363 2264 0.400000 +2363 2312 0.400000 +2363 2343 0.400000 +2363 2377 0.400000 +2363 2385 0.400000 +2363 2481 0.400000 +2363 2490 0.400000 +2363 2551 0.400000 +2363 2629 0.400000 +2363 2665 0.400000 +2363 2701 0.400000 +2363 2757 0.400000 +2363 2761 0.400000 +2363 2822 0.400000 +2363 2874 0.400000 +2363 2938 0.400000 +2363 2951 0.400000 +2363 3005 0.400000 +2363 3067 0.400000 +2363 3069 0.400000 +2363 3134 0.400000 +2364 48 0.400000 +2364 90 0.400000 +2364 93 0.400000 +2364 104 0.400000 +2364 105 0.400000 +2364 137 0.400000 +2364 146 0.400000 +2364 159 0.400000 +2364 230 0.400000 +2364 248 0.400000 +2364 331 0.400000 +2364 339 0.400000 +2364 440 0.400000 +2364 636 0.400000 +2364 652 0.400000 +2364 746 0.400000 +2364 788 0.400000 +2364 790 0.400000 +2364 865 0.400000 +2364 897 0.400000 +2364 975 0.400000 +2364 990 0.400000 +2364 1034 0.400000 +2364 1037 0.400000 +2364 1120 0.400000 +2364 1148 0.400000 +2364 1232 0.400000 +2364 1276 0.400000 +2364 1346 0.400000 +2364 1358 0.400000 +2364 1366 0.400000 +2364 1490 0.400000 +2364 1541 0.400000 +2364 1578 0.400000 +2364 1653 0.400000 +2364 1698 0.400000 +2364 1807 0.400000 +2364 1813 0.400000 +2364 1882 0.400000 +2364 1974 0.400000 +2364 2013 0.400000 +2364 2092 0.400000 +2364 2148 0.400000 +2364 2167 0.400000 +2364 2171 0.400000 +2364 2205 0.400000 +2364 2215 0.400000 +2364 2296 0.400000 +2364 2400 0.400000 +2364 2448 0.400000 +2364 2478 0.400000 +2364 2495 0.400000 +2364 2503 0.400000 +2364 2505 0.400000 +2364 2548 0.400000 +2364 2743 0.400000 +2364 2958 0.400000 +2364 2999 0.400000 +2364 3000 0.400000 +2364 3067 0.400000 +2364 3081 0.400000 +2364 3158 0.400000 +2365 101 0.400000 +2365 123 0.400000 +2365 179 0.400000 +2365 206 0.400000 +2365 220 0.400000 +2365 227 0.400000 +2365 231 0.400000 +2365 294 0.400000 +2365 296 0.400000 +2365 376 0.400000 +2365 400 0.400000 +2365 428 0.400000 +2365 503 0.400000 +2365 567 0.400000 +2365 572 0.400000 +2365 662 0.400000 +2365 686 0.400000 +2365 748 0.400000 +2365 752 0.400000 +2365 794 0.400000 +2365 814 0.400000 +2365 836 0.400000 +2365 839 0.400000 +2365 863 0.400000 +2365 872 0.400000 +2365 884 0.400000 +2365 921 0.400000 +2365 987 0.400000 +2365 997 0.400000 +2365 1084 0.400000 +2365 1086 0.400000 +2365 1100 0.400000 +2365 1119 0.400000 +2365 1179 0.400000 +2365 1196 0.400000 +2365 1208 0.400000 +2365 1220 0.400000 +2365 1396 0.400000 +2365 1445 0.400000 +2365 1451 0.400000 +2365 1502 0.400000 +2365 1545 0.400000 +2365 1548 0.400000 +2365 1695 0.400000 +2365 1765 0.400000 +2365 1768 0.400000 +2365 1769 0.400000 +2365 1841 0.400000 +2365 1884 0.400000 +2365 1945 0.400000 +2365 1946 0.400000 +2365 2222 0.400000 +2365 2229 0.400000 +2365 2378 0.400000 +2365 2481 0.400000 +2365 2487 0.400000 +2365 2511 0.400000 +2365 2574 0.400000 +2365 2597 0.400000 +2365 2637 0.400000 +2365 2698 0.400000 +2365 2768 0.400000 +2365 2941 0.400000 +2365 2987 0.400000 +2365 3039 0.400000 +2365 3053 0.400000 +2365 3054 0.400000 +2366 4 0.400000 +2366 44 0.400000 +2366 65 0.400000 +2366 70 0.400000 +2366 118 0.400000 +2366 120 0.400000 +2366 128 0.400000 +2366 144 0.400000 +2366 199 0.400000 +2366 200 0.400000 +2366 239 0.400000 +2366 260 0.400000 +2366 344 0.400000 +2366 371 0.400000 +2366 399 0.400000 +2366 489 0.400000 +2366 611 0.400000 +2366 675 0.400000 +2366 771 0.400000 +2366 972 0.400000 +2366 1007 0.400000 +2366 1049 0.400000 +2366 1053 0.400000 +2366 1060 0.400000 +2366 1145 0.400000 +2366 1150 0.400000 +2366 1259 0.400000 +2366 1354 0.400000 +2366 1417 0.400000 +2366 1483 0.400000 +2366 1490 0.400000 +2366 1554 0.400000 +2366 1573 0.400000 +2366 1620 0.400000 +2366 1668 0.400000 +2366 1861 0.400000 +2366 1950 0.400000 +2366 1953 0.400000 +2366 1958 0.400000 +2366 2025 0.400000 +2366 2089 0.400000 +2366 2097 0.400000 +2366 2113 0.400000 +2366 2158 0.400000 +2366 2247 0.400000 +2366 2248 0.400000 +2366 2251 0.400000 +2366 2263 0.400000 +2366 2303 0.400000 +2366 2458 0.400000 +2366 2485 0.400000 +2366 2696 0.400000 +2366 2743 0.400000 +2366 2849 0.400000 +2366 2859 0.400000 +2366 2869 0.400000 +2366 2870 0.400000 +2366 2899 0.400000 +2366 2909 0.400000 +2366 2987 0.400000 +2366 2991 0.400000 +2366 3024 0.400000 +2366 3091 0.400000 +2366 3098 0.400000 +2366 3102 0.400000 +2366 3129 0.400000 +2366 3187 0.400000 +2366 3196 0.400000 +2366 3199 0.400000 +2367 4 0.400000 +2367 11 0.400000 +2367 13 0.400000 +2367 27 0.400000 +2367 33 0.400000 +2367 103 0.400000 +2367 122 0.400000 +2367 127 0.400000 +2367 269 0.400000 +2367 344 0.400000 +2367 347 0.400000 +2367 438 0.400000 +2367 445 0.400000 +2367 474 0.400000 +2367 483 0.400000 +2367 540 0.400000 +2367 574 0.400000 +2367 727 0.400000 +2367 736 0.400000 +2367 818 0.400000 +2367 838 0.400000 +2367 1042 0.400000 +2367 1084 0.400000 +2367 1281 0.400000 +2367 1288 0.400000 +2367 1381 0.400000 +2367 1452 0.400000 +2367 1453 0.400000 +2367 1459 0.400000 +2367 1539 0.400000 +2367 1624 0.400000 +2367 1713 0.400000 +2367 1725 0.400000 +2367 1808 0.400000 +2367 1812 0.400000 +2367 1837 0.400000 +2367 1870 0.400000 +2367 1930 0.400000 +2367 1969 0.400000 +2367 2114 0.400000 +2367 2115 0.400000 +2367 2151 0.400000 +2367 2163 0.400000 +2367 2166 0.400000 +2367 2216 0.400000 +2367 2257 0.400000 +2367 2402 0.400000 +2367 2504 0.400000 +2367 2577 0.400000 +2367 2597 0.400000 +2367 2613 0.400000 +2367 2755 0.400000 +2367 2770 0.400000 +2367 2777 0.400000 +2367 3012 0.400000 +2367 3035 0.400000 +2367 3056 0.400000 +2367 3057 0.400000 +2367 3103 0.400000 +2367 3104 0.400000 +2367 3157 0.400000 +2368 88 0.400000 +2368 93 0.400000 +2368 144 0.400000 +2368 156 0.400000 +2368 157 0.400000 +2368 187 0.400000 +2368 211 0.400000 +2368 214 0.400000 +2368 261 0.400000 +2368 305 0.400000 +2368 326 0.400000 +2368 399 0.400000 +2368 421 0.400000 +2368 461 0.400000 +2368 475 0.400000 +2368 533 0.400000 +2368 664 0.400000 +2368 691 0.400000 +2368 704 0.400000 +2368 705 0.400000 +2368 715 0.400000 +2368 774 0.400000 +2368 834 0.400000 +2368 846 0.400000 +2368 918 0.400000 +2368 932 0.400000 +2368 1018 0.400000 +2368 1036 0.400000 +2368 1063 0.400000 +2368 1166 0.400000 +2368 1459 0.400000 +2368 1758 0.400000 +2368 1784 0.400000 +2368 1813 0.400000 +2368 1820 0.400000 +2368 1831 0.400000 +2368 1924 0.400000 +2368 1952 0.400000 +2368 2043 0.400000 +2368 2148 0.400000 +2368 2170 0.400000 +2368 2211 0.400000 +2368 2213 0.400000 +2368 2248 0.400000 +2368 2470 0.400000 +2368 2665 0.400000 +2368 2713 0.400000 +2368 2739 0.400000 +2368 2779 0.400000 +2368 2819 0.400000 +2368 2877 0.400000 +2368 2926 0.400000 +2368 3010 0.400000 +2368 3127 0.400000 +2368 3165 0.400000 +2369 28 0.400000 +2369 71 0.400000 +2369 103 0.400000 +2369 104 0.400000 +2369 192 0.400000 +2369 195 0.400000 +2369 196 0.400000 +2369 239 0.400000 +2369 283 0.400000 +2369 308 0.400000 +2369 401 0.400000 +2369 477 0.400000 +2369 507 0.400000 +2369 512 0.400000 +2369 564 0.400000 +2369 623 0.400000 +2369 677 0.400000 +2369 714 0.400000 +2369 735 0.400000 +2369 800 0.400000 +2369 925 0.400000 +2369 926 0.400000 +2369 936 0.400000 +2369 947 0.400000 +2369 954 0.400000 +2369 985 0.400000 +2369 998 0.400000 +2369 1012 0.400000 +2369 1098 0.400000 +2369 1132 0.400000 +2369 1251 0.400000 +2369 1265 0.400000 +2369 1328 0.400000 +2369 1342 0.400000 +2369 1381 0.400000 +2369 1517 0.400000 +2369 1598 0.400000 +2369 1660 0.400000 +2369 1720 0.400000 +2369 1795 0.400000 +2369 1869 0.400000 +2369 1877 0.400000 +2369 1928 0.400000 +2369 1959 0.400000 +2369 2029 0.400000 +2369 2091 0.400000 +2369 2094 0.400000 +2369 2281 0.400000 +2369 2322 0.400000 +2369 2382 0.400000 +2369 2387 0.400000 +2369 2439 0.400000 +2369 2515 0.400000 +2369 2542 0.400000 +2369 2602 0.400000 +2369 2623 0.400000 +2369 2680 0.400000 +2369 2686 0.400000 +2369 2804 0.400000 +2369 2949 0.400000 +2369 2975 0.400000 +2369 3023 0.400000 +2369 3152 0.400000 +2369 3180 0.400000 +2369 3200 0.400000 +2370 76 0.400000 +2370 78 0.400000 +2370 226 0.400000 +2370 230 0.400000 +2370 234 0.400000 +2370 294 0.400000 +2370 339 0.400000 +2370 356 0.400000 +2370 360 0.400000 +2370 408 0.400000 +2370 412 0.400000 +2370 550 0.400000 +2370 783 0.400000 +2370 902 0.400000 +2370 920 0.400000 +2370 930 0.400000 +2370 943 0.400000 +2370 949 0.400000 +2370 993 0.400000 +2370 1024 0.400000 +2370 1049 0.400000 +2370 1055 0.400000 +2370 1451 0.400000 +2370 1461 0.400000 +2370 1477 0.400000 +2370 1479 0.400000 +2370 1681 0.400000 +2370 1760 0.400000 +2370 1860 0.400000 +2370 1912 0.400000 +2370 1995 0.400000 +2370 2047 0.400000 +2370 2058 0.400000 +2370 2062 0.400000 +2370 2133 0.400000 +2370 2141 0.400000 +2370 2159 0.400000 +2370 2167 0.400000 +2370 2217 0.400000 +2370 2302 0.400000 +2370 2401 0.400000 +2370 2413 0.400000 +2370 2497 0.400000 +2370 2574 0.400000 +2370 2619 0.400000 +2370 2665 0.400000 +2370 2721 0.400000 +2370 2759 0.400000 +2370 2782 0.400000 +2370 2823 0.400000 +2370 2824 0.400000 +2370 2854 0.400000 +2370 2921 0.400000 +2370 3002 0.400000 +2370 3011 0.400000 +2370 3054 0.400000 +2370 3120 0.400000 +2370 3140 0.400000 +2370 3172 0.400000 +2370 3200 0.400000 +2371 12 0.400000 +2371 52 0.400000 +2371 95 0.400000 +2371 144 0.400000 +2371 234 0.400000 +2371 270 0.400000 +2371 294 0.400000 +2371 374 0.400000 +2371 379 0.400000 +2371 398 0.400000 +2371 410 0.400000 +2371 447 0.400000 +2371 504 0.400000 +2371 597 0.400000 +2371 717 0.400000 +2371 725 0.400000 +2371 739 0.400000 +2371 753 0.400000 +2371 756 0.400000 +2371 790 0.400000 +2371 855 0.400000 +2371 857 0.400000 +2371 875 0.400000 +2371 940 0.400000 +2371 952 0.400000 +2371 1032 0.400000 +2371 1048 0.400000 +2371 1089 0.400000 +2371 1097 0.400000 +2371 1101 0.400000 +2371 1156 0.400000 +2371 1159 0.400000 +2371 1219 0.400000 +2371 1250 0.400000 +2371 1266 0.400000 +2371 1320 0.400000 +2371 1330 0.400000 +2371 1405 0.400000 +2371 1539 0.400000 +2371 1584 0.400000 +2371 1825 0.400000 +2371 1868 0.400000 +2371 1889 0.400000 +2371 1989 0.400000 +2371 2001 0.400000 +2371 2124 0.400000 +2371 2190 0.400000 +2371 2296 0.400000 +2371 2395 0.400000 +2371 2490 0.400000 +2371 2496 0.400000 +2371 2617 0.400000 +2371 2636 0.400000 +2371 2657 0.400000 +2371 2687 0.400000 +2371 2767 0.400000 +2371 2769 0.400000 +2371 2843 0.400000 +2371 2853 0.400000 +2371 2877 0.400000 +2371 2892 0.400000 +2372 24 0.400000 +2372 77 0.400000 +2372 103 0.400000 +2372 112 0.400000 +2372 114 0.400000 +2372 125 0.400000 +2372 168 0.400000 +2372 177 0.400000 +2372 182 0.400000 +2372 380 0.400000 +2372 440 0.400000 +2372 495 0.400000 +2372 537 0.400000 +2372 593 0.400000 +2372 628 0.400000 +2372 681 0.400000 +2372 734 0.400000 +2372 833 0.400000 +2372 856 0.400000 +2372 903 0.400000 +2372 969 0.400000 +2372 994 0.400000 +2372 999 0.400000 +2372 1089 0.400000 +2372 1099 0.400000 +2372 1153 0.400000 +2372 1174 0.400000 +2372 1280 0.400000 +2372 1328 0.400000 +2372 1375 0.400000 +2372 1402 0.400000 +2372 1431 0.400000 +2372 1452 0.400000 +2372 1474 0.400000 +2372 1578 0.400000 +2372 1605 0.400000 +2372 1663 0.400000 +2372 1769 0.400000 +2372 1836 0.400000 +2372 1844 0.400000 +2372 1870 0.400000 +2372 1890 0.400000 +2372 1900 0.400000 +2372 1916 0.400000 +2372 1991 0.400000 +2372 1996 0.400000 +2372 2046 0.400000 +2372 2145 0.400000 +2372 2154 0.400000 +2372 2179 0.400000 +2372 2184 0.400000 +2372 2218 0.400000 +2372 2270 0.400000 +2372 2371 0.400000 +2372 2382 0.400000 +2372 2437 0.400000 +2372 2456 0.400000 +2372 2465 0.400000 +2372 2498 0.400000 +2372 2578 0.400000 +2372 2663 0.400000 +2372 2857 0.400000 +2372 2890 0.400000 +2372 2930 0.400000 +2372 2932 0.400000 +2372 2948 0.400000 +2372 2952 0.400000 +2372 3001 0.400000 +2372 3014 0.400000 +2372 3036 0.400000 +2372 3080 0.400000 +2373 51 0.400000 +2373 158 0.400000 +2373 222 0.400000 +2373 284 0.400000 +2373 306 0.400000 +2373 309 0.400000 +2373 367 0.400000 +2373 371 0.400000 +2373 381 0.400000 +2373 440 0.400000 +2373 443 0.400000 +2373 473 0.400000 +2373 547 0.400000 +2373 572 0.400000 +2373 719 0.400000 +2373 734 0.400000 +2373 750 0.400000 +2373 778 0.400000 +2373 780 0.400000 +2373 793 0.400000 +2373 839 0.400000 +2373 861 0.400000 +2373 928 0.400000 +2373 939 0.400000 +2373 964 0.400000 +2373 1027 0.400000 +2373 1035 0.400000 +2373 1063 0.400000 +2373 1163 0.400000 +2373 1232 0.400000 +2373 1249 0.400000 +2373 1388 0.400000 +2373 1406 0.400000 +2373 1430 0.400000 +2373 1460 0.400000 +2373 1467 0.400000 +2373 1523 0.400000 +2373 1585 0.400000 +2373 1640 0.400000 +2373 1693 0.400000 +2373 1757 0.400000 +2373 1807 0.400000 +2373 1814 0.400000 +2373 1986 0.400000 +2373 2041 0.400000 +2373 2112 0.400000 +2373 2122 0.400000 +2373 2209 0.400000 +2373 2293 0.400000 +2373 2402 0.400000 +2373 2490 0.400000 +2373 2492 0.400000 +2373 2609 0.400000 +2373 2633 0.400000 +2373 2705 0.400000 +2373 2829 0.400000 +2373 2936 0.400000 +2373 2943 0.400000 +2373 2984 0.400000 +2373 3008 0.400000 +2373 3019 0.400000 +2373 3081 0.400000 +2373 3171 0.400000 +2373 3185 0.400000 +2373 3198 0.400000 +2374 10 0.400000 +2374 113 0.400000 +2374 156 0.400000 +2374 193 0.400000 +2374 256 0.400000 +2374 304 0.400000 +2374 332 0.400000 +2374 356 0.400000 +2374 359 0.400000 +2374 384 0.400000 +2374 406 0.400000 +2374 484 0.400000 +2374 581 0.400000 +2374 784 0.400000 +2374 835 0.400000 +2374 857 0.400000 +2374 871 0.400000 +2374 872 0.400000 +2374 903 0.400000 +2374 928 0.400000 +2374 1013 0.400000 +2374 1019 0.400000 +2374 1022 0.400000 +2374 1051 0.400000 +2374 1076 0.400000 +2374 1129 0.400000 +2374 1132 0.400000 +2374 1178 0.400000 +2374 1243 0.400000 +2374 1310 0.400000 +2374 1312 0.400000 +2374 1357 0.400000 +2374 1419 0.400000 +2374 1477 0.400000 +2374 1571 0.400000 +2374 1594 0.400000 +2374 1601 0.400000 +2374 1748 0.400000 +2374 1791 0.400000 +2374 1832 0.400000 +2374 1921 0.400000 +2374 2004 0.400000 +2374 2020 0.400000 +2374 2035 0.400000 +2374 2103 0.400000 +2374 2113 0.400000 +2374 2173 0.400000 +2374 2358 0.400000 +2374 2365 0.400000 +2374 2441 0.400000 +2374 2491 0.400000 +2374 2493 0.400000 +2374 2511 0.400000 +2374 2523 0.400000 +2374 2569 0.400000 +2374 2597 0.400000 +2374 2620 0.400000 +2374 2693 0.400000 +2374 2760 0.400000 +2374 2901 0.400000 +2374 3063 0.400000 +2374 3123 0.400000 +2375 82 0.400000 +2375 93 0.400000 +2375 142 0.400000 +2375 246 0.400000 +2375 316 0.400000 +2375 317 0.400000 +2375 359 0.400000 +2375 383 0.400000 +2375 392 0.400000 +2375 424 0.400000 +2375 467 0.400000 +2375 486 0.400000 +2375 495 0.400000 +2375 532 0.400000 +2375 557 0.400000 +2375 577 0.400000 +2375 650 0.400000 +2375 698 0.400000 +2375 729 0.400000 +2375 784 0.400000 +2375 852 0.400000 +2375 922 0.400000 +2375 940 0.400000 +2375 961 0.400000 +2375 972 0.400000 +2375 1009 0.400000 +2375 1027 0.400000 +2375 1105 0.400000 +2375 1139 0.400000 +2375 1149 0.400000 +2375 1178 0.400000 +2375 1186 0.400000 +2375 1204 0.400000 +2375 1255 0.400000 +2375 1263 0.400000 +2375 1312 0.400000 +2375 1334 0.400000 +2375 1622 0.400000 +2375 1668 0.400000 +2375 1801 0.400000 +2375 1884 0.400000 +2375 1891 0.400000 +2375 1977 0.400000 +2375 2039 0.400000 +2375 2095 0.400000 +2375 2104 0.400000 +2375 2275 0.400000 +2375 2307 0.400000 +2375 2325 0.400000 +2375 2342 0.400000 +2375 2368 0.400000 +2375 2488 0.400000 +2375 2616 0.400000 +2375 2663 0.400000 +2375 2732 0.400000 +2375 2847 0.400000 +2375 2875 0.400000 +2375 2915 0.400000 +2375 2959 0.400000 +2375 2994 0.400000 +2375 3073 0.400000 +2375 3089 0.400000 +2375 3102 0.400000 +2375 3188 0.400000 +2376 183 0.400000 +2376 216 0.400000 +2376 245 0.400000 +2376 264 0.400000 +2376 290 0.400000 +2376 323 0.400000 +2376 338 0.400000 +2376 410 0.400000 +2376 466 0.400000 +2376 470 0.400000 +2376 514 0.400000 +2376 761 0.400000 +2376 765 0.400000 +2376 807 0.400000 +2376 818 0.400000 +2376 827 0.400000 +2376 829 0.400000 +2376 868 0.400000 +2376 984 0.400000 +2376 1033 0.400000 +2376 1110 0.400000 +2376 1132 0.400000 +2376 1134 0.400000 +2376 1184 0.400000 +2376 1327 0.400000 +2376 1335 0.400000 +2376 1344 0.400000 +2376 1349 0.400000 +2376 1352 0.400000 +2376 1388 0.400000 +2376 1511 0.400000 +2376 1539 0.400000 +2376 1571 0.400000 +2376 1681 0.400000 +2376 1707 0.400000 +2376 1726 0.400000 +2376 1872 0.400000 +2376 2000 0.400000 +2376 2028 0.400000 +2376 2106 0.400000 +2376 2113 0.400000 +2376 2216 0.400000 +2376 2230 0.400000 +2376 2249 0.400000 +2376 2301 0.400000 +2376 2392 0.400000 +2376 2551 0.400000 +2376 2649 0.400000 +2376 2658 0.400000 +2376 2670 0.400000 +2376 2709 0.400000 +2376 2732 0.400000 +2376 2799 0.400000 +2376 2856 0.400000 +2376 2872 0.400000 +2376 2887 0.400000 +2376 2889 0.400000 +2376 2913 0.400000 +2376 2929 0.400000 +2376 2957 0.400000 +2376 2963 0.400000 +2376 2986 0.400000 +2376 3000 0.400000 +2376 3084 0.400000 +2376 3171 0.400000 +2377 31 0.400000 +2377 122 0.400000 +2377 272 0.400000 +2377 307 0.400000 +2377 315 0.400000 +2377 439 0.400000 +2377 618 0.400000 +2377 622 0.400000 +2377 688 0.400000 +2377 829 0.400000 +2377 841 0.400000 +2377 903 0.400000 +2377 977 0.400000 +2377 990 0.400000 +2377 1018 0.400000 +2377 1042 0.400000 +2377 1164 0.400000 +2377 1212 0.400000 +2377 1230 0.400000 +2377 1259 0.400000 +2377 1337 0.400000 +2377 1368 0.400000 +2377 1387 0.400000 +2377 1490 0.400000 +2377 1562 0.400000 +2377 1607 0.400000 +2377 1630 0.400000 +2377 1637 0.400000 +2377 1701 0.400000 +2377 1750 0.400000 +2377 1834 0.400000 +2377 1838 0.400000 +2377 1913 0.400000 +2377 1919 0.400000 +2377 1935 0.400000 +2377 1951 0.400000 +2377 1965 0.400000 +2377 2277 0.400000 +2377 2344 0.400000 +2377 2377 0.400000 +2377 2400 0.400000 +2377 2420 0.400000 +2377 2422 0.400000 +2377 2465 0.400000 +2377 2602 0.400000 +2377 2674 0.400000 +2377 2697 0.400000 +2377 2768 0.400000 +2377 3000 0.400000 +2377 3013 0.400000 +2377 3079 0.400000 +2377 3124 0.400000 +2377 3151 0.400000 +2378 38 0.400000 +2378 79 0.400000 +2378 83 0.400000 +2378 115 0.400000 +2378 177 0.400000 +2378 238 0.400000 +2378 240 0.400000 +2378 262 0.400000 +2378 327 0.400000 +2378 380 0.400000 +2378 413 0.400000 +2378 484 0.400000 +2378 498 0.400000 +2378 515 0.400000 +2378 564 0.400000 +2378 572 0.400000 +2378 624 0.400000 +2378 634 0.400000 +2378 665 0.400000 +2378 673 0.400000 +2378 680 0.400000 +2378 724 0.400000 +2378 777 0.400000 +2378 781 0.400000 +2378 782 0.400000 +2378 920 0.400000 +2378 939 0.400000 +2378 1013 0.400000 +2378 1064 0.400000 +2378 1070 0.400000 +2378 1168 0.400000 +2378 1220 0.400000 +2378 1280 0.400000 +2378 1328 0.400000 +2378 1375 0.400000 +2378 1432 0.400000 +2378 1482 0.400000 +2378 1503 0.400000 +2378 1558 0.400000 +2378 1585 0.400000 +2378 1615 0.400000 +2378 1663 0.400000 +2378 1744 0.400000 +2378 1792 0.400000 +2378 1880 0.400000 +2378 1909 0.400000 +2378 1929 0.400000 +2378 1969 0.400000 +2378 1982 0.400000 +2378 2050 0.400000 +2378 2127 0.400000 +2378 2141 0.400000 +2378 2195 0.400000 +2378 2275 0.400000 +2378 2306 0.400000 +2378 2344 0.400000 +2378 2360 0.400000 +2378 2391 0.400000 +2378 2399 0.400000 +2378 2505 0.400000 +2378 2541 0.400000 +2378 2586 0.400000 +2378 2615 0.400000 +2378 2702 0.400000 +2378 2787 0.400000 +2378 2794 0.400000 +2378 2834 0.400000 +2378 2840 0.400000 +2378 2893 0.400000 +2378 2895 0.400000 +2378 2934 0.400000 +2378 2959 0.400000 +2378 2963 0.400000 +2378 3077 0.400000 +2378 3130 0.400000 +2378 3170 0.400000 +2378 3179 0.400000 +2379 88 0.400000 +2379 130 0.400000 +2379 178 0.400000 +2379 204 0.400000 +2379 210 0.400000 +2379 344 0.400000 +2379 380 0.400000 +2379 386 0.400000 +2379 447 0.400000 +2379 455 0.400000 +2379 497 0.400000 +2379 560 0.400000 +2379 620 0.400000 +2379 636 0.400000 +2379 685 0.400000 +2379 833 0.400000 +2379 909 0.400000 +2379 1084 0.400000 +2379 1093 0.400000 +2379 1212 0.400000 +2379 1248 0.400000 +2379 1309 0.400000 +2379 1397 0.400000 +2379 1403 0.400000 +2379 1482 0.400000 +2379 1511 0.400000 +2379 1617 0.400000 +2379 1719 0.400000 +2379 1737 0.400000 +2379 1771 0.400000 +2379 1783 0.400000 +2379 1791 0.400000 +2379 1801 0.400000 +2379 1852 0.400000 +2379 1944 0.400000 +2379 1947 0.400000 +2379 1961 0.400000 +2379 1974 0.400000 +2379 1987 0.400000 +2379 1990 0.400000 +2379 2001 0.400000 +2379 2013 0.400000 +2379 2072 0.400000 +2379 2084 0.400000 +2379 2100 0.400000 +2379 2156 0.400000 +2379 2201 0.400000 +2379 2214 0.400000 +2379 2340 0.400000 +2379 2436 0.400000 +2379 2471 0.400000 +2379 2489 0.400000 +2379 2506 0.400000 +2379 2542 0.400000 +2379 2564 0.400000 +2379 2575 0.400000 +2379 2608 0.400000 +2379 2618 0.400000 +2379 2640 0.400000 +2379 2676 0.400000 +2379 2787 0.400000 +2379 2797 0.400000 +2379 2809 0.400000 +2379 2817 0.400000 +2379 2830 0.400000 +2379 2885 0.400000 +2379 2978 0.400000 +2379 3011 0.400000 +2379 3031 0.400000 +2379 3034 0.400000 +2379 3066 0.400000 +2379 3169 0.400000 +2380 36 0.400000 +2380 44 0.400000 +2380 103 0.400000 +2380 132 0.400000 +2380 196 0.400000 +2380 208 0.400000 +2380 330 0.400000 +2380 349 0.400000 +2380 457 0.400000 +2380 537 0.400000 +2380 571 0.400000 +2380 595 0.400000 +2380 635 0.400000 +2380 686 0.400000 +2380 690 0.400000 +2380 742 0.400000 +2380 847 0.400000 +2380 942 0.400000 +2380 962 0.400000 +2380 966 0.400000 +2380 1072 0.400000 +2380 1193 0.400000 +2380 1364 0.400000 +2380 1375 0.400000 +2380 1377 0.400000 +2380 1387 0.400000 +2380 1408 0.400000 +2380 1487 0.400000 +2380 1527 0.400000 +2380 1615 0.400000 +2380 1622 0.400000 +2380 1667 0.400000 +2380 1764 0.400000 +2380 1772 0.400000 +2380 1782 0.400000 +2380 1854 0.400000 +2380 1860 0.400000 +2380 1864 0.400000 +2380 1888 0.400000 +2380 1922 0.400000 +2380 2004 0.400000 +2380 2029 0.400000 +2380 2042 0.400000 +2380 2045 0.400000 +2380 2154 0.400000 +2380 2180 0.400000 +2380 2270 0.400000 +2380 2330 0.400000 +2380 2354 0.400000 +2380 2359 0.400000 +2380 2467 0.400000 +2380 2523 0.400000 +2380 2535 0.400000 +2380 2553 0.400000 +2380 2568 0.400000 +2380 2579 0.400000 +2380 2605 0.400000 +2380 2649 0.400000 +2380 2656 0.400000 +2380 2702 0.400000 +2380 2735 0.400000 +2380 2802 0.400000 +2380 2805 0.400000 +2380 2823 0.400000 +2380 2840 0.400000 +2380 2907 0.400000 +2380 3005 0.400000 +2380 3024 0.400000 +2380 3059 0.400000 +2380 3062 0.400000 +2380 3085 0.400000 +2380 3151 0.400000 +2381 74 0.400000 +2381 131 0.400000 +2381 205 0.400000 +2381 246 0.400000 +2381 309 0.400000 +2381 336 0.400000 +2381 345 0.400000 +2381 349 0.400000 +2381 362 0.400000 +2381 376 0.400000 +2381 383 0.400000 +2381 405 0.400000 +2381 444 0.400000 +2381 453 0.400000 +2381 489 0.400000 +2381 551 0.400000 +2381 619 0.400000 +2381 649 0.400000 +2381 652 0.400000 +2381 702 0.400000 +2381 781 0.400000 +2381 872 0.400000 +2381 873 0.400000 +2381 942 0.400000 +2381 1076 0.400000 +2381 1131 0.400000 +2381 1206 0.400000 +2381 1272 0.400000 +2381 1278 0.400000 +2381 1291 0.400000 +2381 1324 0.400000 +2381 1331 0.400000 +2381 1341 0.400000 +2381 1379 0.400000 +2381 1412 0.400000 +2381 1532 0.400000 +2381 1557 0.400000 +2381 1602 0.400000 +2381 1672 0.400000 +2381 1695 0.400000 +2381 1795 0.400000 +2381 1801 0.400000 +2381 1830 0.400000 +2381 2010 0.400000 +2381 2115 0.400000 +2381 2135 0.400000 +2381 2223 0.400000 +2381 2243 0.400000 +2381 2287 0.400000 +2381 2386 0.400000 +2381 2428 0.400000 +2381 2443 0.400000 +2381 2449 0.400000 +2381 2488 0.400000 +2381 2505 0.400000 +2381 2534 0.400000 +2381 2542 0.400000 +2381 2570 0.400000 +2381 2644 0.400000 +2381 2743 0.400000 +2381 2744 0.400000 +2381 2805 0.400000 +2381 2887 0.400000 +2381 2901 0.400000 +2381 2961 0.400000 +2381 3012 0.400000 +2381 3022 0.400000 +2381 3059 0.400000 +2381 3071 0.400000 +2381 3094 0.400000 +2381 3116 0.400000 +2381 3121 0.400000 +2381 3158 0.400000 +2382 140 0.400000 +2382 141 0.400000 +2382 222 0.400000 +2382 259 0.400000 +2382 285 0.400000 +2382 314 0.400000 +2382 336 0.400000 +2382 360 0.400000 +2382 402 0.400000 +2382 455 0.400000 +2382 471 0.400000 +2382 548 0.400000 +2382 570 0.400000 +2382 589 0.400000 +2382 638 0.400000 +2382 702 0.400000 +2382 743 0.400000 +2382 886 0.400000 +2382 963 0.400000 +2382 1026 0.400000 +2382 1035 0.400000 +2382 1042 0.400000 +2382 1069 0.400000 +2382 1138 0.400000 +2382 1149 0.400000 +2382 1197 0.400000 +2382 1241 0.400000 +2382 1253 0.400000 +2382 1306 0.400000 +2382 1312 0.400000 +2382 1357 0.400000 +2382 1381 0.400000 +2382 1385 0.400000 +2382 1394 0.400000 +2382 1433 0.400000 +2382 1446 0.400000 +2382 1508 0.400000 +2382 1543 0.400000 +2382 1562 0.400000 +2382 1600 0.400000 +2382 1618 0.400000 +2382 1707 0.400000 +2382 1828 0.400000 +2382 1859 0.400000 +2382 1902 0.400000 +2382 1904 0.400000 +2382 1920 0.400000 +2382 1925 0.400000 +2382 1960 0.400000 +2382 2059 0.400000 +2382 2096 0.400000 +2382 2133 0.400000 +2382 2188 0.400000 +2382 2293 0.400000 +2382 2355 0.400000 +2382 2467 0.400000 +2382 2511 0.400000 +2382 2593 0.400000 +2382 2637 0.400000 +2382 2639 0.400000 +2382 2699 0.400000 +2382 2743 0.400000 +2382 2794 0.400000 +2382 2803 0.400000 +2382 2843 0.400000 +2382 2887 0.400000 +2382 2954 0.400000 +2382 3010 0.400000 +2382 3043 0.400000 +2382 3065 0.400000 +2382 3095 0.400000 +2382 3126 0.400000 +2382 3180 0.400000 +2383 9 0.400000 +2383 23 0.400000 +2383 67 0.400000 +2383 113 0.400000 +2383 164 0.400000 +2383 220 0.400000 +2383 321 0.400000 +2383 382 0.400000 +2383 465 0.400000 +2383 517 0.400000 +2383 728 0.400000 +2383 737 0.400000 +2383 775 0.400000 +2383 939 0.400000 +2383 1006 0.400000 +2383 1008 0.400000 +2383 1010 0.400000 +2383 1080 0.400000 +2383 1131 0.400000 +2383 1186 0.400000 +2383 1221 0.400000 +2383 1245 0.400000 +2383 1410 0.400000 +2383 1422 0.400000 +2383 1436 0.400000 +2383 1464 0.400000 +2383 1520 0.400000 +2383 1558 0.400000 +2383 1589 0.400000 +2383 1592 0.400000 +2383 1673 0.400000 +2383 1709 0.400000 +2383 1758 0.400000 +2383 1772 0.400000 +2383 1810 0.400000 +2383 1847 0.400000 +2383 1968 0.400000 +2383 2062 0.400000 +2383 2076 0.400000 +2383 2189 0.400000 +2383 2267 0.400000 +2383 2298 0.400000 +2383 2392 0.400000 +2383 2557 0.400000 +2383 2646 0.400000 +2383 2743 0.400000 +2383 2863 0.400000 +2383 2934 0.400000 +2383 2970 0.400000 +2383 2989 0.400000 +2383 3038 0.400000 +2383 3106 0.400000 +2383 3123 0.400000 +2383 3177 0.400000 +2384 96 0.400000 +2384 155 0.400000 +2384 175 0.400000 +2384 270 0.400000 +2384 284 0.400000 +2384 336 0.400000 +2384 526 0.400000 +2384 529 0.400000 +2384 604 0.400000 +2384 637 0.400000 +2384 745 0.400000 +2384 768 0.400000 +2384 783 0.400000 +2384 835 0.400000 +2384 879 0.400000 +2384 980 0.400000 +2384 1026 0.400000 +2384 1046 0.400000 +2384 1082 0.400000 +2384 1128 0.400000 +2384 1129 0.400000 +2384 1144 0.400000 +2384 1146 0.400000 +2384 1182 0.400000 +2384 1235 0.400000 +2384 1423 0.400000 +2384 1436 0.400000 +2384 1487 0.400000 +2384 1543 0.400000 +2384 1615 0.400000 +2384 1686 0.400000 +2384 1731 0.400000 +2384 1761 0.400000 +2384 1925 0.400000 +2384 1964 0.400000 +2384 2164 0.400000 +2384 2168 0.400000 +2384 2180 0.400000 +2384 2188 0.400000 +2384 2317 0.400000 +2384 2325 0.400000 +2384 2380 0.400000 +2384 2397 0.400000 +2384 2398 0.400000 +2384 2403 0.400000 +2384 2459 0.400000 +2384 2647 0.400000 +2384 2663 0.400000 +2384 2868 0.400000 +2384 2898 0.400000 +2384 2967 0.400000 +2384 3009 0.400000 +2384 3018 0.400000 +2384 3083 0.400000 +2384 3122 0.400000 +2384 3123 0.400000 +2384 3130 0.400000 +2385 75 0.400000 +2385 103 0.400000 +2385 121 0.400000 +2385 295 0.400000 +2385 313 0.400000 +2385 316 0.400000 +2385 335 0.400000 +2385 361 0.400000 +2385 401 0.400000 +2385 421 0.400000 +2385 494 0.400000 +2385 555 0.400000 +2385 635 0.400000 +2385 716 0.400000 +2385 818 0.400000 +2385 845 0.400000 +2385 882 0.400000 +2385 893 0.400000 +2385 1021 0.400000 +2385 1037 0.400000 +2385 1114 0.400000 +2385 1188 0.400000 +2385 1240 0.400000 +2385 1261 0.400000 +2385 1322 0.400000 +2385 1361 0.400000 +2385 1368 0.400000 +2385 1466 0.400000 +2385 1586 0.400000 +2385 1614 0.400000 +2385 1656 0.400000 +2385 1690 0.400000 +2385 1803 0.400000 +2385 1813 0.400000 +2385 1820 0.400000 +2385 1843 0.400000 +2385 1976 0.400000 +2385 2033 0.400000 +2385 2109 0.400000 +2385 2118 0.400000 +2385 2137 0.400000 +2385 2158 0.400000 +2385 2178 0.400000 +2385 2184 0.400000 +2385 2425 0.400000 +2385 2493 0.400000 +2385 2518 0.400000 +2385 2542 0.400000 +2385 2555 0.400000 +2385 2674 0.400000 +2385 2682 0.400000 +2385 2694 0.400000 +2385 2744 0.400000 +2385 2767 0.400000 +2385 2782 0.400000 +2385 3001 0.400000 +2385 3038 0.400000 +2385 3142 0.400000 +2385 3186 0.400000 +2386 8 0.400000 +2386 67 0.400000 +2386 104 0.400000 +2386 171 0.400000 +2386 294 0.400000 +2386 319 0.400000 +2386 414 0.400000 +2386 431 0.400000 +2386 477 0.400000 +2386 512 0.400000 +2386 697 0.400000 +2386 753 0.400000 +2386 771 0.400000 +2386 808 0.400000 +2386 810 0.400000 +2386 925 0.400000 +2386 1033 0.400000 +2386 1051 0.400000 +2386 1073 0.400000 +2386 1086 0.400000 +2386 1087 0.400000 +2386 1128 0.400000 +2386 1141 0.400000 +2386 1159 0.400000 +2386 1170 0.400000 +2386 1235 0.400000 +2386 1299 0.400000 +2386 1310 0.400000 +2386 1389 0.400000 +2386 1502 0.400000 +2386 1527 0.400000 +2386 1566 0.400000 +2386 1669 0.400000 +2386 1726 0.400000 +2386 1863 0.400000 +2386 1885 0.400000 +2386 1901 0.400000 +2386 1909 0.400000 +2386 1936 0.400000 +2386 1978 0.400000 +2386 1980 0.400000 +2386 2054 0.400000 +2386 2057 0.400000 +2386 2160 0.400000 +2386 2229 0.400000 +2386 2242 0.400000 +2386 2321 0.400000 +2386 2466 0.400000 +2386 2519 0.400000 +2386 2541 0.400000 +2386 2567 0.400000 +2386 2666 0.400000 +2386 2687 0.400000 +2386 2730 0.400000 +2386 2920 0.400000 +2386 3014 0.400000 +2386 3019 0.400000 +2386 3029 0.400000 +2386 3129 0.400000 +2387 50 0.400000 +2387 70 0.400000 +2387 74 0.400000 +2387 128 0.400000 +2387 210 0.400000 +2387 234 0.400000 +2387 268 0.400000 +2387 272 0.400000 +2387 375 0.400000 +2387 412 0.400000 +2387 491 0.400000 +2387 494 0.400000 +2387 522 0.400000 +2387 525 0.400000 +2387 549 0.400000 +2387 609 0.400000 +2387 703 0.400000 +2387 748 0.400000 +2387 786 0.400000 +2387 797 0.400000 +2387 902 0.400000 +2387 918 0.400000 +2387 959 0.400000 +2387 973 0.400000 +2387 1021 0.400000 +2387 1037 0.400000 +2387 1075 0.400000 +2387 1202 0.400000 +2387 1242 0.400000 +2387 1285 0.400000 +2387 1294 0.400000 +2387 1314 0.400000 +2387 1399 0.400000 +2387 1489 0.400000 +2387 1504 0.400000 +2387 1545 0.400000 +2387 1653 0.400000 +2387 1691 0.400000 +2387 1715 0.400000 +2387 1717 0.400000 +2387 1721 0.400000 +2387 1728 0.400000 +2387 1738 0.400000 +2387 1756 0.400000 +2387 1811 0.400000 +2387 1934 0.400000 +2387 1962 0.400000 +2387 1966 0.400000 +2387 1989 0.400000 +2387 2034 0.400000 +2387 2069 0.400000 +2387 2075 0.400000 +2387 2181 0.400000 +2387 2191 0.400000 +2387 2219 0.400000 +2387 2291 0.400000 +2387 2297 0.400000 +2387 2319 0.400000 +2387 2358 0.400000 +2387 2444 0.400000 +2387 2461 0.400000 +2387 2617 0.400000 +2387 2743 0.400000 +2387 2985 0.400000 +2387 3038 0.400000 +2387 3087 0.400000 +2387 3112 0.400000 +2387 3125 0.400000 +2387 3129 0.400000 +2387 3188 0.400000 +2388 34 0.400000 +2388 49 0.400000 +2388 58 0.400000 +2388 114 0.400000 +2388 182 0.400000 +2388 216 0.400000 +2388 269 0.400000 +2388 315 0.400000 +2388 347 0.400000 +2388 362 0.400000 +2388 382 0.400000 +2388 455 0.400000 +2388 474 0.400000 +2388 610 0.400000 +2388 702 0.400000 +2388 739 0.400000 +2388 778 0.400000 +2388 815 0.400000 +2388 825 0.400000 +2388 839 0.400000 +2388 841 0.400000 +2388 879 0.400000 +2388 1024 0.400000 +2388 1038 0.400000 +2388 1156 0.400000 +2388 1162 0.400000 +2388 1207 0.400000 +2388 1227 0.400000 +2388 1300 0.400000 +2388 1330 0.400000 +2388 1396 0.400000 +2388 1503 0.400000 +2388 1548 0.400000 +2388 1551 0.400000 +2388 1558 0.400000 +2388 1625 0.400000 +2388 1631 0.400000 +2388 1646 0.400000 +2388 1692 0.400000 +2388 1703 0.400000 +2388 1736 0.400000 +2388 1756 0.400000 +2388 1823 0.400000 +2388 1838 0.400000 +2388 1895 0.400000 +2388 2201 0.400000 +2388 2224 0.400000 +2388 2356 0.400000 +2388 2371 0.400000 +2388 2382 0.400000 +2388 2397 0.400000 +2388 2468 0.400000 +2388 2498 0.400000 +2388 2516 0.400000 +2388 2568 0.400000 +2388 2573 0.400000 +2388 2626 0.400000 +2388 2639 0.400000 +2388 2648 0.400000 +2388 2689 0.400000 +2388 2775 0.400000 +2388 2798 0.400000 +2388 2800 0.400000 +2388 2840 0.400000 +2388 2852 0.400000 +2388 2865 0.400000 +2388 3050 0.400000 +2388 3092 0.400000 +2388 3130 0.400000 +2388 3162 0.400000 +2389 47 0.400000 +2389 62 0.400000 +2389 166 0.400000 +2389 183 0.400000 +2389 185 0.400000 +2389 226 0.400000 +2389 256 0.400000 +2389 286 0.400000 +2389 298 0.400000 +2389 316 0.400000 +2389 404 0.400000 +2389 613 0.400000 +2389 698 0.400000 +2389 704 0.400000 +2389 785 0.400000 +2389 1041 0.400000 +2389 1042 0.400000 +2389 1107 0.400000 +2389 1147 0.400000 +2389 1190 0.400000 +2389 1294 0.400000 +2389 1301 0.400000 +2389 1422 0.400000 +2389 1432 0.400000 +2389 1474 0.400000 +2389 1506 0.400000 +2389 1533 0.400000 +2389 1565 0.400000 +2389 1621 0.400000 +2389 1626 0.400000 +2389 1631 0.400000 +2389 1723 0.400000 +2389 1748 0.400000 +2389 1792 0.400000 +2389 1813 0.400000 +2389 1832 0.400000 +2389 1873 0.400000 +2389 1957 0.400000 +2389 2044 0.400000 +2389 2116 0.400000 +2389 2160 0.400000 +2389 2191 0.400000 +2389 2196 0.400000 +2389 2265 0.400000 +2389 2349 0.400000 +2389 2458 0.400000 +2389 2478 0.400000 +2389 2579 0.400000 +2389 2614 0.400000 +2389 2747 0.400000 +2389 2759 0.400000 +2389 2808 0.400000 +2389 2945 0.400000 +2389 2947 0.400000 +2389 2963 0.400000 +2389 3031 0.400000 +2389 3045 0.400000 +2389 3067 0.400000 +2389 3129 0.400000 +2389 3188 0.400000 +2389 3197 0.400000 +2390 28 0.400000 +2390 50 0.400000 +2390 62 0.400000 +2390 168 0.400000 +2390 182 0.400000 +2390 451 0.400000 +2390 538 0.400000 +2390 548 0.400000 +2390 558 0.400000 +2390 625 0.400000 +2390 659 0.400000 +2390 841 0.400000 +2390 845 0.400000 +2390 857 0.400000 +2390 897 0.400000 +2390 936 0.400000 +2390 986 0.400000 +2390 1047 0.400000 +2390 1064 0.400000 +2390 1101 0.400000 +2390 1272 0.400000 +2390 1300 0.400000 +2390 1462 0.400000 +2390 1475 0.400000 +2390 1485 0.400000 +2390 1499 0.400000 +2390 1535 0.400000 +2390 1566 0.400000 +2390 1593 0.400000 +2390 1594 0.400000 +2390 1620 0.400000 +2390 1648 0.400000 +2390 1663 0.400000 +2390 1678 0.400000 +2390 1689 0.400000 +2390 1722 0.400000 +2390 1832 0.400000 +2390 1898 0.400000 +2390 1918 0.400000 +2390 1924 0.400000 +2390 2034 0.400000 +2390 2110 0.400000 +2390 2137 0.400000 +2390 2154 0.400000 +2390 2185 0.400000 +2390 2284 0.400000 +2390 2295 0.400000 +2390 2349 0.400000 +2390 2397 0.400000 +2390 2415 0.400000 +2390 2479 0.400000 +2390 2547 0.400000 +2390 2670 0.400000 +2390 2703 0.400000 +2390 2707 0.400000 +2390 2729 0.400000 +2390 2734 0.400000 +2390 2783 0.400000 +2390 2850 0.400000 +2390 2971 0.400000 +2390 3021 0.400000 +2390 3135 0.400000 +2390 3161 0.400000 +2391 57 0.400000 +2391 61 0.400000 +2391 111 0.400000 +2391 194 0.400000 +2391 246 0.400000 +2391 255 0.400000 +2391 295 0.400000 +2391 403 0.400000 +2391 482 0.400000 +2391 487 0.400000 +2391 505 0.400000 +2391 584 0.400000 +2391 615 0.400000 +2391 639 0.400000 +2391 686 0.400000 +2391 731 0.400000 +2391 838 0.400000 +2391 870 0.400000 +2391 915 0.400000 +2391 1001 0.400000 +2391 1130 0.400000 +2391 1149 0.400000 +2391 1169 0.400000 +2391 1174 0.400000 +2391 1181 0.400000 +2391 1183 0.400000 +2391 1201 0.400000 +2391 1270 0.400000 +2391 1350 0.400000 +2391 1441 0.400000 +2391 1448 0.400000 +2391 1475 0.400000 +2391 1513 0.400000 +2391 1531 0.400000 +2391 1535 0.400000 +2391 1616 0.400000 +2391 1763 0.400000 +2391 1797 0.400000 +2391 1817 0.400000 +2391 1840 0.400000 +2391 1871 0.400000 +2391 1875 0.400000 +2391 2005 0.400000 +2391 2016 0.400000 +2391 2035 0.400000 +2391 2075 0.400000 +2391 2116 0.400000 +2391 2156 0.400000 +2391 2159 0.400000 +2391 2323 0.400000 +2391 2389 0.400000 +2391 2453 0.400000 +2391 2582 0.400000 +2391 2644 0.400000 +2391 2724 0.400000 +2391 2776 0.400000 +2391 2818 0.400000 +2391 3032 0.400000 +2391 3040 0.400000 +2391 3061 0.400000 +2391 3080 0.400000 +2391 3093 0.400000 +2391 3098 0.400000 +2391 3177 0.400000 +2392 18 0.400000 +2392 27 0.400000 +2392 58 0.400000 +2392 60 0.400000 +2392 113 0.400000 +2392 125 0.400000 +2392 165 0.400000 +2392 208 0.400000 +2392 322 0.400000 +2392 392 0.400000 +2392 415 0.400000 +2392 475 0.400000 +2392 486 0.400000 +2392 505 0.400000 +2392 530 0.400000 +2392 587 0.400000 +2392 611 0.400000 +2392 631 0.400000 +2392 643 0.400000 +2392 648 0.400000 +2392 673 0.400000 +2392 683 0.400000 +2392 715 0.400000 +2392 798 0.400000 +2392 824 0.400000 +2392 855 0.400000 +2392 880 0.400000 +2392 913 0.400000 +2392 967 0.400000 +2392 1041 0.400000 +2392 1076 0.400000 +2392 1153 0.400000 +2392 1267 0.400000 +2392 1380 0.400000 +2392 1418 0.400000 +2392 1426 0.400000 +2392 1500 0.400000 +2392 1592 0.400000 +2392 1611 0.400000 +2392 1646 0.400000 +2392 1688 0.400000 +2392 1701 0.400000 +2392 1732 0.400000 +2392 1740 0.400000 +2392 1937 0.400000 +2392 2058 0.400000 +2392 2216 0.400000 +2392 2234 0.400000 +2392 2347 0.400000 +2392 2375 0.400000 +2392 2594 0.400000 +2392 2608 0.400000 +2392 2644 0.400000 +2392 2671 0.400000 +2392 2694 0.400000 +2392 2727 0.400000 +2392 2736 0.400000 +2392 2826 0.400000 +2392 2874 0.400000 +2392 2875 0.400000 +2392 2913 0.400000 +2392 2965 0.400000 +2392 3036 0.400000 +2392 3071 0.400000 +2392 3122 0.400000 +2392 3135 0.400000 +2392 3139 0.400000 +2392 3161 0.400000 +2393 24 0.400000 +2393 49 0.400000 +2393 79 0.400000 +2393 82 0.400000 +2393 101 0.400000 +2393 175 0.400000 +2393 274 0.400000 +2393 280 0.400000 +2393 356 0.400000 +2393 469 0.400000 +2393 518 0.400000 +2393 781 0.400000 +2393 790 0.400000 +2393 824 0.400000 +2393 909 0.400000 +2393 936 0.400000 +2393 956 0.400000 +2393 963 0.400000 +2393 983 0.400000 +2393 1257 0.400000 +2393 1259 0.400000 +2393 1396 0.400000 +2393 1404 0.400000 +2393 1406 0.400000 +2393 1421 0.400000 +2393 1443 0.400000 +2393 1448 0.400000 +2393 1507 0.400000 +2393 1545 0.400000 +2393 1733 0.400000 +2393 1742 0.400000 +2393 1744 0.400000 +2393 1858 0.400000 +2393 1859 0.400000 +2393 1884 0.400000 +2393 1933 0.400000 +2393 1936 0.400000 +2393 1955 0.400000 +2393 1998 0.400000 +2393 2036 0.400000 +2393 2063 0.400000 +2393 2201 0.400000 +2393 2292 0.400000 +2393 2303 0.400000 +2393 2314 0.400000 +2393 2515 0.400000 +2393 2596 0.400000 +2393 2604 0.400000 +2393 2648 0.400000 +2393 2683 0.400000 +2393 2709 0.400000 +2393 2851 0.400000 +2393 2871 0.400000 +2393 2881 0.400000 +2393 2885 0.400000 +2393 2923 0.400000 +2393 2929 0.400000 +2393 2945 0.400000 +2393 3199 0.400000 +2394 82 0.400000 +2394 118 0.400000 +2394 173 0.400000 +2394 175 0.400000 +2394 189 0.400000 +2394 191 0.400000 +2394 218 0.400000 +2394 358 0.400000 +2394 369 0.400000 +2394 399 0.400000 +2394 471 0.400000 +2394 546 0.400000 +2394 664 0.400000 +2394 785 0.400000 +2394 829 0.400000 +2394 905 0.400000 +2394 934 0.400000 +2394 1097 0.400000 +2394 1290 0.400000 +2394 1321 0.400000 +2394 1470 0.400000 +2394 1479 0.400000 +2394 1504 0.400000 +2394 1516 0.400000 +2394 1548 0.400000 +2394 1625 0.400000 +2394 1633 0.400000 +2394 1788 0.400000 +2394 1885 0.400000 +2394 1988 0.400000 +2394 2066 0.400000 +2394 2086 0.400000 +2394 2170 0.400000 +2394 2276 0.400000 +2394 2443 0.400000 +2394 2460 0.400000 +2394 2483 0.400000 +2394 2572 0.400000 +2394 2586 0.400000 +2394 2822 0.400000 +2394 2947 0.400000 +2394 2965 0.400000 +2394 2983 0.400000 +2394 3025 0.400000 +2394 3052 0.400000 +2394 3125 0.400000 +2394 3150 0.400000 +2395 17 0.400000 +2395 97 0.400000 +2395 200 0.400000 +2395 229 0.400000 +2395 303 0.400000 +2395 340 0.400000 +2395 413 0.400000 +2395 439 0.400000 +2395 506 0.400000 +2395 509 0.400000 +2395 535 0.400000 +2395 578 0.400000 +2395 674 0.400000 +2395 695 0.400000 +2395 718 0.400000 +2395 850 0.400000 +2395 880 0.400000 +2395 893 0.400000 +2395 941 0.400000 +2395 983 0.400000 +2395 1026 0.400000 +2395 1034 0.400000 +2395 1069 0.400000 +2395 1098 0.400000 +2395 1126 0.400000 +2395 1138 0.400000 +2395 1151 0.400000 +2395 1152 0.400000 +2395 1160 0.400000 +2395 1170 0.400000 +2395 1236 0.400000 +2395 1252 0.400000 +2395 1299 0.400000 +2395 1301 0.400000 +2395 1325 0.400000 +2395 1414 0.400000 +2395 1415 0.400000 +2395 1484 0.400000 +2395 1515 0.400000 +2395 1556 0.400000 +2395 1606 0.400000 +2395 1618 0.400000 +2395 1624 0.400000 +2395 1752 0.400000 +2395 1758 0.400000 +2395 1793 0.400000 +2395 1820 0.400000 +2395 1832 0.400000 +2395 1946 0.400000 +2395 2030 0.400000 +2395 2041 0.400000 +2395 2044 0.400000 +2395 2070 0.400000 +2395 2087 0.400000 +2395 2103 0.400000 +2395 2108 0.400000 +2395 2208 0.400000 +2395 2241 0.400000 +2395 2265 0.400000 +2395 2267 0.400000 +2395 2289 0.400000 +2395 2368 0.400000 +2395 2413 0.400000 +2395 2473 0.400000 +2395 2528 0.400000 +2395 2532 0.400000 +2395 2553 0.400000 +2395 2644 0.400000 +2395 2815 0.400000 +2395 2829 0.400000 +2395 2884 0.400000 +2395 3000 0.400000 +2395 3115 0.400000 +2396 61 0.400000 +2396 67 0.400000 +2396 71 0.400000 +2396 112 0.400000 +2396 203 0.400000 +2396 208 0.400000 +2396 223 0.400000 +2396 254 0.400000 +2396 334 0.400000 +2396 351 0.400000 +2396 389 0.400000 +2396 438 0.400000 +2396 471 0.400000 +2396 477 0.400000 +2396 480 0.400000 +2396 611 0.400000 +2396 657 0.400000 +2396 808 0.400000 +2396 845 0.400000 +2396 855 0.400000 +2396 858 0.400000 +2396 884 0.400000 +2396 903 0.400000 +2396 947 0.400000 +2396 1058 0.400000 +2396 1071 0.400000 +2396 1093 0.400000 +2396 1136 0.400000 +2396 1147 0.400000 +2396 1257 0.400000 +2396 1266 0.400000 +2396 1327 0.400000 +2396 1414 0.400000 +2396 1484 0.400000 +2396 1495 0.400000 +2396 1571 0.400000 +2396 1662 0.400000 +2396 1678 0.400000 +2396 1785 0.400000 +2396 1810 0.400000 +2396 1900 0.400000 +2396 1933 0.400000 +2396 2161 0.400000 +2396 2167 0.400000 +2396 2206 0.400000 +2396 2212 0.400000 +2396 2265 0.400000 +2396 2274 0.400000 +2396 2350 0.400000 +2396 2386 0.400000 +2396 2422 0.400000 +2396 2556 0.400000 +2396 2571 0.400000 +2396 2582 0.400000 +2396 2686 0.400000 +2396 2717 0.400000 +2396 2762 0.400000 +2396 2901 0.400000 +2396 2904 0.400000 +2396 2920 0.400000 +2396 2951 0.400000 +2396 2986 0.400000 +2396 3001 0.400000 +2396 3016 0.400000 +2396 3058 0.400000 +2396 3064 0.400000 +2396 3132 0.400000 +2396 3155 0.400000 +2397 4 0.400000 +2397 91 0.400000 +2397 110 0.400000 +2397 202 0.400000 +2397 292 0.400000 +2397 351 0.400000 +2397 357 0.400000 +2397 361 0.400000 +2397 432 0.400000 +2397 545 0.400000 +2397 587 0.400000 +2397 592 0.400000 +2397 613 0.400000 +2397 619 0.400000 +2397 727 0.400000 +2397 733 0.400000 +2397 794 0.400000 +2397 1056 0.400000 +2397 1066 0.400000 +2397 1133 0.400000 +2397 1146 0.400000 +2397 1254 0.400000 +2397 1315 0.400000 +2397 1321 0.400000 +2397 1408 0.400000 +2397 1419 0.400000 +2397 1455 0.400000 +2397 1472 0.400000 +2397 1478 0.400000 +2397 1598 0.400000 +2397 1642 0.400000 +2397 1724 0.400000 +2397 1741 0.400000 +2397 1754 0.400000 +2397 1797 0.400000 +2397 1810 0.400000 +2397 1830 0.400000 +2397 1863 0.400000 +2397 1942 0.400000 +2397 1943 0.400000 +2397 1992 0.400000 +2397 2080 0.400000 +2397 2086 0.400000 +2397 2168 0.400000 +2397 2287 0.400000 +2397 2365 0.400000 +2397 2431 0.400000 +2397 2446 0.400000 +2397 2449 0.400000 +2397 2458 0.400000 +2397 2666 0.400000 +2397 2685 0.400000 +2397 2709 0.400000 +2397 2741 0.400000 +2397 2754 0.400000 +2397 2761 0.400000 +2397 2854 0.400000 +2397 3006 0.400000 +2397 3151 0.400000 +2397 3153 0.400000 +2398 79 0.400000 +2398 138 0.400000 +2398 215 0.400000 +2398 311 0.400000 +2398 333 0.400000 +2398 385 0.400000 +2398 404 0.400000 +2398 435 0.400000 +2398 456 0.400000 +2398 548 0.400000 +2398 643 0.400000 +2398 688 0.400000 +2398 692 0.400000 +2398 702 0.400000 +2398 718 0.400000 +2398 754 0.400000 +2398 784 0.400000 +2398 850 0.400000 +2398 951 0.400000 +2398 974 0.400000 +2398 1014 0.400000 +2398 1059 0.400000 +2398 1060 0.400000 +2398 1117 0.400000 +2398 1124 0.400000 +2398 1170 0.400000 +2398 1175 0.400000 +2398 1260 0.400000 +2398 1272 0.400000 +2398 1333 0.400000 +2398 1348 0.400000 +2398 1366 0.400000 +2398 1445 0.400000 +2398 1497 0.400000 +2398 1537 0.400000 +2398 1547 0.400000 +2398 1563 0.400000 +2398 1572 0.400000 +2398 1592 0.400000 +2398 1639 0.400000 +2398 1716 0.400000 +2398 1720 0.400000 +2398 1737 0.400000 +2398 1876 0.400000 +2398 1910 0.400000 +2398 1946 0.400000 +2398 1965 0.400000 +2398 2089 0.400000 +2398 2142 0.400000 +2398 2158 0.400000 +2398 2169 0.400000 +2398 2232 0.400000 +2398 2251 0.400000 +2398 2320 0.400000 +2398 2358 0.400000 +2398 2427 0.400000 +2398 2616 0.400000 +2398 2624 0.400000 +2398 2653 0.400000 +2398 2684 0.400000 +2398 2696 0.400000 +2398 2697 0.400000 +2398 2744 0.400000 +2398 2793 0.400000 +2398 2847 0.400000 +2398 2926 0.400000 +2398 2951 0.400000 +2398 3011 0.400000 +2398 3035 0.400000 +2398 3108 0.400000 +2398 3162 0.400000 +2398 3190 0.400000 +2398 3195 0.400000 +2399 123 0.400000 +2399 183 0.400000 +2399 263 0.400000 +2399 268 0.400000 +2399 312 0.400000 +2399 345 0.400000 +2399 354 0.400000 +2399 485 0.400000 +2399 540 0.400000 +2399 556 0.400000 +2399 571 0.400000 +2399 581 0.400000 +2399 603 0.400000 +2399 631 0.400000 +2399 633 0.400000 +2399 781 0.400000 +2399 844 0.400000 +2399 909 0.400000 +2399 938 0.400000 +2399 969 0.400000 +2399 1079 0.400000 +2399 1106 0.400000 +2399 1141 0.400000 +2399 1206 0.400000 +2399 1208 0.400000 +2399 1227 0.400000 +2399 1297 0.400000 +2399 1337 0.400000 +2399 1364 0.400000 +2399 1525 0.400000 +2399 1526 0.400000 +2399 1534 0.400000 +2399 1553 0.400000 +2399 1576 0.400000 +2399 1736 0.400000 +2399 1836 0.400000 +2399 1920 0.400000 +2399 1966 0.400000 +2399 2080 0.400000 +2399 2249 0.400000 +2399 2293 0.400000 +2399 2333 0.400000 +2399 2438 0.400000 +2399 2441 0.400000 +2399 2572 0.400000 +2399 2596 0.400000 +2399 2622 0.400000 +2399 2654 0.400000 +2399 2665 0.400000 +2399 2769 0.400000 +2399 2884 0.400000 +2399 2893 0.400000 +2399 2905 0.400000 +2399 3019 0.400000 +2399 3046 0.400000 +2399 3162 0.400000 +2400 148 0.400000 +2400 231 0.400000 +2400 241 0.400000 +2400 364 0.400000 +2400 470 0.400000 +2400 585 0.400000 +2400 617 0.400000 +2400 638 0.400000 +2400 674 0.400000 +2400 730 0.400000 +2400 881 0.400000 +2400 926 0.400000 +2400 927 0.400000 +2400 958 0.400000 +2400 1026 0.400000 +2400 1048 0.400000 +2400 1092 0.400000 +2400 1242 0.400000 +2400 1266 0.400000 +2400 1336 0.400000 +2400 1406 0.400000 +2400 1460 0.400000 +2400 1502 0.400000 +2400 1508 0.400000 +2400 1509 0.400000 +2400 1645 0.400000 +2400 1659 0.400000 +2400 1684 0.400000 +2400 1843 0.400000 +2400 2018 0.400000 +2400 2125 0.400000 +2400 2137 0.400000 +2400 2155 0.400000 +2400 2187 0.400000 +2400 2247 0.400000 +2400 2408 0.400000 +2400 2446 0.400000 +2400 2455 0.400000 +2400 2531 0.400000 +2400 2545 0.400000 +2400 2687 0.400000 +2400 2728 0.400000 +2400 2743 0.400000 +2400 2781 0.400000 +2400 2790 0.400000 +2400 2804 0.400000 +2400 3138 0.400000 +2400 3193 0.400000 +2401 150 0.400000 +2401 154 0.400000 +2401 159 0.400000 +2401 190 0.400000 +2401 296 0.400000 +2401 405 0.400000 +2401 412 0.400000 +2401 456 0.400000 +2401 490 0.400000 +2401 496 0.400000 +2401 524 0.400000 +2401 567 0.400000 +2401 571 0.400000 +2401 789 0.400000 +2401 834 0.400000 +2401 838 0.400000 +2401 844 0.400000 +2401 878 0.400000 +2401 881 0.400000 +2401 942 0.400000 +2401 951 0.400000 +2401 960 0.400000 +2401 1143 0.400000 +2401 1196 0.400000 +2401 1220 0.400000 +2401 1353 0.400000 +2401 1474 0.400000 +2401 1627 0.400000 +2401 1636 0.400000 +2401 1752 0.400000 +2401 1784 0.400000 +2401 1787 0.400000 +2401 1901 0.400000 +2401 1936 0.400000 +2401 1945 0.400000 +2401 2190 0.400000 +2401 2257 0.400000 +2401 2266 0.400000 +2401 2401 0.400000 +2401 2409 0.400000 +2401 2433 0.400000 +2401 2449 0.400000 +2401 2509 0.400000 +2401 2548 0.400000 +2401 2611 0.400000 +2401 2685 0.400000 +2401 2933 0.400000 +2401 3012 0.400000 +2401 3055 0.400000 +2401 3079 0.400000 +2401 3084 0.400000 +2402 105 0.400000 +2402 266 0.400000 +2402 278 0.400000 +2402 281 0.400000 +2402 306 0.400000 +2402 316 0.400000 +2402 464 0.400000 +2402 475 0.400000 +2402 497 0.400000 +2402 528 0.400000 +2402 533 0.400000 +2402 536 0.400000 +2402 545 0.400000 +2402 641 0.400000 +2402 730 0.400000 +2402 748 0.400000 +2402 757 0.400000 +2402 763 0.400000 +2402 770 0.400000 +2402 799 0.400000 +2402 807 0.400000 +2402 818 0.400000 +2402 976 0.400000 +2402 1094 0.400000 +2402 1106 0.400000 +2402 1157 0.400000 +2402 1160 0.400000 +2402 1196 0.400000 +2402 1305 0.400000 +2402 1414 0.400000 +2402 1456 0.400000 +2402 1485 0.400000 +2402 1595 0.400000 +2402 1601 0.400000 +2402 1612 0.400000 +2402 1642 0.400000 +2402 1646 0.400000 +2402 1725 0.400000 +2402 1729 0.400000 +2402 1734 0.400000 +2402 1751 0.400000 +2402 1815 0.400000 +2402 1821 0.400000 +2402 1826 0.400000 +2402 1847 0.400000 +2402 1924 0.400000 +2402 1956 0.400000 +2402 1962 0.400000 +2402 2089 0.400000 +2402 2094 0.400000 +2402 2102 0.400000 +2402 2153 0.400000 +2402 2168 0.400000 +2402 2169 0.400000 +2402 2197 0.400000 +2402 2271 0.400000 +2402 2371 0.400000 +2402 2391 0.400000 +2402 2398 0.400000 +2402 2415 0.400000 +2402 2425 0.400000 +2402 2539 0.400000 +2402 2540 0.400000 +2402 2599 0.400000 +2402 2616 0.400000 +2402 2653 0.400000 +2402 2724 0.400000 +2402 2742 0.400000 +2402 2759 0.400000 +2402 2809 0.400000 +2402 2845 0.400000 +2402 2859 0.400000 +2402 3053 0.400000 +2402 3073 0.400000 +2402 3092 0.400000 +2402 3122 0.400000 +2402 3190 0.400000 +2403 235 0.400000 +2403 236 0.400000 +2403 292 0.400000 +2403 397 0.400000 +2403 429 0.400000 +2403 537 0.400000 +2403 568 0.400000 +2403 582 0.400000 +2403 615 0.400000 +2403 648 0.400000 +2403 792 0.400000 +2403 804 0.400000 +2403 811 0.400000 +2403 852 0.400000 +2403 895 0.400000 +2403 903 0.400000 +2403 1001 0.400000 +2403 1063 0.400000 +2403 1081 0.400000 +2403 1089 0.400000 +2403 1115 0.400000 +2403 1165 0.400000 +2403 1174 0.400000 +2403 1324 0.400000 +2403 1356 0.400000 +2403 1364 0.400000 +2403 1480 0.400000 +2403 1566 0.400000 +2403 1648 0.400000 +2403 1746 0.400000 +2403 1759 0.400000 +2403 1791 0.400000 +2403 1828 0.400000 +2403 1858 0.400000 +2403 1964 0.400000 +2403 2102 0.400000 +2403 2139 0.400000 +2403 2223 0.400000 +2403 2258 0.400000 +2403 2274 0.400000 +2403 2276 0.400000 +2403 2326 0.400000 +2403 2520 0.400000 +2403 2584 0.400000 +2403 2625 0.400000 +2403 2699 0.400000 +2403 2710 0.400000 +2403 2721 0.400000 +2403 2854 0.400000 +2403 2892 0.400000 +2403 2913 0.400000 +2403 3032 0.400000 +2403 3047 0.400000 +2403 3058 0.400000 +2403 3070 0.400000 +2403 3090 0.400000 +2404 21 0.400000 +2404 57 0.400000 +2404 96 0.400000 +2404 166 0.400000 +2404 177 0.400000 +2404 178 0.400000 +2404 196 0.400000 +2404 266 0.400000 +2404 314 0.400000 +2404 319 0.400000 +2404 359 0.400000 +2404 367 0.400000 +2404 549 0.400000 +2404 597 0.400000 +2404 606 0.400000 +2404 626 0.400000 +2404 683 0.400000 +2404 711 0.400000 +2404 761 0.400000 +2404 764 0.400000 +2404 765 0.400000 +2404 932 0.400000 +2404 1092 0.400000 +2404 1274 0.400000 +2404 1288 0.400000 +2404 1406 0.400000 +2404 1409 0.400000 +2404 1459 0.400000 +2404 1480 0.400000 +2404 1563 0.400000 +2404 1583 0.400000 +2404 1670 0.400000 +2404 1731 0.400000 +2404 1743 0.400000 +2404 1861 0.400000 +2404 1898 0.400000 +2404 1955 0.400000 +2404 1956 0.400000 +2404 2033 0.400000 +2404 2127 0.400000 +2404 2137 0.400000 +2404 2161 0.400000 +2404 2223 0.400000 +2404 2282 0.400000 +2404 2313 0.400000 +2404 2334 0.400000 +2404 2482 0.400000 +2404 2534 0.400000 +2404 2545 0.400000 +2404 2579 0.400000 +2404 2627 0.400000 +2404 2674 0.400000 +2404 2799 0.400000 +2404 2832 0.400000 +2404 2903 0.400000 +2404 2913 0.400000 +2404 2925 0.400000 +2404 2999 0.400000 +2404 3064 0.400000 +2404 3121 0.400000 +2404 3158 0.400000 +2404 3175 0.400000 +2405 20 0.400000 +2405 64 0.400000 +2405 128 0.400000 +2405 158 0.400000 +2405 202 0.400000 +2405 210 0.400000 +2405 240 0.400000 +2405 273 0.400000 +2405 299 0.400000 +2405 363 0.400000 +2405 404 0.400000 +2405 460 0.400000 +2405 463 0.400000 +2405 485 0.400000 +2405 627 0.400000 +2405 719 0.400000 +2405 803 0.400000 +2405 864 0.400000 +2405 873 0.400000 +2405 913 0.400000 +2405 976 0.400000 +2405 1031 0.400000 +2405 1100 0.400000 +2405 1127 0.400000 +2405 1175 0.400000 +2405 1176 0.400000 +2405 1185 0.400000 +2405 1224 0.400000 +2405 1295 0.400000 +2405 1330 0.400000 +2405 1362 0.400000 +2405 1377 0.400000 +2405 1482 0.400000 +2405 1556 0.400000 +2405 1744 0.400000 +2405 1784 0.400000 +2405 1797 0.400000 +2405 1895 0.400000 +2405 1898 0.400000 +2405 1963 0.400000 +2405 1969 0.400000 +2405 2098 0.400000 +2405 2131 0.400000 +2405 2167 0.400000 +2405 2172 0.400000 +2405 2179 0.400000 +2405 2205 0.400000 +2405 2436 0.400000 +2405 2465 0.400000 +2405 2499 0.400000 +2405 2509 0.400000 +2405 2537 0.400000 +2405 2542 0.400000 +2405 2654 0.400000 +2405 2656 0.400000 +2405 2745 0.400000 +2405 2791 0.400000 +2405 2849 0.400000 +2405 2944 0.400000 +2405 2953 0.400000 +2405 2986 0.400000 +2405 3025 0.400000 +2405 3102 0.400000 +2405 3175 0.400000 +2406 34 0.400000 +2406 36 0.400000 +2406 90 0.400000 +2406 128 0.400000 +2406 139 0.400000 +2406 144 0.400000 +2406 314 0.400000 +2406 370 0.400000 +2406 396 0.400000 +2406 458 0.400000 +2406 465 0.400000 +2406 528 0.400000 +2406 604 0.400000 +2406 687 0.400000 +2406 761 0.400000 +2406 777 0.400000 +2406 810 0.400000 +2406 822 0.400000 +2406 843 0.400000 +2406 854 0.400000 +2406 940 0.400000 +2406 980 0.400000 +2406 1010 0.400000 +2406 1060 0.400000 +2406 1097 0.400000 +2406 1131 0.400000 +2406 1140 0.400000 +2406 1205 0.400000 +2406 1244 0.400000 +2406 1321 0.400000 +2406 1342 0.400000 +2406 1348 0.400000 +2406 1355 0.400000 +2406 1418 0.400000 +2406 1448 0.400000 +2406 1554 0.400000 +2406 1648 0.400000 +2406 1681 0.400000 +2406 1872 0.400000 +2406 1880 0.400000 +2406 1885 0.400000 +2406 1922 0.400000 +2406 1991 0.400000 +2406 2002 0.400000 +2406 2077 0.400000 +2406 2118 0.400000 +2406 2199 0.400000 +2406 2221 0.400000 +2406 2346 0.400000 +2406 2434 0.400000 +2406 2537 0.400000 +2406 2670 0.400000 +2406 2672 0.400000 +2406 2673 0.400000 +2406 2689 0.400000 +2406 2706 0.400000 +2406 2714 0.400000 +2406 2730 0.400000 +2406 2767 0.400000 +2406 2835 0.400000 +2406 2856 0.400000 +2406 2875 0.400000 +2406 2910 0.400000 +2406 2919 0.400000 +2406 2936 0.400000 +2406 3002 0.400000 +2406 3161 0.400000 +2406 3172 0.400000 +2406 3188 0.400000 +2406 3200 0.400000 +2407 102 0.400000 +2407 109 0.400000 +2407 181 0.400000 +2407 200 0.400000 +2407 210 0.400000 +2407 469 0.400000 +2407 636 0.400000 +2407 684 0.400000 +2407 731 0.400000 +2407 752 0.400000 +2407 818 0.400000 +2407 860 0.400000 +2407 862 0.400000 +2407 875 0.400000 +2407 877 0.400000 +2407 1001 0.400000 +2407 1018 0.400000 +2407 1085 0.400000 +2407 1116 0.400000 +2407 1222 0.400000 +2407 1257 0.400000 +2407 1276 0.400000 +2407 1286 0.400000 +2407 1287 0.400000 +2407 1322 0.400000 +2407 1340 0.400000 +2407 1390 0.400000 +2407 1468 0.400000 +2407 1515 0.400000 +2407 1736 0.400000 +2407 1770 0.400000 +2407 1790 0.400000 +2407 1829 0.400000 +2407 1868 0.400000 +2407 1921 0.400000 +2407 1962 0.400000 +2407 1977 0.400000 +2407 2006 0.400000 +2407 2126 0.400000 +2407 2186 0.400000 +2407 2201 0.400000 +2407 2203 0.400000 +2407 2219 0.400000 +2407 2226 0.400000 +2407 2246 0.400000 +2407 2344 0.400000 +2407 2355 0.400000 +2407 2433 0.400000 +2407 2470 0.400000 +2407 2514 0.400000 +2407 2518 0.400000 +2407 2640 0.400000 +2407 2665 0.400000 +2407 2673 0.400000 +2407 2696 0.400000 +2407 2730 0.400000 +2407 2748 0.400000 +2407 2798 0.400000 +2407 2801 0.400000 +2407 2816 0.400000 +2407 2851 0.400000 +2407 2858 0.400000 +2407 3127 0.400000 +2407 3162 0.400000 +2407 3198 0.400000 +2408 51 0.400000 +2408 258 0.400000 +2408 282 0.400000 +2408 296 0.400000 +2408 303 0.400000 +2408 378 0.400000 +2408 406 0.400000 +2408 407 0.400000 +2408 426 0.400000 +2408 478 0.400000 +2408 571 0.400000 +2408 586 0.400000 +2408 606 0.400000 +2408 649 0.400000 +2408 848 0.400000 +2408 864 0.400000 +2408 904 0.400000 +2408 937 0.400000 +2408 965 0.400000 +2408 1034 0.400000 +2408 1043 0.400000 +2408 1059 0.400000 +2408 1075 0.400000 +2408 1197 0.400000 +2408 1216 0.400000 +2408 1256 0.400000 +2408 1266 0.400000 +2408 1326 0.400000 +2408 1456 0.400000 +2408 1553 0.400000 +2408 1557 0.400000 +2408 1632 0.400000 +2408 1653 0.400000 +2408 1692 0.400000 +2408 1758 0.400000 +2408 1907 0.400000 +2408 1916 0.400000 +2408 1919 0.400000 +2408 1959 0.400000 +2408 1973 0.400000 +2408 2028 0.400000 +2408 2079 0.400000 +2408 2335 0.400000 +2408 2341 0.400000 +2408 2376 0.400000 +2408 2459 0.400000 +2408 2479 0.400000 +2408 2576 0.400000 +2408 2655 0.400000 +2408 2673 0.400000 +2408 2734 0.400000 +2408 2747 0.400000 +2408 2756 0.400000 +2408 2915 0.400000 +2408 2932 0.400000 +2408 3129 0.400000 +2408 3157 0.400000 +2409 83 0.400000 +2409 140 0.400000 +2409 165 0.400000 +2409 221 0.400000 +2409 235 0.400000 +2409 267 0.400000 +2409 282 0.400000 +2409 285 0.400000 +2409 294 0.400000 +2409 302 0.400000 +2409 323 0.400000 +2409 361 0.400000 +2409 416 0.400000 +2409 429 0.400000 +2409 432 0.400000 +2409 539 0.400000 +2409 545 0.400000 +2409 609 0.400000 +2409 652 0.400000 +2409 696 0.400000 +2409 787 0.400000 +2409 803 0.400000 +2409 832 0.400000 +2409 835 0.400000 +2409 886 0.400000 +2409 896 0.400000 +2409 897 0.400000 +2409 916 0.400000 +2409 1061 0.400000 +2409 1092 0.400000 +2409 1107 0.400000 +2409 1116 0.400000 +2409 1223 0.400000 +2409 1233 0.400000 +2409 1290 0.400000 +2409 1373 0.400000 +2409 1459 0.400000 +2409 1508 0.400000 +2409 1622 0.400000 +2409 1700 0.400000 +2409 1733 0.400000 +2409 1820 0.400000 +2409 1822 0.400000 +2409 1913 0.400000 +2409 1964 0.400000 +2409 1988 0.400000 +2409 2047 0.400000 +2409 2125 0.400000 +2409 2151 0.400000 +2409 2212 0.400000 +2409 2213 0.400000 +2409 2243 0.400000 +2409 2300 0.400000 +2409 2382 0.400000 +2409 2414 0.400000 +2409 2440 0.400000 +2409 2458 0.400000 +2409 2474 0.400000 +2409 2498 0.400000 +2409 2502 0.400000 +2409 2534 0.400000 +2409 2586 0.400000 +2409 2669 0.400000 +2409 2739 0.400000 +2409 2777 0.400000 +2409 2817 0.400000 +2409 2848 0.400000 +2409 2971 0.400000 +2409 2976 0.400000 +2409 3063 0.400000 +2409 3070 0.400000 +2409 3136 0.400000 +2409 3192 0.400000 +2410 12 0.400000 +2410 13 0.400000 +2410 39 0.400000 +2410 88 0.400000 +2410 320 0.400000 +2410 393 0.400000 +2410 484 0.400000 +2410 502 0.400000 +2410 556 0.400000 +2410 687 0.400000 +2410 742 0.400000 +2410 776 0.400000 +2410 880 0.400000 +2410 909 0.400000 +2410 930 0.400000 +2410 961 0.400000 +2410 966 0.400000 +2410 1039 0.400000 +2410 1082 0.400000 +2410 1102 0.400000 +2410 1107 0.400000 +2410 1180 0.400000 +2410 1192 0.400000 +2410 1193 0.400000 +2410 1256 0.400000 +2410 1380 0.400000 +2410 1388 0.400000 +2410 1460 0.400000 +2410 1477 0.400000 +2410 1505 0.400000 +2410 1530 0.400000 +2410 1545 0.400000 +2410 1593 0.400000 +2410 1660 0.400000 +2410 1674 0.400000 +2410 1728 0.400000 +2410 1772 0.400000 +2410 1785 0.400000 +2410 1799 0.400000 +2410 1821 0.400000 +2410 1852 0.400000 +2410 1873 0.400000 +2410 1898 0.400000 +2410 1956 0.400000 +2410 1992 0.400000 +2410 1997 0.400000 +2410 2012 0.400000 +2410 2029 0.400000 +2410 2098 0.400000 +2410 2140 0.400000 +2410 2217 0.400000 +2410 2299 0.400000 +2410 2344 0.400000 +2410 2387 0.400000 +2410 2391 0.400000 +2410 2428 0.400000 +2410 2622 0.400000 +2410 2696 0.400000 +2410 2750 0.400000 +2410 2845 0.400000 +2410 2909 0.400000 +2410 3055 0.400000 +2411 126 0.400000 +2411 228 0.400000 +2411 270 0.400000 +2411 288 0.400000 +2411 432 0.400000 +2411 445 0.400000 +2411 576 0.400000 +2411 622 0.400000 +2411 634 0.400000 +2411 660 0.400000 +2411 688 0.400000 +2411 784 0.400000 +2411 820 0.400000 +2411 937 0.400000 +2411 990 0.400000 +2411 1027 0.400000 +2411 1068 0.400000 +2411 1116 0.400000 +2411 1121 0.400000 +2411 1287 0.400000 +2411 1300 0.400000 +2411 1336 0.400000 +2411 1347 0.400000 +2411 1405 0.400000 +2411 1422 0.400000 +2411 1432 0.400000 +2411 1470 0.400000 +2411 1481 0.400000 +2411 1495 0.400000 +2411 1562 0.400000 +2411 1590 0.400000 +2411 1606 0.400000 +2411 1609 0.400000 +2411 1615 0.400000 +2411 1691 0.400000 +2411 1787 0.400000 +2411 1801 0.400000 +2411 1868 0.400000 +2411 1916 0.400000 +2411 1967 0.400000 +2411 2096 0.400000 +2411 2180 0.400000 +2411 2350 0.400000 +2411 2430 0.400000 +2411 2503 0.400000 +2411 2548 0.400000 +2411 2586 0.400000 +2411 2684 0.400000 +2411 2685 0.400000 +2411 2785 0.400000 +2411 2806 0.400000 +2411 2845 0.400000 +2411 2903 0.400000 +2412 54 0.400000 +2412 165 0.400000 +2412 203 0.400000 +2412 205 0.400000 +2412 278 0.400000 +2412 313 0.400000 +2412 402 0.400000 +2412 453 0.400000 +2412 588 0.400000 +2412 610 0.400000 +2412 718 0.400000 +2412 776 0.400000 +2412 777 0.400000 +2412 780 0.400000 +2412 809 0.400000 +2412 1002 0.400000 +2412 1009 0.400000 +2412 1056 0.400000 +2412 1075 0.400000 +2412 1209 0.400000 +2412 1336 0.400000 +2412 1375 0.400000 +2412 1423 0.400000 +2412 1429 0.400000 +2412 1442 0.400000 +2412 1449 0.400000 +2412 1650 0.400000 +2412 1719 0.400000 +2412 1782 0.400000 +2412 1819 0.400000 +2412 1835 0.400000 +2412 1924 0.400000 +2412 1941 0.400000 +2412 1943 0.400000 +2412 2070 0.400000 +2412 2201 0.400000 +2412 2275 0.400000 +2412 2305 0.400000 +2412 2373 0.400000 +2412 2662 0.400000 +2412 2681 0.400000 +2412 2701 0.400000 +2412 2842 0.400000 +2412 2891 0.400000 +2412 2935 0.400000 +2412 2980 0.400000 +2412 3010 0.400000 +2412 3016 0.400000 +2412 3042 0.400000 +2412 3182 0.400000 +2413 223 0.400000 +2413 305 0.400000 +2413 347 0.400000 +2413 460 0.400000 +2413 543 0.400000 +2413 569 0.400000 +2413 573 0.400000 +2413 621 0.400000 +2413 626 0.400000 +2413 640 0.400000 +2413 748 0.400000 +2413 767 0.400000 +2413 778 0.400000 +2413 954 0.400000 +2413 970 0.400000 +2413 1047 0.400000 +2413 1060 0.400000 +2413 1071 0.400000 +2413 1159 0.400000 +2413 1196 0.400000 +2413 1214 0.400000 +2413 1219 0.400000 +2413 1225 0.400000 +2413 1248 0.400000 +2413 1284 0.400000 +2413 1308 0.400000 +2413 1332 0.400000 +2413 1488 0.400000 +2413 1522 0.400000 +2413 1601 0.400000 +2413 1742 0.400000 +2413 1784 0.400000 +2413 1836 0.400000 +2413 1898 0.400000 +2413 1908 0.400000 +2413 1926 0.400000 +2413 2019 0.400000 +2413 2022 0.400000 +2413 2064 0.400000 +2413 2099 0.400000 +2413 2193 0.400000 +2413 2194 0.400000 +2413 2210 0.400000 +2413 2381 0.400000 +2413 2393 0.400000 +2413 2426 0.400000 +2413 2448 0.400000 +2413 2495 0.400000 +2413 2519 0.400000 +2413 2686 0.400000 +2413 2731 0.400000 +2413 2777 0.400000 +2413 2878 0.400000 +2413 2885 0.400000 +2413 2891 0.400000 +2413 2896 0.400000 +2413 2968 0.400000 +2413 3013 0.400000 +2413 3059 0.400000 +2413 3108 0.400000 +2413 3116 0.400000 +2413 3156 0.400000 +2413 3186 0.400000 +2413 3192 0.400000 +2414 21 0.400000 +2414 43 0.400000 +2414 45 0.400000 +2414 152 0.400000 +2414 175 0.400000 +2414 180 0.400000 +2414 187 0.400000 +2414 298 0.400000 +2414 584 0.400000 +2414 682 0.400000 +2414 719 0.400000 +2414 742 0.400000 +2414 772 0.400000 +2414 780 0.400000 +2414 882 0.400000 +2414 922 0.400000 +2414 954 0.400000 +2414 961 0.400000 +2414 986 0.400000 +2414 1026 0.400000 +2414 1049 0.400000 +2414 1090 0.400000 +2414 1125 0.400000 +2414 1226 0.400000 +2414 1237 0.400000 +2414 1294 0.400000 +2414 1314 0.400000 +2414 1397 0.400000 +2414 1475 0.400000 +2414 1640 0.400000 +2414 1643 0.400000 +2414 1659 0.400000 +2414 1664 0.400000 +2414 1714 0.400000 +2414 1972 0.400000 +2414 1993 0.400000 +2414 2039 0.400000 +2414 2090 0.400000 +2414 2092 0.400000 +2414 2186 0.400000 +2414 2374 0.400000 +2414 2606 0.400000 +2414 2660 0.400000 +2414 2736 0.400000 +2414 2817 0.400000 +2414 2819 0.400000 +2414 2898 0.400000 +2414 2917 0.400000 +2414 2923 0.400000 +2414 2953 0.400000 +2414 2985 0.400000 +2415 12 0.400000 +2415 18 0.400000 +2415 32 0.400000 +2415 53 0.400000 +2415 105 0.400000 +2415 123 0.400000 +2415 200 0.400000 +2415 215 0.400000 +2415 225 0.400000 +2415 240 0.400000 +2415 253 0.400000 +2415 379 0.400000 +2415 412 0.400000 +2415 420 0.400000 +2415 450 0.400000 +2415 508 0.400000 +2415 592 0.400000 +2415 620 0.400000 +2415 628 0.400000 +2415 630 0.400000 +2415 669 0.400000 +2415 743 0.400000 +2415 751 0.400000 +2415 835 0.400000 +2415 891 0.400000 +2415 920 0.400000 +2415 998 0.400000 +2415 1047 0.400000 +2415 1055 0.400000 +2415 1060 0.400000 +2415 1167 0.400000 +2415 1198 0.400000 +2415 1208 0.400000 +2415 1319 0.400000 +2415 1370 0.400000 +2415 1434 0.400000 +2415 1552 0.400000 +2415 1587 0.400000 +2415 1623 0.400000 +2415 1807 0.400000 +2415 1823 0.400000 +2415 1898 0.400000 +2415 1967 0.400000 +2415 1981 0.400000 +2415 2004 0.400000 +2415 2029 0.400000 +2415 2212 0.400000 +2415 2244 0.400000 +2415 2313 0.400000 +2415 2340 0.400000 +2415 2388 0.400000 +2415 2553 0.400000 +2415 2652 0.400000 +2415 2692 0.400000 +2415 2713 0.400000 +2415 2763 0.400000 +2415 2891 0.400000 +2415 2897 0.400000 +2415 2973 0.400000 +2415 3012 0.400000 +2415 3039 0.400000 +2415 3051 0.400000 +2415 3060 0.400000 +2415 3171 0.400000 +2416 21 0.400000 +2416 44 0.400000 +2416 103 0.400000 +2416 390 0.400000 +2416 411 0.400000 +2416 418 0.400000 +2416 508 0.400000 +2416 548 0.400000 +2416 627 0.400000 +2416 700 0.400000 +2416 797 0.400000 +2416 888 0.400000 +2416 923 0.400000 +2416 925 0.400000 +2416 933 0.400000 +2416 1268 0.400000 +2416 1322 0.400000 +2416 1326 0.400000 +2416 1332 0.400000 +2416 1433 0.400000 +2416 1439 0.400000 +2416 1452 0.400000 +2416 1523 0.400000 +2416 1570 0.400000 +2416 1572 0.400000 +2416 1634 0.400000 +2416 1663 0.400000 +2416 1699 0.400000 +2416 1732 0.400000 +2416 1736 0.400000 +2416 1738 0.400000 +2416 1741 0.400000 +2416 1769 0.400000 +2416 1841 0.400000 +2416 1892 0.400000 +2416 1908 0.400000 +2416 2006 0.400000 +2416 2178 0.400000 +2416 2294 0.400000 +2416 2326 0.400000 +2416 2422 0.400000 +2416 2429 0.400000 +2416 2452 0.400000 +2416 2465 0.400000 +2416 2537 0.400000 +2416 2638 0.400000 +2416 2647 0.400000 +2416 2728 0.400000 +2416 2734 0.400000 +2416 2787 0.400000 +2416 2822 0.400000 +2416 2874 0.400000 +2416 2879 0.400000 +2416 2943 0.400000 +2416 2971 0.400000 +2416 3043 0.400000 +2416 3125 0.400000 +2417 10 0.400000 +2417 24 0.400000 +2417 77 0.400000 +2417 183 0.400000 +2417 240 0.400000 +2417 246 0.400000 +2417 288 0.400000 +2417 354 0.400000 +2417 414 0.400000 +2417 486 0.400000 +2417 531 0.400000 +2417 534 0.400000 +2417 537 0.400000 +2417 543 0.400000 +2417 545 0.400000 +2417 621 0.400000 +2417 664 0.400000 +2417 816 0.400000 +2417 836 0.400000 +2417 837 0.400000 +2417 869 0.400000 +2417 870 0.400000 +2417 912 0.400000 +2417 1027 0.400000 +2417 1034 0.400000 +2417 1037 0.400000 +2417 1086 0.400000 +2417 1135 0.400000 +2417 1172 0.400000 +2417 1332 0.400000 +2417 1347 0.400000 +2417 1348 0.400000 +2417 1357 0.400000 +2417 1365 0.400000 +2417 1388 0.400000 +2417 1460 0.400000 +2417 1525 0.400000 +2417 1541 0.400000 +2417 1667 0.400000 +2417 1675 0.400000 +2417 1678 0.400000 +2417 1684 0.400000 +2417 1784 0.400000 +2417 1812 0.400000 +2417 1869 0.400000 +2417 1874 0.400000 +2417 1962 0.400000 +2417 1980 0.400000 +2417 1997 0.400000 +2417 2030 0.400000 +2417 2069 0.400000 +2417 2150 0.400000 +2417 2173 0.400000 +2417 2215 0.400000 +2417 2226 0.400000 +2417 2367 0.400000 +2417 2434 0.400000 +2417 2437 0.400000 +2417 2490 0.400000 +2417 2524 0.400000 +2417 2612 0.400000 +2417 2683 0.400000 +2417 2740 0.400000 +2417 2823 0.400000 +2417 2866 0.400000 +2417 2871 0.400000 +2417 2877 0.400000 +2417 2897 0.400000 +2417 2930 0.400000 +2417 2952 0.400000 +2417 2968 0.400000 +2417 2986 0.400000 +2417 3139 0.400000 +2417 3189 0.400000 +2418 6 0.400000 +2418 44 0.400000 +2418 110 0.400000 +2418 113 0.400000 +2418 120 0.400000 +2418 160 0.400000 +2418 231 0.400000 +2418 320 0.400000 +2418 396 0.400000 +2418 481 0.400000 +2418 540 0.400000 +2418 545 0.400000 +2418 561 0.400000 +2418 633 0.400000 +2418 701 0.400000 +2418 723 0.400000 +2418 737 0.400000 +2418 742 0.400000 +2418 937 0.400000 +2418 938 0.400000 +2418 1073 0.400000 +2418 1144 0.400000 +2418 1225 0.400000 +2418 1335 0.400000 +2418 1405 0.400000 +2418 1451 0.400000 +2418 1640 0.400000 +2418 1641 0.400000 +2418 1674 0.400000 +2418 1683 0.400000 +2418 1684 0.400000 +2418 1749 0.400000 +2418 1794 0.400000 +2418 1809 0.400000 +2418 1844 0.400000 +2418 1863 0.400000 +2418 1883 0.400000 +2418 1978 0.400000 +2418 2014 0.400000 +2418 2047 0.400000 +2418 2061 0.400000 +2418 2124 0.400000 +2418 2139 0.400000 +2418 2157 0.400000 +2418 2167 0.400000 +2418 2175 0.400000 +2418 2246 0.400000 +2418 2350 0.400000 +2418 2389 0.400000 +2418 2456 0.400000 +2418 2471 0.400000 +2418 2494 0.400000 +2418 2536 0.400000 +2418 2676 0.400000 +2418 2689 0.400000 +2418 2702 0.400000 +2418 2705 0.400000 +2418 2791 0.400000 +2418 2909 0.400000 +2418 2912 0.400000 +2418 2992 0.400000 +2418 3031 0.400000 +2418 3104 0.400000 +2418 3200 0.400000 +2419 114 0.400000 +2419 173 0.400000 +2419 187 0.400000 +2419 188 0.400000 +2419 215 0.400000 +2419 309 0.400000 +2419 402 0.400000 +2419 418 0.400000 +2419 535 0.400000 +2419 624 0.400000 +2419 648 0.400000 +2419 744 0.400000 +2419 833 0.400000 +2419 858 0.400000 +2419 943 0.400000 +2419 955 0.400000 +2419 1011 0.400000 +2419 1123 0.400000 +2419 1248 0.400000 +2419 1252 0.400000 +2419 1262 0.400000 +2419 1287 0.400000 +2419 1439 0.400000 +2419 1472 0.400000 +2419 1601 0.400000 +2419 1659 0.400000 +2419 1698 0.400000 +2419 1702 0.400000 +2419 1729 0.400000 +2419 1821 0.400000 +2419 1859 0.400000 +2419 1904 0.400000 +2419 2037 0.400000 +2419 2074 0.400000 +2419 2076 0.400000 +2419 2099 0.400000 +2419 2109 0.400000 +2419 2177 0.400000 +2419 2219 0.400000 +2419 2281 0.400000 +2419 2340 0.400000 +2419 2382 0.400000 +2419 2447 0.400000 +2419 2465 0.400000 +2419 2560 0.400000 +2419 2562 0.400000 +2419 2566 0.400000 +2419 2630 0.400000 +2419 2757 0.400000 +2419 2782 0.400000 +2419 2926 0.400000 +2419 2959 0.400000 +2419 3138 0.400000 +2420 46 0.400000 +2420 81 0.400000 +2420 108 0.400000 +2420 206 0.400000 +2420 298 0.400000 +2420 351 0.400000 +2420 431 0.400000 +2420 491 0.400000 +2420 517 0.400000 +2420 555 0.400000 +2420 582 0.400000 +2420 780 0.400000 +2420 833 0.400000 +2420 898 0.400000 +2420 956 0.400000 +2420 992 0.400000 +2420 1031 0.400000 +2420 1098 0.400000 +2420 1128 0.400000 +2420 1230 0.400000 +2420 1233 0.400000 +2420 1250 0.400000 +2420 1256 0.400000 +2420 1488 0.400000 +2420 1533 0.400000 +2420 1560 0.400000 +2420 1590 0.400000 +2420 1616 0.400000 +2420 1647 0.400000 +2420 1657 0.400000 +2420 1774 0.400000 +2420 1834 0.400000 +2420 1870 0.400000 +2420 1873 0.400000 +2420 1969 0.400000 +2420 2002 0.400000 +2420 2047 0.400000 +2420 2095 0.400000 +2420 2250 0.400000 +2420 2361 0.400000 +2420 2390 0.400000 +2420 2456 0.400000 +2420 2465 0.400000 +2420 2576 0.400000 +2420 2771 0.400000 +2420 2800 0.400000 +2420 2831 0.400000 +2420 3036 0.400000 +2420 3130 0.400000 +2420 3181 0.400000 +2421 10 0.400000 +2421 42 0.400000 +2421 56 0.400000 +2421 85 0.400000 +2421 122 0.400000 +2421 170 0.400000 +2421 175 0.400000 +2421 190 0.400000 +2421 329 0.400000 +2421 336 0.400000 +2421 393 0.400000 +2421 453 0.400000 +2421 462 0.400000 +2421 484 0.400000 +2421 495 0.400000 +2421 529 0.400000 +2421 628 0.400000 +2421 664 0.400000 +2421 714 0.400000 +2421 773 0.400000 +2421 794 0.400000 +2421 863 0.400000 +2421 1014 0.400000 +2421 1028 0.400000 +2421 1105 0.400000 +2421 1175 0.400000 +2421 1210 0.400000 +2421 1253 0.400000 +2421 1313 0.400000 +2421 1341 0.400000 +2421 1353 0.400000 +2421 1396 0.400000 +2421 1413 0.400000 +2421 1446 0.400000 +2421 1481 0.400000 +2421 1493 0.400000 +2421 1505 0.400000 +2421 1513 0.400000 +2421 1609 0.400000 +2421 1616 0.400000 +2421 1625 0.400000 +2421 1637 0.400000 +2421 1673 0.400000 +2421 1677 0.400000 +2421 1738 0.400000 +2421 1797 0.400000 +2421 2145 0.400000 +2421 2219 0.400000 +2421 2262 0.400000 +2421 2279 0.400000 +2421 2285 0.400000 +2421 2300 0.400000 +2421 2379 0.400000 +2421 2386 0.400000 +2421 2442 0.400000 +2421 2478 0.400000 +2421 2486 0.400000 +2421 2526 0.400000 +2421 2548 0.400000 +2421 2573 0.400000 +2421 2595 0.400000 +2421 2627 0.400000 +2421 2693 0.400000 +2421 2699 0.400000 +2421 2766 0.400000 +2421 2792 0.400000 +2421 2850 0.400000 +2421 2902 0.400000 +2421 2905 0.400000 +2421 2934 0.400000 +2421 2957 0.400000 +2421 3022 0.400000 +2421 3085 0.400000 +2422 94 0.400000 +2422 131 0.400000 +2422 136 0.400000 +2422 137 0.400000 +2422 162 0.400000 +2422 180 0.400000 +2422 200 0.400000 +2422 222 0.400000 +2422 291 0.400000 +2422 368 0.400000 +2422 383 0.400000 +2422 412 0.400000 +2422 428 0.400000 +2422 477 0.400000 +2422 528 0.400000 +2422 568 0.400000 +2422 605 0.400000 +2422 643 0.400000 +2422 734 0.400000 +2422 836 0.400000 +2422 862 0.400000 +2422 876 0.400000 +2422 902 0.400000 +2422 907 0.400000 +2422 919 0.400000 +2422 923 0.400000 +2422 947 0.400000 +2422 986 0.400000 +2422 1037 0.400000 +2422 1081 0.400000 +2422 1092 0.400000 +2422 1216 0.400000 +2422 1284 0.400000 +2422 1338 0.400000 +2422 1346 0.400000 +2422 1423 0.400000 +2422 1465 0.400000 +2422 1494 0.400000 +2422 1624 0.400000 +2422 1671 0.400000 +2422 1678 0.400000 +2422 1680 0.400000 +2422 1682 0.400000 +2422 1708 0.400000 +2422 1722 0.400000 +2422 1739 0.400000 +2422 1768 0.400000 +2422 1818 0.400000 +2422 1861 0.400000 +2422 1955 0.400000 +2422 1967 0.400000 +2422 2031 0.400000 +2422 2056 0.400000 +2422 2074 0.400000 +2422 2148 0.400000 +2422 2256 0.400000 +2422 2298 0.400000 +2422 2347 0.400000 +2422 2349 0.400000 +2422 2368 0.400000 +2422 2373 0.400000 +2422 2426 0.400000 +2422 2451 0.400000 +2422 2462 0.400000 +2422 2494 0.400000 +2422 2536 0.400000 +2422 2561 0.400000 +2422 2598 0.400000 +2422 2668 0.400000 +2422 2744 0.400000 +2422 2768 0.400000 +2422 2820 0.400000 +2422 2829 0.400000 +2422 2859 0.400000 +2422 2871 0.400000 +2422 2909 0.400000 +2422 2920 0.400000 +2422 2971 0.400000 +2422 3081 0.400000 +2422 3082 0.400000 +2422 3118 0.400000 +2422 3154 0.400000 +2423 21 0.400000 +2423 37 0.400000 +2423 51 0.400000 +2423 133 0.400000 +2423 142 0.400000 +2423 224 0.400000 +2423 383 0.400000 +2423 387 0.400000 +2423 436 0.400000 +2423 484 0.400000 +2423 509 0.400000 +2423 644 0.400000 +2423 695 0.400000 +2423 863 0.400000 +2423 872 0.400000 +2423 976 0.400000 +2423 990 0.400000 +2423 1057 0.400000 +2423 1067 0.400000 +2423 1137 0.400000 +2423 1261 0.400000 +2423 1342 0.400000 +2423 1355 0.400000 +2423 1390 0.400000 +2423 1402 0.400000 +2423 1446 0.400000 +2423 1510 0.400000 +2423 1534 0.400000 +2423 1537 0.400000 +2423 1672 0.400000 +2423 1766 0.400000 +2423 1773 0.400000 +2423 1822 0.400000 +2423 1919 0.400000 +2423 1925 0.400000 +2423 1941 0.400000 +2423 2000 0.400000 +2423 2126 0.400000 +2423 2131 0.400000 +2423 2238 0.400000 +2423 2248 0.400000 +2423 2261 0.400000 +2423 2270 0.400000 +2423 2314 0.400000 +2423 2320 0.400000 +2423 2367 0.400000 +2423 2369 0.400000 +2423 2372 0.400000 +2423 2378 0.400000 +2423 2446 0.400000 +2423 2505 0.400000 +2423 2565 0.400000 +2423 2608 0.400000 +2423 2637 0.400000 +2423 2697 0.400000 +2423 2754 0.400000 +2423 2775 0.400000 +2423 2786 0.400000 +2423 2818 0.400000 +2423 2890 0.400000 +2423 3030 0.400000 +2424 93 0.400000 +2424 128 0.400000 +2424 192 0.400000 +2424 214 0.400000 +2424 226 0.400000 +2424 244 0.400000 +2424 301 0.400000 +2424 340 0.400000 +2424 342 0.400000 +2424 365 0.400000 +2424 386 0.400000 +2424 460 0.400000 +2424 483 0.400000 +2424 515 0.400000 +2424 550 0.400000 +2424 582 0.400000 +2424 631 0.400000 +2424 647 0.400000 +2424 677 0.400000 +2424 793 0.400000 +2424 795 0.400000 +2424 798 0.400000 +2424 952 0.400000 +2424 993 0.400000 +2424 1007 0.400000 +2424 1105 0.400000 +2424 1117 0.400000 +2424 1232 0.400000 +2424 1280 0.400000 +2424 1459 0.400000 +2424 1487 0.400000 +2424 1496 0.400000 +2424 1605 0.400000 +2424 1619 0.400000 +2424 1704 0.400000 +2424 1758 0.400000 +2424 1771 0.400000 +2424 1830 0.400000 +2424 1903 0.400000 +2424 2078 0.400000 +2424 2079 0.400000 +2424 2168 0.400000 +2424 2183 0.400000 +2424 2190 0.400000 +2424 2206 0.400000 +2424 2381 0.400000 +2424 2387 0.400000 +2424 2419 0.400000 +2424 2483 0.400000 +2424 2510 0.400000 +2424 2513 0.400000 +2424 2562 0.400000 +2424 2566 0.400000 +2424 2592 0.400000 +2424 2612 0.400000 +2424 2640 0.400000 +2424 2658 0.400000 +2424 2668 0.400000 +2424 2690 0.400000 +2424 2793 0.400000 +2424 2794 0.400000 +2424 2795 0.400000 +2424 2853 0.400000 +2424 2876 0.400000 +2424 2903 0.400000 +2424 2957 0.400000 +2424 3000 0.400000 +2424 3163 0.400000 +2424 3184 0.400000 +2425 99 0.400000 +2425 237 0.400000 +2425 296 0.400000 +2425 400 0.400000 +2425 420 0.400000 +2425 426 0.400000 +2425 522 0.400000 +2425 607 0.400000 +2425 637 0.400000 +2425 643 0.400000 +2425 675 0.400000 +2425 719 0.400000 +2425 795 0.400000 +2425 1100 0.400000 +2425 1113 0.400000 +2425 1308 0.400000 +2425 1324 0.400000 +2425 1335 0.400000 +2425 1347 0.400000 +2425 1374 0.400000 +2425 1401 0.400000 +2425 1424 0.400000 +2425 1439 0.400000 +2425 1510 0.400000 +2425 1532 0.400000 +2425 1622 0.400000 +2425 1720 0.400000 +2425 1732 0.400000 +2425 1785 0.400000 +2425 1816 0.400000 +2425 1850 0.400000 +2425 1866 0.400000 +2425 1902 0.400000 +2425 2008 0.400000 +2425 2037 0.400000 +2425 2044 0.400000 +2425 2130 0.400000 +2425 2222 0.400000 +2425 2233 0.400000 +2425 2243 0.400000 +2425 2258 0.400000 +2425 2312 0.400000 +2425 2384 0.400000 +2425 2404 0.400000 +2425 2427 0.400000 +2425 2449 0.400000 +2425 2457 0.400000 +2425 2496 0.400000 +2425 2624 0.400000 +2425 2641 0.400000 +2425 2703 0.400000 +2425 2763 0.400000 +2425 2940 0.400000 +2425 2984 0.400000 +2425 3010 0.400000 +2426 14 0.400000 +2426 58 0.400000 +2426 76 0.400000 +2426 134 0.400000 +2426 205 0.400000 +2426 358 0.400000 +2426 393 0.400000 +2426 394 0.400000 +2426 395 0.400000 +2426 413 0.400000 +2426 414 0.400000 +2426 553 0.400000 +2426 645 0.400000 +2426 706 0.400000 +2426 731 0.400000 +2426 739 0.400000 +2426 754 0.400000 +2426 1010 0.400000 +2426 1052 0.400000 +2426 1061 0.400000 +2426 1084 0.400000 +2426 1111 0.400000 +2426 1116 0.400000 +2426 1157 0.400000 +2426 1205 0.400000 +2426 1237 0.400000 +2426 1250 0.400000 +2426 1295 0.400000 +2426 1364 0.400000 +2426 1377 0.400000 +2426 1400 0.400000 +2426 1490 0.400000 +2426 1534 0.400000 +2426 1553 0.400000 +2426 1619 0.400000 +2426 1659 0.400000 +2426 1660 0.400000 +2426 1758 0.400000 +2426 1789 0.400000 +2426 1796 0.400000 +2426 1823 0.400000 +2426 1892 0.400000 +2426 1901 0.400000 +2426 1931 0.400000 +2426 1946 0.400000 +2426 1968 0.400000 +2426 2022 0.400000 +2426 2088 0.400000 +2426 2090 0.400000 +2426 2098 0.400000 +2426 2133 0.400000 +2426 2158 0.400000 +2426 2168 0.400000 +2426 2242 0.400000 +2426 2260 0.400000 +2426 2263 0.400000 +2426 2296 0.400000 +2426 2390 0.400000 +2426 2393 0.400000 +2426 2394 0.400000 +2426 2478 0.400000 +2426 2501 0.400000 +2426 2516 0.400000 +2426 2542 0.400000 +2426 2599 0.400000 +2426 2696 0.400000 +2426 2727 0.400000 +2426 2731 0.400000 +2426 2840 0.400000 +2426 2868 0.400000 +2426 2913 0.400000 +2426 2923 0.400000 +2426 2953 0.400000 +2426 2971 0.400000 +2426 3026 0.400000 +2426 3087 0.400000 +2427 6 0.400000 +2427 16 0.400000 +2427 89 0.400000 +2427 95 0.400000 +2427 153 0.400000 +2427 157 0.400000 +2427 271 0.400000 +2427 276 0.400000 +2427 309 0.400000 +2427 312 0.400000 +2427 385 0.400000 +2427 484 0.400000 +2427 508 0.400000 +2427 682 0.400000 +2427 760 0.400000 +2427 827 0.400000 +2427 967 0.400000 +2427 1013 0.400000 +2427 1022 0.400000 +2427 1027 0.400000 +2427 1032 0.400000 +2427 1047 0.400000 +2427 1062 0.400000 +2427 1070 0.400000 +2427 1088 0.400000 +2427 1155 0.400000 +2427 1190 0.400000 +2427 1268 0.400000 +2427 1293 0.400000 +2427 1344 0.400000 +2427 1411 0.400000 +2427 1586 0.400000 +2427 1647 0.400000 +2427 1716 0.400000 +2427 1759 0.400000 +2427 1873 0.400000 +2427 2103 0.400000 +2427 2296 0.400000 +2427 2326 0.400000 +2427 2338 0.400000 +2427 2429 0.400000 +2427 2468 0.400000 +2427 2503 0.400000 +2427 2567 0.400000 +2427 2589 0.400000 +2427 2616 0.400000 +2427 2620 0.400000 +2427 2689 0.400000 +2427 2753 0.400000 +2427 2772 0.400000 +2427 2894 0.400000 +2427 2908 0.400000 +2427 2994 0.400000 +2427 3110 0.400000 +2427 3122 0.400000 +2427 3170 0.400000 +2428 21 0.400000 +2428 23 0.400000 +2428 25 0.400000 +2428 122 0.400000 +2428 155 0.400000 +2428 331 0.400000 +2428 343 0.400000 +2428 351 0.400000 +2428 393 0.400000 +2428 470 0.400000 +2428 566 0.400000 +2428 689 0.400000 +2428 694 0.400000 +2428 697 0.400000 +2428 815 0.400000 +2428 870 0.400000 +2428 888 0.400000 +2428 944 0.400000 +2428 975 0.400000 +2428 1003 0.400000 +2428 1020 0.400000 +2428 1091 0.400000 +2428 1169 0.400000 +2428 1337 0.400000 +2428 1364 0.400000 +2428 1380 0.400000 +2428 1582 0.400000 +2428 1594 0.400000 +2428 1682 0.400000 +2428 1692 0.400000 +2428 1702 0.400000 +2428 1740 0.400000 +2428 1752 0.400000 +2428 1789 0.400000 +2428 1823 0.400000 +2428 1830 0.400000 +2428 1850 0.400000 +2428 1902 0.400000 +2428 1915 0.400000 +2428 2005 0.400000 +2428 2201 0.400000 +2428 2285 0.400000 +2428 2299 0.400000 +2428 2327 0.400000 +2428 2368 0.400000 +2428 2379 0.400000 +2428 2388 0.400000 +2428 2498 0.400000 +2428 2500 0.400000 +2428 2525 0.400000 +2428 2541 0.400000 +2428 2558 0.400000 +2428 2587 0.400000 +2428 2605 0.400000 +2428 2627 0.400000 +2428 2713 0.400000 +2428 2766 0.400000 +2428 2767 0.400000 +2428 2774 0.400000 +2428 2819 0.400000 +2428 2839 0.400000 +2428 2903 0.400000 +2428 2917 0.400000 +2428 2934 0.400000 +2428 2954 0.400000 +2428 2960 0.400000 +2428 2961 0.400000 +2428 2982 0.400000 +2428 3024 0.400000 +2428 3067 0.400000 +2428 3135 0.400000 +2428 3182 0.400000 +2429 45 0.400000 +2429 116 0.400000 +2429 137 0.400000 +2429 272 0.400000 +2429 315 0.400000 +2429 431 0.400000 +2429 491 0.400000 +2429 593 0.400000 +2429 615 0.400000 +2429 732 0.400000 +2429 742 0.400000 +2429 760 0.400000 +2429 782 0.400000 +2429 824 0.400000 +2429 909 0.400000 +2429 1001 0.400000 +2429 1011 0.400000 +2429 1050 0.400000 +2429 1060 0.400000 +2429 1114 0.400000 +2429 1122 0.400000 +2429 1191 0.400000 +2429 1193 0.400000 +2429 1211 0.400000 +2429 1254 0.400000 +2429 1281 0.400000 +2429 1283 0.400000 +2429 1322 0.400000 +2429 1332 0.400000 +2429 1452 0.400000 +2429 1496 0.400000 +2429 1602 0.400000 +2429 1605 0.400000 +2429 1705 0.400000 +2429 1713 0.400000 +2429 1732 0.400000 +2429 1740 0.400000 +2429 1790 0.400000 +2429 1887 0.400000 +2429 1937 0.400000 +2429 1979 0.400000 +2429 2003 0.400000 +2429 2073 0.400000 +2429 2083 0.400000 +2429 2107 0.400000 +2429 2114 0.400000 +2429 2187 0.400000 +2429 2256 0.400000 +2429 2274 0.400000 +2429 2357 0.400000 +2429 2401 0.400000 +2429 2447 0.400000 +2429 2453 0.400000 +2429 2492 0.400000 +2429 2501 0.400000 +2429 2508 0.400000 +2429 2591 0.400000 +2429 2594 0.400000 +2429 2672 0.400000 +2429 2830 0.400000 +2429 2906 0.400000 +2429 3014 0.400000 +2429 3015 0.400000 +2429 3063 0.400000 +2429 3064 0.400000 +2429 3092 0.400000 +2429 3133 0.400000 +2429 3135 0.400000 +2430 5 0.400000 +2430 128 0.400000 +2430 239 0.400000 +2430 314 0.400000 +2430 316 0.400000 +2430 353 0.400000 +2430 395 0.400000 +2430 429 0.400000 +2430 558 0.400000 +2430 626 0.400000 +2430 644 0.400000 +2430 666 0.400000 +2430 686 0.400000 +2430 756 0.400000 +2430 762 0.400000 +2430 765 0.400000 +2430 837 0.400000 +2430 870 0.400000 +2430 913 0.400000 +2430 929 0.400000 +2430 1009 0.400000 +2430 1047 0.400000 +2430 1345 0.400000 +2430 1382 0.400000 +2430 1410 0.400000 +2430 1413 0.400000 +2430 1422 0.400000 +2430 1446 0.400000 +2430 1491 0.400000 +2430 1512 0.400000 +2430 1532 0.400000 +2430 1680 0.400000 +2430 1691 0.400000 +2430 1705 0.400000 +2430 1757 0.400000 +2430 1793 0.400000 +2430 1803 0.400000 +2430 1805 0.400000 +2430 1824 0.400000 +2430 1864 0.400000 +2430 2059 0.400000 +2430 2085 0.400000 +2430 2105 0.400000 +2430 2188 0.400000 +2430 2221 0.400000 +2430 2277 0.400000 +2430 2334 0.400000 +2430 2350 0.400000 +2430 2352 0.400000 +2430 2374 0.400000 +2430 2427 0.400000 +2430 2554 0.400000 +2430 2571 0.400000 +2430 2603 0.400000 +2430 2701 0.400000 +2430 2726 0.400000 +2430 2762 0.400000 +2430 2815 0.400000 +2430 2818 0.400000 +2430 2826 0.400000 +2430 2856 0.400000 +2430 2873 0.400000 +2430 2930 0.400000 +2430 3036 0.400000 +2430 3131 0.400000 +2430 3153 0.400000 +2430 3154 0.400000 +2431 17 0.400000 +2431 73 0.400000 +2431 75 0.400000 +2431 87 0.400000 +2431 260 0.400000 +2431 320 0.400000 +2431 352 0.400000 +2431 355 0.400000 +2431 393 0.400000 +2431 402 0.400000 +2431 447 0.400000 +2431 453 0.400000 +2431 505 0.400000 +2431 561 0.400000 +2431 689 0.400000 +2431 736 0.400000 +2431 748 0.400000 +2431 771 0.400000 +2431 783 0.400000 +2431 787 0.400000 +2431 808 0.400000 +2431 822 0.400000 +2431 882 0.400000 +2431 929 0.400000 +2431 966 0.400000 +2431 978 0.400000 +2431 1018 0.400000 +2431 1070 0.400000 +2431 1103 0.400000 +2431 1134 0.400000 +2431 1147 0.400000 +2431 1174 0.400000 +2431 1203 0.400000 +2431 1248 0.400000 +2431 1283 0.400000 +2431 1334 0.400000 +2431 1362 0.400000 +2431 1409 0.400000 +2431 1427 0.400000 +2431 1454 0.400000 +2431 1483 0.400000 +2431 1495 0.400000 +2431 1508 0.400000 +2431 1518 0.400000 +2431 1560 0.400000 +2431 1567 0.400000 +2431 1615 0.400000 +2431 1709 0.400000 +2431 1751 0.400000 +2431 1773 0.400000 +2431 1813 0.400000 +2431 1896 0.400000 +2431 2035 0.400000 +2431 2129 0.400000 +2431 2190 0.400000 +2431 2207 0.400000 +2431 2263 0.400000 +2431 2265 0.400000 +2431 2304 0.400000 +2431 2379 0.400000 +2431 2419 0.400000 +2431 2430 0.400000 +2431 2509 0.400000 +2431 2574 0.400000 +2431 2586 0.400000 +2431 2589 0.400000 +2431 2610 0.400000 +2431 2649 0.400000 +2431 2688 0.400000 +2431 2829 0.400000 +2431 2847 0.400000 +2431 2855 0.400000 +2431 2856 0.400000 +2431 2897 0.400000 +2431 2918 0.400000 +2431 2931 0.400000 +2431 2932 0.400000 +2431 3013 0.400000 +2431 3024 0.400000 +2431 3064 0.400000 +2431 3124 0.400000 +2432 15 0.400000 +2432 18 0.400000 +2432 85 0.400000 +2432 91 0.400000 +2432 219 0.400000 +2432 220 0.400000 +2432 231 0.400000 +2432 419 0.400000 +2432 422 0.400000 +2432 463 0.400000 +2432 467 0.400000 +2432 537 0.400000 +2432 605 0.400000 +2432 617 0.400000 +2432 631 0.400000 +2432 778 0.400000 +2432 869 0.400000 +2432 904 0.400000 +2432 905 0.400000 +2432 918 0.400000 +2432 929 0.400000 +2432 934 0.400000 +2432 990 0.400000 +2432 1045 0.400000 +2432 1098 0.400000 +2432 1182 0.400000 +2432 1218 0.400000 +2432 1239 0.400000 +2432 1245 0.400000 +2432 1361 0.400000 +2432 1367 0.400000 +2432 1505 0.400000 +2432 1544 0.400000 +2432 1585 0.400000 +2432 1640 0.400000 +2432 1673 0.400000 +2432 1875 0.400000 +2432 1932 0.400000 +2432 2162 0.400000 +2432 2175 0.400000 +2432 2232 0.400000 +2432 2235 0.400000 +2432 2255 0.400000 +2432 2303 0.400000 +2432 2311 0.400000 +2432 2319 0.400000 +2432 2353 0.400000 +2432 2435 0.400000 +2432 2486 0.400000 +2432 2490 0.400000 +2432 2524 0.400000 +2432 2546 0.400000 +2432 2675 0.400000 +2432 2711 0.400000 +2432 2813 0.400000 +2432 2876 0.400000 +2432 2883 0.400000 +2432 2888 0.400000 +2432 2919 0.400000 +2432 2969 0.400000 +2432 3027 0.400000 +2432 3082 0.400000 +2432 3088 0.400000 +2432 3137 0.400000 +2433 72 0.400000 +2433 78 0.400000 +2433 86 0.400000 +2433 120 0.400000 +2433 238 0.400000 +2433 334 0.400000 +2433 473 0.400000 +2433 504 0.400000 +2433 552 0.400000 +2433 556 0.400000 +2433 575 0.400000 +2433 587 0.400000 +2433 815 0.400000 +2433 878 0.400000 +2433 905 0.400000 +2433 978 0.400000 +2433 980 0.400000 +2433 1093 0.400000 +2433 1117 0.400000 +2433 1330 0.400000 +2433 1341 0.400000 +2433 1421 0.400000 +2433 1470 0.400000 +2433 1550 0.400000 +2433 1563 0.400000 +2433 1614 0.400000 +2433 1718 0.400000 +2433 1834 0.400000 +2433 1939 0.400000 +2433 2045 0.400000 +2433 2062 0.400000 +2433 2124 0.400000 +2433 2165 0.400000 +2433 2167 0.400000 +2433 2188 0.400000 +2433 2244 0.400000 +2433 2325 0.400000 +2433 2333 0.400000 +2433 2461 0.400000 +2433 2522 0.400000 +2433 2551 0.400000 +2433 2555 0.400000 +2433 2590 0.400000 +2433 2615 0.400000 +2433 2717 0.400000 +2433 2719 0.400000 +2433 2782 0.400000 +2433 2790 0.400000 +2433 2803 0.400000 +2433 2819 0.400000 +2433 2865 0.400000 +2433 2916 0.400000 +2433 3056 0.400000 +2433 3060 0.400000 +2433 3100 0.400000 +2433 3126 0.400000 +2433 3147 0.400000 +2433 3179 0.400000 +2434 2 0.400000 +2434 59 0.400000 +2434 91 0.400000 +2434 215 0.400000 +2434 237 0.400000 +2434 312 0.400000 +2434 318 0.400000 +2434 326 0.400000 +2434 414 0.400000 +2434 418 0.400000 +2434 681 0.400000 +2434 695 0.400000 +2434 736 0.400000 +2434 772 0.400000 +2434 841 0.400000 +2434 857 0.400000 +2434 920 0.400000 +2434 945 0.400000 +2434 948 0.400000 +2434 953 0.400000 +2434 985 0.400000 +2434 1007 0.400000 +2434 1025 0.400000 +2434 1051 0.400000 +2434 1078 0.400000 +2434 1119 0.400000 +2434 1502 0.400000 +2434 1646 0.400000 +2434 1734 0.400000 +2434 1744 0.400000 +2434 1749 0.400000 +2434 1872 0.400000 +2434 1929 0.400000 +2434 1965 0.400000 +2434 1999 0.400000 +2434 2029 0.400000 +2434 2032 0.400000 +2434 2038 0.400000 +2434 2070 0.400000 +2434 2097 0.400000 +2434 2182 0.400000 +2434 2194 0.400000 +2434 2238 0.400000 +2434 2258 0.400000 +2434 2372 0.400000 +2434 2459 0.400000 +2434 2505 0.400000 +2434 2559 0.400000 +2434 2579 0.400000 +2434 2696 0.400000 +2434 2731 0.400000 +2434 2758 0.400000 +2434 2799 0.400000 +2434 2813 0.400000 +2434 2866 0.400000 +2434 2909 0.400000 +2434 2912 0.400000 +2434 2997 0.400000 +2434 3080 0.400000 +2434 3132 0.400000 +2435 117 0.400000 +2435 191 0.400000 +2435 622 0.400000 +2435 684 0.400000 +2435 706 0.400000 +2435 727 0.400000 +2435 770 0.400000 +2435 979 0.400000 +2435 1033 0.400000 +2435 1053 0.400000 +2435 1072 0.400000 +2435 1081 0.400000 +2435 1158 0.400000 +2435 1167 0.400000 +2435 1183 0.400000 +2435 1191 0.400000 +2435 1251 0.400000 +2435 1304 0.400000 +2435 1343 0.400000 +2435 1365 0.400000 +2435 1372 0.400000 +2435 1404 0.400000 +2435 1448 0.400000 +2435 1554 0.400000 +2435 1582 0.400000 +2435 1589 0.400000 +2435 1592 0.400000 +2435 1614 0.400000 +2435 1695 0.400000 +2435 1722 0.400000 +2435 1773 0.400000 +2435 1797 0.400000 +2435 1852 0.400000 +2435 1870 0.400000 +2435 1890 0.400000 +2435 1935 0.400000 +2435 1961 0.400000 +2435 1980 0.400000 +2435 2046 0.400000 +2435 2210 0.400000 +2435 2273 0.400000 +2435 2325 0.400000 +2435 2385 0.400000 +2435 2432 0.400000 +2435 2450 0.400000 +2435 2472 0.400000 +2435 2504 0.400000 +2435 2505 0.400000 +2435 2569 0.400000 +2435 2607 0.400000 +2435 2652 0.400000 +2435 2782 0.400000 +2435 2784 0.400000 +2435 2813 0.400000 +2435 2827 0.400000 +2435 2886 0.400000 +2435 2918 0.400000 +2435 3067 0.400000 +2435 3075 0.400000 +2435 3117 0.400000 +2436 26 0.400000 +2436 42 0.400000 +2436 121 0.400000 +2436 132 0.400000 +2436 146 0.400000 +2436 215 0.400000 +2436 256 0.400000 +2436 311 0.400000 +2436 358 0.400000 +2436 468 0.400000 +2436 508 0.400000 +2436 513 0.400000 +2436 634 0.400000 +2436 716 0.400000 +2436 761 0.400000 +2436 856 0.400000 +2436 866 0.400000 +2436 906 0.400000 +2436 914 0.400000 +2436 946 0.400000 +2436 965 0.400000 +2436 966 0.400000 +2436 1026 0.400000 +2436 1038 0.400000 +2436 1075 0.400000 +2436 1076 0.400000 +2436 1099 0.400000 +2436 1111 0.400000 +2436 1209 0.400000 +2436 1273 0.400000 +2436 1351 0.400000 +2436 1369 0.400000 +2436 1386 0.400000 +2436 1433 0.400000 +2436 1465 0.400000 +2436 1486 0.400000 +2436 1523 0.400000 +2436 1619 0.400000 +2436 1683 0.400000 +2436 1717 0.400000 +2436 1727 0.400000 +2436 1807 0.400000 +2436 1812 0.400000 +2436 1834 0.400000 +2436 1860 0.400000 +2436 1946 0.400000 +2436 1978 0.400000 +2436 2015 0.400000 +2436 2048 0.400000 +2436 2062 0.400000 +2436 2214 0.400000 +2436 2281 0.400000 +2436 2317 0.400000 +2436 2429 0.400000 +2436 2453 0.400000 +2436 2462 0.400000 +2436 2504 0.400000 +2436 2509 0.400000 +2436 2666 0.400000 +2436 2742 0.400000 +2436 2799 0.400000 +2436 2900 0.400000 +2436 2922 0.400000 +2436 3038 0.400000 +2436 3187 0.400000 +2436 3199 0.400000 +2437 49 0.400000 +2437 62 0.400000 +2437 95 0.400000 +2437 190 0.400000 +2437 217 0.400000 +2437 245 0.400000 +2437 259 0.400000 +2437 267 0.400000 +2437 274 0.400000 +2437 292 0.400000 +2437 350 0.400000 +2437 351 0.400000 +2437 359 0.400000 +2437 364 0.400000 +2437 373 0.400000 +2437 394 0.400000 +2437 513 0.400000 +2437 598 0.400000 +2437 622 0.400000 +2437 718 0.400000 +2437 721 0.400000 +2437 876 0.400000 +2437 960 0.400000 +2437 966 0.400000 +2437 971 0.400000 +2437 1120 0.400000 +2437 1123 0.400000 +2437 1152 0.400000 +2437 1216 0.400000 +2437 1232 0.400000 +2437 1319 0.400000 +2437 1354 0.400000 +2437 1448 0.400000 +2437 1459 0.400000 +2437 1505 0.400000 +2437 1534 0.400000 +2437 1570 0.400000 +2437 1604 0.400000 +2437 1664 0.400000 +2437 1679 0.400000 +2437 1705 0.400000 +2437 1822 0.400000 +2437 1838 0.400000 +2437 1856 0.400000 +2437 1911 0.400000 +2437 1933 0.400000 +2437 1988 0.400000 +2437 2137 0.400000 +2437 2172 0.400000 +2437 2177 0.400000 +2437 2197 0.400000 +2437 2259 0.400000 +2437 2492 0.400000 +2437 2564 0.400000 +2437 2565 0.400000 +2437 2626 0.400000 +2437 2685 0.400000 +2437 2811 0.400000 +2437 2925 0.400000 +2437 2952 0.400000 +2437 3069 0.400000 +2437 3147 0.400000 +2437 3166 0.400000 +2438 4 0.400000 +2438 8 0.400000 +2438 20 0.400000 +2438 118 0.400000 +2438 191 0.400000 +2438 223 0.400000 +2438 249 0.400000 +2438 288 0.400000 +2438 394 0.400000 +2438 401 0.400000 +2438 442 0.400000 +2438 451 0.400000 +2438 499 0.400000 +2438 550 0.400000 +2438 556 0.400000 +2438 581 0.400000 +2438 596 0.400000 +2438 685 0.400000 +2438 692 0.400000 +2438 814 0.400000 +2438 866 0.400000 +2438 982 0.400000 +2438 1093 0.400000 +2438 1099 0.400000 +2438 1130 0.400000 +2438 1149 0.400000 +2438 1230 0.400000 +2438 1306 0.400000 +2438 1349 0.400000 +2438 1409 0.400000 +2438 1411 0.400000 +2438 1460 0.400000 +2438 1506 0.400000 +2438 1514 0.400000 +2438 1676 0.400000 +2438 1794 0.400000 +2438 1838 0.400000 +2438 1871 0.400000 +2438 1889 0.400000 +2438 1914 0.400000 +2438 1935 0.400000 +2438 2088 0.400000 +2438 2117 0.400000 +2438 2128 0.400000 +2438 2140 0.400000 +2438 2162 0.400000 +2438 2212 0.400000 +2438 2241 0.400000 +2438 2440 0.400000 +2438 2525 0.400000 +2438 2546 0.400000 +2438 2607 0.400000 +2438 2630 0.400000 +2438 2691 0.400000 +2438 2749 0.400000 +2438 2809 0.400000 +2438 2811 0.400000 +2438 2834 0.400000 +2438 2867 0.400000 +2438 2885 0.400000 +2438 2907 0.400000 +2438 2917 0.400000 +2438 2989 0.400000 +2438 3019 0.400000 +2438 3021 0.400000 +2438 3058 0.400000 +2438 3108 0.400000 +2438 3119 0.400000 +2438 3125 0.400000 +2438 3185 0.400000 +2438 3198 0.400000 +2438 3199 0.400000 +2438 3200 0.400000 +2439 17 0.400000 +2439 64 0.400000 +2439 104 0.400000 +2439 119 0.400000 +2439 153 0.400000 +2439 201 0.400000 +2439 210 0.400000 +2439 258 0.400000 +2439 260 0.400000 +2439 373 0.400000 +2439 375 0.400000 +2439 415 0.400000 +2439 431 0.400000 +2439 445 0.400000 +2439 465 0.400000 +2439 472 0.400000 +2439 595 0.400000 +2439 664 0.400000 +2439 667 0.400000 +2439 792 0.400000 +2439 814 0.400000 +2439 833 0.400000 +2439 857 0.400000 +2439 900 0.400000 +2439 904 0.400000 +2439 953 0.400000 +2439 961 0.400000 +2439 968 0.400000 +2439 1013 0.400000 +2439 1110 0.400000 +2439 1119 0.400000 +2439 1157 0.400000 +2439 1272 0.400000 +2439 1282 0.400000 +2439 1409 0.400000 +2439 1419 0.400000 +2439 1472 0.400000 +2439 1473 0.400000 +2439 1491 0.400000 +2439 1502 0.400000 +2439 1512 0.400000 +2439 1557 0.400000 +2439 1586 0.400000 +2439 1590 0.400000 +2439 1634 0.400000 +2439 1635 0.400000 +2439 1639 0.400000 +2439 1768 0.400000 +2439 1793 0.400000 +2439 1847 0.400000 +2439 1865 0.400000 +2439 1872 0.400000 +2439 1885 0.400000 +2439 1903 0.400000 +2439 1927 0.400000 +2439 1929 0.400000 +2439 1939 0.400000 +2439 1941 0.400000 +2439 1965 0.400000 +2439 2033 0.400000 +2439 2061 0.400000 +2439 2067 0.400000 +2439 2075 0.400000 +2439 2089 0.400000 +2439 2111 0.400000 +2439 2160 0.400000 +2439 2170 0.400000 +2439 2245 0.400000 +2439 2266 0.400000 +2439 2343 0.400000 +2439 2373 0.400000 +2439 2431 0.400000 +2439 2482 0.400000 +2439 2490 0.400000 +2439 2497 0.400000 +2439 2511 0.400000 +2439 2538 0.400000 +2439 2613 0.400000 +2439 2644 0.400000 +2439 2655 0.400000 +2439 2673 0.400000 +2439 2677 0.400000 +2439 2698 0.400000 +2439 2728 0.400000 +2439 2735 0.400000 +2439 2748 0.400000 +2439 2755 0.400000 +2439 2807 0.400000 +2439 2827 0.400000 +2439 2857 0.400000 +2439 2988 0.400000 +2439 3028 0.400000 +2439 3121 0.400000 +2439 3151 0.400000 +2439 3175 0.400000 +2440 80 0.400000 +2440 161 0.400000 +2440 253 0.400000 +2440 257 0.400000 +2440 266 0.400000 +2440 276 0.400000 +2440 289 0.400000 +2440 352 0.400000 +2440 378 0.400000 +2440 637 0.400000 +2440 670 0.400000 +2440 698 0.400000 +2440 720 0.400000 +2440 728 0.400000 +2440 773 0.400000 +2440 779 0.400000 +2440 820 0.400000 +2440 836 0.400000 +2440 902 0.400000 +2440 1078 0.400000 +2440 1088 0.400000 +2440 1138 0.400000 +2440 1145 0.400000 +2440 1275 0.400000 +2440 1329 0.400000 +2440 1338 0.400000 +2440 1470 0.400000 +2440 1475 0.400000 +2440 1542 0.400000 +2440 1555 0.400000 +2440 1570 0.400000 +2440 1587 0.400000 +2440 1597 0.400000 +2440 1614 0.400000 +2440 1623 0.400000 +2440 1650 0.400000 +2440 1712 0.400000 +2440 1716 0.400000 +2440 1762 0.400000 +2440 1815 0.400000 +2440 1892 0.400000 +2440 1908 0.400000 +2440 1963 0.400000 +2440 1980 0.400000 +2440 1994 0.400000 +2440 1997 0.400000 +2440 2044 0.400000 +2440 2107 0.400000 +2440 2145 0.400000 +2440 2190 0.400000 +2440 2270 0.400000 +2440 2349 0.400000 +2440 2437 0.400000 +2440 2568 0.400000 +2440 2679 0.400000 +2440 2689 0.400000 +2440 2820 0.400000 +2440 2927 0.400000 +2440 2940 0.400000 +2440 2966 0.400000 +2440 3003 0.400000 +2440 3004 0.400000 +2440 3015 0.400000 +2440 3045 0.400000 +2440 3052 0.400000 +2440 3079 0.400000 +2440 3087 0.400000 +2440 3124 0.400000 +2440 3153 0.400000 +2441 10 0.400000 +2441 52 0.400000 +2441 84 0.400000 +2441 92 0.400000 +2441 221 0.400000 +2441 308 0.400000 +2441 391 0.400000 +2441 440 0.400000 +2441 458 0.400000 +2441 496 0.400000 +2441 563 0.400000 +2441 622 0.400000 +2441 659 0.400000 +2441 780 0.400000 +2441 819 0.400000 +2441 890 0.400000 +2441 918 0.400000 +2441 943 0.400000 +2441 950 0.400000 +2441 1002 0.400000 +2441 1012 0.400000 +2441 1022 0.400000 +2441 1033 0.400000 +2441 1120 0.400000 +2441 1138 0.400000 +2441 1185 0.400000 +2441 1199 0.400000 +2441 1290 0.400000 +2441 1314 0.400000 +2441 1351 0.400000 +2441 1354 0.400000 +2441 1406 0.400000 +2441 1571 0.400000 +2441 1601 0.400000 +2441 1704 0.400000 +2441 1736 0.400000 +2441 1798 0.400000 +2441 1800 0.400000 +2441 1863 0.400000 +2441 1877 0.400000 +2441 1930 0.400000 +2441 1983 0.400000 +2441 1985 0.400000 +2441 2021 0.400000 +2441 2059 0.400000 +2441 2087 0.400000 +2441 2088 0.400000 +2441 2106 0.400000 +2441 2126 0.400000 +2441 2195 0.400000 +2441 2295 0.400000 +2441 2491 0.400000 +2441 2557 0.400000 +2441 2600 0.400000 +2441 2697 0.400000 +2441 2754 0.400000 +2441 2766 0.400000 +2441 2853 0.400000 +2441 2980 0.400000 +2441 3036 0.400000 +2441 3191 0.400000 +2441 3194 0.400000 +2442 16 0.400000 +2442 167 0.400000 +2442 179 0.400000 +2442 205 0.400000 +2442 220 0.400000 +2442 236 0.400000 +2442 299 0.400000 +2442 307 0.400000 +2442 320 0.400000 +2442 352 0.400000 +2442 370 0.400000 +2442 396 0.400000 +2442 507 0.400000 +2442 527 0.400000 +2442 590 0.400000 +2442 718 0.400000 +2442 723 0.400000 +2442 738 0.400000 +2442 768 0.400000 +2442 805 0.400000 +2442 807 0.400000 +2442 839 0.400000 +2442 1077 0.400000 +2442 1174 0.400000 +2442 1187 0.400000 +2442 1324 0.400000 +2442 1386 0.400000 +2442 1394 0.400000 +2442 1409 0.400000 +2442 1542 0.400000 +2442 1605 0.400000 +2442 1660 0.400000 +2442 1855 0.400000 +2442 1858 0.400000 +2442 1904 0.400000 +2442 1906 0.400000 +2442 2031 0.400000 +2442 2043 0.400000 +2442 2080 0.400000 +2442 2096 0.400000 +2442 2104 0.400000 +2442 2134 0.400000 +2442 2151 0.400000 +2442 2214 0.400000 +2442 2313 0.400000 +2442 2356 0.400000 +2442 2464 0.400000 +2442 2604 0.400000 +2442 2663 0.400000 +2442 2681 0.400000 +2442 2696 0.400000 +2442 2713 0.400000 +2442 2740 0.400000 +2442 2777 0.400000 +2442 2839 0.400000 +2442 2868 0.400000 +2442 2876 0.400000 +2442 2919 0.400000 +2442 2953 0.400000 +2442 3015 0.400000 +2442 3112 0.400000 +2442 3178 0.400000 +2443 13 0.400000 +2443 76 0.400000 +2443 131 0.400000 +2443 195 0.400000 +2443 266 0.400000 +2443 435 0.400000 +2443 502 0.400000 +2443 533 0.400000 +2443 592 0.400000 +2443 602 0.400000 +2443 616 0.400000 +2443 680 0.400000 +2443 688 0.400000 +2443 724 0.400000 +2443 742 0.400000 +2443 834 0.400000 +2443 949 0.400000 +2443 976 0.400000 +2443 1064 0.400000 +2443 1065 0.400000 +2443 1109 0.400000 +2443 1119 0.400000 +2443 1213 0.400000 +2443 1325 0.400000 +2443 1353 0.400000 +2443 1474 0.400000 +2443 1512 0.400000 +2443 1536 0.400000 +2443 1576 0.400000 +2443 1594 0.400000 +2443 1673 0.400000 +2443 1685 0.400000 +2443 1730 0.400000 +2443 1902 0.400000 +2443 1904 0.400000 +2443 1939 0.400000 +2443 2018 0.400000 +2443 2069 0.400000 +2443 2072 0.400000 +2443 2167 0.400000 +2443 2178 0.400000 +2443 2196 0.400000 +2443 2231 0.400000 +2443 2240 0.400000 +2443 2278 0.400000 +2443 2387 0.400000 +2443 2497 0.400000 +2443 2548 0.400000 +2443 2589 0.400000 +2443 2590 0.400000 +2443 2626 0.400000 +2443 2701 0.400000 +2443 2786 0.400000 +2443 2799 0.400000 +2443 2803 0.400000 +2443 2823 0.400000 +2443 2835 0.400000 +2443 2902 0.400000 +2443 2981 0.400000 +2443 3000 0.400000 +2443 3080 0.400000 +2444 15 0.400000 +2444 17 0.400000 +2444 75 0.400000 +2444 163 0.400000 +2444 187 0.400000 +2444 225 0.400000 +2444 233 0.400000 +2444 259 0.400000 +2444 291 0.400000 +2444 460 0.400000 +2444 554 0.400000 +2444 597 0.400000 +2444 625 0.400000 +2444 672 0.400000 +2444 689 0.400000 +2444 870 0.400000 +2444 1004 0.400000 +2444 1018 0.400000 +2444 1134 0.400000 +2444 1249 0.400000 +2444 1275 0.400000 +2444 1287 0.400000 +2444 1311 0.400000 +2444 1330 0.400000 +2444 1339 0.400000 +2444 1450 0.400000 +2444 1517 0.400000 +2444 1587 0.400000 +2444 1614 0.400000 +2444 1616 0.400000 +2444 1628 0.400000 +2444 1648 0.400000 +2444 1649 0.400000 +2444 1784 0.400000 +2444 1816 0.400000 +2444 1832 0.400000 +2444 1889 0.400000 +2444 1913 0.400000 +2444 2046 0.400000 +2444 2052 0.400000 +2444 2100 0.400000 +2444 2103 0.400000 +2444 2222 0.400000 +2444 2321 0.400000 +2444 2343 0.400000 +2444 2366 0.400000 +2444 2394 0.400000 +2444 2408 0.400000 +2444 2571 0.400000 +2444 2621 0.400000 +2444 2652 0.400000 +2444 2681 0.400000 +2444 2823 0.400000 +2444 2853 0.400000 +2444 2864 0.400000 +2444 2993 0.400000 +2444 3033 0.400000 +2444 3042 0.400000 +2444 3068 0.400000 +2444 3083 0.400000 +2445 13 0.400000 +2445 18 0.400000 +2445 82 0.400000 +2445 111 0.400000 +2445 142 0.400000 +2445 175 0.400000 +2445 246 0.400000 +2445 265 0.400000 +2445 367 0.400000 +2445 408 0.400000 +2445 410 0.400000 +2445 425 0.400000 +2445 470 0.400000 +2445 544 0.400000 +2445 551 0.400000 +2445 595 0.400000 +2445 705 0.400000 +2445 834 0.400000 +2445 843 0.400000 +2445 852 0.400000 +2445 855 0.400000 +2445 886 0.400000 +2445 985 0.400000 +2445 1153 0.400000 +2445 1176 0.400000 +2445 1219 0.400000 +2445 1236 0.400000 +2445 1366 0.400000 +2445 1375 0.400000 +2445 1379 0.400000 +2445 1460 0.400000 +2445 1482 0.400000 +2445 1556 0.400000 +2445 1559 0.400000 +2445 1560 0.400000 +2445 1563 0.400000 +2445 1565 0.400000 +2445 1590 0.400000 +2445 1617 0.400000 +2445 1729 0.400000 +2445 1734 0.400000 +2445 1735 0.400000 +2445 1738 0.400000 +2445 1864 0.400000 +2445 1872 0.400000 +2445 1933 0.400000 +2445 1988 0.400000 +2445 2005 0.400000 +2445 2120 0.400000 +2445 2173 0.400000 +2445 2216 0.400000 +2445 2284 0.400000 +2445 2318 0.400000 +2445 2503 0.400000 +2445 2526 0.400000 +2445 2601 0.400000 +2445 2745 0.400000 +2445 2771 0.400000 +2445 2780 0.400000 +2445 2810 0.400000 +2445 2877 0.400000 +2445 2931 0.400000 +2445 3025 0.400000 +2446 41 0.400000 +2446 45 0.400000 +2446 105 0.400000 +2446 162 0.400000 +2446 179 0.400000 +2446 193 0.400000 +2446 449 0.400000 +2446 463 0.400000 +2446 522 0.400000 +2446 523 0.400000 +2446 578 0.400000 +2446 615 0.400000 +2446 795 0.400000 +2446 819 0.400000 +2446 849 0.400000 +2446 868 0.400000 +2446 882 0.400000 +2446 949 0.400000 +2446 1033 0.400000 +2446 1042 0.400000 +2446 1075 0.400000 +2446 1112 0.400000 +2446 1124 0.400000 +2446 1136 0.400000 +2446 1164 0.400000 +2446 1258 0.400000 +2446 1279 0.400000 +2446 1302 0.400000 +2446 1329 0.400000 +2446 1370 0.400000 +2446 1375 0.400000 +2446 1388 0.400000 +2446 1410 0.400000 +2446 1454 0.400000 +2446 1475 0.400000 +2446 1599 0.400000 +2446 1645 0.400000 +2446 1677 0.400000 +2446 1782 0.400000 +2446 1798 0.400000 +2446 1834 0.400000 +2446 1903 0.400000 +2446 1933 0.400000 +2446 1975 0.400000 +2446 2128 0.400000 +2446 2179 0.400000 +2446 2209 0.400000 +2446 2213 0.400000 +2446 2216 0.400000 +2446 2377 0.400000 +2446 2439 0.400000 +2446 2657 0.400000 +2446 2727 0.400000 +2446 2735 0.400000 +2446 2758 0.400000 +2446 2791 0.400000 +2446 2814 0.400000 +2446 2900 0.400000 +2446 2991 0.400000 +2446 2997 0.400000 +2446 3158 0.400000 +2446 3163 0.400000 +2446 3165 0.400000 +2447 58 0.400000 +2447 110 0.400000 +2447 114 0.400000 +2447 334 0.400000 +2447 394 0.400000 +2447 426 0.400000 +2447 498 0.400000 +2447 499 0.400000 +2447 558 0.400000 +2447 598 0.400000 +2447 600 0.400000 +2447 692 0.400000 +2447 764 0.400000 +2447 788 0.400000 +2447 814 0.400000 +2447 842 0.400000 +2447 857 0.400000 +2447 950 0.400000 +2447 964 0.400000 +2447 1005 0.400000 +2447 1035 0.400000 +2447 1047 0.400000 +2447 1148 0.400000 +2447 1209 0.400000 +2447 1258 0.400000 +2447 1295 0.400000 +2447 1302 0.400000 +2447 1349 0.400000 +2447 1532 0.400000 +2447 1533 0.400000 +2447 1613 0.400000 +2447 1743 0.400000 +2447 1755 0.400000 +2447 1770 0.400000 +2447 2091 0.400000 +2447 2145 0.400000 +2447 2159 0.400000 +2447 2186 0.400000 +2447 2198 0.400000 +2447 2240 0.400000 +2447 2281 0.400000 +2447 2301 0.400000 +2447 2321 0.400000 +2447 2429 0.400000 +2447 2493 0.400000 +2447 2576 0.400000 +2447 2635 0.400000 +2447 2666 0.400000 +2447 2756 0.400000 +2447 2758 0.400000 +2447 2827 0.400000 +2447 2857 0.400000 +2447 2859 0.400000 +2447 2950 0.400000 +2447 2964 0.400000 +2447 3013 0.400000 +2448 18 0.400000 +2448 105 0.400000 +2448 117 0.400000 +2448 139 0.400000 +2448 298 0.400000 +2448 307 0.400000 +2448 357 0.400000 +2448 373 0.400000 +2448 400 0.400000 +2448 441 0.400000 +2448 458 0.400000 +2448 528 0.400000 +2448 640 0.400000 +2448 767 0.400000 +2448 1015 0.400000 +2448 1104 0.400000 +2448 1247 0.400000 +2448 1325 0.400000 +2448 1326 0.400000 +2448 1338 0.400000 +2448 1474 0.400000 +2448 1481 0.400000 +2448 1507 0.400000 +2448 1585 0.400000 +2448 1618 0.400000 +2448 1634 0.400000 +2448 1694 0.400000 +2448 1715 0.400000 +2448 1738 0.400000 +2448 1793 0.400000 +2448 1817 0.400000 +2448 1838 0.400000 +2448 1890 0.400000 +2448 1935 0.400000 +2448 2003 0.400000 +2448 2010 0.400000 +2448 2019 0.400000 +2448 2066 0.400000 +2448 2071 0.400000 +2448 2164 0.400000 +2448 2281 0.400000 +2448 2295 0.400000 +2448 2306 0.400000 +2448 2343 0.400000 +2448 2346 0.400000 +2448 2349 0.400000 +2448 2373 0.400000 +2448 2408 0.400000 +2448 2469 0.400000 +2448 2479 0.400000 +2448 2528 0.400000 +2448 2611 0.400000 +2448 2732 0.400000 +2448 2758 0.400000 +2448 2780 0.400000 +2448 2785 0.400000 +2448 2792 0.400000 +2448 2863 0.400000 +2448 2920 0.400000 +2448 2952 0.400000 +2448 3013 0.400000 +2448 3036 0.400000 +2448 3069 0.400000 +2448 3126 0.400000 +2449 80 0.400000 +2449 255 0.400000 +2449 263 0.400000 +2449 297 0.400000 +2449 303 0.400000 +2449 475 0.400000 +2449 502 0.400000 +2449 567 0.400000 +2449 594 0.400000 +2449 748 0.400000 +2449 843 0.400000 +2449 859 0.400000 +2449 1004 0.400000 +2449 1013 0.400000 +2449 1055 0.400000 +2449 1102 0.400000 +2449 1146 0.400000 +2449 1231 0.400000 +2449 1276 0.400000 +2449 1322 0.400000 +2449 1355 0.400000 +2449 1386 0.400000 +2449 1407 0.400000 +2449 1439 0.400000 +2449 1445 0.400000 +2449 1521 0.400000 +2449 1582 0.400000 +2449 1671 0.400000 +2449 1807 0.400000 +2449 1870 0.400000 +2449 1871 0.400000 +2449 1895 0.400000 +2449 1898 0.400000 +2449 1917 0.400000 +2449 1962 0.400000 +2449 1973 0.400000 +2449 2041 0.400000 +2449 2249 0.400000 +2449 2265 0.400000 +2449 2275 0.400000 +2449 2280 0.400000 +2449 2305 0.400000 +2449 2448 0.400000 +2449 2552 0.400000 +2449 2561 0.400000 +2449 2581 0.400000 +2449 2607 0.400000 +2449 2608 0.400000 +2449 2611 0.400000 +2449 2656 0.400000 +2449 2675 0.400000 +2449 2730 0.400000 +2449 2746 0.400000 +2449 2930 0.400000 +2449 2965 0.400000 +2449 3003 0.400000 +2449 3016 0.400000 +2449 3019 0.400000 +2449 3030 0.400000 +2449 3043 0.400000 +2449 3080 0.400000 +2449 3134 0.400000 +2449 3153 0.400000 +2449 3186 0.400000 +2450 18 0.400000 +2450 86 0.400000 +2450 225 0.400000 +2450 257 0.400000 +2450 350 0.400000 +2450 374 0.400000 +2450 375 0.400000 +2450 379 0.400000 +2450 384 0.400000 +2450 496 0.400000 +2450 531 0.400000 +2450 565 0.400000 +2450 588 0.400000 +2450 634 0.400000 +2450 653 0.400000 +2450 660 0.400000 +2450 670 0.400000 +2450 761 0.400000 +2450 779 0.400000 +2450 808 0.400000 +2450 946 0.400000 +2450 977 0.400000 +2450 1122 0.400000 +2450 1173 0.400000 +2450 1431 0.400000 +2450 1441 0.400000 +2450 1458 0.400000 +2450 1472 0.400000 +2450 1589 0.400000 +2450 1601 0.400000 +2450 1607 0.400000 +2450 1629 0.400000 +2450 1645 0.400000 +2450 1658 0.400000 +2450 1661 0.400000 +2450 1736 0.400000 +2450 1775 0.400000 +2450 1883 0.400000 +2450 1886 0.400000 +2450 1946 0.400000 +2450 2039 0.400000 +2450 2067 0.400000 +2450 2135 0.400000 +2450 2192 0.400000 +2450 2242 0.400000 +2450 2505 0.400000 +2450 2633 0.400000 +2450 2659 0.400000 +2450 2665 0.400000 +2450 2755 0.400000 +2450 2859 0.400000 +2450 2912 0.400000 +2450 2929 0.400000 +2450 2993 0.400000 +2450 3037 0.400000 +2450 3048 0.400000 +2450 3051 0.400000 +2450 3078 0.400000 +2450 3120 0.400000 +2451 40 0.400000 +2451 67 0.400000 +2451 80 0.400000 +2451 111 0.400000 +2451 114 0.400000 +2451 118 0.400000 +2451 140 0.400000 +2451 234 0.400000 +2451 270 0.400000 +2451 341 0.400000 +2451 434 0.400000 +2451 445 0.400000 +2451 453 0.400000 +2451 480 0.400000 +2451 491 0.400000 +2451 510 0.400000 +2451 524 0.400000 +2451 534 0.400000 +2451 570 0.400000 +2451 672 0.400000 +2451 757 0.400000 +2451 786 0.400000 +2451 874 0.400000 +2451 883 0.400000 +2451 889 0.400000 +2451 904 0.400000 +2451 1078 0.400000 +2451 1096 0.400000 +2451 1111 0.400000 +2451 1152 0.400000 +2451 1262 0.400000 +2451 1266 0.400000 +2451 1272 0.400000 +2451 1290 0.400000 +2451 1300 0.400000 +2451 1308 0.400000 +2451 1349 0.400000 +2451 1423 0.400000 +2451 1427 0.400000 +2451 1430 0.400000 +2451 1438 0.400000 +2451 1442 0.400000 +2451 1481 0.400000 +2451 1517 0.400000 +2451 1593 0.400000 +2451 1730 0.400000 +2451 1731 0.400000 +2451 1743 0.400000 +2451 1791 0.400000 +2451 1880 0.400000 +2451 1917 0.400000 +2451 1930 0.400000 +2451 2009 0.400000 +2451 2047 0.400000 +2451 2201 0.400000 +2451 2246 0.400000 +2451 2299 0.400000 +2451 2319 0.400000 +2451 2337 0.400000 +2451 2483 0.400000 +2451 2495 0.400000 +2451 2530 0.400000 +2451 2532 0.400000 +2451 2547 0.400000 +2451 2574 0.400000 +2451 2587 0.400000 +2451 2682 0.400000 +2451 2747 0.400000 +2451 2755 0.400000 +2451 2778 0.400000 +2451 2783 0.400000 +2451 2909 0.400000 +2451 2927 0.400000 +2451 2946 0.400000 +2451 3007 0.400000 +2451 3011 0.400000 +2451 3012 0.400000 +2451 3077 0.400000 +2451 3088 0.400000 +2452 8 0.400000 +2452 26 0.400000 +2452 40 0.400000 +2452 67 0.400000 +2452 68 0.400000 +2452 219 0.400000 +2452 230 0.400000 +2452 283 0.400000 +2452 409 0.400000 +2452 429 0.400000 +2452 438 0.400000 +2452 450 0.400000 +2452 458 0.400000 +2452 482 0.400000 +2452 613 0.400000 +2452 640 0.400000 +2452 789 0.400000 +2452 804 0.400000 +2452 936 0.400000 +2452 951 0.400000 +2452 957 0.400000 +2452 966 0.400000 +2452 978 0.400000 +2452 1000 0.400000 +2452 1124 0.400000 +2452 1189 0.400000 +2452 1192 0.400000 +2452 1232 0.400000 +2452 1236 0.400000 +2452 1238 0.400000 +2452 1252 0.400000 +2452 1253 0.400000 +2452 1392 0.400000 +2452 1410 0.400000 +2452 1442 0.400000 +2452 1532 0.400000 +2452 1631 0.400000 +2452 1722 0.400000 +2452 1754 0.400000 +2452 1763 0.400000 +2452 1772 0.400000 +2452 1832 0.400000 +2452 1856 0.400000 +2452 1872 0.400000 +2452 1953 0.400000 +2452 1970 0.400000 +2452 1971 0.400000 +2452 2013 0.400000 +2452 2092 0.400000 +2452 2099 0.400000 +2452 2101 0.400000 +2452 2142 0.400000 +2452 2160 0.400000 +2452 2182 0.400000 +2452 2211 0.400000 +2452 2399 0.400000 +2452 2463 0.400000 +2452 2476 0.400000 +2452 2486 0.400000 +2452 2501 0.400000 +2452 2537 0.400000 +2452 2576 0.400000 +2452 2613 0.400000 +2452 2628 0.400000 +2452 2840 0.400000 +2452 2880 0.400000 +2452 2887 0.400000 +2452 2935 0.400000 +2452 2945 0.400000 +2452 2954 0.400000 +2452 2979 0.400000 +2452 3011 0.400000 +2452 3059 0.400000 +2452 3062 0.400000 +2452 3096 0.400000 +2452 3117 0.400000 +2452 3141 0.400000 +2452 3142 0.400000 +2453 32 0.400000 +2453 99 0.400000 +2453 300 0.400000 +2453 329 0.400000 +2453 351 0.400000 +2453 396 0.400000 +2453 398 0.400000 +2453 406 0.400000 +2453 451 0.400000 +2453 493 0.400000 +2453 525 0.400000 +2453 598 0.400000 +2453 603 0.400000 +2453 1014 0.400000 +2453 1118 0.400000 +2453 1166 0.400000 +2453 1200 0.400000 +2453 1219 0.400000 +2453 1230 0.400000 +2453 1257 0.400000 +2453 1329 0.400000 +2453 1371 0.400000 +2453 1373 0.400000 +2453 1659 0.400000 +2453 1687 0.400000 +2453 1818 0.400000 +2453 1862 0.400000 +2453 1870 0.400000 +2453 1924 0.400000 +2453 1928 0.400000 +2453 1957 0.400000 +2453 2075 0.400000 +2453 2080 0.400000 +2453 2097 0.400000 +2453 2150 0.400000 +2453 2181 0.400000 +2453 2198 0.400000 +2453 2206 0.400000 +2453 2245 0.400000 +2453 2268 0.400000 +2453 2359 0.400000 +2453 2361 0.400000 +2453 2467 0.400000 +2453 2472 0.400000 +2453 2594 0.400000 +2453 2630 0.400000 +2453 2651 0.400000 +2453 2653 0.400000 +2453 2695 0.400000 +2453 2807 0.400000 +2453 2812 0.400000 +2453 2909 0.400000 +2453 2921 0.400000 +2453 2991 0.400000 +2453 3033 0.400000 +2453 3038 0.400000 +2453 3046 0.400000 +2453 3072 0.400000 +2453 3100 0.400000 +2453 3179 0.400000 +2453 3193 0.400000 +2453 3199 0.400000 +2454 1 0.400000 +2454 48 0.400000 +2454 90 0.400000 +2454 148 0.400000 +2454 188 0.400000 +2454 254 0.400000 +2454 256 0.400000 +2454 308 0.400000 +2454 311 0.400000 +2454 316 0.400000 +2454 329 0.400000 +2454 488 0.400000 +2454 495 0.400000 +2454 625 0.400000 +2454 665 0.400000 +2454 747 0.400000 +2454 824 0.400000 +2454 853 0.400000 +2454 937 0.400000 +2454 963 0.400000 +2454 982 0.400000 +2454 1014 0.400000 +2454 1038 0.400000 +2454 1109 0.400000 +2454 1165 0.400000 +2454 1183 0.400000 +2454 1223 0.400000 +2454 1280 0.400000 +2454 1321 0.400000 +2454 1383 0.400000 +2454 1518 0.400000 +2454 1535 0.400000 +2454 1611 0.400000 +2454 1621 0.400000 +2454 1656 0.400000 +2454 1657 0.400000 +2454 1658 0.400000 +2454 1670 0.400000 +2454 1714 0.400000 +2454 1801 0.400000 +2454 1804 0.400000 +2454 1865 0.400000 +2454 1890 0.400000 +2454 1957 0.400000 +2454 1980 0.400000 +2454 2019 0.400000 +2454 2056 0.400000 +2454 2064 0.400000 +2454 2114 0.400000 +2454 2164 0.400000 +2454 2170 0.400000 +2454 2228 0.400000 +2454 2413 0.400000 +2454 2434 0.400000 +2454 2471 0.400000 +2454 2548 0.400000 +2454 2562 0.400000 +2454 2576 0.400000 +2454 2600 0.400000 +2454 2608 0.400000 +2454 2746 0.400000 +2454 2925 0.400000 +2454 2937 0.400000 +2454 3044 0.400000 +2455 36 0.400000 +2455 181 0.400000 +2455 225 0.400000 +2455 291 0.400000 +2455 331 0.400000 +2455 488 0.400000 +2455 508 0.400000 +2455 537 0.400000 +2455 555 0.400000 +2455 585 0.400000 +2455 591 0.400000 +2455 650 0.400000 +2455 702 0.400000 +2455 769 0.400000 +2455 802 0.400000 +2455 869 0.400000 +2455 882 0.400000 +2455 1134 0.400000 +2455 1225 0.400000 +2455 1230 0.400000 +2455 1315 0.400000 +2455 1349 0.400000 +2455 1355 0.400000 +2455 1380 0.400000 +2455 1385 0.400000 +2455 1583 0.400000 +2455 1810 0.400000 +2455 1905 0.400000 +2455 1945 0.400000 +2455 1972 0.400000 +2455 2206 0.400000 +2455 2219 0.400000 +2455 2268 0.400000 +2455 2338 0.400000 +2455 2559 0.400000 +2455 2636 0.400000 +2455 2646 0.400000 +2455 2682 0.400000 +2455 2745 0.400000 +2455 2773 0.400000 +2455 2854 0.400000 +2455 2912 0.400000 +2455 2972 0.400000 +2455 3133 0.400000 +2455 3138 0.400000 +2456 39 0.400000 +2456 87 0.400000 +2456 156 0.400000 +2456 191 0.400000 +2456 196 0.400000 +2456 273 0.400000 +2456 334 0.400000 +2456 344 0.400000 +2456 377 0.400000 +2456 401 0.400000 +2456 487 0.400000 +2456 495 0.400000 +2456 536 0.400000 +2456 596 0.400000 +2456 663 0.400000 +2456 736 0.400000 +2456 859 0.400000 +2456 867 0.400000 +2456 882 0.400000 +2456 998 0.400000 +2456 1045 0.400000 +2456 1055 0.400000 +2456 1065 0.400000 +2456 1193 0.400000 +2456 1222 0.400000 +2456 1410 0.400000 +2456 1419 0.400000 +2456 1470 0.400000 +2456 1484 0.400000 +2456 1571 0.400000 +2456 1611 0.400000 +2456 1615 0.400000 +2456 1620 0.400000 +2456 1738 0.400000 +2456 1812 0.400000 +2456 1815 0.400000 +2456 1846 0.400000 +2456 1856 0.400000 +2456 1862 0.400000 +2456 1911 0.400000 +2456 1917 0.400000 +2456 2028 0.400000 +2456 2126 0.400000 +2456 2216 0.400000 +2456 2364 0.400000 +2456 2402 0.400000 +2456 2422 0.400000 +2456 2458 0.400000 +2456 2547 0.400000 +2456 2584 0.400000 +2456 2607 0.400000 +2456 2659 0.400000 +2456 2694 0.400000 +2456 2740 0.400000 +2456 2752 0.400000 +2456 2767 0.400000 +2456 2791 0.400000 +2456 2871 0.400000 +2456 2886 0.400000 +2456 3042 0.400000 +2456 3095 0.400000 +2456 3172 0.400000 +2457 2 0.400000 +2457 8 0.400000 +2457 130 0.400000 +2457 147 0.400000 +2457 291 0.400000 +2457 296 0.400000 +2457 411 0.400000 +2457 434 0.400000 +2457 454 0.400000 +2457 474 0.400000 +2457 477 0.400000 +2457 553 0.400000 +2457 631 0.400000 +2457 638 0.400000 +2457 758 0.400000 +2457 803 0.400000 +2457 813 0.400000 +2457 872 0.400000 +2457 877 0.400000 +2457 884 0.400000 +2457 906 0.400000 +2457 931 0.400000 +2457 950 0.400000 +2457 980 0.400000 +2457 981 0.400000 +2457 1004 0.400000 +2457 1060 0.400000 +2457 1085 0.400000 +2457 1112 0.400000 +2457 1113 0.400000 +2457 1132 0.400000 +2457 1149 0.400000 +2457 1256 0.400000 +2457 1297 0.400000 +2457 1312 0.400000 +2457 1323 0.400000 +2457 1331 0.400000 +2457 1336 0.400000 +2457 1341 0.400000 +2457 1350 0.400000 +2457 1407 0.400000 +2457 1410 0.400000 +2457 1446 0.400000 +2457 1490 0.400000 +2457 1507 0.400000 +2457 1512 0.400000 +2457 1588 0.400000 +2457 1589 0.400000 +2457 1651 0.400000 +2457 1659 0.400000 +2457 1666 0.400000 +2457 1727 0.400000 +2457 1737 0.400000 +2457 1758 0.400000 +2457 1774 0.400000 +2457 1799 0.400000 +2457 1819 0.400000 +2457 1825 0.400000 +2457 1848 0.400000 +2457 1899 0.400000 +2457 1906 0.400000 +2457 1923 0.400000 +2457 1942 0.400000 +2457 2002 0.400000 +2457 2050 0.400000 +2457 2073 0.400000 +2457 2076 0.400000 +2457 2091 0.400000 +2457 2252 0.400000 +2457 2310 0.400000 +2457 2326 0.400000 +2457 2334 0.400000 +2457 2418 0.400000 +2457 2426 0.400000 +2457 2455 0.400000 +2457 2477 0.400000 +2457 2521 0.400000 +2457 2584 0.400000 +2457 2591 0.400000 +2457 2634 0.400000 +2457 2654 0.400000 +2457 2768 0.400000 +2457 2877 0.400000 +2457 2884 0.400000 +2457 2901 0.400000 +2457 2936 0.400000 +2457 2955 0.400000 +2457 3125 0.400000 +2457 3131 0.400000 +2458 76 0.400000 +2458 95 0.400000 +2458 228 0.400000 +2458 229 0.400000 +2458 231 0.400000 +2458 334 0.400000 +2458 335 0.400000 +2458 373 0.400000 +2458 476 0.400000 +2458 504 0.400000 +2458 546 0.400000 +2458 604 0.400000 +2458 674 0.400000 +2458 788 0.400000 +2458 825 0.400000 +2458 841 0.400000 +2458 843 0.400000 +2458 932 0.400000 +2458 968 0.400000 +2458 982 0.400000 +2458 1027 0.400000 +2458 1105 0.400000 +2458 1204 0.400000 +2458 1224 0.400000 +2458 1369 0.400000 +2458 1492 0.400000 +2458 1533 0.400000 +2458 1585 0.400000 +2458 1613 0.400000 +2458 1629 0.400000 +2458 1651 0.400000 +2458 1748 0.400000 +2458 1847 0.400000 +2458 1870 0.400000 +2458 1902 0.400000 +2458 1951 0.400000 +2458 1976 0.400000 +2458 1996 0.400000 +2458 2010 0.400000 +2458 2074 0.400000 +2458 2209 0.400000 +2458 2343 0.400000 +2458 2368 0.400000 +2458 2391 0.400000 +2458 2429 0.400000 +2458 2476 0.400000 +2458 2581 0.400000 +2458 2675 0.400000 +2458 2677 0.400000 +2458 2679 0.400000 +2458 2680 0.400000 +2458 2708 0.400000 +2458 2715 0.400000 +2458 2722 0.400000 +2458 2759 0.400000 +2458 2867 0.400000 +2458 3024 0.400000 +2458 3035 0.400000 +2458 3042 0.400000 +2458 3048 0.400000 +2458 3072 0.400000 +2458 3139 0.400000 +2458 3185 0.400000 +2458 3195 0.400000 +2459 6 0.400000 +2459 216 0.400000 +2459 220 0.400000 +2459 343 0.400000 +2459 346 0.400000 +2459 464 0.400000 +2459 481 0.400000 +2459 527 0.400000 +2459 659 0.400000 +2459 704 0.400000 +2459 787 0.400000 +2459 943 0.400000 +2459 968 0.400000 +2459 998 0.400000 +2459 999 0.400000 +2459 1032 0.400000 +2459 1090 0.400000 +2459 1376 0.400000 +2459 1486 0.400000 +2459 1526 0.400000 +2459 1597 0.400000 +2459 1598 0.400000 +2459 1660 0.400000 +2459 1664 0.400000 +2459 1698 0.400000 +2459 1759 0.400000 +2459 1926 0.400000 +2459 2000 0.400000 +2459 2022 0.400000 +2459 2150 0.400000 +2459 2216 0.400000 +2459 2284 0.400000 +2459 2345 0.400000 +2459 2387 0.400000 +2459 2568 0.400000 +2459 2605 0.400000 +2459 2683 0.400000 +2459 2756 0.400000 +2459 2864 0.400000 +2459 2910 0.400000 +2459 2925 0.400000 +2459 2932 0.400000 +2459 2966 0.400000 +2459 3126 0.400000 +2460 14 0.400000 +2460 17 0.400000 +2460 20 0.400000 +2460 58 0.400000 +2460 143 0.400000 +2460 146 0.400000 +2460 167 0.400000 +2460 171 0.400000 +2460 177 0.400000 +2460 220 0.400000 +2460 263 0.400000 +2460 265 0.400000 +2460 283 0.400000 +2460 316 0.400000 +2460 375 0.400000 +2460 401 0.400000 +2460 416 0.400000 +2460 429 0.400000 +2460 453 0.400000 +2460 520 0.400000 +2460 563 0.400000 +2460 648 0.400000 +2460 738 0.400000 +2460 747 0.400000 +2460 757 0.400000 +2460 868 0.400000 +2460 896 0.400000 +2460 962 0.400000 +2460 1003 0.400000 +2460 1043 0.400000 +2460 1048 0.400000 +2460 1083 0.400000 +2460 1143 0.400000 +2460 1234 0.400000 +2460 1235 0.400000 +2460 1444 0.400000 +2460 1534 0.400000 +2460 1562 0.400000 +2460 1659 0.400000 +2460 1726 0.400000 +2460 1745 0.400000 +2460 1754 0.400000 +2460 1789 0.400000 +2460 1842 0.400000 +2460 1960 0.400000 +2460 1972 0.400000 +2460 2007 0.400000 +2460 2080 0.400000 +2460 2109 0.400000 +2460 2212 0.400000 +2460 2236 0.400000 +2460 2240 0.400000 +2460 2306 0.400000 +2460 2358 0.400000 +2460 2372 0.400000 +2460 2378 0.400000 +2460 2387 0.400000 +2460 2433 0.400000 +2460 2510 0.400000 +2460 2538 0.400000 +2460 2579 0.400000 +2460 2583 0.400000 +2460 2670 0.400000 +2460 2676 0.400000 +2460 2741 0.400000 +2460 2761 0.400000 +2460 2854 0.400000 +2460 3006 0.400000 +2460 3050 0.400000 +2460 3069 0.400000 +2460 3082 0.400000 +2461 106 0.400000 +2461 138 0.400000 +2461 204 0.400000 +2461 223 0.400000 +2461 281 0.400000 +2461 283 0.400000 +2461 285 0.400000 +2461 429 0.400000 +2461 466 0.400000 +2461 660 0.400000 +2461 701 0.400000 +2461 802 0.400000 +2461 961 0.400000 +2461 983 0.400000 +2461 1032 0.400000 +2461 1048 0.400000 +2461 1050 0.400000 +2461 1054 0.400000 +2461 1055 0.400000 +2461 1062 0.400000 +2461 1096 0.400000 +2461 1128 0.400000 +2461 1355 0.400000 +2461 1362 0.400000 +2461 1406 0.400000 +2461 1460 0.400000 +2461 1466 0.400000 +2461 1480 0.400000 +2461 1497 0.400000 +2461 1610 0.400000 +2461 1679 0.400000 +2461 1681 0.400000 +2461 1706 0.400000 +2461 1782 0.400000 +2461 1813 0.400000 +2461 1818 0.400000 +2461 1855 0.400000 +2461 1903 0.400000 +2461 1947 0.400000 +2461 1959 0.400000 +2461 2005 0.400000 +2461 2058 0.400000 +2461 2135 0.400000 +2461 2297 0.400000 +2461 2388 0.400000 +2461 2442 0.400000 +2461 2514 0.400000 +2461 2515 0.400000 +2461 2603 0.400000 +2461 2647 0.400000 +2461 2651 0.400000 +2461 2785 0.400000 +2461 2802 0.400000 +2461 2935 0.400000 +2461 2949 0.400000 +2461 3054 0.400000 +2461 3136 0.400000 +2461 3137 0.400000 +2461 3197 0.400000 +2462 6 0.400000 +2462 39 0.400000 +2462 121 0.400000 +2462 212 0.400000 +2462 272 0.400000 +2462 324 0.400000 +2462 442 0.400000 +2462 453 0.400000 +2462 482 0.400000 +2462 512 0.400000 +2462 530 0.400000 +2462 619 0.400000 +2462 664 0.400000 +2462 754 0.400000 +2462 782 0.400000 +2462 844 0.400000 +2462 852 0.400000 +2462 932 0.400000 +2462 997 0.400000 +2462 1063 0.400000 +2462 1079 0.400000 +2462 1099 0.400000 +2462 1135 0.400000 +2462 1145 0.400000 +2462 1213 0.400000 +2462 1303 0.400000 +2462 1376 0.400000 +2462 1424 0.400000 +2462 1540 0.400000 +2462 1547 0.400000 +2462 1573 0.400000 +2462 1581 0.400000 +2462 1628 0.400000 +2462 1669 0.400000 +2462 1717 0.400000 +2462 1750 0.400000 +2462 1762 0.400000 +2462 1873 0.400000 +2462 1890 0.400000 +2462 1956 0.400000 +2462 1985 0.400000 +2462 2015 0.400000 +2462 2039 0.400000 +2462 2043 0.400000 +2462 2046 0.400000 +2462 2050 0.400000 +2462 2116 0.400000 +2462 2138 0.400000 +2462 2215 0.400000 +2462 2257 0.400000 +2462 2583 0.400000 +2462 2636 0.400000 +2462 2798 0.400000 +2462 2880 0.400000 +2462 2908 0.400000 +2462 2950 0.400000 +2462 2957 0.400000 +2462 2994 0.400000 +2462 3028 0.400000 +2462 3049 0.400000 +2462 3052 0.400000 +2463 64 0.400000 +2463 87 0.400000 +2463 167 0.400000 +2463 196 0.400000 +2463 570 0.400000 +2463 828 0.400000 +2463 848 0.400000 +2463 867 0.400000 +2463 876 0.400000 +2463 1006 0.400000 +2463 1016 0.400000 +2463 1073 0.400000 +2463 1177 0.400000 +2463 1192 0.400000 +2463 1204 0.400000 +2463 1244 0.400000 +2463 1247 0.400000 +2463 1270 0.400000 +2463 1358 0.400000 +2463 1386 0.400000 +2463 1404 0.400000 +2463 1597 0.400000 +2463 1604 0.400000 +2463 1626 0.400000 +2463 1685 0.400000 +2463 1688 0.400000 +2463 1691 0.400000 +2463 1718 0.400000 +2463 1728 0.400000 +2463 1828 0.400000 +2463 1836 0.400000 +2463 1855 0.400000 +2463 1874 0.400000 +2463 1955 0.400000 +2463 1969 0.400000 +2463 2129 0.400000 +2463 2140 0.400000 +2463 2157 0.400000 +2463 2241 0.400000 +2463 2275 0.400000 +2463 2285 0.400000 +2463 2295 0.400000 +2463 2299 0.400000 +2463 2392 0.400000 +2463 2432 0.400000 +2463 2444 0.400000 +2463 2467 0.400000 +2463 2475 0.400000 +2463 2479 0.400000 +2463 2486 0.400000 +2463 2567 0.400000 +2463 2635 0.400000 +2463 2641 0.400000 +2463 2694 0.400000 +2463 2755 0.400000 +2463 2758 0.400000 +2463 2827 0.400000 +2463 2858 0.400000 +2463 2942 0.400000 +2463 2943 0.400000 +2464 40 0.400000 +2464 70 0.400000 +2464 108 0.400000 +2464 112 0.400000 +2464 138 0.400000 +2464 157 0.400000 +2464 158 0.400000 +2464 175 0.400000 +2464 251 0.400000 +2464 272 0.400000 +2464 314 0.400000 +2464 352 0.400000 +2464 498 0.400000 +2464 730 0.400000 +2464 735 0.400000 +2464 769 0.400000 +2464 823 0.400000 +2464 843 0.400000 +2464 854 0.400000 +2464 952 0.400000 +2464 1040 0.400000 +2464 1081 0.400000 +2464 1172 0.400000 +2464 1202 0.400000 +2464 1213 0.400000 +2464 1276 0.400000 +2464 1279 0.400000 +2464 1318 0.400000 +2464 1512 0.400000 +2464 1518 0.400000 +2464 1581 0.400000 +2464 1774 0.400000 +2464 1792 0.400000 +2464 1920 0.400000 +2464 1935 0.400000 +2464 1938 0.400000 +2464 2004 0.400000 +2464 2151 0.400000 +2464 2158 0.400000 +2464 2237 0.400000 +2464 2241 0.400000 +2464 2264 0.400000 +2464 2274 0.400000 +2464 2326 0.400000 +2464 2351 0.400000 +2464 2416 0.400000 +2464 2425 0.400000 +2464 2504 0.400000 +2464 2522 0.400000 +2464 2533 0.400000 +2464 2541 0.400000 +2464 2542 0.400000 +2464 2612 0.400000 +2464 2634 0.400000 +2464 2862 0.400000 +2464 2956 0.400000 +2464 2976 0.400000 +2464 3061 0.400000 +2464 3121 0.400000 +2464 3144 0.400000 +2464 3195 0.400000 +2465 105 0.400000 +2465 216 0.400000 +2465 221 0.400000 +2465 336 0.400000 +2465 381 0.400000 +2465 387 0.400000 +2465 503 0.400000 +2465 538 0.400000 +2465 550 0.400000 +2465 615 0.400000 +2465 617 0.400000 +2465 686 0.400000 +2465 867 0.400000 +2465 872 0.400000 +2465 914 0.400000 +2465 990 0.400000 +2465 1051 0.400000 +2465 1079 0.400000 +2465 1084 0.400000 +2465 1165 0.400000 +2465 1192 0.400000 +2465 1356 0.400000 +2465 1414 0.400000 +2465 1425 0.400000 +2465 1427 0.400000 +2465 1471 0.400000 +2465 1472 0.400000 +2465 1494 0.400000 +2465 1532 0.400000 +2465 1567 0.400000 +2465 1573 0.400000 +2465 1705 0.400000 +2465 1713 0.400000 +2465 1730 0.400000 +2465 1739 0.400000 +2465 1772 0.400000 +2465 1828 0.400000 +2465 1895 0.400000 +2465 2027 0.400000 +2465 2145 0.400000 +2465 2275 0.400000 +2465 2390 0.400000 +2465 2456 0.400000 +2465 2579 0.400000 +2465 2672 0.400000 +2465 2681 0.400000 +2465 2717 0.400000 +2465 2730 0.400000 +2465 2761 0.400000 +2465 2771 0.400000 +2465 2773 0.400000 +2465 2774 0.400000 +2465 2786 0.400000 +2465 2795 0.400000 +2465 2833 0.400000 +2465 2887 0.400000 +2465 2958 0.400000 +2465 2970 0.400000 +2465 3001 0.400000 +2465 3015 0.400000 +2465 3105 0.400000 +2465 3112 0.400000 +2465 3159 0.400000 +2466 47 0.400000 +2466 116 0.400000 +2466 118 0.400000 +2466 361 0.400000 +2466 385 0.400000 +2466 463 0.400000 +2466 493 0.400000 +2466 530 0.400000 +2466 557 0.400000 +2466 560 0.400000 +2466 595 0.400000 +2466 650 0.400000 +2466 677 0.400000 +2466 696 0.400000 +2466 725 0.400000 +2466 753 0.400000 +2466 820 0.400000 +2466 954 0.400000 +2466 978 0.400000 +2466 991 0.400000 +2466 1040 0.400000 +2466 1046 0.400000 +2466 1059 0.400000 +2466 1086 0.400000 +2466 1141 0.400000 +2466 1142 0.400000 +2466 1279 0.400000 +2466 1372 0.400000 +2466 1465 0.400000 +2466 1483 0.400000 +2466 1515 0.400000 +2466 1516 0.400000 +2466 1563 0.400000 +2466 1645 0.400000 +2466 1674 0.400000 +2466 1737 0.400000 +2466 1822 0.400000 +2466 1864 0.400000 +2466 1900 0.400000 +2466 1934 0.400000 +2466 2038 0.400000 +2466 2176 0.400000 +2466 2339 0.400000 +2466 2430 0.400000 +2466 2435 0.400000 +2466 2537 0.400000 +2466 2593 0.400000 +2466 2611 0.400000 +2466 2636 0.400000 +2466 2671 0.400000 +2466 2688 0.400000 +2466 2773 0.400000 +2466 2797 0.400000 +2466 2863 0.400000 +2466 2865 0.400000 +2466 2884 0.400000 +2466 2980 0.400000 +2466 2987 0.400000 +2466 3006 0.400000 +2466 3142 0.400000 +2466 3152 0.400000 +2467 32 0.400000 +2467 67 0.400000 +2467 101 0.400000 +2467 118 0.400000 +2467 190 0.400000 +2467 219 0.400000 +2467 330 0.400000 +2467 352 0.400000 +2467 370 0.400000 +2467 407 0.400000 +2467 470 0.400000 +2467 539 0.400000 +2467 628 0.400000 +2467 661 0.400000 +2467 719 0.400000 +2467 806 0.400000 +2467 828 0.400000 +2467 858 0.400000 +2467 871 0.400000 +2467 922 0.400000 +2467 923 0.400000 +2467 960 0.400000 +2467 1177 0.400000 +2467 1207 0.400000 +2467 1219 0.400000 +2467 1223 0.400000 +2467 1250 0.400000 +2467 1266 0.400000 +2467 1291 0.400000 +2467 1342 0.400000 +2467 1416 0.400000 +2467 1418 0.400000 +2467 1428 0.400000 +2467 1456 0.400000 +2467 1470 0.400000 +2467 1538 0.400000 +2467 1624 0.400000 +2467 1657 0.400000 +2467 1670 0.400000 +2467 1915 0.400000 +2467 1924 0.400000 +2467 1969 0.400000 +2467 2006 0.400000 +2467 2083 0.400000 +2467 2102 0.400000 +2467 2121 0.400000 +2467 2222 0.400000 +2467 2264 0.400000 +2467 2397 0.400000 +2467 2398 0.400000 +2467 2419 0.400000 +2467 2512 0.400000 +2467 2545 0.400000 +2467 2617 0.400000 +2467 2653 0.400000 +2467 2721 0.400000 +2467 2753 0.400000 +2467 2775 0.400000 +2467 2870 0.400000 +2467 2895 0.400000 +2467 3034 0.400000 +2467 3101 0.400000 +2467 3113 0.400000 +2467 3129 0.400000 +2467 3140 0.400000 +2467 3191 0.400000 +2468 140 0.400000 +2468 167 0.400000 +2468 186 0.400000 +2468 213 0.400000 +2468 225 0.400000 +2468 341 0.400000 +2468 373 0.400000 +2468 392 0.400000 +2468 426 0.400000 +2468 443 0.400000 +2468 720 0.400000 +2468 745 0.400000 +2468 751 0.400000 +2468 764 0.400000 +2468 880 0.400000 +2468 941 0.400000 +2468 964 0.400000 +2468 982 0.400000 +2468 1002 0.400000 +2468 1012 0.400000 +2468 1148 0.400000 +2468 1150 0.400000 +2468 1213 0.400000 +2468 1251 0.400000 +2468 1270 0.400000 +2468 1304 0.400000 +2468 1485 0.400000 +2468 1650 0.400000 +2468 1671 0.400000 +2468 1807 0.400000 +2468 1811 0.400000 +2468 1813 0.400000 +2468 1814 0.400000 +2468 1821 0.400000 +2468 1844 0.400000 +2468 1913 0.400000 +2468 2000 0.400000 +2468 2015 0.400000 +2468 2050 0.400000 +2468 2110 0.400000 +2468 2179 0.400000 +2468 2242 0.400000 +2468 2315 0.400000 +2468 2377 0.400000 +2468 2548 0.400000 +2468 2628 0.400000 +2468 2634 0.400000 +2468 2660 0.400000 +2468 2739 0.400000 +2468 2776 0.400000 +2468 2787 0.400000 +2468 2791 0.400000 +2468 2810 0.400000 +2468 2830 0.400000 +2468 2858 0.400000 +2468 2952 0.400000 +2468 2973 0.400000 +2468 3002 0.400000 +2468 3065 0.400000 +2468 3089 0.400000 +2468 3092 0.400000 +2468 3118 0.400000 +2468 3193 0.400000 +2469 107 0.400000 +2469 212 0.400000 +2469 253 0.400000 +2469 316 0.400000 +2469 375 0.400000 +2469 379 0.400000 +2469 414 0.400000 +2469 442 0.400000 +2469 448 0.400000 +2469 463 0.400000 +2469 569 0.400000 +2469 640 0.400000 +2469 641 0.400000 +2469 643 0.400000 +2469 671 0.400000 +2469 702 0.400000 +2469 830 0.400000 +2469 884 0.400000 +2469 886 0.400000 +2469 927 0.400000 +2469 967 0.400000 +2469 994 0.400000 +2469 1011 0.400000 +2469 1012 0.400000 +2469 1107 0.400000 +2469 1109 0.400000 +2469 1119 0.400000 +2469 1162 0.400000 +2469 1208 0.400000 +2469 1217 0.400000 +2469 1336 0.400000 +2469 1398 0.400000 +2469 1404 0.400000 +2469 1432 0.400000 +2469 1444 0.400000 +2469 1529 0.400000 +2469 1599 0.400000 +2469 1635 0.400000 +2469 1663 0.400000 +2469 1668 0.400000 +2469 1669 0.400000 +2469 1678 0.400000 +2469 1719 0.400000 +2469 1864 0.400000 +2469 1873 0.400000 +2469 1877 0.400000 +2469 2047 0.400000 +2469 2055 0.400000 +2469 2069 0.400000 +2469 2190 0.400000 +2469 2276 0.400000 +2469 2309 0.400000 +2469 2315 0.400000 +2469 2349 0.400000 +2469 2360 0.400000 +2469 2467 0.400000 +2469 2468 0.400000 +2469 2507 0.400000 +2469 2540 0.400000 +2469 2570 0.400000 +2469 2726 0.400000 +2469 2739 0.400000 +2469 2740 0.400000 +2469 2809 0.400000 +2469 2883 0.400000 +2469 2926 0.400000 +2469 2936 0.400000 +2469 3008 0.400000 +2469 3078 0.400000 +2469 3080 0.400000 +2469 3103 0.400000 +2469 3114 0.400000 +2469 3122 0.400000 +2469 3155 0.400000 +2470 12 0.400000 +2470 58 0.400000 +2470 127 0.400000 +2470 131 0.400000 +2470 243 0.400000 +2470 249 0.400000 +2470 275 0.400000 +2470 318 0.400000 +2470 353 0.400000 +2470 368 0.400000 +2470 370 0.400000 +2470 427 0.400000 +2470 475 0.400000 +2470 567 0.400000 +2470 627 0.400000 +2470 705 0.400000 +2470 736 0.400000 +2470 739 0.400000 +2470 804 0.400000 +2470 844 0.400000 +2470 858 0.400000 +2470 938 0.400000 +2470 944 0.400000 +2470 966 0.400000 +2470 974 0.400000 +2470 1039 0.400000 +2470 1047 0.400000 +2470 1066 0.400000 +2470 1084 0.400000 +2470 1126 0.400000 +2470 1209 0.400000 +2470 1425 0.400000 +2470 1477 0.400000 +2470 1510 0.400000 +2470 1518 0.400000 +2470 1629 0.400000 +2470 1696 0.400000 +2470 1736 0.400000 +2470 1750 0.400000 +2470 1852 0.400000 +2470 1944 0.400000 +2470 2082 0.400000 +2470 2113 0.400000 +2470 2152 0.400000 +2470 2156 0.400000 +2470 2245 0.400000 +2470 2257 0.400000 +2470 2266 0.400000 +2470 2340 0.400000 +2470 2363 0.400000 +2470 2387 0.400000 +2470 2435 0.400000 +2470 2477 0.400000 +2470 2485 0.400000 +2470 2505 0.400000 +2470 2510 0.400000 +2470 2525 0.400000 +2470 2536 0.400000 +2470 2595 0.400000 +2470 2658 0.400000 +2470 2732 0.400000 +2470 2774 0.400000 +2470 2825 0.400000 +2470 2854 0.400000 +2470 2972 0.400000 +2470 3021 0.400000 +2470 3059 0.400000 +2470 3109 0.400000 +2471 78 0.400000 +2471 143 0.400000 +2471 166 0.400000 +2471 173 0.400000 +2471 195 0.400000 +2471 230 0.400000 +2471 232 0.400000 +2471 253 0.400000 +2471 256 0.400000 +2471 279 0.400000 +2471 361 0.400000 +2471 380 0.400000 +2471 417 0.400000 +2471 430 0.400000 +2471 460 0.400000 +2471 549 0.400000 +2471 607 0.400000 +2471 610 0.400000 +2471 622 0.400000 +2471 743 0.400000 +2471 802 0.400000 +2471 860 0.400000 +2471 910 0.400000 +2471 988 0.400000 +2471 1114 0.400000 +2471 1174 0.400000 +2471 1317 0.400000 +2471 1333 0.400000 +2471 1381 0.400000 +2471 1468 0.400000 +2471 1479 0.400000 +2471 1531 0.400000 +2471 1582 0.400000 +2471 1592 0.400000 +2471 1643 0.400000 +2471 1651 0.400000 +2471 1688 0.400000 +2471 1695 0.400000 +2471 1712 0.400000 +2471 1716 0.400000 +2471 1845 0.400000 +2471 1854 0.400000 +2471 1969 0.400000 +2471 2036 0.400000 +2471 2071 0.400000 +2471 2174 0.400000 +2471 2198 0.400000 +2471 2342 0.400000 +2471 2344 0.400000 +2471 2437 0.400000 +2471 2487 0.400000 +2471 2542 0.400000 +2471 2673 0.400000 +2471 2699 0.400000 +2471 2740 0.400000 +2471 2799 0.400000 +2471 2868 0.400000 +2471 2878 0.400000 +2471 2904 0.400000 +2471 2920 0.400000 +2471 2981 0.400000 +2471 3075 0.400000 +2471 3117 0.400000 +2471 3149 0.400000 +2471 3174 0.400000 +2472 5 0.400000 +2472 20 0.400000 +2472 41 0.400000 +2472 79 0.400000 +2472 142 0.400000 +2472 150 0.400000 +2472 291 0.400000 +2472 324 0.400000 +2472 367 0.400000 +2472 393 0.400000 +2472 500 0.400000 +2472 526 0.400000 +2472 735 0.400000 +2472 756 0.400000 +2472 833 0.400000 +2472 842 0.400000 +2472 954 0.400000 +2472 980 0.400000 +2472 993 0.400000 +2472 996 0.400000 +2472 1000 0.400000 +2472 1087 0.400000 +2472 1145 0.400000 +2472 1155 0.400000 +2472 1158 0.400000 +2472 1210 0.400000 +2472 1238 0.400000 +2472 1415 0.400000 +2472 1430 0.400000 +2472 1457 0.400000 +2472 1492 0.400000 +2472 1495 0.400000 +2472 1565 0.400000 +2472 1606 0.400000 +2472 1620 0.400000 +2472 1781 0.400000 +2472 1835 0.400000 +2472 1889 0.400000 +2472 2170 0.400000 +2472 2258 0.400000 +2472 2267 0.400000 +2472 2369 0.400000 +2472 2378 0.400000 +2472 2418 0.400000 +2472 2509 0.400000 +2472 2548 0.400000 +2472 2601 0.400000 +2472 2608 0.400000 +2472 2612 0.400000 +2472 2620 0.400000 +2472 2652 0.400000 +2472 2680 0.400000 +2472 2763 0.400000 +2472 2794 0.400000 +2472 2842 0.400000 +2472 2860 0.400000 +2472 2895 0.400000 +2472 2926 0.400000 +2472 2999 0.400000 +2472 3052 0.400000 +2472 3072 0.400000 +2472 3074 0.400000 +2472 3089 0.400000 +2472 3181 0.400000 +2473 192 0.400000 +2473 241 0.400000 +2473 249 0.400000 +2473 333 0.400000 +2473 412 0.400000 +2473 421 0.400000 +2473 573 0.400000 +2473 651 0.400000 +2473 748 0.400000 +2473 754 0.400000 +2473 841 0.400000 +2473 870 0.400000 +2473 879 0.400000 +2473 882 0.400000 +2473 1034 0.400000 +2473 1037 0.400000 +2473 1115 0.400000 +2473 1136 0.400000 +2473 1190 0.400000 +2473 1235 0.400000 +2473 1288 0.400000 +2473 1334 0.400000 +2473 1397 0.400000 +2473 1426 0.400000 +2473 1434 0.400000 +2473 1525 0.400000 +2473 1568 0.400000 +2473 1679 0.400000 +2473 1809 0.400000 +2473 1957 0.400000 +2473 2201 0.400000 +2473 2291 0.400000 +2473 2329 0.400000 +2473 2427 0.400000 +2473 2453 0.400000 +2473 2671 0.400000 +2473 2714 0.400000 +2473 2809 0.400000 +2473 2846 0.400000 +2473 2949 0.400000 +2473 3028 0.400000 +2473 3132 0.400000 +2473 3138 0.400000 +2473 3167 0.400000 +2474 112 0.400000 +2474 200 0.400000 +2474 247 0.400000 +2474 263 0.400000 +2474 323 0.400000 +2474 379 0.400000 +2474 382 0.400000 +2474 447 0.400000 +2474 506 0.400000 +2474 584 0.400000 +2474 590 0.400000 +2474 596 0.400000 +2474 606 0.400000 +2474 609 0.400000 +2474 630 0.400000 +2474 631 0.400000 +2474 655 0.400000 +2474 693 0.400000 +2474 736 0.400000 +2474 920 0.400000 +2474 936 0.400000 +2474 986 0.400000 +2474 1028 0.400000 +2474 1060 0.400000 +2474 1093 0.400000 +2474 1108 0.400000 +2474 1165 0.400000 +2474 1173 0.400000 +2474 1292 0.400000 +2474 1315 0.400000 +2474 1349 0.400000 +2474 1458 0.400000 +2474 1525 0.400000 +2474 1561 0.400000 +2474 1578 0.400000 +2474 1632 0.400000 +2474 1661 0.400000 +2474 1810 0.400000 +2474 1828 0.400000 +2474 1873 0.400000 +2474 1889 0.400000 +2474 2003 0.400000 +2474 2014 0.400000 +2474 2190 0.400000 +2474 2387 0.400000 +2474 2477 0.400000 +2474 2657 0.400000 +2474 2741 0.400000 +2474 2799 0.400000 +2474 2809 0.400000 +2474 2906 0.400000 +2474 2984 0.400000 +2474 2991 0.400000 +2474 3028 0.400000 +2474 3054 0.400000 +2474 3083 0.400000 +2474 3111 0.400000 +2474 3112 0.400000 +2474 3168 0.400000 +2475 7 0.400000 +2475 62 0.400000 +2475 122 0.400000 +2475 164 0.400000 +2475 193 0.400000 +2475 232 0.400000 +2475 247 0.400000 +2475 284 0.400000 +2475 307 0.400000 +2475 357 0.400000 +2475 469 0.400000 +2475 666 0.400000 +2475 687 0.400000 +2475 842 0.400000 +2475 843 0.400000 +2475 859 0.400000 +2475 877 0.400000 +2475 914 0.400000 +2475 932 0.400000 +2475 1053 0.400000 +2475 1116 0.400000 +2475 1283 0.400000 +2475 1294 0.400000 +2475 1333 0.400000 +2475 1350 0.400000 +2475 1374 0.400000 +2475 1394 0.400000 +2475 1413 0.400000 +2475 1460 0.400000 +2475 1499 0.400000 +2475 1540 0.400000 +2475 1543 0.400000 +2475 1571 0.400000 +2475 1576 0.400000 +2475 1602 0.400000 +2475 1654 0.400000 +2475 1790 0.400000 +2475 1815 0.400000 +2475 1823 0.400000 +2475 1846 0.400000 +2475 1914 0.400000 +2475 1943 0.400000 +2475 2012 0.400000 +2475 2176 0.400000 +2475 2261 0.400000 +2475 2364 0.400000 +2475 2407 0.400000 +2475 2509 0.400000 +2475 2520 0.400000 +2475 2606 0.400000 +2475 2654 0.400000 +2475 2686 0.400000 +2475 2781 0.400000 +2475 2832 0.400000 +2475 2838 0.400000 +2475 2883 0.400000 +2475 2962 0.400000 +2475 3015 0.400000 +2475 3147 0.400000 +2476 6 0.400000 +2476 32 0.400000 +2476 51 0.400000 +2476 64 0.400000 +2476 139 0.400000 +2476 172 0.400000 +2476 247 0.400000 +2476 287 0.400000 +2476 333 0.400000 +2476 337 0.400000 +2476 384 0.400000 +2476 394 0.400000 +2476 409 0.400000 +2476 483 0.400000 +2476 505 0.400000 +2476 521 0.400000 +2476 547 0.400000 +2476 565 0.400000 +2476 746 0.400000 +2476 796 0.400000 +2476 869 0.400000 +2476 924 0.400000 +2476 1014 0.400000 +2476 1062 0.400000 +2476 1094 0.400000 +2476 1098 0.400000 +2476 1134 0.400000 +2476 1210 0.400000 +2476 1252 0.400000 +2476 1375 0.400000 +2476 1403 0.400000 +2476 1435 0.400000 +2476 1447 0.400000 +2476 1524 0.400000 +2476 1537 0.400000 +2476 1597 0.400000 +2476 1601 0.400000 +2476 1676 0.400000 +2476 1685 0.400000 +2476 1691 0.400000 +2476 1793 0.400000 +2476 1824 0.400000 +2476 1881 0.400000 +2476 1911 0.400000 +2476 1913 0.400000 +2476 1957 0.400000 +2476 1959 0.400000 +2476 2099 0.400000 +2476 2121 0.400000 +2476 2201 0.400000 +2476 2222 0.400000 +2476 2270 0.400000 +2476 2271 0.400000 +2476 2283 0.400000 +2476 2284 0.400000 +2476 2300 0.400000 +2476 2306 0.400000 +2476 2313 0.400000 +2476 2389 0.400000 +2476 2529 0.400000 +2476 2701 0.400000 +2476 2757 0.400000 +2476 2912 0.400000 +2476 3095 0.400000 +2476 3178 0.400000 +2477 2 0.400000 +2477 39 0.400000 +2477 93 0.400000 +2477 152 0.400000 +2477 163 0.400000 +2477 181 0.400000 +2477 230 0.400000 +2477 306 0.400000 +2477 311 0.400000 +2477 319 0.400000 +2477 352 0.400000 +2477 354 0.400000 +2477 467 0.400000 +2477 471 0.400000 +2477 488 0.400000 +2477 553 0.400000 +2477 615 0.400000 +2477 668 0.400000 +2477 738 0.400000 +2477 821 0.400000 +2477 826 0.400000 +2477 839 0.400000 +2477 847 0.400000 +2477 888 0.400000 +2477 920 0.400000 +2477 960 0.400000 +2477 966 0.400000 +2477 973 0.400000 +2477 1097 0.400000 +2477 1100 0.400000 +2477 1126 0.400000 +2477 1141 0.400000 +2477 1165 0.400000 +2477 1182 0.400000 +2477 1183 0.400000 +2477 1184 0.400000 +2477 1416 0.400000 +2477 1426 0.400000 +2477 1433 0.400000 +2477 1438 0.400000 +2477 1458 0.400000 +2477 1463 0.400000 +2477 1490 0.400000 +2477 1553 0.400000 +2477 1573 0.400000 +2477 1611 0.400000 +2477 1654 0.400000 +2477 1655 0.400000 +2477 1707 0.400000 +2477 1737 0.400000 +2477 1748 0.400000 +2477 1825 0.400000 +2477 1864 0.400000 +2477 1866 0.400000 +2477 1964 0.400000 +2477 1967 0.400000 +2477 2007 0.400000 +2477 2059 0.400000 +2477 2079 0.400000 +2477 2110 0.400000 +2477 2233 0.400000 +2477 2260 0.400000 +2477 2278 0.400000 +2477 2343 0.400000 +2477 2362 0.400000 +2477 2398 0.400000 +2477 2420 0.400000 +2477 2445 0.400000 +2477 2571 0.400000 +2477 2578 0.400000 +2477 2592 0.400000 +2477 2612 0.400000 +2477 2790 0.400000 +2477 2811 0.400000 +2477 2843 0.400000 +2477 2852 0.400000 +2477 2873 0.400000 +2477 2875 0.400000 +2477 3105 0.400000 +2477 3115 0.400000 +2477 3118 0.400000 +2477 3140 0.400000 +2477 3165 0.400000 +2477 3174 0.400000 +2477 3189 0.400000 +2477 3199 0.400000 +2478 77 0.400000 +2478 113 0.400000 +2478 141 0.400000 +2478 268 0.400000 +2478 308 0.400000 +2478 363 0.400000 +2478 406 0.400000 +2478 418 0.400000 +2478 547 0.400000 +2478 582 0.400000 +2478 583 0.400000 +2478 604 0.400000 +2478 611 0.400000 +2478 678 0.400000 +2478 713 0.400000 +2478 754 0.400000 +2478 757 0.400000 +2478 900 0.400000 +2478 1211 0.400000 +2478 1214 0.400000 +2478 1240 0.400000 +2478 1280 0.400000 +2478 1293 0.400000 +2478 1305 0.400000 +2478 1488 0.400000 +2478 1507 0.400000 +2478 1549 0.400000 +2478 1688 0.400000 +2478 1713 0.400000 +2478 1732 0.400000 +2478 1799 0.400000 +2478 1882 0.400000 +2478 1894 0.400000 +2478 1901 0.400000 +2478 1962 0.400000 +2478 1972 0.400000 +2478 2046 0.400000 +2478 2081 0.400000 +2478 2087 0.400000 +2478 2133 0.400000 +2478 2168 0.400000 +2478 2189 0.400000 +2478 2212 0.400000 +2478 2235 0.400000 +2478 2392 0.400000 +2478 2394 0.400000 +2478 2448 0.400000 +2478 2516 0.400000 +2478 2722 0.400000 +2478 2742 0.400000 +2478 2806 0.400000 +2478 2811 0.400000 +2478 2910 0.400000 +2478 2918 0.400000 +2478 2938 0.400000 +2478 3004 0.400000 +2478 3023 0.400000 +2478 3038 0.400000 +2478 3120 0.400000 +2479 9 0.400000 +2479 73 0.400000 +2479 163 0.400000 +2479 220 0.400000 +2479 275 0.400000 +2479 315 0.400000 +2479 363 0.400000 +2479 433 0.400000 +2479 438 0.400000 +2479 449 0.400000 +2479 454 0.400000 +2479 627 0.400000 +2479 648 0.400000 +2479 656 0.400000 +2479 736 0.400000 +2479 741 0.400000 +2479 742 0.400000 +2479 753 0.400000 +2479 770 0.400000 +2479 799 0.400000 +2479 840 0.400000 +2479 866 0.400000 +2479 1045 0.400000 +2479 1088 0.400000 +2479 1107 0.400000 +2479 1119 0.400000 +2479 1131 0.400000 +2479 1151 0.400000 +2479 1166 0.400000 +2479 1213 0.400000 +2479 1222 0.400000 +2479 1235 0.400000 +2479 1269 0.400000 +2479 1321 0.400000 +2479 1329 0.400000 +2479 1406 0.400000 +2479 1470 0.400000 +2479 1475 0.400000 +2479 1480 0.400000 +2479 1490 0.400000 +2479 1505 0.400000 +2479 1536 0.400000 +2479 1560 0.400000 +2479 1587 0.400000 +2479 1657 0.400000 +2479 1728 0.400000 +2479 1764 0.400000 +2479 1781 0.400000 +2479 1791 0.400000 +2479 1888 0.400000 +2479 1899 0.400000 +2479 1935 0.400000 +2479 1949 0.400000 +2479 1957 0.400000 +2479 1962 0.400000 +2479 2081 0.400000 +2479 2124 0.400000 +2479 2208 0.400000 +2479 2210 0.400000 +2479 2291 0.400000 +2479 2308 0.400000 +2479 2350 0.400000 +2479 2369 0.400000 +2479 2401 0.400000 +2479 2408 0.400000 +2479 2517 0.400000 +2479 2520 0.400000 +2479 2547 0.400000 +2479 2589 0.400000 +2479 2617 0.400000 +2479 2638 0.400000 +2479 2650 0.400000 +2479 2674 0.400000 +2479 2690 0.400000 +2479 2744 0.400000 +2479 2760 0.400000 +2479 2841 0.400000 +2479 2916 0.400000 +2479 2944 0.400000 +2479 2972 0.400000 +2479 3022 0.400000 +2479 3043 0.400000 +2479 3089 0.400000 +2479 3127 0.400000 +2479 3129 0.400000 +2479 3161 0.400000 +2479 3195 0.400000 +2480 1 0.400000 +2480 39 0.400000 +2480 143 0.400000 +2480 237 0.400000 +2480 382 0.400000 +2480 404 0.400000 +2480 435 0.400000 +2480 512 0.400000 +2480 634 0.400000 +2480 664 0.400000 +2480 673 0.400000 +2480 706 0.400000 +2480 747 0.400000 +2480 802 0.400000 +2480 913 0.400000 +2480 1059 0.400000 +2480 1073 0.400000 +2480 1096 0.400000 +2480 1175 0.400000 +2480 1238 0.400000 +2480 1248 0.400000 +2480 1418 0.400000 +2480 1429 0.400000 +2480 1468 0.400000 +2480 1559 0.400000 +2480 1606 0.400000 +2480 1668 0.400000 +2480 1679 0.400000 +2480 1889 0.400000 +2480 1901 0.400000 +2480 1910 0.400000 +2480 1970 0.400000 +2480 1986 0.400000 +2480 2025 0.400000 +2480 2066 0.400000 +2480 2081 0.400000 +2480 2147 0.400000 +2480 2228 0.400000 +2480 2307 0.400000 +2480 2368 0.400000 +2480 2384 0.400000 +2480 2470 0.400000 +2480 2476 0.400000 +2480 2488 0.400000 +2480 2504 0.400000 +2480 2612 0.400000 +2480 2730 0.400000 +2480 2767 0.400000 +2480 2790 0.400000 +2480 2874 0.400000 +2480 2999 0.400000 +2480 3044 0.400000 +2480 3053 0.400000 +2480 3073 0.400000 +2480 3103 0.400000 +2480 3132 0.400000 +2480 3146 0.400000 +2480 3151 0.400000 +2480 3161 0.400000 +2480 3196 0.400000 +2481 106 0.400000 +2481 126 0.400000 +2481 248 0.400000 +2481 410 0.400000 +2481 502 0.400000 +2481 546 0.400000 +2481 591 0.400000 +2481 675 0.400000 +2481 714 0.400000 +2481 746 0.400000 +2481 945 0.400000 +2481 953 0.400000 +2481 1001 0.400000 +2481 1023 0.400000 +2481 1032 0.400000 +2481 1069 0.400000 +2481 1085 0.400000 +2481 1144 0.400000 +2481 1403 0.400000 +2481 1439 0.400000 +2481 1466 0.400000 +2481 1473 0.400000 +2481 1476 0.400000 +2481 1484 0.400000 +2481 1498 0.400000 +2481 1601 0.400000 +2481 1649 0.400000 +2481 1764 0.400000 +2481 1776 0.400000 +2481 1839 0.400000 +2481 1864 0.400000 +2481 1878 0.400000 +2481 1901 0.400000 +2481 2112 0.400000 +2481 2123 0.400000 +2481 2129 0.400000 +2481 2154 0.400000 +2481 2258 0.400000 +2481 2263 0.400000 +2481 2284 0.400000 +2481 2410 0.400000 +2481 2468 0.400000 +2481 2701 0.400000 +2481 2722 0.400000 +2481 2727 0.400000 +2481 2824 0.400000 +2481 2855 0.400000 +2481 2874 0.400000 +2481 2928 0.400000 +2481 2988 0.400000 +2481 3084 0.400000 +2481 3085 0.400000 +2481 3112 0.400000 +2481 3160 0.400000 +2482 88 0.400000 +2482 119 0.400000 +2482 157 0.400000 +2482 168 0.400000 +2482 203 0.400000 +2482 224 0.400000 +2482 234 0.400000 +2482 281 0.400000 +2482 319 0.400000 +2482 348 0.400000 +2482 391 0.400000 +2482 407 0.400000 +2482 562 0.400000 +2482 782 0.400000 +2482 833 0.400000 +2482 853 0.400000 +2482 855 0.400000 +2482 859 0.400000 +2482 990 0.400000 +2482 1027 0.400000 +2482 1044 0.400000 +2482 1059 0.400000 +2482 1068 0.400000 +2482 1085 0.400000 +2482 1230 0.400000 +2482 1268 0.400000 +2482 1277 0.400000 +2482 1362 0.400000 +2482 1367 0.400000 +2482 1382 0.400000 +2482 1397 0.400000 +2482 1458 0.400000 +2482 1472 0.400000 +2482 1631 0.400000 +2482 1632 0.400000 +2482 1727 0.400000 +2482 1741 0.400000 +2482 1769 0.400000 +2482 1811 0.400000 +2482 1910 0.400000 +2482 1995 0.400000 +2482 2040 0.400000 +2482 2085 0.400000 +2482 2124 0.400000 +2482 2136 0.400000 +2482 2152 0.400000 +2482 2180 0.400000 +2482 2210 0.400000 +2482 2325 0.400000 +2482 2361 0.400000 +2482 2418 0.400000 +2482 2464 0.400000 +2482 2748 0.400000 +2482 2772 0.400000 +2482 2800 0.400000 +2482 2812 0.400000 +2482 2896 0.400000 +2482 2903 0.400000 +2482 2984 0.400000 +2482 3000 0.400000 +2482 3012 0.400000 +2482 3036 0.400000 +2482 3106 0.400000 +2482 3108 0.400000 +2482 3139 0.400000 +2482 3186 0.400000 +2483 119 0.400000 +2483 122 0.400000 +2483 152 0.400000 +2483 168 0.400000 +2483 191 0.400000 +2483 236 0.400000 +2483 275 0.400000 +2483 301 0.400000 +2483 355 0.400000 +2483 375 0.400000 +2483 407 0.400000 +2483 446 0.400000 +2483 448 0.400000 +2483 613 0.400000 +2483 614 0.400000 +2483 754 0.400000 +2483 756 0.400000 +2483 835 0.400000 +2483 851 0.400000 +2483 901 0.400000 +2483 973 0.400000 +2483 985 0.400000 +2483 1036 0.400000 +2483 1169 0.400000 +2483 1330 0.400000 +2483 1351 0.400000 +2483 1389 0.400000 +2483 1412 0.400000 +2483 1478 0.400000 +2483 1525 0.400000 +2483 1581 0.400000 +2483 1591 0.400000 +2483 1630 0.400000 +2483 1668 0.400000 +2483 1669 0.400000 +2483 1714 0.400000 +2483 1728 0.400000 +2483 1783 0.400000 +2483 1852 0.400000 +2483 1920 0.400000 +2483 1965 0.400000 +2483 1978 0.400000 +2483 2039 0.400000 +2483 2048 0.400000 +2483 2157 0.400000 +2483 2242 0.400000 +2483 2256 0.400000 +2483 2286 0.400000 +2483 2427 0.400000 +2483 2572 0.400000 +2483 2579 0.400000 +2483 2746 0.400000 +2483 2755 0.400000 +2483 2764 0.400000 +2483 2814 0.400000 +2483 2820 0.400000 +2483 2962 0.400000 +2483 2983 0.400000 +2483 3059 0.400000 +2483 3072 0.400000 +2483 3137 0.400000 +2483 3197 0.400000 +2484 32 0.400000 +2484 57 0.400000 +2484 90 0.400000 +2484 127 0.400000 +2484 181 0.400000 +2484 182 0.400000 +2484 242 0.400000 +2484 309 0.400000 +2484 315 0.400000 +2484 422 0.400000 +2484 462 0.400000 +2484 600 0.400000 +2484 699 0.400000 +2484 707 0.400000 +2484 750 0.400000 +2484 807 0.400000 +2484 856 0.400000 +2484 1001 0.400000 +2484 1107 0.400000 +2484 1112 0.400000 +2484 1145 0.400000 +2484 1172 0.400000 +2484 1181 0.400000 +2484 1251 0.400000 +2484 1294 0.400000 +2484 1467 0.400000 +2484 1503 0.400000 +2484 1572 0.400000 +2484 1641 0.400000 +2484 1659 0.400000 +2484 1709 0.400000 +2484 1764 0.400000 +2484 1794 0.400000 +2484 1879 0.400000 +2484 2065 0.400000 +2484 2094 0.400000 +2484 2136 0.400000 +2484 2140 0.400000 +2484 2197 0.400000 +2484 2232 0.400000 +2484 2251 0.400000 +2484 2292 0.400000 +2484 2316 0.400000 +2484 2319 0.400000 +2484 2340 0.400000 +2484 2530 0.400000 +2484 2605 0.400000 +2484 2653 0.400000 +2484 2691 0.400000 +2484 2713 0.400000 +2484 2750 0.400000 +2484 2816 0.400000 +2484 2847 0.400000 +2484 2926 0.400000 +2484 2958 0.400000 +2484 2959 0.400000 +2484 2979 0.400000 +2484 3080 0.400000 +2484 3121 0.400000 +2485 89 0.400000 +2485 182 0.400000 +2485 183 0.400000 +2485 184 0.400000 +2485 194 0.400000 +2485 283 0.400000 +2485 328 0.400000 +2485 373 0.400000 +2485 376 0.400000 +2485 380 0.400000 +2485 390 0.400000 +2485 432 0.400000 +2485 470 0.400000 +2485 512 0.400000 +2485 533 0.400000 +2485 546 0.400000 +2485 597 0.400000 +2485 691 0.400000 +2485 750 0.400000 +2485 823 0.400000 +2485 942 0.400000 +2485 956 0.400000 +2485 996 0.400000 +2485 1010 0.400000 +2485 1128 0.400000 +2485 1189 0.400000 +2485 1206 0.400000 +2485 1210 0.400000 +2485 1380 0.400000 +2485 1466 0.400000 +2485 1495 0.400000 +2485 1616 0.400000 +2485 1628 0.400000 +2485 1650 0.400000 +2485 1685 0.400000 +2485 1740 0.400000 +2485 1768 0.400000 +2485 1786 0.400000 +2485 1794 0.400000 +2485 1795 0.400000 +2485 1829 0.400000 +2485 1838 0.400000 +2485 1893 0.400000 +2485 1934 0.400000 +2485 1991 0.400000 +2485 2037 0.400000 +2485 2067 0.400000 +2485 2150 0.400000 +2485 2162 0.400000 +2485 2257 0.400000 +2485 2368 0.400000 +2485 2383 0.400000 +2485 2428 0.400000 +2485 2429 0.400000 +2485 2486 0.400000 +2485 2623 0.400000 +2485 2648 0.400000 +2485 2662 0.400000 +2485 2691 0.400000 +2485 2736 0.400000 +2485 2793 0.400000 +2485 2807 0.400000 +2485 2823 0.400000 +2485 2845 0.400000 +2485 2857 0.400000 +2485 2956 0.400000 +2485 2965 0.400000 +2485 3044 0.400000 +2485 3131 0.400000 +2486 42 0.400000 +2486 44 0.400000 +2486 58 0.400000 +2486 108 0.400000 +2486 112 0.400000 +2486 216 0.400000 +2486 252 0.400000 +2486 367 0.400000 +2486 460 0.400000 +2486 549 0.400000 +2486 633 0.400000 +2486 709 0.400000 +2486 719 0.400000 +2486 720 0.400000 +2486 771 0.400000 +2486 792 0.400000 +2486 821 0.400000 +2486 822 0.400000 +2486 911 0.400000 +2486 928 0.400000 +2486 937 0.400000 +2486 994 0.400000 +2486 1119 0.400000 +2486 1191 0.400000 +2486 1201 0.400000 +2486 1226 0.400000 +2486 1251 0.400000 +2486 1382 0.400000 +2486 1420 0.400000 +2486 1490 0.400000 +2486 1506 0.400000 +2486 1520 0.400000 +2486 1554 0.400000 +2486 1684 0.400000 +2486 1704 0.400000 +2486 1748 0.400000 +2486 1777 0.400000 +2486 1785 0.400000 +2486 1787 0.400000 +2486 1811 0.400000 +2486 1954 0.400000 +2486 1974 0.400000 +2486 1976 0.400000 +2486 1984 0.400000 +2486 2049 0.400000 +2486 2053 0.400000 +2486 2059 0.400000 +2486 2083 0.400000 +2486 2210 0.400000 +2486 2217 0.400000 +2486 2235 0.400000 +2486 2361 0.400000 +2486 2377 0.400000 +2486 2383 0.400000 +2486 2417 0.400000 +2486 2472 0.400000 +2486 2490 0.400000 +2486 2498 0.400000 +2486 2517 0.400000 +2486 2522 0.400000 +2486 2565 0.400000 +2486 2582 0.400000 +2486 2643 0.400000 +2486 2720 0.400000 +2486 2792 0.400000 +2486 2949 0.400000 +2486 3082 0.400000 +2486 3110 0.400000 +2487 30 0.400000 +2487 35 0.400000 +2487 49 0.400000 +2487 79 0.400000 +2487 207 0.400000 +2487 278 0.400000 +2487 311 0.400000 +2487 333 0.400000 +2487 371 0.400000 +2487 465 0.400000 +2487 572 0.400000 +2487 594 0.400000 +2487 605 0.400000 +2487 685 0.400000 +2487 737 0.400000 +2487 756 0.400000 +2487 848 0.400000 +2487 856 0.400000 +2487 892 0.400000 +2487 914 0.400000 +2487 927 0.400000 +2487 932 0.400000 +2487 952 0.400000 +2487 979 0.400000 +2487 988 0.400000 +2487 1082 0.400000 +2487 1091 0.400000 +2487 1095 0.400000 +2487 1138 0.400000 +2487 1143 0.400000 +2487 1158 0.400000 +2487 1258 0.400000 +2487 1275 0.400000 +2487 1299 0.400000 +2487 1324 0.400000 +2487 1334 0.400000 +2487 1339 0.400000 +2487 1353 0.400000 +2487 1403 0.400000 +2487 1514 0.400000 +2487 1548 0.400000 +2487 1589 0.400000 +2487 1668 0.400000 +2487 1750 0.400000 +2487 1794 0.400000 +2487 1848 0.400000 +2487 1920 0.400000 +2487 1947 0.400000 +2487 2020 0.400000 +2487 2033 0.400000 +2487 2050 0.400000 +2487 2058 0.400000 +2487 2095 0.400000 +2487 2134 0.400000 +2487 2147 0.400000 +2487 2152 0.400000 +2487 2350 0.400000 +2487 2363 0.400000 +2487 2418 0.400000 +2487 2485 0.400000 +2487 2510 0.400000 +2487 2532 0.400000 +2487 2538 0.400000 +2487 2539 0.400000 +2487 2602 0.400000 +2487 2664 0.400000 +2487 2668 0.400000 +2487 2673 0.400000 +2487 2717 0.400000 +2487 2737 0.400000 +2487 2865 0.400000 +2487 2944 0.400000 +2487 2986 0.400000 +2487 3030 0.400000 +2487 3037 0.400000 +2487 3052 0.400000 +2487 3054 0.400000 +2487 3055 0.400000 +2487 3200 0.400000 +2488 35 0.400000 +2488 71 0.400000 +2488 128 0.400000 +2488 166 0.400000 +2488 176 0.400000 +2488 212 0.400000 +2488 279 0.400000 +2488 333 0.400000 +2488 342 0.400000 +2488 365 0.400000 +2488 442 0.400000 +2488 464 0.400000 +2488 654 0.400000 +2488 656 0.400000 +2488 664 0.400000 +2488 694 0.400000 +2488 718 0.400000 +2488 747 0.400000 +2488 764 0.400000 +2488 799 0.400000 +2488 804 0.400000 +2488 815 0.400000 +2488 861 0.400000 +2488 891 0.400000 +2488 992 0.400000 +2488 1048 0.400000 +2488 1070 0.400000 +2488 1167 0.400000 +2488 1212 0.400000 +2488 1225 0.400000 +2488 1269 0.400000 +2488 1284 0.400000 +2488 1331 0.400000 +2488 1466 0.400000 +2488 1480 0.400000 +2488 1491 0.400000 +2488 1538 0.400000 +2488 1643 0.400000 +2488 1664 0.400000 +2488 1734 0.400000 +2488 1749 0.400000 +2488 1794 0.400000 +2488 1841 0.400000 +2488 1859 0.400000 +2488 1878 0.400000 +2488 1973 0.400000 +2488 2203 0.400000 +2488 2295 0.400000 +2488 2298 0.400000 +2488 2361 0.400000 +2488 2390 0.400000 +2488 2391 0.400000 +2488 2434 0.400000 +2488 2487 0.400000 +2488 2515 0.400000 +2488 2543 0.400000 +2488 2556 0.400000 +2488 2558 0.400000 +2488 2563 0.400000 +2488 2566 0.400000 +2488 2643 0.400000 +2488 2652 0.400000 +2488 2692 0.400000 +2488 2709 0.400000 +2488 2715 0.400000 +2488 2735 0.400000 +2488 2824 0.400000 +2488 2861 0.400000 +2488 2896 0.400000 +2488 2967 0.400000 +2488 2971 0.400000 +2488 2993 0.400000 +2488 3002 0.400000 +2488 3013 0.400000 +2488 3029 0.400000 +2488 3098 0.400000 +2488 3144 0.400000 +2489 61 0.400000 +2489 64 0.400000 +2489 181 0.400000 +2489 265 0.400000 +2489 284 0.400000 +2489 289 0.400000 +2489 298 0.400000 +2489 303 0.400000 +2489 308 0.400000 +2489 312 0.400000 +2489 331 0.400000 +2489 339 0.400000 +2489 340 0.400000 +2489 365 0.400000 +2489 447 0.400000 +2489 461 0.400000 +2489 523 0.400000 +2489 527 0.400000 +2489 530 0.400000 +2489 596 0.400000 +2489 615 0.400000 +2489 630 0.400000 +2489 632 0.400000 +2489 793 0.400000 +2489 1032 0.400000 +2489 1139 0.400000 +2489 1176 0.400000 +2489 1211 0.400000 +2489 1218 0.400000 +2489 1225 0.400000 +2489 1229 0.400000 +2489 1319 0.400000 +2489 1330 0.400000 +2489 1334 0.400000 +2489 1403 0.400000 +2489 1437 0.400000 +2489 1464 0.400000 +2489 1479 0.400000 +2489 1595 0.400000 +2489 1642 0.400000 +2489 1757 0.400000 +2489 1833 0.400000 +2489 1852 0.400000 +2489 1888 0.400000 +2489 1900 0.400000 +2489 1972 0.400000 +2489 2016 0.400000 +2489 2071 0.400000 +2489 2131 0.400000 +2489 2144 0.400000 +2489 2150 0.400000 +2489 2330 0.400000 +2489 2339 0.400000 +2489 2377 0.400000 +2489 2454 0.400000 +2489 2498 0.400000 +2489 2537 0.400000 +2489 2569 0.400000 +2489 2587 0.400000 +2489 2669 0.400000 +2489 2686 0.400000 +2489 2712 0.400000 +2489 2911 0.400000 +2489 3025 0.400000 +2489 3065 0.400000 +2489 3097 0.400000 +2489 3113 0.400000 +2489 3136 0.400000 +2489 3150 0.400000 +2489 3151 0.400000 +2490 7 0.400000 +2490 55 0.400000 +2490 77 0.400000 +2490 86 0.400000 +2490 154 0.400000 +2490 160 0.400000 +2490 161 0.400000 +2490 220 0.400000 +2490 251 0.400000 +2490 269 0.400000 +2490 271 0.400000 +2490 295 0.400000 +2490 371 0.400000 +2490 407 0.400000 +2490 415 0.400000 +2490 492 0.400000 +2490 494 0.400000 +2490 529 0.400000 +2490 539 0.400000 +2490 574 0.400000 +2490 659 0.400000 +2490 709 0.400000 +2490 859 0.400000 +2490 949 0.400000 +2490 969 0.400000 +2490 981 0.400000 +2490 983 0.400000 +2490 1060 0.400000 +2490 1136 0.400000 +2490 1153 0.400000 +2490 1187 0.400000 +2490 1203 0.400000 +2490 1208 0.400000 +2490 1217 0.400000 +2490 1279 0.400000 +2490 1308 0.400000 +2490 1336 0.400000 +2490 1401 0.400000 +2490 1409 0.400000 +2490 1430 0.400000 +2490 1433 0.400000 +2490 1495 0.400000 +2490 1500 0.400000 +2490 1523 0.400000 +2490 1686 0.400000 +2490 1694 0.400000 +2490 1711 0.400000 +2490 1775 0.400000 +2490 1789 0.400000 +2490 1791 0.400000 +2490 1833 0.400000 +2490 1843 0.400000 +2490 1849 0.400000 +2490 1869 0.400000 +2490 1911 0.400000 +2490 1992 0.400000 +2490 2094 0.400000 +2490 2186 0.400000 +2490 2228 0.400000 +2490 2253 0.400000 +2490 2259 0.400000 +2490 2283 0.400000 +2490 2338 0.400000 +2490 2439 0.400000 +2490 2527 0.400000 +2490 2543 0.400000 +2490 2547 0.400000 +2490 2588 0.400000 +2490 2594 0.400000 +2490 2694 0.400000 +2490 2768 0.400000 +2490 2774 0.400000 +2490 2805 0.400000 +2490 2808 0.400000 +2490 2880 0.400000 +2490 2958 0.400000 +2490 2983 0.400000 +2490 2993 0.400000 +2490 3004 0.400000 +2490 3017 0.400000 +2490 3128 0.400000 +2490 3136 0.400000 +2490 3154 0.400000 +2491 21 0.400000 +2491 33 0.400000 +2491 62 0.400000 +2491 210 0.400000 +2491 294 0.400000 +2491 301 0.400000 +2491 311 0.400000 +2491 312 0.400000 +2491 333 0.400000 +2491 344 0.400000 +2491 397 0.400000 +2491 407 0.400000 +2491 449 0.400000 +2491 465 0.400000 +2491 470 0.400000 +2491 515 0.400000 +2491 534 0.400000 +2491 775 0.400000 +2491 839 0.400000 +2491 937 0.400000 +2491 976 0.400000 +2491 1253 0.400000 +2491 1257 0.400000 +2491 1391 0.400000 +2491 1451 0.400000 +2491 1587 0.400000 +2491 1714 0.400000 +2491 1728 0.400000 +2491 1729 0.400000 +2491 1749 0.400000 +2491 1806 0.400000 +2491 1836 0.400000 +2491 1914 0.400000 +2491 1933 0.400000 +2491 2067 0.400000 +2491 2068 0.400000 +2491 2132 0.400000 +2491 2153 0.400000 +2491 2174 0.400000 +2491 2194 0.400000 +2491 2276 0.400000 +2491 2334 0.400000 +2491 2416 0.400000 +2491 2501 0.400000 +2491 2533 0.400000 +2491 2565 0.400000 +2491 2625 0.400000 +2491 2658 0.400000 +2491 2665 0.400000 +2491 2682 0.400000 +2491 2724 0.400000 +2491 2739 0.400000 +2491 2828 0.400000 +2491 2988 0.400000 +2491 3127 0.400000 +2491 3135 0.400000 +2492 248 0.400000 +2492 251 0.400000 +2492 293 0.400000 +2492 423 0.400000 +2492 437 0.400000 +2492 481 0.400000 +2492 512 0.400000 +2492 551 0.400000 +2492 562 0.400000 +2492 601 0.400000 +2492 642 0.400000 +2492 772 0.400000 +2492 888 0.400000 +2492 912 0.400000 +2492 917 0.400000 +2492 1061 0.400000 +2492 1104 0.400000 +2492 1150 0.400000 +2492 1155 0.400000 +2492 1172 0.400000 +2492 1310 0.400000 +2492 1358 0.400000 +2492 1370 0.400000 +2492 1403 0.400000 +2492 1486 0.400000 +2492 1638 0.400000 +2492 1653 0.400000 +2492 1661 0.400000 +2492 1718 0.400000 +2492 1814 0.400000 +2492 1827 0.400000 +2492 1858 0.400000 +2492 1863 0.400000 +2492 2000 0.400000 +2492 2039 0.400000 +2492 2041 0.400000 +2492 2089 0.400000 +2492 2108 0.400000 +2492 2218 0.400000 +2492 2280 0.400000 +2492 2341 0.400000 +2492 2348 0.400000 +2492 2361 0.400000 +2492 2464 0.400000 +2492 2502 0.400000 +2492 2503 0.400000 +2492 2542 0.400000 +2492 2570 0.400000 +2492 2620 0.400000 +2492 2627 0.400000 +2492 2765 0.400000 +2492 2788 0.400000 +2492 2835 0.400000 +2492 2865 0.400000 +2492 3036 0.400000 +2492 3086 0.400000 +2492 3111 0.400000 +2493 3 0.400000 +2493 12 0.400000 +2493 33 0.400000 +2493 35 0.400000 +2493 44 0.400000 +2493 47 0.400000 +2493 56 0.400000 +2493 306 0.400000 +2493 333 0.400000 +2493 346 0.400000 +2493 435 0.400000 +2493 529 0.400000 +2493 567 0.400000 +2493 569 0.400000 +2493 623 0.400000 +2493 657 0.400000 +2493 686 0.400000 +2493 822 0.400000 +2493 855 0.400000 +2493 891 0.400000 +2493 897 0.400000 +2493 945 0.400000 +2493 967 0.400000 +2493 1124 0.400000 +2493 1173 0.400000 +2493 1267 0.400000 +2493 1323 0.400000 +2493 1327 0.400000 +2493 1367 0.400000 +2493 1445 0.400000 +2493 1456 0.400000 +2493 1504 0.400000 +2493 1511 0.400000 +2493 1567 0.400000 +2493 1702 0.400000 +2493 1714 0.400000 +2493 1726 0.400000 +2493 1745 0.400000 +2493 1774 0.400000 +2493 1784 0.400000 +2493 1856 0.400000 +2493 1946 0.400000 +2493 1954 0.400000 +2493 1975 0.400000 +2493 1976 0.400000 +2493 2096 0.400000 +2493 2128 0.400000 +2493 2216 0.400000 +2493 2233 0.400000 +2493 2265 0.400000 +2493 2336 0.400000 +2493 2350 0.400000 +2493 2453 0.400000 +2493 2501 0.400000 +2493 2557 0.400000 +2493 2623 0.400000 +2493 2658 0.400000 +2493 2703 0.400000 +2493 2710 0.400000 +2493 2713 0.400000 +2493 2827 0.400000 +2493 2838 0.400000 +2493 2854 0.400000 +2493 2862 0.400000 +2493 2880 0.400000 +2493 3005 0.400000 +2493 3095 0.400000 +2493 3156 0.400000 +2493 3159 0.400000 +2493 3181 0.400000 +2493 3186 0.400000 +2494 12 0.400000 +2494 88 0.400000 +2494 324 0.400000 +2494 347 0.400000 +2494 349 0.400000 +2494 352 0.400000 +2494 410 0.400000 +2494 480 0.400000 +2494 589 0.400000 +2494 671 0.400000 +2494 676 0.400000 +2494 696 0.400000 +2494 841 0.400000 +2494 849 0.400000 +2494 899 0.400000 +2494 900 0.400000 +2494 943 0.400000 +2494 1008 0.400000 +2494 1009 0.400000 +2494 1064 0.400000 +2494 1066 0.400000 +2494 1125 0.400000 +2494 1140 0.400000 +2494 1168 0.400000 +2494 1372 0.400000 +2494 1392 0.400000 +2494 1443 0.400000 +2494 1454 0.400000 +2494 1493 0.400000 +2494 1618 0.400000 +2494 1640 0.400000 +2494 1715 0.400000 +2494 1739 0.400000 +2494 1759 0.400000 +2494 1857 0.400000 +2494 1885 0.400000 +2494 1900 0.400000 +2494 2087 0.400000 +2494 2100 0.400000 +2494 2148 0.400000 +2494 2161 0.400000 +2494 2226 0.400000 +2494 2327 0.400000 +2494 2342 0.400000 +2494 2476 0.400000 +2494 2477 0.400000 +2494 2553 0.400000 +2494 2573 0.400000 +2494 2711 0.400000 +2494 2756 0.400000 +2494 2846 0.400000 +2494 2944 0.400000 +2494 2964 0.400000 +2494 3192 0.400000 +2495 27 0.400000 +2495 45 0.400000 +2495 53 0.400000 +2495 125 0.400000 +2495 174 0.400000 +2495 199 0.400000 +2495 227 0.400000 +2495 269 0.400000 +2495 373 0.400000 +2495 465 0.400000 +2495 522 0.400000 +2495 539 0.400000 +2495 642 0.400000 +2495 647 0.400000 +2495 722 0.400000 +2495 791 0.400000 +2495 826 0.400000 +2495 847 0.400000 +2495 885 0.400000 +2495 970 0.400000 +2495 975 0.400000 +2495 988 0.400000 +2495 995 0.400000 +2495 1070 0.400000 +2495 1075 0.400000 +2495 1078 0.400000 +2495 1086 0.400000 +2495 1101 0.400000 +2495 1142 0.400000 +2495 1164 0.400000 +2495 1215 0.400000 +2495 1298 0.400000 +2495 1305 0.400000 +2495 1346 0.400000 +2495 1382 0.400000 +2495 1383 0.400000 +2495 1618 0.400000 +2495 1675 0.400000 +2495 1762 0.400000 +2495 1816 0.400000 +2495 1861 0.400000 +2495 1948 0.400000 +2495 2056 0.400000 +2495 2114 0.400000 +2495 2176 0.400000 +2495 2205 0.400000 +2495 2370 0.400000 +2495 2389 0.400000 +2495 2410 0.400000 +2495 2454 0.400000 +2495 2463 0.400000 +2495 2477 0.400000 +2495 2496 0.400000 +2495 2527 0.400000 +2495 2560 0.400000 +2495 2564 0.400000 +2495 2595 0.400000 +2495 2781 0.400000 +2495 2789 0.400000 +2495 2881 0.400000 +2495 2923 0.400000 +2495 2935 0.400000 +2495 2978 0.400000 +2495 2994 0.400000 +2495 3011 0.400000 +2495 3022 0.400000 +2495 3090 0.400000 +2495 3135 0.400000 +2495 3180 0.400000 +2496 62 0.400000 +2496 183 0.400000 +2496 185 0.400000 +2496 335 0.400000 +2496 382 0.400000 +2496 433 0.400000 +2496 437 0.400000 +2496 458 0.400000 +2496 659 0.400000 +2496 844 0.400000 +2496 869 0.400000 +2496 930 0.400000 +2496 949 0.400000 +2496 981 0.400000 +2496 1025 0.400000 +2496 1060 0.400000 +2496 1066 0.400000 +2496 1067 0.400000 +2496 1070 0.400000 +2496 1085 0.400000 +2496 1106 0.400000 +2496 1112 0.400000 +2496 1133 0.400000 +2496 1135 0.400000 +2496 1241 0.400000 +2496 1351 0.400000 +2496 1448 0.400000 +2496 1463 0.400000 +2496 1478 0.400000 +2496 1486 0.400000 +2496 1548 0.400000 +2496 1642 0.400000 +2496 1655 0.400000 +2496 1656 0.400000 +2496 1657 0.400000 +2496 1705 0.400000 +2496 1708 0.400000 +2496 1750 0.400000 +2496 1769 0.400000 +2496 1787 0.400000 +2496 1811 0.400000 +2496 1863 0.400000 +2496 1912 0.400000 +2496 1929 0.400000 +2496 2019 0.400000 +2496 2101 0.400000 +2496 2139 0.400000 +2496 2179 0.400000 +2496 2244 0.400000 +2496 2280 0.400000 +2496 2350 0.400000 +2496 2353 0.400000 +2496 2390 0.400000 +2496 2447 0.400000 +2496 2480 0.400000 +2496 2492 0.400000 +2496 2615 0.400000 +2496 2669 0.400000 +2496 2749 0.400000 +2496 2753 0.400000 +2496 2787 0.400000 +2496 3041 0.400000 +2496 3100 0.400000 +2496 3118 0.400000 +2496 3128 0.400000 +2496 3135 0.400000 +2496 3165 0.400000 +2496 3171 0.400000 +2497 112 0.400000 +2497 226 0.400000 +2497 310 0.400000 +2497 326 0.400000 +2497 329 0.400000 +2497 347 0.400000 +2497 356 0.400000 +2497 502 0.400000 +2497 504 0.400000 +2497 512 0.400000 +2497 555 0.400000 +2497 577 0.400000 +2497 625 0.400000 +2497 676 0.400000 +2497 733 0.400000 +2497 738 0.400000 +2497 781 0.400000 +2497 825 0.400000 +2497 842 0.400000 +2497 871 0.400000 +2497 893 0.400000 +2497 925 0.400000 +2497 1004 0.400000 +2497 1008 0.400000 +2497 1039 0.400000 +2497 1070 0.400000 +2497 1096 0.400000 +2497 1123 0.400000 +2497 1134 0.400000 +2497 1158 0.400000 +2497 1196 0.400000 +2497 1378 0.400000 +2497 1605 0.400000 +2497 1611 0.400000 +2497 1645 0.400000 +2497 1708 0.400000 +2497 1762 0.400000 +2497 1806 0.400000 +2497 1808 0.400000 +2497 1839 0.400000 +2497 1842 0.400000 +2497 1844 0.400000 +2497 1856 0.400000 +2497 1925 0.400000 +2497 1974 0.400000 +2497 2057 0.400000 +2497 2084 0.400000 +2497 2124 0.400000 +2497 2219 0.400000 +2497 2239 0.400000 +2497 2245 0.400000 +2497 2259 0.400000 +2497 2316 0.400000 +2497 2339 0.400000 +2497 2365 0.400000 +2497 2422 0.400000 +2497 2536 0.400000 +2497 2732 0.400000 +2497 2758 0.400000 +2497 2795 0.400000 +2497 2796 0.400000 +2497 2834 0.400000 +2497 2854 0.400000 +2497 3033 0.400000 +2497 3100 0.400000 +2497 3110 0.400000 +2498 43 0.400000 +2498 148 0.400000 +2498 153 0.400000 +2498 165 0.400000 +2498 241 0.400000 +2498 283 0.400000 +2498 293 0.400000 +2498 370 0.400000 +2498 372 0.400000 +2498 380 0.400000 +2498 425 0.400000 +2498 508 0.400000 +2498 566 0.400000 +2498 641 0.400000 +2498 860 0.400000 +2498 864 0.400000 +2498 876 0.400000 +2498 901 0.400000 +2498 923 0.400000 +2498 934 0.400000 +2498 990 0.400000 +2498 1005 0.400000 +2498 1116 0.400000 +2498 1182 0.400000 +2498 1221 0.400000 +2498 1250 0.400000 +2498 1338 0.400000 +2498 1508 0.400000 +2498 1538 0.400000 +2498 1669 0.400000 +2498 1782 0.400000 +2498 1835 0.400000 +2498 1853 0.400000 +2498 1919 0.400000 +2498 2003 0.400000 +2498 2051 0.400000 +2498 2053 0.400000 +2498 2211 0.400000 +2498 2242 0.400000 +2498 2268 0.400000 +2498 2310 0.400000 +2498 2432 0.400000 +2498 2442 0.400000 +2498 2489 0.400000 +2498 2491 0.400000 +2498 2545 0.400000 +2498 2548 0.400000 +2498 2595 0.400000 +2498 2602 0.400000 +2498 2675 0.400000 +2498 2763 0.400000 +2498 2816 0.400000 +2498 2831 0.400000 +2498 2845 0.400000 +2498 2903 0.400000 +2498 2920 0.400000 +2498 2927 0.400000 +2498 3013 0.400000 +2498 3086 0.400000 +2498 3093 0.400000 +2498 3155 0.400000 +2498 3163 0.400000 +2499 155 0.400000 +2499 242 0.400000 +2499 298 0.400000 +2499 384 0.400000 +2499 502 0.400000 +2499 543 0.400000 +2499 671 0.400000 +2499 793 0.400000 +2499 796 0.400000 +2499 843 0.400000 +2499 846 0.400000 +2499 875 0.400000 +2499 959 0.400000 +2499 967 0.400000 +2499 1000 0.400000 +2499 1086 0.400000 +2499 1099 0.400000 +2499 1128 0.400000 +2499 1131 0.400000 +2499 1156 0.400000 +2499 1160 0.400000 +2499 1190 0.400000 +2499 1235 0.400000 +2499 1259 0.400000 +2499 1273 0.400000 +2499 1410 0.400000 +2499 1420 0.400000 +2499 1480 0.400000 +2499 1486 0.400000 +2499 1492 0.400000 +2499 1526 0.400000 +2499 1539 0.400000 +2499 1577 0.400000 +2499 1624 0.400000 +2499 1635 0.400000 +2499 1661 0.400000 +2499 1689 0.400000 +2499 1690 0.400000 +2499 1728 0.400000 +2499 1905 0.400000 +2499 1925 0.400000 +2499 1963 0.400000 +2499 1975 0.400000 +2499 2013 0.400000 +2499 2042 0.400000 +2499 2070 0.400000 +2499 2122 0.400000 +2499 2159 0.400000 +2499 2224 0.400000 +2499 2238 0.400000 +2499 2265 0.400000 +2499 2297 0.400000 +2499 2321 0.400000 +2499 2358 0.400000 +2499 2419 0.400000 +2499 2444 0.400000 +2499 2457 0.400000 +2499 2518 0.400000 +2499 2533 0.400000 +2499 2682 0.400000 +2499 2686 0.400000 +2499 2785 0.400000 +2499 2856 0.400000 +2499 2907 0.400000 +2499 2968 0.400000 +2499 2997 0.400000 +2499 3025 0.400000 +2499 3076 0.400000 +2499 3108 0.400000 +2499 3111 0.400000 +2499 3155 0.400000 +2500 166 0.400000 +2500 228 0.400000 +2500 252 0.400000 +2500 413 0.400000 +2500 496 0.400000 +2500 527 0.400000 +2500 536 0.400000 +2500 665 0.400000 +2500 710 0.400000 +2500 721 0.400000 +2500 786 0.400000 +2500 844 0.400000 +2500 874 0.400000 +2500 894 0.400000 +2500 898 0.400000 +2500 934 0.400000 +2500 979 0.400000 +2500 1022 0.400000 +2500 1049 0.400000 +2500 1081 0.400000 +2500 1140 0.400000 +2500 1155 0.400000 +2500 1208 0.400000 +2500 1231 0.400000 +2500 1235 0.400000 +2500 1245 0.400000 +2500 1392 0.400000 +2500 1402 0.400000 +2500 1426 0.400000 +2500 1474 0.400000 +2500 1498 0.400000 +2500 1503 0.400000 +2500 1530 0.400000 +2500 1580 0.400000 +2500 1585 0.400000 +2500 1609 0.400000 +2500 1648 0.400000 +2500 1731 0.400000 +2500 1807 0.400000 +2500 1947 0.400000 +2500 1960 0.400000 +2500 2058 0.400000 +2500 2103 0.400000 +2500 2206 0.400000 +2500 2283 0.400000 +2500 2369 0.400000 +2500 2517 0.400000 +2500 2537 0.400000 +2500 2592 0.400000 +2500 2621 0.400000 +2500 2725 0.400000 +2500 2738 0.400000 +2500 2779 0.400000 +2500 2782 0.400000 +2500 2871 0.400000 +2500 3035 0.400000 +2500 3087 0.400000 +2500 3141 0.400000 +2501 34 0.400000 +2501 53 0.400000 +2501 131 0.400000 +2501 208 0.400000 +2501 434 0.400000 +2501 477 0.400000 +2501 496 0.400000 +2501 512 0.400000 +2501 533 0.400000 +2501 540 0.400000 +2501 565 0.400000 +2501 699 0.400000 +2501 833 0.400000 +2501 841 0.400000 +2501 902 0.400000 +2501 938 0.400000 +2501 972 0.400000 +2501 1094 0.400000 +2501 1125 0.400000 +2501 1131 0.400000 +2501 1246 0.400000 +2501 1324 0.400000 +2501 1337 0.400000 +2501 1362 0.400000 +2501 1381 0.400000 +2501 1390 0.400000 +2501 1411 0.400000 +2501 1460 0.400000 +2501 1464 0.400000 +2501 1523 0.400000 +2501 1528 0.400000 +2501 1533 0.400000 +2501 1587 0.400000 +2501 1607 0.400000 +2501 1690 0.400000 +2501 1737 0.400000 +2501 1746 0.400000 +2501 1794 0.400000 +2501 1841 0.400000 +2501 1923 0.400000 +2501 1941 0.400000 +2501 1959 0.400000 +2501 1979 0.400000 +2501 2000 0.400000 +2501 2019 0.400000 +2501 2024 0.400000 +2501 2218 0.400000 +2501 2299 0.400000 +2501 2310 0.400000 +2501 2399 0.400000 +2501 2400 0.400000 +2501 2455 0.400000 +2501 2496 0.400000 +2501 2503 0.400000 +2501 2581 0.400000 +2501 2731 0.400000 +2501 2819 0.400000 +2501 2890 0.400000 +2501 2906 0.400000 +2501 2928 0.400000 +2501 2948 0.400000 +2501 3022 0.400000 +2501 3030 0.400000 +2501 3032 0.400000 +2501 3051 0.400000 +2501 3116 0.400000 +2501 3126 0.400000 +2501 3136 0.400000 +2501 3138 0.400000 +2502 20 0.400000 +2502 25 0.400000 +2502 121 0.400000 +2502 151 0.400000 +2502 230 0.400000 +2502 269 0.400000 +2502 274 0.400000 +2502 286 0.400000 +2502 491 0.400000 +2502 492 0.400000 +2502 543 0.400000 +2502 643 0.400000 +2502 667 0.400000 +2502 672 0.400000 +2502 753 0.400000 +2502 763 0.400000 +2502 803 0.400000 +2502 858 0.400000 +2502 961 0.400000 +2502 1126 0.400000 +2502 1128 0.400000 +2502 1182 0.400000 +2502 1232 0.400000 +2502 1308 0.400000 +2502 1316 0.400000 +2502 1394 0.400000 +2502 1482 0.400000 +2502 1493 0.400000 +2502 1557 0.400000 +2502 1582 0.400000 +2502 1603 0.400000 +2502 1634 0.400000 +2502 1640 0.400000 +2502 1652 0.400000 +2502 1697 0.400000 +2502 1698 0.400000 +2502 1710 0.400000 +2502 1747 0.400000 +2502 1835 0.400000 +2502 1903 0.400000 +2502 1979 0.400000 +2502 2005 0.400000 +2502 2034 0.400000 +2502 2050 0.400000 +2502 2105 0.400000 +2502 2257 0.400000 +2502 2302 0.400000 +2502 2304 0.400000 +2502 2329 0.400000 +2502 2428 0.400000 +2502 2606 0.400000 +2502 2698 0.400000 +2502 2699 0.400000 +2502 2744 0.400000 +2502 2761 0.400000 +2502 2835 0.400000 +2502 2843 0.400000 +2502 2854 0.400000 +2502 2865 0.400000 +2502 2874 0.400000 +2502 2947 0.400000 +2502 3004 0.400000 +2502 3091 0.400000 +2502 3093 0.400000 +2503 7 0.400000 +2503 32 0.400000 +2503 58 0.400000 +2503 59 0.400000 +2503 166 0.400000 +2503 196 0.400000 +2503 221 0.400000 +2503 266 0.400000 +2503 273 0.400000 +2503 323 0.400000 +2503 363 0.400000 +2503 385 0.400000 +2503 402 0.400000 +2503 407 0.400000 +2503 508 0.400000 +2503 554 0.400000 +2503 597 0.400000 +2503 618 0.400000 +2503 624 0.400000 +2503 627 0.400000 +2503 630 0.400000 +2503 647 0.400000 +2503 807 0.400000 +2503 832 0.400000 +2503 1000 0.400000 +2503 1022 0.400000 +2503 1169 0.400000 +2503 1182 0.400000 +2503 1236 0.400000 +2503 1344 0.400000 +2503 1426 0.400000 +2503 1445 0.400000 +2503 1520 0.400000 +2503 1551 0.400000 +2503 1555 0.400000 +2503 1649 0.400000 +2503 1664 0.400000 +2503 1725 0.400000 +2503 1757 0.400000 +2503 1758 0.400000 +2503 1774 0.400000 +2503 1875 0.400000 +2503 1921 0.400000 +2503 2024 0.400000 +2503 2084 0.400000 +2503 2148 0.400000 +2503 2179 0.400000 +2503 2206 0.400000 +2503 2213 0.400000 +2503 2306 0.400000 +2503 2328 0.400000 +2503 2430 0.400000 +2503 2487 0.400000 +2503 2496 0.400000 +2503 2497 0.400000 +2503 2505 0.400000 +2503 2614 0.400000 +2503 2627 0.400000 +2503 2630 0.400000 +2503 2682 0.400000 +2503 2697 0.400000 +2503 2714 0.400000 +2503 2835 0.400000 +2503 2900 0.400000 +2503 2976 0.400000 +2503 3081 0.400000 +2503 3146 0.400000 +2503 3193 0.400000 +2504 15 0.400000 +2504 74 0.400000 +2504 146 0.400000 +2504 161 0.400000 +2504 226 0.400000 +2504 238 0.400000 +2504 268 0.400000 +2504 302 0.400000 +2504 308 0.400000 +2504 443 0.400000 +2504 569 0.400000 +2504 586 0.400000 +2504 600 0.400000 +2504 700 0.400000 +2504 738 0.400000 +2504 771 0.400000 +2504 778 0.400000 +2504 797 0.400000 +2504 820 0.400000 +2504 925 0.400000 +2504 931 0.400000 +2504 969 0.400000 +2504 1008 0.400000 +2504 1021 0.400000 +2504 1042 0.400000 +2504 1083 0.400000 +2504 1131 0.400000 +2504 1277 0.400000 +2504 1303 0.400000 +2504 1435 0.400000 +2504 1467 0.400000 +2504 1555 0.400000 +2504 1619 0.400000 +2504 1721 0.400000 +2504 1831 0.400000 +2504 1881 0.400000 +2504 1888 0.400000 +2504 1890 0.400000 +2504 2025 0.400000 +2504 2055 0.400000 +2504 2123 0.400000 +2504 2128 0.400000 +2504 2147 0.400000 +2504 2165 0.400000 +2504 2208 0.400000 +2504 2222 0.400000 +2504 2261 0.400000 +2504 2418 0.400000 +2504 2493 0.400000 +2504 2495 0.400000 +2504 2500 0.400000 +2504 2523 0.400000 +2504 2548 0.400000 +2504 2552 0.400000 +2504 2616 0.400000 +2504 2656 0.400000 +2504 2677 0.400000 +2504 2826 0.400000 +2504 2834 0.400000 +2504 2869 0.400000 +2504 2891 0.400000 +2504 2902 0.400000 +2504 2986 0.400000 +2504 3021 0.400000 +2504 3037 0.400000 +2504 3145 0.400000 +2505 20 0.400000 +2505 48 0.400000 +2505 58 0.400000 +2505 105 0.400000 +2505 106 0.400000 +2505 248 0.400000 +2505 255 0.400000 +2505 285 0.400000 +2505 300 0.400000 +2505 357 0.400000 +2505 358 0.400000 +2505 478 0.400000 +2505 539 0.400000 +2505 604 0.400000 +2505 713 0.400000 +2505 734 0.400000 +2505 758 0.400000 +2505 768 0.400000 +2505 819 0.400000 +2505 842 0.400000 +2505 981 0.400000 +2505 984 0.400000 +2505 988 0.400000 +2505 1059 0.400000 +2505 1093 0.400000 +2505 1185 0.400000 +2505 1324 0.400000 +2505 1326 0.400000 +2505 1396 0.400000 +2505 1431 0.400000 +2505 1453 0.400000 +2505 1614 0.400000 +2505 1733 0.400000 +2505 1746 0.400000 +2505 1843 0.400000 +2505 1895 0.400000 +2505 1899 0.400000 +2505 1969 0.400000 +2505 2039 0.400000 +2505 2128 0.400000 +2505 2179 0.400000 +2505 2198 0.400000 +2505 2213 0.400000 +2505 2237 0.400000 +2505 2305 0.400000 +2505 2323 0.400000 +2505 2341 0.400000 +2505 2342 0.400000 +2505 2432 0.400000 +2505 2449 0.400000 +2505 2458 0.400000 +2505 2538 0.400000 +2505 2607 0.400000 +2505 2627 0.400000 +2505 2629 0.400000 +2505 2674 0.400000 +2505 2697 0.400000 +2505 2765 0.400000 +2505 2927 0.400000 +2505 2937 0.400000 +2505 2955 0.400000 +2505 2961 0.400000 +2505 2982 0.400000 +2505 2996 0.400000 +2505 3001 0.400000 +2505 3020 0.400000 +2505 3026 0.400000 +2505 3085 0.400000 +2505 3138 0.400000 +2505 3169 0.400000 +2505 3188 0.400000 +2505 3192 0.400000 +2506 23 0.400000 +2506 78 0.400000 +2506 159 0.400000 +2506 163 0.400000 +2506 204 0.400000 +2506 219 0.400000 +2506 266 0.400000 +2506 324 0.400000 +2506 366 0.400000 +2506 480 0.400000 +2506 641 0.400000 +2506 704 0.400000 +2506 777 0.400000 +2506 963 0.400000 +2506 995 0.400000 +2506 1009 0.400000 +2506 1062 0.400000 +2506 1113 0.400000 +2506 1142 0.400000 +2506 1183 0.400000 +2506 1384 0.400000 +2506 1403 0.400000 +2506 1428 0.400000 +2506 1440 0.400000 +2506 1568 0.400000 +2506 1575 0.400000 +2506 1649 0.400000 +2506 1675 0.400000 +2506 1707 0.400000 +2506 1734 0.400000 +2506 1747 0.400000 +2506 1805 0.400000 +2506 1882 0.400000 +2506 1897 0.400000 +2506 1925 0.400000 +2506 1959 0.400000 +2506 1963 0.400000 +2506 1968 0.400000 +2506 1989 0.400000 +2506 1992 0.400000 +2506 1999 0.400000 +2506 2003 0.400000 +2506 2047 0.400000 +2506 2092 0.400000 +2506 2133 0.400000 +2506 2181 0.400000 +2506 2212 0.400000 +2506 2241 0.400000 +2506 2247 0.400000 +2506 2264 0.400000 +2506 2271 0.400000 +2506 2338 0.400000 +2506 2359 0.400000 +2506 2362 0.400000 +2506 2376 0.400000 +2506 2483 0.400000 +2506 2664 0.400000 +2506 2783 0.400000 +2506 2833 0.400000 +2506 2845 0.400000 +2506 2923 0.400000 +2506 2924 0.400000 +2506 2997 0.400000 +2506 3078 0.400000 +2506 3123 0.400000 +2507 40 0.400000 +2507 96 0.400000 +2507 111 0.400000 +2507 143 0.400000 +2507 235 0.400000 +2507 287 0.400000 +2507 327 0.400000 +2507 393 0.400000 +2507 395 0.400000 +2507 428 0.400000 +2507 523 0.400000 +2507 568 0.400000 +2507 593 0.400000 +2507 599 0.400000 +2507 603 0.400000 +2507 646 0.400000 +2507 650 0.400000 +2507 670 0.400000 +2507 814 0.400000 +2507 963 0.400000 +2507 1034 0.400000 +2507 1051 0.400000 +2507 1146 0.400000 +2507 1193 0.400000 +2507 1214 0.400000 +2507 1363 0.400000 +2507 1422 0.400000 +2507 1435 0.400000 +2507 1469 0.400000 +2507 1511 0.400000 +2507 1588 0.400000 +2507 1593 0.400000 +2507 1599 0.400000 +2507 1602 0.400000 +2507 1606 0.400000 +2507 1616 0.400000 +2507 1621 0.400000 +2507 1688 0.400000 +2507 1733 0.400000 +2507 1779 0.400000 +2507 1939 0.400000 +2507 2304 0.400000 +2507 2332 0.400000 +2507 2364 0.400000 +2507 2375 0.400000 +2507 2413 0.400000 +2507 2446 0.400000 +2507 2496 0.400000 +2507 2520 0.400000 +2507 2566 0.400000 +2507 2679 0.400000 +2507 2702 0.400000 +2507 2709 0.400000 +2507 2711 0.400000 +2507 2724 0.400000 +2507 2735 0.400000 +2507 2753 0.400000 +2507 2781 0.400000 +2507 2827 0.400000 +2507 2848 0.400000 +2507 2878 0.400000 +2507 2958 0.400000 +2507 2979 0.400000 +2507 3015 0.400000 +2508 72 0.400000 +2508 95 0.400000 +2508 163 0.400000 +2508 189 0.400000 +2508 209 0.400000 +2508 219 0.400000 +2508 312 0.400000 +2508 325 0.400000 +2508 330 0.400000 +2508 374 0.400000 +2508 376 0.400000 +2508 377 0.400000 +2508 402 0.400000 +2508 508 0.400000 +2508 528 0.400000 +2508 583 0.400000 +2508 640 0.400000 +2508 655 0.400000 +2508 659 0.400000 +2508 673 0.400000 +2508 689 0.400000 +2508 722 0.400000 +2508 781 0.400000 +2508 871 0.400000 +2508 929 0.400000 +2508 964 0.400000 +2508 1003 0.400000 +2508 1007 0.400000 +2508 1085 0.400000 +2508 1126 0.400000 +2508 1165 0.400000 +2508 1357 0.400000 +2508 1483 0.400000 +2508 1527 0.400000 +2508 1575 0.400000 +2508 1595 0.400000 +2508 1648 0.400000 +2508 1712 0.400000 +2508 1730 0.400000 +2508 1777 0.400000 +2508 1782 0.400000 +2508 1879 0.400000 +2508 2018 0.400000 +2508 2032 0.400000 +2508 2110 0.400000 +2508 2161 0.400000 +2508 2211 0.400000 +2508 2217 0.400000 +2508 2275 0.400000 +2508 2276 0.400000 +2508 2326 0.400000 +2508 2371 0.400000 +2508 2383 0.400000 +2508 2518 0.400000 +2508 2605 0.400000 +2508 2637 0.400000 +2508 2673 0.400000 +2508 2725 0.400000 +2508 2760 0.400000 +2508 2793 0.400000 +2508 2847 0.400000 +2508 2898 0.400000 +2508 2905 0.400000 +2508 2910 0.400000 +2508 2927 0.400000 +2508 2934 0.400000 +2508 2992 0.400000 +2508 3031 0.400000 +2508 3038 0.400000 +2508 3052 0.400000 +2508 3089 0.400000 +2508 3118 0.400000 +2509 73 0.400000 +2509 108 0.400000 +2509 222 0.400000 +2509 349 0.400000 +2509 352 0.400000 +2509 376 0.400000 +2509 425 0.400000 +2509 502 0.400000 +2509 748 0.400000 +2509 798 0.400000 +2509 889 0.400000 +2509 894 0.400000 +2509 1072 0.400000 +2509 1087 0.400000 +2509 1159 0.400000 +2509 1193 0.400000 +2509 1195 0.400000 +2509 1212 0.400000 +2509 1330 0.400000 +2509 1353 0.400000 +2509 1358 0.400000 +2509 1372 0.400000 +2509 1448 0.400000 +2509 1492 0.400000 +2509 1511 0.400000 +2509 1610 0.400000 +2509 1689 0.400000 +2509 1696 0.400000 +2509 1702 0.400000 +2509 1769 0.400000 +2509 1797 0.400000 +2509 1813 0.400000 +2509 1816 0.400000 +2509 1828 0.400000 +2509 1847 0.400000 +2509 1953 0.400000 +2509 1998 0.400000 +2509 2192 0.400000 +2509 2303 0.400000 +2509 2326 0.400000 +2509 2351 0.400000 +2509 2507 0.400000 +2509 2562 0.400000 +2509 2603 0.400000 +2509 2674 0.400000 +2509 2676 0.400000 +2509 2678 0.400000 +2509 2727 0.400000 +2509 2769 0.400000 +2509 2774 0.400000 +2509 2864 0.400000 +2509 2910 0.400000 +2509 3033 0.400000 +2509 3035 0.400000 +2509 3131 0.400000 +2509 3187 0.400000 +2510 65 0.400000 +2510 209 0.400000 +2510 308 0.400000 +2510 364 0.400000 +2510 386 0.400000 +2510 486 0.400000 +2510 523 0.400000 +2510 630 0.400000 +2510 637 0.400000 +2510 652 0.400000 +2510 656 0.400000 +2510 688 0.400000 +2510 715 0.400000 +2510 795 0.400000 +2510 819 0.400000 +2510 899 0.400000 +2510 962 0.400000 +2510 982 0.400000 +2510 984 0.400000 +2510 1189 0.400000 +2510 1271 0.400000 +2510 1305 0.400000 +2510 1360 0.400000 +2510 1377 0.400000 +2510 1409 0.400000 +2510 1486 0.400000 +2510 1492 0.400000 +2510 1498 0.400000 +2510 1501 0.400000 +2510 1504 0.400000 +2510 1520 0.400000 +2510 1525 0.400000 +2510 1531 0.400000 +2510 1583 0.400000 +2510 1603 0.400000 +2510 1622 0.400000 +2510 1703 0.400000 +2510 1736 0.400000 +2510 1762 0.400000 +2510 1782 0.400000 +2510 1817 0.400000 +2510 1824 0.400000 +2510 1995 0.400000 +2510 2063 0.400000 +2510 2151 0.400000 +2510 2164 0.400000 +2510 2182 0.400000 +2510 2193 0.400000 +2510 2307 0.400000 +2510 2338 0.400000 +2510 2440 0.400000 +2510 2452 0.400000 +2510 2467 0.400000 +2510 2491 0.400000 +2510 2604 0.400000 +2510 2623 0.400000 +2510 2627 0.400000 +2510 2631 0.400000 +2510 2647 0.400000 +2510 2650 0.400000 +2510 2655 0.400000 +2510 2713 0.400000 +2510 2723 0.400000 +2510 2867 0.400000 +2510 2873 0.400000 +2510 2899 0.400000 +2510 2925 0.400000 +2510 2945 0.400000 +2510 2987 0.400000 +2510 3007 0.400000 +2510 3061 0.400000 +2511 60 0.400000 +2511 79 0.400000 +2511 86 0.400000 +2511 87 0.400000 +2511 108 0.400000 +2511 228 0.400000 +2511 232 0.400000 +2511 351 0.400000 +2511 525 0.400000 +2511 528 0.400000 +2511 567 0.400000 +2511 651 0.400000 +2511 678 0.400000 +2511 746 0.400000 +2511 758 0.400000 +2511 770 0.400000 +2511 775 0.400000 +2511 777 0.400000 +2511 789 0.400000 +2511 901 0.400000 +2511 907 0.400000 +2511 955 0.400000 +2511 1005 0.400000 +2511 1029 0.400000 +2511 1066 0.400000 +2511 1087 0.400000 +2511 1181 0.400000 +2511 1197 0.400000 +2511 1205 0.400000 +2511 1209 0.400000 +2511 1393 0.400000 +2511 1402 0.400000 +2511 1445 0.400000 +2511 1464 0.400000 +2511 1465 0.400000 +2511 1485 0.400000 +2511 1511 0.400000 +2511 1534 0.400000 +2511 1687 0.400000 +2511 1758 0.400000 +2511 1791 0.400000 +2511 1812 0.400000 +2511 1875 0.400000 +2511 1910 0.400000 +2511 1920 0.400000 +2511 1942 0.400000 +2511 1986 0.400000 +2511 2027 0.400000 +2511 2214 0.400000 +2511 2439 0.400000 +2511 2444 0.400000 +2511 2458 0.400000 +2511 2526 0.400000 +2511 2566 0.400000 +2511 2650 0.400000 +2511 2653 0.400000 +2511 2701 0.400000 +2511 2728 0.400000 +2511 2736 0.400000 +2511 2757 0.400000 +2511 2776 0.400000 +2511 2811 0.400000 +2511 2817 0.400000 +2511 2864 0.400000 +2511 2890 0.400000 +2511 2951 0.400000 +2511 2956 0.400000 +2511 2989 0.400000 +2511 3041 0.400000 +2511 3055 0.400000 +2511 3070 0.400000 +2511 3129 0.400000 +2511 3134 0.400000 +2512 63 0.400000 +2512 148 0.400000 +2512 252 0.400000 +2512 262 0.400000 +2512 271 0.400000 +2512 302 0.400000 +2512 329 0.400000 +2512 413 0.400000 +2512 422 0.400000 +2512 424 0.400000 +2512 427 0.400000 +2512 434 0.400000 +2512 557 0.400000 +2512 560 0.400000 +2512 565 0.400000 +2512 721 0.400000 +2512 763 0.400000 +2512 797 0.400000 +2512 815 0.400000 +2512 823 0.400000 +2512 827 0.400000 +2512 876 0.400000 +2512 926 0.400000 +2512 959 0.400000 +2512 995 0.400000 +2512 1101 0.400000 +2512 1126 0.400000 +2512 1153 0.400000 +2512 1219 0.400000 +2512 1273 0.400000 +2512 1275 0.400000 +2512 1500 0.400000 +2512 1508 0.400000 +2512 1525 0.400000 +2512 1572 0.400000 +2512 1620 0.400000 +2512 1621 0.400000 +2512 1745 0.400000 +2512 1752 0.400000 +2512 1788 0.400000 +2512 1811 0.400000 +2512 2038 0.400000 +2512 2170 0.400000 +2512 2208 0.400000 +2512 2251 0.400000 +2512 2273 0.400000 +2512 2360 0.400000 +2512 2417 0.400000 +2512 2487 0.400000 +2512 2600 0.400000 +2512 2609 0.400000 +2512 2618 0.400000 +2512 2621 0.400000 +2512 2771 0.400000 +2512 2879 0.400000 +2512 2901 0.400000 +2512 3135 0.400000 +2512 3167 0.400000 +2512 3172 0.400000 +2513 40 0.400000 +2513 105 0.400000 +2513 209 0.400000 +2513 258 0.400000 +2513 325 0.400000 +2513 333 0.400000 +2513 351 0.400000 +2513 367 0.400000 +2513 399 0.400000 +2513 528 0.400000 +2513 634 0.400000 +2513 661 0.400000 +2513 666 0.400000 +2513 827 0.400000 +2513 872 0.400000 +2513 893 0.400000 +2513 935 0.400000 +2513 957 0.400000 +2513 1004 0.400000 +2513 1018 0.400000 +2513 1127 0.400000 +2513 1316 0.400000 +2513 1318 0.400000 +2513 1366 0.400000 +2513 1442 0.400000 +2513 1472 0.400000 +2513 1545 0.400000 +2513 1578 0.400000 +2513 1625 0.400000 +2513 1663 0.400000 +2513 1677 0.400000 +2513 1688 0.400000 +2513 1717 0.400000 +2513 1773 0.400000 +2513 1901 0.400000 +2513 1936 0.400000 +2513 1970 0.400000 +2513 1987 0.400000 +2513 2023 0.400000 +2513 2025 0.400000 +2513 2036 0.400000 +2513 2043 0.400000 +2513 2060 0.400000 +2513 2156 0.400000 +2513 2201 0.400000 +2513 2236 0.400000 +2513 2358 0.400000 +2513 2374 0.400000 +2513 2390 0.400000 +2513 2422 0.400000 +2513 2526 0.400000 +2513 2528 0.400000 +2513 2657 0.400000 +2513 2827 0.400000 +2513 2910 0.400000 +2513 3031 0.400000 +2513 3093 0.400000 +2513 3098 0.400000 +2513 3110 0.400000 +2513 3147 0.400000 +2513 3186 0.400000 +2514 25 0.400000 +2514 51 0.400000 +2514 65 0.400000 +2514 71 0.400000 +2514 91 0.400000 +2514 182 0.400000 +2514 202 0.400000 +2514 209 0.400000 +2514 257 0.400000 +2514 288 0.400000 +2514 320 0.400000 +2514 336 0.400000 +2514 390 0.400000 +2514 404 0.400000 +2514 456 0.400000 +2514 461 0.400000 +2514 463 0.400000 +2514 500 0.400000 +2514 508 0.400000 +2514 511 0.400000 +2514 531 0.400000 +2514 623 0.400000 +2514 663 0.400000 +2514 701 0.400000 +2514 860 0.400000 +2514 946 0.400000 +2514 965 0.400000 +2514 976 0.400000 +2514 1017 0.400000 +2514 1074 0.400000 +2514 1094 0.400000 +2514 1105 0.400000 +2514 1109 0.400000 +2514 1127 0.400000 +2514 1219 0.400000 +2514 1263 0.400000 +2514 1270 0.400000 +2514 1323 0.400000 +2514 1416 0.400000 +2514 1476 0.400000 +2514 1510 0.400000 +2514 1659 0.400000 +2514 1748 0.400000 +2514 1877 0.400000 +2514 1924 0.400000 +2514 1973 0.400000 +2514 2110 0.400000 +2514 2125 0.400000 +2514 2183 0.400000 +2514 2208 0.400000 +2514 2215 0.400000 +2514 2240 0.400000 +2514 2241 0.400000 +2514 2261 0.400000 +2514 2278 0.400000 +2514 2319 0.400000 +2514 2378 0.400000 +2514 2396 0.400000 +2514 2564 0.400000 +2514 2582 0.400000 +2514 2615 0.400000 +2514 2653 0.400000 +2514 2684 0.400000 +2514 2702 0.400000 +2514 2765 0.400000 +2514 2773 0.400000 +2514 2779 0.400000 +2514 2882 0.400000 +2514 2891 0.400000 +2514 2961 0.400000 +2514 2973 0.400000 +2514 2974 0.400000 +2514 2976 0.400000 +2514 3106 0.400000 +2515 72 0.400000 +2515 191 0.400000 +2515 295 0.400000 +2515 316 0.400000 +2515 319 0.400000 +2515 350 0.400000 +2515 421 0.400000 +2515 456 0.400000 +2515 497 0.400000 +2515 528 0.400000 +2515 640 0.400000 +2515 685 0.400000 +2515 718 0.400000 +2515 828 0.400000 +2515 897 0.400000 +2515 917 0.400000 +2515 922 0.400000 +2515 983 0.400000 +2515 1013 0.400000 +2515 1025 0.400000 +2515 1055 0.400000 +2515 1061 0.400000 +2515 1075 0.400000 +2515 1123 0.400000 +2515 1257 0.400000 +2515 1278 0.400000 +2515 1317 0.400000 +2515 1472 0.400000 +2515 1485 0.400000 +2515 1492 0.400000 +2515 1511 0.400000 +2515 1539 0.400000 +2515 1576 0.400000 +2515 1596 0.400000 +2515 1611 0.400000 +2515 1828 0.400000 +2515 1879 0.400000 +2515 2013 0.400000 +2515 2074 0.400000 +2515 2083 0.400000 +2515 2096 0.400000 +2515 2158 0.400000 +2515 2183 0.400000 +2515 2193 0.400000 +2515 2223 0.400000 +2515 2439 0.400000 +2515 2440 0.400000 +2515 2529 0.400000 +2515 2562 0.400000 +2515 2565 0.400000 +2515 2665 0.400000 +2515 2858 0.400000 +2515 2906 0.400000 +2515 3000 0.400000 +2515 3075 0.400000 +2515 3096 0.400000 +2515 3103 0.400000 +2516 18 0.400000 +2516 49 0.400000 +2516 159 0.400000 +2516 219 0.400000 +2516 221 0.400000 +2516 247 0.400000 +2516 313 0.400000 +2516 343 0.400000 +2516 345 0.400000 +2516 484 0.400000 +2516 532 0.400000 +2516 609 0.400000 +2516 682 0.400000 +2516 891 0.400000 +2516 908 0.400000 +2516 912 0.400000 +2516 922 0.400000 +2516 963 0.400000 +2516 1051 0.400000 +2516 1058 0.400000 +2516 1149 0.400000 +2516 1180 0.400000 +2516 1183 0.400000 +2516 1190 0.400000 +2516 1203 0.400000 +2516 1242 0.400000 +2516 1424 0.400000 +2516 1476 0.400000 +2516 1483 0.400000 +2516 1492 0.400000 +2516 1508 0.400000 +2516 1719 0.400000 +2516 1766 0.400000 +2516 1835 0.400000 +2516 1861 0.400000 +2516 1973 0.400000 +2516 2096 0.400000 +2516 2146 0.400000 +2516 2153 0.400000 +2516 2161 0.400000 +2516 2188 0.400000 +2516 2213 0.400000 +2516 2270 0.400000 +2516 2288 0.400000 +2516 2364 0.400000 +2516 2366 0.400000 +2516 2393 0.400000 +2516 2460 0.400000 +2516 2534 0.400000 +2516 2550 0.400000 +2516 2611 0.400000 +2516 2661 0.400000 +2516 2664 0.400000 +2516 2670 0.400000 +2516 2712 0.400000 +2516 2860 0.400000 +2516 2904 0.400000 +2516 2917 0.400000 +2516 2920 0.400000 +2516 2962 0.400000 +2516 2973 0.400000 +2516 2995 0.400000 +2516 2998 0.400000 +2516 3001 0.400000 +2516 3017 0.400000 +2516 3029 0.400000 +2516 3035 0.400000 +2516 3044 0.400000 +2516 3090 0.400000 +2516 3181 0.400000 +2517 59 0.400000 +2517 91 0.400000 +2517 157 0.400000 +2517 220 0.400000 +2517 233 0.400000 +2517 255 0.400000 +2517 260 0.400000 +2517 306 0.400000 +2517 362 0.400000 +2517 477 0.400000 +2517 492 0.400000 +2517 514 0.400000 +2517 531 0.400000 +2517 560 0.400000 +2517 572 0.400000 +2517 589 0.400000 +2517 599 0.400000 +2517 607 0.400000 +2517 611 0.400000 +2517 612 0.400000 +2517 615 0.400000 +2517 655 0.400000 +2517 671 0.400000 +2517 736 0.400000 +2517 798 0.400000 +2517 820 0.400000 +2517 991 0.400000 +2517 1012 0.400000 +2517 1112 0.400000 +2517 1134 0.400000 +2517 1165 0.400000 +2517 1280 0.400000 +2517 1329 0.400000 +2517 1373 0.400000 +2517 1380 0.400000 +2517 1402 0.400000 +2517 1491 0.400000 +2517 1524 0.400000 +2517 1649 0.400000 +2517 1750 0.400000 +2517 1784 0.400000 +2517 1816 0.400000 +2517 1835 0.400000 +2517 1901 0.400000 +2517 1909 0.400000 +2517 2064 0.400000 +2517 2092 0.400000 +2517 2098 0.400000 +2517 2121 0.400000 +2517 2138 0.400000 +2517 2187 0.400000 +2517 2222 0.400000 +2517 2231 0.400000 +2517 2260 0.400000 +2517 2264 0.400000 +2517 2265 0.400000 +2517 2319 0.400000 +2517 2335 0.400000 +2517 2354 0.400000 +2517 2396 0.400000 +2517 2435 0.400000 +2517 2441 0.400000 +2517 2523 0.400000 +2517 2547 0.400000 +2517 2717 0.400000 +2517 2719 0.400000 +2517 2810 0.400000 +2517 2963 0.400000 +2517 2984 0.400000 +2517 3121 0.400000 +2517 3140 0.400000 +2518 2 0.400000 +2518 16 0.400000 +2518 59 0.400000 +2518 118 0.400000 +2518 158 0.400000 +2518 182 0.400000 +2518 248 0.400000 +2518 323 0.400000 +2518 383 0.400000 +2518 393 0.400000 +2518 453 0.400000 +2518 512 0.400000 +2518 571 0.400000 +2518 597 0.400000 +2518 629 0.400000 +2518 667 0.400000 +2518 748 0.400000 +2518 749 0.400000 +2518 819 0.400000 +2518 845 0.400000 +2518 868 0.400000 +2518 910 0.400000 +2518 991 0.400000 +2518 1027 0.400000 +2518 1065 0.400000 +2518 1108 0.400000 +2518 1109 0.400000 +2518 1121 0.400000 +2518 1178 0.400000 +2518 1229 0.400000 +2518 1234 0.400000 +2518 1359 0.400000 +2518 1365 0.400000 +2518 1381 0.400000 +2518 1389 0.400000 +2518 1424 0.400000 +2518 1485 0.400000 +2518 1545 0.400000 +2518 1578 0.400000 +2518 1619 0.400000 +2518 1681 0.400000 +2518 1726 0.400000 +2518 1787 0.400000 +2518 1850 0.400000 +2518 1870 0.400000 +2518 1903 0.400000 +2518 2001 0.400000 +2518 2147 0.400000 +2518 2270 0.400000 +2518 2290 0.400000 +2518 2428 0.400000 +2518 2449 0.400000 +2518 2473 0.400000 +2518 2485 0.400000 +2518 2540 0.400000 +2518 2736 0.400000 +2518 2761 0.400000 +2518 2775 0.400000 +2518 2802 0.400000 +2518 2810 0.400000 +2518 3107 0.400000 +2518 3137 0.400000 +2519 6 0.400000 +2519 36 0.400000 +2519 44 0.400000 +2519 53 0.400000 +2519 85 0.400000 +2519 168 0.400000 +2519 250 0.400000 +2519 319 0.400000 +2519 359 0.400000 +2519 424 0.400000 +2519 427 0.400000 +2519 511 0.400000 +2519 524 0.400000 +2519 527 0.400000 +2519 633 0.400000 +2519 639 0.400000 +2519 659 0.400000 +2519 774 0.400000 +2519 804 0.400000 +2519 816 0.400000 +2519 854 0.400000 +2519 887 0.400000 +2519 962 0.400000 +2519 1016 0.400000 +2519 1019 0.400000 +2519 1038 0.400000 +2519 1113 0.400000 +2519 1223 0.400000 +2519 1274 0.400000 +2519 1352 0.400000 +2519 1469 0.400000 +2519 1507 0.400000 +2519 1581 0.400000 +2519 1637 0.400000 +2519 1794 0.400000 +2519 1840 0.400000 +2519 1858 0.400000 +2519 1882 0.400000 +2519 1909 0.400000 +2519 1922 0.400000 +2519 2001 0.400000 +2519 2014 0.400000 +2519 2023 0.400000 +2519 2100 0.400000 +2519 2195 0.400000 +2519 2367 0.400000 +2519 2484 0.400000 +2519 2518 0.400000 +2519 2559 0.400000 +2519 2595 0.400000 +2519 2644 0.400000 +2519 2774 0.400000 +2519 3029 0.400000 +2519 3031 0.400000 +2519 3046 0.400000 +2519 3071 0.400000 +2519 3148 0.400000 +2519 3169 0.400000 +2520 93 0.400000 +2520 181 0.400000 +2520 192 0.400000 +2520 197 0.400000 +2520 198 0.400000 +2520 210 0.400000 +2520 277 0.400000 +2520 354 0.400000 +2520 366 0.400000 +2520 430 0.400000 +2520 466 0.400000 +2520 475 0.400000 +2520 493 0.400000 +2520 505 0.400000 +2520 512 0.400000 +2520 589 0.400000 +2520 607 0.400000 +2520 659 0.400000 +2520 664 0.400000 +2520 711 0.400000 +2520 716 0.400000 +2520 804 0.400000 +2520 805 0.400000 +2520 821 0.400000 +2520 842 0.400000 +2520 851 0.400000 +2520 856 0.400000 +2520 925 0.400000 +2520 1011 0.400000 +2520 1043 0.400000 +2520 1152 0.400000 +2520 1174 0.400000 +2520 1246 0.400000 +2520 1398 0.400000 +2520 1425 0.400000 +2520 1454 0.400000 +2520 1544 0.400000 +2520 1569 0.400000 +2520 1581 0.400000 +2520 1591 0.400000 +2520 1863 0.400000 +2520 1893 0.400000 +2520 1926 0.400000 +2520 1933 0.400000 +2520 2027 0.400000 +2520 2032 0.400000 +2520 2054 0.400000 +2520 2086 0.400000 +2520 2365 0.400000 +2520 2424 0.400000 +2520 2453 0.400000 +2520 2493 0.400000 +2520 2593 0.400000 +2520 2598 0.400000 +2520 2676 0.400000 +2520 2759 0.400000 +2520 2764 0.400000 +2520 2808 0.400000 +2520 2929 0.400000 +2520 3019 0.400000 +2520 3129 0.400000 +2521 21 0.400000 +2521 82 0.400000 +2521 217 0.400000 +2521 252 0.400000 +2521 351 0.400000 +2521 352 0.400000 +2521 421 0.400000 +2521 446 0.400000 +2521 452 0.400000 +2521 458 0.400000 +2521 469 0.400000 +2521 475 0.400000 +2521 577 0.400000 +2521 753 0.400000 +2521 781 0.400000 +2521 830 0.400000 +2521 838 0.400000 +2521 977 0.400000 +2521 1030 0.400000 +2521 1063 0.400000 +2521 1065 0.400000 +2521 1099 0.400000 +2521 1102 0.400000 +2521 1156 0.400000 +2521 1161 0.400000 +2521 1200 0.400000 +2521 1211 0.400000 +2521 1269 0.400000 +2521 1372 0.400000 +2521 1543 0.400000 +2521 1648 0.400000 +2521 1715 0.400000 +2521 1718 0.400000 +2521 1786 0.400000 +2521 1833 0.400000 +2521 1871 0.400000 +2521 1873 0.400000 +2521 1888 0.400000 +2521 1957 0.400000 +2521 1982 0.400000 +2521 2045 0.400000 +2521 2150 0.400000 +2521 2151 0.400000 +2521 2181 0.400000 +2521 2212 0.400000 +2521 2301 0.400000 +2521 2325 0.400000 +2521 2371 0.400000 +2521 2396 0.400000 +2521 2421 0.400000 +2521 2447 0.400000 +2521 2472 0.400000 +2521 2473 0.400000 +2521 2533 0.400000 +2521 2539 0.400000 +2521 2623 0.400000 +2521 2652 0.400000 +2521 2882 0.400000 +2521 2983 0.400000 +2521 3005 0.400000 +2521 3043 0.400000 +2521 3047 0.400000 +2521 3061 0.400000 +2521 3073 0.400000 +2521 3085 0.400000 +2521 3096 0.400000 +2521 3101 0.400000 +2521 3120 0.400000 +2521 3179 0.400000 +2522 57 0.400000 +2522 64 0.400000 +2522 71 0.400000 +2522 93 0.400000 +2522 124 0.400000 +2522 207 0.400000 +2522 210 0.400000 +2522 368 0.400000 +2522 583 0.400000 +2522 701 0.400000 +2522 707 0.400000 +2522 777 0.400000 +2522 878 0.400000 +2522 888 0.400000 +2522 956 0.400000 +2522 969 0.400000 +2522 993 0.400000 +2522 1062 0.400000 +2522 1305 0.400000 +2522 1334 0.400000 +2522 1546 0.400000 +2522 1557 0.400000 +2522 1653 0.400000 +2522 1678 0.400000 +2522 1702 0.400000 +2522 1879 0.400000 +2522 1894 0.400000 +2522 1912 0.400000 +2522 2022 0.400000 +2522 2046 0.400000 +2522 2078 0.400000 +2522 2179 0.400000 +2522 2186 0.400000 +2522 2258 0.400000 +2522 2268 0.400000 +2522 2296 0.400000 +2522 2300 0.400000 +2522 2338 0.400000 +2522 2353 0.400000 +2522 2359 0.400000 +2522 2416 0.400000 +2522 2517 0.400000 +2522 2541 0.400000 +2522 2597 0.400000 +2522 2645 0.400000 +2522 2723 0.400000 +2522 2732 0.400000 +2522 2746 0.400000 +2522 2838 0.400000 +2522 2865 0.400000 +2522 2908 0.400000 +2522 2932 0.400000 +2522 2965 0.400000 +2522 3069 0.400000 +2522 3154 0.400000 +2522 3156 0.400000 +2522 3189 0.400000 +2523 265 0.400000 +2523 345 0.400000 +2523 359 0.400000 +2523 382 0.400000 +2523 436 0.400000 +2523 440 0.400000 +2523 714 0.400000 +2523 889 0.400000 +2523 950 0.400000 +2523 963 0.400000 +2523 971 0.400000 +2523 1109 0.400000 +2523 1133 0.400000 +2523 1268 0.400000 +2523 1294 0.400000 +2523 1306 0.400000 +2523 1329 0.400000 +2523 1383 0.400000 +2523 1449 0.400000 +2523 1475 0.400000 +2523 1589 0.400000 +2523 1672 0.400000 +2523 1695 0.400000 +2523 1832 0.400000 +2523 1835 0.400000 +2523 1971 0.400000 +2523 1972 0.400000 +2523 2002 0.400000 +2523 2016 0.400000 +2523 2067 0.400000 +2523 2078 0.400000 +2523 2146 0.400000 +2523 2221 0.400000 +2523 2276 0.400000 +2523 2324 0.400000 +2523 2408 0.400000 +2523 2409 0.400000 +2523 2514 0.400000 +2523 2515 0.400000 +2523 2535 0.400000 +2523 2572 0.400000 +2523 2652 0.400000 +2523 2670 0.400000 +2523 2748 0.400000 +2523 2784 0.400000 +2523 2866 0.400000 +2523 3113 0.400000 +2523 3151 0.400000 +2523 3170 0.400000 +2524 93 0.400000 +2524 113 0.400000 +2524 262 0.400000 +2524 304 0.400000 +2524 380 0.400000 +2524 397 0.400000 +2524 424 0.400000 +2524 510 0.400000 +2524 689 0.400000 +2524 793 0.400000 +2524 849 0.400000 +2524 853 0.400000 +2524 863 0.400000 +2524 1049 0.400000 +2524 1084 0.400000 +2524 1119 0.400000 +2524 1136 0.400000 +2524 1208 0.400000 +2524 1427 0.400000 +2524 1478 0.400000 +2524 1506 0.400000 +2524 1572 0.400000 +2524 1574 0.400000 +2524 1584 0.400000 +2524 1614 0.400000 +2524 1755 0.400000 +2524 1811 0.400000 +2524 1827 0.400000 +2524 1940 0.400000 +2524 1941 0.400000 +2524 1960 0.400000 +2524 2053 0.400000 +2524 2136 0.400000 +2524 2634 0.400000 +2524 2656 0.400000 +2524 2751 0.400000 +2524 2852 0.400000 +2524 2920 0.400000 +2524 2956 0.400000 +2524 2992 0.400000 +2524 3001 0.400000 +2524 3117 0.400000 +2524 3135 0.400000 +2524 3142 0.400000 +2524 3191 0.400000 +2525 79 0.400000 +2525 212 0.400000 +2525 237 0.400000 +2525 330 0.400000 +2525 337 0.400000 +2525 338 0.400000 +2525 360 0.400000 +2525 390 0.400000 +2525 404 0.400000 +2525 419 0.400000 +2525 561 0.400000 +2525 663 0.400000 +2525 850 0.400000 +2525 908 0.400000 +2525 922 0.400000 +2525 946 0.400000 +2525 1071 0.400000 +2525 1142 0.400000 +2525 1146 0.400000 +2525 1183 0.400000 +2525 1262 0.400000 +2525 1332 0.400000 +2525 1365 0.400000 +2525 1434 0.400000 +2525 1475 0.400000 +2525 1534 0.400000 +2525 1550 0.400000 +2525 1642 0.400000 +2525 1685 0.400000 +2525 1702 0.400000 +2525 1710 0.400000 +2525 1804 0.400000 +2525 1828 0.400000 +2525 1946 0.400000 +2525 1967 0.400000 +2525 1996 0.400000 +2525 2088 0.400000 +2525 2118 0.400000 +2525 2169 0.400000 +2525 2220 0.400000 +2525 2241 0.400000 +2525 2322 0.400000 +2525 2356 0.400000 +2525 2413 0.400000 +2525 2414 0.400000 +2525 2436 0.400000 +2525 2442 0.400000 +2525 2505 0.400000 +2525 2531 0.400000 +2525 2558 0.400000 +2525 2607 0.400000 +2525 2748 0.400000 +2525 2868 0.400000 +2525 2887 0.400000 +2525 2934 0.400000 +2525 2978 0.400000 +2525 3022 0.400000 +2525 3031 0.400000 +2525 3060 0.400000 +2525 3110 0.400000 +2525 3123 0.400000 +2525 3132 0.400000 +2526 4 0.400000 +2526 144 0.400000 +2526 215 0.400000 +2526 225 0.400000 +2526 264 0.400000 +2526 276 0.400000 +2526 359 0.400000 +2526 379 0.400000 +2526 396 0.400000 +2526 419 0.400000 +2526 421 0.400000 +2526 428 0.400000 +2526 461 0.400000 +2526 491 0.400000 +2526 504 0.400000 +2526 507 0.400000 +2526 561 0.400000 +2526 588 0.400000 +2526 622 0.400000 +2526 650 0.400000 +2526 658 0.400000 +2526 659 0.400000 +2526 758 0.400000 +2526 846 0.400000 +2526 884 0.400000 +2526 958 0.400000 +2526 987 0.400000 +2526 1037 0.400000 +2526 1052 0.400000 +2526 1079 0.400000 +2526 1114 0.400000 +2526 1128 0.400000 +2526 1201 0.400000 +2526 1303 0.400000 +2526 1340 0.400000 +2526 1408 0.400000 +2526 1417 0.400000 +2526 1440 0.400000 +2526 1483 0.400000 +2526 1494 0.400000 +2526 1503 0.400000 +2526 1628 0.400000 +2526 1645 0.400000 +2526 1659 0.400000 +2526 1712 0.400000 +2526 1804 0.400000 +2526 2098 0.400000 +2526 2101 0.400000 +2526 2118 0.400000 +2526 2215 0.400000 +2526 2243 0.400000 +2526 2248 0.400000 +2526 2261 0.400000 +2526 2342 0.400000 +2526 2356 0.400000 +2526 2357 0.400000 +2526 2362 0.400000 +2526 2364 0.400000 +2526 2458 0.400000 +2526 2488 0.400000 +2526 2505 0.400000 +2526 2606 0.400000 +2526 2640 0.400000 +2526 2747 0.400000 +2526 2802 0.400000 +2526 2840 0.400000 +2526 2871 0.400000 +2526 2898 0.400000 +2526 2902 0.400000 +2526 2988 0.400000 +2526 3181 0.400000 +2526 3197 0.400000 +2527 64 0.400000 +2527 137 0.400000 +2527 177 0.400000 +2527 225 0.400000 +2527 238 0.400000 +2527 259 0.400000 +2527 287 0.400000 +2527 313 0.400000 +2527 315 0.400000 +2527 344 0.400000 +2527 407 0.400000 +2527 482 0.400000 +2527 526 0.400000 +2527 536 0.400000 +2527 555 0.400000 +2527 664 0.400000 +2527 684 0.400000 +2527 718 0.400000 +2527 730 0.400000 +2527 836 0.400000 +2527 845 0.400000 +2527 1060 0.400000 +2527 1134 0.400000 +2527 1162 0.400000 +2527 1282 0.400000 +2527 1314 0.400000 +2527 1322 0.400000 +2527 1356 0.400000 +2527 1441 0.400000 +2527 1514 0.400000 +2527 1577 0.400000 +2527 1620 0.400000 +2527 1843 0.400000 +2527 1844 0.400000 +2527 1864 0.400000 +2527 1929 0.400000 +2527 2013 0.400000 +2527 2021 0.400000 +2527 2033 0.400000 +2527 2058 0.400000 +2527 2106 0.400000 +2527 2137 0.400000 +2527 2201 0.400000 +2527 2209 0.400000 +2527 2228 0.400000 +2527 2315 0.400000 +2527 2336 0.400000 +2527 2365 0.400000 +2527 2420 0.400000 +2527 2441 0.400000 +2527 2453 0.400000 +2527 2567 0.400000 +2527 2584 0.400000 +2527 2629 0.400000 +2527 2690 0.400000 +2527 2764 0.400000 +2527 2766 0.400000 +2527 2957 0.400000 +2527 2990 0.400000 +2527 3061 0.400000 +2528 11 0.400000 +2528 75 0.400000 +2528 77 0.400000 +2528 272 0.400000 +2528 292 0.400000 +2528 300 0.400000 +2528 338 0.400000 +2528 414 0.400000 +2528 473 0.400000 +2528 500 0.400000 +2528 552 0.400000 +2528 557 0.400000 +2528 731 0.400000 +2528 753 0.400000 +2528 849 0.400000 +2528 859 0.400000 +2528 944 0.400000 +2528 996 0.400000 +2528 1030 0.400000 +2528 1031 0.400000 +2528 1094 0.400000 +2528 1191 0.400000 +2528 1206 0.400000 +2528 1245 0.400000 +2528 1408 0.400000 +2528 1514 0.400000 +2528 1517 0.400000 +2528 1576 0.400000 +2528 1646 0.400000 +2528 1663 0.400000 +2528 1688 0.400000 +2528 1697 0.400000 +2528 1816 0.400000 +2528 1899 0.400000 +2528 1903 0.400000 +2528 1916 0.400000 +2528 1936 0.400000 +2528 1979 0.400000 +2528 1998 0.400000 +2528 2018 0.400000 +2528 2135 0.400000 +2528 2187 0.400000 +2528 2212 0.400000 +2528 2270 0.400000 +2528 2298 0.400000 +2528 2346 0.400000 +2528 2465 0.400000 +2528 2513 0.400000 +2528 2517 0.400000 +2528 2537 0.400000 +2528 2545 0.400000 +2528 2553 0.400000 +2528 2652 0.400000 +2528 2661 0.400000 +2528 2699 0.400000 +2528 2729 0.400000 +2528 2763 0.400000 +2528 2844 0.400000 +2528 2859 0.400000 +2528 2922 0.400000 +2528 2923 0.400000 +2528 3001 0.400000 +2528 3022 0.400000 +2528 3047 0.400000 +2528 3118 0.400000 +2529 13 0.400000 +2529 333 0.400000 +2529 369 0.400000 +2529 415 0.400000 +2529 478 0.400000 +2529 503 0.400000 +2529 614 0.400000 +2529 640 0.400000 +2529 642 0.400000 +2529 658 0.400000 +2529 666 0.400000 +2529 683 0.400000 +2529 711 0.400000 +2529 730 0.400000 +2529 753 0.400000 +2529 783 0.400000 +2529 853 0.400000 +2529 899 0.400000 +2529 913 0.400000 +2529 929 0.400000 +2529 963 0.400000 +2529 1097 0.400000 +2529 1200 0.400000 +2529 1217 0.400000 +2529 1293 0.400000 +2529 1477 0.400000 +2529 1494 0.400000 +2529 1499 0.400000 +2529 1502 0.400000 +2529 1620 0.400000 +2529 1693 0.400000 +2529 1746 0.400000 +2529 2033 0.400000 +2529 2046 0.400000 +2529 2053 0.400000 +2529 2136 0.400000 +2529 2168 0.400000 +2529 2205 0.400000 +2529 2291 0.400000 +2529 2362 0.400000 +2529 2427 0.400000 +2529 2429 0.400000 +2529 2430 0.400000 +2529 2439 0.400000 +2529 2458 0.400000 +2529 2551 0.400000 +2529 2562 0.400000 +2529 2723 0.400000 +2529 2800 0.400000 +2529 2825 0.400000 +2529 2857 0.400000 +2529 2858 0.400000 +2529 2869 0.400000 +2529 2877 0.400000 +2529 2905 0.400000 +2529 2940 0.400000 +2529 2968 0.400000 +2529 2977 0.400000 +2529 2983 0.400000 +2529 3028 0.400000 +2529 3119 0.400000 +2529 3128 0.400000 +2529 3181 0.400000 +2530 61 0.400000 +2530 118 0.400000 +2530 206 0.400000 +2530 232 0.400000 +2530 315 0.400000 +2530 354 0.400000 +2530 356 0.400000 +2530 518 0.400000 +2530 550 0.400000 +2530 553 0.400000 +2530 606 0.400000 +2530 641 0.400000 +2530 649 0.400000 +2530 752 0.400000 +2530 784 0.400000 +2530 802 0.400000 +2530 901 0.400000 +2530 921 0.400000 +2530 923 0.400000 +2530 928 0.400000 +2530 979 0.400000 +2530 1060 0.400000 +2530 1064 0.400000 +2530 1066 0.400000 +2530 1071 0.400000 +2530 1086 0.400000 +2530 1087 0.400000 +2530 1338 0.400000 +2530 1371 0.400000 +2530 1372 0.400000 +2530 1397 0.400000 +2530 1403 0.400000 +2530 1404 0.400000 +2530 1419 0.400000 +2530 1449 0.400000 +2530 1474 0.400000 +2530 1548 0.400000 +2530 1559 0.400000 +2530 1588 0.400000 +2530 1671 0.400000 +2530 1811 0.400000 +2530 1869 0.400000 +2530 1901 0.400000 +2530 1937 0.400000 +2530 1939 0.400000 +2530 2018 0.400000 +2530 2045 0.400000 +2530 2144 0.400000 +2530 2195 0.400000 +2530 2210 0.400000 +2530 2270 0.400000 +2530 2286 0.400000 +2530 2416 0.400000 +2530 2601 0.400000 +2530 2603 0.400000 +2530 2604 0.400000 +2530 2622 0.400000 +2530 2697 0.400000 +2530 2705 0.400000 +2530 2777 0.400000 +2530 2886 0.400000 +2530 2892 0.400000 +2530 2894 0.400000 +2530 2940 0.400000 +2530 2953 0.400000 +2530 3015 0.400000 +2530 3046 0.400000 +2530 3053 0.400000 +2530 3076 0.400000 +2530 3155 0.400000 +2530 3165 0.400000 +2530 3196 0.400000 +2531 6 0.400000 +2531 94 0.400000 +2531 119 0.400000 +2531 178 0.400000 +2531 312 0.400000 +2531 313 0.400000 +2531 340 0.400000 +2531 422 0.400000 +2531 433 0.400000 +2531 449 0.400000 +2531 453 0.400000 +2531 492 0.400000 +2531 533 0.400000 +2531 594 0.400000 +2531 626 0.400000 +2531 782 0.400000 +2531 840 0.400000 +2531 875 0.400000 +2531 896 0.400000 +2531 980 0.400000 +2531 981 0.400000 +2531 985 0.400000 +2531 1054 0.400000 +2531 1077 0.400000 +2531 1135 0.400000 +2531 1149 0.400000 +2531 1152 0.400000 +2531 1236 0.400000 +2531 1242 0.400000 +2531 1251 0.400000 +2531 1302 0.400000 +2531 1334 0.400000 +2531 1469 0.400000 +2531 1473 0.400000 +2531 1484 0.400000 +2531 1491 0.400000 +2531 1629 0.400000 +2531 1672 0.400000 +2531 1690 0.400000 +2531 1695 0.400000 +2531 1795 0.400000 +2531 1828 0.400000 +2531 2023 0.400000 +2531 2037 0.400000 +2531 2145 0.400000 +2531 2181 0.400000 +2531 2201 0.400000 +2531 2240 0.400000 +2531 2272 0.400000 +2531 2280 0.400000 +2531 2281 0.400000 +2531 2351 0.400000 +2531 2449 0.400000 +2531 2513 0.400000 +2531 2532 0.400000 +2531 2689 0.400000 +2531 2731 0.400000 +2531 2783 0.400000 +2531 2816 0.400000 +2531 2839 0.400000 +2531 2840 0.400000 +2531 2889 0.400000 +2531 2896 0.400000 +2531 2908 0.400000 +2531 2916 0.400000 +2531 3014 0.400000 +2531 3049 0.400000 +2531 3053 0.400000 +2531 3133 0.400000 +2531 3137 0.400000 +2531 3141 0.400000 +2532 11 0.400000 +2532 40 0.400000 +2532 54 0.400000 +2532 118 0.400000 +2532 121 0.400000 +2532 179 0.400000 +2532 337 0.400000 +2532 343 0.400000 +2532 365 0.400000 +2532 413 0.400000 +2532 448 0.400000 +2532 490 0.400000 +2532 499 0.400000 +2532 586 0.400000 +2532 588 0.400000 +2532 648 0.400000 +2532 695 0.400000 +2532 733 0.400000 +2532 786 0.400000 +2532 787 0.400000 +2532 890 0.400000 +2532 955 0.400000 +2532 1043 0.400000 +2532 1083 0.400000 +2532 1115 0.400000 +2532 1116 0.400000 +2532 1179 0.400000 +2532 1308 0.400000 +2532 1360 0.400000 +2532 1419 0.400000 +2532 1468 0.400000 +2532 1495 0.400000 +2532 1668 0.400000 +2532 1699 0.400000 +2532 1761 0.400000 +2532 1811 0.400000 +2532 1970 0.400000 +2532 2004 0.400000 +2532 2060 0.400000 +2532 2072 0.400000 +2532 2089 0.400000 +2532 2154 0.400000 +2532 2160 0.400000 +2532 2331 0.400000 +2532 2359 0.400000 +2532 2416 0.400000 +2532 2453 0.400000 +2532 2491 0.400000 +2532 2550 0.400000 +2532 2628 0.400000 +2532 2645 0.400000 +2532 2649 0.400000 +2532 2772 0.400000 +2532 2774 0.400000 +2532 2778 0.400000 +2532 2819 0.400000 +2532 2823 0.400000 +2532 2824 0.400000 +2532 2833 0.400000 +2532 2857 0.400000 +2532 2892 0.400000 +2532 2950 0.400000 +2532 2958 0.400000 +2532 2984 0.400000 +2532 3064 0.400000 +2532 3100 0.400000 +2532 3111 0.400000 +2532 3115 0.400000 +2532 3125 0.400000 +2532 3135 0.400000 +2532 3160 0.400000 +2533 4 0.400000 +2533 44 0.400000 +2533 69 0.400000 +2533 118 0.400000 +2533 185 0.400000 +2533 278 0.400000 +2533 307 0.400000 +2533 439 0.400000 +2533 627 0.400000 +2533 681 0.400000 +2533 842 0.400000 +2533 848 0.400000 +2533 968 0.400000 +2533 1024 0.400000 +2533 1044 0.400000 +2533 1067 0.400000 +2533 1123 0.400000 +2533 1126 0.400000 +2533 1131 0.400000 +2533 1176 0.400000 +2533 1193 0.400000 +2533 1229 0.400000 +2533 1307 0.400000 +2533 1373 0.400000 +2533 1385 0.400000 +2533 1558 0.400000 +2533 1607 0.400000 +2533 1620 0.400000 +2533 1685 0.400000 +2533 1773 0.400000 +2533 1798 0.400000 +2533 1801 0.400000 +2533 1815 0.400000 +2533 1919 0.400000 +2533 1948 0.400000 +2533 1949 0.400000 +2533 1953 0.400000 +2533 1973 0.400000 +2533 1999 0.400000 +2533 2040 0.400000 +2533 2050 0.400000 +2533 2125 0.400000 +2533 2134 0.400000 +2533 2142 0.400000 +2533 2198 0.400000 +2533 2228 0.400000 +2533 2281 0.400000 +2533 2296 0.400000 +2533 2305 0.400000 +2533 2381 0.400000 +2533 2390 0.400000 +2533 2417 0.400000 +2533 2487 0.400000 +2533 2558 0.400000 +2533 2626 0.400000 +2533 2639 0.400000 +2533 2672 0.400000 +2533 2696 0.400000 +2533 2722 0.400000 +2533 2767 0.400000 +2533 2827 0.400000 +2533 3057 0.400000 +2533 3061 0.400000 +2533 3091 0.400000 +2533 3099 0.400000 +2533 3175 0.400000 +2533 3187 0.400000 +2534 29 0.400000 +2534 33 0.400000 +2534 149 0.400000 +2534 162 0.400000 +2534 222 0.400000 +2534 260 0.400000 +2534 298 0.400000 +2534 381 0.400000 +2534 400 0.400000 +2534 413 0.400000 +2534 442 0.400000 +2534 444 0.400000 +2534 469 0.400000 +2534 612 0.400000 +2534 726 0.400000 +2534 802 0.400000 +2534 819 0.400000 +2534 826 0.400000 +2534 894 0.400000 +2534 981 0.400000 +2534 995 0.400000 +2534 1014 0.400000 +2534 1018 0.400000 +2534 1021 0.400000 +2534 1033 0.400000 +2534 1088 0.400000 +2534 1133 0.400000 +2534 1270 0.400000 +2534 1291 0.400000 +2534 1297 0.400000 +2534 1298 0.400000 +2534 1341 0.400000 +2534 1351 0.400000 +2534 1415 0.400000 +2534 1458 0.400000 +2534 1467 0.400000 +2534 1632 0.400000 +2534 1633 0.400000 +2534 1708 0.400000 +2534 1714 0.400000 +2534 1716 0.400000 +2534 1719 0.400000 +2534 1838 0.400000 +2534 1841 0.400000 +2534 2127 0.400000 +2534 2128 0.400000 +2534 2181 0.400000 +2534 2280 0.400000 +2534 2318 0.400000 +2534 2326 0.400000 +2534 2352 0.400000 +2534 2355 0.400000 +2534 2404 0.400000 +2534 2406 0.400000 +2534 2422 0.400000 +2534 2440 0.400000 +2534 2457 0.400000 +2534 2489 0.400000 +2534 2597 0.400000 +2534 2623 0.400000 +2534 2649 0.400000 +2534 2679 0.400000 +2534 2718 0.400000 +2534 2742 0.400000 +2534 2779 0.400000 +2534 2825 0.400000 +2534 2914 0.400000 +2534 3051 0.400000 +2534 3077 0.400000 +2534 3156 0.400000 +2535 37 0.400000 +2535 106 0.400000 +2535 136 0.400000 +2535 188 0.400000 +2535 204 0.400000 +2535 262 0.400000 +2535 297 0.400000 +2535 332 0.400000 +2535 399 0.400000 +2535 562 0.400000 +2535 656 0.400000 +2535 681 0.400000 +2535 693 0.400000 +2535 745 0.400000 +2535 784 0.400000 +2535 806 0.400000 +2535 817 0.400000 +2535 820 0.400000 +2535 907 0.400000 +2535 950 0.400000 +2535 1058 0.400000 +2535 1182 0.400000 +2535 1308 0.400000 +2535 1310 0.400000 +2535 1426 0.400000 +2535 1439 0.400000 +2535 1639 0.400000 +2535 1658 0.400000 +2535 1672 0.400000 +2535 1694 0.400000 +2535 1749 0.400000 +2535 1756 0.400000 +2535 1790 0.400000 +2535 1794 0.400000 +2535 1807 0.400000 +2535 1820 0.400000 +2535 1841 0.400000 +2535 1884 0.400000 +2535 1929 0.400000 +2535 1959 0.400000 +2535 2039 0.400000 +2535 2048 0.400000 +2535 2049 0.400000 +2535 2089 0.400000 +2535 2092 0.400000 +2535 2113 0.400000 +2535 2325 0.400000 +2535 2329 0.400000 +2535 2427 0.400000 +2535 2436 0.400000 +2535 2455 0.400000 +2535 2480 0.400000 +2535 2487 0.400000 +2535 2544 0.400000 +2535 2557 0.400000 +2535 2576 0.400000 +2535 2597 0.400000 +2535 2630 0.400000 +2535 2699 0.400000 +2535 2730 0.400000 +2535 2736 0.400000 +2536 11 0.400000 +2536 24 0.400000 +2536 26 0.400000 +2536 139 0.400000 +2536 151 0.400000 +2536 315 0.400000 +2536 362 0.400000 +2536 395 0.400000 +2536 413 0.400000 +2536 438 0.400000 +2536 478 0.400000 +2536 514 0.400000 +2536 530 0.400000 +2536 607 0.400000 +2536 646 0.400000 +2536 676 0.400000 +2536 683 0.400000 +2536 684 0.400000 +2536 702 0.400000 +2536 743 0.400000 +2536 775 0.400000 +2536 782 0.400000 +2536 803 0.400000 +2536 877 0.400000 +2536 882 0.400000 +2536 916 0.400000 +2536 976 0.400000 +2536 1000 0.400000 +2536 1030 0.400000 +2536 1031 0.400000 +2536 1042 0.400000 +2536 1067 0.400000 +2536 1081 0.400000 +2536 1084 0.400000 +2536 1154 0.400000 +2536 1181 0.400000 +2536 1197 0.400000 +2536 1263 0.400000 +2536 1296 0.400000 +2536 1386 0.400000 +2536 1400 0.400000 +2536 1458 0.400000 +2536 1490 0.400000 +2536 1532 0.400000 +2536 1554 0.400000 +2536 1628 0.400000 +2536 1639 0.400000 +2536 1649 0.400000 +2536 1793 0.400000 +2536 1909 0.400000 +2536 1936 0.400000 +2536 1940 0.400000 +2536 1958 0.400000 +2536 1979 0.400000 +2536 2001 0.400000 +2536 2014 0.400000 +2536 2018 0.400000 +2536 2065 0.400000 +2536 2113 0.400000 +2536 2137 0.400000 +2536 2141 0.400000 +2536 2183 0.400000 +2536 2198 0.400000 +2536 2240 0.400000 +2536 2326 0.400000 +2536 2338 0.400000 +2536 2343 0.400000 +2536 2422 0.400000 +2536 2514 0.400000 +2536 2543 0.400000 +2536 2552 0.400000 +2536 2710 0.400000 +2536 2712 0.400000 +2536 2759 0.400000 +2536 2853 0.400000 +2536 2940 0.400000 +2536 2946 0.400000 +2536 3098 0.400000 +2536 3104 0.400000 +2536 3143 0.400000 +2536 3150 0.400000 +2536 3199 0.400000 +2537 79 0.400000 +2537 131 0.400000 +2537 133 0.400000 +2537 168 0.400000 +2537 311 0.400000 +2537 395 0.400000 +2537 696 0.400000 +2537 697 0.400000 +2537 698 0.400000 +2537 726 0.400000 +2537 771 0.400000 +2537 772 0.400000 +2537 850 0.400000 +2537 932 0.400000 +2537 958 0.400000 +2537 970 0.400000 +2537 1010 0.400000 +2537 1047 0.400000 +2537 1093 0.400000 +2537 1185 0.400000 +2537 1201 0.400000 +2537 1281 0.400000 +2537 1369 0.400000 +2537 1395 0.400000 +2537 1436 0.400000 +2537 1482 0.400000 +2537 1503 0.400000 +2537 1603 0.400000 +2537 1635 0.400000 +2537 1694 0.400000 +2537 1721 0.400000 +2537 1737 0.400000 +2537 1754 0.400000 +2537 1797 0.400000 +2537 1823 0.400000 +2537 1948 0.400000 +2537 1960 0.400000 +2537 1983 0.400000 +2537 2027 0.400000 +2537 2193 0.400000 +2537 2214 0.400000 +2537 2271 0.400000 +2537 2295 0.400000 +2537 2305 0.400000 +2537 2318 0.400000 +2537 2342 0.400000 +2537 2429 0.400000 +2537 2474 0.400000 +2537 2488 0.400000 +2537 2540 0.400000 +2537 2574 0.400000 +2537 2659 0.400000 +2537 2667 0.400000 +2537 2682 0.400000 +2537 2705 0.400000 +2537 2907 0.400000 +2537 3040 0.400000 +2537 3043 0.400000 +2537 3138 0.400000 +2537 3199 0.400000 +2538 11 0.400000 +2538 24 0.400000 +2538 28 0.400000 +2538 153 0.400000 +2538 159 0.400000 +2538 185 0.400000 +2538 236 0.400000 +2538 269 0.400000 +2538 307 0.400000 +2538 359 0.400000 +2538 409 0.400000 +2538 445 0.400000 +2538 478 0.400000 +2538 513 0.400000 +2538 576 0.400000 +2538 629 0.400000 +2538 677 0.400000 +2538 702 0.400000 +2538 729 0.400000 +2538 785 0.400000 +2538 832 0.400000 +2538 864 0.400000 +2538 909 0.400000 +2538 924 0.400000 +2538 929 0.400000 +2538 1017 0.400000 +2538 1043 0.400000 +2538 1065 0.400000 +2538 1127 0.400000 +2538 1239 0.400000 +2538 1241 0.400000 +2538 1252 0.400000 +2538 1253 0.400000 +2538 1305 0.400000 +2538 1339 0.400000 +2538 1363 0.400000 +2538 1433 0.400000 +2538 1469 0.400000 +2538 1506 0.400000 +2538 1528 0.400000 +2538 1562 0.400000 +2538 1585 0.400000 +2538 1632 0.400000 +2538 1643 0.400000 +2538 1741 0.400000 +2538 1764 0.400000 +2538 1909 0.400000 +2538 1921 0.400000 +2538 1930 0.400000 +2538 1961 0.400000 +2538 1995 0.400000 +2538 2010 0.400000 +2538 2068 0.400000 +2538 2578 0.400000 +2538 2603 0.400000 +2538 2711 0.400000 +2538 2831 0.400000 +2538 2834 0.400000 +2538 2952 0.400000 +2538 2956 0.400000 +2538 3065 0.400000 +2538 3066 0.400000 +2538 3079 0.400000 +2539 96 0.400000 +2539 104 0.400000 +2539 116 0.400000 +2539 143 0.400000 +2539 270 0.400000 +2539 394 0.400000 +2539 455 0.400000 +2539 507 0.400000 +2539 513 0.400000 +2539 525 0.400000 +2539 551 0.400000 +2539 586 0.400000 +2539 678 0.400000 +2539 688 0.400000 +2539 700 0.400000 +2539 704 0.400000 +2539 725 0.400000 +2539 797 0.400000 +2539 801 0.400000 +2539 893 0.400000 +2539 931 0.400000 +2539 938 0.400000 +2539 946 0.400000 +2539 1098 0.400000 +2539 1146 0.400000 +2539 1150 0.400000 +2539 1263 0.400000 +2539 1322 0.400000 +2539 1329 0.400000 +2539 1336 0.400000 +2539 1362 0.400000 +2539 1439 0.400000 +2539 1510 0.400000 +2539 1613 0.400000 +2539 1895 0.400000 +2539 1944 0.400000 +2539 1952 0.400000 +2539 1961 0.400000 +2539 2199 0.400000 +2539 2284 0.400000 +2539 2325 0.400000 +2539 2379 0.400000 +2539 2431 0.400000 +2539 2499 0.400000 +2539 2565 0.400000 +2539 2582 0.400000 +2539 2599 0.400000 +2539 2685 0.400000 +2539 2759 0.400000 +2539 2778 0.400000 +2539 2818 0.400000 +2539 2843 0.400000 +2539 2848 0.400000 +2539 2872 0.400000 +2539 2998 0.400000 +2539 3055 0.400000 +2539 3063 0.400000 +2539 3181 0.400000 +2539 3191 0.400000 +2540 29 0.400000 +2540 31 0.400000 +2540 37 0.400000 +2540 50 0.400000 +2540 51 0.400000 +2540 123 0.400000 +2540 127 0.400000 +2540 224 0.400000 +2540 239 0.400000 +2540 282 0.400000 +2540 317 0.400000 +2540 331 0.400000 +2540 359 0.400000 +2540 376 0.400000 +2540 412 0.400000 +2540 417 0.400000 +2540 479 0.400000 +2540 506 0.400000 +2540 528 0.400000 +2540 791 0.400000 +2540 804 0.400000 +2540 834 0.400000 +2540 997 0.400000 +2540 1037 0.400000 +2540 1047 0.400000 +2540 1088 0.400000 +2540 1133 0.400000 +2540 1357 0.400000 +2540 1359 0.400000 +2540 1536 0.400000 +2540 1576 0.400000 +2540 1638 0.400000 +2540 1667 0.400000 +2540 1670 0.400000 +2540 1672 0.400000 +2540 1817 0.400000 +2540 1831 0.400000 +2540 1845 0.400000 +2540 1858 0.400000 +2540 1933 0.400000 +2540 1966 0.400000 +2540 1977 0.400000 +2540 2022 0.400000 +2540 2047 0.400000 +2540 2067 0.400000 +2540 2087 0.400000 +2540 2180 0.400000 +2540 2182 0.400000 +2540 2224 0.400000 +2540 2282 0.400000 +2540 2303 0.400000 +2540 2322 0.400000 +2540 2332 0.400000 +2540 2375 0.400000 +2540 2398 0.400000 +2540 2507 0.400000 +2540 2538 0.400000 +2540 2565 0.400000 +2540 2574 0.400000 +2540 2628 0.400000 +2540 2642 0.400000 +2540 2648 0.400000 +2540 2650 0.400000 +2540 2742 0.400000 +2540 2767 0.400000 +2540 2801 0.400000 +2540 2855 0.400000 +2540 2859 0.400000 +2540 2918 0.400000 +2540 2974 0.400000 +2540 2999 0.400000 +2540 3097 0.400000 +2540 3136 0.400000 +2540 3138 0.400000 +2540 3150 0.400000 +2540 3178 0.400000 +2540 3191 0.400000 +2541 19 0.400000 +2541 28 0.400000 +2541 54 0.400000 +2541 58 0.400000 +2541 74 0.400000 +2541 81 0.400000 +2541 102 0.400000 +2541 115 0.400000 +2541 219 0.400000 +2541 244 0.400000 +2541 255 0.400000 +2541 353 0.400000 +2541 364 0.400000 +2541 575 0.400000 +2541 658 0.400000 +2541 670 0.400000 +2541 727 0.400000 +2541 752 0.400000 +2541 786 0.400000 +2541 871 0.400000 +2541 949 0.400000 +2541 986 0.400000 +2541 1005 0.400000 +2541 1108 0.400000 +2541 1110 0.400000 +2541 1167 0.400000 +2541 1178 0.400000 +2541 1251 0.400000 +2541 1329 0.400000 +2541 1427 0.400000 +2541 1543 0.400000 +2541 1550 0.400000 +2541 1575 0.400000 +2541 1616 0.400000 +2541 1678 0.400000 +2541 1737 0.400000 +2541 1780 0.400000 +2541 1865 0.400000 +2541 2023 0.400000 +2541 2049 0.400000 +2541 2141 0.400000 +2541 2154 0.400000 +2541 2245 0.400000 +2541 2355 0.400000 +2541 2359 0.400000 +2541 2399 0.400000 +2541 2449 0.400000 +2541 2555 0.400000 +2541 2611 0.400000 +2541 2636 0.400000 +2541 2641 0.400000 +2541 2721 0.400000 +2541 2767 0.400000 +2541 2814 0.400000 +2541 2820 0.400000 +2541 2844 0.400000 +2541 2876 0.400000 +2541 2946 0.400000 +2541 2999 0.400000 +2541 3049 0.400000 +2541 3128 0.400000 +2541 3148 0.400000 +2541 3186 0.400000 +2542 46 0.400000 +2542 58 0.400000 +2542 82 0.400000 +2542 94 0.400000 +2542 155 0.400000 +2542 176 0.400000 +2542 182 0.400000 +2542 196 0.400000 +2542 206 0.400000 +2542 255 0.400000 +2542 328 0.400000 +2542 340 0.400000 +2542 472 0.400000 +2542 496 0.400000 +2542 551 0.400000 +2542 647 0.400000 +2542 649 0.400000 +2542 746 0.400000 +2542 757 0.400000 +2542 790 0.400000 +2542 830 0.400000 +2542 831 0.400000 +2542 963 0.400000 +2542 1173 0.400000 +2542 1175 0.400000 +2542 1197 0.400000 +2542 1236 0.400000 +2542 1245 0.400000 +2542 1305 0.400000 +2542 1326 0.400000 +2542 1327 0.400000 +2542 1413 0.400000 +2542 1433 0.400000 +2542 1460 0.400000 +2542 1626 0.400000 +2542 1649 0.400000 +2542 1675 0.400000 +2542 1743 0.400000 +2542 1829 0.400000 +2542 1863 0.400000 +2542 1868 0.400000 +2542 1878 0.400000 +2542 1924 0.400000 +2542 2011 0.400000 +2542 2063 0.400000 +2542 2091 0.400000 +2542 2139 0.400000 +2542 2154 0.400000 +2542 2217 0.400000 +2542 2306 0.400000 +2542 2317 0.400000 +2542 2417 0.400000 +2542 2449 0.400000 +2542 2453 0.400000 +2542 2539 0.400000 +2542 2547 0.400000 +2542 2566 0.400000 +2542 2611 0.400000 +2542 2649 0.400000 +2542 2762 0.400000 +2542 2763 0.400000 +2542 2787 0.400000 +2542 2938 0.400000 +2542 2962 0.400000 +2542 3052 0.400000 +2542 3182 0.400000 +2542 3199 0.400000 +2543 66 0.400000 +2543 157 0.400000 +2543 158 0.400000 +2543 222 0.400000 +2543 235 0.400000 +2543 289 0.400000 +2543 313 0.400000 +2543 344 0.400000 +2543 353 0.400000 +2543 579 0.400000 +2543 580 0.400000 +2543 725 0.400000 +2543 872 0.400000 +2543 885 0.400000 +2543 887 0.400000 +2543 924 0.400000 +2543 1098 0.400000 +2543 1217 0.400000 +2543 1244 0.400000 +2543 1284 0.400000 +2543 1357 0.400000 +2543 1358 0.400000 +2543 1553 0.400000 +2543 1581 0.400000 +2543 1608 0.400000 +2543 1675 0.400000 +2543 1748 0.400000 +2543 1798 0.400000 +2543 1808 0.400000 +2543 1824 0.400000 +2543 1846 0.400000 +2543 1868 0.400000 +2543 2024 0.400000 +2543 2037 0.400000 +2543 2093 0.400000 +2543 2121 0.400000 +2543 2144 0.400000 +2543 2182 0.400000 +2543 2277 0.400000 +2543 2333 0.400000 +2543 2382 0.400000 +2543 2397 0.400000 +2543 2416 0.400000 +2543 2436 0.400000 +2543 2484 0.400000 +2543 2491 0.400000 +2543 2494 0.400000 +2543 2603 0.400000 +2543 2660 0.400000 +2543 2674 0.400000 +2543 2711 0.400000 +2543 2721 0.400000 +2543 2760 0.400000 +2543 2812 0.400000 +2543 2847 0.400000 +2543 2855 0.400000 +2543 2909 0.400000 +2543 3007 0.400000 +2543 3018 0.400000 +2543 3143 0.400000 +2543 3146 0.400000 +2544 58 0.400000 +2544 82 0.400000 +2544 87 0.400000 +2544 89 0.400000 +2544 95 0.400000 +2544 106 0.400000 +2544 168 0.400000 +2544 185 0.400000 +2544 195 0.400000 +2544 240 0.400000 +2544 257 0.400000 +2544 343 0.400000 +2544 354 0.400000 +2544 475 0.400000 +2544 486 0.400000 +2544 489 0.400000 +2544 501 0.400000 +2544 559 0.400000 +2544 569 0.400000 +2544 596 0.400000 +2544 940 0.400000 +2544 1020 0.400000 +2544 1069 0.400000 +2544 1072 0.400000 +2544 1139 0.400000 +2544 1171 0.400000 +2544 1209 0.400000 +2544 1295 0.400000 +2544 1394 0.400000 +2544 1468 0.400000 +2544 1471 0.400000 +2544 1486 0.400000 +2544 1521 0.400000 +2544 1651 0.400000 +2544 1666 0.400000 +2544 1680 0.400000 +2544 1684 0.400000 +2544 1702 0.400000 +2544 1810 0.400000 +2544 1814 0.400000 +2544 1852 0.400000 +2544 1865 0.400000 +2544 1868 0.400000 +2544 1885 0.400000 +2544 1950 0.400000 +2544 1963 0.400000 +2544 2093 0.400000 +2544 2144 0.400000 +2544 2148 0.400000 +2544 2245 0.400000 +2544 2254 0.400000 +2544 2339 0.400000 +2544 2422 0.400000 +2544 2426 0.400000 +2544 2513 0.400000 +2544 2541 0.400000 +2544 2570 0.400000 +2544 2582 0.400000 +2544 2605 0.400000 +2544 2650 0.400000 +2544 2652 0.400000 +2544 2833 0.400000 +2544 2909 0.400000 +2544 2947 0.400000 +2544 2981 0.400000 +2544 3084 0.400000 +2544 3177 0.400000 +2545 74 0.400000 +2545 112 0.400000 +2545 160 0.400000 +2545 229 0.400000 +2545 238 0.400000 +2545 240 0.400000 +2545 250 0.400000 +2545 268 0.400000 +2545 348 0.400000 +2545 353 0.400000 +2545 420 0.400000 +2545 518 0.400000 +2545 575 0.400000 +2545 603 0.400000 +2545 615 0.400000 +2545 634 0.400000 +2545 638 0.400000 +2545 709 0.400000 +2545 725 0.400000 +2545 730 0.400000 +2545 779 0.400000 +2545 816 0.400000 +2545 918 0.400000 +2545 930 0.400000 +2545 1000 0.400000 +2545 1020 0.400000 +2545 1083 0.400000 +2545 1168 0.400000 +2545 1175 0.400000 +2545 1193 0.400000 +2545 1223 0.400000 +2545 1244 0.400000 +2545 1263 0.400000 +2545 1287 0.400000 +2545 1402 0.400000 +2545 1427 0.400000 +2545 1439 0.400000 +2545 1441 0.400000 +2545 1464 0.400000 +2545 1505 0.400000 +2545 1513 0.400000 +2545 1529 0.400000 +2545 1583 0.400000 +2545 1730 0.400000 +2545 1747 0.400000 +2545 1780 0.400000 +2545 1969 0.400000 +2545 1972 0.400000 +2545 2029 0.400000 +2545 2046 0.400000 +2545 2164 0.400000 +2545 2179 0.400000 +2545 2181 0.400000 +2545 2184 0.400000 +2545 2226 0.400000 +2545 2249 0.400000 +2545 2277 0.400000 +2545 2466 0.400000 +2545 2480 0.400000 +2545 2502 0.400000 +2545 2600 0.400000 +2545 2616 0.400000 +2545 2671 0.400000 +2545 2673 0.400000 +2545 2677 0.400000 +2545 2682 0.400000 +2545 2728 0.400000 +2545 2794 0.400000 +2545 2832 0.400000 +2545 2992 0.400000 +2545 3017 0.400000 +2545 3033 0.400000 +2545 3134 0.400000 +2545 3135 0.400000 +2545 3149 0.400000 +2545 3158 0.400000 +2546 294 0.400000 +2546 384 0.400000 +2546 398 0.400000 +2546 505 0.400000 +2546 614 0.400000 +2546 647 0.400000 +2546 649 0.400000 +2546 697 0.400000 +2546 715 0.400000 +2546 752 0.400000 +2546 821 0.400000 +2546 835 0.400000 +2546 875 0.400000 +2546 941 0.400000 +2546 989 0.400000 +2546 1017 0.400000 +2546 1057 0.400000 +2546 1101 0.400000 +2546 1118 0.400000 +2546 1351 0.400000 +2546 1371 0.400000 +2546 1411 0.400000 +2546 1413 0.400000 +2546 1470 0.400000 +2546 1632 0.400000 +2546 1797 0.400000 +2546 1839 0.400000 +2546 1841 0.400000 +2546 1861 0.400000 +2546 1997 0.400000 +2546 2028 0.400000 +2546 2069 0.400000 +2546 2157 0.400000 +2546 2207 0.400000 +2546 2211 0.400000 +2546 2277 0.400000 +2546 2281 0.400000 +2546 2296 0.400000 +2546 2302 0.400000 +2546 2309 0.400000 +2546 2399 0.400000 +2546 2497 0.400000 +2546 2647 0.400000 +2546 2725 0.400000 +2546 2967 0.400000 +2546 3102 0.400000 +2546 3188 0.400000 +2547 20 0.400000 +2547 37 0.400000 +2547 68 0.400000 +2547 73 0.400000 +2547 79 0.400000 +2547 110 0.400000 +2547 111 0.400000 +2547 182 0.400000 +2547 197 0.400000 +2547 209 0.400000 +2547 214 0.400000 +2547 286 0.400000 +2547 517 0.400000 +2547 665 0.400000 +2547 731 0.400000 +2547 735 0.400000 +2547 803 0.400000 +2547 827 0.400000 +2547 833 0.400000 +2547 835 0.400000 +2547 897 0.400000 +2547 908 0.400000 +2547 915 0.400000 +2547 953 0.400000 +2547 964 0.400000 +2547 970 0.400000 +2547 1041 0.400000 +2547 1212 0.400000 +2547 1248 0.400000 +2547 1365 0.400000 +2547 1443 0.400000 +2547 1449 0.400000 +2547 1485 0.400000 +2547 1554 0.400000 +2547 1568 0.400000 +2547 1621 0.400000 +2547 1639 0.400000 +2547 1649 0.400000 +2547 1693 0.400000 +2547 1716 0.400000 +2547 1719 0.400000 +2547 1724 0.400000 +2547 1860 0.400000 +2547 1868 0.400000 +2547 1882 0.400000 +2547 1894 0.400000 +2547 1912 0.400000 +2547 1942 0.400000 +2547 1986 0.400000 +2547 2083 0.400000 +2547 2098 0.400000 +2547 2227 0.400000 +2547 2251 0.400000 +2547 2293 0.400000 +2547 2366 0.400000 +2547 2371 0.400000 +2547 2394 0.400000 +2547 2426 0.400000 +2547 2459 0.400000 +2547 2471 0.400000 +2547 2498 0.400000 +2547 2586 0.400000 +2547 2595 0.400000 +2547 2606 0.400000 +2547 2623 0.400000 +2547 2696 0.400000 +2547 2720 0.400000 +2547 2732 0.400000 +2547 2798 0.400000 +2547 2822 0.400000 +2547 3050 0.400000 +2547 3061 0.400000 +2547 3092 0.400000 +2547 3094 0.400000 +2548 19 0.400000 +2548 167 0.400000 +2548 201 0.400000 +2548 228 0.400000 +2548 232 0.400000 +2548 255 0.400000 +2548 328 0.400000 +2548 416 0.400000 +2548 428 0.400000 +2548 482 0.400000 +2548 494 0.400000 +2548 538 0.400000 +2548 558 0.400000 +2548 750 0.400000 +2548 797 0.400000 +2548 922 0.400000 +2548 927 0.400000 +2548 953 0.400000 +2548 969 0.400000 +2548 976 0.400000 +2548 1013 0.400000 +2548 1031 0.400000 +2548 1055 0.400000 +2548 1130 0.400000 +2548 1138 0.400000 +2548 1175 0.400000 +2548 1222 0.400000 +2548 1227 0.400000 +2548 1263 0.400000 +2548 1292 0.400000 +2548 1373 0.400000 +2548 1452 0.400000 +2548 1509 0.400000 +2548 1647 0.400000 +2548 1667 0.400000 +2548 1803 0.400000 +2548 1846 0.400000 +2548 1854 0.400000 +2548 1879 0.400000 +2548 1890 0.400000 +2548 1963 0.400000 +2548 2026 0.400000 +2548 2179 0.400000 +2548 2270 0.400000 +2548 2319 0.400000 +2548 2457 0.400000 +2548 2461 0.400000 +2548 2465 0.400000 +2548 2524 0.400000 +2548 2525 0.400000 +2548 2534 0.400000 +2548 2722 0.400000 +2548 2805 0.400000 +2548 2835 0.400000 +2548 2892 0.400000 +2548 3011 0.400000 +2548 3067 0.400000 +2548 3072 0.400000 +2548 3107 0.400000 +2548 3129 0.400000 +2548 3142 0.400000 +2548 3147 0.400000 +2548 3178 0.400000 +2549 56 0.400000 +2549 61 0.400000 +2549 157 0.400000 +2549 187 0.400000 +2549 233 0.400000 +2549 238 0.400000 +2549 265 0.400000 +2549 309 0.400000 +2549 342 0.400000 +2549 413 0.400000 +2549 479 0.400000 +2549 575 0.400000 +2549 666 0.400000 +2549 753 0.400000 +2549 850 0.400000 +2549 868 0.400000 +2549 897 0.400000 +2549 902 0.400000 +2549 1011 0.400000 +2549 1031 0.400000 +2549 1055 0.400000 +2549 1132 0.400000 +2549 1133 0.400000 +2549 1190 0.400000 +2549 1197 0.400000 +2549 1250 0.400000 +2549 1284 0.400000 +2549 1341 0.400000 +2549 1364 0.400000 +2549 1401 0.400000 +2549 1458 0.400000 +2549 1483 0.400000 +2549 1549 0.400000 +2549 1566 0.400000 +2549 1637 0.400000 +2549 1736 0.400000 +2549 1760 0.400000 +2549 1779 0.400000 +2549 1785 0.400000 +2549 2002 0.400000 +2549 2073 0.400000 +2549 2075 0.400000 +2549 2130 0.400000 +2549 2133 0.400000 +2549 2302 0.400000 +2549 2338 0.400000 +2549 2547 0.400000 +2549 2603 0.400000 +2549 2670 0.400000 +2549 2769 0.400000 +2549 2798 0.400000 +2549 2831 0.400000 +2549 2877 0.400000 +2549 2912 0.400000 +2549 2958 0.400000 +2549 2968 0.400000 +2549 3053 0.400000 +2550 6 0.400000 +2550 66 0.400000 +2550 171 0.400000 +2550 198 0.400000 +2550 226 0.400000 +2550 230 0.400000 +2550 252 0.400000 +2550 322 0.400000 +2550 358 0.400000 +2550 414 0.400000 +2550 421 0.400000 +2550 509 0.400000 +2550 584 0.400000 +2550 661 0.400000 +2550 735 0.400000 +2550 835 0.400000 +2550 844 0.400000 +2550 883 0.400000 +2550 884 0.400000 +2550 905 0.400000 +2550 947 0.400000 +2550 1042 0.400000 +2550 1080 0.400000 +2550 1298 0.400000 +2550 1352 0.400000 +2550 1431 0.400000 +2550 1463 0.400000 +2550 1534 0.400000 +2550 1570 0.400000 +2550 1617 0.400000 +2550 1656 0.400000 +2550 1726 0.400000 +2550 1731 0.400000 +2550 1967 0.400000 +2550 2005 0.400000 +2550 2036 0.400000 +2550 2119 0.400000 +2550 2153 0.400000 +2550 2161 0.400000 +2550 2264 0.400000 +2550 2265 0.400000 +2550 2323 0.400000 +2550 2379 0.400000 +2550 2449 0.400000 +2550 2505 0.400000 +2550 2539 0.400000 +2550 2601 0.400000 +2550 2606 0.400000 +2550 2644 0.400000 +2550 2689 0.400000 +2550 2755 0.400000 +2550 2808 0.400000 +2550 2823 0.400000 +2550 2872 0.400000 +2550 2883 0.400000 +2550 2924 0.400000 +2550 3006 0.400000 +2550 3047 0.400000 +2550 3061 0.400000 +2550 3072 0.400000 +2550 3088 0.400000 +2550 3200 0.400000 +2551 8 0.400000 +2551 14 0.400000 +2551 128 0.400000 +2551 140 0.400000 +2551 145 0.400000 +2551 162 0.400000 +2551 199 0.400000 +2551 232 0.400000 +2551 281 0.400000 +2551 286 0.400000 +2551 290 0.400000 +2551 313 0.400000 +2551 418 0.400000 +2551 434 0.400000 +2551 489 0.400000 +2551 500 0.400000 +2551 664 0.400000 +2551 671 0.400000 +2551 696 0.400000 +2551 854 0.400000 +2551 888 0.400000 +2551 980 0.400000 +2551 1021 0.400000 +2551 1084 0.400000 +2551 1097 0.400000 +2551 1148 0.400000 +2551 1216 0.400000 +2551 1313 0.400000 +2551 1392 0.400000 +2551 1442 0.400000 +2551 1503 0.400000 +2551 1546 0.400000 +2551 1594 0.400000 +2551 1618 0.400000 +2551 1658 0.400000 +2551 1675 0.400000 +2551 1775 0.400000 +2551 1797 0.400000 +2551 1912 0.400000 +2551 1968 0.400000 +2551 1989 0.400000 +2551 2031 0.400000 +2551 2079 0.400000 +2551 2085 0.400000 +2551 2086 0.400000 +2551 2108 0.400000 +2551 2314 0.400000 +2551 2342 0.400000 +2551 2400 0.400000 +2551 2433 0.400000 +2551 2447 0.400000 +2551 2480 0.400000 +2551 2484 0.400000 +2551 2519 0.400000 +2551 2525 0.400000 +2551 2545 0.400000 +2551 2556 0.400000 +2551 2599 0.400000 +2551 2610 0.400000 +2551 2647 0.400000 +2551 2664 0.400000 +2551 2684 0.400000 +2551 2726 0.400000 +2551 2802 0.400000 +2551 3012 0.400000 +2551 3053 0.400000 +2551 3109 0.400000 +2551 3150 0.400000 +2551 3164 0.400000 +2552 46 0.400000 +2552 53 0.400000 +2552 61 0.400000 +2552 136 0.400000 +2552 139 0.400000 +2552 178 0.400000 +2552 203 0.400000 +2552 301 0.400000 +2552 347 0.400000 +2552 397 0.400000 +2552 444 0.400000 +2552 497 0.400000 +2552 540 0.400000 +2552 572 0.400000 +2552 580 0.400000 +2552 691 0.400000 +2552 741 0.400000 +2552 761 0.400000 +2552 791 0.400000 +2552 808 0.400000 +2552 856 0.400000 +2552 872 0.400000 +2552 979 0.400000 +2552 983 0.400000 +2552 1000 0.400000 +2552 1017 0.400000 +2552 1078 0.400000 +2552 1112 0.400000 +2552 1143 0.400000 +2552 1166 0.400000 +2552 1239 0.400000 +2552 1249 0.400000 +2552 1294 0.400000 +2552 1309 0.400000 +2552 1323 0.400000 +2552 1380 0.400000 +2552 1491 0.400000 +2552 1528 0.400000 +2552 1608 0.400000 +2552 1633 0.400000 +2552 1735 0.400000 +2552 1823 0.400000 +2552 1849 0.400000 +2552 1880 0.400000 +2552 1926 0.400000 +2552 1954 0.400000 +2552 2023 0.400000 +2552 2115 0.400000 +2552 2116 0.400000 +2552 2135 0.400000 +2552 2216 0.400000 +2552 2218 0.400000 +2552 2304 0.400000 +2552 2409 0.400000 +2552 2462 0.400000 +2552 2482 0.400000 +2552 2504 0.400000 +2552 2607 0.400000 +2552 2627 0.400000 +2552 2706 0.400000 +2552 2727 0.400000 +2552 2763 0.400000 +2552 2778 0.400000 +2552 2839 0.400000 +2552 2879 0.400000 +2552 2902 0.400000 +2552 2955 0.400000 +2552 3150 0.400000 +2553 79 0.400000 +2553 113 0.400000 +2553 267 0.400000 +2553 361 0.400000 +2553 384 0.400000 +2553 387 0.400000 +2553 389 0.400000 +2553 472 0.400000 +2553 538 0.400000 +2553 632 0.400000 +2553 741 0.400000 +2553 771 0.400000 +2553 850 0.400000 +2553 859 0.400000 +2553 988 0.400000 +2553 999 0.400000 +2553 1012 0.400000 +2553 1065 0.400000 +2553 1094 0.400000 +2553 1121 0.400000 +2553 1124 0.400000 +2553 1171 0.400000 +2553 1260 0.400000 +2553 1297 0.400000 +2553 1301 0.400000 +2553 1369 0.400000 +2553 1409 0.400000 +2553 1450 0.400000 +2553 1487 0.400000 +2553 1492 0.400000 +2553 1508 0.400000 +2553 1519 0.400000 +2553 1595 0.400000 +2553 1660 0.400000 +2553 1740 0.400000 +2553 1765 0.400000 +2553 1775 0.400000 +2553 1797 0.400000 +2553 1864 0.400000 +2553 1947 0.400000 +2553 1953 0.400000 +2553 2025 0.400000 +2553 2037 0.400000 +2553 2055 0.400000 +2553 2076 0.400000 +2553 2217 0.400000 +2553 2246 0.400000 +2553 2255 0.400000 +2553 2319 0.400000 +2553 2361 0.400000 +2553 2378 0.400000 +2553 2412 0.400000 +2553 2447 0.400000 +2553 2489 0.400000 +2553 2582 0.400000 +2553 2658 0.400000 +2553 2674 0.400000 +2553 2746 0.400000 +2553 2784 0.400000 +2553 2844 0.400000 +2553 2858 0.400000 +2553 2866 0.400000 +2553 2911 0.400000 +2553 2950 0.400000 +2553 2953 0.400000 +2553 2983 0.400000 +2553 3004 0.400000 +2553 3010 0.400000 +2553 3098 0.400000 +2554 18 0.400000 +2554 21 0.400000 +2554 57 0.400000 +2554 78 0.400000 +2554 214 0.400000 +2554 243 0.400000 +2554 270 0.400000 +2554 383 0.400000 +2554 412 0.400000 +2554 439 0.400000 +2554 512 0.400000 +2554 538 0.400000 +2554 572 0.400000 +2554 626 0.400000 +2554 651 0.400000 +2554 744 0.400000 +2554 855 0.400000 +2554 936 0.400000 +2554 962 0.400000 +2554 976 0.400000 +2554 983 0.400000 +2554 992 0.400000 +2554 1110 0.400000 +2554 1139 0.400000 +2554 1203 0.400000 +2554 1339 0.400000 +2554 1578 0.400000 +2554 1589 0.400000 +2554 1686 0.400000 +2554 1710 0.400000 +2554 1715 0.400000 +2554 1803 0.400000 +2554 1808 0.400000 +2554 1817 0.400000 +2554 1841 0.400000 +2554 1845 0.400000 +2554 1851 0.400000 +2554 1877 0.400000 +2554 1941 0.400000 +2554 1992 0.400000 +2554 2009 0.400000 +2554 2033 0.400000 +2554 2090 0.400000 +2554 2122 0.400000 +2554 2151 0.400000 +2554 2165 0.400000 +2554 2207 0.400000 +2554 2263 0.400000 +2554 2360 0.400000 +2554 2404 0.400000 +2554 2409 0.400000 +2554 2413 0.400000 +2554 2429 0.400000 +2554 2445 0.400000 +2554 2591 0.400000 +2554 2615 0.400000 +2554 2635 0.400000 +2554 2645 0.400000 +2554 2833 0.400000 +2554 2882 0.400000 +2554 2912 0.400000 +2554 3011 0.400000 +2554 3032 0.400000 +2554 3117 0.400000 +2555 29 0.400000 +2555 79 0.400000 +2555 100 0.400000 +2555 119 0.400000 +2555 203 0.400000 +2555 225 0.400000 +2555 258 0.400000 +2555 330 0.400000 +2555 347 0.400000 +2555 407 0.400000 +2555 430 0.400000 +2555 546 0.400000 +2555 595 0.400000 +2555 639 0.400000 +2555 695 0.400000 +2555 769 0.400000 +2555 822 0.400000 +2555 851 0.400000 +2555 886 0.400000 +2555 940 0.400000 +2555 1051 0.400000 +2555 1078 0.400000 +2555 1082 0.400000 +2555 1095 0.400000 +2555 1312 0.400000 +2555 1674 0.400000 +2555 1684 0.400000 +2555 1695 0.400000 +2555 1705 0.400000 +2555 1790 0.400000 +2555 1849 0.400000 +2555 1854 0.400000 +2555 1865 0.400000 +2555 1868 0.400000 +2555 1886 0.400000 +2555 1911 0.400000 +2555 1922 0.400000 +2555 1935 0.400000 +2555 1971 0.400000 +2555 1983 0.400000 +2555 1986 0.400000 +2555 2037 0.400000 +2555 2061 0.400000 +2555 2229 0.400000 +2555 2275 0.400000 +2555 2293 0.400000 +2555 2353 0.400000 +2555 2428 0.400000 +2555 2449 0.400000 +2555 2463 0.400000 +2555 2506 0.400000 +2555 2530 0.400000 +2555 2562 0.400000 +2555 2608 0.400000 +2555 2663 0.400000 +2555 2687 0.400000 +2555 2689 0.400000 +2555 2697 0.400000 +2555 2730 0.400000 +2555 2800 0.400000 +2555 2803 0.400000 +2555 2844 0.400000 +2555 2845 0.400000 +2555 2875 0.400000 +2555 2882 0.400000 +2555 2922 0.400000 +2555 2931 0.400000 +2555 2960 0.400000 +2555 2988 0.400000 +2555 3038 0.400000 +2555 3048 0.400000 +2555 3085 0.400000 +2555 3128 0.400000 +2556 98 0.400000 +2556 225 0.400000 +2556 239 0.400000 +2556 309 0.400000 +2556 331 0.400000 +2556 352 0.400000 +2556 428 0.400000 +2556 444 0.400000 +2556 501 0.400000 +2556 526 0.400000 +2556 603 0.400000 +2556 660 0.400000 +2556 679 0.400000 +2556 694 0.400000 +2556 703 0.400000 +2556 728 0.400000 +2556 834 0.400000 +2556 841 0.400000 +2556 909 0.400000 +2556 1027 0.400000 +2556 1054 0.400000 +2556 1066 0.400000 +2556 1073 0.400000 +2556 1107 0.400000 +2556 1167 0.400000 +2556 1367 0.400000 +2556 1391 0.400000 +2556 1419 0.400000 +2556 1544 0.400000 +2556 1582 0.400000 +2556 1762 0.400000 +2556 1788 0.400000 +2556 1806 0.400000 +2556 1911 0.400000 +2556 1927 0.400000 +2556 1959 0.400000 +2556 1984 0.400000 +2556 2023 0.400000 +2556 2095 0.400000 +2556 2152 0.400000 +2556 2221 0.400000 +2556 2255 0.400000 +2556 2272 0.400000 +2556 2326 0.400000 +2556 2345 0.400000 +2556 2512 0.400000 +2556 2714 0.400000 +2556 2748 0.400000 +2556 2771 0.400000 +2556 2779 0.400000 +2556 2781 0.400000 +2556 2813 0.400000 +2556 2904 0.400000 +2556 3058 0.400000 +2556 3122 0.400000 +2556 3131 0.400000 +2556 3179 0.400000 +2556 3194 0.400000 +2557 7 0.400000 +2557 11 0.400000 +2557 54 0.400000 +2557 79 0.400000 +2557 102 0.400000 +2557 150 0.400000 +2557 165 0.400000 +2557 167 0.400000 +2557 195 0.400000 +2557 240 0.400000 +2557 260 0.400000 +2557 349 0.400000 +2557 404 0.400000 +2557 517 0.400000 +2557 582 0.400000 +2557 585 0.400000 +2557 713 0.400000 +2557 725 0.400000 +2557 762 0.400000 +2557 776 0.400000 +2557 783 0.400000 +2557 794 0.400000 +2557 795 0.400000 +2557 826 0.400000 +2557 828 0.400000 +2557 843 0.400000 +2557 850 0.400000 +2557 870 0.400000 +2557 880 0.400000 +2557 882 0.400000 +2557 992 0.400000 +2557 1103 0.400000 +2557 1125 0.400000 +2557 1189 0.400000 +2557 1190 0.400000 +2557 1236 0.400000 +2557 1281 0.400000 +2557 1360 0.400000 +2557 1411 0.400000 +2557 1455 0.400000 +2557 1591 0.400000 +2557 1594 0.400000 +2557 1605 0.400000 +2557 1661 0.400000 +2557 1839 0.400000 +2557 1862 0.400000 +2557 1866 0.400000 +2557 1884 0.400000 +2557 1985 0.400000 +2557 2025 0.400000 +2557 2071 0.400000 +2557 2113 0.400000 +2557 2154 0.400000 +2557 2201 0.400000 +2557 2511 0.400000 +2557 2534 0.400000 +2557 2583 0.400000 +2557 2598 0.400000 +2557 2624 0.400000 +2557 2714 0.400000 +2557 2735 0.400000 +2557 2740 0.400000 +2557 2779 0.400000 +2557 2785 0.400000 +2557 2901 0.400000 +2557 2963 0.400000 +2557 2980 0.400000 +2557 3013 0.400000 +2557 3021 0.400000 +2557 3092 0.400000 +2557 3116 0.400000 +2557 3147 0.400000 +2557 3168 0.400000 +2558 33 0.400000 +2558 190 0.400000 +2558 238 0.400000 +2558 311 0.400000 +2558 375 0.400000 +2558 409 0.400000 +2558 463 0.400000 +2558 589 0.400000 +2558 600 0.400000 +2558 604 0.400000 +2558 605 0.400000 +2558 609 0.400000 +2558 664 0.400000 +2558 673 0.400000 +2558 737 0.400000 +2558 864 0.400000 +2558 901 0.400000 +2558 997 0.400000 +2558 1115 0.400000 +2558 1179 0.400000 +2558 1236 0.400000 +2558 1247 0.400000 +2558 1275 0.400000 +2558 1347 0.400000 +2558 1387 0.400000 +2558 1446 0.400000 +2558 1583 0.400000 +2558 1624 0.400000 +2558 1731 0.400000 +2558 1813 0.400000 +2558 1830 0.400000 +2558 1886 0.400000 +2558 1935 0.400000 +2558 2066 0.400000 +2558 2070 0.400000 +2558 2093 0.400000 +2558 2100 0.400000 +2558 2111 0.400000 +2558 2221 0.400000 +2558 2264 0.400000 +2558 2274 0.400000 +2558 2314 0.400000 +2558 2376 0.400000 +2558 2413 0.400000 +2558 2459 0.400000 +2558 2462 0.400000 +2558 2507 0.400000 +2558 2538 0.400000 +2558 2542 0.400000 +2558 2647 0.400000 +2558 2683 0.400000 +2558 2730 0.400000 +2558 2819 0.400000 +2558 2956 0.400000 +2558 2976 0.400000 +2558 3004 0.400000 +2558 3133 0.400000 +2559 34 0.400000 +2559 118 0.400000 +2559 185 0.400000 +2559 208 0.400000 +2559 219 0.400000 +2559 239 0.400000 +2559 288 0.400000 +2559 389 0.400000 +2559 391 0.400000 +2559 396 0.400000 +2559 422 0.400000 +2559 480 0.400000 +2559 481 0.400000 +2559 496 0.400000 +2559 753 0.400000 +2559 815 0.400000 +2559 853 0.400000 +2559 877 0.400000 +2559 981 0.400000 +2559 1030 0.400000 +2559 1037 0.400000 +2559 1056 0.400000 +2559 1092 0.400000 +2559 1114 0.400000 +2559 1130 0.400000 +2559 1138 0.400000 +2559 1176 0.400000 +2559 1240 0.400000 +2559 1282 0.400000 +2559 1376 0.400000 +2559 1421 0.400000 +2559 1481 0.400000 +2559 1546 0.400000 +2559 1570 0.400000 +2559 1571 0.400000 +2559 1797 0.400000 +2559 1826 0.400000 +2559 1861 0.400000 +2559 1864 0.400000 +2559 1870 0.400000 +2559 1883 0.400000 +2559 1919 0.400000 +2559 2006 0.400000 +2559 2029 0.400000 +2559 2048 0.400000 +2559 2065 0.400000 +2559 2137 0.400000 +2559 2412 0.400000 +2559 2465 0.400000 +2559 2496 0.400000 +2559 2509 0.400000 +2559 2597 0.400000 +2559 2732 0.400000 +2559 2747 0.400000 +2559 2780 0.400000 +2559 2842 0.400000 +2559 2928 0.400000 +2559 2930 0.400000 +2559 2954 0.400000 +2559 3023 0.400000 +2560 9 0.400000 +2560 96 0.400000 +2560 109 0.400000 +2560 218 0.400000 +2560 301 0.400000 +2560 370 0.400000 +2560 400 0.400000 +2560 401 0.400000 +2560 402 0.400000 +2560 451 0.400000 +2560 494 0.400000 +2560 504 0.400000 +2560 679 0.400000 +2560 704 0.400000 +2560 728 0.400000 +2560 743 0.400000 +2560 760 0.400000 +2560 772 0.400000 +2560 814 0.400000 +2560 818 0.400000 +2560 867 0.400000 +2560 952 0.400000 +2560 990 0.400000 +2560 1148 0.400000 +2560 1151 0.400000 +2560 1257 0.400000 +2560 1305 0.400000 +2560 1308 0.400000 +2560 1349 0.400000 +2560 1385 0.400000 +2560 1436 0.400000 +2560 1534 0.400000 +2560 1541 0.400000 +2560 1662 0.400000 +2560 1664 0.400000 +2560 1803 0.400000 +2560 1871 0.400000 +2560 2024 0.400000 +2560 2028 0.400000 +2560 2048 0.400000 +2560 2072 0.400000 +2560 2082 0.400000 +2560 2100 0.400000 +2560 2245 0.400000 +2560 2437 0.400000 +2560 2541 0.400000 +2560 2562 0.400000 +2560 2601 0.400000 +2560 2704 0.400000 +2560 2705 0.400000 +2560 2797 0.400000 +2560 2801 0.400000 +2560 2826 0.400000 +2560 2926 0.400000 +2560 2932 0.400000 +2560 2956 0.400000 +2560 2957 0.400000 +2560 2993 0.400000 +2560 3006 0.400000 +2560 3014 0.400000 +2560 3021 0.400000 +2561 158 0.400000 +2561 159 0.400000 +2561 181 0.400000 +2561 243 0.400000 +2561 369 0.400000 +2561 508 0.400000 +2561 534 0.400000 +2561 601 0.400000 +2561 879 0.400000 +2561 927 0.400000 +2561 950 0.400000 +2561 969 0.400000 +2561 977 0.400000 +2561 998 0.400000 +2561 1006 0.400000 +2561 1019 0.400000 +2561 1024 0.400000 +2561 1129 0.400000 +2561 1210 0.400000 +2561 1224 0.400000 +2561 1238 0.400000 +2561 1241 0.400000 +2561 1527 0.400000 +2561 1637 0.400000 +2561 1663 0.400000 +2561 1717 0.400000 +2561 1740 0.400000 +2561 1785 0.400000 +2561 1791 0.400000 +2561 1802 0.400000 +2561 1820 0.400000 +2561 1828 0.400000 +2561 1893 0.400000 +2561 2157 0.400000 +2561 2208 0.400000 +2561 2218 0.400000 +2561 2242 0.400000 +2561 2248 0.400000 +2561 2256 0.400000 +2561 2265 0.400000 +2561 2286 0.400000 +2561 2354 0.400000 +2561 2369 0.400000 +2561 2378 0.400000 +2561 2398 0.400000 +2561 2419 0.400000 +2561 2439 0.400000 +2561 2444 0.400000 +2561 2487 0.400000 +2561 2493 0.400000 +2561 2596 0.400000 +2561 2601 0.400000 +2561 2604 0.400000 +2561 2724 0.400000 +2561 2730 0.400000 +2561 2840 0.400000 +2561 2863 0.400000 +2561 2926 0.400000 +2561 2927 0.400000 +2561 2931 0.400000 +2561 2954 0.400000 +2561 3151 0.400000 +2562 21 0.400000 +2562 84 0.400000 +2562 143 0.400000 +2562 188 0.400000 +2562 199 0.400000 +2562 276 0.400000 +2562 316 0.400000 +2562 337 0.400000 +2562 523 0.400000 +2562 557 0.400000 +2562 572 0.400000 +2562 593 0.400000 +2562 620 0.400000 +2562 689 0.400000 +2562 710 0.400000 +2562 848 0.400000 +2562 1068 0.400000 +2562 1187 0.400000 +2562 1209 0.400000 +2562 1219 0.400000 +2562 1258 0.400000 +2562 1260 0.400000 +2562 1355 0.400000 +2562 1388 0.400000 +2562 1389 0.400000 +2562 1453 0.400000 +2562 1460 0.400000 +2562 1475 0.400000 +2562 1480 0.400000 +2562 1521 0.400000 +2562 1532 0.400000 +2562 1546 0.400000 +2562 1568 0.400000 +2562 1580 0.400000 +2562 1590 0.400000 +2562 1594 0.400000 +2562 1667 0.400000 +2562 1705 0.400000 +2562 1753 0.400000 +2562 1826 0.400000 +2562 1861 0.400000 +2562 1902 0.400000 +2562 1903 0.400000 +2562 1906 0.400000 +2562 1954 0.400000 +2562 2113 0.400000 +2562 2141 0.400000 +2562 2302 0.400000 +2562 2322 0.400000 +2562 2372 0.400000 +2562 2374 0.400000 +2562 2407 0.400000 +2562 2467 0.400000 +2562 2568 0.400000 +2562 2573 0.400000 +2562 2614 0.400000 +2562 2633 0.400000 +2562 2695 0.400000 +2562 2707 0.400000 +2562 2712 0.400000 +2562 2817 0.400000 +2562 3107 0.400000 +2562 3122 0.400000 +2562 3190 0.400000 +2563 38 0.400000 +2563 50 0.400000 +2563 62 0.400000 +2563 120 0.400000 +2563 150 0.400000 +2563 269 0.400000 +2563 415 0.400000 +2563 470 0.400000 +2563 553 0.400000 +2563 577 0.400000 +2563 626 0.400000 +2563 649 0.400000 +2563 685 0.400000 +2563 714 0.400000 +2563 749 0.400000 +2563 760 0.400000 +2563 829 0.400000 +2563 904 0.400000 +2563 1062 0.400000 +2563 1084 0.400000 +2563 1159 0.400000 +2563 1160 0.400000 +2563 1211 0.400000 +2563 1273 0.400000 +2563 1295 0.400000 +2563 1355 0.400000 +2563 1416 0.400000 +2563 1433 0.400000 +2563 1457 0.400000 +2563 1508 0.400000 +2563 1555 0.400000 +2563 1621 0.400000 +2563 1639 0.400000 +2563 1662 0.400000 +2563 1722 0.400000 +2563 1808 0.400000 +2563 1833 0.400000 +2563 1935 0.400000 +2563 1945 0.400000 +2563 1981 0.400000 +2563 2056 0.400000 +2563 2158 0.400000 +2563 2334 0.400000 +2563 2366 0.400000 +2563 2447 0.400000 +2563 2462 0.400000 +2563 2525 0.400000 +2563 2566 0.400000 +2563 2633 0.400000 +2563 2656 0.400000 +2563 2900 0.400000 +2563 2901 0.400000 +2563 2977 0.400000 +2563 3037 0.400000 +2563 3133 0.400000 +2563 3189 0.400000 +2564 14 0.400000 +2564 103 0.400000 +2564 105 0.400000 +2564 107 0.400000 +2564 127 0.400000 +2564 264 0.400000 +2564 322 0.400000 +2564 371 0.400000 +2564 402 0.400000 +2564 527 0.400000 +2564 624 0.400000 +2564 634 0.400000 +2564 655 0.400000 +2564 664 0.400000 +2564 815 0.400000 +2564 965 0.400000 +2564 994 0.400000 +2564 1102 0.400000 +2564 1150 0.400000 +2564 1154 0.400000 +2564 1239 0.400000 +2564 1243 0.400000 +2564 1289 0.400000 +2564 1295 0.400000 +2564 1297 0.400000 +2564 1380 0.400000 +2564 1435 0.400000 +2564 1470 0.400000 +2564 1528 0.400000 +2564 1539 0.400000 +2564 1552 0.400000 +2564 1682 0.400000 +2564 1685 0.400000 +2564 1734 0.400000 +2564 1751 0.400000 +2564 1806 0.400000 +2564 1862 0.400000 +2564 1882 0.400000 +2564 1926 0.400000 +2564 1938 0.400000 +2564 1971 0.400000 +2564 1997 0.400000 +2564 2008 0.400000 +2564 2025 0.400000 +2564 2042 0.400000 +2564 2046 0.400000 +2564 2177 0.400000 +2564 2203 0.400000 +2564 2273 0.400000 +2564 2283 0.400000 +2564 2308 0.400000 +2564 2393 0.400000 +2564 2425 0.400000 +2564 2437 0.400000 +2564 2457 0.400000 +2564 2551 0.400000 +2564 2556 0.400000 +2564 2592 0.400000 +2564 2615 0.400000 +2564 2655 0.400000 +2564 2665 0.400000 +2564 2706 0.400000 +2564 2716 0.400000 +2564 2776 0.400000 +2564 2792 0.400000 +2564 2834 0.400000 +2564 3005 0.400000 +2564 3054 0.400000 +2564 3175 0.400000 +2564 3178 0.400000 +2565 40 0.400000 +2565 41 0.400000 +2565 45 0.400000 +2565 47 0.400000 +2565 105 0.400000 +2565 171 0.400000 +2565 209 0.400000 +2565 261 0.400000 +2565 325 0.400000 +2565 405 0.400000 +2565 527 0.400000 +2565 618 0.400000 +2565 636 0.400000 +2565 673 0.400000 +2565 692 0.400000 +2565 729 0.400000 +2565 768 0.400000 +2565 867 0.400000 +2565 884 0.400000 +2565 889 0.400000 +2565 930 0.400000 +2565 966 0.400000 +2565 1063 0.400000 +2565 1112 0.400000 +2565 1195 0.400000 +2565 1232 0.400000 +2565 1397 0.400000 +2565 1438 0.400000 +2565 1441 0.400000 +2565 1474 0.400000 +2565 1506 0.400000 +2565 1521 0.400000 +2565 1552 0.400000 +2565 1718 0.400000 +2565 1737 0.400000 +2565 1778 0.400000 +2565 1793 0.400000 +2565 1874 0.400000 +2565 1884 0.400000 +2565 1885 0.400000 +2565 1920 0.400000 +2565 1953 0.400000 +2565 1973 0.400000 +2565 1997 0.400000 +2565 1998 0.400000 +2565 2030 0.400000 +2565 2036 0.400000 +2565 2099 0.400000 +2565 2111 0.400000 +2565 2142 0.400000 +2565 2155 0.400000 +2565 2157 0.400000 +2565 2194 0.400000 +2565 2226 0.400000 +2565 2228 0.400000 +2565 2288 0.400000 +2565 2296 0.400000 +2565 2419 0.400000 +2565 2451 0.400000 +2565 2456 0.400000 +2565 2459 0.400000 +2565 2587 0.400000 +2565 2715 0.400000 +2565 2762 0.400000 +2565 2805 0.400000 +2565 2822 0.400000 +2565 3052 0.400000 +2565 3100 0.400000 +2565 3198 0.400000 +2566 15 0.400000 +2566 77 0.400000 +2566 128 0.400000 +2566 131 0.400000 +2566 164 0.400000 +2566 342 0.400000 +2566 422 0.400000 +2566 436 0.400000 +2566 451 0.400000 +2566 463 0.400000 +2566 651 0.400000 +2566 660 0.400000 +2566 665 0.400000 +2566 717 0.400000 +2566 903 0.400000 +2566 911 0.400000 +2566 913 0.400000 +2566 917 0.400000 +2566 950 0.400000 +2566 999 0.400000 +2566 1034 0.400000 +2566 1097 0.400000 +2566 1153 0.400000 +2566 1260 0.400000 +2566 1262 0.400000 +2566 1304 0.400000 +2566 1324 0.400000 +2566 1389 0.400000 +2566 1538 0.400000 +2566 1550 0.400000 +2566 1598 0.400000 +2566 1678 0.400000 +2566 1698 0.400000 +2566 1715 0.400000 +2566 1799 0.400000 +2566 1910 0.400000 +2566 1961 0.400000 +2566 1995 0.400000 +2566 2128 0.400000 +2566 2189 0.400000 +2566 2232 0.400000 +2566 2249 0.400000 +2566 2283 0.400000 +2566 2306 0.400000 +2566 2379 0.400000 +2566 2432 0.400000 +2566 2433 0.400000 +2566 2486 0.400000 +2566 2526 0.400000 +2566 2537 0.400000 +2566 2599 0.400000 +2566 2603 0.400000 +2566 2613 0.400000 +2566 2675 0.400000 +2566 2681 0.400000 +2566 2702 0.400000 +2566 2726 0.400000 +2566 2788 0.400000 +2566 2849 0.400000 +2566 2893 0.400000 +2566 2902 0.400000 +2566 2906 0.400000 +2566 2924 0.400000 +2566 2947 0.400000 +2566 2955 0.400000 +2566 2975 0.400000 +2566 3045 0.400000 +2566 3104 0.400000 +2566 3114 0.400000 +2566 3128 0.400000 +2566 3134 0.400000 +2567 14 0.400000 +2567 97 0.400000 +2567 152 0.400000 +2567 350 0.400000 +2567 352 0.400000 +2567 377 0.400000 +2567 416 0.400000 +2567 425 0.400000 +2567 469 0.400000 +2567 512 0.400000 +2567 576 0.400000 +2567 611 0.400000 +2567 641 0.400000 +2567 643 0.400000 +2567 681 0.400000 +2567 711 0.400000 +2567 732 0.400000 +2567 734 0.400000 +2567 827 0.400000 +2567 843 0.400000 +2567 900 0.400000 +2567 930 0.400000 +2567 948 0.400000 +2567 953 0.400000 +2567 984 0.400000 +2567 1050 0.400000 +2567 1074 0.400000 +2567 1116 0.400000 +2567 1160 0.400000 +2567 1216 0.400000 +2567 1355 0.400000 +2567 1382 0.400000 +2567 1415 0.400000 +2567 1464 0.400000 +2567 1471 0.400000 +2567 1497 0.400000 +2567 1522 0.400000 +2567 1599 0.400000 +2567 1624 0.400000 +2567 1657 0.400000 +2567 1687 0.400000 +2567 1718 0.400000 +2567 1768 0.400000 +2567 1784 0.400000 +2567 1951 0.400000 +2567 2014 0.400000 +2567 2028 0.400000 +2567 2050 0.400000 +2567 2077 0.400000 +2567 2152 0.400000 +2567 2174 0.400000 +2567 2189 0.400000 +2567 2261 0.400000 +2567 2311 0.400000 +2567 2332 0.400000 +2567 2346 0.400000 +2567 2352 0.400000 +2567 2420 0.400000 +2567 2462 0.400000 +2567 2501 0.400000 +2567 2536 0.400000 +2567 2567 0.400000 +2567 2660 0.400000 +2567 2680 0.400000 +2567 2694 0.400000 +2567 2763 0.400000 +2567 2772 0.400000 +2567 2848 0.400000 +2567 2908 0.400000 +2567 2913 0.400000 +2567 2953 0.400000 +2567 3028 0.400000 +2567 3055 0.400000 +2567 3096 0.400000 +2567 3113 0.400000 +2568 9 0.400000 +2568 143 0.400000 +2568 185 0.400000 +2568 252 0.400000 +2568 259 0.400000 +2568 275 0.400000 +2568 279 0.400000 +2568 289 0.400000 +2568 293 0.400000 +2568 303 0.400000 +2568 400 0.400000 +2568 463 0.400000 +2568 593 0.400000 +2568 641 0.400000 +2568 750 0.400000 +2568 758 0.400000 +2568 803 0.400000 +2568 813 0.400000 +2568 818 0.400000 +2568 955 0.400000 +2568 1096 0.400000 +2568 1136 0.400000 +2568 1164 0.400000 +2568 1229 0.400000 +2568 1232 0.400000 +2568 1236 0.400000 +2568 1258 0.400000 +2568 1337 0.400000 +2568 1410 0.400000 +2568 1435 0.400000 +2568 1468 0.400000 +2568 1478 0.400000 +2568 1526 0.400000 +2568 1539 0.400000 +2568 1650 0.400000 +2568 1665 0.400000 +2568 1671 0.400000 +2568 1740 0.400000 +2568 1810 0.400000 +2568 1825 0.400000 +2568 1840 0.400000 +2568 1860 0.400000 +2568 1869 0.400000 +2568 1911 0.400000 +2568 1914 0.400000 +2568 1923 0.400000 +2568 1930 0.400000 +2568 2017 0.400000 +2568 2134 0.400000 +2568 2141 0.400000 +2568 2313 0.400000 +2568 2365 0.400000 +2568 2401 0.400000 +2568 2427 0.400000 +2568 2529 0.400000 +2568 2606 0.400000 +2568 2635 0.400000 +2568 2810 0.400000 +2568 2879 0.400000 +2568 2921 0.400000 +2568 2999 0.400000 +2568 3062 0.400000 +2569 20 0.400000 +2569 157 0.400000 +2569 188 0.400000 +2569 210 0.400000 +2569 239 0.400000 +2569 311 0.400000 +2569 422 0.400000 +2569 532 0.400000 +2569 586 0.400000 +2569 610 0.400000 +2569 624 0.400000 +2569 723 0.400000 +2569 762 0.400000 +2569 796 0.400000 +2569 824 0.400000 +2569 852 0.400000 +2569 967 0.400000 +2569 972 0.400000 +2569 1043 0.400000 +2569 1053 0.400000 +2569 1108 0.400000 +2569 1120 0.400000 +2569 1147 0.400000 +2569 1165 0.400000 +2569 1182 0.400000 +2569 1194 0.400000 +2569 1261 0.400000 +2569 1344 0.400000 +2569 1383 0.400000 +2569 1451 0.400000 +2569 1497 0.400000 +2569 1758 0.400000 +2569 1931 0.400000 +2569 2013 0.400000 +2569 2032 0.400000 +2569 2124 0.400000 +2569 2150 0.400000 +2569 2167 0.400000 +2569 2182 0.400000 +2569 2191 0.400000 +2569 2228 0.400000 +2569 2243 0.400000 +2569 2294 0.400000 +2569 2308 0.400000 +2569 2354 0.400000 +2569 2461 0.400000 +2569 2534 0.400000 +2569 2567 0.400000 +2569 2578 0.400000 +2569 2643 0.400000 +2569 2693 0.400000 +2569 2816 0.400000 +2569 2826 0.400000 +2569 2858 0.400000 +2569 2895 0.400000 +2569 2927 0.400000 +2569 3063 0.400000 +2569 3065 0.400000 +2570 66 0.400000 +2570 91 0.400000 +2570 93 0.400000 +2570 195 0.400000 +2570 204 0.400000 +2570 292 0.400000 +2570 338 0.400000 +2570 391 0.400000 +2570 472 0.400000 +2570 514 0.400000 +2570 532 0.400000 +2570 571 0.400000 +2570 731 0.400000 +2570 819 0.400000 +2570 907 0.400000 +2570 1040 0.400000 +2570 1111 0.400000 +2570 1124 0.400000 +2570 1156 0.400000 +2570 1189 0.400000 +2570 1214 0.400000 +2570 1216 0.400000 +2570 1221 0.400000 +2570 1276 0.400000 +2570 1467 0.400000 +2570 1543 0.400000 +2570 1585 0.400000 +2570 1684 0.400000 +2570 1687 0.400000 +2570 1753 0.400000 +2570 1838 0.400000 +2570 2063 0.400000 +2570 2091 0.400000 +2570 2115 0.400000 +2570 2187 0.400000 +2570 2319 0.400000 +2570 2346 0.400000 +2570 2371 0.400000 +2570 2405 0.400000 +2570 2468 0.400000 +2570 2514 0.400000 +2570 2579 0.400000 +2570 2613 0.400000 +2570 2648 0.400000 +2570 2656 0.400000 +2570 2661 0.400000 +2570 2666 0.400000 +2570 2667 0.400000 +2570 2694 0.400000 +2570 2769 0.400000 +2570 2823 0.400000 +2570 2837 0.400000 +2570 2928 0.400000 +2570 2962 0.400000 +2570 3073 0.400000 +2570 3087 0.400000 +2570 3193 0.400000 +2571 40 0.400000 +2571 47 0.400000 +2571 64 0.400000 +2571 90 0.400000 +2571 96 0.400000 +2571 119 0.400000 +2571 134 0.400000 +2571 150 0.400000 +2571 264 0.400000 +2571 302 0.400000 +2571 353 0.400000 +2571 361 0.400000 +2571 551 0.400000 +2571 557 0.400000 +2571 656 0.400000 +2571 716 0.400000 +2571 733 0.400000 +2571 760 0.400000 +2571 790 0.400000 +2571 811 0.400000 +2571 815 0.400000 +2571 849 0.400000 +2571 942 0.400000 +2571 958 0.400000 +2571 983 0.400000 +2571 1029 0.400000 +2571 1031 0.400000 +2571 1111 0.400000 +2571 1125 0.400000 +2571 1132 0.400000 +2571 1242 0.400000 +2571 1266 0.400000 +2571 1276 0.400000 +2571 1347 0.400000 +2571 1375 0.400000 +2571 1377 0.400000 +2571 1378 0.400000 +2571 1569 0.400000 +2571 1657 0.400000 +2571 1772 0.400000 +2571 1794 0.400000 +2571 1948 0.400000 +2571 1983 0.400000 +2571 1992 0.400000 +2571 2050 0.400000 +2571 2059 0.400000 +2571 2126 0.400000 +2571 2183 0.400000 +2571 2187 0.400000 +2571 2290 0.400000 +2571 2317 0.400000 +2571 2318 0.400000 +2571 2350 0.400000 +2571 2403 0.400000 +2571 2456 0.400000 +2571 2466 0.400000 +2571 2491 0.400000 +2571 2523 0.400000 +2571 2528 0.400000 +2571 2545 0.400000 +2571 2596 0.400000 +2571 2626 0.400000 +2571 2665 0.400000 +2571 2708 0.400000 +2571 2923 0.400000 +2571 2961 0.400000 +2571 2977 0.400000 +2571 3094 0.400000 +2571 3137 0.400000 +2571 3138 0.400000 +2571 3168 0.400000 +2572 3 0.400000 +2572 44 0.400000 +2572 87 0.400000 +2572 98 0.400000 +2572 186 0.400000 +2572 291 0.400000 +2572 305 0.400000 +2572 483 0.400000 +2572 546 0.400000 +2572 579 0.400000 +2572 641 0.400000 +2572 643 0.400000 +2572 648 0.400000 +2572 695 0.400000 +2572 799 0.400000 +2572 800 0.400000 +2572 919 0.400000 +2572 1159 0.400000 +2572 1165 0.400000 +2572 1218 0.400000 +2572 1266 0.400000 +2572 1318 0.400000 +2572 1349 0.400000 +2572 1390 0.400000 +2572 1393 0.400000 +2572 1418 0.400000 +2572 1601 0.400000 +2572 1666 0.400000 +2572 1670 0.400000 +2572 1698 0.400000 +2572 1767 0.400000 +2572 1894 0.400000 +2572 1926 0.400000 +2572 2018 0.400000 +2572 2095 0.400000 +2572 2237 0.400000 +2572 2256 0.400000 +2572 2300 0.400000 +2572 2366 0.400000 +2572 2371 0.400000 +2572 2376 0.400000 +2572 2381 0.400000 +2572 2403 0.400000 +2572 2499 0.400000 +2572 2557 0.400000 +2572 2572 0.400000 +2572 2603 0.400000 +2572 2677 0.400000 +2572 2698 0.400000 +2572 2719 0.400000 +2572 2725 0.400000 +2572 2749 0.400000 +2572 2817 0.400000 +2572 2966 0.400000 +2572 2968 0.400000 +2572 2986 0.400000 +2572 3023 0.400000 +2572 3083 0.400000 +2572 3179 0.400000 +2572 3185 0.400000 +2572 3189 0.400000 +2573 9 0.400000 +2573 202 0.400000 +2573 210 0.400000 +2573 288 0.400000 +2573 341 0.400000 +2573 350 0.400000 +2573 365 0.400000 +2573 368 0.400000 +2573 404 0.400000 +2573 426 0.400000 +2573 431 0.400000 +2573 466 0.400000 +2573 470 0.400000 +2573 480 0.400000 +2573 499 0.400000 +2573 545 0.400000 +2573 601 0.400000 +2573 644 0.400000 +2573 814 0.400000 +2573 836 0.400000 +2573 841 0.400000 +2573 880 0.400000 +2573 919 0.400000 +2573 920 0.400000 +2573 945 0.400000 +2573 1029 0.400000 +2573 1032 0.400000 +2573 1044 0.400000 +2573 1093 0.400000 +2573 1121 0.400000 +2573 1394 0.400000 +2573 1472 0.400000 +2573 1561 0.400000 +2573 1592 0.400000 +2573 1635 0.400000 +2573 1639 0.400000 +2573 1695 0.400000 +2573 1816 0.400000 +2573 1882 0.400000 +2573 1990 0.400000 +2573 2032 0.400000 +2573 2049 0.400000 +2573 2074 0.400000 +2573 2132 0.400000 +2573 2165 0.400000 +2573 2182 0.400000 +2573 2238 0.400000 +2573 2290 0.400000 +2573 2310 0.400000 +2573 2379 0.400000 +2573 2466 0.400000 +2573 2475 0.400000 +2573 2519 0.400000 +2573 2536 0.400000 +2573 2572 0.400000 +2573 2607 0.400000 +2573 2608 0.400000 +2573 2618 0.400000 +2573 2648 0.400000 +2573 2700 0.400000 +2573 2748 0.400000 +2573 2755 0.400000 +2573 2829 0.400000 +2573 2855 0.400000 +2573 2894 0.400000 +2573 2902 0.400000 +2573 2963 0.400000 +2573 3180 0.400000 +2573 3188 0.400000 +2574 13 0.400000 +2574 30 0.400000 +2574 149 0.400000 +2574 238 0.400000 +2574 253 0.400000 +2574 276 0.400000 +2574 387 0.400000 +2574 509 0.400000 +2574 523 0.400000 +2574 552 0.400000 +2574 917 0.400000 +2574 948 0.400000 +2574 967 0.400000 +2574 975 0.400000 +2574 1055 0.400000 +2574 1151 0.400000 +2574 1171 0.400000 +2574 1247 0.400000 +2574 1264 0.400000 +2574 1292 0.400000 +2574 1456 0.400000 +2574 1460 0.400000 +2574 1619 0.400000 +2574 1625 0.400000 +2574 1714 0.400000 +2574 1724 0.400000 +2574 1728 0.400000 +2574 1757 0.400000 +2574 1864 0.400000 +2574 1922 0.400000 +2574 1936 0.400000 +2574 1937 0.400000 +2574 2189 0.400000 +2574 2223 0.400000 +2574 2229 0.400000 +2574 2395 0.400000 +2574 2502 0.400000 +2574 2597 0.400000 +2574 2616 0.400000 +2574 2698 0.400000 +2574 2802 0.400000 +2574 2820 0.400000 +2574 2889 0.400000 +2574 2891 0.400000 +2574 2965 0.400000 +2574 2999 0.400000 +2574 3029 0.400000 +2574 3077 0.400000 +2574 3109 0.400000 +2574 3196 0.400000 +2575 77 0.400000 +2575 106 0.400000 +2575 229 0.400000 +2575 257 0.400000 +2575 273 0.400000 +2575 316 0.400000 +2575 350 0.400000 +2575 388 0.400000 +2575 395 0.400000 +2575 400 0.400000 +2575 441 0.400000 +2575 447 0.400000 +2575 505 0.400000 +2575 596 0.400000 +2575 782 0.400000 +2575 813 0.400000 +2575 877 0.400000 +2575 925 0.400000 +2575 1097 0.400000 +2575 1153 0.400000 +2575 1175 0.400000 +2575 1183 0.400000 +2575 1202 0.400000 +2575 1388 0.400000 +2575 1490 0.400000 +2575 1572 0.400000 +2575 1617 0.400000 +2575 1660 0.400000 +2575 1706 0.400000 +2575 1717 0.400000 +2575 1841 0.400000 +2575 1849 0.400000 +2575 1910 0.400000 +2575 1928 0.400000 +2575 1934 0.400000 +2575 2034 0.400000 +2575 2066 0.400000 +2575 2129 0.400000 +2575 2130 0.400000 +2575 2225 0.400000 +2575 2260 0.400000 +2575 2316 0.400000 +2575 2372 0.400000 +2575 2397 0.400000 +2575 2471 0.400000 +2575 2505 0.400000 +2575 2527 0.400000 +2575 2655 0.400000 +2575 2657 0.400000 +2575 2677 0.400000 +2575 2760 0.400000 +2575 2838 0.400000 +2575 2859 0.400000 +2575 2880 0.400000 +2575 2924 0.400000 +2575 2931 0.400000 +2575 2965 0.400000 +2575 3060 0.400000 +2576 4 0.400000 +2576 110 0.400000 +2576 236 0.400000 +2576 245 0.400000 +2576 374 0.400000 +2576 400 0.400000 +2576 458 0.400000 +2576 477 0.400000 +2576 481 0.400000 +2576 511 0.400000 +2576 623 0.400000 +2576 640 0.400000 +2576 733 0.400000 +2576 928 0.400000 +2576 943 0.400000 +2576 967 0.400000 +2576 1037 0.400000 +2576 1057 0.400000 +2576 1071 0.400000 +2576 1119 0.400000 +2576 1133 0.400000 +2576 1240 0.400000 +2576 1255 0.400000 +2576 1265 0.400000 +2576 1282 0.400000 +2576 1328 0.400000 +2576 1389 0.400000 +2576 1555 0.400000 +2576 1600 0.400000 +2576 1615 0.400000 +2576 1623 0.400000 +2576 1631 0.400000 +2576 1644 0.400000 +2576 1731 0.400000 +2576 1777 0.400000 +2576 1792 0.400000 +2576 1839 0.400000 +2576 1845 0.400000 +2576 1893 0.400000 +2576 2014 0.400000 +2576 2114 0.400000 +2576 2196 0.400000 +2576 2221 0.400000 +2576 2305 0.400000 +2576 2354 0.400000 +2576 2481 0.400000 +2576 2486 0.400000 +2576 2492 0.400000 +2576 2500 0.400000 +2576 2522 0.400000 +2576 2528 0.400000 +2576 2536 0.400000 +2576 2621 0.400000 +2576 2650 0.400000 +2576 2668 0.400000 +2576 2719 0.400000 +2576 2792 0.400000 +2576 2908 0.400000 +2576 2946 0.400000 +2576 3008 0.400000 +2576 3032 0.400000 +2576 3121 0.400000 +2577 109 0.400000 +2577 117 0.400000 +2577 127 0.400000 +2577 204 0.400000 +2577 280 0.400000 +2577 303 0.400000 +2577 337 0.400000 +2577 344 0.400000 +2577 348 0.400000 +2577 359 0.400000 +2577 423 0.400000 +2577 427 0.400000 +2577 434 0.400000 +2577 502 0.400000 +2577 599 0.400000 +2577 689 0.400000 +2577 740 0.400000 +2577 781 0.400000 +2577 826 0.400000 +2577 833 0.400000 +2577 834 0.400000 +2577 1178 0.400000 +2577 1190 0.400000 +2577 1201 0.400000 +2577 1211 0.400000 +2577 1312 0.400000 +2577 1356 0.400000 +2577 1384 0.400000 +2577 1440 0.400000 +2577 1477 0.400000 +2577 1479 0.400000 +2577 1544 0.400000 +2577 1583 0.400000 +2577 1703 0.400000 +2577 1735 0.400000 +2577 1762 0.400000 +2577 1780 0.400000 +2577 1804 0.400000 +2577 1826 0.400000 +2577 1897 0.400000 +2577 1988 0.400000 +2577 2080 0.400000 +2577 2165 0.400000 +2577 2198 0.400000 +2577 2204 0.400000 +2577 2328 0.400000 +2577 2388 0.400000 +2577 2400 0.400000 +2577 2496 0.400000 +2577 2514 0.400000 +2577 2585 0.400000 +2577 2620 0.400000 +2577 2651 0.400000 +2577 2673 0.400000 +2577 2761 0.400000 +2577 2785 0.400000 +2577 2800 0.400000 +2577 2814 0.400000 +2577 2831 0.400000 +2577 2853 0.400000 +2577 2969 0.400000 +2577 2988 0.400000 +2577 3014 0.400000 +2577 3044 0.400000 +2577 3050 0.400000 +2577 3097 0.400000 +2577 3107 0.400000 +2578 3 0.400000 +2578 73 0.400000 +2578 77 0.400000 +2578 121 0.400000 +2578 165 0.400000 +2578 250 0.400000 +2578 256 0.400000 +2578 257 0.400000 +2578 260 0.400000 +2578 357 0.400000 +2578 371 0.400000 +2578 441 0.400000 +2578 446 0.400000 +2578 495 0.400000 +2578 578 0.400000 +2578 626 0.400000 +2578 643 0.400000 +2578 652 0.400000 +2578 696 0.400000 +2578 764 0.400000 +2578 785 0.400000 +2578 830 0.400000 +2578 866 0.400000 +2578 877 0.400000 +2578 884 0.400000 +2578 1035 0.400000 +2578 1065 0.400000 +2578 1085 0.400000 +2578 1130 0.400000 +2578 1150 0.400000 +2578 1164 0.400000 +2578 1341 0.400000 +2578 1438 0.400000 +2578 1448 0.400000 +2578 1452 0.400000 +2578 1498 0.400000 +2578 1503 0.400000 +2578 1506 0.400000 +2578 1550 0.400000 +2578 1561 0.400000 +2578 1692 0.400000 +2578 1697 0.400000 +2578 1744 0.400000 +2578 1777 0.400000 +2578 1792 0.400000 +2578 1802 0.400000 +2578 1883 0.400000 +2578 1889 0.400000 +2578 1929 0.400000 +2578 1952 0.400000 +2578 2054 0.400000 +2578 2099 0.400000 +2578 2102 0.400000 +2578 2145 0.400000 +2578 2163 0.400000 +2578 2189 0.400000 +2578 2206 0.400000 +2578 2310 0.400000 +2578 2315 0.400000 +2578 2321 0.400000 +2578 2333 0.400000 +2578 2358 0.400000 +2578 2436 0.400000 +2578 2518 0.400000 +2578 2528 0.400000 +2578 2640 0.400000 +2578 2691 0.400000 +2578 2723 0.400000 +2578 2727 0.400000 +2578 2814 0.400000 +2578 2956 0.400000 +2578 2961 0.400000 +2578 3065 0.400000 +2578 3162 0.400000 +2579 5 0.400000 +2579 14 0.400000 +2579 98 0.400000 +2579 143 0.400000 +2579 188 0.400000 +2579 283 0.400000 +2579 367 0.400000 +2579 493 0.400000 +2579 508 0.400000 +2579 578 0.400000 +2579 769 0.400000 +2579 792 0.400000 +2579 794 0.400000 +2579 842 0.400000 +2579 891 0.400000 +2579 926 0.400000 +2579 946 0.400000 +2579 1052 0.400000 +2579 1064 0.400000 +2579 1075 0.400000 +2579 1366 0.400000 +2579 1407 0.400000 +2579 1446 0.400000 +2579 1520 0.400000 +2579 1581 0.400000 +2579 1587 0.400000 +2579 1621 0.400000 +2579 1784 0.400000 +2579 1788 0.400000 +2579 1803 0.400000 +2579 1806 0.400000 +2579 1850 0.400000 +2579 1862 0.400000 +2579 1888 0.400000 +2579 1890 0.400000 +2579 1943 0.400000 +2579 2044 0.400000 +2579 2072 0.400000 +2579 2157 0.400000 +2579 2164 0.400000 +2579 2180 0.400000 +2579 2373 0.400000 +2579 2405 0.400000 +2579 2519 0.400000 +2579 2521 0.400000 +2579 2550 0.400000 +2579 2651 0.400000 +2579 2865 0.400000 +2579 2866 0.400000 +2579 2901 0.400000 +2579 2912 0.400000 +2579 2919 0.400000 +2579 2967 0.400000 +2579 2979 0.400000 +2579 2981 0.400000 +2579 2985 0.400000 +2579 3001 0.400000 +2579 3003 0.400000 +2579 3024 0.400000 +2579 3087 0.400000 +2579 3108 0.400000 +2579 3187 0.400000 +2580 57 0.400000 +2580 98 0.400000 +2580 104 0.400000 +2580 115 0.400000 +2580 121 0.400000 +2580 156 0.400000 +2580 168 0.400000 +2580 184 0.400000 +2580 186 0.400000 +2580 210 0.400000 +2580 212 0.400000 +2580 235 0.400000 +2580 358 0.400000 +2580 391 0.400000 +2580 524 0.400000 +2580 623 0.400000 +2580 626 0.400000 +2580 696 0.400000 +2580 714 0.400000 +2580 720 0.400000 +2580 745 0.400000 +2580 748 0.400000 +2580 761 0.400000 +2580 768 0.400000 +2580 872 0.400000 +2580 1009 0.400000 +2580 1010 0.400000 +2580 1046 0.400000 +2580 1075 0.400000 +2580 1268 0.400000 +2580 1357 0.400000 +2580 1433 0.400000 +2580 1462 0.400000 +2580 1576 0.400000 +2580 1611 0.400000 +2580 1631 0.400000 +2580 1807 0.400000 +2580 1829 0.400000 +2580 1842 0.400000 +2580 1846 0.400000 +2580 1922 0.400000 +2580 1923 0.400000 +2580 2091 0.400000 +2580 2095 0.400000 +2580 2168 0.400000 +2580 2175 0.400000 +2580 2225 0.400000 +2580 2226 0.400000 +2580 2370 0.400000 +2580 2403 0.400000 +2580 2414 0.400000 +2580 2489 0.400000 +2580 2586 0.400000 +2580 2607 0.400000 +2580 2657 0.400000 +2580 2771 0.400000 +2580 2902 0.400000 +2580 2947 0.400000 +2580 2952 0.400000 +2580 2979 0.400000 +2580 3039 0.400000 +2580 3043 0.400000 +2580 3068 0.400000 +2580 3070 0.400000 +2580 3137 0.400000 +2580 3143 0.400000 +2581 47 0.400000 +2581 109 0.400000 +2581 119 0.400000 +2581 251 0.400000 +2581 269 0.400000 +2581 271 0.400000 +2581 300 0.400000 +2581 311 0.400000 +2581 396 0.400000 +2581 411 0.400000 +2581 447 0.400000 +2581 484 0.400000 +2581 530 0.400000 +2581 576 0.400000 +2581 590 0.400000 +2581 730 0.400000 +2581 761 0.400000 +2581 765 0.400000 +2581 809 0.400000 +2581 829 0.400000 +2581 859 0.400000 +2581 861 0.400000 +2581 873 0.400000 +2581 896 0.400000 +2581 972 0.400000 +2581 1038 0.400000 +2581 1067 0.400000 +2581 1278 0.400000 +2581 1279 0.400000 +2581 1292 0.400000 +2581 1402 0.400000 +2581 1426 0.400000 +2581 1428 0.400000 +2581 1436 0.400000 +2581 1462 0.400000 +2581 1465 0.400000 +2581 1466 0.400000 +2581 1483 0.400000 +2581 1486 0.400000 +2581 1579 0.400000 +2581 1657 0.400000 +2581 1713 0.400000 +2581 1737 0.400000 +2581 1784 0.400000 +2581 1791 0.400000 +2581 1794 0.400000 +2581 2186 0.400000 +2581 2190 0.400000 +2581 2194 0.400000 +2581 2211 0.400000 +2581 2269 0.400000 +2581 2293 0.400000 +2581 2305 0.400000 +2581 2395 0.400000 +2581 2456 0.400000 +2581 2459 0.400000 +2581 2473 0.400000 +2581 2478 0.400000 +2581 2536 0.400000 +2581 2573 0.400000 +2581 2602 0.400000 +2581 2650 0.400000 +2581 2705 0.400000 +2581 2758 0.400000 +2581 2782 0.400000 +2581 2802 0.400000 +2581 2953 0.400000 +2581 2978 0.400000 +2581 3014 0.400000 +2581 3170 0.400000 +2582 85 0.400000 +2582 117 0.400000 +2582 223 0.400000 +2582 321 0.400000 +2582 335 0.400000 +2582 343 0.400000 +2582 471 0.400000 +2582 597 0.400000 +2582 617 0.400000 +2582 664 0.400000 +2582 665 0.400000 +2582 683 0.400000 +2582 717 0.400000 +2582 770 0.400000 +2582 792 0.400000 +2582 805 0.400000 +2582 806 0.400000 +2582 943 0.400000 +2582 1026 0.400000 +2582 1061 0.400000 +2582 1137 0.400000 +2582 1209 0.400000 +2582 1330 0.400000 +2582 1444 0.400000 +2582 1454 0.400000 +2582 1563 0.400000 +2582 1578 0.400000 +2582 1684 0.400000 +2582 1685 0.400000 +2582 1796 0.400000 +2582 1820 0.400000 +2582 1933 0.400000 +2582 1986 0.400000 +2582 2036 0.400000 +2582 2067 0.400000 +2582 2074 0.400000 +2582 2106 0.400000 +2582 2213 0.400000 +2582 2239 0.400000 +2582 2251 0.400000 +2582 2289 0.400000 +2582 2323 0.400000 +2582 2599 0.400000 +2582 2626 0.400000 +2582 2648 0.400000 +2582 2667 0.400000 +2582 2859 0.400000 +2582 2887 0.400000 +2582 2909 0.400000 +2582 2926 0.400000 +2582 2940 0.400000 +2582 3100 0.400000 +2582 3147 0.400000 +2583 37 0.400000 +2583 120 0.400000 +2583 174 0.400000 +2583 195 0.400000 +2583 207 0.400000 +2583 373 0.400000 +2583 423 0.400000 +2583 428 0.400000 +2583 429 0.400000 +2583 468 0.400000 +2583 491 0.400000 +2583 625 0.400000 +2583 794 0.400000 +2583 823 0.400000 +2583 836 0.400000 +2583 845 0.400000 +2583 1044 0.400000 +2583 1069 0.400000 +2583 1097 0.400000 +2583 1191 0.400000 +2583 1215 0.400000 +2583 1321 0.400000 +2583 1432 0.400000 +2583 1452 0.400000 +2583 1468 0.400000 +2583 1505 0.400000 +2583 1519 0.400000 +2583 1536 0.400000 +2583 1590 0.400000 +2583 1740 0.400000 +2583 1796 0.400000 +2583 1818 0.400000 +2583 1822 0.400000 +2583 1983 0.400000 +2583 2019 0.400000 +2583 2049 0.400000 +2583 2063 0.400000 +2583 2117 0.400000 +2583 2136 0.400000 +2583 2141 0.400000 +2583 2160 0.400000 +2583 2206 0.400000 +2583 2292 0.400000 +2583 2339 0.400000 +2583 2390 0.400000 +2583 2391 0.400000 +2583 2426 0.400000 +2583 2481 0.400000 +2583 2526 0.400000 +2583 2552 0.400000 +2583 2696 0.400000 +2583 2783 0.400000 +2583 2791 0.400000 +2583 2837 0.400000 +2583 2850 0.400000 +2583 3056 0.400000 +2583 3061 0.400000 +2583 3081 0.400000 +2583 3110 0.400000 +2583 3115 0.400000 +2583 3164 0.400000 +2583 3170 0.400000 +2584 13 0.400000 +2584 60 0.400000 +2584 70 0.400000 +2584 123 0.400000 +2584 148 0.400000 +2584 162 0.400000 +2584 166 0.400000 +2584 385 0.400000 +2584 400 0.400000 +2584 405 0.400000 +2584 447 0.400000 +2584 611 0.400000 +2584 689 0.400000 +2584 698 0.400000 +2584 713 0.400000 +2584 724 0.400000 +2584 738 0.400000 +2584 771 0.400000 +2584 774 0.400000 +2584 821 0.400000 +2584 842 0.400000 +2584 928 0.400000 +2584 998 0.400000 +2584 1068 0.400000 +2584 1193 0.400000 +2584 1289 0.400000 +2584 1328 0.400000 +2584 1436 0.400000 +2584 1442 0.400000 +2584 1544 0.400000 +2584 1564 0.400000 +2584 1568 0.400000 +2584 1621 0.400000 +2584 1646 0.400000 +2584 1682 0.400000 +2584 1694 0.400000 +2584 1702 0.400000 +2584 1710 0.400000 +2584 1760 0.400000 +2584 1864 0.400000 +2584 1871 0.400000 +2584 2032 0.400000 +2584 2055 0.400000 +2584 2062 0.400000 +2584 2163 0.400000 +2584 2234 0.400000 +2584 2282 0.400000 +2584 2368 0.400000 +2584 2441 0.400000 +2584 2443 0.400000 +2584 2504 0.400000 +2584 2525 0.400000 +2584 2596 0.400000 +2584 2612 0.400000 +2584 2662 0.400000 +2584 2673 0.400000 +2584 2675 0.400000 +2584 2804 0.400000 +2584 2858 0.400000 +2584 2859 0.400000 +2584 2883 0.400000 +2584 2961 0.400000 +2584 2967 0.400000 +2584 3006 0.400000 +2584 3059 0.400000 +2584 3104 0.400000 +2584 3116 0.400000 +2584 3136 0.400000 +2585 6 0.400000 +2585 36 0.400000 +2585 77 0.400000 +2585 132 0.400000 +2585 223 0.400000 +2585 306 0.400000 +2585 326 0.400000 +2585 525 0.400000 +2585 544 0.400000 +2585 572 0.400000 +2585 616 0.400000 +2585 672 0.400000 +2585 706 0.400000 +2585 768 0.400000 +2585 782 0.400000 +2585 884 0.400000 +2585 1040 0.400000 +2585 1062 0.400000 +2585 1091 0.400000 +2585 1144 0.400000 +2585 1164 0.400000 +2585 1180 0.400000 +2585 1259 0.400000 +2585 1378 0.400000 +2585 1419 0.400000 +2585 1422 0.400000 +2585 1574 0.400000 +2585 1693 0.400000 +2585 1718 0.400000 +2585 1728 0.400000 +2585 1742 0.400000 +2585 1834 0.400000 +2585 1869 0.400000 +2585 1892 0.400000 +2585 1914 0.400000 +2585 1947 0.400000 +2585 2000 0.400000 +2585 2021 0.400000 +2585 2030 0.400000 +2585 2109 0.400000 +2585 2120 0.400000 +2585 2292 0.400000 +2585 2294 0.400000 +2585 2377 0.400000 +2585 2379 0.400000 +2585 2501 0.400000 +2585 2561 0.400000 +2585 2598 0.400000 +2585 2676 0.400000 +2585 2742 0.400000 +2585 2759 0.400000 +2585 2785 0.400000 +2585 2844 0.400000 +2585 3045 0.400000 +2585 3072 0.400000 +2585 3131 0.400000 +2585 3167 0.400000 +2586 41 0.400000 +2586 75 0.400000 +2586 105 0.400000 +2586 187 0.400000 +2586 219 0.400000 +2586 264 0.400000 +2586 345 0.400000 +2586 429 0.400000 +2586 498 0.400000 +2586 537 0.400000 +2586 562 0.400000 +2586 576 0.400000 +2586 602 0.400000 +2586 621 0.400000 +2586 635 0.400000 +2586 849 0.400000 +2586 934 0.400000 +2586 935 0.400000 +2586 951 0.400000 +2586 953 0.400000 +2586 963 0.400000 +2586 999 0.400000 +2586 1029 0.400000 +2586 1057 0.400000 +2586 1074 0.400000 +2586 1342 0.400000 +2586 1407 0.400000 +2586 1671 0.400000 +2586 1699 0.400000 +2586 1718 0.400000 +2586 1749 0.400000 +2586 1764 0.400000 +2586 1806 0.400000 +2586 1876 0.400000 +2586 1949 0.400000 +2586 1956 0.400000 +2586 1971 0.400000 +2586 2010 0.400000 +2586 2028 0.400000 +2586 2034 0.400000 +2586 2080 0.400000 +2586 2289 0.400000 +2586 2383 0.400000 +2586 2503 0.400000 +2586 2538 0.400000 +2586 2570 0.400000 +2586 2583 0.400000 +2586 2653 0.400000 +2586 2745 0.400000 +2586 2746 0.400000 +2586 2798 0.400000 +2586 2804 0.400000 +2586 2891 0.400000 +2586 2923 0.400000 +2586 2967 0.400000 +2586 3032 0.400000 +2586 3086 0.400000 +2586 3172 0.400000 +2586 3186 0.400000 +2587 28 0.400000 +2587 159 0.400000 +2587 173 0.400000 +2587 178 0.400000 +2587 273 0.400000 +2587 277 0.400000 +2587 377 0.400000 +2587 383 0.400000 +2587 397 0.400000 +2587 498 0.400000 +2587 507 0.400000 +2587 593 0.400000 +2587 630 0.400000 +2587 722 0.400000 +2587 728 0.400000 +2587 764 0.400000 +2587 831 0.400000 +2587 836 0.400000 +2587 839 0.400000 +2587 922 0.400000 +2587 1023 0.400000 +2587 1264 0.400000 +2587 1266 0.400000 +2587 1309 0.400000 +2587 1311 0.400000 +2587 1312 0.400000 +2587 1355 0.400000 +2587 1472 0.400000 +2587 1549 0.400000 +2587 1582 0.400000 +2587 1597 0.400000 +2587 1603 0.400000 +2587 1698 0.400000 +2587 1710 0.400000 +2587 1727 0.400000 +2587 1739 0.400000 +2587 1860 0.400000 +2587 1932 0.400000 +2587 1940 0.400000 +2587 1974 0.400000 +2587 2080 0.400000 +2587 2181 0.400000 +2587 2184 0.400000 +2587 2186 0.400000 +2587 2190 0.400000 +2587 2206 0.400000 +2587 2268 0.400000 +2587 2402 0.400000 +2587 2455 0.400000 +2587 2478 0.400000 +2587 2513 0.400000 +2587 2611 0.400000 +2587 2635 0.400000 +2587 2696 0.400000 +2587 2772 0.400000 +2587 2828 0.400000 +2587 2909 0.400000 +2587 3033 0.400000 +2587 3049 0.400000 +2587 3057 0.400000 +2587 3125 0.400000 +2587 3162 0.400000 +2588 142 0.400000 +2588 219 0.400000 +2588 224 0.400000 +2588 243 0.400000 +2588 294 0.400000 +2588 323 0.400000 +2588 329 0.400000 +2588 338 0.400000 +2588 367 0.400000 +2588 378 0.400000 +2588 405 0.400000 +2588 474 0.400000 +2588 523 0.400000 +2588 557 0.400000 +2588 701 0.400000 +2588 724 0.400000 +2588 808 0.400000 +2588 826 0.400000 +2588 868 0.400000 +2588 899 0.400000 +2588 910 0.400000 +2588 978 0.400000 +2588 1113 0.400000 +2588 1116 0.400000 +2588 1128 0.400000 +2588 1269 0.400000 +2588 1274 0.400000 +2588 1485 0.400000 +2588 1564 0.400000 +2588 1641 0.400000 +2588 1664 0.400000 +2588 1669 0.400000 +2588 1679 0.400000 +2588 1733 0.400000 +2588 1779 0.400000 +2588 1785 0.400000 +2588 1893 0.400000 +2588 1896 0.400000 +2588 1902 0.400000 +2588 2022 0.400000 +2588 2027 0.400000 +2588 2034 0.400000 +2588 2178 0.400000 +2588 2203 0.400000 +2588 2306 0.400000 +2588 2352 0.400000 +2588 2410 0.400000 +2588 2420 0.400000 +2588 2542 0.400000 +2588 2565 0.400000 +2588 2658 0.400000 +2588 2678 0.400000 +2588 2708 0.400000 +2588 2758 0.400000 +2588 2923 0.400000 +2588 2953 0.400000 +2588 2985 0.400000 +2588 3019 0.400000 +2588 3107 0.400000 +2588 3153 0.400000 +2589 116 0.400000 +2589 134 0.400000 +2589 182 0.400000 +2589 230 0.400000 +2589 363 0.400000 +2589 413 0.400000 +2589 529 0.400000 +2589 563 0.400000 +2589 584 0.400000 +2589 609 0.400000 +2589 638 0.400000 +2589 657 0.400000 +2589 669 0.400000 +2589 684 0.400000 +2589 690 0.400000 +2589 701 0.400000 +2589 860 0.400000 +2589 868 0.400000 +2589 875 0.400000 +2589 978 0.400000 +2589 1100 0.400000 +2589 1137 0.400000 +2589 1156 0.400000 +2589 1224 0.400000 +2589 1228 0.400000 +2589 1252 0.400000 +2589 1346 0.400000 +2589 1358 0.400000 +2589 1386 0.400000 +2589 1406 0.400000 +2589 1445 0.400000 +2589 1645 0.400000 +2589 1653 0.400000 +2589 1708 0.400000 +2589 1806 0.400000 +2589 1816 0.400000 +2589 1828 0.400000 +2589 1878 0.400000 +2589 1999 0.400000 +2589 2049 0.400000 +2589 2125 0.400000 +2589 2129 0.400000 +2589 2216 0.400000 +2589 2276 0.400000 +2589 2342 0.400000 +2589 2374 0.400000 +2589 2411 0.400000 +2589 2414 0.400000 +2589 2437 0.400000 +2589 2445 0.400000 +2589 2500 0.400000 +2589 2511 0.400000 +2589 2512 0.400000 +2589 2532 0.400000 +2589 2601 0.400000 +2589 2647 0.400000 +2589 2733 0.400000 +2589 2806 0.400000 +2589 2858 0.400000 +2589 2921 0.400000 +2589 3067 0.400000 +2589 3194 0.400000 +2590 10 0.400000 +2590 92 0.400000 +2590 141 0.400000 +2590 226 0.400000 +2590 267 0.400000 +2590 433 0.400000 +2590 462 0.400000 +2590 505 0.400000 +2590 640 0.400000 +2590 659 0.400000 +2590 712 0.400000 +2590 716 0.400000 +2590 814 0.400000 +2590 916 0.400000 +2590 941 0.400000 +2590 992 0.400000 +2590 1121 0.400000 +2590 1141 0.400000 +2590 1187 0.400000 +2590 1230 0.400000 +2590 1414 0.400000 +2590 1462 0.400000 +2590 1466 0.400000 +2590 1474 0.400000 +2590 1555 0.400000 +2590 1635 0.400000 +2590 1689 0.400000 +2590 1711 0.400000 +2590 1718 0.400000 +2590 1813 0.400000 +2590 1817 0.400000 +2590 1934 0.400000 +2590 1958 0.400000 +2590 2065 0.400000 +2590 2140 0.400000 +2590 2169 0.400000 +2590 2182 0.400000 +2590 2251 0.400000 +2590 2410 0.400000 +2590 2541 0.400000 +2590 2609 0.400000 +2590 2647 0.400000 +2590 2738 0.400000 +2590 2808 0.400000 +2590 2858 0.400000 +2590 2873 0.400000 +2590 2893 0.400000 +2590 2904 0.400000 +2590 2992 0.400000 +2590 3002 0.400000 +2590 3035 0.400000 +2590 3181 0.400000 +2591 104 0.400000 +2591 124 0.400000 +2591 132 0.400000 +2591 251 0.400000 +2591 260 0.400000 +2591 269 0.400000 +2591 290 0.400000 +2591 314 0.400000 +2591 375 0.400000 +2591 473 0.400000 +2591 478 0.400000 +2591 524 0.400000 +2591 607 0.400000 +2591 608 0.400000 +2591 643 0.400000 +2591 706 0.400000 +2591 787 0.400000 +2591 789 0.400000 +2591 831 0.400000 +2591 878 0.400000 +2591 937 0.400000 +2591 1008 0.400000 +2591 1047 0.400000 +2591 1050 0.400000 +2591 1113 0.400000 +2591 1133 0.400000 +2591 1139 0.400000 +2591 1160 0.400000 +2591 1192 0.400000 +2591 1211 0.400000 +2591 1354 0.400000 +2591 1379 0.400000 +2591 1426 0.400000 +2591 1460 0.400000 +2591 1487 0.400000 +2591 1724 0.400000 +2591 1947 0.400000 +2591 2254 0.400000 +2591 2287 0.400000 +2591 2328 0.400000 +2591 2369 0.400000 +2591 2443 0.400000 +2591 2451 0.400000 +2591 2556 0.400000 +2591 2610 0.400000 +2591 2679 0.400000 +2591 2904 0.400000 +2591 2960 0.400000 +2591 2996 0.400000 +2591 3041 0.400000 +2591 3142 0.400000 +2591 3153 0.400000 +2592 74 0.400000 +2592 185 0.400000 +2592 256 0.400000 +2592 368 0.400000 +2592 402 0.400000 +2592 491 0.400000 +2592 505 0.400000 +2592 565 0.400000 +2592 643 0.400000 +2592 644 0.400000 +2592 659 0.400000 +2592 736 0.400000 +2592 874 0.400000 +2592 875 0.400000 +2592 948 0.400000 +2592 1024 0.400000 +2592 1036 0.400000 +2592 1095 0.400000 +2592 1209 0.400000 +2592 1264 0.400000 +2592 1323 0.400000 +2592 1342 0.400000 +2592 1353 0.400000 +2592 1487 0.400000 +2592 1675 0.400000 +2592 1734 0.400000 +2592 1749 0.400000 +2592 1829 0.400000 +2592 1915 0.400000 +2592 2097 0.400000 +2592 2105 0.400000 +2592 2144 0.400000 +2592 2162 0.400000 +2592 2389 0.400000 +2592 2405 0.400000 +2592 2435 0.400000 +2592 2455 0.400000 +2592 2462 0.400000 +2592 2487 0.400000 +2592 2513 0.400000 +2592 2583 0.400000 +2592 2586 0.400000 +2592 2815 0.400000 +2592 2884 0.400000 +2592 2938 0.400000 +2592 2974 0.400000 +2592 3003 0.400000 +2592 3010 0.400000 +2592 3013 0.400000 +2592 3035 0.400000 +2592 3162 0.400000 +2592 3164 0.400000 +2593 4 0.400000 +2593 46 0.400000 +2593 53 0.400000 +2593 60 0.400000 +2593 108 0.400000 +2593 133 0.400000 +2593 149 0.400000 +2593 157 0.400000 +2593 438 0.400000 +2593 511 0.400000 +2593 522 0.400000 +2593 592 0.400000 +2593 634 0.400000 +2593 696 0.400000 +2593 712 0.400000 +2593 764 0.400000 +2593 797 0.400000 +2593 805 0.400000 +2593 841 0.400000 +2593 847 0.400000 +2593 867 0.400000 +2593 920 0.400000 +2593 929 0.400000 +2593 1031 0.400000 +2593 1152 0.400000 +2593 1190 0.400000 +2593 1257 0.400000 +2593 1276 0.400000 +2593 1303 0.400000 +2593 1328 0.400000 +2593 1357 0.400000 +2593 1386 0.400000 +2593 1451 0.400000 +2593 1461 0.400000 +2593 1527 0.400000 +2593 1530 0.400000 +2593 1716 0.400000 +2593 1778 0.400000 +2593 1959 0.400000 +2593 1965 0.400000 +2593 1991 0.400000 +2593 2050 0.400000 +2593 2147 0.400000 +2593 2161 0.400000 +2593 2224 0.400000 +2593 2244 0.400000 +2593 2286 0.400000 +2593 2379 0.400000 +2593 2467 0.400000 +2593 2487 0.400000 +2593 2547 0.400000 +2593 2585 0.400000 +2593 2662 0.400000 +2593 2699 0.400000 +2593 2816 0.400000 +2593 2963 0.400000 +2593 2998 0.400000 +2593 3009 0.400000 +2593 3156 0.400000 +2593 3168 0.400000 +2593 3183 0.400000 +2594 25 0.400000 +2594 29 0.400000 +2594 32 0.400000 +2594 80 0.400000 +2594 145 0.400000 +2594 216 0.400000 +2594 235 0.400000 +2594 323 0.400000 +2594 336 0.400000 +2594 386 0.400000 +2594 470 0.400000 +2594 581 0.400000 +2594 617 0.400000 +2594 639 0.400000 +2594 685 0.400000 +2594 716 0.400000 +2594 728 0.400000 +2594 744 0.400000 +2594 763 0.400000 +2594 830 0.400000 +2594 846 0.400000 +2594 866 0.400000 +2594 953 0.400000 +2594 995 0.400000 +2594 1002 0.400000 +2594 1058 0.400000 +2594 1116 0.400000 +2594 1122 0.400000 +2594 1277 0.400000 +2594 1284 0.400000 +2594 1333 0.400000 +2594 1440 0.400000 +2594 1441 0.400000 +2594 1493 0.400000 +2594 1514 0.400000 +2594 1590 0.400000 +2594 1659 0.400000 +2594 1715 0.400000 +2594 1748 0.400000 +2594 1800 0.400000 +2594 1825 0.400000 +2594 1842 0.400000 +2594 1894 0.400000 +2594 1997 0.400000 +2594 2015 0.400000 +2594 2044 0.400000 +2594 2083 0.400000 +2594 2167 0.400000 +2594 2173 0.400000 +2594 2195 0.400000 +2594 2196 0.400000 +2594 2319 0.400000 +2594 2368 0.400000 +2594 2528 0.400000 +2594 2547 0.400000 +2594 2596 0.400000 +2594 2606 0.400000 +2594 2639 0.400000 +2594 2658 0.400000 +2594 2666 0.400000 +2594 2741 0.400000 +2594 2778 0.400000 +2594 2781 0.400000 +2594 2789 0.400000 +2594 2799 0.400000 +2594 2841 0.400000 +2594 2888 0.400000 +2594 2973 0.400000 +2594 3007 0.400000 +2594 3035 0.400000 +2594 3056 0.400000 +2594 3081 0.400000 +2595 145 0.400000 +2595 178 0.400000 +2595 226 0.400000 +2595 389 0.400000 +2595 424 0.400000 +2595 433 0.400000 +2595 440 0.400000 +2595 520 0.400000 +2595 558 0.400000 +2595 649 0.400000 +2595 685 0.400000 +2595 690 0.400000 +2595 723 0.400000 +2595 732 0.400000 +2595 792 0.400000 +2595 826 0.400000 +2595 865 0.400000 +2595 904 0.400000 +2595 968 0.400000 +2595 983 0.400000 +2595 1092 0.400000 +2595 1102 0.400000 +2595 1121 0.400000 +2595 1166 0.400000 +2595 1208 0.400000 +2595 1328 0.400000 +2595 1346 0.400000 +2595 1448 0.400000 +2595 1525 0.400000 +2595 1537 0.400000 +2595 1552 0.400000 +2595 1557 0.400000 +2595 1606 0.400000 +2595 1628 0.400000 +2595 1653 0.400000 +2595 1690 0.400000 +2595 1773 0.400000 +2595 1815 0.400000 +2595 1854 0.400000 +2595 1915 0.400000 +2595 2003 0.400000 +2595 2013 0.400000 +2595 2054 0.400000 +2595 2187 0.400000 +2595 2247 0.400000 +2595 2286 0.400000 +2595 2358 0.400000 +2595 2411 0.400000 +2595 2423 0.400000 +2595 2436 0.400000 +2595 2465 0.400000 +2595 2516 0.400000 +2595 2554 0.400000 +2595 2586 0.400000 +2595 2611 0.400000 +2595 2645 0.400000 +2595 2852 0.400000 +2595 2868 0.400000 +2595 3029 0.400000 +2595 3034 0.400000 +2595 3113 0.400000 +2595 3148 0.400000 +2595 3168 0.400000 +2596 87 0.400000 +2596 88 0.400000 +2596 127 0.400000 +2596 167 0.400000 +2596 255 0.400000 +2596 395 0.400000 +2596 472 0.400000 +2596 570 0.400000 +2596 599 0.400000 +2596 720 0.400000 +2596 810 0.400000 +2596 956 0.400000 +2596 988 0.400000 +2596 993 0.400000 +2596 1019 0.400000 +2596 1029 0.400000 +2596 1050 0.400000 +2596 1179 0.400000 +2596 1273 0.400000 +2596 1383 0.400000 +2596 1423 0.400000 +2596 1484 0.400000 +2596 1497 0.400000 +2596 1514 0.400000 +2596 1586 0.400000 +2596 1587 0.400000 +2596 1609 0.400000 +2596 1745 0.400000 +2596 1746 0.400000 +2596 1748 0.400000 +2596 1775 0.400000 +2596 1798 0.400000 +2596 1808 0.400000 +2596 1835 0.400000 +2596 1934 0.400000 +2596 1970 0.400000 +2596 2017 0.400000 +2596 2048 0.400000 +2596 2076 0.400000 +2596 2148 0.400000 +2596 2317 0.400000 +2596 2332 0.400000 +2596 2372 0.400000 +2596 2373 0.400000 +2596 2494 0.400000 +2596 2545 0.400000 +2596 2687 0.400000 +2596 2971 0.400000 +2596 3011 0.400000 +2596 3098 0.400000 +2596 3180 0.400000 +2597 4 0.400000 +2597 74 0.400000 +2597 116 0.400000 +2597 208 0.400000 +2597 260 0.400000 +2597 283 0.400000 +2597 330 0.400000 +2597 331 0.400000 +2597 412 0.400000 +2597 474 0.400000 +2597 558 0.400000 +2597 601 0.400000 +2597 617 0.400000 +2597 621 0.400000 +2597 673 0.400000 +2597 750 0.400000 +2597 768 0.400000 +2597 826 0.400000 +2597 848 0.400000 +2597 905 0.400000 +2597 997 0.400000 +2597 1003 0.400000 +2597 1024 0.400000 +2597 1032 0.400000 +2597 1192 0.400000 +2597 1196 0.400000 +2597 1241 0.400000 +2597 1313 0.400000 +2597 1334 0.400000 +2597 1343 0.400000 +2597 1496 0.400000 +2597 1560 0.400000 +2597 1572 0.400000 +2597 1579 0.400000 +2597 1642 0.400000 +2597 1735 0.400000 +2597 1752 0.400000 +2597 1828 0.400000 +2597 1848 0.400000 +2597 1863 0.400000 +2597 1865 0.400000 +2597 1960 0.400000 +2597 1981 0.400000 +2597 1997 0.400000 +2597 2097 0.400000 +2597 2121 0.400000 +2597 2240 0.400000 +2597 2242 0.400000 +2597 2384 0.400000 +2597 2386 0.400000 +2597 2515 0.400000 +2597 2651 0.400000 +2597 2659 0.400000 +2597 2741 0.400000 +2597 2874 0.400000 +2597 2928 0.400000 +2597 3048 0.400000 +2597 3170 0.400000 +2598 42 0.400000 +2598 171 0.400000 +2598 176 0.400000 +2598 232 0.400000 +2598 284 0.400000 +2598 286 0.400000 +2598 293 0.400000 +2598 310 0.400000 +2598 377 0.400000 +2598 590 0.400000 +2598 598 0.400000 +2598 617 0.400000 +2598 653 0.400000 +2598 658 0.400000 +2598 663 0.400000 +2598 690 0.400000 +2598 784 0.400000 +2598 792 0.400000 +2598 804 0.400000 +2598 814 0.400000 +2598 820 0.400000 +2598 874 0.400000 +2598 892 0.400000 +2598 1104 0.400000 +2598 1108 0.400000 +2598 1109 0.400000 +2598 1163 0.400000 +2598 1199 0.400000 +2598 1250 0.400000 +2598 1276 0.400000 +2598 1306 0.400000 +2598 1371 0.400000 +2598 1411 0.400000 +2598 1421 0.400000 +2598 1441 0.400000 +2598 1524 0.400000 +2598 1526 0.400000 +2598 1572 0.400000 +2598 1613 0.400000 +2598 1665 0.400000 +2598 1686 0.400000 +2598 1687 0.400000 +2598 1697 0.400000 +2598 1752 0.400000 +2598 1918 0.400000 +2598 1978 0.400000 +2598 2019 0.400000 +2598 2046 0.400000 +2598 2068 0.400000 +2598 2139 0.400000 +2598 2209 0.400000 +2598 2294 0.400000 +2598 2361 0.400000 +2598 2372 0.400000 +2598 2433 0.400000 +2598 2447 0.400000 +2598 2457 0.400000 +2598 2474 0.400000 +2598 2547 0.400000 +2598 2586 0.400000 +2598 2635 0.400000 +2598 2672 0.400000 +2598 2790 0.400000 +2598 2835 0.400000 +2598 2909 0.400000 +2598 2991 0.400000 +2598 3043 0.400000 +2598 3063 0.400000 +2599 112 0.400000 +2599 182 0.400000 +2599 210 0.400000 +2599 294 0.400000 +2599 377 0.400000 +2599 495 0.400000 +2599 617 0.400000 +2599 638 0.400000 +2599 652 0.400000 +2599 702 0.400000 +2599 749 0.400000 +2599 815 0.400000 +2599 881 0.400000 +2599 940 0.400000 +2599 960 0.400000 +2599 991 0.400000 +2599 998 0.400000 +2599 1062 0.400000 +2599 1118 0.400000 +2599 1196 0.400000 +2599 1204 0.400000 +2599 1246 0.400000 +2599 1253 0.400000 +2599 1302 0.400000 +2599 1356 0.400000 +2599 1403 0.400000 +2599 1412 0.400000 +2599 1429 0.400000 +2599 1437 0.400000 +2599 1440 0.400000 +2599 1459 0.400000 +2599 1481 0.400000 +2599 1502 0.400000 +2599 1516 0.400000 +2599 1684 0.400000 +2599 1783 0.400000 +2599 1809 0.400000 +2599 2075 0.400000 +2599 2167 0.400000 +2599 2183 0.400000 +2599 2253 0.400000 +2599 2274 0.400000 +2599 2357 0.400000 +2599 2462 0.400000 +2599 2538 0.400000 +2599 2580 0.400000 +2599 2602 0.400000 +2599 2699 0.400000 +2599 2711 0.400000 +2599 2757 0.400000 +2599 2775 0.400000 +2599 2832 0.400000 +2599 2846 0.400000 +2599 2877 0.400000 +2599 2906 0.400000 +2599 3087 0.400000 +2599 3126 0.400000 +2599 3175 0.400000 +2600 37 0.400000 +2600 83 0.400000 +2600 137 0.400000 +2600 175 0.400000 +2600 290 0.400000 +2600 364 0.400000 +2600 377 0.400000 +2600 393 0.400000 +2600 423 0.400000 +2600 426 0.400000 +2600 430 0.400000 +2600 466 0.400000 +2600 519 0.400000 +2600 527 0.400000 +2600 613 0.400000 +2600 632 0.400000 +2600 679 0.400000 +2600 682 0.400000 +2600 711 0.400000 +2600 758 0.400000 +2600 805 0.400000 +2600 811 0.400000 +2600 832 0.400000 +2600 848 0.400000 +2600 894 0.400000 +2600 937 0.400000 +2600 950 0.400000 +2600 1021 0.400000 +2600 1044 0.400000 +2600 1151 0.400000 +2600 1228 0.400000 +2600 1297 0.400000 +2600 1329 0.400000 +2600 1372 0.400000 +2600 1465 0.400000 +2600 1559 0.400000 +2600 1623 0.400000 +2600 1680 0.400000 +2600 1685 0.400000 +2600 1727 0.400000 +2600 1762 0.400000 +2600 1882 0.400000 +2600 1961 0.400000 +2600 1986 0.400000 +2600 2057 0.400000 +2600 2160 0.400000 +2600 2185 0.400000 +2600 2192 0.400000 +2600 2214 0.400000 +2600 2242 0.400000 +2600 2281 0.400000 +2600 2299 0.400000 +2600 2440 0.400000 +2600 2589 0.400000 +2600 2593 0.400000 +2600 2621 0.400000 +2600 2654 0.400000 +2600 2677 0.400000 +2600 2704 0.400000 +2600 2713 0.400000 +2600 2754 0.400000 +2600 2763 0.400000 +2600 2935 0.400000 +2600 2979 0.400000 +2600 3100 0.400000 +2600 3103 0.400000 +2600 3133 0.400000 +2600 3148 0.400000 +2600 3149 0.400000 +2600 3166 0.400000 +2600 3199 0.400000 +2601 41 0.400000 +2601 58 0.400000 +2601 124 0.400000 +2601 142 0.400000 +2601 201 0.400000 +2601 236 0.400000 +2601 377 0.400000 +2601 412 0.400000 +2601 428 0.400000 +2601 551 0.400000 +2601 604 0.400000 +2601 709 0.400000 +2601 750 0.400000 +2601 763 0.400000 +2601 770 0.400000 +2601 916 0.400000 +2601 966 0.400000 +2601 1054 0.400000 +2601 1157 0.400000 +2601 1159 0.400000 +2601 1336 0.400000 +2601 1428 0.400000 +2601 1480 0.400000 +2601 1530 0.400000 +2601 1572 0.400000 +2601 1577 0.400000 +2601 1581 0.400000 +2601 1600 0.400000 +2601 1612 0.400000 +2601 1656 0.400000 +2601 1683 0.400000 +2601 1685 0.400000 +2601 1852 0.400000 +2601 1862 0.400000 +2601 1895 0.400000 +2601 1957 0.400000 +2601 2091 0.400000 +2601 2093 0.400000 +2601 2116 0.400000 +2601 2156 0.400000 +2601 2165 0.400000 +2601 2168 0.400000 +2601 2178 0.400000 +2601 2366 0.400000 +2601 2413 0.400000 +2601 2423 0.400000 +2601 2466 0.400000 +2601 2521 0.400000 +2601 2561 0.400000 +2601 2585 0.400000 +2601 2606 0.400000 +2601 2680 0.400000 +2601 2728 0.400000 +2601 2793 0.400000 +2601 2865 0.400000 +2601 2867 0.400000 +2601 2902 0.400000 +2601 2903 0.400000 +2601 2950 0.400000 +2601 2961 0.400000 +2601 2992 0.400000 +2601 3028 0.400000 +2601 3070 0.400000 +2601 3087 0.400000 +2601 3100 0.400000 +2601 3122 0.400000 +2602 21 0.400000 +2602 25 0.400000 +2602 46 0.400000 +2602 64 0.400000 +2602 72 0.400000 +2602 134 0.400000 +2602 193 0.400000 +2602 206 0.400000 +2602 221 0.400000 +2602 263 0.400000 +2602 270 0.400000 +2602 272 0.400000 +2602 298 0.400000 +2602 332 0.400000 +2602 333 0.400000 +2602 393 0.400000 +2602 398 0.400000 +2602 400 0.400000 +2602 501 0.400000 +2602 514 0.400000 +2602 554 0.400000 +2602 689 0.400000 +2602 732 0.400000 +2602 753 0.400000 +2602 866 0.400000 +2602 883 0.400000 +2602 936 0.400000 +2602 949 0.400000 +2602 959 0.400000 +2602 1159 0.400000 +2602 1161 0.400000 +2602 1335 0.400000 +2602 1354 0.400000 +2602 1429 0.400000 +2602 1482 0.400000 +2602 1491 0.400000 +2602 1509 0.400000 +2602 1618 0.400000 +2602 1666 0.400000 +2602 1737 0.400000 +2602 1738 0.400000 +2602 1748 0.400000 +2602 1749 0.400000 +2602 1797 0.400000 +2602 1872 0.400000 +2602 1960 0.400000 +2602 2003 0.400000 +2602 2012 0.400000 +2602 2033 0.400000 +2602 2097 0.400000 +2602 2143 0.400000 +2602 2193 0.400000 +2602 2225 0.400000 +2602 2297 0.400000 +2602 2410 0.400000 +2602 2494 0.400000 +2602 2601 0.400000 +2602 2645 0.400000 +2602 2667 0.400000 +2602 2689 0.400000 +2602 2703 0.400000 +2602 2729 0.400000 +2602 2734 0.400000 +2602 2761 0.400000 +2602 2786 0.400000 +2602 2887 0.400000 +2602 2949 0.400000 +2602 2953 0.400000 +2602 2992 0.400000 +2602 3039 0.400000 +2602 3175 0.400000 +2603 2 0.400000 +2603 48 0.400000 +2603 68 0.400000 +2603 117 0.400000 +2603 123 0.400000 +2603 152 0.400000 +2603 198 0.400000 +2603 285 0.400000 +2603 287 0.400000 +2603 323 0.400000 +2603 324 0.400000 +2603 356 0.400000 +2603 377 0.400000 +2603 433 0.400000 +2603 694 0.400000 +2603 758 0.400000 +2603 774 0.400000 +2603 778 0.400000 +2603 794 0.400000 +2603 873 0.400000 +2603 933 0.400000 +2603 962 0.400000 +2603 965 0.400000 +2603 978 0.400000 +2603 981 0.400000 +2603 987 0.400000 +2603 1038 0.400000 +2603 1119 0.400000 +2603 1272 0.400000 +2603 1341 0.400000 +2603 1451 0.400000 +2603 1518 0.400000 +2603 1531 0.400000 +2603 1595 0.400000 +2603 1644 0.400000 +2603 1647 0.400000 +2603 1650 0.400000 +2603 1679 0.400000 +2603 1734 0.400000 +2603 1761 0.400000 +2603 1788 0.400000 +2603 1808 0.400000 +2603 1836 0.400000 +2603 1972 0.400000 +2603 2014 0.400000 +2603 2024 0.400000 +2603 2074 0.400000 +2603 2104 0.400000 +2603 2138 0.400000 +2603 2144 0.400000 +2603 2256 0.400000 +2603 2374 0.400000 +2603 2429 0.400000 +2603 2493 0.400000 +2603 2533 0.400000 +2603 2625 0.400000 +2603 2666 0.400000 +2603 2713 0.400000 +2603 2776 0.400000 +2603 2786 0.400000 +2603 2832 0.400000 +2603 2849 0.400000 +2603 2873 0.400000 +2603 2957 0.400000 +2603 2970 0.400000 +2603 2982 0.400000 +2603 3011 0.400000 +2603 3012 0.400000 +2603 3097 0.400000 +2603 3162 0.400000 +2604 37 0.400000 +2604 49 0.400000 +2604 55 0.400000 +2604 108 0.400000 +2604 144 0.400000 +2604 264 0.400000 +2604 320 0.400000 +2604 337 0.400000 +2604 345 0.400000 +2604 424 0.400000 +2604 434 0.400000 +2604 444 0.400000 +2604 503 0.400000 +2604 581 0.400000 +2604 633 0.400000 +2604 739 0.400000 +2604 750 0.400000 +2604 804 0.400000 +2604 806 0.400000 +2604 820 0.400000 +2604 826 0.400000 +2604 862 0.400000 +2604 949 0.400000 +2604 982 0.400000 +2604 1014 0.400000 +2604 1044 0.400000 +2604 1170 0.400000 +2604 1197 0.400000 +2604 1224 0.400000 +2604 1231 0.400000 +2604 1274 0.400000 +2604 1331 0.400000 +2604 1335 0.400000 +2604 1438 0.400000 +2604 1506 0.400000 +2604 1700 0.400000 +2604 1703 0.400000 +2604 1728 0.400000 +2604 1729 0.400000 +2604 1835 0.400000 +2604 1849 0.400000 +2604 1855 0.400000 +2604 1913 0.400000 +2604 2071 0.400000 +2604 2158 0.400000 +2604 2181 0.400000 +2604 2265 0.400000 +2604 2277 0.400000 +2604 2335 0.400000 +2604 2395 0.400000 +2604 2501 0.400000 +2604 2678 0.400000 +2604 2719 0.400000 +2604 2736 0.400000 +2604 2757 0.400000 +2604 2770 0.400000 +2604 2819 0.400000 +2604 2908 0.400000 +2604 2911 0.400000 +2604 3013 0.400000 +2604 3130 0.400000 +2604 3179 0.400000 +2604 3197 0.400000 +2605 80 0.400000 +2605 115 0.400000 +2605 183 0.400000 +2605 233 0.400000 +2605 250 0.400000 +2605 264 0.400000 +2605 279 0.400000 +2605 345 0.400000 +2605 375 0.400000 +2605 386 0.400000 +2605 390 0.400000 +2605 443 0.400000 +2605 460 0.400000 +2605 609 0.400000 +2605 620 0.400000 +2605 646 0.400000 +2605 649 0.400000 +2605 681 0.400000 +2605 697 0.400000 +2605 701 0.400000 +2605 848 0.400000 +2605 855 0.400000 +2605 912 0.400000 +2605 919 0.400000 +2605 980 0.400000 +2605 1025 0.400000 +2605 1044 0.400000 +2605 1053 0.400000 +2605 1054 0.400000 +2605 1100 0.400000 +2605 1358 0.400000 +2605 1361 0.400000 +2605 1363 0.400000 +2605 1365 0.400000 +2605 1384 0.400000 +2605 1417 0.400000 +2605 1432 0.400000 +2605 1465 0.400000 +2605 1504 0.400000 +2605 1586 0.400000 +2605 1670 0.400000 +2605 1688 0.400000 +2605 1703 0.400000 +2605 1728 0.400000 +2605 1739 0.400000 +2605 1861 0.400000 +2605 1883 0.400000 +2605 1961 0.400000 +2605 1986 0.400000 +2605 1997 0.400000 +2605 2115 0.400000 +2605 2167 0.400000 +2605 2202 0.400000 +2605 2211 0.400000 +2605 2294 0.400000 +2605 2344 0.400000 +2605 2371 0.400000 +2605 2399 0.400000 +2605 2401 0.400000 +2605 2511 0.400000 +2605 2585 0.400000 +2605 2624 0.400000 +2605 2669 0.400000 +2605 2672 0.400000 +2605 2728 0.400000 +2605 2740 0.400000 +2605 2772 0.400000 +2605 2816 0.400000 +2605 2900 0.400000 +2605 2930 0.400000 +2605 3058 0.400000 +2605 3094 0.400000 +2605 3139 0.400000 +2606 41 0.400000 +2606 49 0.400000 +2606 71 0.400000 +2606 127 0.400000 +2606 429 0.400000 +2606 487 0.400000 +2606 526 0.400000 +2606 541 0.400000 +2606 586 0.400000 +2606 640 0.400000 +2606 648 0.400000 +2606 719 0.400000 +2606 742 0.400000 +2606 771 0.400000 +2606 778 0.400000 +2606 790 0.400000 +2606 791 0.400000 +2606 1014 0.400000 +2606 1053 0.400000 +2606 1104 0.400000 +2606 1155 0.400000 +2606 1180 0.400000 +2606 1199 0.400000 +2606 1321 0.400000 +2606 1504 0.400000 +2606 1566 0.400000 +2606 1573 0.400000 +2606 1576 0.400000 +2606 1583 0.400000 +2606 1587 0.400000 +2606 1659 0.400000 +2606 1667 0.400000 +2606 1668 0.400000 +2606 1705 0.400000 +2606 1711 0.400000 +2606 1880 0.400000 +2606 1899 0.400000 +2606 1906 0.400000 +2606 1921 0.400000 +2606 1932 0.400000 +2606 2053 0.400000 +2606 2131 0.400000 +2606 2172 0.400000 +2606 2209 0.400000 +2606 2358 0.400000 +2606 2517 0.400000 +2606 2534 0.400000 +2606 2662 0.400000 +2606 2693 0.400000 +2606 2759 0.400000 +2606 2773 0.400000 +2606 2814 0.400000 +2606 2832 0.400000 +2606 2929 0.400000 +2606 2982 0.400000 +2606 3042 0.400000 +2606 3049 0.400000 +2606 3119 0.400000 +2606 3178 0.400000 +2607 9 0.400000 +2607 53 0.400000 +2607 114 0.400000 +2607 121 0.400000 +2607 128 0.400000 +2607 260 0.400000 +2607 288 0.400000 +2607 321 0.400000 +2607 331 0.400000 +2607 350 0.400000 +2607 440 0.400000 +2607 446 0.400000 +2607 456 0.400000 +2607 505 0.400000 +2607 506 0.400000 +2607 508 0.400000 +2607 592 0.400000 +2607 615 0.400000 +2607 647 0.400000 +2607 655 0.400000 +2607 690 0.400000 +2607 733 0.400000 +2607 822 0.400000 +2607 1024 0.400000 +2607 1048 0.400000 +2607 1132 0.400000 +2607 1165 0.400000 +2607 1243 0.400000 +2607 1244 0.400000 +2607 1367 0.400000 +2607 1438 0.400000 +2607 1507 0.400000 +2607 1563 0.400000 +2607 1575 0.400000 +2607 1590 0.400000 +2607 1671 0.400000 +2607 1683 0.400000 +2607 1738 0.400000 +2607 1754 0.400000 +2607 1889 0.400000 +2607 1890 0.400000 +2607 1893 0.400000 +2607 1983 0.400000 +2607 1988 0.400000 +2607 2053 0.400000 +2607 2167 0.400000 +2607 2210 0.400000 +2607 2223 0.400000 +2607 2282 0.400000 +2607 2283 0.400000 +2607 2289 0.400000 +2607 2448 0.400000 +2607 2495 0.400000 +2607 2549 0.400000 +2607 2560 0.400000 +2607 2595 0.400000 +2607 2688 0.400000 +2607 2756 0.400000 +2607 2810 0.400000 +2607 2829 0.400000 +2607 2849 0.400000 +2607 2890 0.400000 +2607 2912 0.400000 +2607 2967 0.400000 +2607 3018 0.400000 +2607 3027 0.400000 +2607 3052 0.400000 +2607 3068 0.400000 +2607 3099 0.400000 +2608 21 0.400000 +2608 51 0.400000 +2608 65 0.400000 +2608 89 0.400000 +2608 137 0.400000 +2608 180 0.400000 +2608 282 0.400000 +2608 452 0.400000 +2608 538 0.400000 +2608 578 0.400000 +2608 585 0.400000 +2608 650 0.400000 +2608 721 0.400000 +2608 766 0.400000 +2608 968 0.400000 +2608 1107 0.400000 +2608 1115 0.400000 +2608 1130 0.400000 +2608 1163 0.400000 +2608 1208 0.400000 +2608 1216 0.400000 +2608 1239 0.400000 +2608 1281 0.400000 +2608 1297 0.400000 +2608 1363 0.400000 +2608 1381 0.400000 +2608 1405 0.400000 +2608 1514 0.400000 +2608 1544 0.400000 +2608 1561 0.400000 +2608 1614 0.400000 +2608 1719 0.400000 +2608 1769 0.400000 +2608 1780 0.400000 +2608 1829 0.400000 +2608 1915 0.400000 +2608 1948 0.400000 +2608 2084 0.400000 +2608 2099 0.400000 +2608 2113 0.400000 +2608 2116 0.400000 +2608 2138 0.400000 +2608 2146 0.400000 +2608 2193 0.400000 +2608 2197 0.400000 +2608 2216 0.400000 +2608 2284 0.400000 +2608 2347 0.400000 +2608 2368 0.400000 +2608 2370 0.400000 +2608 2394 0.400000 +2608 2430 0.400000 +2608 2440 0.400000 +2608 2472 0.400000 +2608 2477 0.400000 +2608 2497 0.400000 +2608 2540 0.400000 +2608 2544 0.400000 +2608 2629 0.400000 +2608 2743 0.400000 +2608 2792 0.400000 +2608 2925 0.400000 +2608 3080 0.400000 +2608 3097 0.400000 +2609 108 0.400000 +2609 123 0.400000 +2609 342 0.400000 +2609 407 0.400000 +2609 416 0.400000 +2609 528 0.400000 +2609 558 0.400000 +2609 604 0.400000 +2609 780 0.400000 +2609 790 0.400000 +2609 874 0.400000 +2609 946 0.400000 +2609 988 0.400000 +2609 990 0.400000 +2609 1045 0.400000 +2609 1052 0.400000 +2609 1069 0.400000 +2609 1077 0.400000 +2609 1092 0.400000 +2609 1147 0.400000 +2609 1196 0.400000 +2609 1200 0.400000 +2609 1223 0.400000 +2609 1242 0.400000 +2609 1304 0.400000 +2609 1335 0.400000 +2609 1345 0.400000 +2609 1408 0.400000 +2609 1597 0.400000 +2609 1612 0.400000 +2609 1614 0.400000 +2609 1848 0.400000 +2609 1904 0.400000 +2609 2000 0.400000 +2609 2090 0.400000 +2609 2122 0.400000 +2609 2239 0.400000 +2609 2243 0.400000 +2609 2251 0.400000 +2609 2261 0.400000 +2609 2322 0.400000 +2609 2324 0.400000 +2609 2415 0.400000 +2609 2428 0.400000 +2609 2476 0.400000 +2609 2527 0.400000 +2609 2535 0.400000 +2609 2552 0.400000 +2609 2586 0.400000 +2609 2588 0.400000 +2609 2596 0.400000 +2609 2757 0.400000 +2609 2856 0.400000 +2609 2861 0.400000 +2609 2884 0.400000 +2609 2895 0.400000 +2609 2902 0.400000 +2609 2905 0.400000 +2609 2952 0.400000 +2609 2962 0.400000 +2609 2987 0.400000 +2609 3080 0.400000 +2610 63 0.400000 +2610 68 0.400000 +2610 91 0.400000 +2610 109 0.400000 +2610 169 0.400000 +2610 217 0.400000 +2610 291 0.400000 +2610 294 0.400000 +2610 327 0.400000 +2610 336 0.400000 +2610 415 0.400000 +2610 425 0.400000 +2610 433 0.400000 +2610 435 0.400000 +2610 490 0.400000 +2610 563 0.400000 +2610 605 0.400000 +2610 663 0.400000 +2610 765 0.400000 +2610 779 0.400000 +2610 873 0.400000 +2610 903 0.400000 +2610 966 0.400000 +2610 1032 0.400000 +2610 1049 0.400000 +2610 1128 0.400000 +2610 1313 0.400000 +2610 1460 0.400000 +2610 1502 0.400000 +2610 1547 0.400000 +2610 1683 0.400000 +2610 1697 0.400000 +2610 1701 0.400000 +2610 1729 0.400000 +2610 1761 0.400000 +2610 1781 0.400000 +2610 1782 0.400000 +2610 1787 0.400000 +2610 1971 0.400000 +2610 1994 0.400000 +2610 2001 0.400000 +2610 2028 0.400000 +2610 2063 0.400000 +2610 2070 0.400000 +2610 2085 0.400000 +2610 2251 0.400000 +2610 2431 0.400000 +2610 2478 0.400000 +2610 2504 0.400000 +2610 2505 0.400000 +2610 2509 0.400000 +2610 2572 0.400000 +2610 2596 0.400000 +2610 2633 0.400000 +2610 2635 0.400000 +2610 2663 0.400000 +2610 2673 0.400000 +2610 2799 0.400000 +2610 2815 0.400000 +2610 2836 0.400000 +2610 2841 0.400000 +2610 2880 0.400000 +2610 2936 0.400000 +2610 2953 0.400000 +2610 2955 0.400000 +2610 2968 0.400000 +2610 3032 0.400000 +2610 3067 0.400000 +2610 3144 0.400000 +2610 3145 0.400000 +2610 3146 0.400000 +2610 3196 0.400000 +2611 78 0.400000 +2611 147 0.400000 +2611 166 0.400000 +2611 206 0.400000 +2611 273 0.400000 +2611 280 0.400000 +2611 343 0.400000 +2611 405 0.400000 +2611 446 0.400000 +2611 548 0.400000 +2611 567 0.400000 +2611 592 0.400000 +2611 696 0.400000 +2611 706 0.400000 +2611 721 0.400000 +2611 786 0.400000 +2611 822 0.400000 +2611 928 0.400000 +2611 980 0.400000 +2611 981 0.400000 +2611 995 0.400000 +2611 1006 0.400000 +2611 1024 0.400000 +2611 1062 0.400000 +2611 1143 0.400000 +2611 1189 0.400000 +2611 1243 0.400000 +2611 1288 0.400000 +2611 1308 0.400000 +2611 1397 0.400000 +2611 1423 0.400000 +2611 1454 0.400000 +2611 1462 0.400000 +2611 1560 0.400000 +2611 1574 0.400000 +2611 1653 0.400000 +2611 1660 0.400000 +2611 1754 0.400000 +2611 1818 0.400000 +2611 1851 0.400000 +2611 2042 0.400000 +2611 2062 0.400000 +2611 2077 0.400000 +2611 2097 0.400000 +2611 2125 0.400000 +2611 2190 0.400000 +2611 2270 0.400000 +2611 2308 0.400000 +2611 2493 0.400000 +2611 2511 0.400000 +2611 2560 0.400000 +2611 2564 0.400000 +2611 2768 0.400000 +2611 2785 0.400000 +2611 2951 0.400000 +2611 2995 0.400000 +2611 2999 0.400000 +2611 3091 0.400000 +2611 3127 0.400000 +2611 3141 0.400000 +2612 14 0.400000 +2612 124 0.400000 +2612 167 0.400000 +2612 220 0.400000 +2612 253 0.400000 +2612 295 0.400000 +2612 506 0.400000 +2612 526 0.400000 +2612 546 0.400000 +2612 564 0.400000 +2612 589 0.400000 +2612 609 0.400000 +2612 620 0.400000 +2612 712 0.400000 +2612 739 0.400000 +2612 750 0.400000 +2612 810 0.400000 +2612 831 0.400000 +2612 840 0.400000 +2612 850 0.400000 +2612 915 0.400000 +2612 954 0.400000 +2612 1039 0.400000 +2612 1099 0.400000 +2612 1115 0.400000 +2612 1144 0.400000 +2612 1179 0.400000 +2612 1183 0.400000 +2612 1184 0.400000 +2612 1252 0.400000 +2612 1284 0.400000 +2612 1364 0.400000 +2612 1415 0.400000 +2612 1422 0.400000 +2612 1428 0.400000 +2612 1454 0.400000 +2612 1459 0.400000 +2612 1816 0.400000 +2612 1880 0.400000 +2612 1887 0.400000 +2612 1897 0.400000 +2612 1921 0.400000 +2612 1932 0.400000 +2612 1935 0.400000 +2612 1938 0.400000 +2612 1972 0.400000 +2612 1978 0.400000 +2612 2003 0.400000 +2612 2050 0.400000 +2612 2072 0.400000 +2612 2120 0.400000 +2612 2147 0.400000 +2612 2185 0.400000 +2612 2310 0.400000 +2612 2385 0.400000 +2612 2433 0.400000 +2612 2467 0.400000 +2612 2473 0.400000 +2612 2482 0.400000 +2612 2486 0.400000 +2612 2638 0.400000 +2612 2655 0.400000 +2612 2715 0.400000 +2612 2822 0.400000 +2612 2837 0.400000 +2612 2862 0.400000 +2612 2870 0.400000 +2612 2934 0.400000 +2612 2978 0.400000 +2612 2984 0.400000 +2612 2988 0.400000 +2612 3012 0.400000 +2612 3070 0.400000 +2612 3094 0.400000 +2612 3170 0.400000 +2612 3171 0.400000 +2612 3192 0.400000 +2613 1 0.400000 +2613 115 0.400000 +2613 120 0.400000 +2613 128 0.400000 +2613 216 0.400000 +2613 222 0.400000 +2613 320 0.400000 +2613 348 0.400000 +2613 629 0.400000 +2613 666 0.400000 +2613 746 0.400000 +2613 749 0.400000 +2613 872 0.400000 +2613 886 0.400000 +2613 911 0.400000 +2613 934 0.400000 +2613 972 0.400000 +2613 979 0.400000 +2613 1063 0.400000 +2613 1072 0.400000 +2613 1137 0.400000 +2613 1246 0.400000 +2613 1278 0.400000 +2613 1283 0.400000 +2613 1492 0.400000 +2613 1494 0.400000 +2613 1562 0.400000 +2613 1720 0.400000 +2613 1741 0.400000 +2613 1851 0.400000 +2613 1870 0.400000 +2613 1922 0.400000 +2613 1964 0.400000 +2613 1992 0.400000 +2613 2025 0.400000 +2613 2029 0.400000 +2613 2049 0.400000 +2613 2088 0.400000 +2613 2102 0.400000 +2613 2378 0.400000 +2613 2474 0.400000 +2613 2514 0.400000 +2613 2561 0.400000 +2613 2608 0.400000 +2613 2663 0.400000 +2613 2784 0.400000 +2613 2786 0.400000 +2613 2792 0.400000 +2613 2862 0.400000 +2613 2867 0.400000 +2613 3013 0.400000 +2613 3017 0.400000 +2613 3018 0.400000 +2613 3041 0.400000 +2613 3061 0.400000 +2613 3156 0.400000 +2613 3163 0.400000 +2613 3176 0.400000 +2613 3195 0.400000 +2614 6 0.400000 +2614 12 0.400000 +2614 77 0.400000 +2614 115 0.400000 +2614 152 0.400000 +2614 165 0.400000 +2614 251 0.400000 +2614 366 0.400000 +2614 406 0.400000 +2614 460 0.400000 +2614 531 0.400000 +2614 571 0.400000 +2614 615 0.400000 +2614 712 0.400000 +2614 765 0.400000 +2614 803 0.400000 +2614 981 0.400000 +2614 1007 0.400000 +2614 1069 0.400000 +2614 1145 0.400000 +2614 1205 0.400000 +2614 1209 0.400000 +2614 1232 0.400000 +2614 1264 0.400000 +2614 1363 0.400000 +2614 1417 0.400000 +2614 1420 0.400000 +2614 1422 0.400000 +2614 1428 0.400000 +2614 1445 0.400000 +2614 1486 0.400000 +2614 1512 0.400000 +2614 1560 0.400000 +2614 1620 0.400000 +2614 1686 0.400000 +2614 1828 0.400000 +2614 1846 0.400000 +2614 1875 0.400000 +2614 1889 0.400000 +2614 1921 0.400000 +2614 2055 0.400000 +2614 2093 0.400000 +2614 2112 0.400000 +2614 2164 0.400000 +2614 2210 0.400000 +2614 2243 0.400000 +2614 2258 0.400000 +2614 2294 0.400000 +2614 2327 0.400000 +2614 2428 0.400000 +2614 2462 0.400000 +2614 2634 0.400000 +2614 2875 0.400000 +2614 2881 0.400000 +2614 2964 0.400000 +2614 3018 0.400000 +2614 3033 0.400000 +2614 3115 0.400000 +2614 3128 0.400000 +2615 45 0.400000 +2615 51 0.400000 +2615 112 0.400000 +2615 143 0.400000 +2615 167 0.400000 +2615 180 0.400000 +2615 242 0.400000 +2615 457 0.400000 +2615 466 0.400000 +2615 484 0.400000 +2615 488 0.400000 +2615 554 0.400000 +2615 562 0.400000 +2615 563 0.400000 +2615 579 0.400000 +2615 598 0.400000 +2615 699 0.400000 +2615 719 0.400000 +2615 734 0.400000 +2615 740 0.400000 +2615 790 0.400000 +2615 981 0.400000 +2615 1000 0.400000 +2615 1007 0.400000 +2615 1085 0.400000 +2615 1091 0.400000 +2615 1202 0.400000 +2615 1259 0.400000 +2615 1303 0.400000 +2615 1322 0.400000 +2615 1339 0.400000 +2615 1359 0.400000 +2615 1471 0.400000 +2615 1599 0.400000 +2615 1639 0.400000 +2615 1813 0.400000 +2615 1830 0.400000 +2615 1905 0.400000 +2615 1907 0.400000 +2615 1948 0.400000 +2615 1952 0.400000 +2615 1981 0.400000 +2615 1988 0.400000 +2615 2065 0.400000 +2615 2112 0.400000 +2615 2305 0.400000 +2615 2327 0.400000 +2615 2445 0.400000 +2615 2471 0.400000 +2615 2582 0.400000 +2615 2660 0.400000 +2615 2688 0.400000 +2615 2695 0.400000 +2615 2719 0.400000 +2615 2730 0.400000 +2615 2750 0.400000 +2615 2788 0.400000 +2615 2806 0.400000 +2615 2811 0.400000 +2615 2951 0.400000 +2615 2992 0.400000 +2615 3030 0.400000 +2615 3101 0.400000 +2615 3119 0.400000 +2615 3170 0.400000 +2615 3191 0.400000 +2616 4 0.400000 +2616 10 0.400000 +2616 93 0.400000 +2616 184 0.400000 +2616 256 0.400000 +2616 279 0.400000 +2616 300 0.400000 +2616 318 0.400000 +2616 319 0.400000 +2616 493 0.400000 +2616 521 0.400000 +2616 539 0.400000 +2616 657 0.400000 +2616 721 0.400000 +2616 735 0.400000 +2616 760 0.400000 +2616 820 0.400000 +2616 842 0.400000 +2616 843 0.400000 +2616 861 0.400000 +2616 954 0.400000 +2616 1019 0.400000 +2616 1041 0.400000 +2616 1179 0.400000 +2616 1281 0.400000 +2616 1401 0.400000 +2616 1414 0.400000 +2616 1435 0.400000 +2616 1468 0.400000 +2616 1514 0.400000 +2616 1557 0.400000 +2616 1573 0.400000 +2616 1613 0.400000 +2616 1618 0.400000 +2616 1632 0.400000 +2616 1711 0.400000 +2616 1908 0.400000 +2616 1924 0.400000 +2616 1983 0.400000 +2616 1984 0.400000 +2616 2011 0.400000 +2616 2040 0.400000 +2616 2105 0.400000 +2616 2169 0.400000 +2616 2229 0.400000 +2616 2256 0.400000 +2616 2264 0.400000 +2616 2290 0.400000 +2616 2294 0.400000 +2616 2391 0.400000 +2616 2396 0.400000 +2616 2546 0.400000 +2616 2669 0.400000 +2616 2672 0.400000 +2616 2786 0.400000 +2616 2817 0.400000 +2616 2868 0.400000 +2616 2982 0.400000 +2616 2988 0.400000 +2616 3012 0.400000 +2616 3054 0.400000 +2616 3072 0.400000 +2616 3082 0.400000 +2616 3095 0.400000 +2616 3148 0.400000 +2617 109 0.400000 +2617 178 0.400000 +2617 248 0.400000 +2617 332 0.400000 +2617 356 0.400000 +2617 451 0.400000 +2617 620 0.400000 +2617 736 0.400000 +2617 793 0.400000 +2617 922 0.400000 +2617 924 0.400000 +2617 1013 0.400000 +2617 1054 0.400000 +2617 1058 0.400000 +2617 1070 0.400000 +2617 1085 0.400000 +2617 1203 0.400000 +2617 1207 0.400000 +2617 1348 0.400000 +2617 1361 0.400000 +2617 1402 0.400000 +2617 1462 0.400000 +2617 1549 0.400000 +2617 1552 0.400000 +2617 1614 0.400000 +2617 1621 0.400000 +2617 1670 0.400000 +2617 1830 0.400000 +2617 1854 0.400000 +2617 1951 0.400000 +2617 2022 0.400000 +2617 2051 0.400000 +2617 2151 0.400000 +2617 2173 0.400000 +2617 2182 0.400000 +2617 2264 0.400000 +2617 2304 0.400000 +2617 2431 0.400000 +2617 2462 0.400000 +2617 2587 0.400000 +2617 2598 0.400000 +2617 2618 0.400000 +2617 2766 0.400000 +2617 2796 0.400000 +2617 2876 0.400000 +2617 2927 0.400000 +2617 3011 0.400000 +2617 3114 0.400000 +2617 3140 0.400000 +2617 3184 0.400000 +2618 42 0.400000 +2618 67 0.400000 +2618 154 0.400000 +2618 294 0.400000 +2618 312 0.400000 +2618 341 0.400000 +2618 350 0.400000 +2618 565 0.400000 +2618 642 0.400000 +2618 643 0.400000 +2618 726 0.400000 +2618 765 0.400000 +2618 880 0.400000 +2618 906 0.400000 +2618 912 0.400000 +2618 931 0.400000 +2618 1181 0.400000 +2618 1226 0.400000 +2618 1280 0.400000 +2618 1312 0.400000 +2618 1338 0.400000 +2618 1465 0.400000 +2618 1475 0.400000 +2618 1500 0.400000 +2618 1532 0.400000 +2618 1539 0.400000 +2618 1549 0.400000 +2618 1571 0.400000 +2618 1583 0.400000 +2618 1633 0.400000 +2618 1677 0.400000 +2618 1795 0.400000 +2618 1804 0.400000 +2618 1834 0.400000 +2618 1860 0.400000 +2618 1883 0.400000 +2618 1885 0.400000 +2618 1923 0.400000 +2618 1933 0.400000 +2618 1940 0.400000 +2618 2028 0.400000 +2618 2103 0.400000 +2618 2187 0.400000 +2618 2251 0.400000 +2618 2268 0.400000 +2618 2307 0.400000 +2618 2319 0.400000 +2618 2329 0.400000 +2618 2384 0.400000 +2618 2421 0.400000 +2618 2422 0.400000 +2618 2436 0.400000 +2618 2446 0.400000 +2618 2561 0.400000 +2618 2657 0.400000 +2618 2660 0.400000 +2618 2780 0.400000 +2618 2935 0.400000 +2618 3086 0.400000 +2618 3089 0.400000 +2618 3135 0.400000 +2618 3195 0.400000 +2619 11 0.400000 +2619 39 0.400000 +2619 64 0.400000 +2619 79 0.400000 +2619 130 0.400000 +2619 168 0.400000 +2619 202 0.400000 +2619 236 0.400000 +2619 246 0.400000 +2619 253 0.400000 +2619 391 0.400000 +2619 413 0.400000 +2619 452 0.400000 +2619 471 0.400000 +2619 497 0.400000 +2619 528 0.400000 +2619 531 0.400000 +2619 596 0.400000 +2619 602 0.400000 +2619 655 0.400000 +2619 716 0.400000 +2619 755 0.400000 +2619 784 0.400000 +2619 807 0.400000 +2619 821 0.400000 +2619 834 0.400000 +2619 844 0.400000 +2619 857 0.400000 +2619 930 0.400000 +2619 968 0.400000 +2619 1110 0.400000 +2619 1220 0.400000 +2619 1249 0.400000 +2619 1263 0.400000 +2619 1360 0.400000 +2619 1389 0.400000 +2619 1416 0.400000 +2619 1480 0.400000 +2619 1497 0.400000 +2619 1508 0.400000 +2619 1524 0.400000 +2619 1557 0.400000 +2619 1601 0.400000 +2619 1723 0.400000 +2619 1748 0.400000 +2619 1779 0.400000 +2619 1805 0.400000 +2619 1821 0.400000 +2619 1904 0.400000 +2619 2037 0.400000 +2619 2124 0.400000 +2619 2151 0.400000 +2619 2241 0.400000 +2619 2278 0.400000 +2619 2295 0.400000 +2619 2368 0.400000 +2619 2371 0.400000 +2619 2457 0.400000 +2619 2471 0.400000 +2619 2472 0.400000 +2619 2482 0.400000 +2619 2499 0.400000 +2619 2530 0.400000 +2619 2560 0.400000 +2619 2565 0.400000 +2619 2595 0.400000 +2619 2613 0.400000 +2619 2654 0.400000 +2619 2675 0.400000 +2619 2740 0.400000 +2619 2801 0.400000 +2619 2803 0.400000 +2619 2814 0.400000 +2619 2870 0.400000 +2619 2938 0.400000 +2619 2965 0.400000 +2619 3058 0.400000 +2619 3122 0.400000 +2620 203 0.400000 +2620 211 0.400000 +2620 229 0.400000 +2620 273 0.400000 +2620 311 0.400000 +2620 350 0.400000 +2620 384 0.400000 +2620 427 0.400000 +2620 440 0.400000 +2620 517 0.400000 +2620 670 0.400000 +2620 708 0.400000 +2620 811 0.400000 +2620 860 0.400000 +2620 887 0.400000 +2620 977 0.400000 +2620 1122 0.400000 +2620 1146 0.400000 +2620 1209 0.400000 +2620 1236 0.400000 +2620 1322 0.400000 +2620 1444 0.400000 +2620 1471 0.400000 +2620 1506 0.400000 +2620 1563 0.400000 +2620 1567 0.400000 +2620 1580 0.400000 +2620 1598 0.400000 +2620 1699 0.400000 +2620 1850 0.400000 +2620 1867 0.400000 +2620 1976 0.400000 +2620 2026 0.400000 +2620 2047 0.400000 +2620 2092 0.400000 +2620 2172 0.400000 +2620 2199 0.400000 +2620 2239 0.400000 +2620 2248 0.400000 +2620 2270 0.400000 +2620 2281 0.400000 +2620 2362 0.400000 +2620 2383 0.400000 +2620 2460 0.400000 +2620 2466 0.400000 +2620 2538 0.400000 +2620 2548 0.400000 +2620 2707 0.400000 +2620 2713 0.400000 +2620 2720 0.400000 +2620 2730 0.400000 +2620 2756 0.400000 +2620 2781 0.400000 +2620 2821 0.400000 +2620 2854 0.400000 +2620 2902 0.400000 +2620 2992 0.400000 +2620 3062 0.400000 +2620 3126 0.400000 +2620 3134 0.400000 +2621 105 0.400000 +2621 117 0.400000 +2621 217 0.400000 +2621 223 0.400000 +2621 332 0.400000 +2621 441 0.400000 +2621 445 0.400000 +2621 469 0.400000 +2621 545 0.400000 +2621 627 0.400000 +2621 685 0.400000 +2621 712 0.400000 +2621 750 0.400000 +2621 782 0.400000 +2621 804 0.400000 +2621 893 0.400000 +2621 966 0.400000 +2621 971 0.400000 +2621 978 0.400000 +2621 1007 0.400000 +2621 1093 0.400000 +2621 1116 0.400000 +2621 1126 0.400000 +2621 1136 0.400000 +2621 1176 0.400000 +2621 1308 0.400000 +2621 1408 0.400000 +2621 1613 0.400000 +2621 1639 0.400000 +2621 1681 0.400000 +2621 1712 0.400000 +2621 1774 0.400000 +2621 1900 0.400000 +2621 2057 0.400000 +2621 2074 0.400000 +2621 2183 0.400000 +2621 2185 0.400000 +2621 2186 0.400000 +2621 2392 0.400000 +2621 2404 0.400000 +2621 2449 0.400000 +2621 2471 0.400000 +2621 2482 0.400000 +2621 2514 0.400000 +2621 2575 0.400000 +2621 2579 0.400000 +2621 2614 0.400000 +2621 2619 0.400000 +2621 2659 0.400000 +2621 2728 0.400000 +2621 2757 0.400000 +2621 2758 0.400000 +2621 2802 0.400000 +2621 2835 0.400000 +2621 2895 0.400000 +2621 2907 0.400000 +2621 2908 0.400000 +2621 2997 0.400000 +2621 3029 0.400000 +2621 3125 0.400000 +2622 79 0.400000 +2622 132 0.400000 +2622 163 0.400000 +2622 167 0.400000 +2622 299 0.400000 +2622 303 0.400000 +2622 333 0.400000 +2622 403 0.400000 +2622 409 0.400000 +2622 453 0.400000 +2622 683 0.400000 +2622 686 0.400000 +2622 700 0.400000 +2622 764 0.400000 +2622 780 0.400000 +2622 1047 0.400000 +2622 1051 0.400000 +2622 1183 0.400000 +2622 1196 0.400000 +2622 1257 0.400000 +2622 1269 0.400000 +2622 1299 0.400000 +2622 1359 0.400000 +2622 1371 0.400000 +2622 1437 0.400000 +2622 1485 0.400000 +2622 1495 0.400000 +2622 1559 0.400000 +2622 1615 0.400000 +2622 1683 0.400000 +2622 1722 0.400000 +2622 1818 0.400000 +2622 1858 0.400000 +2622 1860 0.400000 +2622 1867 0.400000 +2622 1924 0.400000 +2622 1941 0.400000 +2622 2005 0.400000 +2622 2127 0.400000 +2622 2161 0.400000 +2622 2173 0.400000 +2622 2219 0.400000 +2622 2228 0.400000 +2622 2270 0.400000 +2622 2488 0.400000 +2622 2629 0.400000 +2622 2650 0.400000 +2622 2663 0.400000 +2622 2698 0.400000 +2622 2700 0.400000 +2622 2736 0.400000 +2622 2763 0.400000 +2622 2887 0.400000 +2622 2940 0.400000 +2622 3048 0.400000 +2622 3113 0.400000 +2622 3149 0.400000 +2623 64 0.400000 +2623 99 0.400000 +2623 112 0.400000 +2623 117 0.400000 +2623 165 0.400000 +2623 171 0.400000 +2623 239 0.400000 +2623 243 0.400000 +2623 287 0.400000 +2623 292 0.400000 +2623 306 0.400000 +2623 339 0.400000 +2623 479 0.400000 +2623 485 0.400000 +2623 527 0.400000 +2623 561 0.400000 +2623 627 0.400000 +2623 731 0.400000 +2623 738 0.400000 +2623 742 0.400000 +2623 773 0.400000 +2623 832 0.400000 +2623 871 0.400000 +2623 895 0.400000 +2623 931 0.400000 +2623 955 0.400000 +2623 1009 0.400000 +2623 1077 0.400000 +2623 1133 0.400000 +2623 1161 0.400000 +2623 1183 0.400000 +2623 1232 0.400000 +2623 1240 0.400000 +2623 1242 0.400000 +2623 1504 0.400000 +2623 1532 0.400000 +2623 1563 0.400000 +2623 1643 0.400000 +2623 1648 0.400000 +2623 1667 0.400000 +2623 1718 0.400000 +2623 1821 0.400000 +2623 1829 0.400000 +2623 1902 0.400000 +2623 1945 0.400000 +2623 1948 0.400000 +2623 1964 0.400000 +2623 2011 0.400000 +2623 2032 0.400000 +2623 2120 0.400000 +2623 2146 0.400000 +2623 2157 0.400000 +2623 2204 0.400000 +2623 2277 0.400000 +2623 2354 0.400000 +2623 2457 0.400000 +2623 2565 0.400000 +2623 2603 0.400000 +2623 2654 0.400000 +2623 2676 0.400000 +2623 2730 0.400000 +2623 2910 0.400000 +2623 3048 0.400000 +2623 3051 0.400000 +2623 3099 0.400000 +2623 3106 0.400000 +2623 3130 0.400000 +2623 3139 0.400000 +2623 3144 0.400000 +2623 3162 0.400000 +2624 30 0.400000 +2624 146 0.400000 +2624 267 0.400000 +2624 300 0.400000 +2624 312 0.400000 +2624 368 0.400000 +2624 373 0.400000 +2624 451 0.400000 +2624 479 0.400000 +2624 503 0.400000 +2624 532 0.400000 +2624 580 0.400000 +2624 643 0.400000 +2624 649 0.400000 +2624 729 0.400000 +2624 772 0.400000 +2624 821 0.400000 +2624 853 0.400000 +2624 948 0.400000 +2624 953 0.400000 +2624 966 0.400000 +2624 1020 0.400000 +2624 1054 0.400000 +2624 1079 0.400000 +2624 1105 0.400000 +2624 1129 0.400000 +2624 1152 0.400000 +2624 1153 0.400000 +2624 1230 0.400000 +2624 1266 0.400000 +2624 1275 0.400000 +2624 1298 0.400000 +2624 1341 0.400000 +2624 1368 0.400000 +2624 1403 0.400000 +2624 1491 0.400000 +2624 1493 0.400000 +2624 1555 0.400000 +2624 1616 0.400000 +2624 1618 0.400000 +2624 1728 0.400000 +2624 1748 0.400000 +2624 1797 0.400000 +2624 1817 0.400000 +2624 1819 0.400000 +2624 1844 0.400000 +2624 1853 0.400000 +2624 1876 0.400000 +2624 1942 0.400000 +2624 1953 0.400000 +2624 2189 0.400000 +2624 2256 0.400000 +2624 2340 0.400000 +2624 2400 0.400000 +2624 2475 0.400000 +2624 2632 0.400000 +2624 2645 0.400000 +2624 2670 0.400000 +2624 2687 0.400000 +2624 2787 0.400000 +2624 3008 0.400000 +2624 3084 0.400000 +2624 3141 0.400000 +2624 3194 0.400000 +2625 66 0.400000 +2625 143 0.400000 +2625 190 0.400000 +2625 242 0.400000 +2625 251 0.400000 +2625 272 0.400000 +2625 277 0.400000 +2625 338 0.400000 +2625 362 0.400000 +2625 366 0.400000 +2625 396 0.400000 +2625 440 0.400000 +2625 460 0.400000 +2625 499 0.400000 +2625 503 0.400000 +2625 506 0.400000 +2625 533 0.400000 +2625 625 0.400000 +2625 714 0.400000 +2625 795 0.400000 +2625 818 0.400000 +2625 1140 0.400000 +2625 1159 0.400000 +2625 1184 0.400000 +2625 1196 0.400000 +2625 1206 0.400000 +2625 1242 0.400000 +2625 1250 0.400000 +2625 1265 0.400000 +2625 1285 0.400000 +2625 1378 0.400000 +2625 1549 0.400000 +2625 1550 0.400000 +2625 1552 0.400000 +2625 1642 0.400000 +2625 1803 0.400000 +2625 1872 0.400000 +2625 1888 0.400000 +2625 1939 0.400000 +2625 1947 0.400000 +2625 1967 0.400000 +2625 1999 0.400000 +2625 2015 0.400000 +2625 2125 0.400000 +2625 2188 0.400000 +2625 2228 0.400000 +2625 2374 0.400000 +2625 2514 0.400000 +2625 2529 0.400000 +2625 2536 0.400000 +2625 2540 0.400000 +2625 2623 0.400000 +2625 2675 0.400000 +2625 2781 0.400000 +2625 2782 0.400000 +2625 2792 0.400000 +2625 3031 0.400000 +2625 3047 0.400000 +2625 3084 0.400000 +2626 76 0.400000 +2626 323 0.400000 +2626 344 0.400000 +2626 508 0.400000 +2626 525 0.400000 +2626 527 0.400000 +2626 575 0.400000 +2626 671 0.400000 +2626 673 0.400000 +2626 684 0.400000 +2626 688 0.400000 +2626 729 0.400000 +2626 765 0.400000 +2626 882 0.400000 +2626 938 0.400000 +2626 1034 0.400000 +2626 1060 0.400000 +2626 1116 0.400000 +2626 1153 0.400000 +2626 1182 0.400000 +2626 1202 0.400000 +2626 1323 0.400000 +2626 1422 0.400000 +2626 1497 0.400000 +2626 1530 0.400000 +2626 1592 0.400000 +2626 1599 0.400000 +2626 1611 0.400000 +2626 1625 0.400000 +2626 1656 0.400000 +2626 1661 0.400000 +2626 1670 0.400000 +2626 1699 0.400000 +2626 1748 0.400000 +2626 1874 0.400000 +2626 1969 0.400000 +2626 1979 0.400000 +2626 1992 0.400000 +2626 1994 0.400000 +2626 1999 0.400000 +2626 2024 0.400000 +2626 2029 0.400000 +2626 2104 0.400000 +2626 2254 0.400000 +2626 2325 0.400000 +2626 2396 0.400000 +2626 2458 0.400000 +2626 2555 0.400000 +2626 2562 0.400000 +2626 2571 0.400000 +2626 2588 0.400000 +2626 2604 0.400000 +2626 2634 0.400000 +2626 2643 0.400000 +2626 2739 0.400000 +2626 2791 0.400000 +2626 2817 0.400000 +2626 2826 0.400000 +2626 2943 0.400000 +2626 2963 0.400000 +2626 3064 0.400000 +2626 3078 0.400000 +2626 3155 0.400000 +2627 26 0.400000 +2627 65 0.400000 +2627 155 0.400000 +2627 243 0.400000 +2627 282 0.400000 +2627 352 0.400000 +2627 436 0.400000 +2627 572 0.400000 +2627 600 0.400000 +2627 637 0.400000 +2627 660 0.400000 +2627 757 0.400000 +2627 764 0.400000 +2627 811 0.400000 +2627 859 0.400000 +2627 882 0.400000 +2627 928 0.400000 +2627 939 0.400000 +2627 956 0.400000 +2627 984 0.400000 +2627 1009 0.400000 +2627 1065 0.400000 +2627 1080 0.400000 +2627 1129 0.400000 +2627 1250 0.400000 +2627 1252 0.400000 +2627 1257 0.400000 +2627 1291 0.400000 +2627 1331 0.400000 +2627 1394 0.400000 +2627 1397 0.400000 +2627 1418 0.400000 +2627 1438 0.400000 +2627 1494 0.400000 +2627 1649 0.400000 +2627 1679 0.400000 +2627 1722 0.400000 +2627 1798 0.400000 +2627 1875 0.400000 +2627 1928 0.400000 +2627 2001 0.400000 +2627 2155 0.400000 +2627 2165 0.400000 +2627 2189 0.400000 +2627 2231 0.400000 +2627 2268 0.400000 +2627 2286 0.400000 +2627 2331 0.400000 +2627 2405 0.400000 +2627 2411 0.400000 +2627 2418 0.400000 +2627 2445 0.400000 +2627 2531 0.400000 +2627 2648 0.400000 +2627 2749 0.400000 +2627 2792 0.400000 +2627 2825 0.400000 +2627 2905 0.400000 +2627 2916 0.400000 +2627 2926 0.400000 +2627 2966 0.400000 +2627 2994 0.400000 +2627 3051 0.400000 +2627 3092 0.400000 +2627 3171 0.400000 +2627 3173 0.400000 +2628 142 0.400000 +2628 145 0.400000 +2628 200 0.400000 +2628 251 0.400000 +2628 276 0.400000 +2628 358 0.400000 +2628 394 0.400000 +2628 436 0.400000 +2628 446 0.400000 +2628 450 0.400000 +2628 591 0.400000 +2628 606 0.400000 +2628 672 0.400000 +2628 692 0.400000 +2628 707 0.400000 +2628 749 0.400000 +2628 874 0.400000 +2628 878 0.400000 +2628 898 0.400000 +2628 917 0.400000 +2628 990 0.400000 +2628 1077 0.400000 +2628 1112 0.400000 +2628 1135 0.400000 +2628 1211 0.400000 +2628 1254 0.400000 +2628 1371 0.400000 +2628 1373 0.400000 +2628 1404 0.400000 +2628 1571 0.400000 +2628 1584 0.400000 +2628 1656 0.400000 +2628 1705 0.400000 +2628 1754 0.400000 +2628 1761 0.400000 +2628 1798 0.400000 +2628 1801 0.400000 +2628 1816 0.400000 +2628 1856 0.400000 +2628 1911 0.400000 +2628 1950 0.400000 +2628 1986 0.400000 +2628 2026 0.400000 +2628 2050 0.400000 +2628 2188 0.400000 +2628 2373 0.400000 +2628 2398 0.400000 +2628 2440 0.400000 +2628 2445 0.400000 +2628 2673 0.400000 +2628 2690 0.400000 +2628 2693 0.400000 +2628 2707 0.400000 +2628 2746 0.400000 +2628 2766 0.400000 +2628 2776 0.400000 +2628 2836 0.400000 +2628 2886 0.400000 +2628 2899 0.400000 +2628 2911 0.400000 +2628 3043 0.400000 +2628 3071 0.400000 +2628 3107 0.400000 +2628 3199 0.400000 +2629 12 0.400000 +2629 24 0.400000 +2629 69 0.400000 +2629 91 0.400000 +2629 245 0.400000 +2629 363 0.400000 +2629 395 0.400000 +2629 428 0.400000 +2629 473 0.400000 +2629 511 0.400000 +2629 533 0.400000 +2629 548 0.400000 +2629 777 0.400000 +2629 820 0.400000 +2629 831 0.400000 +2629 907 0.400000 +2629 968 0.400000 +2629 991 0.400000 +2629 1026 0.400000 +2629 1028 0.400000 +2629 1063 0.400000 +2629 1108 0.400000 +2629 1126 0.400000 +2629 1130 0.400000 +2629 1138 0.400000 +2629 1233 0.400000 +2629 1235 0.400000 +2629 1369 0.400000 +2629 1485 0.400000 +2629 1499 0.400000 +2629 1521 0.400000 +2629 1608 0.400000 +2629 1650 0.400000 +2629 1746 0.400000 +2629 1761 0.400000 +2629 1777 0.400000 +2629 1802 0.400000 +2629 1836 0.400000 +2629 1919 0.400000 +2629 1939 0.400000 +2629 1945 0.400000 +2629 2008 0.400000 +2629 2016 0.400000 +2629 2079 0.400000 +2629 2157 0.400000 +2629 2189 0.400000 +2629 2207 0.400000 +2629 2357 0.400000 +2629 2363 0.400000 +2629 2506 0.400000 +2629 2516 0.400000 +2629 2523 0.400000 +2629 2600 0.400000 +2629 2644 0.400000 +2629 2673 0.400000 +2629 2938 0.400000 +2629 3001 0.400000 +2630 71 0.400000 +2630 117 0.400000 +2630 123 0.400000 +2630 152 0.400000 +2630 212 0.400000 +2630 222 0.400000 +2630 412 0.400000 +2630 554 0.400000 +2630 569 0.400000 +2630 570 0.400000 +2630 628 0.400000 +2630 638 0.400000 +2630 779 0.400000 +2630 799 0.400000 +2630 857 0.400000 +2630 940 0.400000 +2630 945 0.400000 +2630 971 0.400000 +2630 974 0.400000 +2630 1117 0.400000 +2630 1227 0.400000 +2630 1249 0.400000 +2630 1325 0.400000 +2630 1412 0.400000 +2630 1507 0.400000 +2630 1523 0.400000 +2630 1552 0.400000 +2630 1660 0.400000 +2630 1671 0.400000 +2630 1774 0.400000 +2630 1821 0.400000 +2630 1891 0.400000 +2630 2077 0.400000 +2630 2142 0.400000 +2630 2160 0.400000 +2630 2295 0.400000 +2630 2384 0.400000 +2630 2516 0.400000 +2630 2546 0.400000 +2630 2609 0.400000 +2630 2630 0.400000 +2630 2695 0.400000 +2630 2767 0.400000 +2630 2808 0.400000 +2630 2875 0.400000 +2630 2924 0.400000 +2631 31 0.400000 +2631 76 0.400000 +2631 269 0.400000 +2631 377 0.400000 +2631 416 0.400000 +2631 499 0.400000 +2631 564 0.400000 +2631 650 0.400000 +2631 787 0.400000 +2631 819 0.400000 +2631 821 0.400000 +2631 857 0.400000 +2631 930 0.400000 +2631 932 0.400000 +2631 941 0.400000 +2631 966 0.400000 +2631 983 0.400000 +2631 1054 0.400000 +2631 1125 0.400000 +2631 1147 0.400000 +2631 1175 0.400000 +2631 1210 0.400000 +2631 1242 0.400000 +2631 1277 0.400000 +2631 1306 0.400000 +2631 1342 0.400000 +2631 1352 0.400000 +2631 1506 0.400000 +2631 1513 0.400000 +2631 1529 0.400000 +2631 1611 0.400000 +2631 1623 0.400000 +2631 1723 0.400000 +2631 1739 0.400000 +2631 1764 0.400000 +2631 1807 0.400000 +2631 1880 0.400000 +2631 1949 0.400000 +2631 2030 0.400000 +2631 2085 0.400000 +2631 2106 0.400000 +2631 2108 0.400000 +2631 2114 0.400000 +2631 2158 0.400000 +2631 2223 0.400000 +2631 2234 0.400000 +2631 2421 0.400000 +2631 2540 0.400000 +2631 2671 0.400000 +2631 2789 0.400000 +2631 2822 0.400000 +2631 2993 0.400000 +2631 2997 0.400000 +2631 3166 0.400000 +2631 3184 0.400000 +2631 3189 0.400000 +2632 32 0.400000 +2632 92 0.400000 +2632 125 0.400000 +2632 130 0.400000 +2632 146 0.400000 +2632 149 0.400000 +2632 271 0.400000 +2632 312 0.400000 +2632 382 0.400000 +2632 404 0.400000 +2632 419 0.400000 +2632 438 0.400000 +2632 481 0.400000 +2632 489 0.400000 +2632 505 0.400000 +2632 534 0.400000 +2632 616 0.400000 +2632 622 0.400000 +2632 662 0.400000 +2632 704 0.400000 +2632 826 0.400000 +2632 828 0.400000 +2632 845 0.400000 +2632 860 0.400000 +2632 901 0.400000 +2632 912 0.400000 +2632 935 0.400000 +2632 983 0.400000 +2632 1006 0.400000 +2632 1009 0.400000 +2632 1013 0.400000 +2632 1016 0.400000 +2632 1044 0.400000 +2632 1051 0.400000 +2632 1096 0.400000 +2632 1190 0.400000 +2632 1228 0.400000 +2632 1230 0.400000 +2632 1259 0.400000 +2632 1290 0.400000 +2632 1291 0.400000 +2632 1302 0.400000 +2632 1372 0.400000 +2632 1397 0.400000 +2632 1471 0.400000 +2632 1481 0.400000 +2632 1510 0.400000 +2632 1614 0.400000 +2632 1620 0.400000 +2632 1690 0.400000 +2632 1716 0.400000 +2632 1831 0.400000 +2632 1893 0.400000 +2632 1907 0.400000 +2632 1950 0.400000 +2632 1966 0.400000 +2632 2047 0.400000 +2632 2147 0.400000 +2632 2186 0.400000 +2632 2218 0.400000 +2632 2307 0.400000 +2632 2319 0.400000 +2632 2332 0.400000 +2632 2387 0.400000 +2632 2394 0.400000 +2632 2495 0.400000 +2632 2511 0.400000 +2632 2593 0.400000 +2632 2625 0.400000 +2632 2653 0.400000 +2632 2660 0.400000 +2632 2722 0.400000 +2632 2769 0.400000 +2632 2778 0.400000 +2632 2916 0.400000 +2632 2956 0.400000 +2632 3064 0.400000 +2633 21 0.400000 +2633 106 0.400000 +2633 159 0.400000 +2633 176 0.400000 +2633 191 0.400000 +2633 223 0.400000 +2633 251 0.400000 +2633 254 0.400000 +2633 301 0.400000 +2633 332 0.400000 +2633 346 0.400000 +2633 457 0.400000 +2633 525 0.400000 +2633 536 0.400000 +2633 541 0.400000 +2633 551 0.400000 +2633 603 0.400000 +2633 794 0.400000 +2633 951 0.400000 +2633 960 0.400000 +2633 1008 0.400000 +2633 1043 0.400000 +2633 1045 0.400000 +2633 1138 0.400000 +2633 1140 0.400000 +2633 1154 0.400000 +2633 1156 0.400000 +2633 1178 0.400000 +2633 1264 0.400000 +2633 1269 0.400000 +2633 1435 0.400000 +2633 1470 0.400000 +2633 1479 0.400000 +2633 1556 0.400000 +2633 1560 0.400000 +2633 1563 0.400000 +2633 1636 0.400000 +2633 1641 0.400000 +2633 1653 0.400000 +2633 1692 0.400000 +2633 1699 0.400000 +2633 1722 0.400000 +2633 1734 0.400000 +2633 1782 0.400000 +2633 1829 0.400000 +2633 1881 0.400000 +2633 1984 0.400000 +2633 2049 0.400000 +2633 2087 0.400000 +2633 2103 0.400000 +2633 2178 0.400000 +2633 2181 0.400000 +2633 2213 0.400000 +2633 2267 0.400000 +2633 2407 0.400000 +2633 2489 0.400000 +2633 2547 0.400000 +2633 2618 0.400000 +2633 2632 0.400000 +2633 2684 0.400000 +2633 2839 0.400000 +2633 2855 0.400000 +2633 2857 0.400000 +2633 2912 0.400000 +2633 2993 0.400000 +2633 3081 0.400000 +2634 329 0.400000 +2634 357 0.400000 +2634 373 0.400000 +2634 435 0.400000 +2634 481 0.400000 +2634 536 0.400000 +2634 643 0.400000 +2634 690 0.400000 +2634 704 0.400000 +2634 738 0.400000 +2634 743 0.400000 +2634 787 0.400000 +2634 910 0.400000 +2634 941 0.400000 +2634 952 0.400000 +2634 974 0.400000 +2634 986 0.400000 +2634 995 0.400000 +2634 1020 0.400000 +2634 1029 0.400000 +2634 1038 0.400000 +2634 1060 0.400000 +2634 1106 0.400000 +2634 1309 0.400000 +2634 1363 0.400000 +2634 1391 0.400000 +2634 1399 0.400000 +2634 1477 0.400000 +2634 1531 0.400000 +2634 1533 0.400000 +2634 1563 0.400000 +2634 1582 0.400000 +2634 1586 0.400000 +2634 1679 0.400000 +2634 1684 0.400000 +2634 1737 0.400000 +2634 1758 0.400000 +2634 1938 0.400000 +2634 2008 0.400000 +2634 2027 0.400000 +2634 2079 0.400000 +2634 2124 0.400000 +2634 2241 0.400000 +2634 2308 0.400000 +2634 2325 0.400000 +2634 2336 0.400000 +2634 2358 0.400000 +2634 2384 0.400000 +2634 2387 0.400000 +2634 2395 0.400000 +2634 2521 0.400000 +2634 2575 0.400000 +2634 2577 0.400000 +2634 2606 0.400000 +2634 2678 0.400000 +2634 2680 0.400000 +2634 2738 0.400000 +2634 2743 0.400000 +2634 2773 0.400000 +2634 2799 0.400000 +2634 2862 0.400000 +2634 2940 0.400000 +2634 2943 0.400000 +2634 3046 0.400000 +2634 3071 0.400000 +2634 3093 0.400000 +2634 3141 0.400000 +2635 3 0.400000 +2635 111 0.400000 +2635 133 0.400000 +2635 141 0.400000 +2635 274 0.400000 +2635 310 0.400000 +2635 312 0.400000 +2635 328 0.400000 +2635 352 0.400000 +2635 368 0.400000 +2635 371 0.400000 +2635 433 0.400000 +2635 440 0.400000 +2635 466 0.400000 +2635 527 0.400000 +2635 641 0.400000 +2635 670 0.400000 +2635 676 0.400000 +2635 729 0.400000 +2635 745 0.400000 +2635 852 0.400000 +2635 927 0.400000 +2635 967 0.400000 +2635 1051 0.400000 +2635 1068 0.400000 +2635 1179 0.400000 +2635 1238 0.400000 +2635 1268 0.400000 +2635 1276 0.400000 +2635 1316 0.400000 +2635 1323 0.400000 +2635 1374 0.400000 +2635 1484 0.400000 +2635 1489 0.400000 +2635 1589 0.400000 +2635 1633 0.400000 +2635 1639 0.400000 +2635 1728 0.400000 +2635 1817 0.400000 +2635 1861 0.400000 +2635 1898 0.400000 +2635 1911 0.400000 +2635 1917 0.400000 +2635 2100 0.400000 +2635 2106 0.400000 +2635 2148 0.400000 +2635 2169 0.400000 +2635 2171 0.400000 +2635 2254 0.400000 +2635 2277 0.400000 +2635 2301 0.400000 +2635 2343 0.400000 +2635 2363 0.400000 +2635 2414 0.400000 +2635 2424 0.400000 +2635 2431 0.400000 +2635 2515 0.400000 +2635 2556 0.400000 +2635 2612 0.400000 +2635 2623 0.400000 +2635 2672 0.400000 +2635 2695 0.400000 +2635 2722 0.400000 +2635 2735 0.400000 +2635 2777 0.400000 +2635 2795 0.400000 +2635 2869 0.400000 +2635 3018 0.400000 +2635 3026 0.400000 +2635 3105 0.400000 +2636 81 0.400000 +2636 154 0.400000 +2636 170 0.400000 +2636 218 0.400000 +2636 327 0.400000 +2636 392 0.400000 +2636 398 0.400000 +2636 418 0.400000 +2636 448 0.400000 +2636 471 0.400000 +2636 608 0.400000 +2636 624 0.400000 +2636 653 0.400000 +2636 738 0.400000 +2636 759 0.400000 +2636 912 0.400000 +2636 975 0.400000 +2636 1013 0.400000 +2636 1023 0.400000 +2636 1110 0.400000 +2636 1137 0.400000 +2636 1138 0.400000 +2636 1159 0.400000 +2636 1164 0.400000 +2636 1234 0.400000 +2636 1283 0.400000 +2636 1284 0.400000 +2636 1345 0.400000 +2636 1366 0.400000 +2636 1379 0.400000 +2636 1402 0.400000 +2636 1491 0.400000 +2636 1495 0.400000 +2636 1549 0.400000 +2636 1672 0.400000 +2636 1775 0.400000 +2636 1810 0.400000 +2636 1857 0.400000 +2636 1859 0.400000 +2636 1941 0.400000 +2636 2020 0.400000 +2636 2029 0.400000 +2636 2033 0.400000 +2636 2044 0.400000 +2636 2155 0.400000 +2636 2384 0.400000 +2636 2474 0.400000 +2636 2522 0.400000 +2636 2588 0.400000 +2636 2697 0.400000 +2636 2739 0.400000 +2636 2743 0.400000 +2636 2793 0.400000 +2636 2886 0.400000 +2636 2944 0.400000 +2636 2961 0.400000 +2636 2966 0.400000 +2636 3138 0.400000 +2637 15 0.400000 +2637 46 0.400000 +2637 56 0.400000 +2637 161 0.400000 +2637 212 0.400000 +2637 294 0.400000 +2637 386 0.400000 +2637 401 0.400000 +2637 417 0.400000 +2637 427 0.400000 +2637 648 0.400000 +2637 756 0.400000 +2637 806 0.400000 +2637 841 0.400000 +2637 872 0.400000 +2637 873 0.400000 +2637 924 0.400000 +2637 1044 0.400000 +2637 1102 0.400000 +2637 1185 0.400000 +2637 1198 0.400000 +2637 1278 0.400000 +2637 1383 0.400000 +2637 1448 0.400000 +2637 1538 0.400000 +2637 1552 0.400000 +2637 1621 0.400000 +2637 1686 0.400000 +2637 1688 0.400000 +2637 1724 0.400000 +2637 1847 0.400000 +2637 1952 0.400000 +2637 1961 0.400000 +2637 2035 0.400000 +2637 2074 0.400000 +2637 2095 0.400000 +2637 2148 0.400000 +2637 2212 0.400000 +2637 2272 0.400000 +2637 2273 0.400000 +2637 2436 0.400000 +2637 2469 0.400000 +2637 2562 0.400000 +2637 2593 0.400000 +2637 2650 0.400000 +2637 2704 0.400000 +2637 2725 0.400000 +2637 2754 0.400000 +2637 2901 0.400000 +2637 2960 0.400000 +2637 3023 0.400000 +2637 3178 0.400000 +2637 3197 0.400000 +2638 96 0.400000 +2638 128 0.400000 +2638 168 0.400000 +2638 227 0.400000 +2638 280 0.400000 +2638 398 0.400000 +2638 437 0.400000 +2638 458 0.400000 +2638 497 0.400000 +2638 574 0.400000 +2638 607 0.400000 +2638 649 0.400000 +2638 683 0.400000 +2638 699 0.400000 +2638 700 0.400000 +2638 708 0.400000 +2638 784 0.400000 +2638 878 0.400000 +2638 955 0.400000 +2638 1179 0.400000 +2638 1217 0.400000 +2638 1236 0.400000 +2638 1273 0.400000 +2638 1294 0.400000 +2638 1303 0.400000 +2638 1427 0.400000 +2638 1481 0.400000 +2638 1538 0.400000 +2638 1578 0.400000 +2638 1594 0.400000 +2638 1634 0.400000 +2638 1641 0.400000 +2638 1773 0.400000 +2638 1817 0.400000 +2638 1838 0.400000 +2638 1870 0.400000 +2638 1947 0.400000 +2638 1992 0.400000 +2638 2000 0.400000 +2638 2022 0.400000 +2638 2125 0.400000 +2638 2150 0.400000 +2638 2216 0.400000 +2638 2258 0.400000 +2638 2268 0.400000 +2638 2305 0.400000 +2638 2331 0.400000 +2638 2356 0.400000 +2638 2386 0.400000 +2638 2412 0.400000 +2638 2435 0.400000 +2638 2473 0.400000 +2638 2533 0.400000 +2638 2555 0.400000 +2638 2618 0.400000 +2638 2639 0.400000 +2638 2642 0.400000 +2638 2655 0.400000 +2638 2660 0.400000 +2638 2689 0.400000 +2638 2759 0.400000 +2638 2892 0.400000 +2638 2989 0.400000 +2639 46 0.400000 +2639 75 0.400000 +2639 115 0.400000 +2639 163 0.400000 +2639 192 0.400000 +2639 214 0.400000 +2639 225 0.400000 +2639 277 0.400000 +2639 290 0.400000 +2639 329 0.400000 +2639 562 0.400000 +2639 578 0.400000 +2639 636 0.400000 +2639 640 0.400000 +2639 659 0.400000 +2639 686 0.400000 +2639 771 0.400000 +2639 807 0.400000 +2639 931 0.400000 +2639 946 0.400000 +2639 954 0.400000 +2639 1050 0.400000 +2639 1091 0.400000 +2639 1130 0.400000 +2639 1145 0.400000 +2639 1258 0.400000 +2639 1339 0.400000 +2639 1351 0.400000 +2639 1395 0.400000 +2639 1414 0.400000 +2639 1423 0.400000 +2639 1444 0.400000 +2639 1482 0.400000 +2639 1605 0.400000 +2639 1643 0.400000 +2639 1653 0.400000 +2639 1665 0.400000 +2639 1778 0.400000 +2639 1881 0.400000 +2639 1889 0.400000 +2639 1896 0.400000 +2639 1923 0.400000 +2639 1939 0.400000 +2639 1941 0.400000 +2639 1993 0.400000 +2639 2067 0.400000 +2639 2093 0.400000 +2639 2130 0.400000 +2639 2205 0.400000 +2639 2230 0.400000 +2639 2237 0.400000 +2639 2246 0.400000 +2639 2286 0.400000 +2639 2361 0.400000 +2639 2448 0.400000 +2639 2552 0.400000 +2639 2575 0.400000 +2639 2677 0.400000 +2639 2804 0.400000 +2639 2832 0.400000 +2639 2892 0.400000 +2639 2894 0.400000 +2639 2977 0.400000 +2639 3045 0.400000 +2639 3060 0.400000 +2639 3185 0.400000 +2640 10 0.400000 +2640 20 0.400000 +2640 131 0.400000 +2640 184 0.400000 +2640 211 0.400000 +2640 284 0.400000 +2640 321 0.400000 +2640 455 0.400000 +2640 539 0.400000 +2640 576 0.400000 +2640 596 0.400000 +2640 617 0.400000 +2640 633 0.400000 +2640 792 0.400000 +2640 809 0.400000 +2640 882 0.400000 +2640 892 0.400000 +2640 967 0.400000 +2640 998 0.400000 +2640 1024 0.400000 +2640 1029 0.400000 +2640 1033 0.400000 +2640 1036 0.400000 +2640 1104 0.400000 +2640 1326 0.400000 +2640 1344 0.400000 +2640 1362 0.400000 +2640 1553 0.400000 +2640 1567 0.400000 +2640 1627 0.400000 +2640 1683 0.400000 +2640 1931 0.400000 +2640 1988 0.400000 +2640 2066 0.400000 +2640 2100 0.400000 +2640 2109 0.400000 +2640 2137 0.400000 +2640 2200 0.400000 +2640 2214 0.400000 +2640 2451 0.400000 +2640 2471 0.400000 +2640 2519 0.400000 +2640 2619 0.400000 +2640 2675 0.400000 +2640 2816 0.400000 +2640 2841 0.400000 +2640 2876 0.400000 +2640 2891 0.400000 +2640 2906 0.400000 +2640 2939 0.400000 +2640 3042 0.400000 +2640 3098 0.400000 +2640 3121 0.400000 +2640 3132 0.400000 +2640 3171 0.400000 +2641 2 0.400000 +2641 52 0.400000 +2641 165 0.400000 +2641 201 0.400000 +2641 209 0.400000 +2641 227 0.400000 +2641 256 0.400000 +2641 265 0.400000 +2641 268 0.400000 +2641 335 0.400000 +2641 346 0.400000 +2641 383 0.400000 +2641 396 0.400000 +2641 440 0.400000 +2641 466 0.400000 +2641 479 0.400000 +2641 599 0.400000 +2641 630 0.400000 +2641 648 0.400000 +2641 702 0.400000 +2641 705 0.400000 +2641 727 0.400000 +2641 770 0.400000 +2641 894 0.400000 +2641 897 0.400000 +2641 902 0.400000 +2641 931 0.400000 +2641 949 0.400000 +2641 1109 0.400000 +2641 1167 0.400000 +2641 1221 0.400000 +2641 1250 0.400000 +2641 1259 0.400000 +2641 1333 0.400000 +2641 1439 0.400000 +2641 1460 0.400000 +2641 1619 0.400000 +2641 1672 0.400000 +2641 1675 0.400000 +2641 1697 0.400000 +2641 1783 0.400000 +2641 1797 0.400000 +2641 2118 0.400000 +2641 2136 0.400000 +2641 2147 0.400000 +2641 2173 0.400000 +2641 2182 0.400000 +2641 2204 0.400000 +2641 2207 0.400000 +2641 2212 0.400000 +2641 2228 0.400000 +2641 2292 0.400000 +2641 2327 0.400000 +2641 2329 0.400000 +2641 2431 0.400000 +2641 2575 0.400000 +2641 2604 0.400000 +2641 2621 0.400000 +2641 2654 0.400000 +2641 2750 0.400000 +2641 2779 0.400000 +2641 2827 0.400000 +2641 2899 0.400000 +2641 2921 0.400000 +2641 3009 0.400000 +2641 3017 0.400000 +2641 3121 0.400000 +2641 3178 0.400000 +2642 116 0.400000 +2642 117 0.400000 +2642 153 0.400000 +2642 367 0.400000 +2642 394 0.400000 +2642 508 0.400000 +2642 558 0.400000 +2642 731 0.400000 +2642 794 0.400000 +2642 927 0.400000 +2642 982 0.400000 +2642 1023 0.400000 +2642 1119 0.400000 +2642 1186 0.400000 +2642 1267 0.400000 +2642 1293 0.400000 +2642 1351 0.400000 +2642 1378 0.400000 +2642 1382 0.400000 +2642 1398 0.400000 +2642 1405 0.400000 +2642 1425 0.400000 +2642 1457 0.400000 +2642 1528 0.400000 +2642 1570 0.400000 +2642 1674 0.400000 +2642 1696 0.400000 +2642 1717 0.400000 +2642 1736 0.400000 +2642 1757 0.400000 +2642 1821 0.400000 +2642 1845 0.400000 +2642 1958 0.400000 +2642 2067 0.400000 +2642 2069 0.400000 +2642 2115 0.400000 +2642 2244 0.400000 +2642 2251 0.400000 +2642 2319 0.400000 +2642 2358 0.400000 +2642 2418 0.400000 +2642 2489 0.400000 +2642 2619 0.400000 +2642 2640 0.400000 +2642 2714 0.400000 +2642 2719 0.400000 +2642 2747 0.400000 +2642 2788 0.400000 +2642 2798 0.400000 +2642 2856 0.400000 +2642 2961 0.400000 +2642 3019 0.400000 +2642 3028 0.400000 +2642 3039 0.400000 +2642 3059 0.400000 +2642 3120 0.400000 +2642 3198 0.400000 +2643 16 0.400000 +2643 127 0.400000 +2643 139 0.400000 +2643 197 0.400000 +2643 224 0.400000 +2643 288 0.400000 +2643 320 0.400000 +2643 348 0.400000 +2643 426 0.400000 +2643 442 0.400000 +2643 510 0.400000 +2643 606 0.400000 +2643 653 0.400000 +2643 872 0.400000 +2643 1103 0.400000 +2643 1243 0.400000 +2643 1265 0.400000 +2643 1434 0.400000 +2643 1492 0.400000 +2643 1577 0.400000 +2643 1623 0.400000 +2643 1670 0.400000 +2643 1689 0.400000 +2643 1708 0.400000 +2643 1710 0.400000 +2643 1761 0.400000 +2643 1770 0.400000 +2643 1782 0.400000 +2643 1885 0.400000 +2643 1903 0.400000 +2643 1930 0.400000 +2643 1955 0.400000 +2643 2038 0.400000 +2643 2048 0.400000 +2643 2137 0.400000 +2643 2152 0.400000 +2643 2166 0.400000 +2643 2170 0.400000 +2643 2209 0.400000 +2643 2232 0.400000 +2643 2351 0.400000 +2643 2387 0.400000 +2643 2417 0.400000 +2643 2472 0.400000 +2643 2556 0.400000 +2643 2559 0.400000 +2643 2563 0.400000 +2643 2585 0.400000 +2643 2593 0.400000 +2643 2620 0.400000 +2643 2659 0.400000 +2643 2681 0.400000 +2643 2732 0.400000 +2643 2745 0.400000 +2643 2814 0.400000 +2643 2837 0.400000 +2643 2886 0.400000 +2643 2912 0.400000 +2643 2941 0.400000 +2643 2969 0.400000 +2643 2990 0.400000 +2643 3094 0.400000 +2643 3104 0.400000 +2643 3178 0.400000 +2644 37 0.400000 +2644 39 0.400000 +2644 61 0.400000 +2644 222 0.400000 +2644 305 0.400000 +2644 457 0.400000 +2644 485 0.400000 +2644 500 0.400000 +2644 504 0.400000 +2644 535 0.400000 +2644 658 0.400000 +2644 668 0.400000 +2644 717 0.400000 +2644 863 0.400000 +2644 867 0.400000 +2644 889 0.400000 +2644 891 0.400000 +2644 1079 0.400000 +2644 1087 0.400000 +2644 1137 0.400000 +2644 1159 0.400000 +2644 1181 0.400000 +2644 1184 0.400000 +2644 1199 0.400000 +2644 1257 0.400000 +2644 1265 0.400000 +2644 1347 0.400000 +2644 1379 0.400000 +2644 1452 0.400000 +2644 1478 0.400000 +2644 1573 0.400000 +2644 1627 0.400000 +2644 1637 0.400000 +2644 1692 0.400000 +2644 1723 0.400000 +2644 1810 0.400000 +2644 1816 0.400000 +2644 1885 0.400000 +2644 1971 0.400000 +2644 2087 0.400000 +2644 2145 0.400000 +2644 2243 0.400000 +2644 2281 0.400000 +2644 2308 0.400000 +2644 2370 0.400000 +2644 2408 0.400000 +2644 2413 0.400000 +2644 2446 0.400000 +2644 2582 0.400000 +2644 2641 0.400000 +2644 2644 0.400000 +2644 2674 0.400000 +2644 2711 0.400000 +2644 2764 0.400000 +2644 2830 0.400000 +2644 3046 0.400000 +2644 3122 0.400000 +2644 3131 0.400000 +2644 3177 0.400000 +2644 3193 0.400000 +2645 86 0.400000 +2645 135 0.400000 +2645 196 0.400000 +2645 199 0.400000 +2645 333 0.400000 +2645 510 0.400000 +2645 532 0.400000 +2645 629 0.400000 +2645 649 0.400000 +2645 704 0.400000 +2645 722 0.400000 +2645 737 0.400000 +2645 772 0.400000 +2645 860 0.400000 +2645 884 0.400000 +2645 893 0.400000 +2645 902 0.400000 +2645 959 0.400000 +2645 1006 0.400000 +2645 1042 0.400000 +2645 1048 0.400000 +2645 1073 0.400000 +2645 1086 0.400000 +2645 1165 0.400000 +2645 1204 0.400000 +2645 1218 0.400000 +2645 1278 0.400000 +2645 1352 0.400000 +2645 1390 0.400000 +2645 1433 0.400000 +2645 1453 0.400000 +2645 1458 0.400000 +2645 1482 0.400000 +2645 1507 0.400000 +2645 1511 0.400000 +2645 1569 0.400000 +2645 1609 0.400000 +2645 1694 0.400000 +2645 1695 0.400000 +2645 1739 0.400000 +2645 1777 0.400000 +2645 1855 0.400000 +2645 1961 0.400000 +2645 1973 0.400000 +2645 1990 0.400000 +2645 2064 0.400000 +2645 2099 0.400000 +2645 2118 0.400000 +2645 2205 0.400000 +2645 2213 0.400000 +2645 2268 0.400000 +2645 2290 0.400000 +2645 2314 0.400000 +2645 2424 0.400000 +2645 2496 0.400000 +2645 2514 0.400000 +2645 2548 0.400000 +2645 2597 0.400000 +2645 2611 0.400000 +2645 2659 0.400000 +2645 2666 0.400000 +2645 2688 0.400000 +2645 2695 0.400000 +2645 2711 0.400000 +2645 2712 0.400000 +2645 2777 0.400000 +2645 2859 0.400000 +2645 2875 0.400000 +2645 2934 0.400000 +2645 3055 0.400000 +2645 3129 0.400000 +2645 3133 0.400000 +2645 3192 0.400000 +2646 18 0.400000 +2646 74 0.400000 +2646 176 0.400000 +2646 245 0.400000 +2646 383 0.400000 +2646 460 0.400000 +2646 478 0.400000 +2646 517 0.400000 +2646 610 0.400000 +2646 763 0.400000 +2646 803 0.400000 +2646 820 0.400000 +2646 838 0.400000 +2646 857 0.400000 +2646 884 0.400000 +2646 1003 0.400000 +2646 1057 0.400000 +2646 1100 0.400000 +2646 1235 0.400000 +2646 1447 0.400000 +2646 1448 0.400000 +2646 1482 0.400000 +2646 1530 0.400000 +2646 1566 0.400000 +2646 1568 0.400000 +2646 1612 0.400000 +2646 1658 0.400000 +2646 1670 0.400000 +2646 1724 0.400000 +2646 1737 0.400000 +2646 1851 0.400000 +2646 1902 0.400000 +2646 1935 0.400000 +2646 1941 0.400000 +2646 1947 0.400000 +2646 2050 0.400000 +2646 2115 0.400000 +2646 2128 0.400000 +2646 2234 0.400000 +2646 2370 0.400000 +2646 2457 0.400000 +2646 2499 0.400000 +2646 2674 0.400000 +2646 2678 0.400000 +2646 2705 0.400000 +2646 2759 0.400000 +2646 2820 0.400000 +2646 2886 0.400000 +2646 3094 0.400000 +2646 3114 0.400000 +2647 22 0.400000 +2647 72 0.400000 +2647 96 0.400000 +2647 132 0.400000 +2647 171 0.400000 +2647 238 0.400000 +2647 259 0.400000 +2647 272 0.400000 +2647 289 0.400000 +2647 308 0.400000 +2647 346 0.400000 +2647 518 0.400000 +2647 522 0.400000 +2647 680 0.400000 +2647 737 0.400000 +2647 780 0.400000 +2647 901 0.400000 +2647 906 0.400000 +2647 912 0.400000 +2647 982 0.400000 +2647 988 0.400000 +2647 1019 0.400000 +2647 1151 0.400000 +2647 1200 0.400000 +2647 1227 0.400000 +2647 1231 0.400000 +2647 1233 0.400000 +2647 1242 0.400000 +2647 1257 0.400000 +2647 1320 0.400000 +2647 1472 0.400000 +2647 1478 0.400000 +2647 1491 0.400000 +2647 1496 0.400000 +2647 1591 0.400000 +2647 1658 0.400000 +2647 1786 0.400000 +2647 1938 0.400000 +2647 1979 0.400000 +2647 2184 0.400000 +2647 2302 0.400000 +2647 2314 0.400000 +2647 2337 0.400000 +2647 2340 0.400000 +2647 2415 0.400000 +2647 2428 0.400000 +2647 2458 0.400000 +2647 2495 0.400000 +2647 2508 0.400000 +2647 2547 0.400000 +2647 2562 0.400000 +2647 2643 0.400000 +2647 2651 0.400000 +2647 2735 0.400000 +2647 2817 0.400000 +2647 2819 0.400000 +2647 3068 0.400000 +2647 3105 0.400000 +2648 2 0.400000 +2648 4 0.400000 +2648 77 0.400000 +2648 119 0.400000 +2648 122 0.400000 +2648 167 0.400000 +2648 188 0.400000 +2648 248 0.400000 +2648 289 0.400000 +2648 439 0.400000 +2648 491 0.400000 +2648 547 0.400000 +2648 599 0.400000 +2648 624 0.400000 +2648 648 0.400000 +2648 667 0.400000 +2648 774 0.400000 +2648 787 0.400000 +2648 842 0.400000 +2648 931 0.400000 +2648 935 0.400000 +2648 1068 0.400000 +2648 1086 0.400000 +2648 1104 0.400000 +2648 1184 0.400000 +2648 1223 0.400000 +2648 1281 0.400000 +2648 1313 0.400000 +2648 1356 0.400000 +2648 1655 0.400000 +2648 1735 0.400000 +2648 1830 0.400000 +2648 1906 0.400000 +2648 1928 0.400000 +2648 1942 0.400000 +2648 1946 0.400000 +2648 2018 0.400000 +2648 2048 0.400000 +2648 2139 0.400000 +2648 2159 0.400000 +2648 2240 0.400000 +2648 2391 0.400000 +2648 2424 0.400000 +2648 2448 0.400000 +2648 2485 0.400000 +2648 2497 0.400000 +2648 2628 0.400000 +2648 2733 0.400000 +2648 2746 0.400000 +2648 2848 0.400000 +2648 2921 0.400000 +2648 2989 0.400000 +2648 3065 0.400000 +2648 3096 0.400000 +2648 3146 0.400000 +2648 3154 0.400000 +2649 65 0.400000 +2649 78 0.400000 +2649 117 0.400000 +2649 205 0.400000 +2649 222 0.400000 +2649 252 0.400000 +2649 279 0.400000 +2649 302 0.400000 +2649 319 0.400000 +2649 357 0.400000 +2649 363 0.400000 +2649 377 0.400000 +2649 532 0.400000 +2649 638 0.400000 +2649 720 0.400000 +2649 739 0.400000 +2649 840 0.400000 +2649 867 0.400000 +2649 895 0.400000 +2649 925 0.400000 +2649 1001 0.400000 +2649 1026 0.400000 +2649 1038 0.400000 +2649 1079 0.400000 +2649 1126 0.400000 +2649 1149 0.400000 +2649 1174 0.400000 +2649 1193 0.400000 +2649 1294 0.400000 +2649 1382 0.400000 +2649 1387 0.400000 +2649 1403 0.400000 +2649 1423 0.400000 +2649 1445 0.400000 +2649 1512 0.400000 +2649 1552 0.400000 +2649 1604 0.400000 +2649 1707 0.400000 +2649 1711 0.400000 +2649 1822 0.400000 +2649 1827 0.400000 +2649 1866 0.400000 +2649 1923 0.400000 +2649 1927 0.400000 +2649 2007 0.400000 +2649 2092 0.400000 +2649 2103 0.400000 +2649 2152 0.400000 +2649 2169 0.400000 +2649 2178 0.400000 +2649 2184 0.400000 +2649 2213 0.400000 +2649 2233 0.400000 +2649 2260 0.400000 +2649 2267 0.400000 +2649 2279 0.400000 +2649 2280 0.400000 +2649 2330 0.400000 +2649 2365 0.400000 +2649 2371 0.400000 +2649 2373 0.400000 +2649 2513 0.400000 +2649 2548 0.400000 +2649 2551 0.400000 +2649 2552 0.400000 +2649 2561 0.400000 +2649 2562 0.400000 +2649 2609 0.400000 +2649 2611 0.400000 +2649 2641 0.400000 +2649 2667 0.400000 +2649 2679 0.400000 +2649 2723 0.400000 +2649 2738 0.400000 +2649 2821 0.400000 +2649 2900 0.400000 +2649 3118 0.400000 +2649 3181 0.400000 +2650 19 0.400000 +2650 159 0.400000 +2650 268 0.400000 +2650 291 0.400000 +2650 316 0.400000 +2650 345 0.400000 +2650 362 0.400000 +2650 575 0.400000 +2650 588 0.400000 +2650 613 0.400000 +2650 629 0.400000 +2650 740 0.400000 +2650 904 0.400000 +2650 924 0.400000 +2650 930 0.400000 +2650 975 0.400000 +2650 1045 0.400000 +2650 1048 0.400000 +2650 1142 0.400000 +2650 1184 0.400000 +2650 1186 0.400000 +2650 1223 0.400000 +2650 1250 0.400000 +2650 1264 0.400000 +2650 1302 0.400000 +2650 1312 0.400000 +2650 1316 0.400000 +2650 1443 0.400000 +2650 1529 0.400000 +2650 1550 0.400000 +2650 1593 0.400000 +2650 1631 0.400000 +2650 1745 0.400000 +2650 1764 0.400000 +2650 1776 0.400000 +2650 1785 0.400000 +2650 1840 0.400000 +2650 1842 0.400000 +2650 1886 0.400000 +2650 1928 0.400000 +2650 1981 0.400000 +2650 2005 0.400000 +2650 2025 0.400000 +2650 2089 0.400000 +2650 2091 0.400000 +2650 2170 0.400000 +2650 2186 0.400000 +2650 2230 0.400000 +2650 2257 0.400000 +2650 2336 0.400000 +2650 2370 0.400000 +2650 2436 0.400000 +2650 2473 0.400000 +2650 2483 0.400000 +2650 2550 0.400000 +2650 2610 0.400000 +2650 2613 0.400000 +2650 2625 0.400000 +2650 2631 0.400000 +2650 2634 0.400000 +2650 2640 0.400000 +2650 2668 0.400000 +2650 2764 0.400000 +2650 2809 0.400000 +2650 2866 0.400000 +2650 2875 0.400000 +2650 2938 0.400000 +2650 2945 0.400000 +2650 2962 0.400000 +2650 2982 0.400000 +2650 2999 0.400000 +2650 3026 0.400000 +2650 3045 0.400000 +2650 3144 0.400000 +2650 3164 0.400000 +2650 3194 0.400000 +2651 41 0.400000 +2651 62 0.400000 +2651 108 0.400000 +2651 140 0.400000 +2651 164 0.400000 +2651 171 0.400000 +2651 176 0.400000 +2651 188 0.400000 +2651 257 0.400000 +2651 356 0.400000 +2651 366 0.400000 +2651 368 0.400000 +2651 411 0.400000 +2651 419 0.400000 +2651 515 0.400000 +2651 529 0.400000 +2651 531 0.400000 +2651 606 0.400000 +2651 644 0.400000 +2651 797 0.400000 +2651 809 0.400000 +2651 902 0.400000 +2651 1013 0.400000 +2651 1036 0.400000 +2651 1060 0.400000 +2651 1140 0.400000 +2651 1251 0.400000 +2651 1295 0.400000 +2651 1330 0.400000 +2651 1351 0.400000 +2651 1381 0.400000 +2651 1467 0.400000 +2651 1501 0.400000 +2651 1529 0.400000 +2651 1557 0.400000 +2651 1576 0.400000 +2651 1721 0.400000 +2651 1828 0.400000 +2651 1857 0.400000 +2651 1897 0.400000 +2651 1909 0.400000 +2651 1935 0.400000 +2651 2033 0.400000 +2651 2057 0.400000 +2651 2089 0.400000 +2651 2092 0.400000 +2651 2139 0.400000 +2651 2143 0.400000 +2651 2199 0.400000 +2651 2322 0.400000 +2651 2343 0.400000 +2651 2351 0.400000 +2651 2354 0.400000 +2651 2371 0.400000 +2651 2573 0.400000 +2651 2589 0.400000 +2651 2685 0.400000 +2651 2688 0.400000 +2651 2692 0.400000 +2651 2703 0.400000 +2651 2785 0.400000 +2651 2800 0.400000 +2651 2812 0.400000 +2651 2835 0.400000 +2651 2896 0.400000 +2651 2942 0.400000 +2651 2971 0.400000 +2651 2979 0.400000 +2651 2983 0.400000 +2651 3143 0.400000 +2651 3144 0.400000 +2652 63 0.400000 +2652 122 0.400000 +2652 139 0.400000 +2652 213 0.400000 +2652 363 0.400000 +2652 468 0.400000 +2652 487 0.400000 +2652 506 0.400000 +2652 598 0.400000 +2652 605 0.400000 +2652 709 0.400000 +2652 732 0.400000 +2652 760 0.400000 +2652 817 0.400000 +2652 818 0.400000 +2652 888 0.400000 +2652 917 0.400000 +2652 972 0.400000 +2652 978 0.400000 +2652 1170 0.400000 +2652 1179 0.400000 +2652 1304 0.400000 +2652 1333 0.400000 +2652 1345 0.400000 +2652 1527 0.400000 +2652 1556 0.400000 +2652 1603 0.400000 +2652 1612 0.400000 +2652 1665 0.400000 +2652 1676 0.400000 +2652 1685 0.400000 +2652 1702 0.400000 +2652 1709 0.400000 +2652 1712 0.400000 +2652 1836 0.400000 +2652 1858 0.400000 +2652 1862 0.400000 +2652 1987 0.400000 +2652 2026 0.400000 +2652 2029 0.400000 +2652 2086 0.400000 +2652 2151 0.400000 +2652 2171 0.400000 +2652 2193 0.400000 +2652 2268 0.400000 +2652 2286 0.400000 +2652 2304 0.400000 +2652 2330 0.400000 +2652 2405 0.400000 +2652 2428 0.400000 +2652 2478 0.400000 +2652 2538 0.400000 +2652 2591 0.400000 +2652 2642 0.400000 +2652 2836 0.400000 +2652 2896 0.400000 +2652 3024 0.400000 +2652 3033 0.400000 +2652 3118 0.400000 +2652 3153 0.400000 +2652 3164 0.400000 +2653 38 0.400000 +2653 98 0.400000 +2653 282 0.400000 +2653 418 0.400000 +2653 477 0.400000 +2653 514 0.400000 +2653 567 0.400000 +2653 593 0.400000 +2653 602 0.400000 +2653 625 0.400000 +2653 695 0.400000 +2653 742 0.400000 +2653 843 0.400000 +2653 869 0.400000 +2653 931 0.400000 +2653 934 0.400000 +2653 987 0.400000 +2653 1108 0.400000 +2653 1218 0.400000 +2653 1221 0.400000 +2653 1238 0.400000 +2653 1420 0.400000 +2653 1464 0.400000 +2653 1672 0.400000 +2653 1687 0.400000 +2653 1721 0.400000 +2653 1794 0.400000 +2653 1840 0.400000 +2653 1895 0.400000 +2653 2043 0.400000 +2653 2066 0.400000 +2653 2206 0.400000 +2653 2216 0.400000 +2653 2225 0.400000 +2653 2272 0.400000 +2653 2294 0.400000 +2653 2296 0.400000 +2653 2366 0.400000 +2653 2443 0.400000 +2653 2532 0.400000 +2653 2552 0.400000 +2653 2580 0.400000 +2653 2687 0.400000 +2653 2712 0.400000 +2653 2912 0.400000 +2653 2913 0.400000 +2653 2996 0.400000 +2653 3008 0.400000 +2653 3032 0.400000 +2653 3035 0.400000 +2653 3042 0.400000 +2653 3048 0.400000 +2653 3155 0.400000 +2653 3185 0.400000 +2654 111 0.400000 +2654 147 0.400000 +2654 148 0.400000 +2654 172 0.400000 +2654 185 0.400000 +2654 257 0.400000 +2654 287 0.400000 +2654 312 0.400000 +2654 313 0.400000 +2654 427 0.400000 +2654 446 0.400000 +2654 456 0.400000 +2654 489 0.400000 +2654 541 0.400000 +2654 550 0.400000 +2654 553 0.400000 +2654 570 0.400000 +2654 601 0.400000 +2654 658 0.400000 +2654 706 0.400000 +2654 828 0.400000 +2654 914 0.400000 +2654 932 0.400000 +2654 957 0.400000 +2654 1126 0.400000 +2654 1147 0.400000 +2654 1162 0.400000 +2654 1288 0.400000 +2654 1301 0.400000 +2654 1375 0.400000 +2654 1389 0.400000 +2654 1392 0.400000 +2654 1470 0.400000 +2654 1543 0.400000 +2654 1569 0.400000 +2654 1669 0.400000 +2654 1677 0.400000 +2654 1696 0.400000 +2654 1700 0.400000 +2654 1825 0.400000 +2654 1833 0.400000 +2654 1838 0.400000 +2654 1856 0.400000 +2654 1862 0.400000 +2654 1863 0.400000 +2654 1892 0.400000 +2654 1942 0.400000 +2654 1963 0.400000 +2654 2072 0.400000 +2654 2136 0.400000 +2654 2205 0.400000 +2654 2336 0.400000 +2654 2339 0.400000 +2654 2358 0.400000 +2654 2426 0.400000 +2654 2518 0.400000 +2654 2579 0.400000 +2654 2629 0.400000 +2654 2658 0.400000 +2654 2663 0.400000 +2654 2682 0.400000 +2654 2752 0.400000 +2654 2767 0.400000 +2654 2779 0.400000 +2654 2793 0.400000 +2654 2794 0.400000 +2654 2808 0.400000 +2654 2905 0.400000 +2654 3039 0.400000 +2654 3042 0.400000 +2654 3134 0.400000 +2654 3162 0.400000 +2655 3 0.400000 +2655 50 0.400000 +2655 220 0.400000 +2655 236 0.400000 +2655 307 0.400000 +2655 329 0.400000 +2655 330 0.400000 +2655 434 0.400000 +2655 448 0.400000 +2655 451 0.400000 +2655 484 0.400000 +2655 496 0.400000 +2655 541 0.400000 +2655 585 0.400000 +2655 656 0.400000 +2655 659 0.400000 +2655 690 0.400000 +2655 708 0.400000 +2655 743 0.400000 +2655 748 0.400000 +2655 803 0.400000 +2655 837 0.400000 +2655 941 0.400000 +2655 993 0.400000 +2655 1124 0.400000 +2655 1154 0.400000 +2655 1191 0.400000 +2655 1268 0.400000 +2655 1296 0.400000 +2655 1299 0.400000 +2655 1333 0.400000 +2655 1369 0.400000 +2655 1525 0.400000 +2655 1741 0.400000 +2655 1765 0.400000 +2655 1787 0.400000 +2655 1843 0.400000 +2655 1845 0.400000 +2655 1946 0.400000 +2655 1987 0.400000 +2655 2101 0.400000 +2655 2102 0.400000 +2655 2114 0.400000 +2655 2132 0.400000 +2655 2148 0.400000 +2655 2202 0.400000 +2655 2216 0.400000 +2655 2222 0.400000 +2655 2241 0.400000 +2655 2245 0.400000 +2655 2377 0.400000 +2655 2395 0.400000 +2655 2425 0.400000 +2655 2447 0.400000 +2655 2481 0.400000 +2655 2489 0.400000 +2655 2539 0.400000 +2655 2574 0.400000 +2655 2647 0.400000 +2655 2825 0.400000 +2655 2888 0.400000 +2655 2944 0.400000 +2655 3004 0.400000 +2655 3008 0.400000 +2655 3117 0.400000 +2655 3193 0.400000 +2656 10 0.400000 +2656 23 0.400000 +2656 229 0.400000 +2656 268 0.400000 +2656 347 0.400000 +2656 369 0.400000 +2656 453 0.400000 +2656 478 0.400000 +2656 484 0.400000 +2656 617 0.400000 +2656 625 0.400000 +2656 700 0.400000 +2656 716 0.400000 +2656 945 0.400000 +2656 970 0.400000 +2656 1006 0.400000 +2656 1117 0.400000 +2656 1137 0.400000 +2656 1210 0.400000 +2656 1264 0.400000 +2656 1324 0.400000 +2656 1363 0.400000 +2656 1377 0.400000 +2656 1474 0.400000 +2656 1705 0.400000 +2656 1724 0.400000 +2656 1740 0.400000 +2656 1819 0.400000 +2656 1821 0.400000 +2656 1897 0.400000 +2656 1909 0.400000 +2656 1916 0.400000 +2656 1924 0.400000 +2656 2042 0.400000 +2656 2092 0.400000 +2656 2182 0.400000 +2656 2203 0.400000 +2656 2244 0.400000 +2656 2408 0.400000 +2656 2497 0.400000 +2656 2530 0.400000 +2656 2643 0.400000 +2656 2664 0.400000 +2656 2701 0.400000 +2656 2719 0.400000 +2656 2748 0.400000 +2656 2768 0.400000 +2656 2792 0.400000 +2656 2826 0.400000 +2656 2842 0.400000 +2656 2966 0.400000 +2657 6 0.400000 +2657 9 0.400000 +2657 14 0.400000 +2657 24 0.400000 +2657 54 0.400000 +2657 66 0.400000 +2657 155 0.400000 +2657 220 0.400000 +2657 273 0.400000 +2657 303 0.400000 +2657 360 0.400000 +2657 362 0.400000 +2657 395 0.400000 +2657 492 0.400000 +2657 507 0.400000 +2657 545 0.400000 +2657 574 0.400000 +2657 601 0.400000 +2657 609 0.400000 +2657 627 0.400000 +2657 633 0.400000 +2657 643 0.400000 +2657 675 0.400000 +2657 727 0.400000 +2657 808 0.400000 +2657 814 0.400000 +2657 865 0.400000 +2657 866 0.400000 +2657 937 0.400000 +2657 948 0.400000 +2657 994 0.400000 +2657 1010 0.400000 +2657 1193 0.400000 +2657 1474 0.400000 +2657 1484 0.400000 +2657 1578 0.400000 +2657 1585 0.400000 +2657 1679 0.400000 +2657 1683 0.400000 +2657 1687 0.400000 +2657 1738 0.400000 +2657 1830 0.400000 +2657 2003 0.400000 +2657 2135 0.400000 +2657 2242 0.400000 +2657 2423 0.400000 +2657 2456 0.400000 +2657 2640 0.400000 +2657 2703 0.400000 +2657 2706 0.400000 +2657 2721 0.400000 +2657 2724 0.400000 +2657 2767 0.400000 +2657 2800 0.400000 +2657 2844 0.400000 +2657 3054 0.400000 +2657 3076 0.400000 +2657 3197 0.400000 +2658 142 0.400000 +2658 246 0.400000 +2658 371 0.400000 +2658 432 0.400000 +2658 524 0.400000 +2658 544 0.400000 +2658 548 0.400000 +2658 600 0.400000 +2658 602 0.400000 +2658 669 0.400000 +2658 676 0.400000 +2658 698 0.400000 +2658 835 0.400000 +2658 910 0.400000 +2658 947 0.400000 +2658 1032 0.400000 +2658 1040 0.400000 +2658 1057 0.400000 +2658 1059 0.400000 +2658 1074 0.400000 +2658 1102 0.400000 +2658 1153 0.400000 +2658 1193 0.400000 +2658 1241 0.400000 +2658 1288 0.400000 +2658 1321 0.400000 +2658 1366 0.400000 +2658 1417 0.400000 +2658 1454 0.400000 +2658 1472 0.400000 +2658 1536 0.400000 +2658 1564 0.400000 +2658 1576 0.400000 +2658 1602 0.400000 +2658 1628 0.400000 +2658 1753 0.400000 +2658 1758 0.400000 +2658 1797 0.400000 +2658 1827 0.400000 +2658 1859 0.400000 +2658 1961 0.400000 +2658 1966 0.400000 +2658 1979 0.400000 +2658 2115 0.400000 +2658 2130 0.400000 +2658 2150 0.400000 +2658 2160 0.400000 +2658 2261 0.400000 +2658 2266 0.400000 +2658 2276 0.400000 +2658 2335 0.400000 +2658 2355 0.400000 +2658 2451 0.400000 +2658 2453 0.400000 +2658 2605 0.400000 +2658 2671 0.400000 +2658 2739 0.400000 +2658 2776 0.400000 +2658 2806 0.400000 +2658 2910 0.400000 +2658 2951 0.400000 +2658 3051 0.400000 +2658 3079 0.400000 +2658 3183 0.400000 +2659 19 0.400000 +2659 30 0.400000 +2659 86 0.400000 +2659 109 0.400000 +2659 123 0.400000 +2659 171 0.400000 +2659 194 0.400000 +2659 236 0.400000 +2659 272 0.400000 +2659 329 0.400000 +2659 357 0.400000 +2659 375 0.400000 +2659 442 0.400000 +2659 459 0.400000 +2659 483 0.400000 +2659 542 0.400000 +2659 565 0.400000 +2659 569 0.400000 +2659 582 0.400000 +2659 595 0.400000 +2659 692 0.400000 +2659 707 0.400000 +2659 753 0.400000 +2659 1139 0.400000 +2659 1150 0.400000 +2659 1209 0.400000 +2659 1231 0.400000 +2659 1248 0.400000 +2659 1283 0.400000 +2659 1408 0.400000 +2659 1427 0.400000 +2659 1470 0.400000 +2659 1474 0.400000 +2659 1482 0.400000 +2659 1492 0.400000 +2659 1524 0.400000 +2659 1531 0.400000 +2659 1591 0.400000 +2659 1728 0.400000 +2659 1758 0.400000 +2659 1857 0.400000 +2659 1932 0.400000 +2659 1993 0.400000 +2659 2080 0.400000 +2659 2087 0.400000 +2659 2214 0.400000 +2659 2218 0.400000 +2659 2282 0.400000 +2659 2299 0.400000 +2659 2318 0.400000 +2659 2466 0.400000 +2659 2467 0.400000 +2659 2499 0.400000 +2659 2543 0.400000 +2659 2561 0.400000 +2659 2595 0.400000 +2659 2601 0.400000 +2659 2610 0.400000 +2659 2638 0.400000 +2659 2714 0.400000 +2659 2778 0.400000 +2659 2918 0.400000 +2659 2972 0.400000 +2659 3017 0.400000 +2659 3024 0.400000 +2659 3100 0.400000 +2659 3101 0.400000 +2659 3126 0.400000 +2659 3149 0.400000 +2659 3163 0.400000 +2659 3182 0.400000 +2660 52 0.400000 +2660 71 0.400000 +2660 137 0.400000 +2660 188 0.400000 +2660 200 0.400000 +2660 206 0.400000 +2660 214 0.400000 +2660 225 0.400000 +2660 254 0.400000 +2660 276 0.400000 +2660 493 0.400000 +2660 517 0.400000 +2660 523 0.400000 +2660 564 0.400000 +2660 568 0.400000 +2660 594 0.400000 +2660 641 0.400000 +2660 726 0.400000 +2660 746 0.400000 +2660 757 0.400000 +2660 770 0.400000 +2660 798 0.400000 +2660 817 0.400000 +2660 918 0.400000 +2660 1049 0.400000 +2660 1064 0.400000 +2660 1141 0.400000 +2660 1153 0.400000 +2660 1169 0.400000 +2660 1245 0.400000 +2660 1246 0.400000 +2660 1291 0.400000 +2660 1413 0.400000 +2660 1440 0.400000 +2660 1465 0.400000 +2660 1493 0.400000 +2660 1495 0.400000 +2660 1542 0.400000 +2660 1545 0.400000 +2660 1581 0.400000 +2660 1640 0.400000 +2660 1660 0.400000 +2660 1684 0.400000 +2660 1724 0.400000 +2660 1768 0.400000 +2660 1863 0.400000 +2660 1882 0.400000 +2660 1974 0.400000 +2660 2039 0.400000 +2660 2055 0.400000 +2660 2095 0.400000 +2660 2176 0.400000 +2660 2257 0.400000 +2660 2269 0.400000 +2660 2321 0.400000 +2660 2324 0.400000 +2660 2336 0.400000 +2660 2343 0.400000 +2660 2358 0.400000 +2660 2484 0.400000 +2660 2518 0.400000 +2660 2599 0.400000 +2660 2718 0.400000 +2660 2724 0.400000 +2660 2743 0.400000 +2660 2797 0.400000 +2660 2831 0.400000 +2660 2956 0.400000 +2660 2957 0.400000 +2660 2968 0.400000 +2660 2975 0.400000 +2660 3093 0.400000 +2660 3149 0.400000 +2660 3154 0.400000 +2661 31 0.400000 +2661 169 0.400000 +2661 182 0.400000 +2661 184 0.400000 +2661 227 0.400000 +2661 289 0.400000 +2661 297 0.400000 +2661 304 0.400000 +2661 341 0.400000 +2661 502 0.400000 +2661 508 0.400000 +2661 602 0.400000 +2661 685 0.400000 +2661 744 0.400000 +2661 746 0.400000 +2661 834 0.400000 +2661 863 0.400000 +2661 934 0.400000 +2661 947 0.400000 +2661 968 0.400000 +2661 1100 0.400000 +2661 1146 0.400000 +2661 1170 0.400000 +2661 1193 0.400000 +2661 1322 0.400000 +2661 1394 0.400000 +2661 1551 0.400000 +2661 1581 0.400000 +2661 1597 0.400000 +2661 1646 0.400000 +2661 1687 0.400000 +2661 1766 0.400000 +2661 1798 0.400000 +2661 1825 0.400000 +2661 1847 0.400000 +2661 2080 0.400000 +2661 2189 0.400000 +2661 2279 0.400000 +2661 2350 0.400000 +2661 2387 0.400000 +2661 2408 0.400000 +2661 2461 0.400000 +2661 2495 0.400000 +2661 2538 0.400000 +2661 2591 0.400000 +2661 2686 0.400000 +2661 2697 0.400000 +2661 2700 0.400000 +2661 2741 0.400000 +2661 2742 0.400000 +2661 2824 0.400000 +2661 2827 0.400000 +2661 2877 0.400000 +2661 2878 0.400000 +2661 2946 0.400000 +2661 2950 0.400000 +2661 2985 0.400000 +2661 3010 0.400000 +2661 3073 0.400000 +2661 3087 0.400000 +2661 3093 0.400000 +2662 3 0.400000 +2662 42 0.400000 +2662 177 0.400000 +2662 295 0.400000 +2662 301 0.400000 +2662 314 0.400000 +2662 357 0.400000 +2662 360 0.400000 +2662 492 0.400000 +2662 542 0.400000 +2662 548 0.400000 +2662 618 0.400000 +2662 749 0.400000 +2662 750 0.400000 +2662 761 0.400000 +2662 862 0.400000 +2662 882 0.400000 +2662 920 0.400000 +2662 962 0.400000 +2662 1042 0.400000 +2662 1052 0.400000 +2662 1109 0.400000 +2662 1190 0.400000 +2662 1359 0.400000 +2662 1437 0.400000 +2662 1478 0.400000 +2662 1639 0.400000 +2662 1668 0.400000 +2662 1802 0.400000 +2662 1898 0.400000 +2662 1933 0.400000 +2662 1956 0.400000 +2662 1990 0.400000 +2662 2138 0.400000 +2662 2220 0.400000 +2662 2248 0.400000 +2662 2257 0.400000 +2662 2300 0.400000 +2662 2304 0.400000 +2662 2354 0.400000 +2662 2366 0.400000 +2662 2370 0.400000 +2662 2380 0.400000 +2662 2409 0.400000 +2662 2420 0.400000 +2662 2561 0.400000 +2662 2565 0.400000 +2662 2606 0.400000 +2662 2767 0.400000 +2662 2892 0.400000 +2662 2954 0.400000 +2662 2963 0.400000 +2662 2964 0.400000 +2662 2975 0.400000 +2662 3005 0.400000 +2662 3048 0.400000 +2662 3079 0.400000 +2662 3088 0.400000 +2662 3155 0.400000 +2663 14 0.400000 +2663 67 0.400000 +2663 75 0.400000 +2663 165 0.400000 +2663 217 0.400000 +2663 421 0.400000 +2663 522 0.400000 +2663 599 0.400000 +2663 675 0.400000 +2663 695 0.400000 +2663 726 0.400000 +2663 736 0.400000 +2663 750 0.400000 +2663 837 0.400000 +2663 886 0.400000 +2663 932 0.400000 +2663 990 0.400000 +2663 996 0.400000 +2663 1093 0.400000 +2663 1187 0.400000 +2663 1258 0.400000 +2663 1273 0.400000 +2663 1329 0.400000 +2663 1505 0.400000 +2663 1544 0.400000 +2663 1568 0.400000 +2663 1581 0.400000 +2663 1777 0.400000 +2663 1780 0.400000 +2663 1820 0.400000 +2663 1861 0.400000 +2663 1930 0.400000 +2663 1948 0.400000 +2663 1953 0.400000 +2663 1970 0.400000 +2663 1994 0.400000 +2663 2021 0.400000 +2663 2057 0.400000 +2663 2086 0.400000 +2663 2139 0.400000 +2663 2157 0.400000 +2663 2213 0.400000 +2663 2332 0.400000 +2663 2341 0.400000 +2663 2470 0.400000 +2663 2491 0.400000 +2663 2751 0.400000 +2663 2770 0.400000 +2663 2782 0.400000 +2663 2940 0.400000 +2663 2946 0.400000 +2663 3024 0.400000 +2663 3030 0.400000 +2663 3066 0.400000 +2663 3074 0.400000 +2664 84 0.400000 +2664 139 0.400000 +2664 161 0.400000 +2664 186 0.400000 +2664 211 0.400000 +2664 218 0.400000 +2664 226 0.400000 +2664 301 0.400000 +2664 308 0.400000 +2664 311 0.400000 +2664 330 0.400000 +2664 503 0.400000 +2664 525 0.400000 +2664 558 0.400000 +2664 721 0.400000 +2664 1023 0.400000 +2664 1078 0.400000 +2664 1095 0.400000 +2664 1175 0.400000 +2664 1177 0.400000 +2664 1203 0.400000 +2664 1451 0.400000 +2664 1490 0.400000 +2664 1515 0.400000 +2664 1536 0.400000 +2664 1546 0.400000 +2664 1558 0.400000 +2664 1571 0.400000 +2664 1612 0.400000 +2664 1726 0.400000 +2664 1765 0.400000 +2664 1772 0.400000 +2664 1782 0.400000 +2664 1835 0.400000 +2664 1890 0.400000 +2664 1891 0.400000 +2664 1909 0.400000 +2664 2011 0.400000 +2664 2097 0.400000 +2664 2103 0.400000 +2664 2119 0.400000 +2664 2211 0.400000 +2664 2233 0.400000 +2664 2249 0.400000 +2664 2259 0.400000 +2664 2304 0.400000 +2664 2379 0.400000 +2664 2410 0.400000 +2664 2455 0.400000 +2664 2469 0.400000 +2664 2470 0.400000 +2664 2505 0.400000 +2664 2629 0.400000 +2664 2664 0.400000 +2664 2700 0.400000 +2664 2762 0.400000 +2664 2922 0.400000 +2664 2966 0.400000 +2664 2978 0.400000 +2664 2986 0.400000 +2664 2995 0.400000 +2664 3121 0.400000 +2664 3122 0.400000 +2664 3131 0.400000 +2665 22 0.400000 +2665 68 0.400000 +2665 112 0.400000 +2665 229 0.400000 +2665 317 0.400000 +2665 331 0.400000 +2665 375 0.400000 +2665 421 0.400000 +2665 433 0.400000 +2665 437 0.400000 +2665 477 0.400000 +2665 515 0.400000 +2665 613 0.400000 +2665 654 0.400000 +2665 761 0.400000 +2665 784 0.400000 +2665 825 0.400000 +2665 855 0.400000 +2665 991 0.400000 +2665 1055 0.400000 +2665 1110 0.400000 +2665 1322 0.400000 +2665 1534 0.400000 +2665 1735 0.400000 +2665 1741 0.400000 +2665 1788 0.400000 +2665 1844 0.400000 +2665 1928 0.400000 +2665 1981 0.400000 +2665 2003 0.400000 +2665 2066 0.400000 +2665 2074 0.400000 +2665 2235 0.400000 +2665 2251 0.400000 +2665 2252 0.400000 +2665 2305 0.400000 +2665 2570 0.400000 +2665 2633 0.400000 +2665 2661 0.400000 +2665 2681 0.400000 +2665 2756 0.400000 +2665 2779 0.400000 +2665 2878 0.400000 +2665 2881 0.400000 +2665 3068 0.400000 +2665 3128 0.400000 +2665 3168 0.400000 +2665 3178 0.400000 +2665 3189 0.400000 +2666 95 0.400000 +2666 142 0.400000 +2666 169 0.400000 +2666 357 0.400000 +2666 368 0.400000 +2666 375 0.400000 +2666 390 0.400000 +2666 444 0.400000 +2666 498 0.400000 +2666 546 0.400000 +2666 557 0.400000 +2666 615 0.400000 +2666 617 0.400000 +2666 632 0.400000 +2666 651 0.400000 +2666 721 0.400000 +2666 737 0.400000 +2666 880 0.400000 +2666 900 0.400000 +2666 932 0.400000 +2666 940 0.400000 +2666 988 0.400000 +2666 1032 0.400000 +2666 1046 0.400000 +2666 1077 0.400000 +2666 1099 0.400000 +2666 1207 0.400000 +2666 1223 0.400000 +2666 1301 0.400000 +2666 1350 0.400000 +2666 1383 0.400000 +2666 1575 0.400000 +2666 1616 0.400000 +2666 1622 0.400000 +2666 1631 0.400000 +2666 1769 0.400000 +2666 1802 0.400000 +2666 1865 0.400000 +2666 1946 0.400000 +2666 1960 0.400000 +2666 1971 0.400000 +2666 2012 0.400000 +2666 2036 0.400000 +2666 2117 0.400000 +2666 2153 0.400000 +2666 2237 0.400000 +2666 2250 0.400000 +2666 2254 0.400000 +2666 2278 0.400000 +2666 2351 0.400000 +2666 2395 0.400000 +2666 2451 0.400000 +2666 2579 0.400000 +2666 2581 0.400000 +2666 2644 0.400000 +2666 2647 0.400000 +2666 2698 0.400000 +2666 2719 0.400000 +2666 2823 0.400000 +2666 2899 0.400000 +2666 2944 0.400000 +2666 2954 0.400000 +2666 2985 0.400000 +2666 2993 0.400000 +2666 3196 0.400000 +2667 28 0.400000 +2667 99 0.400000 +2667 106 0.400000 +2667 107 0.400000 +2667 127 0.400000 +2667 236 0.400000 +2667 259 0.400000 +2667 572 0.400000 +2667 603 0.400000 +2667 722 0.400000 +2667 757 0.400000 +2667 811 0.400000 +2667 966 0.400000 +2667 981 0.400000 +2667 1000 0.400000 +2667 1054 0.400000 +2667 1103 0.400000 +2667 1106 0.400000 +2667 1202 0.400000 +2667 1214 0.400000 +2667 1276 0.400000 +2667 1325 0.400000 +2667 1367 0.400000 +2667 1379 0.400000 +2667 1394 0.400000 +2667 1397 0.400000 +2667 1431 0.400000 +2667 1451 0.400000 +2667 1492 0.400000 +2667 1508 0.400000 +2667 1536 0.400000 +2667 1575 0.400000 +2667 1642 0.400000 +2667 1707 0.400000 +2667 1723 0.400000 +2667 1789 0.400000 +2667 1797 0.400000 +2667 1815 0.400000 +2667 1844 0.400000 +2667 1934 0.400000 +2667 1973 0.400000 +2667 2030 0.400000 +2667 2056 0.400000 +2667 2085 0.400000 +2667 2103 0.400000 +2667 2186 0.400000 +2667 2247 0.400000 +2667 2296 0.400000 +2667 2329 0.400000 +2667 2339 0.400000 +2667 2378 0.400000 +2667 2464 0.400000 +2667 2471 0.400000 +2667 2522 0.400000 +2667 2548 0.400000 +2667 2692 0.400000 +2667 2820 0.400000 +2667 2854 0.400000 +2667 2966 0.400000 +2667 2967 0.400000 +2667 3039 0.400000 +2667 3088 0.400000 +2667 3113 0.400000 +2667 3122 0.400000 +2667 3159 0.400000 +2668 9 0.400000 +2668 18 0.400000 +2668 27 0.400000 +2668 71 0.400000 +2668 83 0.400000 +2668 112 0.400000 +2668 130 0.400000 +2668 139 0.400000 +2668 153 0.400000 +2668 315 0.400000 +2668 327 0.400000 +2668 462 0.400000 +2668 482 0.400000 +2668 496 0.400000 +2668 525 0.400000 +2668 529 0.400000 +2668 536 0.400000 +2668 561 0.400000 +2668 568 0.400000 +2668 665 0.400000 +2668 723 0.400000 +2668 739 0.400000 +2668 806 0.400000 +2668 960 0.400000 +2668 982 0.400000 +2668 998 0.400000 +2668 1041 0.400000 +2668 1229 0.400000 +2668 1307 0.400000 +2668 1350 0.400000 +2668 1565 0.400000 +2668 1618 0.400000 +2668 1780 0.400000 +2668 1939 0.400000 +2668 1943 0.400000 +2668 2000 0.400000 +2668 2058 0.400000 +2668 2182 0.400000 +2668 2208 0.400000 +2668 2281 0.400000 +2668 2350 0.400000 +2668 2376 0.400000 +2668 2382 0.400000 +2668 2383 0.400000 +2668 2495 0.400000 +2668 2520 0.400000 +2668 2576 0.400000 +2668 2600 0.400000 +2668 2704 0.400000 +2668 2744 0.400000 +2668 2924 0.400000 +2668 3026 0.400000 +2668 3032 0.400000 +2668 3033 0.400000 +2668 3076 0.400000 +2669 115 0.400000 +2669 174 0.400000 +2669 187 0.400000 +2669 202 0.400000 +2669 209 0.400000 +2669 239 0.400000 +2669 317 0.400000 +2669 321 0.400000 +2669 442 0.400000 +2669 448 0.400000 +2669 478 0.400000 +2669 482 0.400000 +2669 486 0.400000 +2669 537 0.400000 +2669 565 0.400000 +2669 659 0.400000 +2669 665 0.400000 +2669 691 0.400000 +2669 698 0.400000 +2669 712 0.400000 +2669 724 0.400000 +2669 750 0.400000 +2669 778 0.400000 +2669 849 0.400000 +2669 892 0.400000 +2669 907 0.400000 +2669 920 0.400000 +2669 933 0.400000 +2669 948 0.400000 +2669 1033 0.400000 +2669 1041 0.400000 +2669 1066 0.400000 +2669 1105 0.400000 +2669 1257 0.400000 +2669 1265 0.400000 +2669 1363 0.400000 +2669 1453 0.400000 +2669 1466 0.400000 +2669 1514 0.400000 +2669 1531 0.400000 +2669 1813 0.400000 +2669 1850 0.400000 +2669 1929 0.400000 +2669 1942 0.400000 +2669 2115 0.400000 +2669 2176 0.400000 +2669 2242 0.400000 +2669 2321 0.400000 +2669 2361 0.400000 +2669 2438 0.400000 +2669 2446 0.400000 +2669 2505 0.400000 +2669 2566 0.400000 +2669 2650 0.400000 +2669 2734 0.400000 +2669 2782 0.400000 +2669 2798 0.400000 +2669 2960 0.400000 +2669 3001 0.400000 +2669 3043 0.400000 +2669 3058 0.400000 +2669 3128 0.400000 +2670 85 0.400000 +2670 134 0.400000 +2670 267 0.400000 +2670 280 0.400000 +2670 318 0.400000 +2670 399 0.400000 +2670 433 0.400000 +2670 468 0.400000 +2670 571 0.400000 +2670 582 0.400000 +2670 585 0.400000 +2670 613 0.400000 +2670 686 0.400000 +2670 708 0.400000 +2670 715 0.400000 +2670 739 0.400000 +2670 763 0.400000 +2670 927 0.400000 +2670 932 0.400000 +2670 986 0.400000 +2670 999 0.400000 +2670 1192 0.400000 +2670 1203 0.400000 +2670 1226 0.400000 +2670 1423 0.400000 +2670 1430 0.400000 +2670 1530 0.400000 +2670 1655 0.400000 +2670 1769 0.400000 +2670 1774 0.400000 +2670 1793 0.400000 +2670 1825 0.400000 +2670 1897 0.400000 +2670 1941 0.400000 +2670 2023 0.400000 +2670 2069 0.400000 +2670 2123 0.400000 +2670 2207 0.400000 +2670 2289 0.400000 +2670 2373 0.400000 +2670 2377 0.400000 +2670 2463 0.400000 +2670 2474 0.400000 +2670 2478 0.400000 +2670 2502 0.400000 +2670 2595 0.400000 +2670 2604 0.400000 +2670 2653 0.400000 +2670 2669 0.400000 +2670 2673 0.400000 +2670 2723 0.400000 +2670 2770 0.400000 +2670 2823 0.400000 +2670 2835 0.400000 +2670 2840 0.400000 +2670 2878 0.400000 +2670 2972 0.400000 +2670 3084 0.400000 +2670 3101 0.400000 +2670 3191 0.400000 +2671 20 0.400000 +2671 39 0.400000 +2671 40 0.400000 +2671 64 0.400000 +2671 111 0.400000 +2671 231 0.400000 +2671 276 0.400000 +2671 293 0.400000 +2671 322 0.400000 +2671 399 0.400000 +2671 437 0.400000 +2671 492 0.400000 +2671 557 0.400000 +2671 576 0.400000 +2671 597 0.400000 +2671 620 0.400000 +2671 626 0.400000 +2671 662 0.400000 +2671 666 0.400000 +2671 676 0.400000 +2671 726 0.400000 +2671 737 0.400000 +2671 741 0.400000 +2671 747 0.400000 +2671 771 0.400000 +2671 884 0.400000 +2671 1158 0.400000 +2671 1178 0.400000 +2671 1221 0.400000 +2671 1279 0.400000 +2671 1365 0.400000 +2671 1411 0.400000 +2671 1417 0.400000 +2671 1490 0.400000 +2671 1578 0.400000 +2671 1652 0.400000 +2671 1691 0.400000 +2671 1770 0.400000 +2671 1799 0.400000 +2671 1841 0.400000 +2671 1981 0.400000 +2671 1983 0.400000 +2671 2008 0.400000 +2671 2029 0.400000 +2671 2070 0.400000 +2671 2158 0.400000 +2671 2222 0.400000 +2671 2291 0.400000 +2671 2405 0.400000 +2671 2413 0.400000 +2671 2416 0.400000 +2671 2490 0.400000 +2671 2525 0.400000 +2671 2569 0.400000 +2671 2583 0.400000 +2671 2585 0.400000 +2671 2589 0.400000 +2671 2628 0.400000 +2671 2638 0.400000 +2671 2662 0.400000 +2671 2759 0.400000 +2671 2815 0.400000 +2671 2820 0.400000 +2671 2836 0.400000 +2671 2996 0.400000 +2671 3060 0.400000 +2671 3128 0.400000 +2671 3142 0.400000 +2671 3165 0.400000 +2672 28 0.400000 +2672 127 0.400000 +2672 145 0.400000 +2672 174 0.400000 +2672 199 0.400000 +2672 202 0.400000 +2672 216 0.400000 +2672 217 0.400000 +2672 225 0.400000 +2672 261 0.400000 +2672 317 0.400000 +2672 517 0.400000 +2672 521 0.400000 +2672 547 0.400000 +2672 549 0.400000 +2672 595 0.400000 +2672 611 0.400000 +2672 624 0.400000 +2672 634 0.400000 +2672 635 0.400000 +2672 652 0.400000 +2672 698 0.400000 +2672 732 0.400000 +2672 745 0.400000 +2672 803 0.400000 +2672 951 0.400000 +2672 988 0.400000 +2672 1004 0.400000 +2672 1044 0.400000 +2672 1047 0.400000 +2672 1254 0.400000 +2672 1268 0.400000 +2672 1335 0.400000 +2672 1351 0.400000 +2672 1368 0.400000 +2672 1426 0.400000 +2672 1440 0.400000 +2672 1644 0.400000 +2672 1646 0.400000 +2672 1666 0.400000 +2672 1682 0.400000 +2672 1687 0.400000 +2672 1695 0.400000 +2672 1751 0.400000 +2672 1821 0.400000 +2672 1900 0.400000 +2672 2258 0.400000 +2672 2392 0.400000 +2672 2401 0.400000 +2672 2435 0.400000 +2672 2474 0.400000 +2672 2497 0.400000 +2672 2546 0.400000 +2672 2601 0.400000 +2672 2627 0.400000 +2672 2637 0.400000 +2672 2665 0.400000 +2672 2711 0.400000 +2672 2721 0.400000 +2672 2767 0.400000 +2672 2824 0.400000 +2672 2861 0.400000 +2672 2999 0.400000 +2672 3010 0.400000 +2672 3020 0.400000 +2672 3023 0.400000 +2672 3054 0.400000 +2672 3125 0.400000 +2672 3181 0.400000 +2673 83 0.400000 +2673 178 0.400000 +2673 227 0.400000 +2673 399 0.400000 +2673 408 0.400000 +2673 415 0.400000 +2673 426 0.400000 +2673 435 0.400000 +2673 498 0.400000 +2673 554 0.400000 +2673 570 0.400000 +2673 613 0.400000 +2673 646 0.400000 +2673 680 0.400000 +2673 712 0.400000 +2673 754 0.400000 +2673 778 0.400000 +2673 912 0.400000 +2673 935 0.400000 +2673 1006 0.400000 +2673 1039 0.400000 +2673 1046 0.400000 +2673 1048 0.400000 +2673 1056 0.400000 +2673 1074 0.400000 +2673 1300 0.400000 +2673 1324 0.400000 +2673 1373 0.400000 +2673 1397 0.400000 +2673 1403 0.400000 +2673 1417 0.400000 +2673 1447 0.400000 +2673 1475 0.400000 +2673 1496 0.400000 +2673 1522 0.400000 +2673 1595 0.400000 +2673 1636 0.400000 +2673 1660 0.400000 +2673 1685 0.400000 +2673 1686 0.400000 +2673 1705 0.400000 +2673 1790 0.400000 +2673 1796 0.400000 +2673 1826 0.400000 +2673 1848 0.400000 +2673 2071 0.400000 +2673 2234 0.400000 +2673 2265 0.400000 +2673 2330 0.400000 +2673 2354 0.400000 +2673 2404 0.400000 +2673 2406 0.400000 +2673 2434 0.400000 +2673 2437 0.400000 +2673 2455 0.400000 +2673 2505 0.400000 +2673 2531 0.400000 +2673 2678 0.400000 +2673 2686 0.400000 +2673 2714 0.400000 +2673 2736 0.400000 +2673 2761 0.400000 +2673 2764 0.400000 +2673 2772 0.400000 +2673 2867 0.400000 +2673 2873 0.400000 +2673 3019 0.400000 +2673 3024 0.400000 +2673 3110 0.400000 +2673 3145 0.400000 +2673 3155 0.400000 +2673 3169 0.400000 +2673 3180 0.400000 +2674 143 0.400000 +2674 194 0.400000 +2674 203 0.400000 +2674 271 0.400000 +2674 283 0.400000 +2674 337 0.400000 +2674 403 0.400000 +2674 416 0.400000 +2674 440 0.400000 +2674 458 0.400000 +2674 549 0.400000 +2674 591 0.400000 +2674 617 0.400000 +2674 640 0.400000 +2674 697 0.400000 +2674 754 0.400000 +2674 867 0.400000 +2674 974 0.400000 +2674 1241 0.400000 +2674 1340 0.400000 +2674 1376 0.400000 +2674 1391 0.400000 +2674 1423 0.400000 +2674 1448 0.400000 +2674 1472 0.400000 +2674 1504 0.400000 +2674 1521 0.400000 +2674 1528 0.400000 +2674 1613 0.400000 +2674 1650 0.400000 +2674 1653 0.400000 +2674 1686 0.400000 +2674 1845 0.400000 +2674 1852 0.400000 +2674 1946 0.400000 +2674 1959 0.400000 +2674 1961 0.400000 +2674 1986 0.400000 +2674 2000 0.400000 +2674 2104 0.400000 +2674 2115 0.400000 +2674 2124 0.400000 +2674 2151 0.400000 +2674 2162 0.400000 +2674 2204 0.400000 +2674 2354 0.400000 +2674 2435 0.400000 +2674 2495 0.400000 +2674 2612 0.400000 +2674 2615 0.400000 +2674 2682 0.400000 +2674 2696 0.400000 +2674 2707 0.400000 +2674 2743 0.400000 +2674 2771 0.400000 +2674 2778 0.400000 +2674 2910 0.400000 +2674 2923 0.400000 +2674 2945 0.400000 +2674 2952 0.400000 +2674 3061 0.400000 +2674 3086 0.400000 +2674 3113 0.400000 +2675 97 0.400000 +2675 115 0.400000 +2675 161 0.400000 +2675 165 0.400000 +2675 177 0.400000 +2675 200 0.400000 +2675 343 0.400000 +2675 407 0.400000 +2675 494 0.400000 +2675 518 0.400000 +2675 568 0.400000 +2675 628 0.400000 +2675 714 0.400000 +2675 721 0.400000 +2675 738 0.400000 +2675 785 0.400000 +2675 820 0.400000 +2675 888 0.400000 +2675 898 0.400000 +2675 903 0.400000 +2675 983 0.400000 +2675 1030 0.400000 +2675 1107 0.400000 +2675 1109 0.400000 +2675 1144 0.400000 +2675 1167 0.400000 +2675 1200 0.400000 +2675 1202 0.400000 +2675 1307 0.400000 +2675 1315 0.400000 +2675 1323 0.400000 +2675 1346 0.400000 +2675 1389 0.400000 +2675 1419 0.400000 +2675 1449 0.400000 +2675 1462 0.400000 +2675 1479 0.400000 +2675 1539 0.400000 +2675 1568 0.400000 +2675 1637 0.400000 +2675 1799 0.400000 +2675 1919 0.400000 +2675 2038 0.400000 +2675 2099 0.400000 +2675 2177 0.400000 +2675 2198 0.400000 +2675 2249 0.400000 +2675 2346 0.400000 +2675 2441 0.400000 +2675 2468 0.400000 +2675 2528 0.400000 +2675 2546 0.400000 +2675 2641 0.400000 +2675 2680 0.400000 +2675 2709 0.400000 +2675 2721 0.400000 +2675 2782 0.400000 +2675 2823 0.400000 +2675 2849 0.400000 +2675 2876 0.400000 +2675 2910 0.400000 +2675 3009 0.400000 +2675 3093 0.400000 +2675 3101 0.400000 +2675 3110 0.400000 +2675 3140 0.400000 +2675 3146 0.400000 +2675 3182 0.400000 +2676 4 0.400000 +2676 173 0.400000 +2676 210 0.400000 +2676 247 0.400000 +2676 304 0.400000 +2676 346 0.400000 +2676 347 0.400000 +2676 413 0.400000 +2676 425 0.400000 +2676 441 0.400000 +2676 458 0.400000 +2676 468 0.400000 +2676 470 0.400000 +2676 534 0.400000 +2676 602 0.400000 +2676 619 0.400000 +2676 641 0.400000 +2676 715 0.400000 +2676 749 0.400000 +2676 754 0.400000 +2676 820 0.400000 +2676 920 0.400000 +2676 938 0.400000 +2676 996 0.400000 +2676 1003 0.400000 +2676 1017 0.400000 +2676 1022 0.400000 +2676 1034 0.400000 +2676 1120 0.400000 +2676 1189 0.400000 +2676 1217 0.400000 +2676 1229 0.400000 +2676 1283 0.400000 +2676 1304 0.400000 +2676 1314 0.400000 +2676 1425 0.400000 +2676 1447 0.400000 +2676 1466 0.400000 +2676 1494 0.400000 +2676 1575 0.400000 +2676 1610 0.400000 +2676 1617 0.400000 +2676 1639 0.400000 +2676 1657 0.400000 +2676 1736 0.400000 +2676 1740 0.400000 +2676 1773 0.400000 +2676 1868 0.400000 +2676 1923 0.400000 +2676 1926 0.400000 +2676 1939 0.400000 +2676 2023 0.400000 +2676 2057 0.400000 +2676 2223 0.400000 +2676 2350 0.400000 +2676 2368 0.400000 +2676 2471 0.400000 +2676 2520 0.400000 +2676 2522 0.400000 +2676 2553 0.400000 +2676 2602 0.400000 +2676 2757 0.400000 +2676 2767 0.400000 +2676 2784 0.400000 +2676 2863 0.400000 +2676 2898 0.400000 +2676 2978 0.400000 +2676 3116 0.400000 +2676 3154 0.400000 +2676 3176 0.400000 +2677 17 0.400000 +2677 49 0.400000 +2677 85 0.400000 +2677 177 0.400000 +2677 243 0.400000 +2677 248 0.400000 +2677 255 0.400000 +2677 434 0.400000 +2677 444 0.400000 +2677 447 0.400000 +2677 522 0.400000 +2677 590 0.400000 +2677 617 0.400000 +2677 702 0.400000 +2677 708 0.400000 +2677 747 0.400000 +2677 756 0.400000 +2677 789 0.400000 +2677 825 0.400000 +2677 866 0.400000 +2677 973 0.400000 +2677 981 0.400000 +2677 995 0.400000 +2677 1043 0.400000 +2677 1049 0.400000 +2677 1123 0.400000 +2677 1126 0.400000 +2677 1139 0.400000 +2677 1226 0.400000 +2677 1249 0.400000 +2677 1461 0.400000 +2677 1516 0.400000 +2677 1562 0.400000 +2677 1568 0.400000 +2677 1605 0.400000 +2677 1710 0.400000 +2677 1723 0.400000 +2677 1776 0.400000 +2677 1948 0.400000 +2677 2094 0.400000 +2677 2135 0.400000 +2677 2148 0.400000 +2677 2168 0.400000 +2677 2212 0.400000 +2677 2238 0.400000 +2677 2243 0.400000 +2677 2363 0.400000 +2677 2388 0.400000 +2677 2398 0.400000 +2677 2451 0.400000 +2677 2456 0.400000 +2677 2466 0.400000 +2677 2481 0.400000 +2677 2498 0.400000 +2677 2501 0.400000 +2677 2513 0.400000 +2677 2551 0.400000 +2677 2600 0.400000 +2677 2622 0.400000 +2677 2665 0.400000 +2677 2698 0.400000 +2677 2735 0.400000 +2677 2777 0.400000 +2677 2836 0.400000 +2677 2842 0.400000 +2677 2859 0.400000 +2677 2898 0.400000 +2677 2971 0.400000 +2677 3100 0.400000 +2677 3152 0.400000 +2678 43 0.400000 +2678 85 0.400000 +2678 89 0.400000 +2678 110 0.400000 +2678 115 0.400000 +2678 127 0.400000 +2678 244 0.400000 +2678 255 0.400000 +2678 276 0.400000 +2678 362 0.400000 +2678 384 0.400000 +2678 397 0.400000 +2678 422 0.400000 +2678 444 0.400000 +2678 515 0.400000 +2678 522 0.400000 +2678 559 0.400000 +2678 794 0.400000 +2678 1006 0.400000 +2678 1054 0.400000 +2678 1084 0.400000 +2678 1151 0.400000 +2678 1187 0.400000 +2678 1194 0.400000 +2678 1205 0.400000 +2678 1298 0.400000 +2678 1512 0.400000 +2678 1569 0.400000 +2678 1695 0.400000 +2678 1707 0.400000 +2678 1849 0.400000 +2678 1953 0.400000 +2678 2048 0.400000 +2678 2058 0.400000 +2678 2104 0.400000 +2678 2116 0.400000 +2678 2125 0.400000 +2678 2172 0.400000 +2678 2206 0.400000 +2678 2249 0.400000 +2678 2268 0.400000 +2678 2315 0.400000 +2678 2363 0.400000 +2678 2380 0.400000 +2678 2384 0.400000 +2678 2427 0.400000 +2678 2432 0.400000 +2678 2500 0.400000 +2678 2507 0.400000 +2678 2559 0.400000 +2678 2739 0.400000 +2678 2776 0.400000 +2678 2786 0.400000 +2678 2819 0.400000 +2678 2878 0.400000 +2678 2903 0.400000 +2678 2942 0.400000 +2678 2948 0.400000 +2678 2975 0.400000 +2678 2986 0.400000 +2678 3004 0.400000 +2678 3160 0.400000 +2679 67 0.400000 +2679 78 0.400000 +2679 110 0.400000 +2679 138 0.400000 +2679 164 0.400000 +2679 216 0.400000 +2679 232 0.400000 +2679 286 0.400000 +2679 344 0.400000 +2679 349 0.400000 +2679 377 0.400000 +2679 388 0.400000 +2679 479 0.400000 +2679 505 0.400000 +2679 510 0.400000 +2679 564 0.400000 +2679 574 0.400000 +2679 584 0.400000 +2679 600 0.400000 +2679 631 0.400000 +2679 637 0.400000 +2679 655 0.400000 +2679 656 0.400000 +2679 672 0.400000 +2679 730 0.400000 +2679 761 0.400000 +2679 822 0.400000 +2679 848 0.400000 +2679 850 0.400000 +2679 883 0.400000 +2679 903 0.400000 +2679 926 0.400000 +2679 957 0.400000 +2679 1053 0.400000 +2679 1069 0.400000 +2679 1092 0.400000 +2679 1110 0.400000 +2679 1194 0.400000 +2679 1275 0.400000 +2679 1394 0.400000 +2679 1412 0.400000 +2679 1423 0.400000 +2679 1442 0.400000 +2679 1526 0.400000 +2679 1576 0.400000 +2679 1628 0.400000 +2679 1638 0.400000 +2679 1670 0.400000 +2679 1713 0.400000 +2679 1737 0.400000 +2679 1766 0.400000 +2679 1781 0.400000 +2679 1807 0.400000 +2679 1858 0.400000 +2679 1908 0.400000 +2679 1911 0.400000 +2679 1990 0.400000 +2679 2035 0.400000 +2679 2044 0.400000 +2679 2057 0.400000 +2679 2088 0.400000 +2679 2090 0.400000 +2679 2104 0.400000 +2679 2126 0.400000 +2679 2405 0.400000 +2679 2410 0.400000 +2679 2472 0.400000 +2679 2489 0.400000 +2679 2563 0.400000 +2679 2642 0.400000 +2679 2699 0.400000 +2679 2847 0.400000 +2679 2892 0.400000 +2679 2909 0.400000 +2679 3051 0.400000 +2679 3112 0.400000 +2679 3134 0.400000 +2679 3168 0.400000 +2680 94 0.400000 +2680 178 0.400000 +2680 258 0.400000 +2680 279 0.400000 +2680 332 0.400000 +2680 344 0.400000 +2680 384 0.400000 +2680 507 0.400000 +2680 538 0.400000 +2680 611 0.400000 +2680 702 0.400000 +2680 741 0.400000 +2680 798 0.400000 +2680 815 0.400000 +2680 829 0.400000 +2680 840 0.400000 +2680 948 0.400000 +2680 966 0.400000 +2680 973 0.400000 +2680 989 0.400000 +2680 1015 0.400000 +2680 1019 0.400000 +2680 1029 0.400000 +2680 1034 0.400000 +2680 1135 0.400000 +2680 1293 0.400000 +2680 1395 0.400000 +2680 1407 0.400000 +2680 1464 0.400000 +2680 1469 0.400000 +2680 1585 0.400000 +2680 1641 0.400000 +2680 1658 0.400000 +2680 1742 0.400000 +2680 1762 0.400000 +2680 1776 0.400000 +2680 1791 0.400000 +2680 1804 0.400000 +2680 1805 0.400000 +2680 1968 0.400000 +2680 2061 0.400000 +2680 2208 0.400000 +2680 2282 0.400000 +2680 2298 0.400000 +2680 2348 0.400000 +2680 2383 0.400000 +2680 2403 0.400000 +2680 2515 0.400000 +2680 2545 0.400000 +2680 2610 0.400000 +2680 2619 0.400000 +2680 2699 0.400000 +2680 2709 0.400000 +2680 2724 0.400000 +2680 2920 0.400000 +2680 2967 0.400000 +2680 3133 0.400000 +2680 3157 0.400000 +2680 3160 0.400000 +2680 3165 0.400000 +2680 3173 0.400000 +2681 64 0.400000 +2681 79 0.400000 +2681 142 0.400000 +2681 193 0.400000 +2681 213 0.400000 +2681 228 0.400000 +2681 248 0.400000 +2681 364 0.400000 +2681 366 0.400000 +2681 375 0.400000 +2681 410 0.400000 +2681 483 0.400000 +2681 499 0.400000 +2681 712 0.400000 +2681 759 0.400000 +2681 805 0.400000 +2681 863 0.400000 +2681 924 0.400000 +2681 966 0.400000 +2681 1026 0.400000 +2681 1069 0.400000 +2681 1077 0.400000 +2681 1118 0.400000 +2681 1325 0.400000 +2681 1390 0.400000 +2681 1399 0.400000 +2681 1502 0.400000 +2681 1516 0.400000 +2681 1564 0.400000 +2681 1617 0.400000 +2681 1648 0.400000 +2681 1679 0.400000 +2681 1689 0.400000 +2681 1742 0.400000 +2681 1784 0.400000 +2681 1787 0.400000 +2681 1835 0.400000 +2681 1839 0.400000 +2681 1890 0.400000 +2681 2004 0.400000 +2681 2013 0.400000 +2681 2057 0.400000 +2681 2084 0.400000 +2681 2253 0.400000 +2681 2258 0.400000 +2681 2314 0.400000 +2681 2375 0.400000 +2681 2417 0.400000 +2681 2445 0.400000 +2681 2484 0.400000 +2681 2500 0.400000 +2681 2502 0.400000 +2681 2611 0.400000 +2681 2684 0.400000 +2681 2728 0.400000 +2681 2733 0.400000 +2681 2845 0.400000 +2681 2925 0.400000 +2681 2931 0.400000 +2681 3183 0.400000 +2682 18 0.400000 +2682 121 0.400000 +2682 173 0.400000 +2682 217 0.400000 +2682 222 0.400000 +2682 253 0.400000 +2682 362 0.400000 +2682 363 0.400000 +2682 509 0.400000 +2682 523 0.400000 +2682 537 0.400000 +2682 564 0.400000 +2682 687 0.400000 +2682 703 0.400000 +2682 722 0.400000 +2682 742 0.400000 +2682 785 0.400000 +2682 803 0.400000 +2682 930 0.400000 +2682 952 0.400000 +2682 978 0.400000 +2682 1010 0.400000 +2682 1028 0.400000 +2682 1180 0.400000 +2682 1207 0.400000 +2682 1240 0.400000 +2682 1328 0.400000 +2682 1632 0.400000 +2682 1653 0.400000 +2682 1681 0.400000 +2682 1769 0.400000 +2682 1854 0.400000 +2682 1874 0.400000 +2682 1876 0.400000 +2682 1888 0.400000 +2682 1894 0.400000 +2682 1907 0.400000 +2682 1996 0.400000 +2682 2068 0.400000 +2682 2266 0.400000 +2682 2341 0.400000 +2682 2342 0.400000 +2682 2383 0.400000 +2682 2387 0.400000 +2682 2416 0.400000 +2682 2484 0.400000 +2682 2513 0.400000 +2682 2580 0.400000 +2682 2705 0.400000 +2682 2724 0.400000 +2682 2807 0.400000 +2682 2823 0.400000 +2682 2914 0.400000 +2682 2956 0.400000 +2682 2971 0.400000 +2682 3005 0.400000 +2682 3030 0.400000 +2682 3052 0.400000 +2682 3090 0.400000 +2682 3149 0.400000 +2683 62 0.400000 +2683 72 0.400000 +2683 115 0.400000 +2683 130 0.400000 +2683 140 0.400000 +2683 174 0.400000 +2683 208 0.400000 +2683 217 0.400000 +2683 244 0.400000 +2683 250 0.400000 +2683 255 0.400000 +2683 288 0.400000 +2683 292 0.400000 +2683 347 0.400000 +2683 354 0.400000 +2683 360 0.400000 +2683 422 0.400000 +2683 508 0.400000 +2683 532 0.400000 +2683 550 0.400000 +2683 553 0.400000 +2683 554 0.400000 +2683 568 0.400000 +2683 580 0.400000 +2683 596 0.400000 +2683 603 0.400000 +2683 688 0.400000 +2683 695 0.400000 +2683 740 0.400000 +2683 774 0.400000 +2683 794 0.400000 +2683 853 0.400000 +2683 913 0.400000 +2683 963 0.400000 +2683 965 0.400000 +2683 974 0.400000 +2683 1008 0.400000 +2683 1009 0.400000 +2683 1049 0.400000 +2683 1119 0.400000 +2683 1121 0.400000 +2683 1218 0.400000 +2683 1296 0.400000 +2683 1317 0.400000 +2683 1330 0.400000 +2683 1388 0.400000 +2683 1414 0.400000 +2683 1536 0.400000 +2683 1608 0.400000 +2683 1609 0.400000 +2683 1627 0.400000 +2683 1766 0.400000 +2683 1780 0.400000 +2683 1805 0.400000 +2683 1818 0.400000 +2683 1822 0.400000 +2683 1839 0.400000 +2683 1855 0.400000 +2683 2074 0.400000 +2683 2079 0.400000 +2683 2121 0.400000 +2683 2257 0.400000 +2683 2321 0.400000 +2683 2386 0.400000 +2683 2403 0.400000 +2683 2428 0.400000 +2683 2441 0.400000 +2683 2453 0.400000 +2683 2528 0.400000 +2683 2532 0.400000 +2683 2667 0.400000 +2683 2678 0.400000 +2683 2729 0.400000 +2683 2741 0.400000 +2683 2782 0.400000 +2683 2841 0.400000 +2683 2893 0.400000 +2683 3012 0.400000 +2683 3144 0.400000 +2683 3145 0.400000 +2684 107 0.400000 +2684 191 0.400000 +2684 225 0.400000 +2684 276 0.400000 +2684 302 0.400000 +2684 377 0.400000 +2684 391 0.400000 +2684 449 0.400000 +2684 486 0.400000 +2684 489 0.400000 +2684 540 0.400000 +2684 603 0.400000 +2684 620 0.400000 +2684 621 0.400000 +2684 630 0.400000 +2684 734 0.400000 +2684 752 0.400000 +2684 783 0.400000 +2684 793 0.400000 +2684 857 0.400000 +2684 878 0.400000 +2684 959 0.400000 +2684 1011 0.400000 +2684 1039 0.400000 +2684 1053 0.400000 +2684 1114 0.400000 +2684 1225 0.400000 +2684 1339 0.400000 +2684 1441 0.400000 +2684 1446 0.400000 +2684 1620 0.400000 +2684 1671 0.400000 +2684 1707 0.400000 +2684 1739 0.400000 +2684 1773 0.400000 +2684 1797 0.400000 +2684 1854 0.400000 +2684 1871 0.400000 +2684 1898 0.400000 +2684 1989 0.400000 +2684 2005 0.400000 +2684 2027 0.400000 +2684 2053 0.400000 +2684 2099 0.400000 +2684 2113 0.400000 +2684 2118 0.400000 +2684 2137 0.400000 +2684 2138 0.400000 +2684 2162 0.400000 +2684 2212 0.400000 +2684 2263 0.400000 +2684 2395 0.400000 +2684 2417 0.400000 +2684 2444 0.400000 +2684 2458 0.400000 +2684 2476 0.400000 +2684 2486 0.400000 +2684 2500 0.400000 +2684 2506 0.400000 +2684 2596 0.400000 +2684 2635 0.400000 +2684 2668 0.400000 +2684 2703 0.400000 +2684 2714 0.400000 +2684 2826 0.400000 +2684 2850 0.400000 +2684 2853 0.400000 +2684 3035 0.400000 +2684 3114 0.400000 +2684 3194 0.400000 +2684 3195 0.400000 +2685 25 0.400000 +2685 135 0.400000 +2685 199 0.400000 +2685 200 0.400000 +2685 281 0.400000 +2685 298 0.400000 +2685 344 0.400000 +2685 359 0.400000 +2685 455 0.400000 +2685 501 0.400000 +2685 596 0.400000 +2685 617 0.400000 +2685 673 0.400000 +2685 761 0.400000 +2685 791 0.400000 +2685 855 0.400000 +2685 857 0.400000 +2685 937 0.400000 +2685 952 0.400000 +2685 993 0.400000 +2685 1038 0.400000 +2685 1152 0.400000 +2685 1173 0.400000 +2685 1344 0.400000 +2685 1366 0.400000 +2685 1449 0.400000 +2685 1506 0.400000 +2685 1594 0.400000 +2685 1630 0.400000 +2685 1741 0.400000 +2685 1758 0.400000 +2685 1808 0.400000 +2685 1887 0.400000 +2685 1957 0.400000 +2685 1963 0.400000 +2685 2013 0.400000 +2685 2179 0.400000 +2685 2305 0.400000 +2685 2313 0.400000 +2685 2341 0.400000 +2685 2374 0.400000 +2685 2460 0.400000 +2685 2564 0.400000 +2685 2603 0.400000 +2685 2649 0.400000 +2685 2702 0.400000 +2685 2703 0.400000 +2685 2719 0.400000 +2685 2899 0.400000 +2685 2973 0.400000 +2685 2996 0.400000 +2685 3039 0.400000 +2685 3083 0.400000 +2685 3165 0.400000 +2686 18 0.400000 +2686 110 0.400000 +2686 145 0.400000 +2686 199 0.400000 +2686 228 0.400000 +2686 315 0.400000 +2686 430 0.400000 +2686 445 0.400000 +2686 478 0.400000 +2686 481 0.400000 +2686 545 0.400000 +2686 623 0.400000 +2686 769 0.400000 +2686 772 0.400000 +2686 782 0.400000 +2686 874 0.400000 +2686 1025 0.400000 +2686 1042 0.400000 +2686 1143 0.400000 +2686 1156 0.400000 +2686 1297 0.400000 +2686 1337 0.400000 +2686 1344 0.400000 +2686 1357 0.400000 +2686 1369 0.400000 +2686 1574 0.400000 +2686 1667 0.400000 +2686 1669 0.400000 +2686 1676 0.400000 +2686 1718 0.400000 +2686 1960 0.400000 +2686 2067 0.400000 +2686 2106 0.400000 +2686 2114 0.400000 +2686 2123 0.400000 +2686 2137 0.400000 +2686 2162 0.400000 +2686 2339 0.400000 +2686 2366 0.400000 +2686 2429 0.400000 +2686 2461 0.400000 +2686 2490 0.400000 +2686 2510 0.400000 +2686 2537 0.400000 +2686 2652 0.400000 +2686 2657 0.400000 +2686 2680 0.400000 +2686 2748 0.400000 +2686 2846 0.400000 +2686 2942 0.400000 +2686 2993 0.400000 +2686 3018 0.400000 +2686 3088 0.400000 +2687 61 0.400000 +2687 73 0.400000 +2687 127 0.400000 +2687 146 0.400000 +2687 164 0.400000 +2687 178 0.400000 +2687 232 0.400000 +2687 283 0.400000 +2687 349 0.400000 +2687 395 0.400000 +2687 399 0.400000 +2687 421 0.400000 +2687 430 0.400000 +2687 565 0.400000 +2687 731 0.400000 +2687 743 0.400000 +2687 849 0.400000 +2687 911 0.400000 +2687 953 0.400000 +2687 1002 0.400000 +2687 1037 0.400000 +2687 1084 0.400000 +2687 1149 0.400000 +2687 1215 0.400000 +2687 1218 0.400000 +2687 1248 0.400000 +2687 1267 0.400000 +2687 1297 0.400000 +2687 1327 0.400000 +2687 1410 0.400000 +2687 1411 0.400000 +2687 1425 0.400000 +2687 1534 0.400000 +2687 1539 0.400000 +2687 1562 0.400000 +2687 1616 0.400000 +2687 1672 0.400000 +2687 1766 0.400000 +2687 1797 0.400000 +2687 1893 0.400000 +2687 1955 0.400000 +2687 1984 0.400000 +2687 1987 0.400000 +2687 2051 0.400000 +2687 2119 0.400000 +2687 2163 0.400000 +2687 2272 0.400000 +2687 2290 0.400000 +2687 2418 0.400000 +2687 2419 0.400000 +2687 2497 0.400000 +2687 2527 0.400000 +2687 2750 0.400000 +2687 2809 0.400000 +2687 2854 0.400000 +2687 2858 0.400000 +2687 2862 0.400000 +2687 2917 0.400000 +2687 3055 0.400000 +2687 3062 0.400000 +2687 3066 0.400000 +2687 3167 0.400000 +2687 3170 0.400000 +2687 3181 0.400000 +2688 51 0.400000 +2688 57 0.400000 +2688 74 0.400000 +2688 132 0.400000 +2688 174 0.400000 +2688 184 0.400000 +2688 191 0.400000 +2688 216 0.400000 +2688 230 0.400000 +2688 297 0.400000 +2688 374 0.400000 +2688 420 0.400000 +2688 566 0.400000 +2688 585 0.400000 +2688 628 0.400000 +2688 725 0.400000 +2688 953 0.400000 +2688 1093 0.400000 +2688 1103 0.400000 +2688 1261 0.400000 +2688 1473 0.400000 +2688 1525 0.400000 +2688 1538 0.400000 +2688 1779 0.400000 +2688 1817 0.400000 +2688 1833 0.400000 +2688 1834 0.400000 +2688 1867 0.400000 +2688 1878 0.400000 +2688 1879 0.400000 +2688 1913 0.400000 +2688 1956 0.400000 +2688 1962 0.400000 +2688 2009 0.400000 +2688 2126 0.400000 +2688 2212 0.400000 +2688 2326 0.400000 +2688 2329 0.400000 +2688 2387 0.400000 +2688 2407 0.400000 +2688 2421 0.400000 +2688 2485 0.400000 +2688 2504 0.400000 +2688 2540 0.400000 +2688 2581 0.400000 +2688 2618 0.400000 +2688 2739 0.400000 +2688 2774 0.400000 +2688 2907 0.400000 +2688 2949 0.400000 +2688 2953 0.400000 +2688 3124 0.400000 +2688 3146 0.400000 +2688 3194 0.400000 +2689 142 0.400000 +2689 188 0.400000 +2689 240 0.400000 +2689 296 0.400000 +2689 323 0.400000 +2689 327 0.400000 +2689 351 0.400000 +2689 404 0.400000 +2689 411 0.400000 +2689 447 0.400000 +2689 506 0.400000 +2689 571 0.400000 +2689 793 0.400000 +2689 803 0.400000 +2689 1048 0.400000 +2689 1081 0.400000 +2689 1133 0.400000 +2689 1278 0.400000 +2689 1351 0.400000 +2689 1359 0.400000 +2689 1425 0.400000 +2689 1468 0.400000 +2689 1492 0.400000 +2689 1586 0.400000 +2689 1608 0.400000 +2689 1664 0.400000 +2689 1671 0.400000 +2689 1812 0.400000 +2689 1860 0.400000 +2689 1934 0.400000 +2689 1984 0.400000 +2689 2069 0.400000 +2689 2081 0.400000 +2689 2168 0.400000 +2689 2213 0.400000 +2689 2424 0.400000 +2689 2433 0.400000 +2689 2465 0.400000 +2689 2500 0.400000 +2689 2658 0.400000 +2689 2840 0.400000 +2689 2900 0.400000 +2689 2935 0.400000 +2689 3067 0.400000 +2689 3099 0.400000 +2689 3110 0.400000 +2689 3146 0.400000 +2689 3197 0.400000 +2690 8 0.400000 +2690 27 0.400000 +2690 95 0.400000 +2690 125 0.400000 +2690 144 0.400000 +2690 184 0.400000 +2690 258 0.400000 +2690 260 0.400000 +2690 316 0.400000 +2690 338 0.400000 +2690 342 0.400000 +2690 364 0.400000 +2690 529 0.400000 +2690 609 0.400000 +2690 695 0.400000 +2690 716 0.400000 +2690 747 0.400000 +2690 767 0.400000 +2690 828 0.400000 +2690 843 0.400000 +2690 865 0.400000 +2690 871 0.400000 +2690 884 0.400000 +2690 905 0.400000 +2690 1013 0.400000 +2690 1213 0.400000 +2690 1220 0.400000 +2690 1245 0.400000 +2690 1310 0.400000 +2690 1381 0.400000 +2690 1497 0.400000 +2690 1531 0.400000 +2690 1562 0.400000 +2690 1723 0.400000 +2690 1734 0.400000 +2690 1779 0.400000 +2690 1780 0.400000 +2690 1800 0.400000 +2690 1851 0.400000 +2690 1933 0.400000 +2690 1950 0.400000 +2690 1961 0.400000 +2690 1998 0.400000 +2690 2070 0.400000 +2690 2079 0.400000 +2690 2090 0.400000 +2690 2137 0.400000 +2690 2241 0.400000 +2690 2339 0.400000 +2690 2365 0.400000 +2690 2398 0.400000 +2690 2451 0.400000 +2690 2459 0.400000 +2690 2463 0.400000 +2690 2513 0.400000 +2690 2578 0.400000 +2690 2590 0.400000 +2690 2622 0.400000 +2690 2628 0.400000 +2690 2632 0.400000 +2690 2680 0.400000 +2690 2684 0.400000 +2690 2766 0.400000 +2690 2829 0.400000 +2690 2830 0.400000 +2690 2947 0.400000 +2690 3001 0.400000 +2690 3147 0.400000 +2690 3149 0.400000 +2690 3180 0.400000 +2691 118 0.400000 +2691 177 0.400000 +2691 178 0.400000 +2691 194 0.400000 +2691 300 0.400000 +2691 364 0.400000 +2691 405 0.400000 +2691 493 0.400000 +2691 518 0.400000 +2691 525 0.400000 +2691 552 0.400000 +2691 630 0.400000 +2691 693 0.400000 +2691 705 0.400000 +2691 801 0.400000 +2691 802 0.400000 +2691 808 0.400000 +2691 848 0.400000 +2691 868 0.400000 +2691 895 0.400000 +2691 896 0.400000 +2691 951 0.400000 +2691 999 0.400000 +2691 1104 0.400000 +2691 1128 0.400000 +2691 1165 0.400000 +2691 1175 0.400000 +2691 1180 0.400000 +2691 1277 0.400000 +2691 1292 0.400000 +2691 1298 0.400000 +2691 1375 0.400000 +2691 1385 0.400000 +2691 1390 0.400000 +2691 1393 0.400000 +2691 1406 0.400000 +2691 1414 0.400000 +2691 1515 0.400000 +2691 1572 0.400000 +2691 1710 0.400000 +2691 1842 0.400000 +2691 1890 0.400000 +2691 1910 0.400000 +2691 1950 0.400000 +2691 1973 0.400000 +2691 2055 0.400000 +2691 2124 0.400000 +2691 2126 0.400000 +2691 2208 0.400000 +2691 2214 0.400000 +2691 2228 0.400000 +2691 2239 0.400000 +2691 2242 0.400000 +2691 2251 0.400000 +2691 2355 0.400000 +2691 2405 0.400000 +2691 2510 0.400000 +2691 2581 0.400000 +2691 2615 0.400000 +2691 2699 0.400000 +2691 2733 0.400000 +2691 2755 0.400000 +2691 2760 0.400000 +2691 2809 0.400000 +2691 2812 0.400000 +2691 2853 0.400000 +2691 2902 0.400000 +2691 3012 0.400000 +2691 3128 0.400000 +2691 3150 0.400000 +2691 3160 0.400000 +2691 3169 0.400000 +2691 3196 0.400000 +2692 48 0.400000 +2692 111 0.400000 +2692 340 0.400000 +2692 370 0.400000 +2692 460 0.400000 +2692 475 0.400000 +2692 502 0.400000 +2692 524 0.400000 +2692 546 0.400000 +2692 554 0.400000 +2692 563 0.400000 +2692 589 0.400000 +2692 728 0.400000 +2692 838 0.400000 +2692 913 0.400000 +2692 1095 0.400000 +2692 1104 0.400000 +2692 1147 0.400000 +2692 1160 0.400000 +2692 1170 0.400000 +2692 1197 0.400000 +2692 1214 0.400000 +2692 1269 0.400000 +2692 1335 0.400000 +2692 1410 0.400000 +2692 1567 0.400000 +2692 1572 0.400000 +2692 1700 0.400000 +2692 1818 0.400000 +2692 1829 0.400000 +2692 1855 0.400000 +2692 1863 0.400000 +2692 1956 0.400000 +2692 1958 0.400000 +2692 1993 0.400000 +2692 2034 0.400000 +2692 2169 0.400000 +2692 2190 0.400000 +2692 2224 0.400000 +2692 2269 0.400000 +2692 2300 0.400000 +2692 2497 0.400000 +2692 2501 0.400000 +2692 2616 0.400000 +2692 2670 0.400000 +2692 2673 0.400000 +2692 2956 0.400000 +2692 2957 0.400000 +2692 2962 0.400000 +2692 3000 0.400000 +2692 3084 0.400000 +2692 3114 0.400000 +2693 74 0.400000 +2693 99 0.400000 +2693 219 0.400000 +2693 220 0.400000 +2693 231 0.400000 +2693 314 0.400000 +2693 315 0.400000 +2693 353 0.400000 +2693 416 0.400000 +2693 498 0.400000 +2693 534 0.400000 +2693 687 0.400000 +2693 754 0.400000 +2693 780 0.400000 +2693 799 0.400000 +2693 811 0.400000 +2693 971 0.400000 +2693 1017 0.400000 +2693 1054 0.400000 +2693 1180 0.400000 +2693 1191 0.400000 +2693 1194 0.400000 +2693 1230 0.400000 +2693 1265 0.400000 +2693 1281 0.400000 +2693 1309 0.400000 +2693 1324 0.400000 +2693 1431 0.400000 +2693 1443 0.400000 +2693 1469 0.400000 +2693 1472 0.400000 +2693 1777 0.400000 +2693 1828 0.400000 +2693 1831 0.400000 +2693 1892 0.400000 +2693 1995 0.400000 +2693 2105 0.400000 +2693 2125 0.400000 +2693 2153 0.400000 +2693 2209 0.400000 +2693 2287 0.400000 +2693 2422 0.400000 +2693 2448 0.400000 +2693 2453 0.400000 +2693 2460 0.400000 +2693 2527 0.400000 +2693 2569 0.400000 +2693 2601 0.400000 +2693 2769 0.400000 +2693 2776 0.400000 +2693 2793 0.400000 +2693 2821 0.400000 +2693 2861 0.400000 +2693 2889 0.400000 +2693 2953 0.400000 +2693 3091 0.400000 +2693 3094 0.400000 +2694 57 0.400000 +2694 67 0.400000 +2694 129 0.400000 +2694 141 0.400000 +2694 206 0.400000 +2694 252 0.400000 +2694 277 0.400000 +2694 307 0.400000 +2694 310 0.400000 +2694 343 0.400000 +2694 371 0.400000 +2694 380 0.400000 +2694 459 0.400000 +2694 466 0.400000 +2694 532 0.400000 +2694 637 0.400000 +2694 661 0.400000 +2694 778 0.400000 +2694 929 0.400000 +2694 964 0.400000 +2694 1057 0.400000 +2694 1062 0.400000 +2694 1174 0.400000 +2694 1175 0.400000 +2694 1218 0.400000 +2694 1248 0.400000 +2694 1266 0.400000 +2694 1376 0.400000 +2694 1427 0.400000 +2694 1448 0.400000 +2694 1511 0.400000 +2694 1605 0.400000 +2694 1615 0.400000 +2694 1663 0.400000 +2694 1759 0.400000 +2694 1810 0.400000 +2694 1850 0.400000 +2694 1880 0.400000 +2694 1908 0.400000 +2694 1977 0.400000 +2694 2149 0.400000 +2694 2272 0.400000 +2694 2346 0.400000 +2694 2347 0.400000 +2694 2447 0.400000 +2694 2482 0.400000 +2694 2570 0.400000 +2694 2739 0.400000 +2694 2759 0.400000 +2694 2820 0.400000 +2694 2830 0.400000 +2694 2832 0.400000 +2694 2844 0.400000 +2694 2870 0.400000 +2694 2901 0.400000 +2694 2906 0.400000 +2694 2925 0.400000 +2694 2948 0.400000 +2694 2966 0.400000 +2694 2999 0.400000 +2694 3002 0.400000 +2694 3014 0.400000 +2694 3027 0.400000 +2694 3028 0.400000 +2694 3072 0.400000 +2694 3115 0.400000 +2694 3196 0.400000 +2695 102 0.400000 +2695 105 0.400000 +2695 128 0.400000 +2695 141 0.400000 +2695 214 0.400000 +2695 227 0.400000 +2695 238 0.400000 +2695 307 0.400000 +2695 314 0.400000 +2695 332 0.400000 +2695 462 0.400000 +2695 465 0.400000 +2695 604 0.400000 +2695 619 0.400000 +2695 729 0.400000 +2695 736 0.400000 +2695 768 0.400000 +2695 797 0.400000 +2695 882 0.400000 +2695 949 0.400000 +2695 1020 0.400000 +2695 1074 0.400000 +2695 1094 0.400000 +2695 1149 0.400000 +2695 1233 0.400000 +2695 1307 0.400000 +2695 1452 0.400000 +2695 1475 0.400000 +2695 1483 0.400000 +2695 1491 0.400000 +2695 1504 0.400000 +2695 1528 0.400000 +2695 1535 0.400000 +2695 1537 0.400000 +2695 1548 0.400000 +2695 1555 0.400000 +2695 1563 0.400000 +2695 1594 0.400000 +2695 1694 0.400000 +2695 1719 0.400000 +2695 1762 0.400000 +2695 1779 0.400000 +2695 1787 0.400000 +2695 1896 0.400000 +2695 1909 0.400000 +2695 2062 0.400000 +2695 2081 0.400000 +2695 2110 0.400000 +2695 2141 0.400000 +2695 2207 0.400000 +2695 2302 0.400000 +2695 2332 0.400000 +2695 2343 0.400000 +2695 2408 0.400000 +2695 2441 0.400000 +2695 2459 0.400000 +2695 2557 0.400000 +2695 2593 0.400000 +2695 2617 0.400000 +2695 2618 0.400000 +2695 2628 0.400000 +2695 2717 0.400000 +2695 2734 0.400000 +2695 2747 0.400000 +2695 2867 0.400000 +2695 2879 0.400000 +2695 2907 0.400000 +2695 2970 0.400000 +2695 2979 0.400000 +2695 3050 0.400000 +2695 3079 0.400000 +2696 61 0.400000 +2696 77 0.400000 +2696 99 0.400000 +2696 104 0.400000 +2696 255 0.400000 +2696 366 0.400000 +2696 445 0.400000 +2696 563 0.400000 +2696 604 0.400000 +2696 661 0.400000 +2696 814 0.400000 +2696 850 0.400000 +2696 851 0.400000 +2696 852 0.400000 +2696 926 0.400000 +2696 941 0.400000 +2696 994 0.400000 +2696 1008 0.400000 +2696 1050 0.400000 +2696 1157 0.400000 +2696 1249 0.400000 +2696 1313 0.400000 +2696 1331 0.400000 +2696 1413 0.400000 +2696 1429 0.400000 +2696 1438 0.400000 +2696 1542 0.400000 +2696 1567 0.400000 +2696 1616 0.400000 +2696 1689 0.400000 +2696 1715 0.400000 +2696 1729 0.400000 +2696 1743 0.400000 +2696 1849 0.400000 +2696 1946 0.400000 +2696 2068 0.400000 +2696 2101 0.400000 +2696 2132 0.400000 +2696 2155 0.400000 +2696 2202 0.400000 +2696 2217 0.400000 +2696 2218 0.400000 +2696 2235 0.400000 +2696 2246 0.400000 +2696 2267 0.400000 +2696 2471 0.400000 +2696 2478 0.400000 +2696 2625 0.400000 +2696 2639 0.400000 +2696 2673 0.400000 +2696 2762 0.400000 +2696 2899 0.400000 +2696 2910 0.400000 +2696 2984 0.400000 +2696 2986 0.400000 +2696 3092 0.400000 +2696 3124 0.400000 +2696 3125 0.400000 +2696 3177 0.400000 +2696 3179 0.400000 +2696 3188 0.400000 +2696 3191 0.400000 +2697 53 0.400000 +2697 85 0.400000 +2697 92 0.400000 +2697 163 0.400000 +2697 204 0.400000 +2697 228 0.400000 +2697 368 0.400000 +2697 374 0.400000 +2697 387 0.400000 +2697 476 0.400000 +2697 501 0.400000 +2697 571 0.400000 +2697 594 0.400000 +2697 662 0.400000 +2697 677 0.400000 +2697 803 0.400000 +2697 841 0.400000 +2697 884 0.400000 +2697 951 0.400000 +2697 998 0.400000 +2697 1005 0.400000 +2697 1142 0.400000 +2697 1252 0.400000 +2697 1320 0.400000 +2697 1350 0.400000 +2697 1455 0.400000 +2697 1496 0.400000 +2697 1720 0.400000 +2697 1778 0.400000 +2697 1803 0.400000 +2697 1847 0.400000 +2697 1867 0.400000 +2697 1878 0.400000 +2697 1883 0.400000 +2697 1960 0.400000 +2697 2111 0.400000 +2697 2116 0.400000 +2697 2197 0.400000 +2697 2213 0.400000 +2697 2282 0.400000 +2697 2284 0.400000 +2697 2350 0.400000 +2697 2379 0.400000 +2697 2439 0.400000 +2697 2440 0.400000 +2697 2487 0.400000 +2697 2653 0.400000 +2697 2664 0.400000 +2697 2671 0.400000 +2697 2700 0.400000 +2697 2712 0.400000 +2697 2730 0.400000 +2697 2815 0.400000 +2697 2840 0.400000 +2697 2893 0.400000 +2697 2895 0.400000 +2697 2909 0.400000 +2697 2969 0.400000 +2697 3068 0.400000 +2697 3163 0.400000 +2698 29 0.400000 +2698 43 0.400000 +2698 85 0.400000 +2698 127 0.400000 +2698 139 0.400000 +2698 252 0.400000 +2698 331 0.400000 +2698 387 0.400000 +2698 395 0.400000 +2698 439 0.400000 +2698 450 0.400000 +2698 544 0.400000 +2698 589 0.400000 +2698 699 0.400000 +2698 711 0.400000 +2698 712 0.400000 +2698 746 0.400000 +2698 776 0.400000 +2698 785 0.400000 +2698 832 0.400000 +2698 866 0.400000 +2698 873 0.400000 +2698 940 0.400000 +2698 944 0.400000 +2698 998 0.400000 +2698 1148 0.400000 +2698 1180 0.400000 +2698 1265 0.400000 +2698 1308 0.400000 +2698 1318 0.400000 +2698 1354 0.400000 +2698 1381 0.400000 +2698 1457 0.400000 +2698 1543 0.400000 +2698 1706 0.400000 +2698 1803 0.400000 +2698 1953 0.400000 +2698 1971 0.400000 +2698 2025 0.400000 +2698 2173 0.400000 +2698 2189 0.400000 +2698 2255 0.400000 +2698 2262 0.400000 +2698 2288 0.400000 +2698 2312 0.400000 +2698 2450 0.400000 +2698 2523 0.400000 +2698 2564 0.400000 +2698 2586 0.400000 +2698 2634 0.400000 +2698 2669 0.400000 +2698 2701 0.400000 +2698 2724 0.400000 +2698 2749 0.400000 +2698 2750 0.400000 +2698 2818 0.400000 +2698 2891 0.400000 +2698 2901 0.400000 +2698 2903 0.400000 +2698 2904 0.400000 +2698 3013 0.400000 +2698 3087 0.400000 +2698 3174 0.400000 +2698 3186 0.400000 +2698 3187 0.400000 +2699 6 0.400000 +2699 103 0.400000 +2699 106 0.400000 +2699 114 0.400000 +2699 136 0.400000 +2699 139 0.400000 +2699 178 0.400000 +2699 236 0.400000 +2699 244 0.400000 +2699 272 0.400000 +2699 307 0.400000 +2699 319 0.400000 +2699 419 0.400000 +2699 564 0.400000 +2699 699 0.400000 +2699 712 0.400000 +2699 834 0.400000 +2699 1018 0.400000 +2699 1057 0.400000 +2699 1128 0.400000 +2699 1141 0.400000 +2699 1195 0.400000 +2699 1279 0.400000 +2699 1292 0.400000 +2699 1318 0.400000 +2699 1329 0.400000 +2699 1421 0.400000 +2699 1463 0.400000 +2699 1493 0.400000 +2699 1494 0.400000 +2699 1509 0.400000 +2699 1549 0.400000 +2699 1572 0.400000 +2699 1668 0.400000 +2699 1719 0.400000 +2699 1723 0.400000 +2699 1770 0.400000 +2699 1874 0.400000 +2699 1957 0.400000 +2699 1984 0.400000 +2699 2017 0.400000 +2699 2023 0.400000 +2699 2037 0.400000 +2699 2044 0.400000 +2699 2086 0.400000 +2699 2138 0.400000 +2699 2162 0.400000 +2699 2163 0.400000 +2699 2168 0.400000 +2699 2262 0.400000 +2699 2290 0.400000 +2699 2292 0.400000 +2699 2406 0.400000 +2699 2423 0.400000 +2699 2503 0.400000 +2699 2517 0.400000 +2699 2525 0.400000 +2699 2537 0.400000 +2699 2545 0.400000 +2699 2733 0.400000 +2699 2749 0.400000 +2699 2758 0.400000 +2699 2784 0.400000 +2699 2818 0.400000 +2699 2852 0.400000 +2699 2955 0.400000 +2699 2986 0.400000 +2699 3014 0.400000 +2699 3114 0.400000 +2699 3134 0.400000 +2699 3179 0.400000 +2700 29 0.400000 +2700 41 0.400000 +2700 45 0.400000 +2700 188 0.400000 +2700 201 0.400000 +2700 206 0.400000 +2700 253 0.400000 +2700 266 0.400000 +2700 303 0.400000 +2700 365 0.400000 +2700 382 0.400000 +2700 400 0.400000 +2700 423 0.400000 +2700 514 0.400000 +2700 519 0.400000 +2700 524 0.400000 +2700 531 0.400000 +2700 564 0.400000 +2700 619 0.400000 +2700 642 0.400000 +2700 685 0.400000 +2700 784 0.400000 +2700 787 0.400000 +2700 815 0.400000 +2700 834 0.400000 +2700 938 0.400000 +2700 1042 0.400000 +2700 1053 0.400000 +2700 1060 0.400000 +2700 1068 0.400000 +2700 1091 0.400000 +2700 1125 0.400000 +2700 1153 0.400000 +2700 1196 0.400000 +2700 1258 0.400000 +2700 1292 0.400000 +2700 1396 0.400000 +2700 1433 0.400000 +2700 1446 0.400000 +2700 1471 0.400000 +2700 1508 0.400000 +2700 1510 0.400000 +2700 1559 0.400000 +2700 1560 0.400000 +2700 1702 0.400000 +2700 1792 0.400000 +2700 1803 0.400000 +2700 1825 0.400000 +2700 1981 0.400000 +2700 1986 0.400000 +2700 2030 0.400000 +2700 2111 0.400000 +2700 2171 0.400000 +2700 2200 0.400000 +2700 2216 0.400000 +2700 2354 0.400000 +2700 2393 0.400000 +2700 2442 0.400000 +2700 2489 0.400000 +2700 2618 0.400000 +2700 2655 0.400000 +2700 2682 0.400000 +2700 2831 0.400000 +2700 2877 0.400000 +2700 2962 0.400000 +2700 2971 0.400000 +2700 2976 0.400000 +2700 3139 0.400000 +2700 3156 0.400000 +2701 143 0.400000 +2701 149 0.400000 +2701 160 0.400000 +2701 176 0.400000 +2701 191 0.400000 +2701 212 0.400000 +2701 214 0.400000 +2701 229 0.400000 +2701 268 0.400000 +2701 272 0.400000 +2701 332 0.400000 +2701 428 0.400000 +2701 471 0.400000 +2701 576 0.400000 +2701 692 0.400000 +2701 714 0.400000 +2701 770 0.400000 +2701 821 0.400000 +2701 892 0.400000 +2701 1006 0.400000 +2701 1091 0.400000 +2701 1164 0.400000 +2701 1192 0.400000 +2701 1241 0.400000 +2701 1251 0.400000 +2701 1254 0.400000 +2701 1271 0.400000 +2701 1335 0.400000 +2701 1346 0.400000 +2701 1347 0.400000 +2701 1409 0.400000 +2701 1431 0.400000 +2701 1526 0.400000 +2701 1547 0.400000 +2701 1580 0.400000 +2701 1648 0.400000 +2701 1716 0.400000 +2701 1776 0.400000 +2701 1882 0.400000 +2701 1938 0.400000 +2701 1942 0.400000 +2701 1957 0.400000 +2701 1970 0.400000 +2701 2012 0.400000 +2701 2035 0.400000 +2701 2063 0.400000 +2701 2149 0.400000 +2701 2157 0.400000 +2701 2231 0.400000 +2701 2240 0.400000 +2701 2338 0.400000 +2701 2359 0.400000 +2701 2380 0.400000 +2701 2440 0.400000 +2701 2590 0.400000 +2701 2664 0.400000 +2701 2708 0.400000 +2701 2824 0.400000 +2701 2835 0.400000 +2701 2843 0.400000 +2701 2870 0.400000 +2701 3082 0.400000 +2702 31 0.400000 +2702 133 0.400000 +2702 166 0.400000 +2702 182 0.400000 +2702 183 0.400000 +2702 201 0.400000 +2702 227 0.400000 +2702 250 0.400000 +2702 393 0.400000 +2702 475 0.400000 +2702 510 0.400000 +2702 567 0.400000 +2702 572 0.400000 +2702 747 0.400000 +2702 782 0.400000 +2702 950 0.400000 +2702 958 0.400000 +2702 971 0.400000 +2702 1030 0.400000 +2702 1033 0.400000 +2702 1134 0.400000 +2702 1161 0.400000 +2702 1191 0.400000 +2702 1328 0.400000 +2702 1361 0.400000 +2702 1428 0.400000 +2702 1442 0.400000 +2702 1517 0.400000 +2702 1566 0.400000 +2702 1623 0.400000 +2702 1648 0.400000 +2702 1713 0.400000 +2702 1730 0.400000 +2702 1747 0.400000 +2702 1771 0.400000 +2702 1907 0.400000 +2702 1990 0.400000 +2702 2010 0.400000 +2702 2018 0.400000 +2702 2072 0.400000 +2702 2095 0.400000 +2702 2109 0.400000 +2702 2110 0.400000 +2702 2189 0.400000 +2702 2271 0.400000 +2702 2272 0.400000 +2702 2335 0.400000 +2702 2341 0.400000 +2702 2344 0.400000 +2702 2375 0.400000 +2702 2399 0.400000 +2702 2417 0.400000 +2702 2455 0.400000 +2702 2565 0.400000 +2702 2694 0.400000 +2702 2821 0.400000 +2702 2908 0.400000 +2702 3013 0.400000 +2702 3053 0.400000 +2702 3063 0.400000 +2702 3070 0.400000 +2702 3168 0.400000 +2703 56 0.400000 +2703 65 0.400000 +2703 140 0.400000 +2703 175 0.400000 +2703 187 0.400000 +2703 276 0.400000 +2703 373 0.400000 +2703 382 0.400000 +2703 589 0.400000 +2703 638 0.400000 +2703 641 0.400000 +2703 657 0.400000 +2703 658 0.400000 +2703 730 0.400000 +2703 744 0.400000 +2703 843 0.400000 +2703 846 0.400000 +2703 847 0.400000 +2703 961 0.400000 +2703 976 0.400000 +2703 983 0.400000 +2703 1014 0.400000 +2703 1015 0.400000 +2703 1070 0.400000 +2703 1080 0.400000 +2703 1091 0.400000 +2703 1164 0.400000 +2703 1170 0.400000 +2703 1234 0.400000 +2703 1315 0.400000 +2703 1366 0.400000 +2703 1376 0.400000 +2703 1379 0.400000 +2703 1405 0.400000 +2703 1469 0.400000 +2703 1552 0.400000 +2703 1561 0.400000 +2703 1582 0.400000 +2703 1588 0.400000 +2703 1784 0.400000 +2703 1788 0.400000 +2703 1789 0.400000 +2703 1841 0.400000 +2703 1866 0.400000 +2703 1896 0.400000 +2703 1965 0.400000 +2703 1973 0.400000 +2703 1980 0.400000 +2703 2003 0.400000 +2703 2096 0.400000 +2703 2170 0.400000 +2703 2174 0.400000 +2703 2178 0.400000 +2703 2227 0.400000 +2703 2258 0.400000 +2703 2276 0.400000 +2703 2418 0.400000 +2703 2466 0.400000 +2703 2498 0.400000 +2703 2519 0.400000 +2703 2571 0.400000 +2703 2623 0.400000 +2703 2629 0.400000 +2703 2640 0.400000 +2703 2702 0.400000 +2703 2711 0.400000 +2703 2756 0.400000 +2703 2770 0.400000 +2703 2794 0.400000 +2703 2819 0.400000 +2703 2883 0.400000 +2703 3139 0.400000 +2704 120 0.400000 +2704 121 0.400000 +2704 124 0.400000 +2704 144 0.400000 +2704 238 0.400000 +2704 362 0.400000 +2704 413 0.400000 +2704 444 0.400000 +2704 550 0.400000 +2704 587 0.400000 +2704 620 0.400000 +2704 677 0.400000 +2704 699 0.400000 +2704 710 0.400000 +2704 802 0.400000 +2704 866 0.400000 +2704 869 0.400000 +2704 968 0.400000 +2704 969 0.400000 +2704 1050 0.400000 +2704 1057 0.400000 +2704 1100 0.400000 +2704 1104 0.400000 +2704 1123 0.400000 +2704 1126 0.400000 +2704 1167 0.400000 +2704 1249 0.400000 +2704 1454 0.400000 +2704 1571 0.400000 +2704 1578 0.400000 +2704 1623 0.400000 +2704 1638 0.400000 +2704 1842 0.400000 +2704 1860 0.400000 +2704 1948 0.400000 +2704 1958 0.400000 +2704 2032 0.400000 +2704 2115 0.400000 +2704 2144 0.400000 +2704 2167 0.400000 +2704 2198 0.400000 +2704 2386 0.400000 +2704 2497 0.400000 +2704 2500 0.400000 +2704 2544 0.400000 +2704 2703 0.400000 +2704 2720 0.400000 +2704 2728 0.400000 +2704 2752 0.400000 +2704 2778 0.400000 +2704 2828 0.400000 +2704 2871 0.400000 +2704 2914 0.400000 +2704 2992 0.400000 +2704 3071 0.400000 +2705 20 0.400000 +2705 60 0.400000 +2705 100 0.400000 +2705 134 0.400000 +2705 197 0.400000 +2705 214 0.400000 +2705 231 0.400000 +2705 244 0.400000 +2705 279 0.400000 +2705 290 0.400000 +2705 342 0.400000 +2705 347 0.400000 +2705 393 0.400000 +2705 449 0.400000 +2705 492 0.400000 +2705 548 0.400000 +2705 631 0.400000 +2705 632 0.400000 +2705 649 0.400000 +2705 666 0.400000 +2705 740 0.400000 +2705 742 0.400000 +2705 844 0.400000 +2705 858 0.400000 +2705 1003 0.400000 +2705 1095 0.400000 +2705 1188 0.400000 +2705 1220 0.400000 +2705 1325 0.400000 +2705 1452 0.400000 +2705 1586 0.400000 +2705 1626 0.400000 +2705 1627 0.400000 +2705 1655 0.400000 +2705 1817 0.400000 +2705 1849 0.400000 +2705 1959 0.400000 +2705 2138 0.400000 +2705 2154 0.400000 +2705 2182 0.400000 +2705 2214 0.400000 +2705 2311 0.400000 +2705 2336 0.400000 +2705 2473 0.400000 +2705 2566 0.400000 +2705 2697 0.400000 +2705 2762 0.400000 +2705 2801 0.400000 +2705 2827 0.400000 +2705 2831 0.400000 +2705 2838 0.400000 +2705 2849 0.400000 +2705 2890 0.400000 +2705 2922 0.400000 +2705 2925 0.400000 +2705 2984 0.400000 +2705 2997 0.400000 +2705 3008 0.400000 +2705 3069 0.400000 +2705 3104 0.400000 +2705 3130 0.400000 +2705 3154 0.400000 +2705 3166 0.400000 +2705 3195 0.400000 +2706 8 0.400000 +2706 39 0.400000 +2706 47 0.400000 +2706 77 0.400000 +2706 105 0.400000 +2706 131 0.400000 +2706 177 0.400000 +2706 210 0.400000 +2706 228 0.400000 +2706 275 0.400000 +2706 424 0.400000 +2706 634 0.400000 +2706 656 0.400000 +2706 662 0.400000 +2706 712 0.400000 +2706 740 0.400000 +2706 817 0.400000 +2706 908 0.400000 +2706 911 0.400000 +2706 947 0.400000 +2706 955 0.400000 +2706 1026 0.400000 +2706 1060 0.400000 +2706 1064 0.400000 +2706 1168 0.400000 +2706 1209 0.400000 +2706 1268 0.400000 +2706 1273 0.400000 +2706 1305 0.400000 +2706 1343 0.400000 +2706 1413 0.400000 +2706 1446 0.400000 +2706 1470 0.400000 +2706 1506 0.400000 +2706 1518 0.400000 +2706 1546 0.400000 +2706 1568 0.400000 +2706 1608 0.400000 +2706 1634 0.400000 +2706 1644 0.400000 +2706 1663 0.400000 +2706 1789 0.400000 +2706 1872 0.400000 +2706 1930 0.400000 +2706 2049 0.400000 +2706 2088 0.400000 +2706 2276 0.400000 +2706 2310 0.400000 +2706 2328 0.400000 +2706 2416 0.400000 +2706 2529 0.400000 +2706 2541 0.400000 +2706 2542 0.400000 +2706 2561 0.400000 +2706 2577 0.400000 +2706 2624 0.400000 +2706 2730 0.400000 +2706 2757 0.400000 +2706 2814 0.400000 +2706 2876 0.400000 +2706 2904 0.400000 +2706 2942 0.400000 +2706 2975 0.400000 +2706 3085 0.400000 +2706 3110 0.400000 +2706 3118 0.400000 +2707 121 0.400000 +2707 155 0.400000 +2707 164 0.400000 +2707 199 0.400000 +2707 200 0.400000 +2707 266 0.400000 +2707 340 0.400000 +2707 349 0.400000 +2707 368 0.400000 +2707 380 0.400000 +2707 440 0.400000 +2707 488 0.400000 +2707 506 0.400000 +2707 545 0.400000 +2707 558 0.400000 +2707 562 0.400000 +2707 614 0.400000 +2707 700 0.400000 +2707 777 0.400000 +2707 796 0.400000 +2707 823 0.400000 +2707 870 0.400000 +2707 875 0.400000 +2707 950 0.400000 +2707 951 0.400000 +2707 1009 0.400000 +2707 1010 0.400000 +2707 1086 0.400000 +2707 1156 0.400000 +2707 1191 0.400000 +2707 1207 0.400000 +2707 1286 0.400000 +2707 1295 0.400000 +2707 1382 0.400000 +2707 1413 0.400000 +2707 1451 0.400000 +2707 1472 0.400000 +2707 1568 0.400000 +2707 1571 0.400000 +2707 1695 0.400000 +2707 1754 0.400000 +2707 1762 0.400000 +2707 1763 0.400000 +2707 1782 0.400000 +2707 1839 0.400000 +2707 2066 0.400000 +2707 2088 0.400000 +2707 2099 0.400000 +2707 2121 0.400000 +2707 2136 0.400000 +2707 2141 0.400000 +2707 2181 0.400000 +2707 2207 0.400000 +2707 2250 0.400000 +2707 2399 0.400000 +2707 2407 0.400000 +2707 2430 0.400000 +2707 2444 0.400000 +2707 2516 0.400000 +2707 2570 0.400000 +2707 2718 0.400000 +2707 2721 0.400000 +2707 2779 0.400000 +2707 2790 0.400000 +2707 2906 0.400000 +2707 2921 0.400000 +2707 2926 0.400000 +2707 3016 0.400000 +2707 3021 0.400000 +2707 3080 0.400000 +2707 3105 0.400000 +2707 3178 0.400000 +2708 74 0.400000 +2708 98 0.400000 +2708 169 0.400000 +2708 183 0.400000 +2708 186 0.400000 +2708 260 0.400000 +2708 267 0.400000 +2708 298 0.400000 +2708 331 0.400000 +2708 440 0.400000 +2708 542 0.400000 +2708 590 0.400000 +2708 673 0.400000 +2708 708 0.400000 +2708 739 0.400000 +2708 753 0.400000 +2708 969 0.400000 +2708 1023 0.400000 +2708 1094 0.400000 +2708 1108 0.400000 +2708 1210 0.400000 +2708 1218 0.400000 +2708 1240 0.400000 +2708 1282 0.400000 +2708 1360 0.400000 +2708 1394 0.400000 +2708 1407 0.400000 +2708 1410 0.400000 +2708 1414 0.400000 +2708 1468 0.400000 +2708 1479 0.400000 +2708 1531 0.400000 +2708 1612 0.400000 +2708 1649 0.400000 +2708 1673 0.400000 +2708 1758 0.400000 +2708 1849 0.400000 +2708 1854 0.400000 +2708 1859 0.400000 +2708 1898 0.400000 +2708 1948 0.400000 +2708 2046 0.400000 +2708 2052 0.400000 +2708 2094 0.400000 +2708 2110 0.400000 +2708 2174 0.400000 +2708 2179 0.400000 +2708 2242 0.400000 +2708 2289 0.400000 +2708 2310 0.400000 +2708 2423 0.400000 +2708 2479 0.400000 +2708 2636 0.400000 +2708 2663 0.400000 +2708 2687 0.400000 +2708 2756 0.400000 +2708 2780 0.400000 +2708 2999 0.400000 +2708 3022 0.400000 +2708 3113 0.400000 +2708 3140 0.400000 +2708 3161 0.400000 +2709 95 0.400000 +2709 222 0.400000 +2709 337 0.400000 +2709 419 0.400000 +2709 533 0.400000 +2709 645 0.400000 +2709 660 0.400000 +2709 723 0.400000 +2709 908 0.400000 +2709 926 0.400000 +2709 1001 0.400000 +2709 1053 0.400000 +2709 1086 0.400000 +2709 1117 0.400000 +2709 1161 0.400000 +2709 1179 0.400000 +2709 1253 0.400000 +2709 1302 0.400000 +2709 1317 0.400000 +2709 1321 0.400000 +2709 1390 0.400000 +2709 1465 0.400000 +2709 1520 0.400000 +2709 1535 0.400000 +2709 1563 0.400000 +2709 1577 0.400000 +2709 1579 0.400000 +2709 1582 0.400000 +2709 1651 0.400000 +2709 1669 0.400000 +2709 1785 0.400000 +2709 1865 0.400000 +2709 1868 0.400000 +2709 1911 0.400000 +2709 1941 0.400000 +2709 2021 0.400000 +2709 2030 0.400000 +2709 2057 0.400000 +2709 2058 0.400000 +2709 2094 0.400000 +2709 2096 0.400000 +2709 2146 0.400000 +2709 2166 0.400000 +2709 2175 0.400000 +2709 2179 0.400000 +2709 2374 0.400000 +2709 2384 0.400000 +2709 2404 0.400000 +2709 2408 0.400000 +2709 2473 0.400000 +2709 2475 0.400000 +2709 2505 0.400000 +2709 2558 0.400000 +2709 2583 0.400000 +2709 2641 0.400000 +2709 2732 0.400000 +2709 2779 0.400000 +2709 2858 0.400000 +2709 2865 0.400000 +2709 2920 0.400000 +2709 2950 0.400000 +2709 2982 0.400000 +2709 3188 0.400000 +2710 52 0.400000 +2710 62 0.400000 +2710 245 0.400000 +2710 276 0.400000 +2710 346 0.400000 +2710 385 0.400000 +2710 453 0.400000 +2710 478 0.400000 +2710 526 0.400000 +2710 538 0.400000 +2710 542 0.400000 +2710 585 0.400000 +2710 591 0.400000 +2710 620 0.400000 +2710 647 0.400000 +2710 654 0.400000 +2710 660 0.400000 +2710 689 0.400000 +2710 695 0.400000 +2710 705 0.400000 +2710 744 0.400000 +2710 782 0.400000 +2710 828 0.400000 +2710 853 0.400000 +2710 942 0.400000 +2710 951 0.400000 +2710 1048 0.400000 +2710 1066 0.400000 +2710 1072 0.400000 +2710 1086 0.400000 +2710 1185 0.400000 +2710 1200 0.400000 +2710 1206 0.400000 +2710 1208 0.400000 +2710 1345 0.400000 +2710 1486 0.400000 +2710 1585 0.400000 +2710 1594 0.400000 +2710 1596 0.400000 +2710 1701 0.400000 +2710 1717 0.400000 +2710 1759 0.400000 +2710 1819 0.400000 +2710 1856 0.400000 +2710 1882 0.400000 +2710 1919 0.400000 +2710 1922 0.400000 +2710 1940 0.400000 +2710 1954 0.400000 +2710 1977 0.400000 +2710 1987 0.400000 +2710 2052 0.400000 +2710 2210 0.400000 +2710 2432 0.400000 +2710 2505 0.400000 +2710 2545 0.400000 +2710 2644 0.400000 +2710 2677 0.400000 +2710 2678 0.400000 +2710 2682 0.400000 +2710 2728 0.400000 +2710 2820 0.400000 +2710 2823 0.400000 +2710 2864 0.400000 +2710 2948 0.400000 +2710 3014 0.400000 +2710 3069 0.400000 +2710 3171 0.400000 +2710 3192 0.400000 +2711 35 0.400000 +2711 80 0.400000 +2711 124 0.400000 +2711 137 0.400000 +2711 250 0.400000 +2711 276 0.400000 +2711 299 0.400000 +2711 301 0.400000 +2711 407 0.400000 +2711 414 0.400000 +2711 439 0.400000 +2711 514 0.400000 +2711 521 0.400000 +2711 533 0.400000 +2711 573 0.400000 +2711 594 0.400000 +2711 673 0.400000 +2711 706 0.400000 +2711 729 0.400000 +2711 783 0.400000 +2711 811 0.400000 +2711 839 0.400000 +2711 863 0.400000 +2711 906 0.400000 +2711 959 0.400000 +2711 1156 0.400000 +2711 1169 0.400000 +2711 1192 0.400000 +2711 1427 0.400000 +2711 1454 0.400000 +2711 1457 0.400000 +2711 1475 0.400000 +2711 1500 0.400000 +2711 1537 0.400000 +2711 1565 0.400000 +2711 1574 0.400000 +2711 1588 0.400000 +2711 1598 0.400000 +2711 1624 0.400000 +2711 1645 0.400000 +2711 1669 0.400000 +2711 1699 0.400000 +2711 1809 0.400000 +2711 2007 0.400000 +2711 2047 0.400000 +2711 2053 0.400000 +2711 2064 0.400000 +2711 2184 0.400000 +2711 2188 0.400000 +2711 2190 0.400000 +2711 2220 0.400000 +2711 2223 0.400000 +2711 2239 0.400000 +2711 2265 0.400000 +2711 2351 0.400000 +2711 2353 0.400000 +2711 2492 0.400000 +2711 2515 0.400000 +2711 2519 0.400000 +2711 2544 0.400000 +2711 2545 0.400000 +2711 2550 0.400000 +2711 2561 0.400000 +2711 2627 0.400000 +2711 2628 0.400000 +2711 2685 0.400000 +2711 2739 0.400000 +2711 2775 0.400000 +2711 2797 0.400000 +2711 2816 0.400000 +2711 2834 0.400000 +2711 3055 0.400000 +2711 3086 0.400000 +2711 3099 0.400000 +2711 3100 0.400000 +2712 57 0.400000 +2712 117 0.400000 +2712 219 0.400000 +2712 239 0.400000 +2712 271 0.400000 +2712 301 0.400000 +2712 320 0.400000 +2712 321 0.400000 +2712 365 0.400000 +2712 395 0.400000 +2712 447 0.400000 +2712 477 0.400000 +2712 518 0.400000 +2712 722 0.400000 +2712 879 0.400000 +2712 884 0.400000 +2712 1082 0.400000 +2712 1114 0.400000 +2712 1126 0.400000 +2712 1152 0.400000 +2712 1233 0.400000 +2712 1305 0.400000 +2712 1379 0.400000 +2712 1401 0.400000 +2712 1420 0.400000 +2712 1514 0.400000 +2712 1525 0.400000 +2712 1537 0.400000 +2712 1553 0.400000 +2712 1554 0.400000 +2712 1605 0.400000 +2712 1679 0.400000 +2712 1758 0.400000 +2712 1764 0.400000 +2712 1820 0.400000 +2712 1826 0.400000 +2712 1837 0.400000 +2712 1987 0.400000 +2712 2152 0.400000 +2712 2159 0.400000 +2712 2205 0.400000 +2712 2221 0.400000 +2712 2274 0.400000 +2712 2312 0.400000 +2712 2354 0.400000 +2712 2374 0.400000 +2712 2419 0.400000 +2712 2461 0.400000 +2712 2476 0.400000 +2712 2544 0.400000 +2712 2548 0.400000 +2712 2650 0.400000 +2712 2683 0.400000 +2712 2737 0.400000 +2712 2833 0.400000 +2712 2835 0.400000 +2712 2995 0.400000 +2713 34 0.400000 +2713 118 0.400000 +2713 163 0.400000 +2713 181 0.400000 +2713 182 0.400000 +2713 219 0.400000 +2713 285 0.400000 +2713 311 0.400000 +2713 347 0.400000 +2713 367 0.400000 +2713 399 0.400000 +2713 434 0.400000 +2713 532 0.400000 +2713 536 0.400000 +2713 541 0.400000 +2713 561 0.400000 +2713 773 0.400000 +2713 792 0.400000 +2713 814 0.400000 +2713 834 0.400000 +2713 853 0.400000 +2713 916 0.400000 +2713 968 0.400000 +2713 1000 0.400000 +2713 1002 0.400000 +2713 1008 0.400000 +2713 1131 0.400000 +2713 1161 0.400000 +2713 1169 0.400000 +2713 1229 0.400000 +2713 1299 0.400000 +2713 1338 0.400000 +2713 1350 0.400000 +2713 1381 0.400000 +2713 1427 0.400000 +2713 1429 0.400000 +2713 1479 0.400000 +2713 1480 0.400000 +2713 1507 0.400000 +2713 1574 0.400000 +2713 1584 0.400000 +2713 1588 0.400000 +2713 1589 0.400000 +2713 1623 0.400000 +2713 1640 0.400000 +2713 1658 0.400000 +2713 1722 0.400000 +2713 1779 0.400000 +2713 1834 0.400000 +2713 1846 0.400000 +2713 1916 0.400000 +2713 1974 0.400000 +2713 1989 0.400000 +2713 2101 0.400000 +2713 2298 0.400000 +2713 2351 0.400000 +2713 2353 0.400000 +2713 2400 0.400000 +2713 2422 0.400000 +2713 2457 0.400000 +2713 2471 0.400000 +2713 2503 0.400000 +2713 2586 0.400000 +2713 2610 0.400000 +2713 2616 0.400000 +2713 2794 0.400000 +2713 2799 0.400000 +2713 2842 0.400000 +2713 2845 0.400000 +2713 2914 0.400000 +2713 2926 0.400000 +2713 2959 0.400000 +2713 2973 0.400000 +2713 2996 0.400000 +2713 3166 0.400000 +2713 3170 0.400000 +2714 60 0.400000 +2714 134 0.400000 +2714 191 0.400000 +2714 195 0.400000 +2714 207 0.400000 +2714 243 0.400000 +2714 318 0.400000 +2714 356 0.400000 +2714 420 0.400000 +2714 424 0.400000 +2714 436 0.400000 +2714 539 0.400000 +2714 549 0.400000 +2714 559 0.400000 +2714 590 0.400000 +2714 607 0.400000 +2714 617 0.400000 +2714 691 0.400000 +2714 701 0.400000 +2714 744 0.400000 +2714 902 0.400000 +2714 1001 0.400000 +2714 1159 0.400000 +2714 1164 0.400000 +2714 1216 0.400000 +2714 1231 0.400000 +2714 1283 0.400000 +2714 1333 0.400000 +2714 1335 0.400000 +2714 1401 0.400000 +2714 1408 0.400000 +2714 1440 0.400000 +2714 1472 0.400000 +2714 1512 0.400000 +2714 1556 0.400000 +2714 1564 0.400000 +2714 1619 0.400000 +2714 1665 0.400000 +2714 1703 0.400000 +2714 1720 0.400000 +2714 1831 0.400000 +2714 1885 0.400000 +2714 1915 0.400000 +2714 2033 0.400000 +2714 2067 0.400000 +2714 2100 0.400000 +2714 2125 0.400000 +2714 2164 0.400000 +2714 2189 0.400000 +2714 2199 0.400000 +2714 2314 0.400000 +2714 2356 0.400000 +2714 2394 0.400000 +2714 2400 0.400000 +2714 2401 0.400000 +2714 2443 0.400000 +2714 2499 0.400000 +2714 2523 0.400000 +2714 2542 0.400000 +2714 2592 0.400000 +2714 2608 0.400000 +2714 2663 0.400000 +2714 2697 0.400000 +2714 2708 0.400000 +2714 2712 0.400000 +2714 2729 0.400000 +2714 2991 0.400000 +2714 3047 0.400000 +2714 3131 0.400000 +2715 49 0.400000 +2715 55 0.400000 +2715 59 0.400000 +2715 214 0.400000 +2715 275 0.400000 +2715 305 0.400000 +2715 325 0.400000 +2715 346 0.400000 +2715 362 0.400000 +2715 374 0.400000 +2715 376 0.400000 +2715 377 0.400000 +2715 466 0.400000 +2715 483 0.400000 +2715 500 0.400000 +2715 575 0.400000 +2715 619 0.400000 +2715 645 0.400000 +2715 662 0.400000 +2715 744 0.400000 +2715 750 0.400000 +2715 902 0.400000 +2715 1024 0.400000 +2715 1136 0.400000 +2715 1202 0.400000 +2715 1231 0.400000 +2715 1500 0.400000 +2715 1555 0.400000 +2715 1582 0.400000 +2715 1590 0.400000 +2715 1617 0.400000 +2715 1639 0.400000 +2715 1644 0.400000 +2715 1699 0.400000 +2715 1814 0.400000 +2715 1874 0.400000 +2715 1875 0.400000 +2715 1952 0.400000 +2715 1953 0.400000 +2715 1954 0.400000 +2715 1967 0.400000 +2715 2050 0.400000 +2715 2074 0.400000 +2715 2086 0.400000 +2715 2151 0.400000 +2715 2225 0.400000 +2715 2258 0.400000 +2715 2260 0.400000 +2715 2291 0.400000 +2715 2381 0.400000 +2715 2404 0.400000 +2715 2414 0.400000 +2715 2426 0.400000 +2715 2450 0.400000 +2715 2500 0.400000 +2715 2557 0.400000 +2715 2571 0.400000 +2715 2612 0.400000 +2715 2698 0.400000 +2715 2722 0.400000 +2715 2770 0.400000 +2715 2912 0.400000 +2715 2943 0.400000 +2715 2953 0.400000 +2715 2973 0.400000 +2715 2989 0.400000 +2715 3011 0.400000 +2715 3031 0.400000 +2715 3050 0.400000 +2715 3078 0.400000 +2715 3134 0.400000 +2715 3194 0.400000 +2716 97 0.400000 +2716 126 0.400000 +2716 134 0.400000 +2716 140 0.400000 +2716 194 0.400000 +2716 223 0.400000 +2716 248 0.400000 +2716 252 0.400000 +2716 292 0.400000 +2716 302 0.400000 +2716 334 0.400000 +2716 343 0.400000 +2716 380 0.400000 +2716 488 0.400000 +2716 521 0.400000 +2716 548 0.400000 +2716 553 0.400000 +2716 572 0.400000 +2716 607 0.400000 +2716 809 0.400000 +2716 864 0.400000 +2716 921 0.400000 +2716 933 0.400000 +2716 937 0.400000 +2716 954 0.400000 +2716 955 0.400000 +2716 962 0.400000 +2716 966 0.400000 +2716 972 0.400000 +2716 1059 0.400000 +2716 1166 0.400000 +2716 1178 0.400000 +2716 1204 0.400000 +2716 1213 0.400000 +2716 1222 0.400000 +2716 1272 0.400000 +2716 1305 0.400000 +2716 1476 0.400000 +2716 1561 0.400000 +2716 1597 0.400000 +2716 1776 0.400000 +2716 1780 0.400000 +2716 1786 0.400000 +2716 1794 0.400000 +2716 1860 0.400000 +2716 1896 0.400000 +2716 2121 0.400000 +2716 2150 0.400000 +2716 2240 0.400000 +2716 2256 0.400000 +2716 2280 0.400000 +2716 2333 0.400000 +2716 2336 0.400000 +2716 2389 0.400000 +2716 2426 0.400000 +2716 2457 0.400000 +2716 2502 0.400000 +2716 2525 0.400000 +2716 2624 0.400000 +2716 2659 0.400000 +2716 2687 0.400000 +2716 2724 0.400000 +2716 2746 0.400000 +2716 2784 0.400000 +2716 2897 0.400000 +2716 2979 0.400000 +2716 3002 0.400000 +2716 3015 0.400000 +2716 3026 0.400000 +2716 3028 0.400000 +2716 3031 0.400000 +2716 3048 0.400000 +2717 265 0.400000 +2717 292 0.400000 +2717 317 0.400000 +2717 331 0.400000 +2717 335 0.400000 +2717 431 0.400000 +2717 433 0.400000 +2717 453 0.400000 +2717 457 0.400000 +2717 458 0.400000 +2717 498 0.400000 +2717 617 0.400000 +2717 656 0.400000 +2717 773 0.400000 +2717 780 0.400000 +2717 793 0.400000 +2717 806 0.400000 +2717 835 0.400000 +2717 891 0.400000 +2717 936 0.400000 +2717 958 0.400000 +2717 1095 0.400000 +2717 1114 0.400000 +2717 1189 0.400000 +2717 1194 0.400000 +2717 1211 0.400000 +2717 1246 0.400000 +2717 1272 0.400000 +2717 1288 0.400000 +2717 1294 0.400000 +2717 1299 0.400000 +2717 1316 0.400000 +2717 1342 0.400000 +2717 1374 0.400000 +2717 1507 0.400000 +2717 1678 0.400000 +2717 1721 0.400000 +2717 1759 0.400000 +2717 1760 0.400000 +2717 1773 0.400000 +2717 1786 0.400000 +2717 1844 0.400000 +2717 1866 0.400000 +2717 1899 0.400000 +2717 1902 0.400000 +2717 1937 0.400000 +2717 1939 0.400000 +2717 1975 0.400000 +2717 2087 0.400000 +2717 2160 0.400000 +2717 2186 0.400000 +2717 2253 0.400000 +2717 2267 0.400000 +2717 2314 0.400000 +2717 2362 0.400000 +2717 2386 0.400000 +2717 2432 0.400000 +2717 2439 0.400000 +2717 2442 0.400000 +2717 2470 0.400000 +2717 2567 0.400000 +2717 2601 0.400000 +2717 2630 0.400000 +2717 2677 0.400000 +2717 2785 0.400000 +2717 2793 0.400000 +2717 2800 0.400000 +2717 2834 0.400000 +2717 2879 0.400000 +2717 2945 0.400000 +2717 2973 0.400000 +2717 2992 0.400000 +2717 3030 0.400000 +2717 3036 0.400000 +2717 3072 0.400000 +2717 3171 0.400000 +2718 22 0.400000 +2718 39 0.400000 +2718 71 0.400000 +2718 120 0.400000 +2718 147 0.400000 +2718 194 0.400000 +2718 209 0.400000 +2718 241 0.400000 +2718 326 0.400000 +2718 407 0.400000 +2718 497 0.400000 +2718 536 0.400000 +2718 556 0.400000 +2718 569 0.400000 +2718 586 0.400000 +2718 614 0.400000 +2718 644 0.400000 +2718 668 0.400000 +2718 715 0.400000 +2718 774 0.400000 +2718 819 0.400000 +2718 867 0.400000 +2718 868 0.400000 +2718 877 0.400000 +2718 890 0.400000 +2718 905 0.400000 +2718 934 0.400000 +2718 958 0.400000 +2718 1051 0.400000 +2718 1058 0.400000 +2718 1121 0.400000 +2718 1164 0.400000 +2718 1330 0.400000 +2718 1351 0.400000 +2718 1363 0.400000 +2718 1365 0.400000 +2718 1388 0.400000 +2718 1407 0.400000 +2718 1447 0.400000 +2718 1462 0.400000 +2718 1482 0.400000 +2718 1544 0.400000 +2718 1553 0.400000 +2718 1601 0.400000 +2718 1638 0.400000 +2718 1728 0.400000 +2718 1800 0.400000 +2718 1822 0.400000 +2718 1924 0.400000 +2718 1988 0.400000 +2718 2163 0.400000 +2718 2174 0.400000 +2718 2176 0.400000 +2718 2196 0.400000 +2718 2243 0.400000 +2718 2337 0.400000 +2718 2343 0.400000 +2718 2462 0.400000 +2718 2491 0.400000 +2718 2498 0.400000 +2718 2504 0.400000 +2718 2524 0.400000 +2718 2533 0.400000 +2718 2553 0.400000 +2718 2606 0.400000 +2718 2812 0.400000 +2718 2831 0.400000 +2718 2869 0.400000 +2718 2871 0.400000 +2718 2878 0.400000 +2718 2987 0.400000 +2718 3163 0.400000 +2718 3167 0.400000 +2719 25 0.400000 +2719 66 0.400000 +2719 125 0.400000 +2719 144 0.400000 +2719 246 0.400000 +2719 268 0.400000 +2719 289 0.400000 +2719 368 0.400000 +2719 376 0.400000 +2719 384 0.400000 +2719 388 0.400000 +2719 427 0.400000 +2719 457 0.400000 +2719 474 0.400000 +2719 489 0.400000 +2719 500 0.400000 +2719 510 0.400000 +2719 532 0.400000 +2719 565 0.400000 +2719 572 0.400000 +2719 616 0.400000 +2719 746 0.400000 +2719 788 0.400000 +2719 801 0.400000 +2719 825 0.400000 +2719 831 0.400000 +2719 843 0.400000 +2719 851 0.400000 +2719 961 0.400000 +2719 966 0.400000 +2719 967 0.400000 +2719 1008 0.400000 +2719 1016 0.400000 +2719 1058 0.400000 +2719 1258 0.400000 +2719 1279 0.400000 +2719 1411 0.400000 +2719 1436 0.400000 +2719 1457 0.400000 +2719 1530 0.400000 +2719 1587 0.400000 +2719 1614 0.400000 +2719 1709 0.400000 +2719 1828 0.400000 +2719 1846 0.400000 +2719 1904 0.400000 +2719 1982 0.400000 +2719 2112 0.400000 +2719 2246 0.400000 +2719 2260 0.400000 +2719 2276 0.400000 +2719 2283 0.400000 +2719 2299 0.400000 +2719 2325 0.400000 +2719 2382 0.400000 +2719 2406 0.400000 +2719 2459 0.400000 +2719 2496 0.400000 +2719 2570 0.400000 +2719 2578 0.400000 +2719 2599 0.400000 +2719 2714 0.400000 +2719 2744 0.400000 +2719 2750 0.400000 +2719 2837 0.400000 +2719 2856 0.400000 +2719 2891 0.400000 +2719 2937 0.400000 +2719 2962 0.400000 +2719 2968 0.400000 +2719 3092 0.400000 +2719 3096 0.400000 +2719 3101 0.400000 +2720 27 0.400000 +2720 33 0.400000 +2720 37 0.400000 +2720 70 0.400000 +2720 80 0.400000 +2720 143 0.400000 +2720 205 0.400000 +2720 215 0.400000 +2720 297 0.400000 +2720 327 0.400000 +2720 331 0.400000 +2720 334 0.400000 +2720 353 0.400000 +2720 562 0.400000 +2720 608 0.400000 +2720 612 0.400000 +2720 672 0.400000 +2720 674 0.400000 +2720 911 0.400000 +2720 926 0.400000 +2720 939 0.400000 +2720 1047 0.400000 +2720 1090 0.400000 +2720 1135 0.400000 +2720 1143 0.400000 +2720 1188 0.400000 +2720 1228 0.400000 +2720 1235 0.400000 +2720 1282 0.400000 +2720 1297 0.400000 +2720 1327 0.400000 +2720 1411 0.400000 +2720 1441 0.400000 +2720 1444 0.400000 +2720 1561 0.400000 +2720 1587 0.400000 +2720 1638 0.400000 +2720 1675 0.400000 +2720 1712 0.400000 +2720 1719 0.400000 +2720 1728 0.400000 +2720 1733 0.400000 +2720 1821 0.400000 +2720 1837 0.400000 +2720 1987 0.400000 +2720 2072 0.400000 +2720 2151 0.400000 +2720 2247 0.400000 +2720 2403 0.400000 +2720 2404 0.400000 +2720 2495 0.400000 +2720 2557 0.400000 +2720 2721 0.400000 +2720 2754 0.400000 +2720 2757 0.400000 +2720 2766 0.400000 +2720 2799 0.400000 +2720 2831 0.400000 +2720 2844 0.400000 +2720 2845 0.400000 +2720 2846 0.400000 +2720 2892 0.400000 +2720 2996 0.400000 +2720 3038 0.400000 +2720 3108 0.400000 +2720 3159 0.400000 +2721 3 0.400000 +2721 4 0.400000 +2721 75 0.400000 +2721 127 0.400000 +2721 128 0.400000 +2721 166 0.400000 +2721 175 0.400000 +2721 185 0.400000 +2721 227 0.400000 +2721 301 0.400000 +2721 315 0.400000 +2721 356 0.400000 +2721 488 0.400000 +2721 495 0.400000 +2721 528 0.400000 +2721 537 0.400000 +2721 726 0.400000 +2721 877 0.400000 +2721 889 0.400000 +2721 989 0.400000 +2721 993 0.400000 +2721 995 0.400000 +2721 998 0.400000 +2721 1014 0.400000 +2721 1101 0.400000 +2721 1144 0.400000 +2721 1186 0.400000 +2721 1202 0.400000 +2721 1279 0.400000 +2721 1348 0.400000 +2721 1362 0.400000 +2721 1427 0.400000 +2721 1474 0.400000 +2721 1502 0.400000 +2721 1593 0.400000 +2721 1662 0.400000 +2721 1669 0.400000 +2721 1707 0.400000 +2721 1712 0.400000 +2721 1748 0.400000 +2721 1835 0.400000 +2721 1891 0.400000 +2721 1990 0.400000 +2721 2018 0.400000 +2721 2019 0.400000 +2721 2090 0.400000 +2721 2100 0.400000 +2721 2200 0.400000 +2721 2226 0.400000 +2721 2294 0.400000 +2721 2466 0.400000 +2721 2473 0.400000 +2721 2524 0.400000 +2721 2564 0.400000 +2721 2717 0.400000 +2721 2721 0.400000 +2721 2733 0.400000 +2721 2775 0.400000 +2721 2856 0.400000 +2721 2861 0.400000 +2721 2936 0.400000 +2721 2964 0.400000 +2721 2976 0.400000 +2721 3026 0.400000 +2721 3032 0.400000 +2721 3057 0.400000 +2721 3061 0.400000 +2721 3065 0.400000 +2721 3092 0.400000 +2721 3106 0.400000 +2721 3164 0.400000 +2721 3165 0.400000 +2722 1 0.400000 +2722 3 0.400000 +2722 62 0.400000 +2722 111 0.400000 +2722 147 0.400000 +2722 224 0.400000 +2722 277 0.400000 +2722 346 0.400000 +2722 355 0.400000 +2722 369 0.400000 +2722 370 0.400000 +2722 487 0.400000 +2722 496 0.400000 +2722 543 0.400000 +2722 581 0.400000 +2722 665 0.400000 +2722 673 0.400000 +2722 711 0.400000 +2722 719 0.400000 +2722 736 0.400000 +2722 781 0.400000 +2722 798 0.400000 +2722 815 0.400000 +2722 981 0.400000 +2722 982 0.400000 +2722 1065 0.400000 +2722 1106 0.400000 +2722 1125 0.400000 +2722 1128 0.400000 +2722 1191 0.400000 +2722 1287 0.400000 +2722 1316 0.400000 +2722 1362 0.400000 +2722 1407 0.400000 +2722 1462 0.400000 +2722 1466 0.400000 +2722 1512 0.400000 +2722 1554 0.400000 +2722 1602 0.400000 +2722 1607 0.400000 +2722 1612 0.400000 +2722 1617 0.400000 +2722 1653 0.400000 +2722 1664 0.400000 +2722 1879 0.400000 +2722 1964 0.400000 +2722 2028 0.400000 +2722 2113 0.400000 +2722 2151 0.400000 +2722 2170 0.400000 +2722 2179 0.400000 +2722 2198 0.400000 +2722 2210 0.400000 +2722 2269 0.400000 +2722 2288 0.400000 +2722 2552 0.400000 +2722 2626 0.400000 +2722 2720 0.400000 +2722 2762 0.400000 +2722 2778 0.400000 +2722 2829 0.400000 +2722 2868 0.400000 +2722 2874 0.400000 +2722 3075 0.400000 +2722 3087 0.400000 +2722 3093 0.400000 +2723 19 0.400000 +2723 24 0.400000 +2723 27 0.400000 +2723 70 0.400000 +2723 132 0.400000 +2723 205 0.400000 +2723 222 0.400000 +2723 244 0.400000 +2723 359 0.400000 +2723 374 0.400000 +2723 388 0.400000 +2723 422 0.400000 +2723 437 0.400000 +2723 438 0.400000 +2723 494 0.400000 +2723 638 0.400000 +2723 698 0.400000 +2723 770 0.400000 +2723 805 0.400000 +2723 969 0.400000 +2723 992 0.400000 +2723 1027 0.400000 +2723 1189 0.400000 +2723 1228 0.400000 +2723 1370 0.400000 +2723 1404 0.400000 +2723 1439 0.400000 +2723 1443 0.400000 +2723 1563 0.400000 +2723 1637 0.400000 +2723 1660 0.400000 +2723 1669 0.400000 +2723 1688 0.400000 +2723 1716 0.400000 +2723 1722 0.400000 +2723 1753 0.400000 +2723 1772 0.400000 +2723 1870 0.400000 +2723 1881 0.400000 +2723 1911 0.400000 +2723 1951 0.400000 +2723 1997 0.400000 +2723 2018 0.400000 +2723 2069 0.400000 +2723 2115 0.400000 +2723 2146 0.400000 +2723 2169 0.400000 +2723 2173 0.400000 +2723 2216 0.400000 +2723 2396 0.400000 +2723 2399 0.400000 +2723 2641 0.400000 +2723 2668 0.400000 +2723 2671 0.400000 +2723 2770 0.400000 +2723 2781 0.400000 +2723 2845 0.400000 +2723 2985 0.400000 +2723 3012 0.400000 +2723 3051 0.400000 +2723 3083 0.400000 +2723 3090 0.400000 +2723 3132 0.400000 +2724 14 0.400000 +2724 87 0.400000 +2724 89 0.400000 +2724 117 0.400000 +2724 138 0.400000 +2724 217 0.400000 +2724 230 0.400000 +2724 231 0.400000 +2724 243 0.400000 +2724 370 0.400000 +2724 382 0.400000 +2724 400 0.400000 +2724 414 0.400000 +2724 438 0.400000 +2724 474 0.400000 +2724 517 0.400000 +2724 555 0.400000 +2724 557 0.400000 +2724 574 0.400000 +2724 580 0.400000 +2724 598 0.400000 +2724 623 0.400000 +2724 647 0.400000 +2724 679 0.400000 +2724 699 0.400000 +2724 733 0.400000 +2724 783 0.400000 +2724 784 0.400000 +2724 808 0.400000 +2724 824 0.400000 +2724 836 0.400000 +2724 862 0.400000 +2724 875 0.400000 +2724 902 0.400000 +2724 986 0.400000 +2724 995 0.400000 +2724 1039 0.400000 +2724 1045 0.400000 +2724 1138 0.400000 +2724 1172 0.400000 +2724 1183 0.400000 +2724 1272 0.400000 +2724 1318 0.400000 +2724 1329 0.400000 +2724 1394 0.400000 +2724 1409 0.400000 +2724 1446 0.400000 +2724 1541 0.400000 +2724 1557 0.400000 +2724 1560 0.400000 +2724 1586 0.400000 +2724 1696 0.400000 +2724 1713 0.400000 +2724 1722 0.400000 +2724 1732 0.400000 +2724 1773 0.400000 +2724 1840 0.400000 +2724 1892 0.400000 +2724 1956 0.400000 +2724 2034 0.400000 +2724 2124 0.400000 +2724 2200 0.400000 +2724 2219 0.400000 +2724 2236 0.400000 +2724 2289 0.400000 +2724 2312 0.400000 +2724 2533 0.400000 +2724 2551 0.400000 +2724 2558 0.400000 +2724 2585 0.400000 +2724 2609 0.400000 +2724 2661 0.400000 +2724 2670 0.400000 +2724 2687 0.400000 +2724 2697 0.400000 +2724 2713 0.400000 +2724 2791 0.400000 +2724 2928 0.400000 +2724 2934 0.400000 +2724 2997 0.400000 +2724 3029 0.400000 +2724 3153 0.400000 +2724 3172 0.400000 +2725 177 0.400000 +2725 315 0.400000 +2725 329 0.400000 +2725 372 0.400000 +2725 384 0.400000 +2725 394 0.400000 +2725 407 0.400000 +2725 422 0.400000 +2725 427 0.400000 +2725 506 0.400000 +2725 532 0.400000 +2725 586 0.400000 +2725 607 0.400000 +2725 631 0.400000 +2725 671 0.400000 +2725 717 0.400000 +2725 722 0.400000 +2725 738 0.400000 +2725 872 0.400000 +2725 900 0.400000 +2725 971 0.400000 +2725 1042 0.400000 +2725 1046 0.400000 +2725 1077 0.400000 +2725 1142 0.400000 +2725 1202 0.400000 +2725 1225 0.400000 +2725 1312 0.400000 +2725 1401 0.400000 +2725 1405 0.400000 +2725 1451 0.400000 +2725 1536 0.400000 +2725 1600 0.400000 +2725 1683 0.400000 +2725 1794 0.400000 +2725 1838 0.400000 +2725 1874 0.400000 +2725 1889 0.400000 +2725 1911 0.400000 +2725 1951 0.400000 +2725 1956 0.400000 +2725 2009 0.400000 +2725 2012 0.400000 +2725 2162 0.400000 +2725 2220 0.400000 +2725 2287 0.400000 +2725 2353 0.400000 +2725 2356 0.400000 +2725 2383 0.400000 +2725 2461 0.400000 +2725 2579 0.400000 +2725 2668 0.400000 +2725 2776 0.400000 +2725 2812 0.400000 +2725 2827 0.400000 +2725 2830 0.400000 +2725 2878 0.400000 +2725 2967 0.400000 +2725 3002 0.400000 +2725 3030 0.400000 +2725 3035 0.400000 +2725 3177 0.400000 +2726 239 0.400000 +2726 268 0.400000 +2726 272 0.400000 +2726 327 0.400000 +2726 336 0.400000 +2726 420 0.400000 +2726 433 0.400000 +2726 453 0.400000 +2726 469 0.400000 +2726 511 0.400000 +2726 580 0.400000 +2726 620 0.400000 +2726 626 0.400000 +2726 702 0.400000 +2726 709 0.400000 +2726 711 0.400000 +2726 763 0.400000 +2726 789 0.400000 +2726 816 0.400000 +2726 820 0.400000 +2726 829 0.400000 +2726 834 0.400000 +2726 846 0.400000 +2726 851 0.400000 +2726 890 0.400000 +2726 896 0.400000 +2726 933 0.400000 +2726 980 0.400000 +2726 996 0.400000 +2726 1072 0.400000 +2726 1160 0.400000 +2726 1174 0.400000 +2726 1193 0.400000 +2726 1292 0.400000 +2726 1441 0.400000 +2726 1497 0.400000 +2726 1502 0.400000 +2726 1536 0.400000 +2726 1754 0.400000 +2726 1769 0.400000 +2726 1826 0.400000 +2726 1959 0.400000 +2726 2007 0.400000 +2726 2083 0.400000 +2726 2088 0.400000 +2726 2126 0.400000 +2726 2198 0.400000 +2726 2233 0.400000 +2726 2295 0.400000 +2726 2313 0.400000 +2726 2338 0.400000 +2726 2381 0.400000 +2726 2385 0.400000 +2726 2478 0.400000 +2726 2549 0.400000 +2726 2625 0.400000 +2726 2670 0.400000 +2726 2680 0.400000 +2726 2697 0.400000 +2726 2846 0.400000 +2726 2869 0.400000 +2726 2902 0.400000 +2726 2966 0.400000 +2726 2992 0.400000 +2726 2999 0.400000 +2726 3038 0.400000 +2726 3063 0.400000 +2726 3106 0.400000 +2726 3200 0.400000 +2727 51 0.400000 +2727 80 0.400000 +2727 111 0.400000 +2727 154 0.400000 +2727 281 0.400000 +2727 289 0.400000 +2727 304 0.400000 +2727 316 0.400000 +2727 410 0.400000 +2727 425 0.400000 +2727 436 0.400000 +2727 489 0.400000 +2727 510 0.400000 +2727 569 0.400000 +2727 574 0.400000 +2727 695 0.400000 +2727 711 0.400000 +2727 724 0.400000 +2727 751 0.400000 +2727 784 0.400000 +2727 942 0.400000 +2727 1032 0.400000 +2727 1106 0.400000 +2727 1108 0.400000 +2727 1135 0.400000 +2727 1175 0.400000 +2727 1182 0.400000 +2727 1241 0.400000 +2727 1292 0.400000 +2727 1312 0.400000 +2727 1363 0.400000 +2727 1447 0.400000 +2727 1456 0.400000 +2727 1462 0.400000 +2727 1535 0.400000 +2727 1538 0.400000 +2727 1550 0.400000 +2727 1577 0.400000 +2727 1648 0.400000 +2727 1783 0.400000 +2727 1827 0.400000 +2727 1887 0.400000 +2727 1912 0.400000 +2727 1925 0.400000 +2727 1927 0.400000 +2727 1970 0.400000 +2727 1994 0.400000 +2727 2024 0.400000 +2727 2060 0.400000 +2727 2073 0.400000 +2727 2163 0.400000 +2727 2165 0.400000 +2727 2179 0.400000 +2727 2231 0.400000 +2727 2266 0.400000 +2727 2297 0.400000 +2727 2314 0.400000 +2727 2502 0.400000 +2727 2689 0.400000 +2727 2864 0.400000 +2727 2869 0.400000 +2727 2993 0.400000 +2727 3142 0.400000 +2728 25 0.400000 +2728 66 0.400000 +2728 96 0.400000 +2728 119 0.400000 +2728 131 0.400000 +2728 146 0.400000 +2728 190 0.400000 +2728 210 0.400000 +2728 299 0.400000 +2728 326 0.400000 +2728 334 0.400000 +2728 344 0.400000 +2728 355 0.400000 +2728 442 0.400000 +2728 620 0.400000 +2728 648 0.400000 +2728 710 0.400000 +2728 734 0.400000 +2728 911 0.400000 +2728 964 0.400000 +2728 1157 0.400000 +2728 1158 0.400000 +2728 1160 0.400000 +2728 1190 0.400000 +2728 1212 0.400000 +2728 1213 0.400000 +2728 1333 0.400000 +2728 1391 0.400000 +2728 1441 0.400000 +2728 1640 0.400000 +2728 1705 0.400000 +2728 1769 0.400000 +2728 1771 0.400000 +2728 1844 0.400000 +2728 1858 0.400000 +2728 1874 0.400000 +2728 1883 0.400000 +2728 1893 0.400000 +2728 1914 0.400000 +2728 1998 0.400000 +2728 2007 0.400000 +2728 2030 0.400000 +2728 2084 0.400000 +2728 2143 0.400000 +2728 2154 0.400000 +2728 2206 0.400000 +2728 2234 0.400000 +2728 2255 0.400000 +2728 2278 0.400000 +2728 2283 0.400000 +2728 2289 0.400000 +2728 2338 0.400000 +2728 2429 0.400000 +2728 2431 0.400000 +2728 2432 0.400000 +2728 2527 0.400000 +2728 2557 0.400000 +2728 2605 0.400000 +2728 2623 0.400000 +2728 2639 0.400000 +2728 2707 0.400000 +2728 2846 0.400000 +2728 2849 0.400000 +2728 2855 0.400000 +2728 2862 0.400000 +2728 2885 0.400000 +2728 2944 0.400000 +2728 3011 0.400000 +2728 3129 0.400000 +2728 3145 0.400000 +2728 3159 0.400000 +2729 41 0.400000 +2729 47 0.400000 +2729 52 0.400000 +2729 79 0.400000 +2729 161 0.400000 +2729 167 0.400000 +2729 169 0.400000 +2729 258 0.400000 +2729 386 0.400000 +2729 461 0.400000 +2729 474 0.400000 +2729 486 0.400000 +2729 509 0.400000 +2729 525 0.400000 +2729 561 0.400000 +2729 592 0.400000 +2729 612 0.400000 +2729 618 0.400000 +2729 620 0.400000 +2729 637 0.400000 +2729 656 0.400000 +2729 690 0.400000 +2729 715 0.400000 +2729 815 0.400000 +2729 1013 0.400000 +2729 1121 0.400000 +2729 1153 0.400000 +2729 1212 0.400000 +2729 1345 0.400000 +2729 1382 0.400000 +2729 1495 0.400000 +2729 1506 0.400000 +2729 1529 0.400000 +2729 1797 0.400000 +2729 1825 0.400000 +2729 1870 0.400000 +2729 1942 0.400000 +2729 1998 0.400000 +2729 2088 0.400000 +2729 2250 0.400000 +2729 2281 0.400000 +2729 2298 0.400000 +2729 2466 0.400000 +2729 2608 0.400000 +2729 2642 0.400000 +2729 2655 0.400000 +2729 2738 0.400000 +2729 2740 0.400000 +2729 2763 0.400000 +2729 2776 0.400000 +2729 2807 0.400000 +2729 2832 0.400000 +2729 2842 0.400000 +2729 2921 0.400000 +2729 3038 0.400000 +2729 3042 0.400000 +2729 3067 0.400000 +2729 3142 0.400000 +2729 3167 0.400000 +2729 3191 0.400000 +2730 77 0.400000 +2730 234 0.400000 +2730 240 0.400000 +2730 244 0.400000 +2730 274 0.400000 +2730 288 0.400000 +2730 337 0.400000 +2730 352 0.400000 +2730 367 0.400000 +2730 497 0.400000 +2730 519 0.400000 +2730 530 0.400000 +2730 536 0.400000 +2730 546 0.400000 +2730 547 0.400000 +2730 614 0.400000 +2730 672 0.400000 +2730 753 0.400000 +2730 798 0.400000 +2730 983 0.400000 +2730 1072 0.400000 +2730 1105 0.400000 +2730 1119 0.400000 +2730 1144 0.400000 +2730 1154 0.400000 +2730 1160 0.400000 +2730 1255 0.400000 +2730 1330 0.400000 +2730 1350 0.400000 +2730 1365 0.400000 +2730 1385 0.400000 +2730 1400 0.400000 +2730 1410 0.400000 +2730 1681 0.400000 +2730 1739 0.400000 +2730 1767 0.400000 +2730 1848 0.400000 +2730 1942 0.400000 +2730 2007 0.400000 +2730 2019 0.400000 +2730 2117 0.400000 +2730 2150 0.400000 +2730 2153 0.400000 +2730 2252 0.400000 +2730 2264 0.400000 +2730 2320 0.400000 +2730 2367 0.400000 +2730 2451 0.400000 +2730 2461 0.400000 +2730 2466 0.400000 +2730 2489 0.400000 +2730 2570 0.400000 +2730 2608 0.400000 +2730 2717 0.400000 +2730 2735 0.400000 +2730 2763 0.400000 +2730 2798 0.400000 +2730 2829 0.400000 +2730 2851 0.400000 +2730 2995 0.400000 +2730 3072 0.400000 +2730 3085 0.400000 +2730 3109 0.400000 +2730 3112 0.400000 +2730 3141 0.400000 +2730 3149 0.400000 +2731 23 0.400000 +2731 89 0.400000 +2731 93 0.400000 +2731 231 0.400000 +2731 237 0.400000 +2731 334 0.400000 +2731 360 0.400000 +2731 384 0.400000 +2731 426 0.400000 +2731 442 0.400000 +2731 493 0.400000 +2731 591 0.400000 +2731 602 0.400000 +2731 605 0.400000 +2731 645 0.400000 +2731 765 0.400000 +2731 808 0.400000 +2731 822 0.400000 +2731 831 0.400000 +2731 917 0.400000 +2731 958 0.400000 +2731 1019 0.400000 +2731 1059 0.400000 +2731 1113 0.400000 +2731 1198 0.400000 +2731 1280 0.400000 +2731 1322 0.400000 +2731 1323 0.400000 +2731 1344 0.400000 +2731 1569 0.400000 +2731 1572 0.400000 +2731 1627 0.400000 +2731 1657 0.400000 +2731 1755 0.400000 +2731 1757 0.400000 +2731 1801 0.400000 +2731 1806 0.400000 +2731 1893 0.400000 +2731 1914 0.400000 +2731 2016 0.400000 +2731 2218 0.400000 +2731 2249 0.400000 +2731 2601 0.400000 +2731 2648 0.400000 +2731 2650 0.400000 +2731 2716 0.400000 +2731 2885 0.400000 +2731 3044 0.400000 +2731 3076 0.400000 +2731 3120 0.400000 +2732 103 0.400000 +2732 118 0.400000 +2732 176 0.400000 +2732 226 0.400000 +2732 237 0.400000 +2732 254 0.400000 +2732 260 0.400000 +2732 321 0.400000 +2732 404 0.400000 +2732 453 0.400000 +2732 465 0.400000 +2732 552 0.400000 +2732 657 0.400000 +2732 679 0.400000 +2732 699 0.400000 +2732 796 0.400000 +2732 830 0.400000 +2732 914 0.400000 +2732 955 0.400000 +2732 956 0.400000 +2732 1010 0.400000 +2732 1026 0.400000 +2732 1072 0.400000 +2732 1088 0.400000 +2732 1119 0.400000 +2732 1139 0.400000 +2732 1181 0.400000 +2732 1186 0.400000 +2732 1311 0.400000 +2732 1314 0.400000 +2732 1317 0.400000 +2732 1351 0.400000 +2732 1469 0.400000 +2732 1516 0.400000 +2732 1669 0.400000 +2732 1692 0.400000 +2732 1758 0.400000 +2732 1798 0.400000 +2732 1975 0.400000 +2732 2142 0.400000 +2732 2156 0.400000 +2732 2190 0.400000 +2732 2217 0.400000 +2732 2236 0.400000 +2732 2278 0.400000 +2732 2280 0.400000 +2732 2326 0.400000 +2732 2372 0.400000 +2732 2382 0.400000 +2732 2391 0.400000 +2732 2407 0.400000 +2732 2439 0.400000 +2732 2500 0.400000 +2732 2535 0.400000 +2732 2569 0.400000 +2732 2585 0.400000 +2732 2592 0.400000 +2732 2604 0.400000 +2732 2618 0.400000 +2732 2704 0.400000 +2732 2712 0.400000 +2732 2848 0.400000 +2732 2907 0.400000 +2732 2932 0.400000 +2732 3000 0.400000 +2732 3043 0.400000 +2732 3134 0.400000 +2733 109 0.400000 +2733 158 0.400000 +2733 260 0.400000 +2733 268 0.400000 +2733 271 0.400000 +2733 421 0.400000 +2733 486 0.400000 +2733 542 0.400000 +2733 645 0.400000 +2733 754 0.400000 +2733 1047 0.400000 +2733 1053 0.400000 +2733 1226 0.400000 +2733 1360 0.400000 +2733 1400 0.400000 +2733 1468 0.400000 +2733 1533 0.400000 +2733 1571 0.400000 +2733 1660 0.400000 +2733 1695 0.400000 +2733 1716 0.400000 +2733 1738 0.400000 +2733 1890 0.400000 +2733 2000 0.400000 +2733 2001 0.400000 +2733 2016 0.400000 +2733 2034 0.400000 +2733 2074 0.400000 +2733 2174 0.400000 +2733 2234 0.400000 +2733 2239 0.400000 +2733 2247 0.400000 +2733 2291 0.400000 +2733 2348 0.400000 +2733 2410 0.400000 +2733 2478 0.400000 +2733 2489 0.400000 +2733 2510 0.400000 +2733 2511 0.400000 +2733 2533 0.400000 +2733 2586 0.400000 +2733 2745 0.400000 +2733 2756 0.400000 +2733 2789 0.400000 +2733 2793 0.400000 +2733 2843 0.400000 +2733 2875 0.400000 +2733 2884 0.400000 +2733 2977 0.400000 +2733 2989 0.400000 +2733 3059 0.400000 +2733 3073 0.400000 +2733 3135 0.400000 +2734 37 0.400000 +2734 86 0.400000 +2734 152 0.400000 +2734 333 0.400000 +2734 619 0.400000 +2734 624 0.400000 +2734 673 0.400000 +2734 675 0.400000 +2734 702 0.400000 +2734 713 0.400000 +2734 842 0.400000 +2734 982 0.400000 +2734 1078 0.400000 +2734 1162 0.400000 +2734 1195 0.400000 +2734 1213 0.400000 +2734 1260 0.400000 +2734 1347 0.400000 +2734 1378 0.400000 +2734 1385 0.400000 +2734 1442 0.400000 +2734 1498 0.400000 +2734 1671 0.400000 +2734 1707 0.400000 +2734 1708 0.400000 +2734 1855 0.400000 +2734 1900 0.400000 +2734 1903 0.400000 +2734 1935 0.400000 +2734 2015 0.400000 +2734 2045 0.400000 +2734 2077 0.400000 +2734 2122 0.400000 +2734 2201 0.400000 +2734 2265 0.400000 +2734 2273 0.400000 +2734 2307 0.400000 +2734 2357 0.400000 +2734 2391 0.400000 +2734 2396 0.400000 +2734 2423 0.400000 +2734 2460 0.400000 +2734 2474 0.400000 +2734 2501 0.400000 +2734 2628 0.400000 +2734 2649 0.400000 +2734 2683 0.400000 +2734 2750 0.400000 +2734 2770 0.400000 +2734 2875 0.400000 +2734 2976 0.400000 +2734 2999 0.400000 +2734 3011 0.400000 +2734 3018 0.400000 +2734 3086 0.400000 +2734 3112 0.400000 +2734 3132 0.400000 +2734 3175 0.400000 +2734 3182 0.400000 +2735 89 0.400000 +2735 96 0.400000 +2735 141 0.400000 +2735 157 0.400000 +2735 169 0.400000 +2735 182 0.400000 +2735 211 0.400000 +2735 337 0.400000 +2735 467 0.400000 +2735 475 0.400000 +2735 482 0.400000 +2735 491 0.400000 +2735 492 0.400000 +2735 571 0.400000 +2735 708 0.400000 +2735 778 0.400000 +2735 876 0.400000 +2735 886 0.400000 +2735 962 0.400000 +2735 1080 0.400000 +2735 1082 0.400000 +2735 1142 0.400000 +2735 1188 0.400000 +2735 1272 0.400000 +2735 1316 0.400000 +2735 1327 0.400000 +2735 1416 0.400000 +2735 1436 0.400000 +2735 1490 0.400000 +2735 1585 0.400000 +2735 1600 0.400000 +2735 1615 0.400000 +2735 1631 0.400000 +2735 1706 0.400000 +2735 1733 0.400000 +2735 1739 0.400000 +2735 1871 0.400000 +2735 1881 0.400000 +2735 1948 0.400000 +2735 1955 0.400000 +2735 1973 0.400000 +2735 2077 0.400000 +2735 2078 0.400000 +2735 2090 0.400000 +2735 2171 0.400000 +2735 2172 0.400000 +2735 2174 0.400000 +2735 2209 0.400000 +2735 2259 0.400000 +2735 2276 0.400000 +2735 2282 0.400000 +2735 2346 0.400000 +2735 2390 0.400000 +2735 2417 0.400000 +2735 2419 0.400000 +2735 2441 0.400000 +2735 2574 0.400000 +2735 2599 0.400000 +2735 2607 0.400000 +2735 2626 0.400000 +2735 2717 0.400000 +2735 2729 0.400000 +2735 2784 0.400000 +2735 2842 0.400000 +2735 2852 0.400000 +2735 2858 0.400000 +2735 2908 0.400000 +2735 2924 0.400000 +2735 3037 0.400000 +2735 3042 0.400000 +2735 3054 0.400000 +2735 3143 0.400000 +2735 3159 0.400000 +2735 3196 0.400000 +2736 166 0.400000 +2736 181 0.400000 +2736 330 0.400000 +2736 399 0.400000 +2736 469 0.400000 +2736 499 0.400000 +2736 556 0.400000 +2736 615 0.400000 +2736 667 0.400000 +2736 672 0.400000 +2736 733 0.400000 +2736 795 0.400000 +2736 901 0.400000 +2736 1013 0.400000 +2736 1215 0.400000 +2736 1229 0.400000 +2736 1250 0.400000 +2736 1259 0.400000 +2736 1578 0.400000 +2736 1588 0.400000 +2736 1596 0.400000 +2736 1791 0.400000 +2736 2125 0.400000 +2736 2213 0.400000 +2736 2240 0.400000 +2736 2243 0.400000 +2736 2297 0.400000 +2736 2370 0.400000 +2736 2496 0.400000 +2736 2524 0.400000 +2736 2525 0.400000 +2736 2568 0.400000 +2736 2601 0.400000 +2736 2616 0.400000 +2736 2619 0.400000 +2736 2663 0.400000 +2736 2686 0.400000 +2736 2705 0.400000 +2736 2768 0.400000 +2736 2775 0.400000 +2736 2794 0.400000 +2736 2836 0.400000 +2736 2946 0.400000 +2736 2959 0.400000 +2736 3006 0.400000 +2736 3080 0.400000 +2736 3147 0.400000 +2737 161 0.400000 +2737 203 0.400000 +2737 283 0.400000 +2737 347 0.400000 +2737 376 0.400000 +2737 392 0.400000 +2737 466 0.400000 +2737 483 0.400000 +2737 551 0.400000 +2737 563 0.400000 +2737 665 0.400000 +2737 695 0.400000 +2737 709 0.400000 +2737 770 0.400000 +2737 786 0.400000 +2737 798 0.400000 +2737 838 0.400000 +2737 844 0.400000 +2737 895 0.400000 +2737 926 0.400000 +2737 974 0.400000 +2737 1023 0.400000 +2737 1055 0.400000 +2737 1091 0.400000 +2737 1298 0.400000 +2737 1455 0.400000 +2737 1513 0.400000 +2737 1594 0.400000 +2737 1607 0.400000 +2737 1628 0.400000 +2737 1636 0.400000 +2737 1640 0.400000 +2737 1665 0.400000 +2737 1758 0.400000 +2737 1765 0.400000 +2737 1879 0.400000 +2737 1929 0.400000 +2737 1963 0.400000 +2737 2092 0.400000 +2737 2103 0.400000 +2737 2214 0.400000 +2737 2326 0.400000 +2737 2350 0.400000 +2737 2357 0.400000 +2737 2396 0.400000 +2737 2513 0.400000 +2737 2520 0.400000 +2737 2561 0.400000 +2737 2622 0.400000 +2737 2678 0.400000 +2737 2857 0.400000 +2737 2886 0.400000 +2737 2964 0.400000 +2737 3005 0.400000 +2737 3077 0.400000 +2737 3095 0.400000 +2737 3143 0.400000 +2738 4 0.400000 +2738 20 0.400000 +2738 41 0.400000 +2738 61 0.400000 +2738 124 0.400000 +2738 138 0.400000 +2738 199 0.400000 +2738 298 0.400000 +2738 317 0.400000 +2738 459 0.400000 +2738 467 0.400000 +2738 494 0.400000 +2738 545 0.400000 +2738 612 0.400000 +2738 696 0.400000 +2738 734 0.400000 +2738 741 0.400000 +2738 901 0.400000 +2738 919 0.400000 +2738 933 0.400000 +2738 965 0.400000 +2738 1012 0.400000 +2738 1155 0.400000 +2738 1200 0.400000 +2738 1235 0.400000 +2738 1240 0.400000 +2738 1297 0.400000 +2738 1298 0.400000 +2738 1353 0.400000 +2738 1356 0.400000 +2738 1401 0.400000 +2738 1421 0.400000 +2738 1499 0.400000 +2738 1606 0.400000 +2738 1811 0.400000 +2738 1815 0.400000 +2738 1954 0.400000 +2738 1991 0.400000 +2738 2006 0.400000 +2738 2053 0.400000 +2738 2067 0.400000 +2738 2080 0.400000 +2738 2089 0.400000 +2738 2147 0.400000 +2738 2154 0.400000 +2738 2188 0.400000 +2738 2197 0.400000 +2738 2200 0.400000 +2738 2320 0.400000 +2738 2340 0.400000 +2738 2371 0.400000 +2738 2378 0.400000 +2738 2420 0.400000 +2738 2426 0.400000 +2738 2465 0.400000 +2738 2466 0.400000 +2738 2482 0.400000 +2738 2489 0.400000 +2738 2500 0.400000 +2738 2502 0.400000 +2738 2521 0.400000 +2738 2609 0.400000 +2738 2656 0.400000 +2738 2679 0.400000 +2738 2724 0.400000 +2738 2727 0.400000 +2738 2739 0.400000 +2738 2757 0.400000 +2738 2826 0.400000 +2738 2911 0.400000 +2738 2932 0.400000 +2738 2958 0.400000 +2738 2988 0.400000 +2738 3064 0.400000 +2738 3070 0.400000 +2738 3110 0.400000 +2738 3117 0.400000 +2739 71 0.400000 +2739 73 0.400000 +2739 91 0.400000 +2739 251 0.400000 +2739 270 0.400000 +2739 303 0.400000 +2739 324 0.400000 +2739 347 0.400000 +2739 412 0.400000 +2739 449 0.400000 +2739 462 0.400000 +2739 512 0.400000 +2739 650 0.400000 +2739 666 0.400000 +2739 677 0.400000 +2739 682 0.400000 +2739 784 0.400000 +2739 848 0.400000 +2739 906 0.400000 +2739 919 0.400000 +2739 941 0.400000 +2739 1120 0.400000 +2739 1144 0.400000 +2739 1156 0.400000 +2739 1157 0.400000 +2739 1158 0.400000 +2739 1165 0.400000 +2739 1465 0.400000 +2739 1649 0.400000 +2739 1652 0.400000 +2739 1668 0.400000 +2739 1782 0.400000 +2739 1800 0.400000 +2739 1824 0.400000 +2739 1903 0.400000 +2739 1976 0.400000 +2739 1979 0.400000 +2739 2010 0.400000 +2739 2121 0.400000 +2739 2133 0.400000 +2739 2279 0.400000 +2739 2404 0.400000 +2739 2460 0.400000 +2739 2648 0.400000 +2739 2769 0.400000 +2739 2826 0.400000 +2739 2871 0.400000 +2739 2920 0.400000 +2739 2948 0.400000 +2739 2970 0.400000 +2739 3011 0.400000 +2739 3020 0.400000 +2739 3040 0.400000 +2739 3099 0.400000 +2739 3111 0.400000 +2740 11 0.400000 +2740 25 0.400000 +2740 46 0.400000 +2740 78 0.400000 +2740 79 0.400000 +2740 142 0.400000 +2740 151 0.400000 +2740 157 0.400000 +2740 282 0.400000 +2740 370 0.400000 +2740 378 0.400000 +2740 401 0.400000 +2740 465 0.400000 +2740 478 0.400000 +2740 714 0.400000 +2740 732 0.400000 +2740 800 0.400000 +2740 844 0.400000 +2740 911 0.400000 +2740 935 0.400000 +2740 985 0.400000 +2740 1027 0.400000 +2740 1077 0.400000 +2740 1104 0.400000 +2740 1197 0.400000 +2740 1274 0.400000 +2740 1284 0.400000 +2740 1290 0.400000 +2740 1416 0.400000 +2740 1479 0.400000 +2740 1739 0.400000 +2740 1864 0.400000 +2740 2018 0.400000 +2740 2022 0.400000 +2740 2034 0.400000 +2740 2058 0.400000 +2740 2087 0.400000 +2740 2243 0.400000 +2740 2247 0.400000 +2740 2444 0.400000 +2740 2497 0.400000 +2740 2552 0.400000 +2740 2692 0.400000 +2740 2702 0.400000 +2740 2706 0.400000 +2740 2745 0.400000 +2740 2783 0.400000 +2740 2792 0.400000 +2740 2836 0.400000 +2740 2860 0.400000 +2740 2872 0.400000 +2740 2901 0.400000 +2740 2949 0.400000 +2740 3075 0.400000 +2740 3082 0.400000 +2740 3090 0.400000 +2740 3094 0.400000 +2740 3141 0.400000 +2741 108 0.400000 +2741 112 0.400000 +2741 163 0.400000 +2741 238 0.400000 +2741 245 0.400000 +2741 278 0.400000 +2741 398 0.400000 +2741 414 0.400000 +2741 495 0.400000 +2741 534 0.400000 +2741 574 0.400000 +2741 590 0.400000 +2741 661 0.400000 +2741 702 0.400000 +2741 766 0.400000 +2741 768 0.400000 +2741 777 0.400000 +2741 843 0.400000 +2741 923 0.400000 +2741 1032 0.400000 +2741 1050 0.400000 +2741 1090 0.400000 +2741 1105 0.400000 +2741 1145 0.400000 +2741 1160 0.400000 +2741 1183 0.400000 +2741 1188 0.400000 +2741 1194 0.400000 +2741 1209 0.400000 +2741 1234 0.400000 +2741 1253 0.400000 +2741 1351 0.400000 +2741 1385 0.400000 +2741 1407 0.400000 +2741 1476 0.400000 +2741 1499 0.400000 +2741 1526 0.400000 +2741 1559 0.400000 +2741 1590 0.400000 +2741 1628 0.400000 +2741 1687 0.400000 +2741 1709 0.400000 +2741 1746 0.400000 +2741 1828 0.400000 +2741 1945 0.400000 +2741 2000 0.400000 +2741 2020 0.400000 +2741 2042 0.400000 +2741 2090 0.400000 +2741 2342 0.400000 +2741 2395 0.400000 +2741 2450 0.400000 +2741 2465 0.400000 +2741 2478 0.400000 +2741 2513 0.400000 +2741 2554 0.400000 +2741 2592 0.400000 +2741 2596 0.400000 +2741 2624 0.400000 +2741 2726 0.400000 +2741 2755 0.400000 +2741 2782 0.400000 +2741 2832 0.400000 +2741 2868 0.400000 +2741 2965 0.400000 +2741 3003 0.400000 +2741 3092 0.400000 +2741 3193 0.400000 +2741 3200 0.400000 +2742 30 0.400000 +2742 44 0.400000 +2742 82 0.400000 +2742 101 0.400000 +2742 233 0.400000 +2742 273 0.400000 +2742 279 0.400000 +2742 331 0.400000 +2742 351 0.400000 +2742 352 0.400000 +2742 444 0.400000 +2742 476 0.400000 +2742 490 0.400000 +2742 507 0.400000 +2742 517 0.400000 +2742 554 0.400000 +2742 649 0.400000 +2742 679 0.400000 +2742 739 0.400000 +2742 819 0.400000 +2742 823 0.400000 +2742 825 0.400000 +2742 1018 0.400000 +2742 1050 0.400000 +2742 1082 0.400000 +2742 1128 0.400000 +2742 1147 0.400000 +2742 1162 0.400000 +2742 1312 0.400000 +2742 1326 0.400000 +2742 1333 0.400000 +2742 1353 0.400000 +2742 1367 0.400000 +2742 1370 0.400000 +2742 1454 0.400000 +2742 1470 0.400000 +2742 1477 0.400000 +2742 1569 0.400000 +2742 1587 0.400000 +2742 1618 0.400000 +2742 1642 0.400000 +2742 1643 0.400000 +2742 1691 0.400000 +2742 1782 0.400000 +2742 1854 0.400000 +2742 1875 0.400000 +2742 1883 0.400000 +2742 1920 0.400000 +2742 1943 0.400000 +2742 1956 0.400000 +2742 1966 0.400000 +2742 1970 0.400000 +2742 1993 0.400000 +2742 2053 0.400000 +2742 2206 0.400000 +2742 2247 0.400000 +2742 2272 0.400000 +2742 2370 0.400000 +2742 2453 0.400000 +2742 2505 0.400000 +2742 2513 0.400000 +2742 2545 0.400000 +2742 2656 0.400000 +2742 2724 0.400000 +2742 2820 0.400000 +2742 2860 0.400000 +2742 2885 0.400000 +2742 2906 0.400000 +2742 2947 0.400000 +2742 3049 0.400000 +2742 3054 0.400000 +2742 3081 0.400000 +2742 3108 0.400000 +2742 3109 0.400000 +2742 3150 0.400000 +2742 3170 0.400000 +2743 10 0.400000 +2743 101 0.400000 +2743 159 0.400000 +2743 197 0.400000 +2743 203 0.400000 +2743 327 0.400000 +2743 338 0.400000 +2743 350 0.400000 +2743 363 0.400000 +2743 471 0.400000 +2743 663 0.400000 +2743 681 0.400000 +2743 698 0.400000 +2743 711 0.400000 +2743 731 0.400000 +2743 783 0.400000 +2743 800 0.400000 +2743 811 0.400000 +2743 854 0.400000 +2743 1027 0.400000 +2743 1031 0.400000 +2743 1083 0.400000 +2743 1157 0.400000 +2743 1165 0.400000 +2743 1173 0.400000 +2743 1196 0.400000 +2743 1199 0.400000 +2743 1235 0.400000 +2743 1238 0.400000 +2743 1243 0.400000 +2743 1270 0.400000 +2743 1271 0.400000 +2743 1287 0.400000 +2743 1421 0.400000 +2743 1430 0.400000 +2743 1463 0.400000 +2743 1498 0.400000 +2743 1525 0.400000 +2743 1640 0.400000 +2743 1716 0.400000 +2743 1818 0.400000 +2743 1885 0.400000 +2743 1965 0.400000 +2743 1986 0.400000 +2743 2047 0.400000 +2743 2054 0.400000 +2743 2111 0.400000 +2743 2134 0.400000 +2743 2212 0.400000 +2743 2260 0.400000 +2743 2264 0.400000 +2743 2354 0.400000 +2743 2371 0.400000 +2743 2383 0.400000 +2743 2448 0.400000 +2743 2472 0.400000 +2743 2571 0.400000 +2743 2597 0.400000 +2743 2642 0.400000 +2743 2678 0.400000 +2743 2749 0.400000 +2743 2811 0.400000 +2743 2925 0.400000 +2743 2927 0.400000 +2743 2932 0.400000 +2743 2962 0.400000 +2743 3028 0.400000 +2743 3045 0.400000 +2743 3070 0.400000 +2743 3076 0.400000 +2744 3 0.400000 +2744 9 0.400000 +2744 95 0.400000 +2744 124 0.400000 +2744 177 0.400000 +2744 222 0.400000 +2744 243 0.400000 +2744 341 0.400000 +2744 358 0.400000 +2744 473 0.400000 +2744 504 0.400000 +2744 513 0.400000 +2744 566 0.400000 +2744 570 0.400000 +2744 703 0.400000 +2744 735 0.400000 +2744 1119 0.400000 +2744 1162 0.400000 +2744 1191 0.400000 +2744 1194 0.400000 +2744 1223 0.400000 +2744 1407 0.400000 +2744 1454 0.400000 +2744 1465 0.400000 +2744 1523 0.400000 +2744 1574 0.400000 +2744 1578 0.400000 +2744 1647 0.400000 +2744 1729 0.400000 +2744 1888 0.400000 +2744 1904 0.400000 +2744 1906 0.400000 +2744 1923 0.400000 +2744 2030 0.400000 +2744 2033 0.400000 +2744 2035 0.400000 +2744 2043 0.400000 +2744 2047 0.400000 +2744 2057 0.400000 +2744 2059 0.400000 +2744 2077 0.400000 +2744 2086 0.400000 +2744 2116 0.400000 +2744 2148 0.400000 +2744 2157 0.400000 +2744 2189 0.400000 +2744 2250 0.400000 +2744 2265 0.400000 +2744 2277 0.400000 +2744 2315 0.400000 +2744 2338 0.400000 +2744 2362 0.400000 +2744 2380 0.400000 +2744 2393 0.400000 +2744 2396 0.400000 +2744 2404 0.400000 +2744 2423 0.400000 +2744 2441 0.400000 +2744 2486 0.400000 +2744 2495 0.400000 +2744 2520 0.400000 +2744 2582 0.400000 +2744 2597 0.400000 +2744 2655 0.400000 +2744 2666 0.400000 +2744 2718 0.400000 +2744 2730 0.400000 +2744 2752 0.400000 +2744 2754 0.400000 +2744 2769 0.400000 +2744 2845 0.400000 +2744 2890 0.400000 +2744 2902 0.400000 +2744 3035 0.400000 +2744 3113 0.400000 +2744 3116 0.400000 +2744 3173 0.400000 +2744 3175 0.400000 +2745 25 0.400000 +2745 44 0.400000 +2745 225 0.400000 +2745 309 0.400000 +2745 310 0.400000 +2745 369 0.400000 +2745 506 0.400000 +2745 540 0.400000 +2745 572 0.400000 +2745 626 0.400000 +2745 670 0.400000 +2745 675 0.400000 +2745 711 0.400000 +2745 722 0.400000 +2745 825 0.400000 +2745 843 0.400000 +2745 921 0.400000 +2745 950 0.400000 +2745 1020 0.400000 +2745 1084 0.400000 +2745 1109 0.400000 +2745 1135 0.400000 +2745 1320 0.400000 +2745 1334 0.400000 +2745 1405 0.400000 +2745 1419 0.400000 +2745 1476 0.400000 +2745 1538 0.400000 +2745 1626 0.400000 +2745 1635 0.400000 +2745 1891 0.400000 +2745 1903 0.400000 +2745 1944 0.400000 +2745 1975 0.400000 +2745 2013 0.400000 +2745 2061 0.400000 +2745 2110 0.400000 +2745 2180 0.400000 +2745 2367 0.400000 +2745 2421 0.400000 +2745 2509 0.400000 +2745 2559 0.400000 +2745 2580 0.400000 +2745 2647 0.400000 +2745 2652 0.400000 +2745 2724 0.400000 +2745 2741 0.400000 +2745 2787 0.400000 +2745 2813 0.400000 +2745 2887 0.400000 +2745 3014 0.400000 +2745 3094 0.400000 +2746 42 0.400000 +2746 45 0.400000 +2746 55 0.400000 +2746 99 0.400000 +2746 143 0.400000 +2746 237 0.400000 +2746 340 0.400000 +2746 356 0.400000 +2746 394 0.400000 +2746 412 0.400000 +2746 447 0.400000 +2746 449 0.400000 +2746 459 0.400000 +2746 475 0.400000 +2746 503 0.400000 +2746 599 0.400000 +2746 622 0.400000 +2746 623 0.400000 +2746 698 0.400000 +2746 715 0.400000 +2746 749 0.400000 +2746 753 0.400000 +2746 789 0.400000 +2746 807 0.400000 +2746 831 0.400000 +2746 848 0.400000 +2746 906 0.400000 +2746 935 0.400000 +2746 991 0.400000 +2746 1113 0.400000 +2746 1148 0.400000 +2746 1193 0.400000 +2746 1269 0.400000 +2746 1300 0.400000 +2746 1314 0.400000 +2746 1421 0.400000 +2746 1454 0.400000 +2746 1632 0.400000 +2746 1636 0.400000 +2746 1655 0.400000 +2746 1687 0.400000 +2746 1703 0.400000 +2746 1724 0.400000 +2746 1730 0.400000 +2746 1747 0.400000 +2746 1848 0.400000 +2746 1852 0.400000 +2746 1867 0.400000 +2746 1910 0.400000 +2746 1938 0.400000 +2746 1949 0.400000 +2746 2022 0.400000 +2746 2117 0.400000 +2746 2327 0.400000 +2746 2509 0.400000 +2746 2550 0.400000 +2746 2634 0.400000 +2746 2665 0.400000 +2746 2685 0.400000 +2746 2753 0.400000 +2746 2794 0.400000 +2746 2839 0.400000 +2746 2855 0.400000 +2746 2861 0.400000 +2746 2873 0.400000 +2746 2886 0.400000 +2746 2922 0.400000 +2746 2941 0.400000 +2746 2952 0.400000 +2746 3002 0.400000 +2746 3029 0.400000 +2746 3152 0.400000 +2746 3186 0.400000 +2746 3188 0.400000 +2747 102 0.400000 +2747 291 0.400000 +2747 328 0.400000 +2747 452 0.400000 +2747 471 0.400000 +2747 561 0.400000 +2747 582 0.400000 +2747 644 0.400000 +2747 687 0.400000 +2747 726 0.400000 +2747 755 0.400000 +2747 776 0.400000 +2747 801 0.400000 +2747 833 0.400000 +2747 841 0.400000 +2747 845 0.400000 +2747 897 0.400000 +2747 925 0.400000 +2747 932 0.400000 +2747 949 0.400000 +2747 972 0.400000 +2747 973 0.400000 +2747 992 0.400000 +2747 1031 0.400000 +2747 1074 0.400000 +2747 1126 0.400000 +2747 1204 0.400000 +2747 1219 0.400000 +2747 1316 0.400000 +2747 1488 0.400000 +2747 1502 0.400000 +2747 1584 0.400000 +2747 1590 0.400000 +2747 1749 0.400000 +2747 1796 0.400000 +2747 1865 0.400000 +2747 1941 0.400000 +2747 1965 0.400000 +2747 2048 0.400000 +2747 2147 0.400000 +2747 2224 0.400000 +2747 2251 0.400000 +2747 2283 0.400000 +2747 2299 0.400000 +2747 2347 0.400000 +2747 2392 0.400000 +2747 2394 0.400000 +2747 2571 0.400000 +2747 2658 0.400000 +2747 2667 0.400000 +2747 2676 0.400000 +2747 2689 0.400000 +2747 2698 0.400000 +2747 2845 0.400000 +2747 2988 0.400000 +2747 2991 0.400000 +2747 3004 0.400000 +2747 3012 0.400000 +2747 3046 0.400000 +2747 3105 0.400000 +2747 3151 0.400000 +2747 3153 0.400000 +2748 30 0.400000 +2748 35 0.400000 +2748 56 0.400000 +2748 77 0.400000 +2748 210 0.400000 +2748 234 0.400000 +2748 287 0.400000 +2748 322 0.400000 +2748 353 0.400000 +2748 424 0.400000 +2748 425 0.400000 +2748 428 0.400000 +2748 494 0.400000 +2748 503 0.400000 +2748 573 0.400000 +2748 578 0.400000 +2748 616 0.400000 +2748 680 0.400000 +2748 770 0.400000 +2748 983 0.400000 +2748 986 0.400000 +2748 1002 0.400000 +2748 1321 0.400000 +2748 1324 0.400000 +2748 1394 0.400000 +2748 1436 0.400000 +2748 1457 0.400000 +2748 1544 0.400000 +2748 1599 0.400000 +2748 1658 0.400000 +2748 1685 0.400000 +2748 1784 0.400000 +2748 1857 0.400000 +2748 1864 0.400000 +2748 1965 0.400000 +2748 2036 0.400000 +2748 2038 0.400000 +2748 2150 0.400000 +2748 2187 0.400000 +2748 2209 0.400000 +2748 2262 0.400000 +2748 2297 0.400000 +2748 2305 0.400000 +2748 2323 0.400000 +2748 2340 0.400000 +2748 2415 0.400000 +2748 2561 0.400000 +2748 2588 0.400000 +2748 2600 0.400000 +2748 2616 0.400000 +2748 2741 0.400000 +2748 2824 0.400000 +2748 2908 0.400000 +2748 2958 0.400000 +2748 2976 0.400000 +2748 2995 0.400000 +2748 3005 0.400000 +2748 3120 0.400000 +2748 3197 0.400000 +2749 75 0.400000 +2749 145 0.400000 +2749 183 0.400000 +2749 230 0.400000 +2749 251 0.400000 +2749 262 0.400000 +2749 264 0.400000 +2749 333 0.400000 +2749 362 0.400000 +2749 370 0.400000 +2749 490 0.400000 +2749 503 0.400000 +2749 517 0.400000 +2749 543 0.400000 +2749 563 0.400000 +2749 628 0.400000 +2749 756 0.400000 +2749 861 0.400000 +2749 985 0.400000 +2749 1027 0.400000 +2749 1028 0.400000 +2749 1040 0.400000 +2749 1103 0.400000 +2749 1197 0.400000 +2749 1240 0.400000 +2749 1466 0.400000 +2749 1494 0.400000 +2749 1578 0.400000 +2749 1748 0.400000 +2749 1773 0.400000 +2749 1838 0.400000 +2749 1869 0.400000 +2749 1884 0.400000 +2749 1893 0.400000 +2749 1901 0.400000 +2749 1910 0.400000 +2749 2012 0.400000 +2749 2035 0.400000 +2749 2107 0.400000 +2749 2109 0.400000 +2749 2239 0.400000 +2749 2261 0.400000 +2749 2359 0.400000 +2749 2408 0.400000 +2749 2503 0.400000 +2749 2512 0.400000 +2749 2549 0.400000 +2749 2584 0.400000 +2749 2656 0.400000 +2749 2673 0.400000 +2749 2679 0.400000 +2749 2697 0.400000 +2749 2795 0.400000 +2749 2850 0.400000 +2749 2852 0.400000 +2749 2861 0.400000 +2749 3021 0.400000 +2749 3180 0.400000 +2750 103 0.400000 +2750 134 0.400000 +2750 166 0.400000 +2750 227 0.400000 +2750 254 0.400000 +2750 269 0.400000 +2750 313 0.400000 +2750 331 0.400000 +2750 340 0.400000 +2750 363 0.400000 +2750 451 0.400000 +2750 464 0.400000 +2750 470 0.400000 +2750 555 0.400000 +2750 716 0.400000 +2750 736 0.400000 +2750 791 0.400000 +2750 816 0.400000 +2750 826 0.400000 +2750 853 0.400000 +2750 907 0.400000 +2750 1058 0.400000 +2750 1066 0.400000 +2750 1080 0.400000 +2750 1227 0.400000 +2750 1400 0.400000 +2750 1607 0.400000 +2750 1645 0.400000 +2750 1747 0.400000 +2750 1980 0.400000 +2750 2010 0.400000 +2750 2042 0.400000 +2750 2044 0.400000 +2750 2057 0.400000 +2750 2134 0.400000 +2750 2153 0.400000 +2750 2156 0.400000 +2750 2164 0.400000 +2750 2212 0.400000 +2750 2276 0.400000 +2750 2284 0.400000 +2750 2305 0.400000 +2750 2359 0.400000 +2750 2399 0.400000 +2750 2429 0.400000 +2750 2439 0.400000 +2750 2475 0.400000 +2750 2515 0.400000 +2750 2577 0.400000 +2750 2582 0.400000 +2750 2786 0.400000 +2750 2880 0.400000 +2750 2997 0.400000 +2750 3001 0.400000 +2750 3023 0.400000 +2750 3050 0.400000 +2750 3064 0.400000 +2751 99 0.400000 +2751 180 0.400000 +2751 195 0.400000 +2751 211 0.400000 +2751 249 0.400000 +2751 307 0.400000 +2751 376 0.400000 +2751 397 0.400000 +2751 423 0.400000 +2751 425 0.400000 +2751 460 0.400000 +2751 469 0.400000 +2751 491 0.400000 +2751 493 0.400000 +2751 504 0.400000 +2751 567 0.400000 +2751 675 0.400000 +2751 925 0.400000 +2751 943 0.400000 +2751 1062 0.400000 +2751 1082 0.400000 +2751 1095 0.400000 +2751 1096 0.400000 +2751 1161 0.400000 +2751 1193 0.400000 +2751 1236 0.400000 +2751 1327 0.400000 +2751 1423 0.400000 +2751 1465 0.400000 +2751 1477 0.400000 +2751 1480 0.400000 +2751 1506 0.400000 +2751 1620 0.400000 +2751 1668 0.400000 +2751 1681 0.400000 +2751 1692 0.400000 +2751 1695 0.400000 +2751 1724 0.400000 +2751 1774 0.400000 +2751 1781 0.400000 +2751 1839 0.400000 +2751 1873 0.400000 +2751 2025 0.400000 +2751 2094 0.400000 +2751 2180 0.400000 +2751 2198 0.400000 +2751 2359 0.400000 +2751 2371 0.400000 +2751 2373 0.400000 +2751 2467 0.400000 +2751 2510 0.400000 +2751 2512 0.400000 +2751 2666 0.400000 +2751 2683 0.400000 +2751 2855 0.400000 +2751 2900 0.400000 +2751 2931 0.400000 +2751 2947 0.400000 +2751 3002 0.400000 +2751 3133 0.400000 +2752 51 0.400000 +2752 122 0.400000 +2752 206 0.400000 +2752 226 0.400000 +2752 251 0.400000 +2752 285 0.400000 +2752 340 0.400000 +2752 352 0.400000 +2752 373 0.400000 +2752 480 0.400000 +2752 482 0.400000 +2752 530 0.400000 +2752 562 0.400000 +2752 575 0.400000 +2752 584 0.400000 +2752 589 0.400000 +2752 608 0.400000 +2752 691 0.400000 +2752 744 0.400000 +2752 766 0.400000 +2752 832 0.400000 +2752 865 0.400000 +2752 880 0.400000 +2752 940 0.400000 +2752 973 0.400000 +2752 976 0.400000 +2752 1055 0.400000 +2752 1146 0.400000 +2752 1161 0.400000 +2752 1218 0.400000 +2752 1520 0.400000 +2752 1546 0.400000 +2752 1630 0.400000 +2752 1649 0.400000 +2752 1666 0.400000 +2752 1693 0.400000 +2752 1700 0.400000 +2752 1739 0.400000 +2752 1750 0.400000 +2752 1782 0.400000 +2752 1830 0.400000 +2752 1840 0.400000 +2752 2029 0.400000 +2752 2061 0.400000 +2752 2126 0.400000 +2752 2130 0.400000 +2752 2216 0.400000 +2752 2290 0.400000 +2752 2322 0.400000 +2752 2415 0.400000 +2752 2439 0.400000 +2752 2466 0.400000 +2752 2519 0.400000 +2752 2579 0.400000 +2752 2653 0.400000 +2752 2723 0.400000 +2752 2740 0.400000 +2752 2749 0.400000 +2752 2819 0.400000 +2752 2872 0.400000 +2752 2904 0.400000 +2752 2972 0.400000 +2752 2998 0.400000 +2752 3012 0.400000 +2752 3096 0.400000 +2752 3105 0.400000 +2753 89 0.400000 +2753 491 0.400000 +2753 594 0.400000 +2753 602 0.400000 +2753 626 0.400000 +2753 755 0.400000 +2753 779 0.400000 +2753 890 0.400000 +2753 894 0.400000 +2753 895 0.400000 +2753 909 0.400000 +2753 940 0.400000 +2753 1001 0.400000 +2753 1020 0.400000 +2753 1024 0.400000 +2753 1289 0.400000 +2753 1299 0.400000 +2753 1314 0.400000 +2753 1389 0.400000 +2753 1398 0.400000 +2753 1518 0.400000 +2753 1588 0.400000 +2753 1597 0.400000 +2753 1649 0.400000 +2753 1720 0.400000 +2753 1796 0.400000 +2753 1895 0.400000 +2753 1910 0.400000 +2753 1949 0.400000 +2753 2010 0.400000 +2753 2048 0.400000 +2753 2155 0.400000 +2753 2158 0.400000 +2753 2262 0.400000 +2753 2374 0.400000 +2753 2404 0.400000 +2753 2446 0.400000 +2753 2448 0.400000 +2753 2481 0.400000 +2753 2548 0.400000 +2753 2652 0.400000 +2753 2735 0.400000 +2753 2895 0.400000 +2753 2897 0.400000 +2753 2916 0.400000 +2753 2919 0.400000 +2753 2935 0.400000 +2753 3136 0.400000 +2754 10 0.400000 +2754 14 0.400000 +2754 153 0.400000 +2754 336 0.400000 +2754 415 0.400000 +2754 511 0.400000 +2754 515 0.400000 +2754 517 0.400000 +2754 532 0.400000 +2754 550 0.400000 +2754 566 0.400000 +2754 656 0.400000 +2754 661 0.400000 +2754 681 0.400000 +2754 827 0.400000 +2754 912 0.400000 +2754 934 0.400000 +2754 947 0.400000 +2754 973 0.400000 +2754 1056 0.400000 +2754 1083 0.400000 +2754 1085 0.400000 +2754 1235 0.400000 +2754 1273 0.400000 +2754 1315 0.400000 +2754 1370 0.400000 +2754 1448 0.400000 +2754 1486 0.400000 +2754 1607 0.400000 +2754 1614 0.400000 +2754 1697 0.400000 +2754 1771 0.400000 +2754 1835 0.400000 +2754 1899 0.400000 +2754 1903 0.400000 +2754 1912 0.400000 +2754 1992 0.400000 +2754 2086 0.400000 +2754 2143 0.400000 +2754 2309 0.400000 +2754 2327 0.400000 +2754 2363 0.400000 +2754 2470 0.400000 +2754 2477 0.400000 +2754 2480 0.400000 +2754 2570 0.400000 +2754 2703 0.400000 +2754 2783 0.400000 +2754 2886 0.400000 +2754 2905 0.400000 +2754 2926 0.400000 +2754 3018 0.400000 +2754 3085 0.400000 +2755 24 0.400000 +2755 80 0.400000 +2755 136 0.400000 +2755 173 0.400000 +2755 184 0.400000 +2755 221 0.400000 +2755 324 0.400000 +2755 410 0.400000 +2755 430 0.400000 +2755 472 0.400000 +2755 653 0.400000 +2755 745 0.400000 +2755 808 0.400000 +2755 853 0.400000 +2755 898 0.400000 +2755 1075 0.400000 +2755 1113 0.400000 +2755 1192 0.400000 +2755 1313 0.400000 +2755 1319 0.400000 +2755 1331 0.400000 +2755 1387 0.400000 +2755 1404 0.400000 +2755 1438 0.400000 +2755 1442 0.400000 +2755 1446 0.400000 +2755 1525 0.400000 +2755 1541 0.400000 +2755 1574 0.400000 +2755 1614 0.400000 +2755 1632 0.400000 +2755 1636 0.400000 +2755 1642 0.400000 +2755 1754 0.400000 +2755 1769 0.400000 +2755 1778 0.400000 +2755 1834 0.400000 +2755 1848 0.400000 +2755 2014 0.400000 +2755 2043 0.400000 +2755 2078 0.400000 +2755 2172 0.400000 +2755 2186 0.400000 +2755 2198 0.400000 +2755 2334 0.400000 +2755 2345 0.400000 +2755 2356 0.400000 +2755 2434 0.400000 +2755 2438 0.400000 +2755 2506 0.400000 +2755 2515 0.400000 +2755 2518 0.400000 +2755 2532 0.400000 +2755 2594 0.400000 +2755 2610 0.400000 +2755 2634 0.400000 +2755 2696 0.400000 +2755 2838 0.400000 +2755 2886 0.400000 +2755 2915 0.400000 +2755 2920 0.400000 +2755 2925 0.400000 +2755 2926 0.400000 +2755 2938 0.400000 +2755 3000 0.400000 +2755 3015 0.400000 +2755 3060 0.400000 +2755 3143 0.400000 +2756 66 0.400000 +2756 92 0.400000 +2756 98 0.400000 +2756 180 0.400000 +2756 322 0.400000 +2756 324 0.400000 +2756 373 0.400000 +2756 458 0.400000 +2756 495 0.400000 +2756 627 0.400000 +2756 679 0.400000 +2756 690 0.400000 +2756 694 0.400000 +2756 709 0.400000 +2756 755 0.400000 +2756 757 0.400000 +2756 770 0.400000 +2756 899 0.400000 +2756 916 0.400000 +2756 920 0.400000 +2756 1001 0.400000 +2756 1079 0.400000 +2756 1115 0.400000 +2756 1218 0.400000 +2756 1219 0.400000 +2756 1274 0.400000 +2756 1419 0.400000 +2756 1501 0.400000 +2756 1513 0.400000 +2756 1527 0.400000 +2756 1530 0.400000 +2756 1531 0.400000 +2756 1532 0.400000 +2756 1554 0.400000 +2756 1626 0.400000 +2756 1629 0.400000 +2756 1668 0.400000 +2756 1678 0.400000 +2756 1748 0.400000 +2756 1758 0.400000 +2756 1810 0.400000 +2756 1832 0.400000 +2756 1858 0.400000 +2756 1879 0.400000 +2756 1884 0.400000 +2756 1911 0.400000 +2756 1925 0.400000 +2756 1991 0.400000 +2756 2081 0.400000 +2756 2203 0.400000 +2756 2231 0.400000 +2756 2254 0.400000 +2756 2301 0.400000 +2756 2334 0.400000 +2756 2394 0.400000 +2756 2444 0.400000 +2756 2450 0.400000 +2756 2548 0.400000 +2756 2596 0.400000 +2756 2619 0.400000 +2756 2668 0.400000 +2756 2670 0.400000 +2756 2694 0.400000 +2756 2743 0.400000 +2756 2783 0.400000 +2756 2843 0.400000 +2756 2875 0.400000 +2756 2878 0.400000 +2756 2912 0.400000 +2756 2950 0.400000 +2756 2955 0.400000 +2756 3057 0.400000 +2756 3107 0.400000 +2756 3108 0.400000 +2756 3115 0.400000 +2756 3129 0.400000 +2756 3131 0.400000 +2756 3159 0.400000 +2757 64 0.400000 +2757 65 0.400000 +2757 92 0.400000 +2757 155 0.400000 +2757 193 0.400000 +2757 216 0.400000 +2757 234 0.400000 +2757 243 0.400000 +2757 380 0.400000 +2757 431 0.400000 +2757 447 0.400000 +2757 474 0.400000 +2757 533 0.400000 +2757 561 0.400000 +2757 598 0.400000 +2757 631 0.400000 +2757 712 0.400000 +2757 768 0.400000 +2757 781 0.400000 +2757 924 0.400000 +2757 942 0.400000 +2757 966 0.400000 +2757 1006 0.400000 +2757 1153 0.400000 +2757 1156 0.400000 +2757 1225 0.400000 +2757 1236 0.400000 +2757 1312 0.400000 +2757 1334 0.400000 +2757 1609 0.400000 +2757 1647 0.400000 +2757 1656 0.400000 +2757 1720 0.400000 +2757 1730 0.400000 +2757 1756 0.400000 +2757 1770 0.400000 +2757 1792 0.400000 +2757 1874 0.400000 +2757 1883 0.400000 +2757 1997 0.400000 +2757 2044 0.400000 +2757 2109 0.400000 +2757 2188 0.400000 +2757 2262 0.400000 +2757 2281 0.400000 +2757 2307 0.400000 +2757 2387 0.400000 +2757 2428 0.400000 +2757 2472 0.400000 +2757 2500 0.400000 +2757 2505 0.400000 +2757 2530 0.400000 +2757 2535 0.400000 +2757 2542 0.400000 +2757 2596 0.400000 +2757 2642 0.400000 +2757 2645 0.400000 +2757 2652 0.400000 +2757 2686 0.400000 +2757 2771 0.400000 +2757 2784 0.400000 +2757 2831 0.400000 +2757 2860 0.400000 +2757 2861 0.400000 +2757 2916 0.400000 +2757 2942 0.400000 +2757 3060 0.400000 +2757 3120 0.400000 +2758 28 0.400000 +2758 142 0.400000 +2758 202 0.400000 +2758 392 0.400000 +2758 410 0.400000 +2758 465 0.400000 +2758 483 0.400000 +2758 487 0.400000 +2758 567 0.400000 +2758 594 0.400000 +2758 605 0.400000 +2758 837 0.400000 +2758 855 0.400000 +2758 913 0.400000 +2758 1112 0.400000 +2758 1192 0.400000 +2758 1234 0.400000 +2758 1255 0.400000 +2758 1268 0.400000 +2758 1371 0.400000 +2758 1452 0.400000 +2758 1560 0.400000 +2758 1577 0.400000 +2758 1710 0.400000 +2758 1725 0.400000 +2758 1752 0.400000 +2758 1795 0.400000 +2758 1828 0.400000 +2758 1879 0.400000 +2758 1901 0.400000 +2758 1954 0.400000 +2758 1982 0.400000 +2758 1988 0.400000 +2758 2061 0.400000 +2758 2108 0.400000 +2758 2137 0.400000 +2758 2217 0.400000 +2758 2222 0.400000 +2758 2259 0.400000 +2758 2275 0.400000 +2758 2315 0.400000 +2758 2369 0.400000 +2758 2484 0.400000 +2758 2491 0.400000 +2758 2592 0.400000 +2758 2628 0.400000 +2758 2632 0.400000 +2758 2669 0.400000 +2758 2708 0.400000 +2758 2776 0.400000 +2758 2825 0.400000 +2758 2866 0.400000 +2758 2953 0.400000 +2758 2954 0.400000 +2758 2982 0.400000 +2758 3075 0.400000 +2758 3134 0.400000 +2758 3142 0.400000 +2758 3143 0.400000 +2758 3148 0.400000 +2758 3178 0.400000 +2759 176 0.400000 +2759 181 0.400000 +2759 199 0.400000 +2759 211 0.400000 +2759 350 0.400000 +2759 402 0.400000 +2759 424 0.400000 +2759 427 0.400000 +2759 497 0.400000 +2759 511 0.400000 +2759 658 0.400000 +2759 723 0.400000 +2759 774 0.400000 +2759 793 0.400000 +2759 805 0.400000 +2759 1044 0.400000 +2759 1051 0.400000 +2759 1070 0.400000 +2759 1074 0.400000 +2759 1081 0.400000 +2759 1112 0.400000 +2759 1164 0.400000 +2759 1165 0.400000 +2759 1207 0.400000 +2759 1338 0.400000 +2759 1401 0.400000 +2759 1544 0.400000 +2759 1582 0.400000 +2759 1835 0.400000 +2759 1845 0.400000 +2759 1916 0.400000 +2759 1949 0.400000 +2759 2011 0.400000 +2759 2112 0.400000 +2759 2115 0.400000 +2759 2224 0.400000 +2759 2247 0.400000 +2759 2259 0.400000 +2759 2304 0.400000 +2759 2314 0.400000 +2759 2321 0.400000 +2759 2347 0.400000 +2759 2440 0.400000 +2759 2457 0.400000 +2759 2459 0.400000 +2759 2492 0.400000 +2759 2493 0.400000 +2759 2504 0.400000 +2759 2510 0.400000 +2759 2520 0.400000 +2759 2572 0.400000 +2759 2624 0.400000 +2759 2879 0.400000 +2759 2940 0.400000 +2759 2983 0.400000 +2759 2995 0.400000 +2759 3015 0.400000 +2759 3040 0.400000 +2759 3133 0.400000 +2759 3185 0.400000 +2760 5 0.400000 +2760 24 0.400000 +2760 33 0.400000 +2760 51 0.400000 +2760 192 0.400000 +2760 228 0.400000 +2760 273 0.400000 +2760 299 0.400000 +2760 374 0.400000 +2760 410 0.400000 +2760 433 0.400000 +2760 439 0.400000 +2760 446 0.400000 +2760 463 0.400000 +2760 473 0.400000 +2760 483 0.400000 +2760 576 0.400000 +2760 609 0.400000 +2760 678 0.400000 +2760 681 0.400000 +2760 684 0.400000 +2760 761 0.400000 +2760 924 0.400000 +2760 963 0.400000 +2760 1025 0.400000 +2760 1064 0.400000 +2760 1131 0.400000 +2760 1167 0.400000 +2760 1219 0.400000 +2760 1348 0.400000 +2760 1397 0.400000 +2760 1403 0.400000 +2760 1425 0.400000 +2760 1430 0.400000 +2760 1466 0.400000 +2760 1508 0.400000 +2760 1560 0.400000 +2760 1606 0.400000 +2760 1623 0.400000 +2760 1635 0.400000 +2760 1658 0.400000 +2760 1705 0.400000 +2760 1759 0.400000 +2760 1792 0.400000 +2760 1862 0.400000 +2760 1879 0.400000 +2760 1984 0.400000 +2760 2003 0.400000 +2760 2020 0.400000 +2760 2104 0.400000 +2760 2157 0.400000 +2760 2212 0.400000 +2760 2338 0.400000 +2760 2364 0.400000 +2760 2413 0.400000 +2760 2479 0.400000 +2760 2486 0.400000 +2760 2565 0.400000 +2760 2592 0.400000 +2760 2612 0.400000 +2760 2788 0.400000 +2760 2830 0.400000 +2760 2880 0.400000 +2760 2913 0.400000 +2760 2951 0.400000 +2760 2958 0.400000 +2760 2983 0.400000 +2760 3070 0.400000 +2760 3076 0.400000 +2760 3117 0.400000 +2761 15 0.400000 +2761 17 0.400000 +2761 42 0.400000 +2761 48 0.400000 +2761 143 0.400000 +2761 179 0.400000 +2761 234 0.400000 +2761 334 0.400000 +2761 423 0.400000 +2761 447 0.400000 +2761 533 0.400000 +2761 574 0.400000 +2761 577 0.400000 +2761 617 0.400000 +2761 705 0.400000 +2761 724 0.400000 +2761 796 0.400000 +2761 810 0.400000 +2761 847 0.400000 +2761 856 0.400000 +2761 885 0.400000 +2761 960 0.400000 +2761 1001 0.400000 +2761 1195 0.400000 +2761 1240 0.400000 +2761 1253 0.400000 +2761 1302 0.400000 +2761 1335 0.400000 +2761 1340 0.400000 +2761 1344 0.400000 +2761 1369 0.400000 +2761 1374 0.400000 +2761 1377 0.400000 +2761 1437 0.400000 +2761 1457 0.400000 +2761 1577 0.400000 +2761 1613 0.400000 +2761 1636 0.400000 +2761 1703 0.400000 +2761 1756 0.400000 +2761 1780 0.400000 +2761 1804 0.400000 +2761 1869 0.400000 +2761 1920 0.400000 +2761 1953 0.400000 +2761 1975 0.400000 +2761 2052 0.400000 +2761 2094 0.400000 +2761 2143 0.400000 +2761 2199 0.400000 +2761 2327 0.400000 +2761 2350 0.400000 +2761 2374 0.400000 +2761 2416 0.400000 +2761 2491 0.400000 +2761 2515 0.400000 +2761 2531 0.400000 +2761 2542 0.400000 +2761 2569 0.400000 +2761 2584 0.400000 +2761 2625 0.400000 +2761 2636 0.400000 +2761 2688 0.400000 +2761 2694 0.400000 +2761 3074 0.400000 +2761 3108 0.400000 +2761 3133 0.400000 +2761 3185 0.400000 +2762 22 0.400000 +2762 83 0.400000 +2762 142 0.400000 +2762 250 0.400000 +2762 271 0.400000 +2762 335 0.400000 +2762 357 0.400000 +2762 431 0.400000 +2762 438 0.400000 +2762 586 0.400000 +2762 588 0.400000 +2762 641 0.400000 +2762 777 0.400000 +2762 846 0.400000 +2762 863 0.400000 +2762 947 0.400000 +2762 997 0.400000 +2762 1008 0.400000 +2762 1069 0.400000 +2762 1073 0.400000 +2762 1115 0.400000 +2762 1274 0.400000 +2762 1328 0.400000 +2762 1343 0.400000 +2762 1370 0.400000 +2762 1407 0.400000 +2762 1410 0.400000 +2762 1428 0.400000 +2762 1457 0.400000 +2762 1473 0.400000 +2762 1478 0.400000 +2762 1553 0.400000 +2762 1556 0.400000 +2762 1558 0.400000 +2762 1580 0.400000 +2762 1582 0.400000 +2762 1691 0.400000 +2762 1693 0.400000 +2762 1739 0.400000 +2762 1752 0.400000 +2762 1794 0.400000 +2762 1810 0.400000 +2762 1831 0.400000 +2762 1916 0.400000 +2762 1934 0.400000 +2762 2045 0.400000 +2762 2079 0.400000 +2762 2098 0.400000 +2762 2114 0.400000 +2762 2131 0.400000 +2762 2140 0.400000 +2762 2217 0.400000 +2762 2218 0.400000 +2762 2236 0.400000 +2762 2385 0.400000 +2762 2399 0.400000 +2762 2416 0.400000 +2762 2442 0.400000 +2762 2522 0.400000 +2762 2545 0.400000 +2762 2727 0.400000 +2762 2730 0.400000 +2762 2736 0.400000 +2762 2748 0.400000 +2762 2913 0.400000 +2762 3002 0.400000 +2762 3039 0.400000 +2762 3064 0.400000 +2762 3144 0.400000 +2763 68 0.400000 +2763 444 0.400000 +2763 516 0.400000 +2763 554 0.400000 +2763 556 0.400000 +2763 557 0.400000 +2763 571 0.400000 +2763 610 0.400000 +2763 633 0.400000 +2763 750 0.400000 +2763 794 0.400000 +2763 829 0.400000 +2763 892 0.400000 +2763 950 0.400000 +2763 1013 0.400000 +2763 1015 0.400000 +2763 1065 0.400000 +2763 1093 0.400000 +2763 1143 0.400000 +2763 1189 0.400000 +2763 1214 0.400000 +2763 1223 0.400000 +2763 1291 0.400000 +2763 1315 0.400000 +2763 1334 0.400000 +2763 1358 0.400000 +2763 1402 0.400000 +2763 1464 0.400000 +2763 1506 0.400000 +2763 1559 0.400000 +2763 1676 0.400000 +2763 1772 0.400000 +2763 1809 0.400000 +2763 1824 0.400000 +2763 1913 0.400000 +2763 1934 0.400000 +2763 1965 0.400000 +2763 2022 0.400000 +2763 2062 0.400000 +2763 2106 0.400000 +2763 2169 0.400000 +2763 2218 0.400000 +2763 2239 0.400000 +2763 2318 0.400000 +2763 2338 0.400000 +2763 2372 0.400000 +2763 2377 0.400000 +2763 2405 0.400000 +2763 2407 0.400000 +2763 2422 0.400000 +2763 2522 0.400000 +2763 2577 0.400000 +2763 2593 0.400000 +2763 2607 0.400000 +2763 2612 0.400000 +2763 2623 0.400000 +2763 2662 0.400000 +2763 2675 0.400000 +2763 2712 0.400000 +2763 2764 0.400000 +2763 2817 0.400000 +2763 2836 0.400000 +2763 2856 0.400000 +2763 2882 0.400000 +2763 3104 0.400000 +2763 3178 0.400000 +2764 47 0.400000 +2764 130 0.400000 +2764 209 0.400000 +2764 214 0.400000 +2764 286 0.400000 +2764 289 0.400000 +2764 323 0.400000 +2764 380 0.400000 +2764 467 0.400000 +2764 476 0.400000 +2764 508 0.400000 +2764 611 0.400000 +2764 640 0.400000 +2764 693 0.400000 +2764 770 0.400000 +2764 780 0.400000 +2764 802 0.400000 +2764 812 0.400000 +2764 869 0.400000 +2764 879 0.400000 +2764 894 0.400000 +2764 996 0.400000 +2764 1142 0.400000 +2764 1264 0.400000 +2764 1308 0.400000 +2764 1327 0.400000 +2764 1359 0.400000 +2764 1378 0.400000 +2764 1391 0.400000 +2764 1463 0.400000 +2764 1466 0.400000 +2764 1468 0.400000 +2764 1492 0.400000 +2764 1555 0.400000 +2764 1613 0.400000 +2764 1622 0.400000 +2764 1693 0.400000 +2764 1834 0.400000 +2764 1839 0.400000 +2764 1919 0.400000 +2764 1962 0.400000 +2764 2060 0.400000 +2764 2113 0.400000 +2764 2164 0.400000 +2764 2287 0.400000 +2764 2394 0.400000 +2764 2398 0.400000 +2764 2462 0.400000 +2764 2552 0.400000 +2764 2577 0.400000 +2764 2583 0.400000 +2764 2617 0.400000 +2764 2690 0.400000 +2764 2738 0.400000 +2764 2758 0.400000 +2764 2774 0.400000 +2764 2812 0.400000 +2764 2867 0.400000 +2764 2892 0.400000 +2764 2910 0.400000 +2764 2960 0.400000 +2764 2985 0.400000 +2764 3019 0.400000 +2764 3132 0.400000 +2764 3146 0.400000 +2764 3163 0.400000 +2764 3172 0.400000 +2765 23 0.400000 +2765 176 0.400000 +2765 219 0.400000 +2765 238 0.400000 +2765 327 0.400000 +2765 364 0.400000 +2765 457 0.400000 +2765 459 0.400000 +2765 523 0.400000 +2765 567 0.400000 +2765 635 0.400000 +2765 711 0.400000 +2765 719 0.400000 +2765 745 0.400000 +2765 760 0.400000 +2765 929 0.400000 +2765 948 0.400000 +2765 1127 0.400000 +2765 1194 0.400000 +2765 1227 0.400000 +2765 1258 0.400000 +2765 1277 0.400000 +2765 1324 0.400000 +2765 1339 0.400000 +2765 1368 0.400000 +2765 1377 0.400000 +2765 1390 0.400000 +2765 1409 0.400000 +2765 1415 0.400000 +2765 1429 0.400000 +2765 1434 0.400000 +2765 1461 0.400000 +2765 1473 0.400000 +2765 1499 0.400000 +2765 1502 0.400000 +2765 1514 0.400000 +2765 1517 0.400000 +2765 1579 0.400000 +2765 1620 0.400000 +2765 1622 0.400000 +2765 1635 0.400000 +2765 1719 0.400000 +2765 1725 0.400000 +2765 1763 0.400000 +2765 1882 0.400000 +2765 1895 0.400000 +2765 1926 0.400000 +2765 1940 0.400000 +2765 1984 0.400000 +2765 2038 0.400000 +2765 2070 0.400000 +2765 2143 0.400000 +2765 2177 0.400000 +2765 2220 0.400000 +2765 2227 0.400000 +2765 2281 0.400000 +2765 2284 0.400000 +2765 2288 0.400000 +2765 2305 0.400000 +2765 2407 0.400000 +2765 2508 0.400000 +2765 2551 0.400000 +2765 2583 0.400000 +2765 2723 0.400000 +2765 2801 0.400000 +2765 2862 0.400000 +2765 2869 0.400000 +2765 2949 0.400000 +2765 3016 0.400000 +2765 3070 0.400000 +2765 3132 0.400000 +2765 3152 0.400000 +2766 27 0.400000 +2766 75 0.400000 +2766 127 0.400000 +2766 136 0.400000 +2766 159 0.400000 +2766 239 0.400000 +2766 268 0.400000 +2766 309 0.400000 +2766 352 0.400000 +2766 358 0.400000 +2766 405 0.400000 +2766 425 0.400000 +2766 427 0.400000 +2766 448 0.400000 +2766 485 0.400000 +2766 516 0.400000 +2766 640 0.400000 +2766 689 0.400000 +2766 821 0.400000 +2766 849 0.400000 +2766 942 0.400000 +2766 964 0.400000 +2766 1010 0.400000 +2766 1076 0.400000 +2766 1103 0.400000 +2766 1129 0.400000 +2766 1280 0.400000 +2766 1322 0.400000 +2766 1323 0.400000 +2766 1452 0.400000 +2766 1467 0.400000 +2766 1499 0.400000 +2766 1513 0.400000 +2766 1614 0.400000 +2766 1859 0.400000 +2766 1872 0.400000 +2766 1929 0.400000 +2766 1942 0.400000 +2766 1969 0.400000 +2766 2016 0.400000 +2766 2041 0.400000 +2766 2043 0.400000 +2766 2111 0.400000 +2766 2218 0.400000 +2766 2297 0.400000 +2766 2323 0.400000 +2766 2416 0.400000 +2766 2471 0.400000 +2766 2487 0.400000 +2766 2515 0.400000 +2766 2518 0.400000 +2766 2570 0.400000 +2766 2660 0.400000 +2766 2708 0.400000 +2766 2743 0.400000 +2766 2780 0.400000 +2766 2789 0.400000 +2766 2800 0.400000 +2766 2847 0.400000 +2766 2866 0.400000 +2766 2867 0.400000 +2766 2977 0.400000 +2766 3161 0.400000 +2767 72 0.400000 +2767 129 0.400000 +2767 152 0.400000 +2767 207 0.400000 +2767 223 0.400000 +2767 248 0.400000 +2767 272 0.400000 +2767 285 0.400000 +2767 333 0.400000 +2767 361 0.400000 +2767 384 0.400000 +2767 446 0.400000 +2767 558 0.400000 +2767 582 0.400000 +2767 653 0.400000 +2767 665 0.400000 +2767 726 0.400000 +2767 750 0.400000 +2767 764 0.400000 +2767 776 0.400000 +2767 844 0.400000 +2767 851 0.400000 +2767 921 0.400000 +2767 965 0.400000 +2767 975 0.400000 +2767 1008 0.400000 +2767 1022 0.400000 +2767 1087 0.400000 +2767 1091 0.400000 +2767 1167 0.400000 +2767 1184 0.400000 +2767 1223 0.400000 +2767 1319 0.400000 +2767 1359 0.400000 +2767 1524 0.400000 +2767 1591 0.400000 +2767 1594 0.400000 +2767 1597 0.400000 +2767 1771 0.400000 +2767 1810 0.400000 +2767 1828 0.400000 +2767 1849 0.400000 +2767 1855 0.400000 +2767 1922 0.400000 +2767 1975 0.400000 +2767 1997 0.400000 +2767 2016 0.400000 +2767 2129 0.400000 +2767 2173 0.400000 +2767 2198 0.400000 +2767 2200 0.400000 +2767 2204 0.400000 +2767 2314 0.400000 +2767 2354 0.400000 +2767 2397 0.400000 +2767 2406 0.400000 +2767 2497 0.400000 +2767 2601 0.400000 +2767 2611 0.400000 +2767 2725 0.400000 +2767 2836 0.400000 +2767 2846 0.400000 +2767 2871 0.400000 +2767 2878 0.400000 +2767 2940 0.400000 +2767 3006 0.400000 +2767 3081 0.400000 +2768 74 0.400000 +2768 106 0.400000 +2768 127 0.400000 +2768 139 0.400000 +2768 228 0.400000 +2768 268 0.400000 +2768 283 0.400000 +2768 407 0.400000 +2768 419 0.400000 +2768 431 0.400000 +2768 435 0.400000 +2768 446 0.400000 +2768 511 0.400000 +2768 605 0.400000 +2768 723 0.400000 +2768 743 0.400000 +2768 762 0.400000 +2768 764 0.400000 +2768 783 0.400000 +2768 844 0.400000 +2768 852 0.400000 +2768 859 0.400000 +2768 904 0.400000 +2768 919 0.400000 +2768 922 0.400000 +2768 925 0.400000 +2768 935 0.400000 +2768 1001 0.400000 +2768 1092 0.400000 +2768 1112 0.400000 +2768 1171 0.400000 +2768 1248 0.400000 +2768 1274 0.400000 +2768 1301 0.400000 +2768 1345 0.400000 +2768 1366 0.400000 +2768 1422 0.400000 +2768 1425 0.400000 +2768 1573 0.400000 +2768 1654 0.400000 +2768 1727 0.400000 +2768 1865 0.400000 +2768 1871 0.400000 +2768 1883 0.400000 +2768 1922 0.400000 +2768 2043 0.400000 +2768 2061 0.400000 +2768 2138 0.400000 +2768 2215 0.400000 +2768 2238 0.400000 +2768 2255 0.400000 +2768 2277 0.400000 +2768 2335 0.400000 +2768 2384 0.400000 +2768 2399 0.400000 +2768 2418 0.400000 +2768 2419 0.400000 +2768 2430 0.400000 +2768 2499 0.400000 +2768 2572 0.400000 +2768 2593 0.400000 +2768 2645 0.400000 +2768 2717 0.400000 +2768 2737 0.400000 +2768 2739 0.400000 +2768 2764 0.400000 +2768 2767 0.400000 +2768 2796 0.400000 +2768 2815 0.400000 +2768 2832 0.400000 +2768 2868 0.400000 +2768 2925 0.400000 +2768 2948 0.400000 +2768 3034 0.400000 +2768 3036 0.400000 +2768 3043 0.400000 +2768 3049 0.400000 +2768 3084 0.400000 +2768 3122 0.400000 +2769 65 0.400000 +2769 119 0.400000 +2769 184 0.400000 +2769 194 0.400000 +2769 198 0.400000 +2769 207 0.400000 +2769 463 0.400000 +2769 541 0.400000 +2769 557 0.400000 +2769 616 0.400000 +2769 624 0.400000 +2769 682 0.400000 +2769 854 0.400000 +2769 1004 0.400000 +2769 1194 0.400000 +2769 1293 0.400000 +2769 1314 0.400000 +2769 1325 0.400000 +2769 1513 0.400000 +2769 1537 0.400000 +2769 1635 0.400000 +2769 1640 0.400000 +2769 1717 0.400000 +2769 1870 0.400000 +2769 2017 0.400000 +2769 2063 0.400000 +2769 2111 0.400000 +2769 2112 0.400000 +2769 2158 0.400000 +2769 2199 0.400000 +2769 2200 0.400000 +2769 2223 0.400000 +2769 2238 0.400000 +2769 2262 0.400000 +2769 2349 0.400000 +2769 2411 0.400000 +2769 2432 0.400000 +2769 2466 0.400000 +2769 2506 0.400000 +2769 2520 0.400000 +2769 2542 0.400000 +2769 2653 0.400000 +2769 2687 0.400000 +2769 2726 0.400000 +2769 2834 0.400000 +2769 2860 0.400000 +2769 2885 0.400000 +2769 2962 0.400000 +2769 2986 0.400000 +2770 109 0.400000 +2770 117 0.400000 +2770 215 0.400000 +2770 248 0.400000 +2770 323 0.400000 +2770 390 0.400000 +2770 449 0.400000 +2770 499 0.400000 +2770 520 0.400000 +2770 533 0.400000 +2770 753 0.400000 +2770 894 0.400000 +2770 916 0.400000 +2770 972 0.400000 +2770 979 0.400000 +2770 990 0.400000 +2770 1083 0.400000 +2770 1128 0.400000 +2770 1272 0.400000 +2770 1286 0.400000 +2770 1300 0.400000 +2770 1331 0.400000 +2770 1351 0.400000 +2770 1380 0.400000 +2770 1442 0.400000 +2770 1533 0.400000 +2770 1615 0.400000 +2770 1632 0.400000 +2770 1709 0.400000 +2770 1716 0.400000 +2770 1743 0.400000 +2770 1759 0.400000 +2770 1778 0.400000 +2770 1784 0.400000 +2770 1880 0.400000 +2770 1929 0.400000 +2770 1940 0.400000 +2770 2016 0.400000 +2770 2097 0.400000 +2770 2141 0.400000 +2770 2143 0.400000 +2770 2174 0.400000 +2770 2227 0.400000 +2770 2241 0.400000 +2770 2353 0.400000 +2770 2471 0.400000 +2770 2601 0.400000 +2770 2603 0.400000 +2770 2623 0.400000 +2770 2644 0.400000 +2770 2646 0.400000 +2770 2649 0.400000 +2770 2745 0.400000 +2770 2890 0.400000 +2770 2897 0.400000 +2770 2938 0.400000 +2770 2966 0.400000 +2770 2979 0.400000 +2770 3114 0.400000 +2770 3115 0.400000 +2770 3132 0.400000 +2770 3136 0.400000 +2770 3193 0.400000 +2771 11 0.400000 +2771 38 0.400000 +2771 145 0.400000 +2771 157 0.400000 +2771 160 0.400000 +2771 252 0.400000 +2771 253 0.400000 +2771 467 0.400000 +2771 478 0.400000 +2771 524 0.400000 +2771 533 0.400000 +2771 553 0.400000 +2771 592 0.400000 +2771 597 0.400000 +2771 630 0.400000 +2771 816 0.400000 +2771 854 0.400000 +2771 863 0.400000 +2771 866 0.400000 +2771 1049 0.400000 +2771 1075 0.400000 +2771 1167 0.400000 +2771 1272 0.400000 +2771 1371 0.400000 +2771 1417 0.400000 +2771 1430 0.400000 +2771 1518 0.400000 +2771 1551 0.400000 +2771 1743 0.400000 +2771 1753 0.400000 +2771 1849 0.400000 +2771 1862 0.400000 +2771 1882 0.400000 +2771 1885 0.400000 +2771 1962 0.400000 +2771 1999 0.400000 +2771 2034 0.400000 +2771 2044 0.400000 +2771 2052 0.400000 +2771 2086 0.400000 +2771 2111 0.400000 +2771 2165 0.400000 +2771 2216 0.400000 +2771 2263 0.400000 +2771 2299 0.400000 +2771 2302 0.400000 +2771 2389 0.400000 +2771 2403 0.400000 +2771 2412 0.400000 +2771 2426 0.400000 +2771 2455 0.400000 +2771 2465 0.400000 +2771 2467 0.400000 +2771 2623 0.400000 +2771 2653 0.400000 +2771 2716 0.400000 +2771 2807 0.400000 +2771 2871 0.400000 +2771 2883 0.400000 +2771 2905 0.400000 +2771 2906 0.400000 +2771 2946 0.400000 +2771 2961 0.400000 +2771 2970 0.400000 +2771 2992 0.400000 +2771 2999 0.400000 +2771 3028 0.400000 +2771 3047 0.400000 +2771 3056 0.400000 +2771 3137 0.400000 +2771 3164 0.400000 +2772 12 0.400000 +2772 18 0.400000 +2772 104 0.400000 +2772 157 0.400000 +2772 245 0.400000 +2772 277 0.400000 +2772 373 0.400000 +2772 483 0.400000 +2772 506 0.400000 +2772 512 0.400000 +2772 522 0.400000 +2772 663 0.400000 +2772 799 0.400000 +2772 890 0.400000 +2772 1012 0.400000 +2772 1018 0.400000 +2772 1119 0.400000 +2772 1191 0.400000 +2772 1341 0.400000 +2772 1379 0.400000 +2772 1385 0.400000 +2772 1390 0.400000 +2772 1466 0.400000 +2772 1630 0.400000 +2772 1678 0.400000 +2772 1722 0.400000 +2772 1876 0.400000 +2772 1924 0.400000 +2772 2030 0.400000 +2772 2103 0.400000 +2772 2134 0.400000 +2772 2249 0.400000 +2772 2311 0.400000 +2772 2347 0.400000 +2772 2351 0.400000 +2772 2458 0.400000 +2772 2496 0.400000 +2772 2524 0.400000 +2772 2562 0.400000 +2772 2714 0.400000 +2772 2720 0.400000 +2772 2730 0.400000 +2772 2734 0.400000 +2772 2747 0.400000 +2772 2776 0.400000 +2772 2817 0.400000 +2772 2878 0.400000 +2772 2888 0.400000 +2772 2965 0.400000 +2772 3027 0.400000 +2772 3148 0.400000 +2773 65 0.400000 +2773 158 0.400000 +2773 199 0.400000 +2773 218 0.400000 +2773 226 0.400000 +2773 227 0.400000 +2773 247 0.400000 +2773 345 0.400000 +2773 346 0.400000 +2773 448 0.400000 +2773 544 0.400000 +2773 619 0.400000 +2773 666 0.400000 +2773 675 0.400000 +2773 731 0.400000 +2773 925 0.400000 +2773 960 0.400000 +2773 977 0.400000 +2773 1072 0.400000 +2773 1186 0.400000 +2773 1204 0.400000 +2773 1213 0.400000 +2773 1227 0.400000 +2773 1238 0.400000 +2773 1267 0.400000 +2773 1278 0.400000 +2773 1279 0.400000 +2773 1293 0.400000 +2773 1323 0.400000 +2773 1333 0.400000 +2773 1353 0.400000 +2773 1433 0.400000 +2773 1533 0.400000 +2773 1574 0.400000 +2773 1646 0.400000 +2773 1660 0.400000 +2773 1673 0.400000 +2773 1751 0.400000 +2773 1802 0.400000 +2773 1852 0.400000 +2773 1854 0.400000 +2773 1973 0.400000 +2773 1986 0.400000 +2773 2046 0.400000 +2773 2068 0.400000 +2773 2071 0.400000 +2773 2116 0.400000 +2773 2153 0.400000 +2773 2234 0.400000 +2773 2246 0.400000 +2773 2310 0.400000 +2773 2328 0.400000 +2773 2397 0.400000 +2773 2462 0.400000 +2773 2564 0.400000 +2773 2591 0.400000 +2773 2632 0.400000 +2773 2697 0.400000 +2773 2730 0.400000 +2773 2732 0.400000 +2773 2755 0.400000 +2773 2788 0.400000 +2773 2861 0.400000 +2773 2873 0.400000 +2773 2883 0.400000 +2773 3002 0.400000 +2773 3063 0.400000 +2774 36 0.400000 +2774 48 0.400000 +2774 60 0.400000 +2774 92 0.400000 +2774 228 0.400000 +2774 282 0.400000 +2774 402 0.400000 +2774 439 0.400000 +2774 454 0.400000 +2774 498 0.400000 +2774 503 0.400000 +2774 604 0.400000 +2774 696 0.400000 +2774 728 0.400000 +2774 801 0.400000 +2774 823 0.400000 +2774 863 0.400000 +2774 982 0.400000 +2774 1007 0.400000 +2774 1032 0.400000 +2774 1061 0.400000 +2774 1066 0.400000 +2774 1088 0.400000 +2774 1091 0.400000 +2774 1196 0.400000 +2774 1439 0.400000 +2774 1485 0.400000 +2774 1521 0.400000 +2774 1619 0.400000 +2774 1623 0.400000 +2774 1634 0.400000 +2774 1643 0.400000 +2774 1754 0.400000 +2774 1941 0.400000 +2774 1995 0.400000 +2774 2017 0.400000 +2774 2084 0.400000 +2774 2136 0.400000 +2774 2155 0.400000 +2774 2182 0.400000 +2774 2310 0.400000 +2774 2318 0.400000 +2774 2379 0.400000 +2774 2414 0.400000 +2774 2425 0.400000 +2774 2437 0.400000 +2774 2446 0.400000 +2774 2550 0.400000 +2774 2572 0.400000 +2774 2580 0.400000 +2774 2593 0.400000 +2774 2617 0.400000 +2774 2686 0.400000 +2774 2728 0.400000 +2774 2787 0.400000 +2774 2799 0.400000 +2774 2820 0.400000 +2774 2833 0.400000 +2774 2835 0.400000 +2774 2856 0.400000 +2774 3002 0.400000 +2774 3042 0.400000 +2774 3055 0.400000 +2774 3060 0.400000 +2774 3072 0.400000 +2774 3103 0.400000 +2774 3150 0.400000 +2775 28 0.400000 +2775 139 0.400000 +2775 207 0.400000 +2775 235 0.400000 +2775 427 0.400000 +2775 491 0.400000 +2775 512 0.400000 +2775 528 0.400000 +2775 697 0.400000 +2775 893 0.400000 +2775 898 0.400000 +2775 956 0.400000 +2775 1045 0.400000 +2775 1230 0.400000 +2775 1284 0.400000 +2775 1408 0.400000 +2775 1443 0.400000 +2775 1482 0.400000 +2775 1492 0.400000 +2775 1541 0.400000 +2775 1560 0.400000 +2775 1570 0.400000 +2775 1607 0.400000 +2775 1698 0.400000 +2775 1767 0.400000 +2775 1808 0.400000 +2775 1814 0.400000 +2775 1835 0.400000 +2775 1931 0.400000 +2775 1934 0.400000 +2775 1954 0.400000 +2775 2044 0.400000 +2775 2094 0.400000 +2775 2190 0.400000 +2775 2274 0.400000 +2775 2374 0.400000 +2775 2458 0.400000 +2775 2500 0.400000 +2775 2515 0.400000 +2775 2550 0.400000 +2775 2591 0.400000 +2775 2638 0.400000 +2775 2749 0.400000 +2775 2769 0.400000 +2775 2787 0.400000 +2775 2836 0.400000 +2775 2881 0.400000 +2775 2942 0.400000 +2775 2943 0.400000 +2775 3009 0.400000 +2775 3080 0.400000 +2775 3086 0.400000 +2775 3155 0.400000 +2776 85 0.400000 +2776 108 0.400000 +2776 116 0.400000 +2776 171 0.400000 +2776 177 0.400000 +2776 199 0.400000 +2776 214 0.400000 +2776 311 0.400000 +2776 353 0.400000 +2776 354 0.400000 +2776 412 0.400000 +2776 420 0.400000 +2776 435 0.400000 +2776 519 0.400000 +2776 529 0.400000 +2776 586 0.400000 +2776 597 0.400000 +2776 599 0.400000 +2776 643 0.400000 +2776 647 0.400000 +2776 718 0.400000 +2776 732 0.400000 +2776 740 0.400000 +2776 746 0.400000 +2776 905 0.400000 +2776 994 0.400000 +2776 1001 0.400000 +2776 1022 0.400000 +2776 1037 0.400000 +2776 1042 0.400000 +2776 1058 0.400000 +2776 1211 0.400000 +2776 1316 0.400000 +2776 1377 0.400000 +2776 1458 0.400000 +2776 1512 0.400000 +2776 1537 0.400000 +2776 1549 0.400000 +2776 1561 0.400000 +2776 1616 0.400000 +2776 1648 0.400000 +2776 1659 0.400000 +2776 1870 0.400000 +2776 1907 0.400000 +2776 1963 0.400000 +2776 1986 0.400000 +2776 2029 0.400000 +2776 2100 0.400000 +2776 2194 0.400000 +2776 2297 0.400000 +2776 2314 0.400000 +2776 2341 0.400000 +2776 2375 0.400000 +2776 2385 0.400000 +2776 2427 0.400000 +2776 2487 0.400000 +2776 2569 0.400000 +2776 2631 0.400000 +2776 2656 0.400000 +2776 2680 0.400000 +2776 2692 0.400000 +2776 2697 0.400000 +2776 2763 0.400000 +2776 2798 0.400000 +2776 3091 0.400000 +2777 25 0.400000 +2777 94 0.400000 +2777 98 0.400000 +2777 106 0.400000 +2777 114 0.400000 +2777 150 0.400000 +2777 222 0.400000 +2777 268 0.400000 +2777 280 0.400000 +2777 319 0.400000 +2777 388 0.400000 +2777 437 0.400000 +2777 514 0.400000 +2777 557 0.400000 +2777 559 0.400000 +2777 598 0.400000 +2777 641 0.400000 +2777 682 0.400000 +2777 748 0.400000 +2777 758 0.400000 +2777 795 0.400000 +2777 847 0.400000 +2777 887 0.400000 +2777 978 0.400000 +2777 1014 0.400000 +2777 1015 0.400000 +2777 1016 0.400000 +2777 1039 0.400000 +2777 1076 0.400000 +2777 1102 0.400000 +2777 1128 0.400000 +2777 1145 0.400000 +2777 1163 0.400000 +2777 1242 0.400000 +2777 1260 0.400000 +2777 1292 0.400000 +2777 1294 0.400000 +2777 1308 0.400000 +2777 1324 0.400000 +2777 1340 0.400000 +2777 1341 0.400000 +2777 1453 0.400000 +2777 1458 0.400000 +2777 1474 0.400000 +2777 1493 0.400000 +2777 1505 0.400000 +2777 1517 0.400000 +2777 1528 0.400000 +2777 1547 0.400000 +2777 1596 0.400000 +2777 1623 0.400000 +2777 1635 0.400000 +2777 1787 0.400000 +2777 1882 0.400000 +2777 1931 0.400000 +2777 2186 0.400000 +2777 2312 0.400000 +2777 2373 0.400000 +2777 2447 0.400000 +2777 2517 0.400000 +2777 2607 0.400000 +2777 2624 0.400000 +2777 2713 0.400000 +2777 2766 0.400000 +2777 2770 0.400000 +2777 2772 0.400000 +2777 2833 0.400000 +2777 2918 0.400000 +2777 2969 0.400000 +2777 2979 0.400000 +2777 3073 0.400000 +2777 3093 0.400000 +2778 25 0.400000 +2778 104 0.400000 +2778 172 0.400000 +2778 210 0.400000 +2778 353 0.400000 +2778 402 0.400000 +2778 417 0.400000 +2778 433 0.400000 +2778 537 0.400000 +2778 557 0.400000 +2778 730 0.400000 +2778 790 0.400000 +2778 818 0.400000 +2778 879 0.400000 +2778 902 0.400000 +2778 942 0.400000 +2778 1021 0.400000 +2778 1042 0.400000 +2778 1050 0.400000 +2778 1105 0.400000 +2778 1136 0.400000 +2778 1139 0.400000 +2778 1141 0.400000 +2778 1156 0.400000 +2778 1173 0.400000 +2778 1244 0.400000 +2778 1471 0.400000 +2778 1504 0.400000 +2778 1515 0.400000 +2778 1528 0.400000 +2778 1536 0.400000 +2778 1540 0.400000 +2778 1580 0.400000 +2778 1584 0.400000 +2778 1616 0.400000 +2778 1619 0.400000 +2778 1646 0.400000 +2778 1829 0.400000 +2778 1966 0.400000 +2778 2076 0.400000 +2778 2125 0.400000 +2778 2178 0.400000 +2778 2224 0.400000 +2778 2268 0.400000 +2778 2353 0.400000 +2778 2364 0.400000 +2778 2376 0.400000 +2778 2388 0.400000 +2778 2436 0.400000 +2778 2441 0.400000 +2778 2465 0.400000 +2778 2469 0.400000 +2778 2481 0.400000 +2778 2526 0.400000 +2778 2535 0.400000 +2778 2542 0.400000 +2778 2646 0.400000 +2778 2683 0.400000 +2778 2760 0.400000 +2778 2780 0.400000 +2778 2825 0.400000 +2778 2861 0.400000 +2778 2941 0.400000 +2778 2964 0.400000 +2778 2999 0.400000 +2778 3004 0.400000 +2778 3015 0.400000 +2778 3103 0.400000 +2778 3187 0.400000 +2779 140 0.400000 +2779 166 0.400000 +2779 393 0.400000 +2779 446 0.400000 +2779 492 0.400000 +2779 521 0.400000 +2779 604 0.400000 +2779 622 0.400000 +2779 656 0.400000 +2779 701 0.400000 +2779 716 0.400000 +2779 814 0.400000 +2779 834 0.400000 +2779 852 0.400000 +2779 931 0.400000 +2779 955 0.400000 +2779 1070 0.400000 +2779 1199 0.400000 +2779 1260 0.400000 +2779 1360 0.400000 +2779 1402 0.400000 +2779 1410 0.400000 +2779 1419 0.400000 +2779 1452 0.400000 +2779 1485 0.400000 +2779 1539 0.400000 +2779 1618 0.400000 +2779 1635 0.400000 +2779 1672 0.400000 +2779 1684 0.400000 +2779 1954 0.400000 +2779 1984 0.400000 +2779 1987 0.400000 +2779 1988 0.400000 +2779 2114 0.400000 +2779 2120 0.400000 +2779 2231 0.400000 +2779 2236 0.400000 +2779 2279 0.400000 +2779 2325 0.400000 +2779 2381 0.400000 +2779 2397 0.400000 +2779 2436 0.400000 +2779 2444 0.400000 +2779 2459 0.400000 +2779 2465 0.400000 +2779 2499 0.400000 +2779 2600 0.400000 +2779 2604 0.400000 +2779 2612 0.400000 +2779 2808 0.400000 +2779 2820 0.400000 +2779 2837 0.400000 +2779 2843 0.400000 +2779 3059 0.400000 +2779 3076 0.400000 +2779 3096 0.400000 +2779 3127 0.400000 +2779 3136 0.400000 +2779 3188 0.400000 +2780 38 0.400000 +2780 41 0.400000 +2780 81 0.400000 +2780 94 0.400000 +2780 109 0.400000 +2780 180 0.400000 +2780 201 0.400000 +2780 223 0.400000 +2780 257 0.400000 +2780 309 0.400000 +2780 357 0.400000 +2780 364 0.400000 +2780 366 0.400000 +2780 409 0.400000 +2780 447 0.400000 +2780 465 0.400000 +2780 537 0.400000 +2780 579 0.400000 +2780 590 0.400000 +2780 630 0.400000 +2780 654 0.400000 +2780 715 0.400000 +2780 723 0.400000 +2780 741 0.400000 +2780 757 0.400000 +2780 760 0.400000 +2780 767 0.400000 +2780 799 0.400000 +2780 809 0.400000 +2780 814 0.400000 +2780 822 0.400000 +2780 828 0.400000 +2780 837 0.400000 +2780 840 0.400000 +2780 846 0.400000 +2780 861 0.400000 +2780 880 0.400000 +2780 885 0.400000 +2780 921 0.400000 +2780 937 0.400000 +2780 1087 0.400000 +2780 1106 0.400000 +2780 1157 0.400000 +2780 1165 0.400000 +2780 1197 0.400000 +2780 1280 0.400000 +2780 1300 0.400000 +2780 1338 0.400000 +2780 1362 0.400000 +2780 1386 0.400000 +2780 1420 0.400000 +2780 1448 0.400000 +2780 1540 0.400000 +2780 1635 0.400000 +2780 1666 0.400000 +2780 1736 0.400000 +2780 1744 0.400000 +2780 1757 0.400000 +2780 1817 0.400000 +2780 1824 0.400000 +2780 1839 0.400000 +2780 1871 0.400000 +2780 2007 0.400000 +2780 2014 0.400000 +2780 2087 0.400000 +2780 2180 0.400000 +2780 2203 0.400000 +2780 2219 0.400000 +2780 2254 0.400000 +2780 2277 0.400000 +2780 2282 0.400000 +2780 2326 0.400000 +2780 2363 0.400000 +2780 2376 0.400000 +2780 2401 0.400000 +2780 2479 0.400000 +2780 2559 0.400000 +2780 2575 0.400000 +2780 2597 0.400000 +2780 2655 0.400000 +2780 2735 0.400000 +2780 3002 0.400000 +2780 3003 0.400000 +2780 3025 0.400000 +2780 3085 0.400000 +2781 57 0.400000 +2781 70 0.400000 +2781 85 0.400000 +2781 118 0.400000 +2781 419 0.400000 +2781 424 0.400000 +2781 428 0.400000 +2781 455 0.400000 +2781 468 0.400000 +2781 497 0.400000 +2781 556 0.400000 +2781 626 0.400000 +2781 654 0.400000 +2781 661 0.400000 +2781 793 0.400000 +2781 818 0.400000 +2781 872 0.400000 +2781 997 0.400000 +2781 1051 0.400000 +2781 1073 0.400000 +2781 1077 0.400000 +2781 1086 0.400000 +2781 1102 0.400000 +2781 1113 0.400000 +2781 1205 0.400000 +2781 1223 0.400000 +2781 1380 0.400000 +2781 1433 0.400000 +2781 1451 0.400000 +2781 1455 0.400000 +2781 1569 0.400000 +2781 1596 0.400000 +2781 1651 0.400000 +2781 1745 0.400000 +2781 1919 0.400000 +2781 2044 0.400000 +2781 2056 0.400000 +2781 2065 0.400000 +2781 2095 0.400000 +2781 2149 0.400000 +2781 2157 0.400000 +2781 2179 0.400000 +2781 2213 0.400000 +2781 2239 0.400000 +2781 2249 0.400000 +2781 2252 0.400000 +2781 2358 0.400000 +2781 2376 0.400000 +2781 2377 0.400000 +2781 2388 0.400000 +2781 2395 0.400000 +2781 2422 0.400000 +2781 2440 0.400000 +2781 2508 0.400000 +2781 2516 0.400000 +2781 2564 0.400000 +2781 2589 0.400000 +2781 2667 0.400000 +2781 2690 0.400000 +2781 2700 0.400000 +2781 2765 0.400000 +2781 2803 0.400000 +2781 2835 0.400000 +2781 2845 0.400000 +2781 2889 0.400000 +2781 2924 0.400000 +2781 2967 0.400000 +2781 2989 0.400000 +2781 3075 0.400000 +2781 3177 0.400000 +2781 3179 0.400000 +2782 20 0.400000 +2782 75 0.400000 +2782 80 0.400000 +2782 88 0.400000 +2782 90 0.400000 +2782 109 0.400000 +2782 348 0.400000 +2782 376 0.400000 +2782 394 0.400000 +2782 404 0.400000 +2782 483 0.400000 +2782 630 0.400000 +2782 660 0.400000 +2782 731 0.400000 +2782 735 0.400000 +2782 956 0.400000 +2782 967 0.400000 +2782 983 0.400000 +2782 1017 0.400000 +2782 1022 0.400000 +2782 1098 0.400000 +2782 1182 0.400000 +2782 1186 0.400000 +2782 1197 0.400000 +2782 1205 0.400000 +2782 1307 0.400000 +2782 1376 0.400000 +2782 1395 0.400000 +2782 1418 0.400000 +2782 1465 0.400000 +2782 1469 0.400000 +2782 1470 0.400000 +2782 1486 0.400000 +2782 1557 0.400000 +2782 1624 0.400000 +2782 1634 0.400000 +2782 1645 0.400000 +2782 1671 0.400000 +2782 1718 0.400000 +2782 1758 0.400000 +2782 1809 0.400000 +2782 1824 0.400000 +2782 1825 0.400000 +2782 1884 0.400000 +2782 1997 0.400000 +2782 2012 0.400000 +2782 2026 0.400000 +2782 2032 0.400000 +2782 2195 0.400000 +2782 2242 0.400000 +2782 2323 0.400000 +2782 2410 0.400000 +2782 2460 0.400000 +2782 2493 0.400000 +2782 2681 0.400000 +2782 2704 0.400000 +2782 2725 0.400000 +2782 2749 0.400000 +2782 2843 0.400000 +2782 2898 0.400000 +2782 2954 0.400000 +2782 3011 0.400000 +2782 3034 0.400000 +2782 3080 0.400000 +2782 3086 0.400000 +2782 3089 0.400000 +2782 3124 0.400000 +2782 3179 0.400000 +2782 3198 0.400000 +2783 29 0.400000 +2783 64 0.400000 +2783 166 0.400000 +2783 230 0.400000 +2783 274 0.400000 +2783 319 0.400000 +2783 327 0.400000 +2783 521 0.400000 +2783 523 0.400000 +2783 607 0.400000 +2783 635 0.400000 +2783 654 0.400000 +2783 793 0.400000 +2783 827 0.400000 +2783 889 0.400000 +2783 921 0.400000 +2783 947 0.400000 +2783 1009 0.400000 +2783 1067 0.400000 +2783 1078 0.400000 +2783 1117 0.400000 +2783 1150 0.400000 +2783 1224 0.400000 +2783 1249 0.400000 +2783 1301 0.400000 +2783 1333 0.400000 +2783 1468 0.400000 +2783 1716 0.400000 +2783 1786 0.400000 +2783 1838 0.400000 +2783 1912 0.400000 +2783 1938 0.400000 +2783 1945 0.400000 +2783 1948 0.400000 +2783 2027 0.400000 +2783 2110 0.400000 +2783 2124 0.400000 +2783 2127 0.400000 +2783 2145 0.400000 +2783 2235 0.400000 +2783 2272 0.400000 +2783 2300 0.400000 +2783 2305 0.400000 +2783 2310 0.400000 +2783 2394 0.400000 +2783 2414 0.400000 +2783 2435 0.400000 +2783 2443 0.400000 +2783 2445 0.400000 +2783 2494 0.400000 +2783 2495 0.400000 +2783 2559 0.400000 +2783 2582 0.400000 +2783 2604 0.400000 +2783 2628 0.400000 +2783 2656 0.400000 +2783 2711 0.400000 +2783 2767 0.400000 +2783 2785 0.400000 +2783 2838 0.400000 +2783 2872 0.400000 +2783 2992 0.400000 +2783 3006 0.400000 +2783 3064 0.400000 +2783 3130 0.400000 +2783 3151 0.400000 +2784 5 0.400000 +2784 56 0.400000 +2784 57 0.400000 +2784 155 0.400000 +2784 176 0.400000 +2784 273 0.400000 +2784 277 0.400000 +2784 285 0.400000 +2784 304 0.400000 +2784 355 0.400000 +2784 440 0.400000 +2784 468 0.400000 +2784 514 0.400000 +2784 584 0.400000 +2784 664 0.400000 +2784 745 0.400000 +2784 767 0.400000 +2784 778 0.400000 +2784 885 0.400000 +2784 892 0.400000 +2784 967 0.400000 +2784 1026 0.400000 +2784 1031 0.400000 +2784 1163 0.400000 +2784 1192 0.400000 +2784 1334 0.400000 +2784 1339 0.400000 +2784 1407 0.400000 +2784 1470 0.400000 +2784 1534 0.400000 +2784 1634 0.400000 +2784 1644 0.400000 +2784 1735 0.400000 +2784 1770 0.400000 +2784 1803 0.400000 +2784 1861 0.400000 +2784 1907 0.400000 +2784 1948 0.400000 +2784 2174 0.400000 +2784 2205 0.400000 +2784 2207 0.400000 +2784 2218 0.400000 +2784 2398 0.400000 +2784 2416 0.400000 +2784 2597 0.400000 +2784 2606 0.400000 +2784 2719 0.400000 +2784 2857 0.400000 +2784 2884 0.400000 +2784 2909 0.400000 +2784 2945 0.400000 +2784 3030 0.400000 +2784 3093 0.400000 +2784 3104 0.400000 +2784 3114 0.400000 +2784 3181 0.400000 +2784 3184 0.400000 +2784 3195 0.400000 +2785 33 0.400000 +2785 42 0.400000 +2785 155 0.400000 +2785 196 0.400000 +2785 247 0.400000 +2785 251 0.400000 +2785 346 0.400000 +2785 424 0.400000 +2785 459 0.400000 +2785 479 0.400000 +2785 503 0.400000 +2785 559 0.400000 +2785 690 0.400000 +2785 699 0.400000 +2785 735 0.400000 +2785 736 0.400000 +2785 737 0.400000 +2785 787 0.400000 +2785 806 0.400000 +2785 807 0.400000 +2785 908 0.400000 +2785 923 0.400000 +2785 967 0.400000 +2785 1002 0.400000 +2785 1018 0.400000 +2785 1026 0.400000 +2785 1165 0.400000 +2785 1211 0.400000 +2785 1260 0.400000 +2785 1276 0.400000 +2785 1280 0.400000 +2785 1349 0.400000 +2785 1368 0.400000 +2785 1406 0.400000 +2785 1490 0.400000 +2785 1496 0.400000 +2785 1617 0.400000 +2785 1757 0.400000 +2785 1786 0.400000 +2785 1848 0.400000 +2785 1909 0.400000 +2785 1913 0.400000 +2785 1917 0.400000 +2785 1926 0.400000 +2785 1939 0.400000 +2785 1958 0.400000 +2785 2013 0.400000 +2785 2072 0.400000 +2785 2088 0.400000 +2785 2096 0.400000 +2785 2110 0.400000 +2785 2116 0.400000 +2785 2281 0.400000 +2785 2329 0.400000 +2785 2352 0.400000 +2785 2377 0.400000 +2785 2544 0.400000 +2785 2633 0.400000 +2785 2662 0.400000 +2785 2673 0.400000 +2785 2736 0.400000 +2785 2755 0.400000 +2785 2818 0.400000 +2785 2820 0.400000 +2785 2872 0.400000 +2785 2901 0.400000 +2785 2919 0.400000 +2785 2941 0.400000 +2785 2947 0.400000 +2785 2972 0.400000 +2785 3076 0.400000 +2785 3122 0.400000 +2785 3161 0.400000 +2785 3185 0.400000 +2786 7 0.400000 +2786 18 0.400000 +2786 42 0.400000 +2786 100 0.400000 +2786 111 0.400000 +2786 145 0.400000 +2786 160 0.400000 +2786 258 0.400000 +2786 327 0.400000 +2786 334 0.400000 +2786 409 0.400000 +2786 439 0.400000 +2786 466 0.400000 +2786 473 0.400000 +2786 475 0.400000 +2786 521 0.400000 +2786 561 0.400000 +2786 604 0.400000 +2786 605 0.400000 +2786 606 0.400000 +2786 634 0.400000 +2786 642 0.400000 +2786 659 0.400000 +2786 764 0.400000 +2786 789 0.400000 +2786 824 0.400000 +2786 848 0.400000 +2786 850 0.400000 +2786 941 0.400000 +2786 945 0.400000 +2786 967 0.400000 +2786 1006 0.400000 +2786 1021 0.400000 +2786 1023 0.400000 +2786 1031 0.400000 +2786 1133 0.400000 +2786 1327 0.400000 +2786 1438 0.400000 +2786 1442 0.400000 +2786 1504 0.400000 +2786 1581 0.400000 +2786 1625 0.400000 +2786 1720 0.400000 +2786 1805 0.400000 +2786 1822 0.400000 +2786 1848 0.400000 +2786 1912 0.400000 +2786 1979 0.400000 +2786 2045 0.400000 +2786 2078 0.400000 +2786 2097 0.400000 +2786 2122 0.400000 +2786 2200 0.400000 +2786 2216 0.400000 +2786 2218 0.400000 +2786 2222 0.400000 +2786 2288 0.400000 +2786 2311 0.400000 +2786 2362 0.400000 +2786 2374 0.400000 +2786 2379 0.400000 +2786 2384 0.400000 +2786 2460 0.400000 +2786 2519 0.400000 +2786 2540 0.400000 +2786 2552 0.400000 +2786 2605 0.400000 +2786 2720 0.400000 +2786 2738 0.400000 +2786 2750 0.400000 +2786 2796 0.400000 +2786 2828 0.400000 +2786 2936 0.400000 +2786 2963 0.400000 +2786 3158 0.400000 +2786 3178 0.400000 +2787 6 0.400000 +2787 27 0.400000 +2787 75 0.400000 +2787 120 0.400000 +2787 129 0.400000 +2787 162 0.400000 +2787 184 0.400000 +2787 250 0.400000 +2787 313 0.400000 +2787 386 0.400000 +2787 403 0.400000 +2787 424 0.400000 +2787 431 0.400000 +2787 474 0.400000 +2787 477 0.400000 +2787 482 0.400000 +2787 538 0.400000 +2787 611 0.400000 +2787 671 0.400000 +2787 735 0.400000 +2787 765 0.400000 +2787 827 0.400000 +2787 932 0.400000 +2787 1093 0.400000 +2787 1114 0.400000 +2787 1139 0.400000 +2787 1281 0.400000 +2787 1446 0.400000 +2787 1449 0.400000 +2787 1544 0.400000 +2787 1568 0.400000 +2787 1670 0.400000 +2787 1693 0.400000 +2787 1700 0.400000 +2787 1710 0.400000 +2787 1733 0.400000 +2787 1770 0.400000 +2787 1880 0.400000 +2787 1958 0.400000 +2787 2046 0.400000 +2787 2122 0.400000 +2787 2139 0.400000 +2787 2171 0.400000 +2787 2196 0.400000 +2787 2198 0.400000 +2787 2224 0.400000 +2787 2236 0.400000 +2787 2301 0.400000 +2787 2334 0.400000 +2787 2405 0.400000 +2787 2422 0.400000 +2787 2436 0.400000 +2787 2459 0.400000 +2787 2575 0.400000 +2787 2644 0.400000 +2787 2726 0.400000 +2787 2753 0.400000 +2787 2813 0.400000 +2787 2878 0.400000 +2787 2912 0.400000 +2787 3063 0.400000 +2788 86 0.400000 +2788 150 0.400000 +2788 199 0.400000 +2788 247 0.400000 +2788 281 0.400000 +2788 458 0.400000 +2788 555 0.400000 +2788 563 0.400000 +2788 567 0.400000 +2788 597 0.400000 +2788 600 0.400000 +2788 640 0.400000 +2788 710 0.400000 +2788 734 0.400000 +2788 775 0.400000 +2788 934 0.400000 +2788 982 0.400000 +2788 1069 0.400000 +2788 1078 0.400000 +2788 1294 0.400000 +2788 1324 0.400000 +2788 1472 0.400000 +2788 1647 0.400000 +2788 1659 0.400000 +2788 1679 0.400000 +2788 1799 0.400000 +2788 1855 0.400000 +2788 1883 0.400000 +2788 1896 0.400000 +2788 1911 0.400000 +2788 2122 0.400000 +2788 2132 0.400000 +2788 2163 0.400000 +2788 2226 0.400000 +2788 2239 0.400000 +2788 2254 0.400000 +2788 2474 0.400000 +2788 2561 0.400000 +2788 2696 0.400000 +2788 2703 0.400000 +2788 2712 0.400000 +2788 2786 0.400000 +2788 2804 0.400000 +2788 2821 0.400000 +2788 2937 0.400000 +2788 2978 0.400000 +2788 3125 0.400000 +2788 3127 0.400000 +2788 3129 0.400000 +2789 81 0.400000 +2789 116 0.400000 +2789 136 0.400000 +2789 285 0.400000 +2789 336 0.400000 +2789 337 0.400000 +2789 345 0.400000 +2789 355 0.400000 +2789 461 0.400000 +2789 481 0.400000 +2789 548 0.400000 +2789 554 0.400000 +2789 555 0.400000 +2789 564 0.400000 +2789 686 0.400000 +2789 696 0.400000 +2789 707 0.400000 +2789 709 0.400000 +2789 726 0.400000 +2789 752 0.400000 +2789 773 0.400000 +2789 795 0.400000 +2789 829 0.400000 +2789 915 0.400000 +2789 969 0.400000 +2789 998 0.400000 +2789 1081 0.400000 +2789 1160 0.400000 +2789 1165 0.400000 +2789 1173 0.400000 +2789 1201 0.400000 +2789 1264 0.400000 +2789 1285 0.400000 +2789 1392 0.400000 +2789 1409 0.400000 +2789 1421 0.400000 +2789 1533 0.400000 +2789 1621 0.400000 +2789 1624 0.400000 +2789 1680 0.400000 +2789 1736 0.400000 +2789 1744 0.400000 +2789 1795 0.400000 +2789 1812 0.400000 +2789 1829 0.400000 +2789 1901 0.400000 +2789 1954 0.400000 +2789 1983 0.400000 +2789 2039 0.400000 +2789 2134 0.400000 +2789 2159 0.400000 +2789 2333 0.400000 +2789 2392 0.400000 +2789 2443 0.400000 +2789 2477 0.400000 +2789 2547 0.400000 +2789 2645 0.400000 +2789 2722 0.400000 +2789 2741 0.400000 +2789 2911 0.400000 +2789 2919 0.400000 +2789 2938 0.400000 +2789 2976 0.400000 +2789 3025 0.400000 +2790 83 0.400000 +2790 136 0.400000 +2790 152 0.400000 +2790 193 0.400000 +2790 275 0.400000 +2790 303 0.400000 +2790 308 0.400000 +2790 341 0.400000 +2790 384 0.400000 +2790 385 0.400000 +2790 419 0.400000 +2790 537 0.400000 +2790 575 0.400000 +2790 637 0.400000 +2790 640 0.400000 +2790 709 0.400000 +2790 730 0.400000 +2790 747 0.400000 +2790 771 0.400000 +2790 842 0.400000 +2790 885 0.400000 +2790 910 0.400000 +2790 953 0.400000 +2790 1030 0.400000 +2790 1089 0.400000 +2790 1111 0.400000 +2790 1142 0.400000 +2790 1169 0.400000 +2790 1189 0.400000 +2790 1190 0.400000 +2790 1216 0.400000 +2790 1237 0.400000 +2790 1247 0.400000 +2790 1306 0.400000 +2790 1341 0.400000 +2790 1374 0.400000 +2790 1421 0.400000 +2790 1437 0.400000 +2790 1537 0.400000 +2790 1562 0.400000 +2790 1575 0.400000 +2790 1588 0.400000 +2790 1589 0.400000 +2790 1634 0.400000 +2790 1642 0.400000 +2790 1701 0.400000 +2790 1710 0.400000 +2790 1760 0.400000 +2790 1784 0.400000 +2790 1797 0.400000 +2790 1821 0.400000 +2790 1856 0.400000 +2790 1873 0.400000 +2790 1892 0.400000 +2790 1918 0.400000 +2790 1951 0.400000 +2790 1955 0.400000 +2790 1971 0.400000 +2790 2096 0.400000 +2790 2113 0.400000 +2790 2145 0.400000 +2790 2185 0.400000 +2790 2194 0.400000 +2790 2267 0.400000 +2790 2270 0.400000 +2790 2454 0.400000 +2790 2472 0.400000 +2790 2477 0.400000 +2790 2480 0.400000 +2790 2539 0.400000 +2790 2568 0.400000 +2790 2719 0.400000 +2790 2741 0.400000 +2790 2747 0.400000 +2790 2769 0.400000 +2790 2809 0.400000 +2790 2921 0.400000 +2790 2938 0.400000 +2790 2970 0.400000 +2790 3059 0.400000 +2790 3078 0.400000 +2790 3178 0.400000 +2790 3198 0.400000 +2791 34 0.400000 +2791 61 0.400000 +2791 128 0.400000 +2791 152 0.400000 +2791 173 0.400000 +2791 203 0.400000 +2791 248 0.400000 +2791 253 0.400000 +2791 319 0.400000 +2791 662 0.400000 +2791 663 0.400000 +2791 711 0.400000 +2791 789 0.400000 +2791 829 0.400000 +2791 845 0.400000 +2791 852 0.400000 +2791 904 0.400000 +2791 1120 0.400000 +2791 1172 0.400000 +2791 1177 0.400000 +2791 1195 0.400000 +2791 1197 0.400000 +2791 1219 0.400000 +2791 1276 0.400000 +2791 1319 0.400000 +2791 1358 0.400000 +2791 1448 0.400000 +2791 1502 0.400000 +2791 1606 0.400000 +2791 1631 0.400000 +2791 1714 0.400000 +2791 1775 0.400000 +2791 1788 0.400000 +2791 1797 0.400000 +2791 1828 0.400000 +2791 1916 0.400000 +2791 1940 0.400000 +2791 1966 0.400000 +2791 2041 0.400000 +2791 2097 0.400000 +2791 2129 0.400000 +2791 2167 0.400000 +2791 2180 0.400000 +2791 2277 0.400000 +2791 2278 0.400000 +2791 2336 0.400000 +2791 2357 0.400000 +2791 2381 0.400000 +2791 2456 0.400000 +2791 2474 0.400000 +2791 2521 0.400000 +2791 2620 0.400000 +2791 2651 0.400000 +2791 2660 0.400000 +2791 2700 0.400000 +2791 2735 0.400000 +2791 2776 0.400000 +2791 2814 0.400000 +2791 2853 0.400000 +2791 2887 0.400000 +2791 2951 0.400000 +2791 2958 0.400000 +2791 2977 0.400000 +2791 3006 0.400000 +2791 3013 0.400000 +2791 3065 0.400000 +2791 3079 0.400000 +2791 3104 0.400000 +2791 3199 0.400000 +2792 13 0.400000 +2792 150 0.400000 +2792 157 0.400000 +2792 178 0.400000 +2792 196 0.400000 +2792 208 0.400000 +2792 211 0.400000 +2792 416 0.400000 +2792 473 0.400000 +2792 562 0.400000 +2792 664 0.400000 +2792 669 0.400000 +2792 691 0.400000 +2792 791 0.400000 +2792 794 0.400000 +2792 810 0.400000 +2792 863 0.400000 +2792 956 0.400000 +2792 984 0.400000 +2792 994 0.400000 +2792 1118 0.400000 +2792 1207 0.400000 +2792 1255 0.400000 +2792 1266 0.400000 +2792 1359 0.400000 +2792 1423 0.400000 +2792 1433 0.400000 +2792 1491 0.400000 +2792 1537 0.400000 +2792 1617 0.400000 +2792 1705 0.400000 +2792 1763 0.400000 +2792 1836 0.400000 +2792 1838 0.400000 +2792 1846 0.400000 +2792 1862 0.400000 +2792 1882 0.400000 +2792 2013 0.400000 +2792 2018 0.400000 +2792 2126 0.400000 +2792 2168 0.400000 +2792 2244 0.400000 +2792 2332 0.400000 +2792 2531 0.400000 +2792 2538 0.400000 +2792 2557 0.400000 +2792 2644 0.400000 +2792 2648 0.400000 +2792 2693 0.400000 +2792 2745 0.400000 +2792 2834 0.400000 +2792 2873 0.400000 +2792 2945 0.400000 +2792 3041 0.400000 +2792 3158 0.400000 +2792 3195 0.400000 +2793 76 0.400000 +2793 128 0.400000 +2793 134 0.400000 +2793 206 0.400000 +2793 368 0.400000 +2793 418 0.400000 +2793 470 0.400000 +2793 612 0.400000 +2793 648 0.400000 +2793 767 0.400000 +2793 775 0.400000 +2793 781 0.400000 +2793 794 0.400000 +2793 814 0.400000 +2793 874 0.400000 +2793 900 0.400000 +2793 939 0.400000 +2793 959 0.400000 +2793 980 0.400000 +2793 1091 0.400000 +2793 1117 0.400000 +2793 1161 0.400000 +2793 1217 0.400000 +2793 1268 0.400000 +2793 1331 0.400000 +2793 1340 0.400000 +2793 1477 0.400000 +2793 1486 0.400000 +2793 1579 0.400000 +2793 1646 0.400000 +2793 1667 0.400000 +2793 1702 0.400000 +2793 1834 0.400000 +2793 1847 0.400000 +2793 1883 0.400000 +2793 1937 0.400000 +2793 1939 0.400000 +2793 2003 0.400000 +2793 2011 0.400000 +2793 2015 0.400000 +2793 2088 0.400000 +2793 2091 0.400000 +2793 2348 0.400000 +2793 2351 0.400000 +2793 2365 0.400000 +2793 2396 0.400000 +2793 2409 0.400000 +2793 2476 0.400000 +2793 2547 0.400000 +2793 2591 0.400000 +2793 2598 0.400000 +2793 2619 0.400000 +2793 2700 0.400000 +2793 2784 0.400000 +2793 2816 0.400000 +2793 2881 0.400000 +2793 2890 0.400000 +2793 3089 0.400000 +2793 3171 0.400000 +2794 43 0.400000 +2794 71 0.400000 +2794 92 0.400000 +2794 157 0.400000 +2794 158 0.400000 +2794 265 0.400000 +2794 386 0.400000 +2794 464 0.400000 +2794 467 0.400000 +2794 483 0.400000 +2794 504 0.400000 +2794 579 0.400000 +2794 637 0.400000 +2794 731 0.400000 +2794 752 0.400000 +2794 802 0.400000 +2794 957 0.400000 +2794 1093 0.400000 +2794 1144 0.400000 +2794 1179 0.400000 +2794 1199 0.400000 +2794 1258 0.400000 +2794 1324 0.400000 +2794 1381 0.400000 +2794 1504 0.400000 +2794 1549 0.400000 +2794 1561 0.400000 +2794 1564 0.400000 +2794 1570 0.400000 +2794 1583 0.400000 +2794 1584 0.400000 +2794 1631 0.400000 +2794 1719 0.400000 +2794 1817 0.400000 +2794 1835 0.400000 +2794 1911 0.400000 +2794 1961 0.400000 +2794 2066 0.400000 +2794 2170 0.400000 +2794 2171 0.400000 +2794 2189 0.400000 +2794 2229 0.400000 +2794 2264 0.400000 +2794 2292 0.400000 +2794 2304 0.400000 +2794 2307 0.400000 +2794 2401 0.400000 +2794 2448 0.400000 +2794 2522 0.400000 +2794 2535 0.400000 +2794 2564 0.400000 +2794 2576 0.400000 +2794 2768 0.400000 +2794 2826 0.400000 +2794 2869 0.400000 +2794 3112 0.400000 +2794 3161 0.400000 +2794 3166 0.400000 +2794 3167 0.400000 +2795 6 0.400000 +2795 104 0.400000 +2795 296 0.400000 +2795 310 0.400000 +2795 361 0.400000 +2795 529 0.400000 +2795 552 0.400000 +2795 615 0.400000 +2795 616 0.400000 +2795 617 0.400000 +2795 647 0.400000 +2795 669 0.400000 +2795 707 0.400000 +2795 767 0.400000 +2795 806 0.400000 +2795 878 0.400000 +2795 938 0.400000 +2795 1021 0.400000 +2795 1067 0.400000 +2795 1194 0.400000 +2795 1212 0.400000 +2795 1243 0.400000 +2795 1329 0.400000 +2795 1339 0.400000 +2795 1418 0.400000 +2795 1420 0.400000 +2795 1447 0.400000 +2795 1452 0.400000 +2795 1643 0.400000 +2795 1733 0.400000 +2795 1863 0.400000 +2795 1870 0.400000 +2795 1939 0.400000 +2795 1970 0.400000 +2795 2029 0.400000 +2795 2047 0.400000 +2795 2132 0.400000 +2795 2135 0.400000 +2795 2147 0.400000 +2795 2154 0.400000 +2795 2180 0.400000 +2795 2182 0.400000 +2795 2223 0.400000 +2795 2246 0.400000 +2795 2273 0.400000 +2795 2331 0.400000 +2795 2363 0.400000 +2795 2392 0.400000 +2795 2418 0.400000 +2795 2441 0.400000 +2795 2477 0.400000 +2795 2604 0.400000 +2795 2616 0.400000 +2795 2738 0.400000 +2795 2851 0.400000 +2795 2933 0.400000 +2795 2935 0.400000 +2795 2939 0.400000 +2795 2945 0.400000 +2795 2979 0.400000 +2795 3031 0.400000 +2795 3072 0.400000 +2795 3090 0.400000 +2795 3126 0.400000 +2796 19 0.400000 +2796 119 0.400000 +2796 202 0.400000 +2796 221 0.400000 +2796 302 0.400000 +2796 308 0.400000 +2796 316 0.400000 +2796 431 0.400000 +2796 466 0.400000 +2796 470 0.400000 +2796 498 0.400000 +2796 521 0.400000 +2796 610 0.400000 +2796 674 0.400000 +2796 699 0.400000 +2796 803 0.400000 +2796 868 0.400000 +2796 873 0.400000 +2796 893 0.400000 +2796 897 0.400000 +2796 948 0.400000 +2796 968 0.400000 +2796 1026 0.400000 +2796 1030 0.400000 +2796 1073 0.400000 +2796 1100 0.400000 +2796 1140 0.400000 +2796 1221 0.400000 +2796 1483 0.400000 +2796 1547 0.400000 +2796 1582 0.400000 +2796 1589 0.400000 +2796 1599 0.400000 +2796 1628 0.400000 +2796 1631 0.400000 +2796 1724 0.400000 +2796 1737 0.400000 +2796 1813 0.400000 +2796 1836 0.400000 +2796 1851 0.400000 +2796 1862 0.400000 +2796 1970 0.400000 +2796 2261 0.400000 +2796 2266 0.400000 +2796 2488 0.400000 +2796 2507 0.400000 +2796 2522 0.400000 +2796 2530 0.400000 +2796 2554 0.400000 +2796 2586 0.400000 +2796 2602 0.400000 +2796 2668 0.400000 +2796 2674 0.400000 +2796 2718 0.400000 +2796 2784 0.400000 +2796 2898 0.400000 +2796 3016 0.400000 +2796 3017 0.400000 +2796 3046 0.400000 +2796 3047 0.400000 +2796 3084 0.400000 +2796 3093 0.400000 +2797 80 0.400000 +2797 125 0.400000 +2797 131 0.400000 +2797 188 0.400000 +2797 220 0.400000 +2797 228 0.400000 +2797 267 0.400000 +2797 289 0.400000 +2797 327 0.400000 +2797 406 0.400000 +2797 416 0.400000 +2797 455 0.400000 +2797 469 0.400000 +2797 546 0.400000 +2797 553 0.400000 +2797 588 0.400000 +2797 600 0.400000 +2797 638 0.400000 +2797 731 0.400000 +2797 749 0.400000 +2797 762 0.400000 +2797 780 0.400000 +2797 825 0.400000 +2797 835 0.400000 +2797 836 0.400000 +2797 975 0.400000 +2797 1223 0.400000 +2797 1293 0.400000 +2797 1329 0.400000 +2797 1355 0.400000 +2797 1437 0.400000 +2797 1492 0.400000 +2797 1519 0.400000 +2797 1552 0.400000 +2797 1593 0.400000 +2797 1612 0.400000 +2797 1622 0.400000 +2797 1629 0.400000 +2797 1670 0.400000 +2797 1697 0.400000 +2797 1782 0.400000 +2797 1817 0.400000 +2797 1831 0.400000 +2797 1842 0.400000 +2797 1846 0.400000 +2797 1870 0.400000 +2797 1873 0.400000 +2797 1977 0.400000 +2797 1995 0.400000 +2797 1997 0.400000 +2797 2002 0.400000 +2797 2013 0.400000 +2797 2075 0.400000 +2797 2181 0.400000 +2797 2203 0.400000 +2797 2358 0.400000 +2797 2424 0.400000 +2797 2577 0.400000 +2797 2654 0.400000 +2797 2711 0.400000 +2797 2734 0.400000 +2797 2765 0.400000 +2797 2850 0.400000 +2797 2890 0.400000 +2797 2893 0.400000 +2797 2902 0.400000 +2797 2953 0.400000 +2797 3016 0.400000 +2797 3020 0.400000 +2797 3023 0.400000 +2797 3146 0.400000 +2798 38 0.400000 +2798 52 0.400000 +2798 78 0.400000 +2798 81 0.400000 +2798 86 0.400000 +2798 131 0.400000 +2798 148 0.400000 +2798 231 0.400000 +2798 246 0.400000 +2798 293 0.400000 +2798 299 0.400000 +2798 377 0.400000 +2798 408 0.400000 +2798 452 0.400000 +2798 508 0.400000 +2798 537 0.400000 +2798 571 0.400000 +2798 614 0.400000 +2798 675 0.400000 +2798 686 0.400000 +2798 711 0.400000 +2798 769 0.400000 +2798 779 0.400000 +2798 795 0.400000 +2798 819 0.400000 +2798 821 0.400000 +2798 866 0.400000 +2798 905 0.400000 +2798 954 0.400000 +2798 979 0.400000 +2798 1099 0.400000 +2798 1140 0.400000 +2798 1148 0.400000 +2798 1178 0.400000 +2798 1191 0.400000 +2798 1246 0.400000 +2798 1294 0.400000 +2798 1383 0.400000 +2798 1422 0.400000 +2798 1456 0.400000 +2798 1560 0.400000 +2798 1570 0.400000 +2798 1640 0.400000 +2798 1652 0.400000 +2798 1684 0.400000 +2798 1762 0.400000 +2798 1790 0.400000 +2798 1842 0.400000 +2798 1890 0.400000 +2798 2015 0.400000 +2798 2018 0.400000 +2798 2045 0.400000 +2798 2194 0.400000 +2798 2210 0.400000 +2798 2256 0.400000 +2798 2264 0.400000 +2798 2334 0.400000 +2798 2436 0.400000 +2798 2480 0.400000 +2798 2563 0.400000 +2798 2623 0.400000 +2798 2823 0.400000 +2798 2830 0.400000 +2798 2871 0.400000 +2798 2878 0.400000 +2798 2884 0.400000 +2798 2900 0.400000 +2798 3034 0.400000 +2799 35 0.400000 +2799 37 0.400000 +2799 47 0.400000 +2799 255 0.400000 +2799 287 0.400000 +2799 296 0.400000 +2799 345 0.400000 +2799 366 0.400000 +2799 421 0.400000 +2799 491 0.400000 +2799 577 0.400000 +2799 639 0.400000 +2799 660 0.400000 +2799 776 0.400000 +2799 842 0.400000 +2799 886 0.400000 +2799 898 0.400000 +2799 899 0.400000 +2799 961 0.400000 +2799 1005 0.400000 +2799 1087 0.400000 +2799 1155 0.400000 +2799 1162 0.400000 +2799 1164 0.400000 +2799 1183 0.400000 +2799 1204 0.400000 +2799 1225 0.400000 +2799 1286 0.400000 +2799 1393 0.400000 +2799 1427 0.400000 +2799 1434 0.400000 +2799 1443 0.400000 +2799 1476 0.400000 +2799 1487 0.400000 +2799 1515 0.400000 +2799 1521 0.400000 +2799 1543 0.400000 +2799 1555 0.400000 +2799 1620 0.400000 +2799 1622 0.400000 +2799 1705 0.400000 +2799 1717 0.400000 +2799 1727 0.400000 +2799 1756 0.400000 +2799 1822 0.400000 +2799 1862 0.400000 +2799 1871 0.400000 +2799 1915 0.400000 +2799 1958 0.400000 +2799 2030 0.400000 +2799 2062 0.400000 +2799 2072 0.400000 +2799 2076 0.400000 +2799 2129 0.400000 +2799 2140 0.400000 +2799 2247 0.400000 +2799 2252 0.400000 +2799 2354 0.400000 +2799 2393 0.400000 +2799 2419 0.400000 +2799 2471 0.400000 +2799 2508 0.400000 +2799 2544 0.400000 +2799 2682 0.400000 +2799 2694 0.400000 +2799 2729 0.400000 +2799 2801 0.400000 +2799 2876 0.400000 +2799 2885 0.400000 +2799 2893 0.400000 +2799 2921 0.400000 +2799 2955 0.400000 +2799 2957 0.400000 +2799 3080 0.400000 +2799 3104 0.400000 +2799 3128 0.400000 +2800 80 0.400000 +2800 93 0.400000 +2800 111 0.400000 +2800 118 0.400000 +2800 264 0.400000 +2800 287 0.400000 +2800 342 0.400000 +2800 391 0.400000 +2800 396 0.400000 +2800 471 0.400000 +2800 568 0.400000 +2800 581 0.400000 +2800 593 0.400000 +2800 700 0.400000 +2800 716 0.400000 +2800 717 0.400000 +2800 720 0.400000 +2800 898 0.400000 +2800 992 0.400000 +2800 1105 0.400000 +2800 1129 0.400000 +2800 1215 0.400000 +2800 1322 0.400000 +2800 1343 0.400000 +2800 1369 0.400000 +2800 1478 0.400000 +2800 1499 0.400000 +2800 1519 0.400000 +2800 1527 0.400000 +2800 1535 0.400000 +2800 1628 0.400000 +2800 1646 0.400000 +2800 1673 0.400000 +2800 1697 0.400000 +2800 1728 0.400000 +2800 1844 0.400000 +2800 1845 0.400000 +2800 1862 0.400000 +2800 1883 0.400000 +2800 1916 0.400000 +2800 1935 0.400000 +2800 1959 0.400000 +2800 1970 0.400000 +2800 2036 0.400000 +2800 2112 0.400000 +2800 2114 0.400000 +2800 2160 0.400000 +2800 2164 0.400000 +2800 2239 0.400000 +2800 2305 0.400000 +2800 2396 0.400000 +2800 2430 0.400000 +2800 2578 0.400000 +2800 2581 0.400000 +2800 2632 0.400000 +2800 2685 0.400000 +2800 2689 0.400000 +2800 2728 0.400000 +2800 2732 0.400000 +2800 2739 0.400000 +2800 2772 0.400000 +2800 2870 0.400000 +2800 2905 0.400000 +2800 2954 0.400000 +2800 2992 0.400000 +2800 3089 0.400000 +2800 3122 0.400000 +2800 3143 0.400000 +2800 3180 0.400000 +2800 3192 0.400000 +2801 28 0.400000 +2801 57 0.400000 +2801 117 0.400000 +2801 133 0.400000 +2801 186 0.400000 +2801 214 0.400000 +2801 320 0.400000 +2801 350 0.400000 +2801 377 0.400000 +2801 385 0.400000 +2801 423 0.400000 +2801 451 0.400000 +2801 516 0.400000 +2801 521 0.400000 +2801 526 0.400000 +2801 589 0.400000 +2801 669 0.400000 +2801 670 0.400000 +2801 695 0.400000 +2801 703 0.400000 +2801 756 0.400000 +2801 765 0.400000 +2801 798 0.400000 +2801 833 0.400000 +2801 878 0.400000 +2801 908 0.400000 +2801 912 0.400000 +2801 929 0.400000 +2801 939 0.400000 +2801 963 0.400000 +2801 972 0.400000 +2801 1019 0.400000 +2801 1030 0.400000 +2801 1032 0.400000 +2801 1281 0.400000 +2801 1305 0.400000 +2801 1389 0.400000 +2801 1414 0.400000 +2801 1440 0.400000 +2801 1458 0.400000 +2801 1499 0.400000 +2801 1512 0.400000 +2801 1601 0.400000 +2801 1611 0.400000 +2801 1620 0.400000 +2801 1655 0.400000 +2801 1656 0.400000 +2801 1744 0.400000 +2801 1759 0.400000 +2801 1801 0.400000 +2801 1893 0.400000 +2801 1996 0.400000 +2801 2077 0.400000 +2801 2124 0.400000 +2801 2174 0.400000 +2801 2210 0.400000 +2801 2237 0.400000 +2801 2334 0.400000 +2801 2379 0.400000 +2801 2381 0.400000 +2801 2383 0.400000 +2801 2395 0.400000 +2801 2460 0.400000 +2801 2461 0.400000 +2801 2540 0.400000 +2801 2784 0.400000 +2801 2990 0.400000 +2801 3094 0.400000 +2801 3178 0.400000 +2802 35 0.400000 +2802 83 0.400000 +2802 125 0.400000 +2802 143 0.400000 +2802 189 0.400000 +2802 226 0.400000 +2802 261 0.400000 +2802 281 0.400000 +2802 329 0.400000 +2802 399 0.400000 +2802 477 0.400000 +2802 483 0.400000 +2802 545 0.400000 +2802 553 0.400000 +2802 562 0.400000 +2802 596 0.400000 +2802 667 0.400000 +2802 757 0.400000 +2802 846 0.400000 +2802 967 0.400000 +2802 1122 0.400000 +2802 1127 0.400000 +2802 1130 0.400000 +2802 1183 0.400000 +2802 1195 0.400000 +2802 1242 0.400000 +2802 1307 0.400000 +2802 1315 0.400000 +2802 1318 0.400000 +2802 1426 0.400000 +2802 1525 0.400000 +2802 1596 0.400000 +2802 1669 0.400000 +2802 1670 0.400000 +2802 1712 0.400000 +2802 1736 0.400000 +2802 1741 0.400000 +2802 1858 0.400000 +2802 2027 0.400000 +2802 2040 0.400000 +2802 2043 0.400000 +2802 2052 0.400000 +2802 2130 0.400000 +2802 2189 0.400000 +2802 2278 0.400000 +2802 2307 0.400000 +2802 2335 0.400000 +2802 2340 0.400000 +2802 2397 0.400000 +2802 2418 0.400000 +2802 2423 0.400000 +2802 2459 0.400000 +2802 2514 0.400000 +2802 2568 0.400000 +2802 2610 0.400000 +2802 2655 0.400000 +2802 2664 0.400000 +2802 2690 0.400000 +2802 2732 0.400000 +2802 2788 0.400000 +2802 2822 0.400000 +2802 2828 0.400000 +2802 2832 0.400000 +2802 2913 0.400000 +2802 2928 0.400000 +2802 2980 0.400000 +2802 2981 0.400000 +2802 3071 0.400000 +2802 3087 0.400000 +2802 3185 0.400000 +2803 35 0.400000 +2803 53 0.400000 +2803 158 0.400000 +2803 200 0.400000 +2803 248 0.400000 +2803 375 0.400000 +2803 387 0.400000 +2803 550 0.400000 +2803 592 0.400000 +2803 593 0.400000 +2803 598 0.400000 +2803 610 0.400000 +2803 643 0.400000 +2803 662 0.400000 +2803 678 0.400000 +2803 694 0.400000 +2803 696 0.400000 +2803 788 0.400000 +2803 812 0.400000 +2803 903 0.400000 +2803 930 0.400000 +2803 1018 0.400000 +2803 1055 0.400000 +2803 1132 0.400000 +2803 1187 0.400000 +2803 1296 0.400000 +2803 1373 0.400000 +2803 1538 0.400000 +2803 1602 0.400000 +2803 1678 0.400000 +2803 1718 0.400000 +2803 1760 0.400000 +2803 1766 0.400000 +2803 1794 0.400000 +2803 1800 0.400000 +2803 1808 0.400000 +2803 1841 0.400000 +2803 1930 0.400000 +2803 1960 0.400000 +2803 2007 0.400000 +2803 2073 0.400000 +2803 2074 0.400000 +2803 2223 0.400000 +2803 2243 0.400000 +2803 2259 0.400000 +2803 2303 0.400000 +2803 2317 0.400000 +2803 2319 0.400000 +2803 2321 0.400000 +2803 2371 0.400000 +2803 2401 0.400000 +2803 2428 0.400000 +2803 2467 0.400000 +2803 2578 0.400000 +2803 2582 0.400000 +2803 2704 0.400000 +2803 2831 0.400000 +2803 2851 0.400000 +2803 2852 0.400000 +2803 2889 0.400000 +2803 2892 0.400000 +2803 2950 0.400000 +2803 2952 0.400000 +2803 2964 0.400000 +2803 2994 0.400000 +2803 3011 0.400000 +2803 3067 0.400000 +2803 3112 0.400000 +2803 3189 0.400000 +2803 3198 0.400000 +2804 5 0.400000 +2804 60 0.400000 +2804 112 0.400000 +2804 143 0.400000 +2804 221 0.400000 +2804 283 0.400000 +2804 312 0.400000 +2804 326 0.400000 +2804 353 0.400000 +2804 376 0.400000 +2804 428 0.400000 +2804 553 0.400000 +2804 585 0.400000 +2804 626 0.400000 +2804 627 0.400000 +2804 637 0.400000 +2804 643 0.400000 +2804 670 0.400000 +2804 759 0.400000 +2804 765 0.400000 +2804 789 0.400000 +2804 910 0.400000 +2804 1036 0.400000 +2804 1102 0.400000 +2804 1162 0.400000 +2804 1332 0.400000 +2804 1509 0.400000 +2804 1573 0.400000 +2804 1676 0.400000 +2804 1677 0.400000 +2804 1724 0.400000 +2804 1750 0.400000 +2804 1782 0.400000 +2804 1797 0.400000 +2804 2113 0.400000 +2804 2157 0.400000 +2804 2186 0.400000 +2804 2237 0.400000 +2804 2322 0.400000 +2804 2445 0.400000 +2804 2458 0.400000 +2804 2489 0.400000 +2804 2506 0.400000 +2804 2513 0.400000 +2804 2607 0.400000 +2804 2750 0.400000 +2804 2907 0.400000 +2804 2931 0.400000 +2804 2941 0.400000 +2804 3048 0.400000 +2804 3106 0.400000 +2804 3117 0.400000 +2805 8 0.400000 +2805 72 0.400000 +2805 79 0.400000 +2805 91 0.400000 +2805 188 0.400000 +2805 191 0.400000 +2805 194 0.400000 +2805 198 0.400000 +2805 230 0.400000 +2805 245 0.400000 +2805 290 0.400000 +2805 321 0.400000 +2805 458 0.400000 +2805 513 0.400000 +2805 549 0.400000 +2805 564 0.400000 +2805 599 0.400000 +2805 628 0.400000 +2805 637 0.400000 +2805 648 0.400000 +2805 688 0.400000 +2805 729 0.400000 +2805 759 0.400000 +2805 764 0.400000 +2805 891 0.400000 +2805 951 0.400000 +2805 1079 0.400000 +2805 1109 0.400000 +2805 1135 0.400000 +2805 1145 0.400000 +2805 1182 0.400000 +2805 1190 0.400000 +2805 1240 0.400000 +2805 1253 0.400000 +2805 1443 0.400000 +2805 1519 0.400000 +2805 1587 0.400000 +2805 1603 0.400000 +2805 1702 0.400000 +2805 1797 0.400000 +2805 1871 0.400000 +2805 1884 0.400000 +2805 1906 0.400000 +2805 1983 0.400000 +2805 2005 0.400000 +2805 2012 0.400000 +2805 2027 0.400000 +2805 2093 0.400000 +2805 2112 0.400000 +2805 2117 0.400000 +2805 2134 0.400000 +2805 2250 0.400000 +2805 2347 0.400000 +2805 2350 0.400000 +2805 2373 0.400000 +2805 2380 0.400000 +2805 2383 0.400000 +2805 2411 0.400000 +2805 2517 0.400000 +2805 2550 0.400000 +2805 2554 0.400000 +2805 2575 0.400000 +2805 2604 0.400000 +2805 2606 0.400000 +2805 2713 0.400000 +2805 2756 0.400000 +2805 2769 0.400000 +2805 2808 0.400000 +2805 2817 0.400000 +2805 2840 0.400000 +2805 2869 0.400000 +2805 2905 0.400000 +2805 2943 0.400000 +2805 2958 0.400000 +2805 2975 0.400000 +2805 3014 0.400000 +2805 3017 0.400000 +2805 3161 0.400000 +2805 3176 0.400000 +2806 84 0.400000 +2806 90 0.400000 +2806 143 0.400000 +2806 223 0.400000 +2806 300 0.400000 +2806 318 0.400000 +2806 333 0.400000 +2806 354 0.400000 +2806 420 0.400000 +2806 546 0.400000 +2806 595 0.400000 +2806 609 0.400000 +2806 622 0.400000 +2806 755 0.400000 +2806 841 0.400000 +2806 889 0.400000 +2806 895 0.400000 +2806 915 0.400000 +2806 958 0.400000 +2806 1040 0.400000 +2806 1076 0.400000 +2806 1197 0.400000 +2806 1286 0.400000 +2806 1413 0.400000 +2806 1418 0.400000 +2806 1475 0.400000 +2806 1489 0.400000 +2806 1515 0.400000 +2806 1546 0.400000 +2806 1558 0.400000 +2806 1595 0.400000 +2806 1735 0.400000 +2806 1826 0.400000 +2806 1848 0.400000 +2806 1902 0.400000 +2806 1926 0.400000 +2806 1927 0.400000 +2806 1929 0.400000 +2806 1944 0.400000 +2806 2046 0.400000 +2806 2076 0.400000 +2806 2087 0.400000 +2806 2285 0.400000 +2806 2296 0.400000 +2806 2318 0.400000 +2806 2408 0.400000 +2806 2417 0.400000 +2806 2428 0.400000 +2806 2552 0.400000 +2806 2584 0.400000 +2806 2608 0.400000 +2806 2707 0.400000 +2806 2736 0.400000 +2806 2743 0.400000 +2806 2789 0.400000 +2806 2881 0.400000 +2806 3029 0.400000 +2806 3063 0.400000 +2806 3087 0.400000 +2806 3098 0.400000 +2806 3119 0.400000 +2806 3150 0.400000 +2806 3200 0.400000 +2807 28 0.400000 +2807 134 0.400000 +2807 200 0.400000 +2807 210 0.400000 +2807 246 0.400000 +2807 285 0.400000 +2807 302 0.400000 +2807 303 0.400000 +2807 341 0.400000 +2807 362 0.400000 +2807 370 0.400000 +2807 377 0.400000 +2807 420 0.400000 +2807 429 0.400000 +2807 541 0.400000 +2807 564 0.400000 +2807 577 0.400000 +2807 701 0.400000 +2807 723 0.400000 +2807 856 0.400000 +2807 908 0.400000 +2807 909 0.400000 +2807 958 0.400000 +2807 1024 0.400000 +2807 1060 0.400000 +2807 1131 0.400000 +2807 1148 0.400000 +2807 1200 0.400000 +2807 1270 0.400000 +2807 1298 0.400000 +2807 1412 0.400000 +2807 1489 0.400000 +2807 1506 0.400000 +2807 1535 0.400000 +2807 1572 0.400000 +2807 1653 0.400000 +2807 1706 0.400000 +2807 1839 0.400000 +2807 1868 0.400000 +2807 1876 0.400000 +2807 1956 0.400000 +2807 2062 0.400000 +2807 2067 0.400000 +2807 2123 0.400000 +2807 2129 0.400000 +2807 2155 0.400000 +2807 2166 0.400000 +2807 2189 0.400000 +2807 2207 0.400000 +2807 2240 0.400000 +2807 2255 0.400000 +2807 2307 0.400000 +2807 2372 0.400000 +2807 2388 0.400000 +2807 2410 0.400000 +2807 2438 0.400000 +2807 2440 0.400000 +2807 2454 0.400000 +2807 2543 0.400000 +2807 2593 0.400000 +2807 2673 0.400000 +2807 2766 0.400000 +2807 2880 0.400000 +2807 2904 0.400000 +2807 3021 0.400000 +2807 3059 0.400000 +2807 3151 0.400000 +2808 29 0.400000 +2808 233 0.400000 +2808 255 0.400000 +2808 277 0.400000 +2808 316 0.400000 +2808 342 0.400000 +2808 385 0.400000 +2808 454 0.400000 +2808 475 0.400000 +2808 479 0.400000 +2808 564 0.400000 +2808 646 0.400000 +2808 688 0.400000 +2808 779 0.400000 +2808 840 0.400000 +2808 860 0.400000 +2808 886 0.400000 +2808 892 0.400000 +2808 912 0.400000 +2808 929 0.400000 +2808 942 0.400000 +2808 966 0.400000 +2808 970 0.400000 +2808 979 0.400000 +2808 1026 0.400000 +2808 1199 0.400000 +2808 1264 0.400000 +2808 1304 0.400000 +2808 1422 0.400000 +2808 1457 0.400000 +2808 1463 0.400000 +2808 1534 0.400000 +2808 1567 0.400000 +2808 1671 0.400000 +2808 1735 0.400000 +2808 1756 0.400000 +2808 1771 0.400000 +2808 1821 0.400000 +2808 1859 0.400000 +2808 1879 0.400000 +2808 1918 0.400000 +2808 2095 0.400000 +2808 2190 0.400000 +2808 2191 0.400000 +2808 2244 0.400000 +2808 2288 0.400000 +2808 2289 0.400000 +2808 2309 0.400000 +2808 2319 0.400000 +2808 2465 0.400000 +2808 2517 0.400000 +2808 2548 0.400000 +2808 2555 0.400000 +2808 2624 0.400000 +2808 2737 0.400000 +2808 2752 0.400000 +2808 2768 0.400000 +2808 2814 0.400000 +2808 2819 0.400000 +2808 2856 0.400000 +2808 2884 0.400000 +2808 2917 0.400000 +2808 2964 0.400000 +2808 2972 0.400000 +2808 3004 0.400000 +2808 3039 0.400000 +2808 3095 0.400000 +2808 3164 0.400000 +2809 7 0.400000 +2809 22 0.400000 +2809 64 0.400000 +2809 93 0.400000 +2809 117 0.400000 +2809 284 0.400000 +2809 353 0.400000 +2809 369 0.400000 +2809 492 0.400000 +2809 601 0.400000 +2809 646 0.400000 +2809 657 0.400000 +2809 659 0.400000 +2809 675 0.400000 +2809 678 0.400000 +2809 704 0.400000 +2809 730 0.400000 +2809 732 0.400000 +2809 756 0.400000 +2809 876 0.400000 +2809 888 0.400000 +2809 988 0.400000 +2809 991 0.400000 +2809 1022 0.400000 +2809 1057 0.400000 +2809 1135 0.400000 +2809 1174 0.400000 +2809 1259 0.400000 +2809 1267 0.400000 +2809 1285 0.400000 +2809 1332 0.400000 +2809 1502 0.400000 +2809 1505 0.400000 +2809 1513 0.400000 +2809 1594 0.400000 +2809 1635 0.400000 +2809 1683 0.400000 +2809 1759 0.400000 +2809 1799 0.400000 +2809 2005 0.400000 +2809 2043 0.400000 +2809 2072 0.400000 +2809 2123 0.400000 +2809 2146 0.400000 +2809 2186 0.400000 +2809 2301 0.400000 +2809 2381 0.400000 +2809 2572 0.400000 +2809 2579 0.400000 +2809 2654 0.400000 +2809 2725 0.400000 +2809 2740 0.400000 +2809 2763 0.400000 +2809 2811 0.400000 +2809 2812 0.400000 +2809 2822 0.400000 +2809 2942 0.400000 +2809 2975 0.400000 +2809 2994 0.400000 +2809 3063 0.400000 +2809 3136 0.400000 +2810 59 0.400000 +2810 140 0.400000 +2810 156 0.400000 +2810 252 0.400000 +2810 270 0.400000 +2810 365 0.400000 +2810 368 0.400000 +2810 409 0.400000 +2810 427 0.400000 +2810 481 0.400000 +2810 551 0.400000 +2810 642 0.400000 +2810 676 0.400000 +2810 754 0.400000 +2810 830 0.400000 +2810 869 0.400000 +2810 876 0.400000 +2810 1041 0.400000 +2810 1092 0.400000 +2810 1173 0.400000 +2810 1212 0.400000 +2810 1231 0.400000 +2810 1282 0.400000 +2810 1302 0.400000 +2810 1366 0.400000 +2810 1379 0.400000 +2810 1390 0.400000 +2810 1431 0.400000 +2810 1454 0.400000 +2810 1600 0.400000 +2810 1656 0.400000 +2810 1932 0.400000 +2810 2067 0.400000 +2810 2084 0.400000 +2810 2085 0.400000 +2810 2140 0.400000 +2810 2381 0.400000 +2810 2391 0.400000 +2810 2397 0.400000 +2810 2507 0.400000 +2810 2512 0.400000 +2810 2577 0.400000 +2810 2580 0.400000 +2810 2586 0.400000 +2810 2589 0.400000 +2810 2616 0.400000 +2810 2637 0.400000 +2810 2708 0.400000 +2810 2742 0.400000 +2810 2746 0.400000 +2810 2813 0.400000 +2810 2854 0.400000 +2810 2868 0.400000 +2810 2926 0.400000 +2810 3006 0.400000 +2810 3045 0.400000 +2810 3086 0.400000 +2810 3169 0.400000 +2810 3174 0.400000 +2811 22 0.400000 +2811 40 0.400000 +2811 59 0.400000 +2811 120 0.400000 +2811 273 0.400000 +2811 308 0.400000 +2811 320 0.400000 +2811 373 0.400000 +2811 423 0.400000 +2811 500 0.400000 +2811 524 0.400000 +2811 664 0.400000 +2811 858 0.400000 +2811 872 0.400000 +2811 906 0.400000 +2811 938 0.400000 +2811 1022 0.400000 +2811 1027 0.400000 +2811 1039 0.400000 +2811 1141 0.400000 +2811 1160 0.400000 +2811 1203 0.400000 +2811 1218 0.400000 +2811 1367 0.400000 +2811 1378 0.400000 +2811 1386 0.400000 +2811 1410 0.400000 +2811 1574 0.400000 +2811 1607 0.400000 +2811 1622 0.400000 +2811 1623 0.400000 +2811 1634 0.400000 +2811 1655 0.400000 +2811 1678 0.400000 +2811 1775 0.400000 +2811 1807 0.400000 +2811 1877 0.400000 +2811 1882 0.400000 +2811 1923 0.400000 +2811 1941 0.400000 +2811 1968 0.400000 +2811 1991 0.400000 +2811 2155 0.400000 +2811 2164 0.400000 +2811 2167 0.400000 +2811 2221 0.400000 +2811 2482 0.400000 +2811 2490 0.400000 +2811 2500 0.400000 +2811 2516 0.400000 +2811 2691 0.400000 +2811 2693 0.400000 +2811 2703 0.400000 +2811 2804 0.400000 +2811 2931 0.400000 +2811 3118 0.400000 +2811 3176 0.400000 +2812 51 0.400000 +2812 53 0.400000 +2812 77 0.400000 +2812 148 0.400000 +2812 179 0.400000 +2812 204 0.400000 +2812 259 0.400000 +2812 293 0.400000 +2812 352 0.400000 +2812 360 0.400000 +2812 518 0.400000 +2812 614 0.400000 +2812 654 0.400000 +2812 678 0.400000 +2812 710 0.400000 +2812 729 0.400000 +2812 786 0.400000 +2812 815 0.400000 +2812 826 0.400000 +2812 920 0.400000 +2812 936 0.400000 +2812 974 0.400000 +2812 1089 0.400000 +2812 1105 0.400000 +2812 1167 0.400000 +2812 1169 0.400000 +2812 1181 0.400000 +2812 1223 0.400000 +2812 1350 0.400000 +2812 1483 0.400000 +2812 1539 0.400000 +2812 1574 0.400000 +2812 1614 0.400000 +2812 1625 0.400000 +2812 1681 0.400000 +2812 1702 0.400000 +2812 1707 0.400000 +2812 1710 0.400000 +2812 1752 0.400000 +2812 1818 0.400000 +2812 1862 0.400000 +2812 1968 0.400000 +2812 2046 0.400000 +2812 2111 0.400000 +2812 2159 0.400000 +2812 2174 0.400000 +2812 2254 0.400000 +2812 2262 0.400000 +2812 2317 0.400000 +2812 2318 0.400000 +2812 2334 0.400000 +2812 2594 0.400000 +2812 2610 0.400000 +2812 2692 0.400000 +2812 2743 0.400000 +2812 2750 0.400000 +2812 2813 0.400000 +2812 2904 0.400000 +2812 3032 0.400000 +2812 3067 0.400000 +2813 6 0.400000 +2813 58 0.400000 +2813 113 0.400000 +2813 392 0.400000 +2813 397 0.400000 +2813 399 0.400000 +2813 516 0.400000 +2813 520 0.400000 +2813 528 0.400000 +2813 607 0.400000 +2813 617 0.400000 +2813 704 0.400000 +2813 708 0.400000 +2813 722 0.400000 +2813 848 0.400000 +2813 896 0.400000 +2813 999 0.400000 +2813 1002 0.400000 +2813 1045 0.400000 +2813 1111 0.400000 +2813 1142 0.400000 +2813 1146 0.400000 +2813 1302 0.400000 +2813 1371 0.400000 +2813 1430 0.400000 +2813 1434 0.400000 +2813 1446 0.400000 +2813 1454 0.400000 +2813 1484 0.400000 +2813 1495 0.400000 +2813 1516 0.400000 +2813 1538 0.400000 +2813 1573 0.400000 +2813 1622 0.400000 +2813 1631 0.400000 +2813 1688 0.400000 +2813 1693 0.400000 +2813 1747 0.400000 +2813 1769 0.400000 +2813 1805 0.400000 +2813 1874 0.400000 +2813 1911 0.400000 +2813 1981 0.400000 +2813 2074 0.400000 +2813 2141 0.400000 +2813 2246 0.400000 +2813 2267 0.400000 +2813 2284 0.400000 +2813 2287 0.400000 +2813 2579 0.400000 +2813 2590 0.400000 +2813 2601 0.400000 +2813 2679 0.400000 +2813 2708 0.400000 +2813 2772 0.400000 +2813 2799 0.400000 +2813 2840 0.400000 +2813 2935 0.400000 +2813 3125 0.400000 +2814 136 0.400000 +2814 273 0.400000 +2814 313 0.400000 +2814 353 0.400000 +2814 360 0.400000 +2814 367 0.400000 +2814 398 0.400000 +2814 478 0.400000 +2814 504 0.400000 +2814 522 0.400000 +2814 534 0.400000 +2814 633 0.400000 +2814 776 0.400000 +2814 786 0.400000 +2814 870 0.400000 +2814 934 0.400000 +2814 958 0.400000 +2814 964 0.400000 +2814 988 0.400000 +2814 1019 0.400000 +2814 1028 0.400000 +2814 1212 0.400000 +2814 1242 0.400000 +2814 1512 0.400000 +2814 1527 0.400000 +2814 1531 0.400000 +2814 1583 0.400000 +2814 1604 0.400000 +2814 1622 0.400000 +2814 1695 0.400000 +2814 1773 0.400000 +2814 1855 0.400000 +2814 1922 0.400000 +2814 1960 0.400000 +2814 1981 0.400000 +2814 2050 0.400000 +2814 2053 0.400000 +2814 2057 0.400000 +2814 2129 0.400000 +2814 2130 0.400000 +2814 2251 0.400000 +2814 2256 0.400000 +2814 2346 0.400000 +2814 2400 0.400000 +2814 2406 0.400000 +2814 2505 0.400000 +2814 2543 0.400000 +2814 2551 0.400000 +2814 2555 0.400000 +2814 2715 0.400000 +2814 2738 0.400000 +2814 2778 0.400000 +2814 2783 0.400000 +2814 2833 0.400000 +2814 2976 0.400000 +2814 2985 0.400000 +2814 3008 0.400000 +2814 3019 0.400000 +2814 3027 0.400000 +2814 3040 0.400000 +2814 3078 0.400000 +2814 3144 0.400000 +2815 36 0.400000 +2815 152 0.400000 +2815 191 0.400000 +2815 201 0.400000 +2815 238 0.400000 +2815 260 0.400000 +2815 263 0.400000 +2815 281 0.400000 +2815 356 0.400000 +2815 385 0.400000 +2815 460 0.400000 +2815 484 0.400000 +2815 549 0.400000 +2815 559 0.400000 +2815 695 0.400000 +2815 724 0.400000 +2815 781 0.400000 +2815 919 0.400000 +2815 953 0.400000 +2815 954 0.400000 +2815 969 0.400000 +2815 1024 0.400000 +2815 1077 0.400000 +2815 1205 0.400000 +2815 1234 0.400000 +2815 1324 0.400000 +2815 1392 0.400000 +2815 1436 0.400000 +2815 1440 0.400000 +2815 1463 0.400000 +2815 1507 0.400000 +2815 1534 0.400000 +2815 1558 0.400000 +2815 1576 0.400000 +2815 1580 0.400000 +2815 1699 0.400000 +2815 1704 0.400000 +2815 1740 0.400000 +2815 1755 0.400000 +2815 1850 0.400000 +2815 1858 0.400000 +2815 1894 0.400000 +2815 1935 0.400000 +2815 2001 0.400000 +2815 2005 0.400000 +2815 2033 0.400000 +2815 2036 0.400000 +2815 2196 0.400000 +2815 2199 0.400000 +2815 2310 0.400000 +2815 2331 0.400000 +2815 2368 0.400000 +2815 2401 0.400000 +2815 2483 0.400000 +2815 2497 0.400000 +2815 2612 0.400000 +2815 2675 0.400000 +2815 2690 0.400000 +2815 2731 0.400000 +2815 2735 0.400000 +2815 2767 0.400000 +2815 2943 0.400000 +2815 3039 0.400000 +2815 3089 0.400000 +2815 3091 0.400000 +2815 3105 0.400000 +2815 3119 0.400000 +2815 3149 0.400000 +2815 3193 0.400000 +2816 7 0.400000 +2816 12 0.400000 +2816 28 0.400000 +2816 52 0.400000 +2816 175 0.400000 +2816 213 0.400000 +2816 478 0.400000 +2816 509 0.400000 +2816 612 0.400000 +2816 720 0.400000 +2816 796 0.400000 +2816 800 0.400000 +2816 831 0.400000 +2816 835 0.400000 +2816 840 0.400000 +2816 847 0.400000 +2816 878 0.400000 +2816 880 0.400000 +2816 934 0.400000 +2816 945 0.400000 +2816 949 0.400000 +2816 967 0.400000 +2816 1069 0.400000 +2816 1192 0.400000 +2816 1261 0.400000 +2816 1285 0.400000 +2816 1309 0.400000 +2816 1456 0.400000 +2816 1537 0.400000 +2816 1558 0.400000 +2816 1604 0.400000 +2816 1821 0.400000 +2816 1831 0.400000 +2816 1840 0.400000 +2816 1875 0.400000 +2816 1949 0.400000 +2816 2005 0.400000 +2816 2008 0.400000 +2816 2034 0.400000 +2816 2066 0.400000 +2816 2072 0.400000 +2816 2146 0.400000 +2816 2207 0.400000 +2816 2211 0.400000 +2816 2230 0.400000 +2816 2297 0.400000 +2816 2300 0.400000 +2816 2312 0.400000 +2816 2333 0.400000 +2816 2357 0.400000 +2816 2429 0.400000 +2816 2434 0.400000 +2816 2478 0.400000 +2816 2598 0.400000 +2816 2615 0.400000 +2816 2636 0.400000 +2816 2663 0.400000 +2816 2774 0.400000 +2816 2780 0.400000 +2816 2792 0.400000 +2816 2803 0.400000 +2816 2893 0.400000 +2816 2924 0.400000 +2816 2931 0.400000 +2816 2947 0.400000 +2816 2967 0.400000 +2816 3047 0.400000 +2816 3097 0.400000 +2816 3130 0.400000 +2817 2 0.400000 +2817 15 0.400000 +2817 16 0.400000 +2817 50 0.400000 +2817 152 0.400000 +2817 157 0.400000 +2817 178 0.400000 +2817 317 0.400000 +2817 329 0.400000 +2817 429 0.400000 +2817 438 0.400000 +2817 480 0.400000 +2817 487 0.400000 +2817 535 0.400000 +2817 653 0.400000 +2817 761 0.400000 +2817 767 0.400000 +2817 799 0.400000 +2817 801 0.400000 +2817 809 0.400000 +2817 926 0.400000 +2817 939 0.400000 +2817 1021 0.400000 +2817 1140 0.400000 +2817 1149 0.400000 +2817 1199 0.400000 +2817 1209 0.400000 +2817 1244 0.400000 +2817 1298 0.400000 +2817 1346 0.400000 +2817 1370 0.400000 +2817 1381 0.400000 +2817 1387 0.400000 +2817 1400 0.400000 +2817 1434 0.400000 +2817 1503 0.400000 +2817 1538 0.400000 +2817 1597 0.400000 +2817 1624 0.400000 +2817 1636 0.400000 +2817 1658 0.400000 +2817 1811 0.400000 +2817 1903 0.400000 +2817 1922 0.400000 +2817 2057 0.400000 +2817 2089 0.400000 +2817 2185 0.400000 +2817 2218 0.400000 +2817 2227 0.400000 +2817 2306 0.400000 +2817 2370 0.400000 +2817 2442 0.400000 +2817 2626 0.400000 +2817 2633 0.400000 +2817 2670 0.400000 +2817 2679 0.400000 +2817 2758 0.400000 +2817 2920 0.400000 +2817 2941 0.400000 +2817 2963 0.400000 +2817 3033 0.400000 +2817 3034 0.400000 +2817 3073 0.400000 +2817 3167 0.400000 +2817 3197 0.400000 +2818 56 0.400000 +2818 275 0.400000 +2818 348 0.400000 +2818 387 0.400000 +2818 412 0.400000 +2818 439 0.400000 +2818 448 0.400000 +2818 603 0.400000 +2818 608 0.400000 +2818 650 0.400000 +2818 762 0.400000 +2818 809 0.400000 +2818 811 0.400000 +2818 878 0.400000 +2818 902 0.400000 +2818 948 0.400000 +2818 1060 0.400000 +2818 1099 0.400000 +2818 1183 0.400000 +2818 1205 0.400000 +2818 1267 0.400000 +2818 1295 0.400000 +2818 1330 0.400000 +2818 1436 0.400000 +2818 1455 0.400000 +2818 1476 0.400000 +2818 1535 0.400000 +2818 1558 0.400000 +2818 1679 0.400000 +2818 1723 0.400000 +2818 1729 0.400000 +2818 1879 0.400000 +2818 1913 0.400000 +2818 1956 0.400000 +2818 1967 0.400000 +2818 1998 0.400000 +2818 1999 0.400000 +2818 2007 0.400000 +2818 2059 0.400000 +2818 2087 0.400000 +2818 2115 0.400000 +2818 2188 0.400000 +2818 2275 0.400000 +2818 2277 0.400000 +2818 2281 0.400000 +2818 2284 0.400000 +2818 2449 0.400000 +2818 2513 0.400000 +2818 2576 0.400000 +2818 2610 0.400000 +2818 2672 0.400000 +2818 2679 0.400000 +2818 2691 0.400000 +2818 2798 0.400000 +2818 2819 0.400000 +2818 2845 0.400000 +2818 2945 0.400000 +2818 3188 0.400000 +2819 41 0.400000 +2819 49 0.400000 +2819 115 0.400000 +2819 133 0.400000 +2819 210 0.400000 +2819 271 0.400000 +2819 355 0.400000 +2819 387 0.400000 +2819 457 0.400000 +2819 466 0.400000 +2819 507 0.400000 +2819 561 0.400000 +2819 689 0.400000 +2819 759 0.400000 +2819 814 0.400000 +2819 847 0.400000 +2819 862 0.400000 +2819 1069 0.400000 +2819 1079 0.400000 +2819 1139 0.400000 +2819 1211 0.400000 +2819 1241 0.400000 +2819 1279 0.400000 +2819 1280 0.400000 +2819 1341 0.400000 +2819 1388 0.400000 +2819 1428 0.400000 +2819 1440 0.400000 +2819 1521 0.400000 +2819 1570 0.400000 +2819 1574 0.400000 +2819 1575 0.400000 +2819 1598 0.400000 +2819 1811 0.400000 +2819 1863 0.400000 +2819 1875 0.400000 +2819 1954 0.400000 +2819 1963 0.400000 +2819 2046 0.400000 +2819 2108 0.400000 +2819 2170 0.400000 +2819 2172 0.400000 +2819 2297 0.400000 +2819 2339 0.400000 +2819 2353 0.400000 +2819 2382 0.400000 +2819 2457 0.400000 +2819 2470 0.400000 +2819 2479 0.400000 +2819 2605 0.400000 +2819 2780 0.400000 +2819 2804 0.400000 +2819 2843 0.400000 +2819 2871 0.400000 +2819 2916 0.400000 +2819 2948 0.400000 +2819 3029 0.400000 +2819 3033 0.400000 +2819 3084 0.400000 +2819 3085 0.400000 +2819 3116 0.400000 +2820 221 0.400000 +2820 315 0.400000 +2820 395 0.400000 +2820 408 0.400000 +2820 561 0.400000 +2820 568 0.400000 +2820 600 0.400000 +2820 623 0.400000 +2820 660 0.400000 +2820 769 0.400000 +2820 808 0.400000 +2820 869 0.400000 +2820 924 0.400000 +2820 1046 0.400000 +2820 1102 0.400000 +2820 1127 0.400000 +2820 1178 0.400000 +2820 1213 0.400000 +2820 1376 0.400000 +2820 1380 0.400000 +2820 1402 0.400000 +2820 1528 0.400000 +2820 1551 0.400000 +2820 1736 0.400000 +2820 1830 0.400000 +2820 1909 0.400000 +2820 1992 0.400000 +2820 2000 0.400000 +2820 2048 0.400000 +2820 2207 0.400000 +2820 2239 0.400000 +2820 2295 0.400000 +2820 2322 0.400000 +2820 2377 0.400000 +2820 2378 0.400000 +2820 2399 0.400000 +2820 2406 0.400000 +2820 2432 0.400000 +2820 2543 0.400000 +2820 2603 0.400000 +2820 2687 0.400000 +2820 2712 0.400000 +2820 2714 0.400000 +2820 2761 0.400000 +2820 2789 0.400000 +2820 2897 0.400000 +2820 2913 0.400000 +2820 2974 0.400000 +2820 2995 0.400000 +2820 3037 0.400000 +2821 32 0.400000 +2821 146 0.400000 +2821 148 0.400000 +2821 167 0.400000 +2821 251 0.400000 +2821 288 0.400000 +2821 302 0.400000 +2821 367 0.400000 +2821 465 0.400000 +2821 470 0.400000 +2821 483 0.400000 +2821 518 0.400000 +2821 539 0.400000 +2821 560 0.400000 +2821 753 0.400000 +2821 764 0.400000 +2821 933 0.400000 +2821 952 0.400000 +2821 1008 0.400000 +2821 1051 0.400000 +2821 1059 0.400000 +2821 1222 0.400000 +2821 1227 0.400000 +2821 1312 0.400000 +2821 1382 0.400000 +2821 1467 0.400000 +2821 1554 0.400000 +2821 1591 0.400000 +2821 1683 0.400000 +2821 1705 0.400000 +2821 1831 0.400000 +2821 1915 0.400000 +2821 1931 0.400000 +2821 2070 0.400000 +2821 2197 0.400000 +2821 2218 0.400000 +2821 2246 0.400000 +2821 2284 0.400000 +2821 2306 0.400000 +2821 2312 0.400000 +2821 2335 0.400000 +2821 2371 0.400000 +2821 2513 0.400000 +2821 2532 0.400000 +2821 2546 0.400000 +2821 2554 0.400000 +2821 2619 0.400000 +2821 2625 0.400000 +2821 2644 0.400000 +2821 2679 0.400000 +2821 2773 0.400000 +2821 2802 0.400000 +2821 2818 0.400000 +2821 2860 0.400000 +2821 2865 0.400000 +2821 2914 0.400000 +2821 3047 0.400000 +2821 3063 0.400000 +2822 48 0.400000 +2822 75 0.400000 +2822 99 0.400000 +2822 128 0.400000 +2822 266 0.400000 +2822 295 0.400000 +2822 329 0.400000 +2822 385 0.400000 +2822 386 0.400000 +2822 402 0.400000 +2822 425 0.400000 +2822 462 0.400000 +2822 572 0.400000 +2822 619 0.400000 +2822 659 0.400000 +2822 693 0.400000 +2822 765 0.400000 +2822 770 0.400000 +2822 797 0.400000 +2822 890 0.400000 +2822 896 0.400000 +2822 932 0.400000 +2822 947 0.400000 +2822 989 0.400000 +2822 1062 0.400000 +2822 1063 0.400000 +2822 1196 0.400000 +2822 1300 0.400000 +2822 1424 0.400000 +2822 1436 0.400000 +2822 1529 0.400000 +2822 1593 0.400000 +2822 1635 0.400000 +2822 1685 0.400000 +2822 1748 0.400000 +2822 1795 0.400000 +2822 1848 0.400000 +2822 1943 0.400000 +2822 2073 0.400000 +2822 2092 0.400000 +2822 2118 0.400000 +2822 2195 0.400000 +2822 2245 0.400000 +2822 2265 0.400000 +2822 2279 0.400000 +2822 2307 0.400000 +2822 2410 0.400000 +2822 2448 0.400000 +2822 2485 0.400000 +2822 2564 0.400000 +2822 2705 0.400000 +2822 2721 0.400000 +2822 2773 0.400000 +2822 2801 0.400000 +2822 2829 0.400000 +2822 2883 0.400000 +2822 3027 0.400000 +2822 3159 0.400000 +2823 37 0.400000 +2823 40 0.400000 +2823 64 0.400000 +2823 119 0.400000 +2823 290 0.400000 +2823 302 0.400000 +2823 329 0.400000 +2823 400 0.400000 +2823 421 0.400000 +2823 434 0.400000 +2823 448 0.400000 +2823 576 0.400000 +2823 651 0.400000 +2823 699 0.400000 +2823 701 0.400000 +2823 704 0.400000 +2823 752 0.400000 +2823 771 0.400000 +2823 824 0.400000 +2823 836 0.400000 +2823 856 0.400000 +2823 858 0.400000 +2823 881 0.400000 +2823 935 0.400000 +2823 1030 0.400000 +2823 1078 0.400000 +2823 1081 0.400000 +2823 1135 0.400000 +2823 1183 0.400000 +2823 1213 0.400000 +2823 1234 0.400000 +2823 1326 0.400000 +2823 1368 0.400000 +2823 1424 0.400000 +2823 1509 0.400000 +2823 1537 0.400000 +2823 1717 0.400000 +2823 1744 0.400000 +2823 1748 0.400000 +2823 1791 0.400000 +2823 1833 0.400000 +2823 1895 0.400000 +2823 1938 0.400000 +2823 2120 0.400000 +2823 2146 0.400000 +2823 2152 0.400000 +2823 2176 0.400000 +2823 2219 0.400000 +2823 2249 0.400000 +2823 2370 0.400000 +2823 2378 0.400000 +2823 2381 0.400000 +2823 2393 0.400000 +2823 2419 0.400000 +2823 2420 0.400000 +2823 2441 0.400000 +2823 2452 0.400000 +2823 2535 0.400000 +2823 2606 0.400000 +2823 2639 0.400000 +2823 2683 0.400000 +2823 2696 0.400000 +2823 2719 0.400000 +2823 2761 0.400000 +2823 2830 0.400000 +2823 2942 0.400000 +2823 2955 0.400000 +2823 2997 0.400000 +2823 2999 0.400000 +2823 3055 0.400000 +2823 3062 0.400000 +2823 3071 0.400000 +2823 3117 0.400000 +2823 3195 0.400000 +2824 6 0.400000 +2824 39 0.400000 +2824 74 0.400000 +2824 95 0.400000 +2824 126 0.400000 +2824 129 0.400000 +2824 133 0.400000 +2824 150 0.400000 +2824 192 0.400000 +2824 236 0.400000 +2824 355 0.400000 +2824 359 0.400000 +2824 369 0.400000 +2824 388 0.400000 +2824 405 0.400000 +2824 426 0.400000 +2824 470 0.400000 +2824 515 0.400000 +2824 586 0.400000 +2824 698 0.400000 +2824 741 0.400000 +2824 965 0.400000 +2824 971 0.400000 +2824 1086 0.400000 +2824 1262 0.400000 +2824 1272 0.400000 +2824 1346 0.400000 +2824 1379 0.400000 +2824 1386 0.400000 +2824 1424 0.400000 +2824 1439 0.400000 +2824 1482 0.400000 +2824 1619 0.400000 +2824 1622 0.400000 +2824 1738 0.400000 +2824 1762 0.400000 +2824 1813 0.400000 +2824 1818 0.400000 +2824 1872 0.400000 +2824 1969 0.400000 +2824 1994 0.400000 +2824 2019 0.400000 +2824 2031 0.400000 +2824 2042 0.400000 +2824 2043 0.400000 +2824 2116 0.400000 +2824 2120 0.400000 +2824 2246 0.400000 +2824 2251 0.400000 +2824 2252 0.400000 +2824 2394 0.400000 +2824 2402 0.400000 +2824 2449 0.400000 +2824 2491 0.400000 +2824 2557 0.400000 +2824 2702 0.400000 +2824 2752 0.400000 +2824 2794 0.400000 +2824 2838 0.400000 +2824 2839 0.400000 +2824 2870 0.400000 +2824 2919 0.400000 +2824 2998 0.400000 +2824 3020 0.400000 +2824 3084 0.400000 +2824 3098 0.400000 +2824 3195 0.400000 +2825 32 0.400000 +2825 68 0.400000 +2825 102 0.400000 +2825 174 0.400000 +2825 194 0.400000 +2825 309 0.400000 +2825 355 0.400000 +2825 357 0.400000 +2825 407 0.400000 +2825 479 0.400000 +2825 496 0.400000 +2825 510 0.400000 +2825 537 0.400000 +2825 540 0.400000 +2825 556 0.400000 +2825 576 0.400000 +2825 583 0.400000 +2825 584 0.400000 +2825 610 0.400000 +2825 634 0.400000 +2825 722 0.400000 +2825 801 0.400000 +2825 806 0.400000 +2825 853 0.400000 +2825 1015 0.400000 +2825 1073 0.400000 +2825 1075 0.400000 +2825 1149 0.400000 +2825 1187 0.400000 +2825 1207 0.400000 +2825 1233 0.400000 +2825 1234 0.400000 +2825 1284 0.400000 +2825 1338 0.400000 +2825 1370 0.400000 +2825 1375 0.400000 +2825 1486 0.400000 +2825 1526 0.400000 +2825 1628 0.400000 +2825 1678 0.400000 +2825 1688 0.400000 +2825 1699 0.400000 +2825 1703 0.400000 +2825 1717 0.400000 +2825 1729 0.400000 +2825 1821 0.400000 +2825 1838 0.400000 +2825 1867 0.400000 +2825 1882 0.400000 +2825 1886 0.400000 +2825 1905 0.400000 +2825 1951 0.400000 +2825 1962 0.400000 +2825 2006 0.400000 +2825 2127 0.400000 +2825 2134 0.400000 +2825 2176 0.400000 +2825 2180 0.400000 +2825 2191 0.400000 +2825 2238 0.400000 +2825 2284 0.400000 +2825 2293 0.400000 +2825 2310 0.400000 +2825 2376 0.400000 +2825 2411 0.400000 +2825 2416 0.400000 +2825 2637 0.400000 +2825 2641 0.400000 +2825 2684 0.400000 +2825 2711 0.400000 +2825 2730 0.400000 +2825 2792 0.400000 +2825 2839 0.400000 +2825 2853 0.400000 +2825 2855 0.400000 +2825 2897 0.400000 +2825 2945 0.400000 +2825 2955 0.400000 +2825 2989 0.400000 +2825 3052 0.400000 +2825 3085 0.400000 +2825 3096 0.400000 +2826 143 0.400000 +2826 159 0.400000 +2826 258 0.400000 +2826 443 0.400000 +2826 506 0.400000 +2826 546 0.400000 +2826 607 0.400000 +2826 640 0.400000 +2826 681 0.400000 +2826 682 0.400000 +2826 746 0.400000 +2826 835 0.400000 +2826 896 0.400000 +2826 966 0.400000 +2826 1036 0.400000 +2826 1095 0.400000 +2826 1118 0.400000 +2826 1188 0.400000 +2826 1210 0.400000 +2826 1211 0.400000 +2826 1273 0.400000 +2826 1339 0.400000 +2826 1366 0.400000 +2826 1400 0.400000 +2826 1452 0.400000 +2826 1504 0.400000 +2826 1534 0.400000 +2826 1545 0.400000 +2826 1711 0.400000 +2826 1802 0.400000 +2826 1851 0.400000 +2826 1960 0.400000 +2826 1977 0.400000 +2826 2024 0.400000 +2826 2060 0.400000 +2826 2088 0.400000 +2826 2108 0.400000 +2826 2166 0.400000 +2826 2174 0.400000 +2826 2251 0.400000 +2826 2278 0.400000 +2826 2295 0.400000 +2826 2368 0.400000 +2826 2445 0.400000 +2826 2524 0.400000 +2826 2542 0.400000 +2826 2566 0.400000 +2826 2594 0.400000 +2826 2605 0.400000 +2826 2673 0.400000 +2826 2756 0.400000 +2826 2778 0.400000 +2826 2817 0.400000 +2826 3076 0.400000 +2826 3096 0.400000 +2827 26 0.400000 +2827 173 0.400000 +2827 181 0.400000 +2827 443 0.400000 +2827 446 0.400000 +2827 454 0.400000 +2827 598 0.400000 +2827 608 0.400000 +2827 628 0.400000 +2827 672 0.400000 +2827 688 0.400000 +2827 731 0.400000 +2827 734 0.400000 +2827 746 0.400000 +2827 763 0.400000 +2827 908 0.400000 +2827 1120 0.400000 +2827 1127 0.400000 +2827 1247 0.400000 +2827 1285 0.400000 +2827 1292 0.400000 +2827 1323 0.400000 +2827 1377 0.400000 +2827 1395 0.400000 +2827 1404 0.400000 +2827 1409 0.400000 +2827 1414 0.400000 +2827 1432 0.400000 +2827 1433 0.400000 +2827 1448 0.400000 +2827 1466 0.400000 +2827 1479 0.400000 +2827 1499 0.400000 +2827 1501 0.400000 +2827 1602 0.400000 +2827 1609 0.400000 +2827 1783 0.400000 +2827 1820 0.400000 +2827 1917 0.400000 +2827 1951 0.400000 +2827 1977 0.400000 +2827 2087 0.400000 +2827 2161 0.400000 +2827 2251 0.400000 +2827 2323 0.400000 +2827 2334 0.400000 +2827 2377 0.400000 +2827 2425 0.400000 +2827 2427 0.400000 +2827 2464 0.400000 +2827 2485 0.400000 +2827 2563 0.400000 +2827 2575 0.400000 +2827 2614 0.400000 +2827 2668 0.400000 +2827 2674 0.400000 +2827 2700 0.400000 +2827 2762 0.400000 +2827 2771 0.400000 +2827 2797 0.400000 +2827 2808 0.400000 +2827 2826 0.400000 +2827 2903 0.400000 +2827 2932 0.400000 +2827 2953 0.400000 +2827 2966 0.400000 +2827 3096 0.400000 +2827 3103 0.400000 +2827 3186 0.400000 +2827 3187 0.400000 +2827 3198 0.400000 +2828 106 0.400000 +2828 118 0.400000 +2828 284 0.400000 +2828 296 0.400000 +2828 314 0.400000 +2828 346 0.400000 +2828 387 0.400000 +2828 401 0.400000 +2828 432 0.400000 +2828 464 0.400000 +2828 467 0.400000 +2828 656 0.400000 +2828 663 0.400000 +2828 751 0.400000 +2828 811 0.400000 +2828 884 0.400000 +2828 917 0.400000 +2828 946 0.400000 +2828 989 0.400000 +2828 1011 0.400000 +2828 1023 0.400000 +2828 1058 0.400000 +2828 1160 0.400000 +2828 1200 0.400000 +2828 1329 0.400000 +2828 1342 0.400000 +2828 1369 0.400000 +2828 1407 0.400000 +2828 1413 0.400000 +2828 1490 0.400000 +2828 1556 0.400000 +2828 1580 0.400000 +2828 1582 0.400000 +2828 1608 0.400000 +2828 1761 0.400000 +2828 1805 0.400000 +2828 1826 0.400000 +2828 1828 0.400000 +2828 1846 0.400000 +2828 1866 0.400000 +2828 1902 0.400000 +2828 1946 0.400000 +2828 1956 0.400000 +2828 1966 0.400000 +2828 1996 0.400000 +2828 2089 0.400000 +2828 2173 0.400000 +2828 2199 0.400000 +2828 2244 0.400000 +2828 2281 0.400000 +2828 2338 0.400000 +2828 2426 0.400000 +2828 2490 0.400000 +2828 2678 0.400000 +2828 2728 0.400000 +2828 2790 0.400000 +2828 2805 0.400000 +2828 2912 0.400000 +2828 2921 0.400000 +2828 3070 0.400000 +2828 3147 0.400000 +2828 3169 0.400000 +2828 3182 0.400000 +2829 29 0.400000 +2829 50 0.400000 +2829 62 0.400000 +2829 153 0.400000 +2829 179 0.400000 +2829 238 0.400000 +2829 260 0.400000 +2829 267 0.400000 +2829 326 0.400000 +2829 430 0.400000 +2829 482 0.400000 +2829 490 0.400000 +2829 518 0.400000 +2829 522 0.400000 +2829 568 0.400000 +2829 575 0.400000 +2829 578 0.400000 +2829 579 0.400000 +2829 664 0.400000 +2829 712 0.400000 +2829 714 0.400000 +2829 729 0.400000 +2829 756 0.400000 +2829 1044 0.400000 +2829 1094 0.400000 +2829 1097 0.400000 +2829 1140 0.400000 +2829 1337 0.400000 +2829 1372 0.400000 +2829 1445 0.400000 +2829 1584 0.400000 +2829 1590 0.400000 +2829 1598 0.400000 +2829 1612 0.400000 +2829 1711 0.400000 +2829 1766 0.400000 +2829 1767 0.400000 +2829 1790 0.400000 +2829 1851 0.400000 +2829 1927 0.400000 +2829 1977 0.400000 +2829 1998 0.400000 +2829 2044 0.400000 +2829 2052 0.400000 +2829 2087 0.400000 +2829 2151 0.400000 +2829 2335 0.400000 +2829 2345 0.400000 +2829 2417 0.400000 +2829 2515 0.400000 +2829 2538 0.400000 +2829 2577 0.400000 +2829 2588 0.400000 +2829 2660 0.400000 +2829 2785 0.400000 +2829 2862 0.400000 +2829 2863 0.400000 +2829 2872 0.400000 +2829 2909 0.400000 +2829 2942 0.400000 +2829 3023 0.400000 +2829 3037 0.400000 +2829 3067 0.400000 +2829 3130 0.400000 +2829 3142 0.400000 +2829 3171 0.400000 +2830 64 0.400000 +2830 86 0.400000 +2830 248 0.400000 +2830 259 0.400000 +2830 291 0.400000 +2830 408 0.400000 +2830 416 0.400000 +2830 538 0.400000 +2830 571 0.400000 +2830 622 0.400000 +2830 670 0.400000 +2830 689 0.400000 +2830 762 0.400000 +2830 783 0.400000 +2830 794 0.400000 +2830 871 0.400000 +2830 879 0.400000 +2830 948 0.400000 +2830 973 0.400000 +2830 976 0.400000 +2830 1085 0.400000 +2830 1098 0.400000 +2830 1185 0.400000 +2830 1192 0.400000 +2830 1266 0.400000 +2830 1352 0.400000 +2830 1357 0.400000 +2830 1479 0.400000 +2830 1486 0.400000 +2830 1653 0.400000 +2830 1687 0.400000 +2830 1712 0.400000 +2830 1755 0.400000 +2830 1795 0.400000 +2830 1828 0.400000 +2830 1986 0.400000 +2830 2065 0.400000 +2830 2103 0.400000 +2830 2118 0.400000 +2830 2178 0.400000 +2830 2221 0.400000 +2830 2230 0.400000 +2830 2305 0.400000 +2830 2330 0.400000 +2830 2400 0.400000 +2830 2412 0.400000 +2830 2433 0.400000 +2830 2520 0.400000 +2830 2526 0.400000 +2830 2619 0.400000 +2830 2671 0.400000 +2830 2757 0.400000 +2830 2819 0.400000 +2830 2924 0.400000 +2830 2964 0.400000 +2830 3076 0.400000 +2830 3137 0.400000 +2830 3165 0.400000 +2831 40 0.400000 +2831 73 0.400000 +2831 98 0.400000 +2831 128 0.400000 +2831 157 0.400000 +2831 184 0.400000 +2831 265 0.400000 +2831 350 0.400000 +2831 371 0.400000 +2831 405 0.400000 +2831 466 0.400000 +2831 592 0.400000 +2831 608 0.400000 +2831 619 0.400000 +2831 622 0.400000 +2831 723 0.400000 +2831 800 0.400000 +2831 806 0.400000 +2831 875 0.400000 +2831 942 0.400000 +2831 954 0.400000 +2831 1090 0.400000 +2831 1201 0.400000 +2831 1214 0.400000 +2831 1235 0.400000 +2831 1238 0.400000 +2831 1260 0.400000 +2831 1283 0.400000 +2831 1294 0.400000 +2831 1307 0.400000 +2831 1343 0.400000 +2831 1367 0.400000 +2831 1622 0.400000 +2831 1638 0.400000 +2831 1715 0.400000 +2831 1764 0.400000 +2831 1850 0.400000 +2831 1863 0.400000 +2831 1972 0.400000 +2831 2044 0.400000 +2831 2057 0.400000 +2831 2133 0.400000 +2831 2219 0.400000 +2831 2237 0.400000 +2831 2334 0.400000 +2831 2375 0.400000 +2831 2394 0.400000 +2831 2442 0.400000 +2831 2484 0.400000 +2831 2538 0.400000 +2831 2554 0.400000 +2831 2701 0.400000 +2831 2744 0.400000 +2831 2839 0.400000 +2831 2843 0.400000 +2831 2846 0.400000 +2831 2850 0.400000 +2831 2915 0.400000 +2831 2951 0.400000 +2831 2986 0.400000 +2831 3014 0.400000 +2831 3051 0.400000 +2831 3178 0.400000 +2832 108 0.400000 +2832 190 0.400000 +2832 214 0.400000 +2832 288 0.400000 +2832 425 0.400000 +2832 488 0.400000 +2832 520 0.400000 +2832 586 0.400000 +2832 691 0.400000 +2832 731 0.400000 +2832 820 0.400000 +2832 825 0.400000 +2832 926 0.400000 +2832 986 0.400000 +2832 993 0.400000 +2832 1054 0.400000 +2832 1117 0.400000 +2832 1138 0.400000 +2832 1293 0.400000 +2832 1331 0.400000 +2832 1371 0.400000 +2832 1382 0.400000 +2832 1395 0.400000 +2832 1488 0.400000 +2832 1536 0.400000 +2832 1666 0.400000 +2832 1695 0.400000 +2832 1714 0.400000 +2832 1736 0.400000 +2832 1788 0.400000 +2832 1831 0.400000 +2832 1891 0.400000 +2832 1917 0.400000 +2832 1967 0.400000 +2832 1975 0.400000 +2832 2034 0.400000 +2832 2047 0.400000 +2832 2048 0.400000 +2832 2072 0.400000 +2832 2098 0.400000 +2832 2151 0.400000 +2832 2168 0.400000 +2832 2243 0.400000 +2832 2249 0.400000 +2832 2260 0.400000 +2832 2380 0.400000 +2832 2503 0.400000 +2832 2568 0.400000 +2832 2654 0.400000 +2832 2726 0.400000 +2832 2733 0.400000 +2832 2737 0.400000 +2832 2740 0.400000 +2832 2747 0.400000 +2832 2774 0.400000 +2832 2776 0.400000 +2832 2786 0.400000 +2832 2790 0.400000 +2832 2803 0.400000 +2832 2832 0.400000 +2832 2885 0.400000 +2832 2894 0.400000 +2832 2902 0.400000 +2832 2903 0.400000 +2832 2930 0.400000 +2832 2992 0.400000 +2832 3000 0.400000 +2832 3082 0.400000 +2832 3157 0.400000 +2833 23 0.400000 +2833 45 0.400000 +2833 62 0.400000 +2833 87 0.400000 +2833 107 0.400000 +2833 123 0.400000 +2833 189 0.400000 +2833 206 0.400000 +2833 243 0.400000 +2833 273 0.400000 +2833 303 0.400000 +2833 412 0.400000 +2833 414 0.400000 +2833 424 0.400000 +2833 566 0.400000 +2833 625 0.400000 +2833 648 0.400000 +2833 697 0.400000 +2833 737 0.400000 +2833 786 0.400000 +2833 825 0.400000 +2833 827 0.400000 +2833 867 0.400000 +2833 875 0.400000 +2833 945 0.400000 +2833 971 0.400000 +2833 979 0.400000 +2833 1015 0.400000 +2833 1032 0.400000 +2833 1106 0.400000 +2833 1154 0.400000 +2833 1157 0.400000 +2833 1168 0.400000 +2833 1203 0.400000 +2833 1291 0.400000 +2833 1293 0.400000 +2833 1400 0.400000 +2833 1411 0.400000 +2833 1637 0.400000 +2833 1681 0.400000 +2833 1806 0.400000 +2833 1859 0.400000 +2833 1882 0.400000 +2833 1954 0.400000 +2833 1987 0.400000 +2833 2044 0.400000 +2833 2069 0.400000 +2833 2119 0.400000 +2833 2156 0.400000 +2833 2230 0.400000 +2833 2283 0.400000 +2833 2312 0.400000 +2833 2313 0.400000 +2833 2603 0.400000 +2833 2628 0.400000 +2833 2633 0.400000 +2833 2686 0.400000 +2833 2720 0.400000 +2833 2727 0.400000 +2833 2746 0.400000 +2833 2875 0.400000 +2833 2928 0.400000 +2833 3004 0.400000 +2833 3069 0.400000 +2833 3075 0.400000 +2833 3078 0.400000 +2833 3091 0.400000 +2833 3189 0.400000 +2834 241 0.400000 +2834 262 0.400000 +2834 299 0.400000 +2834 326 0.400000 +2834 588 0.400000 +2834 622 0.400000 +2834 656 0.400000 +2834 695 0.400000 +2834 775 0.400000 +2834 794 0.400000 +2834 808 0.400000 +2834 981 0.400000 +2834 1114 0.400000 +2834 1116 0.400000 +2834 1162 0.400000 +2834 1183 0.400000 +2834 1203 0.400000 +2834 1260 0.400000 +2834 1332 0.400000 +2834 1506 0.400000 +2834 1532 0.400000 +2834 1535 0.400000 +2834 1589 0.400000 +2834 1615 0.400000 +2834 1719 0.400000 +2834 1783 0.400000 +2834 1790 0.400000 +2834 1811 0.400000 +2834 1812 0.400000 +2834 1831 0.400000 +2834 2058 0.400000 +2834 2061 0.400000 +2834 2067 0.400000 +2834 2077 0.400000 +2834 2151 0.400000 +2834 2162 0.400000 +2834 2190 0.400000 +2834 2231 0.400000 +2834 2337 0.400000 +2834 2347 0.400000 +2834 2364 0.400000 +2834 2397 0.400000 +2834 2721 0.400000 +2834 2806 0.400000 +2834 2829 0.400000 +2834 2868 0.400000 +2834 2873 0.400000 +2834 2925 0.400000 +2834 2988 0.400000 +2834 3075 0.400000 +2834 3114 0.400000 +2834 3115 0.400000 +2834 3121 0.400000 +2834 3137 0.400000 +2834 3193 0.400000 +2835 9 0.400000 +2835 58 0.400000 +2835 166 0.400000 +2835 170 0.400000 +2835 197 0.400000 +2835 243 0.400000 +2835 322 0.400000 +2835 339 0.400000 +2835 353 0.400000 +2835 386 0.400000 +2835 395 0.400000 +2835 405 0.400000 +2835 427 0.400000 +2835 438 0.400000 +2835 456 0.400000 +2835 466 0.400000 +2835 578 0.400000 +2835 610 0.400000 +2835 648 0.400000 +2835 670 0.400000 +2835 704 0.400000 +2835 749 0.400000 +2835 761 0.400000 +2835 791 0.400000 +2835 1017 0.400000 +2835 1041 0.400000 +2835 1048 0.400000 +2835 1053 0.400000 +2835 1073 0.400000 +2835 1200 0.400000 +2835 1214 0.400000 +2835 1283 0.400000 +2835 1328 0.400000 +2835 1363 0.400000 +2835 1454 0.400000 +2835 1469 0.400000 +2835 1492 0.400000 +2835 1588 0.400000 +2835 1670 0.400000 +2835 1768 0.400000 +2835 1789 0.400000 +2835 1809 0.400000 +2835 1853 0.400000 +2835 1884 0.400000 +2835 1973 0.400000 +2835 2087 0.400000 +2835 2107 0.400000 +2835 2145 0.400000 +2835 2190 0.400000 +2835 2260 0.400000 +2835 2298 0.400000 +2835 2364 0.400000 +2835 2371 0.400000 +2835 2375 0.400000 +2835 2501 0.400000 +2835 2635 0.400000 +2835 2703 0.400000 +2835 2751 0.400000 +2835 2790 0.400000 +2835 2805 0.400000 +2835 2902 0.400000 +2835 2908 0.400000 +2835 2952 0.400000 +2835 2961 0.400000 +2835 3036 0.400000 +2835 3047 0.400000 +2835 3048 0.400000 +2835 3070 0.400000 +2835 3135 0.400000 +2836 4 0.400000 +2836 35 0.400000 +2836 69 0.400000 +2836 139 0.400000 +2836 156 0.400000 +2836 169 0.400000 +2836 217 0.400000 +2836 228 0.400000 +2836 242 0.400000 +2836 245 0.400000 +2836 264 0.400000 +2836 278 0.400000 +2836 325 0.400000 +2836 342 0.400000 +2836 403 0.400000 +2836 576 0.400000 +2836 598 0.400000 +2836 599 0.400000 +2836 715 0.400000 +2836 788 0.400000 +2836 846 0.400000 +2836 886 0.400000 +2836 889 0.400000 +2836 903 0.400000 +2836 964 0.400000 +2836 990 0.400000 +2836 1002 0.400000 +2836 1088 0.400000 +2836 1221 0.400000 +2836 1307 0.400000 +2836 1416 0.400000 +2836 1428 0.400000 +2836 1489 0.400000 +2836 1535 0.400000 +2836 1547 0.400000 +2836 1569 0.400000 +2836 1629 0.400000 +2836 1632 0.400000 +2836 1652 0.400000 +2836 1669 0.400000 +2836 1688 0.400000 +2836 1790 0.400000 +2836 1794 0.400000 +2836 1863 0.400000 +2836 1876 0.400000 +2836 1938 0.400000 +2836 1940 0.400000 +2836 1943 0.400000 +2836 1987 0.400000 +2836 2043 0.400000 +2836 2049 0.400000 +2836 2058 0.400000 +2836 2076 0.400000 +2836 2183 0.400000 +2836 2184 0.400000 +2836 2295 0.400000 +2836 2371 0.400000 +2836 2415 0.400000 +2836 2454 0.400000 +2836 2534 0.400000 +2836 2535 0.400000 +2836 2600 0.400000 +2836 2638 0.400000 +2836 2653 0.400000 +2836 2655 0.400000 +2836 2711 0.400000 +2836 2744 0.400000 +2836 2906 0.400000 +2836 2943 0.400000 +2836 2944 0.400000 +2836 2950 0.400000 +2836 3005 0.400000 +2836 3015 0.400000 +2837 80 0.400000 +2837 95 0.400000 +2837 107 0.400000 +2837 136 0.400000 +2837 158 0.400000 +2837 162 0.400000 +2837 189 0.400000 +2837 200 0.400000 +2837 216 0.400000 +2837 238 0.400000 +2837 387 0.400000 +2837 417 0.400000 +2837 439 0.400000 +2837 442 0.400000 +2837 483 0.400000 +2837 520 0.400000 +2837 608 0.400000 +2837 642 0.400000 +2837 710 0.400000 +2837 741 0.400000 +2837 801 0.400000 +2837 848 0.400000 +2837 863 0.400000 +2837 920 0.400000 +2837 946 0.400000 +2837 1171 0.400000 +2837 1186 0.400000 +2837 1206 0.400000 +2837 1232 0.400000 +2837 1251 0.400000 +2837 1286 0.400000 +2837 1371 0.400000 +2837 1448 0.400000 +2837 1470 0.400000 +2837 1486 0.400000 +2837 1545 0.400000 +2837 1618 0.400000 +2837 1649 0.400000 +2837 1650 0.400000 +2837 1693 0.400000 +2837 1835 0.400000 +2837 1836 0.400000 +2837 1950 0.400000 +2837 1992 0.400000 +2837 2012 0.400000 +2837 2174 0.400000 +2837 2193 0.400000 +2837 2325 0.400000 +2837 2368 0.400000 +2837 2390 0.400000 +2837 2392 0.400000 +2837 2426 0.400000 +2837 2467 0.400000 +2837 2470 0.400000 +2837 2481 0.400000 +2837 2580 0.400000 +2837 2641 0.400000 +2837 2685 0.400000 +2837 2775 0.400000 +2837 2776 0.400000 +2837 2895 0.400000 +2837 2921 0.400000 +2837 2976 0.400000 +2837 3003 0.400000 +2837 3052 0.400000 +2837 3124 0.400000 +2838 343 0.400000 +2838 375 0.400000 +2838 394 0.400000 +2838 423 0.400000 +2838 501 0.400000 +2838 623 0.400000 +2838 720 0.400000 +2838 787 0.400000 +2838 1022 0.400000 +2838 1057 0.400000 +2838 1127 0.400000 +2838 1141 0.400000 +2838 1209 0.400000 +2838 1240 0.400000 +2838 1276 0.400000 +2838 1360 0.400000 +2838 1500 0.400000 +2838 1505 0.400000 +2838 1570 0.400000 +2838 1618 0.400000 +2838 1736 0.400000 +2838 1849 0.400000 +2838 1856 0.400000 +2838 1871 0.400000 +2838 1971 0.400000 +2838 1976 0.400000 +2838 2035 0.400000 +2838 2157 0.400000 +2838 2161 0.400000 +2838 2201 0.400000 +2838 2330 0.400000 +2838 2359 0.400000 +2838 2418 0.400000 +2838 2586 0.400000 +2838 2634 0.400000 +2838 2667 0.400000 +2838 2715 0.400000 +2838 2729 0.400000 +2838 2775 0.400000 +2838 2891 0.400000 +2838 2960 0.400000 +2838 3070 0.400000 +2838 3074 0.400000 +2838 3075 0.400000 +2838 3100 0.400000 +2838 3145 0.400000 +2838 3197 0.400000 +2838 3198 0.400000 +2839 70 0.400000 +2839 115 0.400000 +2839 118 0.400000 +2839 133 0.400000 +2839 147 0.400000 +2839 271 0.400000 +2839 279 0.400000 +2839 387 0.400000 +2839 409 0.400000 +2839 424 0.400000 +2839 442 0.400000 +2839 459 0.400000 +2839 551 0.400000 +2839 556 0.400000 +2839 599 0.400000 +2839 728 0.400000 +2839 795 0.400000 +2839 848 0.400000 +2839 851 0.400000 +2839 904 0.400000 +2839 1002 0.400000 +2839 1019 0.400000 +2839 1038 0.400000 +2839 1042 0.400000 +2839 1049 0.400000 +2839 1112 0.400000 +2839 1139 0.400000 +2839 1148 0.400000 +2839 1161 0.400000 +2839 1164 0.400000 +2839 1222 0.400000 +2839 1298 0.400000 +2839 1333 0.400000 +2839 1617 0.400000 +2839 1783 0.400000 +2839 1823 0.400000 +2839 1835 0.400000 +2839 1943 0.400000 +2839 1980 0.400000 +2839 2045 0.400000 +2839 2058 0.400000 +2839 2085 0.400000 +2839 2156 0.400000 +2839 2277 0.400000 +2839 2360 0.400000 +2839 2420 0.400000 +2839 2537 0.400000 +2839 2601 0.400000 +2839 2829 0.400000 +2839 2899 0.400000 +2839 2901 0.400000 +2839 2983 0.400000 +2839 3024 0.400000 +2839 3152 0.400000 +2839 3160 0.400000 +2840 44 0.400000 +2840 50 0.400000 +2840 73 0.400000 +2840 318 0.400000 +2840 366 0.400000 +2840 390 0.400000 +2840 391 0.400000 +2840 399 0.400000 +2840 483 0.400000 +2840 602 0.400000 +2840 603 0.400000 +2840 629 0.400000 +2840 675 0.400000 +2840 704 0.400000 +2840 739 0.400000 +2840 780 0.400000 +2840 834 0.400000 +2840 853 0.400000 +2840 873 0.400000 +2840 877 0.400000 +2840 960 0.400000 +2840 971 0.400000 +2840 1129 0.400000 +2840 1164 0.400000 +2840 1202 0.400000 +2840 1256 0.400000 +2840 1313 0.400000 +2840 1342 0.400000 +2840 1359 0.400000 +2840 1387 0.400000 +2840 1423 0.400000 +2840 1449 0.400000 +2840 1505 0.400000 +2840 1565 0.400000 +2840 1709 0.400000 +2840 1719 0.400000 +2840 1891 0.400000 +2840 1974 0.400000 +2840 1975 0.400000 +2840 1984 0.400000 +2840 2001 0.400000 +2840 2002 0.400000 +2840 2023 0.400000 +2840 2114 0.400000 +2840 2252 0.400000 +2840 2275 0.400000 +2840 2316 0.400000 +2840 2325 0.400000 +2840 2339 0.400000 +2840 2411 0.400000 +2840 2418 0.400000 +2840 2561 0.400000 +2840 2639 0.400000 +2840 2701 0.400000 +2840 2743 0.400000 +2840 2824 0.400000 +2840 2898 0.400000 +2840 2932 0.400000 +2840 2935 0.400000 +2840 2964 0.400000 +2840 3038 0.400000 +2841 110 0.400000 +2841 201 0.400000 +2841 227 0.400000 +2841 266 0.400000 +2841 359 0.400000 +2841 426 0.400000 +2841 466 0.400000 +2841 488 0.400000 +2841 543 0.400000 +2841 575 0.400000 +2841 601 0.400000 +2841 648 0.400000 +2841 731 0.400000 +2841 861 0.400000 +2841 935 0.400000 +2841 968 0.400000 +2841 1025 0.400000 +2841 1084 0.400000 +2841 1254 0.400000 +2841 1267 0.400000 +2841 1289 0.400000 +2841 1386 0.400000 +2841 1598 0.400000 +2841 1616 0.400000 +2841 1698 0.400000 +2841 1747 0.400000 +2841 1750 0.400000 +2841 1777 0.400000 +2841 1815 0.400000 +2841 1883 0.400000 +2841 1934 0.400000 +2841 1951 0.400000 +2841 2000 0.400000 +2841 2038 0.400000 +2841 2055 0.400000 +2841 2167 0.400000 +2841 2204 0.400000 +2841 2252 0.400000 +2841 2316 0.400000 +2841 2386 0.400000 +2841 2462 0.400000 +2841 2599 0.400000 +2841 2606 0.400000 +2841 2628 0.400000 +2841 2663 0.400000 +2841 2690 0.400000 +2841 2803 0.400000 +2841 2836 0.400000 +2841 2858 0.400000 +2841 2933 0.400000 +2841 2978 0.400000 +2841 2987 0.400000 +2841 3017 0.400000 +2841 3124 0.400000 +2842 58 0.400000 +2842 67 0.400000 +2842 127 0.400000 +2842 207 0.400000 +2842 220 0.400000 +2842 302 0.400000 +2842 408 0.400000 +2842 428 0.400000 +2842 484 0.400000 +2842 634 0.400000 +2842 651 0.400000 +2842 765 0.400000 +2842 834 0.400000 +2842 882 0.400000 +2842 923 0.400000 +2842 1158 0.400000 +2842 1303 0.400000 +2842 1359 0.400000 +2842 1483 0.400000 +2842 1562 0.400000 +2842 1689 0.400000 +2842 1725 0.400000 +2842 1746 0.400000 +2842 1876 0.400000 +2842 1952 0.400000 +2842 2135 0.400000 +2842 2180 0.400000 +2842 2272 0.400000 +2842 2278 0.400000 +2842 2282 0.400000 +2842 2422 0.400000 +2842 2447 0.400000 +2842 2554 0.400000 +2842 2720 0.400000 +2842 2850 0.400000 +2842 2855 0.400000 +2842 3017 0.400000 +2842 3073 0.400000 +2842 3079 0.400000 +2842 3083 0.400000 +2842 3163 0.400000 +2842 3164 0.400000 +2842 3192 0.400000 +2843 65 0.400000 +2843 136 0.400000 +2843 420 0.400000 +2843 423 0.400000 +2843 472 0.400000 +2843 700 0.400000 +2843 754 0.400000 +2843 921 0.400000 +2843 937 0.400000 +2843 944 0.400000 +2843 1039 0.400000 +2843 1094 0.400000 +2843 1133 0.400000 +2843 1210 0.400000 +2843 1547 0.400000 +2843 1551 0.400000 +2843 1562 0.400000 +2843 1600 0.400000 +2843 1644 0.400000 +2843 1691 0.400000 +2843 1715 0.400000 +2843 1815 0.400000 +2843 1888 0.400000 +2843 1938 0.400000 +2843 2013 0.400000 +2843 2025 0.400000 +2843 2057 0.400000 +2843 2067 0.400000 +2843 2180 0.400000 +2843 2317 0.400000 +2843 2319 0.400000 +2843 2334 0.400000 +2843 2374 0.400000 +2843 2403 0.400000 +2843 2423 0.400000 +2843 2618 0.400000 +2843 2626 0.400000 +2843 2632 0.400000 +2843 2700 0.400000 +2843 2770 0.400000 +2843 2836 0.400000 +2843 2862 0.400000 +2843 2884 0.400000 +2843 3010 0.400000 +2844 18 0.400000 +2844 184 0.400000 +2844 241 0.400000 +2844 263 0.400000 +2844 347 0.400000 +2844 476 0.400000 +2844 480 0.400000 +2844 561 0.400000 +2844 565 0.400000 +2844 773 0.400000 +2844 784 0.400000 +2844 952 0.400000 +2844 987 0.400000 +2844 995 0.400000 +2844 1006 0.400000 +2844 1133 0.400000 +2844 1144 0.400000 +2844 1178 0.400000 +2844 1192 0.400000 +2844 1316 0.400000 +2844 1321 0.400000 +2844 1332 0.400000 +2844 1409 0.400000 +2844 1428 0.400000 +2844 1497 0.400000 +2844 1507 0.400000 +2844 1508 0.400000 +2844 1674 0.400000 +2844 1718 0.400000 +2844 1719 0.400000 +2844 1802 0.400000 +2844 1833 0.400000 +2844 1870 0.400000 +2844 1910 0.400000 +2844 1920 0.400000 +2844 2037 0.400000 +2844 2065 0.400000 +2844 2126 0.400000 +2844 2161 0.400000 +2844 2171 0.400000 +2844 2189 0.400000 +2844 2218 0.400000 +2844 2319 0.400000 +2844 2363 0.400000 +2844 2389 0.400000 +2844 2401 0.400000 +2844 2407 0.400000 +2844 2409 0.400000 +2844 2447 0.400000 +2844 2531 0.400000 +2844 2532 0.400000 +2844 2557 0.400000 +2844 2611 0.400000 +2844 2638 0.400000 +2844 2685 0.400000 +2844 2737 0.400000 +2844 2766 0.400000 +2844 2798 0.400000 +2844 2936 0.400000 +2844 2977 0.400000 +2844 3016 0.400000 +2844 3027 0.400000 +2844 3089 0.400000 +2844 3110 0.400000 +2844 3116 0.400000 +2844 3155 0.400000 +2844 3176 0.400000 +2844 3190 0.400000 +2845 9 0.400000 +2845 35 0.400000 +2845 52 0.400000 +2845 53 0.400000 +2845 63 0.400000 +2845 74 0.400000 +2845 95 0.400000 +2845 181 0.400000 +2845 188 0.400000 +2845 198 0.400000 +2845 266 0.400000 +2845 269 0.400000 +2845 311 0.400000 +2845 338 0.400000 +2845 359 0.400000 +2845 437 0.400000 +2845 522 0.400000 +2845 526 0.400000 +2845 615 0.400000 +2845 619 0.400000 +2845 634 0.400000 +2845 655 0.400000 +2845 741 0.400000 +2845 1017 0.400000 +2845 1039 0.400000 +2845 1129 0.400000 +2845 1148 0.400000 +2845 1317 0.400000 +2845 1321 0.400000 +2845 1414 0.400000 +2845 1421 0.400000 +2845 1525 0.400000 +2845 1564 0.400000 +2845 1586 0.400000 +2845 1630 0.400000 +2845 1681 0.400000 +2845 1697 0.400000 +2845 1741 0.400000 +2845 1810 0.400000 +2845 1811 0.400000 +2845 1828 0.400000 +2845 1834 0.400000 +2845 1854 0.400000 +2845 1918 0.400000 +2845 1940 0.400000 +2845 1966 0.400000 +2845 2027 0.400000 +2845 2091 0.400000 +2845 2205 0.400000 +2845 2240 0.400000 +2845 2308 0.400000 +2845 2331 0.400000 +2845 2370 0.400000 +2845 2475 0.400000 +2845 2557 0.400000 +2845 2652 0.400000 +2845 2800 0.400000 +2845 2849 0.400000 +2845 2886 0.400000 +2845 3051 0.400000 +2845 3064 0.400000 +2845 3156 0.400000 +2846 5 0.400000 +2846 220 0.400000 +2846 495 0.400000 +2846 516 0.400000 +2846 550 0.400000 +2846 708 0.400000 +2846 726 0.400000 +2846 812 0.400000 +2846 824 0.400000 +2846 913 0.400000 +2846 992 0.400000 +2846 999 0.400000 +2846 1018 0.400000 +2846 1135 0.400000 +2846 1166 0.400000 +2846 1256 0.400000 +2846 1269 0.400000 +2846 1292 0.400000 +2846 1297 0.400000 +2846 1325 0.400000 +2846 1331 0.400000 +2846 1332 0.400000 +2846 1338 0.400000 +2846 1372 0.400000 +2846 1388 0.400000 +2846 1401 0.400000 +2846 1454 0.400000 +2846 1466 0.400000 +2846 1484 0.400000 +2846 1580 0.400000 +2846 1650 0.400000 +2846 1674 0.400000 +2846 1683 0.400000 +2846 1726 0.400000 +2846 1899 0.400000 +2846 1910 0.400000 +2846 1927 0.400000 +2846 1941 0.400000 +2846 2026 0.400000 +2846 2042 0.400000 +2846 2085 0.400000 +2846 2134 0.400000 +2846 2183 0.400000 +2846 2198 0.400000 +2846 2242 0.400000 +2846 2284 0.400000 +2846 2299 0.400000 +2846 2316 0.400000 +2846 2385 0.400000 +2846 2403 0.400000 +2846 2436 0.400000 +2846 2440 0.400000 +2846 2462 0.400000 +2846 2490 0.400000 +2846 2502 0.400000 +2846 2562 0.400000 +2846 2586 0.400000 +2846 2777 0.400000 +2846 2778 0.400000 +2846 2839 0.400000 +2846 2900 0.400000 +2846 2967 0.400000 +2846 2980 0.400000 +2846 2987 0.400000 +2846 3024 0.400000 +2846 3072 0.400000 +2846 3088 0.400000 +2846 3146 0.400000 +2846 3174 0.400000 +2847 17 0.400000 +2847 54 0.400000 +2847 203 0.400000 +2847 215 0.400000 +2847 219 0.400000 +2847 333 0.400000 +2847 352 0.400000 +2847 385 0.400000 +2847 433 0.400000 +2847 470 0.400000 +2847 485 0.400000 +2847 496 0.400000 +2847 518 0.400000 +2847 525 0.400000 +2847 548 0.400000 +2847 559 0.400000 +2847 609 0.400000 +2847 673 0.400000 +2847 767 0.400000 +2847 781 0.400000 +2847 811 0.400000 +2847 901 0.400000 +2847 921 0.400000 +2847 928 0.400000 +2847 1048 0.400000 +2847 1067 0.400000 +2847 1139 0.400000 +2847 1141 0.400000 +2847 1165 0.400000 +2847 1169 0.400000 +2847 1172 0.400000 +2847 1193 0.400000 +2847 1222 0.400000 +2847 1271 0.400000 +2847 1274 0.400000 +2847 1306 0.400000 +2847 1320 0.400000 +2847 1321 0.400000 +2847 1325 0.400000 +2847 1414 0.400000 +2847 1427 0.400000 +2847 1492 0.400000 +2847 1536 0.400000 +2847 1624 0.400000 +2847 1643 0.400000 +2847 1665 0.400000 +2847 1669 0.400000 +2847 1764 0.400000 +2847 1793 0.400000 +2847 1808 0.400000 +2847 1836 0.400000 +2847 1850 0.400000 +2847 1892 0.400000 +2847 1961 0.400000 +2847 1969 0.400000 +2847 2048 0.400000 +2847 2059 0.400000 +2847 2074 0.400000 +2847 2101 0.400000 +2847 2102 0.400000 +2847 2198 0.400000 +2847 2223 0.400000 +2847 2241 0.400000 +2847 2253 0.400000 +2847 2341 0.400000 +2847 2387 0.400000 +2847 2440 0.400000 +2847 2459 0.400000 +2847 2487 0.400000 +2847 2549 0.400000 +2847 2583 0.400000 +2847 2607 0.400000 +2847 2636 0.400000 +2847 2637 0.400000 +2847 2809 0.400000 +2847 2930 0.400000 +2847 2981 0.400000 +2847 3137 0.400000 +2847 3172 0.400000 +2847 3177 0.400000 +2847 3186 0.400000 +2847 3197 0.400000 +2848 22 0.400000 +2848 60 0.400000 +2848 153 0.400000 +2848 241 0.400000 +2848 284 0.400000 +2848 303 0.400000 +2848 329 0.400000 +2848 365 0.400000 +2848 487 0.400000 +2848 490 0.400000 +2848 516 0.400000 +2848 525 0.400000 +2848 539 0.400000 +2848 762 0.400000 +2848 850 0.400000 +2848 853 0.400000 +2848 863 0.400000 +2848 1026 0.400000 +2848 1030 0.400000 +2848 1138 0.400000 +2848 1142 0.400000 +2848 1164 0.400000 +2848 1243 0.400000 +2848 1262 0.400000 +2848 1335 0.400000 +2848 1346 0.400000 +2848 1395 0.400000 +2848 1431 0.400000 +2848 1513 0.400000 +2848 1580 0.400000 +2848 1586 0.400000 +2848 1651 0.400000 +2848 1675 0.400000 +2848 1739 0.400000 +2848 1767 0.400000 +2848 1832 0.400000 +2848 1834 0.400000 +2848 1838 0.400000 +2848 1851 0.400000 +2848 1855 0.400000 +2848 1890 0.400000 +2848 1892 0.400000 +2848 1906 0.400000 +2848 1959 0.400000 +2848 1996 0.400000 +2848 2009 0.400000 +2848 2031 0.400000 +2848 2112 0.400000 +2848 2186 0.400000 +2848 2244 0.400000 +2848 2245 0.400000 +2848 2268 0.400000 +2848 2284 0.400000 +2848 2321 0.400000 +2848 2389 0.400000 +2848 2403 0.400000 +2848 2423 0.400000 +2848 2477 0.400000 +2848 2504 0.400000 +2848 2537 0.400000 +2848 2614 0.400000 +2848 2675 0.400000 +2848 2693 0.400000 +2848 2740 0.400000 +2848 2931 0.400000 +2848 2952 0.400000 +2848 3054 0.400000 +2848 3129 0.400000 +2849 36 0.400000 +2849 48 0.400000 +2849 51 0.400000 +2849 79 0.400000 +2849 132 0.400000 +2849 152 0.400000 +2849 217 0.400000 +2849 279 0.400000 +2849 306 0.400000 +2849 373 0.400000 +2849 396 0.400000 +2849 408 0.400000 +2849 552 0.400000 +2849 557 0.400000 +2849 581 0.400000 +2849 613 0.400000 +2849 615 0.400000 +2849 759 0.400000 +2849 807 0.400000 +2849 850 0.400000 +2849 854 0.400000 +2849 895 0.400000 +2849 903 0.400000 +2849 908 0.400000 +2849 971 0.400000 +2849 1037 0.400000 +2849 1143 0.400000 +2849 1195 0.400000 +2849 1212 0.400000 +2849 1286 0.400000 +2849 1441 0.400000 +2849 1461 0.400000 +2849 1590 0.400000 +2849 1620 0.400000 +2849 1741 0.400000 +2849 1944 0.400000 +2849 2017 0.400000 +2849 2296 0.400000 +2849 2346 0.400000 +2849 2381 0.400000 +2849 2400 0.400000 +2849 2404 0.400000 +2849 2445 0.400000 +2849 2451 0.400000 +2849 2463 0.400000 +2849 2469 0.400000 +2849 2475 0.400000 +2849 2523 0.400000 +2849 2584 0.400000 +2849 2594 0.400000 +2849 2665 0.400000 +2849 2680 0.400000 +2849 2682 0.400000 +2849 2690 0.400000 +2849 2701 0.400000 +2849 2757 0.400000 +2849 2837 0.400000 +2849 2872 0.400000 +2849 2873 0.400000 +2849 2903 0.400000 +2849 3018 0.400000 +2849 3113 0.400000 +2849 3136 0.400000 +2849 3147 0.400000 +2849 3166 0.400000 +2849 3189 0.400000 +2849 3199 0.400000 +2850 57 0.400000 +2850 69 0.400000 +2850 235 0.400000 +2850 240 0.400000 +2850 319 0.400000 +2850 327 0.400000 +2850 381 0.400000 +2850 416 0.400000 +2850 470 0.400000 +2850 486 0.400000 +2850 489 0.400000 +2850 519 0.400000 +2850 622 0.400000 +2850 697 0.400000 +2850 707 0.400000 +2850 722 0.400000 +2850 739 0.400000 +2850 801 0.400000 +2850 873 0.400000 +2850 906 0.400000 +2850 957 0.400000 +2850 972 0.400000 +2850 1008 0.400000 +2850 1016 0.400000 +2850 1146 0.400000 +2850 1182 0.400000 +2850 1193 0.400000 +2850 1400 0.400000 +2850 1468 0.400000 +2850 1534 0.400000 +2850 1756 0.400000 +2850 1772 0.400000 +2850 1779 0.400000 +2850 1818 0.400000 +2850 1828 0.400000 +2850 1858 0.400000 +2850 1919 0.400000 +2850 1960 0.400000 +2850 1997 0.400000 +2850 2023 0.400000 +2850 2038 0.400000 +2850 2091 0.400000 +2850 2132 0.400000 +2850 2172 0.400000 +2850 2185 0.400000 +2850 2243 0.400000 +2850 2267 0.400000 +2850 2275 0.400000 +2850 2305 0.400000 +2850 2326 0.400000 +2850 2328 0.400000 +2850 2350 0.400000 +2850 2464 0.400000 +2850 2584 0.400000 +2850 2634 0.400000 +2850 2724 0.400000 +2850 2761 0.400000 +2850 2814 0.400000 +2850 2842 0.400000 +2850 2885 0.400000 +2850 2900 0.400000 +2850 2951 0.400000 +2850 3047 0.400000 +2850 3094 0.400000 +2850 3098 0.400000 +2850 3111 0.400000 +2850 3127 0.400000 +2850 3141 0.400000 +2851 122 0.400000 +2851 140 0.400000 +2851 167 0.400000 +2851 177 0.400000 +2851 200 0.400000 +2851 225 0.400000 +2851 269 0.400000 +2851 309 0.400000 +2851 374 0.400000 +2851 430 0.400000 +2851 528 0.400000 +2851 540 0.400000 +2851 541 0.400000 +2851 754 0.400000 +2851 766 0.400000 +2851 788 0.400000 +2851 794 0.400000 +2851 796 0.400000 +2851 862 0.400000 +2851 891 0.400000 +2851 897 0.400000 +2851 931 0.400000 +2851 954 0.400000 +2851 987 0.400000 +2851 1060 0.400000 +2851 1075 0.400000 +2851 1084 0.400000 +2851 1143 0.400000 +2851 1161 0.400000 +2851 1290 0.400000 +2851 1320 0.400000 +2851 1354 0.400000 +2851 1369 0.400000 +2851 1408 0.400000 +2851 1514 0.400000 +2851 1541 0.400000 +2851 1598 0.400000 +2851 1658 0.400000 +2851 1663 0.400000 +2851 1680 0.400000 +2851 1702 0.400000 +2851 1704 0.400000 +2851 1827 0.400000 +2851 1860 0.400000 +2851 1870 0.400000 +2851 1940 0.400000 +2851 1974 0.400000 +2851 1984 0.400000 +2851 2143 0.400000 +2851 2165 0.400000 +2851 2196 0.400000 +2851 2371 0.400000 +2851 2386 0.400000 +2851 2393 0.400000 +2851 2503 0.400000 +2851 2519 0.400000 +2851 2581 0.400000 +2851 2598 0.400000 +2851 2648 0.400000 +2851 2675 0.400000 +2851 2783 0.400000 +2851 2785 0.400000 +2851 2828 0.400000 +2851 2837 0.400000 +2851 2955 0.400000 +2851 3004 0.400000 +2851 3025 0.400000 +2851 3027 0.400000 +2851 3044 0.400000 +2851 3066 0.400000 +2851 3068 0.400000 +2851 3087 0.400000 +2851 3096 0.400000 +2852 79 0.400000 +2852 110 0.400000 +2852 121 0.400000 +2852 131 0.400000 +2852 147 0.400000 +2852 269 0.400000 +2852 330 0.400000 +2852 358 0.400000 +2852 480 0.400000 +2852 495 0.400000 +2852 543 0.400000 +2852 580 0.400000 +2852 631 0.400000 +2852 648 0.400000 +2852 744 0.400000 +2852 786 0.400000 +2852 815 0.400000 +2852 845 0.400000 +2852 1012 0.400000 +2852 1044 0.400000 +2852 1080 0.400000 +2852 1104 0.400000 +2852 1173 0.400000 +2852 1192 0.400000 +2852 1193 0.400000 +2852 1208 0.400000 +2852 1220 0.400000 +2852 1238 0.400000 +2852 1484 0.400000 +2852 1507 0.400000 +2852 1548 0.400000 +2852 1603 0.400000 +2852 1640 0.400000 +2852 1684 0.400000 +2852 1716 0.400000 +2852 1824 0.400000 +2852 1834 0.400000 +2852 1850 0.400000 +2852 1905 0.400000 +2852 1940 0.400000 +2852 1962 0.400000 +2852 1985 0.400000 +2852 2007 0.400000 +2852 2061 0.400000 +2852 2079 0.400000 +2852 2146 0.400000 +2852 2164 0.400000 +2852 2188 0.400000 +2852 2287 0.400000 +2852 2289 0.400000 +2852 2316 0.400000 +2852 2399 0.400000 +2852 2548 0.400000 +2852 2552 0.400000 +2852 2636 0.400000 +2852 2693 0.400000 +2852 2901 0.400000 +2852 3083 0.400000 +2852 3101 0.400000 +2852 3197 0.400000 +2853 18 0.400000 +2853 27 0.400000 +2853 31 0.400000 +2853 61 0.400000 +2853 96 0.400000 +2853 342 0.400000 +2853 352 0.400000 +2853 452 0.400000 +2853 547 0.400000 +2853 573 0.400000 +2853 639 0.400000 +2853 776 0.400000 +2853 810 0.400000 +2853 856 0.400000 +2853 887 0.400000 +2853 888 0.400000 +2853 890 0.400000 +2853 903 0.400000 +2853 949 0.400000 +2853 954 0.400000 +2853 1019 0.400000 +2853 1080 0.400000 +2853 1148 0.400000 +2853 1168 0.400000 +2853 1218 0.400000 +2853 1277 0.400000 +2853 1287 0.400000 +2853 1327 0.400000 +2853 1339 0.400000 +2853 1354 0.400000 +2853 1395 0.400000 +2853 1505 0.400000 +2853 1593 0.400000 +2853 1642 0.400000 +2853 1737 0.400000 +2853 1761 0.400000 +2853 1766 0.400000 +2853 1851 0.400000 +2853 1870 0.400000 +2853 1889 0.400000 +2853 1894 0.400000 +2853 1898 0.400000 +2853 1904 0.400000 +2853 2012 0.400000 +2853 2044 0.400000 +2853 2165 0.400000 +2853 2212 0.400000 +2853 2288 0.400000 +2853 2388 0.400000 +2853 2456 0.400000 +2853 2500 0.400000 +2853 2527 0.400000 +2853 2544 0.400000 +2853 2608 0.400000 +2853 2663 0.400000 +2853 2725 0.400000 +2853 2726 0.400000 +2853 2746 0.400000 +2853 2813 0.400000 +2853 2872 0.400000 +2853 2885 0.400000 +2853 2904 0.400000 +2853 2920 0.400000 +2853 2955 0.400000 +2853 2968 0.400000 +2853 2981 0.400000 +2853 2999 0.400000 +2853 3065 0.400000 +2853 3070 0.400000 +2853 3176 0.400000 +2854 89 0.400000 +2854 111 0.400000 +2854 149 0.400000 +2854 221 0.400000 +2854 253 0.400000 +2854 312 0.400000 +2854 347 0.400000 +2854 444 0.400000 +2854 467 0.400000 +2854 477 0.400000 +2854 485 0.400000 +2854 525 0.400000 +2854 666 0.400000 +2854 669 0.400000 +2854 705 0.400000 +2854 712 0.400000 +2854 720 0.400000 +2854 774 0.400000 +2854 810 0.400000 +2854 812 0.400000 +2854 859 0.400000 +2854 898 0.400000 +2854 976 0.400000 +2854 984 0.400000 +2854 1080 0.400000 +2854 1174 0.400000 +2854 1277 0.400000 +2854 1368 0.400000 +2854 1456 0.400000 +2854 1501 0.400000 +2854 1570 0.400000 +2854 1633 0.400000 +2854 1634 0.400000 +2854 1652 0.400000 +2854 1709 0.400000 +2854 1713 0.400000 +2854 1719 0.400000 +2854 1779 0.400000 +2854 1781 0.400000 +2854 1783 0.400000 +2854 1821 0.400000 +2854 1841 0.400000 +2854 1905 0.400000 +2854 1913 0.400000 +2854 1936 0.400000 +2854 1944 0.400000 +2854 1976 0.400000 +2854 1985 0.400000 +2854 2240 0.400000 +2854 2259 0.400000 +2854 2281 0.400000 +2854 2315 0.400000 +2854 2351 0.400000 +2854 2361 0.400000 +2854 2393 0.400000 +2854 2453 0.400000 +2854 2484 0.400000 +2854 2540 0.400000 +2854 2585 0.400000 +2854 2692 0.400000 +2854 2714 0.400000 +2854 2729 0.400000 +2854 2813 0.400000 +2854 2831 0.400000 +2854 2848 0.400000 +2854 2928 0.400000 +2854 2981 0.400000 +2854 3032 0.400000 +2854 3176 0.400000 +2854 3180 0.400000 +2855 19 0.400000 +2855 30 0.400000 +2855 163 0.400000 +2855 315 0.400000 +2855 432 0.400000 +2855 466 0.400000 +2855 482 0.400000 +2855 500 0.400000 +2855 540 0.400000 +2855 548 0.400000 +2855 556 0.400000 +2855 594 0.400000 +2855 675 0.400000 +2855 689 0.400000 +2855 691 0.400000 +2855 756 0.400000 +2855 920 0.400000 +2855 924 0.400000 +2855 944 0.400000 +2855 948 0.400000 +2855 956 0.400000 +2855 1018 0.400000 +2855 1155 0.400000 +2855 1219 0.400000 +2855 1236 0.400000 +2855 1239 0.400000 +2855 1256 0.400000 +2855 1258 0.400000 +2855 1291 0.400000 +2855 1352 0.400000 +2855 1440 0.400000 +2855 1478 0.400000 +2855 1724 0.400000 +2855 1788 0.400000 +2855 1810 0.400000 +2855 1868 0.400000 +2855 1877 0.400000 +2855 1987 0.400000 +2855 1988 0.400000 +2855 2029 0.400000 +2855 2170 0.400000 +2855 2264 0.400000 +2855 2283 0.400000 +2855 2354 0.400000 +2855 2385 0.400000 +2855 2388 0.400000 +2855 2556 0.400000 +2855 2558 0.400000 +2855 2594 0.400000 +2855 2609 0.400000 +2855 2612 0.400000 +2855 2643 0.400000 +2855 2864 0.400000 +2855 2871 0.400000 +2855 2873 0.400000 +2855 2874 0.400000 +2855 2880 0.400000 +2855 2925 0.400000 +2855 2929 0.400000 +2855 2934 0.400000 +2855 2946 0.400000 +2855 2998 0.400000 +2855 3003 0.400000 +2855 3018 0.400000 +2856 3 0.400000 +2856 7 0.400000 +2856 36 0.400000 +2856 52 0.400000 +2856 71 0.400000 +2856 124 0.400000 +2856 130 0.400000 +2856 184 0.400000 +2856 202 0.400000 +2856 232 0.400000 +2856 254 0.400000 +2856 327 0.400000 +2856 353 0.400000 +2856 398 0.400000 +2856 416 0.400000 +2856 423 0.400000 +2856 575 0.400000 +2856 582 0.400000 +2856 590 0.400000 +2856 616 0.400000 +2856 620 0.400000 +2856 624 0.400000 +2856 643 0.400000 +2856 692 0.400000 +2856 731 0.400000 +2856 791 0.400000 +2856 841 0.400000 +2856 880 0.400000 +2856 935 0.400000 +2856 948 0.400000 +2856 968 0.400000 +2856 982 0.400000 +2856 1157 0.400000 +2856 1169 0.400000 +2856 1178 0.400000 +2856 1246 0.400000 +2856 1468 0.400000 +2856 1490 0.400000 +2856 1605 0.400000 +2856 1652 0.400000 +2856 1672 0.400000 +2856 1676 0.400000 +2856 1692 0.400000 +2856 1695 0.400000 +2856 1785 0.400000 +2856 1820 0.400000 +2856 1946 0.400000 +2856 2014 0.400000 +2856 2115 0.400000 +2856 2287 0.400000 +2856 2345 0.400000 +2856 2353 0.400000 +2856 2375 0.400000 +2856 2420 0.400000 +2856 2429 0.400000 +2856 2473 0.400000 +2856 2628 0.400000 +2856 2689 0.400000 +2856 2726 0.400000 +2856 2742 0.400000 +2856 2796 0.400000 +2856 2797 0.400000 +2856 2830 0.400000 +2856 2834 0.400000 +2856 2874 0.400000 +2857 47 0.400000 +2857 261 0.400000 +2857 262 0.400000 +2857 290 0.400000 +2857 293 0.400000 +2857 300 0.400000 +2857 324 0.400000 +2857 353 0.400000 +2857 373 0.400000 +2857 441 0.400000 +2857 447 0.400000 +2857 506 0.400000 +2857 515 0.400000 +2857 530 0.400000 +2857 585 0.400000 +2857 594 0.400000 +2857 611 0.400000 +2857 733 0.400000 +2857 842 0.400000 +2857 879 0.400000 +2857 951 0.400000 +2857 989 0.400000 +2857 1025 0.400000 +2857 1029 0.400000 +2857 1117 0.400000 +2857 1169 0.400000 +2857 1319 0.400000 +2857 1365 0.400000 +2857 1371 0.400000 +2857 1434 0.400000 +2857 1436 0.400000 +2857 1456 0.400000 +2857 1576 0.400000 +2857 1585 0.400000 +2857 1601 0.400000 +2857 1688 0.400000 +2857 1731 0.400000 +2857 1774 0.400000 +2857 1981 0.400000 +2857 2007 0.400000 +2857 2073 0.400000 +2857 2155 0.400000 +2857 2219 0.400000 +2857 2244 0.400000 +2857 2343 0.400000 +2857 2372 0.400000 +2857 2390 0.400000 +2857 2410 0.400000 +2857 2452 0.400000 +2857 2490 0.400000 +2857 2520 0.400000 +2857 2562 0.400000 +2857 2565 0.400000 +2857 2610 0.400000 +2857 2628 0.400000 +2857 2645 0.400000 +2857 2672 0.400000 +2857 2820 0.400000 +2857 2852 0.400000 +2857 2866 0.400000 +2857 2899 0.400000 +2857 3059 0.400000 +2857 3073 0.400000 +2857 3100 0.400000 +2858 12 0.400000 +2858 28 0.400000 +2858 93 0.400000 +2858 115 0.400000 +2858 130 0.400000 +2858 172 0.400000 +2858 201 0.400000 +2858 252 0.400000 +2858 286 0.400000 +2858 337 0.400000 +2858 381 0.400000 +2858 390 0.400000 +2858 457 0.400000 +2858 468 0.400000 +2858 543 0.400000 +2858 561 0.400000 +2858 652 0.400000 +2858 680 0.400000 +2858 722 0.400000 +2858 730 0.400000 +2858 764 0.400000 +2858 814 0.400000 +2858 866 0.400000 +2858 901 0.400000 +2858 977 0.400000 +2858 1046 0.400000 +2858 1055 0.400000 +2858 1108 0.400000 +2858 1136 0.400000 +2858 1165 0.400000 +2858 1274 0.400000 +2858 1344 0.400000 +2858 1413 0.400000 +2858 1462 0.400000 +2858 1514 0.400000 +2858 1566 0.400000 +2858 1577 0.400000 +2858 1650 0.400000 +2858 1764 0.400000 +2858 1785 0.400000 +2858 1849 0.400000 +2858 1862 0.400000 +2858 1899 0.400000 +2858 1991 0.400000 +2858 2010 0.400000 +2858 2011 0.400000 +2858 2179 0.400000 +2858 2230 0.400000 +2858 2484 0.400000 +2858 2534 0.400000 +2858 2558 0.400000 +2858 2616 0.400000 +2858 2633 0.400000 +2858 2651 0.400000 +2858 2658 0.400000 +2858 2668 0.400000 +2858 2676 0.400000 +2858 2736 0.400000 +2858 2791 0.400000 +2858 2821 0.400000 +2858 2841 0.400000 +2858 2862 0.400000 +2858 2959 0.400000 +2858 3105 0.400000 +2858 3122 0.400000 +2859 97 0.400000 +2859 99 0.400000 +2859 150 0.400000 +2859 189 0.400000 +2859 247 0.400000 +2859 347 0.400000 +2859 385 0.400000 +2859 388 0.400000 +2859 420 0.400000 +2859 424 0.400000 +2859 490 0.400000 +2859 517 0.400000 +2859 592 0.400000 +2859 751 0.400000 +2859 756 0.400000 +2859 873 0.400000 +2859 956 0.400000 +2859 963 0.400000 +2859 1015 0.400000 +2859 1055 0.400000 +2859 1093 0.400000 +2859 1117 0.400000 +2859 1230 0.400000 +2859 1291 0.400000 +2859 1371 0.400000 +2859 1405 0.400000 +2859 1468 0.400000 +2859 1614 0.400000 +2859 1726 0.400000 +2859 1797 0.400000 +2859 1936 0.400000 +2859 2030 0.400000 +2859 2044 0.400000 +2859 2086 0.400000 +2859 2111 0.400000 +2859 2154 0.400000 +2859 2155 0.400000 +2859 2182 0.400000 +2859 2242 0.400000 +2859 2271 0.400000 +2859 2349 0.400000 +2859 2410 0.400000 +2859 2436 0.400000 +2859 2519 0.400000 +2859 2625 0.400000 +2859 2658 0.400000 +2859 2663 0.400000 +2859 2684 0.400000 +2859 2690 0.400000 +2859 2703 0.400000 +2859 2863 0.400000 +2859 2914 0.400000 +2859 3096 0.400000 +2859 3120 0.400000 +2859 3130 0.400000 +2859 3155 0.400000 +2859 3159 0.400000 +2860 30 0.400000 +2860 110 0.400000 +2860 112 0.400000 +2860 119 0.400000 +2860 196 0.400000 +2860 197 0.400000 +2860 259 0.400000 +2860 313 0.400000 +2860 337 0.400000 +2860 343 0.400000 +2860 405 0.400000 +2860 430 0.400000 +2860 538 0.400000 +2860 596 0.400000 +2860 631 0.400000 +2860 686 0.400000 +2860 690 0.400000 +2860 773 0.400000 +2860 802 0.400000 +2860 924 0.400000 +2860 943 0.400000 +2860 1052 0.400000 +2860 1067 0.400000 +2860 1106 0.400000 +2860 1110 0.400000 +2860 1177 0.400000 +2860 1264 0.400000 +2860 1270 0.400000 +2860 1318 0.400000 +2860 1341 0.400000 +2860 1402 0.400000 +2860 1497 0.400000 +2860 1518 0.400000 +2860 1611 0.400000 +2860 1667 0.400000 +2860 1752 0.400000 +2860 1823 0.400000 +2860 1880 0.400000 +2860 1907 0.400000 +2860 1981 0.400000 +2860 2019 0.400000 +2860 2127 0.400000 +2860 2348 0.400000 +2860 2377 0.400000 +2860 2379 0.400000 +2860 2417 0.400000 +2860 2488 0.400000 +2860 2679 0.400000 +2860 2765 0.400000 +2860 2783 0.400000 +2860 2843 0.400000 +2860 2868 0.400000 +2860 2876 0.400000 +2860 2952 0.400000 +2860 3080 0.400000 +2860 3095 0.400000 +2860 3197 0.400000 +2860 3200 0.400000 +2861 54 0.400000 +2861 95 0.400000 +2861 119 0.400000 +2861 264 0.400000 +2861 301 0.400000 +2861 339 0.400000 +2861 376 0.400000 +2861 379 0.400000 +2861 405 0.400000 +2861 469 0.400000 +2861 498 0.400000 +2861 535 0.400000 +2861 558 0.400000 +2861 788 0.400000 +2861 880 0.400000 +2861 907 0.400000 +2861 910 0.400000 +2861 976 0.400000 +2861 1004 0.400000 +2861 1035 0.400000 +2861 1064 0.400000 +2861 1096 0.400000 +2861 1119 0.400000 +2861 1158 0.400000 +2861 1211 0.400000 +2861 1228 0.400000 +2861 1229 0.400000 +2861 1485 0.400000 +2861 1526 0.400000 +2861 1640 0.400000 +2861 1668 0.400000 +2861 1690 0.400000 +2861 1699 0.400000 +2861 1723 0.400000 +2861 1747 0.400000 +2861 1784 0.400000 +2861 2112 0.400000 +2861 2114 0.400000 +2861 2135 0.400000 +2861 2162 0.400000 +2861 2187 0.400000 +2861 2198 0.400000 +2861 2289 0.400000 +2861 2336 0.400000 +2861 2366 0.400000 +2861 2407 0.400000 +2861 2414 0.400000 +2861 2509 0.400000 +2861 2552 0.400000 +2861 2679 0.400000 +2861 2686 0.400000 +2861 2793 0.400000 +2861 2800 0.400000 +2861 2888 0.400000 +2861 2909 0.400000 +2861 3040 0.400000 +2861 3068 0.400000 +2861 3110 0.400000 +2861 3113 0.400000 +2862 24 0.400000 +2862 112 0.400000 +2862 166 0.400000 +2862 175 0.400000 +2862 219 0.400000 +2862 241 0.400000 +2862 291 0.400000 +2862 325 0.400000 +2862 355 0.400000 +2862 373 0.400000 +2862 414 0.400000 +2862 429 0.400000 +2862 458 0.400000 +2862 482 0.400000 +2862 484 0.400000 +2862 544 0.400000 +2862 557 0.400000 +2862 562 0.400000 +2862 577 0.400000 +2862 599 0.400000 +2862 619 0.400000 +2862 674 0.400000 +2862 738 0.400000 +2862 789 0.400000 +2862 806 0.400000 +2862 813 0.400000 +2862 817 0.400000 +2862 854 0.400000 +2862 943 0.400000 +2862 998 0.400000 +2862 1045 0.400000 +2862 1058 0.400000 +2862 1074 0.400000 +2862 1176 0.400000 +2862 1252 0.400000 +2862 1326 0.400000 +2862 1329 0.400000 +2862 1447 0.400000 +2862 1480 0.400000 +2862 1494 0.400000 +2862 1550 0.400000 +2862 1631 0.400000 +2862 1714 0.400000 +2862 1724 0.400000 +2862 1742 0.400000 +2862 1829 0.400000 +2862 1893 0.400000 +2862 1918 0.400000 +2862 1935 0.400000 +2862 2067 0.400000 +2862 2081 0.400000 +2862 2115 0.400000 +2862 2116 0.400000 +2862 2147 0.400000 +2862 2170 0.400000 +2862 2294 0.400000 +2862 2302 0.400000 +2862 2339 0.400000 +2862 2343 0.400000 +2862 2436 0.400000 +2862 2607 0.400000 +2862 2686 0.400000 +2862 2839 0.400000 +2862 2870 0.400000 +2862 2890 0.400000 +2862 2904 0.400000 +2862 2969 0.400000 +2862 3008 0.400000 +2862 3088 0.400000 +2862 3094 0.400000 +2862 3099 0.400000 +2862 3125 0.400000 +2862 3172 0.400000 +2863 6 0.400000 +2863 56 0.400000 +2863 65 0.400000 +2863 93 0.400000 +2863 125 0.400000 +2863 154 0.400000 +2863 259 0.400000 +2863 300 0.400000 +2863 338 0.400000 +2863 367 0.400000 +2863 415 0.400000 +2863 541 0.400000 +2863 550 0.400000 +2863 669 0.400000 +2863 762 0.400000 +2863 777 0.400000 +2863 842 0.400000 +2863 843 0.400000 +2863 849 0.400000 +2863 938 0.400000 +2863 998 0.400000 +2863 1021 0.400000 +2863 1028 0.400000 +2863 1081 0.400000 +2863 1123 0.400000 +2863 1209 0.400000 +2863 1285 0.400000 +2863 1342 0.400000 +2863 1381 0.400000 +2863 1485 0.400000 +2863 1564 0.400000 +2863 1568 0.400000 +2863 1577 0.400000 +2863 1682 0.400000 +2863 1714 0.400000 +2863 1788 0.400000 +2863 1803 0.400000 +2863 1904 0.400000 +2863 1963 0.400000 +2863 2068 0.400000 +2863 2117 0.400000 +2863 2137 0.400000 +2863 2201 0.400000 +2863 2282 0.400000 +2863 2583 0.400000 +2863 2650 0.400000 +2863 2702 0.400000 +2863 2749 0.400000 +2863 2751 0.400000 +2863 2777 0.400000 +2863 2780 0.400000 +2863 2841 0.400000 +2863 2920 0.400000 +2863 2943 0.400000 +2863 2964 0.400000 +2863 2988 0.400000 +2863 3013 0.400000 +2863 3070 0.400000 +2863 3092 0.400000 +2863 3093 0.400000 +2864 5 0.400000 +2864 8 0.400000 +2864 37 0.400000 +2864 43 0.400000 +2864 114 0.400000 +2864 121 0.400000 +2864 144 0.400000 +2864 163 0.400000 +2864 172 0.400000 +2864 244 0.400000 +2864 279 0.400000 +2864 300 0.400000 +2864 480 0.400000 +2864 524 0.400000 +2864 548 0.400000 +2864 552 0.400000 +2864 557 0.400000 +2864 563 0.400000 +2864 622 0.400000 +2864 648 0.400000 +2864 745 0.400000 +2864 819 0.400000 +2864 832 0.400000 +2864 834 0.400000 +2864 884 0.400000 +2864 890 0.400000 +2864 945 0.400000 +2864 1020 0.400000 +2864 1039 0.400000 +2864 1051 0.400000 +2864 1061 0.400000 +2864 1069 0.400000 +2864 1072 0.400000 +2864 1206 0.400000 +2864 1221 0.400000 +2864 1351 0.400000 +2864 1462 0.400000 +2864 1468 0.400000 +2864 1474 0.400000 +2864 1519 0.400000 +2864 1523 0.400000 +2864 1560 0.400000 +2864 1717 0.400000 +2864 1790 0.400000 +2864 1888 0.400000 +2864 1889 0.400000 +2864 1971 0.400000 +2864 1988 0.400000 +2864 2240 0.400000 +2864 2288 0.400000 +2864 2444 0.400000 +2864 2509 0.400000 +2864 2584 0.400000 +2864 2615 0.400000 +2864 2626 0.400000 +2864 2670 0.400000 +2864 2716 0.400000 +2864 2786 0.400000 +2864 2799 0.400000 +2864 2880 0.400000 +2864 2900 0.400000 +2864 2925 0.400000 +2864 2966 0.400000 +2864 3009 0.400000 +2864 3053 0.400000 +2864 3106 0.400000 +2864 3123 0.400000 +2865 65 0.400000 +2865 74 0.400000 +2865 117 0.400000 +2865 137 0.400000 +2865 138 0.400000 +2865 175 0.400000 +2865 206 0.400000 +2865 250 0.400000 +2865 265 0.400000 +2865 328 0.400000 +2865 352 0.400000 +2865 384 0.400000 +2865 419 0.400000 +2865 497 0.400000 +2865 531 0.400000 +2865 574 0.400000 +2865 612 0.400000 +2865 623 0.400000 +2865 627 0.400000 +2865 673 0.400000 +2865 766 0.400000 +2865 773 0.400000 +2865 970 0.400000 +2865 987 0.400000 +2865 1013 0.400000 +2865 1040 0.400000 +2865 1143 0.400000 +2865 1160 0.400000 +2865 1211 0.400000 +2865 1233 0.400000 +2865 1273 0.400000 +2865 1302 0.400000 +2865 1521 0.400000 +2865 1523 0.400000 +2865 1580 0.400000 +2865 1660 0.400000 +2865 1667 0.400000 +2865 1674 0.400000 +2865 1686 0.400000 +2865 1725 0.400000 +2865 1777 0.400000 +2865 1805 0.400000 +2865 1847 0.400000 +2865 1859 0.400000 +2865 2006 0.400000 +2865 2131 0.400000 +2865 2161 0.400000 +2865 2190 0.400000 +2865 2234 0.400000 +2865 2264 0.400000 +2865 2326 0.400000 +2865 2368 0.400000 +2865 2647 0.400000 +2865 2658 0.400000 +2865 2684 0.400000 +2865 2746 0.400000 +2865 2767 0.400000 +2865 2805 0.400000 +2865 2811 0.400000 +2865 2843 0.400000 +2865 2859 0.400000 +2865 2977 0.400000 +2865 3009 0.400000 +2865 3017 0.400000 +2865 3048 0.400000 +2865 3119 0.400000 +2865 3127 0.400000 +2865 3190 0.400000 +2866 127 0.400000 +2866 129 0.400000 +2866 136 0.400000 +2866 205 0.400000 +2866 245 0.400000 +2866 266 0.400000 +2866 287 0.400000 +2866 297 0.400000 +2866 340 0.400000 +2866 345 0.400000 +2866 392 0.400000 +2866 465 0.400000 +2866 551 0.400000 +2866 572 0.400000 +2866 606 0.400000 +2866 652 0.400000 +2866 669 0.400000 +2866 694 0.400000 +2866 714 0.400000 +2866 741 0.400000 +2866 805 0.400000 +2866 856 0.400000 +2866 897 0.400000 +2866 997 0.400000 +2866 1041 0.400000 +2866 1086 0.400000 +2866 1190 0.400000 +2866 1248 0.400000 +2866 1293 0.400000 +2866 1311 0.400000 +2866 1333 0.400000 +2866 1347 0.400000 +2866 1489 0.400000 +2866 1539 0.400000 +2866 1548 0.400000 +2866 1587 0.400000 +2866 1618 0.400000 +2866 1709 0.400000 +2866 1763 0.400000 +2866 1815 0.400000 +2866 1833 0.400000 +2866 1912 0.400000 +2866 2019 0.400000 +2866 2024 0.400000 +2866 2058 0.400000 +2866 2061 0.400000 +2866 2162 0.400000 +2866 2280 0.400000 +2866 2298 0.400000 +2866 2394 0.400000 +2866 2468 0.400000 +2866 2651 0.400000 +2866 2665 0.400000 +2866 2754 0.400000 +2866 2880 0.400000 +2866 2931 0.400000 +2866 2953 0.400000 +2866 3012 0.400000 +2866 3123 0.400000 +2866 3173 0.400000 +2867 11 0.400000 +2867 38 0.400000 +2867 74 0.400000 +2867 83 0.400000 +2867 84 0.400000 +2867 405 0.400000 +2867 428 0.400000 +2867 464 0.400000 +2867 474 0.400000 +2867 496 0.400000 +2867 505 0.400000 +2867 515 0.400000 +2867 558 0.400000 +2867 618 0.400000 +2867 760 0.400000 +2867 772 0.400000 +2867 780 0.400000 +2867 790 0.400000 +2867 802 0.400000 +2867 821 0.400000 +2867 856 0.400000 +2867 898 0.400000 +2867 939 0.400000 +2867 1081 0.400000 +2867 1188 0.400000 +2867 1216 0.400000 +2867 1242 0.400000 +2867 1272 0.400000 +2867 1274 0.400000 +2867 1356 0.400000 +2867 1444 0.400000 +2867 1453 0.400000 +2867 1482 0.400000 +2867 1588 0.400000 +2867 1664 0.400000 +2867 1690 0.400000 +2867 1710 0.400000 +2867 1737 0.400000 +2867 1778 0.400000 +2867 1799 0.400000 +2867 1823 0.400000 +2867 1842 0.400000 +2867 1922 0.400000 +2867 2026 0.400000 +2867 2076 0.400000 +2867 2134 0.400000 +2867 2160 0.400000 +2867 2182 0.400000 +2867 2184 0.400000 +2867 2252 0.400000 +2867 2255 0.400000 +2867 2307 0.400000 +2867 2343 0.400000 +2867 2353 0.400000 +2867 2356 0.400000 +2867 2390 0.400000 +2867 2420 0.400000 +2867 2444 0.400000 +2867 2472 0.400000 +2867 2556 0.400000 +2867 2691 0.400000 +2867 2698 0.400000 +2867 2726 0.400000 +2867 2755 0.400000 +2867 2861 0.400000 +2867 2930 0.400000 +2867 2974 0.400000 +2867 3107 0.400000 +2868 22 0.400000 +2868 89 0.400000 +2868 100 0.400000 +2868 116 0.400000 +2868 122 0.400000 +2868 164 0.400000 +2868 207 0.400000 +2868 235 0.400000 +2868 311 0.400000 +2868 451 0.400000 +2868 491 0.400000 +2868 565 0.400000 +2868 647 0.400000 +2868 791 0.400000 +2868 929 0.400000 +2868 969 0.400000 +2868 1038 0.400000 +2868 1269 0.400000 +2868 1296 0.400000 +2868 1303 0.400000 +2868 1335 0.400000 +2868 1378 0.400000 +2868 1401 0.400000 +2868 1469 0.400000 +2868 1594 0.400000 +2868 1632 0.400000 +2868 1654 0.400000 +2868 1666 0.400000 +2868 1673 0.400000 +2868 1790 0.400000 +2868 1825 0.400000 +2868 1921 0.400000 +2868 1937 0.400000 +2868 1972 0.400000 +2868 2010 0.400000 +2868 2070 0.400000 +2868 2095 0.400000 +2868 2162 0.400000 +2868 2247 0.400000 +2868 2363 0.400000 +2868 2532 0.400000 +2868 2663 0.400000 +2868 2685 0.400000 +2868 2805 0.400000 +2868 2812 0.400000 +2868 2830 0.400000 +2868 2834 0.400000 +2868 2925 0.400000 +2868 2953 0.400000 +2868 2999 0.400000 +2868 3024 0.400000 +2868 3112 0.400000 +2868 3122 0.400000 +2869 94 0.400000 +2869 129 0.400000 +2869 155 0.400000 +2869 187 0.400000 +2869 188 0.400000 +2869 198 0.400000 +2869 213 0.400000 +2869 240 0.400000 +2869 286 0.400000 +2869 370 0.400000 +2869 379 0.400000 +2869 396 0.400000 +2869 456 0.400000 +2869 468 0.400000 +2869 488 0.400000 +2869 509 0.400000 +2869 575 0.400000 +2869 588 0.400000 +2869 652 0.400000 +2869 671 0.400000 +2869 695 0.400000 +2869 720 0.400000 +2869 808 0.400000 +2869 819 0.400000 +2869 857 0.400000 +2869 919 0.400000 +2869 986 0.400000 +2869 1022 0.400000 +2869 1102 0.400000 +2869 1172 0.400000 +2869 1205 0.400000 +2869 1360 0.400000 +2869 1389 0.400000 +2869 1420 0.400000 +2869 1428 0.400000 +2869 1514 0.400000 +2869 1557 0.400000 +2869 1590 0.400000 +2869 1603 0.400000 +2869 1608 0.400000 +2869 1613 0.400000 +2869 1620 0.400000 +2869 1717 0.400000 +2869 1743 0.400000 +2869 1791 0.400000 +2869 1796 0.400000 +2869 1809 0.400000 +2869 1867 0.400000 +2869 1888 0.400000 +2869 1958 0.400000 +2869 1988 0.400000 +2869 2085 0.400000 +2869 2089 0.400000 +2869 2183 0.400000 +2869 2233 0.400000 +2869 2272 0.400000 +2869 2413 0.400000 +2869 2422 0.400000 +2869 2474 0.400000 +2869 2545 0.400000 +2869 2546 0.400000 +2869 2582 0.400000 +2869 2636 0.400000 +2869 2791 0.400000 +2869 2799 0.400000 +2869 2840 0.400000 +2869 2930 0.400000 +2869 2954 0.400000 +2869 3057 0.400000 +2869 3088 0.400000 +2869 3116 0.400000 +2870 58 0.400000 +2870 64 0.400000 +2870 93 0.400000 +2870 101 0.400000 +2870 285 0.400000 +2870 290 0.400000 +2870 426 0.400000 +2870 439 0.400000 +2870 498 0.400000 +2870 514 0.400000 +2870 539 0.400000 +2870 549 0.400000 +2870 584 0.400000 +2870 598 0.400000 +2870 655 0.400000 +2870 660 0.400000 +2870 769 0.400000 +2870 838 0.400000 +2870 866 0.400000 +2870 892 0.400000 +2870 1050 0.400000 +2870 1095 0.400000 +2870 1319 0.400000 +2870 1360 0.400000 +2870 1390 0.400000 +2870 1414 0.400000 +2870 1428 0.400000 +2870 1443 0.400000 +2870 1468 0.400000 +2870 1536 0.400000 +2870 1557 0.400000 +2870 1563 0.400000 +2870 1681 0.400000 +2870 1688 0.400000 +2870 1880 0.400000 +2870 2004 0.400000 +2870 2079 0.400000 +2870 2100 0.400000 +2870 2113 0.400000 +2870 2182 0.400000 +2870 2243 0.400000 +2870 2299 0.400000 +2870 2326 0.400000 +2870 2335 0.400000 +2870 2338 0.400000 +2870 2380 0.400000 +2870 2521 0.400000 +2870 2562 0.400000 +2870 2595 0.400000 +2870 2612 0.400000 +2870 2650 0.400000 +2870 2661 0.400000 +2870 2681 0.400000 +2870 2701 0.400000 +2870 2704 0.400000 +2870 2771 0.400000 +2870 2867 0.400000 +2870 2869 0.400000 +2870 2882 0.400000 +2870 2932 0.400000 +2870 2953 0.400000 +2870 3157 0.400000 +2870 3182 0.400000 +2871 39 0.400000 +2871 41 0.400000 +2871 65 0.400000 +2871 134 0.400000 +2871 169 0.400000 +2871 193 0.400000 +2871 232 0.400000 +2871 233 0.400000 +2871 244 0.400000 +2871 346 0.400000 +2871 359 0.400000 +2871 464 0.400000 +2871 530 0.400000 +2871 602 0.400000 +2871 728 0.400000 +2871 752 0.400000 +2871 837 0.400000 +2871 861 0.400000 +2871 867 0.400000 +2871 922 0.400000 +2871 1040 0.400000 +2871 1071 0.400000 +2871 1133 0.400000 +2871 1140 0.400000 +2871 1237 0.400000 +2871 1291 0.400000 +2871 1296 0.400000 +2871 1407 0.400000 +2871 1412 0.400000 +2871 1512 0.400000 +2871 1589 0.400000 +2871 1615 0.400000 +2871 1742 0.400000 +2871 1783 0.400000 +2871 1835 0.400000 +2871 1844 0.400000 +2871 1916 0.400000 +2871 2068 0.400000 +2871 2112 0.400000 +2871 2180 0.400000 +2871 2214 0.400000 +2871 2241 0.400000 +2871 2252 0.400000 +2871 2263 0.400000 +2871 2267 0.400000 +2871 2290 0.400000 +2871 2305 0.400000 +2871 2373 0.400000 +2871 2374 0.400000 +2871 2429 0.400000 +2871 2460 0.400000 +2871 2525 0.400000 +2871 2527 0.400000 +2871 2591 0.400000 +2871 2639 0.400000 +2871 2642 0.400000 +2871 2696 0.400000 +2871 2837 0.400000 +2871 2852 0.400000 +2871 2868 0.400000 +2871 2995 0.400000 +2871 3061 0.400000 +2871 3078 0.400000 +2871 3142 0.400000 +2871 3171 0.400000 +2871 3174 0.400000 +2871 3183 0.400000 +2872 47 0.400000 +2872 52 0.400000 +2872 76 0.400000 +2872 98 0.400000 +2872 100 0.400000 +2872 143 0.400000 +2872 152 0.400000 +2872 240 0.400000 +2872 247 0.400000 +2872 250 0.400000 +2872 252 0.400000 +2872 257 0.400000 +2872 268 0.400000 +2872 271 0.400000 +2872 288 0.400000 +2872 333 0.400000 +2872 412 0.400000 +2872 418 0.400000 +2872 420 0.400000 +2872 482 0.400000 +2872 543 0.400000 +2872 734 0.400000 +2872 787 0.400000 +2872 828 0.400000 +2872 841 0.400000 +2872 916 0.400000 +2872 924 0.400000 +2872 950 0.400000 +2872 1008 0.400000 +2872 1156 0.400000 +2872 1174 0.400000 +2872 1181 0.400000 +2872 1182 0.400000 +2872 1304 0.400000 +2872 1324 0.400000 +2872 1426 0.400000 +2872 1509 0.400000 +2872 1516 0.400000 +2872 1539 0.400000 +2872 1566 0.400000 +2872 1625 0.400000 +2872 1632 0.400000 +2872 1703 0.400000 +2872 1780 0.400000 +2872 2042 0.400000 +2872 2140 0.400000 +2872 2166 0.400000 +2872 2510 0.400000 +2872 2519 0.400000 +2872 2537 0.400000 +2872 2544 0.400000 +2872 2563 0.400000 +2872 2595 0.400000 +2872 2625 0.400000 +2872 2637 0.400000 +2872 2734 0.400000 +2872 2792 0.400000 +2872 2966 0.400000 +2872 3031 0.400000 +2872 3056 0.400000 +2872 3162 0.400000 +2873 29 0.400000 +2873 303 0.400000 +2873 336 0.400000 +2873 344 0.400000 +2873 565 0.400000 +2873 684 0.400000 +2873 699 0.400000 +2873 700 0.400000 +2873 716 0.400000 +2873 737 0.400000 +2873 844 0.400000 +2873 919 0.400000 +2873 1000 0.400000 +2873 1057 0.400000 +2873 1086 0.400000 +2873 1155 0.400000 +2873 1197 0.400000 +2873 1265 0.400000 +2873 1285 0.400000 +2873 1288 0.400000 +2873 1331 0.400000 +2873 1347 0.400000 +2873 1568 0.400000 +2873 1603 0.400000 +2873 1643 0.400000 +2873 1651 0.400000 +2873 1715 0.400000 +2873 1745 0.400000 +2873 1747 0.400000 +2873 1820 0.400000 +2873 1876 0.400000 +2873 1922 0.400000 +2873 1932 0.400000 +2873 1960 0.400000 +2873 1963 0.400000 +2873 2005 0.400000 +2873 2130 0.400000 +2873 2254 0.400000 +2873 2255 0.400000 +2873 2383 0.400000 +2873 2415 0.400000 +2873 2495 0.400000 +2873 2636 0.400000 +2873 2661 0.400000 +2873 2683 0.400000 +2873 2719 0.400000 +2873 2802 0.400000 +2873 2876 0.400000 +2873 2961 0.400000 +2873 3040 0.400000 +2873 3103 0.400000 +2873 3110 0.400000 +2873 3129 0.400000 +2873 3141 0.400000 +2873 3183 0.400000 +2873 3189 0.400000 +2874 115 0.400000 +2874 166 0.400000 +2874 202 0.400000 +2874 246 0.400000 +2874 255 0.400000 +2874 301 0.400000 +2874 388 0.400000 +2874 541 0.400000 +2874 564 0.400000 +2874 617 0.400000 +2874 649 0.400000 +2874 674 0.400000 +2874 722 0.400000 +2874 746 0.400000 +2874 790 0.400000 +2874 923 0.400000 +2874 1015 0.400000 +2874 1098 0.400000 +2874 1107 0.400000 +2874 1169 0.400000 +2874 1225 0.400000 +2874 1255 0.400000 +2874 1256 0.400000 +2874 1317 0.400000 +2874 1406 0.400000 +2874 1471 0.400000 +2874 1483 0.400000 +2874 1561 0.400000 +2874 1619 0.400000 +2874 1621 0.400000 +2874 1622 0.400000 +2874 1701 0.400000 +2874 1725 0.400000 +2874 1737 0.400000 +2874 1764 0.400000 +2874 1803 0.400000 +2874 1861 0.400000 +2874 2037 0.400000 +2874 2072 0.400000 +2874 2082 0.400000 +2874 2138 0.400000 +2874 2140 0.400000 +2874 2156 0.400000 +2874 2283 0.400000 +2874 2330 0.400000 +2874 2343 0.400000 +2874 2392 0.400000 +2874 2463 0.400000 +2874 2466 0.400000 +2874 2579 0.400000 +2874 2625 0.400000 +2874 2661 0.400000 +2874 2673 0.400000 +2874 2741 0.400000 +2874 2828 0.400000 +2874 2957 0.400000 +2874 3028 0.400000 +2874 3057 0.400000 +2874 3070 0.400000 +2874 3165 0.400000 +2874 3166 0.400000 +2875 3 0.400000 +2875 48 0.400000 +2875 92 0.400000 +2875 214 0.400000 +2875 302 0.400000 +2875 356 0.400000 +2875 364 0.400000 +2875 520 0.400000 +2875 555 0.400000 +2875 567 0.400000 +2875 620 0.400000 +2875 686 0.400000 +2875 700 0.400000 +2875 709 0.400000 +2875 843 0.400000 +2875 867 0.400000 +2875 921 0.400000 +2875 1166 0.400000 +2875 1177 0.400000 +2875 1193 0.400000 +2875 1241 0.400000 +2875 1274 0.400000 +2875 1354 0.400000 +2875 1392 0.400000 +2875 1404 0.400000 +2875 1465 0.400000 +2875 1517 0.400000 +2875 1540 0.400000 +2875 1697 0.400000 +2875 1756 0.400000 +2875 1822 0.400000 +2875 1880 0.400000 +2875 1906 0.400000 +2875 2050 0.400000 +2875 2117 0.400000 +2875 2395 0.400000 +2875 2428 0.400000 +2875 2479 0.400000 +2875 2482 0.400000 +2875 2622 0.400000 +2875 2680 0.400000 +2875 2693 0.400000 +2875 2712 0.400000 +2875 2713 0.400000 +2875 2743 0.400000 +2875 2834 0.400000 +2875 2854 0.400000 +2875 2868 0.400000 +2875 2897 0.400000 +2875 2953 0.400000 +2875 2986 0.400000 +2875 3100 0.400000 +2876 5 0.400000 +2876 33 0.400000 +2876 150 0.400000 +2876 162 0.400000 +2876 254 0.400000 +2876 279 0.400000 +2876 289 0.400000 +2876 291 0.400000 +2876 403 0.400000 +2876 422 0.400000 +2876 490 0.400000 +2876 518 0.400000 +2876 562 0.400000 +2876 578 0.400000 +2876 607 0.400000 +2876 608 0.400000 +2876 663 0.400000 +2876 722 0.400000 +2876 733 0.400000 +2876 778 0.400000 +2876 779 0.400000 +2876 859 0.400000 +2876 1021 0.400000 +2876 1040 0.400000 +2876 1043 0.400000 +2876 1107 0.400000 +2876 1244 0.400000 +2876 1258 0.400000 +2876 1267 0.400000 +2876 1311 0.400000 +2876 1407 0.400000 +2876 1415 0.400000 +2876 1469 0.400000 +2876 1500 0.400000 +2876 1518 0.400000 +2876 1590 0.400000 +2876 1600 0.400000 +2876 1720 0.400000 +2876 1768 0.400000 +2876 1772 0.400000 +2876 1887 0.400000 +2876 1980 0.400000 +2876 2014 0.400000 +2876 2111 0.400000 +2876 2128 0.400000 +2876 2198 0.400000 +2876 2212 0.400000 +2876 2257 0.400000 +2876 2399 0.400000 +2876 2493 0.400000 +2876 2523 0.400000 +2876 2752 0.400000 +2876 2779 0.400000 +2876 2808 0.400000 +2876 2842 0.400000 +2876 2902 0.400000 +2876 2945 0.400000 +2876 2988 0.400000 +2876 2993 0.400000 +2876 3007 0.400000 +2876 3045 0.400000 +2876 3064 0.400000 +2876 3081 0.400000 +2876 3131 0.400000 +2876 3188 0.400000 +2877 3 0.400000 +2877 48 0.400000 +2877 145 0.400000 +2877 197 0.400000 +2877 292 0.400000 +2877 388 0.400000 +2877 406 0.400000 +2877 416 0.400000 +2877 587 0.400000 +2877 589 0.400000 +2877 683 0.400000 +2877 744 0.400000 +2877 747 0.400000 +2877 841 0.400000 +2877 866 0.400000 +2877 868 0.400000 +2877 972 0.400000 +2877 1218 0.400000 +2877 1223 0.400000 +2877 1337 0.400000 +2877 1403 0.400000 +2877 1437 0.400000 +2877 1473 0.400000 +2877 1601 0.400000 +2877 1677 0.400000 +2877 1682 0.400000 +2877 1707 0.400000 +2877 1738 0.400000 +2877 1849 0.400000 +2877 1867 0.400000 +2877 1912 0.400000 +2877 1926 0.400000 +2877 1929 0.400000 +2877 1970 0.400000 +2877 2169 0.400000 +2877 2319 0.400000 +2877 2347 0.400000 +2877 2428 0.400000 +2877 2496 0.400000 +2877 2509 0.400000 +2877 2557 0.400000 +2877 2561 0.400000 +2877 2575 0.400000 +2877 2598 0.400000 +2877 2636 0.400000 +2877 2663 0.400000 +2877 2715 0.400000 +2877 2721 0.400000 +2877 2738 0.400000 +2877 2765 0.400000 +2877 2783 0.400000 +2877 2803 0.400000 +2877 2808 0.400000 +2877 2981 0.400000 +2877 3010 0.400000 +2877 3020 0.400000 +2877 3041 0.400000 +2877 3048 0.400000 +2877 3059 0.400000 +2877 3183 0.400000 +2877 3187 0.400000 +2878 39 0.400000 +2878 107 0.400000 +2878 144 0.400000 +2878 146 0.400000 +2878 216 0.400000 +2878 340 0.400000 +2878 348 0.400000 +2878 602 0.400000 +2878 608 0.400000 +2878 657 0.400000 +2878 685 0.400000 +2878 795 0.400000 +2878 861 0.400000 +2878 952 0.400000 +2878 974 0.400000 +2878 994 0.400000 +2878 1035 0.400000 +2878 1056 0.400000 +2878 1080 0.400000 +2878 1083 0.400000 +2878 1108 0.400000 +2878 1123 0.400000 +2878 1136 0.400000 +2878 1156 0.400000 +2878 1163 0.400000 +2878 1189 0.400000 +2878 1215 0.400000 +2878 1250 0.400000 +2878 1282 0.400000 +2878 1362 0.400000 +2878 1431 0.400000 +2878 1542 0.400000 +2878 1545 0.400000 +2878 1579 0.400000 +2878 1738 0.400000 +2878 1743 0.400000 +2878 1760 0.400000 +2878 1761 0.400000 +2878 1818 0.400000 +2878 1940 0.400000 +2878 1941 0.400000 +2878 1952 0.400000 +2878 2032 0.400000 +2878 2142 0.400000 +2878 2185 0.400000 +2878 2273 0.400000 +2878 2291 0.400000 +2878 2344 0.400000 +2878 2384 0.400000 +2878 2565 0.400000 +2878 2612 0.400000 +2878 2654 0.400000 +2878 2722 0.400000 +2878 2756 0.400000 +2878 2844 0.400000 +2878 2869 0.400000 +2878 2909 0.400000 +2878 2921 0.400000 +2878 3042 0.400000 +2878 3078 0.400000 +2878 3173 0.400000 +2878 3187 0.400000 +2879 22 0.400000 +2879 55 0.400000 +2879 95 0.400000 +2879 105 0.400000 +2879 186 0.400000 +2879 236 0.400000 +2879 350 0.400000 +2879 413 0.400000 +2879 491 0.400000 +2879 540 0.400000 +2879 567 0.400000 +2879 576 0.400000 +2879 584 0.400000 +2879 777 0.400000 +2879 855 0.400000 +2879 932 0.400000 +2879 938 0.400000 +2879 961 0.400000 +2879 1000 0.400000 +2879 1053 0.400000 +2879 1078 0.400000 +2879 1103 0.400000 +2879 1109 0.400000 +2879 1205 0.400000 +2879 1297 0.400000 +2879 1315 0.400000 +2879 1408 0.400000 +2879 1454 0.400000 +2879 1527 0.400000 +2879 1547 0.400000 +2879 1551 0.400000 +2879 1573 0.400000 +2879 1599 0.400000 +2879 1673 0.400000 +2879 1726 0.400000 +2879 1733 0.400000 +2879 1750 0.400000 +2879 1828 0.400000 +2879 1841 0.400000 +2879 1930 0.400000 +2879 2017 0.400000 +2879 2019 0.400000 +2879 2024 0.400000 +2879 2026 0.400000 +2879 2080 0.400000 +2879 2093 0.400000 +2879 2108 0.400000 +2879 2163 0.400000 +2879 2235 0.400000 +2879 2281 0.400000 +2879 2286 0.400000 +2879 2339 0.400000 +2879 2362 0.400000 +2879 2457 0.400000 +2879 2507 0.400000 +2879 2516 0.400000 +2879 2523 0.400000 +2879 2561 0.400000 +2879 2577 0.400000 +2879 2610 0.400000 +2879 2646 0.400000 +2879 2656 0.400000 +2879 2713 0.400000 +2879 2738 0.400000 +2879 2783 0.400000 +2879 2790 0.400000 +2879 2872 0.400000 +2879 2893 0.400000 +2879 2897 0.400000 +2879 2934 0.400000 +2879 2966 0.400000 +2879 3050 0.400000 +2879 3090 0.400000 +2879 3144 0.400000 +2879 3169 0.400000 +2879 3188 0.400000 +2880 49 0.400000 +2880 55 0.400000 +2880 74 0.400000 +2880 130 0.400000 +2880 312 0.400000 +2880 320 0.400000 +2880 339 0.400000 +2880 391 0.400000 +2880 436 0.400000 +2880 444 0.400000 +2880 627 0.400000 +2880 635 0.400000 +2880 692 0.400000 +2880 699 0.400000 +2880 753 0.400000 +2880 754 0.400000 +2880 811 0.400000 +2880 859 0.400000 +2880 892 0.400000 +2880 900 0.400000 +2880 983 0.400000 +2880 994 0.400000 +2880 1109 0.400000 +2880 1138 0.400000 +2880 1176 0.400000 +2880 1239 0.400000 +2880 1268 0.400000 +2880 1310 0.400000 +2880 1412 0.400000 +2880 1465 0.400000 +2880 1534 0.400000 +2880 1617 0.400000 +2880 1708 0.400000 +2880 1716 0.400000 +2880 1825 0.400000 +2880 1849 0.400000 +2880 1857 0.400000 +2880 1928 0.400000 +2880 1956 0.400000 +2880 1969 0.400000 +2880 2018 0.400000 +2880 2085 0.400000 +2880 2152 0.400000 +2880 2201 0.400000 +2880 2252 0.400000 +2880 2301 0.400000 +2880 2496 0.400000 +2880 2519 0.400000 +2880 2644 0.400000 +2880 2687 0.400000 +2880 2700 0.400000 +2880 2717 0.400000 +2880 2831 0.400000 +2880 2849 0.400000 +2880 2875 0.400000 +2880 2877 0.400000 +2880 2890 0.400000 +2880 2924 0.400000 +2880 2968 0.400000 +2880 2975 0.400000 +2880 3032 0.400000 +2880 3075 0.400000 +2880 3089 0.400000 +2881 19 0.400000 +2881 78 0.400000 +2881 396 0.400000 +2881 406 0.400000 +2881 559 0.400000 +2881 652 0.400000 +2881 677 0.400000 +2881 686 0.400000 +2881 839 0.400000 +2881 846 0.400000 +2881 847 0.400000 +2881 853 0.400000 +2881 854 0.400000 +2881 882 0.400000 +2881 907 0.400000 +2881 933 0.400000 +2881 944 0.400000 +2881 1052 0.400000 +2881 1060 0.400000 +2881 1083 0.400000 +2881 1097 0.400000 +2881 1140 0.400000 +2881 1170 0.400000 +2881 1217 0.400000 +2881 1218 0.400000 +2881 1231 0.400000 +2881 1233 0.400000 +2881 1234 0.400000 +2881 1238 0.400000 +2881 1305 0.400000 +2881 1341 0.400000 +2881 1422 0.400000 +2881 1433 0.400000 +2881 1558 0.400000 +2881 1586 0.400000 +2881 1612 0.400000 +2881 1614 0.400000 +2881 1649 0.400000 +2881 1731 0.400000 +2881 1780 0.400000 +2881 1805 0.400000 +2881 1813 0.400000 +2881 1861 0.400000 +2881 1877 0.400000 +2881 1978 0.400000 +2881 2108 0.400000 +2881 2224 0.400000 +2881 2253 0.400000 +2881 2284 0.400000 +2881 2370 0.400000 +2881 2441 0.400000 +2881 2526 0.400000 +2881 2553 0.400000 +2881 2655 0.400000 +2881 2671 0.400000 +2881 2697 0.400000 +2881 2721 0.400000 +2881 2861 0.400000 +2881 2894 0.400000 +2881 2923 0.400000 +2881 3042 0.400000 +2881 3144 0.400000 +2881 3148 0.400000 +2882 30 0.400000 +2882 57 0.400000 +2882 67 0.400000 +2882 100 0.400000 +2882 127 0.400000 +2882 164 0.400000 +2882 173 0.400000 +2882 183 0.400000 +2882 206 0.400000 +2882 264 0.400000 +2882 284 0.400000 +2882 326 0.400000 +2882 339 0.400000 +2882 363 0.400000 +2882 543 0.400000 +2882 550 0.400000 +2882 561 0.400000 +2882 662 0.400000 +2882 698 0.400000 +2882 839 0.400000 +2882 855 0.400000 +2882 909 0.400000 +2882 918 0.400000 +2882 1008 0.400000 +2882 1031 0.400000 +2882 1110 0.400000 +2882 1121 0.400000 +2882 1145 0.400000 +2882 1200 0.400000 +2882 1201 0.400000 +2882 1341 0.400000 +2882 1342 0.400000 +2882 1475 0.400000 +2882 1511 0.400000 +2882 1512 0.400000 +2882 1538 0.400000 +2882 1588 0.400000 +2882 1707 0.400000 +2882 1713 0.400000 +2882 1767 0.400000 +2882 1838 0.400000 +2882 1916 0.400000 +2882 2040 0.400000 +2882 2071 0.400000 +2882 2138 0.400000 +2882 2174 0.400000 +2882 2180 0.400000 +2882 2279 0.400000 +2882 2303 0.400000 +2882 2332 0.400000 +2882 2379 0.400000 +2882 2380 0.400000 +2882 2421 0.400000 +2882 2438 0.400000 +2882 2440 0.400000 +2882 2499 0.400000 +2882 2528 0.400000 +2882 2532 0.400000 +2882 2548 0.400000 +2882 2573 0.400000 +2882 2603 0.400000 +2882 2656 0.400000 +2882 2727 0.400000 +2882 2903 0.400000 +2882 2941 0.400000 +2882 2955 0.400000 +2882 2993 0.400000 +2882 3013 0.400000 +2882 3029 0.400000 +2882 3045 0.400000 +2882 3128 0.400000 +2882 3178 0.400000 +2883 11 0.400000 +2883 115 0.400000 +2883 156 0.400000 +2883 171 0.400000 +2883 174 0.400000 +2883 177 0.400000 +2883 212 0.400000 +2883 258 0.400000 +2883 283 0.400000 +2883 369 0.400000 +2883 406 0.400000 +2883 420 0.400000 +2883 533 0.400000 +2883 570 0.400000 +2883 608 0.400000 +2883 623 0.400000 +2883 627 0.400000 +2883 645 0.400000 +2883 670 0.400000 +2883 718 0.400000 +2883 776 0.400000 +2883 790 0.400000 +2883 877 0.400000 +2883 905 0.400000 +2883 1013 0.400000 +2883 1058 0.400000 +2883 1073 0.400000 +2883 1094 0.400000 +2883 1101 0.400000 +2883 1135 0.400000 +2883 1228 0.400000 +2883 1310 0.400000 +2883 1371 0.400000 +2883 1438 0.400000 +2883 1452 0.400000 +2883 1464 0.400000 +2883 1499 0.400000 +2883 1527 0.400000 +2883 1546 0.400000 +2883 1588 0.400000 +2883 1604 0.400000 +2883 1620 0.400000 +2883 1779 0.400000 +2883 1793 0.400000 +2883 1798 0.400000 +2883 1802 0.400000 +2883 1812 0.400000 +2883 1858 0.400000 +2883 1864 0.400000 +2883 1950 0.400000 +2883 1972 0.400000 +2883 2022 0.400000 +2883 2041 0.400000 +2883 2057 0.400000 +2883 2070 0.400000 +2883 2082 0.400000 +2883 2126 0.400000 +2883 2131 0.400000 +2883 2188 0.400000 +2883 2224 0.400000 +2883 2244 0.400000 +2883 2260 0.400000 +2883 2375 0.400000 +2883 2384 0.400000 +2883 2461 0.400000 +2883 2546 0.400000 +2883 2547 0.400000 +2883 2598 0.400000 +2883 2676 0.400000 +2883 2686 0.400000 +2883 2688 0.400000 +2883 2721 0.400000 +2883 2738 0.400000 +2883 2770 0.400000 +2883 2782 0.400000 +2883 2788 0.400000 +2883 2848 0.400000 +2883 2869 0.400000 +2883 2878 0.400000 +2883 2928 0.400000 +2883 2970 0.400000 +2883 3021 0.400000 +2883 3023 0.400000 +2883 3097 0.400000 +2883 3154 0.400000 +2883 3169 0.400000 +2884 9 0.400000 +2884 42 0.400000 +2884 107 0.400000 +2884 178 0.400000 +2884 183 0.400000 +2884 381 0.400000 +2884 547 0.400000 +2884 571 0.400000 +2884 623 0.400000 +2884 632 0.400000 +2884 648 0.400000 +2884 692 0.400000 +2884 704 0.400000 +2884 723 0.400000 +2884 727 0.400000 +2884 752 0.400000 +2884 766 0.400000 +2884 886 0.400000 +2884 985 0.400000 +2884 1087 0.400000 +2884 1099 0.400000 +2884 1117 0.400000 +2884 1131 0.400000 +2884 1253 0.400000 +2884 1334 0.400000 +2884 1353 0.400000 +2884 1464 0.400000 +2884 1545 0.400000 +2884 1599 0.400000 +2884 1652 0.400000 +2884 1662 0.400000 +2884 1683 0.400000 +2884 1773 0.400000 +2884 1787 0.400000 +2884 1810 0.400000 +2884 1882 0.400000 +2884 2034 0.400000 +2884 2092 0.400000 +2884 2111 0.400000 +2884 2153 0.400000 +2884 2182 0.400000 +2884 2195 0.400000 +2884 2647 0.400000 +2884 2652 0.400000 +2884 2682 0.400000 +2884 2692 0.400000 +2884 2697 0.400000 +2884 2885 0.400000 +2884 2890 0.400000 +2884 2892 0.400000 +2884 2939 0.400000 +2884 3063 0.400000 +2884 3069 0.400000 +2884 3156 0.400000 +2884 3166 0.400000 +2885 147 0.400000 +2885 247 0.400000 +2885 258 0.400000 +2885 285 0.400000 +2885 341 0.400000 +2885 377 0.400000 +2885 393 0.400000 +2885 415 0.400000 +2885 476 0.400000 +2885 509 0.400000 +2885 525 0.400000 +2885 565 0.400000 +2885 695 0.400000 +2885 741 0.400000 +2885 814 0.400000 +2885 1011 0.400000 +2885 1149 0.400000 +2885 1228 0.400000 +2885 1289 0.400000 +2885 1307 0.400000 +2885 1323 0.400000 +2885 1334 0.400000 +2885 1419 0.400000 +2885 1433 0.400000 +2885 1437 0.400000 +2885 1487 0.400000 +2885 1509 0.400000 +2885 1582 0.400000 +2885 1611 0.400000 +2885 1616 0.400000 +2885 1628 0.400000 +2885 1667 0.400000 +2885 1683 0.400000 +2885 1797 0.400000 +2885 1833 0.400000 +2885 1840 0.400000 +2885 1903 0.400000 +2885 2011 0.400000 +2885 2021 0.400000 +2885 2037 0.400000 +2885 2098 0.400000 +2885 2251 0.400000 +2885 2266 0.400000 +2885 2278 0.400000 +2885 2398 0.400000 +2885 2409 0.400000 +2885 2434 0.400000 +2885 2445 0.400000 +2885 2467 0.400000 +2885 2539 0.400000 +2885 2565 0.400000 +2885 2697 0.400000 +2885 2704 0.400000 +2885 2716 0.400000 +2885 2740 0.400000 +2885 2757 0.400000 +2885 2985 0.400000 +2885 2995 0.400000 +2885 3000 0.400000 +2885 3139 0.400000 +2885 3159 0.400000 +2886 19 0.400000 +2886 39 0.400000 +2886 48 0.400000 +2886 51 0.400000 +2886 80 0.400000 +2886 116 0.400000 +2886 264 0.400000 +2886 357 0.400000 +2886 365 0.400000 +2886 394 0.400000 +2886 469 0.400000 +2886 476 0.400000 +2886 591 0.400000 +2886 614 0.400000 +2886 706 0.400000 +2886 710 0.400000 +2886 744 0.400000 +2886 884 0.400000 +2886 932 0.400000 +2886 967 0.400000 +2886 989 0.400000 +2886 1018 0.400000 +2886 1042 0.400000 +2886 1126 0.400000 +2886 1131 0.400000 +2886 1296 0.400000 +2886 1340 0.400000 +2886 1400 0.400000 +2886 1415 0.400000 +2886 1490 0.400000 +2886 1493 0.400000 +2886 1532 0.400000 +2886 1694 0.400000 +2886 1704 0.400000 +2886 1739 0.400000 +2886 1746 0.400000 +2886 1760 0.400000 +2886 1781 0.400000 +2886 1855 0.400000 +2886 1884 0.400000 +2886 1934 0.400000 +2886 1969 0.400000 +2886 2000 0.400000 +2886 2031 0.400000 +2886 2138 0.400000 +2886 2300 0.400000 +2886 2303 0.400000 +2886 2417 0.400000 +2886 2539 0.400000 +2886 2561 0.400000 +2886 2749 0.400000 +2886 2853 0.400000 +2886 2955 0.400000 +2886 3026 0.400000 +2886 3112 0.400000 +2887 29 0.400000 +2887 35 0.400000 +2887 80 0.400000 +2887 115 0.400000 +2887 322 0.400000 +2887 366 0.400000 +2887 411 0.400000 +2887 414 0.400000 +2887 455 0.400000 +2887 473 0.400000 +2887 517 0.400000 +2887 544 0.400000 +2887 558 0.400000 +2887 606 0.400000 +2887 612 0.400000 +2887 723 0.400000 +2887 817 0.400000 +2887 835 0.400000 +2887 843 0.400000 +2887 920 0.400000 +2887 948 0.400000 +2887 1037 0.400000 +2887 1185 0.400000 +2887 1211 0.400000 +2887 1228 0.400000 +2887 1307 0.400000 +2887 1342 0.400000 +2887 1376 0.400000 +2887 1397 0.400000 +2887 1457 0.400000 +2887 1467 0.400000 +2887 1479 0.400000 +2887 1582 0.400000 +2887 1778 0.400000 +2887 1790 0.400000 +2887 1819 0.400000 +2887 1996 0.400000 +2887 2042 0.400000 +2887 2060 0.400000 +2887 2072 0.400000 +2887 2085 0.400000 +2887 2134 0.400000 +2887 2158 0.400000 +2887 2162 0.400000 +2887 2259 0.400000 +2887 2267 0.400000 +2887 2307 0.400000 +2887 2441 0.400000 +2887 2490 0.400000 +2887 2531 0.400000 +2887 2562 0.400000 +2887 2576 0.400000 +2887 2578 0.400000 +2887 2666 0.400000 +2887 2814 0.400000 +2887 2828 0.400000 +2887 2845 0.400000 +2887 2869 0.400000 +2887 2925 0.400000 +2887 2952 0.400000 +2887 2962 0.400000 +2887 2965 0.400000 +2887 3061 0.400000 +2887 3067 0.400000 +2887 3139 0.400000 +2887 3153 0.400000 +2888 9 0.400000 +2888 11 0.400000 +2888 23 0.400000 +2888 182 0.400000 +2888 220 0.400000 +2888 366 0.400000 +2888 386 0.400000 +2888 472 0.400000 +2888 473 0.400000 +2888 534 0.400000 +2888 558 0.400000 +2888 568 0.400000 +2888 695 0.400000 +2888 741 0.400000 +2888 751 0.400000 +2888 761 0.400000 +2888 772 0.400000 +2888 814 0.400000 +2888 1028 0.400000 +2888 1042 0.400000 +2888 1079 0.400000 +2888 1146 0.400000 +2888 1162 0.400000 +2888 1181 0.400000 +2888 1202 0.400000 +2888 1241 0.400000 +2888 1272 0.400000 +2888 1276 0.400000 +2888 1366 0.400000 +2888 1448 0.400000 +2888 1484 0.400000 +2888 1522 0.400000 +2888 1544 0.400000 +2888 1594 0.400000 +2888 1657 0.400000 +2888 1687 0.400000 +2888 1718 0.400000 +2888 1735 0.400000 +2888 1774 0.400000 +2888 1847 0.400000 +2888 2042 0.400000 +2888 2131 0.400000 +2888 2186 0.400000 +2888 2257 0.400000 +2888 2272 0.400000 +2888 2336 0.400000 +2888 2375 0.400000 +2888 2566 0.400000 +2888 2583 0.400000 +2888 2609 0.400000 +2888 2614 0.400000 +2888 2894 0.400000 +2888 2931 0.400000 +2888 2947 0.400000 +2888 2955 0.400000 +2888 3047 0.400000 +2888 3150 0.400000 +2888 3156 0.400000 +2889 162 0.400000 +2889 191 0.400000 +2889 204 0.400000 +2889 263 0.400000 +2889 332 0.400000 +2889 341 0.400000 +2889 351 0.400000 +2889 553 0.400000 +2889 577 0.400000 +2889 668 0.400000 +2889 723 0.400000 +2889 820 0.400000 +2889 826 0.400000 +2889 852 0.400000 +2889 856 0.400000 +2889 884 0.400000 +2889 890 0.400000 +2889 1079 0.400000 +2889 1141 0.400000 +2889 1200 0.400000 +2889 1219 0.400000 +2889 1263 0.400000 +2889 1276 0.400000 +2889 1335 0.400000 +2889 1337 0.400000 +2889 1493 0.400000 +2889 1505 0.400000 +2889 1506 0.400000 +2889 1530 0.400000 +2889 1616 0.400000 +2889 1706 0.400000 +2889 1715 0.400000 +2889 1764 0.400000 +2889 1808 0.400000 +2889 1919 0.400000 +2889 2046 0.400000 +2889 2059 0.400000 +2889 2128 0.400000 +2889 2238 0.400000 +2889 2321 0.400000 +2889 2386 0.400000 +2889 2450 0.400000 +2889 2471 0.400000 +2889 2531 0.400000 +2889 2559 0.400000 +2889 2564 0.400000 +2889 2611 0.400000 +2889 2620 0.400000 +2889 2888 0.400000 +2889 2893 0.400000 +2889 2912 0.400000 +2889 3026 0.400000 +2889 3104 0.400000 +2889 3123 0.400000 +2890 8 0.400000 +2890 73 0.400000 +2890 77 0.400000 +2890 79 0.400000 +2890 152 0.400000 +2890 157 0.400000 +2890 193 0.400000 +2890 225 0.400000 +2890 262 0.400000 +2890 308 0.400000 +2890 314 0.400000 +2890 399 0.400000 +2890 438 0.400000 +2890 453 0.400000 +2890 524 0.400000 +2890 661 0.400000 +2890 758 0.400000 +2890 815 0.400000 +2890 960 0.400000 +2890 1014 0.400000 +2890 1043 0.400000 +2890 1061 0.400000 +2890 1094 0.400000 +2890 1162 0.400000 +2890 1194 0.400000 +2890 1210 0.400000 +2890 1291 0.400000 +2890 1297 0.400000 +2890 1337 0.400000 +2890 1367 0.400000 +2890 1395 0.400000 +2890 1449 0.400000 +2890 1462 0.400000 +2890 1565 0.400000 +2890 1793 0.400000 +2890 1813 0.400000 +2890 1841 0.400000 +2890 1940 0.400000 +2890 1964 0.400000 +2890 1980 0.400000 +2890 2073 0.400000 +2890 2108 0.400000 +2890 2512 0.400000 +2890 2545 0.400000 +2890 2586 0.400000 +2890 2631 0.400000 +2890 2743 0.400000 +2890 2787 0.400000 +2890 2832 0.400000 +2890 2850 0.400000 +2890 2967 0.400000 +2890 2996 0.400000 +2890 3061 0.400000 +2890 3091 0.400000 +2890 3152 0.400000 +2890 3161 0.400000 +2891 1 0.400000 +2891 77 0.400000 +2891 155 0.400000 +2891 195 0.400000 +2891 200 0.400000 +2891 265 0.400000 +2891 288 0.400000 +2891 329 0.400000 +2891 332 0.400000 +2891 455 0.400000 +2891 546 0.400000 +2891 585 0.400000 +2891 681 0.400000 +2891 749 0.400000 +2891 826 0.400000 +2891 895 0.400000 +2891 912 0.400000 +2891 1007 0.400000 +2891 1011 0.400000 +2891 1025 0.400000 +2891 1060 0.400000 +2891 1139 0.400000 +2891 1244 0.400000 +2891 1253 0.400000 +2891 1265 0.400000 +2891 1303 0.400000 +2891 1332 0.400000 +2891 1346 0.400000 +2891 1392 0.400000 +2891 1412 0.400000 +2891 1489 0.400000 +2891 1513 0.400000 +2891 1576 0.400000 +2891 1612 0.400000 +2891 1621 0.400000 +2891 1718 0.400000 +2891 1737 0.400000 +2891 1810 0.400000 +2891 1834 0.400000 +2891 1859 0.400000 +2891 1861 0.400000 +2891 1942 0.400000 +2891 2016 0.400000 +2891 2096 0.400000 +2891 2135 0.400000 +2891 2203 0.400000 +2891 2231 0.400000 +2891 2277 0.400000 +2891 2289 0.400000 +2891 2399 0.400000 +2891 2543 0.400000 +2891 2556 0.400000 +2891 2557 0.400000 +2891 2589 0.400000 +2891 2594 0.400000 +2891 2616 0.400000 +2891 2623 0.400000 +2891 2670 0.400000 +2891 2674 0.400000 +2891 2737 0.400000 +2891 2948 0.400000 +2891 2980 0.400000 +2891 3002 0.400000 +2891 3067 0.400000 +2891 3073 0.400000 +2891 3138 0.400000 +2891 3149 0.400000 +2891 3176 0.400000 +2892 47 0.400000 +2892 157 0.400000 +2892 188 0.400000 +2892 213 0.400000 +2892 226 0.400000 +2892 244 0.400000 +2892 261 0.400000 +2892 347 0.400000 +2892 382 0.400000 +2892 448 0.400000 +2892 492 0.400000 +2892 531 0.400000 +2892 657 0.400000 +2892 685 0.400000 +2892 735 0.400000 +2892 784 0.400000 +2892 961 0.400000 +2892 1014 0.400000 +2892 1045 0.400000 +2892 1067 0.400000 +2892 1074 0.400000 +2892 1168 0.400000 +2892 1270 0.400000 +2892 1362 0.400000 +2892 1403 0.400000 +2892 1407 0.400000 +2892 1455 0.400000 +2892 1456 0.400000 +2892 1514 0.400000 +2892 1550 0.400000 +2892 1594 0.400000 +2892 1717 0.400000 +2892 1901 0.400000 +2892 1918 0.400000 +2892 1937 0.400000 +2892 1958 0.400000 +2892 2036 0.400000 +2892 2062 0.400000 +2892 2170 0.400000 +2892 2177 0.400000 +2892 2270 0.400000 +2892 2351 0.400000 +2892 2357 0.400000 +2892 2487 0.400000 +2892 2491 0.400000 +2892 2522 0.400000 +2892 2527 0.400000 +2892 2558 0.400000 +2892 2599 0.400000 +2892 2856 0.400000 +2892 3032 0.400000 +2892 3068 0.400000 +2892 3173 0.400000 +2893 6 0.400000 +2893 79 0.400000 +2893 130 0.400000 +2893 202 0.400000 +2893 365 0.400000 +2893 377 0.400000 +2893 400 0.400000 +2893 448 0.400000 +2893 503 0.400000 +2893 516 0.400000 +2893 517 0.400000 +2893 539 0.400000 +2893 544 0.400000 +2893 545 0.400000 +2893 592 0.400000 +2893 637 0.400000 +2893 673 0.400000 +2893 676 0.400000 +2893 707 0.400000 +2893 742 0.400000 +2893 746 0.400000 +2893 747 0.400000 +2893 761 0.400000 +2893 793 0.400000 +2893 860 0.400000 +2893 862 0.400000 +2893 863 0.400000 +2893 869 0.400000 +2893 881 0.400000 +2893 949 0.400000 +2893 950 0.400000 +2893 1076 0.400000 +2893 1161 0.400000 +2893 1162 0.400000 +2893 1174 0.400000 +2893 1196 0.400000 +2893 1464 0.400000 +2893 1508 0.400000 +2893 1523 0.400000 +2893 1608 0.400000 +2893 1628 0.400000 +2893 1822 0.400000 +2893 1875 0.400000 +2893 1926 0.400000 +2893 2132 0.400000 +2893 2161 0.400000 +2893 2221 0.400000 +2893 2280 0.400000 +2893 2373 0.400000 +2893 2462 0.400000 +2893 2605 0.400000 +2893 2627 0.400000 +2893 2635 0.400000 +2893 2712 0.400000 +2893 2818 0.400000 +2893 2878 0.400000 +2893 3006 0.400000 +2893 3198 0.400000 +2894 42 0.400000 +2894 124 0.400000 +2894 180 0.400000 +2894 185 0.400000 +2894 255 0.400000 +2894 267 0.400000 +2894 365 0.400000 +2894 370 0.400000 +2894 408 0.400000 +2894 435 0.400000 +2894 533 0.400000 +2894 547 0.400000 +2894 586 0.400000 +2894 638 0.400000 +2894 643 0.400000 +2894 718 0.400000 +2894 772 0.400000 +2894 845 0.400000 +2894 884 0.400000 +2894 898 0.400000 +2894 907 0.400000 +2894 930 0.400000 +2894 934 0.400000 +2894 957 0.400000 +2894 1004 0.400000 +2894 1232 0.400000 +2894 1257 0.400000 +2894 1372 0.400000 +2894 1421 0.400000 +2894 1471 0.400000 +2894 1479 0.400000 +2894 1610 0.400000 +2894 1616 0.400000 +2894 1625 0.400000 +2894 1713 0.400000 +2894 1769 0.400000 +2894 1816 0.400000 +2894 1830 0.400000 +2894 1880 0.400000 +2894 1892 0.400000 +2894 1967 0.400000 +2894 2039 0.400000 +2894 2042 0.400000 +2894 2122 0.400000 +2894 2179 0.400000 +2894 2377 0.400000 +2894 2391 0.400000 +2894 2421 0.400000 +2894 2435 0.400000 +2894 2452 0.400000 +2894 2560 0.400000 +2894 2564 0.400000 +2894 2863 0.400000 +2894 2895 0.400000 +2894 2909 0.400000 +2894 2991 0.400000 +2894 3015 0.400000 +2894 3034 0.400000 +2894 3061 0.400000 +2894 3110 0.400000 +2895 17 0.400000 +2895 66 0.400000 +2895 72 0.400000 +2895 117 0.400000 +2895 188 0.400000 +2895 270 0.400000 +2895 397 0.400000 +2895 508 0.400000 +2895 582 0.400000 +2895 653 0.400000 +2895 668 0.400000 +2895 670 0.400000 +2895 758 0.400000 +2895 848 0.400000 +2895 967 0.400000 +2895 975 0.400000 +2895 1040 0.400000 +2895 1163 0.400000 +2895 1371 0.400000 +2895 1449 0.400000 +2895 1543 0.400000 +2895 1590 0.400000 +2895 1596 0.400000 +2895 1650 0.400000 +2895 1694 0.400000 +2895 1706 0.400000 +2895 1742 0.400000 +2895 1758 0.400000 +2895 1800 0.400000 +2895 1873 0.400000 +2895 1905 0.400000 +2895 1970 0.400000 +2895 1993 0.400000 +2895 1995 0.400000 +2895 1996 0.400000 +2895 2008 0.400000 +2895 2020 0.400000 +2895 2064 0.400000 +2895 2160 0.400000 +2895 2175 0.400000 +2895 2206 0.400000 +2895 2269 0.400000 +2895 2321 0.400000 +2895 2343 0.400000 +2895 2345 0.400000 +2895 2377 0.400000 +2895 2379 0.400000 +2895 2406 0.400000 +2895 2414 0.400000 +2895 2474 0.400000 +2895 2566 0.400000 +2895 2590 0.400000 +2895 2611 0.400000 +2895 2645 0.400000 +2895 2707 0.400000 +2895 2740 0.400000 +2895 2782 0.400000 +2895 2788 0.400000 +2895 2846 0.400000 +2895 3036 0.400000 +2895 3154 0.400000 +2895 3182 0.400000 +2895 3193 0.400000 +2896 23 0.400000 +2896 103 0.400000 +2896 176 0.400000 +2896 177 0.400000 +2896 217 0.400000 +2896 218 0.400000 +2896 359 0.400000 +2896 389 0.400000 +2896 412 0.400000 +2896 515 0.400000 +2896 532 0.400000 +2896 535 0.400000 +2896 546 0.400000 +2896 568 0.400000 +2896 660 0.400000 +2896 712 0.400000 +2896 715 0.400000 +2896 805 0.400000 +2896 841 0.400000 +2896 850 0.400000 +2896 943 0.400000 +2896 1001 0.400000 +2896 1004 0.400000 +2896 1070 0.400000 +2896 1087 0.400000 +2896 1109 0.400000 +2896 1270 0.400000 +2896 1336 0.400000 +2896 1368 0.400000 +2896 1489 0.400000 +2896 1509 0.400000 +2896 1606 0.400000 +2896 1616 0.400000 +2896 1631 0.400000 +2896 1654 0.400000 +2896 1672 0.400000 +2896 1693 0.400000 +2896 1725 0.400000 +2896 1751 0.400000 +2896 1941 0.400000 +2896 2138 0.400000 +2896 2145 0.400000 +2896 2162 0.400000 +2896 2183 0.400000 +2896 2236 0.400000 +2896 2237 0.400000 +2896 2248 0.400000 +2896 2293 0.400000 +2896 2424 0.400000 +2896 2449 0.400000 +2896 2580 0.400000 +2896 2608 0.400000 +2896 2715 0.400000 +2896 2730 0.400000 +2896 2754 0.400000 +2896 2761 0.400000 +2896 2788 0.400000 +2896 2806 0.400000 +2896 2970 0.400000 +2896 3011 0.400000 +2896 3114 0.400000 +2896 3117 0.400000 +2896 3143 0.400000 +2896 3167 0.400000 +2896 3176 0.400000 +2897 40 0.400000 +2897 61 0.400000 +2897 88 0.400000 +2897 105 0.400000 +2897 107 0.400000 +2897 234 0.400000 +2897 261 0.400000 +2897 335 0.400000 +2897 372 0.400000 +2897 422 0.400000 +2897 598 0.400000 +2897 621 0.400000 +2897 644 0.400000 +2897 652 0.400000 +2897 653 0.400000 +2897 660 0.400000 +2897 663 0.400000 +2897 693 0.400000 +2897 695 0.400000 +2897 701 0.400000 +2897 735 0.400000 +2897 785 0.400000 +2897 887 0.400000 +2897 891 0.400000 +2897 958 0.400000 +2897 971 0.400000 +2897 1116 0.400000 +2897 1134 0.400000 +2897 1168 0.400000 +2897 1209 0.400000 +2897 1442 0.400000 +2897 1456 0.400000 +2897 1592 0.400000 +2897 1722 0.400000 +2897 1777 0.400000 +2897 1805 0.400000 +2897 2100 0.400000 +2897 2107 0.400000 +2897 2193 0.400000 +2897 2208 0.400000 +2897 2242 0.400000 +2897 2285 0.400000 +2897 2290 0.400000 +2897 2300 0.400000 +2897 2315 0.400000 +2897 2369 0.400000 +2897 2391 0.400000 +2897 2466 0.400000 +2897 2489 0.400000 +2897 2525 0.400000 +2897 2567 0.400000 +2897 2591 0.400000 +2897 2651 0.400000 +2897 2703 0.400000 +2897 2744 0.400000 +2897 2757 0.400000 +2897 2830 0.400000 +2897 2847 0.400000 +2897 2960 0.400000 +2897 3155 0.400000 +2897 3162 0.400000 +2898 8 0.400000 +2898 41 0.400000 +2898 126 0.400000 +2898 195 0.400000 +2898 266 0.400000 +2898 314 0.400000 +2898 367 0.400000 +2898 372 0.400000 +2898 479 0.400000 +2898 517 0.400000 +2898 520 0.400000 +2898 548 0.400000 +2898 564 0.400000 +2898 643 0.400000 +2898 657 0.400000 +2898 741 0.400000 +2898 884 0.400000 +2898 885 0.400000 +2898 936 0.400000 +2898 990 0.400000 +2898 1019 0.400000 +2898 1087 0.400000 +2898 1227 0.400000 +2898 1345 0.400000 +2898 1358 0.400000 +2898 1375 0.400000 +2898 1623 0.400000 +2898 1652 0.400000 +2898 1687 0.400000 +2898 1748 0.400000 +2898 1776 0.400000 +2898 1785 0.400000 +2898 1874 0.400000 +2898 1893 0.400000 +2898 1982 0.400000 +2898 2069 0.400000 +2898 2097 0.400000 +2898 2098 0.400000 +2898 2161 0.400000 +2898 2200 0.400000 +2898 2224 0.400000 +2898 2289 0.400000 +2898 2367 0.400000 +2898 2408 0.400000 +2898 2431 0.400000 +2898 2490 0.400000 +2898 2498 0.400000 +2898 2590 0.400000 +2898 2714 0.400000 +2898 2772 0.400000 +2898 2821 0.400000 +2898 3013 0.400000 +2898 3084 0.400000 +2898 3175 0.400000 +2899 36 0.400000 +2899 177 0.400000 +2899 193 0.400000 +2899 289 0.400000 +2899 298 0.400000 +2899 389 0.400000 +2899 480 0.400000 +2899 484 0.400000 +2899 509 0.400000 +2899 511 0.400000 +2899 546 0.400000 +2899 604 0.400000 +2899 620 0.400000 +2899 693 0.400000 +2899 700 0.400000 +2899 733 0.400000 +2899 810 0.400000 +2899 866 0.400000 +2899 916 0.400000 +2899 996 0.400000 +2899 1130 0.400000 +2899 1132 0.400000 +2899 1150 0.400000 +2899 1223 0.400000 +2899 1320 0.400000 +2899 1368 0.400000 +2899 1369 0.400000 +2899 1407 0.400000 +2899 1429 0.400000 +2899 1523 0.400000 +2899 1560 0.400000 +2899 1562 0.400000 +2899 1599 0.400000 +2899 1697 0.400000 +2899 1761 0.400000 +2899 1805 0.400000 +2899 1810 0.400000 +2899 1831 0.400000 +2899 1847 0.400000 +2899 1877 0.400000 +2899 1889 0.400000 +2899 2042 0.400000 +2899 2051 0.400000 +2899 2063 0.400000 +2899 2118 0.400000 +2899 2126 0.400000 +2899 2184 0.400000 +2899 2211 0.400000 +2899 2215 0.400000 +2899 2528 0.400000 +2899 2542 0.400000 +2899 2561 0.400000 +2899 2591 0.400000 +2899 2621 0.400000 +2899 2829 0.400000 +2899 2948 0.400000 +2899 2980 0.400000 +2899 2981 0.400000 +2899 3080 0.400000 +2899 3107 0.400000 +2899 3108 0.400000 +2899 3116 0.400000 +2900 29 0.400000 +2900 191 0.400000 +2900 320 0.400000 +2900 354 0.400000 +2900 355 0.400000 +2900 406 0.400000 +2900 431 0.400000 +2900 440 0.400000 +2900 521 0.400000 +2900 649 0.400000 +2900 653 0.400000 +2900 685 0.400000 +2900 704 0.400000 +2900 761 0.400000 +2900 785 0.400000 +2900 811 0.400000 +2900 824 0.400000 +2900 838 0.400000 +2900 945 0.400000 +2900 963 0.400000 +2900 979 0.400000 +2900 983 0.400000 +2900 1004 0.400000 +2900 1028 0.400000 +2900 1041 0.400000 +2900 1162 0.400000 +2900 1176 0.400000 +2900 1261 0.400000 +2900 1334 0.400000 +2900 1338 0.400000 +2900 1355 0.400000 +2900 1394 0.400000 +2900 1426 0.400000 +2900 1487 0.400000 +2900 1535 0.400000 +2900 1600 0.400000 +2900 1736 0.400000 +2900 1755 0.400000 +2900 1771 0.400000 +2900 1906 0.400000 +2900 2014 0.400000 +2900 2179 0.400000 +2900 2295 0.400000 +2900 2368 0.400000 +2900 2391 0.400000 +2900 2455 0.400000 +2900 2682 0.400000 +2900 2699 0.400000 +2900 2880 0.400000 +2900 2892 0.400000 +2900 2925 0.400000 +2900 2964 0.400000 +2900 2965 0.400000 +2900 2987 0.400000 +2900 3056 0.400000 +2900 3072 0.400000 +2900 3075 0.400000 +2900 3082 0.400000 +2900 3107 0.400000 +2900 3146 0.400000 +2900 3173 0.400000 +2900 3196 0.400000 +2901 8 0.400000 +2901 206 0.400000 +2901 245 0.400000 +2901 284 0.400000 +2901 314 0.400000 +2901 319 0.400000 +2901 320 0.400000 +2901 471 0.400000 +2901 629 0.400000 +2901 667 0.400000 +2901 838 0.400000 +2901 869 0.400000 +2901 945 0.400000 +2901 1001 0.400000 +2901 1003 0.400000 +2901 1161 0.400000 +2901 1308 0.400000 +2901 1346 0.400000 +2901 1384 0.400000 +2901 1414 0.400000 +2901 1467 0.400000 +2901 1493 0.400000 +2901 1497 0.400000 +2901 1542 0.400000 +2901 1630 0.400000 +2901 1679 0.400000 +2901 1708 0.400000 +2901 1739 0.400000 +2901 1786 0.400000 +2901 1796 0.400000 +2901 1926 0.400000 +2901 1978 0.400000 +2901 2006 0.400000 +2901 2075 0.400000 +2901 2104 0.400000 +2901 2175 0.400000 +2901 2296 0.400000 +2901 2344 0.400000 +2901 2362 0.400000 +2901 2569 0.400000 +2901 2589 0.400000 +2901 2600 0.400000 +2901 2633 0.400000 +2901 2654 0.400000 +2901 2759 0.400000 +2901 2840 0.400000 +2901 2884 0.400000 +2901 2891 0.400000 +2901 2986 0.400000 +2901 3054 0.400000 +2901 3104 0.400000 +2901 3196 0.400000 +2902 37 0.400000 +2902 93 0.400000 +2902 132 0.400000 +2902 148 0.400000 +2902 168 0.400000 +2902 244 0.400000 +2902 250 0.400000 +2902 262 0.400000 +2902 263 0.400000 +2902 316 0.400000 +2902 349 0.400000 +2902 409 0.400000 +2902 564 0.400000 +2902 620 0.400000 +2902 894 0.400000 +2902 947 0.400000 +2902 996 0.400000 +2902 1001 0.400000 +2902 1077 0.400000 +2902 1138 0.400000 +2902 1155 0.400000 +2902 1308 0.400000 +2902 1310 0.400000 +2902 1457 0.400000 +2902 1578 0.400000 +2902 1690 0.400000 +2902 1709 0.400000 +2902 1730 0.400000 +2902 1843 0.400000 +2902 2003 0.400000 +2902 2128 0.400000 +2902 2158 0.400000 +2902 2237 0.400000 +2902 2251 0.400000 +2902 2391 0.400000 +2902 2401 0.400000 +2902 2528 0.400000 +2902 2688 0.400000 +2902 2701 0.400000 +2902 2705 0.400000 +2902 2846 0.400000 +2902 2866 0.400000 +2902 2925 0.400000 +2902 2931 0.400000 +2902 3006 0.400000 +2902 3065 0.400000 +2903 62 0.400000 +2903 63 0.400000 +2903 143 0.400000 +2903 148 0.400000 +2903 172 0.400000 +2903 363 0.400000 +2903 378 0.400000 +2903 407 0.400000 +2903 582 0.400000 +2903 609 0.400000 +2903 614 0.400000 +2903 618 0.400000 +2903 630 0.400000 +2903 693 0.400000 +2903 772 0.400000 +2903 806 0.400000 +2903 846 0.400000 +2903 876 0.400000 +2903 926 0.400000 +2903 964 0.400000 +2903 1155 0.400000 +2903 1324 0.400000 +2903 1402 0.400000 +2903 1485 0.400000 +2903 1618 0.400000 +2903 1621 0.400000 +2903 1655 0.400000 +2903 1786 0.400000 +2903 1843 0.400000 +2903 2096 0.400000 +2903 2103 0.400000 +2903 2108 0.400000 +2903 2109 0.400000 +2903 2113 0.400000 +2903 2152 0.400000 +2903 2200 0.400000 +2903 2214 0.400000 +2903 2276 0.400000 +2903 2308 0.400000 +2903 2342 0.400000 +2903 2358 0.400000 +2903 2516 0.400000 +2903 2526 0.400000 +2903 2711 0.400000 +2903 2712 0.400000 +2903 2754 0.400000 +2903 2844 0.400000 +2903 2864 0.400000 +2903 2972 0.400000 +2903 3011 0.400000 +2903 3067 0.400000 +2903 3076 0.400000 +2903 3106 0.400000 +2903 3109 0.400000 +2904 36 0.400000 +2904 116 0.400000 +2904 172 0.400000 +2904 180 0.400000 +2904 215 0.400000 +2904 317 0.400000 +2904 339 0.400000 +2904 483 0.400000 +2904 588 0.400000 +2904 626 0.400000 +2904 684 0.400000 +2904 755 0.400000 +2904 769 0.400000 +2904 801 0.400000 +2904 836 0.400000 +2904 871 0.400000 +2904 904 0.400000 +2904 926 0.400000 +2904 994 0.400000 +2904 1001 0.400000 +2904 1016 0.400000 +2904 1077 0.400000 +2904 1102 0.400000 +2904 1152 0.400000 +2904 1199 0.400000 +2904 1250 0.400000 +2904 1252 0.400000 +2904 1267 0.400000 +2904 1350 0.400000 +2904 1388 0.400000 +2904 1391 0.400000 +2904 1457 0.400000 +2904 1562 0.400000 +2904 1604 0.400000 +2904 1705 0.400000 +2904 1765 0.400000 +2904 1808 0.400000 +2904 1867 0.400000 +2904 1914 0.400000 +2904 1917 0.400000 +2904 1967 0.400000 +2904 2004 0.400000 +2904 2011 0.400000 +2904 2085 0.400000 +2904 2214 0.400000 +2904 2255 0.400000 +2904 2295 0.400000 +2904 2344 0.400000 +2904 2376 0.400000 +2904 2384 0.400000 +2904 2385 0.400000 +2904 2408 0.400000 +2904 2426 0.400000 +2904 2441 0.400000 +2904 2444 0.400000 +2904 2509 0.400000 +2904 2730 0.400000 +2904 2813 0.400000 +2904 2903 0.400000 +2904 2940 0.400000 +2904 2977 0.400000 +2904 3109 0.400000 +2905 197 0.400000 +2905 309 0.400000 +2905 322 0.400000 +2905 357 0.400000 +2905 389 0.400000 +2905 409 0.400000 +2905 427 0.400000 +2905 434 0.400000 +2905 467 0.400000 +2905 472 0.400000 +2905 513 0.400000 +2905 594 0.400000 +2905 639 0.400000 +2905 648 0.400000 +2905 650 0.400000 +2905 689 0.400000 +2905 699 0.400000 +2905 742 0.400000 +2905 1020 0.400000 +2905 1119 0.400000 +2905 1190 0.400000 +2905 1191 0.400000 +2905 1234 0.400000 +2905 1304 0.400000 +2905 1342 0.400000 +2905 1385 0.400000 +2905 1463 0.400000 +2905 1471 0.400000 +2905 1586 0.400000 +2905 1692 0.400000 +2905 1720 0.400000 +2905 1760 0.400000 +2905 1790 0.400000 +2905 1844 0.400000 +2905 1936 0.400000 +2905 1960 0.400000 +2905 2050 0.400000 +2905 2070 0.400000 +2905 2076 0.400000 +2905 2166 0.400000 +2905 2194 0.400000 +2905 2235 0.400000 +2905 2262 0.400000 +2905 2448 0.400000 +2905 2469 0.400000 +2905 2514 0.400000 +2905 2817 0.400000 +2905 2837 0.400000 +2905 3012 0.400000 +2905 3020 0.400000 +2905 3028 0.400000 +2905 3196 0.400000 +2906 2 0.400000 +2906 11 0.400000 +2906 24 0.400000 +2906 75 0.400000 +2906 94 0.400000 +2906 233 0.400000 +2906 259 0.400000 +2906 376 0.400000 +2906 419 0.400000 +2906 551 0.400000 +2906 637 0.400000 +2906 680 0.400000 +2906 704 0.400000 +2906 732 0.400000 +2906 746 0.400000 +2906 848 0.400000 +2906 858 0.400000 +2906 873 0.400000 +2906 902 0.400000 +2906 941 0.400000 +2906 1157 0.400000 +2906 1176 0.400000 +2906 1177 0.400000 +2906 1195 0.400000 +2906 1198 0.400000 +2906 1209 0.400000 +2906 1269 0.400000 +2906 1412 0.400000 +2906 1549 0.400000 +2906 1618 0.400000 +2906 1716 0.400000 +2906 1738 0.400000 +2906 1784 0.400000 +2906 1907 0.400000 +2906 1941 0.400000 +2906 2033 0.400000 +2906 2054 0.400000 +2906 2161 0.400000 +2906 2212 0.400000 +2906 2251 0.400000 +2906 2343 0.400000 +2906 2344 0.400000 +2906 2388 0.400000 +2906 2520 0.400000 +2906 2661 0.400000 +2906 2728 0.400000 +2906 2890 0.400000 +2906 2966 0.400000 +2906 3011 0.400000 +2906 3027 0.400000 +2906 3055 0.400000 +2906 3152 0.400000 +2906 3154 0.400000 +2906 3172 0.400000 +2906 3193 0.400000 +2907 14 0.400000 +2907 54 0.400000 +2907 69 0.400000 +2907 123 0.400000 +2907 186 0.400000 +2907 216 0.400000 +2907 261 0.400000 +2907 284 0.400000 +2907 326 0.400000 +2907 354 0.400000 +2907 470 0.400000 +2907 495 0.400000 +2907 527 0.400000 +2907 528 0.400000 +2907 547 0.400000 +2907 810 0.400000 +2907 883 0.400000 +2907 889 0.400000 +2907 901 0.400000 +2907 921 0.400000 +2907 989 0.400000 +2907 1026 0.400000 +2907 1051 0.400000 +2907 1067 0.400000 +2907 1118 0.400000 +2907 1364 0.400000 +2907 1390 0.400000 +2907 1425 0.400000 +2907 1428 0.400000 +2907 1475 0.400000 +2907 1643 0.400000 +2907 1691 0.400000 +2907 1804 0.400000 +2907 1811 0.400000 +2907 1861 0.400000 +2907 1920 0.400000 +2907 1937 0.400000 +2907 1963 0.400000 +2907 2030 0.400000 +2907 2145 0.400000 +2907 2191 0.400000 +2907 2462 0.400000 +2907 2475 0.400000 +2907 2493 0.400000 +2907 2578 0.400000 +2907 2632 0.400000 +2907 2638 0.400000 +2907 2733 0.400000 +2907 2754 0.400000 +2907 2765 0.400000 +2907 2839 0.400000 +2907 2897 0.400000 +2907 2978 0.400000 +2907 3034 0.400000 +2907 3068 0.400000 +2907 3073 0.400000 +2907 3150 0.400000 +2908 15 0.400000 +2908 19 0.400000 +2908 76 0.400000 +2908 170 0.400000 +2908 182 0.400000 +2908 206 0.400000 +2908 265 0.400000 +2908 312 0.400000 +2908 348 0.400000 +2908 350 0.400000 +2908 354 0.400000 +2908 399 0.400000 +2908 494 0.400000 +2908 521 0.400000 +2908 567 0.400000 +2908 623 0.400000 +2908 635 0.400000 +2908 639 0.400000 +2908 773 0.400000 +2908 803 0.400000 +2908 829 0.400000 +2908 856 0.400000 +2908 944 0.400000 +2908 955 0.400000 +2908 964 0.400000 +2908 967 0.400000 +2908 1158 0.400000 +2908 1209 0.400000 +2908 1253 0.400000 +2908 1307 0.400000 +2908 1322 0.400000 +2908 1365 0.400000 +2908 1393 0.400000 +2908 1395 0.400000 +2908 1451 0.400000 +2908 1555 0.400000 +2908 1573 0.400000 +2908 1609 0.400000 +2908 1632 0.400000 +2908 1643 0.400000 +2908 1688 0.400000 +2908 1882 0.400000 +2908 1912 0.400000 +2908 1995 0.400000 +2908 1996 0.400000 +2908 1999 0.400000 +2908 2021 0.400000 +2908 2023 0.400000 +2908 2025 0.400000 +2908 2035 0.400000 +2908 2083 0.400000 +2908 2098 0.400000 +2908 2185 0.400000 +2908 2232 0.400000 +2908 2423 0.400000 +2908 2457 0.400000 +2908 2482 0.400000 +2908 2528 0.400000 +2908 2603 0.400000 +2908 2604 0.400000 +2908 2611 0.400000 +2908 2615 0.400000 +2908 2642 0.400000 +2908 2729 0.400000 +2908 2804 0.400000 +2908 2862 0.400000 +2908 2948 0.400000 +2908 2982 0.400000 +2908 3089 0.400000 +2908 3094 0.400000 +2908 3134 0.400000 +2908 3155 0.400000 +2909 24 0.400000 +2909 82 0.400000 +2909 85 0.400000 +2909 93 0.400000 +2909 95 0.400000 +2909 135 0.400000 +2909 265 0.400000 +2909 294 0.400000 +2909 297 0.400000 +2909 311 0.400000 +2909 330 0.400000 +2909 415 0.400000 +2909 477 0.400000 +2909 491 0.400000 +2909 569 0.400000 +2909 609 0.400000 +2909 626 0.400000 +2909 634 0.400000 +2909 659 0.400000 +2909 707 0.400000 +2909 722 0.400000 +2909 746 0.400000 +2909 865 0.400000 +2909 878 0.400000 +2909 932 0.400000 +2909 938 0.400000 +2909 970 0.400000 +2909 1038 0.400000 +2909 1075 0.400000 +2909 1078 0.400000 +2909 1166 0.400000 +2909 1203 0.400000 +2909 1244 0.400000 +2909 1275 0.400000 +2909 1433 0.400000 +2909 1449 0.400000 +2909 1461 0.400000 +2909 1525 0.400000 +2909 1547 0.400000 +2909 1663 0.400000 +2909 1691 0.400000 +2909 1702 0.400000 +2909 1716 0.400000 +2909 1726 0.400000 +2909 1752 0.400000 +2909 1970 0.400000 +2909 1977 0.400000 +2909 1996 0.400000 +2909 2032 0.400000 +2909 2051 0.400000 +2909 2091 0.400000 +2909 2128 0.400000 +2909 2146 0.400000 +2909 2191 0.400000 +2909 2196 0.400000 +2909 2245 0.400000 +2909 2246 0.400000 +2909 2252 0.400000 +2909 2290 0.400000 +2909 2298 0.400000 +2909 2536 0.400000 +2909 2615 0.400000 +2909 2625 0.400000 +2909 2780 0.400000 +2909 2790 0.400000 +2909 2814 0.400000 +2909 2819 0.400000 +2909 2897 0.400000 +2909 2911 0.400000 +2909 3008 0.400000 +2909 3039 0.400000 +2909 3071 0.400000 +2909 3114 0.400000 +2909 3135 0.400000 +2909 3156 0.400000 +2909 3194 0.400000 +2910 35 0.400000 +2910 36 0.400000 +2910 105 0.400000 +2910 107 0.400000 +2910 128 0.400000 +2910 384 0.400000 +2910 560 0.400000 +2910 614 0.400000 +2910 639 0.400000 +2910 686 0.400000 +2910 741 0.400000 +2910 775 0.400000 +2910 840 0.400000 +2910 862 0.400000 +2910 919 0.400000 +2910 986 0.400000 +2910 995 0.400000 +2910 1048 0.400000 +2910 1082 0.400000 +2910 1101 0.400000 +2910 1282 0.400000 +2910 1288 0.400000 +2910 1324 0.400000 +2910 1395 0.400000 +2910 1450 0.400000 +2910 1499 0.400000 +2910 1544 0.400000 +2910 1631 0.400000 +2910 1732 0.400000 +2910 1776 0.400000 +2910 1792 0.400000 +2910 1904 0.400000 +2910 1954 0.400000 +2910 1997 0.400000 +2910 2006 0.400000 +2910 2032 0.400000 +2910 2162 0.400000 +2910 2195 0.400000 +2910 2205 0.400000 +2910 2222 0.400000 +2910 2226 0.400000 +2910 2288 0.400000 +2910 2447 0.400000 +2910 2510 0.400000 +2910 2522 0.400000 +2910 2617 0.400000 +2910 2668 0.400000 +2910 2679 0.400000 +2910 2768 0.400000 +2910 2850 0.400000 +2910 2877 0.400000 +2910 2892 0.400000 +2910 2961 0.400000 +2910 2973 0.400000 +2910 2981 0.400000 +2910 2987 0.400000 +2910 3039 0.400000 +2910 3091 0.400000 +2910 3165 0.400000 +2910 3183 0.400000 +2911 86 0.400000 +2911 110 0.400000 +2911 164 0.400000 +2911 207 0.400000 +2911 246 0.400000 +2911 273 0.400000 +2911 281 0.400000 +2911 309 0.400000 +2911 363 0.400000 +2911 381 0.400000 +2911 469 0.400000 +2911 493 0.400000 +2911 500 0.400000 +2911 566 0.400000 +2911 807 0.400000 +2911 816 0.400000 +2911 824 0.400000 +2911 877 0.400000 +2911 952 0.400000 +2911 1032 0.400000 +2911 1041 0.400000 +2911 1155 0.400000 +2911 1171 0.400000 +2911 1222 0.400000 +2911 1381 0.400000 +2911 1404 0.400000 +2911 1430 0.400000 +2911 1485 0.400000 +2911 1672 0.400000 +2911 1677 0.400000 +2911 1698 0.400000 +2911 1750 0.400000 +2911 1752 0.400000 +2911 1881 0.400000 +2911 1906 0.400000 +2911 2107 0.400000 +2911 2124 0.400000 +2911 2127 0.400000 +2911 2155 0.400000 +2911 2169 0.400000 +2911 2185 0.400000 +2911 2186 0.400000 +2911 2191 0.400000 +2911 2331 0.400000 +2911 2359 0.400000 +2911 2365 0.400000 +2911 2545 0.400000 +2911 2552 0.400000 +2911 2560 0.400000 +2911 2579 0.400000 +2911 2669 0.400000 +2911 2722 0.400000 +2911 2770 0.400000 +2911 2893 0.400000 +2911 2973 0.400000 +2911 3091 0.400000 +2911 3100 0.400000 +2911 3123 0.400000 +2911 3176 0.400000 +2911 3182 0.400000 +2911 3188 0.400000 +2911 3196 0.400000 +2912 58 0.400000 +2912 62 0.400000 +2912 210 0.400000 +2912 263 0.400000 +2912 294 0.400000 +2912 317 0.400000 +2912 364 0.400000 +2912 393 0.400000 +2912 417 0.400000 +2912 445 0.400000 +2912 464 0.400000 +2912 510 0.400000 +2912 516 0.400000 +2912 531 0.400000 +2912 558 0.400000 +2912 565 0.400000 +2912 596 0.400000 +2912 625 0.400000 +2912 663 0.400000 +2912 674 0.400000 +2912 677 0.400000 +2912 723 0.400000 +2912 776 0.400000 +2912 865 0.400000 +2912 869 0.400000 +2912 918 0.400000 +2912 967 0.400000 +2912 1019 0.400000 +2912 1117 0.400000 +2912 1130 0.400000 +2912 1134 0.400000 +2912 1170 0.400000 +2912 1249 0.400000 +2912 1275 0.400000 +2912 1299 0.400000 +2912 1323 0.400000 +2912 1503 0.400000 +2912 1511 0.400000 +2912 1531 0.400000 +2912 1625 0.400000 +2912 1677 0.400000 +2912 1683 0.400000 +2912 1699 0.400000 +2912 1738 0.400000 +2912 1780 0.400000 +2912 1963 0.400000 +2912 2016 0.400000 +2912 2126 0.400000 +2912 2162 0.400000 +2912 2331 0.400000 +2912 2471 0.400000 +2912 2545 0.400000 +2912 2644 0.400000 +2912 2707 0.400000 +2912 2711 0.400000 +2912 2780 0.400000 +2912 2866 0.400000 +2912 2871 0.400000 +2912 2887 0.400000 +2912 2960 0.400000 +2912 2967 0.400000 +2912 3058 0.400000 +2912 3107 0.400000 +2912 3112 0.400000 +2912 3124 0.400000 +2912 3143 0.400000 +2912 3179 0.400000 +2913 54 0.400000 +2913 97 0.400000 +2913 110 0.400000 +2913 305 0.400000 +2913 362 0.400000 +2913 422 0.400000 +2913 425 0.400000 +2913 589 0.400000 +2913 613 0.400000 +2913 627 0.400000 +2913 642 0.400000 +2913 681 0.400000 +2913 684 0.400000 +2913 710 0.400000 +2913 730 0.400000 +2913 809 0.400000 +2913 866 0.400000 +2913 938 0.400000 +2913 1010 0.400000 +2913 1015 0.400000 +2913 1029 0.400000 +2913 1055 0.400000 +2913 1078 0.400000 +2913 1118 0.400000 +2913 1146 0.400000 +2913 1229 0.400000 +2913 1237 0.400000 +2913 1304 0.400000 +2913 1379 0.400000 +2913 1403 0.400000 +2913 1445 0.400000 +2913 1477 0.400000 +2913 1502 0.400000 +2913 1559 0.400000 +2913 1589 0.400000 +2913 1659 0.400000 +2913 1660 0.400000 +2913 1681 0.400000 +2913 1706 0.400000 +2913 1766 0.400000 +2913 1775 0.400000 +2913 1778 0.400000 +2913 1844 0.400000 +2913 1854 0.400000 +2913 1866 0.400000 +2913 1923 0.400000 +2913 2048 0.400000 +2913 2074 0.400000 +2913 2086 0.400000 +2913 2092 0.400000 +2913 2100 0.400000 +2913 2146 0.400000 +2913 2176 0.400000 +2913 2178 0.400000 +2913 2307 0.400000 +2913 2328 0.400000 +2913 2330 0.400000 +2913 2347 0.400000 +2913 2360 0.400000 +2913 2437 0.400000 +2913 2462 0.400000 +2913 2521 0.400000 +2913 2577 0.400000 +2913 2601 0.400000 +2913 2789 0.400000 +2913 2790 0.400000 +2913 2858 0.400000 +2913 2918 0.400000 +2913 3132 0.400000 +2913 3144 0.400000 +2913 3152 0.400000 +2913 3159 0.400000 +2913 3196 0.400000 +2914 27 0.400000 +2914 47 0.400000 +2914 53 0.400000 +2914 160 0.400000 +2914 246 0.400000 +2914 268 0.400000 +2914 273 0.400000 +2914 301 0.400000 +2914 353 0.400000 +2914 360 0.400000 +2914 388 0.400000 +2914 492 0.400000 +2914 497 0.400000 +2914 526 0.400000 +2914 601 0.400000 +2914 636 0.400000 +2914 647 0.400000 +2914 683 0.400000 +2914 684 0.400000 +2914 848 0.400000 +2914 866 0.400000 +2914 945 0.400000 +2914 979 0.400000 +2914 1028 0.400000 +2914 1149 0.400000 +2914 1196 0.400000 +2914 1203 0.400000 +2914 1240 0.400000 +2914 1258 0.400000 +2914 1279 0.400000 +2914 1312 0.400000 +2914 1343 0.400000 +2914 1387 0.400000 +2914 1408 0.400000 +2914 1434 0.400000 +2914 1501 0.400000 +2914 1554 0.400000 +2914 1603 0.400000 +2914 1656 0.400000 +2914 1677 0.400000 +2914 1701 0.400000 +2914 1737 0.400000 +2914 1870 0.400000 +2914 1903 0.400000 +2914 1929 0.400000 +2914 1950 0.400000 +2914 2002 0.400000 +2914 2010 0.400000 +2914 2221 0.400000 +2914 2279 0.400000 +2914 2302 0.400000 +2914 2304 0.400000 +2914 2312 0.400000 +2914 2313 0.400000 +2914 2339 0.400000 +2914 2349 0.400000 +2914 2371 0.400000 +2914 2374 0.400000 +2914 2404 0.400000 +2914 2435 0.400000 +2914 2488 0.400000 +2914 2562 0.400000 +2914 2604 0.400000 +2914 2610 0.400000 +2914 2638 0.400000 +2914 2642 0.400000 +2914 2654 0.400000 +2914 2682 0.400000 +2914 2685 0.400000 +2914 2687 0.400000 +2914 2695 0.400000 +2914 2714 0.400000 +2914 2807 0.400000 +2914 2862 0.400000 +2914 2901 0.400000 +2914 2977 0.400000 +2914 2988 0.400000 +2914 3004 0.400000 +2914 3010 0.400000 +2914 3070 0.400000 +2914 3118 0.400000 +2914 3125 0.400000 +2914 3132 0.400000 +2914 3155 0.400000 +2915 42 0.400000 +2915 60 0.400000 +2915 65 0.400000 +2915 86 0.400000 +2915 112 0.400000 +2915 182 0.400000 +2915 218 0.400000 +2915 250 0.400000 +2915 282 0.400000 +2915 290 0.400000 +2915 321 0.400000 +2915 360 0.400000 +2915 412 0.400000 +2915 455 0.400000 +2915 498 0.400000 +2915 580 0.400000 +2915 603 0.400000 +2915 617 0.400000 +2915 622 0.400000 +2915 640 0.400000 +2915 651 0.400000 +2915 675 0.400000 +2915 683 0.400000 +2915 686 0.400000 +2915 709 0.400000 +2915 716 0.400000 +2915 723 0.400000 +2915 753 0.400000 +2915 1034 0.400000 +2915 1048 0.400000 +2915 1097 0.400000 +2915 1166 0.400000 +2915 1183 0.400000 +2915 1199 0.400000 +2915 1256 0.400000 +2915 1285 0.400000 +2915 1398 0.400000 +2915 1507 0.400000 +2915 1543 0.400000 +2915 1556 0.400000 +2915 1622 0.400000 +2915 1710 0.400000 +2915 1848 0.400000 +2915 1860 0.400000 +2915 1893 0.400000 +2915 1927 0.400000 +2915 2064 0.400000 +2915 2091 0.400000 +2915 2107 0.400000 +2915 2253 0.400000 +2915 2277 0.400000 +2915 2326 0.400000 +2915 2360 0.400000 +2915 2388 0.400000 +2915 2393 0.400000 +2915 2452 0.400000 +2915 2683 0.400000 +2915 2753 0.400000 +2915 2766 0.400000 +2915 2774 0.400000 +2915 2894 0.400000 +2915 2930 0.400000 +2915 2955 0.400000 +2915 2970 0.400000 +2915 3027 0.400000 +2915 3043 0.400000 +2915 3074 0.400000 +2915 3135 0.400000 +2915 3200 0.400000 +2916 71 0.400000 +2916 161 0.400000 +2916 180 0.400000 +2916 201 0.400000 +2916 203 0.400000 +2916 304 0.400000 +2916 334 0.400000 +2916 471 0.400000 +2916 550 0.400000 +2916 563 0.400000 +2916 578 0.400000 +2916 625 0.400000 +2916 656 0.400000 +2916 679 0.400000 +2916 798 0.400000 +2916 810 0.400000 +2916 821 0.400000 +2916 869 0.400000 +2916 937 0.400000 +2916 1036 0.400000 +2916 1075 0.400000 +2916 1137 0.400000 +2916 1262 0.400000 +2916 1268 0.400000 +2916 1271 0.400000 +2916 1279 0.400000 +2916 1286 0.400000 +2916 1344 0.400000 +2916 1562 0.400000 +2916 1660 0.400000 +2916 1685 0.400000 +2916 1723 0.400000 +2916 1761 0.400000 +2916 1788 0.400000 +2916 1830 0.400000 +2916 1854 0.400000 +2916 1901 0.400000 +2916 2232 0.400000 +2916 2237 0.400000 +2916 2247 0.400000 +2916 2368 0.400000 +2916 2407 0.400000 +2916 2452 0.400000 +2916 2479 0.400000 +2916 2572 0.400000 +2916 2578 0.400000 +2916 2589 0.400000 +2916 2613 0.400000 +2916 2656 0.400000 +2916 2658 0.400000 +2916 2700 0.400000 +2916 2775 0.400000 +2916 2830 0.400000 +2916 2857 0.400000 +2916 2910 0.400000 +2916 2912 0.400000 +2916 2977 0.400000 +2916 3075 0.400000 +2916 3101 0.400000 +2916 3113 0.400000 +2916 3151 0.400000 +2917 24 0.400000 +2917 124 0.400000 +2917 249 0.400000 +2917 338 0.400000 +2917 384 0.400000 +2917 438 0.400000 +2917 498 0.400000 +2917 561 0.400000 +2917 562 0.400000 +2917 570 0.400000 +2917 574 0.400000 +2917 591 0.400000 +2917 609 0.400000 +2917 614 0.400000 +2917 639 0.400000 +2917 656 0.400000 +2917 699 0.400000 +2917 749 0.400000 +2917 958 0.400000 +2917 1009 0.400000 +2917 1128 0.400000 +2917 1142 0.400000 +2917 1156 0.400000 +2917 1163 0.400000 +2917 1304 0.400000 +2917 1378 0.400000 +2917 1470 0.400000 +2917 1494 0.400000 +2917 1519 0.400000 +2917 1588 0.400000 +2917 1669 0.400000 +2917 1676 0.400000 +2917 1707 0.400000 +2917 1710 0.400000 +2917 1745 0.400000 +2917 1800 0.400000 +2917 1814 0.400000 +2917 1838 0.400000 +2917 1933 0.400000 +2917 1934 0.400000 +2917 2063 0.400000 +2917 2141 0.400000 +2917 2159 0.400000 +2917 2173 0.400000 +2917 2208 0.400000 +2917 2221 0.400000 +2917 2294 0.400000 +2917 2414 0.400000 +2917 2416 0.400000 +2917 2436 0.400000 +2917 2460 0.400000 +2917 2516 0.400000 +2917 2523 0.400000 +2917 2538 0.400000 +2917 2539 0.400000 +2917 2540 0.400000 +2917 2581 0.400000 +2917 2602 0.400000 +2917 2639 0.400000 +2917 2674 0.400000 +2917 2741 0.400000 +2917 2753 0.400000 +2917 2836 0.400000 +2917 2903 0.400000 +2917 2921 0.400000 +2917 2936 0.400000 +2917 2940 0.400000 +2917 2954 0.400000 +2917 3154 0.400000 +2917 3198 0.400000 +2917 3199 0.400000 +2918 121 0.400000 +2918 182 0.400000 +2918 218 0.400000 +2918 251 0.400000 +2918 302 0.400000 +2918 313 0.400000 +2918 450 0.400000 +2918 588 0.400000 +2918 591 0.400000 +2918 594 0.400000 +2918 624 0.400000 +2918 687 0.400000 +2918 702 0.400000 +2918 708 0.400000 +2918 723 0.400000 +2918 761 0.400000 +2918 764 0.400000 +2918 776 0.400000 +2918 783 0.400000 +2918 800 0.400000 +2918 827 0.400000 +2918 899 0.400000 +2918 1144 0.400000 +2918 1246 0.400000 +2918 1400 0.400000 +2918 1443 0.400000 +2918 1450 0.400000 +2918 1452 0.400000 +2918 1503 0.400000 +2918 1521 0.400000 +2918 1612 0.400000 +2918 1714 0.400000 +2918 1752 0.400000 +2918 1815 0.400000 +2918 1890 0.400000 +2918 1959 0.400000 +2918 2032 0.400000 +2918 2089 0.400000 +2918 2094 0.400000 +2918 2178 0.400000 +2918 2214 0.400000 +2918 2317 0.400000 +2918 2393 0.400000 +2918 2420 0.400000 +2918 2447 0.400000 +2918 2448 0.400000 +2918 2480 0.400000 +2918 2550 0.400000 +2918 2563 0.400000 +2918 2565 0.400000 +2918 2571 0.400000 +2918 2596 0.400000 +2918 2649 0.400000 +2918 2719 0.400000 +2918 2808 0.400000 +2918 2853 0.400000 +2918 2871 0.400000 +2918 2879 0.400000 +2918 2932 0.400000 +2918 2999 0.400000 +2918 3045 0.400000 +2918 3174 0.400000 +2918 3180 0.400000 +2919 11 0.400000 +2919 90 0.400000 +2919 97 0.400000 +2919 146 0.400000 +2919 235 0.400000 +2919 238 0.400000 +2919 304 0.400000 +2919 328 0.400000 +2919 341 0.400000 +2919 407 0.400000 +2919 419 0.400000 +2919 471 0.400000 +2919 506 0.400000 +2919 642 0.400000 +2919 646 0.400000 +2919 665 0.400000 +2919 699 0.400000 +2919 701 0.400000 +2919 707 0.400000 +2919 739 0.400000 +2919 780 0.400000 +2919 850 0.400000 +2919 1026 0.400000 +2919 1112 0.400000 +2919 1118 0.400000 +2919 1161 0.400000 +2919 1191 0.400000 +2919 1284 0.400000 +2919 1323 0.400000 +2919 1393 0.400000 +2919 1432 0.400000 +2919 1566 0.400000 +2919 1591 0.400000 +2919 1667 0.400000 +2919 1686 0.400000 +2919 1732 0.400000 +2919 1755 0.400000 +2919 1759 0.400000 +2919 1783 0.400000 +2919 1840 0.400000 +2919 1847 0.400000 +2919 1903 0.400000 +2919 1933 0.400000 +2919 2000 0.400000 +2919 2008 0.400000 +2919 2104 0.400000 +2919 2114 0.400000 +2919 2123 0.400000 +2919 2247 0.400000 +2919 2329 0.400000 +2919 2509 0.400000 +2919 2519 0.400000 +2919 2539 0.400000 +2919 2687 0.400000 +2919 2745 0.400000 +2919 2840 0.400000 +2919 2899 0.400000 +2919 2933 0.400000 +2919 3016 0.400000 +2919 3023 0.400000 +2919 3068 0.400000 +2919 3107 0.400000 +2919 3120 0.400000 +2919 3125 0.400000 +2919 3139 0.400000 +2920 47 0.400000 +2920 87 0.400000 +2920 93 0.400000 +2920 114 0.400000 +2920 126 0.400000 +2920 199 0.400000 +2920 201 0.400000 +2920 222 0.400000 +2920 315 0.400000 +2920 322 0.400000 +2920 335 0.400000 +2920 388 0.400000 +2920 471 0.400000 +2920 477 0.400000 +2920 478 0.400000 +2920 483 0.400000 +2920 535 0.400000 +2920 599 0.400000 +2920 620 0.400000 +2920 655 0.400000 +2920 828 0.400000 +2920 842 0.400000 +2920 939 0.400000 +2920 953 0.400000 +2920 965 0.400000 +2920 1046 0.400000 +2920 1146 0.400000 +2920 1150 0.400000 +2920 1385 0.400000 +2920 1445 0.400000 +2920 1508 0.400000 +2920 1521 0.400000 +2920 1546 0.400000 +2920 1609 0.400000 +2920 1692 0.400000 +2920 1708 0.400000 +2920 1713 0.400000 +2920 1880 0.400000 +2920 1887 0.400000 +2920 1903 0.400000 +2920 1979 0.400000 +2920 1991 0.400000 +2920 1998 0.400000 +2920 2048 0.400000 +2920 2072 0.400000 +2920 2094 0.400000 +2920 2103 0.400000 +2920 2181 0.400000 +2920 2215 0.400000 +2920 2223 0.400000 +2920 2253 0.400000 +2920 2303 0.400000 +2920 2306 0.400000 +2920 2310 0.400000 +2920 2420 0.400000 +2920 2445 0.400000 +2920 2449 0.400000 +2920 2451 0.400000 +2920 2486 0.400000 +2920 2620 0.400000 +2920 2741 0.400000 +2920 2806 0.400000 +2920 2963 0.400000 +2920 2971 0.400000 +2920 3049 0.400000 +2920 3136 0.400000 +2920 3152 0.400000 +2920 3157 0.400000 +2921 19 0.400000 +2921 185 0.400000 +2921 191 0.400000 +2921 352 0.400000 +2921 363 0.400000 +2921 412 0.400000 +2921 515 0.400000 +2921 604 0.400000 +2921 638 0.400000 +2921 639 0.400000 +2921 643 0.400000 +2921 842 0.400000 +2921 859 0.400000 +2921 871 0.400000 +2921 984 0.400000 +2921 1079 0.400000 +2921 1091 0.400000 +2921 1135 0.400000 +2921 1164 0.400000 +2921 1192 0.400000 +2921 1203 0.400000 +2921 1256 0.400000 +2921 1262 0.400000 +2921 1312 0.400000 +2921 1334 0.400000 +2921 1339 0.400000 +2921 1358 0.400000 +2921 1362 0.400000 +2921 1375 0.400000 +2921 1441 0.400000 +2921 1448 0.400000 +2921 1465 0.400000 +2921 1572 0.400000 +2921 1599 0.400000 +2921 1660 0.400000 +2921 1696 0.400000 +2921 1846 0.400000 +2921 1949 0.400000 +2921 1950 0.400000 +2921 1969 0.400000 +2921 2045 0.400000 +2921 2084 0.400000 +2921 2089 0.400000 +2921 2180 0.400000 +2921 2206 0.400000 +2921 2281 0.400000 +2921 2315 0.400000 +2921 2325 0.400000 +2921 2371 0.400000 +2921 2401 0.400000 +2921 2593 0.400000 +2921 2600 0.400000 +2921 2662 0.400000 +2921 2666 0.400000 +2921 2771 0.400000 +2921 2792 0.400000 +2921 2889 0.400000 +2921 2970 0.400000 +2921 3001 0.400000 +2921 3009 0.400000 +2921 3027 0.400000 +2921 3031 0.400000 +2921 3150 0.400000 +2921 3165 0.400000 +2921 3178 0.400000 +2922 43 0.400000 +2922 50 0.400000 +2922 142 0.400000 +2922 261 0.400000 +2922 263 0.400000 +2922 423 0.400000 +2922 456 0.400000 +2922 532 0.400000 +2922 536 0.400000 +2922 758 0.400000 +2922 831 0.400000 +2922 851 0.400000 +2922 928 0.400000 +2922 943 0.400000 +2922 1066 0.400000 +2922 1152 0.400000 +2922 1173 0.400000 +2922 1233 0.400000 +2922 1267 0.400000 +2922 1290 0.400000 +2922 1315 0.400000 +2922 1329 0.400000 +2922 1377 0.400000 +2922 1529 0.400000 +2922 1556 0.400000 +2922 1575 0.400000 +2922 1844 0.400000 +2922 1884 0.400000 +2922 1963 0.400000 +2922 2074 0.400000 +2922 2077 0.400000 +2922 2086 0.400000 +2922 2146 0.400000 +2922 2236 0.400000 +2922 2245 0.400000 +2922 2249 0.400000 +2922 2303 0.400000 +2922 2355 0.400000 +2922 2366 0.400000 +2922 2414 0.400000 +2922 2435 0.400000 +2922 2459 0.400000 +2922 2516 0.400000 +2922 2546 0.400000 +2922 2562 0.400000 +2922 2587 0.400000 +2922 2614 0.400000 +2922 2663 0.400000 +2922 2687 0.400000 +2922 2722 0.400000 +2922 2749 0.400000 +2922 2794 0.400000 +2922 2810 0.400000 +2922 2876 0.400000 +2922 2927 0.400000 +2922 2985 0.400000 +2922 2996 0.400000 +2922 2999 0.400000 +2922 3024 0.400000 +2922 3105 0.400000 +2922 3113 0.400000 +2922 3194 0.400000 +2922 3195 0.400000 +2923 19 0.400000 +2923 26 0.400000 +2923 80 0.400000 +2923 106 0.400000 +2923 122 0.400000 +2923 129 0.400000 +2923 168 0.400000 +2923 172 0.400000 +2923 220 0.400000 +2923 261 0.400000 +2923 298 0.400000 +2923 407 0.400000 +2923 411 0.400000 +2923 428 0.400000 +2923 448 0.400000 +2923 481 0.400000 +2923 519 0.400000 +2923 544 0.400000 +2923 550 0.400000 +2923 558 0.400000 +2923 590 0.400000 +2923 613 0.400000 +2923 653 0.400000 +2923 664 0.400000 +2923 758 0.400000 +2923 835 0.400000 +2923 1072 0.400000 +2923 1119 0.400000 +2923 1157 0.400000 +2923 1308 0.400000 +2923 1330 0.400000 +2923 1381 0.400000 +2923 1581 0.400000 +2923 1615 0.400000 +2923 1616 0.400000 +2923 1640 0.400000 +2923 1651 0.400000 +2923 1672 0.400000 +2923 1781 0.400000 +2923 1882 0.400000 +2923 1895 0.400000 +2923 1944 0.400000 +2923 2075 0.400000 +2923 2152 0.400000 +2923 2217 0.400000 +2923 2221 0.400000 +2923 2222 0.400000 +2923 2227 0.400000 +2923 2258 0.400000 +2923 2262 0.400000 +2923 2297 0.400000 +2923 2322 0.400000 +2923 2414 0.400000 +2923 2450 0.400000 +2923 2520 0.400000 +2923 2933 0.400000 +2923 3030 0.400000 +2923 3139 0.400000 +2923 3150 0.400000 +2923 3154 0.400000 +2923 3162 0.400000 +2924 9 0.400000 +2924 96 0.400000 +2924 142 0.400000 +2924 269 0.400000 +2924 331 0.400000 +2924 362 0.400000 +2924 366 0.400000 +2924 378 0.400000 +2924 444 0.400000 +2924 467 0.400000 +2924 506 0.400000 +2924 509 0.400000 +2924 513 0.400000 +2924 584 0.400000 +2924 782 0.400000 +2924 795 0.400000 +2924 842 0.400000 +2924 850 0.400000 +2924 858 0.400000 +2924 896 0.400000 +2924 918 0.400000 +2924 998 0.400000 +2924 1005 0.400000 +2924 1178 0.400000 +2924 1601 0.400000 +2924 1685 0.400000 +2924 1760 0.400000 +2924 1861 0.400000 +2924 1932 0.400000 +2924 1977 0.400000 +2924 1991 0.400000 +2924 2060 0.400000 +2924 2074 0.400000 +2924 2098 0.400000 +2924 2141 0.400000 +2924 2189 0.400000 +2924 2279 0.400000 +2924 2321 0.400000 +2924 2382 0.400000 +2924 2464 0.400000 +2924 2570 0.400000 +2924 2632 0.400000 +2924 2744 0.400000 +2924 2960 0.400000 +2924 2964 0.400000 +2924 2995 0.400000 +2924 3050 0.400000 +2924 3157 0.400000 +2924 3177 0.400000 +2925 8 0.400000 +2925 85 0.400000 +2925 180 0.400000 +2925 202 0.400000 +2925 241 0.400000 +2925 449 0.400000 +2925 500 0.400000 +2925 555 0.400000 +2925 572 0.400000 +2925 607 0.400000 +2925 620 0.400000 +2925 685 0.400000 +2925 704 0.400000 +2925 708 0.400000 +2925 726 0.400000 +2925 732 0.400000 +2925 736 0.400000 +2925 755 0.400000 +2925 812 0.400000 +2925 840 0.400000 +2925 866 0.400000 +2925 878 0.400000 +2925 883 0.400000 +2925 1155 0.400000 +2925 1168 0.400000 +2925 1229 0.400000 +2925 1323 0.400000 +2925 1375 0.400000 +2925 1403 0.400000 +2925 1426 0.400000 +2925 1508 0.400000 +2925 1703 0.400000 +2925 1764 0.400000 +2925 1856 0.400000 +2925 1936 0.400000 +2925 1977 0.400000 +2925 1987 0.400000 +2925 2016 0.400000 +2925 2024 0.400000 +2925 2026 0.400000 +2925 2166 0.400000 +2925 2249 0.400000 +2925 2300 0.400000 +2925 2317 0.400000 +2925 2324 0.400000 +2925 2351 0.400000 +2925 2548 0.400000 +2925 2568 0.400000 +2925 2619 0.400000 +2925 2652 0.400000 +2925 2702 0.400000 +2925 2746 0.400000 +2925 2766 0.400000 +2925 2816 0.400000 +2925 2859 0.400000 +2925 2884 0.400000 +2925 2999 0.400000 +2925 3027 0.400000 +2925 3058 0.400000 +2925 3098 0.400000 +2926 74 0.400000 +2926 81 0.400000 +2926 93 0.400000 +2926 131 0.400000 +2926 172 0.400000 +2926 179 0.400000 +2926 211 0.400000 +2926 218 0.400000 +2926 238 0.400000 +2926 248 0.400000 +2926 263 0.400000 +2926 332 0.400000 +2926 436 0.400000 +2926 631 0.400000 +2926 726 0.400000 +2926 736 0.400000 +2926 789 0.400000 +2926 806 0.400000 +2926 828 0.400000 +2926 895 0.400000 +2926 953 0.400000 +2926 999 0.400000 +2926 1036 0.400000 +2926 1037 0.400000 +2926 1043 0.400000 +2926 1073 0.400000 +2926 1205 0.400000 +2926 1271 0.400000 +2926 1382 0.400000 +2926 1388 0.400000 +2926 1399 0.400000 +2926 1651 0.400000 +2926 1668 0.400000 +2926 1741 0.400000 +2926 1767 0.400000 +2926 1774 0.400000 +2926 1785 0.400000 +2926 1955 0.400000 +2926 2008 0.400000 +2926 2070 0.400000 +2926 2139 0.400000 +2926 2143 0.400000 +2926 2150 0.400000 +2926 2243 0.400000 +2926 2324 0.400000 +2926 2494 0.400000 +2926 2499 0.400000 +2926 2735 0.400000 +2926 2779 0.400000 +2926 2798 0.400000 +2926 2823 0.400000 +2926 2831 0.400000 +2926 2843 0.400000 +2926 2968 0.400000 +2926 3001 0.400000 +2926 3007 0.400000 +2926 3026 0.400000 +2926 3060 0.400000 +2926 3192 0.400000 +2927 19 0.400000 +2927 64 0.400000 +2927 207 0.400000 +2927 275 0.400000 +2927 276 0.400000 +2927 326 0.400000 +2927 342 0.400000 +2927 409 0.400000 +2927 662 0.400000 +2927 715 0.400000 +2927 726 0.400000 +2927 751 0.400000 +2927 781 0.400000 +2927 801 0.400000 +2927 817 0.400000 +2927 823 0.400000 +2927 836 0.400000 +2927 929 0.400000 +2927 1086 0.400000 +2927 1106 0.400000 +2927 1140 0.400000 +2927 1159 0.400000 +2927 1182 0.400000 +2927 1240 0.400000 +2927 1255 0.400000 +2927 1297 0.400000 +2927 1382 0.400000 +2927 1385 0.400000 +2927 1424 0.400000 +2927 1425 0.400000 +2927 1445 0.400000 +2927 1465 0.400000 +2927 1511 0.400000 +2927 1543 0.400000 +2927 1554 0.400000 +2927 1559 0.400000 +2927 1561 0.400000 +2927 1588 0.400000 +2927 1658 0.400000 +2927 1680 0.400000 +2927 1856 0.400000 +2927 1910 0.400000 +2927 1966 0.400000 +2927 2025 0.400000 +2927 2108 0.400000 +2927 2127 0.400000 +2927 2283 0.400000 +2927 2382 0.400000 +2927 2386 0.400000 +2927 2435 0.400000 +2927 2506 0.400000 +2927 2597 0.400000 +2927 2617 0.400000 +2927 2647 0.400000 +2927 2712 0.400000 +2927 2771 0.400000 +2927 2781 0.400000 +2927 2786 0.400000 +2927 2828 0.400000 +2927 2911 0.400000 +2927 3001 0.400000 +2927 3033 0.400000 +2927 3039 0.400000 +2928 7 0.400000 +2928 41 0.400000 +2928 68 0.400000 +2928 88 0.400000 +2928 135 0.400000 +2928 170 0.400000 +2928 174 0.400000 +2928 221 0.400000 +2928 240 0.400000 +2928 287 0.400000 +2928 289 0.400000 +2928 326 0.400000 +2928 342 0.400000 +2928 427 0.400000 +2928 430 0.400000 +2928 443 0.400000 +2928 461 0.400000 +2928 594 0.400000 +2928 615 0.400000 +2928 753 0.400000 +2928 864 0.400000 +2928 1068 0.400000 +2928 1197 0.400000 +2928 1234 0.400000 +2928 1310 0.400000 +2928 1367 0.400000 +2928 1427 0.400000 +2928 1446 0.400000 +2928 1460 0.400000 +2928 1487 0.400000 +2928 1492 0.400000 +2928 1551 0.400000 +2928 1744 0.400000 +2928 1748 0.400000 +2928 1750 0.400000 +2928 1793 0.400000 +2928 1996 0.400000 +2928 2003 0.400000 +2928 2026 0.400000 +2928 2047 0.400000 +2928 2223 0.400000 +2928 2238 0.400000 +2928 2242 0.400000 +2928 2270 0.400000 +2928 2301 0.400000 +2928 2325 0.400000 +2928 2360 0.400000 +2928 2377 0.400000 +2928 2394 0.400000 +2928 2441 0.400000 +2928 2475 0.400000 +2928 2524 0.400000 +2928 2812 0.400000 +2928 2814 0.400000 +2928 2962 0.400000 +2928 2980 0.400000 +2928 2982 0.400000 +2928 3110 0.400000 +2929 56 0.400000 +2929 203 0.400000 +2929 211 0.400000 +2929 250 0.400000 +2929 339 0.400000 +2929 457 0.400000 +2929 480 0.400000 +2929 537 0.400000 +2929 589 0.400000 +2929 649 0.400000 +2929 659 0.400000 +2929 705 0.400000 +2929 771 0.400000 +2929 773 0.400000 +2929 876 0.400000 +2929 901 0.400000 +2929 909 0.400000 +2929 1002 0.400000 +2929 1033 0.400000 +2929 1072 0.400000 +2929 1075 0.400000 +2929 1096 0.400000 +2929 1107 0.400000 +2929 1272 0.400000 +2929 1371 0.400000 +2929 1406 0.400000 +2929 1427 0.400000 +2929 1453 0.400000 +2929 1458 0.400000 +2929 1464 0.400000 +2929 1481 0.400000 +2929 1512 0.400000 +2929 1514 0.400000 +2929 1520 0.400000 +2929 1648 0.400000 +2929 1660 0.400000 +2929 1700 0.400000 +2929 1704 0.400000 +2929 1781 0.400000 +2929 1858 0.400000 +2929 1953 0.400000 +2929 2034 0.400000 +2929 2146 0.400000 +2929 2198 0.400000 +2929 2232 0.400000 +2929 2388 0.400000 +2929 2432 0.400000 +2929 2496 0.400000 +2929 2628 0.400000 +2929 2700 0.400000 +2929 2775 0.400000 +2929 2842 0.400000 +2929 2914 0.400000 +2929 2959 0.400000 +2929 3100 0.400000 +2929 3131 0.400000 +2929 3169 0.400000 +2930 3 0.400000 +2930 14 0.400000 +2930 20 0.400000 +2930 108 0.400000 +2930 127 0.400000 +2930 182 0.400000 +2930 215 0.400000 +2930 281 0.400000 +2930 402 0.400000 +2930 419 0.400000 +2930 485 0.400000 +2930 528 0.400000 +2930 544 0.400000 +2930 556 0.400000 +2930 561 0.400000 +2930 612 0.400000 +2930 657 0.400000 +2930 694 0.400000 +2930 722 0.400000 +2930 748 0.400000 +2930 779 0.400000 +2930 919 0.400000 +2930 929 0.400000 +2930 938 0.400000 +2930 968 0.400000 +2930 1098 0.400000 +2930 1158 0.400000 +2930 1181 0.400000 +2930 1228 0.400000 +2930 1281 0.400000 +2930 1288 0.400000 +2930 1334 0.400000 +2930 1349 0.400000 +2930 1388 0.400000 +2930 1534 0.400000 +2930 1553 0.400000 +2930 1557 0.400000 +2930 1662 0.400000 +2930 1699 0.400000 +2930 1779 0.400000 +2930 1826 0.400000 +2930 1856 0.400000 +2930 1972 0.400000 +2930 1989 0.400000 +2930 2033 0.400000 +2930 2092 0.400000 +2930 2111 0.400000 +2930 2142 0.400000 +2930 2168 0.400000 +2930 2195 0.400000 +2930 2197 0.400000 +2930 2420 0.400000 +2930 2466 0.400000 +2930 2470 0.400000 +2930 2521 0.400000 +2930 2572 0.400000 +2930 2626 0.400000 +2930 2631 0.400000 +2930 2740 0.400000 +2930 2800 0.400000 +2930 2804 0.400000 +2930 2826 0.400000 +2930 2889 0.400000 +2930 3045 0.400000 +2930 3046 0.400000 +2930 3141 0.400000 +2931 46 0.400000 +2931 47 0.400000 +2931 50 0.400000 +2931 66 0.400000 +2931 103 0.400000 +2931 224 0.400000 +2931 261 0.400000 +2931 264 0.400000 +2931 303 0.400000 +2931 340 0.400000 +2931 365 0.400000 +2931 372 0.400000 +2931 417 0.400000 +2931 517 0.400000 +2931 582 0.400000 +2931 747 0.400000 +2931 863 0.400000 +2931 897 0.400000 +2931 915 0.400000 +2931 949 0.400000 +2931 1018 0.400000 +2931 1086 0.400000 +2931 1249 0.400000 +2931 1327 0.400000 +2931 1336 0.400000 +2931 1398 0.400000 +2931 1413 0.400000 +2931 1448 0.400000 +2931 1500 0.400000 +2931 1587 0.400000 +2931 1631 0.400000 +2931 1668 0.400000 +2931 1776 0.400000 +2931 1864 0.400000 +2931 1873 0.400000 +2931 2032 0.400000 +2931 2047 0.400000 +2931 2056 0.400000 +2931 2095 0.400000 +2931 2212 0.400000 +2931 2258 0.400000 +2931 2269 0.400000 +2931 2306 0.400000 +2931 2314 0.400000 +2931 2399 0.400000 +2931 2438 0.400000 +2931 2553 0.400000 +2931 2889 0.400000 +2931 3022 0.400000 +2932 48 0.400000 +2932 201 0.400000 +2932 210 0.400000 +2932 264 0.400000 +2932 275 0.400000 +2932 322 0.400000 +2932 350 0.400000 +2932 395 0.400000 +2932 431 0.400000 +2932 489 0.400000 +2932 513 0.400000 +2932 551 0.400000 +2932 620 0.400000 +2932 848 0.400000 +2932 874 0.400000 +2932 963 0.400000 +2932 1055 0.400000 +2932 1149 0.400000 +2932 1179 0.400000 +2932 1192 0.400000 +2932 1244 0.400000 +2932 1251 0.400000 +2932 1365 0.400000 +2932 1449 0.400000 +2932 1468 0.400000 +2932 1510 0.400000 +2932 1513 0.400000 +2932 1600 0.400000 +2932 1693 0.400000 +2932 1722 0.400000 +2932 1826 0.400000 +2932 1895 0.400000 +2932 1919 0.400000 +2932 1954 0.400000 +2932 1968 0.400000 +2932 2165 0.400000 +2932 2174 0.400000 +2932 2181 0.400000 +2932 2229 0.400000 +2932 2247 0.400000 +2932 2251 0.400000 +2932 2273 0.400000 +2932 2292 0.400000 +2932 2309 0.400000 +2932 2368 0.400000 +2932 2417 0.400000 +2932 2470 0.400000 +2932 2500 0.400000 +2932 2515 0.400000 +2932 2545 0.400000 +2932 2671 0.400000 +2932 2777 0.400000 +2932 2819 0.400000 +2932 2849 0.400000 +2932 2879 0.400000 +2932 2929 0.400000 +2932 2950 0.400000 +2932 3081 0.400000 +2932 3127 0.400000 +2932 3129 0.400000 +2932 3138 0.400000 +2933 32 0.400000 +2933 82 0.400000 +2933 115 0.400000 +2933 165 0.400000 +2933 269 0.400000 +2933 287 0.400000 +2933 385 0.400000 +2933 413 0.400000 +2933 420 0.400000 +2933 474 0.400000 +2933 482 0.400000 +2933 486 0.400000 +2933 554 0.400000 +2933 567 0.400000 +2933 589 0.400000 +2933 600 0.400000 +2933 607 0.400000 +2933 835 0.400000 +2933 838 0.400000 +2933 930 0.400000 +2933 935 0.400000 +2933 989 0.400000 +2933 1089 0.400000 +2933 1093 0.400000 +2933 1130 0.400000 +2933 1200 0.400000 +2933 1273 0.400000 +2933 1276 0.400000 +2933 1342 0.400000 +2933 1362 0.400000 +2933 1427 0.400000 +2933 1460 0.400000 +2933 1479 0.400000 +2933 1484 0.400000 +2933 1485 0.400000 +2933 1549 0.400000 +2933 1733 0.400000 +2933 1788 0.400000 +2933 1818 0.400000 +2933 1830 0.400000 +2933 1868 0.400000 +2933 1896 0.400000 +2933 2041 0.400000 +2933 2170 0.400000 +2933 2263 0.400000 +2933 2360 0.400000 +2933 2393 0.400000 +2933 2416 0.400000 +2933 2503 0.400000 +2933 2518 0.400000 +2933 2598 0.400000 +2933 2605 0.400000 +2933 2730 0.400000 +2933 2778 0.400000 +2933 2780 0.400000 +2933 2894 0.400000 +2933 2987 0.400000 +2933 2999 0.400000 +2933 3022 0.400000 +2933 3036 0.400000 +2933 3145 0.400000 +2933 3157 0.400000 +2934 14 0.400000 +2934 24 0.400000 +2934 188 0.400000 +2934 249 0.400000 +2934 355 0.400000 +2934 375 0.400000 +2934 379 0.400000 +2934 391 0.400000 +2934 425 0.400000 +2934 450 0.400000 +2934 505 0.400000 +2934 513 0.400000 +2934 708 0.400000 +2934 792 0.400000 +2934 823 0.400000 +2934 852 0.400000 +2934 891 0.400000 +2934 894 0.400000 +2934 1002 0.400000 +2934 1033 0.400000 +2934 1079 0.400000 +2934 1166 0.400000 +2934 1174 0.400000 +2934 1202 0.400000 +2934 1299 0.400000 +2934 1352 0.400000 +2934 1355 0.400000 +2934 1438 0.400000 +2934 1445 0.400000 +2934 1455 0.400000 +2934 1482 0.400000 +2934 1490 0.400000 +2934 1549 0.400000 +2934 1605 0.400000 +2934 1622 0.400000 +2934 1756 0.400000 +2934 1931 0.400000 +2934 1956 0.400000 +2934 2032 0.400000 +2934 2034 0.400000 +2934 2079 0.400000 +2934 2154 0.400000 +2934 2211 0.400000 +2934 2281 0.400000 +2934 2293 0.400000 +2934 2339 0.400000 +2934 2345 0.400000 +2934 2366 0.400000 +2934 2387 0.400000 +2934 2451 0.400000 +2934 2468 0.400000 +2934 2655 0.400000 +2934 2716 0.400000 +2934 2736 0.400000 +2934 2776 0.400000 +2934 2843 0.400000 +2934 2974 0.400000 +2934 2998 0.400000 +2934 3002 0.400000 +2934 3023 0.400000 +2934 3037 0.400000 +2934 3047 0.400000 +2934 3051 0.400000 +2934 3127 0.400000 +2934 3172 0.400000 +2935 20 0.400000 +2935 71 0.400000 +2935 116 0.400000 +2935 119 0.400000 +2935 154 0.400000 +2935 244 0.400000 +2935 540 0.400000 +2935 577 0.400000 +2935 637 0.400000 +2935 698 0.400000 +2935 699 0.400000 +2935 715 0.400000 +2935 761 0.400000 +2935 844 0.400000 +2935 918 0.400000 +2935 975 0.400000 +2935 1030 0.400000 +2935 1074 0.400000 +2935 1183 0.400000 +2935 1194 0.400000 +2935 1312 0.400000 +2935 1361 0.400000 +2935 1376 0.400000 +2935 1467 0.400000 +2935 1519 0.400000 +2935 1541 0.400000 +2935 1590 0.400000 +2935 1612 0.400000 +2935 1670 0.400000 +2935 1715 0.400000 +2935 1792 0.400000 +2935 1872 0.400000 +2935 1898 0.400000 +2935 1946 0.400000 +2935 1979 0.400000 +2935 1988 0.400000 +2935 1996 0.400000 +2935 2006 0.400000 +2935 2081 0.400000 +2935 2181 0.400000 +2935 2325 0.400000 +2935 2329 0.400000 +2935 2366 0.400000 +2935 2429 0.400000 +2935 2440 0.400000 +2935 2485 0.400000 +2935 2498 0.400000 +2935 2508 0.400000 +2935 2563 0.400000 +2935 2666 0.400000 +2935 2754 0.400000 +2935 2850 0.400000 +2935 2897 0.400000 +2935 2913 0.400000 +2935 2968 0.400000 +2935 3069 0.400000 +2935 3076 0.400000 +2935 3089 0.400000 +2936 16 0.400000 +2936 57 0.400000 +2936 71 0.400000 +2936 151 0.400000 +2936 167 0.400000 +2936 230 0.400000 +2936 466 0.400000 +2936 502 0.400000 +2936 570 0.400000 +2936 591 0.400000 +2936 597 0.400000 +2936 681 0.400000 +2936 857 0.400000 +2936 861 0.400000 +2936 920 0.400000 +2936 1020 0.400000 +2936 1050 0.400000 +2936 1094 0.400000 +2936 1133 0.400000 +2936 1206 0.400000 +2936 1239 0.400000 +2936 1242 0.400000 +2936 1310 0.400000 +2936 1402 0.400000 +2936 1406 0.400000 +2936 1411 0.400000 +2936 1432 0.400000 +2936 1482 0.400000 +2936 1486 0.400000 +2936 1513 0.400000 +2936 1541 0.400000 +2936 1634 0.400000 +2936 1640 0.400000 +2936 1677 0.400000 +2936 1707 0.400000 +2936 1735 0.400000 +2936 1777 0.400000 +2936 1802 0.400000 +2936 1901 0.400000 +2936 1928 0.400000 +2936 1966 0.400000 +2936 2034 0.400000 +2936 2145 0.400000 +2936 2169 0.400000 +2936 2302 0.400000 +2936 2574 0.400000 +2936 2615 0.400000 +2936 2619 0.400000 +2936 2649 0.400000 +2936 2655 0.400000 +2936 2703 0.400000 +2936 2783 0.400000 +2936 2868 0.400000 +2936 2883 0.400000 +2936 2964 0.400000 +2936 2986 0.400000 +2936 3015 0.400000 +2936 3167 0.400000 +2936 3185 0.400000 +2937 44 0.400000 +2937 86 0.400000 +2937 108 0.400000 +2937 126 0.400000 +2937 128 0.400000 +2937 283 0.400000 +2937 297 0.400000 +2937 336 0.400000 +2937 347 0.400000 +2937 529 0.400000 +2937 614 0.400000 +2937 618 0.400000 +2937 635 0.400000 +2937 680 0.400000 +2937 794 0.400000 +2937 864 0.400000 +2937 882 0.400000 +2937 911 0.400000 +2937 965 0.400000 +2937 1018 0.400000 +2937 1036 0.400000 +2937 1068 0.400000 +2937 1097 0.400000 +2937 1116 0.400000 +2937 1121 0.400000 +2937 1269 0.400000 +2937 1295 0.400000 +2937 1334 0.400000 +2937 1347 0.400000 +2937 1353 0.400000 +2937 1434 0.400000 +2937 1439 0.400000 +2937 1518 0.400000 +2937 1722 0.400000 +2937 1736 0.400000 +2937 1870 0.400000 +2937 1879 0.400000 +2937 2043 0.400000 +2937 2062 0.400000 +2937 2139 0.400000 +2937 2209 0.400000 +2937 2277 0.400000 +2937 2302 0.400000 +2937 2332 0.400000 +2937 2339 0.400000 +2937 2368 0.400000 +2937 2402 0.400000 +2937 2438 0.400000 +2937 2485 0.400000 +2937 2506 0.400000 +2937 2530 0.400000 +2937 2554 0.400000 +2937 2777 0.400000 +2937 2785 0.400000 +2937 2999 0.400000 +2937 3032 0.400000 +2937 3115 0.400000 +2937 3151 0.400000 +2937 3152 0.400000 +2937 3193 0.400000 +2938 57 0.400000 +2938 61 0.400000 +2938 75 0.400000 +2938 76 0.400000 +2938 78 0.400000 +2938 108 0.400000 +2938 146 0.400000 +2938 271 0.400000 +2938 403 0.400000 +2938 405 0.400000 +2938 436 0.400000 +2938 440 0.400000 +2938 450 0.400000 +2938 679 0.400000 +2938 757 0.400000 +2938 782 0.400000 +2938 859 0.400000 +2938 917 0.400000 +2938 994 0.400000 +2938 1005 0.400000 +2938 1062 0.400000 +2938 1206 0.400000 +2938 1227 0.400000 +2938 1234 0.400000 +2938 1235 0.400000 +2938 1248 0.400000 +2938 1274 0.400000 +2938 1281 0.400000 +2938 1368 0.400000 +2938 1373 0.400000 +2938 1410 0.400000 +2938 1447 0.400000 +2938 1452 0.400000 +2938 1471 0.400000 +2938 1535 0.400000 +2938 1688 0.400000 +2938 1820 0.400000 +2938 1907 0.400000 +2938 1911 0.400000 +2938 1923 0.400000 +2938 1927 0.400000 +2938 1946 0.400000 +2938 2064 0.400000 +2938 2078 0.400000 +2938 2180 0.400000 +2938 2240 0.400000 +2938 2257 0.400000 +2938 2268 0.400000 +2938 2307 0.400000 +2938 2377 0.400000 +2938 2479 0.400000 +2938 2496 0.400000 +2938 2585 0.400000 +2938 2810 0.400000 +2938 2812 0.400000 +2938 2839 0.400000 +2938 2873 0.400000 +2938 2946 0.400000 +2938 2974 0.400000 +2938 2985 0.400000 +2938 3046 0.400000 +2938 3065 0.400000 +2938 3069 0.400000 +2938 3190 0.400000 +2939 6 0.400000 +2939 12 0.400000 +2939 21 0.400000 +2939 52 0.400000 +2939 66 0.400000 +2939 114 0.400000 +2939 155 0.400000 +2939 198 0.400000 +2939 291 0.400000 +2939 296 0.400000 +2939 349 0.400000 +2939 354 0.400000 +2939 360 0.400000 +2939 365 0.400000 +2939 405 0.400000 +2939 446 0.400000 +2939 508 0.400000 +2939 516 0.400000 +2939 549 0.400000 +2939 626 0.400000 +2939 653 0.400000 +2939 669 0.400000 +2939 674 0.400000 +2939 687 0.400000 +2939 698 0.400000 +2939 756 0.400000 +2939 828 0.400000 +2939 918 0.400000 +2939 926 0.400000 +2939 943 0.400000 +2939 968 0.400000 +2939 1041 0.400000 +2939 1136 0.400000 +2939 1254 0.400000 +2939 1266 0.400000 +2939 1272 0.400000 +2939 1351 0.400000 +2939 1435 0.400000 +2939 1521 0.400000 +2939 1692 0.400000 +2939 1735 0.400000 +2939 1791 0.400000 +2939 1843 0.400000 +2939 1882 0.400000 +2939 1884 0.400000 +2939 1932 0.400000 +2939 1950 0.400000 +2939 1960 0.400000 +2939 1987 0.400000 +2939 2031 0.400000 +2939 2133 0.400000 +2939 2145 0.400000 +2939 2240 0.400000 +2939 2258 0.400000 +2939 2303 0.400000 +2939 2322 0.400000 +2939 2347 0.400000 +2939 2446 0.400000 +2939 2478 0.400000 +2939 2486 0.400000 +2939 2498 0.400000 +2939 2580 0.400000 +2939 2641 0.400000 +2939 2647 0.400000 +2939 2705 0.400000 +2939 2758 0.400000 +2939 2885 0.400000 +2939 3002 0.400000 +2939 3032 0.400000 +2939 3060 0.400000 +2939 3110 0.400000 +2939 3138 0.400000 +2939 3144 0.400000 +2939 3160 0.400000 +2940 5 0.400000 +2940 249 0.400000 +2940 265 0.400000 +2940 313 0.400000 +2940 328 0.400000 +2940 387 0.400000 +2940 429 0.400000 +2940 553 0.400000 +2940 582 0.400000 +2940 638 0.400000 +2940 652 0.400000 +2940 723 0.400000 +2940 843 0.400000 +2940 878 0.400000 +2940 900 0.400000 +2940 997 0.400000 +2940 1015 0.400000 +2940 1034 0.400000 +2940 1035 0.400000 +2940 1040 0.400000 +2940 1100 0.400000 +2940 1113 0.400000 +2940 1139 0.400000 +2940 1346 0.400000 +2940 1386 0.400000 +2940 1396 0.400000 +2940 1454 0.400000 +2940 1517 0.400000 +2940 1584 0.400000 +2940 1742 0.400000 +2940 1897 0.400000 +2940 2007 0.400000 +2940 2104 0.400000 +2940 2139 0.400000 +2940 2271 0.400000 +2940 2339 0.400000 +2940 2421 0.400000 +2940 2477 0.400000 +2940 2485 0.400000 +2940 2503 0.400000 +2940 2639 0.400000 +2940 2684 0.400000 +2940 2806 0.400000 +2940 2808 0.400000 +2940 2962 0.400000 +2940 2978 0.400000 +2940 3000 0.400000 +2940 3096 0.400000 +2940 3157 0.400000 +2940 3166 0.400000 +2941 90 0.400000 +2941 182 0.400000 +2941 192 0.400000 +2941 246 0.400000 +2941 318 0.400000 +2941 328 0.400000 +2941 356 0.400000 +2941 376 0.400000 +2941 397 0.400000 +2941 400 0.400000 +2941 422 0.400000 +2941 432 0.400000 +2941 449 0.400000 +2941 469 0.400000 +2941 512 0.400000 +2941 528 0.400000 +2941 553 0.400000 +2941 578 0.400000 +2941 587 0.400000 +2941 634 0.400000 +2941 670 0.400000 +2941 699 0.400000 +2941 723 0.400000 +2941 782 0.400000 +2941 799 0.400000 +2941 841 0.400000 +2941 1045 0.400000 +2941 1110 0.400000 +2941 1146 0.400000 +2941 1222 0.400000 +2941 1248 0.400000 +2941 1289 0.400000 +2941 1345 0.400000 +2941 1358 0.400000 +2941 1457 0.400000 +2941 1485 0.400000 +2941 1567 0.400000 +2941 1579 0.400000 +2941 1593 0.400000 +2941 1689 0.400000 +2941 1872 0.400000 +2941 2016 0.400000 +2941 2027 0.400000 +2941 2043 0.400000 +2941 2119 0.400000 +2941 2149 0.400000 +2941 2214 0.400000 +2941 2263 0.400000 +2941 2270 0.400000 +2941 2285 0.400000 +2941 2340 0.400000 +2941 2362 0.400000 +2941 2434 0.400000 +2941 2526 0.400000 +2941 2587 0.400000 +2941 2661 0.400000 +2941 2669 0.400000 +2941 2670 0.400000 +2941 2761 0.400000 +2941 2787 0.400000 +2941 2870 0.400000 +2941 2881 0.400000 +2941 3032 0.400000 +2941 3070 0.400000 +2941 3103 0.400000 +2941 3165 0.400000 +2941 3178 0.400000 +2942 6 0.400000 +2942 22 0.400000 +2942 42 0.400000 +2942 186 0.400000 +2942 191 0.400000 +2942 273 0.400000 +2942 432 0.400000 +2942 436 0.400000 +2942 454 0.400000 +2942 455 0.400000 +2942 499 0.400000 +2942 539 0.400000 +2942 568 0.400000 +2942 571 0.400000 +2942 689 0.400000 +2942 726 0.400000 +2942 735 0.400000 +2942 760 0.400000 +2942 783 0.400000 +2942 857 0.400000 +2942 892 0.400000 +2942 952 0.400000 +2942 999 0.400000 +2942 1058 0.400000 +2942 1071 0.400000 +2942 1116 0.400000 +2942 1177 0.400000 +2942 1219 0.400000 +2942 1223 0.400000 +2942 1224 0.400000 +2942 1227 0.400000 +2942 1261 0.400000 +2942 1296 0.400000 +2942 1332 0.400000 +2942 1358 0.400000 +2942 1380 0.400000 +2942 1488 0.400000 +2942 1489 0.400000 +2942 1521 0.400000 +2942 1562 0.400000 +2942 1655 0.400000 +2942 1800 0.400000 +2942 1878 0.400000 +2942 1913 0.400000 +2942 1989 0.400000 +2942 2166 0.400000 +2942 2196 0.400000 +2942 2206 0.400000 +2942 2311 0.400000 +2942 2313 0.400000 +2942 2335 0.400000 +2942 2526 0.400000 +2942 2723 0.400000 +2942 2751 0.400000 +2942 2817 0.400000 +2942 2836 0.400000 +2942 2873 0.400000 +2942 2939 0.400000 +2942 3100 0.400000 +2942 3125 0.400000 +2942 3200 0.400000 +2943 122 0.400000 +2943 137 0.400000 +2943 164 0.400000 +2943 171 0.400000 +2943 194 0.400000 +2943 245 0.400000 +2943 270 0.400000 +2943 318 0.400000 +2943 428 0.400000 +2943 441 0.400000 +2943 447 0.400000 +2943 505 0.400000 +2943 615 0.400000 +2943 788 0.400000 +2943 856 0.400000 +2943 861 0.400000 +2943 870 0.400000 +2943 875 0.400000 +2943 982 0.400000 +2943 1085 0.400000 +2943 1119 0.400000 +2943 1148 0.400000 +2943 1217 0.400000 +2943 1229 0.400000 +2943 1253 0.400000 +2943 1302 0.400000 +2943 1384 0.400000 +2943 1474 0.400000 +2943 1574 0.400000 +2943 1706 0.400000 +2943 1720 0.400000 +2943 1722 0.400000 +2943 1747 0.400000 +2943 1831 0.400000 +2943 1892 0.400000 +2943 1918 0.400000 +2943 1939 0.400000 +2943 1963 0.400000 +2943 2060 0.400000 +2943 2076 0.400000 +2943 2089 0.400000 +2943 2176 0.400000 +2943 2255 0.400000 +2943 2360 0.400000 +2943 2369 0.400000 +2943 2409 0.400000 +2943 2461 0.400000 +2943 2518 0.400000 +2943 2539 0.400000 +2943 2620 0.400000 +2943 2758 0.400000 +2943 2801 0.400000 +2943 2842 0.400000 +2943 2886 0.400000 +2943 2907 0.400000 +2943 3026 0.400000 +2943 3077 0.400000 +2943 3120 0.400000 +2943 3136 0.400000 +2943 3162 0.400000 +2943 3163 0.400000 +2943 3173 0.400000 +2943 3187 0.400000 +2943 3189 0.400000 +2944 1 0.400000 +2944 12 0.400000 +2944 74 0.400000 +2944 128 0.400000 +2944 143 0.400000 +2944 169 0.400000 +2944 182 0.400000 +2944 249 0.400000 +2944 257 0.400000 +2944 422 0.400000 +2944 475 0.400000 +2944 491 0.400000 +2944 545 0.400000 +2944 670 0.400000 +2944 716 0.400000 +2944 727 0.400000 +2944 735 0.400000 +2944 778 0.400000 +2944 790 0.400000 +2944 856 0.400000 +2944 866 0.400000 +2944 925 0.400000 +2944 937 0.400000 +2944 1001 0.400000 +2944 1023 0.400000 +2944 1103 0.400000 +2944 1220 0.400000 +2944 1275 0.400000 +2944 1340 0.400000 +2944 1378 0.400000 +2944 1412 0.400000 +2944 1442 0.400000 +2944 1444 0.400000 +2944 1535 0.400000 +2944 1557 0.400000 +2944 1632 0.400000 +2944 1689 0.400000 +2944 1692 0.400000 +2944 1695 0.400000 +2944 1712 0.400000 +2944 1859 0.400000 +2944 1888 0.400000 +2944 1916 0.400000 +2944 1933 0.400000 +2944 1944 0.400000 +2944 1946 0.400000 +2944 2053 0.400000 +2944 2098 0.400000 +2944 2122 0.400000 +2944 2179 0.400000 +2944 2209 0.400000 +2944 2232 0.400000 +2944 2241 0.400000 +2944 2270 0.400000 +2944 2276 0.400000 +2944 2390 0.400000 +2944 2486 0.400000 +2944 2504 0.400000 +2944 2517 0.400000 +2944 2529 0.400000 +2944 2575 0.400000 +2944 2699 0.400000 +2944 2730 0.400000 +2944 2737 0.400000 +2944 2805 0.400000 +2944 2819 0.400000 +2944 2874 0.400000 +2944 3091 0.400000 +2944 3131 0.400000 +2944 3196 0.400000 +2945 46 0.400000 +2945 152 0.400000 +2945 154 0.400000 +2945 215 0.400000 +2945 217 0.400000 +2945 287 0.400000 +2945 369 0.400000 +2945 579 0.400000 +2945 612 0.400000 +2945 645 0.400000 +2945 682 0.400000 +2945 724 0.400000 +2945 727 0.400000 +2945 850 0.400000 +2945 918 0.400000 +2945 945 0.400000 +2945 972 0.400000 +2945 1011 0.400000 +2945 1135 0.400000 +2945 1139 0.400000 +2945 1240 0.400000 +2945 1242 0.400000 +2945 1251 0.400000 +2945 1282 0.400000 +2945 1298 0.400000 +2945 1350 0.400000 +2945 1352 0.400000 +2945 1400 0.400000 +2945 1471 0.400000 +2945 1494 0.400000 +2945 1584 0.400000 +2945 1640 0.400000 +2945 1771 0.400000 +2945 1833 0.400000 +2945 1869 0.400000 +2945 1941 0.400000 +2945 1969 0.400000 +2945 2069 0.400000 +2945 2147 0.400000 +2945 2155 0.400000 +2945 2178 0.400000 +2945 2215 0.400000 +2945 2220 0.400000 +2945 2254 0.400000 +2945 2272 0.400000 +2945 2283 0.400000 +2945 2334 0.400000 +2945 2361 0.400000 +2945 2414 0.400000 +2945 2427 0.400000 +2945 2440 0.400000 +2945 2519 0.400000 +2945 2554 0.400000 +2945 2587 0.400000 +2945 2607 0.400000 +2945 2659 0.400000 +2945 2745 0.400000 +2945 2752 0.400000 +2945 2948 0.400000 +2945 2993 0.400000 +2945 3138 0.400000 +2946 8 0.400000 +2946 41 0.400000 +2946 89 0.400000 +2946 117 0.400000 +2946 159 0.400000 +2946 199 0.400000 +2946 320 0.400000 +2946 330 0.400000 +2946 334 0.400000 +2946 343 0.400000 +2946 357 0.400000 +2946 363 0.400000 +2946 389 0.400000 +2946 430 0.400000 +2946 487 0.400000 +2946 496 0.400000 +2946 562 0.400000 +2946 593 0.400000 +2946 611 0.400000 +2946 708 0.400000 +2946 729 0.400000 +2946 740 0.400000 +2946 772 0.400000 +2946 912 0.400000 +2946 935 0.400000 +2946 982 0.400000 +2946 1076 0.400000 +2946 1145 0.400000 +2946 1149 0.400000 +2946 1155 0.400000 +2946 1227 0.400000 +2946 1231 0.400000 +2946 1236 0.400000 +2946 1277 0.400000 +2946 1294 0.400000 +2946 1329 0.400000 +2946 1383 0.400000 +2946 1412 0.400000 +2946 1511 0.400000 +2946 1525 0.400000 +2946 1528 0.400000 +2946 1558 0.400000 +2946 1561 0.400000 +2946 1608 0.400000 +2946 1642 0.400000 +2946 1754 0.400000 +2946 1771 0.400000 +2946 1818 0.400000 +2946 1834 0.400000 +2946 1968 0.400000 +2946 2005 0.400000 +2946 2102 0.400000 +2946 2160 0.400000 +2946 2192 0.400000 +2946 2244 0.400000 +2946 2264 0.400000 +2946 2295 0.400000 +2946 2313 0.400000 +2946 2317 0.400000 +2946 2411 0.400000 +2946 2422 0.400000 +2946 2549 0.400000 +2946 2610 0.400000 +2946 2634 0.400000 +2946 2679 0.400000 +2946 2719 0.400000 +2946 2836 0.400000 +2946 2924 0.400000 +2946 2974 0.400000 +2946 3008 0.400000 +2946 3070 0.400000 +2946 3082 0.400000 +2946 3170 0.400000 +2946 3180 0.400000 +2947 80 0.400000 +2947 128 0.400000 +2947 129 0.400000 +2947 182 0.400000 +2947 356 0.400000 +2947 445 0.400000 +2947 457 0.400000 +2947 561 0.400000 +2947 570 0.400000 +2947 622 0.400000 +2947 666 0.400000 +2947 718 0.400000 +2947 817 0.400000 +2947 839 0.400000 +2947 887 0.400000 +2947 962 0.400000 +2947 975 0.400000 +2947 1034 0.400000 +2947 1093 0.400000 +2947 1153 0.400000 +2947 1182 0.400000 +2947 1242 0.400000 +2947 1544 0.400000 +2947 1577 0.400000 +2947 1578 0.400000 +2947 1584 0.400000 +2947 1591 0.400000 +2947 1621 0.400000 +2947 1660 0.400000 +2947 1668 0.400000 +2947 1775 0.400000 +2947 1896 0.400000 +2947 1937 0.400000 +2947 1944 0.400000 +2947 1965 0.400000 +2947 1967 0.400000 +2947 2008 0.400000 +2947 2069 0.400000 +2947 2076 0.400000 +2947 2085 0.400000 +2947 2127 0.400000 +2947 2260 0.400000 +2947 2268 0.400000 +2947 2294 0.400000 +2947 2338 0.400000 +2947 2414 0.400000 +2947 2528 0.400000 +2947 2586 0.400000 +2947 2696 0.400000 +2947 2698 0.400000 +2947 2751 0.400000 +2947 2783 0.400000 +2947 2795 0.400000 +2947 2818 0.400000 +2947 2862 0.400000 +2947 2866 0.400000 +2947 2888 0.400000 +2947 2984 0.400000 +2947 3015 0.400000 +2947 3075 0.400000 +2947 3175 0.400000 +2948 264 0.400000 +2948 334 0.400000 +2948 335 0.400000 +2948 387 0.400000 +2948 442 0.400000 +2948 531 0.400000 +2948 678 0.400000 +2948 686 0.400000 +2948 702 0.400000 +2948 750 0.400000 +2948 788 0.400000 +2948 791 0.400000 +2948 815 0.400000 +2948 823 0.400000 +2948 830 0.400000 +2948 935 0.400000 +2948 939 0.400000 +2948 983 0.400000 +2948 1000 0.400000 +2948 1032 0.400000 +2948 1085 0.400000 +2948 1183 0.400000 +2948 1215 0.400000 +2948 1246 0.400000 +2948 1288 0.400000 +2948 1313 0.400000 +2948 1364 0.400000 +2948 1396 0.400000 +2948 1448 0.400000 +2948 1564 0.400000 +2948 1690 0.400000 +2948 1733 0.400000 +2948 1752 0.400000 +2948 1794 0.400000 +2948 1823 0.400000 +2948 1859 0.400000 +2948 1864 0.400000 +2948 1875 0.400000 +2948 1932 0.400000 +2948 1952 0.400000 +2948 2048 0.400000 +2948 2058 0.400000 +2948 2160 0.400000 +2948 2209 0.400000 +2948 2253 0.400000 +2948 2274 0.400000 +2948 2408 0.400000 +2948 2483 0.400000 +2948 2490 0.400000 +2948 2497 0.400000 +2948 2526 0.400000 +2948 2538 0.400000 +2948 2543 0.400000 +2948 2561 0.400000 +2948 2587 0.400000 +2948 2617 0.400000 +2948 2618 0.400000 +2948 2766 0.400000 +2948 2776 0.400000 +2948 2815 0.400000 +2948 2918 0.400000 +2948 2983 0.400000 +2948 3076 0.400000 +2948 3169 0.400000 +2949 3 0.400000 +2949 11 0.400000 +2949 94 0.400000 +2949 116 0.400000 +2949 185 0.400000 +2949 226 0.400000 +2949 243 0.400000 +2949 320 0.400000 +2949 355 0.400000 +2949 366 0.400000 +2949 490 0.400000 +2949 600 0.400000 +2949 624 0.400000 +2949 635 0.400000 +2949 717 0.400000 +2949 781 0.400000 +2949 878 0.400000 +2949 889 0.400000 +2949 907 0.400000 +2949 919 0.400000 +2949 968 0.400000 +2949 970 0.400000 +2949 984 0.400000 +2949 1078 0.400000 +2949 1207 0.400000 +2949 1485 0.400000 +2949 1534 0.400000 +2949 1570 0.400000 +2949 1608 0.400000 +2949 1628 0.400000 +2949 1700 0.400000 +2949 1701 0.400000 +2949 1800 0.400000 +2949 1801 0.400000 +2949 1895 0.400000 +2949 1897 0.400000 +2949 2004 0.400000 +2949 2028 0.400000 +2949 2078 0.400000 +2949 2113 0.400000 +2949 2150 0.400000 +2949 2201 0.400000 +2949 2376 0.400000 +2949 2391 0.400000 +2949 2416 0.400000 +2949 2426 0.400000 +2949 2466 0.400000 +2949 2474 0.400000 +2949 2630 0.400000 +2949 2701 0.400000 +2949 2719 0.400000 +2949 2725 0.400000 +2949 2754 0.400000 +2949 2768 0.400000 +2949 2891 0.400000 +2949 2982 0.400000 +2949 2985 0.400000 +2949 2990 0.400000 +2949 2991 0.400000 +2949 2995 0.400000 +2949 3020 0.400000 +2949 3136 0.400000 +2950 46 0.400000 +2950 54 0.400000 +2950 235 0.400000 +2950 459 0.400000 +2950 460 0.400000 +2950 522 0.400000 +2950 593 0.400000 +2950 609 0.400000 +2950 636 0.400000 +2950 676 0.400000 +2950 678 0.400000 +2950 764 0.400000 +2950 768 0.400000 +2950 823 0.400000 +2950 838 0.400000 +2950 854 0.400000 +2950 891 0.400000 +2950 896 0.400000 +2950 931 0.400000 +2950 994 0.400000 +2950 1083 0.400000 +2950 1129 0.400000 +2950 1190 0.400000 +2950 1251 0.400000 +2950 1284 0.400000 +2950 1469 0.400000 +2950 1490 0.400000 +2950 1557 0.400000 +2950 1631 0.400000 +2950 1639 0.400000 +2950 1660 0.400000 +2950 1694 0.400000 +2950 1703 0.400000 +2950 1888 0.400000 +2950 1964 0.400000 +2950 1986 0.400000 +2950 2037 0.400000 +2950 2143 0.400000 +2950 2170 0.400000 +2950 2225 0.400000 +2950 2367 0.400000 +2950 2458 0.400000 +2950 2499 0.400000 +2950 2512 0.400000 +2950 2525 0.400000 +2950 2641 0.400000 +2950 2713 0.400000 +2950 2731 0.400000 +2950 2772 0.400000 +2950 2773 0.400000 +2950 2872 0.400000 +2950 2910 0.400000 +2950 2923 0.400000 +2950 2946 0.400000 +2950 2961 0.400000 +2950 2975 0.400000 +2950 2997 0.400000 +2950 3048 0.400000 +2950 3096 0.400000 +2950 3161 0.400000 +2951 30 0.400000 +2951 36 0.400000 +2951 82 0.400000 +2951 88 0.400000 +2951 118 0.400000 +2951 159 0.400000 +2951 187 0.400000 +2951 221 0.400000 +2951 245 0.400000 +2951 267 0.400000 +2951 276 0.400000 +2951 324 0.400000 +2951 395 0.400000 +2951 435 0.400000 +2951 465 0.400000 +2951 518 0.400000 +2951 616 0.400000 +2951 663 0.400000 +2951 727 0.400000 +2951 738 0.400000 +2951 931 0.400000 +2951 1023 0.400000 +2951 1087 0.400000 +2951 1148 0.400000 +2951 1160 0.400000 +2951 1206 0.400000 +2951 1265 0.400000 +2951 1337 0.400000 +2951 1409 0.400000 +2951 1449 0.400000 +2951 1458 0.400000 +2951 1476 0.400000 +2951 1477 0.400000 +2951 1520 0.400000 +2951 1565 0.400000 +2951 1598 0.400000 +2951 1614 0.400000 +2951 1696 0.400000 +2951 1730 0.400000 +2951 1744 0.400000 +2951 1772 0.400000 +2951 1775 0.400000 +2951 1825 0.400000 +2951 1852 0.400000 +2951 1903 0.400000 +2951 1907 0.400000 +2951 2027 0.400000 +2951 2056 0.400000 +2951 2132 0.400000 +2951 2261 0.400000 +2951 2366 0.400000 +2951 2374 0.400000 +2951 2385 0.400000 +2951 2388 0.400000 +2951 2445 0.400000 +2951 2524 0.400000 +2951 2640 0.400000 +2951 2661 0.400000 +2951 2742 0.400000 +2951 2835 0.400000 +2951 2967 0.400000 +2951 3035 0.400000 +2951 3087 0.400000 +2951 3101 0.400000 +2951 3121 0.400000 +2951 3125 0.400000 +2951 3169 0.400000 +2951 3171 0.400000 +2951 3172 0.400000 +2952 37 0.400000 +2952 92 0.400000 +2952 117 0.400000 +2952 132 0.400000 +2952 171 0.400000 +2952 275 0.400000 +2952 297 0.400000 +2952 468 0.400000 +2952 486 0.400000 +2952 519 0.400000 +2952 612 0.400000 +2952 638 0.400000 +2952 665 0.400000 +2952 750 0.400000 +2952 873 0.400000 +2952 908 0.400000 +2952 1030 0.400000 +2952 1037 0.400000 +2952 1061 0.400000 +2952 1169 0.400000 +2952 1171 0.400000 +2952 1202 0.400000 +2952 1220 0.400000 +2952 1296 0.400000 +2952 1300 0.400000 +2952 1303 0.400000 +2952 1324 0.400000 +2952 1437 0.400000 +2952 1465 0.400000 +2952 1476 0.400000 +2952 1479 0.400000 +2952 1486 0.400000 +2952 1579 0.400000 +2952 1663 0.400000 +2952 1671 0.400000 +2952 1719 0.400000 +2952 1765 0.400000 +2952 1783 0.400000 +2952 1838 0.400000 +2952 2055 0.400000 +2952 2058 0.400000 +2952 2068 0.400000 +2952 2076 0.400000 +2952 2081 0.400000 +2952 2115 0.400000 +2952 2153 0.400000 +2952 2214 0.400000 +2952 2233 0.400000 +2952 2278 0.400000 +2952 2295 0.400000 +2952 2297 0.400000 +2952 2369 0.400000 +2952 2372 0.400000 +2952 2451 0.400000 +2952 2459 0.400000 +2952 2507 0.400000 +2952 2537 0.400000 +2952 2552 0.400000 +2952 2721 0.400000 +2952 2770 0.400000 +2952 2781 0.400000 +2952 2790 0.400000 +2952 2795 0.400000 +2952 2808 0.400000 +2952 2818 0.400000 +2952 2829 0.400000 +2952 2886 0.400000 +2952 2929 0.400000 +2952 2942 0.400000 +2952 2970 0.400000 +2952 2997 0.400000 +2952 3077 0.400000 +2952 3115 0.400000 +2953 79 0.400000 +2953 89 0.400000 +2953 141 0.400000 +2953 213 0.400000 +2953 239 0.400000 +2953 255 0.400000 +2953 263 0.400000 +2953 287 0.400000 +2953 347 0.400000 +2953 367 0.400000 +2953 387 0.400000 +2953 404 0.400000 +2953 424 0.400000 +2953 446 0.400000 +2953 466 0.400000 +2953 483 0.400000 +2953 546 0.400000 +2953 577 0.400000 +2953 579 0.400000 +2953 615 0.400000 +2953 712 0.400000 +2953 727 0.400000 +2953 758 0.400000 +2953 779 0.400000 +2953 848 0.400000 +2953 949 0.400000 +2953 989 0.400000 +2953 1014 0.400000 +2953 1057 0.400000 +2953 1065 0.400000 +2953 1106 0.400000 +2953 1186 0.400000 +2953 1247 0.400000 +2953 1251 0.400000 +2953 1367 0.400000 +2953 1415 0.400000 +2953 1438 0.400000 +2953 1472 0.400000 +2953 1516 0.400000 +2953 1523 0.400000 +2953 1563 0.400000 +2953 1685 0.400000 +2953 1702 0.400000 +2953 1793 0.400000 +2953 1828 0.400000 +2953 1829 0.400000 +2953 1922 0.400000 +2953 1950 0.400000 +2953 1952 0.400000 +2953 1980 0.400000 +2953 2009 0.400000 +2953 2088 0.400000 +2953 2120 0.400000 +2953 2238 0.400000 +2953 2367 0.400000 +2953 2395 0.400000 +2953 2396 0.400000 +2953 2397 0.400000 +2953 2557 0.400000 +2953 2571 0.400000 +2953 2762 0.400000 +2953 2838 0.400000 +2953 2881 0.400000 +2953 2887 0.400000 +2953 2894 0.400000 +2953 2896 0.400000 +2953 2921 0.400000 +2953 2952 0.400000 +2953 3000 0.400000 +2953 3007 0.400000 +2953 3032 0.400000 +2954 10 0.400000 +2954 42 0.400000 +2954 113 0.400000 +2954 212 0.400000 +2954 239 0.400000 +2954 274 0.400000 +2954 330 0.400000 +2954 359 0.400000 +2954 383 0.400000 +2954 411 0.400000 +2954 516 0.400000 +2954 542 0.400000 +2954 989 0.400000 +2954 1033 0.400000 +2954 1086 0.400000 +2954 1103 0.400000 +2954 1124 0.400000 +2954 1183 0.400000 +2954 1288 0.400000 +2954 1356 0.400000 +2954 1359 0.400000 +2954 1384 0.400000 +2954 1461 0.400000 +2954 1511 0.400000 +2954 1514 0.400000 +2954 1607 0.400000 +2954 1674 0.400000 +2954 1696 0.400000 +2954 1771 0.400000 +2954 1777 0.400000 +2954 1828 0.400000 +2954 1922 0.400000 +2954 1979 0.400000 +2954 2001 0.400000 +2954 2062 0.400000 +2954 2134 0.400000 +2954 2159 0.400000 +2954 2163 0.400000 +2954 2260 0.400000 +2954 2264 0.400000 +2954 2374 0.400000 +2954 2397 0.400000 +2954 2493 0.400000 +2954 2598 0.400000 +2954 2737 0.400000 +2954 2781 0.400000 +2954 2785 0.400000 +2954 2829 0.400000 +2954 2848 0.400000 +2954 2929 0.400000 +2954 2954 0.400000 +2954 2970 0.400000 +2954 3021 0.400000 +2954 3064 0.400000 +2954 3087 0.400000 +2954 3138 0.400000 +2954 3163 0.400000 +2954 3167 0.400000 +2955 16 0.400000 +2955 34 0.400000 +2955 58 0.400000 +2955 138 0.400000 +2955 244 0.400000 +2955 264 0.400000 +2955 388 0.400000 +2955 461 0.400000 +2955 492 0.400000 +2955 544 0.400000 +2955 558 0.400000 +2955 593 0.400000 +2955 594 0.400000 +2955 600 0.400000 +2955 632 0.400000 +2955 671 0.400000 +2955 688 0.400000 +2955 803 0.400000 +2955 963 0.400000 +2955 1076 0.400000 +2955 1167 0.400000 +2955 1206 0.400000 +2955 1227 0.400000 +2955 1252 0.400000 +2955 1263 0.400000 +2955 1268 0.400000 +2955 1329 0.400000 +2955 1375 0.400000 +2955 1383 0.400000 +2955 1384 0.400000 +2955 1546 0.400000 +2955 1557 0.400000 +2955 1573 0.400000 +2955 1687 0.400000 +2955 1718 0.400000 +2955 1746 0.400000 +2955 1795 0.400000 +2955 1863 0.400000 +2955 1924 0.400000 +2955 1931 0.400000 +2955 2035 0.400000 +2955 2054 0.400000 +2955 2131 0.400000 +2955 2231 0.400000 +2955 2248 0.400000 +2955 2313 0.400000 +2955 2395 0.400000 +2955 2443 0.400000 +2955 2454 0.400000 +2955 2511 0.400000 +2955 2546 0.400000 +2955 2571 0.400000 +2955 2743 0.400000 +2955 2824 0.400000 +2955 2874 0.400000 +2955 3033 0.400000 +2955 3123 0.400000 +2955 3143 0.400000 +2956 21 0.400000 +2956 22 0.400000 +2956 29 0.400000 +2956 36 0.400000 +2956 39 0.400000 +2956 58 0.400000 +2956 90 0.400000 +2956 107 0.400000 +2956 113 0.400000 +2956 124 0.400000 +2956 166 0.400000 +2956 174 0.400000 +2956 295 0.400000 +2956 329 0.400000 +2956 333 0.400000 +2956 464 0.400000 +2956 493 0.400000 +2956 506 0.400000 +2956 518 0.400000 +2956 538 0.400000 +2956 543 0.400000 +2956 601 0.400000 +2956 685 0.400000 +2956 713 0.400000 +2956 784 0.400000 +2956 793 0.400000 +2956 815 0.400000 +2956 833 0.400000 +2956 854 0.400000 +2956 874 0.400000 +2956 882 0.400000 +2956 932 0.400000 +2956 1046 0.400000 +2956 1085 0.400000 +2956 1087 0.400000 +2956 1100 0.400000 +2956 1136 0.400000 +2956 1245 0.400000 +2956 1266 0.400000 +2956 1277 0.400000 +2956 1325 0.400000 +2956 1339 0.400000 +2956 1404 0.400000 +2956 1485 0.400000 +2956 1501 0.400000 +2956 1508 0.400000 +2956 1575 0.400000 +2956 1617 0.400000 +2956 1625 0.400000 +2956 1635 0.400000 +2956 1722 0.400000 +2956 1754 0.400000 +2956 1817 0.400000 +2956 1877 0.400000 +2956 1927 0.400000 +2956 2038 0.400000 +2956 2088 0.400000 +2956 2123 0.400000 +2956 2194 0.400000 +2956 2220 0.400000 +2956 2223 0.400000 +2956 2227 0.400000 +2956 2245 0.400000 +2956 2318 0.400000 +2956 2496 0.400000 +2956 2503 0.400000 +2956 2651 0.400000 +2956 2662 0.400000 +2956 2698 0.400000 +2956 2784 0.400000 +2957 11 0.400000 +2957 30 0.400000 +2957 36 0.400000 +2957 43 0.400000 +2957 96 0.400000 +2957 164 0.400000 +2957 247 0.400000 +2957 295 0.400000 +2957 296 0.400000 +2957 343 0.400000 +2957 391 0.400000 +2957 415 0.400000 +2957 424 0.400000 +2957 462 0.400000 +2957 509 0.400000 +2957 595 0.400000 +2957 687 0.400000 +2957 688 0.400000 +2957 713 0.400000 +2957 730 0.400000 +2957 813 0.400000 +2957 868 0.400000 +2957 932 0.400000 +2957 1051 0.400000 +2957 1125 0.400000 +2957 1151 0.400000 +2957 1207 0.400000 +2957 1296 0.400000 +2957 1297 0.400000 +2957 1364 0.400000 +2957 1438 0.400000 +2957 1446 0.400000 +2957 1490 0.400000 +2957 1536 0.400000 +2957 1546 0.400000 +2957 1610 0.400000 +2957 1625 0.400000 +2957 1644 0.400000 +2957 1667 0.400000 +2957 1765 0.400000 +2957 1946 0.400000 +2957 1948 0.400000 +2957 2044 0.400000 +2957 2123 0.400000 +2957 2224 0.400000 +2957 2291 0.400000 +2957 2298 0.400000 +2957 2349 0.400000 +2957 2424 0.400000 +2957 2525 0.400000 +2957 2585 0.400000 +2957 2599 0.400000 +2957 2616 0.400000 +2957 2733 0.400000 +2957 2774 0.400000 +2957 2867 0.400000 +2957 2923 0.400000 +2957 2945 0.400000 +2957 2986 0.400000 +2957 3063 0.400000 +2957 3083 0.400000 +2957 3113 0.400000 +2957 3177 0.400000 +2958 56 0.400000 +2958 186 0.400000 +2958 292 0.400000 +2958 303 0.400000 +2958 304 0.400000 +2958 393 0.400000 +2958 407 0.400000 +2958 451 0.400000 +2958 521 0.400000 +2958 572 0.400000 +2958 620 0.400000 +2958 623 0.400000 +2958 713 0.400000 +2958 787 0.400000 +2958 810 0.400000 +2958 842 0.400000 +2958 858 0.400000 +2958 879 0.400000 +2958 884 0.400000 +2958 1089 0.400000 +2958 1097 0.400000 +2958 1168 0.400000 +2958 1274 0.400000 +2958 1305 0.400000 +2958 1426 0.400000 +2958 1575 0.400000 +2958 1583 0.400000 +2958 1647 0.400000 +2958 1662 0.400000 +2958 1722 0.400000 +2958 1740 0.400000 +2958 1938 0.400000 +2958 1963 0.400000 +2958 1988 0.400000 +2958 2109 0.400000 +2958 2152 0.400000 +2958 2400 0.400000 +2958 2403 0.400000 +2958 2420 0.400000 +2958 2429 0.400000 +2958 2491 0.400000 +2958 2595 0.400000 +2958 2604 0.400000 +2958 2668 0.400000 +2958 2681 0.400000 +2958 2726 0.400000 +2958 2777 0.400000 +2958 2880 0.400000 +2958 2975 0.400000 +2958 3017 0.400000 +2958 3052 0.400000 +2958 3086 0.400000 +2958 3130 0.400000 +2958 3163 0.400000 +2958 3179 0.400000 +2959 64 0.400000 +2959 87 0.400000 +2959 96 0.400000 +2959 164 0.400000 +2959 205 0.400000 +2959 312 0.400000 +2959 341 0.400000 +2959 400 0.400000 +2959 517 0.400000 +2959 536 0.400000 +2959 594 0.400000 +2959 686 0.400000 +2959 699 0.400000 +2959 705 0.400000 +2959 894 0.400000 +2959 922 0.400000 +2959 954 0.400000 +2959 959 0.400000 +2959 983 0.400000 +2959 1029 0.400000 +2959 1179 0.400000 +2959 1241 0.400000 +2959 1288 0.400000 +2959 1404 0.400000 +2959 1426 0.400000 +2959 1461 0.400000 +2959 1519 0.400000 +2959 1541 0.400000 +2959 1558 0.400000 +2959 1579 0.400000 +2959 1596 0.400000 +2959 1607 0.400000 +2959 1635 0.400000 +2959 1658 0.400000 +2959 1667 0.400000 +2959 1685 0.400000 +2959 1702 0.400000 +2959 1741 0.400000 +2959 1881 0.400000 +2959 1892 0.400000 +2959 1927 0.400000 +2959 1929 0.400000 +2959 1939 0.400000 +2959 2135 0.400000 +2959 2190 0.400000 +2959 2193 0.400000 +2959 2392 0.400000 +2959 2404 0.400000 +2959 2556 0.400000 +2959 2682 0.400000 +2959 2726 0.400000 +2959 2772 0.400000 +2959 2785 0.400000 +2959 2861 0.400000 +2959 2889 0.400000 +2959 2894 0.400000 +2959 2918 0.400000 +2959 2927 0.400000 +2959 2994 0.400000 +2959 3142 0.400000 +2959 3176 0.400000 +2959 3199 0.400000 +2960 57 0.400000 +2960 96 0.400000 +2960 140 0.400000 +2960 193 0.400000 +2960 309 0.400000 +2960 349 0.400000 +2960 399 0.400000 +2960 410 0.400000 +2960 555 0.400000 +2960 598 0.400000 +2960 603 0.400000 +2960 741 0.400000 +2960 750 0.400000 +2960 765 0.400000 +2960 773 0.400000 +2960 774 0.400000 +2960 800 0.400000 +2960 816 0.400000 +2960 1138 0.400000 +2960 1160 0.400000 +2960 1203 0.400000 +2960 1220 0.400000 +2960 1337 0.400000 +2960 1385 0.400000 +2960 1471 0.400000 +2960 1570 0.400000 +2960 1594 0.400000 +2960 1597 0.400000 +2960 1615 0.400000 +2960 1643 0.400000 +2960 1753 0.400000 +2960 1772 0.400000 +2960 1818 0.400000 +2960 1871 0.400000 +2960 1889 0.400000 +2960 1949 0.400000 +2960 2048 0.400000 +2960 2157 0.400000 +2960 2161 0.400000 +2960 2232 0.400000 +2960 2247 0.400000 +2960 2257 0.400000 +2960 2306 0.400000 +2960 2369 0.400000 +2960 2440 0.400000 +2960 2536 0.400000 +2960 2645 0.400000 +2960 2646 0.400000 +2960 2663 0.400000 +2960 2768 0.400000 +2960 2830 0.400000 +2960 2893 0.400000 +2960 2954 0.400000 +2960 3007 0.400000 +2960 3103 0.400000 +2961 12 0.400000 +2961 41 0.400000 +2961 72 0.400000 +2961 134 0.400000 +2961 166 0.400000 +2961 188 0.400000 +2961 202 0.400000 +2961 230 0.400000 +2961 359 0.400000 +2961 516 0.400000 +2961 576 0.400000 +2961 630 0.400000 +2961 855 0.400000 +2961 940 0.400000 +2961 978 0.400000 +2961 1027 0.400000 +2961 1069 0.400000 +2961 1132 0.400000 +2961 1165 0.400000 +2961 1235 0.400000 +2961 1280 0.400000 +2961 1360 0.400000 +2961 1365 0.400000 +2961 1411 0.400000 +2961 1657 0.400000 +2961 1786 0.400000 +2961 1837 0.400000 +2961 2162 0.400000 +2961 2176 0.400000 +2961 2379 0.400000 +2961 2381 0.400000 +2961 2501 0.400000 +2961 2534 0.400000 +2961 2587 0.400000 +2961 2606 0.400000 +2961 2620 0.400000 +2961 2654 0.400000 +2961 2786 0.400000 +2961 2787 0.400000 +2961 2816 0.400000 +2961 2893 0.400000 +2961 2984 0.400000 +2961 3017 0.400000 +2961 3032 0.400000 +2961 3066 0.400000 +2961 3095 0.400000 +2961 3129 0.400000 +2961 3181 0.400000 +2962 17 0.400000 +2962 22 0.400000 +2962 181 0.400000 +2962 241 0.400000 +2962 243 0.400000 +2962 261 0.400000 +2962 294 0.400000 +2962 307 0.400000 +2962 340 0.400000 +2962 352 0.400000 +2962 373 0.400000 +2962 376 0.400000 +2962 414 0.400000 +2962 425 0.400000 +2962 488 0.400000 +2962 498 0.400000 +2962 598 0.400000 +2962 619 0.400000 +2962 657 0.400000 +2962 713 0.400000 +2962 721 0.400000 +2962 789 0.400000 +2962 802 0.400000 +2962 828 0.400000 +2962 918 0.400000 +2962 1003 0.400000 +2962 1038 0.400000 +2962 1106 0.400000 +2962 1167 0.400000 +2962 1178 0.400000 +2962 1337 0.400000 +2962 1409 0.400000 +2962 1412 0.400000 +2962 1440 0.400000 +2962 1446 0.400000 +2962 1590 0.400000 +2962 1604 0.400000 +2962 1631 0.400000 +2962 1645 0.400000 +2962 1690 0.400000 +2962 1787 0.400000 +2962 1859 0.400000 +2962 1950 0.400000 +2962 1994 0.400000 +2962 2001 0.400000 +2962 2033 0.400000 +2962 2129 0.400000 +2962 2183 0.400000 +2962 2348 0.400000 +2962 2471 0.400000 +2962 2484 0.400000 +2962 2591 0.400000 +2962 2645 0.400000 +2962 2653 0.400000 +2962 2655 0.400000 +2962 2666 0.400000 +2962 2708 0.400000 +2962 2865 0.400000 +2962 3003 0.400000 +2962 3143 0.400000 +2963 128 0.400000 +2963 299 0.400000 +2963 320 0.400000 +2963 438 0.400000 +2963 455 0.400000 +2963 457 0.400000 +2963 483 0.400000 +2963 590 0.400000 +2963 648 0.400000 +2963 660 0.400000 +2963 694 0.400000 +2963 696 0.400000 +2963 724 0.400000 +2963 742 0.400000 +2963 756 0.400000 +2963 768 0.400000 +2963 827 0.400000 +2963 842 0.400000 +2963 980 0.400000 +2963 1005 0.400000 +2963 1010 0.400000 +2963 1026 0.400000 +2963 1243 0.400000 +2963 1319 0.400000 +2963 1355 0.400000 +2963 1357 0.400000 +2963 1364 0.400000 +2963 1397 0.400000 +2963 1432 0.400000 +2963 1456 0.400000 +2963 1487 0.400000 +2963 1539 0.400000 +2963 1575 0.400000 +2963 1581 0.400000 +2963 1646 0.400000 +2963 1675 0.400000 +2963 1724 0.400000 +2963 1730 0.400000 +2963 1834 0.400000 +2963 1836 0.400000 +2963 1893 0.400000 +2963 1910 0.400000 +2963 1912 0.400000 +2963 1913 0.400000 +2963 1978 0.400000 +2963 1989 0.400000 +2963 2046 0.400000 +2963 2126 0.400000 +2963 2138 0.400000 +2963 2140 0.400000 +2963 2176 0.400000 +2963 2229 0.400000 +2963 2304 0.400000 +2963 2517 0.400000 +2963 2539 0.400000 +2963 2549 0.400000 +2963 2551 0.400000 +2963 2597 0.400000 +2963 2618 0.400000 +2963 2635 0.400000 +2963 2673 0.400000 +2963 2703 0.400000 +2963 2714 0.400000 +2963 2812 0.400000 +2963 2860 0.400000 +2963 2986 0.400000 +2963 3123 0.400000 +2963 3161 0.400000 +2964 26 0.400000 +2964 252 0.400000 +2964 263 0.400000 +2964 272 0.400000 +2964 328 0.400000 +2964 363 0.400000 +2964 365 0.400000 +2964 410 0.400000 +2964 459 0.400000 +2964 502 0.400000 +2964 552 0.400000 +2964 599 0.400000 +2964 641 0.400000 +2964 685 0.400000 +2964 687 0.400000 +2964 700 0.400000 +2964 732 0.400000 +2964 734 0.400000 +2964 792 0.400000 +2964 823 0.400000 +2964 858 0.400000 +2964 1011 0.400000 +2964 1056 0.400000 +2964 1079 0.400000 +2964 1172 0.400000 +2964 1214 0.400000 +2964 1284 0.400000 +2964 1407 0.400000 +2964 1462 0.400000 +2964 1463 0.400000 +2964 1534 0.400000 +2964 1535 0.400000 +2964 1577 0.400000 +2964 1588 0.400000 +2964 1594 0.400000 +2964 1919 0.400000 +2964 2025 0.400000 +2964 2038 0.400000 +2964 2080 0.400000 +2964 2117 0.400000 +2964 2124 0.400000 +2964 2146 0.400000 +2964 2349 0.400000 +2964 2441 0.400000 +2964 2596 0.400000 +2964 2747 0.400000 +2964 2790 0.400000 +2964 2952 0.400000 +2964 3028 0.400000 +2964 3140 0.400000 +2964 3152 0.400000 +2964 3167 0.400000 +2965 54 0.400000 +2965 69 0.400000 +2965 75 0.400000 +2965 77 0.400000 +2965 103 0.400000 +2965 111 0.400000 +2965 151 0.400000 +2965 159 0.400000 +2965 353 0.400000 +2965 404 0.400000 +2965 415 0.400000 +2965 432 0.400000 +2965 455 0.400000 +2965 481 0.400000 +2965 483 0.400000 +2965 508 0.400000 +2965 566 0.400000 +2965 636 0.400000 +2965 685 0.400000 +2965 758 0.400000 +2965 761 0.400000 +2965 773 0.400000 +2965 997 0.400000 +2965 1043 0.400000 +2965 1052 0.400000 +2965 1070 0.400000 +2965 1101 0.400000 +2965 1148 0.400000 +2965 1193 0.400000 +2965 1215 0.400000 +2965 1282 0.400000 +2965 1358 0.400000 +2965 1381 0.400000 +2965 1459 0.400000 +2965 1484 0.400000 +2965 1601 0.400000 +2965 1713 0.400000 +2965 1735 0.400000 +2965 1757 0.400000 +2965 1790 0.400000 +2965 1799 0.400000 +2965 1910 0.400000 +2965 1917 0.400000 +2965 1965 0.400000 +2965 2097 0.400000 +2965 2112 0.400000 +2965 2152 0.400000 +2965 2237 0.400000 +2965 2245 0.400000 +2965 2273 0.400000 +2965 2278 0.400000 +2965 2311 0.400000 +2965 2315 0.400000 +2965 2432 0.400000 +2965 2440 0.400000 +2965 2514 0.400000 +2965 2522 0.400000 +2965 2582 0.400000 +2965 2626 0.400000 +2965 2716 0.400000 +2965 2717 0.400000 +2965 2762 0.400000 +2965 2853 0.400000 +2965 2872 0.400000 +2965 2881 0.400000 +2965 2890 0.400000 +2965 2943 0.400000 +2965 2964 0.400000 +2965 2968 0.400000 +2965 2981 0.400000 +2965 3003 0.400000 +2965 3029 0.400000 +2965 3075 0.400000 +2965 3148 0.400000 +2966 56 0.400000 +2966 83 0.400000 +2966 170 0.400000 +2966 255 0.400000 +2966 261 0.400000 +2966 274 0.400000 +2966 302 0.400000 +2966 320 0.400000 +2966 326 0.400000 +2966 348 0.400000 +2966 401 0.400000 +2966 432 0.400000 +2966 514 0.400000 +2966 664 0.400000 +2966 780 0.400000 +2966 848 0.400000 +2966 854 0.400000 +2966 871 0.400000 +2966 945 0.400000 +2966 1027 0.400000 +2966 1030 0.400000 +2966 1065 0.400000 +2966 1098 0.400000 +2966 1105 0.400000 +2966 1162 0.400000 +2966 1216 0.400000 +2966 1256 0.400000 +2966 1366 0.400000 +2966 1379 0.400000 +2966 1403 0.400000 +2966 1412 0.400000 +2966 1417 0.400000 +2966 1419 0.400000 +2966 1598 0.400000 +2966 1674 0.400000 +2966 1806 0.400000 +2966 1829 0.400000 +2966 1886 0.400000 +2966 1895 0.400000 +2966 1931 0.400000 +2966 2018 0.400000 +2966 2085 0.400000 +2966 2149 0.400000 +2966 2222 0.400000 +2966 2258 0.400000 +2966 2268 0.400000 +2966 2295 0.400000 +2966 2312 0.400000 +2966 2329 0.400000 +2966 2343 0.400000 +2966 2378 0.400000 +2966 2386 0.400000 +2966 2504 0.400000 +2966 2537 0.400000 +2966 2557 0.400000 +2966 2583 0.400000 +2966 2647 0.400000 +2966 2657 0.400000 +2966 2660 0.400000 +2966 2807 0.400000 +2966 2809 0.400000 +2966 2817 0.400000 +2966 2929 0.400000 +2966 2936 0.400000 +2966 2967 0.400000 +2966 3083 0.400000 +2967 124 0.400000 +2967 136 0.400000 +2967 185 0.400000 +2967 198 0.400000 +2967 281 0.400000 +2967 312 0.400000 +2967 353 0.400000 +2967 362 0.400000 +2967 386 0.400000 +2967 525 0.400000 +2967 572 0.400000 +2967 591 0.400000 +2967 603 0.400000 +2967 674 0.400000 +2967 688 0.400000 +2967 735 0.400000 +2967 837 0.400000 +2967 846 0.400000 +2967 925 0.400000 +2967 998 0.400000 +2967 1047 0.400000 +2967 1065 0.400000 +2967 1071 0.400000 +2967 1163 0.400000 +2967 1188 0.400000 +2967 1231 0.400000 +2967 1298 0.400000 +2967 1380 0.400000 +2967 1434 0.400000 +2967 1482 0.400000 +2967 1524 0.400000 +2967 1541 0.400000 +2967 1549 0.400000 +2967 1596 0.400000 +2967 1632 0.400000 +2967 1736 0.400000 +2967 1790 0.400000 +2967 1933 0.400000 +2967 1934 0.400000 +2967 1943 0.400000 +2967 1968 0.400000 +2967 1979 0.400000 +2967 2017 0.400000 +2967 2083 0.400000 +2967 2123 0.400000 +2967 2204 0.400000 +2967 2376 0.400000 +2967 2405 0.400000 +2967 2458 0.400000 +2967 2505 0.400000 +2967 2539 0.400000 +2967 2589 0.400000 +2967 2641 0.400000 +2967 2656 0.400000 +2967 2678 0.400000 +2967 2768 0.400000 +2967 2794 0.400000 +2967 2853 0.400000 +2967 2949 0.400000 +2967 2964 0.400000 +2967 2966 0.400000 +2967 3005 0.400000 +2967 3045 0.400000 +2967 3122 0.400000 +2967 3126 0.400000 +2967 3174 0.400000 +2968 17 0.400000 +2968 31 0.400000 +2968 32 0.400000 +2968 51 0.400000 +2968 81 0.400000 +2968 87 0.400000 +2968 185 0.400000 +2968 188 0.400000 +2968 203 0.400000 +2968 345 0.400000 +2968 422 0.400000 +2968 513 0.400000 +2968 584 0.400000 +2968 607 0.400000 +2968 612 0.400000 +2968 842 0.400000 +2968 1159 0.400000 +2968 1226 0.400000 +2968 1352 0.400000 +2968 1383 0.400000 +2968 1455 0.400000 +2968 1562 0.400000 +2968 1596 0.400000 +2968 1606 0.400000 +2968 1655 0.400000 +2968 1850 0.400000 +2968 1874 0.400000 +2968 1909 0.400000 +2968 1914 0.400000 +2968 2045 0.400000 +2968 2127 0.400000 +2968 2138 0.400000 +2968 2194 0.400000 +2968 2222 0.400000 +2968 2291 0.400000 +2968 2517 0.400000 +2968 2525 0.400000 +2968 2665 0.400000 +2968 2673 0.400000 +2968 2747 0.400000 +2968 2753 0.400000 +2968 2760 0.400000 +2968 2899 0.400000 +2968 2928 0.400000 +2968 2983 0.400000 +2968 3059 0.400000 +2968 3080 0.400000 +2968 3088 0.400000 +2968 3179 0.400000 +2969 26 0.400000 +2969 47 0.400000 +2969 90 0.400000 +2969 207 0.400000 +2969 230 0.400000 +2969 267 0.400000 +2969 351 0.400000 +2969 448 0.400000 +2969 465 0.400000 +2969 534 0.400000 +2969 565 0.400000 +2969 678 0.400000 +2969 827 0.400000 +2969 844 0.400000 +2969 915 0.400000 +2969 966 0.400000 +2969 980 0.400000 +2969 1044 0.400000 +2969 1105 0.400000 +2969 1170 0.400000 +2969 1456 0.400000 +2969 1555 0.400000 +2969 1568 0.400000 +2969 1619 0.400000 +2969 1652 0.400000 +2969 1655 0.400000 +2969 1656 0.400000 +2969 1695 0.400000 +2969 1702 0.400000 +2969 1743 0.400000 +2969 1752 0.400000 +2969 1776 0.400000 +2969 1907 0.400000 +2969 1980 0.400000 +2969 2052 0.400000 +2969 2103 0.400000 +2969 2124 0.400000 +2969 2139 0.400000 +2969 2179 0.400000 +2969 2271 0.400000 +2969 2285 0.400000 +2969 2293 0.400000 +2969 2306 0.400000 +2969 2374 0.400000 +2969 2417 0.400000 +2969 2521 0.400000 +2969 2535 0.400000 +2969 2596 0.400000 +2969 2723 0.400000 +2969 2731 0.400000 +2969 2764 0.400000 +2969 2776 0.400000 +2969 2792 0.400000 +2969 2823 0.400000 +2969 2825 0.400000 +2969 2829 0.400000 +2969 2859 0.400000 +2969 2874 0.400000 +2969 2918 0.400000 +2969 2943 0.400000 +2969 2964 0.400000 +2969 2976 0.400000 +2969 3059 0.400000 +2969 3136 0.400000 +2970 33 0.400000 +2970 116 0.400000 +2970 162 0.400000 +2970 232 0.400000 +2970 252 0.400000 +2970 262 0.400000 +2970 266 0.400000 +2970 280 0.400000 +2970 405 0.400000 +2970 790 0.400000 +2970 893 0.400000 +2970 982 0.400000 +2970 1054 0.400000 +2970 1067 0.400000 +2970 1077 0.400000 +2970 1088 0.400000 +2970 1126 0.400000 +2970 1148 0.400000 +2970 1169 0.400000 +2970 1226 0.400000 +2970 1277 0.400000 +2970 1283 0.400000 +2970 1294 0.400000 +2970 1297 0.400000 +2970 1300 0.400000 +2970 1328 0.400000 +2970 1468 0.400000 +2970 1509 0.400000 +2970 1791 0.400000 +2970 1932 0.400000 +2970 1961 0.400000 +2970 1977 0.400000 +2970 2037 0.400000 +2970 2043 0.400000 +2970 2044 0.400000 +2970 2061 0.400000 +2970 2064 0.400000 +2970 2073 0.400000 +2970 2158 0.400000 +2970 2266 0.400000 +2970 2330 0.400000 +2970 2354 0.400000 +2970 2372 0.400000 +2970 2375 0.400000 +2970 2388 0.400000 +2970 2466 0.400000 +2970 2507 0.400000 +2970 2565 0.400000 +2970 2597 0.400000 +2970 2677 0.400000 +2970 2721 0.400000 +2970 2730 0.400000 +2970 2739 0.400000 +2970 2770 0.400000 +2970 2809 0.400000 +2970 2872 0.400000 +2970 2902 0.400000 +2970 3026 0.400000 +2970 3100 0.400000 +2970 3162 0.400000 +2970 3171 0.400000 +2971 9 0.400000 +2971 15 0.400000 +2971 57 0.400000 +2971 132 0.400000 +2971 293 0.400000 +2971 367 0.400000 +2971 398 0.400000 +2971 477 0.400000 +2971 513 0.400000 +2971 529 0.400000 +2971 535 0.400000 +2971 592 0.400000 +2971 704 0.400000 +2971 759 0.400000 +2971 761 0.400000 +2971 822 0.400000 +2971 884 0.400000 +2971 913 0.400000 +2971 954 0.400000 +2971 959 0.400000 +2971 1036 0.400000 +2971 1049 0.400000 +2971 1059 0.400000 +2971 1132 0.400000 +2971 1186 0.400000 +2971 1235 0.400000 +2971 1237 0.400000 +2971 1330 0.400000 +2971 1405 0.400000 +2971 1441 0.400000 +2971 1643 0.400000 +2971 1669 0.400000 +2971 1682 0.400000 +2971 1734 0.400000 +2971 1759 0.400000 +2971 1846 0.400000 +2971 1853 0.400000 +2971 1878 0.400000 +2971 1902 0.400000 +2971 1957 0.400000 +2971 1981 0.400000 +2971 2028 0.400000 +2971 2038 0.400000 +2971 2239 0.400000 +2971 2327 0.400000 +2971 2331 0.400000 +2971 2393 0.400000 +2971 2401 0.400000 +2971 2478 0.400000 +2971 2479 0.400000 +2971 2502 0.400000 +2971 2529 0.400000 +2971 2730 0.400000 +2971 2914 0.400000 +2971 2935 0.400000 +2971 2954 0.400000 +2971 3015 0.400000 +2971 3035 0.400000 +2971 3141 0.400000 +2971 3159 0.400000 +2972 13 0.400000 +2972 53 0.400000 +2972 64 0.400000 +2972 142 0.400000 +2972 183 0.400000 +2972 283 0.400000 +2972 326 0.400000 +2972 340 0.400000 +2972 352 0.400000 +2972 358 0.400000 +2972 419 0.400000 +2972 429 0.400000 +2972 446 0.400000 +2972 483 0.400000 +2972 486 0.400000 +2972 545 0.400000 +2972 601 0.400000 +2972 631 0.400000 +2972 702 0.400000 +2972 728 0.400000 +2972 759 0.400000 +2972 835 0.400000 +2972 963 0.400000 +2972 985 0.400000 +2972 987 0.400000 +2972 1016 0.400000 +2972 1072 0.400000 +2972 1102 0.400000 +2972 1113 0.400000 +2972 1120 0.400000 +2972 1164 0.400000 +2972 1269 0.400000 +2972 1286 0.400000 +2972 1338 0.400000 +2972 1390 0.400000 +2972 1408 0.400000 +2972 1512 0.400000 +2972 1527 0.400000 +2972 1543 0.400000 +2972 1645 0.400000 +2972 1717 0.400000 +2972 1728 0.400000 +2972 1917 0.400000 +2972 2114 0.400000 +2972 2173 0.400000 +2972 2181 0.400000 +2972 2247 0.400000 +2972 2278 0.400000 +2972 2301 0.400000 +2972 2321 0.400000 +2972 2343 0.400000 +2972 2363 0.400000 +2972 2383 0.400000 +2972 2549 0.400000 +2972 2564 0.400000 +2972 2591 0.400000 +2972 2600 0.400000 +2972 2677 0.400000 +2972 2741 0.400000 +2972 2768 0.400000 +2972 2820 0.400000 +2972 2909 0.400000 +2972 2993 0.400000 +2972 3173 0.400000 +2972 3177 0.400000 +2973 16 0.400000 +2973 25 0.400000 +2973 55 0.400000 +2973 127 0.400000 +2973 212 0.400000 +2973 219 0.400000 +2973 293 0.400000 +2973 351 0.400000 +2973 418 0.400000 +2973 454 0.400000 +2973 463 0.400000 +2973 473 0.400000 +2973 474 0.400000 +2973 516 0.400000 +2973 524 0.400000 +2973 545 0.400000 +2973 559 0.400000 +2973 596 0.400000 +2973 608 0.400000 +2973 646 0.400000 +2973 657 0.400000 +2973 684 0.400000 +2973 753 0.400000 +2973 790 0.400000 +2973 816 0.400000 +2973 965 0.400000 +2973 1071 0.400000 +2973 1140 0.400000 +2973 1210 0.400000 +2973 1272 0.400000 +2973 1273 0.400000 +2973 1280 0.400000 +2973 1294 0.400000 +2973 1330 0.400000 +2973 1337 0.400000 +2973 1407 0.400000 +2973 1492 0.400000 +2973 1546 0.400000 +2973 1554 0.400000 +2973 1573 0.400000 +2973 1597 0.400000 +2973 1603 0.400000 +2973 1608 0.400000 +2973 1661 0.400000 +2973 1729 0.400000 +2973 1736 0.400000 +2973 1741 0.400000 +2973 1777 0.400000 +2973 1821 0.400000 +2973 1877 0.400000 +2973 1886 0.400000 +2973 1941 0.400000 +2973 1963 0.400000 +2973 1980 0.400000 +2973 1984 0.400000 +2973 1985 0.400000 +2973 2010 0.400000 +2973 2012 0.400000 +2973 2038 0.400000 +2973 2130 0.400000 +2973 2139 0.400000 +2973 2148 0.400000 +2973 2162 0.400000 +2973 2252 0.400000 +2973 2262 0.400000 +2973 2272 0.400000 +2973 2422 0.400000 +2973 2424 0.400000 +2973 2428 0.400000 +2973 2583 0.400000 +2973 2617 0.400000 +2973 2652 0.400000 +2973 2758 0.400000 +2973 2773 0.400000 +2973 2788 0.400000 +2973 2869 0.400000 +2973 2968 0.400000 +2973 2984 0.400000 +2973 3002 0.400000 +2973 3006 0.400000 +2973 3097 0.400000 +2973 3139 0.400000 +2973 3155 0.400000 +2973 3197 0.400000 +2974 11 0.400000 +2974 13 0.400000 +2974 51 0.400000 +2974 69 0.400000 +2974 91 0.400000 +2974 122 0.400000 +2974 216 0.400000 +2974 218 0.400000 +2974 220 0.400000 +2974 360 0.400000 +2974 452 0.400000 +2974 534 0.400000 +2974 609 0.400000 +2974 681 0.400000 +2974 685 0.400000 +2974 742 0.400000 +2974 752 0.400000 +2974 855 0.400000 +2974 869 0.400000 +2974 905 0.400000 +2974 1045 0.400000 +2974 1070 0.400000 +2974 1084 0.400000 +2974 1150 0.400000 +2974 1171 0.400000 +2974 1180 0.400000 +2974 1296 0.400000 +2974 1331 0.400000 +2974 1358 0.400000 +2974 1391 0.400000 +2974 1469 0.400000 +2974 1486 0.400000 +2974 1489 0.400000 +2974 1556 0.400000 +2974 1568 0.400000 +2974 1626 0.400000 +2974 1669 0.400000 +2974 1671 0.400000 +2974 1691 0.400000 +2974 1793 0.400000 +2974 1807 0.400000 +2974 1815 0.400000 +2974 1840 0.400000 +2974 1877 0.400000 +2974 1928 0.400000 +2974 1987 0.400000 +2974 2060 0.400000 +2974 2075 0.400000 +2974 2092 0.400000 +2974 2095 0.400000 +2974 2147 0.400000 +2974 2163 0.400000 +2974 2178 0.400000 +2974 2251 0.400000 +2974 2327 0.400000 +2974 2383 0.400000 +2974 2470 0.400000 +2974 2500 0.400000 +2974 2508 0.400000 +2974 2513 0.400000 +2974 2514 0.400000 +2974 2563 0.400000 +2974 2608 0.400000 +2974 2666 0.400000 +2974 2681 0.400000 +2974 2785 0.400000 +2974 2820 0.400000 +2974 2892 0.400000 +2974 2897 0.400000 +2974 2900 0.400000 +2974 2988 0.400000 +2974 2995 0.400000 +2974 3001 0.400000 +2974 3008 0.400000 +2974 3129 0.400000 +2974 3166 0.400000 +2974 3170 0.400000 +2975 151 0.400000 +2975 191 0.400000 +2975 219 0.400000 +2975 294 0.400000 +2975 323 0.400000 +2975 333 0.400000 +2975 340 0.400000 +2975 364 0.400000 +2975 387 0.400000 +2975 396 0.400000 +2975 411 0.400000 +2975 503 0.400000 +2975 526 0.400000 +2975 529 0.400000 +2975 530 0.400000 +2975 548 0.400000 +2975 598 0.400000 +2975 650 0.400000 +2975 690 0.400000 +2975 734 0.400000 +2975 830 0.400000 +2975 873 0.400000 +2975 924 0.400000 +2975 933 0.400000 +2975 966 0.400000 +2975 1103 0.400000 +2975 1268 0.400000 +2975 1292 0.400000 +2975 1321 0.400000 +2975 1347 0.400000 +2975 1476 0.400000 +2975 1485 0.400000 +2975 1501 0.400000 +2975 1525 0.400000 +2975 1534 0.400000 +2975 1576 0.400000 +2975 1635 0.400000 +2975 1738 0.400000 +2975 1777 0.400000 +2975 1789 0.400000 +2975 1818 0.400000 +2975 1841 0.400000 +2975 1984 0.400000 +2975 2026 0.400000 +2975 2055 0.400000 +2975 2134 0.400000 +2975 2196 0.400000 +2975 2400 0.400000 +2975 2408 0.400000 +2975 2460 0.400000 +2975 2464 0.400000 +2975 2539 0.400000 +2975 2581 0.400000 +2975 2595 0.400000 +2975 2596 0.400000 +2975 2700 0.400000 +2975 2779 0.400000 +2975 2799 0.400000 +2975 2840 0.400000 +2975 2905 0.400000 +2975 2969 0.400000 +2975 2988 0.400000 +2975 3098 0.400000 +2975 3166 0.400000 +2975 3200 0.400000 +2976 52 0.400000 +2976 64 0.400000 +2976 192 0.400000 +2976 213 0.400000 +2976 214 0.400000 +2976 252 0.400000 +2976 285 0.400000 +2976 315 0.400000 +2976 334 0.400000 +2976 438 0.400000 +2976 625 0.400000 +2976 655 0.400000 +2976 755 0.400000 +2976 773 0.400000 +2976 817 0.400000 +2976 842 0.400000 +2976 877 0.400000 +2976 897 0.400000 +2976 906 0.400000 +2976 915 0.400000 +2976 962 0.400000 +2976 969 0.400000 +2976 975 0.400000 +2976 1008 0.400000 +2976 1109 0.400000 +2976 1121 0.400000 +2976 1182 0.400000 +2976 1218 0.400000 +2976 1270 0.400000 +2976 1305 0.400000 +2976 1315 0.400000 +2976 1320 0.400000 +2976 1419 0.400000 +2976 1490 0.400000 +2976 1662 0.400000 +2976 1685 0.400000 +2976 1717 0.400000 +2976 1736 0.400000 +2976 1811 0.400000 +2976 1817 0.400000 +2976 1956 0.400000 +2976 1972 0.400000 +2976 1974 0.400000 +2976 1983 0.400000 +2976 2007 0.400000 +2976 2039 0.400000 +2976 2054 0.400000 +2976 2213 0.400000 +2976 2219 0.400000 +2976 2247 0.400000 +2976 2275 0.400000 +2976 2345 0.400000 +2976 2413 0.400000 +2976 2433 0.400000 +2976 2468 0.400000 +2976 2470 0.400000 +2976 2505 0.400000 +2976 2562 0.400000 +2976 2595 0.400000 +2976 2621 0.400000 +2976 2722 0.400000 +2976 2758 0.400000 +2976 2784 0.400000 +2976 2935 0.400000 +2976 2947 0.400000 +2976 2963 0.400000 +2976 3103 0.400000 +2976 3146 0.400000 +2976 3155 0.400000 +2976 3179 0.400000 +2976 3199 0.400000 +2977 24 0.400000 +2977 73 0.400000 +2977 91 0.400000 +2977 134 0.400000 +2977 154 0.400000 +2977 175 0.400000 +2977 184 0.400000 +2977 191 0.400000 +2977 192 0.400000 +2977 254 0.400000 +2977 325 0.400000 +2977 339 0.400000 +2977 435 0.400000 +2977 451 0.400000 +2977 454 0.400000 +2977 567 0.400000 +2977 612 0.400000 +2977 617 0.400000 +2977 669 0.400000 +2977 817 0.400000 +2977 819 0.400000 +2977 831 0.400000 +2977 904 0.400000 +2977 1141 0.400000 +2977 1147 0.400000 +2977 1155 0.400000 +2977 1165 0.400000 +2977 1237 0.400000 +2977 1382 0.400000 +2977 1409 0.400000 +2977 1441 0.400000 +2977 1442 0.400000 +2977 1453 0.400000 +2977 1463 0.400000 +2977 1464 0.400000 +2977 1494 0.400000 +2977 1503 0.400000 +2977 1505 0.400000 +2977 1530 0.400000 +2977 1568 0.400000 +2977 1610 0.400000 +2977 1658 0.400000 +2977 1720 0.400000 +2977 1739 0.400000 +2977 1757 0.400000 +2977 1796 0.400000 +2977 1802 0.400000 +2977 1840 0.400000 +2977 1843 0.400000 +2977 1871 0.400000 +2977 1929 0.400000 +2977 1942 0.400000 +2977 1950 0.400000 +2977 2082 0.400000 +2977 2191 0.400000 +2977 2285 0.400000 +2977 2380 0.400000 +2977 2402 0.400000 +2977 2487 0.400000 +2977 2514 0.400000 +2977 2552 0.400000 +2977 2588 0.400000 +2977 2606 0.400000 +2977 2613 0.400000 +2977 2739 0.400000 +2977 2760 0.400000 +2977 2816 0.400000 +2977 2828 0.400000 +2977 2880 0.400000 +2977 2905 0.400000 +2977 2948 0.400000 +2977 2981 0.400000 +2977 2997 0.400000 +2977 3089 0.400000 +2977 3090 0.400000 +2977 3149 0.400000 +2977 3177 0.400000 +2978 81 0.400000 +2978 104 0.400000 +2978 166 0.400000 +2978 269 0.400000 +2978 273 0.400000 +2978 312 0.400000 +2978 346 0.400000 +2978 372 0.400000 +2978 444 0.400000 +2978 467 0.400000 +2978 537 0.400000 +2978 594 0.400000 +2978 615 0.400000 +2978 670 0.400000 +2978 697 0.400000 +2978 737 0.400000 +2978 809 0.400000 +2978 832 0.400000 +2978 896 0.400000 +2978 898 0.400000 +2978 955 0.400000 +2978 977 0.400000 +2978 1017 0.400000 +2978 1022 0.400000 +2978 1040 0.400000 +2978 1061 0.400000 +2978 1094 0.400000 +2978 1158 0.400000 +2978 1167 0.400000 +2978 1214 0.400000 +2978 1286 0.400000 +2978 1328 0.400000 +2978 1332 0.400000 +2978 1339 0.400000 +2978 1356 0.400000 +2978 1382 0.400000 +2978 1444 0.400000 +2978 1453 0.400000 +2978 1494 0.400000 +2978 1503 0.400000 +2978 1565 0.400000 +2978 1621 0.400000 +2978 1634 0.400000 +2978 1649 0.400000 +2978 1690 0.400000 +2978 1707 0.400000 +2978 1778 0.400000 +2978 1790 0.400000 +2978 1825 0.400000 +2978 1844 0.400000 +2978 1864 0.400000 +2978 1934 0.400000 +2978 1964 0.400000 +2978 1969 0.400000 +2978 2027 0.400000 +2978 2086 0.400000 +2978 2215 0.400000 +2978 2360 0.400000 +2978 2378 0.400000 +2978 2388 0.400000 +2978 2460 0.400000 +2978 2493 0.400000 +2978 2505 0.400000 +2978 2517 0.400000 +2978 2526 0.400000 +2978 2544 0.400000 +2978 2547 0.400000 +2978 2564 0.400000 +2978 2617 0.400000 +2978 2748 0.400000 +2978 2753 0.400000 +2978 2794 0.400000 +2978 2855 0.400000 +2978 2921 0.400000 +2978 3093 0.400000 +2978 3121 0.400000 +2978 3194 0.400000 +2979 55 0.400000 +2979 61 0.400000 +2979 97 0.400000 +2979 125 0.400000 +2979 130 0.400000 +2979 134 0.400000 +2979 259 0.400000 +2979 286 0.400000 +2979 306 0.400000 +2979 330 0.400000 +2979 390 0.400000 +2979 474 0.400000 +2979 500 0.400000 +2979 503 0.400000 +2979 511 0.400000 +2979 518 0.400000 +2979 584 0.400000 +2979 619 0.400000 +2979 720 0.400000 +2979 755 0.400000 +2979 762 0.400000 +2979 781 0.400000 +2979 808 0.400000 +2979 942 0.400000 +2979 962 0.400000 +2979 975 0.400000 +2979 1017 0.400000 +2979 1031 0.400000 +2979 1049 0.400000 +2979 1075 0.400000 +2979 1127 0.400000 +2979 1138 0.400000 +2979 1146 0.400000 +2979 1153 0.400000 +2979 1195 0.400000 +2979 1215 0.400000 +2979 1338 0.400000 +2979 1352 0.400000 +2979 1370 0.400000 +2979 1429 0.400000 +2979 1525 0.400000 +2979 1566 0.400000 +2979 1640 0.400000 +2979 1853 0.400000 +2979 1964 0.400000 +2979 1981 0.400000 +2979 1993 0.400000 +2979 2040 0.400000 +2979 2042 0.400000 +2979 2210 0.400000 +2979 2223 0.400000 +2979 2352 0.400000 +2979 2374 0.400000 +2979 2407 0.400000 +2979 2410 0.400000 +2979 2462 0.400000 +2979 2482 0.400000 +2979 2532 0.400000 +2979 2667 0.400000 +2979 2786 0.400000 +2979 2828 0.400000 +2979 2838 0.400000 +2979 2844 0.400000 +2979 2845 0.400000 +2979 3005 0.400000 +2979 3042 0.400000 +2979 3064 0.400000 +2979 3115 0.400000 +2979 3167 0.400000 +2980 17 0.400000 +2980 55 0.400000 +2980 82 0.400000 +2980 120 0.400000 +2980 127 0.400000 +2980 139 0.400000 +2980 156 0.400000 +2980 171 0.400000 +2980 234 0.400000 +2980 271 0.400000 +2980 282 0.400000 +2980 292 0.400000 +2980 378 0.400000 +2980 429 0.400000 +2980 499 0.400000 +2980 520 0.400000 +2980 622 0.400000 +2980 664 0.400000 +2980 687 0.400000 +2980 696 0.400000 +2980 720 0.400000 +2980 752 0.400000 +2980 814 0.400000 +2980 865 0.400000 +2980 927 0.400000 +2980 1052 0.400000 +2980 1087 0.400000 +2980 1173 0.400000 +2980 1235 0.400000 +2980 1239 0.400000 +2980 1251 0.400000 +2980 1253 0.400000 +2980 1274 0.400000 +2980 1291 0.400000 +2980 1352 0.400000 +2980 1355 0.400000 +2980 1380 0.400000 +2980 1415 0.400000 +2980 1501 0.400000 +2980 1521 0.400000 +2980 1606 0.400000 +2980 1708 0.400000 +2980 1715 0.400000 +2980 1721 0.400000 +2980 1753 0.400000 +2980 1766 0.400000 +2980 1901 0.400000 +2980 1932 0.400000 +2980 1986 0.400000 +2980 2083 0.400000 +2980 2186 0.400000 +2980 2203 0.400000 +2980 2336 0.400000 +2980 2382 0.400000 +2980 2570 0.400000 +2980 2603 0.400000 +2980 2620 0.400000 +2980 2641 0.400000 +2980 2678 0.400000 +2980 2874 0.400000 +2980 2918 0.400000 +2980 3052 0.400000 +2980 3062 0.400000 +2980 3071 0.400000 +2980 3104 0.400000 +2980 3124 0.400000 +2981 54 0.400000 +2981 138 0.400000 +2981 141 0.400000 +2981 193 0.400000 +2981 249 0.400000 +2981 264 0.400000 +2981 316 0.400000 +2981 346 0.400000 +2981 366 0.400000 +2981 369 0.400000 +2981 390 0.400000 +2981 405 0.400000 +2981 551 0.400000 +2981 556 0.400000 +2981 601 0.400000 +2981 704 0.400000 +2981 743 0.400000 +2981 744 0.400000 +2981 762 0.400000 +2981 764 0.400000 +2981 829 0.400000 +2981 956 0.400000 +2981 1001 0.400000 +2981 1191 0.400000 +2981 1211 0.400000 +2981 1254 0.400000 +2981 1391 0.400000 +2981 1400 0.400000 +2981 1468 0.400000 +2981 1562 0.400000 +2981 1573 0.400000 +2981 1666 0.400000 +2981 1765 0.400000 +2981 1776 0.400000 +2981 1811 0.400000 +2981 1816 0.400000 +2981 1905 0.400000 +2981 1924 0.400000 +2981 1930 0.400000 +2981 1987 0.400000 +2981 2055 0.400000 +2981 2119 0.400000 +2981 2157 0.400000 +2981 2196 0.400000 +2981 2236 0.400000 +2981 2237 0.400000 +2981 2248 0.400000 +2981 2275 0.400000 +2981 2291 0.400000 +2981 2295 0.400000 +2981 2324 0.400000 +2981 2406 0.400000 +2981 2424 0.400000 +2981 2479 0.400000 +2981 2484 0.400000 +2981 2487 0.400000 +2981 2585 0.400000 +2981 2614 0.400000 +2981 2816 0.400000 +2981 2989 0.400000 +2981 3078 0.400000 +2981 3115 0.400000 +2981 3162 0.400000 +2981 3163 0.400000 +2982 78 0.400000 +2982 94 0.400000 +2982 121 0.400000 +2982 133 0.400000 +2982 158 0.400000 +2982 216 0.400000 +2982 306 0.400000 +2982 403 0.400000 +2982 407 0.400000 +2982 438 0.400000 +2982 453 0.400000 +2982 498 0.400000 +2982 534 0.400000 +2982 572 0.400000 +2982 643 0.400000 +2982 683 0.400000 +2982 778 0.400000 +2982 816 0.400000 +2982 907 0.400000 +2982 934 0.400000 +2982 983 0.400000 +2982 1034 0.400000 +2982 1144 0.400000 +2982 1167 0.400000 +2982 1212 0.400000 +2982 1403 0.400000 +2982 1485 0.400000 +2982 1490 0.400000 +2982 1615 0.400000 +2982 1647 0.400000 +2982 1742 0.400000 +2982 1840 0.400000 +2982 1904 0.400000 +2982 1968 0.400000 +2982 1976 0.400000 +2982 2018 0.400000 +2982 2041 0.400000 +2982 2130 0.400000 +2982 2131 0.400000 +2982 2192 0.400000 +2982 2255 0.400000 +2982 2302 0.400000 +2982 2349 0.400000 +2982 2465 0.400000 +2982 2542 0.400000 +2982 2615 0.400000 +2982 2634 0.400000 +2982 2690 0.400000 +2982 2816 0.400000 +2982 2891 0.400000 +2982 2984 0.400000 +2982 3005 0.400000 +2982 3046 0.400000 +2983 74 0.400000 +2983 165 0.400000 +2983 166 0.400000 +2983 181 0.400000 +2983 198 0.400000 +2983 225 0.400000 +2983 227 0.400000 +2983 273 0.400000 +2983 286 0.400000 +2983 287 0.400000 +2983 344 0.400000 +2983 355 0.400000 +2983 497 0.400000 +2983 549 0.400000 +2983 582 0.400000 +2983 658 0.400000 +2983 784 0.400000 +2983 896 0.400000 +2983 1025 0.400000 +2983 1062 0.400000 +2983 1124 0.400000 +2983 1147 0.400000 +2983 1155 0.400000 +2983 1167 0.400000 +2983 1217 0.400000 +2983 1300 0.400000 +2983 1507 0.400000 +2983 1512 0.400000 +2983 1575 0.400000 +2983 1639 0.400000 +2983 1739 0.400000 +2983 1745 0.400000 +2983 1896 0.400000 +2983 1947 0.400000 +2983 1980 0.400000 +2983 2075 0.400000 +2983 2097 0.400000 +2983 2102 0.400000 +2983 2146 0.400000 +2983 2147 0.400000 +2983 2269 0.400000 +2983 2279 0.400000 +2983 2451 0.400000 +2983 2493 0.400000 +2983 2559 0.400000 +2983 2581 0.400000 +2983 2644 0.400000 +2983 2661 0.400000 +2983 2709 0.400000 +2983 2738 0.400000 +2983 2757 0.400000 +2983 2762 0.400000 +2983 2811 0.400000 +2983 2895 0.400000 +2983 2956 0.400000 +2983 3004 0.400000 +2983 3145 0.400000 +2983 3158 0.400000 +2984 34 0.400000 +2984 77 0.400000 +2984 84 0.400000 +2984 155 0.400000 +2984 166 0.400000 +2984 246 0.400000 +2984 338 0.400000 +2984 348 0.400000 +2984 526 0.400000 +2984 529 0.400000 +2984 623 0.400000 +2984 664 0.400000 +2984 714 0.400000 +2984 932 0.400000 +2984 974 0.400000 +2984 1044 0.400000 +2984 1059 0.400000 +2984 1077 0.400000 +2984 1099 0.400000 +2984 1206 0.400000 +2984 1216 0.400000 +2984 1242 0.400000 +2984 1346 0.400000 +2984 1448 0.400000 +2984 1480 0.400000 +2984 1548 0.400000 +2984 1602 0.400000 +2984 1748 0.400000 +2984 1792 0.400000 +2984 1814 0.400000 +2984 1827 0.400000 +2984 1931 0.400000 +2984 1949 0.400000 +2984 1995 0.400000 +2984 2009 0.400000 +2984 2035 0.400000 +2984 2096 0.400000 +2984 2107 0.400000 +2984 2181 0.400000 +2984 2243 0.400000 +2984 2257 0.400000 +2984 2258 0.400000 +2984 2384 0.400000 +2984 2396 0.400000 +2984 2419 0.400000 +2984 2535 0.400000 +2984 2768 0.400000 +2984 2769 0.400000 +2984 2894 0.400000 +2984 3001 0.400000 +2984 3054 0.400000 +2984 3055 0.400000 +2984 3194 0.400000 +2984 3198 0.400000 +2985 29 0.400000 +2985 32 0.400000 +2985 84 0.400000 +2985 119 0.400000 +2985 172 0.400000 +2985 258 0.400000 +2985 308 0.400000 +2985 403 0.400000 +2985 485 0.400000 +2985 534 0.400000 +2985 536 0.400000 +2985 588 0.400000 +2985 686 0.400000 +2985 765 0.400000 +2985 830 0.400000 +2985 845 0.400000 +2985 861 0.400000 +2985 915 0.400000 +2985 922 0.400000 +2985 965 0.400000 +2985 991 0.400000 +2985 993 0.400000 +2985 1020 0.400000 +2985 1022 0.400000 +2985 1024 0.400000 +2985 1059 0.400000 +2985 1064 0.400000 +2985 1129 0.400000 +2985 1170 0.400000 +2985 1188 0.400000 +2985 1231 0.400000 +2985 1298 0.400000 +2985 1305 0.400000 +2985 1316 0.400000 +2985 1329 0.400000 +2985 1384 0.400000 +2985 1391 0.400000 +2985 1411 0.400000 +2985 1445 0.400000 +2985 1457 0.400000 +2985 1467 0.400000 +2985 1511 0.400000 +2985 1531 0.400000 +2985 1555 0.400000 +2985 1587 0.400000 +2985 1652 0.400000 +2985 1701 0.400000 +2985 1843 0.400000 +2985 1844 0.400000 +2985 1852 0.400000 +2985 1855 0.400000 +2985 1950 0.400000 +2985 2062 0.400000 +2985 2100 0.400000 +2985 2131 0.400000 +2985 2225 0.400000 +2985 2272 0.400000 +2985 2289 0.400000 +2985 2298 0.400000 +2985 2308 0.400000 +2985 2320 0.400000 +2985 2352 0.400000 +2985 2573 0.400000 +2985 2582 0.400000 +2985 2638 0.400000 +2985 2658 0.400000 +2985 2661 0.400000 +2985 2664 0.400000 +2985 2699 0.400000 +2985 2707 0.400000 +2985 2735 0.400000 +2985 2749 0.400000 +2985 2803 0.400000 +2985 2828 0.400000 +2985 2837 0.400000 +2985 2861 0.400000 +2985 2871 0.400000 +2985 2899 0.400000 +2985 2935 0.400000 +2985 2944 0.400000 +2985 2977 0.400000 +2985 3088 0.400000 +2985 3110 0.400000 +2985 3152 0.400000 +2985 3196 0.400000 +2986 29 0.400000 +2986 67 0.400000 +2986 70 0.400000 +2986 80 0.400000 +2986 121 0.400000 +2986 137 0.400000 +2986 468 0.400000 +2986 490 0.400000 +2986 496 0.400000 +2986 579 0.400000 +2986 594 0.400000 +2986 653 0.400000 +2986 708 0.400000 +2986 723 0.400000 +2986 740 0.400000 +2986 821 0.400000 +2986 895 0.400000 +2986 934 0.400000 +2986 988 0.400000 +2986 1010 0.400000 +2986 1106 0.400000 +2986 1244 0.400000 +2986 1255 0.400000 +2986 1267 0.400000 +2986 1276 0.400000 +2986 1288 0.400000 +2986 1370 0.400000 +2986 1386 0.400000 +2986 1388 0.400000 +2986 1473 0.400000 +2986 1510 0.400000 +2986 1589 0.400000 +2986 1650 0.400000 +2986 1664 0.400000 +2986 1731 0.400000 +2986 1747 0.400000 +2986 1780 0.400000 +2986 1789 0.400000 +2986 1811 0.400000 +2986 1893 0.400000 +2986 1901 0.400000 +2986 1995 0.400000 +2986 2014 0.400000 +2986 2077 0.400000 +2986 2150 0.400000 +2986 2184 0.400000 +2986 2284 0.400000 +2986 2320 0.400000 +2986 2333 0.400000 +2986 2344 0.400000 +2986 2374 0.400000 +2986 2402 0.400000 +2986 2473 0.400000 +2986 2528 0.400000 +2986 2545 0.400000 +2986 2558 0.400000 +2986 2725 0.400000 +2986 2796 0.400000 +2986 2839 0.400000 +2986 2892 0.400000 +2986 2912 0.400000 +2986 3021 0.400000 +2986 3055 0.400000 +2986 3151 0.400000 +2986 3154 0.400000 +2987 4 0.400000 +2987 38 0.400000 +2987 135 0.400000 +2987 181 0.400000 +2987 246 0.400000 +2987 394 0.400000 +2987 426 0.400000 +2987 430 0.400000 +2987 437 0.400000 +2987 441 0.400000 +2987 496 0.400000 +2987 519 0.400000 +2987 584 0.400000 +2987 743 0.400000 +2987 920 0.400000 +2987 928 0.400000 +2987 963 0.400000 +2987 965 0.400000 +2987 978 0.400000 +2987 1003 0.400000 +2987 1077 0.400000 +2987 1092 0.400000 +2987 1104 0.400000 +2987 1188 0.400000 +2987 1190 0.400000 +2987 1264 0.400000 +2987 1341 0.400000 +2987 1378 0.400000 +2987 1416 0.400000 +2987 1488 0.400000 +2987 1489 0.400000 +2987 1526 0.400000 +2987 1534 0.400000 +2987 1558 0.400000 +2987 1562 0.400000 +2987 1594 0.400000 +2987 1636 0.400000 +2987 1651 0.400000 +2987 1684 0.400000 +2987 1728 0.400000 +2987 1750 0.400000 +2987 1813 0.400000 +2987 1817 0.400000 +2987 1903 0.400000 +2987 2003 0.400000 +2987 2025 0.400000 +2987 2101 0.400000 +2987 2208 0.400000 +2987 2277 0.400000 +2987 2351 0.400000 +2987 2390 0.400000 +2987 2397 0.400000 +2987 2400 0.400000 +2987 2423 0.400000 +2987 2451 0.400000 +2987 2456 0.400000 +2987 2481 0.400000 +2987 2483 0.400000 +2987 2586 0.400000 +2987 2699 0.400000 +2987 2724 0.400000 +2987 2737 0.400000 +2987 2746 0.400000 +2987 2798 0.400000 +2987 2853 0.400000 +2987 2907 0.400000 +2987 2947 0.400000 +2987 2991 0.400000 +2987 2995 0.400000 +2987 3011 0.400000 +2987 3084 0.400000 +2987 3101 0.400000 +2988 54 0.400000 +2988 96 0.400000 +2988 104 0.400000 +2988 110 0.400000 +2988 119 0.400000 +2988 131 0.400000 +2988 295 0.400000 +2988 301 0.400000 +2988 303 0.400000 +2988 335 0.400000 +2988 377 0.400000 +2988 402 0.400000 +2988 430 0.400000 +2988 431 0.400000 +2988 451 0.400000 +2988 475 0.400000 +2988 534 0.400000 +2988 554 0.400000 +2988 566 0.400000 +2988 641 0.400000 +2988 649 0.400000 +2988 694 0.400000 +2988 717 0.400000 +2988 722 0.400000 +2988 941 0.400000 +2988 1010 0.400000 +2988 1043 0.400000 +2988 1061 0.400000 +2988 1242 0.400000 +2988 1284 0.400000 +2988 1360 0.400000 +2988 1400 0.400000 +2988 1480 0.400000 +2988 1514 0.400000 +2988 1524 0.400000 +2988 1624 0.400000 +2988 1645 0.400000 +2988 1650 0.400000 +2988 1874 0.400000 +2988 1878 0.400000 +2988 1938 0.400000 +2988 2001 0.400000 +2988 2039 0.400000 +2988 2117 0.400000 +2988 2142 0.400000 +2988 2228 0.400000 +2988 2286 0.400000 +2988 2340 0.400000 +2988 2360 0.400000 +2988 2380 0.400000 +2988 2444 0.400000 +2988 2453 0.400000 +2988 2528 0.400000 +2988 2546 0.400000 +2988 2768 0.400000 +2988 2936 0.400000 +2988 2950 0.400000 +2988 2998 0.400000 +2988 3068 0.400000 +2988 3177 0.400000 +2988 3190 0.400000 +2989 15 0.400000 +2989 41 0.400000 +2989 114 0.400000 +2989 124 0.400000 +2989 131 0.400000 +2989 265 0.400000 +2989 268 0.400000 +2989 325 0.400000 +2989 347 0.400000 +2989 359 0.400000 +2989 378 0.400000 +2989 390 0.400000 +2989 432 0.400000 +2989 460 0.400000 +2989 499 0.400000 +2989 533 0.400000 +2989 536 0.400000 +2989 634 0.400000 +2989 636 0.400000 +2989 705 0.400000 +2989 745 0.400000 +2989 828 0.400000 +2989 866 0.400000 +2989 942 0.400000 +2989 1070 0.400000 +2989 1099 0.400000 +2989 1138 0.400000 +2989 1162 0.400000 +2989 1208 0.400000 +2989 1360 0.400000 +2989 1411 0.400000 +2989 1505 0.400000 +2989 1541 0.400000 +2989 1543 0.400000 +2989 1555 0.400000 +2989 1641 0.400000 +2989 1709 0.400000 +2989 1794 0.400000 +2989 1862 0.400000 +2989 1881 0.400000 +2989 1913 0.400000 +2989 1927 0.400000 +2989 1976 0.400000 +2989 1999 0.400000 +2989 2072 0.400000 +2989 2258 0.400000 +2989 2279 0.400000 +2989 2325 0.400000 +2989 2348 0.400000 +2989 2370 0.400000 +2989 2372 0.400000 +2989 2394 0.400000 +2989 2470 0.400000 +2989 2474 0.400000 +2989 2522 0.400000 +2989 2561 0.400000 +2989 2738 0.400000 +2989 2752 0.400000 +2989 2809 0.400000 +2989 2810 0.400000 +2989 2824 0.400000 +2989 2859 0.400000 +2989 2937 0.400000 +2989 2942 0.400000 +2989 2959 0.400000 +2989 3006 0.400000 +2989 3034 0.400000 +2989 3109 0.400000 +2989 3135 0.400000 +2989 3137 0.400000 +2989 3158 0.400000 +2989 3166 0.400000 +2989 3179 0.400000 +2990 51 0.400000 +2990 63 0.400000 +2990 89 0.400000 +2990 112 0.400000 +2990 160 0.400000 +2990 203 0.400000 +2990 237 0.400000 +2990 259 0.400000 +2990 302 0.400000 +2990 307 0.400000 +2990 347 0.400000 +2990 469 0.400000 +2990 528 0.400000 +2990 621 0.400000 +2990 708 0.400000 +2990 718 0.400000 +2990 730 0.400000 +2990 766 0.400000 +2990 786 0.400000 +2990 829 0.400000 +2990 848 0.400000 +2990 898 0.400000 +2990 958 0.400000 +2990 1091 0.400000 +2990 1121 0.400000 +2990 1156 0.400000 +2990 1194 0.400000 +2990 1228 0.400000 +2990 1233 0.400000 +2990 1248 0.400000 +2990 1331 0.400000 +2990 1334 0.400000 +2990 1344 0.400000 +2990 1445 0.400000 +2990 1446 0.400000 +2990 1484 0.400000 +2990 1618 0.400000 +2990 1652 0.400000 +2990 1655 0.400000 +2990 1666 0.400000 +2990 1748 0.400000 +2990 1839 0.400000 +2990 1874 0.400000 +2990 1902 0.400000 +2990 1952 0.400000 +2990 2008 0.400000 +2990 2255 0.400000 +2990 2329 0.400000 +2990 2340 0.400000 +2990 2399 0.400000 +2990 2427 0.400000 +2990 2510 0.400000 +2990 2533 0.400000 +2990 2657 0.400000 +2990 2692 0.400000 +2990 2725 0.400000 +2990 2819 0.400000 +2990 2849 0.400000 +2990 2893 0.400000 +2990 2918 0.400000 +2990 2964 0.400000 +2990 2975 0.400000 +2990 3186 0.400000 +2991 15 0.400000 +2991 62 0.400000 +2991 120 0.400000 +2991 156 0.400000 +2991 158 0.400000 +2991 167 0.400000 +2991 220 0.400000 +2991 225 0.400000 +2991 268 0.400000 +2991 324 0.400000 +2991 380 0.400000 +2991 386 0.400000 +2991 407 0.400000 +2991 411 0.400000 +2991 451 0.400000 +2991 453 0.400000 +2991 466 0.400000 +2991 554 0.400000 +2991 584 0.400000 +2991 641 0.400000 +2991 648 0.400000 +2991 671 0.400000 +2991 709 0.400000 +2991 858 0.400000 +2991 890 0.400000 +2991 981 0.400000 +2991 1028 0.400000 +2991 1084 0.400000 +2991 1175 0.400000 +2991 1200 0.400000 +2991 1202 0.400000 +2991 1345 0.400000 +2991 1374 0.400000 +2991 1479 0.400000 +2991 1518 0.400000 +2991 1521 0.400000 +2991 1533 0.400000 +2991 1658 0.400000 +2991 1747 0.400000 +2991 1813 0.400000 +2991 1831 0.400000 +2991 1915 0.400000 +2991 1953 0.400000 +2991 2060 0.400000 +2991 2198 0.400000 +2991 2210 0.400000 +2991 2219 0.400000 +2991 2255 0.400000 +2991 2300 0.400000 +2991 2319 0.400000 +2991 2400 0.400000 +2991 2447 0.400000 +2991 2477 0.400000 +2991 2507 0.400000 +2991 2651 0.400000 +2991 2668 0.400000 +2991 2857 0.400000 +2991 2884 0.400000 +2991 3040 0.400000 +2991 3058 0.400000 +2991 3067 0.400000 +2991 3174 0.400000 +2992 4 0.400000 +2992 68 0.400000 +2992 112 0.400000 +2992 147 0.400000 +2992 204 0.400000 +2992 220 0.400000 +2992 281 0.400000 +2992 292 0.400000 +2992 376 0.400000 +2992 411 0.400000 +2992 430 0.400000 +2992 433 0.400000 +2992 534 0.400000 +2992 538 0.400000 +2992 539 0.400000 +2992 613 0.400000 +2992 623 0.400000 +2992 668 0.400000 +2992 802 0.400000 +2992 803 0.400000 +2992 809 0.400000 +2992 877 0.400000 +2992 902 0.400000 +2992 987 0.400000 +2992 1049 0.400000 +2992 1544 0.400000 +2992 1583 0.400000 +2992 1610 0.400000 +2992 1734 0.400000 +2992 1755 0.400000 +2992 1793 0.400000 +2992 1794 0.400000 +2992 1871 0.400000 +2992 1881 0.400000 +2992 1914 0.400000 +2992 2066 0.400000 +2992 2107 0.400000 +2992 2191 0.400000 +2992 2228 0.400000 +2992 2266 0.400000 +2992 2276 0.400000 +2992 2283 0.400000 +2992 2324 0.400000 +2992 2386 0.400000 +2992 2387 0.400000 +2992 2433 0.400000 +2992 2435 0.400000 +2992 2449 0.400000 +2992 2746 0.400000 +2992 3035 0.400000 +2992 3119 0.400000 +2993 3 0.400000 +2993 44 0.400000 +2993 79 0.400000 +2993 108 0.400000 +2993 194 0.400000 +2993 333 0.400000 +2993 352 0.400000 +2993 363 0.400000 +2993 465 0.400000 +2993 485 0.400000 +2993 500 0.400000 +2993 506 0.400000 +2993 519 0.400000 +2993 629 0.400000 +2993 661 0.400000 +2993 682 0.400000 +2993 696 0.400000 +2993 720 0.400000 +2993 739 0.400000 +2993 801 0.400000 +2993 916 0.400000 +2993 922 0.400000 +2993 939 0.400000 +2993 1005 0.400000 +2993 1008 0.400000 +2993 1034 0.400000 +2993 1113 0.400000 +2993 1148 0.400000 +2993 1236 0.400000 +2993 1287 0.400000 +2993 1293 0.400000 +2993 1332 0.400000 +2993 1333 0.400000 +2993 1365 0.400000 +2993 1396 0.400000 +2993 1443 0.400000 +2993 1482 0.400000 +2993 1642 0.400000 +2993 1708 0.400000 +2993 1713 0.400000 +2993 1830 0.400000 +2993 1841 0.400000 +2993 1904 0.400000 +2993 1954 0.400000 +2993 1956 0.400000 +2993 2032 0.400000 +2993 2091 0.400000 +2993 2104 0.400000 +2993 2116 0.400000 +2993 2138 0.400000 +2993 2154 0.400000 +2993 2217 0.400000 +2993 2265 0.400000 +2993 2323 0.400000 +2993 2364 0.400000 +2993 2381 0.400000 +2993 2383 0.400000 +2993 2391 0.400000 +2993 2485 0.400000 +2993 2735 0.400000 +2993 2750 0.400000 +2993 2856 0.400000 +2993 2904 0.400000 +2993 2953 0.400000 +2993 3002 0.400000 +2993 3054 0.400000 +2994 157 0.400000 +2994 294 0.400000 +2994 319 0.400000 +2994 350 0.400000 +2994 372 0.400000 +2994 485 0.400000 +2994 520 0.400000 +2994 532 0.400000 +2994 538 0.400000 +2994 551 0.400000 +2994 626 0.400000 +2994 684 0.400000 +2994 744 0.400000 +2994 844 0.400000 +2994 862 0.400000 +2994 1076 0.400000 +2994 1104 0.400000 +2994 1142 0.400000 +2994 1222 0.400000 +2994 1270 0.400000 +2994 1430 0.400000 +2994 1517 0.400000 +2994 1644 0.400000 +2994 1676 0.400000 +2994 1679 0.400000 +2994 1691 0.400000 +2994 1831 0.400000 +2994 1874 0.400000 +2994 1890 0.400000 +2994 2041 0.400000 +2994 2054 0.400000 +2994 2145 0.400000 +2994 2303 0.400000 +2994 2313 0.400000 +2994 2442 0.400000 +2994 2453 0.400000 +2994 2479 0.400000 +2994 2537 0.400000 +2994 2554 0.400000 +2994 2573 0.400000 +2994 2618 0.400000 +2994 2746 0.400000 +2994 2774 0.400000 +2994 2790 0.400000 +2994 2886 0.400000 +2994 2889 0.400000 +2994 2956 0.400000 +2995 52 0.400000 +2995 62 0.400000 +2995 64 0.400000 +2995 171 0.400000 +2995 183 0.400000 +2995 184 0.400000 +2995 244 0.400000 +2995 262 0.400000 +2995 281 0.400000 +2995 372 0.400000 +2995 414 0.400000 +2995 428 0.400000 +2995 439 0.400000 +2995 449 0.400000 +2995 494 0.400000 +2995 542 0.400000 +2995 544 0.400000 +2995 633 0.400000 +2995 638 0.400000 +2995 653 0.400000 +2995 757 0.400000 +2995 900 0.400000 +2995 969 0.400000 +2995 1020 0.400000 +2995 1074 0.400000 +2995 1142 0.400000 +2995 1255 0.400000 +2995 1296 0.400000 +2995 1385 0.400000 +2995 1397 0.400000 +2995 1424 0.400000 +2995 1447 0.400000 +2995 1461 0.400000 +2995 1547 0.400000 +2995 1554 0.400000 +2995 1562 0.400000 +2995 1563 0.400000 +2995 1606 0.400000 +2995 1666 0.400000 +2995 1711 0.400000 +2995 1718 0.400000 +2995 1745 0.400000 +2995 1761 0.400000 +2995 1845 0.400000 +2995 1903 0.400000 +2995 1925 0.400000 +2995 1936 0.400000 +2995 1937 0.400000 +2995 2046 0.400000 +2995 2091 0.400000 +2995 2115 0.400000 +2995 2184 0.400000 +2995 2243 0.400000 +2995 2298 0.400000 +2995 2302 0.400000 +2995 2306 0.400000 +2995 2330 0.400000 +2995 2335 0.400000 +2995 2337 0.400000 +2995 2407 0.400000 +2995 2416 0.400000 +2995 2480 0.400000 +2995 2504 0.400000 +2995 2589 0.400000 +2995 2624 0.400000 +2995 2660 0.400000 +2995 2685 0.400000 +2995 2719 0.400000 +2995 2737 0.400000 +2995 2753 0.400000 +2995 2760 0.400000 +2995 2787 0.400000 +2995 2860 0.400000 +2995 2861 0.400000 +2995 2862 0.400000 +2995 2949 0.400000 +2995 2984 0.400000 +2995 3042 0.400000 +2995 3155 0.400000 +2996 55 0.400000 +2996 173 0.400000 +2996 382 0.400000 +2996 469 0.400000 +2996 494 0.400000 +2996 541 0.400000 +2996 543 0.400000 +2996 548 0.400000 +2996 580 0.400000 +2996 729 0.400000 +2996 766 0.400000 +2996 768 0.400000 +2996 777 0.400000 +2996 791 0.400000 +2996 806 0.400000 +2996 888 0.400000 +2996 911 0.400000 +2996 946 0.400000 +2996 958 0.400000 +2996 1004 0.400000 +2996 1080 0.400000 +2996 1279 0.400000 +2996 1310 0.400000 +2996 1370 0.400000 +2996 1423 0.400000 +2996 1474 0.400000 +2996 1485 0.400000 +2996 1495 0.400000 +2996 1518 0.400000 +2996 1530 0.400000 +2996 1552 0.400000 +2996 1578 0.400000 +2996 1588 0.400000 +2996 1595 0.400000 +2996 1597 0.400000 +2996 1655 0.400000 +2996 1679 0.400000 +2996 1776 0.400000 +2996 1853 0.400000 +2996 1882 0.400000 +2996 1919 0.400000 +2996 1947 0.400000 +2996 1976 0.400000 +2996 1991 0.400000 +2996 2041 0.400000 +2996 2054 0.400000 +2996 2164 0.400000 +2996 2207 0.400000 +2996 2258 0.400000 +2996 2316 0.400000 +2996 2429 0.400000 +2996 2448 0.400000 +2996 2504 0.400000 +2996 2507 0.400000 +2996 2596 0.400000 +2996 2627 0.400000 +2996 2636 0.400000 +2996 2668 0.400000 +2996 2679 0.400000 +2996 2733 0.400000 +2996 2844 0.400000 +2996 2911 0.400000 +2996 2927 0.400000 +2996 3060 0.400000 +2996 3158 0.400000 +2997 146 0.400000 +2997 221 0.400000 +2997 231 0.400000 +2997 233 0.400000 +2997 289 0.400000 +2997 340 0.400000 +2997 358 0.400000 +2997 388 0.400000 +2997 425 0.400000 +2997 441 0.400000 +2997 536 0.400000 +2997 543 0.400000 +2997 574 0.400000 +2997 683 0.400000 +2997 703 0.400000 +2997 709 0.400000 +2997 720 0.400000 +2997 745 0.400000 +2997 769 0.400000 +2997 799 0.400000 +2997 868 0.400000 +2997 899 0.400000 +2997 957 0.400000 +2997 1016 0.400000 +2997 1118 0.400000 +2997 1180 0.400000 +2997 1204 0.400000 +2997 1241 0.400000 +2997 1289 0.400000 +2997 1291 0.400000 +2997 1329 0.400000 +2997 1348 0.400000 +2997 1376 0.400000 +2997 1405 0.400000 +2997 1462 0.400000 +2997 1572 0.400000 +2997 1590 0.400000 +2997 1636 0.400000 +2997 1658 0.400000 +2997 1672 0.400000 +2997 1830 0.400000 +2997 1876 0.400000 +2997 1903 0.400000 +2997 1928 0.400000 +2997 1967 0.400000 +2997 1974 0.400000 +2997 2039 0.400000 +2997 2153 0.400000 +2997 2182 0.400000 +2997 2232 0.400000 +2997 2312 0.400000 +2997 2329 0.400000 +2997 2435 0.400000 +2997 2620 0.400000 +2997 2680 0.400000 +2997 2731 0.400000 +2997 2732 0.400000 +2997 2753 0.400000 +2997 2778 0.400000 +2997 2793 0.400000 +2997 2858 0.400000 +2997 2882 0.400000 +2997 2889 0.400000 +2997 2899 0.400000 +2997 2902 0.400000 +2997 2933 0.400000 +2997 3015 0.400000 +2997 3036 0.400000 +2997 3096 0.400000 +2997 3107 0.400000 +2997 3158 0.400000 +2998 39 0.400000 +2998 41 0.400000 +2998 66 0.400000 +2998 85 0.400000 +2998 105 0.400000 +2998 210 0.400000 +2998 251 0.400000 +2998 356 0.400000 +2998 376 0.400000 +2998 433 0.400000 +2998 436 0.400000 +2998 456 0.400000 +2998 478 0.400000 +2998 487 0.400000 +2998 510 0.400000 +2998 536 0.400000 +2998 640 0.400000 +2998 704 0.400000 +2998 724 0.400000 +2998 765 0.400000 +2998 852 0.400000 +2998 867 0.400000 +2998 905 0.400000 +2998 908 0.400000 +2998 1073 0.400000 +2998 1113 0.400000 +2998 1174 0.400000 +2998 1289 0.400000 +2998 1303 0.400000 +2998 1361 0.400000 +2998 1381 0.400000 +2998 1408 0.400000 +2998 1653 0.400000 +2998 1683 0.400000 +2998 1832 0.400000 +2998 1835 0.400000 +2998 1899 0.400000 +2998 1912 0.400000 +2998 1934 0.400000 +2998 2167 0.400000 +2998 2224 0.400000 +2998 2309 0.400000 +2998 2348 0.400000 +2998 2356 0.400000 +2998 2514 0.400000 +2998 2535 0.400000 +2998 2538 0.400000 +2998 2565 0.400000 +2998 2597 0.400000 +2998 2616 0.400000 +2998 2625 0.400000 +2998 2632 0.400000 +2998 2714 0.400000 +2998 2804 0.400000 +2998 2830 0.400000 +2998 2833 0.400000 +2998 2837 0.400000 +2998 2839 0.400000 +2998 2896 0.400000 +2998 3054 0.400000 +2998 3140 0.400000 +2999 145 0.400000 +2999 199 0.400000 +2999 220 0.400000 +2999 251 0.400000 +2999 267 0.400000 +2999 334 0.400000 +2999 365 0.400000 +2999 401 0.400000 +2999 527 0.400000 +2999 556 0.400000 +2999 614 0.400000 +2999 616 0.400000 +2999 636 0.400000 +2999 638 0.400000 +2999 639 0.400000 +2999 719 0.400000 +2999 770 0.400000 +2999 793 0.400000 +2999 892 0.400000 +2999 950 0.400000 +2999 975 0.400000 +2999 1057 0.400000 +2999 1109 0.400000 +2999 1210 0.400000 +2999 1329 0.400000 +2999 1554 0.400000 +2999 1737 0.400000 +2999 1803 0.400000 +2999 1843 0.400000 +2999 1974 0.400000 +2999 1981 0.400000 +2999 2058 0.400000 +2999 2126 0.400000 +2999 2183 0.400000 +2999 2203 0.400000 +2999 2230 0.400000 +2999 2261 0.400000 +2999 2335 0.400000 +2999 2388 0.400000 +2999 2410 0.400000 +2999 2442 0.400000 +2999 2483 0.400000 +2999 2490 0.400000 +2999 2496 0.400000 +2999 2586 0.400000 +2999 2637 0.400000 +2999 2667 0.400000 +2999 2680 0.400000 +2999 2708 0.400000 +2999 2750 0.400000 +2999 3127 0.400000 +3000 123 0.400000 +3000 147 0.400000 +3000 212 0.400000 +3000 274 0.400000 +3000 358 0.400000 +3000 432 0.400000 +3000 532 0.400000 +3000 554 0.400000 +3000 578 0.400000 +3000 694 0.400000 +3000 927 0.400000 +3000 996 0.400000 +3000 1039 0.400000 +3000 1118 0.400000 +3000 1155 0.400000 +3000 1183 0.400000 +3000 1405 0.400000 +3000 1428 0.400000 +3000 1451 0.400000 +3000 1532 0.400000 +3000 1592 0.400000 +3000 1664 0.400000 +3000 1676 0.400000 +3000 1690 0.400000 +3000 1729 0.400000 +3000 1778 0.400000 +3000 1861 0.400000 +3000 1914 0.400000 +3000 1938 0.400000 +3000 2130 0.400000 +3000 2143 0.400000 +3000 2175 0.400000 +3000 2192 0.400000 +3000 2254 0.400000 +3000 2281 0.400000 +3000 2326 0.400000 +3000 2367 0.400000 +3000 2383 0.400000 +3000 2395 0.400000 +3000 2423 0.400000 +3000 2431 0.400000 +3000 2442 0.400000 +3000 2469 0.400000 +3000 2639 0.400000 +3000 2642 0.400000 +3000 2697 0.400000 +3000 2713 0.400000 +3000 2743 0.400000 +3000 2821 0.400000 +3000 2865 0.400000 +3000 2907 0.400000 +3000 2991 0.400000 +3000 2995 0.400000 +3000 3012 0.400000 +3000 3054 0.400000 +3000 3085 0.400000 +3001 24 0.400000 +3001 64 0.400000 +3001 90 0.400000 +3001 97 0.400000 +3001 111 0.400000 +3001 172 0.400000 +3001 174 0.400000 +3001 306 0.400000 +3001 402 0.400000 +3001 425 0.400000 +3001 456 0.400000 +3001 457 0.400000 +3001 583 0.400000 +3001 592 0.400000 +3001 613 0.400000 +3001 665 0.400000 +3001 741 0.400000 +3001 861 0.400000 +3001 891 0.400000 +3001 914 0.400000 +3001 942 0.400000 +3001 954 0.400000 +3001 1019 0.400000 +3001 1074 0.400000 +3001 1085 0.400000 +3001 1123 0.400000 +3001 1209 0.400000 +3001 1212 0.400000 +3001 1234 0.400000 +3001 1241 0.400000 +3001 1323 0.400000 +3001 1406 0.400000 +3001 1415 0.400000 +3001 1441 0.400000 +3001 1474 0.400000 +3001 1482 0.400000 +3001 1503 0.400000 +3001 1514 0.400000 +3001 1530 0.400000 +3001 1611 0.400000 +3001 1635 0.400000 +3001 1662 0.400000 +3001 1680 0.400000 +3001 1681 0.400000 +3001 1682 0.400000 +3001 1752 0.400000 +3001 1844 0.400000 +3001 1921 0.400000 +3001 1923 0.400000 +3001 1976 0.400000 +3001 2001 0.400000 +3001 2002 0.400000 +3001 2136 0.400000 +3001 2229 0.400000 +3001 2288 0.400000 +3001 2320 0.400000 +3001 2357 0.400000 +3001 2392 0.400000 +3001 2422 0.400000 +3001 2443 0.400000 +3001 2461 0.400000 +3001 2466 0.400000 +3001 2474 0.400000 +3001 2480 0.400000 +3001 2532 0.400000 +3001 2644 0.400000 +3001 2698 0.400000 +3001 2817 0.400000 +3001 2858 0.400000 +3001 2867 0.400000 +3001 2922 0.400000 +3001 2935 0.400000 +3001 2948 0.400000 +3001 2982 0.400000 +3001 3023 0.400000 +3001 3032 0.400000 +3001 3062 0.400000 +3001 3085 0.400000 +3001 3149 0.400000 +3001 3156 0.400000 +3002 23 0.400000 +3002 60 0.400000 +3002 63 0.400000 +3002 83 0.400000 +3002 131 0.400000 +3002 200 0.400000 +3002 250 0.400000 +3002 354 0.400000 +3002 469 0.400000 +3002 519 0.400000 +3002 607 0.400000 +3002 729 0.400000 +3002 737 0.400000 +3002 740 0.400000 +3002 748 0.400000 +3002 788 0.400000 +3002 902 0.400000 +3002 965 0.400000 +3002 971 0.400000 +3002 987 0.400000 +3002 1022 0.400000 +3002 1047 0.400000 +3002 1123 0.400000 +3002 1185 0.400000 +3002 1204 0.400000 +3002 1257 0.400000 +3002 1272 0.400000 +3002 1377 0.400000 +3002 1431 0.400000 +3002 1491 0.400000 +3002 1542 0.400000 +3002 1584 0.400000 +3002 1737 0.400000 +3002 1742 0.400000 +3002 1757 0.400000 +3002 1819 0.400000 +3002 1827 0.400000 +3002 1830 0.400000 +3002 1846 0.400000 +3002 1852 0.400000 +3002 1862 0.400000 +3002 1884 0.400000 +3002 1945 0.400000 +3002 1959 0.400000 +3002 1998 0.400000 +3002 2039 0.400000 +3002 2055 0.400000 +3002 2058 0.400000 +3002 2067 0.400000 +3002 2069 0.400000 +3002 2083 0.400000 +3002 2160 0.400000 +3002 2171 0.400000 +3002 2198 0.400000 +3002 2232 0.400000 +3002 2262 0.400000 +3002 2313 0.400000 +3002 2392 0.400000 +3002 2405 0.400000 +3002 2557 0.400000 +3002 2560 0.400000 +3002 2604 0.400000 +3002 2680 0.400000 +3002 2704 0.400000 +3002 2813 0.400000 +3002 2848 0.400000 +3002 2930 0.400000 +3002 2997 0.400000 +3002 3010 0.400000 +3002 3017 0.400000 +3002 3034 0.400000 +3002 3107 0.400000 +3002 3152 0.400000 +3002 3158 0.400000 +3003 18 0.400000 +3003 80 0.400000 +3003 113 0.400000 +3003 229 0.400000 +3003 234 0.400000 +3003 280 0.400000 +3003 283 0.400000 +3003 324 0.400000 +3003 354 0.400000 +3003 374 0.400000 +3003 433 0.400000 +3003 447 0.400000 +3003 456 0.400000 +3003 529 0.400000 +3003 545 0.400000 +3003 693 0.400000 +3003 715 0.400000 +3003 783 0.400000 +3003 870 0.400000 +3003 883 0.400000 +3003 896 0.400000 +3003 899 0.400000 +3003 957 0.400000 +3003 966 0.400000 +3003 970 0.400000 +3003 1003 0.400000 +3003 1089 0.400000 +3003 1090 0.400000 +3003 1157 0.400000 +3003 1179 0.400000 +3003 1188 0.400000 +3003 1265 0.400000 +3003 1349 0.400000 +3003 1350 0.400000 +3003 1366 0.400000 +3003 1396 0.400000 +3003 1430 0.400000 +3003 1493 0.400000 +3003 1644 0.400000 +3003 1776 0.400000 +3003 1795 0.400000 +3003 1863 0.400000 +3003 1957 0.400000 +3003 2160 0.400000 +3003 2279 0.400000 +3003 2366 0.400000 +3003 2386 0.400000 +3003 2420 0.400000 +3003 2459 0.400000 +3003 2471 0.400000 +3003 2483 0.400000 +3003 2501 0.400000 +3003 2506 0.400000 +3003 2561 0.400000 +3003 2567 0.400000 +3003 2608 0.400000 +3003 2616 0.400000 +3003 2646 0.400000 +3003 2702 0.400000 +3003 2778 0.400000 +3003 2851 0.400000 +3003 2894 0.400000 +3003 2910 0.400000 +3003 2934 0.400000 +3003 2945 0.400000 +3003 2972 0.400000 +3003 3052 0.400000 +3003 3115 0.400000 +3003 3120 0.400000 +3003 3143 0.400000 +3004 11 0.400000 +3004 17 0.400000 +3004 108 0.400000 +3004 147 0.400000 +3004 166 0.400000 +3004 217 0.400000 +3004 356 0.400000 +3004 396 0.400000 +3004 432 0.400000 +3004 434 0.400000 +3004 510 0.400000 +3004 514 0.400000 +3004 592 0.400000 +3004 608 0.400000 +3004 804 0.400000 +3004 814 0.400000 +3004 827 0.400000 +3004 999 0.400000 +3004 1017 0.400000 +3004 1059 0.400000 +3004 1077 0.400000 +3004 1129 0.400000 +3004 1183 0.400000 +3004 1237 0.400000 +3004 1374 0.400000 +3004 1396 0.400000 +3004 1415 0.400000 +3004 1435 0.400000 +3004 1481 0.400000 +3004 1530 0.400000 +3004 1766 0.400000 +3004 1932 0.400000 +3004 1948 0.400000 +3004 2015 0.400000 +3004 2094 0.400000 +3004 2111 0.400000 +3004 2205 0.400000 +3004 2231 0.400000 +3004 2282 0.400000 +3004 2366 0.400000 +3004 2468 0.400000 +3004 2469 0.400000 +3004 2491 0.400000 +3004 2494 0.400000 +3004 2508 0.400000 +3004 2539 0.400000 +3004 2562 0.400000 +3004 2630 0.400000 +3004 2774 0.400000 +3004 2873 0.400000 +3004 2901 0.400000 +3004 2907 0.400000 +3004 2931 0.400000 +3004 2993 0.400000 +3004 2999 0.400000 +3004 3010 0.400000 +3004 3031 0.400000 +3004 3068 0.400000 +3004 3112 0.400000 +3004 3116 0.400000 +3004 3122 0.400000 +3004 3131 0.400000 +3004 3142 0.400000 +3004 3164 0.400000 +3005 95 0.400000 +3005 101 0.400000 +3005 143 0.400000 +3005 153 0.400000 +3005 157 0.400000 +3005 189 0.400000 +3005 278 0.400000 +3005 312 0.400000 +3005 319 0.400000 +3005 366 0.400000 +3005 408 0.400000 +3005 410 0.400000 +3005 444 0.400000 +3005 587 0.400000 +3005 611 0.400000 +3005 613 0.400000 +3005 636 0.400000 +3005 688 0.400000 +3005 847 0.400000 +3005 1002 0.400000 +3005 1014 0.400000 +3005 1106 0.400000 +3005 1126 0.400000 +3005 1135 0.400000 +3005 1177 0.400000 +3005 1238 0.400000 +3005 1269 0.400000 +3005 1290 0.400000 +3005 1306 0.400000 +3005 1344 0.400000 +3005 1355 0.400000 +3005 1432 0.400000 +3005 1460 0.400000 +3005 1489 0.400000 +3005 1625 0.400000 +3005 1626 0.400000 +3005 1651 0.400000 +3005 1742 0.400000 +3005 1750 0.400000 +3005 1765 0.400000 +3005 1788 0.400000 +3005 1829 0.400000 +3005 1988 0.400000 +3005 2021 0.400000 +3005 2103 0.400000 +3005 2179 0.400000 +3005 2187 0.400000 +3005 2251 0.400000 +3005 2299 0.400000 +3005 2328 0.400000 +3005 2382 0.400000 +3005 2399 0.400000 +3005 2400 0.400000 +3005 2548 0.400000 +3005 2677 0.400000 +3005 2700 0.400000 +3005 2710 0.400000 +3005 2740 0.400000 +3005 2932 0.400000 +3005 2964 0.400000 +3005 2969 0.400000 +3005 3071 0.400000 +3005 3098 0.400000 +3005 3166 0.400000 +3005 3171 0.400000 +3005 3183 0.400000 +3006 79 0.400000 +3006 104 0.400000 +3006 170 0.400000 +3006 258 0.400000 +3006 290 0.400000 +3006 301 0.400000 +3006 316 0.400000 +3006 362 0.400000 +3006 453 0.400000 +3006 470 0.400000 +3006 563 0.400000 +3006 650 0.400000 +3006 761 0.400000 +3006 862 0.400000 +3006 909 0.400000 +3006 992 0.400000 +3006 1004 0.400000 +3006 1153 0.400000 +3006 1185 0.400000 +3006 1212 0.400000 +3006 1237 0.400000 +3006 1309 0.400000 +3006 1335 0.400000 +3006 1442 0.400000 +3006 1477 0.400000 +3006 1618 0.400000 +3006 1722 0.400000 +3006 1778 0.400000 +3006 1905 0.400000 +3006 1971 0.400000 +3006 2009 0.400000 +3006 2037 0.400000 +3006 2096 0.400000 +3006 2109 0.400000 +3006 2112 0.400000 +3006 2123 0.400000 +3006 2130 0.400000 +3006 2166 0.400000 +3006 2224 0.400000 +3006 2292 0.400000 +3006 2318 0.400000 +3006 2367 0.400000 +3006 2408 0.400000 +3006 2429 0.400000 +3006 2460 0.400000 +3006 2469 0.400000 +3006 2559 0.400000 +3006 2578 0.400000 +3006 2594 0.400000 +3006 2611 0.400000 +3006 2626 0.400000 +3006 2643 0.400000 +3006 2658 0.400000 +3006 2693 0.400000 +3006 2694 0.400000 +3006 2718 0.400000 +3006 2847 0.400000 +3006 2940 0.400000 +3006 2949 0.400000 +3006 2953 0.400000 +3006 2960 0.400000 +3006 3012 0.400000 +3006 3048 0.400000 +3006 3122 0.400000 +3006 3164 0.400000 +3007 106 0.400000 +3007 165 0.400000 +3007 375 0.400000 +3007 462 0.400000 +3007 487 0.400000 +3007 509 0.400000 +3007 545 0.400000 +3007 669 0.400000 +3007 703 0.400000 +3007 784 0.400000 +3007 840 0.400000 +3007 859 0.400000 +3007 868 0.400000 +3007 883 0.400000 +3007 912 0.400000 +3007 1010 0.400000 +3007 1041 0.400000 +3007 1053 0.400000 +3007 1096 0.400000 +3007 1104 0.400000 +3007 1143 0.400000 +3007 1196 0.400000 +3007 1227 0.400000 +3007 1252 0.400000 +3007 1269 0.400000 +3007 1277 0.400000 +3007 1379 0.400000 +3007 1472 0.400000 +3007 1477 0.400000 +3007 1492 0.400000 +3007 1504 0.400000 +3007 1536 0.400000 +3007 1589 0.400000 +3007 1649 0.400000 +3007 1677 0.400000 +3007 1766 0.400000 +3007 1807 0.400000 +3007 1832 0.400000 +3007 1899 0.400000 +3007 1915 0.400000 +3007 1935 0.400000 +3007 1936 0.400000 +3007 1945 0.400000 +3007 2016 0.400000 +3007 2017 0.400000 +3007 2059 0.400000 +3007 2116 0.400000 +3007 2123 0.400000 +3007 2158 0.400000 +3007 2211 0.400000 +3007 2230 0.400000 +3007 2374 0.400000 +3007 2381 0.400000 +3007 2437 0.400000 +3007 2469 0.400000 +3007 2548 0.400000 +3007 2578 0.400000 +3007 2585 0.400000 +3007 2596 0.400000 +3007 2691 0.400000 +3007 2700 0.400000 +3007 2717 0.400000 +3007 2747 0.400000 +3007 2773 0.400000 +3007 2859 0.400000 +3007 2939 0.400000 +3007 3036 0.400000 +3007 3085 0.400000 +3007 3161 0.400000 +3008 4 0.400000 +3008 14 0.400000 +3008 50 0.400000 +3008 64 0.400000 +3008 109 0.400000 +3008 200 0.400000 +3008 241 0.400000 +3008 385 0.400000 +3008 425 0.400000 +3008 482 0.400000 +3008 600 0.400000 +3008 676 0.400000 +3008 875 0.400000 +3008 968 0.400000 +3008 1011 0.400000 +3008 1033 0.400000 +3008 1084 0.400000 +3008 1165 0.400000 +3008 1201 0.400000 +3008 1238 0.400000 +3008 1250 0.400000 +3008 1329 0.400000 +3008 1351 0.400000 +3008 1376 0.400000 +3008 1444 0.400000 +3008 1532 0.400000 +3008 1600 0.400000 +3008 1655 0.400000 +3008 1689 0.400000 +3008 1718 0.400000 +3008 1753 0.400000 +3008 1867 0.400000 +3008 1891 0.400000 +3008 2076 0.400000 +3008 2205 0.400000 +3008 2247 0.400000 +3008 2300 0.400000 +3008 2380 0.400000 +3008 2381 0.400000 +3008 2412 0.400000 +3008 2459 0.400000 +3008 2496 0.400000 +3008 2507 0.400000 +3008 2554 0.400000 +3008 2579 0.400000 +3008 2603 0.400000 +3008 2636 0.400000 +3008 2648 0.400000 +3008 2718 0.400000 +3008 2766 0.400000 +3008 2803 0.400000 +3008 2806 0.400000 +3008 2933 0.400000 +3008 2961 0.400000 +3008 3042 0.400000 +3008 3086 0.400000 +3008 3097 0.400000 +3008 3115 0.400000 +3008 3167 0.400000 +3009 163 0.400000 +3009 214 0.400000 +3009 248 0.400000 +3009 249 0.400000 +3009 296 0.400000 +3009 370 0.400000 +3009 444 0.400000 +3009 448 0.400000 +3009 456 0.400000 +3009 494 0.400000 +3009 537 0.400000 +3009 560 0.400000 +3009 727 0.400000 +3009 729 0.400000 +3009 768 0.400000 +3009 772 0.400000 +3009 789 0.400000 +3009 860 0.400000 +3009 867 0.400000 +3009 872 0.400000 +3009 885 0.400000 +3009 912 0.400000 +3009 918 0.400000 +3009 1058 0.400000 +3009 1147 0.400000 +3009 1164 0.400000 +3009 1167 0.400000 +3009 1222 0.400000 +3009 1256 0.400000 +3009 1294 0.400000 +3009 1356 0.400000 +3009 1423 0.400000 +3009 1554 0.400000 +3009 1582 0.400000 +3009 1594 0.400000 +3009 1742 0.400000 +3009 1772 0.400000 +3009 1967 0.400000 +3009 2052 0.400000 +3009 2098 0.400000 +3009 2151 0.400000 +3009 2231 0.400000 +3009 2280 0.400000 +3009 2491 0.400000 +3009 2511 0.400000 +3009 2516 0.400000 +3009 2671 0.400000 +3009 2722 0.400000 +3009 2764 0.400000 +3009 2783 0.400000 +3009 2840 0.400000 +3009 2932 0.400000 +3009 2936 0.400000 +3009 2977 0.400000 +3009 3046 0.400000 +3010 99 0.400000 +3010 171 0.400000 +3010 183 0.400000 +3010 199 0.400000 +3010 216 0.400000 +3010 251 0.400000 +3010 252 0.400000 +3010 362 0.400000 +3010 374 0.400000 +3010 390 0.400000 +3010 393 0.400000 +3010 501 0.400000 +3010 559 0.400000 +3010 562 0.400000 +3010 606 0.400000 +3010 665 0.400000 +3010 675 0.400000 +3010 804 0.400000 +3010 917 0.400000 +3010 956 0.400000 +3010 996 0.400000 +3010 1021 0.400000 +3010 1075 0.400000 +3010 1108 0.400000 +3010 1245 0.400000 +3010 1323 0.400000 +3010 1387 0.400000 +3010 1425 0.400000 +3010 1483 0.400000 +3010 1537 0.400000 +3010 1682 0.400000 +3010 1695 0.400000 +3010 1819 0.400000 +3010 1854 0.400000 +3010 1886 0.400000 +3010 2027 0.400000 +3010 2149 0.400000 +3010 2353 0.400000 +3010 2409 0.400000 +3010 2437 0.400000 +3010 2459 0.400000 +3010 2512 0.400000 +3010 2612 0.400000 +3010 2663 0.400000 +3010 2734 0.400000 +3010 2758 0.400000 +3010 2804 0.400000 +3010 2908 0.400000 +3010 2926 0.400000 +3010 2940 0.400000 +3010 2947 0.400000 +3010 2988 0.400000 +3010 3002 0.400000 +3010 3041 0.400000 +3010 3054 0.400000 +3010 3111 0.400000 +3010 3160 0.400000 +3010 3170 0.400000 +3011 92 0.400000 +3011 122 0.400000 +3011 240 0.400000 +3011 333 0.400000 +3011 610 0.400000 +3011 646 0.400000 +3011 700 0.400000 +3011 705 0.400000 +3011 772 0.400000 +3011 893 0.400000 +3011 894 0.400000 +3011 932 0.400000 +3011 991 0.400000 +3011 1052 0.400000 +3011 1181 0.400000 +3011 1215 0.400000 +3011 1223 0.400000 +3011 1291 0.400000 +3011 1293 0.400000 +3011 1303 0.400000 +3011 1383 0.400000 +3011 1453 0.400000 +3011 1467 0.400000 +3011 1640 0.400000 +3011 1719 0.400000 +3011 1731 0.400000 +3011 1929 0.400000 +3011 1941 0.400000 +3011 2028 0.400000 +3011 2063 0.400000 +3011 2100 0.400000 +3011 2298 0.400000 +3011 2318 0.400000 +3011 2352 0.400000 +3011 2371 0.400000 +3011 2479 0.400000 +3011 2566 0.400000 +3011 2568 0.400000 +3011 2758 0.400000 +3011 2791 0.400000 +3011 2804 0.400000 +3011 2824 0.400000 +3011 2869 0.400000 +3011 2949 0.400000 +3011 3043 0.400000 +3011 3076 0.400000 +3011 3086 0.400000 +3011 3123 0.400000 +3011 3167 0.400000 +3011 3194 0.400000 +3012 9 0.400000 +3012 133 0.400000 +3012 204 0.400000 +3012 259 0.400000 +3012 382 0.400000 +3012 504 0.400000 +3012 604 0.400000 +3012 693 0.400000 +3012 701 0.400000 +3012 705 0.400000 +3012 730 0.400000 +3012 881 0.400000 +3012 903 0.400000 +3012 915 0.400000 +3012 961 0.400000 +3012 971 0.400000 +3012 976 0.400000 +3012 1021 0.400000 +3012 1049 0.400000 +3012 1067 0.400000 +3012 1102 0.400000 +3012 1181 0.400000 +3012 1190 0.400000 +3012 1242 0.400000 +3012 1299 0.400000 +3012 1419 0.400000 +3012 1428 0.400000 +3012 1534 0.400000 +3012 1568 0.400000 +3012 1614 0.400000 +3012 1617 0.400000 +3012 1637 0.400000 +3012 1703 0.400000 +3012 1760 0.400000 +3012 1792 0.400000 +3012 1869 0.400000 +3012 1876 0.400000 +3012 1914 0.400000 +3012 1945 0.400000 +3012 1992 0.400000 +3012 2018 0.400000 +3012 2023 0.400000 +3012 2050 0.400000 +3012 2051 0.400000 +3012 2262 0.400000 +3012 2269 0.400000 +3012 2303 0.400000 +3012 2427 0.400000 +3012 2497 0.400000 +3012 2524 0.400000 +3012 2633 0.400000 +3012 2638 0.400000 +3012 2639 0.400000 +3012 2652 0.400000 +3012 2741 0.400000 +3012 2756 0.400000 +3012 2763 0.400000 +3012 2839 0.400000 +3012 2854 0.400000 +3012 2893 0.400000 +3012 2908 0.400000 +3012 3027 0.400000 +3012 3053 0.400000 +3012 3140 0.400000 +3013 39 0.400000 +3013 127 0.400000 +3013 194 0.400000 +3013 311 0.400000 +3013 435 0.400000 +3013 573 0.400000 +3013 579 0.400000 +3013 829 0.400000 +3013 857 0.400000 +3013 877 0.400000 +3013 895 0.400000 +3013 942 0.400000 +3013 943 0.400000 +3013 951 0.400000 +3013 1008 0.400000 +3013 1172 0.400000 +3013 1184 0.400000 +3013 1213 0.400000 +3013 1255 0.400000 +3013 1308 0.400000 +3013 1311 0.400000 +3013 1369 0.400000 +3013 1372 0.400000 +3013 1422 0.400000 +3013 1467 0.400000 +3013 1483 0.400000 +3013 1505 0.400000 +3013 1561 0.400000 +3013 1578 0.400000 +3013 1625 0.400000 +3013 1640 0.400000 +3013 1654 0.400000 +3013 1756 0.400000 +3013 1773 0.400000 +3013 1827 0.400000 +3013 1908 0.400000 +3013 1951 0.400000 +3013 1973 0.400000 +3013 2121 0.400000 +3013 2151 0.400000 +3013 2256 0.400000 +3013 2259 0.400000 +3013 2385 0.400000 +3013 2429 0.400000 +3013 2444 0.400000 +3013 2538 0.400000 +3013 2572 0.400000 +3013 2609 0.400000 +3013 2645 0.400000 +3013 2653 0.400000 +3013 2659 0.400000 +3013 2801 0.400000 +3013 2814 0.400000 +3013 2918 0.400000 +3013 2928 0.400000 +3013 3084 0.400000 +3014 49 0.400000 +3014 184 0.400000 +3014 270 0.400000 +3014 280 0.400000 +3014 325 0.400000 +3014 475 0.400000 +3014 479 0.400000 +3014 544 0.400000 +3014 578 0.400000 +3014 585 0.400000 +3014 659 0.400000 +3014 711 0.400000 +3014 726 0.400000 +3014 731 0.400000 +3014 762 0.400000 +3014 831 0.400000 +3014 833 0.400000 +3014 900 0.400000 +3014 980 0.400000 +3014 1044 0.400000 +3014 1097 0.400000 +3014 1104 0.400000 +3014 1165 0.400000 +3014 1326 0.400000 +3014 1366 0.400000 +3014 1450 0.400000 +3014 1476 0.400000 +3014 1534 0.400000 +3014 1608 0.400000 +3014 1609 0.400000 +3014 1611 0.400000 +3014 1667 0.400000 +3014 1766 0.400000 +3014 1827 0.400000 +3014 1861 0.400000 +3014 1946 0.400000 +3014 2006 0.400000 +3014 2034 0.400000 +3014 2078 0.400000 +3014 2198 0.400000 +3014 2232 0.400000 +3014 2305 0.400000 +3014 2429 0.400000 +3014 2435 0.400000 +3014 2479 0.400000 +3014 2499 0.400000 +3014 2540 0.400000 +3014 2612 0.400000 +3014 2619 0.400000 +3014 2726 0.400000 +3014 2741 0.400000 +3014 2809 0.400000 +3014 2906 0.400000 +3014 3005 0.400000 +3014 3045 0.400000 +3014 3047 0.400000 +3014 3102 0.400000 +3015 76 0.400000 +3015 91 0.400000 +3015 124 0.400000 +3015 131 0.400000 +3015 241 0.400000 +3015 266 0.400000 +3015 280 0.400000 +3015 284 0.400000 +3015 326 0.400000 +3015 448 0.400000 +3015 512 0.400000 +3015 552 0.400000 +3015 706 0.400000 +3015 724 0.400000 +3015 771 0.400000 +3015 788 0.400000 +3015 835 0.400000 +3015 876 0.400000 +3015 936 0.400000 +3015 943 0.400000 +3015 988 0.400000 +3015 991 0.400000 +3015 1108 0.400000 +3015 1159 0.400000 +3015 1166 0.400000 +3015 1180 0.400000 +3015 1279 0.400000 +3015 1335 0.400000 +3015 1379 0.400000 +3015 1387 0.400000 +3015 1488 0.400000 +3015 1531 0.400000 +3015 1537 0.400000 +3015 1636 0.400000 +3015 1693 0.400000 +3015 1753 0.400000 +3015 1781 0.400000 +3015 1922 0.400000 +3015 2007 0.400000 +3015 2060 0.400000 +3015 2142 0.400000 +3015 2158 0.400000 +3015 2189 0.400000 +3015 2202 0.400000 +3015 2254 0.400000 +3015 2296 0.400000 +3015 2323 0.400000 +3015 2328 0.400000 +3015 2488 0.400000 +3015 2513 0.400000 +3015 2518 0.400000 +3015 2532 0.400000 +3015 2582 0.400000 +3015 2590 0.400000 +3015 2683 0.400000 +3015 2798 0.400000 +3015 2828 0.400000 +3015 2829 0.400000 +3015 2899 0.400000 +3015 2924 0.400000 +3015 2977 0.400000 +3015 3025 0.400000 +3015 3052 0.400000 +3015 3147 0.400000 +3015 3175 0.400000 +3016 221 0.400000 +3016 279 0.400000 +3016 297 0.400000 +3016 324 0.400000 +3016 365 0.400000 +3016 372 0.400000 +3016 460 0.400000 +3016 592 0.400000 +3016 618 0.400000 +3016 621 0.400000 +3016 622 0.400000 +3016 676 0.400000 +3016 685 0.400000 +3016 694 0.400000 +3016 820 0.400000 +3016 871 0.400000 +3016 899 0.400000 +3016 1068 0.400000 +3016 1135 0.400000 +3016 1180 0.400000 +3016 1204 0.400000 +3016 1313 0.400000 +3016 1332 0.400000 +3016 1364 0.400000 +3016 1365 0.400000 +3016 1436 0.400000 +3016 1544 0.400000 +3016 1559 0.400000 +3016 1601 0.400000 +3016 1671 0.400000 +3016 1678 0.400000 +3016 1705 0.400000 +3016 1719 0.400000 +3016 1735 0.400000 +3016 1757 0.400000 +3016 1764 0.400000 +3016 1864 0.400000 +3016 1868 0.400000 +3016 1999 0.400000 +3016 2009 0.400000 +3016 2130 0.400000 +3016 2326 0.400000 +3016 2355 0.400000 +3016 2365 0.400000 +3016 2437 0.400000 +3016 2475 0.400000 +3016 2543 0.400000 +3016 2570 0.400000 +3016 2587 0.400000 +3016 2614 0.400000 +3016 2626 0.400000 +3016 2730 0.400000 +3016 2731 0.400000 +3016 2767 0.400000 +3016 2772 0.400000 +3016 2786 0.400000 +3016 2821 0.400000 +3016 2841 0.400000 +3016 2848 0.400000 +3016 2891 0.400000 +3016 3086 0.400000 +3016 3097 0.400000 +3016 3113 0.400000 +3016 3125 0.400000 +3016 3127 0.400000 +3016 3130 0.400000 +3016 3138 0.400000 +3017 37 0.400000 +3017 66 0.400000 +3017 70 0.400000 +3017 131 0.400000 +3017 176 0.400000 +3017 340 0.400000 +3017 401 0.400000 +3017 419 0.400000 +3017 522 0.400000 +3017 603 0.400000 +3017 678 0.400000 +3017 725 0.400000 +3017 740 0.400000 +3017 796 0.400000 +3017 893 0.400000 +3017 928 0.400000 +3017 940 0.400000 +3017 977 0.400000 +3017 1086 0.400000 +3017 1106 0.400000 +3017 1114 0.400000 +3017 1139 0.400000 +3017 1162 0.400000 +3017 1183 0.400000 +3017 1224 0.400000 +3017 1266 0.400000 +3017 1273 0.400000 +3017 1345 0.400000 +3017 1368 0.400000 +3017 1397 0.400000 +3017 1425 0.400000 +3017 1477 0.400000 +3017 1496 0.400000 +3017 1561 0.400000 +3017 1578 0.400000 +3017 1614 0.400000 +3017 1629 0.400000 +3017 1700 0.400000 +3017 1702 0.400000 +3017 1720 0.400000 +3017 1766 0.400000 +3017 1788 0.400000 +3017 1859 0.400000 +3017 2064 0.400000 +3017 2089 0.400000 +3017 2093 0.400000 +3017 2198 0.400000 +3017 2233 0.400000 +3017 2370 0.400000 +3017 2375 0.400000 +3017 2442 0.400000 +3017 2489 0.400000 +3017 2506 0.400000 +3017 2520 0.400000 +3017 2545 0.400000 +3017 2548 0.400000 +3017 2583 0.400000 +3017 2644 0.400000 +3017 2683 0.400000 +3017 2718 0.400000 +3017 2724 0.400000 +3017 2752 0.400000 +3017 2753 0.400000 +3017 2800 0.400000 +3017 2805 0.400000 +3017 2823 0.400000 +3017 2858 0.400000 +3017 2861 0.400000 +3017 2880 0.400000 +3017 2950 0.400000 +3017 3057 0.400000 +3017 3151 0.400000 +3018 97 0.400000 +3018 151 0.400000 +3018 199 0.400000 +3018 226 0.400000 +3018 249 0.400000 +3018 254 0.400000 +3018 328 0.400000 +3018 361 0.400000 +3018 384 0.400000 +3018 388 0.400000 +3018 492 0.400000 +3018 671 0.400000 +3018 718 0.400000 +3018 724 0.400000 +3018 726 0.400000 +3018 782 0.400000 +3018 798 0.400000 +3018 801 0.400000 +3018 863 0.400000 +3018 865 0.400000 +3018 883 0.400000 +3018 988 0.400000 +3018 1003 0.400000 +3018 1062 0.400000 +3018 1071 0.400000 +3018 1113 0.400000 +3018 1133 0.400000 +3018 1154 0.400000 +3018 1256 0.400000 +3018 1473 0.400000 +3018 1512 0.400000 +3018 1550 0.400000 +3018 1758 0.400000 +3018 1788 0.400000 +3018 1977 0.400000 +3018 1984 0.400000 +3018 2056 0.400000 +3018 2060 0.400000 +3018 2096 0.400000 +3018 2105 0.400000 +3018 2219 0.400000 +3018 2386 0.400000 +3018 2402 0.400000 +3018 2480 0.400000 +3018 2518 0.400000 +3018 2633 0.400000 +3018 2639 0.400000 +3018 2644 0.400000 +3018 2676 0.400000 +3018 2718 0.400000 +3018 2722 0.400000 +3018 2781 0.400000 +3018 2854 0.400000 +3018 2874 0.400000 +3018 2977 0.400000 +3018 3076 0.400000 +3018 3080 0.400000 +3018 3111 0.400000 +3019 226 0.400000 +3019 227 0.400000 +3019 347 0.400000 +3019 363 0.400000 +3019 388 0.400000 +3019 396 0.400000 +3019 576 0.400000 +3019 719 0.400000 +3019 722 0.400000 +3019 800 0.400000 +3019 906 0.400000 +3019 926 0.400000 +3019 999 0.400000 +3019 1046 0.400000 +3019 1173 0.400000 +3019 1194 0.400000 +3019 1258 0.400000 +3019 1311 0.400000 +3019 1324 0.400000 +3019 1372 0.400000 +3019 1382 0.400000 +3019 1391 0.400000 +3019 1399 0.400000 +3019 1426 0.400000 +3019 1461 0.400000 +3019 1513 0.400000 +3019 1583 0.400000 +3019 1656 0.400000 +3019 1681 0.400000 +3019 1686 0.400000 +3019 1742 0.400000 +3019 1754 0.400000 +3019 1763 0.400000 +3019 1840 0.400000 +3019 1907 0.400000 +3019 1927 0.400000 +3019 2050 0.400000 +3019 2057 0.400000 +3019 2103 0.400000 +3019 2117 0.400000 +3019 2246 0.400000 +3019 2370 0.400000 +3019 2451 0.400000 +3019 2548 0.400000 +3019 2716 0.400000 +3019 2722 0.400000 +3019 2773 0.400000 +3019 2876 0.400000 +3019 3165 0.400000 +3020 9 0.400000 +3020 215 0.400000 +3020 248 0.400000 +3020 273 0.400000 +3020 328 0.400000 +3020 334 0.400000 +3020 436 0.400000 +3020 462 0.400000 +3020 495 0.400000 +3020 553 0.400000 +3020 593 0.400000 +3020 601 0.400000 +3020 676 0.400000 +3020 731 0.400000 +3020 788 0.400000 +3020 853 0.400000 +3020 929 0.400000 +3020 1042 0.400000 +3020 1238 0.400000 +3020 1248 0.400000 +3020 1372 0.400000 +3020 1404 0.400000 +3020 1697 0.400000 +3020 1714 0.400000 +3020 1742 0.400000 +3020 1928 0.400000 +3020 1938 0.400000 +3020 2014 0.400000 +3020 2019 0.400000 +3020 2072 0.400000 +3020 2103 0.400000 +3020 2127 0.400000 +3020 2148 0.400000 +3020 2157 0.400000 +3020 2219 0.400000 +3020 2248 0.400000 +3020 2264 0.400000 +3020 2282 0.400000 +3020 2305 0.400000 +3020 2310 0.400000 +3020 2370 0.400000 +3020 2399 0.400000 +3020 2405 0.400000 +3020 2444 0.400000 +3020 2576 0.400000 +3020 2593 0.400000 +3020 2646 0.400000 +3020 2659 0.400000 +3020 2669 0.400000 +3020 2788 0.400000 +3020 2821 0.400000 +3020 2841 0.400000 +3020 2845 0.400000 +3020 3179 0.400000 +3021 2 0.400000 +3021 3 0.400000 +3021 16 0.400000 +3021 94 0.400000 +3021 135 0.400000 +3021 138 0.400000 +3021 177 0.400000 +3021 195 0.400000 +3021 399 0.400000 +3021 482 0.400000 +3021 554 0.400000 +3021 669 0.400000 +3021 693 0.400000 +3021 733 0.400000 +3021 974 0.400000 +3021 1109 0.400000 +3021 1110 0.400000 +3021 1180 0.400000 +3021 1200 0.400000 +3021 1225 0.400000 +3021 1238 0.400000 +3021 1342 0.400000 +3021 1373 0.400000 +3021 1383 0.400000 +3021 1415 0.400000 +3021 1473 0.400000 +3021 1563 0.400000 +3021 1604 0.400000 +3021 1621 0.400000 +3021 1630 0.400000 +3021 1651 0.400000 +3021 1680 0.400000 +3021 1733 0.400000 +3021 1753 0.400000 +3021 1766 0.400000 +3021 1826 0.400000 +3021 2061 0.400000 +3021 2108 0.400000 +3021 2224 0.400000 +3021 2317 0.400000 +3021 2330 0.400000 +3021 2404 0.400000 +3021 2624 0.400000 +3021 2646 0.400000 +3021 2683 0.400000 +3021 2773 0.400000 +3021 2785 0.400000 +3021 2919 0.400000 +3021 2958 0.400000 +3021 2997 0.400000 +3021 3044 0.400000 +3021 3049 0.400000 +3021 3072 0.400000 +3021 3130 0.400000 +3022 138 0.400000 +3022 170 0.400000 +3022 227 0.400000 +3022 278 0.400000 +3022 381 0.400000 +3022 423 0.400000 +3022 511 0.400000 +3022 558 0.400000 +3022 567 0.400000 +3022 603 0.400000 +3022 639 0.400000 +3022 649 0.400000 +3022 782 0.400000 +3022 794 0.400000 +3022 809 0.400000 +3022 858 0.400000 +3022 879 0.400000 +3022 926 0.400000 +3022 1009 0.400000 +3022 1061 0.400000 +3022 1146 0.400000 +3022 1292 0.400000 +3022 1330 0.400000 +3022 1471 0.400000 +3022 1498 0.400000 +3022 1773 0.400000 +3022 1787 0.400000 +3022 1795 0.400000 +3022 1881 0.400000 +3022 1887 0.400000 +3022 1910 0.400000 +3022 1916 0.400000 +3022 1940 0.400000 +3022 1961 0.400000 +3022 2001 0.400000 +3022 2037 0.400000 +3022 2046 0.400000 +3022 2052 0.400000 +3022 2156 0.400000 +3022 2313 0.400000 +3022 2337 0.400000 +3022 2504 0.400000 +3022 2589 0.400000 +3022 2607 0.400000 +3022 2624 0.400000 +3022 2765 0.400000 +3022 2778 0.400000 +3022 2782 0.400000 +3022 2809 0.400000 +3022 2864 0.400000 +3022 2930 0.400000 +3022 2949 0.400000 +3022 3030 0.400000 +3022 3062 0.400000 +3022 3095 0.400000 +3022 3141 0.400000 +3022 3165 0.400000 +3022 3166 0.400000 +3023 3 0.400000 +3023 19 0.400000 +3023 20 0.400000 +3023 77 0.400000 +3023 158 0.400000 +3023 159 0.400000 +3023 253 0.400000 +3023 284 0.400000 +3023 375 0.400000 +3023 400 0.400000 +3023 438 0.400000 +3023 554 0.400000 +3023 560 0.400000 +3023 659 0.400000 +3023 692 0.400000 +3023 786 0.400000 +3023 787 0.400000 +3023 858 0.400000 +3023 883 0.400000 +3023 959 0.400000 +3023 968 0.400000 +3023 988 0.400000 +3023 989 0.400000 +3023 996 0.400000 +3023 1092 0.400000 +3023 1098 0.400000 +3023 1127 0.400000 +3023 1158 0.400000 +3023 1183 0.400000 +3023 1223 0.400000 +3023 1236 0.400000 +3023 1244 0.400000 +3023 1255 0.400000 +3023 1277 0.400000 +3023 1326 0.400000 +3023 1333 0.400000 +3023 1380 0.400000 +3023 1397 0.400000 +3023 1475 0.400000 +3023 1513 0.400000 +3023 1570 0.400000 +3023 1695 0.400000 +3023 1738 0.400000 +3023 1751 0.400000 +3023 1885 0.400000 +3023 1889 0.400000 +3023 1906 0.400000 +3023 1942 0.400000 +3023 2018 0.400000 +3023 2102 0.400000 +3023 2108 0.400000 +3023 2168 0.400000 +3023 2237 0.400000 +3023 2265 0.400000 +3023 2292 0.400000 +3023 2387 0.400000 +3023 2433 0.400000 +3023 2460 0.400000 +3023 2464 0.400000 +3023 2501 0.400000 +3023 2512 0.400000 +3023 2547 0.400000 +3023 2596 0.400000 +3023 2615 0.400000 +3023 2626 0.400000 +3023 2627 0.400000 +3023 2630 0.400000 +3023 2658 0.400000 +3023 2681 0.400000 +3023 2698 0.400000 +3023 2701 0.400000 +3023 2799 0.400000 +3023 2894 0.400000 +3023 2933 0.400000 +3023 2941 0.400000 +3023 2966 0.400000 +3023 3033 0.400000 +3023 3123 0.400000 +3024 25 0.400000 +3024 59 0.400000 +3024 92 0.400000 +3024 145 0.400000 +3024 153 0.400000 +3024 176 0.400000 +3024 182 0.400000 +3024 380 0.400000 +3024 402 0.400000 +3024 472 0.400000 +3024 512 0.400000 +3024 624 0.400000 +3024 694 0.400000 +3024 946 0.400000 +3024 1046 0.400000 +3024 1089 0.400000 +3024 1162 0.400000 +3024 1167 0.400000 +3024 1270 0.400000 +3024 1297 0.400000 +3024 1348 0.400000 +3024 1597 0.400000 +3024 1612 0.400000 +3024 1691 0.400000 +3024 1693 0.400000 +3024 1760 0.400000 +3024 1776 0.400000 +3024 1793 0.400000 +3024 1811 0.400000 +3024 1971 0.400000 +3024 2091 0.400000 +3024 2160 0.400000 +3024 2224 0.400000 +3024 2329 0.400000 +3024 2380 0.400000 +3024 2501 0.400000 +3024 2512 0.400000 +3024 2538 0.400000 +3024 2661 0.400000 +3024 2666 0.400000 +3024 2744 0.400000 +3024 2771 0.400000 +3024 2790 0.400000 +3024 2798 0.400000 +3024 2828 0.400000 +3024 2851 0.400000 +3024 2903 0.400000 +3024 2917 0.400000 +3024 3010 0.400000 +3024 3036 0.400000 +3024 3044 0.400000 +3024 3057 0.400000 +3025 202 0.400000 +3025 239 0.400000 +3025 243 0.400000 +3025 312 0.400000 +3025 323 0.400000 +3025 401 0.400000 +3025 427 0.400000 +3025 439 0.400000 +3025 441 0.400000 +3025 450 0.400000 +3025 460 0.400000 +3025 514 0.400000 +3025 519 0.400000 +3025 560 0.400000 +3025 584 0.400000 +3025 663 0.400000 +3025 694 0.400000 +3025 713 0.400000 +3025 769 0.400000 +3025 793 0.400000 +3025 812 0.400000 +3025 844 0.400000 +3025 916 0.400000 +3025 938 0.400000 +3025 984 0.400000 +3025 1038 0.400000 +3025 1047 0.400000 +3025 1188 0.400000 +3025 1199 0.400000 +3025 1282 0.400000 +3025 1389 0.400000 +3025 1399 0.400000 +3025 1462 0.400000 +3025 1526 0.400000 +3025 1577 0.400000 +3025 1615 0.400000 +3025 1622 0.400000 +3025 1650 0.400000 +3025 1768 0.400000 +3025 1842 0.400000 +3025 1923 0.400000 +3025 1924 0.400000 +3025 2003 0.400000 +3025 2080 0.400000 +3025 2091 0.400000 +3025 2175 0.400000 +3025 2198 0.400000 +3025 2262 0.400000 +3025 2274 0.400000 +3025 2331 0.400000 +3025 2333 0.400000 +3025 2497 0.400000 +3025 2650 0.400000 +3025 2705 0.400000 +3025 2709 0.400000 +3025 2829 0.400000 +3025 2837 0.400000 +3025 2862 0.400000 +3025 2894 0.400000 +3025 3013 0.400000 +3025 3119 0.400000 +3026 10 0.400000 +3026 11 0.400000 +3026 25 0.400000 +3026 203 0.400000 +3026 305 0.400000 +3026 339 0.400000 +3026 355 0.400000 +3026 428 0.400000 +3026 488 0.400000 +3026 532 0.400000 +3026 587 0.400000 +3026 693 0.400000 +3026 734 0.400000 +3026 886 0.400000 +3026 889 0.400000 +3026 925 0.400000 +3026 949 0.400000 +3026 970 0.400000 +3026 974 0.400000 +3026 1018 0.400000 +3026 1065 0.400000 +3026 1076 0.400000 +3026 1116 0.400000 +3026 1121 0.400000 +3026 1225 0.400000 +3026 1232 0.400000 +3026 1243 0.400000 +3026 1299 0.400000 +3026 1305 0.400000 +3026 1419 0.400000 +3026 1459 0.400000 +3026 1468 0.400000 +3026 1500 0.400000 +3026 1604 0.400000 +3026 1664 0.400000 +3026 1667 0.400000 +3026 1757 0.400000 +3026 1803 0.400000 +3026 2084 0.400000 +3026 2246 0.400000 +3026 2253 0.400000 +3026 2361 0.400000 +3026 2421 0.400000 +3026 2456 0.400000 +3026 2498 0.400000 +3026 2609 0.400000 +3026 2617 0.400000 +3026 2630 0.400000 +3026 2648 0.400000 +3026 2688 0.400000 +3026 2762 0.400000 +3026 2773 0.400000 +3026 2837 0.400000 +3026 2985 0.400000 +3026 3146 0.400000 +3026 3177 0.400000 +3027 9 0.400000 +3027 19 0.400000 +3027 42 0.400000 +3027 159 0.400000 +3027 226 0.400000 +3027 239 0.400000 +3027 254 0.400000 +3027 340 0.400000 +3027 530 0.400000 +3027 559 0.400000 +3027 615 0.400000 +3027 656 0.400000 +3027 788 0.400000 +3027 789 0.400000 +3027 840 0.400000 +3027 1039 0.400000 +3027 1063 0.400000 +3027 1203 0.400000 +3027 1233 0.400000 +3027 1274 0.400000 +3027 1275 0.400000 +3027 1332 0.400000 +3027 1361 0.400000 +3027 1384 0.400000 +3027 1406 0.400000 +3027 1432 0.400000 +3027 1521 0.400000 +3027 1557 0.400000 +3027 1558 0.400000 +3027 1560 0.400000 +3027 1596 0.400000 +3027 1609 0.400000 +3027 1706 0.400000 +3027 1712 0.400000 +3027 1747 0.400000 +3027 1815 0.400000 +3027 1838 0.400000 +3027 1891 0.400000 +3027 1945 0.400000 +3027 1949 0.400000 +3027 1981 0.400000 +3027 1985 0.400000 +3027 1997 0.400000 +3027 2117 0.400000 +3027 2155 0.400000 +3027 2211 0.400000 +3027 2223 0.400000 +3027 2232 0.400000 +3027 2240 0.400000 +3027 2245 0.400000 +3027 2258 0.400000 +3027 2355 0.400000 +3027 2408 0.400000 +3027 2458 0.400000 +3027 2523 0.400000 +3027 2543 0.400000 +3027 2552 0.400000 +3027 2557 0.400000 +3027 2567 0.400000 +3027 2599 0.400000 +3027 2646 0.400000 +3027 2665 0.400000 +3027 2741 0.400000 +3027 2811 0.400000 +3027 2862 0.400000 +3027 2868 0.400000 +3027 2956 0.400000 +3027 2996 0.400000 +3027 2998 0.400000 +3027 3021 0.400000 +3027 3047 0.400000 +3028 1 0.400000 +3028 144 0.400000 +3028 154 0.400000 +3028 206 0.400000 +3028 260 0.400000 +3028 281 0.400000 +3028 348 0.400000 +3028 459 0.400000 +3028 535 0.400000 +3028 545 0.400000 +3028 593 0.400000 +3028 670 0.400000 +3028 674 0.400000 +3028 749 0.400000 +3028 758 0.400000 +3028 824 0.400000 +3028 878 0.400000 +3028 899 0.400000 +3028 911 0.400000 +3028 1023 0.400000 +3028 1059 0.400000 +3028 1087 0.400000 +3028 1196 0.400000 +3028 1234 0.400000 +3028 1261 0.400000 +3028 1286 0.400000 +3028 1370 0.400000 +3028 1373 0.400000 +3028 1375 0.400000 +3028 1530 0.400000 +3028 1580 0.400000 +3028 1587 0.400000 +3028 1604 0.400000 +3028 1632 0.400000 +3028 1646 0.400000 +3028 1649 0.400000 +3028 1722 0.400000 +3028 1797 0.400000 +3028 1997 0.400000 +3028 1999 0.400000 +3028 2026 0.400000 +3028 2048 0.400000 +3028 2066 0.400000 +3028 2083 0.400000 +3028 2120 0.400000 +3028 2141 0.400000 +3028 2203 0.400000 +3028 2236 0.400000 +3028 2268 0.400000 +3028 2289 0.400000 +3028 2338 0.400000 +3028 2379 0.400000 +3028 2464 0.400000 +3028 2494 0.400000 +3028 2511 0.400000 +3028 2531 0.400000 +3028 2560 0.400000 +3028 2681 0.400000 +3028 2691 0.400000 +3028 2707 0.400000 +3028 2788 0.400000 +3028 2859 0.400000 +3028 2977 0.400000 +3028 3061 0.400000 +3028 3104 0.400000 +3028 3123 0.400000 +3028 3139 0.400000 +3028 3150 0.400000 +3028 3171 0.400000 +3029 80 0.400000 +3029 141 0.400000 +3029 210 0.400000 +3029 360 0.400000 +3029 372 0.400000 +3029 387 0.400000 +3029 458 0.400000 +3029 508 0.400000 +3029 529 0.400000 +3029 545 0.400000 +3029 601 0.400000 +3029 611 0.400000 +3029 618 0.400000 +3029 626 0.400000 +3029 729 0.400000 +3029 736 0.400000 +3029 794 0.400000 +3029 830 0.400000 +3029 831 0.400000 +3029 834 0.400000 +3029 850 0.400000 +3029 914 0.400000 +3029 973 0.400000 +3029 1142 0.400000 +3029 1202 0.400000 +3029 1248 0.400000 +3029 1317 0.400000 +3029 1331 0.400000 +3029 1420 0.400000 +3029 1464 0.400000 +3029 1484 0.400000 +3029 1557 0.400000 +3029 1600 0.400000 +3029 1672 0.400000 +3029 1677 0.400000 +3029 1707 0.400000 +3029 1794 0.400000 +3029 1819 0.400000 +3029 1836 0.400000 +3029 1890 0.400000 +3029 1922 0.400000 +3029 2029 0.400000 +3029 2068 0.400000 +3029 2162 0.400000 +3029 2186 0.400000 +3029 2308 0.400000 +3029 2363 0.400000 +3029 2431 0.400000 +3029 2478 0.400000 +3029 2506 0.400000 +3029 2556 0.400000 +3029 2618 0.400000 +3029 2660 0.400000 +3029 2668 0.400000 +3029 2673 0.400000 +3029 2680 0.400000 +3029 2700 0.400000 +3029 2746 0.400000 +3029 2789 0.400000 +3029 2797 0.400000 +3029 2834 0.400000 +3029 2853 0.400000 +3029 2945 0.400000 +3029 3024 0.400000 +3029 3046 0.400000 +3029 3082 0.400000 +3029 3102 0.400000 +3029 3108 0.400000 +3030 41 0.400000 +3030 102 0.400000 +3030 230 0.400000 +3030 264 0.400000 +3030 279 0.400000 +3030 310 0.400000 +3030 354 0.400000 +3030 364 0.400000 +3030 405 0.400000 +3030 414 0.400000 +3030 556 0.400000 +3030 745 0.400000 +3030 758 0.400000 +3030 818 0.400000 +3030 834 0.400000 +3030 848 0.400000 +3030 853 0.400000 +3030 862 0.400000 +3030 916 0.400000 +3030 967 0.400000 +3030 1032 0.400000 +3030 1100 0.400000 +3030 1245 0.400000 +3030 1251 0.400000 +3030 1287 0.400000 +3030 1376 0.400000 +3030 1380 0.400000 +3030 1381 0.400000 +3030 1601 0.400000 +3030 1608 0.400000 +3030 1657 0.400000 +3030 1782 0.400000 +3030 1824 0.400000 +3030 1862 0.400000 +3030 1932 0.400000 +3030 1937 0.400000 +3030 1975 0.400000 +3030 2014 0.400000 +3030 2170 0.400000 +3030 2217 0.400000 +3030 2252 0.400000 +3030 2359 0.400000 +3030 2411 0.400000 +3030 2424 0.400000 +3030 2468 0.400000 +3030 2485 0.400000 +3030 2494 0.400000 +3030 2515 0.400000 +3030 2518 0.400000 +3030 2538 0.400000 +3030 2580 0.400000 +3030 2587 0.400000 +3030 2711 0.400000 +3030 2818 0.400000 +3030 2837 0.400000 +3030 2852 0.400000 +3030 3008 0.400000 +3030 3149 0.400000 +3031 5 0.400000 +3031 77 0.400000 +3031 107 0.400000 +3031 229 0.400000 +3031 234 0.400000 +3031 236 0.400000 +3031 384 0.400000 +3031 397 0.400000 +3031 486 0.400000 +3031 493 0.400000 +3031 504 0.400000 +3031 639 0.400000 +3031 661 0.400000 +3031 699 0.400000 +3031 766 0.400000 +3031 797 0.400000 +3031 803 0.400000 +3031 853 0.400000 +3031 865 0.400000 +3031 906 0.400000 +3031 910 0.400000 +3031 1087 0.400000 +3031 1097 0.400000 +3031 1182 0.400000 +3031 1331 0.400000 +3031 1489 0.400000 +3031 1580 0.400000 +3031 1623 0.400000 +3031 1679 0.400000 +3031 1759 0.400000 +3031 1769 0.400000 +3031 1808 0.400000 +3031 1840 0.400000 +3031 1846 0.400000 +3031 1866 0.400000 +3031 1915 0.400000 +3031 1920 0.400000 +3031 2254 0.400000 +3031 2260 0.400000 +3031 2290 0.400000 +3031 2379 0.400000 +3031 2422 0.400000 +3031 2427 0.400000 +3031 2470 0.400000 +3031 2532 0.400000 +3031 2536 0.400000 +3031 2538 0.400000 +3031 2595 0.400000 +3031 2619 0.400000 +3031 2652 0.400000 +3031 2666 0.400000 +3031 2671 0.400000 +3031 2690 0.400000 +3031 2712 0.400000 +3031 2770 0.400000 +3031 2772 0.400000 +3031 2870 0.400000 +3031 2960 0.400000 +3031 3032 0.400000 +3031 3047 0.400000 +3031 3065 0.400000 +3031 3175 0.400000 +3032 95 0.400000 +3032 96 0.400000 +3032 165 0.400000 +3032 217 0.400000 +3032 312 0.400000 +3032 415 0.400000 +3032 440 0.400000 +3032 549 0.400000 +3032 555 0.400000 +3032 556 0.400000 +3032 572 0.400000 +3032 593 0.400000 +3032 651 0.400000 +3032 679 0.400000 +3032 801 0.400000 +3032 824 0.400000 +3032 829 0.400000 +3032 862 0.400000 +3032 948 0.400000 +3032 1010 0.400000 +3032 1060 0.400000 +3032 1120 0.400000 +3032 1135 0.400000 +3032 1191 0.400000 +3032 1201 0.400000 +3032 1243 0.400000 +3032 1376 0.400000 +3032 1379 0.400000 +3032 1419 0.400000 +3032 1422 0.400000 +3032 1425 0.400000 +3032 1472 0.400000 +3032 1528 0.400000 +3032 1537 0.400000 +3032 1573 0.400000 +3032 1682 0.400000 +3032 1727 0.400000 +3032 1730 0.400000 +3032 1742 0.400000 +3032 1744 0.400000 +3032 1805 0.400000 +3032 1832 0.400000 +3032 1883 0.400000 +3032 1927 0.400000 +3032 1942 0.400000 +3032 1977 0.400000 +3032 2036 0.400000 +3032 2171 0.400000 +3032 2315 0.400000 +3032 2321 0.400000 +3032 2346 0.400000 +3032 2452 0.400000 +3032 2469 0.400000 +3032 2520 0.400000 +3032 2579 0.400000 +3032 2600 0.400000 +3032 2662 0.400000 +3032 2735 0.400000 +3032 2794 0.400000 +3032 2816 0.400000 +3032 2841 0.400000 +3032 2920 0.400000 +3032 2934 0.400000 +3032 2943 0.400000 +3032 3014 0.400000 +3032 3065 0.400000 +3032 3074 0.400000 +3033 124 0.400000 +3033 131 0.400000 +3033 163 0.400000 +3033 180 0.400000 +3033 185 0.400000 +3033 327 0.400000 +3033 388 0.400000 +3033 455 0.400000 +3033 457 0.400000 +3033 550 0.400000 +3033 571 0.400000 +3033 643 0.400000 +3033 704 0.400000 +3033 746 0.400000 +3033 761 0.400000 +3033 772 0.400000 +3033 829 0.400000 +3033 836 0.400000 +3033 863 0.400000 +3033 900 0.400000 +3033 986 0.400000 +3033 1000 0.400000 +3033 1006 0.400000 +3033 1027 0.400000 +3033 1092 0.400000 +3033 1110 0.400000 +3033 1128 0.400000 +3033 1200 0.400000 +3033 1209 0.400000 +3033 1228 0.400000 +3033 1257 0.400000 +3033 1322 0.400000 +3033 1362 0.400000 +3033 1571 0.400000 +3033 1610 0.400000 +3033 1620 0.400000 +3033 1735 0.400000 +3033 1767 0.400000 +3033 1834 0.400000 +3033 1881 0.400000 +3033 1908 0.400000 +3033 1988 0.400000 +3033 2127 0.400000 +3033 2141 0.400000 +3033 2157 0.400000 +3033 2220 0.400000 +3033 2238 0.400000 +3033 2297 0.400000 +3033 2318 0.400000 +3033 2364 0.400000 +3033 2567 0.400000 +3033 2953 0.400000 +3033 3149 0.400000 +3034 6 0.400000 +3034 99 0.400000 +3034 100 0.400000 +3034 138 0.400000 +3034 169 0.400000 +3034 226 0.400000 +3034 247 0.400000 +3034 302 0.400000 +3034 364 0.400000 +3034 374 0.400000 +3034 390 0.400000 +3034 446 0.400000 +3034 503 0.400000 +3034 519 0.400000 +3034 532 0.400000 +3034 642 0.400000 +3034 745 0.400000 +3034 816 0.400000 +3034 832 0.400000 +3034 920 0.400000 +3034 955 0.400000 +3034 1003 0.400000 +3034 1103 0.400000 +3034 1168 0.400000 +3034 1169 0.400000 +3034 1355 0.400000 +3034 1400 0.400000 +3034 1454 0.400000 +3034 1500 0.400000 +3034 1547 0.400000 +3034 1573 0.400000 +3034 1586 0.400000 +3034 1612 0.400000 +3034 1619 0.400000 +3034 1703 0.400000 +3034 1735 0.400000 +3034 1742 0.400000 +3034 1802 0.400000 +3034 1871 0.400000 +3034 1881 0.400000 +3034 1894 0.400000 +3034 1895 0.400000 +3034 1897 0.400000 +3034 1898 0.400000 +3034 1935 0.400000 +3034 1960 0.400000 +3034 1966 0.400000 +3034 2015 0.400000 +3034 2083 0.400000 +3034 2115 0.400000 +3034 2145 0.400000 +3034 2221 0.400000 +3034 2355 0.400000 +3034 2368 0.400000 +3034 2457 0.400000 +3034 2479 0.400000 +3034 2560 0.400000 +3034 2700 0.400000 +3034 2725 0.400000 +3034 2737 0.400000 +3034 2851 0.400000 +3034 2881 0.400000 +3034 2908 0.400000 +3034 3039 0.400000 +3034 3041 0.400000 +3034 3130 0.400000 +3035 10 0.400000 +3035 70 0.400000 +3035 88 0.400000 +3035 407 0.400000 +3035 819 0.400000 +3035 852 0.400000 +3035 857 0.400000 +3035 868 0.400000 +3035 903 0.400000 +3035 906 0.400000 +3035 1007 0.400000 +3035 1120 0.400000 +3035 1262 0.400000 +3035 1266 0.400000 +3035 1334 0.400000 +3035 1403 0.400000 +3035 1467 0.400000 +3035 1504 0.400000 +3035 1523 0.400000 +3035 1611 0.400000 +3035 1776 0.400000 +3035 1813 0.400000 +3035 1872 0.400000 +3035 2033 0.400000 +3035 2069 0.400000 +3035 2095 0.400000 +3035 2145 0.400000 +3035 2158 0.400000 +3035 2267 0.400000 +3035 2268 0.400000 +3035 2279 0.400000 +3035 2344 0.400000 +3035 2402 0.400000 +3035 2416 0.400000 +3035 2451 0.400000 +3035 2471 0.400000 +3035 2574 0.400000 +3035 2591 0.400000 +3035 2732 0.400000 +3035 2765 0.400000 +3035 3137 0.400000 +3035 3183 0.400000 +3036 24 0.400000 +3036 30 0.400000 +3036 92 0.400000 +3036 111 0.400000 +3036 201 0.400000 +3036 222 0.400000 +3036 317 0.400000 +3036 335 0.400000 +3036 351 0.400000 +3036 455 0.400000 +3036 605 0.400000 +3036 625 0.400000 +3036 629 0.400000 +3036 739 0.400000 +3036 832 0.400000 +3036 842 0.400000 +3036 884 0.400000 +3036 993 0.400000 +3036 1003 0.400000 +3036 1013 0.400000 +3036 1021 0.400000 +3036 1135 0.400000 +3036 1316 0.400000 +3036 1353 0.400000 +3036 1386 0.400000 +3036 1389 0.400000 +3036 1399 0.400000 +3036 1457 0.400000 +3036 1485 0.400000 +3036 1572 0.400000 +3036 1603 0.400000 +3036 1692 0.400000 +3036 1755 0.400000 +3036 1812 0.400000 +3036 1859 0.400000 +3036 1863 0.400000 +3036 1944 0.400000 +3036 1952 0.400000 +3036 1972 0.400000 +3036 2075 0.400000 +3036 2092 0.400000 +3036 2125 0.400000 +3036 2139 0.400000 +3036 2195 0.400000 +3036 2233 0.400000 +3036 2316 0.400000 +3036 2317 0.400000 +3036 2321 0.400000 +3036 2373 0.400000 +3036 2535 0.400000 +3036 2595 0.400000 +3036 2627 0.400000 +3036 2628 0.400000 +3036 2655 0.400000 +3036 2664 0.400000 +3036 2672 0.400000 +3036 2677 0.400000 +3036 2768 0.400000 +3036 2862 0.400000 +3036 2910 0.400000 +3036 2938 0.400000 +3036 2950 0.400000 +3036 2989 0.400000 +3036 3118 0.400000 +3036 3119 0.400000 +3036 3125 0.400000 +3036 3134 0.400000 +3036 3199 0.400000 +3037 16 0.400000 +3037 28 0.400000 +3037 34 0.400000 +3037 211 0.400000 +3037 228 0.400000 +3037 263 0.400000 +3037 288 0.400000 +3037 298 0.400000 +3037 402 0.400000 +3037 416 0.400000 +3037 431 0.400000 +3037 457 0.400000 +3037 513 0.400000 +3037 542 0.400000 +3037 564 0.400000 +3037 571 0.400000 +3037 667 0.400000 +3037 707 0.400000 +3037 750 0.400000 +3037 773 0.400000 +3037 781 0.400000 +3037 889 0.400000 +3037 987 0.400000 +3037 1018 0.400000 +3037 1044 0.400000 +3037 1207 0.400000 +3037 1234 0.400000 +3037 1336 0.400000 +3037 1532 0.400000 +3037 1675 0.400000 +3037 1728 0.400000 +3037 1743 0.400000 +3037 1827 0.400000 +3037 1887 0.400000 +3037 1937 0.400000 +3037 1952 0.400000 +3037 2001 0.400000 +3037 2106 0.400000 +3037 2117 0.400000 +3037 2320 0.400000 +3037 2389 0.400000 +3037 2394 0.400000 +3037 2395 0.400000 +3037 2452 0.400000 +3037 2476 0.400000 +3037 2481 0.400000 +3037 2487 0.400000 +3037 2502 0.400000 +3037 2530 0.400000 +3037 2544 0.400000 +3037 2586 0.400000 +3037 2645 0.400000 +3037 2647 0.400000 +3037 2680 0.400000 +3037 2688 0.400000 +3037 2696 0.400000 +3037 2763 0.400000 +3037 2864 0.400000 +3037 2989 0.400000 +3037 3017 0.400000 +3037 3040 0.400000 +3037 3048 0.400000 +3038 140 0.400000 +3038 145 0.400000 +3038 408 0.400000 +3038 483 0.400000 +3038 486 0.400000 +3038 649 0.400000 +3038 713 0.400000 +3038 728 0.400000 +3038 800 0.400000 +3038 1160 0.400000 +3038 1178 0.400000 +3038 1212 0.400000 +3038 1245 0.400000 +3038 1333 0.400000 +3038 1377 0.400000 +3038 1404 0.400000 +3038 1472 0.400000 +3038 1519 0.400000 +3038 1551 0.400000 +3038 1564 0.400000 +3038 1584 0.400000 +3038 1641 0.400000 +3038 1643 0.400000 +3038 1694 0.400000 +3038 1723 0.400000 +3038 1777 0.400000 +3038 1787 0.400000 +3038 1790 0.400000 +3038 1830 0.400000 +3038 1843 0.400000 +3038 1864 0.400000 +3038 1881 0.400000 +3038 1960 0.400000 +3038 1977 0.400000 +3038 1985 0.400000 +3038 2003 0.400000 +3038 2055 0.400000 +3038 2056 0.400000 +3038 2093 0.400000 +3038 2098 0.400000 +3038 2126 0.400000 +3038 2170 0.400000 +3038 2220 0.400000 +3038 2266 0.400000 +3038 2354 0.400000 +3038 2418 0.400000 +3038 2448 0.400000 +3038 2490 0.400000 +3038 2495 0.400000 +3038 2560 0.400000 +3038 2604 0.400000 +3038 2626 0.400000 +3038 2635 0.400000 +3038 2689 0.400000 +3038 2793 0.400000 +3038 2810 0.400000 +3038 2904 0.400000 +3038 2921 0.400000 +3038 2983 0.400000 +3038 3069 0.400000 +3038 3089 0.400000 +3038 3126 0.400000 +3038 3129 0.400000 +3039 61 0.400000 +3039 90 0.400000 +3039 156 0.400000 +3039 254 0.400000 +3039 313 0.400000 +3039 364 0.400000 +3039 398 0.400000 +3039 441 0.400000 +3039 486 0.400000 +3039 579 0.400000 +3039 651 0.400000 +3039 740 0.400000 +3039 748 0.400000 +3039 778 0.400000 +3039 825 0.400000 +3039 833 0.400000 +3039 914 0.400000 +3039 936 0.400000 +3039 1048 0.400000 +3039 1153 0.400000 +3039 1196 0.400000 +3039 1396 0.400000 +3039 1406 0.400000 +3039 1410 0.400000 +3039 1417 0.400000 +3039 1541 0.400000 +3039 1560 0.400000 +3039 1646 0.400000 +3039 1675 0.400000 +3039 1726 0.400000 +3039 1743 0.400000 +3039 1778 0.400000 +3039 1874 0.400000 +3039 1984 0.400000 +3039 2023 0.400000 +3039 2031 0.400000 +3039 2035 0.400000 +3039 2110 0.400000 +3039 2125 0.400000 +3039 2158 0.400000 +3039 2335 0.400000 +3039 2400 0.400000 +3039 2415 0.400000 +3039 2430 0.400000 +3039 2489 0.400000 +3039 2490 0.400000 +3039 2496 0.400000 +3039 2564 0.400000 +3039 2604 0.400000 +3039 2613 0.400000 +3039 2659 0.400000 +3039 2700 0.400000 +3039 2736 0.400000 +3039 2748 0.400000 +3039 2770 0.400000 +3039 2805 0.400000 +3039 2825 0.400000 +3039 2827 0.400000 +3039 2833 0.400000 +3039 2834 0.400000 +3039 2860 0.400000 +3039 2920 0.400000 +3039 2922 0.400000 +3039 2939 0.400000 +3039 3003 0.400000 +3039 3011 0.400000 +3039 3077 0.400000 +3039 3120 0.400000 +3039 3122 0.400000 +3040 18 0.400000 +3040 131 0.400000 +3040 168 0.400000 +3040 212 0.400000 +3040 244 0.400000 +3040 287 0.400000 +3040 407 0.400000 +3040 471 0.400000 +3040 643 0.400000 +3040 682 0.400000 +3040 700 0.400000 +3040 728 0.400000 +3040 756 0.400000 +3040 804 0.400000 +3040 861 0.400000 +3040 880 0.400000 +3040 925 0.400000 +3040 928 0.400000 +3040 968 0.400000 +3040 1109 0.400000 +3040 1134 0.400000 +3040 1145 0.400000 +3040 1146 0.400000 +3040 1204 0.400000 +3040 1221 0.400000 +3040 1230 0.400000 +3040 1304 0.400000 +3040 1322 0.400000 +3040 1339 0.400000 +3040 1395 0.400000 +3040 1455 0.400000 +3040 1492 0.400000 +3040 1510 0.400000 +3040 1539 0.400000 +3040 1660 0.400000 +3040 1681 0.400000 +3040 1779 0.400000 +3040 1795 0.400000 +3040 1894 0.400000 +3040 1909 0.400000 +3040 1917 0.400000 +3040 1983 0.400000 +3040 1990 0.400000 +3040 2022 0.400000 +3040 2049 0.400000 +3040 2083 0.400000 +3040 2094 0.400000 +3040 2169 0.400000 +3040 2195 0.400000 +3040 2221 0.400000 +3040 2259 0.400000 +3040 2282 0.400000 +3040 2283 0.400000 +3040 2314 0.400000 +3040 2327 0.400000 +3040 2419 0.400000 +3040 2596 0.400000 +3040 2642 0.400000 +3040 2657 0.400000 +3040 2659 0.400000 +3040 2679 0.400000 +3040 2734 0.400000 +3040 2798 0.400000 +3040 2857 0.400000 +3040 2879 0.400000 +3040 2881 0.400000 +3040 2931 0.400000 +3040 2976 0.400000 +3040 2987 0.400000 +3040 3058 0.400000 +3040 3097 0.400000 +3040 3103 0.400000 +3040 3119 0.400000 +3040 3125 0.400000 +3040 3148 0.400000 +3040 3178 0.400000 +3041 15 0.400000 +3041 25 0.400000 +3041 126 0.400000 +3041 188 0.400000 +3041 320 0.400000 +3041 333 0.400000 +3041 393 0.400000 +3041 495 0.400000 +3041 547 0.400000 +3041 562 0.400000 +3041 608 0.400000 +3041 632 0.400000 +3041 687 0.400000 +3041 694 0.400000 +3041 733 0.400000 +3041 785 0.400000 +3041 830 0.400000 +3041 839 0.400000 +3041 917 0.400000 +3041 925 0.400000 +3041 1031 0.400000 +3041 1064 0.400000 +3041 1094 0.400000 +3041 1097 0.400000 +3041 1141 0.400000 +3041 1169 0.400000 +3041 1172 0.400000 +3041 1176 0.400000 +3041 1262 0.400000 +3041 1301 0.400000 +3041 1345 0.400000 +3041 1372 0.400000 +3041 1375 0.400000 +3041 1512 0.400000 +3041 1572 0.400000 +3041 1574 0.400000 +3041 1667 0.400000 +3041 1717 0.400000 +3041 1880 0.400000 +3041 1905 0.400000 +3041 1920 0.400000 +3041 1939 0.400000 +3041 1968 0.400000 +3041 1975 0.400000 +3041 2005 0.400000 +3041 2063 0.400000 +3041 2084 0.400000 +3041 2279 0.400000 +3041 2363 0.400000 +3041 2416 0.400000 +3041 2470 0.400000 +3041 2490 0.400000 +3041 2542 0.400000 +3041 2577 0.400000 +3041 2609 0.400000 +3041 2612 0.400000 +3041 2719 0.400000 +3041 2781 0.400000 +3041 2806 0.400000 +3041 2842 0.400000 +3041 2862 0.400000 +3041 2968 0.400000 +3041 3107 0.400000 +3041 3148 0.400000 +3042 36 0.400000 +3042 59 0.400000 +3042 238 0.400000 +3042 282 0.400000 +3042 337 0.400000 +3042 348 0.400000 +3042 353 0.400000 +3042 398 0.400000 +3042 428 0.400000 +3042 433 0.400000 +3042 498 0.400000 +3042 499 0.400000 +3042 542 0.400000 +3042 588 0.400000 +3042 599 0.400000 +3042 620 0.400000 +3042 653 0.400000 +3042 731 0.400000 +3042 738 0.400000 +3042 897 0.400000 +3042 908 0.400000 +3042 955 0.400000 +3042 1018 0.400000 +3042 1115 0.400000 +3042 1161 0.400000 +3042 1177 0.400000 +3042 1214 0.400000 +3042 1240 0.400000 +3042 1277 0.400000 +3042 1386 0.400000 +3042 1456 0.400000 +3042 1491 0.400000 +3042 1531 0.400000 +3042 1555 0.400000 +3042 1586 0.400000 +3042 1633 0.400000 +3042 1642 0.400000 +3042 1756 0.400000 +3042 1781 0.400000 +3042 1782 0.400000 +3042 1831 0.400000 +3042 1838 0.400000 +3042 1914 0.400000 +3042 2238 0.400000 +3042 2315 0.400000 +3042 2364 0.400000 +3042 2370 0.400000 +3042 2382 0.400000 +3042 2403 0.400000 +3042 2524 0.400000 +3042 2545 0.400000 +3042 2565 0.400000 +3042 2581 0.400000 +3042 2583 0.400000 +3042 2680 0.400000 +3042 2827 0.400000 +3042 2864 0.400000 +3042 2869 0.400000 +3042 2884 0.400000 +3042 2975 0.400000 +3042 3025 0.400000 +3042 3054 0.400000 +3042 3068 0.400000 +3042 3109 0.400000 +3042 3129 0.400000 +3042 3142 0.400000 +3043 18 0.400000 +3043 35 0.400000 +3043 78 0.400000 +3043 105 0.400000 +3043 172 0.400000 +3043 187 0.400000 +3043 188 0.400000 +3043 301 0.400000 +3043 361 0.400000 +3043 395 0.400000 +3043 400 0.400000 +3043 440 0.400000 +3043 480 0.400000 +3043 502 0.400000 +3043 549 0.400000 +3043 556 0.400000 +3043 697 0.400000 +3043 738 0.400000 +3043 753 0.400000 +3043 909 0.400000 +3043 910 0.400000 +3043 929 0.400000 +3043 932 0.400000 +3043 1004 0.400000 +3043 1005 0.400000 +3043 1006 0.400000 +3043 1069 0.400000 +3043 1109 0.400000 +3043 1264 0.400000 +3043 1286 0.400000 +3043 1327 0.400000 +3043 1372 0.400000 +3043 1465 0.400000 +3043 1501 0.400000 +3043 1504 0.400000 +3043 1522 0.400000 +3043 1544 0.400000 +3043 1547 0.400000 +3043 1642 0.400000 +3043 1659 0.400000 +3043 1669 0.400000 +3043 1711 0.400000 +3043 1745 0.400000 +3043 1750 0.400000 +3043 1778 0.400000 +3043 1801 0.400000 +3043 1805 0.400000 +3043 1829 0.400000 +3043 2005 0.400000 +3043 2043 0.400000 +3043 2049 0.400000 +3043 2141 0.400000 +3043 2266 0.400000 +3043 2304 0.400000 +3043 2354 0.400000 +3043 2408 0.400000 +3043 2444 0.400000 +3043 2502 0.400000 +3043 2541 0.400000 +3043 2631 0.400000 +3043 2803 0.400000 +3043 2836 0.400000 +3043 2902 0.400000 +3043 3102 0.400000 +3043 3133 0.400000 +3043 3142 0.400000 +3043 3148 0.400000 +3044 126 0.400000 +3044 184 0.400000 +3044 255 0.400000 +3044 258 0.400000 +3044 371 0.400000 +3044 377 0.400000 +3044 406 0.400000 +3044 463 0.400000 +3044 659 0.400000 +3044 723 0.400000 +3044 828 0.400000 +3044 890 0.400000 +3044 984 0.400000 +3044 1184 0.400000 +3044 1192 0.400000 +3044 1201 0.400000 +3044 1208 0.400000 +3044 1312 0.400000 +3044 1391 0.400000 +3044 1441 0.400000 +3044 1497 0.400000 +3044 1510 0.400000 +3044 1619 0.400000 +3044 1818 0.400000 +3044 1822 0.400000 +3044 1875 0.400000 +3044 1960 0.400000 +3044 2003 0.400000 +3044 2072 0.400000 +3044 2095 0.400000 +3044 2098 0.400000 +3044 2181 0.400000 +3044 2187 0.400000 +3044 2236 0.400000 +3044 2241 0.400000 +3044 2288 0.400000 +3044 2424 0.400000 +3044 2600 0.400000 +3044 2650 0.400000 +3044 2719 0.400000 +3044 2857 0.400000 +3044 2883 0.400000 +3044 2890 0.400000 +3044 2954 0.400000 +3044 2962 0.400000 +3044 2995 0.400000 +3044 3063 0.400000 +3044 3067 0.400000 +3044 3151 0.400000 +3045 148 0.400000 +3045 188 0.400000 +3045 279 0.400000 +3045 305 0.400000 +3045 364 0.400000 +3045 370 0.400000 +3045 427 0.400000 +3045 461 0.400000 +3045 463 0.400000 +3045 510 0.400000 +3045 681 0.400000 +3045 775 0.400000 +3045 823 0.400000 +3045 847 0.400000 +3045 853 0.400000 +3045 927 0.400000 +3045 940 0.400000 +3045 952 0.400000 +3045 981 0.400000 +3045 1227 0.400000 +3045 1347 0.400000 +3045 1403 0.400000 +3045 1413 0.400000 +3045 1418 0.400000 +3045 1472 0.400000 +3045 1487 0.400000 +3045 1507 0.400000 +3045 1568 0.400000 +3045 1650 0.400000 +3045 1702 0.400000 +3045 1826 0.400000 +3045 1890 0.400000 +3045 1892 0.400000 +3045 1923 0.400000 +3045 2067 0.400000 +3045 2095 0.400000 +3045 2119 0.400000 +3045 2146 0.400000 +3045 2251 0.400000 +3045 2284 0.400000 +3045 2406 0.400000 +3045 2407 0.400000 +3045 2436 0.400000 +3045 2460 0.400000 +3045 2649 0.400000 +3045 2705 0.400000 +3045 2809 0.400000 +3045 2812 0.400000 +3045 2828 0.400000 +3045 2841 0.400000 +3045 2860 0.400000 +3045 2875 0.400000 +3045 2887 0.400000 +3045 2919 0.400000 +3045 2930 0.400000 +3045 2964 0.400000 +3045 2970 0.400000 +3045 3034 0.400000 +3045 3063 0.400000 +3045 3091 0.400000 +3045 3125 0.400000 +3045 3165 0.400000 +3045 3196 0.400000 +3046 47 0.400000 +3046 52 0.400000 +3046 155 0.400000 +3046 164 0.400000 +3046 240 0.400000 +3046 269 0.400000 +3046 450 0.400000 +3046 465 0.400000 +3046 512 0.400000 +3046 518 0.400000 +3046 592 0.400000 +3046 671 0.400000 +3046 721 0.400000 +3046 724 0.400000 +3046 735 0.400000 +3046 841 0.400000 +3046 897 0.400000 +3046 954 0.400000 +3046 991 0.400000 +3046 1133 0.400000 +3046 1170 0.400000 +3046 1205 0.400000 +3046 1225 0.400000 +3046 1251 0.400000 +3046 1392 0.400000 +3046 1439 0.400000 +3046 1462 0.400000 +3046 1488 0.400000 +3046 1502 0.400000 +3046 1509 0.400000 +3046 1514 0.400000 +3046 1554 0.400000 +3046 1576 0.400000 +3046 1586 0.400000 +3046 1603 0.400000 +3046 1648 0.400000 +3046 1657 0.400000 +3046 1809 0.400000 +3046 1875 0.400000 +3046 1926 0.400000 +3046 2003 0.400000 +3046 2249 0.400000 +3046 2253 0.400000 +3046 2263 0.400000 +3046 2301 0.400000 +3046 2333 0.400000 +3046 2334 0.400000 +3046 2456 0.400000 +3046 2459 0.400000 +3046 2488 0.400000 +3046 2511 0.400000 +3046 2537 0.400000 +3046 2549 0.400000 +3046 2561 0.400000 +3046 2672 0.400000 +3046 2708 0.400000 +3046 2748 0.400000 +3046 2930 0.400000 +3046 3000 0.400000 +3046 3005 0.400000 +3046 3059 0.400000 +3046 3108 0.400000 +3046 3172 0.400000 +3046 3177 0.400000 +3047 101 0.400000 +3047 121 0.400000 +3047 126 0.400000 +3047 258 0.400000 +3047 270 0.400000 +3047 300 0.400000 +3047 349 0.400000 +3047 363 0.400000 +3047 520 0.400000 +3047 527 0.400000 +3047 532 0.400000 +3047 575 0.400000 +3047 611 0.400000 +3047 630 0.400000 +3047 632 0.400000 +3047 666 0.400000 +3047 668 0.400000 +3047 790 0.400000 +3047 813 0.400000 +3047 869 0.400000 +3047 998 0.400000 +3047 1208 0.400000 +3047 1230 0.400000 +3047 1232 0.400000 +3047 1259 0.400000 +3047 1307 0.400000 +3047 1574 0.400000 +3047 1646 0.400000 +3047 1705 0.400000 +3047 1717 0.400000 +3047 1760 0.400000 +3047 1811 0.400000 +3047 1820 0.400000 +3047 1825 0.400000 +3047 1908 0.400000 +3047 1940 0.400000 +3047 2107 0.400000 +3047 2173 0.400000 +3047 2265 0.400000 +3047 2353 0.400000 +3047 2376 0.400000 +3047 2377 0.400000 +3047 2386 0.400000 +3047 2388 0.400000 +3047 2485 0.400000 +3047 2488 0.400000 +3047 2532 0.400000 +3047 2560 0.400000 +3047 2569 0.400000 +3047 2593 0.400000 +3047 2720 0.400000 +3047 2740 0.400000 +3047 2839 0.400000 +3047 2879 0.400000 +3047 2981 0.400000 +3047 2985 0.400000 +3047 3052 0.400000 +3047 3075 0.400000 +3047 3092 0.400000 +3047 3097 0.400000 +3048 107 0.400000 +3048 144 0.400000 +3048 166 0.400000 +3048 199 0.400000 +3048 215 0.400000 +3048 236 0.400000 +3048 352 0.400000 +3048 424 0.400000 +3048 453 0.400000 +3048 558 0.400000 +3048 728 0.400000 +3048 808 0.400000 +3048 927 0.400000 +3048 1063 0.400000 +3048 1197 0.400000 +3048 1207 0.400000 +3048 1377 0.400000 +3048 1425 0.400000 +3048 1477 0.400000 +3048 1483 0.400000 +3048 1496 0.400000 +3048 1499 0.400000 +3048 1540 0.400000 +3048 1643 0.400000 +3048 1679 0.400000 +3048 1826 0.400000 +3048 1846 0.400000 +3048 1975 0.400000 +3048 1982 0.400000 +3048 2011 0.400000 +3048 2015 0.400000 +3048 2040 0.400000 +3048 2048 0.400000 +3048 2125 0.400000 +3048 2134 0.400000 +3048 2267 0.400000 +3048 2307 0.400000 +3048 2443 0.400000 +3048 2677 0.400000 +3048 2713 0.400000 +3048 2780 0.400000 +3048 2865 0.400000 +3048 2982 0.400000 +3048 2983 0.400000 +3048 3006 0.400000 +3048 3010 0.400000 +3048 3080 0.400000 +3049 46 0.400000 +3049 96 0.400000 +3049 139 0.400000 +3049 169 0.400000 +3049 365 0.400000 +3049 373 0.400000 +3049 386 0.400000 +3049 436 0.400000 +3049 437 0.400000 +3049 476 0.400000 +3049 526 0.400000 +3049 633 0.400000 +3049 770 0.400000 +3049 914 0.400000 +3049 1024 0.400000 +3049 1048 0.400000 +3049 1051 0.400000 +3049 1069 0.400000 +3049 1141 0.400000 +3049 1201 0.400000 +3049 1272 0.400000 +3049 1307 0.400000 +3049 1361 0.400000 +3049 1403 0.400000 +3049 1476 0.400000 +3049 1500 0.400000 +3049 1574 0.400000 +3049 1628 0.400000 +3049 1644 0.400000 +3049 1676 0.400000 +3049 1687 0.400000 +3049 1761 0.400000 +3049 1766 0.400000 +3049 1796 0.400000 +3049 1838 0.400000 +3049 1910 0.400000 +3049 2121 0.400000 +3049 2159 0.400000 +3049 2179 0.400000 +3049 2260 0.400000 +3049 2281 0.400000 +3049 2332 0.400000 +3049 2373 0.400000 +3049 2384 0.400000 +3049 2423 0.400000 +3049 2485 0.400000 +3049 2528 0.400000 +3049 2552 0.400000 +3049 2605 0.400000 +3049 2721 0.400000 +3049 2737 0.400000 +3049 2781 0.400000 +3049 2790 0.400000 +3049 2795 0.400000 +3049 3042 0.400000 +3049 3048 0.400000 +3049 3091 0.400000 +3049 3094 0.400000 +3049 3126 0.400000 +3049 3156 0.400000 +3049 3174 0.400000 +3049 3179 0.400000 +3050 219 0.400000 +3050 259 0.400000 +3050 273 0.400000 +3050 341 0.400000 +3050 452 0.400000 +3050 458 0.400000 +3050 471 0.400000 +3050 583 0.400000 +3050 590 0.400000 +3050 613 0.400000 +3050 730 0.400000 +3050 815 0.400000 +3050 848 0.400000 +3050 1051 0.400000 +3050 1063 0.400000 +3050 1198 0.400000 +3050 1230 0.400000 +3050 1286 0.400000 +3050 1333 0.400000 +3050 1345 0.400000 +3050 1347 0.400000 +3050 1371 0.400000 +3050 1375 0.400000 +3050 1383 0.400000 +3050 1499 0.400000 +3050 1558 0.400000 +3050 1602 0.400000 +3050 1675 0.400000 +3050 1700 0.400000 +3050 1728 0.400000 +3050 1745 0.400000 +3050 1787 0.400000 +3050 1803 0.400000 +3050 2031 0.400000 +3050 2081 0.400000 +3050 2111 0.400000 +3050 2128 0.400000 +3050 2209 0.400000 +3050 2216 0.400000 +3050 2290 0.400000 +3050 2360 0.400000 +3050 2363 0.400000 +3050 2478 0.400000 +3050 2799 0.400000 +3050 2821 0.400000 +3050 2898 0.400000 +3050 2910 0.400000 +3050 3136 0.400000 +3050 3168 0.400000 +3050 3184 0.400000 +3050 3200 0.400000 +3051 69 0.400000 +3051 149 0.400000 +3051 242 0.400000 +3051 258 0.400000 +3051 265 0.400000 +3051 269 0.400000 +3051 333 0.400000 +3051 448 0.400000 +3051 589 0.400000 +3051 669 0.400000 +3051 675 0.400000 +3051 692 0.400000 +3051 887 0.400000 +3051 1023 0.400000 +3051 1078 0.400000 +3051 1174 0.400000 +3051 1216 0.400000 +3051 1252 0.400000 +3051 1283 0.400000 +3051 1386 0.400000 +3051 1684 0.400000 +3051 1700 0.400000 +3051 1754 0.400000 +3051 1853 0.400000 +3051 1908 0.400000 +3051 1954 0.400000 +3051 1961 0.400000 +3051 1986 0.400000 +3051 2059 0.400000 +3051 2076 0.400000 +3051 2171 0.400000 +3051 2189 0.400000 +3051 2195 0.400000 +3051 2221 0.400000 +3051 2294 0.400000 +3051 2313 0.400000 +3051 2369 0.400000 +3051 2602 0.400000 +3051 2605 0.400000 +3051 2620 0.400000 +3051 2639 0.400000 +3051 2640 0.400000 +3051 2796 0.400000 +3051 2811 0.400000 +3051 2873 0.400000 +3051 2895 0.400000 +3051 3004 0.400000 +3051 3015 0.400000 +3051 3027 0.400000 +3051 3160 0.400000 +3052 17 0.400000 +3052 145 0.400000 +3052 176 0.400000 +3052 220 0.400000 +3052 230 0.400000 +3052 269 0.400000 +3052 485 0.400000 +3052 572 0.400000 +3052 656 0.400000 +3052 710 0.400000 +3052 718 0.400000 +3052 723 0.400000 +3052 786 0.400000 +3052 1096 0.400000 +3052 1153 0.400000 +3052 1168 0.400000 +3052 1169 0.400000 +3052 1193 0.400000 +3052 1232 0.400000 +3052 1243 0.400000 +3052 1246 0.400000 +3052 1256 0.400000 +3052 1309 0.400000 +3052 1311 0.400000 +3052 1321 0.400000 +3052 1335 0.400000 +3052 1372 0.400000 +3052 1388 0.400000 +3052 1425 0.400000 +3052 1511 0.400000 +3052 1513 0.400000 +3052 1554 0.400000 +3052 1562 0.400000 +3052 1624 0.400000 +3052 1665 0.400000 +3052 1694 0.400000 +3052 1699 0.400000 +3052 1719 0.400000 +3052 1813 0.400000 +3052 1906 0.400000 +3052 2027 0.400000 +3052 2036 0.400000 +3052 2047 0.400000 +3052 2088 0.400000 +3052 2112 0.400000 +3052 2148 0.400000 +3052 2166 0.400000 +3052 2204 0.400000 +3052 2315 0.400000 +3052 2325 0.400000 +3052 2351 0.400000 +3052 2454 0.400000 +3052 2477 0.400000 +3052 2570 0.400000 +3052 2748 0.400000 +3052 2783 0.400000 +3052 2821 0.400000 +3052 2892 0.400000 +3052 3035 0.400000 +3052 3036 0.400000 +3052 3037 0.400000 +3052 3079 0.400000 +3052 3117 0.400000 +3052 3151 0.400000 +3052 3173 0.400000 +3052 3182 0.400000 +3053 4 0.400000 +3053 57 0.400000 +3053 129 0.400000 +3053 137 0.400000 +3053 248 0.400000 +3053 254 0.400000 +3053 602 0.400000 +3053 655 0.400000 +3053 862 0.400000 +3053 865 0.400000 +3053 940 0.400000 +3053 974 0.400000 +3053 987 0.400000 +3053 997 0.400000 +3053 998 0.400000 +3053 1122 0.400000 +3053 1135 0.400000 +3053 1276 0.400000 +3053 1283 0.400000 +3053 1296 0.400000 +3053 1426 0.400000 +3053 1541 0.400000 +3053 1610 0.400000 +3053 1622 0.400000 +3053 1802 0.400000 +3053 1834 0.400000 +3053 1861 0.400000 +3053 2034 0.400000 +3053 2043 0.400000 +3053 2095 0.400000 +3053 2115 0.400000 +3053 2284 0.400000 +3053 2359 0.400000 +3053 2480 0.400000 +3053 2566 0.400000 +3053 2609 0.400000 +3053 2610 0.400000 +3053 2703 0.400000 +3053 2724 0.400000 +3053 2728 0.400000 +3053 2866 0.400000 +3053 2895 0.400000 +3053 2905 0.400000 +3053 2975 0.400000 +3053 2978 0.400000 +3053 2992 0.400000 +3053 3111 0.400000 +3053 3122 0.400000 +3053 3180 0.400000 +3054 35 0.400000 +3054 42 0.400000 +3054 52 0.400000 +3054 120 0.400000 +3054 223 0.400000 +3054 233 0.400000 +3054 290 0.400000 +3054 393 0.400000 +3054 404 0.400000 +3054 415 0.400000 +3054 421 0.400000 +3054 479 0.400000 +3054 484 0.400000 +3054 515 0.400000 +3054 705 0.400000 +3054 734 0.400000 +3054 902 0.400000 +3054 907 0.400000 +3054 945 0.400000 +3054 959 0.400000 +3054 1064 0.400000 +3054 1079 0.400000 +3054 1173 0.400000 +3054 1209 0.400000 +3054 1244 0.400000 +3054 1264 0.400000 +3054 1408 0.400000 +3054 1473 0.400000 +3054 1526 0.400000 +3054 1528 0.400000 +3054 1559 0.400000 +3054 1635 0.400000 +3054 1668 0.400000 +3054 1670 0.400000 +3054 1810 0.400000 +3054 1966 0.400000 +3054 1990 0.400000 +3054 2033 0.400000 +3054 2081 0.400000 +3054 2153 0.400000 +3054 2197 0.400000 +3054 2239 0.400000 +3054 2330 0.400000 +3054 2366 0.400000 +3054 2382 0.400000 +3054 2467 0.400000 +3054 2572 0.400000 +3054 2635 0.400000 +3054 2670 0.400000 +3054 2672 0.400000 +3054 2708 0.400000 +3054 2738 0.400000 +3054 2812 0.400000 +3054 2813 0.400000 +3054 2905 0.400000 +3054 3026 0.400000 +3054 3071 0.400000 +3054 3091 0.400000 +3054 3128 0.400000 +3054 3129 0.400000 +3054 3198 0.400000 +3055 155 0.400000 +3055 173 0.400000 +3055 211 0.400000 +3055 316 0.400000 +3055 334 0.400000 +3055 335 0.400000 +3055 410 0.400000 +3055 431 0.400000 +3055 433 0.400000 +3055 477 0.400000 +3055 574 0.400000 +3055 648 0.400000 +3055 789 0.400000 +3055 820 0.400000 +3055 853 0.400000 +3055 930 0.400000 +3055 931 0.400000 +3055 975 0.400000 +3055 1033 0.400000 +3055 1087 0.400000 +3055 1091 0.400000 +3055 1145 0.400000 +3055 1152 0.400000 +3055 1156 0.400000 +3055 1178 0.400000 +3055 1307 0.400000 +3055 1327 0.400000 +3055 1476 0.400000 +3055 1561 0.400000 +3055 1653 0.400000 +3055 1660 0.400000 +3055 1799 0.400000 +3055 1823 0.400000 +3055 1832 0.400000 +3055 1836 0.400000 +3055 1918 0.400000 +3055 1929 0.400000 +3055 2146 0.400000 +3055 2149 0.400000 +3055 2205 0.400000 +3055 2225 0.400000 +3055 2249 0.400000 +3055 2257 0.400000 +3055 2276 0.400000 +3055 2286 0.400000 +3055 2309 0.400000 +3055 2679 0.400000 +3055 2681 0.400000 +3055 2860 0.400000 +3055 2861 0.400000 +3055 2865 0.400000 +3055 2867 0.400000 +3055 2919 0.400000 +3055 3010 0.400000 +3055 3015 0.400000 +3055 3071 0.400000 +3055 3092 0.400000 +3055 3170 0.400000 +3056 44 0.400000 +3056 124 0.400000 +3056 178 0.400000 +3056 213 0.400000 +3056 257 0.400000 +3056 266 0.400000 +3056 435 0.400000 +3056 513 0.400000 +3056 638 0.400000 +3056 650 0.400000 +3056 690 0.400000 +3056 850 0.400000 +3056 1119 0.400000 +3056 1155 0.400000 +3056 1177 0.400000 +3056 1217 0.400000 +3056 1222 0.400000 +3056 1244 0.400000 +3056 1280 0.400000 +3056 1281 0.400000 +3056 1284 0.400000 +3056 1327 0.400000 +3056 1390 0.400000 +3056 1395 0.400000 +3056 1482 0.400000 +3056 1585 0.400000 +3056 1607 0.400000 +3056 1624 0.400000 +3056 1690 0.400000 +3056 1839 0.400000 +3056 1860 0.400000 +3056 1987 0.400000 +3056 2018 0.400000 +3056 2028 0.400000 +3056 2034 0.400000 +3056 2043 0.400000 +3056 2068 0.400000 +3056 2077 0.400000 +3056 2182 0.400000 +3056 2213 0.400000 +3056 2366 0.400000 +3056 2367 0.400000 +3056 2421 0.400000 +3056 2608 0.400000 +3056 2650 0.400000 +3056 2659 0.400000 +3056 2694 0.400000 +3056 2702 0.400000 +3056 2744 0.400000 +3056 2772 0.400000 +3056 2805 0.400000 +3056 2822 0.400000 +3056 2853 0.400000 +3056 2854 0.400000 +3056 2867 0.400000 +3056 2872 0.400000 +3056 2875 0.400000 +3056 2925 0.400000 +3056 3035 0.400000 +3056 3054 0.400000 +3056 3154 0.400000 +3056 3195 0.400000 +3056 3196 0.400000 +3057 29 0.400000 +3057 70 0.400000 +3057 146 0.400000 +3057 209 0.400000 +3057 382 0.400000 +3057 385 0.400000 +3057 390 0.400000 +3057 406 0.400000 +3057 416 0.400000 +3057 423 0.400000 +3057 438 0.400000 +3057 571 0.400000 +3057 708 0.400000 +3057 767 0.400000 +3057 771 0.400000 +3057 772 0.400000 +3057 835 0.400000 +3057 839 0.400000 +3057 885 0.400000 +3057 888 0.400000 +3057 904 0.400000 +3057 982 0.400000 +3057 1012 0.400000 +3057 1039 0.400000 +3057 1049 0.400000 +3057 1127 0.400000 +3057 1157 0.400000 +3057 1188 0.400000 +3057 1199 0.400000 +3057 1228 0.400000 +3057 1333 0.400000 +3057 1336 0.400000 +3057 1442 0.400000 +3057 1466 0.400000 +3057 1632 0.400000 +3057 1664 0.400000 +3057 1760 0.400000 +3057 1782 0.400000 +3057 1789 0.400000 +3057 1860 0.400000 +3057 1861 0.400000 +3057 1868 0.400000 +3057 1913 0.400000 +3057 1979 0.400000 +3057 2035 0.400000 +3057 2049 0.400000 +3057 2142 0.400000 +3057 2166 0.400000 +3057 2205 0.400000 +3057 2224 0.400000 +3057 2226 0.400000 +3057 2296 0.400000 +3057 2312 0.400000 +3057 2361 0.400000 +3057 2501 0.400000 +3057 2512 0.400000 +3057 2519 0.400000 +3057 2682 0.400000 +3057 2732 0.400000 +3057 2756 0.400000 +3057 2765 0.400000 +3057 2766 0.400000 +3057 2816 0.400000 +3057 2887 0.400000 +3057 2929 0.400000 +3057 2934 0.400000 +3057 2960 0.400000 +3057 3000 0.400000 +3057 3056 0.400000 +3057 3083 0.400000 +3057 3086 0.400000 +3057 3131 0.400000 +3057 3167 0.400000 +3058 71 0.400000 +3058 136 0.400000 +3058 140 0.400000 +3058 182 0.400000 +3058 189 0.400000 +3058 226 0.400000 +3058 383 0.400000 +3058 394 0.400000 +3058 405 0.400000 +3058 452 0.400000 +3058 483 0.400000 +3058 485 0.400000 +3058 665 0.400000 +3058 669 0.400000 +3058 756 0.400000 +3058 766 0.400000 +3058 799 0.400000 +3058 807 0.400000 +3058 866 0.400000 +3058 963 0.400000 +3058 1004 0.400000 +3058 1036 0.400000 +3058 1049 0.400000 +3058 1120 0.400000 +3058 1137 0.400000 +3058 1224 0.400000 +3058 1257 0.400000 +3058 1295 0.400000 +3058 1337 0.400000 +3058 1345 0.400000 +3058 1465 0.400000 +3058 1477 0.400000 +3058 1486 0.400000 +3058 1490 0.400000 +3058 1498 0.400000 +3058 1568 0.400000 +3058 1680 0.400000 +3058 1722 0.400000 +3058 1839 0.400000 +3058 1934 0.400000 +3058 2049 0.400000 +3058 2057 0.400000 +3058 2062 0.400000 +3058 2108 0.400000 +3058 2143 0.400000 +3058 2177 0.400000 +3058 2194 0.400000 +3058 2195 0.400000 +3058 2221 0.400000 +3058 2294 0.400000 +3058 2316 0.400000 +3058 2369 0.400000 +3058 2377 0.400000 +3058 2387 0.400000 +3058 2425 0.400000 +3058 2428 0.400000 +3058 2544 0.400000 +3058 2569 0.400000 +3058 2614 0.400000 +3058 2627 0.400000 +3058 2710 0.400000 +3058 2788 0.400000 +3058 2792 0.400000 +3058 2795 0.400000 +3058 2802 0.400000 +3058 2940 0.400000 +3058 3024 0.400000 +3058 3033 0.400000 +3058 3089 0.400000 +3058 3150 0.400000 +3058 3173 0.400000 +3058 3180 0.400000 +3059 18 0.400000 +3059 24 0.400000 +3059 53 0.400000 +3059 71 0.400000 +3059 118 0.400000 +3059 132 0.400000 +3059 179 0.400000 +3059 210 0.400000 +3059 219 0.400000 +3059 259 0.400000 +3059 394 0.400000 +3059 432 0.400000 +3059 445 0.400000 +3059 617 0.400000 +3059 653 0.400000 +3059 742 0.400000 +3059 768 0.400000 +3059 772 0.400000 +3059 802 0.400000 +3059 810 0.400000 +3059 815 0.400000 +3059 877 0.400000 +3059 924 0.400000 +3059 999 0.400000 +3059 1007 0.400000 +3059 1077 0.400000 +3059 1090 0.400000 +3059 1095 0.400000 +3059 1122 0.400000 +3059 1133 0.400000 +3059 1151 0.400000 +3059 1158 0.400000 +3059 1187 0.400000 +3059 1528 0.400000 +3059 1662 0.400000 +3059 1713 0.400000 +3059 1748 0.400000 +3059 1757 0.400000 +3059 2015 0.400000 +3059 2084 0.400000 +3059 2093 0.400000 +3059 2245 0.400000 +3059 2353 0.400000 +3059 2468 0.400000 +3059 2490 0.400000 +3059 2544 0.400000 +3059 2597 0.400000 +3059 2779 0.400000 +3059 2919 0.400000 +3059 2930 0.400000 +3059 2939 0.400000 +3059 2952 0.400000 +3059 2955 0.400000 +3059 3006 0.400000 +3060 41 0.400000 +3060 74 0.400000 +3060 92 0.400000 +3060 145 0.400000 +3060 161 0.400000 +3060 211 0.400000 +3060 217 0.400000 +3060 303 0.400000 +3060 366 0.400000 +3060 368 0.400000 +3060 449 0.400000 +3060 548 0.400000 +3060 559 0.400000 +3060 574 0.400000 +3060 674 0.400000 +3060 848 0.400000 +3060 894 0.400000 +3060 906 0.400000 +3060 958 0.400000 +3060 1098 0.400000 +3060 1104 0.400000 +3060 1148 0.400000 +3060 1179 0.400000 +3060 1182 0.400000 +3060 1210 0.400000 +3060 1240 0.400000 +3060 1345 0.400000 +3060 1346 0.400000 +3060 1349 0.400000 +3060 1391 0.400000 +3060 1416 0.400000 +3060 1430 0.400000 +3060 1484 0.400000 +3060 1554 0.400000 +3060 1583 0.400000 +3060 1592 0.400000 +3060 1614 0.400000 +3060 1680 0.400000 +3060 1694 0.400000 +3060 1817 0.400000 +3060 1818 0.400000 +3060 1876 0.400000 +3060 1896 0.400000 +3060 1954 0.400000 +3060 2000 0.400000 +3060 2042 0.400000 +3060 2160 0.400000 +3060 2244 0.400000 +3060 2282 0.400000 +3060 2300 0.400000 +3060 2333 0.400000 +3060 2431 0.400000 +3060 2451 0.400000 +3060 2460 0.400000 +3060 2602 0.400000 +3060 2642 0.400000 +3060 2805 0.400000 +3060 2884 0.400000 +3060 2956 0.400000 +3060 3002 0.400000 +3060 3060 0.400000 +3060 3093 0.400000 +3060 3100 0.400000 +3060 3113 0.400000 +3060 3120 0.400000 +3060 3148 0.400000 +3061 14 0.400000 +3061 69 0.400000 +3061 84 0.400000 +3061 143 0.400000 +3061 146 0.400000 +3061 182 0.400000 +3061 198 0.400000 +3061 203 0.400000 +3061 225 0.400000 +3061 236 0.400000 +3061 326 0.400000 +3061 336 0.400000 +3061 399 0.400000 +3061 423 0.400000 +3061 434 0.400000 +3061 440 0.400000 +3061 442 0.400000 +3061 531 0.400000 +3061 557 0.400000 +3061 571 0.400000 +3061 670 0.400000 +3061 692 0.400000 +3061 715 0.400000 +3061 763 0.400000 +3061 780 0.400000 +3061 811 0.400000 +3061 824 0.400000 +3061 857 0.400000 +3061 877 0.400000 +3061 984 0.400000 +3061 998 0.400000 +3061 1050 0.400000 +3061 1205 0.400000 +3061 1264 0.400000 +3061 1317 0.400000 +3061 1330 0.400000 +3061 1343 0.400000 +3061 1354 0.400000 +3061 1453 0.400000 +3061 1467 0.400000 +3061 1583 0.400000 +3061 1655 0.400000 +3061 1670 0.400000 +3061 1734 0.400000 +3061 1744 0.400000 +3061 1798 0.400000 +3061 1823 0.400000 +3061 1837 0.400000 +3061 1913 0.400000 +3061 1941 0.400000 +3061 1944 0.400000 +3061 1957 0.400000 +3061 2018 0.400000 +3061 2095 0.400000 +3061 2108 0.400000 +3061 2262 0.400000 +3061 2352 0.400000 +3061 2389 0.400000 +3061 2414 0.400000 +3061 2602 0.400000 +3061 2603 0.400000 +3061 2667 0.400000 +3061 2751 0.400000 +3061 2775 0.400000 +3061 2813 0.400000 +3061 2924 0.400000 +3061 2968 0.400000 +3061 3003 0.400000 +3061 3043 0.400000 +3062 29 0.400000 +3062 61 0.400000 +3062 96 0.400000 +3062 102 0.400000 +3062 153 0.400000 +3062 158 0.400000 +3062 238 0.400000 +3062 281 0.400000 +3062 288 0.400000 +3062 314 0.400000 +3062 377 0.400000 +3062 478 0.400000 +3062 524 0.400000 +3062 526 0.400000 +3062 563 0.400000 +3062 570 0.400000 +3062 577 0.400000 +3062 645 0.400000 +3062 651 0.400000 +3062 741 0.400000 +3062 794 0.400000 +3062 816 0.400000 +3062 846 0.400000 +3062 881 0.400000 +3062 922 0.400000 +3062 927 0.400000 +3062 954 0.400000 +3062 965 0.400000 +3062 1104 0.400000 +3062 1110 0.400000 +3062 1117 0.400000 +3062 1129 0.400000 +3062 1170 0.400000 +3062 1271 0.400000 +3062 1283 0.400000 +3062 1297 0.400000 +3062 1493 0.400000 +3062 1499 0.400000 +3062 1526 0.400000 +3062 1538 0.400000 +3062 1588 0.400000 +3062 1637 0.400000 +3062 1683 0.400000 +3062 1720 0.400000 +3062 1746 0.400000 +3062 1784 0.400000 +3062 1899 0.400000 +3062 1952 0.400000 +3062 2044 0.400000 +3062 2101 0.400000 +3062 2106 0.400000 +3062 2136 0.400000 +3062 2231 0.400000 +3062 2253 0.400000 +3062 2275 0.400000 +3062 2334 0.400000 +3062 2350 0.400000 +3062 2425 0.400000 +3062 2459 0.400000 +3062 2472 0.400000 +3062 2505 0.400000 +3062 2507 0.400000 +3062 2521 0.400000 +3062 2554 0.400000 +3062 2565 0.400000 +3062 2574 0.400000 +3062 2591 0.400000 +3062 2679 0.400000 +3062 2782 0.400000 +3062 2792 0.400000 +3062 2833 0.400000 +3062 2836 0.400000 +3062 2845 0.400000 +3062 2849 0.400000 +3062 2962 0.400000 +3062 2984 0.400000 +3062 2995 0.400000 +3062 3091 0.400000 +3062 3103 0.400000 +3062 3109 0.400000 +3062 3114 0.400000 +3062 3121 0.400000 +3063 2 0.400000 +3063 71 0.400000 +3063 117 0.400000 +3063 187 0.400000 +3063 244 0.400000 +3063 324 0.400000 +3063 346 0.400000 +3063 377 0.400000 +3063 402 0.400000 +3063 431 0.400000 +3063 479 0.400000 +3063 482 0.400000 +3063 502 0.400000 +3063 506 0.400000 +3063 527 0.400000 +3063 569 0.400000 +3063 582 0.400000 +3063 702 0.400000 +3063 746 0.400000 +3063 774 0.400000 +3063 912 0.400000 +3063 940 0.400000 +3063 1007 0.400000 +3063 1062 0.400000 +3063 1140 0.400000 +3063 1195 0.400000 +3063 1263 0.400000 +3063 1302 0.400000 +3063 1432 0.400000 +3063 1554 0.400000 +3063 1655 0.400000 +3063 1706 0.400000 +3063 1709 0.400000 +3063 1769 0.400000 +3063 1793 0.400000 +3063 1837 0.400000 +3063 1901 0.400000 +3063 1974 0.400000 +3063 2018 0.400000 +3063 2077 0.400000 +3063 2111 0.400000 +3063 2130 0.400000 +3063 2258 0.400000 +3063 2431 0.400000 +3063 2448 0.400000 +3063 2449 0.400000 +3063 2460 0.400000 +3063 2648 0.400000 +3063 2663 0.400000 +3063 2708 0.400000 +3063 3002 0.400000 +3063 3014 0.400000 +3063 3098 0.400000 +3063 3147 0.400000 +3063 3153 0.400000 +3064 24 0.400000 +3064 55 0.400000 +3064 124 0.400000 +3064 178 0.400000 +3064 357 0.400000 +3064 441 0.400000 +3064 485 0.400000 +3064 630 0.400000 +3064 648 0.400000 +3064 709 0.400000 +3064 725 0.400000 +3064 818 0.400000 +3064 918 0.400000 +3064 939 0.400000 +3064 1042 0.400000 +3064 1079 0.400000 +3064 1274 0.400000 +3064 1279 0.400000 +3064 1338 0.400000 +3064 1377 0.400000 +3064 1379 0.400000 +3064 1385 0.400000 +3064 1466 0.400000 +3064 1467 0.400000 +3064 1513 0.400000 +3064 1528 0.400000 +3064 1541 0.400000 +3064 1573 0.400000 +3064 1618 0.400000 +3064 1685 0.400000 +3064 1741 0.400000 +3064 1784 0.400000 +3064 1796 0.400000 +3064 1839 0.400000 +3064 1949 0.400000 +3064 1963 0.400000 +3064 2003 0.400000 +3064 2077 0.400000 +3064 2095 0.400000 +3064 2170 0.400000 +3064 2197 0.400000 +3064 2237 0.400000 +3064 2243 0.400000 +3064 2270 0.400000 +3064 2314 0.400000 +3064 2324 0.400000 +3064 2344 0.400000 +3064 2397 0.400000 +3064 2445 0.400000 +3064 2488 0.400000 +3064 2588 0.400000 +3064 2642 0.400000 +3064 2780 0.400000 +3064 2931 0.400000 +3064 2935 0.400000 +3064 2952 0.400000 +3064 2988 0.400000 +3064 2989 0.400000 +3064 2997 0.400000 +3064 3036 0.400000 +3064 3084 0.400000 +3064 3091 0.400000 +3064 3159 0.400000 +3064 3182 0.400000 +3065 24 0.400000 +3065 59 0.400000 +3065 132 0.400000 +3065 161 0.400000 +3065 219 0.400000 +3065 319 0.400000 +3065 323 0.400000 +3065 331 0.400000 +3065 408 0.400000 +3065 448 0.400000 +3065 549 0.400000 +3065 683 0.400000 +3065 700 0.400000 +3065 719 0.400000 +3065 767 0.400000 +3065 965 0.400000 +3065 1006 0.400000 +3065 1036 0.400000 +3065 1055 0.400000 +3065 1101 0.400000 +3065 1108 0.400000 +3065 1118 0.400000 +3065 1120 0.400000 +3065 1142 0.400000 +3065 1181 0.400000 +3065 1192 0.400000 +3065 1230 0.400000 +3065 1286 0.400000 +3065 1412 0.400000 +3065 1419 0.400000 +3065 1427 0.400000 +3065 1450 0.400000 +3065 1489 0.400000 +3065 1518 0.400000 +3065 1523 0.400000 +3065 1563 0.400000 +3065 1661 0.400000 +3065 1677 0.400000 +3065 1678 0.400000 +3065 1830 0.400000 +3065 1881 0.400000 +3065 1928 0.400000 +3065 1966 0.400000 +3065 2019 0.400000 +3065 2046 0.400000 +3065 2061 0.400000 +3065 2079 0.400000 +3065 2253 0.400000 +3065 2268 0.400000 +3065 2283 0.400000 +3065 2302 0.400000 +3065 2386 0.400000 +3065 2447 0.400000 +3065 2482 0.400000 +3065 2545 0.400000 +3065 2655 0.400000 +3065 2675 0.400000 +3065 2801 0.400000 +3065 2829 0.400000 +3065 2921 0.400000 +3065 2923 0.400000 +3065 2928 0.400000 +3065 2942 0.400000 +3065 2957 0.400000 +3065 2959 0.400000 +3065 3008 0.400000 +3065 3015 0.400000 +3065 3116 0.400000 +3065 3118 0.400000 +3066 3 0.400000 +3066 11 0.400000 +3066 72 0.400000 +3066 233 0.400000 +3066 253 0.400000 +3066 288 0.400000 +3066 290 0.400000 +3066 436 0.400000 +3066 451 0.400000 +3066 469 0.400000 +3066 512 0.400000 +3066 569 0.400000 +3066 593 0.400000 +3066 674 0.400000 +3066 677 0.400000 +3066 723 0.400000 +3066 751 0.400000 +3066 753 0.400000 +3066 787 0.400000 +3066 931 0.400000 +3066 940 0.400000 +3066 1043 0.400000 +3066 1096 0.400000 +3066 1163 0.400000 +3066 1236 0.400000 +3066 1314 0.400000 +3066 1341 0.400000 +3066 1373 0.400000 +3066 1426 0.400000 +3066 1456 0.400000 +3066 1546 0.400000 +3066 1552 0.400000 +3066 1595 0.400000 +3066 1621 0.400000 +3066 1626 0.400000 +3066 1643 0.400000 +3066 1688 0.400000 +3066 1757 0.400000 +3066 1817 0.400000 +3066 1842 0.400000 +3066 2028 0.400000 +3066 2058 0.400000 +3066 2146 0.400000 +3066 2175 0.400000 +3066 2176 0.400000 +3066 2270 0.400000 +3066 2325 0.400000 +3066 2373 0.400000 +3066 2396 0.400000 +3066 2641 0.400000 +3066 2754 0.400000 +3066 2847 0.400000 +3066 2926 0.400000 +3066 2929 0.400000 +3066 2953 0.400000 +3066 2996 0.400000 +3066 3016 0.400000 +3066 3139 0.400000 +3066 3188 0.400000 +3067 4 0.400000 +3067 112 0.400000 +3067 297 0.400000 +3067 333 0.400000 +3067 344 0.400000 +3067 346 0.400000 +3067 359 0.400000 +3067 462 0.400000 +3067 493 0.400000 +3067 668 0.400000 +3067 689 0.400000 +3067 764 0.400000 +3067 780 0.400000 +3067 830 0.400000 +3067 898 0.400000 +3067 973 0.400000 +3067 1115 0.400000 +3067 1407 0.400000 +3067 1431 0.400000 +3067 1480 0.400000 +3067 1598 0.400000 +3067 1616 0.400000 +3067 1726 0.400000 +3067 1746 0.400000 +3067 1749 0.400000 +3067 1832 0.400000 +3067 1843 0.400000 +3067 1911 0.400000 +3067 1985 0.400000 +3067 1991 0.400000 +3067 2000 0.400000 +3067 2019 0.400000 +3067 2022 0.400000 +3067 2023 0.400000 +3067 2043 0.400000 +3067 2045 0.400000 +3067 2118 0.400000 +3067 2212 0.400000 +3067 2245 0.400000 +3067 2381 0.400000 +3067 2474 0.400000 +3067 2506 0.400000 +3067 2509 0.400000 +3067 2526 0.400000 +3067 2534 0.400000 +3067 2546 0.400000 +3067 2552 0.400000 +3067 2555 0.400000 +3067 2562 0.400000 +3067 2584 0.400000 +3067 2644 0.400000 +3067 2649 0.400000 +3067 2667 0.400000 +3067 2689 0.400000 +3067 2793 0.400000 +3067 2802 0.400000 +3067 2813 0.400000 +3067 2826 0.400000 +3067 2837 0.400000 +3067 2940 0.400000 +3067 3023 0.400000 +3067 3082 0.400000 +3067 3137 0.400000 +3068 2 0.400000 +3068 6 0.400000 +3068 16 0.400000 +3068 21 0.400000 +3068 109 0.400000 +3068 138 0.400000 +3068 189 0.400000 +3068 193 0.400000 +3068 346 0.400000 +3068 391 0.400000 +3068 470 0.400000 +3068 550 0.400000 +3068 566 0.400000 +3068 771 0.400000 +3068 797 0.400000 +3068 821 0.400000 +3068 832 0.400000 +3068 901 0.400000 +3068 921 0.400000 +3068 958 0.400000 +3068 1004 0.400000 +3068 1012 0.400000 +3068 1053 0.400000 +3068 1066 0.400000 +3068 1131 0.400000 +3068 1160 0.400000 +3068 1161 0.400000 +3068 1239 0.400000 +3068 1267 0.400000 +3068 1303 0.400000 +3068 1328 0.400000 +3068 1333 0.400000 +3068 1337 0.400000 +3068 1419 0.400000 +3068 1438 0.400000 +3068 1553 0.400000 +3068 1558 0.400000 +3068 1560 0.400000 +3068 1639 0.400000 +3068 1643 0.400000 +3068 1648 0.400000 +3068 1655 0.400000 +3068 1662 0.400000 +3068 1666 0.400000 +3068 1670 0.400000 +3068 1695 0.400000 +3068 1720 0.400000 +3068 1942 0.400000 +3068 2003 0.400000 +3068 2086 0.400000 +3068 2104 0.400000 +3068 2134 0.400000 +3068 2190 0.400000 +3068 2210 0.400000 +3068 2266 0.400000 +3068 2292 0.400000 +3068 2295 0.400000 +3068 2297 0.400000 +3068 2323 0.400000 +3068 2346 0.400000 +3068 2473 0.400000 +3068 2490 0.400000 +3068 2496 0.400000 +3068 2502 0.400000 +3068 2548 0.400000 +3068 2584 0.400000 +3068 2602 0.400000 +3068 2725 0.400000 +3068 2779 0.400000 +3068 2791 0.400000 +3068 2798 0.400000 +3068 2898 0.400000 +3068 2911 0.400000 +3068 2928 0.400000 +3068 2942 0.400000 +3068 2994 0.400000 +3068 3023 0.400000 +3068 3024 0.400000 +3068 3029 0.400000 +3068 3030 0.400000 +3068 3050 0.400000 +3068 3153 0.400000 +3068 3154 0.400000 +3068 3183 0.400000 +3069 131 0.400000 +3069 159 0.400000 +3069 226 0.400000 +3069 244 0.400000 +3069 371 0.400000 +3069 398 0.400000 +3069 405 0.400000 +3069 431 0.400000 +3069 463 0.400000 +3069 523 0.400000 +3069 543 0.400000 +3069 588 0.400000 +3069 590 0.400000 +3069 645 0.400000 +3069 722 0.400000 +3069 766 0.400000 +3069 797 0.400000 +3069 812 0.400000 +3069 849 0.400000 +3069 863 0.400000 +3069 875 0.400000 +3069 913 0.400000 +3069 944 0.400000 +3069 961 0.400000 +3069 1150 0.400000 +3069 1172 0.400000 +3069 1342 0.400000 +3069 1369 0.400000 +3069 1386 0.400000 +3069 1460 0.400000 +3069 1477 0.400000 +3069 1520 0.400000 +3069 1527 0.400000 +3069 1661 0.400000 +3069 1709 0.400000 +3069 1733 0.400000 +3069 1793 0.400000 +3069 1804 0.400000 +3069 1894 0.400000 +3069 1904 0.400000 +3069 1907 0.400000 +3069 1966 0.400000 +3069 1994 0.400000 +3069 2017 0.400000 +3069 2058 0.400000 +3069 2308 0.400000 +3069 2334 0.400000 +3069 2369 0.400000 +3069 2377 0.400000 +3069 2391 0.400000 +3069 2422 0.400000 +3069 2462 0.400000 +3069 2469 0.400000 +3069 2474 0.400000 +3069 2496 0.400000 +3069 2503 0.400000 +3069 2538 0.400000 +3069 2697 0.400000 +3069 2735 0.400000 +3069 2736 0.400000 +3069 2754 0.400000 +3069 2939 0.400000 +3069 2941 0.400000 +3069 2959 0.400000 +3069 2987 0.400000 +3069 3050 0.400000 +3069 3073 0.400000 +3069 3076 0.400000 +3069 3150 0.400000 +3069 3157 0.400000 +3069 3173 0.400000 +3070 177 0.400000 +3070 181 0.400000 +3070 284 0.400000 +3070 362 0.400000 +3070 385 0.400000 +3070 415 0.400000 +3070 486 0.400000 +3070 497 0.400000 +3070 608 0.400000 +3070 667 0.400000 +3070 744 0.400000 +3070 922 0.400000 +3070 945 0.400000 +3070 997 0.400000 +3070 1138 0.400000 +3070 1168 0.400000 +3070 1231 0.400000 +3070 1365 0.400000 +3070 1379 0.400000 +3070 1398 0.400000 +3070 1521 0.400000 +3070 1547 0.400000 +3070 1553 0.400000 +3070 1571 0.400000 +3070 1603 0.400000 +3070 1865 0.400000 +3070 1878 0.400000 +3070 1886 0.400000 +3070 1890 0.400000 +3070 1970 0.400000 +3070 1998 0.400000 +3070 2045 0.400000 +3070 2067 0.400000 +3070 2110 0.400000 +3070 2181 0.400000 +3070 2201 0.400000 +3070 2301 0.400000 +3070 2456 0.400000 +3070 2508 0.400000 +3070 2641 0.400000 +3070 2644 0.400000 +3070 2650 0.400000 +3070 2681 0.400000 +3070 2689 0.400000 +3070 2703 0.400000 +3070 2709 0.400000 +3070 2710 0.400000 +3070 2752 0.400000 +3070 2807 0.400000 +3070 2851 0.400000 +3070 2915 0.400000 +3070 3013 0.400000 +3070 3109 0.400000 +3070 3137 0.400000 +3070 3165 0.400000 +3070 3172 0.400000 +3071 36 0.400000 +3071 77 0.400000 +3071 266 0.400000 +3071 274 0.400000 +3071 361 0.400000 +3071 366 0.400000 +3071 398 0.400000 +3071 400 0.400000 +3071 424 0.400000 +3071 461 0.400000 +3071 494 0.400000 +3071 501 0.400000 +3071 636 0.400000 +3071 719 0.400000 +3071 739 0.400000 +3071 778 0.400000 +3071 783 0.400000 +3071 838 0.400000 +3071 839 0.400000 +3071 840 0.400000 +3071 856 0.400000 +3071 862 0.400000 +3071 924 0.400000 +3071 955 0.400000 +3071 1000 0.400000 +3071 1019 0.400000 +3071 1035 0.400000 +3071 1042 0.400000 +3071 1113 0.400000 +3071 1134 0.400000 +3071 1198 0.400000 +3071 1259 0.400000 +3071 1276 0.400000 +3071 1322 0.400000 +3071 1346 0.400000 +3071 1361 0.400000 +3071 1400 0.400000 +3071 1456 0.400000 +3071 1467 0.400000 +3071 1496 0.400000 +3071 1520 0.400000 +3071 1688 0.400000 +3071 1790 0.400000 +3071 1890 0.400000 +3071 1969 0.400000 +3071 2063 0.400000 +3071 2065 0.400000 +3071 2093 0.400000 +3071 2102 0.400000 +3071 2154 0.400000 +3071 2386 0.400000 +3071 2555 0.400000 +3071 2721 0.400000 +3071 2785 0.400000 +3071 2819 0.400000 +3071 2842 0.400000 +3071 2866 0.400000 +3071 2874 0.400000 +3071 2902 0.400000 +3071 2925 0.400000 +3071 2935 0.400000 +3071 3000 0.400000 +3071 3092 0.400000 +3071 3115 0.400000 +3071 3185 0.400000 +3071 3196 0.400000 +3072 6 0.400000 +3072 17 0.400000 +3072 143 0.400000 +3072 195 0.400000 +3072 302 0.400000 +3072 325 0.400000 +3072 335 0.400000 +3072 342 0.400000 +3072 505 0.400000 +3072 533 0.400000 +3072 593 0.400000 +3072 607 0.400000 +3072 733 0.400000 +3072 792 0.400000 +3072 828 0.400000 +3072 873 0.400000 +3072 890 0.400000 +3072 897 0.400000 +3072 904 0.400000 +3072 952 0.400000 +3072 981 0.400000 +3072 1020 0.400000 +3072 1128 0.400000 +3072 1131 0.400000 +3072 1182 0.400000 +3072 1327 0.400000 +3072 1377 0.400000 +3072 1538 0.400000 +3072 1593 0.400000 +3072 1634 0.400000 +3072 1667 0.400000 +3072 1749 0.400000 +3072 1770 0.400000 +3072 1824 0.400000 +3072 1909 0.400000 +3072 1962 0.400000 +3072 2054 0.400000 +3072 2241 0.400000 +3072 2290 0.400000 +3072 2342 0.400000 +3072 2365 0.400000 +3072 2406 0.400000 +3072 2484 0.400000 +3072 2551 0.400000 +3072 2583 0.400000 +3072 2610 0.400000 +3072 2653 0.400000 +3072 2734 0.400000 +3072 2747 0.400000 +3072 2797 0.400000 +3072 2854 0.400000 +3072 2956 0.400000 +3072 2961 0.400000 +3072 2972 0.400000 +3072 3000 0.400000 +3072 3014 0.400000 +3072 3019 0.400000 +3072 3057 0.400000 +3072 3066 0.400000 +3072 3088 0.400000 +3072 3100 0.400000 +3072 3128 0.400000 +3073 18 0.400000 +3073 27 0.400000 +3073 46 0.400000 +3073 48 0.400000 +3073 112 0.400000 +3073 192 0.400000 +3073 300 0.400000 +3073 303 0.400000 +3073 409 0.400000 +3073 451 0.400000 +3073 453 0.400000 +3073 455 0.400000 +3073 542 0.400000 +3073 586 0.400000 +3073 593 0.400000 +3073 616 0.400000 +3073 626 0.400000 +3073 651 0.400000 +3073 725 0.400000 +3073 727 0.400000 +3073 777 0.400000 +3073 784 0.400000 +3073 962 0.400000 +3073 1005 0.400000 +3073 1048 0.400000 +3073 1094 0.400000 +3073 1124 0.400000 +3073 1130 0.400000 +3073 1165 0.400000 +3073 1209 0.400000 +3073 1301 0.400000 +3073 1356 0.400000 +3073 1576 0.400000 +3073 1578 0.400000 +3073 1619 0.400000 +3073 1620 0.400000 +3073 1761 0.400000 +3073 1788 0.400000 +3073 1801 0.400000 +3073 1865 0.400000 +3073 1949 0.400000 +3073 1950 0.400000 +3073 2034 0.400000 +3073 2059 0.400000 +3073 2090 0.400000 +3073 2189 0.400000 +3073 2325 0.400000 +3073 2345 0.400000 +3073 2482 0.400000 +3073 2528 0.400000 +3073 2558 0.400000 +3073 2567 0.400000 +3073 2682 0.400000 +3073 2684 0.400000 +3073 2789 0.400000 +3073 2880 0.400000 +3073 3053 0.400000 +3073 3115 0.400000 +3073 3124 0.400000 +3073 3157 0.400000 +3073 3192 0.400000 +3074 20 0.400000 +3074 78 0.400000 +3074 99 0.400000 +3074 125 0.400000 +3074 168 0.400000 +3074 208 0.400000 +3074 306 0.400000 +3074 365 0.400000 +3074 436 0.400000 +3074 493 0.400000 +3074 495 0.400000 +3074 527 0.400000 +3074 584 0.400000 +3074 596 0.400000 +3074 793 0.400000 +3074 830 0.400000 +3074 891 0.400000 +3074 898 0.400000 +3074 959 0.400000 +3074 994 0.400000 +3074 1142 0.400000 +3074 1325 0.400000 +3074 1527 0.400000 +3074 1563 0.400000 +3074 1619 0.400000 +3074 1804 0.400000 +3074 1831 0.400000 +3074 2035 0.400000 +3074 2078 0.400000 +3074 2142 0.400000 +3074 2185 0.400000 +3074 2431 0.400000 +3074 2466 0.400000 +3074 2467 0.400000 +3074 2474 0.400000 +3074 2551 0.400000 +3074 2666 0.400000 +3074 2733 0.400000 +3074 2753 0.400000 +3074 2781 0.400000 +3074 2850 0.400000 +3074 2857 0.400000 +3074 2900 0.400000 +3074 3174 0.400000 +3075 82 0.400000 +3075 96 0.400000 +3075 107 0.400000 +3075 156 0.400000 +3075 200 0.400000 +3075 306 0.400000 +3075 344 0.400000 +3075 360 0.400000 +3075 429 0.400000 +3075 449 0.400000 +3075 479 0.400000 +3075 557 0.400000 +3075 767 0.400000 +3075 774 0.400000 +3075 815 0.400000 +3075 840 0.400000 +3075 927 0.400000 +3075 1043 0.400000 +3075 1044 0.400000 +3075 1054 0.400000 +3075 1076 0.400000 +3075 1105 0.400000 +3075 1185 0.400000 +3075 1213 0.400000 +3075 1252 0.400000 +3075 1293 0.400000 +3075 1325 0.400000 +3075 1336 0.400000 +3075 1683 0.400000 +3075 1693 0.400000 +3075 1717 0.400000 +3075 1746 0.400000 +3075 1774 0.400000 +3075 1796 0.400000 +3075 1827 0.400000 +3075 1837 0.400000 +3075 1867 0.400000 +3075 1904 0.400000 +3075 1911 0.400000 +3075 1966 0.400000 +3075 2012 0.400000 +3075 2053 0.400000 +3075 2078 0.400000 +3075 2210 0.400000 +3075 2361 0.400000 +3075 2384 0.400000 +3075 2398 0.400000 +3075 2455 0.400000 +3075 2470 0.400000 +3075 2554 0.400000 +3075 2561 0.400000 +3075 2623 0.400000 +3075 2731 0.400000 +3075 2818 0.400000 +3075 2846 0.400000 +3075 2961 0.400000 +3075 3025 0.400000 +3075 3027 0.400000 +3075 3035 0.400000 +3075 3077 0.400000 +3075 3083 0.400000 +3075 3095 0.400000 +3075 3133 0.400000 +3075 3136 0.400000 +3076 25 0.400000 +3076 82 0.400000 +3076 107 0.400000 +3076 124 0.400000 +3076 202 0.400000 +3076 229 0.400000 +3076 233 0.400000 +3076 284 0.400000 +3076 346 0.400000 +3076 460 0.400000 +3076 472 0.400000 +3076 546 0.400000 +3076 660 0.400000 +3076 682 0.400000 +3076 695 0.400000 +3076 725 0.400000 +3076 753 0.400000 +3076 818 0.400000 +3076 849 0.400000 +3076 892 0.400000 +3076 902 0.400000 +3076 953 0.400000 +3076 958 0.400000 +3076 1070 0.400000 +3076 1186 0.400000 +3076 1213 0.400000 +3076 1219 0.400000 +3076 1294 0.400000 +3076 1338 0.400000 +3076 1425 0.400000 +3076 1433 0.400000 +3076 1440 0.400000 +3076 1473 0.400000 +3076 1596 0.400000 +3076 1658 0.400000 +3076 1829 0.400000 +3076 1852 0.400000 +3076 1886 0.400000 +3076 1887 0.400000 +3076 1945 0.400000 +3076 1966 0.400000 +3076 1977 0.400000 +3076 2030 0.400000 +3076 2040 0.400000 +3076 2095 0.400000 +3076 2299 0.400000 +3076 2342 0.400000 +3076 2382 0.400000 +3076 2411 0.400000 +3076 2467 0.400000 +3076 2474 0.400000 +3076 2517 0.400000 +3076 2539 0.400000 +3076 2645 0.400000 +3076 2747 0.400000 +3076 2768 0.400000 +3076 2908 0.400000 +3076 3081 0.400000 +3076 3103 0.400000 +3076 3176 0.400000 +3076 3183 0.400000 +3076 3196 0.400000 +3077 23 0.400000 +3077 30 0.400000 +3077 91 0.400000 +3077 112 0.400000 +3077 211 0.400000 +3077 232 0.400000 +3077 367 0.400000 +3077 397 0.400000 +3077 399 0.400000 +3077 553 0.400000 +3077 662 0.400000 +3077 668 0.400000 +3077 678 0.400000 +3077 684 0.400000 +3077 703 0.400000 +3077 708 0.400000 +3077 722 0.400000 +3077 838 0.400000 +3077 899 0.400000 +3077 953 0.400000 +3077 981 0.400000 +3077 1000 0.400000 +3077 1104 0.400000 +3077 1136 0.400000 +3077 1303 0.400000 +3077 1397 0.400000 +3077 1398 0.400000 +3077 1408 0.400000 +3077 1553 0.400000 +3077 1609 0.400000 +3077 1662 0.400000 +3077 1670 0.400000 +3077 1779 0.400000 +3077 1806 0.400000 +3077 1847 0.400000 +3077 1919 0.400000 +3077 1986 0.400000 +3077 1995 0.400000 +3077 2026 0.400000 +3077 2268 0.400000 +3077 2324 0.400000 +3077 2360 0.400000 +3077 2402 0.400000 +3077 2456 0.400000 +3077 2457 0.400000 +3077 2477 0.400000 +3077 2482 0.400000 +3077 2533 0.400000 +3077 2604 0.400000 +3077 2752 0.400000 +3077 2760 0.400000 +3077 2810 0.400000 +3077 2872 0.400000 +3077 2899 0.400000 +3077 2985 0.400000 +3077 3017 0.400000 +3077 3020 0.400000 +3077 3026 0.400000 +3077 3104 0.400000 +3077 3135 0.400000 +3077 3146 0.400000 +3077 3189 0.400000 +3078 196 0.400000 +3078 247 0.400000 +3078 319 0.400000 +3078 320 0.400000 +3078 331 0.400000 +3078 495 0.400000 +3078 505 0.400000 +3078 589 0.400000 +3078 591 0.400000 +3078 679 0.400000 +3078 683 0.400000 +3078 763 0.400000 +3078 784 0.400000 +3078 790 0.400000 +3078 798 0.400000 +3078 804 0.400000 +3078 850 0.400000 +3078 902 0.400000 +3078 955 0.400000 +3078 1038 0.400000 +3078 1102 0.400000 +3078 1156 0.400000 +3078 1159 0.400000 +3078 1291 0.400000 +3078 1453 0.400000 +3078 1513 0.400000 +3078 1554 0.400000 +3078 1565 0.400000 +3078 1567 0.400000 +3078 1581 0.400000 +3078 1700 0.400000 +3078 1833 0.400000 +3078 1896 0.400000 +3078 1901 0.400000 +3078 1919 0.400000 +3078 1990 0.400000 +3078 2008 0.400000 +3078 2107 0.400000 +3078 2270 0.400000 +3078 2348 0.400000 +3078 2416 0.400000 +3078 2475 0.400000 +3078 2530 0.400000 +3078 2541 0.400000 +3078 2554 0.400000 +3078 2586 0.400000 +3078 2593 0.400000 +3078 2617 0.400000 +3078 2738 0.400000 +3078 2862 0.400000 +3078 2972 0.400000 +3078 3039 0.400000 +3078 3138 0.400000 +3078 3155 0.400000 +3079 29 0.400000 +3079 143 0.400000 +3079 168 0.400000 +3079 211 0.400000 +3079 215 0.400000 +3079 409 0.400000 +3079 424 0.400000 +3079 464 0.400000 +3079 474 0.400000 +3079 491 0.400000 +3079 573 0.400000 +3079 635 0.400000 +3079 640 0.400000 +3079 674 0.400000 +3079 677 0.400000 +3079 732 0.400000 +3079 747 0.400000 +3079 809 0.400000 +3079 827 0.400000 +3079 904 0.400000 +3079 1101 0.400000 +3079 1109 0.400000 +3079 1140 0.400000 +3079 1320 0.400000 +3079 1379 0.400000 +3079 1405 0.400000 +3079 1436 0.400000 +3079 1492 0.400000 +3079 1538 0.400000 +3079 1613 0.400000 +3079 1617 0.400000 +3079 1628 0.400000 +3079 1701 0.400000 +3079 1705 0.400000 +3079 1745 0.400000 +3079 1888 0.400000 +3079 1929 0.400000 +3079 2101 0.400000 +3079 2169 0.400000 +3079 2171 0.400000 +3079 2226 0.400000 +3079 2343 0.400000 +3079 2382 0.400000 +3079 2397 0.400000 +3079 2438 0.400000 +3079 2459 0.400000 +3079 2467 0.400000 +3079 2474 0.400000 +3079 2521 0.400000 +3079 2546 0.400000 +3079 2580 0.400000 +3079 2642 0.400000 +3079 2646 0.400000 +3079 2717 0.400000 +3079 2723 0.400000 +3079 2785 0.400000 +3079 2845 0.400000 +3079 2873 0.400000 +3079 2894 0.400000 +3079 2932 0.400000 +3079 2996 0.400000 +3079 3005 0.400000 +3079 3117 0.400000 +3079 3175 0.400000 +3080 43 0.400000 +3080 50 0.400000 +3080 79 0.400000 +3080 82 0.400000 +3080 106 0.400000 +3080 175 0.400000 +3080 219 0.400000 +3080 222 0.400000 +3080 259 0.400000 +3080 489 0.400000 +3080 533 0.400000 +3080 541 0.400000 +3080 588 0.400000 +3080 613 0.400000 +3080 620 0.400000 +3080 803 0.400000 +3080 831 0.400000 +3080 885 0.400000 +3080 893 0.400000 +3080 970 0.400000 +3080 1050 0.400000 +3080 1069 0.400000 +3080 1078 0.400000 +3080 1104 0.400000 +3080 1114 0.400000 +3080 1120 0.400000 +3080 1184 0.400000 +3080 1363 0.400000 +3080 1399 0.400000 +3080 1459 0.400000 +3080 1514 0.400000 +3080 1568 0.400000 +3080 1645 0.400000 +3080 1687 0.400000 +3080 1728 0.400000 +3080 1745 0.400000 +3080 1835 0.400000 +3080 1913 0.400000 +3080 1923 0.400000 +3080 1944 0.400000 +3080 1999 0.400000 +3080 2073 0.400000 +3080 2165 0.400000 +3080 2167 0.400000 +3080 2218 0.400000 +3080 2268 0.400000 +3080 2270 0.400000 +3080 2337 0.400000 +3080 2395 0.400000 +3080 2449 0.400000 +3080 2463 0.400000 +3080 2503 0.400000 +3080 2592 0.400000 +3080 2654 0.400000 +3080 2672 0.400000 +3080 3006 0.400000 +3080 3014 0.400000 +3080 3126 0.400000 +3081 22 0.400000 +3081 112 0.400000 +3081 116 0.400000 +3081 121 0.400000 +3081 134 0.400000 +3081 136 0.400000 +3081 145 0.400000 +3081 174 0.400000 +3081 337 0.400000 +3081 404 0.400000 +3081 405 0.400000 +3081 455 0.400000 +3081 458 0.400000 +3081 506 0.400000 +3081 539 0.400000 +3081 546 0.400000 +3081 563 0.400000 +3081 653 0.400000 +3081 771 0.400000 +3081 800 0.400000 +3081 856 0.400000 +3081 885 0.400000 +3081 931 0.400000 +3081 957 0.400000 +3081 999 0.400000 +3081 1045 0.400000 +3081 1085 0.400000 +3081 1099 0.400000 +3081 1124 0.400000 +3081 1137 0.400000 +3081 1220 0.400000 +3081 1229 0.400000 +3081 1233 0.400000 +3081 1249 0.400000 +3081 1265 0.400000 +3081 1282 0.400000 +3081 1298 0.400000 +3081 1304 0.400000 +3081 1317 0.400000 +3081 1334 0.400000 +3081 1344 0.400000 +3081 1371 0.400000 +3081 1385 0.400000 +3081 1473 0.400000 +3081 1479 0.400000 +3081 1557 0.400000 +3081 1619 0.400000 +3081 1630 0.400000 +3081 1649 0.400000 +3081 1697 0.400000 +3081 1799 0.400000 +3081 1800 0.400000 +3081 1871 0.400000 +3081 1875 0.400000 +3081 1878 0.400000 +3081 1899 0.400000 +3081 1919 0.400000 +3081 1979 0.400000 +3081 2016 0.400000 +3081 2038 0.400000 +3081 2040 0.400000 +3081 2053 0.400000 +3081 2132 0.400000 +3081 2194 0.400000 +3081 2204 0.400000 +3081 2261 0.400000 +3081 2300 0.400000 +3081 2359 0.400000 +3081 2453 0.400000 +3081 2455 0.400000 +3081 2464 0.400000 +3081 2506 0.400000 +3081 2551 0.400000 +3081 2586 0.400000 +3081 2597 0.400000 +3081 2655 0.400000 +3081 2699 0.400000 +3081 2704 0.400000 +3081 2728 0.400000 +3081 2736 0.400000 +3081 2742 0.400000 +3081 2799 0.400000 +3081 2834 0.400000 +3081 2892 0.400000 +3081 2896 0.400000 +3081 2915 0.400000 +3081 2973 0.400000 +3081 2990 0.400000 +3081 3005 0.400000 +3081 3047 0.400000 +3081 3117 0.400000 +3081 3124 0.400000 +3081 3144 0.400000 +3081 3174 0.400000 +3081 3199 0.400000 +3082 23 0.400000 +3082 66 0.400000 +3082 149 0.400000 +3082 203 0.400000 +3082 244 0.400000 +3082 344 0.400000 +3082 363 0.400000 +3082 374 0.400000 +3082 459 0.400000 +3082 542 0.400000 +3082 642 0.400000 +3082 671 0.400000 +3082 694 0.400000 +3082 732 0.400000 +3082 783 0.400000 +3082 849 0.400000 +3082 862 0.400000 +3082 864 0.400000 +3082 914 0.400000 +3082 963 0.400000 +3082 1087 0.400000 +3082 1204 0.400000 +3082 1237 0.400000 +3082 1266 0.400000 +3082 1279 0.400000 +3082 1331 0.400000 +3082 1371 0.400000 +3082 1423 0.400000 +3082 1462 0.400000 +3082 1490 0.400000 +3082 1507 0.400000 +3082 1554 0.400000 +3082 1584 0.400000 +3082 1605 0.400000 +3082 1621 0.400000 +3082 1639 0.400000 +3082 1666 0.400000 +3082 1677 0.400000 +3082 1793 0.400000 +3082 1832 0.400000 +3082 1833 0.400000 +3082 1909 0.400000 +3082 1992 0.400000 +3082 2023 0.400000 +3082 2057 0.400000 +3082 2060 0.400000 +3082 2086 0.400000 +3082 2115 0.400000 +3082 2117 0.400000 +3082 2135 0.400000 +3082 2196 0.400000 +3082 2266 0.400000 +3082 2283 0.400000 +3082 2436 0.400000 +3082 2441 0.400000 +3082 2516 0.400000 +3082 2520 0.400000 +3082 2637 0.400000 +3082 2644 0.400000 +3082 2693 0.400000 +3082 2706 0.400000 +3082 2747 0.400000 +3082 2758 0.400000 +3082 2833 0.400000 +3082 2855 0.400000 +3082 2876 0.400000 +3082 2949 0.400000 +3082 2952 0.400000 +3082 3001 0.400000 +3082 3044 0.400000 +3082 3103 0.400000 +3082 3128 0.400000 +3082 3156 0.400000 +3082 3163 0.400000 +3082 3187 0.400000 +3083 11 0.400000 +3083 50 0.400000 +3083 51 0.400000 +3083 84 0.400000 +3083 113 0.400000 +3083 283 0.400000 +3083 400 0.400000 +3083 406 0.400000 +3083 467 0.400000 +3083 556 0.400000 +3083 574 0.400000 +3083 576 0.400000 +3083 614 0.400000 +3083 629 0.400000 +3083 637 0.400000 +3083 638 0.400000 +3083 644 0.400000 +3083 658 0.400000 +3083 662 0.400000 +3083 683 0.400000 +3083 742 0.400000 +3083 746 0.400000 +3083 748 0.400000 +3083 791 0.400000 +3083 977 0.400000 +3083 1075 0.400000 +3083 1081 0.400000 +3083 1099 0.400000 +3083 1122 0.400000 +3083 1151 0.400000 +3083 1242 0.400000 +3083 1245 0.400000 +3083 1254 0.400000 +3083 1312 0.400000 +3083 1313 0.400000 +3083 1314 0.400000 +3083 1377 0.400000 +3083 1433 0.400000 +3083 1444 0.400000 +3083 1461 0.400000 +3083 1535 0.400000 +3083 1600 0.400000 +3083 1742 0.400000 +3083 1750 0.400000 +3083 1760 0.400000 +3083 1765 0.400000 +3083 1807 0.400000 +3083 1825 0.400000 +3083 1830 0.400000 +3083 2012 0.400000 +3083 2032 0.400000 +3083 2070 0.400000 +3083 2101 0.400000 +3083 2147 0.400000 +3083 2189 0.400000 +3083 2231 0.400000 +3083 2233 0.400000 +3083 2255 0.400000 +3083 2265 0.400000 +3083 2273 0.400000 +3083 2363 0.400000 +3083 2381 0.400000 +3083 2383 0.400000 +3083 2404 0.400000 +3083 2454 0.400000 +3083 2545 0.400000 +3083 2586 0.400000 +3083 2603 0.400000 +3083 2619 0.400000 +3083 2660 0.400000 +3083 2683 0.400000 +3083 2696 0.400000 +3083 2705 0.400000 +3083 2709 0.400000 +3083 2826 0.400000 +3083 2964 0.400000 +3083 2983 0.400000 +3083 3010 0.400000 +3083 3052 0.400000 +3083 3074 0.400000 +3083 3082 0.400000 +3083 3123 0.400000 +3083 3138 0.400000 +3083 3139 0.400000 +3084 19 0.400000 +3084 42 0.400000 +3084 47 0.400000 +3084 78 0.400000 +3084 114 0.400000 +3084 178 0.400000 +3084 221 0.400000 +3084 348 0.400000 +3084 350 0.400000 +3084 471 0.400000 +3084 520 0.400000 +3084 528 0.400000 +3084 559 0.400000 +3084 643 0.400000 +3084 646 0.400000 +3084 667 0.400000 +3084 692 0.400000 +3084 731 0.400000 +3084 742 0.400000 +3084 756 0.400000 +3084 774 0.400000 +3084 787 0.400000 +3084 811 0.400000 +3084 816 0.400000 +3084 886 0.400000 +3084 894 0.400000 +3084 939 0.400000 +3084 940 0.400000 +3084 951 0.400000 +3084 1036 0.400000 +3084 1100 0.400000 +3084 1108 0.400000 +3084 1125 0.400000 +3084 1149 0.400000 +3084 1156 0.400000 +3084 1188 0.400000 +3084 1213 0.400000 +3084 1325 0.400000 +3084 1347 0.400000 +3084 1361 0.400000 +3084 1399 0.400000 +3084 1407 0.400000 +3084 1428 0.400000 +3084 1607 0.400000 +3084 1615 0.400000 +3084 1621 0.400000 +3084 1649 0.400000 +3084 1674 0.400000 +3084 1735 0.400000 +3084 1865 0.400000 +3084 1866 0.400000 +3084 1916 0.400000 +3084 1918 0.400000 +3084 1977 0.400000 +3084 2002 0.400000 +3084 2055 0.400000 +3084 2114 0.400000 +3084 2135 0.400000 +3084 2198 0.400000 +3084 2200 0.400000 +3084 2239 0.400000 +3084 2312 0.400000 +3084 2439 0.400000 +3084 2443 0.400000 +3084 2465 0.400000 +3084 2589 0.400000 +3084 2684 0.400000 +3084 2709 0.400000 +3084 2757 0.400000 +3084 2760 0.400000 +3084 2766 0.400000 +3084 2812 0.400000 +3084 2838 0.400000 +3084 2843 0.400000 +3084 2865 0.400000 +3084 2954 0.400000 +3084 2971 0.400000 +3084 3004 0.400000 +3084 3025 0.400000 +3084 3040 0.400000 +3084 3092 0.400000 +3084 3200 0.400000 +3085 23 0.400000 +3085 27 0.400000 +3085 100 0.400000 +3085 155 0.400000 +3085 176 0.400000 +3085 266 0.400000 +3085 272 0.400000 +3085 280 0.400000 +3085 296 0.400000 +3085 299 0.400000 +3085 344 0.400000 +3085 375 0.400000 +3085 384 0.400000 +3085 444 0.400000 +3085 662 0.400000 +3085 684 0.400000 +3085 807 0.400000 +3085 853 0.400000 +3085 949 0.400000 +3085 960 0.400000 +3085 993 0.400000 +3085 1006 0.400000 +3085 1131 0.400000 +3085 1167 0.400000 +3085 1226 0.400000 +3085 1268 0.400000 +3085 1278 0.400000 +3085 1325 0.400000 +3085 1431 0.400000 +3085 1453 0.400000 +3085 1611 0.400000 +3085 1684 0.400000 +3085 1722 0.400000 +3085 1749 0.400000 +3085 1774 0.400000 +3085 1820 0.400000 +3085 1832 0.400000 +3085 1897 0.400000 +3085 1917 0.400000 +3085 1961 0.400000 +3085 2072 0.400000 +3085 2132 0.400000 +3085 2142 0.400000 +3085 2229 0.400000 +3085 2287 0.400000 +3085 2353 0.400000 +3085 2423 0.400000 +3085 2434 0.400000 +3085 2521 0.400000 +3085 2758 0.400000 +3085 2858 0.400000 +3085 2863 0.400000 +3085 2899 0.400000 +3085 2908 0.400000 +3085 2909 0.400000 +3085 3018 0.400000 +3085 3033 0.400000 +3085 3035 0.400000 +3085 3101 0.400000 +3085 3186 0.400000 +3085 3189 0.400000 +3085 3195 0.400000 +3085 3198 0.400000 +3086 27 0.400000 +3086 78 0.400000 +3086 104 0.400000 +3086 190 0.400000 +3086 221 0.400000 +3086 306 0.400000 +3086 328 0.400000 +3086 334 0.400000 +3086 402 0.400000 +3086 456 0.400000 +3086 486 0.400000 +3086 511 0.400000 +3086 604 0.400000 +3086 643 0.400000 +3086 644 0.400000 +3086 813 0.400000 +3086 830 0.400000 +3086 910 0.400000 +3086 1003 0.400000 +3086 1004 0.400000 +3086 1039 0.400000 +3086 1053 0.400000 +3086 1177 0.400000 +3086 1348 0.400000 +3086 1413 0.400000 +3086 1427 0.400000 +3086 1625 0.400000 +3086 1652 0.400000 +3086 1663 0.400000 +3086 1673 0.400000 +3086 1803 0.400000 +3086 1804 0.400000 +3086 1836 0.400000 +3086 1862 0.400000 +3086 1864 0.400000 +3086 1876 0.400000 +3086 1878 0.400000 +3086 1891 0.400000 +3086 1901 0.400000 +3086 1953 0.400000 +3086 1976 0.400000 +3086 1988 0.400000 +3086 2010 0.400000 +3086 2027 0.400000 +3086 2050 0.400000 +3086 2085 0.400000 +3086 2086 0.400000 +3086 2340 0.400000 +3086 2352 0.400000 +3086 2365 0.400000 +3086 2368 0.400000 +3086 2407 0.400000 +3086 2437 0.400000 +3086 2459 0.400000 +3086 2461 0.400000 +3086 2472 0.400000 +3086 2474 0.400000 +3086 2549 0.400000 +3086 2597 0.400000 +3086 2694 0.400000 +3086 2695 0.400000 +3086 2721 0.400000 +3086 2816 0.400000 +3086 2863 0.400000 +3086 2985 0.400000 +3086 3003 0.400000 +3086 3009 0.400000 +3086 3141 0.400000 +3086 3143 0.400000 +3087 13 0.400000 +3087 14 0.400000 +3087 90 0.400000 +3087 231 0.400000 +3087 262 0.400000 +3087 284 0.400000 +3087 338 0.400000 +3087 339 0.400000 +3087 351 0.400000 +3087 358 0.400000 +3087 361 0.400000 +3087 469 0.400000 +3087 470 0.400000 +3087 523 0.400000 +3087 561 0.400000 +3087 581 0.400000 +3087 623 0.400000 +3087 709 0.400000 +3087 732 0.400000 +3087 766 0.400000 +3087 793 0.400000 +3087 795 0.400000 +3087 835 0.400000 +3087 872 0.400000 +3087 940 0.400000 +3087 972 0.400000 +3087 1109 0.400000 +3087 1127 0.400000 +3087 1187 0.400000 +3087 1207 0.400000 +3087 1314 0.400000 +3087 1323 0.400000 +3087 1335 0.400000 +3087 1336 0.400000 +3087 1396 0.400000 +3087 1404 0.400000 +3087 1477 0.400000 +3087 1565 0.400000 +3087 1613 0.400000 +3087 1662 0.400000 +3087 1697 0.400000 +3087 1712 0.400000 +3087 1724 0.400000 +3087 1769 0.400000 +3087 1785 0.400000 +3087 1945 0.400000 +3087 1993 0.400000 +3087 2129 0.400000 +3087 2190 0.400000 +3087 2211 0.400000 +3087 2233 0.400000 +3087 2283 0.400000 +3087 2345 0.400000 +3087 2351 0.400000 +3087 2391 0.400000 +3087 2426 0.400000 +3087 2528 0.400000 +3087 2601 0.400000 +3087 2641 0.400000 +3087 2724 0.400000 +3087 2751 0.400000 +3087 2789 0.400000 +3087 2791 0.400000 +3087 2827 0.400000 +3087 2835 0.400000 +3087 2941 0.400000 +3087 2952 0.400000 +3087 2965 0.400000 +3087 2996 0.400000 +3087 3038 0.400000 +3087 3043 0.400000 +3087 3126 0.400000 +3087 3129 0.400000 +3087 3132 0.400000 +3088 93 0.400000 +3088 258 0.400000 +3088 287 0.400000 +3088 322 0.400000 +3088 395 0.400000 +3088 474 0.400000 +3088 566 0.400000 +3088 571 0.400000 +3088 628 0.400000 +3088 634 0.400000 +3088 690 0.400000 +3088 723 0.400000 +3088 724 0.400000 +3088 738 0.400000 +3088 750 0.400000 +3088 773 0.400000 +3088 816 0.400000 +3088 875 0.400000 +3088 935 0.400000 +3088 983 0.400000 +3088 984 0.400000 +3088 1023 0.400000 +3088 1039 0.400000 +3088 1094 0.400000 +3088 1125 0.400000 +3088 1129 0.400000 +3088 1143 0.400000 +3088 1240 0.400000 +3088 1289 0.400000 +3088 1316 0.400000 +3088 1386 0.400000 +3088 1496 0.400000 +3088 1545 0.400000 +3088 1671 0.400000 +3088 1751 0.400000 +3088 1795 0.400000 +3088 1816 0.400000 +3088 1821 0.400000 +3088 1824 0.400000 +3088 1840 0.400000 +3088 1898 0.400000 +3088 1974 0.400000 +3088 2034 0.400000 +3088 2146 0.400000 +3088 2159 0.400000 +3088 2289 0.400000 +3088 2306 0.400000 +3088 2422 0.400000 +3088 2432 0.400000 +3088 2507 0.400000 +3088 2577 0.400000 +3088 2613 0.400000 +3088 2657 0.400000 +3088 2680 0.400000 +3088 2766 0.400000 +3088 2806 0.400000 +3088 2816 0.400000 +3088 2858 0.400000 +3088 2961 0.400000 +3088 2999 0.400000 +3088 3007 0.400000 +3088 3078 0.400000 +3088 3080 0.400000 +3088 3123 0.400000 +3088 3127 0.400000 +3088 3142 0.400000 +3088 3185 0.400000 +3089 67 0.400000 +3089 193 0.400000 +3089 200 0.400000 +3089 295 0.400000 +3089 343 0.400000 +3089 396 0.400000 +3089 571 0.400000 +3089 587 0.400000 +3089 645 0.400000 +3089 674 0.400000 +3089 681 0.400000 +3089 702 0.400000 +3089 741 0.400000 +3089 775 0.400000 +3089 794 0.400000 +3089 865 0.400000 +3089 949 0.400000 +3089 971 0.400000 +3089 1097 0.400000 +3089 1102 0.400000 +3089 1116 0.400000 +3089 1145 0.400000 +3089 1192 0.400000 +3089 1328 0.400000 +3089 1463 0.400000 +3089 1482 0.400000 +3089 1620 0.400000 +3089 1634 0.400000 +3089 1754 0.400000 +3089 1763 0.400000 +3089 1929 0.400000 +3089 1974 0.400000 +3089 2063 0.400000 +3089 2349 0.400000 +3089 2379 0.400000 +3089 2462 0.400000 +3089 2472 0.400000 +3089 2512 0.400000 +3089 2585 0.400000 +3089 2590 0.400000 +3089 2650 0.400000 +3089 2656 0.400000 +3089 2673 0.400000 +3089 2705 0.400000 +3089 2925 0.400000 +3089 2938 0.400000 +3089 2953 0.400000 +3089 3095 0.400000 +3090 53 0.400000 +3090 54 0.400000 +3090 59 0.400000 +3090 86 0.400000 +3090 132 0.400000 +3090 152 0.400000 +3090 171 0.400000 +3090 228 0.400000 +3090 250 0.400000 +3090 255 0.400000 +3090 263 0.400000 +3090 277 0.400000 +3090 395 0.400000 +3090 479 0.400000 +3090 495 0.400000 +3090 547 0.400000 +3090 599 0.400000 +3090 680 0.400000 +3090 734 0.400000 +3090 735 0.400000 +3090 751 0.400000 +3090 807 0.400000 +3090 843 0.400000 +3090 972 0.400000 +3090 1144 0.400000 +3090 1224 0.400000 +3090 1240 0.400000 +3090 1304 0.400000 +3090 1448 0.400000 +3090 1508 0.400000 +3090 1564 0.400000 +3090 1605 0.400000 +3090 1622 0.400000 +3090 1665 0.400000 +3090 1843 0.400000 +3090 1858 0.400000 +3090 1922 0.400000 +3090 1952 0.400000 +3090 1960 0.400000 +3090 2029 0.400000 +3090 2196 0.400000 +3090 2397 0.400000 +3090 2421 0.400000 +3090 2432 0.400000 +3090 2454 0.400000 +3090 2518 0.400000 +3090 2532 0.400000 +3090 2618 0.400000 +3090 2744 0.400000 +3090 2767 0.400000 +3090 2837 0.400000 +3090 2859 0.400000 +3090 2987 0.400000 +3090 3049 0.400000 +3090 3094 0.400000 +3090 3189 0.400000 +3090 3199 0.400000 +3091 10 0.400000 +3091 254 0.400000 +3091 268 0.400000 +3091 296 0.400000 +3091 350 0.400000 +3091 366 0.400000 +3091 436 0.400000 +3091 440 0.400000 +3091 547 0.400000 +3091 759 0.400000 +3091 826 0.400000 +3091 926 0.400000 +3091 1137 0.400000 +3091 1148 0.400000 +3091 1316 0.400000 +3091 1402 0.400000 +3091 1436 0.400000 +3091 1472 0.400000 +3091 1528 0.400000 +3091 1677 0.400000 +3091 1693 0.400000 +3091 1712 0.400000 +3091 1747 0.400000 +3091 1830 0.400000 +3091 1851 0.400000 +3091 1943 0.400000 +3091 1978 0.400000 +3091 2040 0.400000 +3091 2081 0.400000 +3091 2136 0.400000 +3091 2142 0.400000 +3091 2179 0.400000 +3091 2221 0.400000 +3091 2286 0.400000 +3091 2295 0.400000 +3091 2351 0.400000 +3091 2390 0.400000 +3091 2419 0.400000 +3091 2434 0.400000 +3091 2477 0.400000 +3091 2505 0.400000 +3091 2673 0.400000 +3091 2679 0.400000 +3091 2695 0.400000 +3091 2822 0.400000 +3091 2837 0.400000 +3091 2906 0.400000 +3091 2930 0.400000 +3091 2957 0.400000 +3091 2986 0.400000 +3091 3028 0.400000 +3091 3067 0.400000 +3091 3088 0.400000 +3091 3105 0.400000 +3091 3193 0.400000 +3092 35 0.400000 +3092 64 0.400000 +3092 101 0.400000 +3092 110 0.400000 +3092 252 0.400000 +3092 271 0.400000 +3092 277 0.400000 +3092 312 0.400000 +3092 315 0.400000 +3092 326 0.400000 +3092 385 0.400000 +3092 400 0.400000 +3092 478 0.400000 +3092 495 0.400000 +3092 562 0.400000 +3092 845 0.400000 +3092 948 0.400000 +3092 978 0.400000 +3092 1053 0.400000 +3092 1056 0.400000 +3092 1095 0.400000 +3092 1097 0.400000 +3092 1191 0.400000 +3092 1222 0.400000 +3092 1263 0.400000 +3092 1283 0.400000 +3092 1331 0.400000 +3092 1342 0.400000 +3092 1366 0.400000 +3092 1384 0.400000 +3092 1385 0.400000 +3092 1487 0.400000 +3092 1521 0.400000 +3092 1524 0.400000 +3092 1599 0.400000 +3092 1614 0.400000 +3092 1702 0.400000 +3092 1708 0.400000 +3092 1712 0.400000 +3092 1728 0.400000 +3092 1837 0.400000 +3092 1848 0.400000 +3092 1986 0.400000 +3092 2074 0.400000 +3092 2085 0.400000 +3092 2135 0.400000 +3092 2170 0.400000 +3092 2259 0.400000 +3092 2262 0.400000 +3092 2311 0.400000 +3092 2398 0.400000 +3092 2405 0.400000 +3092 2462 0.400000 +3092 2519 0.400000 +3092 2525 0.400000 +3092 2571 0.400000 +3092 2574 0.400000 +3092 2593 0.400000 +3092 2773 0.400000 +3092 2796 0.400000 +3092 2811 0.400000 +3092 2906 0.400000 +3092 2987 0.400000 +3092 3048 0.400000 +3092 3182 0.400000 +3093 4 0.400000 +3093 162 0.400000 +3093 165 0.400000 +3093 212 0.400000 +3093 300 0.400000 +3093 306 0.400000 +3093 333 0.400000 +3093 361 0.400000 +3093 430 0.400000 +3093 447 0.400000 +3093 524 0.400000 +3093 629 0.400000 +3093 641 0.400000 +3093 679 0.400000 +3093 720 0.400000 +3093 735 0.400000 +3093 783 0.400000 +3093 786 0.400000 +3093 898 0.400000 +3093 1038 0.400000 +3093 1069 0.400000 +3093 1176 0.400000 +3093 1252 0.400000 +3093 1274 0.400000 +3093 1305 0.400000 +3093 1306 0.400000 +3093 1324 0.400000 +3093 1343 0.400000 +3093 1406 0.400000 +3093 1455 0.400000 +3093 1520 0.400000 +3093 1549 0.400000 +3093 1552 0.400000 +3093 1586 0.400000 +3093 1672 0.400000 +3093 1727 0.400000 +3093 1865 0.400000 +3093 1906 0.400000 +3093 1984 0.400000 +3093 2007 0.400000 +3093 2025 0.400000 +3093 2074 0.400000 +3093 2081 0.400000 +3093 2100 0.400000 +3093 2108 0.400000 +3093 2123 0.400000 +3093 2147 0.400000 +3093 2237 0.400000 +3093 2291 0.400000 +3093 2314 0.400000 +3093 2337 0.400000 +3093 2341 0.400000 +3093 2377 0.400000 +3093 2411 0.400000 +3093 2435 0.400000 +3093 2462 0.400000 +3093 2556 0.400000 +3093 2637 0.400000 +3093 2654 0.400000 +3093 2741 0.400000 +3093 2810 0.400000 +3093 2832 0.400000 +3093 2844 0.400000 +3093 2945 0.400000 +3093 2967 0.400000 +3093 3069 0.400000 +3093 3081 0.400000 +3093 3121 0.400000 +3093 3124 0.400000 +3093 3154 0.400000 +3093 3169 0.400000 +3093 3197 0.400000 +3094 13 0.400000 +3094 54 0.400000 +3094 160 0.400000 +3094 180 0.400000 +3094 200 0.400000 +3094 205 0.400000 +3094 232 0.400000 +3094 234 0.400000 +3094 257 0.400000 +3094 285 0.400000 +3094 294 0.400000 +3094 391 0.400000 +3094 421 0.400000 +3094 426 0.400000 +3094 470 0.400000 +3094 489 0.400000 +3094 534 0.400000 +3094 683 0.400000 +3094 753 0.400000 +3094 759 0.400000 +3094 776 0.400000 +3094 779 0.400000 +3094 919 0.400000 +3094 963 0.400000 +3094 967 0.400000 +3094 1012 0.400000 +3094 1041 0.400000 +3094 1112 0.400000 +3094 1123 0.400000 +3094 1185 0.400000 +3094 1378 0.400000 +3094 1382 0.400000 +3094 1425 0.400000 +3094 1426 0.400000 +3094 1496 0.400000 +3094 1503 0.400000 +3094 1509 0.400000 +3094 1603 0.400000 +3094 1606 0.400000 +3094 1663 0.400000 +3094 1671 0.400000 +3094 1770 0.400000 +3094 1788 0.400000 +3094 1803 0.400000 +3094 1844 0.400000 +3094 1889 0.400000 +3094 1957 0.400000 +3094 1969 0.400000 +3094 2033 0.400000 +3094 2086 0.400000 +3094 2100 0.400000 +3094 2103 0.400000 +3094 2190 0.400000 +3094 2245 0.400000 +3094 2284 0.400000 +3094 2400 0.400000 +3094 2583 0.400000 +3094 2650 0.400000 +3094 2755 0.400000 +3094 2757 0.400000 +3094 2865 0.400000 +3094 2960 0.400000 +3094 2961 0.400000 +3094 2972 0.400000 +3094 2974 0.400000 +3094 2978 0.400000 +3094 2996 0.400000 +3094 3006 0.400000 +3094 3120 0.400000 +3094 3151 0.400000 +3094 3184 0.400000 +3094 3186 0.400000 +3095 1 0.400000 +3095 49 0.400000 +3095 71 0.400000 +3095 117 0.400000 +3095 130 0.400000 +3095 180 0.400000 +3095 219 0.400000 +3095 226 0.400000 +3095 267 0.400000 +3095 298 0.400000 +3095 398 0.400000 +3095 429 0.400000 +3095 430 0.400000 +3095 488 0.400000 +3095 516 0.400000 +3095 595 0.400000 +3095 705 0.400000 +3095 720 0.400000 +3095 732 0.400000 +3095 771 0.400000 +3095 818 0.400000 +3095 823 0.400000 +3095 837 0.400000 +3095 891 0.400000 +3095 932 0.400000 +3095 947 0.400000 +3095 1004 0.400000 +3095 1019 0.400000 +3095 1032 0.400000 +3095 1053 0.400000 +3095 1070 0.400000 +3095 1074 0.400000 +3095 1080 0.400000 +3095 1122 0.400000 +3095 1130 0.400000 +3095 1205 0.400000 +3095 1368 0.400000 +3095 1407 0.400000 +3095 1532 0.400000 +3095 1578 0.400000 +3095 1594 0.400000 +3095 1615 0.400000 +3095 1724 0.400000 +3095 1733 0.400000 +3095 1764 0.400000 +3095 1890 0.400000 +3095 2131 0.400000 +3095 2143 0.400000 +3095 2220 0.400000 +3095 2239 0.400000 +3095 2252 0.400000 +3095 2406 0.400000 +3095 2452 0.400000 +3095 2546 0.400000 +3095 2699 0.400000 +3095 2717 0.400000 +3095 2736 0.400000 +3095 2861 0.400000 +3095 2922 0.400000 +3095 2971 0.400000 +3095 3012 0.400000 +3095 3053 0.400000 +3095 3079 0.400000 +3095 3182 0.400000 +3096 77 0.400000 +3096 87 0.400000 +3096 121 0.400000 +3096 150 0.400000 +3096 174 0.400000 +3096 331 0.400000 +3096 339 0.400000 +3096 379 0.400000 +3096 390 0.400000 +3096 407 0.400000 +3096 423 0.400000 +3096 449 0.400000 +3096 491 0.400000 +3096 561 0.400000 +3096 644 0.400000 +3096 1042 0.400000 +3096 1066 0.400000 +3096 1138 0.400000 +3096 1142 0.400000 +3096 1295 0.400000 +3096 1297 0.400000 +3096 1310 0.400000 +3096 1325 0.400000 +3096 1383 0.400000 +3096 1419 0.400000 +3096 1469 0.400000 +3096 1502 0.400000 +3096 1529 0.400000 +3096 1615 0.400000 +3096 1650 0.400000 +3096 1689 0.400000 +3096 1759 0.400000 +3096 1793 0.400000 +3096 1913 0.400000 +3096 1950 0.400000 +3096 2007 0.400000 +3096 2041 0.400000 +3096 2197 0.400000 +3096 2230 0.400000 +3096 2250 0.400000 +3096 2283 0.400000 +3096 2403 0.400000 +3096 2441 0.400000 +3096 2502 0.400000 +3096 2626 0.400000 +3096 2750 0.400000 +3096 2789 0.400000 +3096 2896 0.400000 +3096 3027 0.400000 +3096 3146 0.400000 +3096 3161 0.400000 +3096 3192 0.400000 +3097 32 0.400000 +3097 169 0.400000 +3097 215 0.400000 +3097 216 0.400000 +3097 245 0.400000 +3097 278 0.400000 +3097 342 0.400000 +3097 381 0.400000 +3097 424 0.400000 +3097 431 0.400000 +3097 606 0.400000 +3097 631 0.400000 +3097 700 0.400000 +3097 740 0.400000 +3097 805 0.400000 +3097 901 0.400000 +3097 1070 0.400000 +3097 1126 0.400000 +3097 1127 0.400000 +3097 1190 0.400000 +3097 1244 0.400000 +3097 1321 0.400000 +3097 1418 0.400000 +3097 1430 0.400000 +3097 1521 0.400000 +3097 1624 0.400000 +3097 1630 0.400000 +3097 1645 0.400000 +3097 1646 0.400000 +3097 1647 0.400000 +3097 1677 0.400000 +3097 1684 0.400000 +3097 1690 0.400000 +3097 1692 0.400000 +3097 1741 0.400000 +3097 1750 0.400000 +3097 1755 0.400000 +3097 1784 0.400000 +3097 1800 0.400000 +3097 1809 0.400000 +3097 1841 0.400000 +3097 1852 0.400000 +3097 1901 0.400000 +3097 1921 0.400000 +3097 2057 0.400000 +3097 2083 0.400000 +3097 2153 0.400000 +3097 2504 0.400000 +3097 2524 0.400000 +3097 2581 0.400000 +3097 2606 0.400000 +3097 2687 0.400000 +3097 2752 0.400000 +3097 2871 0.400000 +3097 2902 0.400000 +3097 3049 0.400000 +3097 3071 0.400000 +3097 3132 0.400000 +3097 3164 0.400000 +3098 18 0.400000 +3098 35 0.400000 +3098 47 0.400000 +3098 94 0.400000 +3098 124 0.400000 +3098 136 0.400000 +3098 155 0.400000 +3098 197 0.400000 +3098 205 0.400000 +3098 296 0.400000 +3098 301 0.400000 +3098 342 0.400000 +3098 463 0.400000 +3098 495 0.400000 +3098 609 0.400000 +3098 651 0.400000 +3098 659 0.400000 +3098 735 0.400000 +3098 830 0.400000 +3098 846 0.400000 +3098 949 0.400000 +3098 1184 0.400000 +3098 1207 0.400000 +3098 1288 0.400000 +3098 1321 0.400000 +3098 1377 0.400000 +3098 1395 0.400000 +3098 1415 0.400000 +3098 1448 0.400000 +3098 1490 0.400000 +3098 1501 0.400000 +3098 1611 0.400000 +3098 1646 0.400000 +3098 1647 0.400000 +3098 1655 0.400000 +3098 1717 0.400000 +3098 1823 0.400000 +3098 1900 0.400000 +3098 1922 0.400000 +3098 1945 0.400000 +3098 1958 0.400000 +3098 1983 0.400000 +3098 1989 0.400000 +3098 2059 0.400000 +3098 2074 0.400000 +3098 2135 0.400000 +3098 2164 0.400000 +3098 2301 0.400000 +3098 2353 0.400000 +3098 2363 0.400000 +3098 2381 0.400000 +3098 2389 0.400000 +3098 2404 0.400000 +3098 2418 0.400000 +3098 2446 0.400000 +3098 2563 0.400000 +3098 2596 0.400000 +3098 2657 0.400000 +3098 2707 0.400000 +3098 2739 0.400000 +3098 2744 0.400000 +3098 2747 0.400000 +3098 2849 0.400000 +3098 2942 0.400000 +3098 2960 0.400000 +3098 3012 0.400000 +3098 3053 0.400000 +3098 3170 0.400000 +3099 86 0.400000 +3099 142 0.400000 +3099 152 0.400000 +3099 161 0.400000 +3099 164 0.400000 +3099 211 0.400000 +3099 219 0.400000 +3099 276 0.400000 +3099 288 0.400000 +3099 323 0.400000 +3099 460 0.400000 +3099 487 0.400000 +3099 535 0.400000 +3099 554 0.400000 +3099 574 0.400000 +3099 685 0.400000 +3099 857 0.400000 +3099 903 0.400000 +3099 1019 0.400000 +3099 1120 0.400000 +3099 1142 0.400000 +3099 1172 0.400000 +3099 1215 0.400000 +3099 1235 0.400000 +3099 1316 0.400000 +3099 1375 0.400000 +3099 1430 0.400000 +3099 1444 0.400000 +3099 1479 0.400000 +3099 1586 0.400000 +3099 1655 0.400000 +3099 1681 0.400000 +3099 1718 0.400000 +3099 1721 0.400000 +3099 1961 0.400000 +3099 2102 0.400000 +3099 2255 0.400000 +3099 2284 0.400000 +3099 2288 0.400000 +3099 2398 0.400000 +3099 2665 0.400000 +3099 2678 0.400000 +3099 2731 0.400000 +3099 2735 0.400000 +3099 2750 0.400000 +3099 2767 0.400000 +3099 2853 0.400000 +3099 2944 0.400000 +3099 2962 0.400000 +3099 2988 0.400000 +3099 2990 0.400000 +3099 3133 0.400000 +3099 3171 0.400000 +3100 53 0.400000 +3100 78 0.400000 +3100 153 0.400000 +3100 165 0.400000 +3100 183 0.400000 +3100 189 0.400000 +3100 336 0.400000 +3100 410 0.400000 +3100 453 0.400000 +3100 492 0.400000 +3100 558 0.400000 +3100 582 0.400000 +3100 601 0.400000 +3100 607 0.400000 +3100 708 0.400000 +3100 722 0.400000 +3100 793 0.400000 +3100 798 0.400000 +3100 855 0.400000 +3100 863 0.400000 +3100 949 0.400000 +3100 986 0.400000 +3100 987 0.400000 +3100 1034 0.400000 +3100 1061 0.400000 +3100 1071 0.400000 +3100 1098 0.400000 +3100 1145 0.400000 +3100 1193 0.400000 +3100 1226 0.400000 +3100 1297 0.400000 +3100 1322 0.400000 +3100 1430 0.400000 +3100 1541 0.400000 +3100 1654 0.400000 +3100 1666 0.400000 +3100 1732 0.400000 +3100 1739 0.400000 +3100 1748 0.400000 +3100 1841 0.400000 +3100 1842 0.400000 +3100 1921 0.400000 +3100 1940 0.400000 +3100 1952 0.400000 +3100 1971 0.400000 +3100 1980 0.400000 +3100 2040 0.400000 +3100 2050 0.400000 +3100 2187 0.400000 +3100 2216 0.400000 +3100 2257 0.400000 +3100 2284 0.400000 +3100 2298 0.400000 +3100 2338 0.400000 +3100 2362 0.400000 +3100 2410 0.400000 +3100 2425 0.400000 +3100 2478 0.400000 +3100 2509 0.400000 +3100 2549 0.400000 +3100 2612 0.400000 +3100 2648 0.400000 +3100 2754 0.400000 +3100 2773 0.400000 +3100 2814 0.400000 +3100 2852 0.400000 +3100 2862 0.400000 +3100 2906 0.400000 +3100 2944 0.400000 +3100 2978 0.400000 +3100 2981 0.400000 +3100 3025 0.400000 +3100 3117 0.400000 +3100 3187 0.400000 +3101 238 0.400000 +3101 247 0.400000 +3101 293 0.400000 +3101 327 0.400000 +3101 331 0.400000 +3101 363 0.400000 +3101 426 0.400000 +3101 448 0.400000 +3101 494 0.400000 +3101 591 0.400000 +3101 648 0.400000 +3101 683 0.400000 +3101 694 0.400000 +3101 699 0.400000 +3101 742 0.400000 +3101 744 0.400000 +3101 758 0.400000 +3101 778 0.400000 +3101 819 0.400000 +3101 860 0.400000 +3101 878 0.400000 +3101 895 0.400000 +3101 993 0.400000 +3101 1049 0.400000 +3101 1078 0.400000 +3101 1083 0.400000 +3101 1084 0.400000 +3101 1092 0.400000 +3101 1248 0.400000 +3101 1350 0.400000 +3101 1417 0.400000 +3101 1523 0.400000 +3101 1527 0.400000 +3101 1550 0.400000 +3101 1592 0.400000 +3101 1611 0.400000 +3101 1665 0.400000 +3101 1669 0.400000 +3101 1682 0.400000 +3101 1695 0.400000 +3101 1720 0.400000 +3101 1728 0.400000 +3101 1786 0.400000 +3101 1851 0.400000 +3101 1981 0.400000 +3101 2044 0.400000 +3101 2057 0.400000 +3101 2079 0.400000 +3101 2107 0.400000 +3101 2117 0.400000 +3101 2202 0.400000 +3101 2211 0.400000 +3101 2227 0.400000 +3101 2230 0.400000 +3101 2235 0.400000 +3101 2262 0.400000 +3101 2410 0.400000 +3101 2461 0.400000 +3101 2480 0.400000 +3101 2570 0.400000 +3101 2603 0.400000 +3101 2625 0.400000 +3101 2790 0.400000 +3101 2821 0.400000 +3101 2918 0.400000 +3101 2957 0.400000 +3101 2965 0.400000 +3101 3099 0.400000 +3101 3106 0.400000 +3102 27 0.400000 +3102 118 0.400000 +3102 119 0.400000 +3102 144 0.400000 +3102 145 0.400000 +3102 152 0.400000 +3102 163 0.400000 +3102 176 0.400000 +3102 362 0.400000 +3102 366 0.400000 +3102 422 0.400000 +3102 526 0.400000 +3102 534 0.400000 +3102 586 0.400000 +3102 618 0.400000 +3102 638 0.400000 +3102 674 0.400000 +3102 754 0.400000 +3102 764 0.400000 +3102 800 0.400000 +3102 871 0.400000 +3102 901 0.400000 +3102 966 0.400000 +3102 1001 0.400000 +3102 1192 0.400000 +3102 1280 0.400000 +3102 1402 0.400000 +3102 1476 0.400000 +3102 1480 0.400000 +3102 1545 0.400000 +3102 1602 0.400000 +3102 1611 0.400000 +3102 1614 0.400000 +3102 1655 0.400000 +3102 1661 0.400000 +3102 1679 0.400000 +3102 1680 0.400000 +3102 1690 0.400000 +3102 1698 0.400000 +3102 1710 0.400000 +3102 1758 0.400000 +3102 1984 0.400000 +3102 2056 0.400000 +3102 2131 0.400000 +3102 2138 0.400000 +3102 2312 0.400000 +3102 2318 0.400000 +3102 2326 0.400000 +3102 2367 0.400000 +3102 2409 0.400000 +3102 2411 0.400000 +3102 2454 0.400000 +3102 2459 0.400000 +3102 2472 0.400000 +3102 2489 0.400000 +3102 2711 0.400000 +3102 2717 0.400000 +3102 2731 0.400000 +3102 2739 0.400000 +3102 2787 0.400000 +3102 2875 0.400000 +3102 2960 0.400000 +3102 2964 0.400000 +3102 2969 0.400000 +3102 2978 0.400000 +3102 2989 0.400000 +3102 3068 0.400000 +3103 82 0.400000 +3103 98 0.400000 +3103 105 0.400000 +3103 155 0.400000 +3103 194 0.400000 +3103 240 0.400000 +3103 269 0.400000 +3103 292 0.400000 +3103 324 0.400000 +3103 325 0.400000 +3103 397 0.400000 +3103 409 0.400000 +3103 415 0.400000 +3103 447 0.400000 +3103 467 0.400000 +3103 566 0.400000 +3103 644 0.400000 +3103 652 0.400000 +3103 709 0.400000 +3103 711 0.400000 +3103 774 0.400000 +3103 846 0.400000 +3103 847 0.400000 +3103 865 0.400000 +3103 900 0.400000 +3103 926 0.400000 +3103 942 0.400000 +3103 964 0.400000 +3103 1122 0.400000 +3103 1151 0.400000 +3103 1195 0.400000 +3103 1197 0.400000 +3103 1240 0.400000 +3103 1320 0.400000 +3103 1361 0.400000 +3103 1363 0.400000 +3103 1468 0.400000 +3103 1613 0.400000 +3103 1636 0.400000 +3103 1677 0.400000 +3103 1763 0.400000 +3103 1836 0.400000 +3103 1851 0.400000 +3103 1943 0.400000 +3103 1962 0.400000 +3103 1963 0.400000 +3103 2009 0.400000 +3103 2174 0.400000 +3103 2387 0.400000 +3103 2424 0.400000 +3103 2532 0.400000 +3103 2562 0.400000 +3103 2757 0.400000 +3103 2804 0.400000 +3103 2824 0.400000 +3103 2975 0.400000 +3103 3041 0.400000 +3103 3042 0.400000 +3103 3076 0.400000 +3103 3094 0.400000 +3103 3101 0.400000 +3104 70 0.400000 +3104 79 0.400000 +3104 94 0.400000 +3104 110 0.400000 +3104 129 0.400000 +3104 204 0.400000 +3104 215 0.400000 +3104 269 0.400000 +3104 285 0.400000 +3104 293 0.400000 +3104 303 0.400000 +3104 361 0.400000 +3104 364 0.400000 +3104 520 0.400000 +3104 523 0.400000 +3104 539 0.400000 +3104 673 0.400000 +3104 682 0.400000 +3104 762 0.400000 +3104 945 0.400000 +3104 1014 0.400000 +3104 1015 0.400000 +3104 1044 0.400000 +3104 1066 0.400000 +3104 1077 0.400000 +3104 1109 0.400000 +3104 1118 0.400000 +3104 1135 0.400000 +3104 1264 0.400000 +3104 1306 0.400000 +3104 1324 0.400000 +3104 1347 0.400000 +3104 1359 0.400000 +3104 1388 0.400000 +3104 1417 0.400000 +3104 1525 0.400000 +3104 1571 0.400000 +3104 1585 0.400000 +3104 1690 0.400000 +3104 1729 0.400000 +3104 1765 0.400000 +3104 1778 0.400000 +3104 1899 0.400000 +3104 1933 0.400000 +3104 1965 0.400000 +3104 1987 0.400000 +3104 2009 0.400000 +3104 2022 0.400000 +3104 2075 0.400000 +3104 2121 0.400000 +3104 2166 0.400000 +3104 2183 0.400000 +3104 2310 0.400000 +3104 2341 0.400000 +3104 2364 0.400000 +3104 2371 0.400000 +3104 2446 0.400000 +3104 2581 0.400000 +3104 2707 0.400000 +3104 2729 0.400000 +3104 2731 0.400000 +3104 2779 0.400000 +3104 2835 0.400000 +3104 2865 0.400000 +3104 2874 0.400000 +3104 2945 0.400000 +3104 2965 0.400000 +3104 2971 0.400000 +3104 3011 0.400000 +3104 3015 0.400000 +3104 3024 0.400000 +3104 3040 0.400000 +3104 3060 0.400000 +3104 3083 0.400000 +3104 3104 0.400000 +3104 3117 0.400000 +3104 3125 0.400000 +3104 3186 0.400000 +3105 7 0.400000 +3105 41 0.400000 +3105 158 0.400000 +3105 227 0.400000 +3105 354 0.400000 +3105 381 0.400000 +3105 457 0.400000 +3105 489 0.400000 +3105 555 0.400000 +3105 676 0.400000 +3105 726 0.400000 +3105 863 0.400000 +3105 865 0.400000 +3105 870 0.400000 +3105 896 0.400000 +3105 907 0.400000 +3105 989 0.400000 +3105 1026 0.400000 +3105 1029 0.400000 +3105 1094 0.400000 +3105 1138 0.400000 +3105 1250 0.400000 +3105 1311 0.400000 +3105 1483 0.400000 +3105 1589 0.400000 +3105 1639 0.400000 +3105 1644 0.400000 +3105 1654 0.400000 +3105 1712 0.400000 +3105 1721 0.400000 +3105 1768 0.400000 +3105 1806 0.400000 +3105 1834 0.400000 +3105 1894 0.400000 +3105 1903 0.400000 +3105 1954 0.400000 +3105 2103 0.400000 +3105 2211 0.400000 +3105 2229 0.400000 +3105 2273 0.400000 +3105 2281 0.400000 +3105 2366 0.400000 +3105 2370 0.400000 +3105 2380 0.400000 +3105 2433 0.400000 +3105 2512 0.400000 +3105 2686 0.400000 +3105 2809 0.400000 +3105 2840 0.400000 +3105 2855 0.400000 +3105 2857 0.400000 +3105 2891 0.400000 +3105 2985 0.400000 +3105 3006 0.400000 +3105 3045 0.400000 +3105 3073 0.400000 +3105 3083 0.400000 +3105 3104 0.400000 +3105 3134 0.400000 +3106 100 0.400000 +3106 123 0.400000 +3106 156 0.400000 +3106 244 0.400000 +3106 263 0.400000 +3106 278 0.400000 +3106 311 0.400000 +3106 388 0.400000 +3106 512 0.400000 +3106 637 0.400000 +3106 646 0.400000 +3106 689 0.400000 +3106 691 0.400000 +3106 701 0.400000 +3106 736 0.400000 +3106 832 0.400000 +3106 873 0.400000 +3106 931 0.400000 +3106 934 0.400000 +3106 962 0.400000 +3106 1024 0.400000 +3106 1155 0.400000 +3106 1273 0.400000 +3106 1295 0.400000 +3106 1332 0.400000 +3106 1370 0.400000 +3106 1395 0.400000 +3106 1447 0.400000 +3106 1466 0.400000 +3106 1711 0.400000 +3106 1741 0.400000 +3106 1808 0.400000 +3106 1846 0.400000 +3106 1929 0.400000 +3106 2012 0.400000 +3106 2172 0.400000 +3106 2209 0.400000 +3106 2211 0.400000 +3106 2242 0.400000 +3106 2265 0.400000 +3106 2302 0.400000 +3106 2306 0.400000 +3106 2353 0.400000 +3106 2406 0.400000 +3106 2414 0.400000 +3106 2484 0.400000 +3106 2614 0.400000 +3106 2615 0.400000 +3106 2775 0.400000 +3106 2781 0.400000 +3106 2831 0.400000 +3106 2834 0.400000 +3106 2836 0.400000 +3106 2846 0.400000 +3106 2866 0.400000 +3106 2914 0.400000 +3106 2960 0.400000 +3106 2963 0.400000 +3106 2975 0.400000 +3106 3038 0.400000 +3106 3039 0.400000 +3107 63 0.400000 +3107 67 0.400000 +3107 80 0.400000 +3107 83 0.400000 +3107 307 0.400000 +3107 413 0.400000 +3107 535 0.400000 +3107 550 0.400000 +3107 553 0.400000 +3107 628 0.400000 +3107 676 0.400000 +3107 679 0.400000 +3107 753 0.400000 +3107 761 0.400000 +3107 830 0.400000 +3107 887 0.400000 +3107 910 0.400000 +3107 939 0.400000 +3107 989 0.400000 +3107 1028 0.400000 +3107 1056 0.400000 +3107 1088 0.400000 +3107 1260 0.400000 +3107 1307 0.400000 +3107 1313 0.400000 +3107 1423 0.400000 +3107 1428 0.400000 +3107 1513 0.400000 +3107 1542 0.400000 +3107 1606 0.400000 +3107 1620 0.400000 +3107 1623 0.400000 +3107 1718 0.400000 +3107 1768 0.400000 +3107 1787 0.400000 +3107 1935 0.400000 +3107 1939 0.400000 +3107 1973 0.400000 +3107 2044 0.400000 +3107 2072 0.400000 +3107 2152 0.400000 +3107 2193 0.400000 +3107 2217 0.400000 +3107 2263 0.400000 +3107 2293 0.400000 +3107 2311 0.400000 +3107 2387 0.400000 +3107 2423 0.400000 +3107 2560 0.400000 +3107 2627 0.400000 +3107 2659 0.400000 +3107 2674 0.400000 +3107 2687 0.400000 +3107 2751 0.400000 +3107 2757 0.400000 +3107 2795 0.400000 +3107 2872 0.400000 +3107 2886 0.400000 +3107 2888 0.400000 +3107 2914 0.400000 +3107 2957 0.400000 +3107 3004 0.400000 +3107 3032 0.400000 +3107 3085 0.400000 +3107 3111 0.400000 +3107 3142 0.400000 +3108 108 0.400000 +3108 109 0.400000 +3108 153 0.400000 +3108 169 0.400000 +3108 287 0.400000 +3108 292 0.400000 +3108 320 0.400000 +3108 326 0.400000 +3108 400 0.400000 +3108 491 0.400000 +3108 530 0.400000 +3108 537 0.400000 +3108 636 0.400000 +3108 796 0.400000 +3108 868 0.400000 +3108 1028 0.400000 +3108 1056 0.400000 +3108 1157 0.400000 +3108 1212 0.400000 +3108 1235 0.400000 +3108 1299 0.400000 +3108 1306 0.400000 +3108 1379 0.400000 +3108 1616 0.400000 +3108 1621 0.400000 +3108 1680 0.400000 +3108 1795 0.400000 +3108 1826 0.400000 +3108 1935 0.400000 +3108 2099 0.400000 +3108 2128 0.400000 +3108 2201 0.400000 +3108 2218 0.400000 +3108 2232 0.400000 +3108 2261 0.400000 +3108 2290 0.400000 +3108 2293 0.400000 +3108 2324 0.400000 +3108 2341 0.400000 +3108 2477 0.400000 +3108 2525 0.400000 +3108 2600 0.400000 +3108 2624 0.400000 +3108 2676 0.400000 +3108 2835 0.400000 +3108 2853 0.400000 +3108 2919 0.400000 +3108 2923 0.400000 +3108 3008 0.400000 +3108 3034 0.400000 +3108 3064 0.400000 +3108 3090 0.400000 +3108 3092 0.400000 +3108 3153 0.400000 +3109 17 0.400000 +3109 22 0.400000 +3109 76 0.400000 +3109 101 0.400000 +3109 162 0.400000 +3109 171 0.400000 +3109 287 0.400000 +3109 329 0.400000 +3109 368 0.400000 +3109 393 0.400000 +3109 481 0.400000 +3109 491 0.400000 +3109 499 0.400000 +3109 516 0.400000 +3109 519 0.400000 +3109 545 0.400000 +3109 554 0.400000 +3109 605 0.400000 +3109 645 0.400000 +3109 782 0.400000 +3109 810 0.400000 +3109 812 0.400000 +3109 820 0.400000 +3109 909 0.400000 +3109 924 0.400000 +3109 950 0.400000 +3109 955 0.400000 +3109 957 0.400000 +3109 1024 0.400000 +3109 1026 0.400000 +3109 1060 0.400000 +3109 1143 0.400000 +3109 1248 0.400000 +3109 1391 0.400000 +3109 1490 0.400000 +3109 1549 0.400000 +3109 1623 0.400000 +3109 1636 0.400000 +3109 1897 0.400000 +3109 1966 0.400000 +3109 2020 0.400000 +3109 2078 0.400000 +3109 2142 0.400000 +3109 2155 0.400000 +3109 2182 0.400000 +3109 2184 0.400000 +3109 2231 0.400000 +3109 2274 0.400000 +3109 2283 0.400000 +3109 2305 0.400000 +3109 2335 0.400000 +3109 2439 0.400000 +3109 2449 0.400000 +3109 2597 0.400000 +3109 2678 0.400000 +3109 2699 0.400000 +3109 2798 0.400000 +3109 2814 0.400000 +3109 2855 0.400000 +3109 2881 0.400000 +3109 2918 0.400000 +3109 2974 0.400000 +3109 3035 0.400000 +3109 3080 0.400000 +3109 3085 0.400000 +3109 3183 0.400000 +3110 172 0.400000 +3110 189 0.400000 +3110 324 0.400000 +3110 343 0.400000 +3110 396 0.400000 +3110 429 0.400000 +3110 574 0.400000 +3110 596 0.400000 +3110 636 0.400000 +3110 651 0.400000 +3110 678 0.400000 +3110 731 0.400000 +3110 891 0.400000 +3110 981 0.400000 +3110 1002 0.400000 +3110 1014 0.400000 +3110 1068 0.400000 +3110 1148 0.400000 +3110 1166 0.400000 +3110 1198 0.400000 +3110 1231 0.400000 +3110 1297 0.400000 +3110 1325 0.400000 +3110 1343 0.400000 +3110 1405 0.400000 +3110 1452 0.400000 +3110 1457 0.400000 +3110 1527 0.400000 +3110 1531 0.400000 +3110 1622 0.400000 +3110 1659 0.400000 +3110 1697 0.400000 +3110 1731 0.400000 +3110 1794 0.400000 +3110 1853 0.400000 +3110 1872 0.400000 +3110 1960 0.400000 +3110 2038 0.400000 +3110 2188 0.400000 +3110 2203 0.400000 +3110 2224 0.400000 +3110 2278 0.400000 +3110 2299 0.400000 +3110 2311 0.400000 +3110 2464 0.400000 +3110 2471 0.400000 +3110 2512 0.400000 +3110 2552 0.400000 +3110 2602 0.400000 +3110 2613 0.400000 +3110 2621 0.400000 +3110 2631 0.400000 +3110 2672 0.400000 +3110 2750 0.400000 +3110 2848 0.400000 +3110 2882 0.400000 +3110 3014 0.400000 +3110 3049 0.400000 +3110 3089 0.400000 +3110 3153 0.400000 +3110 3196 0.400000 +3111 6 0.400000 +3111 58 0.400000 +3111 81 0.400000 +3111 178 0.400000 +3111 188 0.400000 +3111 224 0.400000 +3111 254 0.400000 +3111 258 0.400000 +3111 266 0.400000 +3111 361 0.400000 +3111 397 0.400000 +3111 412 0.400000 +3111 494 0.400000 +3111 510 0.400000 +3111 549 0.400000 +3111 601 0.400000 +3111 666 0.400000 +3111 677 0.400000 +3111 766 0.400000 +3111 822 0.400000 +3111 1081 0.400000 +3111 1090 0.400000 +3111 1117 0.400000 +3111 1165 0.400000 +3111 1216 0.400000 +3111 1226 0.400000 +3111 1247 0.400000 +3111 1431 0.400000 +3111 1434 0.400000 +3111 1466 0.400000 +3111 1554 0.400000 +3111 1662 0.400000 +3111 1729 0.400000 +3111 1751 0.400000 +3111 1767 0.400000 +3111 1768 0.400000 +3111 1799 0.400000 +3111 1815 0.400000 +3111 1822 0.400000 +3111 1832 0.400000 +3111 1834 0.400000 +3111 1938 0.400000 +3111 2063 0.400000 +3111 2133 0.400000 +3111 2224 0.400000 +3111 2268 0.400000 +3111 2295 0.400000 +3111 2314 0.400000 +3111 2318 0.400000 +3111 2320 0.400000 +3111 2361 0.400000 +3111 2503 0.400000 +3111 2514 0.400000 +3111 2531 0.400000 +3111 2551 0.400000 +3111 2599 0.400000 +3111 2628 0.400000 +3111 2680 0.400000 +3111 2690 0.400000 +3111 2692 0.400000 +3111 2718 0.400000 +3111 2757 0.400000 +3111 2761 0.400000 +3111 2768 0.400000 +3111 2819 0.400000 +3111 2828 0.400000 +3111 2928 0.400000 +3111 2935 0.400000 +3111 2938 0.400000 +3111 2969 0.400000 +3111 3001 0.400000 +3111 3046 0.400000 +3111 3171 0.400000 +3111 3198 0.400000 +3112 11 0.400000 +3112 61 0.400000 +3112 76 0.400000 +3112 161 0.400000 +3112 178 0.400000 +3112 200 0.400000 +3112 237 0.400000 +3112 267 0.400000 +3112 298 0.400000 +3112 425 0.400000 +3112 511 0.400000 +3112 520 0.400000 +3112 630 0.400000 +3112 680 0.400000 +3112 701 0.400000 +3112 714 0.400000 +3112 761 0.400000 +3112 900 0.400000 +3112 920 0.400000 +3112 981 0.400000 +3112 1055 0.400000 +3112 1074 0.400000 +3112 1078 0.400000 +3112 1167 0.400000 +3112 1178 0.400000 +3112 1193 0.400000 +3112 1260 0.400000 +3112 1324 0.400000 +3112 1481 0.400000 +3112 1482 0.400000 +3112 1499 0.400000 +3112 1616 0.400000 +3112 1673 0.400000 +3112 1674 0.400000 +3112 1693 0.400000 +3112 1703 0.400000 +3112 1747 0.400000 +3112 1804 0.400000 +3112 1825 0.400000 +3112 1850 0.400000 +3112 1887 0.400000 +3112 1900 0.400000 +3112 1978 0.400000 +3112 2010 0.400000 +3112 2139 0.400000 +3112 2262 0.400000 +3112 2416 0.400000 +3112 2436 0.400000 +3112 2443 0.400000 +3112 2511 0.400000 +3112 2698 0.400000 +3112 2802 0.400000 +3112 2869 0.400000 +3112 2871 0.400000 +3112 2906 0.400000 +3112 3006 0.400000 +3112 3067 0.400000 +3113 39 0.400000 +3113 51 0.400000 +3113 209 0.400000 +3113 213 0.400000 +3113 293 0.400000 +3113 473 0.400000 +3113 491 0.400000 +3113 527 0.400000 +3113 558 0.400000 +3113 590 0.400000 +3113 725 0.400000 +3113 727 0.400000 +3113 730 0.400000 +3113 800 0.400000 +3113 813 0.400000 +3113 876 0.400000 +3113 1036 0.400000 +3113 1110 0.400000 +3113 1138 0.400000 +3113 1207 0.400000 +3113 1270 0.400000 +3113 1323 0.400000 +3113 1453 0.400000 +3113 1475 0.400000 +3113 1560 0.400000 +3113 1852 0.400000 +3113 1890 0.400000 +3113 1925 0.400000 +3113 1950 0.400000 +3113 2027 0.400000 +3113 2132 0.400000 +3113 2141 0.400000 +3113 2275 0.400000 +3113 2283 0.400000 +3113 2598 0.400000 +3113 2733 0.400000 +3113 2754 0.400000 +3113 2820 0.400000 +3113 2829 0.400000 +3113 2853 0.400000 +3113 2875 0.400000 +3113 2935 0.400000 +3113 2964 0.400000 +3113 3066 0.400000 +3113 3080 0.400000 +3113 3125 0.400000 +3113 3139 0.400000 +3113 3199 0.400000 +3114 4 0.400000 +3114 131 0.400000 +3114 166 0.400000 +3114 193 0.400000 +3114 195 0.400000 +3114 225 0.400000 +3114 366 0.400000 +3114 418 0.400000 +3114 458 0.400000 +3114 490 0.400000 +3114 511 0.400000 +3114 518 0.400000 +3114 543 0.400000 +3114 558 0.400000 +3114 603 0.400000 +3114 670 0.400000 +3114 731 0.400000 +3114 796 0.400000 +3114 807 0.400000 +3114 844 0.400000 +3114 915 0.400000 +3114 936 0.400000 +3114 949 0.400000 +3114 1021 0.400000 +3114 1035 0.400000 +3114 1174 0.400000 +3114 1202 0.400000 +3114 1235 0.400000 +3114 1278 0.400000 +3114 1365 0.400000 +3114 1388 0.400000 +3114 1439 0.400000 +3114 1476 0.400000 +3114 1520 0.400000 +3114 1582 0.400000 +3114 1594 0.400000 +3114 1595 0.400000 +3114 1618 0.400000 +3114 1626 0.400000 +3114 1755 0.400000 +3114 1772 0.400000 +3114 1792 0.400000 +3114 1802 0.400000 +3114 1819 0.400000 +3114 1845 0.400000 +3114 1858 0.400000 +3114 1869 0.400000 +3114 2035 0.400000 +3114 2041 0.400000 +3114 2150 0.400000 +3114 2167 0.400000 +3114 2191 0.400000 +3114 2208 0.400000 +3114 2368 0.400000 +3114 2431 0.400000 +3114 2570 0.400000 +3114 2631 0.400000 +3114 2709 0.400000 +3114 2752 0.400000 +3114 2767 0.400000 +3114 2805 0.400000 +3114 2836 0.400000 +3114 2853 0.400000 +3114 2940 0.400000 +3114 2949 0.400000 +3114 2954 0.400000 +3114 3081 0.400000 +3115 59 0.400000 +3115 112 0.400000 +3115 175 0.400000 +3115 176 0.400000 +3115 241 0.400000 +3115 249 0.400000 +3115 275 0.400000 +3115 306 0.400000 +3115 393 0.400000 +3115 413 0.400000 +3115 528 0.400000 +3115 618 0.400000 +3115 701 0.400000 +3115 763 0.400000 +3115 767 0.400000 +3115 833 0.400000 +3115 843 0.400000 +3115 862 0.400000 +3115 892 0.400000 +3115 949 0.400000 +3115 1040 0.400000 +3115 1077 0.400000 +3115 1173 0.400000 +3115 1240 0.400000 +3115 1262 0.400000 +3115 1288 0.400000 +3115 1307 0.400000 +3115 1344 0.400000 +3115 1540 0.400000 +3115 1567 0.400000 +3115 1611 0.400000 +3115 1625 0.400000 +3115 1673 0.400000 +3115 1862 0.400000 +3115 1879 0.400000 +3115 1899 0.400000 +3115 1959 0.400000 +3115 1983 0.400000 +3115 2031 0.400000 +3115 2071 0.400000 +3115 2154 0.400000 +3115 2305 0.400000 +3115 2401 0.400000 +3115 2506 0.400000 +3115 2517 0.400000 +3115 2547 0.400000 +3115 2562 0.400000 +3115 2580 0.400000 +3115 2639 0.400000 +3115 2675 0.400000 +3115 2759 0.400000 +3115 2813 0.400000 +3115 2825 0.400000 +3115 2834 0.400000 +3115 2850 0.400000 +3115 2870 0.400000 +3115 2919 0.400000 +3115 2969 0.400000 +3115 3039 0.400000 +3115 3079 0.400000 +3115 3081 0.400000 +3115 3127 0.400000 +3116 12 0.400000 +3116 32 0.400000 +3116 37 0.400000 +3116 67 0.400000 +3116 123 0.400000 +3116 129 0.400000 +3116 218 0.400000 +3116 281 0.400000 +3116 296 0.400000 +3116 336 0.400000 +3116 352 0.400000 +3116 399 0.400000 +3116 495 0.400000 +3116 577 0.400000 +3116 578 0.400000 +3116 588 0.400000 +3116 593 0.400000 +3116 639 0.400000 +3116 662 0.400000 +3116 716 0.400000 +3116 852 0.400000 +3116 881 0.400000 +3116 884 0.400000 +3116 976 0.400000 +3116 1000 0.400000 +3116 1005 0.400000 +3116 1067 0.400000 +3116 1069 0.400000 +3116 1150 0.400000 +3116 1256 0.400000 +3116 1319 0.400000 +3116 1340 0.400000 +3116 1352 0.400000 +3116 1470 0.400000 +3116 1495 0.400000 +3116 1645 0.400000 +3116 1647 0.400000 +3116 1650 0.400000 +3116 1673 0.400000 +3116 1786 0.400000 +3116 1842 0.400000 +3116 1846 0.400000 +3116 2007 0.400000 +3116 2177 0.400000 +3116 2184 0.400000 +3116 2195 0.400000 +3116 2250 0.400000 +3116 2283 0.400000 +3116 2301 0.400000 +3116 2364 0.400000 +3116 2434 0.400000 +3116 2477 0.400000 +3116 2484 0.400000 +3116 2535 0.400000 +3116 2560 0.400000 +3116 2587 0.400000 +3116 2608 0.400000 +3116 2698 0.400000 +3116 2728 0.400000 +3116 2769 0.400000 +3116 2884 0.400000 +3116 3022 0.400000 +3116 3051 0.400000 +3116 3110 0.400000 +3117 30 0.400000 +3117 107 0.400000 +3117 142 0.400000 +3117 220 0.400000 +3117 224 0.400000 +3117 232 0.400000 +3117 275 0.400000 +3117 354 0.400000 +3117 620 0.400000 +3117 659 0.400000 +3117 660 0.400000 +3117 679 0.400000 +3117 719 0.400000 +3117 779 0.400000 +3117 858 0.400000 +3117 863 0.400000 +3117 865 0.400000 +3117 874 0.400000 +3117 1108 0.400000 +3117 1122 0.400000 +3117 1131 0.400000 +3117 1160 0.400000 +3117 1208 0.400000 +3117 1328 0.400000 +3117 1357 0.400000 +3117 1409 0.400000 +3117 1413 0.400000 +3117 1417 0.400000 +3117 1446 0.400000 +3117 1462 0.400000 +3117 1463 0.400000 +3117 1619 0.400000 +3117 1672 0.400000 +3117 1835 0.400000 +3117 1898 0.400000 +3117 1948 0.400000 +3117 2181 0.400000 +3117 2210 0.400000 +3117 2261 0.400000 +3117 2284 0.400000 +3117 2332 0.400000 +3117 2333 0.400000 +3117 2648 0.400000 +3117 2731 0.400000 +3117 2835 0.400000 +3117 2837 0.400000 +3117 2856 0.400000 +3117 2858 0.400000 +3117 2934 0.400000 +3117 2943 0.400000 +3117 3107 0.400000 +3117 3150 0.400000 +3118 40 0.400000 +3118 87 0.400000 +3118 276 0.400000 +3118 329 0.400000 +3118 436 0.400000 +3118 508 0.400000 +3118 534 0.400000 +3118 537 0.400000 +3118 560 0.400000 +3118 564 0.400000 +3118 625 0.400000 +3118 665 0.400000 +3118 695 0.400000 +3118 704 0.400000 +3118 769 0.400000 +3118 866 0.400000 +3118 911 0.400000 +3118 961 0.400000 +3118 1019 0.400000 +3118 1054 0.400000 +3118 1060 0.400000 +3118 1087 0.400000 +3118 1088 0.400000 +3118 1090 0.400000 +3118 1091 0.400000 +3118 1117 0.400000 +3118 1280 0.400000 +3118 1283 0.400000 +3118 1383 0.400000 +3118 1408 0.400000 +3118 1419 0.400000 +3118 1575 0.400000 +3118 1633 0.400000 +3118 1640 0.400000 +3118 1662 0.400000 +3118 1676 0.400000 +3118 1749 0.400000 +3118 1810 0.400000 +3118 1855 0.400000 +3118 1881 0.400000 +3118 1903 0.400000 +3118 1937 0.400000 +3118 2036 0.400000 +3118 2050 0.400000 +3118 2105 0.400000 +3118 2113 0.400000 +3118 2127 0.400000 +3118 2136 0.400000 +3118 2142 0.400000 +3118 2181 0.400000 +3118 2344 0.400000 +3118 2366 0.400000 +3118 2405 0.400000 +3118 2432 0.400000 +3118 2468 0.400000 +3118 2534 0.400000 +3118 2542 0.400000 +3118 2548 0.400000 +3118 2549 0.400000 +3118 2570 0.400000 +3118 2595 0.400000 +3118 2626 0.400000 +3118 2631 0.400000 +3118 2736 0.400000 +3118 2757 0.400000 +3118 2858 0.400000 +3118 2968 0.400000 +3118 3054 0.400000 +3118 3166 0.400000 +3118 3169 0.400000 +3119 136 0.400000 +3119 151 0.400000 +3119 156 0.400000 +3119 169 0.400000 +3119 215 0.400000 +3119 219 0.400000 +3119 238 0.400000 +3119 254 0.400000 +3119 262 0.400000 +3119 269 0.400000 +3119 291 0.400000 +3119 359 0.400000 +3119 400 0.400000 +3119 506 0.400000 +3119 574 0.400000 +3119 667 0.400000 +3119 674 0.400000 +3119 704 0.400000 +3119 756 0.400000 +3119 799 0.400000 +3119 850 0.400000 +3119 883 0.400000 +3119 938 0.400000 +3119 961 0.400000 +3119 988 0.400000 +3119 1035 0.400000 +3119 1039 0.400000 +3119 1171 0.400000 +3119 1230 0.400000 +3119 1231 0.400000 +3119 1287 0.400000 +3119 1322 0.400000 +3119 1348 0.400000 +3119 1349 0.400000 +3119 1358 0.400000 +3119 1389 0.400000 +3119 1407 0.400000 +3119 1429 0.400000 +3119 1459 0.400000 +3119 1520 0.400000 +3119 1526 0.400000 +3119 1616 0.400000 +3119 1640 0.400000 +3119 1665 0.400000 +3119 1721 0.400000 +3119 1722 0.400000 +3119 1744 0.400000 +3119 1826 0.400000 +3119 1836 0.400000 +3119 1847 0.400000 +3119 1865 0.400000 +3119 2000 0.400000 +3119 2044 0.400000 +3119 2059 0.400000 +3119 2077 0.400000 +3119 2114 0.400000 +3119 2125 0.400000 +3119 2225 0.400000 +3119 2394 0.400000 +3119 2395 0.400000 +3119 2446 0.400000 +3119 2449 0.400000 +3119 2509 0.400000 +3119 2523 0.400000 +3119 2570 0.400000 +3119 2586 0.400000 +3119 2611 0.400000 +3119 2714 0.400000 +3119 2903 0.400000 +3119 2932 0.400000 +3119 3025 0.400000 +3119 3085 0.400000 +3119 3101 0.400000 +3119 3114 0.400000 +3119 3186 0.400000 +3120 2 0.400000 +3120 37 0.400000 +3120 103 0.400000 +3120 131 0.400000 +3120 140 0.400000 +3120 156 0.400000 +3120 230 0.400000 +3120 250 0.400000 +3120 269 0.400000 +3120 312 0.400000 +3120 342 0.400000 +3120 438 0.400000 +3120 493 0.400000 +3120 510 0.400000 +3120 526 0.400000 +3120 615 0.400000 +3120 616 0.400000 +3120 653 0.400000 +3120 654 0.400000 +3120 706 0.400000 +3120 825 0.400000 +3120 903 0.400000 +3120 942 0.400000 +3120 1111 0.400000 +3120 1175 0.400000 +3120 1210 0.400000 +3120 1215 0.400000 +3120 1232 0.400000 +3120 1264 0.400000 +3120 1375 0.400000 +3120 1387 0.400000 +3120 1399 0.400000 +3120 1577 0.400000 +3120 1640 0.400000 +3120 1696 0.400000 +3120 1715 0.400000 +3120 2039 0.400000 +3120 2128 0.400000 +3120 2169 0.400000 +3120 2226 0.400000 +3120 2257 0.400000 +3120 2293 0.400000 +3120 2331 0.400000 +3120 2443 0.400000 +3120 2462 0.400000 +3120 2540 0.400000 +3120 2544 0.400000 +3120 2571 0.400000 +3120 2646 0.400000 +3120 2737 0.400000 +3120 2801 0.400000 +3120 2824 0.400000 +3120 2825 0.400000 +3120 3128 0.400000 +3120 3150 0.400000 +3120 3156 0.400000 +3120 3179 0.400000 +3121 183 0.400000 +3121 256 0.400000 +3121 283 0.400000 +3121 313 0.400000 +3121 343 0.400000 +3121 361 0.400000 +3121 379 0.400000 +3121 380 0.400000 +3121 415 0.400000 +3121 449 0.400000 +3121 475 0.400000 +3121 641 0.400000 +3121 648 0.400000 +3121 766 0.400000 +3121 818 0.400000 +3121 824 0.400000 +3121 911 0.400000 +3121 958 0.400000 +3121 1029 0.400000 +3121 1079 0.400000 +3121 1117 0.400000 +3121 1132 0.400000 +3121 1136 0.400000 +3121 1163 0.400000 +3121 1255 0.400000 +3121 1319 0.400000 +3121 1470 0.400000 +3121 1471 0.400000 +3121 1519 0.400000 +3121 1786 0.400000 +3121 1795 0.400000 +3121 1813 0.400000 +3121 1880 0.400000 +3121 1968 0.400000 +3121 1988 0.400000 +3121 2000 0.400000 +3121 2072 0.400000 +3121 2118 0.400000 +3121 2220 0.400000 +3121 2242 0.400000 +3121 2277 0.400000 +3121 2279 0.400000 +3121 2284 0.400000 +3121 2327 0.400000 +3121 2347 0.400000 +3121 2462 0.400000 +3121 2489 0.400000 +3121 2510 0.400000 +3121 2540 0.400000 +3121 2593 0.400000 +3121 2722 0.400000 +3121 2881 0.400000 +3121 2910 0.400000 +3121 2951 0.400000 +3121 2954 0.400000 +3121 2970 0.400000 +3121 2994 0.400000 +3121 3024 0.400000 +3121 3102 0.400000 +3122 13 0.400000 +3122 79 0.400000 +3122 128 0.400000 +3122 184 0.400000 +3122 243 0.400000 +3122 276 0.400000 +3122 303 0.400000 +3122 323 0.400000 +3122 469 0.400000 +3122 588 0.400000 +3122 716 0.400000 +3122 798 0.400000 +3122 821 0.400000 +3122 964 0.400000 +3122 972 0.400000 +3122 1016 0.400000 +3122 1066 0.400000 +3122 1166 0.400000 +3122 1235 0.400000 +3122 1322 0.400000 +3122 1330 0.400000 +3122 1379 0.400000 +3122 1380 0.400000 +3122 1421 0.400000 +3122 1455 0.400000 +3122 1464 0.400000 +3122 1488 0.400000 +3122 1522 0.400000 +3122 1525 0.400000 +3122 1544 0.400000 +3122 1619 0.400000 +3122 1688 0.400000 +3122 1746 0.400000 +3122 1770 0.400000 +3122 1813 0.400000 +3122 1816 0.400000 +3122 1820 0.400000 +3122 1863 0.400000 +3122 1865 0.400000 +3122 1898 0.400000 +3122 1905 0.400000 +3122 1913 0.400000 +3122 1915 0.400000 +3122 1950 0.400000 +3122 1998 0.400000 +3122 2048 0.400000 +3122 2061 0.400000 +3122 2098 0.400000 +3122 2127 0.400000 +3122 2159 0.400000 +3122 2160 0.400000 +3122 2182 0.400000 +3122 2252 0.400000 +3122 2256 0.400000 +3122 2332 0.400000 +3122 2338 0.400000 +3122 2390 0.400000 +3122 2449 0.400000 +3122 2459 0.400000 +3122 2626 0.400000 +3122 2652 0.400000 +3122 2673 0.400000 +3122 2728 0.400000 +3122 2754 0.400000 +3122 2814 0.400000 +3122 2852 0.400000 +3122 2914 0.400000 +3122 2954 0.400000 +3122 2966 0.400000 +3122 3035 0.400000 +3122 3095 0.400000 +3122 3188 0.400000 +3122 3189 0.400000 +3123 107 0.400000 +3123 143 0.400000 +3123 167 0.400000 +3123 174 0.400000 +3123 175 0.400000 +3123 181 0.400000 +3123 193 0.400000 +3123 205 0.400000 +3123 246 0.400000 +3123 322 0.400000 +3123 336 0.400000 +3123 381 0.400000 +3123 384 0.400000 +3123 421 0.400000 +3123 427 0.400000 +3123 471 0.400000 +3123 474 0.400000 +3123 475 0.400000 +3123 494 0.400000 +3123 561 0.400000 +3123 627 0.400000 +3123 631 0.400000 +3123 707 0.400000 +3123 730 0.400000 +3123 752 0.400000 +3123 761 0.400000 +3123 764 0.400000 +3123 813 0.400000 +3123 859 0.400000 +3123 953 0.400000 +3123 956 0.400000 +3123 987 0.400000 +3123 1024 0.400000 +3123 1166 0.400000 +3123 1232 0.400000 +3123 1327 0.400000 +3123 1460 0.400000 +3123 1494 0.400000 +3123 1496 0.400000 +3123 1539 0.400000 +3123 1559 0.400000 +3123 1610 0.400000 +3123 1726 0.400000 +3123 1789 0.400000 +3123 1886 0.400000 +3123 1941 0.400000 +3123 1970 0.400000 +3123 2001 0.400000 +3123 2002 0.400000 +3123 2010 0.400000 +3123 2044 0.400000 +3123 2092 0.400000 +3123 2109 0.400000 +3123 2255 0.400000 +3123 2270 0.400000 +3123 2275 0.400000 +3123 2320 0.400000 +3123 2531 0.400000 +3123 2625 0.400000 +3123 2637 0.400000 +3123 2638 0.400000 +3123 2653 0.400000 +3123 2714 0.400000 +3123 2862 0.400000 +3123 2880 0.400000 +3123 2897 0.400000 +3123 2937 0.400000 +3123 3025 0.400000 +3123 3079 0.400000 +3123 3091 0.400000 +3123 3168 0.400000 +3124 24 0.400000 +3124 93 0.400000 +3124 199 0.400000 +3124 268 0.400000 +3124 287 0.400000 +3124 316 0.400000 +3124 355 0.400000 +3124 367 0.400000 +3124 453 0.400000 +3124 456 0.400000 +3124 564 0.400000 +3124 574 0.400000 +3124 580 0.400000 +3124 592 0.400000 +3124 662 0.400000 +3124 771 0.400000 +3124 774 0.400000 +3124 786 0.400000 +3124 797 0.400000 +3124 837 0.400000 +3124 839 0.400000 +3124 949 0.400000 +3124 968 0.400000 +3124 974 0.400000 +3124 1061 0.400000 +3124 1154 0.400000 +3124 1268 0.400000 +3124 1307 0.400000 +3124 1408 0.400000 +3124 1434 0.400000 +3124 1494 0.400000 +3124 1508 0.400000 +3124 1570 0.400000 +3124 1658 0.400000 +3124 1685 0.400000 +3124 1781 0.400000 +3124 1806 0.400000 +3124 1859 0.400000 +3124 1918 0.400000 +3124 2004 0.400000 +3124 2036 0.400000 +3124 2083 0.400000 +3124 2151 0.400000 +3124 2217 0.400000 +3124 2312 0.400000 +3124 2317 0.400000 +3124 2483 0.400000 +3124 2501 0.400000 +3124 2572 0.400000 +3124 2642 0.400000 +3124 2779 0.400000 +3124 2784 0.400000 +3124 2809 0.400000 +3124 2944 0.400000 +3124 2949 0.400000 +3124 3009 0.400000 +3125 62 0.400000 +3125 205 0.400000 +3125 223 0.400000 +3125 233 0.400000 +3125 252 0.400000 +3125 337 0.400000 +3125 343 0.400000 +3125 422 0.400000 +3125 441 0.400000 +3125 487 0.400000 +3125 498 0.400000 +3125 577 0.400000 +3125 642 0.400000 +3125 717 0.400000 +3125 739 0.400000 +3125 740 0.400000 +3125 753 0.400000 +3125 769 0.400000 +3125 775 0.400000 +3125 837 0.400000 +3125 877 0.400000 +3125 891 0.400000 +3125 916 0.400000 +3125 955 0.400000 +3125 958 0.400000 +3125 1051 0.400000 +3125 1184 0.400000 +3125 1216 0.400000 +3125 1305 0.400000 +3125 1313 0.400000 +3125 1383 0.400000 +3125 1447 0.400000 +3125 1459 0.400000 +3125 1530 0.400000 +3125 1532 0.400000 +3125 1540 0.400000 +3125 1571 0.400000 +3125 1653 0.400000 +3125 1660 0.400000 +3125 1682 0.400000 +3125 1813 0.400000 +3125 1872 0.400000 +3125 1894 0.400000 +3125 1977 0.400000 +3125 2027 0.400000 +3125 2066 0.400000 +3125 2086 0.400000 +3125 2126 0.400000 +3125 2162 0.400000 +3125 2213 0.400000 +3125 2298 0.400000 +3125 2354 0.400000 +3125 2369 0.400000 +3125 2443 0.400000 +3125 2486 0.400000 +3125 2547 0.400000 +3125 2570 0.400000 +3125 2721 0.400000 +3125 2724 0.400000 +3125 2767 0.400000 +3125 2768 0.400000 +3125 2790 0.400000 +3125 2797 0.400000 +3125 2832 0.400000 +3125 2869 0.400000 +3125 2885 0.400000 +3125 2901 0.400000 +3125 3019 0.400000 +3125 3105 0.400000 +3125 3119 0.400000 +3125 3144 0.400000 +3125 3200 0.400000 +3126 53 0.400000 +3126 68 0.400000 +3126 100 0.400000 +3126 120 0.400000 +3126 207 0.400000 +3126 345 0.400000 +3126 395 0.400000 +3126 473 0.400000 +3126 516 0.400000 +3126 535 0.400000 +3126 574 0.400000 +3126 684 0.400000 +3126 733 0.400000 +3126 734 0.400000 +3126 973 0.400000 +3126 993 0.400000 +3126 1082 0.400000 +3126 1102 0.400000 +3126 1195 0.400000 +3126 1201 0.400000 +3126 1209 0.400000 +3126 1426 0.400000 +3126 1470 0.400000 +3126 1628 0.400000 +3126 1640 0.400000 +3126 1651 0.400000 +3126 1699 0.400000 +3126 1763 0.400000 +3126 1833 0.400000 +3126 1935 0.400000 +3126 1936 0.400000 +3126 1966 0.400000 +3126 2047 0.400000 +3126 2069 0.400000 +3126 2070 0.400000 +3126 2079 0.400000 +3126 2183 0.400000 +3126 2260 0.400000 +3126 2290 0.400000 +3126 2423 0.400000 +3126 2620 0.400000 +3126 2633 0.400000 +3126 2660 0.400000 +3126 2692 0.400000 +3126 2708 0.400000 +3126 2711 0.400000 +3126 2721 0.400000 +3126 2737 0.400000 +3126 2806 0.400000 +3126 2831 0.400000 +3126 2948 0.400000 +3126 2991 0.400000 +3126 3015 0.400000 +3126 3018 0.400000 +3126 3081 0.400000 +3126 3085 0.400000 +3126 3119 0.400000 +3127 57 0.400000 +3127 105 0.400000 +3127 112 0.400000 +3127 163 0.400000 +3127 228 0.400000 +3127 324 0.400000 +3127 352 0.400000 +3127 371 0.400000 +3127 378 0.400000 +3127 415 0.400000 +3127 492 0.400000 +3127 554 0.400000 +3127 590 0.400000 +3127 666 0.400000 +3127 683 0.400000 +3127 731 0.400000 +3127 733 0.400000 +3127 772 0.400000 +3127 803 0.400000 +3127 909 0.400000 +3127 917 0.400000 +3127 935 0.400000 +3127 998 0.400000 +3127 1039 0.400000 +3127 1072 0.400000 +3127 1102 0.400000 +3127 1120 0.400000 +3127 1243 0.400000 +3127 1282 0.400000 +3127 1361 0.400000 +3127 1374 0.400000 +3127 1429 0.400000 +3127 1486 0.400000 +3127 1503 0.400000 +3127 1510 0.400000 +3127 1519 0.400000 +3127 1558 0.400000 +3127 1605 0.400000 +3127 1626 0.400000 +3127 1631 0.400000 +3127 1671 0.400000 +3127 1700 0.400000 +3127 1775 0.400000 +3127 1793 0.400000 +3127 1860 0.400000 +3127 1868 0.400000 +3127 1950 0.400000 +3127 1975 0.400000 +3127 2337 0.400000 +3127 2445 0.400000 +3127 2478 0.400000 +3127 2546 0.400000 +3127 2591 0.400000 +3127 2723 0.400000 +3127 2759 0.400000 +3127 2862 0.400000 +3127 2911 0.400000 +3127 2978 0.400000 +3127 2988 0.400000 +3127 3002 0.400000 +3127 3199 0.400000 +3128 102 0.400000 +3128 113 0.400000 +3128 117 0.400000 +3128 149 0.400000 +3128 169 0.400000 +3128 230 0.400000 +3128 258 0.400000 +3128 343 0.400000 +3128 411 0.400000 +3128 429 0.400000 +3128 459 0.400000 +3128 565 0.400000 +3128 580 0.400000 +3128 591 0.400000 +3128 659 0.400000 +3128 682 0.400000 +3128 730 0.400000 +3128 759 0.400000 +3128 884 0.400000 +3128 918 0.400000 +3128 982 0.400000 +3128 999 0.400000 +3128 1059 0.400000 +3128 1179 0.400000 +3128 1380 0.400000 +3128 1462 0.400000 +3128 1561 0.400000 +3128 1594 0.400000 +3128 1602 0.400000 +3128 1607 0.400000 +3128 1660 0.400000 +3128 1691 0.400000 +3128 1716 0.400000 +3128 1746 0.400000 +3128 1817 0.400000 +3128 1826 0.400000 +3128 1874 0.400000 +3128 1950 0.400000 +3128 2161 0.400000 +3128 2168 0.400000 +3128 2206 0.400000 +3128 2214 0.400000 +3128 2259 0.400000 +3128 2286 0.400000 +3128 2556 0.400000 +3128 2609 0.400000 +3128 2618 0.400000 +3128 2673 0.400000 +3128 2680 0.400000 +3128 2681 0.400000 +3128 2697 0.400000 +3128 2740 0.400000 +3128 2777 0.400000 +3128 2808 0.400000 +3128 2812 0.400000 +3128 2832 0.400000 +3128 2833 0.400000 +3128 2835 0.400000 +3128 2854 0.400000 +3128 2855 0.400000 +3128 2904 0.400000 +3128 2953 0.400000 +3128 2986 0.400000 +3128 3014 0.400000 +3128 3103 0.400000 +3128 3126 0.400000 +3128 3154 0.400000 +3129 64 0.400000 +3129 86 0.400000 +3129 123 0.400000 +3129 225 0.400000 +3129 229 0.400000 +3129 232 0.400000 +3129 233 0.400000 +3129 252 0.400000 +3129 389 0.400000 +3129 491 0.400000 +3129 545 0.400000 +3129 639 0.400000 +3129 725 0.400000 +3129 814 0.400000 +3129 873 0.400000 +3129 961 0.400000 +3129 1106 0.400000 +3129 1217 0.400000 +3129 1269 0.400000 +3129 1304 0.400000 +3129 1321 0.400000 +3129 1373 0.400000 +3129 1422 0.400000 +3129 1509 0.400000 +3129 1580 0.400000 +3129 1592 0.400000 +3129 1660 0.400000 +3129 1689 0.400000 +3129 1718 0.400000 +3129 1730 0.400000 +3129 1800 0.400000 +3129 1826 0.400000 +3129 1989 0.400000 +3129 2069 0.400000 +3129 2130 0.400000 +3129 2194 0.400000 +3129 2289 0.400000 +3129 2465 0.400000 +3129 2467 0.400000 +3129 2494 0.400000 +3129 2519 0.400000 +3129 2536 0.400000 +3129 2553 0.400000 +3129 2627 0.400000 +3129 2695 0.400000 +3129 2696 0.400000 +3129 2739 0.400000 +3129 2859 0.400000 +3129 2999 0.400000 +3129 3042 0.400000 +3129 3080 0.400000 +3129 3156 0.400000 +3130 40 0.400000 +3130 60 0.400000 +3130 65 0.400000 +3130 140 0.400000 +3130 210 0.400000 +3130 222 0.400000 +3130 263 0.400000 +3130 268 0.400000 +3130 271 0.400000 +3130 278 0.400000 +3130 322 0.400000 +3130 384 0.400000 +3130 516 0.400000 +3130 575 0.400000 +3130 700 0.400000 +3130 806 0.400000 +3130 869 0.400000 +3130 920 0.400000 +3130 921 0.400000 +3130 978 0.400000 +3130 1021 0.400000 +3130 1168 0.400000 +3130 1196 0.400000 +3130 1254 0.400000 +3130 1351 0.400000 +3130 1395 0.400000 +3130 1449 0.400000 +3130 1474 0.400000 +3130 1483 0.400000 +3130 1574 0.400000 +3130 1609 0.400000 +3130 1642 0.400000 +3130 1695 0.400000 +3130 1725 0.400000 +3130 1776 0.400000 +3130 1831 0.400000 +3130 1908 0.400000 +3130 1976 0.400000 +3130 2086 0.400000 +3130 2250 0.400000 +3130 2298 0.400000 +3130 2324 0.400000 +3130 2334 0.400000 +3130 2341 0.400000 +3130 2415 0.400000 +3130 2445 0.400000 +3130 2449 0.400000 +3130 2642 0.400000 +3130 2665 0.400000 +3130 2713 0.400000 +3130 2751 0.400000 +3130 2765 0.400000 +3130 2766 0.400000 +3130 2846 0.400000 +3130 2902 0.400000 +3130 2958 0.400000 +3130 2965 0.400000 +3130 3033 0.400000 +3130 3056 0.400000 +3130 3071 0.400000 +3130 3115 0.400000 +3131 7 0.400000 +3131 96 0.400000 +3131 104 0.400000 +3131 113 0.400000 +3131 130 0.400000 +3131 184 0.400000 +3131 232 0.400000 +3131 274 0.400000 +3131 293 0.400000 +3131 332 0.400000 +3131 413 0.400000 +3131 420 0.400000 +3131 433 0.400000 +3131 504 0.400000 +3131 519 0.400000 +3131 602 0.400000 +3131 657 0.400000 +3131 658 0.400000 +3131 664 0.400000 +3131 691 0.400000 +3131 701 0.400000 +3131 856 0.400000 +3131 928 0.400000 +3131 933 0.400000 +3131 964 0.400000 +3131 1110 0.400000 +3131 1191 0.400000 +3131 1260 0.400000 +3131 1316 0.400000 +3131 1335 0.400000 +3131 1375 0.400000 +3131 1385 0.400000 +3131 1480 0.400000 +3131 1520 0.400000 +3131 1551 0.400000 +3131 1552 0.400000 +3131 1630 0.400000 +3131 1636 0.400000 +3131 1676 0.400000 +3131 1730 0.400000 +3131 1752 0.400000 +3131 1800 0.400000 +3131 1861 0.400000 +3131 1863 0.400000 +3131 1874 0.400000 +3131 1899 0.400000 +3131 1940 0.400000 +3131 1943 0.400000 +3131 1945 0.400000 +3131 1957 0.400000 +3131 1960 0.400000 +3131 2124 0.400000 +3131 2128 0.400000 +3131 2135 0.400000 +3131 2159 0.400000 +3131 2181 0.400000 +3131 2185 0.400000 +3131 2211 0.400000 +3131 2267 0.400000 +3131 2283 0.400000 +3131 2478 0.400000 +3131 2491 0.400000 +3131 2614 0.400000 +3131 2626 0.400000 +3131 2713 0.400000 +3131 2753 0.400000 +3131 2834 0.400000 +3131 2897 0.400000 +3131 3050 0.400000 +3131 3115 0.400000 +3131 3133 0.400000 +3132 44 0.400000 +3132 118 0.400000 +3132 119 0.400000 +3132 157 0.400000 +3132 171 0.400000 +3132 225 0.400000 +3132 253 0.400000 +3132 262 0.400000 +3132 405 0.400000 +3132 422 0.400000 +3132 587 0.400000 +3132 631 0.400000 +3132 686 0.400000 +3132 734 0.400000 +3132 778 0.400000 +3132 807 0.400000 +3132 823 0.400000 +3132 887 0.400000 +3132 892 0.400000 +3132 895 0.400000 +3132 970 0.400000 +3132 974 0.400000 +3132 1019 0.400000 +3132 1048 0.400000 +3132 1049 0.400000 +3132 1140 0.400000 +3132 1145 0.400000 +3132 1306 0.400000 +3132 1337 0.400000 +3132 1371 0.400000 +3132 1376 0.400000 +3132 1459 0.400000 +3132 1468 0.400000 +3132 1880 0.400000 +3132 1991 0.400000 +3132 2009 0.400000 +3132 2055 0.400000 +3132 2073 0.400000 +3132 2085 0.400000 +3132 2090 0.400000 +3132 2244 0.400000 +3132 2259 0.400000 +3132 2298 0.400000 +3132 2305 0.400000 +3132 2348 0.400000 +3132 2394 0.400000 +3132 2396 0.400000 +3132 2404 0.400000 +3132 2412 0.400000 +3132 2481 0.400000 +3132 2520 0.400000 +3132 2638 0.400000 +3132 2752 0.400000 +3132 2817 0.400000 +3132 2885 0.400000 +3132 2937 0.400000 +3132 3075 0.400000 +3132 3085 0.400000 +3132 3096 0.400000 +3132 3137 0.400000 +3132 3150 0.400000 +3132 3151 0.400000 +3132 3175 0.400000 +3133 5 0.400000 +3133 229 0.400000 +3133 293 0.400000 +3133 408 0.400000 +3133 421 0.400000 +3133 429 0.400000 +3133 449 0.400000 +3133 479 0.400000 +3133 513 0.400000 +3133 575 0.400000 +3133 675 0.400000 +3133 722 0.400000 +3133 747 0.400000 +3133 831 0.400000 +3133 857 0.400000 +3133 865 0.400000 +3133 897 0.400000 +3133 908 0.400000 +3133 944 0.400000 +3133 977 0.400000 +3133 1084 0.400000 +3133 1089 0.400000 +3133 1171 0.400000 +3133 1182 0.400000 +3133 1302 0.400000 +3133 1306 0.400000 +3133 1320 0.400000 +3133 1334 0.400000 +3133 1433 0.400000 +3133 1496 0.400000 +3133 1522 0.400000 +3133 1539 0.400000 +3133 1551 0.400000 +3133 1649 0.400000 +3133 1676 0.400000 +3133 1726 0.400000 +3133 1740 0.400000 +3133 1819 0.400000 +3133 1847 0.400000 +3133 1854 0.400000 +3133 2023 0.400000 +3133 2048 0.400000 +3133 2061 0.400000 +3133 2085 0.400000 +3133 2134 0.400000 +3133 2159 0.400000 +3133 2243 0.400000 +3133 2261 0.400000 +3133 2292 0.400000 +3133 2301 0.400000 +3133 2378 0.400000 +3133 2397 0.400000 +3133 2441 0.400000 +3133 2489 0.400000 +3133 2612 0.400000 +3133 2649 0.400000 +3133 2677 0.400000 +3133 2693 0.400000 +3133 2709 0.400000 +3133 2751 0.400000 +3133 2764 0.400000 +3133 2816 0.400000 +3133 2927 0.400000 +3133 2929 0.400000 +3133 2976 0.400000 +3133 3029 0.400000 +3133 3107 0.400000 +3133 3137 0.400000 +3133 3173 0.400000 +3134 26 0.400000 +3134 45 0.400000 +3134 69 0.400000 +3134 149 0.400000 +3134 166 0.400000 +3134 226 0.400000 +3134 267 0.400000 +3134 533 0.400000 +3134 711 0.400000 +3134 718 0.400000 +3134 724 0.400000 +3134 775 0.400000 +3134 832 0.400000 +3134 1046 0.400000 +3134 1063 0.400000 +3134 1108 0.400000 +3134 1171 0.400000 +3134 1181 0.400000 +3134 1306 0.400000 +3134 1323 0.400000 +3134 1381 0.400000 +3134 1422 0.400000 +3134 1444 0.400000 +3134 1466 0.400000 +3134 1489 0.400000 +3134 1547 0.400000 +3134 1570 0.400000 +3134 1628 0.400000 +3134 1684 0.400000 +3134 1791 0.400000 +3134 1795 0.400000 +3134 1857 0.400000 +3134 1900 0.400000 +3134 1908 0.400000 +3134 1915 0.400000 +3134 1948 0.400000 +3134 2132 0.400000 +3134 2219 0.400000 +3134 2323 0.400000 +3134 2344 0.400000 +3134 2454 0.400000 +3134 2456 0.400000 +3134 2459 0.400000 +3134 2503 0.400000 +3134 2532 0.400000 +3134 2559 0.400000 +3134 2579 0.400000 +3134 2639 0.400000 +3134 2712 0.400000 +3134 2715 0.400000 +3134 2741 0.400000 +3134 2826 0.400000 +3134 2856 0.400000 +3134 2937 0.400000 +3134 2943 0.400000 +3134 2954 0.400000 +3134 2967 0.400000 +3134 3037 0.400000 +3134 3095 0.400000 +3134 3104 0.400000 +3134 3122 0.400000 +3134 3147 0.400000 +3134 3150 0.400000 +3135 81 0.400000 +3135 233 0.400000 +3135 267 0.400000 +3135 428 0.400000 +3135 595 0.400000 +3135 597 0.400000 +3135 603 0.400000 +3135 615 0.400000 +3135 629 0.400000 +3135 634 0.400000 +3135 686 0.400000 +3135 695 0.400000 +3135 793 0.400000 +3135 817 0.400000 +3135 959 0.400000 +3135 1001 0.400000 +3135 1011 0.400000 +3135 1201 0.400000 +3135 1207 0.400000 +3135 1224 0.400000 +3135 1257 0.400000 +3135 1258 0.400000 +3135 1434 0.400000 +3135 1540 0.400000 +3135 1589 0.400000 +3135 1590 0.400000 +3135 1619 0.400000 +3135 1676 0.400000 +3135 1696 0.400000 +3135 1707 0.400000 +3135 1761 0.400000 +3135 1768 0.400000 +3135 1787 0.400000 +3135 1860 0.400000 +3135 1894 0.400000 +3135 1925 0.400000 +3135 1929 0.400000 +3135 1977 0.400000 +3135 2038 0.400000 +3135 2075 0.400000 +3135 2139 0.400000 +3135 2175 0.400000 +3135 2267 0.400000 +3135 2330 0.400000 +3135 2378 0.400000 +3135 2383 0.400000 +3135 2440 0.400000 +3135 2442 0.400000 +3135 2464 0.400000 +3135 2488 0.400000 +3135 2518 0.400000 +3135 2553 0.400000 +3135 2765 0.400000 +3135 2879 0.400000 +3135 2913 0.400000 +3135 2943 0.400000 +3135 2952 0.400000 +3135 3024 0.400000 +3135 3047 0.400000 +3135 3083 0.400000 +3135 3098 0.400000 +3135 3181 0.400000 +3135 3194 0.400000 +3136 93 0.400000 +3136 214 0.400000 +3136 252 0.400000 +3136 342 0.400000 +3136 367 0.400000 +3136 411 0.400000 +3136 641 0.400000 +3136 777 0.400000 +3136 780 0.400000 +3136 813 0.400000 +3136 818 0.400000 +3136 875 0.400000 +3136 898 0.400000 +3136 980 0.400000 +3136 1012 0.400000 +3136 1027 0.400000 +3136 1057 0.400000 +3136 1063 0.400000 +3136 1443 0.400000 +3136 1480 0.400000 +3136 1639 0.400000 +3136 1673 0.400000 +3136 1772 0.400000 +3136 1909 0.400000 +3136 1923 0.400000 +3136 1936 0.400000 +3136 1946 0.400000 +3136 2063 0.400000 +3136 2080 0.400000 +3136 2113 0.400000 +3136 2189 0.400000 +3136 2198 0.400000 +3136 2350 0.400000 +3136 2404 0.400000 +3136 2418 0.400000 +3136 2420 0.400000 +3136 2617 0.400000 +3136 2658 0.400000 +3136 2667 0.400000 +3136 2677 0.400000 +3136 2711 0.400000 +3136 2786 0.400000 +3136 2921 0.400000 +3136 3109 0.400000 +3136 3142 0.400000 +3136 3163 0.400000 +3137 58 0.400000 +3137 116 0.400000 +3137 136 0.400000 +3137 160 0.400000 +3137 266 0.400000 +3137 409 0.400000 +3137 474 0.400000 +3137 510 0.400000 +3137 520 0.400000 +3137 614 0.400000 +3137 697 0.400000 +3137 749 0.400000 +3137 752 0.400000 +3137 763 0.400000 +3137 810 0.400000 +3137 932 0.400000 +3137 1058 0.400000 +3137 1166 0.400000 +3137 1289 0.400000 +3137 1303 0.400000 +3137 1397 0.400000 +3137 1532 0.400000 +3137 1652 0.400000 +3137 1722 0.400000 +3137 1736 0.400000 +3137 1771 0.400000 +3137 1774 0.400000 +3137 1779 0.400000 +3137 1925 0.400000 +3137 1936 0.400000 +3137 2018 0.400000 +3137 2031 0.400000 +3137 2089 0.400000 +3137 2101 0.400000 +3137 2154 0.400000 +3137 2161 0.400000 +3137 2204 0.400000 +3137 2246 0.400000 +3137 2307 0.400000 +3137 2365 0.400000 +3137 2383 0.400000 +3137 2393 0.400000 +3137 2509 0.400000 +3137 2543 0.400000 +3137 2605 0.400000 +3137 2701 0.400000 +3137 2738 0.400000 +3137 2765 0.400000 +3137 2782 0.400000 +3137 2787 0.400000 +3137 2853 0.400000 +3137 2866 0.400000 +3137 2888 0.400000 +3137 2901 0.400000 +3137 2931 0.400000 +3137 2968 0.400000 +3137 2988 0.400000 +3137 3000 0.400000 +3138 112 0.400000 +3138 225 0.400000 +3138 248 0.400000 +3138 255 0.400000 +3138 332 0.400000 +3138 384 0.400000 +3138 417 0.400000 +3138 425 0.400000 +3138 473 0.400000 +3138 495 0.400000 +3138 533 0.400000 +3138 540 0.400000 +3138 579 0.400000 +3138 620 0.400000 +3138 631 0.400000 +3138 664 0.400000 +3138 674 0.400000 +3138 703 0.400000 +3138 913 0.400000 +3138 971 0.400000 +3138 1032 0.400000 +3138 1041 0.400000 +3138 1100 0.400000 +3138 1123 0.400000 +3138 1134 0.400000 +3138 1140 0.400000 +3138 1142 0.400000 +3138 1223 0.400000 +3138 1226 0.400000 +3138 1263 0.400000 +3138 1271 0.400000 +3138 1286 0.400000 +3138 1317 0.400000 +3138 1345 0.400000 +3138 1348 0.400000 +3138 1404 0.400000 +3138 1411 0.400000 +3138 1453 0.400000 +3138 1470 0.400000 +3138 1580 0.400000 +3138 1787 0.400000 +3138 1791 0.400000 +3138 1799 0.400000 +3138 1834 0.400000 +3138 1871 0.400000 +3138 1890 0.400000 +3138 1909 0.400000 +3138 1920 0.400000 +3138 2067 0.400000 +3138 2169 0.400000 +3138 2182 0.400000 +3138 2314 0.400000 +3138 2482 0.400000 +3138 2492 0.400000 +3138 2538 0.400000 +3138 2592 0.400000 +3138 2743 0.400000 +3138 2814 0.400000 +3138 2898 0.400000 +3138 3000 0.400000 +3138 3107 0.400000 +3138 3118 0.400000 +3138 3130 0.400000 +3138 3184 0.400000 +3139 3 0.400000 +3139 15 0.400000 +3139 103 0.400000 +3139 173 0.400000 +3139 175 0.400000 +3139 253 0.400000 +3139 259 0.400000 +3139 282 0.400000 +3139 337 0.400000 +3139 418 0.400000 +3139 427 0.400000 +3139 440 0.400000 +3139 470 0.400000 +3139 481 0.400000 +3139 509 0.400000 +3139 512 0.400000 +3139 526 0.400000 +3139 620 0.400000 +3139 703 0.400000 +3139 729 0.400000 +3139 732 0.400000 +3139 744 0.400000 +3139 747 0.400000 +3139 797 0.400000 +3139 964 0.400000 +3139 976 0.400000 +3139 979 0.400000 +3139 1021 0.400000 +3139 1119 0.400000 +3139 1182 0.400000 +3139 1216 0.400000 +3139 1239 0.400000 +3139 1246 0.400000 +3139 1260 0.400000 +3139 1267 0.400000 +3139 1269 0.400000 +3139 1324 0.400000 +3139 1423 0.400000 +3139 1475 0.400000 +3139 1568 0.400000 +3139 1658 0.400000 +3139 1693 0.400000 +3139 1818 0.400000 +3139 1820 0.400000 +3139 1851 0.400000 +3139 1977 0.400000 +3139 1993 0.400000 +3139 2011 0.400000 +3139 2058 0.400000 +3139 2203 0.400000 +3139 2272 0.400000 +3139 2310 0.400000 +3139 2336 0.400000 +3139 2353 0.400000 +3139 2359 0.400000 +3139 2374 0.400000 +3139 2423 0.400000 +3139 2529 0.400000 +3139 2822 0.400000 +3139 2921 0.400000 +3139 2941 0.400000 +3139 2945 0.400000 +3139 2953 0.400000 +3139 2962 0.400000 +3139 3035 0.400000 +3139 3061 0.400000 +3140 66 0.400000 +3140 176 0.400000 +3140 185 0.400000 +3140 198 0.400000 +3140 210 0.400000 +3140 273 0.400000 +3140 281 0.400000 +3140 291 0.400000 +3140 353 0.400000 +3140 450 0.400000 +3140 496 0.400000 +3140 522 0.400000 +3140 549 0.400000 +3140 581 0.400000 +3140 585 0.400000 +3140 601 0.400000 +3140 747 0.400000 +3140 789 0.400000 +3140 827 0.400000 +3140 887 0.400000 +3140 967 0.400000 +3140 999 0.400000 +3140 1025 0.400000 +3140 1070 0.400000 +3140 1099 0.400000 +3140 1215 0.400000 +3140 1244 0.400000 +3140 1293 0.400000 +3140 1382 0.400000 +3140 1427 0.400000 +3140 1499 0.400000 +3140 1524 0.400000 +3140 1591 0.400000 +3140 1594 0.400000 +3140 1606 0.400000 +3140 1658 0.400000 +3140 1676 0.400000 +3140 1703 0.400000 +3140 1782 0.400000 +3140 1805 0.400000 +3140 1814 0.400000 +3140 1830 0.400000 +3140 1902 0.400000 +3140 1922 0.400000 +3140 1945 0.400000 +3140 1963 0.400000 +3140 1965 0.400000 +3140 2005 0.400000 +3140 2033 0.400000 +3140 2083 0.400000 +3140 2173 0.400000 +3140 2190 0.400000 +3140 2311 0.400000 +3140 2317 0.400000 +3140 2385 0.400000 +3140 2481 0.400000 +3140 2562 0.400000 +3140 2691 0.400000 +3140 2765 0.400000 +3140 2956 0.400000 +3140 2988 0.400000 +3140 2997 0.400000 +3140 3044 0.400000 +3140 3047 0.400000 +3140 3069 0.400000 +3140 3116 0.400000 +3140 3126 0.400000 +3140 3142 0.400000 +3140 3171 0.400000 +3140 3188 0.400000 +3141 149 0.400000 +3141 152 0.400000 +3141 227 0.400000 +3141 239 0.400000 +3141 367 0.400000 +3141 456 0.400000 +3141 616 0.400000 +3141 682 0.400000 +3141 708 0.400000 +3141 721 0.400000 +3141 795 0.400000 +3141 820 0.400000 +3141 826 0.400000 +3141 870 0.400000 +3141 1016 0.400000 +3141 1042 0.400000 +3141 1125 0.400000 +3141 1229 0.400000 +3141 1268 0.400000 +3141 1272 0.400000 +3141 1402 0.400000 +3141 1412 0.400000 +3141 1417 0.400000 +3141 1501 0.400000 +3141 1509 0.400000 +3141 1559 0.400000 +3141 1629 0.400000 +3141 1645 0.400000 +3141 1681 0.400000 +3141 1756 0.400000 +3141 1779 0.400000 +3141 1784 0.400000 +3141 1797 0.400000 +3141 1818 0.400000 +3141 1855 0.400000 +3141 1862 0.400000 +3141 1901 0.400000 +3141 1958 0.400000 +3141 1983 0.400000 +3141 2045 0.400000 +3141 2085 0.400000 +3141 2087 0.400000 +3141 2165 0.400000 +3141 2166 0.400000 +3141 2187 0.400000 +3141 2195 0.400000 +3141 2215 0.400000 +3141 2219 0.400000 +3141 2239 0.400000 +3141 2318 0.400000 +3141 2504 0.400000 +3141 2564 0.400000 +3141 2569 0.400000 +3141 2628 0.400000 +3141 2746 0.400000 +3141 2750 0.400000 +3141 2787 0.400000 +3141 2858 0.400000 +3141 2929 0.400000 +3141 2944 0.400000 +3141 2961 0.400000 +3141 3069 0.400000 +3141 3118 0.400000 +3141 3189 0.400000 +3142 19 0.400000 +3142 60 0.400000 +3142 149 0.400000 +3142 151 0.400000 +3142 152 0.400000 +3142 160 0.400000 +3142 161 0.400000 +3142 184 0.400000 +3142 275 0.400000 +3142 285 0.400000 +3142 400 0.400000 +3142 413 0.400000 +3142 434 0.400000 +3142 511 0.400000 +3142 542 0.400000 +3142 562 0.400000 +3142 578 0.400000 +3142 631 0.400000 +3142 636 0.400000 +3142 651 0.400000 +3142 652 0.400000 +3142 698 0.400000 +3142 765 0.400000 +3142 820 0.400000 +3142 857 0.400000 +3142 871 0.400000 +3142 984 0.400000 +3142 996 0.400000 +3142 1071 0.400000 +3142 1083 0.400000 +3142 1153 0.400000 +3142 1218 0.400000 +3142 1254 0.400000 +3142 1332 0.400000 +3142 1333 0.400000 +3142 1390 0.400000 +3142 1420 0.400000 +3142 1436 0.400000 +3142 1467 0.400000 +3142 1493 0.400000 +3142 1512 0.400000 +3142 1519 0.400000 +3142 1550 0.400000 +3142 1575 0.400000 +3142 1614 0.400000 +3142 1666 0.400000 +3142 1702 0.400000 +3142 1725 0.400000 +3142 1759 0.400000 +3142 1762 0.400000 +3142 1767 0.400000 +3142 1885 0.400000 +3142 1933 0.400000 +3142 2027 0.400000 +3142 2087 0.400000 +3142 2110 0.400000 +3142 2124 0.400000 +3142 2140 0.400000 +3142 2147 0.400000 +3142 2228 0.400000 +3142 2240 0.400000 +3142 2243 0.400000 +3142 2247 0.400000 +3142 2345 0.400000 +3142 2379 0.400000 +3142 2387 0.400000 +3142 2399 0.400000 +3142 2454 0.400000 +3142 2472 0.400000 +3142 2637 0.400000 +3142 2708 0.400000 +3142 2720 0.400000 +3142 2853 0.400000 +3142 2883 0.400000 +3142 2886 0.400000 +3142 2995 0.400000 +3142 3023 0.400000 +3142 3060 0.400000 +3142 3081 0.400000 +3142 3084 0.400000 +3142 3133 0.400000 +3142 3187 0.400000 +3143 8 0.400000 +3143 62 0.400000 +3143 135 0.400000 +3143 253 0.400000 +3143 274 0.400000 +3143 316 0.400000 +3143 429 0.400000 +3143 438 0.400000 +3143 467 0.400000 +3143 565 0.400000 +3143 635 0.400000 +3143 650 0.400000 +3143 686 0.400000 +3143 708 0.400000 +3143 712 0.400000 +3143 766 0.400000 +3143 824 0.400000 +3143 875 0.400000 +3143 946 0.400000 +3143 1139 0.400000 +3143 1156 0.400000 +3143 1187 0.400000 +3143 1196 0.400000 +3143 1229 0.400000 +3143 1329 0.400000 +3143 1502 0.400000 +3143 1638 0.400000 +3143 1642 0.400000 +3143 1712 0.400000 +3143 1732 0.400000 +3143 1770 0.400000 +3143 1789 0.400000 +3143 1915 0.400000 +3143 1926 0.400000 +3143 1957 0.400000 +3143 1997 0.400000 +3143 2071 0.400000 +3143 2178 0.400000 +3143 2189 0.400000 +3143 2204 0.400000 +3143 2213 0.400000 +3143 2248 0.400000 +3143 2256 0.400000 +3143 2281 0.400000 +3143 2318 0.400000 +3143 2327 0.400000 +3143 2421 0.400000 +3143 2465 0.400000 +3143 2620 0.400000 +3143 2644 0.400000 +3143 2695 0.400000 +3143 2771 0.400000 +3143 2835 0.400000 +3143 2930 0.400000 +3143 2935 0.400000 +3143 3102 0.400000 +3144 6 0.400000 +3144 66 0.400000 +3144 87 0.400000 +3144 105 0.400000 +3144 114 0.400000 +3144 160 0.400000 +3144 310 0.400000 +3144 334 0.400000 +3144 437 0.400000 +3144 448 0.400000 +3144 544 0.400000 +3144 605 0.400000 +3144 620 0.400000 +3144 668 0.400000 +3144 734 0.400000 +3144 752 0.400000 +3144 851 0.400000 +3144 969 0.400000 +3144 1062 0.400000 +3144 1102 0.400000 +3144 1104 0.400000 +3144 1181 0.400000 +3144 1218 0.400000 +3144 1228 0.400000 +3144 1321 0.400000 +3144 1329 0.400000 +3144 1388 0.400000 +3144 1397 0.400000 +3144 1419 0.400000 +3144 1441 0.400000 +3144 1579 0.400000 +3144 1678 0.400000 +3144 1714 0.400000 +3144 1829 0.400000 +3144 1961 0.400000 +3144 2057 0.400000 +3144 2220 0.400000 +3144 2226 0.400000 +3144 2252 0.400000 +3144 2442 0.400000 +3144 2529 0.400000 +3144 2619 0.400000 +3144 2656 0.400000 +3144 2712 0.400000 +3144 2782 0.400000 +3144 2789 0.400000 +3144 2799 0.400000 +3144 2894 0.400000 +3144 2913 0.400000 +3144 2994 0.400000 +3144 3010 0.400000 +3144 3078 0.400000 +3144 3161 0.400000 +3145 90 0.400000 +3145 124 0.400000 +3145 128 0.400000 +3145 139 0.400000 +3145 175 0.400000 +3145 213 0.400000 +3145 250 0.400000 +3145 340 0.400000 +3145 377 0.400000 +3145 378 0.400000 +3145 389 0.400000 +3145 397 0.400000 +3145 453 0.400000 +3145 542 0.400000 +3145 563 0.400000 +3145 617 0.400000 +3145 718 0.400000 +3145 736 0.400000 +3145 800 0.400000 +3145 806 0.400000 +3145 855 0.400000 +3145 915 0.400000 +3145 917 0.400000 +3145 962 0.400000 +3145 1036 0.400000 +3145 1087 0.400000 +3145 1151 0.400000 +3145 1279 0.400000 +3145 1316 0.400000 +3145 1348 0.400000 +3145 1361 0.400000 +3145 1448 0.400000 +3145 1503 0.400000 +3145 1513 0.400000 +3145 1546 0.400000 +3145 1619 0.400000 +3145 1706 0.400000 +3145 1751 0.400000 +3145 1787 0.400000 +3145 1843 0.400000 +3145 1849 0.400000 +3145 1882 0.400000 +3145 2083 0.400000 +3145 2181 0.400000 +3145 2256 0.400000 +3145 2290 0.400000 +3145 2327 0.400000 +3145 2347 0.400000 +3145 2459 0.400000 +3145 2510 0.400000 +3145 2511 0.400000 +3145 2535 0.400000 +3145 2547 0.400000 +3145 2597 0.400000 +3145 2627 0.400000 +3145 2641 0.400000 +3145 2665 0.400000 +3145 2684 0.400000 +3145 2688 0.400000 +3145 2753 0.400000 +3145 2779 0.400000 +3145 2860 0.400000 +3145 2861 0.400000 +3145 2906 0.400000 +3145 3011 0.400000 +3145 3096 0.400000 +3146 242 0.400000 +3146 386 0.400000 +3146 401 0.400000 +3146 423 0.400000 +3146 514 0.400000 +3146 612 0.400000 +3146 667 0.400000 +3146 790 0.400000 +3146 806 0.400000 +3146 840 0.400000 +3146 963 0.400000 +3146 970 0.400000 +3146 1151 0.400000 +3146 1154 0.400000 +3146 1254 0.400000 +3146 1282 0.400000 +3146 1318 0.400000 +3146 1377 0.400000 +3146 1386 0.400000 +3146 1481 0.400000 +3146 1592 0.400000 +3146 1602 0.400000 +3146 1680 0.400000 +3146 1748 0.400000 +3146 1756 0.400000 +3146 1862 0.400000 +3146 1875 0.400000 +3146 1894 0.400000 +3146 1895 0.400000 +3146 1927 0.400000 +3146 1961 0.400000 +3146 1964 0.400000 +3146 1966 0.400000 +3146 1977 0.400000 +3146 2010 0.400000 +3146 2020 0.400000 +3146 2032 0.400000 +3146 2214 0.400000 +3146 2216 0.400000 +3146 2293 0.400000 +3146 2375 0.400000 +3146 2407 0.400000 +3146 2466 0.400000 +3146 2490 0.400000 +3146 2594 0.400000 +3146 2604 0.400000 +3146 2672 0.400000 +3146 2701 0.400000 +3146 2708 0.400000 +3146 2733 0.400000 +3146 2858 0.400000 +3146 2864 0.400000 +3146 2896 0.400000 +3146 2943 0.400000 +3146 3005 0.400000 +3146 3037 0.400000 +3146 3155 0.400000 +3146 3169 0.400000 +3147 266 0.400000 +3147 301 0.400000 +3147 302 0.400000 +3147 347 0.400000 +3147 354 0.400000 +3147 374 0.400000 +3147 394 0.400000 +3147 461 0.400000 +3147 584 0.400000 +3147 592 0.400000 +3147 600 0.400000 +3147 617 0.400000 +3147 637 0.400000 +3147 683 0.400000 +3147 708 0.400000 +3147 791 0.400000 +3147 917 0.400000 +3147 934 0.400000 +3147 1034 0.400000 +3147 1050 0.400000 +3147 1092 0.400000 +3147 1201 0.400000 +3147 1223 0.400000 +3147 1244 0.400000 +3147 1256 0.400000 +3147 1355 0.400000 +3147 1396 0.400000 +3147 1590 0.400000 +3147 1641 0.400000 +3147 1703 0.400000 +3147 1709 0.400000 +3147 1717 0.400000 +3147 1816 0.400000 +3147 1843 0.400000 +3147 1850 0.400000 +3147 1902 0.400000 +3147 1945 0.400000 +3147 1950 0.400000 +3147 1974 0.400000 +3147 1996 0.400000 +3147 2007 0.400000 +3147 2075 0.400000 +3147 2085 0.400000 +3147 2134 0.400000 +3147 2141 0.400000 +3147 2170 0.400000 +3147 2171 0.400000 +3147 2211 0.400000 +3147 2217 0.400000 +3147 2234 0.400000 +3147 2246 0.400000 +3147 2258 0.400000 +3147 2263 0.400000 +3147 2269 0.400000 +3147 2273 0.400000 +3147 2293 0.400000 +3147 2357 0.400000 +3147 2392 0.400000 +3147 2400 0.400000 +3147 2459 0.400000 +3147 2569 0.400000 +3147 2664 0.400000 +3147 2810 0.400000 +3147 2880 0.400000 +3147 3060 0.400000 +3147 3110 0.400000 +3147 3111 0.400000 +3148 93 0.400000 +3148 127 0.400000 +3148 147 0.400000 +3148 166 0.400000 +3148 178 0.400000 +3148 283 0.400000 +3148 359 0.400000 +3148 491 0.400000 +3148 601 0.400000 +3148 611 0.400000 +3148 725 0.400000 +3148 805 0.400000 +3148 834 0.400000 +3148 880 0.400000 +3148 1000 0.400000 +3148 1075 0.400000 +3148 1182 0.400000 +3148 1375 0.400000 +3148 1405 0.400000 +3148 1412 0.400000 +3148 1444 0.400000 +3148 1526 0.400000 +3148 1540 0.400000 +3148 1549 0.400000 +3148 1567 0.400000 +3148 1767 0.400000 +3148 1784 0.400000 +3148 1898 0.400000 +3148 2005 0.400000 +3148 2076 0.400000 +3148 2101 0.400000 +3148 2225 0.400000 +3148 2280 0.400000 +3148 2313 0.400000 +3148 2465 0.400000 +3148 2502 0.400000 +3148 2533 0.400000 +3148 2546 0.400000 +3148 2614 0.400000 +3148 2653 0.400000 +3148 2747 0.400000 +3148 2764 0.400000 +3148 2779 0.400000 +3148 2814 0.400000 +3148 2828 0.400000 +3148 2860 0.400000 +3148 2941 0.400000 +3148 2957 0.400000 +3148 2959 0.400000 +3148 2986 0.400000 +3148 3083 0.400000 +3148 3089 0.400000 +3148 3155 0.400000 +3149 24 0.400000 +3149 43 0.400000 +3149 88 0.400000 +3149 101 0.400000 +3149 113 0.400000 +3149 227 0.400000 +3149 271 0.400000 +3149 309 0.400000 +3149 378 0.400000 +3149 389 0.400000 +3149 402 0.400000 +3149 411 0.400000 +3149 462 0.400000 +3149 471 0.400000 +3149 490 0.400000 +3149 560 0.400000 +3149 578 0.400000 +3149 609 0.400000 +3149 630 0.400000 +3149 642 0.400000 +3149 676 0.400000 +3149 751 0.400000 +3149 763 0.400000 +3149 769 0.400000 +3149 801 0.400000 +3149 835 0.400000 +3149 861 0.400000 +3149 892 0.400000 +3149 916 0.400000 +3149 947 0.400000 +3149 1012 0.400000 +3149 1113 0.400000 +3149 1119 0.400000 +3149 1143 0.400000 +3149 1157 0.400000 +3149 1222 0.400000 +3149 1228 0.400000 +3149 1232 0.400000 +3149 1377 0.400000 +3149 1414 0.400000 +3149 1472 0.400000 +3149 1513 0.400000 +3149 1610 0.400000 +3149 1633 0.400000 +3149 1655 0.400000 +3149 1752 0.400000 +3149 1759 0.400000 +3149 1774 0.400000 +3149 1835 0.400000 +3149 1837 0.400000 +3149 1854 0.400000 +3149 1864 0.400000 +3149 1979 0.400000 +3149 1987 0.400000 +3149 2031 0.400000 +3149 2035 0.400000 +3149 2113 0.400000 +3149 2171 0.400000 +3149 2216 0.400000 +3149 2322 0.400000 +3149 2359 0.400000 +3149 2386 0.400000 +3149 2388 0.400000 +3149 2486 0.400000 +3149 2492 0.400000 +3149 2565 0.400000 +3149 2723 0.400000 +3149 2851 0.400000 +3149 2870 0.400000 +3149 2898 0.400000 +3149 2946 0.400000 +3149 3081 0.400000 +3149 3119 0.400000 +3149 3183 0.400000 +3150 29 0.400000 +3150 47 0.400000 +3150 114 0.400000 +3150 115 0.400000 +3150 162 0.400000 +3150 209 0.400000 +3150 299 0.400000 +3150 330 0.400000 +3150 409 0.400000 +3150 518 0.400000 +3150 528 0.400000 +3150 566 0.400000 +3150 574 0.400000 +3150 597 0.400000 +3150 607 0.400000 +3150 719 0.400000 +3150 822 0.400000 +3150 893 0.400000 +3150 936 0.400000 +3150 938 0.400000 +3150 979 0.400000 +3150 991 0.400000 +3150 1011 0.400000 +3150 1108 0.400000 +3150 1177 0.400000 +3150 1218 0.400000 +3150 1240 0.400000 +3150 1355 0.400000 +3150 1454 0.400000 +3150 1457 0.400000 +3150 1522 0.400000 +3150 1626 0.400000 +3150 1642 0.400000 +3150 1796 0.400000 +3150 1811 0.400000 +3150 1817 0.400000 +3150 1825 0.400000 +3150 1908 0.400000 +3150 1938 0.400000 +3150 2019 0.400000 +3150 2080 0.400000 +3150 2102 0.400000 +3150 2132 0.400000 +3150 2144 0.400000 +3150 2179 0.400000 +3150 2200 0.400000 +3150 2209 0.400000 +3150 2264 0.400000 +3150 2311 0.400000 +3150 2355 0.400000 +3150 2381 0.400000 +3150 2495 0.400000 +3150 2501 0.400000 +3150 2657 0.400000 +3150 2695 0.400000 +3150 2803 0.400000 +3150 2828 0.400000 +3150 2900 0.400000 +3150 2940 0.400000 +3150 3032 0.400000 +3150 3139 0.400000 +3150 3152 0.400000 +3150 3191 0.400000 +3150 3199 0.400000 +3151 7 0.400000 +3151 10 0.400000 +3151 19 0.400000 +3151 66 0.400000 +3151 105 0.400000 +3151 199 0.400000 +3151 224 0.400000 +3151 228 0.400000 +3151 267 0.400000 +3151 341 0.400000 +3151 364 0.400000 +3151 573 0.400000 +3151 615 0.400000 +3151 636 0.400000 +3151 665 0.400000 +3151 734 0.400000 +3151 744 0.400000 +3151 757 0.400000 +3151 818 0.400000 +3151 832 0.400000 +3151 902 0.400000 +3151 927 0.400000 +3151 1063 0.400000 +3151 1138 0.400000 +3151 1146 0.400000 +3151 1194 0.400000 +3151 1277 0.400000 +3151 1360 0.400000 +3151 1449 0.400000 +3151 1641 0.400000 +3151 1822 0.400000 +3151 1864 0.400000 +3151 1921 0.400000 +3151 1955 0.400000 +3151 1982 0.400000 +3151 2000 0.400000 +3151 2054 0.400000 +3151 2162 0.400000 +3151 2173 0.400000 +3151 2214 0.400000 +3151 2257 0.400000 +3151 2289 0.400000 +3151 2378 0.400000 +3151 2417 0.400000 +3151 2420 0.400000 +3151 2470 0.400000 +3151 2529 0.400000 +3151 2574 0.400000 +3151 2618 0.400000 +3151 2800 0.400000 +3151 2804 0.400000 +3151 2820 0.400000 +3151 2827 0.400000 +3151 2838 0.400000 +3151 2853 0.400000 +3151 2880 0.400000 +3151 2896 0.400000 +3151 2915 0.400000 +3151 2930 0.400000 +3151 2932 0.400000 +3151 3015 0.400000 +3151 3039 0.400000 +3151 3053 0.400000 +3151 3060 0.400000 +3151 3066 0.400000 +3151 3139 0.400000 +3151 3185 0.400000 +3151 3198 0.400000 +3152 20 0.400000 +3152 55 0.400000 +3152 77 0.400000 +3152 189 0.400000 +3152 219 0.400000 +3152 305 0.400000 +3152 338 0.400000 +3152 368 0.400000 +3152 537 0.400000 +3152 557 0.400000 +3152 574 0.400000 +3152 613 0.400000 +3152 693 0.400000 +3152 779 0.400000 +3152 784 0.400000 +3152 942 0.400000 +3152 968 0.400000 +3152 1017 0.400000 +3152 1058 0.400000 +3152 1071 0.400000 +3152 1091 0.400000 +3152 1185 0.400000 +3152 1190 0.400000 +3152 1263 0.400000 +3152 1285 0.400000 +3152 1370 0.400000 +3152 1411 0.400000 +3152 1534 0.400000 +3152 1645 0.400000 +3152 1666 0.400000 +3152 1682 0.400000 +3152 1686 0.400000 +3152 1692 0.400000 +3152 1699 0.400000 +3152 1700 0.400000 +3152 1781 0.400000 +3152 1804 0.400000 +3152 1840 0.400000 +3152 1866 0.400000 +3152 1890 0.400000 +3152 1915 0.400000 +3152 1972 0.400000 +3152 1985 0.400000 +3152 1996 0.400000 +3152 2134 0.400000 +3152 2135 0.400000 +3152 2302 0.400000 +3152 2436 0.400000 +3152 2438 0.400000 +3152 2465 0.400000 +3152 2668 0.400000 +3152 2748 0.400000 +3152 2786 0.400000 +3152 2963 0.400000 +3152 3058 0.400000 +3152 3076 0.400000 +3152 3080 0.400000 +3153 41 0.400000 +3153 72 0.400000 +3153 85 0.400000 +3153 147 0.400000 +3153 152 0.400000 +3153 278 0.400000 +3153 287 0.400000 +3153 314 0.400000 +3153 363 0.400000 +3153 458 0.400000 +3153 539 0.400000 +3153 723 0.400000 +3153 729 0.400000 +3153 819 0.400000 +3153 931 0.400000 +3153 1015 0.400000 +3153 1102 0.400000 +3153 1126 0.400000 +3153 1130 0.400000 +3153 1132 0.400000 +3153 1261 0.400000 +3153 1262 0.400000 +3153 1393 0.400000 +3153 1409 0.400000 +3153 1431 0.400000 +3153 1460 0.400000 +3153 1473 0.400000 +3153 1483 0.400000 +3153 1527 0.400000 +3153 1591 0.400000 +3153 1716 0.400000 +3153 1768 0.400000 +3153 1800 0.400000 +3153 1814 0.400000 +3153 1818 0.400000 +3153 1881 0.400000 +3153 1906 0.400000 +3153 1927 0.400000 +3153 1981 0.400000 +3153 2030 0.400000 +3153 2217 0.400000 +3153 2218 0.400000 +3153 2325 0.400000 +3153 2353 0.400000 +3153 2416 0.400000 +3153 2537 0.400000 +3153 2601 0.400000 +3153 2651 0.400000 +3153 2725 0.400000 +3153 2740 0.400000 +3153 2892 0.400000 +3153 2938 0.400000 +3153 2999 0.400000 +3153 3093 0.400000 +3153 3116 0.400000 +3154 159 0.400000 +3154 167 0.400000 +3154 188 0.400000 +3154 196 0.400000 +3154 203 0.400000 +3154 383 0.400000 +3154 409 0.400000 +3154 429 0.400000 +3154 444 0.400000 +3154 457 0.400000 +3154 510 0.400000 +3154 518 0.400000 +3154 619 0.400000 +3154 729 0.400000 +3154 732 0.400000 +3154 749 0.400000 +3154 776 0.400000 +3154 925 0.400000 +3154 933 0.400000 +3154 975 0.400000 +3154 1009 0.400000 +3154 1017 0.400000 +3154 1028 0.400000 +3154 1035 0.400000 +3154 1099 0.400000 +3154 1100 0.400000 +3154 1122 0.400000 +3154 1136 0.400000 +3154 1165 0.400000 +3154 1225 0.400000 +3154 1239 0.400000 +3154 1249 0.400000 +3154 1261 0.400000 +3154 1318 0.400000 +3154 1343 0.400000 +3154 1409 0.400000 +3154 1416 0.400000 +3154 1419 0.400000 +3154 1509 0.400000 +3154 1512 0.400000 +3154 1559 0.400000 +3154 1561 0.400000 +3154 1595 0.400000 +3154 1672 0.400000 +3154 1771 0.400000 +3154 1882 0.400000 +3154 1884 0.400000 +3154 1898 0.400000 +3154 1913 0.400000 +3154 2040 0.400000 +3154 2145 0.400000 +3154 2229 0.400000 +3154 2253 0.400000 +3154 2270 0.400000 +3154 2455 0.400000 +3154 2458 0.400000 +3154 2467 0.400000 +3154 2519 0.400000 +3154 2640 0.400000 +3154 2654 0.400000 +3154 2679 0.400000 +3154 2797 0.400000 +3154 2811 0.400000 +3154 2882 0.400000 +3154 2885 0.400000 +3154 2930 0.400000 +3154 2939 0.400000 +3154 2970 0.400000 +3154 2976 0.400000 +3154 2997 0.400000 +3154 3018 0.400000 +3154 3195 0.400000 +3155 12 0.400000 +3155 32 0.400000 +3155 208 0.400000 +3155 237 0.400000 +3155 242 0.400000 +3155 263 0.400000 +3155 324 0.400000 +3155 344 0.400000 +3155 551 0.400000 +3155 597 0.400000 +3155 906 0.400000 +3155 971 0.400000 +3155 1038 0.400000 +3155 1127 0.400000 +3155 1159 0.400000 +3155 1176 0.400000 +3155 1213 0.400000 +3155 1227 0.400000 +3155 1243 0.400000 +3155 1302 0.400000 +3155 1376 0.400000 +3155 1463 0.400000 +3155 1473 0.400000 +3155 1501 0.400000 +3155 1504 0.400000 +3155 1514 0.400000 +3155 1527 0.400000 +3155 1533 0.400000 +3155 1697 0.400000 +3155 1776 0.400000 +3155 1860 0.400000 +3155 1954 0.400000 +3155 1963 0.400000 +3155 1973 0.400000 +3155 1980 0.400000 +3155 2063 0.400000 +3155 2067 0.400000 +3155 2085 0.400000 +3155 2130 0.400000 +3155 2140 0.400000 +3155 2142 0.400000 +3155 2427 0.400000 +3155 2605 0.400000 +3155 2638 0.400000 +3155 2641 0.400000 +3155 2656 0.400000 +3155 2705 0.400000 +3155 2754 0.400000 +3155 2923 0.400000 +3155 2940 0.400000 +3155 2963 0.400000 +3155 3005 0.400000 +3155 3183 0.400000 +3156 66 0.400000 +3156 127 0.400000 +3156 149 0.400000 +3156 152 0.400000 +3156 211 0.400000 +3156 214 0.400000 +3156 235 0.400000 +3156 236 0.400000 +3156 251 0.400000 +3156 347 0.400000 +3156 356 0.400000 +3156 396 0.400000 +3156 413 0.400000 +3156 530 0.400000 +3156 591 0.400000 +3156 593 0.400000 +3156 631 0.400000 +3156 695 0.400000 +3156 704 0.400000 +3156 719 0.400000 +3156 760 0.400000 +3156 767 0.400000 +3156 990 0.400000 +3156 1017 0.400000 +3156 1052 0.400000 +3156 1084 0.400000 +3156 1114 0.400000 +3156 1315 0.400000 +3156 1319 0.400000 +3156 1386 0.400000 +3156 1470 0.400000 +3156 1572 0.400000 +3156 1612 0.400000 +3156 1805 0.400000 +3156 1841 0.400000 +3156 1966 0.400000 +3156 2106 0.400000 +3156 2108 0.400000 +3156 2189 0.400000 +3156 2197 0.400000 +3156 2198 0.400000 +3156 2366 0.400000 +3156 2475 0.400000 +3156 2550 0.400000 +3156 2573 0.400000 +3156 2666 0.400000 +3156 2681 0.400000 +3156 2771 0.400000 +3156 2807 0.400000 +3156 2809 0.400000 +3156 2823 0.400000 +3156 2826 0.400000 +3156 2929 0.400000 +3156 2931 0.400000 +3156 2953 0.400000 +3156 2954 0.400000 +3156 2955 0.400000 +3156 2979 0.400000 +3156 3039 0.400000 +3156 3050 0.400000 +3156 3079 0.400000 +3156 3089 0.400000 +3157 20 0.400000 +3157 89 0.400000 +3157 93 0.400000 +3157 95 0.400000 +3157 166 0.400000 +3157 240 0.400000 +3157 299 0.400000 +3157 335 0.400000 +3157 337 0.400000 +3157 368 0.400000 +3157 410 0.400000 +3157 478 0.400000 +3157 503 0.400000 +3157 512 0.400000 +3157 531 0.400000 +3157 556 0.400000 +3157 557 0.400000 +3157 574 0.400000 +3157 655 0.400000 +3157 747 0.400000 +3157 782 0.400000 +3157 819 0.400000 +3157 863 0.400000 +3157 871 0.400000 +3157 891 0.400000 +3157 945 0.400000 +3157 1019 0.400000 +3157 1216 0.400000 +3157 1264 0.400000 +3157 1271 0.400000 +3157 1448 0.400000 +3157 1472 0.400000 +3157 1491 0.400000 +3157 1544 0.400000 +3157 1559 0.400000 +3157 1565 0.400000 +3157 1630 0.400000 +3157 1641 0.400000 +3157 1717 0.400000 +3157 1764 0.400000 +3157 1820 0.400000 +3157 1862 0.400000 +3157 1923 0.400000 +3157 1941 0.400000 +3157 1981 0.400000 +3157 2033 0.400000 +3157 2074 0.400000 +3157 2148 0.400000 +3157 2215 0.400000 +3157 2262 0.400000 +3157 2263 0.400000 +3157 2300 0.400000 +3157 2366 0.400000 +3157 2467 0.400000 +3157 2519 0.400000 +3157 2555 0.400000 +3157 2610 0.400000 +3157 2645 0.400000 +3157 2677 0.400000 +3157 2796 0.400000 +3157 2806 0.400000 +3157 2837 0.400000 +3157 2929 0.400000 +3157 2954 0.400000 +3157 3096 0.400000 +3157 3145 0.400000 +3158 64 0.400000 +3158 146 0.400000 +3158 168 0.400000 +3158 202 0.400000 +3158 318 0.400000 +3158 366 0.400000 +3158 386 0.400000 +3158 453 0.400000 +3158 506 0.400000 +3158 514 0.400000 +3158 515 0.400000 +3158 565 0.400000 +3158 724 0.400000 +3158 774 0.400000 +3158 800 0.400000 +3158 949 0.400000 +3158 963 0.400000 +3158 1018 0.400000 +3158 1031 0.400000 +3158 1045 0.400000 +3158 1156 0.400000 +3158 1157 0.400000 +3158 1209 0.400000 +3158 1221 0.400000 +3158 1254 0.400000 +3158 1322 0.400000 +3158 1339 0.400000 +3158 1433 0.400000 +3158 1470 0.400000 +3158 1471 0.400000 +3158 1490 0.400000 +3158 1511 0.400000 +3158 1564 0.400000 +3158 1672 0.400000 +3158 1794 0.400000 +3158 1820 0.400000 +3158 1828 0.400000 +3158 1860 0.400000 +3158 1862 0.400000 +3158 2031 0.400000 +3158 2060 0.400000 +3158 2118 0.400000 +3158 2198 0.400000 +3158 2210 0.400000 +3158 2219 0.400000 +3158 2299 0.400000 +3158 2487 0.400000 +3158 2490 0.400000 +3158 2584 0.400000 +3158 2636 0.400000 +3158 2653 0.400000 +3158 2700 0.400000 +3158 2838 0.400000 +3158 2864 0.400000 +3158 2900 0.400000 +3158 2920 0.400000 +3158 3010 0.400000 +3159 54 0.400000 +3159 72 0.400000 +3159 114 0.400000 +3159 129 0.400000 +3159 141 0.400000 +3159 161 0.400000 +3159 167 0.400000 +3159 237 0.400000 +3159 254 0.400000 +3159 285 0.400000 +3159 292 0.400000 +3159 314 0.400000 +3159 471 0.400000 +3159 547 0.400000 +3159 551 0.400000 +3159 624 0.400000 +3159 629 0.400000 +3159 812 0.400000 +3159 887 0.400000 +3159 907 0.400000 +3159 991 0.400000 +3159 1006 0.400000 +3159 1180 0.400000 +3159 1219 0.400000 +3159 1254 0.400000 +3159 1396 0.400000 +3159 1573 0.400000 +3159 1613 0.400000 +3159 1671 0.400000 +3159 1711 0.400000 +3159 1717 0.400000 +3159 1767 0.400000 +3159 1786 0.400000 +3159 1837 0.400000 +3159 1847 0.400000 +3159 1872 0.400000 +3159 1882 0.400000 +3159 1898 0.400000 +3159 1902 0.400000 +3159 1914 0.400000 +3159 1923 0.400000 +3159 2014 0.400000 +3159 2069 0.400000 +3159 2153 0.400000 +3159 2246 0.400000 +3159 2309 0.400000 +3159 2317 0.400000 +3159 2353 0.400000 +3159 2420 0.400000 +3159 2476 0.400000 +3159 2498 0.400000 +3159 2538 0.400000 +3159 2552 0.400000 +3159 2568 0.400000 +3159 2683 0.400000 +3159 2697 0.400000 +3159 2784 0.400000 +3159 2844 0.400000 +3159 2882 0.400000 +3159 2905 0.400000 +3159 2916 0.400000 +3159 3069 0.400000 +3159 3197 0.400000 +3160 43 0.400000 +3160 87 0.400000 +3160 106 0.400000 +3160 126 0.400000 +3160 255 0.400000 +3160 286 0.400000 +3160 353 0.400000 +3160 359 0.400000 +3160 499 0.400000 +3160 547 0.400000 +3160 563 0.400000 +3160 591 0.400000 +3160 763 0.400000 +3160 823 0.400000 +3160 878 0.400000 +3160 891 0.400000 +3160 902 0.400000 +3160 968 0.400000 +3160 1118 0.400000 +3160 1141 0.400000 +3160 1245 0.400000 +3160 1261 0.400000 +3160 1270 0.400000 +3160 1318 0.400000 +3160 1417 0.400000 +3160 1576 0.400000 +3160 1657 0.400000 +3160 1670 0.400000 +3160 1671 0.400000 +3160 1715 0.400000 +3160 1729 0.400000 +3160 1763 0.400000 +3160 1886 0.400000 +3160 2018 0.400000 +3160 2099 0.400000 +3160 2128 0.400000 +3160 2152 0.400000 +3160 2201 0.400000 +3160 2226 0.400000 +3160 2258 0.400000 +3160 2273 0.400000 +3160 2394 0.400000 +3160 2420 0.400000 +3160 2435 0.400000 +3160 2441 0.400000 +3160 2548 0.400000 +3160 2579 0.400000 +3160 2611 0.400000 +3160 2617 0.400000 +3160 2635 0.400000 +3160 2642 0.400000 +3160 2691 0.400000 +3160 2908 0.400000 +3160 2928 0.400000 +3160 2989 0.400000 +3160 3085 0.400000 +3161 13 0.400000 +3161 32 0.400000 +3161 133 0.400000 +3161 187 0.400000 +3161 201 0.400000 +3161 280 0.400000 +3161 287 0.400000 +3161 315 0.400000 +3161 364 0.400000 +3161 397 0.400000 +3161 402 0.400000 +3161 428 0.400000 +3161 459 0.400000 +3161 481 0.400000 +3161 536 0.400000 +3161 542 0.400000 +3161 551 0.400000 +3161 655 0.400000 +3161 679 0.400000 +3161 860 0.400000 +3161 863 0.400000 +3161 974 0.400000 +3161 1046 0.400000 +3161 1102 0.400000 +3161 1148 0.400000 +3161 1155 0.400000 +3161 1265 0.400000 +3161 1270 0.400000 +3161 1284 0.400000 +3161 1370 0.400000 +3161 1375 0.400000 +3161 1414 0.400000 +3161 1417 0.400000 +3161 1443 0.400000 +3161 1467 0.400000 +3161 1521 0.400000 +3161 1523 0.400000 +3161 1548 0.400000 +3161 1608 0.400000 +3161 1620 0.400000 +3161 1678 0.400000 +3161 1692 0.400000 +3161 1732 0.400000 +3161 1808 0.400000 +3161 1809 0.400000 +3161 1852 0.400000 +3161 1959 0.400000 +3161 1967 0.400000 +3161 1970 0.400000 +3161 2026 0.400000 +3161 2052 0.400000 +3161 2141 0.400000 +3161 2318 0.400000 +3161 2393 0.400000 +3161 2464 0.400000 +3161 2466 0.400000 +3161 2534 0.400000 +3161 2535 0.400000 +3161 2610 0.400000 +3161 2637 0.400000 +3161 2665 0.400000 +3161 2789 0.400000 +3161 2868 0.400000 +3161 2931 0.400000 +3161 2950 0.400000 +3162 44 0.400000 +3162 114 0.400000 +3162 117 0.400000 +3162 140 0.400000 +3162 181 0.400000 +3162 240 0.400000 +3162 253 0.400000 +3162 261 0.400000 +3162 270 0.400000 +3162 307 0.400000 +3162 331 0.400000 +3162 392 0.400000 +3162 431 0.400000 +3162 438 0.400000 +3162 483 0.400000 +3162 684 0.400000 +3162 686 0.400000 +3162 701 0.400000 +3162 836 0.400000 +3162 921 0.400000 +3162 984 0.400000 +3162 991 0.400000 +3162 1076 0.400000 +3162 1082 0.400000 +3162 1129 0.400000 +3162 1170 0.400000 +3162 1171 0.400000 +3162 1193 0.400000 +3162 1210 0.400000 +3162 1273 0.400000 +3162 1328 0.400000 +3162 1330 0.400000 +3162 1341 0.400000 +3162 1353 0.400000 +3162 1402 0.400000 +3162 1472 0.400000 +3162 1489 0.400000 +3162 1549 0.400000 +3162 1554 0.400000 +3162 1560 0.400000 +3162 1715 0.400000 +3162 1774 0.400000 +3162 1798 0.400000 +3162 1799 0.400000 +3162 1827 0.400000 +3162 1838 0.400000 +3162 1839 0.400000 +3162 1862 0.400000 +3162 1899 0.400000 +3162 1913 0.400000 +3162 1964 0.400000 +3162 2078 0.400000 +3162 2198 0.400000 +3162 2239 0.400000 +3162 2342 0.400000 +3162 2365 0.400000 +3162 2383 0.400000 +3162 2425 0.400000 +3162 2455 0.400000 +3162 2461 0.400000 +3162 2479 0.400000 +3162 2483 0.400000 +3162 2583 0.400000 +3162 2651 0.400000 +3162 2670 0.400000 +3162 2801 0.400000 +3162 2807 0.400000 +3162 2825 0.400000 +3162 2857 0.400000 +3162 2888 0.400000 +3162 2896 0.400000 +3162 2963 0.400000 +3162 3076 0.400000 +3162 3125 0.400000 +3163 34 0.400000 +3163 50 0.400000 +3163 107 0.400000 +3163 176 0.400000 +3163 212 0.400000 +3163 224 0.400000 +3163 249 0.400000 +3163 402 0.400000 +3163 487 0.400000 +3163 519 0.400000 +3163 570 0.400000 +3163 654 0.400000 +3163 694 0.400000 +3163 765 0.400000 +3163 852 0.400000 +3163 879 0.400000 +3163 891 0.400000 +3163 954 0.400000 +3163 978 0.400000 +3163 983 0.400000 +3163 995 0.400000 +3163 1035 0.400000 +3163 1040 0.400000 +3163 1112 0.400000 +3163 1164 0.400000 +3163 1301 0.400000 +3163 1324 0.400000 +3163 1338 0.400000 +3163 1347 0.400000 +3163 1462 0.400000 +3163 1563 0.400000 +3163 1638 0.400000 +3163 1673 0.400000 +3163 1806 0.400000 +3163 1911 0.400000 +3163 2018 0.400000 +3163 2038 0.400000 +3163 2054 0.400000 +3163 2063 0.400000 +3163 2074 0.400000 +3163 2165 0.400000 +3163 2252 0.400000 +3163 2268 0.400000 +3163 2328 0.400000 +3163 2372 0.400000 +3163 2406 0.400000 +3163 2480 0.400000 +3163 2498 0.400000 +3163 2502 0.400000 +3163 2534 0.400000 +3163 2570 0.400000 +3163 2641 0.400000 +3163 2727 0.400000 +3163 2794 0.400000 +3163 2823 0.400000 +3163 2936 0.400000 +3163 2937 0.400000 +3163 2952 0.400000 +3163 2999 0.400000 +3163 3003 0.400000 +3163 3044 0.400000 +3163 3132 0.400000 +3163 3187 0.400000 +3163 3199 0.400000 +3164 178 0.400000 +3164 304 0.400000 +3164 336 0.400000 +3164 345 0.400000 +3164 365 0.400000 +3164 422 0.400000 +3164 507 0.400000 +3164 548 0.400000 +3164 572 0.400000 +3164 651 0.400000 +3164 706 0.400000 +3164 742 0.400000 +3164 833 0.400000 +3164 856 0.400000 +3164 903 0.400000 +3164 949 0.400000 +3164 956 0.400000 +3164 958 0.400000 +3164 962 0.400000 +3164 969 0.400000 +3164 1097 0.400000 +3164 1184 0.400000 +3164 1196 0.400000 +3164 1200 0.400000 +3164 1217 0.400000 +3164 1345 0.400000 +3164 1402 0.400000 +3164 1406 0.400000 +3164 1518 0.400000 +3164 1527 0.400000 +3164 1654 0.400000 +3164 1658 0.400000 +3164 1713 0.400000 +3164 1796 0.400000 +3164 1871 0.400000 +3164 1908 0.400000 +3164 1924 0.400000 +3164 1925 0.400000 +3164 2070 0.400000 +3164 2114 0.400000 +3164 2135 0.400000 +3164 2224 0.400000 +3164 2287 0.400000 +3164 2417 0.400000 +3164 2431 0.400000 +3164 2443 0.400000 +3164 2515 0.400000 +3164 2577 0.400000 +3164 2578 0.400000 +3164 2583 0.400000 +3164 2685 0.400000 +3164 2764 0.400000 +3164 2777 0.400000 +3164 2851 0.400000 +3164 2916 0.400000 +3164 3034 0.400000 +3165 50 0.400000 +3165 318 0.400000 +3165 402 0.400000 +3165 557 0.400000 +3165 677 0.400000 +3165 846 0.400000 +3165 892 0.400000 +3165 976 0.400000 +3165 1045 0.400000 +3165 1094 0.400000 +3165 1123 0.400000 +3165 1148 0.400000 +3165 1150 0.400000 +3165 1153 0.400000 +3165 1273 0.400000 +3165 1315 0.400000 +3165 1375 0.400000 +3165 1392 0.400000 +3165 1409 0.400000 +3165 1427 0.400000 +3165 1475 0.400000 +3165 1520 0.400000 +3165 1573 0.400000 +3165 1579 0.400000 +3165 1708 0.400000 +3165 1750 0.400000 +3165 1771 0.400000 +3165 1858 0.400000 +3165 1869 0.400000 +3165 1902 0.400000 +3165 2043 0.400000 +3165 2169 0.400000 +3165 2171 0.400000 +3165 2183 0.400000 +3165 2193 0.400000 +3165 2195 0.400000 +3165 2301 0.400000 +3165 2516 0.400000 +3165 2546 0.400000 +3165 2558 0.400000 +3165 2568 0.400000 +3165 2624 0.400000 +3165 2657 0.400000 +3165 2707 0.400000 +3165 2755 0.400000 +3165 2761 0.400000 +3165 2781 0.400000 +3165 2860 0.400000 +3165 2901 0.400000 +3165 2914 0.400000 +3165 2918 0.400000 +3165 2946 0.400000 +3165 2982 0.400000 +3165 3022 0.400000 +3165 3090 0.400000 +3165 3095 0.400000 +3166 30 0.400000 +3166 89 0.400000 +3166 103 0.400000 +3166 192 0.400000 +3166 224 0.400000 +3166 321 0.400000 +3166 388 0.400000 +3166 471 0.400000 +3166 490 0.400000 +3166 609 0.400000 +3166 754 0.400000 +3166 808 0.400000 +3166 843 0.400000 +3166 932 0.400000 +3166 963 0.400000 +3166 967 0.400000 +3166 990 0.400000 +3166 996 0.400000 +3166 1050 0.400000 +3166 1061 0.400000 +3166 1169 0.400000 +3166 1249 0.400000 +3166 1273 0.400000 +3166 1388 0.400000 +3166 1467 0.400000 +3166 1495 0.400000 +3166 1587 0.400000 +3166 1606 0.400000 +3166 1611 0.400000 +3166 1620 0.400000 +3166 1734 0.400000 +3166 1821 0.400000 +3166 1852 0.400000 +3166 1973 0.400000 +3166 2026 0.400000 +3166 2067 0.400000 +3166 2077 0.400000 +3166 2193 0.400000 +3166 2222 0.400000 +3166 2227 0.400000 +3166 2229 0.400000 +3166 2245 0.400000 +3166 2263 0.400000 +3166 2328 0.400000 +3166 2367 0.400000 +3166 2417 0.400000 +3166 2441 0.400000 +3166 2466 0.400000 +3166 2567 0.400000 +3166 2640 0.400000 +3166 2661 0.400000 +3166 2873 0.400000 +3166 2932 0.400000 +3166 3038 0.400000 +3166 3147 0.400000 +3166 3170 0.400000 +3166 3198 0.400000 +3167 29 0.400000 +3167 81 0.400000 +3167 94 0.400000 +3167 120 0.400000 +3167 172 0.400000 +3167 459 0.400000 +3167 522 0.400000 +3167 529 0.400000 +3167 538 0.400000 +3167 564 0.400000 +3167 636 0.400000 +3167 687 0.400000 +3167 756 0.400000 +3167 779 0.400000 +3167 806 0.400000 +3167 820 0.400000 +3167 852 0.400000 +3167 1027 0.400000 +3167 1054 0.400000 +3167 1190 0.400000 +3167 1203 0.400000 +3167 1228 0.400000 +3167 1357 0.400000 +3167 1404 0.400000 +3167 1409 0.400000 +3167 1413 0.400000 +3167 1542 0.400000 +3167 1585 0.400000 +3167 1614 0.400000 +3167 1642 0.400000 +3167 1730 0.400000 +3167 1861 0.400000 +3167 1876 0.400000 +3167 1888 0.400000 +3167 1896 0.400000 +3167 1932 0.400000 +3167 1969 0.400000 +3167 2063 0.400000 +3167 2085 0.400000 +3167 2104 0.400000 +3167 2126 0.400000 +3167 2188 0.400000 +3167 2243 0.400000 +3167 2249 0.400000 +3167 2252 0.400000 +3167 2279 0.400000 +3167 2302 0.400000 +3167 2363 0.400000 +3167 2496 0.400000 +3167 2527 0.400000 +3167 2552 0.400000 +3167 2589 0.400000 +3167 2667 0.400000 +3167 2688 0.400000 +3167 2699 0.400000 +3167 2707 0.400000 +3167 2728 0.400000 +3167 2761 0.400000 +3167 2888 0.400000 +3167 2908 0.400000 +3167 3035 0.400000 +3167 3093 0.400000 +3167 3114 0.400000 +3167 3126 0.400000 +3167 3135 0.400000 +3167 3151 0.400000 +3168 38 0.400000 +3168 146 0.400000 +3168 174 0.400000 +3168 208 0.400000 +3168 235 0.400000 +3168 332 0.400000 +3168 431 0.400000 +3168 466 0.400000 +3168 494 0.400000 +3168 606 0.400000 +3168 622 0.400000 +3168 628 0.400000 +3168 666 0.400000 +3168 743 0.400000 +3168 791 0.400000 +3168 888 0.400000 +3168 909 0.400000 +3168 918 0.400000 +3168 945 0.400000 +3168 979 0.400000 +3168 1001 0.400000 +3168 1061 0.400000 +3168 1078 0.400000 +3168 1094 0.400000 +3168 1106 0.400000 +3168 1132 0.400000 +3168 1192 0.400000 +3168 1234 0.400000 +3168 1269 0.400000 +3168 1387 0.400000 +3168 1488 0.400000 +3168 1591 0.400000 +3168 1696 0.400000 +3168 1724 0.400000 +3168 1731 0.400000 +3168 1778 0.400000 +3168 1803 0.400000 +3168 1872 0.400000 +3168 1886 0.400000 +3168 1901 0.400000 +3168 1935 0.400000 +3168 2071 0.400000 +3168 2096 0.400000 +3168 2109 0.400000 +3168 2164 0.400000 +3168 2168 0.400000 +3168 2296 0.400000 +3168 2301 0.400000 +3168 2356 0.400000 +3168 2462 0.400000 +3168 2495 0.400000 +3168 2513 0.400000 +3168 2562 0.400000 +3168 2673 0.400000 +3168 2699 0.400000 +3168 2723 0.400000 +3168 2881 0.400000 +3168 2882 0.400000 +3168 2960 0.400000 +3168 2970 0.400000 +3168 3041 0.400000 +3168 3099 0.400000 +3168 3170 0.400000 +3168 3188 0.400000 +3169 141 0.400000 +3169 145 0.400000 +3169 181 0.400000 +3169 190 0.400000 +3169 214 0.400000 +3169 236 0.400000 +3169 244 0.400000 +3169 248 0.400000 +3169 259 0.400000 +3169 315 0.400000 +3169 321 0.400000 +3169 400 0.400000 +3169 482 0.400000 +3169 496 0.400000 +3169 546 0.400000 +3169 569 0.400000 +3169 572 0.400000 +3169 589 0.400000 +3169 652 0.400000 +3169 658 0.400000 +3169 764 0.400000 +3169 765 0.400000 +3169 793 0.400000 +3169 838 0.400000 +3169 868 0.400000 +3169 905 0.400000 +3169 1072 0.400000 +3169 1111 0.400000 +3169 1115 0.400000 +3169 1122 0.400000 +3169 1130 0.400000 +3169 1135 0.400000 +3169 1183 0.400000 +3169 1294 0.400000 +3169 1343 0.400000 +3169 1386 0.400000 +3169 1395 0.400000 +3169 1674 0.400000 +3169 1695 0.400000 +3169 1710 0.400000 +3169 1711 0.400000 +3169 1721 0.400000 +3169 1796 0.400000 +3169 1846 0.400000 +3169 1856 0.400000 +3169 1921 0.400000 +3169 2068 0.400000 +3169 2093 0.400000 +3169 2094 0.400000 +3169 2190 0.400000 +3169 2206 0.400000 +3169 2221 0.400000 +3169 2268 0.400000 +3169 2288 0.400000 +3169 2372 0.400000 +3169 2425 0.400000 +3169 2488 0.400000 +3169 2521 0.400000 +3169 2535 0.400000 +3169 2561 0.400000 +3169 2592 0.400000 +3169 2599 0.400000 +3169 2648 0.400000 +3169 2707 0.400000 +3169 2757 0.400000 +3169 2792 0.400000 +3169 2909 0.400000 +3169 2914 0.400000 +3169 2957 0.400000 +3169 2958 0.400000 +3169 3031 0.400000 +3169 3081 0.400000 +3169 3104 0.400000 +3169 3149 0.400000 +3169 3153 0.400000 +3169 3156 0.400000 +3169 3159 0.400000 +3169 3200 0.400000 +3170 2 0.400000 +3170 32 0.400000 +3170 58 0.400000 +3170 123 0.400000 +3170 190 0.400000 +3170 239 0.400000 +3170 315 0.400000 +3170 335 0.400000 +3170 425 0.400000 +3170 428 0.400000 +3170 535 0.400000 +3170 589 0.400000 +3170 695 0.400000 +3170 744 0.400000 +3170 837 0.400000 +3170 865 0.400000 +3170 922 0.400000 +3170 1091 0.400000 +3170 1244 0.400000 +3170 1279 0.400000 +3170 1281 0.400000 +3170 1324 0.400000 +3170 1373 0.400000 +3170 1383 0.400000 +3170 1416 0.400000 +3170 1432 0.400000 +3170 1502 0.400000 +3170 1535 0.400000 +3170 1547 0.400000 +3170 1617 0.400000 +3170 1625 0.400000 +3170 1670 0.400000 +3170 1675 0.400000 +3170 1772 0.400000 +3170 1898 0.400000 +3170 1926 0.400000 +3170 1943 0.400000 +3170 1958 0.400000 +3170 1968 0.400000 +3170 2102 0.400000 +3170 2125 0.400000 +3170 2246 0.400000 +3170 2262 0.400000 +3170 2266 0.400000 +3170 2326 0.400000 +3170 2357 0.400000 +3170 2570 0.400000 +3170 2614 0.400000 +3170 2899 0.400000 +3170 2943 0.400000 +3170 3103 0.400000 +3170 3136 0.400000 +3170 3158 0.400000 +3171 38 0.400000 +3171 61 0.400000 +3171 81 0.400000 +3171 143 0.400000 +3171 145 0.400000 +3171 197 0.400000 +3171 308 0.400000 +3171 338 0.400000 +3171 355 0.400000 +3171 388 0.400000 +3171 530 0.400000 +3171 541 0.400000 +3171 597 0.400000 +3171 726 0.400000 +3171 791 0.400000 +3171 843 0.400000 +3171 943 0.400000 +3171 965 0.400000 +3171 1071 0.400000 +3171 1137 0.400000 +3171 1155 0.400000 +3171 1212 0.400000 +3171 1245 0.400000 +3171 1310 0.400000 +3171 1374 0.400000 +3171 1379 0.400000 +3171 1402 0.400000 +3171 1442 0.400000 +3171 1461 0.400000 +3171 1477 0.400000 +3171 1571 0.400000 +3171 1671 0.400000 +3171 1679 0.400000 +3171 1785 0.400000 +3171 1843 0.400000 +3171 1995 0.400000 +3171 2007 0.400000 +3171 2031 0.400000 +3171 2058 0.400000 +3171 2063 0.400000 +3171 2091 0.400000 +3171 2123 0.400000 +3171 2339 0.400000 +3171 2352 0.400000 +3171 2374 0.400000 +3171 2446 0.400000 +3171 2470 0.400000 +3171 2493 0.400000 +3171 2561 0.400000 +3171 2578 0.400000 +3171 2637 0.400000 +3171 2647 0.400000 +3171 2649 0.400000 +3171 2652 0.400000 +3171 2709 0.400000 +3171 2722 0.400000 +3171 2763 0.400000 +3171 2893 0.400000 +3171 2966 0.400000 +3171 2997 0.400000 +3171 3037 0.400000 +3172 28 0.400000 +3172 35 0.400000 +3172 125 0.400000 +3172 160 0.400000 +3172 164 0.400000 +3172 372 0.400000 +3172 396 0.400000 +3172 419 0.400000 +3172 469 0.400000 +3172 482 0.400000 +3172 505 0.400000 +3172 519 0.400000 +3172 601 0.400000 +3172 610 0.400000 +3172 615 0.400000 +3172 618 0.400000 +3172 653 0.400000 +3172 674 0.400000 +3172 693 0.400000 +3172 791 0.400000 +3172 835 0.400000 +3172 984 0.400000 +3172 1077 0.400000 +3172 1212 0.400000 +3172 1225 0.400000 +3172 1265 0.400000 +3172 1319 0.400000 +3172 1368 0.400000 +3172 1446 0.400000 +3172 1549 0.400000 +3172 1584 0.400000 +3172 1661 0.400000 +3172 1772 0.400000 +3172 1784 0.400000 +3172 1794 0.400000 +3172 1991 0.400000 +3172 2064 0.400000 +3172 2075 0.400000 +3172 2083 0.400000 +3172 2112 0.400000 +3172 2123 0.400000 +3172 2205 0.400000 +3172 2209 0.400000 +3172 2261 0.400000 +3172 2272 0.400000 +3172 2292 0.400000 +3172 2347 0.400000 +3172 2410 0.400000 +3172 2426 0.400000 +3172 2459 0.400000 +3172 2532 0.400000 +3172 2558 0.400000 +3172 2597 0.400000 +3172 2682 0.400000 +3172 2830 0.400000 +3172 2846 0.400000 +3172 2940 0.400000 +3172 2963 0.400000 +3172 3020 0.400000 +3172 3023 0.400000 +3172 3028 0.400000 +3172 3106 0.400000 +3172 3142 0.400000 +3173 25 0.400000 +3173 91 0.400000 +3173 164 0.400000 +3173 446 0.400000 +3173 474 0.400000 +3173 486 0.400000 +3173 522 0.400000 +3173 596 0.400000 +3173 613 0.400000 +3173 639 0.400000 +3173 649 0.400000 +3173 659 0.400000 +3173 660 0.400000 +3173 877 0.400000 +3173 879 0.400000 +3173 923 0.400000 +3173 1013 0.400000 +3173 1027 0.400000 +3173 1039 0.400000 +3173 1161 0.400000 +3173 1180 0.400000 +3173 1322 0.400000 +3173 1346 0.400000 +3173 1500 0.400000 +3173 1592 0.400000 +3173 1619 0.400000 +3173 1663 0.400000 +3173 1722 0.400000 +3173 1789 0.400000 +3173 1848 0.400000 +3173 1871 0.400000 +3173 1875 0.400000 +3173 1920 0.400000 +3173 2083 0.400000 +3173 2110 0.400000 +3173 2162 0.400000 +3173 2172 0.400000 +3173 2220 0.400000 +3173 2244 0.400000 +3173 2255 0.400000 +3173 2279 0.400000 +3173 2298 0.400000 +3173 2311 0.400000 +3173 2401 0.400000 +3173 2517 0.400000 +3173 2553 0.400000 +3173 2681 0.400000 +3173 2747 0.400000 +3173 2750 0.400000 +3173 2872 0.400000 +3173 2896 0.400000 +3173 3004 0.400000 +3173 3079 0.400000 +3173 3111 0.400000 +3173 3115 0.400000 +3173 3146 0.400000 +3174 162 0.400000 +3174 195 0.400000 +3174 324 0.400000 +3174 330 0.400000 +3174 346 0.400000 +3174 499 0.400000 +3174 616 0.400000 +3174 630 0.400000 +3174 642 0.400000 +3174 654 0.400000 +3174 672 0.400000 +3174 742 0.400000 +3174 814 0.400000 +3174 893 0.400000 +3174 937 0.400000 +3174 964 0.400000 +3174 1170 0.400000 +3174 1225 0.400000 +3174 1302 0.400000 +3174 1338 0.400000 +3174 1516 0.400000 +3174 1550 0.400000 +3174 1590 0.400000 +3174 1599 0.400000 +3174 1677 0.400000 +3174 1687 0.400000 +3174 1721 0.400000 +3174 1773 0.400000 +3174 1885 0.400000 +3174 1964 0.400000 +3174 2054 0.400000 +3174 2061 0.400000 +3174 2099 0.400000 +3174 2164 0.400000 +3174 2167 0.400000 +3174 2213 0.400000 +3174 2240 0.400000 +3174 2519 0.400000 +3174 2520 0.400000 +3174 2552 0.400000 +3174 2560 0.400000 +3174 2572 0.400000 +3174 2676 0.400000 +3174 2726 0.400000 +3174 2830 0.400000 +3174 2858 0.400000 +3174 2886 0.400000 +3174 3018 0.400000 +3174 3062 0.400000 +3174 3179 0.400000 +3175 16 0.400000 +3175 136 0.400000 +3175 143 0.400000 +3175 179 0.400000 +3175 181 0.400000 +3175 197 0.400000 +3175 202 0.400000 +3175 212 0.400000 +3175 223 0.400000 +3175 274 0.400000 +3175 285 0.400000 +3175 393 0.400000 +3175 404 0.400000 +3175 412 0.400000 +3175 451 0.400000 +3175 477 0.400000 +3175 623 0.400000 +3175 671 0.400000 +3175 722 0.400000 +3175 744 0.400000 +3175 831 0.400000 +3175 883 0.400000 +3175 904 0.400000 +3175 936 0.400000 +3175 1033 0.400000 +3175 1087 0.400000 +3175 1093 0.400000 +3175 1211 0.400000 +3175 1250 0.400000 +3175 1286 0.400000 +3175 1368 0.400000 +3175 1501 0.400000 +3175 1539 0.400000 +3175 1567 0.400000 +3175 1597 0.400000 +3175 1625 0.400000 +3175 1720 0.400000 +3175 1876 0.400000 +3175 1880 0.400000 +3175 1938 0.400000 +3175 2014 0.400000 +3175 2017 0.400000 +3175 2058 0.400000 +3175 2095 0.400000 +3175 2097 0.400000 +3175 2101 0.400000 +3175 2109 0.400000 +3175 2163 0.400000 +3175 2240 0.400000 +3175 2322 0.400000 +3175 2358 0.400000 +3175 2442 0.400000 +3175 2446 0.400000 +3175 2448 0.400000 +3175 2494 0.400000 +3175 2658 0.400000 +3175 2694 0.400000 +3175 2701 0.400000 +3175 2736 0.400000 +3175 2988 0.400000 +3175 2993 0.400000 +3175 3006 0.400000 +3175 3010 0.400000 +3175 3086 0.400000 +3175 3174 0.400000 +3176 53 0.400000 +3176 96 0.400000 +3176 143 0.400000 +3176 164 0.400000 +3176 165 0.400000 +3176 172 0.400000 +3176 226 0.400000 +3176 228 0.400000 +3176 230 0.400000 +3176 250 0.400000 +3176 298 0.400000 +3176 438 0.400000 +3176 498 0.400000 +3176 525 0.400000 +3176 528 0.400000 +3176 586 0.400000 +3176 764 0.400000 +3176 778 0.400000 +3176 1003 0.400000 +3176 1043 0.400000 +3176 1059 0.400000 +3176 1197 0.400000 +3176 1293 0.400000 +3176 1333 0.400000 +3176 1353 0.400000 +3176 1362 0.400000 +3176 1385 0.400000 +3176 1405 0.400000 +3176 1435 0.400000 +3176 1505 0.400000 +3176 1546 0.400000 +3176 1600 0.400000 +3176 1649 0.400000 +3176 1693 0.400000 +3176 1846 0.400000 +3176 1913 0.400000 +3176 1916 0.400000 +3176 1980 0.400000 +3176 2024 0.400000 +3176 2070 0.400000 +3176 2126 0.400000 +3176 2136 0.400000 +3176 2153 0.400000 +3176 2187 0.400000 +3176 2272 0.400000 +3176 2299 0.400000 +3176 2319 0.400000 +3176 2351 0.400000 +3176 2426 0.400000 +3176 2429 0.400000 +3176 2513 0.400000 +3176 2567 0.400000 +3176 2632 0.400000 +3176 2746 0.400000 +3176 2791 0.400000 +3176 2903 0.400000 +3176 2913 0.400000 +3176 2927 0.400000 +3176 2935 0.400000 +3176 2976 0.400000 +3176 3011 0.400000 +3176 3036 0.400000 +3176 3066 0.400000 +3176 3150 0.400000 +3177 17 0.400000 +3177 152 0.400000 +3177 204 0.400000 +3177 310 0.400000 +3177 330 0.400000 +3177 357 0.400000 +3177 419 0.400000 +3177 457 0.400000 +3177 458 0.400000 +3177 550 0.400000 +3177 624 0.400000 +3177 627 0.400000 +3177 670 0.400000 +3177 855 0.400000 +3177 946 0.400000 +3177 1009 0.400000 +3177 1024 0.400000 +3177 1101 0.400000 +3177 1134 0.400000 +3177 1259 0.400000 +3177 1300 0.400000 +3177 1329 0.400000 +3177 1362 0.400000 +3177 1370 0.400000 +3177 1407 0.400000 +3177 1507 0.400000 +3177 1525 0.400000 +3177 1530 0.400000 +3177 1554 0.400000 +3177 1604 0.400000 +3177 1644 0.400000 +3177 1718 0.400000 +3177 1722 0.400000 +3177 1753 0.400000 +3177 1773 0.400000 +3177 1850 0.400000 +3177 1901 0.400000 +3177 1997 0.400000 +3177 2160 0.400000 +3177 2202 0.400000 +3177 2224 0.400000 +3177 2298 0.400000 +3177 2383 0.400000 +3177 2449 0.400000 +3177 2480 0.400000 +3177 2498 0.400000 +3177 2585 0.400000 +3177 2632 0.400000 +3177 2636 0.400000 +3177 2700 0.400000 +3177 2707 0.400000 +3177 2708 0.400000 +3177 2745 0.400000 +3177 2892 0.400000 +3177 2954 0.400000 +3177 3002 0.400000 +3177 3026 0.400000 +3177 3029 0.400000 +3177 3046 0.400000 +3177 3054 0.400000 +3177 3091 0.400000 +3177 3138 0.400000 +3177 3197 0.400000 +3178 13 0.400000 +3178 54 0.400000 +3178 76 0.400000 +3178 193 0.400000 +3178 330 0.400000 +3178 333 0.400000 +3178 376 0.400000 +3178 386 0.400000 +3178 476 0.400000 +3178 526 0.400000 +3178 612 0.400000 +3178 629 0.400000 +3178 641 0.400000 +3178 644 0.400000 +3178 648 0.400000 +3178 654 0.400000 +3178 720 0.400000 +3178 724 0.400000 +3178 756 0.400000 +3178 758 0.400000 +3178 835 0.400000 +3178 842 0.400000 +3178 877 0.400000 +3178 913 0.400000 +3178 951 0.400000 +3178 958 0.400000 +3178 962 0.400000 +3178 1115 0.400000 +3178 1168 0.400000 +3178 1247 0.400000 +3178 1250 0.400000 +3178 1260 0.400000 +3178 1282 0.400000 +3178 1410 0.400000 +3178 1442 0.400000 +3178 1443 0.400000 +3178 1474 0.400000 +3178 1521 0.400000 +3178 1551 0.400000 +3178 1568 0.400000 +3178 1575 0.400000 +3178 1610 0.400000 +3178 1676 0.400000 +3178 1687 0.400000 +3178 1713 0.400000 +3178 1764 0.400000 +3178 1804 0.400000 +3178 1812 0.400000 +3178 1843 0.400000 +3178 1860 0.400000 +3178 1872 0.400000 +3178 2020 0.400000 +3178 2090 0.400000 +3178 2169 0.400000 +3178 2172 0.400000 +3178 2268 0.400000 +3178 2451 0.400000 +3178 2477 0.400000 +3178 2616 0.400000 +3178 2617 0.400000 +3178 2670 0.400000 +3178 2691 0.400000 +3178 2698 0.400000 +3178 2717 0.400000 +3178 2721 0.400000 +3178 2786 0.400000 +3178 2890 0.400000 +3178 2899 0.400000 +3178 2920 0.400000 +3178 2928 0.400000 +3178 3009 0.400000 +3178 3045 0.400000 +3178 3067 0.400000 +3178 3070 0.400000 +3178 3156 0.400000 +3179 4 0.400000 +3179 27 0.400000 +3179 488 0.400000 +3179 498 0.400000 +3179 508 0.400000 +3179 716 0.400000 +3179 718 0.400000 +3179 721 0.400000 +3179 736 0.400000 +3179 752 0.400000 +3179 761 0.400000 +3179 769 0.400000 +3179 810 0.400000 +3179 815 0.400000 +3179 827 0.400000 +3179 837 0.400000 +3179 867 0.400000 +3179 984 0.400000 +3179 1042 0.400000 +3179 1182 0.400000 +3179 1191 0.400000 +3179 1284 0.400000 +3179 1293 0.400000 +3179 1475 0.400000 +3179 1580 0.400000 +3179 1698 0.400000 +3179 1790 0.400000 +3179 1794 0.400000 +3179 1981 0.400000 +3179 2012 0.400000 +3179 2079 0.400000 +3179 2160 0.400000 +3179 2169 0.400000 +3179 2205 0.400000 +3179 2273 0.400000 +3179 2296 0.400000 +3179 2299 0.400000 +3179 2306 0.400000 +3179 2315 0.400000 +3179 2362 0.400000 +3179 2447 0.400000 +3179 2514 0.400000 +3179 2598 0.400000 +3179 2719 0.400000 +3179 2736 0.400000 +3179 2739 0.400000 +3179 2749 0.400000 +3179 2781 0.400000 +3179 2795 0.400000 +3179 2893 0.400000 +3179 2918 0.400000 +3179 2936 0.400000 +3179 2939 0.400000 +3179 2970 0.400000 +3179 2981 0.400000 +3179 3060 0.400000 +3179 3066 0.400000 +3180 56 0.400000 +3180 205 0.400000 +3180 222 0.400000 +3180 229 0.400000 +3180 287 0.400000 +3180 291 0.400000 +3180 344 0.400000 +3180 422 0.400000 +3180 557 0.400000 +3180 633 0.400000 +3180 727 0.400000 +3180 761 0.400000 +3180 804 0.400000 +3180 842 0.400000 +3180 909 0.400000 +3180 1126 0.400000 +3180 1169 0.400000 +3180 1249 0.400000 +3180 1313 0.400000 +3180 1340 0.400000 +3180 1341 0.400000 +3180 1358 0.400000 +3180 1363 0.400000 +3180 1549 0.400000 +3180 1686 0.400000 +3180 1699 0.400000 +3180 1733 0.400000 +3180 1753 0.400000 +3180 1808 0.400000 +3180 1848 0.400000 +3180 1928 0.400000 +3180 1941 0.400000 +3180 2005 0.400000 +3180 2134 0.400000 +3180 2163 0.400000 +3180 2217 0.400000 +3180 2221 0.400000 +3180 2246 0.400000 +3180 2326 0.400000 +3180 2407 0.400000 +3180 2420 0.400000 +3180 2438 0.400000 +3180 2611 0.400000 +3180 2706 0.400000 +3180 2736 0.400000 +3180 2825 0.400000 +3180 2829 0.400000 +3180 2863 0.400000 +3180 2882 0.400000 +3180 2957 0.400000 +3180 3146 0.400000 +3180 3149 0.400000 +3180 3157 0.400000 +3181 79 0.400000 +3181 106 0.400000 +3181 144 0.400000 +3181 152 0.400000 +3181 186 0.400000 +3181 224 0.400000 +3181 242 0.400000 +3181 362 0.400000 +3181 364 0.400000 +3181 455 0.400000 +3181 456 0.400000 +3181 637 0.400000 +3181 682 0.400000 +3181 736 0.400000 +3181 784 0.400000 +3181 795 0.400000 +3181 832 0.400000 +3181 834 0.400000 +3181 850 0.400000 +3181 893 0.400000 +3181 937 0.400000 +3181 1020 0.400000 +3181 1068 0.400000 +3181 1235 0.400000 +3181 1291 0.400000 +3181 1313 0.400000 +3181 1333 0.400000 +3181 1404 0.400000 +3181 1414 0.400000 +3181 1436 0.400000 +3181 1582 0.400000 +3181 1588 0.400000 +3181 1731 0.400000 +3181 1818 0.400000 +3181 1838 0.400000 +3181 1856 0.400000 +3181 1883 0.400000 +3181 1896 0.400000 +3181 1911 0.400000 +3181 1940 0.400000 +3181 1952 0.400000 +3181 2051 0.400000 +3181 2098 0.400000 +3181 2196 0.400000 +3181 2220 0.400000 +3181 2330 0.400000 +3181 2394 0.400000 +3181 2467 0.400000 +3181 2501 0.400000 +3181 2519 0.400000 +3181 2614 0.400000 +3181 2863 0.400000 +3181 2900 0.400000 +3181 2912 0.400000 +3181 2924 0.400000 +3181 2980 0.400000 +3181 3005 0.400000 +3181 3071 0.400000 +3181 3087 0.400000 +3181 3091 0.400000 +3181 3101 0.400000 +3181 3172 0.400000 +3182 43 0.400000 +3182 53 0.400000 +3182 95 0.400000 +3182 103 0.400000 +3182 107 0.400000 +3182 179 0.400000 +3182 192 0.400000 +3182 271 0.400000 +3182 295 0.400000 +3182 430 0.400000 +3182 644 0.400000 +3182 728 0.400000 +3182 767 0.400000 +3182 828 0.400000 +3182 881 0.400000 +3182 955 0.400000 +3182 1017 0.400000 +3182 1065 0.400000 +3182 1153 0.400000 +3182 1189 0.400000 +3182 1190 0.400000 +3182 1211 0.400000 +3182 1430 0.400000 +3182 1458 0.400000 +3182 1548 0.400000 +3182 1553 0.400000 +3182 1591 0.400000 +3182 1609 0.400000 +3182 1661 0.400000 +3182 1709 0.400000 +3182 1886 0.400000 +3182 1929 0.400000 +3182 2002 0.400000 +3182 2013 0.400000 +3182 2110 0.400000 +3182 2149 0.400000 +3182 2153 0.400000 +3182 2255 0.400000 +3182 2278 0.400000 +3182 2395 0.400000 +3182 2411 0.400000 +3182 2552 0.400000 +3182 2558 0.400000 +3182 2683 0.400000 +3182 2688 0.400000 +3182 2714 0.400000 +3182 2720 0.400000 +3182 2822 0.400000 +3182 2823 0.400000 +3182 2831 0.400000 +3182 2849 0.400000 +3182 2860 0.400000 +3182 2866 0.400000 +3182 2933 0.400000 +3182 3069 0.400000 +3182 3126 0.400000 +3182 3140 0.400000 +3183 2 0.400000 +3183 15 0.400000 +3183 77 0.400000 +3183 89 0.400000 +3183 104 0.400000 +3183 148 0.400000 +3183 198 0.400000 +3183 202 0.400000 +3183 206 0.400000 +3183 214 0.400000 +3183 360 0.400000 +3183 427 0.400000 +3183 537 0.400000 +3183 570 0.400000 +3183 603 0.400000 +3183 672 0.400000 +3183 750 0.400000 +3183 803 0.400000 +3183 843 0.400000 +3183 864 0.400000 +3183 959 0.400000 +3183 1123 0.400000 +3183 1129 0.400000 +3183 1207 0.400000 +3183 1228 0.400000 +3183 1364 0.400000 +3183 1490 0.400000 +3183 1590 0.400000 +3183 1594 0.400000 +3183 1663 0.400000 +3183 1813 0.400000 +3183 1850 0.400000 +3183 1897 0.400000 +3183 1906 0.400000 +3183 2072 0.400000 +3183 2089 0.400000 +3183 2148 0.400000 +3183 2153 0.400000 +3183 2216 0.400000 +3183 2253 0.400000 +3183 2255 0.400000 +3183 2267 0.400000 +3183 2278 0.400000 +3183 2287 0.400000 +3183 2291 0.400000 +3183 2406 0.400000 +3183 2408 0.400000 +3183 2428 0.400000 +3183 2441 0.400000 +3183 2489 0.400000 +3183 2494 0.400000 +3183 2508 0.400000 +3183 2662 0.400000 +3183 2692 0.400000 +3183 2705 0.400000 +3183 2739 0.400000 +3183 2742 0.400000 +3183 2894 0.400000 +3183 2901 0.400000 +3183 3111 0.400000 +3184 4 0.400000 +3184 34 0.400000 +3184 264 0.400000 +3184 299 0.400000 +3184 355 0.400000 +3184 494 0.400000 +3184 562 0.400000 +3184 579 0.400000 +3184 655 0.400000 +3184 661 0.400000 +3184 708 0.400000 +3184 719 0.400000 +3184 872 0.400000 +3184 886 0.400000 +3184 887 0.400000 +3184 1100 0.400000 +3184 1196 0.400000 +3184 1232 0.400000 +3184 1240 0.400000 +3184 1302 0.400000 +3184 1329 0.400000 +3184 1333 0.400000 +3184 1345 0.400000 +3184 1418 0.400000 +3184 1430 0.400000 +3184 1512 0.400000 +3184 1618 0.400000 +3184 1654 0.400000 +3184 1656 0.400000 +3184 1686 0.400000 +3184 1799 0.400000 +3184 1809 0.400000 +3184 1848 0.400000 +3184 2116 0.400000 +3184 2120 0.400000 +3184 2226 0.400000 +3184 2232 0.400000 +3184 2250 0.400000 +3184 2253 0.400000 +3184 2276 0.400000 +3184 2295 0.400000 +3184 2330 0.400000 +3184 2399 0.400000 +3184 2478 0.400000 +3184 2590 0.400000 +3184 2591 0.400000 +3184 2622 0.400000 +3184 2701 0.400000 +3184 2759 0.400000 +3184 2770 0.400000 +3184 2820 0.400000 +3184 2847 0.400000 +3184 2892 0.400000 +3184 2979 0.400000 +3184 3002 0.400000 +3184 3021 0.400000 +3184 3088 0.400000 +3184 3106 0.400000 +3184 3160 0.400000 +3185 35 0.400000 +3185 83 0.400000 +3185 143 0.400000 +3185 220 0.400000 +3185 299 0.400000 +3185 305 0.400000 +3185 369 0.400000 +3185 380 0.400000 +3185 416 0.400000 +3185 479 0.400000 +3185 493 0.400000 +3185 541 0.400000 +3185 607 0.400000 +3185 775 0.400000 +3185 780 0.400000 +3185 936 0.400000 +3185 1038 0.400000 +3185 1135 0.400000 +3185 1138 0.400000 +3185 1197 0.400000 +3185 1204 0.400000 +3185 1211 0.400000 +3185 1222 0.400000 +3185 1319 0.400000 +3185 1339 0.400000 +3185 1342 0.400000 +3185 1417 0.400000 +3185 1459 0.400000 +3185 1462 0.400000 +3185 1485 0.400000 +3185 1486 0.400000 +3185 1503 0.400000 +3185 1554 0.400000 +3185 1623 0.400000 +3185 1662 0.400000 +3185 1875 0.400000 +3185 1881 0.400000 +3185 1956 0.400000 +3185 1977 0.400000 +3185 2020 0.400000 +3185 2161 0.400000 +3185 2164 0.400000 +3185 2205 0.400000 +3185 2431 0.400000 +3185 2439 0.400000 +3185 2496 0.400000 +3185 2597 0.400000 +3185 2648 0.400000 +3185 2685 0.400000 +3185 2693 0.400000 +3185 2701 0.400000 +3185 2756 0.400000 +3185 2813 0.400000 +3185 2828 0.400000 +3185 2852 0.400000 +3185 2934 0.400000 +3185 2942 0.400000 +3185 2953 0.400000 +3185 2971 0.400000 +3185 3136 0.400000 +3186 137 0.400000 +3186 161 0.400000 +3186 273 0.400000 +3186 275 0.400000 +3186 377 0.400000 +3186 418 0.400000 +3186 490 0.400000 +3186 509 0.400000 +3186 518 0.400000 +3186 613 0.400000 +3186 650 0.400000 +3186 672 0.400000 +3186 702 0.400000 +3186 715 0.400000 +3186 820 0.400000 +3186 841 0.400000 +3186 851 0.400000 +3186 864 0.400000 +3186 865 0.400000 +3186 939 0.400000 +3186 1000 0.400000 +3186 1047 0.400000 +3186 1074 0.400000 +3186 1115 0.400000 +3186 1193 0.400000 +3186 1308 0.400000 +3186 1366 0.400000 +3186 1375 0.400000 +3186 1459 0.400000 +3186 1573 0.400000 +3186 1574 0.400000 +3186 1655 0.400000 +3186 1666 0.400000 +3186 1732 0.400000 +3186 1858 0.400000 +3186 2011 0.400000 +3186 2131 0.400000 +3186 2184 0.400000 +3186 2370 0.400000 +3186 2411 0.400000 +3186 2425 0.400000 +3186 2444 0.400000 +3186 2448 0.400000 +3186 2460 0.400000 +3186 2519 0.400000 +3186 2536 0.400000 +3186 2585 0.400000 +3186 2597 0.400000 +3186 2600 0.400000 +3186 2655 0.400000 +3186 2675 0.400000 +3186 2676 0.400000 +3186 2717 0.400000 +3186 2802 0.400000 +3186 2818 0.400000 +3186 2859 0.400000 +3186 2989 0.400000 +3186 3040 0.400000 +3186 3060 0.400000 +3186 3073 0.400000 +3186 3075 0.400000 +3186 3133 0.400000 +3186 3160 0.400000 +3187 10 0.400000 +3187 154 0.400000 +3187 195 0.400000 +3187 223 0.400000 +3187 276 0.400000 +3187 311 0.400000 +3187 315 0.400000 +3187 343 0.400000 +3187 384 0.400000 +3187 391 0.400000 +3187 402 0.400000 +3187 403 0.400000 +3187 452 0.400000 +3187 464 0.400000 +3187 466 0.400000 +3187 509 0.400000 +3187 578 0.400000 +3187 614 0.400000 +3187 625 0.400000 +3187 660 0.400000 +3187 748 0.400000 +3187 794 0.400000 +3187 920 0.400000 +3187 1028 0.400000 +3187 1035 0.400000 +3187 1085 0.400000 +3187 1124 0.400000 +3187 1161 0.400000 +3187 1193 0.400000 +3187 1316 0.400000 +3187 1320 0.400000 +3187 1424 0.400000 +3187 1444 0.400000 +3187 1506 0.400000 +3187 1538 0.400000 +3187 1547 0.400000 +3187 1557 0.400000 +3187 1574 0.400000 +3187 1603 0.400000 +3187 1639 0.400000 +3187 1781 0.400000 +3187 1901 0.400000 +3187 1937 0.400000 +3187 2036 0.400000 +3187 2190 0.400000 +3187 2255 0.400000 +3187 2259 0.400000 +3187 2270 0.400000 +3187 2332 0.400000 +3187 2436 0.400000 +3187 2455 0.400000 +3187 2458 0.400000 +3187 2529 0.400000 +3187 2533 0.400000 +3187 2591 0.400000 +3187 2671 0.400000 +3187 2789 0.400000 +3187 2882 0.400000 +3187 2894 0.400000 +3187 2903 0.400000 +3187 2917 0.400000 +3187 2922 0.400000 +3187 2985 0.400000 +3187 3104 0.400000 +3187 3112 0.400000 +3187 3127 0.400000 +3187 3142 0.400000 +3188 27 0.400000 +3188 97 0.400000 +3188 111 0.400000 +3188 156 0.400000 +3188 211 0.400000 +3188 220 0.400000 +3188 299 0.400000 +3188 306 0.400000 +3188 307 0.400000 +3188 331 0.400000 +3188 409 0.400000 +3188 499 0.400000 +3188 522 0.400000 +3188 572 0.400000 +3188 615 0.400000 +3188 624 0.400000 +3188 643 0.400000 +3188 656 0.400000 +3188 670 0.400000 +3188 687 0.400000 +3188 699 0.400000 +3188 711 0.400000 +3188 780 0.400000 +3188 850 0.400000 +3188 859 0.400000 +3188 884 0.400000 +3188 934 0.400000 +3188 1029 0.400000 +3188 1040 0.400000 +3188 1116 0.400000 +3188 1170 0.400000 +3188 1220 0.400000 +3188 1227 0.400000 +3188 1302 0.400000 +3188 1308 0.400000 +3188 1365 0.400000 +3188 1394 0.400000 +3188 1451 0.400000 +3188 1509 0.400000 +3188 1512 0.400000 +3188 1588 0.400000 +3188 1704 0.400000 +3188 1710 0.400000 +3188 1780 0.400000 +3188 1788 0.400000 +3188 1856 0.400000 +3188 1870 0.400000 +3188 2061 0.400000 +3188 2069 0.400000 +3188 2359 0.400000 +3188 2368 0.400000 +3188 2438 0.400000 +3188 2585 0.400000 +3188 2597 0.400000 +3188 2683 0.400000 +3188 2692 0.400000 +3188 2769 0.400000 +3188 2809 0.400000 +3188 2963 0.400000 +3188 3023 0.400000 +3188 3077 0.400000 +3188 3082 0.400000 +3188 3084 0.400000 +3188 3091 0.400000 +3188 3112 0.400000 +3188 3150 0.400000 +3188 3160 0.400000 +3189 7 0.400000 +3189 10 0.400000 +3189 13 0.400000 +3189 66 0.400000 +3189 115 0.400000 +3189 166 0.400000 +3189 361 0.400000 +3189 488 0.400000 +3189 537 0.400000 +3189 541 0.400000 +3189 578 0.400000 +3189 617 0.400000 +3189 679 0.400000 +3189 731 0.400000 +3189 829 0.400000 +3189 910 0.400000 +3189 1058 0.400000 +3189 1102 0.400000 +3189 1122 0.400000 +3189 1144 0.400000 +3189 1148 0.400000 +3189 1168 0.400000 +3189 1262 0.400000 +3189 1277 0.400000 +3189 1378 0.400000 +3189 1379 0.400000 +3189 1426 0.400000 +3189 1519 0.400000 +3189 1585 0.400000 +3189 1618 0.400000 +3189 1631 0.400000 +3189 1637 0.400000 +3189 1716 0.400000 +3189 1728 0.400000 +3189 2018 0.400000 +3189 2040 0.400000 +3189 2098 0.400000 +3189 2137 0.400000 +3189 2212 0.400000 +3189 2246 0.400000 +3189 2314 0.400000 +3189 2372 0.400000 +3189 2419 0.400000 +3189 2516 0.400000 +3189 2528 0.400000 +3189 2699 0.400000 +3189 2712 0.400000 +3189 2910 0.400000 +3189 2915 0.400000 +3189 2992 0.400000 +3189 3052 0.400000 +3189 3086 0.400000 +3189 3187 0.400000 +3190 53 0.400000 +3190 264 0.400000 +3190 427 0.400000 +3190 589 0.400000 +3190 621 0.400000 +3190 659 0.400000 +3190 728 0.400000 +3190 730 0.400000 +3190 736 0.400000 +3190 881 0.400000 +3190 890 0.400000 +3190 936 0.400000 +3190 1024 0.400000 +3190 1381 0.400000 +3190 1388 0.400000 +3190 1417 0.400000 +3190 1439 0.400000 +3190 1602 0.400000 +3190 1707 0.400000 +3190 1715 0.400000 +3190 1803 0.400000 +3190 1840 0.400000 +3190 1860 0.400000 +3190 1925 0.400000 +3190 1936 0.400000 +3190 1947 0.400000 +3190 1958 0.400000 +3190 1972 0.400000 +3190 2083 0.400000 +3190 2091 0.400000 +3190 2131 0.400000 +3190 2265 0.400000 +3190 2405 0.400000 +3190 2409 0.400000 +3190 2453 0.400000 +3190 2470 0.400000 +3190 2521 0.400000 +3190 2534 0.400000 +3190 2791 0.400000 +3190 2795 0.400000 +3190 2804 0.400000 +3190 2828 0.400000 +3190 2830 0.400000 +3190 2835 0.400000 +3190 2844 0.400000 +3190 2865 0.400000 +3190 2964 0.400000 +3190 3003 0.400000 +3190 3014 0.400000 +3190 3043 0.400000 +3190 3070 0.400000 +3190 3096 0.400000 +3190 3124 0.400000 +3190 3128 0.400000 +3191 130 0.400000 +3191 141 0.400000 +3191 226 0.400000 +3191 385 0.400000 +3191 403 0.400000 +3191 447 0.400000 +3191 448 0.400000 +3191 500 0.400000 +3191 505 0.400000 +3191 531 0.400000 +3191 681 0.400000 +3191 735 0.400000 +3191 868 0.400000 +3191 966 0.400000 +3191 1021 0.400000 +3191 1031 0.400000 +3191 1037 0.400000 +3191 1056 0.400000 +3191 1134 0.400000 +3191 1283 0.400000 +3191 1301 0.400000 +3191 1361 0.400000 +3191 1461 0.400000 +3191 1481 0.400000 +3191 1521 0.400000 +3191 1550 0.400000 +3191 1607 0.400000 +3191 1627 0.400000 +3191 1630 0.400000 +3191 1733 0.400000 +3191 1782 0.400000 +3191 1794 0.400000 +3191 1811 0.400000 +3191 1847 0.400000 +3191 1918 0.400000 +3191 2141 0.400000 +3191 2220 0.400000 +3191 2273 0.400000 +3191 2391 0.400000 +3191 2466 0.400000 +3191 2482 0.400000 +3191 2509 0.400000 +3191 2576 0.400000 +3191 2680 0.400000 +3191 2692 0.400000 +3191 2694 0.400000 +3191 2698 0.400000 +3191 2738 0.400000 +3191 2788 0.400000 +3191 2894 0.400000 +3191 2900 0.400000 +3191 2942 0.400000 +3191 2946 0.400000 +3191 3017 0.400000 +3191 3114 0.400000 +3191 3183 0.400000 +3192 49 0.400000 +3192 59 0.400000 +3192 163 0.400000 +3192 204 0.400000 +3192 240 0.400000 +3192 356 0.400000 +3192 398 0.400000 +3192 438 0.400000 +3192 488 0.400000 +3192 682 0.400000 +3192 746 0.400000 +3192 877 0.400000 +3192 957 0.400000 +3192 976 0.400000 +3192 1033 0.400000 +3192 1115 0.400000 +3192 1207 0.400000 +3192 1307 0.400000 +3192 1364 0.400000 +3192 1394 0.400000 +3192 1439 0.400000 +3192 1533 0.400000 +3192 1558 0.400000 +3192 1598 0.400000 +3192 1639 0.400000 +3192 1646 0.400000 +3192 1681 0.400000 +3192 1699 0.400000 +3192 1733 0.400000 +3192 1817 0.400000 +3192 1837 0.400000 +3192 1852 0.400000 +3192 1921 0.400000 +3192 2039 0.400000 +3192 2121 0.400000 +3192 2204 0.400000 +3192 2274 0.400000 +3192 2368 0.400000 +3192 2422 0.400000 +3192 2447 0.400000 +3192 2500 0.400000 +3192 2556 0.400000 +3192 2748 0.400000 +3192 2768 0.400000 +3192 2847 0.400000 +3192 2877 0.400000 +3192 2935 0.400000 +3192 3123 0.400000 +3192 3147 0.400000 +3192 3172 0.400000 +3193 37 0.400000 +3193 89 0.400000 +3193 124 0.400000 +3193 255 0.400000 +3193 344 0.400000 +3193 405 0.400000 +3193 428 0.400000 +3193 445 0.400000 +3193 623 0.400000 +3193 655 0.400000 +3193 688 0.400000 +3193 703 0.400000 +3193 720 0.400000 +3193 961 0.400000 +3193 966 0.400000 +3193 1172 0.400000 +3193 1209 0.400000 +3193 1210 0.400000 +3193 1237 0.400000 +3193 1380 0.400000 +3193 1650 0.400000 +3193 1653 0.400000 +3193 1661 0.400000 +3193 1722 0.400000 +3193 1855 0.400000 +3193 1974 0.400000 +3193 2014 0.400000 +3193 2083 0.400000 +3193 2120 0.400000 +3193 2124 0.400000 +3193 2137 0.400000 +3193 2175 0.400000 +3193 2286 0.400000 +3193 2306 0.400000 +3193 2331 0.400000 +3193 2378 0.400000 +3193 2501 0.400000 +3193 2523 0.400000 +3193 2537 0.400000 +3193 2566 0.400000 +3193 2686 0.400000 +3193 2698 0.400000 +3193 2702 0.400000 +3193 2751 0.400000 +3193 2764 0.400000 +3193 2801 0.400000 +3193 2879 0.400000 +3193 2886 0.400000 +3193 2897 0.400000 +3193 2989 0.400000 +3193 3007 0.400000 +3193 3039 0.400000 +3193 3080 0.400000 +3193 3082 0.400000 +3193 3117 0.400000 +3193 3121 0.400000 +3194 9 0.400000 +3194 20 0.400000 +3194 32 0.400000 +3194 167 0.400000 +3194 278 0.400000 +3194 463 0.400000 +3194 614 0.400000 +3194 618 0.400000 +3194 673 0.400000 +3194 763 0.400000 +3194 821 0.400000 +3194 857 0.400000 +3194 886 0.400000 +3194 890 0.400000 +3194 943 0.400000 +3194 1028 0.400000 +3194 1040 0.400000 +3194 1105 0.400000 +3194 1112 0.400000 +3194 1116 0.400000 +3194 1185 0.400000 +3194 1223 0.400000 +3194 1281 0.400000 +3194 1292 0.400000 +3194 1301 0.400000 +3194 1397 0.400000 +3194 1403 0.400000 +3194 1564 0.400000 +3194 1573 0.400000 +3194 1576 0.400000 +3194 1587 0.400000 +3194 1623 0.400000 +3194 1669 0.400000 +3194 1674 0.400000 +3194 1698 0.400000 +3194 1731 0.400000 +3194 1773 0.400000 +3194 1826 0.400000 +3194 1885 0.400000 +3194 1913 0.400000 +3194 1983 0.400000 +3194 1991 0.400000 +3194 2076 0.400000 +3194 2233 0.400000 +3194 2243 0.400000 +3194 2247 0.400000 +3194 2311 0.400000 +3194 2417 0.400000 +3194 2426 0.400000 +3194 2459 0.400000 +3194 2558 0.400000 +3194 2620 0.400000 +3194 2648 0.400000 +3194 2689 0.400000 +3194 2739 0.400000 +3194 2752 0.400000 +3194 2831 0.400000 +3194 2857 0.400000 +3194 2899 0.400000 +3194 2925 0.400000 +3194 3002 0.400000 +3194 3056 0.400000 +3194 3080 0.400000 +3194 3169 0.400000 +3195 21 0.400000 +3195 123 0.400000 +3195 141 0.400000 +3195 295 0.400000 +3195 355 0.400000 +3195 400 0.400000 +3195 432 0.400000 +3195 498 0.400000 +3195 528 0.400000 +3195 539 0.400000 +3195 551 0.400000 +3195 562 0.400000 +3195 625 0.400000 +3195 662 0.400000 +3195 859 0.400000 +3195 867 0.400000 +3195 951 0.400000 +3195 954 0.400000 +3195 1007 0.400000 +3195 1050 0.400000 +3195 1088 0.400000 +3195 1290 0.400000 +3195 1372 0.400000 +3195 1374 0.400000 +3195 1424 0.400000 +3195 1442 0.400000 +3195 1540 0.400000 +3195 1563 0.400000 +3195 1702 0.400000 +3195 1712 0.400000 +3195 1749 0.400000 +3195 1757 0.400000 +3195 1795 0.400000 +3195 1797 0.400000 +3195 1868 0.400000 +3195 1875 0.400000 +3195 1901 0.400000 +3195 1921 0.400000 +3195 1976 0.400000 +3195 2057 0.400000 +3195 2205 0.400000 +3195 2271 0.400000 +3195 2295 0.400000 +3195 2306 0.400000 +3195 2359 0.400000 +3195 2402 0.400000 +3195 2417 0.400000 +3195 2434 0.400000 +3195 2467 0.400000 +3195 2470 0.400000 +3195 2474 0.400000 +3195 2569 0.400000 +3195 2681 0.400000 +3195 2727 0.400000 +3195 2750 0.400000 +3195 2774 0.400000 +3195 2816 0.400000 +3195 2819 0.400000 +3195 2876 0.400000 +3195 2945 0.400000 +3195 3006 0.400000 +3195 3041 0.400000 +3195 3121 0.400000 +3195 3134 0.400000 +3195 3161 0.400000 +3196 43 0.400000 +3196 56 0.400000 +3196 75 0.400000 +3196 82 0.400000 +3196 94 0.400000 +3196 159 0.400000 +3196 281 0.400000 +3196 315 0.400000 +3196 386 0.400000 +3196 529 0.400000 +3196 580 0.400000 +3196 596 0.400000 +3196 703 0.400000 +3196 713 0.400000 +3196 718 0.400000 +3196 872 0.400000 +3196 886 0.400000 +3196 994 0.400000 +3196 998 0.400000 +3196 1168 0.400000 +3196 1195 0.400000 +3196 1209 0.400000 +3196 1239 0.400000 +3196 1279 0.400000 +3196 1332 0.400000 +3196 1356 0.400000 +3196 1397 0.400000 +3196 1418 0.400000 +3196 1438 0.400000 +3196 1473 0.400000 +3196 1495 0.400000 +3196 1660 0.400000 +3196 1710 0.400000 +3196 1736 0.400000 +3196 1821 0.400000 +3196 1858 0.400000 +3196 1876 0.400000 +3196 2032 0.400000 +3196 2053 0.400000 +3196 2129 0.400000 +3196 2165 0.400000 +3196 2220 0.400000 +3196 2236 0.400000 +3196 2356 0.400000 +3196 2377 0.400000 +3196 2456 0.400000 +3196 2481 0.400000 +3196 2490 0.400000 +3196 2550 0.400000 +3196 2563 0.400000 +3196 2737 0.400000 +3196 2760 0.400000 +3196 2761 0.400000 +3196 2807 0.400000 +3196 2896 0.400000 +3196 2942 0.400000 +3196 2958 0.400000 +3196 2968 0.400000 +3196 2977 0.400000 +3196 3041 0.400000 +3196 3071 0.400000 +3196 3078 0.400000 +3196 3099 0.400000 +3196 3103 0.400000 +3196 3136 0.400000 +3196 3140 0.400000 +3196 3148 0.400000 +3196 3151 0.400000 +3196 3165 0.400000 +3196 3185 0.400000 +3197 80 0.400000 +3197 136 0.400000 +3197 154 0.400000 +3197 172 0.400000 +3197 255 0.400000 +3197 280 0.400000 +3197 308 0.400000 +3197 366 0.400000 +3197 404 0.400000 +3197 429 0.400000 +3197 475 0.400000 +3197 498 0.400000 +3197 585 0.400000 +3197 723 0.400000 +3197 758 0.400000 +3197 848 0.400000 +3197 894 0.400000 +3197 917 0.400000 +3197 942 0.400000 +3197 1154 0.400000 +3197 1194 0.400000 +3197 1220 0.400000 +3197 1245 0.400000 +3197 1340 0.400000 +3197 1405 0.400000 +3197 1415 0.400000 +3197 1439 0.400000 +3197 1660 0.400000 +3197 1671 0.400000 +3197 1818 0.400000 +3197 1821 0.400000 +3197 1828 0.400000 +3197 1836 0.400000 +3197 1876 0.400000 +3197 1901 0.400000 +3197 1905 0.400000 +3197 1909 0.400000 +3197 1921 0.400000 +3197 1934 0.400000 +3197 2013 0.400000 +3197 2083 0.400000 +3197 2123 0.400000 +3197 2149 0.400000 +3197 2166 0.400000 +3197 2253 0.400000 +3197 2268 0.400000 +3197 2417 0.400000 +3197 2429 0.400000 +3197 2591 0.400000 +3197 2677 0.400000 +3197 2699 0.400000 +3197 2730 0.400000 +3197 2876 0.400000 +3197 2881 0.400000 +3197 2888 0.400000 +3197 2903 0.400000 +3197 3026 0.400000 +3197 3047 0.400000 +3197 3192 0.400000 +3198 13 0.400000 +3198 29 0.400000 +3198 56 0.400000 +3198 248 0.400000 +3198 315 0.400000 +3198 385 0.400000 +3198 426 0.400000 +3198 472 0.400000 +3198 476 0.400000 +3198 505 0.400000 +3198 522 0.400000 +3198 530 0.400000 +3198 539 0.400000 +3198 552 0.400000 +3198 558 0.400000 +3198 566 0.400000 +3198 581 0.400000 +3198 590 0.400000 +3198 602 0.400000 +3198 719 0.400000 +3198 834 0.400000 +3198 837 0.400000 +3198 871 0.400000 +3198 872 0.400000 +3198 922 0.400000 +3198 943 0.400000 +3198 945 0.400000 +3198 972 0.400000 +3198 998 0.400000 +3198 1043 0.400000 +3198 1096 0.400000 +3198 1364 0.400000 +3198 1377 0.400000 +3198 1398 0.400000 +3198 1471 0.400000 +3198 1474 0.400000 +3198 1599 0.400000 +3198 1637 0.400000 +3198 1674 0.400000 +3198 1725 0.400000 +3198 1849 0.400000 +3198 1871 0.400000 +3198 1876 0.400000 +3198 1888 0.400000 +3198 1927 0.400000 +3198 1953 0.400000 +3198 1970 0.400000 +3198 2006 0.400000 +3198 2018 0.400000 +3198 2050 0.400000 +3198 2059 0.400000 +3198 2071 0.400000 +3198 2107 0.400000 +3198 2148 0.400000 +3198 2184 0.400000 +3198 2262 0.400000 +3198 2286 0.400000 +3198 2303 0.400000 +3198 2350 0.400000 +3198 2396 0.400000 +3198 2408 0.400000 +3198 2504 0.400000 +3198 2518 0.400000 +3198 2698 0.400000 +3198 2709 0.400000 +3198 2725 0.400000 +3198 2731 0.400000 +3198 2910 0.400000 +3198 3035 0.400000 +3198 3053 0.400000 +3198 3123 0.400000 +3198 3138 0.400000 +3199 19 0.400000 +3199 20 0.400000 +3199 54 0.400000 +3199 192 0.400000 +3199 246 0.400000 +3199 309 0.400000 +3199 326 0.400000 +3199 335 0.400000 +3199 407 0.400000 +3199 451 0.400000 +3199 489 0.400000 +3199 510 0.400000 +3199 588 0.400000 +3199 621 0.400000 +3199 643 0.400000 +3199 652 0.400000 +3199 731 0.400000 +3199 825 0.400000 +3199 841 0.400000 +3199 930 0.400000 +3199 984 0.400000 +3199 1072 0.400000 +3199 1119 0.400000 +3199 1155 0.400000 +3199 1244 0.400000 +3199 1313 0.400000 +3199 1361 0.400000 +3199 1383 0.400000 +3199 1404 0.400000 +3199 1468 0.400000 +3199 1499 0.400000 +3199 1525 0.400000 +3199 1577 0.400000 +3199 1640 0.400000 +3199 1730 0.400000 +3199 1740 0.400000 +3199 1822 0.400000 +3199 1875 0.400000 +3199 1882 0.400000 +3199 1894 0.400000 +3199 1898 0.400000 +3199 1924 0.400000 +3199 2049 0.400000 +3199 2101 0.400000 +3199 2152 0.400000 +3199 2171 0.400000 +3199 2173 0.400000 +3199 2189 0.400000 +3199 2376 0.400000 +3199 2381 0.400000 +3199 2470 0.400000 +3199 2506 0.400000 +3199 2529 0.400000 +3199 2585 0.400000 +3199 2605 0.400000 +3199 2628 0.400000 +3199 2744 0.400000 +3199 2775 0.400000 +3199 2793 0.400000 +3199 2909 0.400000 +3199 2947 0.400000 +3199 2965 0.400000 +3199 3031 0.400000 +3199 3156 0.400000 +3200 34 0.400000 +3200 68 0.400000 +3200 137 0.400000 +3200 146 0.400000 +3200 182 0.400000 +3200 230 0.400000 +3200 417 0.400000 +3200 574 0.400000 +3200 579 0.400000 +3200 613 0.400000 +3200 616 0.400000 +3200 757 0.400000 +3200 843 0.400000 +3200 854 0.400000 +3200 908 0.400000 +3200 945 0.400000 +3200 965 0.400000 +3200 971 0.400000 +3200 1028 0.400000 +3200 1043 0.400000 +3200 1055 0.400000 +3200 1102 0.400000 +3200 1171 0.400000 +3200 1206 0.400000 +3200 1278 0.400000 +3200 1323 0.400000 +3200 1333 0.400000 +3200 1337 0.400000 +3200 1368 0.400000 +3200 1457 0.400000 +3200 1481 0.400000 +3200 1488 0.400000 +3200 1495 0.400000 +3200 1507 0.400000 +3200 1523 0.400000 +3200 1570 0.400000 +3200 1584 0.400000 +3200 1634 0.400000 +3200 1667 0.400000 +3200 1723 0.400000 +3200 1859 0.400000 +3200 1868 0.400000 +3200 1906 0.400000 +3200 2150 0.400000 +3200 2189 0.400000 +3200 2197 0.400000 +3200 2271 0.400000 +3200 2314 0.400000 +3200 2358 0.400000 +3200 2397 0.400000 +3200 2439 0.400000 +3200 2470 0.400000 +3200 2511 0.400000 +3200 2587 0.400000 +3200 2682 0.400000 +3200 2822 0.400000 +3200 2905 0.400000 +3200 2908 0.400000 +3200 2955 0.400000 +3200 3001 0.400000 +3200 3008 0.400000 +3200 3027 0.400000 +3200 3044 0.400000 +3200 3082 0.400000 +3200 3093 0.400000 +3200 3100 0.400000 +3200 3105 0.400000 +3200 3126 0.400000 +3200 3144 0.400000 +3200 3189 0.400000 +3200 3190 0.400000 diff --git a/tests/coba_test/pynn.ei.wmat b/tests/coba_test/pynn.ei.wmat new file mode 100644 index 00000000..15d80757 --- /dev/null +++ b/tests/coba_test/pynn.ei.wmat @@ -0,0 +1,51203 @@ +%%MatrixMarket matrix coordinate real general +% Auryn weight matrix. Has to be kept in row major order for load operation. +% Connection name: SparseConnection +% Locked range: 1 +% +3200 800 51203 +1 24 0.400000 +1 283 0.400000 +1 335 0.400000 +1 412 0.400000 +1 529 0.400000 +1 559 0.400000 +1 609 0.400000 +1 677 0.400000 +1 687 0.400000 +1 714 0.400000 +1 742 0.400000 +2 13 0.400000 +2 66 0.400000 +2 85 0.400000 +2 97 0.400000 +2 175 0.400000 +2 206 0.400000 +2 359 0.400000 +2 388 0.400000 +2 426 0.400000 +2 514 0.400000 +2 516 0.400000 +2 523 0.400000 +2 530 0.400000 +2 559 0.400000 +2 626 0.400000 +2 662 0.400000 +2 669 0.400000 +2 736 0.400000 +3 1 0.400000 +3 61 0.400000 +3 197 0.400000 +3 241 0.400000 +3 244 0.400000 +3 246 0.400000 +3 349 0.400000 +3 358 0.400000 +3 408 0.400000 +3 424 0.400000 +3 496 0.400000 +3 501 0.400000 +3 536 0.400000 +3 587 0.400000 +3 632 0.400000 +3 661 0.400000 +3 677 0.400000 +3 724 0.400000 +3 726 0.400000 +3 747 0.400000 +3 788 0.400000 +3 793 0.400000 +4 11 0.400000 +4 69 0.400000 +4 163 0.400000 +4 188 0.400000 +4 228 0.400000 +4 247 0.400000 +4 282 0.400000 +4 286 0.400000 +4 346 0.400000 +4 368 0.400000 +4 480 0.400000 +4 499 0.400000 +4 519 0.400000 +4 533 0.400000 +4 582 0.400000 +4 645 0.400000 +4 646 0.400000 +4 659 0.400000 +4 676 0.400000 +5 22 0.400000 +5 128 0.400000 +5 165 0.400000 +5 182 0.400000 +5 310 0.400000 +5 389 0.400000 +5 450 0.400000 +5 495 0.400000 +5 636 0.400000 +5 653 0.400000 +5 673 0.400000 +5 701 0.400000 +5 748 0.400000 +5 755 0.400000 +5 759 0.400000 +6 18 0.400000 +6 20 0.400000 +6 55 0.400000 +6 58 0.400000 +6 69 0.400000 +6 77 0.400000 +6 286 0.400000 +6 288 0.400000 +6 302 0.400000 +6 357 0.400000 +6 362 0.400000 +6 423 0.400000 +6 498 0.400000 +6 511 0.400000 +6 571 0.400000 +6 577 0.400000 +6 580 0.400000 +6 643 0.400000 +6 665 0.400000 +6 708 0.400000 +6 754 0.400000 +6 758 0.400000 +7 15 0.400000 +7 182 0.400000 +7 407 0.400000 +7 503 0.400000 +7 518 0.400000 +7 560 0.400000 +7 568 0.400000 +7 586 0.400000 +7 700 0.400000 +7 761 0.400000 +7 793 0.400000 +7 795 0.400000 +8 15 0.400000 +8 45 0.400000 +8 52 0.400000 +8 69 0.400000 +8 203 0.400000 +8 208 0.400000 +8 279 0.400000 +8 422 0.400000 +8 481 0.400000 +8 535 0.400000 +8 546 0.400000 +8 557 0.400000 +8 587 0.400000 +8 588 0.400000 +8 595 0.400000 +8 599 0.400000 +8 608 0.400000 +8 617 0.400000 +8 628 0.400000 +8 647 0.400000 +8 667 0.400000 +8 717 0.400000 +8 783 0.400000 +9 20 0.400000 +9 29 0.400000 +9 55 0.400000 +9 87 0.400000 +9 108 0.400000 +9 109 0.400000 +9 132 0.400000 +9 350 0.400000 +9 406 0.400000 +9 425 0.400000 +9 426 0.400000 +9 467 0.400000 +9 510 0.400000 +9 594 0.400000 +9 603 0.400000 +9 619 0.400000 +10 6 0.400000 +10 112 0.400000 +10 160 0.400000 +10 170 0.400000 +10 248 0.400000 +10 408 0.400000 +10 416 0.400000 +10 460 0.400000 +10 520 0.400000 +10 612 0.400000 +10 625 0.400000 +10 631 0.400000 +10 714 0.400000 +10 739 0.400000 +10 742 0.400000 +11 146 0.400000 +11 206 0.400000 +11 274 0.400000 +11 296 0.400000 +11 319 0.400000 +11 366 0.400000 +11 371 0.400000 +11 484 0.400000 +11 559 0.400000 +11 584 0.400000 +11 594 0.400000 +11 614 0.400000 +11 656 0.400000 +11 706 0.400000 +11 732 0.400000 +12 41 0.400000 +12 77 0.400000 +12 167 0.400000 +12 199 0.400000 +12 213 0.400000 +12 236 0.400000 +12 247 0.400000 +12 260 0.400000 +12 427 0.400000 +12 453 0.400000 +12 473 0.400000 +12 501 0.400000 +12 577 0.400000 +12 619 0.400000 +12 733 0.400000 +13 71 0.400000 +13 112 0.400000 +13 178 0.400000 +13 185 0.400000 +13 229 0.400000 +13 256 0.400000 +13 269 0.400000 +13 298 0.400000 +13 300 0.400000 +13 312 0.400000 +13 384 0.400000 +13 458 0.400000 +13 495 0.400000 +13 575 0.400000 +13 699 0.400000 +13 756 0.400000 +13 760 0.400000 +14 59 0.400000 +14 180 0.400000 +14 206 0.400000 +14 212 0.400000 +14 219 0.400000 +14 253 0.400000 +14 305 0.400000 +14 308 0.400000 +14 402 0.400000 +14 409 0.400000 +14 668 0.400000 +14 675 0.400000 +14 733 0.400000 +14 771 0.400000 +15 27 0.400000 +15 33 0.400000 +15 159 0.400000 +15 218 0.400000 +15 235 0.400000 +15 279 0.400000 +15 283 0.400000 +15 298 0.400000 +15 300 0.400000 +15 321 0.400000 +15 488 0.400000 +15 500 0.400000 +15 507 0.400000 +15 564 0.400000 +15 590 0.400000 +15 628 0.400000 +15 655 0.400000 +15 702 0.400000 +15 749 0.400000 +15 775 0.400000 +16 122 0.400000 +16 134 0.400000 +16 194 0.400000 +16 224 0.400000 +16 228 0.400000 +16 294 0.400000 +16 305 0.400000 +16 357 0.400000 +16 467 0.400000 +16 478 0.400000 +16 496 0.400000 +16 498 0.400000 +16 624 0.400000 +16 634 0.400000 +16 637 0.400000 +16 727 0.400000 +16 730 0.400000 +17 41 0.400000 +17 210 0.400000 +17 279 0.400000 +17 388 0.400000 +17 398 0.400000 +17 477 0.400000 +17 606 0.400000 +17 649 0.400000 +17 675 0.400000 +17 694 0.400000 +17 741 0.400000 +17 763 0.400000 +18 57 0.400000 +18 135 0.400000 +18 343 0.400000 +18 361 0.400000 +18 442 0.400000 +18 465 0.400000 +18 516 0.400000 +18 630 0.400000 +18 647 0.400000 +18 649 0.400000 +18 657 0.400000 +18 676 0.400000 +18 732 0.400000 +18 738 0.400000 +18 754 0.400000 +18 761 0.400000 +18 795 0.400000 +19 77 0.400000 +19 144 0.400000 +19 158 0.400000 +19 176 0.400000 +19 208 0.400000 +19 306 0.400000 +19 314 0.400000 +19 360 0.400000 +19 361 0.400000 +19 382 0.400000 +19 401 0.400000 +19 448 0.400000 +19 595 0.400000 +19 631 0.400000 +19 659 0.400000 +19 686 0.400000 +19 731 0.400000 +20 15 0.400000 +20 41 0.400000 +20 185 0.400000 +20 295 0.400000 +20 299 0.400000 +20 330 0.400000 +20 349 0.400000 +20 420 0.400000 +20 435 0.400000 +20 477 0.400000 +20 528 0.400000 +20 558 0.400000 +20 620 0.400000 +20 631 0.400000 +20 675 0.400000 +20 750 0.400000 +20 762 0.400000 +20 779 0.400000 +21 10 0.400000 +21 49 0.400000 +21 175 0.400000 +21 181 0.400000 +21 184 0.400000 +21 187 0.400000 +21 235 0.400000 +21 275 0.400000 +21 324 0.400000 +21 415 0.400000 +21 588 0.400000 +21 593 0.400000 +21 669 0.400000 +22 10 0.400000 +22 48 0.400000 +22 117 0.400000 +22 185 0.400000 +22 213 0.400000 +22 235 0.400000 +22 247 0.400000 +22 317 0.400000 +22 347 0.400000 +22 410 0.400000 +22 430 0.400000 +22 462 0.400000 +22 476 0.400000 +22 479 0.400000 +22 539 0.400000 +22 553 0.400000 +22 621 0.400000 +22 679 0.400000 +22 717 0.400000 +22 787 0.400000 +23 12 0.400000 +23 24 0.400000 +23 151 0.400000 +23 180 0.400000 +23 219 0.400000 +23 406 0.400000 +23 431 0.400000 +23 451 0.400000 +23 518 0.400000 +23 531 0.400000 +23 545 0.400000 +23 631 0.400000 +23 682 0.400000 +23 749 0.400000 +23 759 0.400000 +23 768 0.400000 +24 59 0.400000 +24 86 0.400000 +24 176 0.400000 +24 247 0.400000 +24 269 0.400000 +24 270 0.400000 +24 288 0.400000 +24 311 0.400000 +24 343 0.400000 +24 362 0.400000 +24 367 0.400000 +24 374 0.400000 +24 384 0.400000 +24 391 0.400000 +24 398 0.400000 +24 451 0.400000 +24 568 0.400000 +24 621 0.400000 +24 625 0.400000 +24 642 0.400000 +24 648 0.400000 +24 691 0.400000 +24 726 0.400000 +25 73 0.400000 +25 131 0.400000 +25 158 0.400000 +25 212 0.400000 +25 231 0.400000 +25 239 0.400000 +25 330 0.400000 +25 353 0.400000 +25 378 0.400000 +25 388 0.400000 +25 419 0.400000 +25 531 0.400000 +25 702 0.400000 +25 711 0.400000 +26 23 0.400000 +26 58 0.400000 +26 107 0.400000 +26 157 0.400000 +26 165 0.400000 +26 230 0.400000 +26 234 0.400000 +26 267 0.400000 +26 331 0.400000 +26 357 0.400000 +26 375 0.400000 +26 377 0.400000 +26 386 0.400000 +26 410 0.400000 +26 462 0.400000 +26 468 0.400000 +26 492 0.400000 +26 547 0.400000 +26 575 0.400000 +26 681 0.400000 +26 684 0.400000 +26 688 0.400000 +26 746 0.400000 +26 771 0.400000 +26 782 0.400000 +26 791 0.400000 +26 796 0.400000 +27 50 0.400000 +27 105 0.400000 +27 214 0.400000 +27 241 0.400000 +27 255 0.400000 +27 275 0.400000 +27 405 0.400000 +27 515 0.400000 +27 623 0.400000 +27 690 0.400000 +27 692 0.400000 +27 701 0.400000 +27 762 0.400000 +27 766 0.400000 +28 27 0.400000 +28 45 0.400000 +28 63 0.400000 +28 140 0.400000 +28 388 0.400000 +28 394 0.400000 +28 425 0.400000 +28 429 0.400000 +28 479 0.400000 +28 500 0.400000 +28 511 0.400000 +28 519 0.400000 +28 545 0.400000 +28 565 0.400000 +28 605 0.400000 +28 617 0.400000 +28 618 0.400000 +28 627 0.400000 +28 658 0.400000 +28 772 0.400000 +29 4 0.400000 +29 131 0.400000 +29 260 0.400000 +29 324 0.400000 +29 361 0.400000 +29 567 0.400000 +29 678 0.400000 +29 687 0.400000 +29 705 0.400000 +29 747 0.400000 +30 132 0.400000 +30 166 0.400000 +30 178 0.400000 +30 227 0.400000 +30 256 0.400000 +30 309 0.400000 +30 338 0.400000 +30 372 0.400000 +30 392 0.400000 +30 578 0.400000 +30 598 0.400000 +30 610 0.400000 +30 722 0.400000 +31 16 0.400000 +31 24 0.400000 +31 131 0.400000 +31 182 0.400000 +31 207 0.400000 +31 274 0.400000 +31 379 0.400000 +31 380 0.400000 +31 408 0.400000 +31 457 0.400000 +31 477 0.400000 +31 515 0.400000 +31 533 0.400000 +31 546 0.400000 +31 549 0.400000 +31 574 0.400000 +31 587 0.400000 +31 693 0.400000 +31 777 0.400000 +31 799 0.400000 +32 25 0.400000 +32 47 0.400000 +32 136 0.400000 +32 144 0.400000 +32 171 0.400000 +32 242 0.400000 +32 257 0.400000 +32 288 0.400000 +32 351 0.400000 +32 379 0.400000 +32 531 0.400000 +32 540 0.400000 +32 587 0.400000 +33 29 0.400000 +33 65 0.400000 +33 94 0.400000 +33 136 0.400000 +33 151 0.400000 +33 177 0.400000 +33 192 0.400000 +33 201 0.400000 +33 215 0.400000 +33 261 0.400000 +33 271 0.400000 +33 382 0.400000 +33 412 0.400000 +33 420 0.400000 +33 425 0.400000 +33 475 0.400000 +33 480 0.400000 +33 551 0.400000 +33 558 0.400000 +33 559 0.400000 +33 577 0.400000 +33 640 0.400000 +33 643 0.400000 +33 662 0.400000 +33 684 0.400000 +33 719 0.400000 +34 53 0.400000 +34 89 0.400000 +34 137 0.400000 +34 150 0.400000 +34 262 0.400000 +34 310 0.400000 +34 346 0.400000 +34 349 0.400000 +34 434 0.400000 +34 439 0.400000 +34 448 0.400000 +34 471 0.400000 +34 520 0.400000 +34 545 0.400000 +34 547 0.400000 +34 555 0.400000 +34 570 0.400000 +34 580 0.400000 +34 650 0.400000 +35 9 0.400000 +35 31 0.400000 +35 99 0.400000 +35 148 0.400000 +35 170 0.400000 +35 172 0.400000 +35 180 0.400000 +35 311 0.400000 +35 351 0.400000 +35 360 0.400000 +35 503 0.400000 +35 581 0.400000 +35 595 0.400000 +35 742 0.400000 +35 773 0.400000 +36 1 0.400000 +36 5 0.400000 +36 20 0.400000 +36 36 0.400000 +36 84 0.400000 +36 90 0.400000 +36 188 0.400000 +36 191 0.400000 +36 205 0.400000 +36 343 0.400000 +36 353 0.400000 +36 367 0.400000 +36 473 0.400000 +36 489 0.400000 +36 668 0.400000 +36 691 0.400000 +36 693 0.400000 +36 716 0.400000 +36 781 0.400000 +37 13 0.400000 +37 60 0.400000 +37 65 0.400000 +37 74 0.400000 +37 285 0.400000 +37 389 0.400000 +37 444 0.400000 +37 586 0.400000 +37 706 0.400000 +37 709 0.400000 +37 720 0.400000 +38 114 0.400000 +38 147 0.400000 +38 396 0.400000 +38 442 0.400000 +38 572 0.400000 +38 690 0.400000 +38 764 0.400000 +38 796 0.400000 +39 57 0.400000 +39 78 0.400000 +39 183 0.400000 +39 339 0.400000 +39 366 0.400000 +39 404 0.400000 +39 428 0.400000 +39 449 0.400000 +39 555 0.400000 +39 558 0.400000 +39 586 0.400000 +39 628 0.400000 +39 646 0.400000 +39 732 0.400000 +40 61 0.400000 +40 72 0.400000 +40 147 0.400000 +40 186 0.400000 +40 241 0.400000 +40 263 0.400000 +40 272 0.400000 +40 297 0.400000 +40 370 0.400000 +40 417 0.400000 +40 442 0.400000 +40 476 0.400000 +40 503 0.400000 +40 534 0.400000 +40 572 0.400000 +40 579 0.400000 +40 629 0.400000 +40 635 0.400000 +40 677 0.400000 +40 756 0.400000 +41 74 0.400000 +41 78 0.400000 +41 121 0.400000 +41 149 0.400000 +41 223 0.400000 +41 283 0.400000 +41 416 0.400000 +41 450 0.400000 +41 511 0.400000 +41 561 0.400000 +41 577 0.400000 +41 654 0.400000 +41 749 0.400000 +42 1 0.400000 +42 8 0.400000 +42 91 0.400000 +42 138 0.400000 +42 246 0.400000 +42 299 0.400000 +42 346 0.400000 +42 380 0.400000 +42 445 0.400000 +42 459 0.400000 +42 585 0.400000 +42 601 0.400000 +42 685 0.400000 +42 712 0.400000 +42 737 0.400000 +42 746 0.400000 +43 54 0.400000 +43 189 0.400000 +43 315 0.400000 +43 496 0.400000 +43 676 0.400000 +43 683 0.400000 +43 741 0.400000 +43 754 0.400000 +43 789 0.400000 +44 60 0.400000 +44 65 0.400000 +44 92 0.400000 +44 151 0.400000 +44 232 0.400000 +44 297 0.400000 +44 345 0.400000 +44 347 0.400000 +44 377 0.400000 +44 386 0.400000 +44 407 0.400000 +44 411 0.400000 +44 481 0.400000 +44 496 0.400000 +44 594 0.400000 +44 657 0.400000 +45 15 0.400000 +45 71 0.400000 +45 194 0.400000 +45 205 0.400000 +45 248 0.400000 +45 367 0.400000 +45 385 0.400000 +45 475 0.400000 +45 492 0.400000 +45 555 0.400000 +45 656 0.400000 +45 682 0.400000 +45 750 0.400000 +45 754 0.400000 +45 786 0.400000 +46 32 0.400000 +46 86 0.400000 +46 181 0.400000 +46 198 0.400000 +46 218 0.400000 +46 222 0.400000 +46 286 0.400000 +46 304 0.400000 +46 415 0.400000 +46 417 0.400000 +46 429 0.400000 +46 468 0.400000 +46 636 0.400000 +46 692 0.400000 +46 726 0.400000 +46 769 0.400000 +47 227 0.400000 +47 290 0.400000 +47 310 0.400000 +47 421 0.400000 +47 431 0.400000 +47 439 0.400000 +47 509 0.400000 +47 523 0.400000 +47 557 0.400000 +47 693 0.400000 +47 710 0.400000 +47 763 0.400000 +47 798 0.400000 +48 18 0.400000 +48 20 0.400000 +48 30 0.400000 +48 94 0.400000 +48 145 0.400000 +48 187 0.400000 +48 200 0.400000 +48 204 0.400000 +48 239 0.400000 +48 289 0.400000 +48 316 0.400000 +48 343 0.400000 +48 476 0.400000 +48 485 0.400000 +48 487 0.400000 +48 494 0.400000 +48 507 0.400000 +48 733 0.400000 +48 781 0.400000 +49 13 0.400000 +49 29 0.400000 +49 56 0.400000 +49 73 0.400000 +49 126 0.400000 +49 145 0.400000 +49 148 0.400000 +49 156 0.400000 +49 168 0.400000 +49 174 0.400000 +49 226 0.400000 +49 232 0.400000 +49 288 0.400000 +49 363 0.400000 +49 505 0.400000 +49 513 0.400000 +49 516 0.400000 +49 734 0.400000 +49 758 0.400000 +49 799 0.400000 +50 20 0.400000 +50 74 0.400000 +50 81 0.400000 +50 219 0.400000 +50 228 0.400000 +50 245 0.400000 +50 335 0.400000 +50 338 0.400000 +50 380 0.400000 +50 393 0.400000 +50 593 0.400000 +50 611 0.400000 +50 684 0.400000 +50 735 0.400000 +50 754 0.400000 +51 147 0.400000 +51 201 0.400000 +51 246 0.400000 +51 279 0.400000 +51 370 0.400000 +51 373 0.400000 +51 445 0.400000 +51 506 0.400000 +51 541 0.400000 +51 617 0.400000 +51 651 0.400000 +52 63 0.400000 +52 84 0.400000 +52 93 0.400000 +52 127 0.400000 +52 205 0.400000 +52 214 0.400000 +52 418 0.400000 +52 442 0.400000 +52 479 0.400000 +52 576 0.400000 +52 618 0.400000 +52 623 0.400000 +52 653 0.400000 +52 671 0.400000 +52 705 0.400000 +52 787 0.400000 +52 795 0.400000 +53 15 0.400000 +53 83 0.400000 +53 108 0.400000 +53 148 0.400000 +53 237 0.400000 +53 285 0.400000 +53 307 0.400000 +53 343 0.400000 +53 345 0.400000 +53 468 0.400000 +53 501 0.400000 +53 664 0.400000 +53 725 0.400000 +53 753 0.400000 +53 788 0.400000 +54 42 0.400000 +54 52 0.400000 +54 53 0.400000 +54 76 0.400000 +54 101 0.400000 +54 174 0.400000 +54 176 0.400000 +54 208 0.400000 +54 345 0.400000 +54 453 0.400000 +54 676 0.400000 +54 677 0.400000 +54 681 0.400000 +54 683 0.400000 +55 49 0.400000 +55 132 0.400000 +55 146 0.400000 +55 258 0.400000 +55 375 0.400000 +55 376 0.400000 +55 395 0.400000 +55 445 0.400000 +55 501 0.400000 +55 515 0.400000 +55 569 0.400000 +55 577 0.400000 +55 579 0.400000 +55 582 0.400000 +55 620 0.400000 +55 651 0.400000 +55 677 0.400000 +55 678 0.400000 +55 699 0.400000 +55 706 0.400000 +56 17 0.400000 +56 45 0.400000 +56 59 0.400000 +56 228 0.400000 +56 236 0.400000 +56 266 0.400000 +56 287 0.400000 +56 417 0.400000 +56 473 0.400000 +56 539 0.400000 +56 613 0.400000 +56 629 0.400000 +56 716 0.400000 +57 8 0.400000 +57 21 0.400000 +57 155 0.400000 +57 172 0.400000 +57 180 0.400000 +57 184 0.400000 +57 204 0.400000 +57 286 0.400000 +57 461 0.400000 +57 482 0.400000 +57 491 0.400000 +57 548 0.400000 +57 585 0.400000 +57 667 0.400000 +57 693 0.400000 +58 5 0.400000 +58 110 0.400000 +58 115 0.400000 +58 148 0.400000 +58 159 0.400000 +58 170 0.400000 +58 174 0.400000 +58 209 0.400000 +58 234 0.400000 +58 271 0.400000 +58 307 0.400000 +58 330 0.400000 +58 335 0.400000 +58 376 0.400000 +58 400 0.400000 +58 443 0.400000 +58 472 0.400000 +58 480 0.400000 +58 482 0.400000 +58 552 0.400000 +58 576 0.400000 +58 674 0.400000 +58 729 0.400000 +58 753 0.400000 +58 761 0.400000 +59 19 0.400000 +59 124 0.400000 +59 134 0.400000 +59 138 0.400000 +59 164 0.400000 +59 363 0.400000 +59 526 0.400000 +59 689 0.400000 +59 691 0.400000 +59 694 0.400000 +59 714 0.400000 +60 189 0.400000 +60 368 0.400000 +60 371 0.400000 +60 376 0.400000 +60 386 0.400000 +60 481 0.400000 +60 536 0.400000 +60 589 0.400000 +60 784 0.400000 +60 785 0.400000 +61 109 0.400000 +61 128 0.400000 +61 175 0.400000 +61 289 0.400000 +61 294 0.400000 +61 316 0.400000 +61 344 0.400000 +61 399 0.400000 +61 467 0.400000 +61 472 0.400000 +61 549 0.400000 +61 674 0.400000 +61 770 0.400000 +61 771 0.400000 +62 53 0.400000 +62 63 0.400000 +62 97 0.400000 +62 138 0.400000 +62 335 0.400000 +62 479 0.400000 +62 488 0.400000 +62 505 0.400000 +62 560 0.400000 +62 589 0.400000 +62 645 0.400000 +62 706 0.400000 +62 758 0.400000 +63 119 0.400000 +63 182 0.400000 +63 195 0.400000 +63 260 0.400000 +63 336 0.400000 +63 379 0.400000 +63 396 0.400000 +63 413 0.400000 +63 460 0.400000 +63 534 0.400000 +63 558 0.400000 +63 659 0.400000 +63 662 0.400000 +64 54 0.400000 +64 103 0.400000 +64 148 0.400000 +64 193 0.400000 +64 337 0.400000 +64 412 0.400000 +64 485 0.400000 +64 521 0.400000 +64 568 0.400000 +64 709 0.400000 +65 79 0.400000 +65 183 0.400000 +65 242 0.400000 +65 339 0.400000 +65 458 0.400000 +65 523 0.400000 +65 533 0.400000 +65 535 0.400000 +65 572 0.400000 +65 575 0.400000 +65 588 0.400000 +65 589 0.400000 +65 752 0.400000 +66 10 0.400000 +66 80 0.400000 +66 86 0.400000 +66 263 0.400000 +66 280 0.400000 +66 375 0.400000 +66 498 0.400000 +66 614 0.400000 +66 713 0.400000 +66 771 0.400000 +67 52 0.400000 +67 89 0.400000 +67 127 0.400000 +67 214 0.400000 +67 237 0.400000 +67 256 0.400000 +67 290 0.400000 +67 329 0.400000 +67 350 0.400000 +67 403 0.400000 +67 489 0.400000 +67 626 0.400000 +67 674 0.400000 +67 684 0.400000 +67 697 0.400000 +68 75 0.400000 +68 227 0.400000 +68 228 0.400000 +68 249 0.400000 +68 279 0.400000 +68 295 0.400000 +68 321 0.400000 +68 323 0.400000 +68 337 0.400000 +68 390 0.400000 +68 395 0.400000 +68 479 0.400000 +68 564 0.400000 +68 587 0.400000 +68 588 0.400000 +68 634 0.400000 +69 12 0.400000 +69 142 0.400000 +69 266 0.400000 +69 410 0.400000 +69 494 0.400000 +69 676 0.400000 +69 710 0.400000 +70 249 0.400000 +70 297 0.400000 +70 324 0.400000 +70 363 0.400000 +70 400 0.400000 +70 402 0.400000 +70 419 0.400000 +70 473 0.400000 +70 665 0.400000 +71 55 0.400000 +71 99 0.400000 +71 102 0.400000 +71 133 0.400000 +71 163 0.400000 +71 221 0.400000 +71 313 0.400000 +71 346 0.400000 +71 351 0.400000 +71 372 0.400000 +71 409 0.400000 +71 423 0.400000 +71 453 0.400000 +71 500 0.400000 +71 589 0.400000 +71 614 0.400000 +71 692 0.400000 +71 731 0.400000 +72 84 0.400000 +72 143 0.400000 +72 187 0.400000 +72 240 0.400000 +72 251 0.400000 +72 446 0.400000 +72 460 0.400000 +72 572 0.400000 +72 642 0.400000 +72 650 0.400000 +72 655 0.400000 +72 680 0.400000 +72 734 0.400000 +72 778 0.400000 +72 791 0.400000 +73 4 0.400000 +73 18 0.400000 +73 82 0.400000 +73 84 0.400000 +73 121 0.400000 +73 122 0.400000 +73 164 0.400000 +73 240 0.400000 +73 246 0.400000 +73 288 0.400000 +73 297 0.400000 +73 337 0.400000 +73 407 0.400000 +73 590 0.400000 +73 666 0.400000 +73 734 0.400000 +73 737 0.400000 +73 754 0.400000 +74 20 0.400000 +74 86 0.400000 +74 184 0.400000 +74 304 0.400000 +74 356 0.400000 +74 363 0.400000 +74 389 0.400000 +74 402 0.400000 +74 463 0.400000 +74 505 0.400000 +74 546 0.400000 +74 552 0.400000 +74 558 0.400000 +74 672 0.400000 +74 691 0.400000 +74 772 0.400000 +74 785 0.400000 +75 41 0.400000 +75 42 0.400000 +75 72 0.400000 +75 114 0.400000 +75 116 0.400000 +75 158 0.400000 +75 195 0.400000 +75 207 0.400000 +75 229 0.400000 +75 270 0.400000 +75 344 0.400000 +75 394 0.400000 +75 485 0.400000 +75 506 0.400000 +75 530 0.400000 +75 568 0.400000 +75 573 0.400000 +75 604 0.400000 +75 618 0.400000 +75 659 0.400000 +75 673 0.400000 +75 698 0.400000 +75 714 0.400000 +76 71 0.400000 +76 141 0.400000 +76 200 0.400000 +76 321 0.400000 +76 371 0.400000 +76 479 0.400000 +76 608 0.400000 +76 615 0.400000 +76 652 0.400000 +76 659 0.400000 +76 666 0.400000 +76 686 0.400000 +76 721 0.400000 +76 799 0.400000 +77 7 0.400000 +77 14 0.400000 +77 68 0.400000 +77 96 0.400000 +77 109 0.400000 +77 175 0.400000 +77 186 0.400000 +77 203 0.400000 +77 231 0.400000 +77 248 0.400000 +77 261 0.400000 +77 263 0.400000 +77 326 0.400000 +77 345 0.400000 +77 349 0.400000 +77 418 0.400000 +77 445 0.400000 +77 472 0.400000 +77 541 0.400000 +77 548 0.400000 +77 549 0.400000 +77 557 0.400000 +77 587 0.400000 +77 601 0.400000 +77 622 0.400000 +77 623 0.400000 +77 675 0.400000 +77 688 0.400000 +78 77 0.400000 +78 83 0.400000 +78 116 0.400000 +78 169 0.400000 +78 201 0.400000 +78 209 0.400000 +78 215 0.400000 +78 287 0.400000 +78 295 0.400000 +78 319 0.400000 +78 320 0.400000 +78 370 0.400000 +78 417 0.400000 +78 452 0.400000 +78 542 0.400000 +78 587 0.400000 +78 600 0.400000 +78 665 0.400000 +78 702 0.400000 +78 715 0.400000 +78 747 0.400000 +79 102 0.400000 +79 105 0.400000 +79 134 0.400000 +79 135 0.400000 +79 225 0.400000 +79 304 0.400000 +79 318 0.400000 +79 436 0.400000 +79 437 0.400000 +79 575 0.400000 +79 597 0.400000 +79 640 0.400000 +79 655 0.400000 +79 665 0.400000 +79 751 0.400000 +79 776 0.400000 +79 781 0.400000 +80 35 0.400000 +80 78 0.400000 +80 146 0.400000 +80 213 0.400000 +80 323 0.400000 +80 352 0.400000 +80 487 0.400000 +80 489 0.400000 +80 562 0.400000 +80 567 0.400000 +80 627 0.400000 +80 731 0.400000 +80 740 0.400000 +80 781 0.400000 +80 795 0.400000 +81 22 0.400000 +81 61 0.400000 +81 165 0.400000 +81 191 0.400000 +81 193 0.400000 +81 292 0.400000 +81 400 0.400000 +81 403 0.400000 +81 474 0.400000 +81 497 0.400000 +81 533 0.400000 +81 650 0.400000 +81 693 0.400000 +82 10 0.400000 +82 47 0.400000 +82 158 0.400000 +82 210 0.400000 +82 422 0.400000 +82 591 0.400000 +82 607 0.400000 +82 726 0.400000 +82 738 0.400000 +82 745 0.400000 +82 762 0.400000 +83 91 0.400000 +83 166 0.400000 +83 212 0.400000 +83 225 0.400000 +83 369 0.400000 +83 383 0.400000 +83 462 0.400000 +83 470 0.400000 +83 476 0.400000 +83 551 0.400000 +83 554 0.400000 +83 795 0.400000 +84 4 0.400000 +84 5 0.400000 +84 67 0.400000 +84 73 0.400000 +84 166 0.400000 +84 182 0.400000 +84 229 0.400000 +84 262 0.400000 +84 264 0.400000 +84 452 0.400000 +84 454 0.400000 +84 467 0.400000 +84 525 0.400000 +84 541 0.400000 +84 550 0.400000 +84 565 0.400000 +84 640 0.400000 +84 668 0.400000 +84 788 0.400000 +85 113 0.400000 +85 142 0.400000 +85 163 0.400000 +85 166 0.400000 +85 229 0.400000 +85 254 0.400000 +85 284 0.400000 +85 316 0.400000 +85 334 0.400000 +85 340 0.400000 +85 343 0.400000 +85 364 0.400000 +85 372 0.400000 +85 406 0.400000 +85 431 0.400000 +85 462 0.400000 +85 488 0.400000 +85 529 0.400000 +85 618 0.400000 +85 679 0.400000 +85 718 0.400000 +86 128 0.400000 +86 153 0.400000 +86 181 0.400000 +86 189 0.400000 +86 264 0.400000 +86 289 0.400000 +86 387 0.400000 +86 414 0.400000 +86 579 0.400000 +86 593 0.400000 +86 665 0.400000 +87 24 0.400000 +87 44 0.400000 +87 45 0.400000 +87 47 0.400000 +87 66 0.400000 +87 80 0.400000 +87 153 0.400000 +87 328 0.400000 +87 329 0.400000 +87 349 0.400000 +87 355 0.400000 +87 359 0.400000 +87 465 0.400000 +87 471 0.400000 +87 483 0.400000 +87 562 0.400000 +87 565 0.400000 +87 567 0.400000 +87 641 0.400000 +88 53 0.400000 +88 70 0.400000 +88 80 0.400000 +88 201 0.400000 +88 210 0.400000 +88 249 0.400000 +88 342 0.400000 +88 345 0.400000 +88 389 0.400000 +88 487 0.400000 +88 528 0.400000 +88 566 0.400000 +88 763 0.400000 +88 764 0.400000 +89 22 0.400000 +89 45 0.400000 +89 59 0.400000 +89 70 0.400000 +89 77 0.400000 +89 121 0.400000 +89 152 0.400000 +89 183 0.400000 +89 215 0.400000 +89 229 0.400000 +89 293 0.400000 +89 341 0.400000 +89 439 0.400000 +89 475 0.400000 +89 503 0.400000 +89 579 0.400000 +89 588 0.400000 +89 654 0.400000 +89 660 0.400000 +89 736 0.400000 +89 760 0.400000 +89 775 0.400000 +89 790 0.400000 +90 56 0.400000 +90 203 0.400000 +90 258 0.400000 +90 338 0.400000 +90 358 0.400000 +90 429 0.400000 +90 462 0.400000 +90 509 0.400000 +90 577 0.400000 +90 587 0.400000 +90 637 0.400000 +90 719 0.400000 +90 744 0.400000 +91 45 0.400000 +91 80 0.400000 +91 83 0.400000 +91 95 0.400000 +91 111 0.400000 +91 135 0.400000 +91 290 0.400000 +91 296 0.400000 +91 328 0.400000 +91 363 0.400000 +91 400 0.400000 +91 458 0.400000 +91 541 0.400000 +91 554 0.400000 +91 572 0.400000 +91 575 0.400000 +91 590 0.400000 +91 711 0.400000 +91 787 0.400000 +92 17 0.400000 +92 27 0.400000 +92 102 0.400000 +92 118 0.400000 +92 168 0.400000 +92 197 0.400000 +92 253 0.400000 +92 299 0.400000 +92 325 0.400000 +92 465 0.400000 +92 539 0.400000 +92 633 0.400000 +92 657 0.400000 +92 731 0.400000 +92 734 0.400000 +92 744 0.400000 +92 782 0.400000 +93 29 0.400000 +93 124 0.400000 +93 172 0.400000 +93 185 0.400000 +93 224 0.400000 +93 296 0.400000 +93 394 0.400000 +93 401 0.400000 +93 429 0.400000 +93 478 0.400000 +93 515 0.400000 +93 607 0.400000 +93 619 0.400000 +93 691 0.400000 +93 715 0.400000 +93 725 0.400000 +93 762 0.400000 +93 772 0.400000 +94 29 0.400000 +94 60 0.400000 +94 183 0.400000 +94 225 0.400000 +94 244 0.400000 +94 346 0.400000 +94 414 0.400000 +94 512 0.400000 +94 546 0.400000 +94 588 0.400000 +94 677 0.400000 +94 692 0.400000 +94 709 0.400000 +94 731 0.400000 +94 762 0.400000 +94 765 0.400000 +94 793 0.400000 +95 8 0.400000 +95 13 0.400000 +95 15 0.400000 +95 122 0.400000 +95 161 0.400000 +95 380 0.400000 +95 402 0.400000 +95 479 0.400000 +95 535 0.400000 +95 766 0.400000 +96 16 0.400000 +96 28 0.400000 +96 72 0.400000 +96 94 0.400000 +96 262 0.400000 +96 266 0.400000 +96 301 0.400000 +96 314 0.400000 +96 379 0.400000 +96 397 0.400000 +96 417 0.400000 +96 433 0.400000 +96 464 0.400000 +96 661 0.400000 +96 663 0.400000 +96 767 0.400000 +96 778 0.400000 +97 20 0.400000 +97 49 0.400000 +97 166 0.400000 +97 238 0.400000 +97 274 0.400000 +97 316 0.400000 +97 335 0.400000 +97 370 0.400000 +97 371 0.400000 +97 420 0.400000 +97 434 0.400000 +97 485 0.400000 +97 493 0.400000 +97 527 0.400000 +97 552 0.400000 +97 573 0.400000 +97 575 0.400000 +97 708 0.400000 +98 11 0.400000 +98 61 0.400000 +98 122 0.400000 +98 229 0.400000 +98 259 0.400000 +98 260 0.400000 +98 271 0.400000 +98 289 0.400000 +98 514 0.400000 +98 657 0.400000 +98 778 0.400000 +99 51 0.400000 +99 242 0.400000 +99 333 0.400000 +99 381 0.400000 +99 392 0.400000 +99 478 0.400000 +99 513 0.400000 +99 544 0.400000 +99 566 0.400000 +99 574 0.400000 +99 597 0.400000 +99 652 0.400000 +99 660 0.400000 +99 680 0.400000 +99 743 0.400000 +100 69 0.400000 +100 144 0.400000 +100 187 0.400000 +100 214 0.400000 +100 246 0.400000 +100 257 0.400000 +100 312 0.400000 +100 352 0.400000 +100 455 0.400000 +100 479 0.400000 +100 505 0.400000 +100 578 0.400000 +100 581 0.400000 +100 623 0.400000 +100 695 0.400000 +100 710 0.400000 +100 795 0.400000 +101 34 0.400000 +101 83 0.400000 +101 192 0.400000 +101 211 0.400000 +101 247 0.400000 +101 598 0.400000 +101 757 0.400000 +101 763 0.400000 +101 786 0.400000 +102 45 0.400000 +102 66 0.400000 +102 74 0.400000 +102 190 0.400000 +102 239 0.400000 +102 286 0.400000 +102 309 0.400000 +102 321 0.400000 +102 324 0.400000 +102 349 0.400000 +102 394 0.400000 +102 414 0.400000 +102 474 0.400000 +102 650 0.400000 +103 1 0.400000 +103 38 0.400000 +103 48 0.400000 +103 89 0.400000 +103 124 0.400000 +103 140 0.400000 +103 148 0.400000 +103 186 0.400000 +103 206 0.400000 +103 247 0.400000 +103 292 0.400000 +103 311 0.400000 +103 313 0.400000 +103 330 0.400000 +103 430 0.400000 +103 468 0.400000 +103 489 0.400000 +103 490 0.400000 +103 497 0.400000 +103 635 0.400000 +103 706 0.400000 +103 727 0.400000 +104 25 0.400000 +104 40 0.400000 +104 63 0.400000 +104 145 0.400000 +104 183 0.400000 +104 227 0.400000 +104 251 0.400000 +104 386 0.400000 +104 391 0.400000 +104 428 0.400000 +104 502 0.400000 +104 572 0.400000 +104 587 0.400000 +104 657 0.400000 +104 687 0.400000 +104 730 0.400000 +104 776 0.400000 +105 94 0.400000 +105 95 0.400000 +105 138 0.400000 +105 163 0.400000 +105 170 0.400000 +105 224 0.400000 +105 231 0.400000 +105 297 0.400000 +105 298 0.400000 +105 339 0.400000 +105 358 0.400000 +105 414 0.400000 +105 471 0.400000 +105 481 0.400000 +105 513 0.400000 +105 617 0.400000 +105 738 0.400000 +105 747 0.400000 +105 781 0.400000 +106 8 0.400000 +106 66 0.400000 +106 91 0.400000 +106 102 0.400000 +106 138 0.400000 +106 167 0.400000 +106 257 0.400000 +106 321 0.400000 +106 341 0.400000 +106 353 0.400000 +106 491 0.400000 +106 507 0.400000 +106 513 0.400000 +106 515 0.400000 +106 623 0.400000 +106 641 0.400000 +106 648 0.400000 +106 652 0.400000 +106 690 0.400000 +106 736 0.400000 +107 53 0.400000 +107 113 0.400000 +107 116 0.400000 +107 173 0.400000 +107 235 0.400000 +107 268 0.400000 +107 323 0.400000 +107 476 0.400000 +107 538 0.400000 +107 576 0.400000 +107 588 0.400000 +107 607 0.400000 +107 617 0.400000 +107 694 0.400000 +107 738 0.400000 +108 11 0.400000 +108 30 0.400000 +108 48 0.400000 +108 105 0.400000 +108 120 0.400000 +108 130 0.400000 +108 145 0.400000 +108 193 0.400000 +108 293 0.400000 +108 590 0.400000 +108 600 0.400000 +108 641 0.400000 +108 643 0.400000 +108 689 0.400000 +108 780 0.400000 +108 782 0.400000 +108 793 0.400000 +109 23 0.400000 +109 89 0.400000 +109 124 0.400000 +109 174 0.400000 +109 224 0.400000 +109 312 0.400000 +109 319 0.400000 +109 320 0.400000 +109 340 0.400000 +109 380 0.400000 +109 519 0.400000 +109 531 0.400000 +109 536 0.400000 +109 537 0.400000 +109 620 0.400000 +109 658 0.400000 +109 694 0.400000 +110 23 0.400000 +110 81 0.400000 +110 130 0.400000 +110 139 0.400000 +110 151 0.400000 +110 175 0.400000 +110 305 0.400000 +110 369 0.400000 +110 385 0.400000 +110 392 0.400000 +110 457 0.400000 +110 469 0.400000 +110 496 0.400000 +110 499 0.400000 +110 604 0.400000 +110 639 0.400000 +110 660 0.400000 +110 662 0.400000 +110 688 0.400000 +110 722 0.400000 +110 740 0.400000 +111 24 0.400000 +111 27 0.400000 +111 31 0.400000 +111 84 0.400000 +111 128 0.400000 +111 156 0.400000 +111 174 0.400000 +111 268 0.400000 +111 274 0.400000 +111 294 0.400000 +111 324 0.400000 +111 414 0.400000 +111 465 0.400000 +111 481 0.400000 +111 564 0.400000 +111 771 0.400000 +112 3 0.400000 +112 17 0.400000 +112 38 0.400000 +112 46 0.400000 +112 65 0.400000 +112 80 0.400000 +112 99 0.400000 +112 117 0.400000 +112 128 0.400000 +112 166 0.400000 +112 212 0.400000 +112 239 0.400000 +112 321 0.400000 +112 415 0.400000 +112 453 0.400000 +112 491 0.400000 +112 552 0.400000 +112 616 0.400000 +112 729 0.400000 +112 793 0.400000 +113 106 0.400000 +113 110 0.400000 +113 169 0.400000 +113 179 0.400000 +113 294 0.400000 +113 298 0.400000 +113 488 0.400000 +113 531 0.400000 +113 566 0.400000 +113 618 0.400000 +113 627 0.400000 +113 637 0.400000 +113 699 0.400000 +113 741 0.400000 +113 749 0.400000 +114 67 0.400000 +114 117 0.400000 +114 144 0.400000 +114 183 0.400000 +114 255 0.400000 +114 364 0.400000 +114 444 0.400000 +114 503 0.400000 +114 510 0.400000 +114 551 0.400000 +114 584 0.400000 +114 586 0.400000 +114 600 0.400000 +114 652 0.400000 +114 657 0.400000 +115 4 0.400000 +115 20 0.400000 +115 78 0.400000 +115 408 0.400000 +115 434 0.400000 +115 438 0.400000 +115 476 0.400000 +115 529 0.400000 +115 559 0.400000 +115 607 0.400000 +115 631 0.400000 +115 659 0.400000 +115 720 0.400000 +115 730 0.400000 +115 750 0.400000 +116 114 0.400000 +116 191 0.400000 +116 303 0.400000 +116 352 0.400000 +116 364 0.400000 +116 381 0.400000 +116 423 0.400000 +116 642 0.400000 +117 66 0.400000 +117 89 0.400000 +117 114 0.400000 +117 126 0.400000 +117 264 0.400000 +117 293 0.400000 +117 344 0.400000 +117 458 0.400000 +117 539 0.400000 +117 574 0.400000 +117 614 0.400000 +117 621 0.400000 +117 675 0.400000 +117 705 0.400000 +118 33 0.400000 +118 43 0.400000 +118 152 0.400000 +118 161 0.400000 +118 223 0.400000 +118 236 0.400000 +118 363 0.400000 +118 394 0.400000 +118 405 0.400000 +118 433 0.400000 +118 468 0.400000 +118 571 0.400000 +118 643 0.400000 +118 771 0.400000 +119 7 0.400000 +119 84 0.400000 +119 112 0.400000 +119 155 0.400000 +119 188 0.400000 +119 270 0.400000 +119 310 0.400000 +119 377 0.400000 +119 445 0.400000 +119 543 0.400000 +119 622 0.400000 +119 648 0.400000 +119 696 0.400000 +119 737 0.400000 +120 52 0.400000 +120 105 0.400000 +120 107 0.400000 +120 170 0.400000 +120 339 0.400000 +120 381 0.400000 +120 426 0.400000 +120 447 0.400000 +120 530 0.400000 +120 562 0.400000 +120 565 0.400000 +120 586 0.400000 +120 599 0.400000 +120 726 0.400000 +120 733 0.400000 +120 795 0.400000 +121 19 0.400000 +121 131 0.400000 +121 142 0.400000 +121 160 0.400000 +121 303 0.400000 +121 439 0.400000 +121 559 0.400000 +121 590 0.400000 +121 616 0.400000 +121 636 0.400000 +121 678 0.400000 +121 684 0.400000 +121 707 0.400000 +122 72 0.400000 +122 121 0.400000 +122 137 0.400000 +122 142 0.400000 +122 189 0.400000 +122 277 0.400000 +122 283 0.400000 +122 285 0.400000 +122 383 0.400000 +122 391 0.400000 +122 400 0.400000 +122 418 0.400000 +122 425 0.400000 +122 476 0.400000 +122 479 0.400000 +122 513 0.400000 +122 524 0.400000 +122 537 0.400000 +122 677 0.400000 +122 695 0.400000 +122 699 0.400000 +122 722 0.400000 +122 780 0.400000 +123 52 0.400000 +123 67 0.400000 +123 71 0.400000 +123 75 0.400000 +123 158 0.400000 +123 204 0.400000 +123 379 0.400000 +123 542 0.400000 +123 555 0.400000 +123 561 0.400000 +123 610 0.400000 +123 615 0.400000 +123 650 0.400000 +123 721 0.400000 +123 735 0.400000 +123 761 0.400000 +124 8 0.400000 +124 59 0.400000 +124 75 0.400000 +124 105 0.400000 +124 113 0.400000 +124 130 0.400000 +124 146 0.400000 +124 161 0.400000 +124 165 0.400000 +124 179 0.400000 +124 366 0.400000 +124 378 0.400000 +124 398 0.400000 +124 402 0.400000 +124 419 0.400000 +124 455 0.400000 +124 483 0.400000 +124 514 0.400000 +124 543 0.400000 +124 597 0.400000 +124 652 0.400000 +125 58 0.400000 +125 87 0.400000 +125 122 0.400000 +125 128 0.400000 +125 158 0.400000 +125 211 0.400000 +125 247 0.400000 +125 321 0.400000 +125 324 0.400000 +125 353 0.400000 +125 373 0.400000 +125 452 0.400000 +125 591 0.400000 +125 631 0.400000 +125 640 0.400000 +125 770 0.400000 +126 17 0.400000 +126 101 0.400000 +126 120 0.400000 +126 265 0.400000 +126 298 0.400000 +126 356 0.400000 +126 433 0.400000 +126 458 0.400000 +126 717 0.400000 +126 772 0.400000 +126 794 0.400000 +126 799 0.400000 +127 54 0.400000 +127 71 0.400000 +127 87 0.400000 +127 104 0.400000 +127 210 0.400000 +127 240 0.400000 +127 242 0.400000 +127 269 0.400000 +127 324 0.400000 +127 330 0.400000 +127 343 0.400000 +127 385 0.400000 +127 418 0.400000 +127 433 0.400000 +127 448 0.400000 +127 558 0.400000 +127 641 0.400000 +127 696 0.400000 +127 701 0.400000 +127 714 0.400000 +127 778 0.400000 +128 99 0.400000 +128 145 0.400000 +128 160 0.400000 +128 199 0.400000 +128 258 0.400000 +128 421 0.400000 +128 448 0.400000 +128 466 0.400000 +128 481 0.400000 +128 536 0.400000 +128 576 0.400000 +128 606 0.400000 +128 639 0.400000 +128 679 0.400000 +129 62 0.400000 +129 73 0.400000 +129 93 0.400000 +129 224 0.400000 +129 247 0.400000 +129 280 0.400000 +129 342 0.400000 +129 351 0.400000 +129 354 0.400000 +129 454 0.400000 +129 467 0.400000 +129 470 0.400000 +129 558 0.400000 +129 652 0.400000 +129 771 0.400000 +129 775 0.400000 +129 799 0.400000 +130 18 0.400000 +130 71 0.400000 +130 128 0.400000 +130 130 0.400000 +130 216 0.400000 +130 249 0.400000 +130 351 0.400000 +130 368 0.400000 +130 374 0.400000 +130 380 0.400000 +130 383 0.400000 +130 432 0.400000 +130 488 0.400000 +130 496 0.400000 +130 563 0.400000 +130 598 0.400000 +130 605 0.400000 +130 637 0.400000 +130 706 0.400000 +131 29 0.400000 +131 65 0.400000 +131 181 0.400000 +131 211 0.400000 +131 224 0.400000 +131 352 0.400000 +131 438 0.400000 +131 599 0.400000 +131 619 0.400000 +131 755 0.400000 +131 774 0.400000 +132 28 0.400000 +132 250 0.400000 +132 278 0.400000 +132 293 0.400000 +132 331 0.400000 +132 338 0.400000 +132 377 0.400000 +132 429 0.400000 +132 489 0.400000 +132 493 0.400000 +132 501 0.400000 +132 511 0.400000 +132 566 0.400000 +132 626 0.400000 +132 793 0.400000 +133 98 0.400000 +133 124 0.400000 +133 331 0.400000 +133 431 0.400000 +133 453 0.400000 +133 464 0.400000 +133 523 0.400000 +133 569 0.400000 +133 715 0.400000 +133 731 0.400000 +134 56 0.400000 +134 71 0.400000 +134 79 0.400000 +134 210 0.400000 +134 329 0.400000 +134 346 0.400000 +134 407 0.400000 +134 593 0.400000 +134 650 0.400000 +134 736 0.400000 +134 740 0.400000 +134 768 0.400000 +135 11 0.400000 +135 65 0.400000 +135 71 0.400000 +135 75 0.400000 +135 155 0.400000 +135 157 0.400000 +135 243 0.400000 +135 269 0.400000 +135 335 0.400000 +135 356 0.400000 +135 360 0.400000 +135 361 0.400000 +135 368 0.400000 +135 377 0.400000 +135 496 0.400000 +135 518 0.400000 +135 605 0.400000 +135 695 0.400000 +135 713 0.400000 +135 741 0.400000 +136 23 0.400000 +136 60 0.400000 +136 67 0.400000 +136 179 0.400000 +136 218 0.400000 +136 261 0.400000 +136 293 0.400000 +136 343 0.400000 +136 364 0.400000 +136 434 0.400000 +136 445 0.400000 +136 450 0.400000 +136 451 0.400000 +136 494 0.400000 +136 577 0.400000 +136 649 0.400000 +136 769 0.400000 +137 19 0.400000 +137 113 0.400000 +137 276 0.400000 +137 360 0.400000 +137 362 0.400000 +137 387 0.400000 +137 404 0.400000 +137 447 0.400000 +137 566 0.400000 +137 642 0.400000 +137 651 0.400000 +137 663 0.400000 +137 684 0.400000 +138 189 0.400000 +138 192 0.400000 +138 266 0.400000 +138 275 0.400000 +138 345 0.400000 +138 394 0.400000 +138 418 0.400000 +138 460 0.400000 +138 509 0.400000 +138 551 0.400000 +138 582 0.400000 +138 732 0.400000 +138 750 0.400000 +138 776 0.400000 +138 800 0.400000 +139 15 0.400000 +139 59 0.400000 +139 111 0.400000 +139 273 0.400000 +139 279 0.400000 +139 354 0.400000 +139 364 0.400000 +139 383 0.400000 +139 523 0.400000 +139 728 0.400000 +139 755 0.400000 +140 115 0.400000 +140 124 0.400000 +140 129 0.400000 +140 131 0.400000 +140 167 0.400000 +140 202 0.400000 +140 241 0.400000 +140 253 0.400000 +140 438 0.400000 +140 441 0.400000 +140 519 0.400000 +140 563 0.400000 +140 611 0.400000 +140 619 0.400000 +140 784 0.400000 +140 788 0.400000 +141 12 0.400000 +141 16 0.400000 +141 18 0.400000 +141 80 0.400000 +141 133 0.400000 +141 150 0.400000 +141 194 0.400000 +141 217 0.400000 +141 224 0.400000 +141 293 0.400000 +141 356 0.400000 +141 381 0.400000 +141 402 0.400000 +141 431 0.400000 +141 435 0.400000 +141 452 0.400000 +141 467 0.400000 +141 567 0.400000 +141 600 0.400000 +141 662 0.400000 +141 731 0.400000 +141 741 0.400000 +141 772 0.400000 +142 53 0.400000 +142 105 0.400000 +142 113 0.400000 +142 186 0.400000 +142 232 0.400000 +142 239 0.400000 +142 267 0.400000 +142 279 0.400000 +142 317 0.400000 +142 331 0.400000 +142 333 0.400000 +142 348 0.400000 +142 364 0.400000 +142 388 0.400000 +142 401 0.400000 +142 496 0.400000 +142 500 0.400000 +142 594 0.400000 +142 610 0.400000 +142 676 0.400000 +142 727 0.400000 +142 743 0.400000 +142 754 0.400000 +142 800 0.400000 +143 57 0.400000 +143 96 0.400000 +143 100 0.400000 +143 101 0.400000 +143 131 0.400000 +143 153 0.400000 +143 214 0.400000 +143 227 0.400000 +143 233 0.400000 +143 356 0.400000 +143 397 0.400000 +143 448 0.400000 +143 466 0.400000 +143 503 0.400000 +143 646 0.400000 +143 756 0.400000 +143 772 0.400000 +143 783 0.400000 +143 788 0.400000 +144 111 0.400000 +144 181 0.400000 +144 199 0.400000 +144 219 0.400000 +144 304 0.400000 +144 388 0.400000 +144 400 0.400000 +144 446 0.400000 +144 449 0.400000 +144 450 0.400000 +144 523 0.400000 +144 532 0.400000 +144 604 0.400000 +144 661 0.400000 +144 731 0.400000 +144 748 0.400000 +144 757 0.400000 +144 761 0.400000 +145 83 0.400000 +145 176 0.400000 +145 190 0.400000 +145 210 0.400000 +145 239 0.400000 +145 262 0.400000 +145 287 0.400000 +145 315 0.400000 +145 324 0.400000 +145 332 0.400000 +145 341 0.400000 +145 391 0.400000 +145 451 0.400000 +145 454 0.400000 +145 563 0.400000 +145 601 0.400000 +145 625 0.400000 +145 660 0.400000 +145 684 0.400000 +145 686 0.400000 +145 757 0.400000 +145 794 0.400000 +145 795 0.400000 +146 143 0.400000 +146 152 0.400000 +146 271 0.400000 +146 277 0.400000 +146 282 0.400000 +146 382 0.400000 +146 412 0.400000 +146 473 0.400000 +146 493 0.400000 +146 522 0.400000 +146 639 0.400000 +146 674 0.400000 +146 709 0.400000 +146 793 0.400000 +147 20 0.400000 +147 71 0.400000 +147 163 0.400000 +147 176 0.400000 +147 211 0.400000 +147 262 0.400000 +147 322 0.400000 +147 324 0.400000 +147 345 0.400000 +147 348 0.400000 +147 388 0.400000 +147 392 0.400000 +147 538 0.400000 +147 550 0.400000 +147 577 0.400000 +147 661 0.400000 +147 669 0.400000 +147 770 0.400000 +147 778 0.400000 +148 81 0.400000 +148 85 0.400000 +148 124 0.400000 +148 133 0.400000 +148 224 0.400000 +148 296 0.400000 +148 333 0.400000 +148 520 0.400000 +148 553 0.400000 +149 36 0.400000 +149 38 0.400000 +149 53 0.400000 +149 79 0.400000 +149 150 0.400000 +149 202 0.400000 +149 216 0.400000 +149 247 0.400000 +149 274 0.400000 +149 418 0.400000 +149 444 0.400000 +149 489 0.400000 +149 510 0.400000 +149 529 0.400000 +149 560 0.400000 +149 598 0.400000 +149 606 0.400000 +149 627 0.400000 +149 636 0.400000 +149 738 0.400000 +149 799 0.400000 +150 67 0.400000 +150 74 0.400000 +150 96 0.400000 +150 97 0.400000 +150 140 0.400000 +150 400 0.400000 +150 537 0.400000 +150 657 0.400000 +150 661 0.400000 +150 789 0.400000 +151 28 0.400000 +151 138 0.400000 +151 164 0.400000 +151 226 0.400000 +151 270 0.400000 +151 276 0.400000 +151 313 0.400000 +151 316 0.400000 +151 336 0.400000 +151 381 0.400000 +151 421 0.400000 +151 532 0.400000 +151 539 0.400000 +151 580 0.400000 +151 608 0.400000 +151 622 0.400000 +151 666 0.400000 +151 721 0.400000 +152 29 0.400000 +152 73 0.400000 +152 111 0.400000 +152 137 0.400000 +152 163 0.400000 +152 242 0.400000 +152 247 0.400000 +152 363 0.400000 +152 391 0.400000 +152 392 0.400000 +152 403 0.400000 +152 469 0.400000 +152 620 0.400000 +152 647 0.400000 +152 717 0.400000 +152 719 0.400000 +152 734 0.400000 +152 778 0.400000 +152 782 0.400000 +153 78 0.400000 +153 166 0.400000 +153 207 0.400000 +153 228 0.400000 +153 269 0.400000 +153 363 0.400000 +153 478 0.400000 +153 549 0.400000 +153 588 0.400000 +153 623 0.400000 +153 628 0.400000 +153 711 0.400000 +153 767 0.400000 +153 769 0.400000 +154 155 0.400000 +154 240 0.400000 +154 244 0.400000 +154 297 0.400000 +154 328 0.400000 +154 360 0.400000 +154 399 0.400000 +154 443 0.400000 +154 494 0.400000 +154 506 0.400000 +154 751 0.400000 +155 74 0.400000 +155 94 0.400000 +155 136 0.400000 +155 182 0.400000 +155 198 0.400000 +155 208 0.400000 +155 224 0.400000 +155 232 0.400000 +155 239 0.400000 +155 280 0.400000 +155 338 0.400000 +155 371 0.400000 +155 633 0.400000 +155 636 0.400000 +155 680 0.400000 +155 683 0.400000 +155 729 0.400000 +155 755 0.400000 +155 775 0.400000 +156 21 0.400000 +156 63 0.400000 +156 65 0.400000 +156 68 0.400000 +156 71 0.400000 +156 72 0.400000 +156 84 0.400000 +156 92 0.400000 +156 180 0.400000 +156 192 0.400000 +156 208 0.400000 +156 220 0.400000 +156 224 0.400000 +156 335 0.400000 +156 403 0.400000 +156 432 0.400000 +156 521 0.400000 +156 578 0.400000 +156 591 0.400000 +156 601 0.400000 +156 658 0.400000 +156 726 0.400000 +156 770 0.400000 +156 797 0.400000 +157 93 0.400000 +157 186 0.400000 +157 286 0.400000 +157 360 0.400000 +157 452 0.400000 +157 463 0.400000 +157 469 0.400000 +157 474 0.400000 +157 537 0.400000 +157 538 0.400000 +157 761 0.400000 +158 21 0.400000 +158 67 0.400000 +158 97 0.400000 +158 126 0.400000 +158 134 0.400000 +158 259 0.400000 +158 329 0.400000 +158 356 0.400000 +158 427 0.400000 +158 453 0.400000 +158 487 0.400000 +158 602 0.400000 +158 612 0.400000 +158 629 0.400000 +158 764 0.400000 +159 2 0.400000 +159 110 0.400000 +159 228 0.400000 +159 299 0.400000 +159 390 0.400000 +159 403 0.400000 +159 420 0.400000 +159 451 0.400000 +159 485 0.400000 +159 577 0.400000 +159 615 0.400000 +159 665 0.400000 +159 673 0.400000 +159 746 0.400000 +160 15 0.400000 +160 20 0.400000 +160 27 0.400000 +160 32 0.400000 +160 36 0.400000 +160 41 0.400000 +160 62 0.400000 +160 187 0.400000 +160 307 0.400000 +160 358 0.400000 +160 488 0.400000 +160 503 0.400000 +160 543 0.400000 +160 564 0.400000 +160 580 0.400000 +160 674 0.400000 +160 688 0.400000 +160 738 0.400000 +160 753 0.400000 +161 11 0.400000 +161 42 0.400000 +161 281 0.400000 +161 282 0.400000 +161 428 0.400000 +161 490 0.400000 +161 504 0.400000 +161 532 0.400000 +161 535 0.400000 +161 557 0.400000 +161 644 0.400000 +161 652 0.400000 +161 676 0.400000 +161 689 0.400000 +161 695 0.400000 +161 749 0.400000 +162 2 0.400000 +162 5 0.400000 +162 50 0.400000 +162 74 0.400000 +162 76 0.400000 +162 102 0.400000 +162 105 0.400000 +162 112 0.400000 +162 156 0.400000 +162 216 0.400000 +162 232 0.400000 +162 300 0.400000 +162 305 0.400000 +162 306 0.400000 +162 360 0.400000 +162 402 0.400000 +162 405 0.400000 +162 431 0.400000 +162 437 0.400000 +162 455 0.400000 +162 539 0.400000 +162 580 0.400000 +163 59 0.400000 +163 170 0.400000 +163 318 0.400000 +163 349 0.400000 +163 366 0.400000 +163 375 0.400000 +163 432 0.400000 +163 501 0.400000 +163 511 0.400000 +163 553 0.400000 +163 564 0.400000 +163 567 0.400000 +163 664 0.400000 +163 673 0.400000 +163 682 0.400000 +163 712 0.400000 +163 716 0.400000 +163 729 0.400000 +163 740 0.400000 +164 126 0.400000 +164 263 0.400000 +164 404 0.400000 +164 483 0.400000 +164 489 0.400000 +164 507 0.400000 +164 529 0.400000 +164 550 0.400000 +164 567 0.400000 +164 606 0.400000 +164 655 0.400000 +164 663 0.400000 +164 679 0.400000 +164 733 0.400000 +165 13 0.400000 +165 45 0.400000 +165 60 0.400000 +165 156 0.400000 +165 177 0.400000 +165 292 0.400000 +165 297 0.400000 +165 349 0.400000 +165 385 0.400000 +165 408 0.400000 +165 454 0.400000 +165 532 0.400000 +165 628 0.400000 +165 629 0.400000 +165 647 0.400000 +165 753 0.400000 +166 10 0.400000 +166 15 0.400000 +166 65 0.400000 +166 147 0.400000 +166 152 0.400000 +166 168 0.400000 +166 230 0.400000 +166 272 0.400000 +166 343 0.400000 +166 412 0.400000 +166 514 0.400000 +166 606 0.400000 +166 681 0.400000 +166 751 0.400000 +166 754 0.400000 +167 193 0.400000 +167 225 0.400000 +167 273 0.400000 +167 286 0.400000 +167 409 0.400000 +167 427 0.400000 +167 458 0.400000 +167 473 0.400000 +167 484 0.400000 +167 489 0.400000 +167 515 0.400000 +167 615 0.400000 +167 689 0.400000 +167 725 0.400000 +168 69 0.400000 +168 82 0.400000 +168 139 0.400000 +168 181 0.400000 +168 356 0.400000 +168 406 0.400000 +168 467 0.400000 +168 481 0.400000 +168 486 0.400000 +168 539 0.400000 +168 558 0.400000 +168 565 0.400000 +168 602 0.400000 +168 606 0.400000 +168 618 0.400000 +168 645 0.400000 +168 648 0.400000 +168 706 0.400000 +168 730 0.400000 +168 782 0.400000 +169 174 0.400000 +169 224 0.400000 +169 330 0.400000 +169 347 0.400000 +169 380 0.400000 +169 408 0.400000 +169 415 0.400000 +169 424 0.400000 +169 427 0.400000 +169 438 0.400000 +169 503 0.400000 +169 525 0.400000 +169 548 0.400000 +169 581 0.400000 +169 588 0.400000 +169 590 0.400000 +169 699 0.400000 +169 725 0.400000 +169 752 0.400000 +169 783 0.400000 +170 17 0.400000 +170 68 0.400000 +170 120 0.400000 +170 135 0.400000 +170 146 0.400000 +170 162 0.400000 +170 207 0.400000 +170 262 0.400000 +170 295 0.400000 +170 342 0.400000 +170 374 0.400000 +170 384 0.400000 +170 388 0.400000 +170 439 0.400000 +170 453 0.400000 +170 506 0.400000 +170 573 0.400000 +170 603 0.400000 +170 605 0.400000 +170 646 0.400000 +170 667 0.400000 +170 682 0.400000 +170 689 0.400000 +170 742 0.400000 +170 744 0.400000 +171 76 0.400000 +171 225 0.400000 +171 232 0.400000 +171 328 0.400000 +171 394 0.400000 +171 476 0.400000 +171 524 0.400000 +171 556 0.400000 +171 605 0.400000 +171 630 0.400000 +171 664 0.400000 +171 702 0.400000 +171 706 0.400000 +171 738 0.400000 +171 763 0.400000 +172 35 0.400000 +172 95 0.400000 +172 139 0.400000 +172 217 0.400000 +172 372 0.400000 +172 442 0.400000 +172 484 0.400000 +172 493 0.400000 +172 501 0.400000 +172 694 0.400000 +172 722 0.400000 +172 733 0.400000 +173 12 0.400000 +173 39 0.400000 +173 74 0.400000 +173 81 0.400000 +173 88 0.400000 +173 97 0.400000 +173 124 0.400000 +173 132 0.400000 +173 178 0.400000 +173 188 0.400000 +173 270 0.400000 +173 277 0.400000 +173 300 0.400000 +173 386 0.400000 +173 420 0.400000 +173 627 0.400000 +173 786 0.400000 +174 60 0.400000 +174 128 0.400000 +174 132 0.400000 +174 133 0.400000 +174 186 0.400000 +174 189 0.400000 +174 196 0.400000 +174 256 0.400000 +174 486 0.400000 +174 522 0.400000 +174 526 0.400000 +174 562 0.400000 +174 621 0.400000 +174 709 0.400000 +174 721 0.400000 +174 789 0.400000 +175 49 0.400000 +175 165 0.400000 +175 179 0.400000 +175 211 0.400000 +175 215 0.400000 +175 330 0.400000 +175 331 0.400000 +175 367 0.400000 +175 416 0.400000 +175 447 0.400000 +175 450 0.400000 +175 493 0.400000 +175 558 0.400000 +175 706 0.400000 +175 782 0.400000 +175 786 0.400000 +176 105 0.400000 +176 166 0.400000 +176 194 0.400000 +176 278 0.400000 +176 280 0.400000 +176 442 0.400000 +176 461 0.400000 +176 570 0.400000 +176 575 0.400000 +176 656 0.400000 +176 735 0.400000 +176 762 0.400000 +176 772 0.400000 +176 789 0.400000 +177 10 0.400000 +177 31 0.400000 +177 169 0.400000 +177 234 0.400000 +177 272 0.400000 +177 282 0.400000 +177 300 0.400000 +177 403 0.400000 +177 482 0.400000 +177 571 0.400000 +177 689 0.400000 +177 732 0.400000 +177 747 0.400000 +177 783 0.400000 +178 7 0.400000 +178 60 0.400000 +178 111 0.400000 +178 128 0.400000 +178 213 0.400000 +178 337 0.400000 +178 374 0.400000 +178 415 0.400000 +178 461 0.400000 +178 538 0.400000 +178 551 0.400000 +178 596 0.400000 +178 614 0.400000 +178 626 0.400000 +178 632 0.400000 +178 646 0.400000 +178 676 0.400000 +178 768 0.400000 +179 24 0.400000 +179 65 0.400000 +179 112 0.400000 +179 274 0.400000 +179 291 0.400000 +179 337 0.400000 +179 348 0.400000 +179 365 0.400000 +179 392 0.400000 +179 405 0.400000 +179 423 0.400000 +179 509 0.400000 +179 680 0.400000 +179 685 0.400000 +179 703 0.400000 +179 704 0.400000 +179 707 0.400000 +179 712 0.400000 +179 717 0.400000 +179 722 0.400000 +180 21 0.400000 +180 191 0.400000 +180 214 0.400000 +180 264 0.400000 +180 304 0.400000 +180 353 0.400000 +180 407 0.400000 +180 579 0.400000 +180 582 0.400000 +180 651 0.400000 +180 652 0.400000 +180 684 0.400000 +180 693 0.400000 +180 734 0.400000 +181 7 0.400000 +181 31 0.400000 +181 161 0.400000 +181 204 0.400000 +181 211 0.400000 +181 216 0.400000 +181 260 0.400000 +181 301 0.400000 +181 371 0.400000 +181 436 0.400000 +181 515 0.400000 +181 541 0.400000 +181 580 0.400000 +181 607 0.400000 +182 20 0.400000 +182 24 0.400000 +182 37 0.400000 +182 101 0.400000 +182 124 0.400000 +182 146 0.400000 +182 150 0.400000 +182 225 0.400000 +182 244 0.400000 +182 289 0.400000 +182 378 0.400000 +182 460 0.400000 +182 519 0.400000 +182 528 0.400000 +182 619 0.400000 +182 623 0.400000 +182 663 0.400000 +182 694 0.400000 +182 729 0.400000 +182 789 0.400000 +183 9 0.400000 +183 40 0.400000 +183 112 0.400000 +183 147 0.400000 +183 443 0.400000 +183 454 0.400000 +183 566 0.400000 +183 589 0.400000 +183 641 0.400000 +183 702 0.400000 +183 706 0.400000 +183 719 0.400000 +183 730 0.400000 +183 741 0.400000 +184 44 0.400000 +184 97 0.400000 +184 105 0.400000 +184 138 0.400000 +184 159 0.400000 +184 206 0.400000 +184 265 0.400000 +184 338 0.400000 +184 357 0.400000 +184 375 0.400000 +184 412 0.400000 +184 480 0.400000 +184 654 0.400000 +184 699 0.400000 +184 723 0.400000 +184 766 0.400000 +185 306 0.400000 +185 350 0.400000 +185 374 0.400000 +185 493 0.400000 +185 657 0.400000 +185 689 0.400000 +185 753 0.400000 +186 63 0.400000 +186 127 0.400000 +186 293 0.400000 +186 301 0.400000 +186 449 0.400000 +186 462 0.400000 +186 537 0.400000 +186 613 0.400000 +186 616 0.400000 +186 621 0.400000 +186 634 0.400000 +186 654 0.400000 +186 671 0.400000 +186 709 0.400000 +186 722 0.400000 +186 775 0.400000 +187 52 0.400000 +187 107 0.400000 +187 126 0.400000 +187 292 0.400000 +187 326 0.400000 +187 376 0.400000 +187 501 0.400000 +187 543 0.400000 +187 575 0.400000 +187 587 0.400000 +187 619 0.400000 +187 633 0.400000 +188 83 0.400000 +188 102 0.400000 +188 118 0.400000 +188 253 0.400000 +188 256 0.400000 +188 284 0.400000 +188 288 0.400000 +188 354 0.400000 +188 370 0.400000 +188 389 0.400000 +188 413 0.400000 +188 444 0.400000 +188 512 0.400000 +188 555 0.400000 +188 575 0.400000 +188 611 0.400000 +188 677 0.400000 +188 705 0.400000 +188 790 0.400000 +189 13 0.400000 +189 24 0.400000 +189 25 0.400000 +189 149 0.400000 +189 288 0.400000 +189 319 0.400000 +189 337 0.400000 +189 375 0.400000 +189 419 0.400000 +189 490 0.400000 +189 493 0.400000 +189 557 0.400000 +189 615 0.400000 +189 638 0.400000 +189 733 0.400000 +189 754 0.400000 +190 33 0.400000 +190 37 0.400000 +190 50 0.400000 +190 70 0.400000 +190 131 0.400000 +190 291 0.400000 +190 293 0.400000 +190 331 0.400000 +190 365 0.400000 +190 402 0.400000 +190 431 0.400000 +190 457 0.400000 +190 482 0.400000 +190 521 0.400000 +190 544 0.400000 +190 585 0.400000 +190 632 0.400000 +190 636 0.400000 +190 696 0.400000 +190 775 0.400000 +191 39 0.400000 +191 45 0.400000 +191 95 0.400000 +191 135 0.400000 +191 244 0.400000 +191 274 0.400000 +191 359 0.400000 +191 421 0.400000 +191 458 0.400000 +191 506 0.400000 +191 553 0.400000 +191 697 0.400000 +191 741 0.400000 +191 771 0.400000 +192 4 0.400000 +192 165 0.400000 +192 195 0.400000 +192 240 0.400000 +192 324 0.400000 +192 343 0.400000 +192 346 0.400000 +192 469 0.400000 +192 487 0.400000 +192 509 0.400000 +192 571 0.400000 +192 607 0.400000 +192 664 0.400000 +192 687 0.400000 +192 710 0.400000 +192 759 0.400000 +193 60 0.400000 +193 90 0.400000 +193 164 0.400000 +193 207 0.400000 +193 279 0.400000 +193 311 0.400000 +193 466 0.400000 +193 468 0.400000 +193 494 0.400000 +193 503 0.400000 +193 513 0.400000 +193 551 0.400000 +193 578 0.400000 +193 589 0.400000 +193 645 0.400000 +193 767 0.400000 +193 784 0.400000 +194 5 0.400000 +194 104 0.400000 +194 202 0.400000 +194 220 0.400000 +194 256 0.400000 +194 331 0.400000 +194 384 0.400000 +194 392 0.400000 +194 394 0.400000 +194 415 0.400000 +194 416 0.400000 +194 434 0.400000 +194 584 0.400000 +194 599 0.400000 +194 628 0.400000 +194 713 0.400000 +194 720 0.400000 +194 743 0.400000 +194 773 0.400000 +194 781 0.400000 +194 788 0.400000 +195 97 0.400000 +195 108 0.400000 +195 131 0.400000 +195 202 0.400000 +195 211 0.400000 +195 248 0.400000 +195 250 0.400000 +195 405 0.400000 +195 491 0.400000 +195 503 0.400000 +195 633 0.400000 +195 646 0.400000 +195 654 0.400000 +195 691 0.400000 +195 705 0.400000 +195 707 0.400000 +195 740 0.400000 +195 750 0.400000 +195 763 0.400000 +196 49 0.400000 +196 66 0.400000 +196 94 0.400000 +196 206 0.400000 +196 247 0.400000 +196 298 0.400000 +196 310 0.400000 +196 381 0.400000 +196 409 0.400000 +196 418 0.400000 +196 472 0.400000 +196 498 0.400000 +196 596 0.400000 +196 632 0.400000 +196 745 0.400000 +196 770 0.400000 +196 780 0.400000 +197 44 0.400000 +197 49 0.400000 +197 114 0.400000 +197 130 0.400000 +197 209 0.400000 +197 287 0.400000 +197 295 0.400000 +197 376 0.400000 +197 423 0.400000 +197 592 0.400000 +197 618 0.400000 +197 620 0.400000 +197 640 0.400000 +197 647 0.400000 +197 653 0.400000 +197 676 0.400000 +197 683 0.400000 +197 736 0.400000 +197 759 0.400000 +197 762 0.400000 +197 779 0.400000 +197 792 0.400000 +198 7 0.400000 +198 42 0.400000 +198 48 0.400000 +198 50 0.400000 +198 53 0.400000 +198 185 0.400000 +198 290 0.400000 +198 322 0.400000 +198 348 0.400000 +198 378 0.400000 +198 549 0.400000 +198 589 0.400000 +198 615 0.400000 +198 645 0.400000 +198 652 0.400000 +198 661 0.400000 +198 751 0.400000 +199 18 0.400000 +199 36 0.400000 +199 42 0.400000 +199 69 0.400000 +199 112 0.400000 +199 166 0.400000 +199 177 0.400000 +199 188 0.400000 +199 211 0.400000 +199 271 0.400000 +199 287 0.400000 +199 363 0.400000 +199 427 0.400000 +199 595 0.400000 +199 601 0.400000 +199 666 0.400000 +199 788 0.400000 +200 71 0.400000 +200 80 0.400000 +200 103 0.400000 +200 112 0.400000 +200 154 0.400000 +200 195 0.400000 +200 231 0.400000 +200 267 0.400000 +200 385 0.400000 +200 409 0.400000 +200 493 0.400000 +200 531 0.400000 +200 566 0.400000 +200 758 0.400000 +200 778 0.400000 +200 782 0.400000 +200 795 0.400000 +201 57 0.400000 +201 247 0.400000 +201 255 0.400000 +201 262 0.400000 +201 341 0.400000 +201 366 0.400000 +201 459 0.400000 +201 505 0.400000 +201 582 0.400000 +201 712 0.400000 +201 723 0.400000 +201 758 0.400000 +201 778 0.400000 +202 29 0.400000 +202 52 0.400000 +202 219 0.400000 +202 223 0.400000 +202 298 0.400000 +202 306 0.400000 +202 352 0.400000 +202 450 0.400000 +202 457 0.400000 +202 468 0.400000 +202 546 0.400000 +202 548 0.400000 +202 605 0.400000 +202 694 0.400000 +202 698 0.400000 +202 712 0.400000 +202 748 0.400000 +203 62 0.400000 +203 69 0.400000 +203 83 0.400000 +203 97 0.400000 +203 114 0.400000 +203 167 0.400000 +203 196 0.400000 +203 203 0.400000 +203 206 0.400000 +203 243 0.400000 +203 247 0.400000 +203 259 0.400000 +203 357 0.400000 +203 533 0.400000 +203 601 0.400000 +203 657 0.400000 +203 744 0.400000 +203 745 0.400000 +203 751 0.400000 +203 789 0.400000 +204 71 0.400000 +204 121 0.400000 +204 142 0.400000 +204 158 0.400000 +204 204 0.400000 +204 207 0.400000 +204 270 0.400000 +204 271 0.400000 +204 291 0.400000 +204 325 0.400000 +204 462 0.400000 +204 538 0.400000 +204 546 0.400000 +204 586 0.400000 +204 595 0.400000 +204 606 0.400000 +204 624 0.400000 +204 635 0.400000 +204 659 0.400000 +204 664 0.400000 +204 761 0.400000 +204 771 0.400000 +205 43 0.400000 +205 61 0.400000 +205 109 0.400000 +205 115 0.400000 +205 137 0.400000 +205 193 0.400000 +205 288 0.400000 +205 363 0.400000 +205 397 0.400000 +205 403 0.400000 +205 405 0.400000 +205 442 0.400000 +205 466 0.400000 +205 498 0.400000 +205 536 0.400000 +205 556 0.400000 +205 621 0.400000 +205 625 0.400000 +205 692 0.400000 +206 41 0.400000 +206 66 0.400000 +206 81 0.400000 +206 104 0.400000 +206 217 0.400000 +206 225 0.400000 +206 242 0.400000 +206 338 0.400000 +206 400 0.400000 +206 437 0.400000 +206 528 0.400000 +206 539 0.400000 +206 578 0.400000 +206 611 0.400000 +206 712 0.400000 +206 715 0.400000 +206 778 0.400000 +207 5 0.400000 +207 41 0.400000 +207 47 0.400000 +207 244 0.400000 +207 401 0.400000 +207 493 0.400000 +207 553 0.400000 +207 594 0.400000 +207 747 0.400000 +208 9 0.400000 +208 20 0.400000 +208 124 0.400000 +208 132 0.400000 +208 313 0.400000 +208 327 0.400000 +208 336 0.400000 +208 344 0.400000 +208 461 0.400000 +208 554 0.400000 +208 665 0.400000 +208 699 0.400000 +209 4 0.400000 +209 53 0.400000 +209 60 0.400000 +209 119 0.400000 +209 157 0.400000 +209 215 0.400000 +209 354 0.400000 +209 394 0.400000 +209 404 0.400000 +209 424 0.400000 +209 471 0.400000 +209 555 0.400000 +209 567 0.400000 +209 663 0.400000 +209 686 0.400000 +209 697 0.400000 +209 795 0.400000 +210 9 0.400000 +210 19 0.400000 +210 24 0.400000 +210 35 0.400000 +210 60 0.400000 +210 76 0.400000 +210 90 0.400000 +210 178 0.400000 +210 191 0.400000 +210 204 0.400000 +210 270 0.400000 +210 351 0.400000 +210 391 0.400000 +210 412 0.400000 +210 519 0.400000 +210 529 0.400000 +210 536 0.400000 +210 542 0.400000 +210 562 0.400000 +210 588 0.400000 +210 661 0.400000 +210 735 0.400000 +211 59 0.400000 +211 177 0.400000 +211 283 0.400000 +211 319 0.400000 +211 394 0.400000 +211 398 0.400000 +211 407 0.400000 +211 428 0.400000 +211 447 0.400000 +211 586 0.400000 +211 587 0.400000 +211 599 0.400000 +211 664 0.400000 +211 760 0.400000 +211 780 0.400000 +212 69 0.400000 +212 103 0.400000 +212 185 0.400000 +212 186 0.400000 +212 242 0.400000 +212 293 0.400000 +212 314 0.400000 +212 496 0.400000 +212 754 0.400000 +212 776 0.400000 +213 164 0.400000 +213 202 0.400000 +213 227 0.400000 +213 289 0.400000 +213 304 0.400000 +213 342 0.400000 +213 354 0.400000 +213 361 0.400000 +213 367 0.400000 +213 408 0.400000 +213 465 0.400000 +213 523 0.400000 +213 532 0.400000 +213 560 0.400000 +213 632 0.400000 +213 648 0.400000 +213 674 0.400000 +213 706 0.400000 +213 708 0.400000 +213 790 0.400000 +214 13 0.400000 +214 113 0.400000 +214 230 0.400000 +214 271 0.400000 +214 356 0.400000 +214 402 0.400000 +214 424 0.400000 +214 446 0.400000 +214 455 0.400000 +214 528 0.400000 +214 540 0.400000 +214 631 0.400000 +214 636 0.400000 +214 705 0.400000 +215 21 0.400000 +215 30 0.400000 +215 45 0.400000 +215 72 0.400000 +215 77 0.400000 +215 88 0.400000 +215 143 0.400000 +215 148 0.400000 +215 166 0.400000 +215 213 0.400000 +215 379 0.400000 +215 418 0.400000 +215 521 0.400000 +215 564 0.400000 +215 585 0.400000 +215 645 0.400000 +215 737 0.400000 +215 777 0.400000 +215 785 0.400000 +216 71 0.400000 +216 141 0.400000 +216 173 0.400000 +216 282 0.400000 +216 285 0.400000 +216 293 0.400000 +216 325 0.400000 +216 336 0.400000 +216 337 0.400000 +216 351 0.400000 +216 368 0.400000 +216 370 0.400000 +216 513 0.400000 +216 547 0.400000 +216 587 0.400000 +216 594 0.400000 +216 597 0.400000 +216 599 0.400000 +216 641 0.400000 +216 675 0.400000 +216 787 0.400000 +217 12 0.400000 +217 34 0.400000 +217 75 0.400000 +217 128 0.400000 +217 174 0.400000 +217 261 0.400000 +217 278 0.400000 +217 349 0.400000 +217 417 0.400000 +217 437 0.400000 +217 446 0.400000 +217 505 0.400000 +217 595 0.400000 +217 695 0.400000 +217 744 0.400000 +218 77 0.400000 +218 89 0.400000 +218 108 0.400000 +218 111 0.400000 +218 196 0.400000 +218 261 0.400000 +218 285 0.400000 +218 377 0.400000 +218 415 0.400000 +218 474 0.400000 +218 489 0.400000 +218 558 0.400000 +218 624 0.400000 +218 667 0.400000 +219 27 0.400000 +219 36 0.400000 +219 204 0.400000 +219 353 0.400000 +219 354 0.400000 +219 460 0.400000 +219 523 0.400000 +219 573 0.400000 +219 648 0.400000 +219 696 0.400000 +219 744 0.400000 +220 44 0.400000 +220 105 0.400000 +220 224 0.400000 +220 300 0.400000 +220 328 0.400000 +220 374 0.400000 +220 395 0.400000 +220 404 0.400000 +220 408 0.400000 +220 424 0.400000 +220 505 0.400000 +220 607 0.400000 +220 608 0.400000 +220 720 0.400000 +220 742 0.400000 +221 60 0.400000 +221 62 0.400000 +221 160 0.400000 +221 162 0.400000 +221 197 0.400000 +221 236 0.400000 +221 267 0.400000 +221 272 0.400000 +221 296 0.400000 +221 303 0.400000 +221 358 0.400000 +221 392 0.400000 +221 404 0.400000 +221 413 0.400000 +221 531 0.400000 +221 636 0.400000 +221 653 0.400000 +221 685 0.400000 +221 741 0.400000 +221 779 0.400000 +222 68 0.400000 +222 78 0.400000 +222 95 0.400000 +222 213 0.400000 +222 246 0.400000 +222 277 0.400000 +222 334 0.400000 +222 365 0.400000 +222 366 0.400000 +222 381 0.400000 +222 610 0.400000 +222 661 0.400000 +222 721 0.400000 +222 722 0.400000 +222 760 0.400000 +223 16 0.400000 +223 17 0.400000 +223 33 0.400000 +223 39 0.400000 +223 72 0.400000 +223 98 0.400000 +223 109 0.400000 +223 132 0.400000 +223 133 0.400000 +223 176 0.400000 +223 493 0.400000 +223 542 0.400000 +223 553 0.400000 +223 565 0.400000 +223 580 0.400000 +223 627 0.400000 +223 630 0.400000 +223 633 0.400000 +223 665 0.400000 +223 673 0.400000 +223 678 0.400000 +223 685 0.400000 +223 722 0.400000 +223 774 0.400000 +223 792 0.400000 +224 63 0.400000 +224 85 0.400000 +224 92 0.400000 +224 136 0.400000 +224 178 0.400000 +224 192 0.400000 +224 244 0.400000 +224 483 0.400000 +224 597 0.400000 +224 617 0.400000 +224 637 0.400000 +224 662 0.400000 +224 667 0.400000 +224 668 0.400000 +224 744 0.400000 +225 5 0.400000 +225 40 0.400000 +225 165 0.400000 +225 197 0.400000 +225 265 0.400000 +225 308 0.400000 +225 313 0.400000 +225 330 0.400000 +225 333 0.400000 +225 412 0.400000 +225 414 0.400000 +225 468 0.400000 +225 542 0.400000 +225 555 0.400000 +225 590 0.400000 +225 703 0.400000 +225 727 0.400000 +225 790 0.400000 +226 5 0.400000 +226 14 0.400000 +226 15 0.400000 +226 48 0.400000 +226 76 0.400000 +226 103 0.400000 +226 160 0.400000 +226 202 0.400000 +226 263 0.400000 +226 345 0.400000 +226 348 0.400000 +226 363 0.400000 +226 369 0.400000 +226 375 0.400000 +226 380 0.400000 +226 456 0.400000 +226 564 0.400000 +226 746 0.400000 +227 6 0.400000 +227 11 0.400000 +227 31 0.400000 +227 41 0.400000 +227 169 0.400000 +227 179 0.400000 +227 194 0.400000 +227 296 0.400000 +227 419 0.400000 +227 532 0.400000 +227 548 0.400000 +227 557 0.400000 +227 558 0.400000 +227 612 0.400000 +227 614 0.400000 +227 650 0.400000 +227 747 0.400000 +228 63 0.400000 +228 79 0.400000 +228 117 0.400000 +228 183 0.400000 +228 254 0.400000 +228 266 0.400000 +228 272 0.400000 +228 289 0.400000 +228 392 0.400000 +228 459 0.400000 +228 480 0.400000 +228 501 0.400000 +228 517 0.400000 +228 537 0.400000 +228 587 0.400000 +228 620 0.400000 +228 644 0.400000 +228 757 0.400000 +229 82 0.400000 +229 87 0.400000 +229 88 0.400000 +229 106 0.400000 +229 119 0.400000 +229 136 0.400000 +229 166 0.400000 +229 199 0.400000 +229 200 0.400000 +229 264 0.400000 +229 306 0.400000 +229 341 0.400000 +229 355 0.400000 +229 358 0.400000 +229 462 0.400000 +229 464 0.400000 +229 473 0.400000 +229 547 0.400000 +229 591 0.400000 +229 606 0.400000 +229 631 0.400000 +229 647 0.400000 +229 671 0.400000 +230 2 0.400000 +230 3 0.400000 +230 96 0.400000 +230 123 0.400000 +230 141 0.400000 +230 143 0.400000 +230 145 0.400000 +230 269 0.400000 +230 290 0.400000 +230 357 0.400000 +230 392 0.400000 +230 399 0.400000 +230 429 0.400000 +230 436 0.400000 +230 536 0.400000 +230 552 0.400000 +230 632 0.400000 +230 659 0.400000 +230 680 0.400000 +230 684 0.400000 +230 691 0.400000 +230 763 0.400000 +230 778 0.400000 +231 12 0.400000 +231 62 0.400000 +231 68 0.400000 +231 86 0.400000 +231 137 0.400000 +231 162 0.400000 +231 166 0.400000 +231 254 0.400000 +231 273 0.400000 +231 412 0.400000 +231 466 0.400000 +231 501 0.400000 +231 520 0.400000 +231 598 0.400000 +231 599 0.400000 +231 698 0.400000 +231 720 0.400000 +231 766 0.400000 +231 791 0.400000 +232 98 0.400000 +232 154 0.400000 +232 182 0.400000 +232 355 0.400000 +232 448 0.400000 +232 476 0.400000 +232 640 0.400000 +232 715 0.400000 +232 768 0.400000 +232 770 0.400000 +232 781 0.400000 +232 786 0.400000 +233 7 0.400000 +233 39 0.400000 +233 71 0.400000 +233 89 0.400000 +233 94 0.400000 +233 116 0.400000 +233 129 0.400000 +233 237 0.400000 +233 263 0.400000 +233 269 0.400000 +233 346 0.400000 +233 383 0.400000 +233 418 0.400000 +233 421 0.400000 +233 430 0.400000 +233 440 0.400000 +233 455 0.400000 +233 471 0.400000 +233 705 0.400000 +233 708 0.400000 +233 717 0.400000 +233 770 0.400000 +233 784 0.400000 +234 199 0.400000 +234 282 0.400000 +234 306 0.400000 +234 322 0.400000 +234 378 0.400000 +234 439 0.400000 +234 442 0.400000 +234 531 0.400000 +234 568 0.400000 +234 613 0.400000 +234 660 0.400000 +234 691 0.400000 +234 696 0.400000 +235 37 0.400000 +235 158 0.400000 +235 245 0.400000 +235 314 0.400000 +235 321 0.400000 +235 465 0.400000 +235 479 0.400000 +235 547 0.400000 +235 642 0.400000 +235 670 0.400000 +235 725 0.400000 +235 731 0.400000 +235 746 0.400000 +235 778 0.400000 +236 47 0.400000 +236 59 0.400000 +236 124 0.400000 +236 346 0.400000 +236 356 0.400000 +236 376 0.400000 +236 588 0.400000 +236 673 0.400000 +237 48 0.400000 +237 64 0.400000 +237 303 0.400000 +237 402 0.400000 +237 495 0.400000 +237 654 0.400000 +238 25 0.400000 +238 227 0.400000 +238 229 0.400000 +238 509 0.400000 +238 537 0.400000 +238 649 0.400000 +238 651 0.400000 +238 666 0.400000 +238 763 0.400000 +238 774 0.400000 +239 51 0.400000 +239 53 0.400000 +239 66 0.400000 +239 124 0.400000 +239 254 0.400000 +239 277 0.400000 +239 449 0.400000 +239 587 0.400000 +239 617 0.400000 +239 654 0.400000 +240 14 0.400000 +240 107 0.400000 +240 145 0.400000 +240 346 0.400000 +240 377 0.400000 +240 513 0.400000 +240 592 0.400000 +240 612 0.400000 +240 669 0.400000 +240 673 0.400000 +240 676 0.400000 +240 754 0.400000 +240 770 0.400000 +241 75 0.400000 +241 97 0.400000 +241 117 0.400000 +241 209 0.400000 +241 321 0.400000 +241 333 0.400000 +241 351 0.400000 +241 365 0.400000 +241 379 0.400000 +241 512 0.400000 +241 524 0.400000 +241 530 0.400000 +241 685 0.400000 +241 688 0.400000 +241 698 0.400000 +241 733 0.400000 +242 6 0.400000 +242 12 0.400000 +242 136 0.400000 +242 156 0.400000 +242 163 0.400000 +242 166 0.400000 +242 169 0.400000 +242 317 0.400000 +242 330 0.400000 +242 401 0.400000 +242 414 0.400000 +242 527 0.400000 +242 537 0.400000 +242 597 0.400000 +242 615 0.400000 +242 708 0.400000 +242 773 0.400000 +242 791 0.400000 +243 152 0.400000 +243 208 0.400000 +243 412 0.400000 +243 456 0.400000 +243 504 0.400000 +243 609 0.400000 +243 637 0.400000 +243 694 0.400000 +243 697 0.400000 +243 745 0.400000 +244 86 0.400000 +244 184 0.400000 +244 311 0.400000 +244 335 0.400000 +244 451 0.400000 +244 488 0.400000 +244 526 0.400000 +244 540 0.400000 +244 573 0.400000 +244 577 0.400000 +244 682 0.400000 +244 703 0.400000 +244 730 0.400000 +245 16 0.400000 +245 34 0.400000 +245 68 0.400000 +245 103 0.400000 +245 108 0.400000 +245 115 0.400000 +245 161 0.400000 +245 218 0.400000 +245 224 0.400000 +245 235 0.400000 +245 237 0.400000 +245 274 0.400000 +245 302 0.400000 +245 310 0.400000 +245 358 0.400000 +245 376 0.400000 +245 386 0.400000 +245 521 0.400000 +245 535 0.400000 +245 562 0.400000 +245 608 0.400000 +245 671 0.400000 +245 694 0.400000 +245 711 0.400000 +245 713 0.400000 +245 736 0.400000 +245 751 0.400000 +245 783 0.400000 +246 3 0.400000 +246 103 0.400000 +246 150 0.400000 +246 197 0.400000 +246 232 0.400000 +246 251 0.400000 +246 367 0.400000 +246 385 0.400000 +246 455 0.400000 +246 480 0.400000 +246 556 0.400000 +246 562 0.400000 +246 575 0.400000 +246 584 0.400000 +246 602 0.400000 +246 613 0.400000 +246 660 0.400000 +246 705 0.400000 +246 731 0.400000 +246 738 0.400000 +246 771 0.400000 +247 6 0.400000 +247 36 0.400000 +247 49 0.400000 +247 94 0.400000 +247 98 0.400000 +247 204 0.400000 +247 299 0.400000 +247 319 0.400000 +247 380 0.400000 +247 436 0.400000 +247 494 0.400000 +247 501 0.400000 +247 528 0.400000 +247 545 0.400000 +247 549 0.400000 +247 557 0.400000 +247 685 0.400000 +247 689 0.400000 +247 757 0.400000 +247 777 0.400000 +248 213 0.400000 +248 218 0.400000 +248 220 0.400000 +248 246 0.400000 +248 250 0.400000 +248 260 0.400000 +248 312 0.400000 +248 327 0.400000 +248 383 0.400000 +248 387 0.400000 +248 397 0.400000 +248 422 0.400000 +248 436 0.400000 +248 474 0.400000 +248 501 0.400000 +248 588 0.400000 +248 604 0.400000 +248 637 0.400000 +248 793 0.400000 +249 49 0.400000 +249 151 0.400000 +249 209 0.400000 +249 214 0.400000 +249 258 0.400000 +249 440 0.400000 +249 462 0.400000 +249 613 0.400000 +249 656 0.400000 +250 144 0.400000 +250 164 0.400000 +250 176 0.400000 +250 257 0.400000 +250 299 0.400000 +250 335 0.400000 +250 343 0.400000 +250 348 0.400000 +250 398 0.400000 +250 400 0.400000 +250 404 0.400000 +250 407 0.400000 +250 509 0.400000 +250 532 0.400000 +250 548 0.400000 +250 556 0.400000 +250 597 0.400000 +250 636 0.400000 +250 781 0.400000 +251 38 0.400000 +251 64 0.400000 +251 65 0.400000 +251 93 0.400000 +251 171 0.400000 +251 175 0.400000 +251 232 0.400000 +251 282 0.400000 +251 283 0.400000 +251 388 0.400000 +251 416 0.400000 +251 453 0.400000 +251 454 0.400000 +251 556 0.400000 +251 602 0.400000 +251 721 0.400000 +251 725 0.400000 +251 761 0.400000 +252 2 0.400000 +252 4 0.400000 +252 85 0.400000 +252 252 0.400000 +252 263 0.400000 +252 270 0.400000 +252 332 0.400000 +252 438 0.400000 +252 500 0.400000 +252 531 0.400000 +252 541 0.400000 +252 586 0.400000 +252 595 0.400000 +252 742 0.400000 +252 751 0.400000 +252 764 0.400000 +253 39 0.400000 +253 94 0.400000 +253 100 0.400000 +253 128 0.400000 +253 129 0.400000 +253 194 0.400000 +253 317 0.400000 +253 446 0.400000 +253 459 0.400000 +253 460 0.400000 +253 524 0.400000 +253 661 0.400000 +253 687 0.400000 +253 699 0.400000 +253 727 0.400000 +253 739 0.400000 +253 792 0.400000 +254 12 0.400000 +254 16 0.400000 +254 200 0.400000 +254 362 0.400000 +254 396 0.400000 +254 428 0.400000 +254 596 0.400000 +254 625 0.400000 +254 661 0.400000 +254 674 0.400000 +254 774 0.400000 +254 780 0.400000 +255 11 0.400000 +255 90 0.400000 +255 160 0.400000 +255 163 0.400000 +255 183 0.400000 +255 195 0.400000 +255 216 0.400000 +255 227 0.400000 +255 252 0.400000 +255 270 0.400000 +255 278 0.400000 +255 379 0.400000 +255 395 0.400000 +255 456 0.400000 +255 481 0.400000 +255 484 0.400000 +255 508 0.400000 +255 544 0.400000 +255 573 0.400000 +255 578 0.400000 +255 587 0.400000 +255 635 0.400000 +255 655 0.400000 +256 17 0.400000 +256 40 0.400000 +256 96 0.400000 +256 101 0.400000 +256 218 0.400000 +256 444 0.400000 +256 451 0.400000 +256 492 0.400000 +256 537 0.400000 +256 540 0.400000 +256 624 0.400000 +257 5 0.400000 +257 29 0.400000 +257 324 0.400000 +257 341 0.400000 +257 420 0.400000 +257 424 0.400000 +257 488 0.400000 +257 507 0.400000 +257 525 0.400000 +257 587 0.400000 +257 689 0.400000 +257 695 0.400000 +257 711 0.400000 +257 718 0.400000 +257 722 0.400000 +258 50 0.400000 +258 72 0.400000 +258 138 0.400000 +258 157 0.400000 +258 195 0.400000 +258 237 0.400000 +258 321 0.400000 +258 332 0.400000 +258 345 0.400000 +258 363 0.400000 +258 375 0.400000 +258 414 0.400000 +258 419 0.400000 +258 445 0.400000 +258 470 0.400000 +258 474 0.400000 +258 486 0.400000 +258 508 0.400000 +258 564 0.400000 +258 630 0.400000 +258 691 0.400000 +258 730 0.400000 +258 751 0.400000 +258 765 0.400000 +259 33 0.400000 +259 57 0.400000 +259 201 0.400000 +259 243 0.400000 +259 293 0.400000 +259 372 0.400000 +259 387 0.400000 +259 549 0.400000 +259 647 0.400000 +259 733 0.400000 +259 747 0.400000 +259 768 0.400000 +259 778 0.400000 +259 788 0.400000 +259 799 0.400000 +260 62 0.400000 +260 98 0.400000 +260 252 0.400000 +260 465 0.400000 +260 478 0.400000 +260 499 0.400000 +260 575 0.400000 +261 198 0.400000 +261 235 0.400000 +261 325 0.400000 +261 417 0.400000 +261 418 0.400000 +261 434 0.400000 +261 439 0.400000 +261 462 0.400000 +261 487 0.400000 +261 494 0.400000 +261 610 0.400000 +261 655 0.400000 +261 686 0.400000 +261 753 0.400000 +261 759 0.400000 +261 761 0.400000 +262 72 0.400000 +262 93 0.400000 +262 131 0.400000 +262 149 0.400000 +262 210 0.400000 +262 212 0.400000 +262 237 0.400000 +262 252 0.400000 +262 361 0.400000 +262 453 0.400000 +262 497 0.400000 +262 610 0.400000 +262 629 0.400000 +262 633 0.400000 +262 662 0.400000 +262 719 0.400000 +262 730 0.400000 +262 737 0.400000 +262 745 0.400000 +262 761 0.400000 +262 790 0.400000 +263 9 0.400000 +263 58 0.400000 +263 101 0.400000 +263 112 0.400000 +263 123 0.400000 +263 224 0.400000 +263 238 0.400000 +263 310 0.400000 +263 418 0.400000 +263 422 0.400000 +263 425 0.400000 +263 482 0.400000 +263 486 0.400000 +263 519 0.400000 +263 638 0.400000 +263 678 0.400000 +263 740 0.400000 +264 60 0.400000 +264 137 0.400000 +264 176 0.400000 +264 206 0.400000 +264 207 0.400000 +264 272 0.400000 +264 305 0.400000 +264 310 0.400000 +264 337 0.400000 +264 369 0.400000 +264 467 0.400000 +264 471 0.400000 +264 493 0.400000 +264 509 0.400000 +264 565 0.400000 +264 567 0.400000 +264 588 0.400000 +264 590 0.400000 +264 700 0.400000 +264 771 0.400000 +264 786 0.400000 +265 66 0.400000 +265 135 0.400000 +265 226 0.400000 +265 283 0.400000 +265 296 0.400000 +265 329 0.400000 +265 375 0.400000 +265 407 0.400000 +265 414 0.400000 +265 564 0.400000 +265 606 0.400000 +265 679 0.400000 +266 4 0.400000 +266 69 0.400000 +266 115 0.400000 +266 149 0.400000 +266 150 0.400000 +266 163 0.400000 +266 182 0.400000 +266 198 0.400000 +266 236 0.400000 +266 247 0.400000 +266 260 0.400000 +266 306 0.400000 +266 327 0.400000 +266 338 0.400000 +266 505 0.400000 +266 512 0.400000 +266 540 0.400000 +266 582 0.400000 +267 239 0.400000 +267 297 0.400000 +267 309 0.400000 +267 376 0.400000 +267 425 0.400000 +267 437 0.400000 +267 470 0.400000 +267 561 0.400000 +268 3 0.400000 +268 66 0.400000 +268 73 0.400000 +268 91 0.400000 +268 156 0.400000 +268 157 0.400000 +268 239 0.400000 +268 254 0.400000 +268 281 0.400000 +268 322 0.400000 +268 398 0.400000 +268 525 0.400000 +268 538 0.400000 +268 553 0.400000 +268 571 0.400000 +268 579 0.400000 +268 594 0.400000 +268 672 0.400000 +268 691 0.400000 +268 732 0.400000 +268 794 0.400000 +269 112 0.400000 +269 178 0.400000 +269 251 0.400000 +269 266 0.400000 +269 274 0.400000 +269 295 0.400000 +269 316 0.400000 +269 317 0.400000 +269 365 0.400000 +269 384 0.400000 +269 426 0.400000 +269 491 0.400000 +269 503 0.400000 +269 512 0.400000 +269 521 0.400000 +269 537 0.400000 +269 600 0.400000 +269 677 0.400000 +269 786 0.400000 +270 2 0.400000 +270 9 0.400000 +270 93 0.400000 +270 121 0.400000 +270 185 0.400000 +270 216 0.400000 +270 272 0.400000 +270 281 0.400000 +270 303 0.400000 +270 325 0.400000 +270 338 0.400000 +270 450 0.400000 +270 606 0.400000 +270 623 0.400000 +270 633 0.400000 +270 641 0.400000 +270 679 0.400000 +270 685 0.400000 +270 720 0.400000 +270 726 0.400000 +270 770 0.400000 +271 56 0.400000 +271 136 0.400000 +271 154 0.400000 +271 158 0.400000 +271 185 0.400000 +271 186 0.400000 +271 311 0.400000 +271 332 0.400000 +271 380 0.400000 +271 567 0.400000 +271 606 0.400000 +271 614 0.400000 +271 695 0.400000 +271 719 0.400000 +272 87 0.400000 +272 204 0.400000 +272 239 0.400000 +272 251 0.400000 +272 280 0.400000 +272 407 0.400000 +272 452 0.400000 +272 509 0.400000 +272 565 0.400000 +272 668 0.400000 +272 715 0.400000 +272 777 0.400000 +273 102 0.400000 +273 129 0.400000 +273 142 0.400000 +273 182 0.400000 +273 288 0.400000 +273 296 0.400000 +273 337 0.400000 +273 375 0.400000 +273 395 0.400000 +273 398 0.400000 +273 415 0.400000 +273 455 0.400000 +273 534 0.400000 +273 594 0.400000 +273 625 0.400000 +273 700 0.400000 +273 730 0.400000 +273 771 0.400000 +273 774 0.400000 +273 776 0.400000 +274 65 0.400000 +274 103 0.400000 +274 105 0.400000 +274 164 0.400000 +274 179 0.400000 +274 215 0.400000 +274 259 0.400000 +274 272 0.400000 +274 284 0.400000 +274 298 0.400000 +274 323 0.400000 +274 325 0.400000 +274 359 0.400000 +274 413 0.400000 +274 624 0.400000 +274 640 0.400000 +274 710 0.400000 +274 734 0.400000 +274 736 0.400000 +274 752 0.400000 +275 95 0.400000 +275 98 0.400000 +275 178 0.400000 +275 266 0.400000 +275 278 0.400000 +275 309 0.400000 +275 386 0.400000 +275 387 0.400000 +275 407 0.400000 +275 469 0.400000 +275 597 0.400000 +275 606 0.400000 +275 751 0.400000 +275 763 0.400000 +276 51 0.400000 +276 74 0.400000 +276 97 0.400000 +276 107 0.400000 +276 113 0.400000 +276 167 0.400000 +276 197 0.400000 +276 217 0.400000 +276 219 0.400000 +276 372 0.400000 +276 395 0.400000 +276 421 0.400000 +276 567 0.400000 +276 569 0.400000 +276 599 0.400000 +276 655 0.400000 +276 769 0.400000 +277 5 0.400000 +277 65 0.400000 +277 71 0.400000 +277 88 0.400000 +277 108 0.400000 +277 126 0.400000 +277 140 0.400000 +277 205 0.400000 +277 224 0.400000 +277 328 0.400000 +277 470 0.400000 +277 486 0.400000 +277 501 0.400000 +277 589 0.400000 +277 608 0.400000 +277 610 0.400000 +277 630 0.400000 +277 631 0.400000 +277 690 0.400000 +277 718 0.400000 +277 764 0.400000 +277 787 0.400000 +278 3 0.400000 +278 6 0.400000 +278 28 0.400000 +278 155 0.400000 +278 167 0.400000 +278 211 0.400000 +278 218 0.400000 +278 250 0.400000 +278 322 0.400000 +278 339 0.400000 +278 395 0.400000 +278 396 0.400000 +278 476 0.400000 +278 492 0.400000 +278 600 0.400000 +278 619 0.400000 +278 681 0.400000 +279 48 0.400000 +279 65 0.400000 +279 79 0.400000 +279 120 0.400000 +279 142 0.400000 +279 192 0.400000 +279 231 0.400000 +279 275 0.400000 +279 487 0.400000 +279 590 0.400000 +279 622 0.400000 +279 639 0.400000 +279 652 0.400000 +279 674 0.400000 +279 734 0.400000 +280 16 0.400000 +280 35 0.400000 +280 55 0.400000 +280 59 0.400000 +280 60 0.400000 +280 131 0.400000 +280 141 0.400000 +280 276 0.400000 +280 333 0.400000 +280 399 0.400000 +280 439 0.400000 +280 440 0.400000 +280 555 0.400000 +280 580 0.400000 +280 614 0.400000 +280 669 0.400000 +280 683 0.400000 +280 705 0.400000 +280 747 0.400000 +280 796 0.400000 +281 94 0.400000 +281 121 0.400000 +281 132 0.400000 +281 144 0.400000 +281 158 0.400000 +281 168 0.400000 +281 312 0.400000 +281 357 0.400000 +281 541 0.400000 +281 547 0.400000 +281 718 0.400000 +281 725 0.400000 +282 7 0.400000 +282 24 0.400000 +282 77 0.400000 +282 107 0.400000 +282 231 0.400000 +282 256 0.400000 +282 279 0.400000 +282 307 0.400000 +282 445 0.400000 +282 512 0.400000 +282 610 0.400000 +282 650 0.400000 +282 718 0.400000 +282 735 0.400000 +283 31 0.400000 +283 34 0.400000 +283 148 0.400000 +283 178 0.400000 +283 480 0.400000 +283 495 0.400000 +283 514 0.400000 +283 517 0.400000 +283 677 0.400000 +284 46 0.400000 +284 63 0.400000 +284 105 0.400000 +284 165 0.400000 +284 166 0.400000 +284 253 0.400000 +284 261 0.400000 +284 313 0.400000 +284 357 0.400000 +284 366 0.400000 +284 396 0.400000 +284 529 0.400000 +284 650 0.400000 +284 790 0.400000 +285 10 0.400000 +285 31 0.400000 +285 35 0.400000 +285 138 0.400000 +285 175 0.400000 +285 186 0.400000 +285 292 0.400000 +285 366 0.400000 +285 386 0.400000 +285 414 0.400000 +285 442 0.400000 +285 477 0.400000 +285 514 0.400000 +285 535 0.400000 +285 537 0.400000 +285 790 0.400000 +286 42 0.400000 +286 67 0.400000 +286 90 0.400000 +286 96 0.400000 +286 119 0.400000 +286 167 0.400000 +286 231 0.400000 +286 354 0.400000 +286 367 0.400000 +286 415 0.400000 +286 418 0.400000 +286 465 0.400000 +286 501 0.400000 +286 515 0.400000 +286 531 0.400000 +286 607 0.400000 +286 613 0.400000 +286 660 0.400000 +286 681 0.400000 +286 788 0.400000 +287 88 0.400000 +287 111 0.400000 +287 320 0.400000 +287 333 0.400000 +287 525 0.400000 +287 609 0.400000 +287 689 0.400000 +287 694 0.400000 +287 767 0.400000 +287 793 0.400000 +288 52 0.400000 +288 77 0.400000 +288 399 0.400000 +288 405 0.400000 +288 407 0.400000 +288 507 0.400000 +288 510 0.400000 +288 545 0.400000 +288 791 0.400000 +289 107 0.400000 +289 112 0.400000 +289 124 0.400000 +289 145 0.400000 +289 196 0.400000 +289 343 0.400000 +289 345 0.400000 +289 377 0.400000 +289 428 0.400000 +289 537 0.400000 +290 9 0.400000 +290 10 0.400000 +290 18 0.400000 +290 21 0.400000 +290 68 0.400000 +290 103 0.400000 +290 152 0.400000 +290 190 0.400000 +290 221 0.400000 +290 224 0.400000 +290 326 0.400000 +290 346 0.400000 +290 358 0.400000 +290 362 0.400000 +290 403 0.400000 +290 527 0.400000 +290 638 0.400000 +290 643 0.400000 +290 762 0.400000 +291 45 0.400000 +291 67 0.400000 +291 154 0.400000 +291 342 0.400000 +291 353 0.400000 +291 370 0.400000 +291 461 0.400000 +291 539 0.400000 +291 585 0.400000 +291 620 0.400000 +291 628 0.400000 +291 638 0.400000 +291 693 0.400000 +291 731 0.400000 +291 785 0.400000 +291 786 0.400000 +292 46 0.400000 +292 76 0.400000 +292 177 0.400000 +292 272 0.400000 +292 279 0.400000 +292 316 0.400000 +292 512 0.400000 +292 671 0.400000 +292 684 0.400000 +292 706 0.400000 +292 708 0.400000 +292 738 0.400000 +293 113 0.400000 +293 321 0.400000 +293 400 0.400000 +293 463 0.400000 +293 496 0.400000 +293 656 0.400000 +294 17 0.400000 +294 106 0.400000 +294 302 0.400000 +294 344 0.400000 +294 444 0.400000 +294 576 0.400000 +294 581 0.400000 +294 606 0.400000 +294 635 0.400000 +294 654 0.400000 +294 669 0.400000 +294 728 0.400000 +295 1 0.400000 +295 99 0.400000 +295 111 0.400000 +295 133 0.400000 +295 144 0.400000 +295 160 0.400000 +295 179 0.400000 +295 228 0.400000 +295 257 0.400000 +295 291 0.400000 +295 320 0.400000 +295 441 0.400000 +295 466 0.400000 +295 554 0.400000 +295 579 0.400000 +295 592 0.400000 +295 668 0.400000 +296 16 0.400000 +296 24 0.400000 +296 75 0.400000 +296 267 0.400000 +296 293 0.400000 +296 297 0.400000 +296 298 0.400000 +296 324 0.400000 +296 352 0.400000 +296 380 0.400000 +296 427 0.400000 +296 537 0.400000 +296 543 0.400000 +296 622 0.400000 +296 670 0.400000 +296 722 0.400000 +296 735 0.400000 +296 796 0.400000 +297 87 0.400000 +297 100 0.400000 +297 107 0.400000 +297 116 0.400000 +297 151 0.400000 +297 210 0.400000 +297 281 0.400000 +297 316 0.400000 +297 435 0.400000 +297 498 0.400000 +297 603 0.400000 +297 621 0.400000 +297 684 0.400000 +297 782 0.400000 +298 12 0.400000 +298 33 0.400000 +298 65 0.400000 +298 89 0.400000 +298 144 0.400000 +298 235 0.400000 +298 238 0.400000 +298 352 0.400000 +298 354 0.400000 +298 497 0.400000 +298 544 0.400000 +298 768 0.400000 +298 780 0.400000 +299 39 0.400000 +299 49 0.400000 +299 90 0.400000 +299 192 0.400000 +299 242 0.400000 +299 305 0.400000 +299 335 0.400000 +299 339 0.400000 +299 375 0.400000 +299 401 0.400000 +299 447 0.400000 +299 590 0.400000 +299 599 0.400000 +299 634 0.400000 +299 656 0.400000 +299 709 0.400000 +299 715 0.400000 +299 720 0.400000 +299 749 0.400000 +299 766 0.400000 +299 798 0.400000 +300 19 0.400000 +300 26 0.400000 +300 133 0.400000 +300 148 0.400000 +300 210 0.400000 +300 336 0.400000 +300 423 0.400000 +300 496 0.400000 +300 536 0.400000 +300 537 0.400000 +300 544 0.400000 +300 586 0.400000 +300 643 0.400000 +300 665 0.400000 +300 697 0.400000 +300 708 0.400000 +300 726 0.400000 +301 6 0.400000 +301 33 0.400000 +301 95 0.400000 +301 109 0.400000 +301 126 0.400000 +301 146 0.400000 +301 160 0.400000 +301 211 0.400000 +301 312 0.400000 +301 351 0.400000 +301 410 0.400000 +301 496 0.400000 +301 584 0.400000 +302 58 0.400000 +302 63 0.400000 +302 265 0.400000 +302 310 0.400000 +302 388 0.400000 +302 407 0.400000 +302 427 0.400000 +302 455 0.400000 +302 483 0.400000 +302 496 0.400000 +302 514 0.400000 +302 527 0.400000 +302 560 0.400000 +302 590 0.400000 +302 613 0.400000 +302 618 0.400000 +302 627 0.400000 +302 677 0.400000 +302 776 0.400000 +303 12 0.400000 +303 258 0.400000 +303 259 0.400000 +303 303 0.400000 +303 413 0.400000 +303 432 0.400000 +303 576 0.400000 +303 590 0.400000 +303 631 0.400000 +303 780 0.400000 +304 90 0.400000 +304 108 0.400000 +304 160 0.400000 +304 277 0.400000 +304 335 0.400000 +304 388 0.400000 +304 457 0.400000 +304 546 0.400000 +304 783 0.400000 +304 800 0.400000 +305 22 0.400000 +305 32 0.400000 +305 121 0.400000 +305 129 0.400000 +305 174 0.400000 +305 284 0.400000 +305 292 0.400000 +305 330 0.400000 +305 353 0.400000 +305 400 0.400000 +305 413 0.400000 +305 466 0.400000 +305 473 0.400000 +305 522 0.400000 +305 548 0.400000 +305 550 0.400000 +305 597 0.400000 +305 619 0.400000 +305 662 0.400000 +305 663 0.400000 +305 723 0.400000 +305 754 0.400000 +305 766 0.400000 +305 774 0.400000 +305 790 0.400000 +306 154 0.400000 +306 290 0.400000 +306 340 0.400000 +306 347 0.400000 +306 350 0.400000 +306 364 0.400000 +306 518 0.400000 +306 536 0.400000 +306 551 0.400000 +306 630 0.400000 +306 637 0.400000 +306 726 0.400000 +306 729 0.400000 +306 767 0.400000 +306 777 0.400000 +307 5 0.400000 +307 122 0.400000 +307 231 0.400000 +307 248 0.400000 +307 278 0.400000 +307 338 0.400000 +307 461 0.400000 +307 528 0.400000 +307 542 0.400000 +307 566 0.400000 +307 568 0.400000 +307 633 0.400000 +307 674 0.400000 +307 694 0.400000 +307 716 0.400000 +307 719 0.400000 +307 727 0.400000 +308 10 0.400000 +308 66 0.400000 +308 130 0.400000 +308 170 0.400000 +308 230 0.400000 +308 231 0.400000 +308 240 0.400000 +308 276 0.400000 +308 355 0.400000 +308 373 0.400000 +308 376 0.400000 +308 505 0.400000 +308 516 0.400000 +308 586 0.400000 +308 607 0.400000 +308 692 0.400000 +309 26 0.400000 +309 48 0.400000 +309 59 0.400000 +309 217 0.400000 +309 346 0.400000 +309 373 0.400000 +309 375 0.400000 +309 416 0.400000 +309 455 0.400000 +309 460 0.400000 +309 495 0.400000 +309 606 0.400000 +309 622 0.400000 +309 725 0.400000 +309 768 0.400000 +309 787 0.400000 +310 37 0.400000 +310 73 0.400000 +310 79 0.400000 +310 145 0.400000 +310 184 0.400000 +310 207 0.400000 +310 303 0.400000 +310 322 0.400000 +310 323 0.400000 +311 22 0.400000 +311 182 0.400000 +311 195 0.400000 +311 230 0.400000 +311 272 0.400000 +311 340 0.400000 +311 350 0.400000 +311 512 0.400000 +311 591 0.400000 +311 623 0.400000 +311 629 0.400000 +311 639 0.400000 +311 738 0.400000 +311 786 0.400000 +312 30 0.400000 +312 56 0.400000 +312 63 0.400000 +312 179 0.400000 +312 210 0.400000 +312 276 0.400000 +312 329 0.400000 +312 407 0.400000 +312 438 0.400000 +312 451 0.400000 +312 464 0.400000 +312 611 0.400000 +312 636 0.400000 +312 672 0.400000 +312 759 0.400000 +312 760 0.400000 +313 54 0.400000 +313 158 0.400000 +313 200 0.400000 +313 290 0.400000 +313 317 0.400000 +313 343 0.400000 +313 349 0.400000 +313 596 0.400000 +313 624 0.400000 +313 632 0.400000 +313 668 0.400000 +313 690 0.400000 +313 694 0.400000 +313 759 0.400000 +314 39 0.400000 +314 184 0.400000 +314 188 0.400000 +314 200 0.400000 +314 231 0.400000 +314 338 0.400000 +314 365 0.400000 +314 406 0.400000 +314 431 0.400000 +314 461 0.400000 +314 496 0.400000 +314 505 0.400000 +314 549 0.400000 +314 605 0.400000 +314 634 0.400000 +314 649 0.400000 +314 664 0.400000 +314 790 0.400000 +315 185 0.400000 +315 190 0.400000 +315 192 0.400000 +315 202 0.400000 +315 226 0.400000 +315 232 0.400000 +315 318 0.400000 +315 354 0.400000 +315 419 0.400000 +315 530 0.400000 +315 544 0.400000 +315 556 0.400000 +315 578 0.400000 +315 606 0.400000 +315 629 0.400000 +315 734 0.400000 +315 737 0.400000 +315 738 0.400000 +316 1 0.400000 +316 58 0.400000 +316 73 0.400000 +316 90 0.400000 +316 220 0.400000 +316 343 0.400000 +316 434 0.400000 +316 613 0.400000 +316 631 0.400000 +316 639 0.400000 +316 671 0.400000 +316 695 0.400000 +316 753 0.400000 +316 763 0.400000 +317 97 0.400000 +317 135 0.400000 +317 223 0.400000 +317 254 0.400000 +317 348 0.400000 +317 405 0.400000 +317 419 0.400000 +317 455 0.400000 +317 531 0.400000 +317 540 0.400000 +317 564 0.400000 +317 608 0.400000 +317 633 0.400000 +317 637 0.400000 +317 642 0.400000 +317 673 0.400000 +317 674 0.400000 +317 675 0.400000 +318 151 0.400000 +318 212 0.400000 +318 214 0.400000 +318 295 0.400000 +318 372 0.400000 +318 446 0.400000 +318 453 0.400000 +318 509 0.400000 +318 565 0.400000 +318 652 0.400000 +318 691 0.400000 +318 715 0.400000 +318 721 0.400000 +318 758 0.400000 +318 763 0.400000 +318 783 0.400000 +319 10 0.400000 +319 97 0.400000 +319 150 0.400000 +319 155 0.400000 +319 193 0.400000 +319 302 0.400000 +319 324 0.400000 +319 482 0.400000 +319 550 0.400000 +319 695 0.400000 +319 715 0.400000 +319 723 0.400000 +319 771 0.400000 +320 78 0.400000 +320 96 0.400000 +320 100 0.400000 +320 131 0.400000 +320 219 0.400000 +320 268 0.400000 +320 269 0.400000 +320 281 0.400000 +320 288 0.400000 +320 335 0.400000 +320 367 0.400000 +320 476 0.400000 +320 604 0.400000 +320 629 0.400000 +320 632 0.400000 +321 16 0.400000 +321 93 0.400000 +321 182 0.400000 +321 184 0.400000 +321 206 0.400000 +321 297 0.400000 +321 308 0.400000 +321 329 0.400000 +321 330 0.400000 +321 346 0.400000 +321 550 0.400000 +321 640 0.400000 +321 740 0.400000 +321 776 0.400000 +321 797 0.400000 +322 29 0.400000 +322 76 0.400000 +322 137 0.400000 +322 188 0.400000 +322 316 0.400000 +322 359 0.400000 +322 414 0.400000 +322 423 0.400000 +322 471 0.400000 +322 488 0.400000 +322 495 0.400000 +322 626 0.400000 +322 668 0.400000 +323 4 0.400000 +323 20 0.400000 +323 108 0.400000 +323 147 0.400000 +323 216 0.400000 +323 285 0.400000 +323 308 0.400000 +323 417 0.400000 +323 431 0.400000 +323 433 0.400000 +323 495 0.400000 +323 508 0.400000 +323 600 0.400000 +323 644 0.400000 +323 733 0.400000 +323 740 0.400000 +323 754 0.400000 +324 1 0.400000 +324 39 0.400000 +324 65 0.400000 +324 104 0.400000 +324 106 0.400000 +324 132 0.400000 +324 172 0.400000 +324 202 0.400000 +324 352 0.400000 +324 518 0.400000 +324 519 0.400000 +324 552 0.400000 +324 568 0.400000 +324 600 0.400000 +324 666 0.400000 +324 692 0.400000 +324 709 0.400000 +324 726 0.400000 +324 746 0.400000 +324 780 0.400000 +324 795 0.400000 +325 163 0.400000 +325 184 0.400000 +325 264 0.400000 +325 309 0.400000 +325 369 0.400000 +325 386 0.400000 +325 427 0.400000 +325 471 0.400000 +325 475 0.400000 +325 552 0.400000 +325 630 0.400000 +325 647 0.400000 +325 757 0.400000 +325 791 0.400000 +326 114 0.400000 +326 224 0.400000 +326 309 0.400000 +326 429 0.400000 +326 446 0.400000 +326 514 0.400000 +326 541 0.400000 +326 620 0.400000 +326 690 0.400000 +326 710 0.400000 +326 773 0.400000 +327 87 0.400000 +327 233 0.400000 +327 258 0.400000 +327 400 0.400000 +327 432 0.400000 +327 435 0.400000 +327 507 0.400000 +327 530 0.400000 +327 554 0.400000 +327 587 0.400000 +327 626 0.400000 +327 643 0.400000 +327 712 0.400000 +327 730 0.400000 +327 781 0.400000 +327 782 0.400000 +327 795 0.400000 +328 1 0.400000 +328 121 0.400000 +328 128 0.400000 +328 170 0.400000 +328 219 0.400000 +328 222 0.400000 +328 278 0.400000 +328 297 0.400000 +328 300 0.400000 +328 313 0.400000 +328 366 0.400000 +328 534 0.400000 +328 554 0.400000 +328 567 0.400000 +328 598 0.400000 +328 651 0.400000 +328 674 0.400000 +328 704 0.400000 +328 723 0.400000 +328 755 0.400000 +329 29 0.400000 +329 85 0.400000 +329 101 0.400000 +329 128 0.400000 +329 162 0.400000 +329 185 0.400000 +329 348 0.400000 +329 410 0.400000 +329 460 0.400000 +329 478 0.400000 +330 53 0.400000 +330 206 0.400000 +330 236 0.400000 +330 259 0.400000 +330 310 0.400000 +330 390 0.400000 +330 462 0.400000 +330 483 0.400000 +330 498 0.400000 +330 574 0.400000 +330 591 0.400000 +330 659 0.400000 +330 678 0.400000 +330 695 0.400000 +330 700 0.400000 +330 713 0.400000 +330 756 0.400000 +331 2 0.400000 +331 3 0.400000 +331 56 0.400000 +331 98 0.400000 +331 158 0.400000 +331 210 0.400000 +331 255 0.400000 +331 291 0.400000 +331 300 0.400000 +331 318 0.400000 +331 363 0.400000 +331 402 0.400000 +331 404 0.400000 +331 416 0.400000 +331 478 0.400000 +331 482 0.400000 +331 551 0.400000 +331 591 0.400000 +331 663 0.400000 +331 706 0.400000 +331 711 0.400000 +331 719 0.400000 +331 773 0.400000 +331 781 0.400000 +331 797 0.400000 +332 218 0.400000 +332 226 0.400000 +332 231 0.400000 +332 244 0.400000 +332 246 0.400000 +332 261 0.400000 +332 290 0.400000 +332 294 0.400000 +332 314 0.400000 +332 354 0.400000 +332 398 0.400000 +332 412 0.400000 +332 534 0.400000 +332 760 0.400000 +332 793 0.400000 +333 22 0.400000 +333 32 0.400000 +333 50 0.400000 +333 55 0.400000 +333 73 0.400000 +333 83 0.400000 +333 105 0.400000 +333 227 0.400000 +333 284 0.400000 +333 355 0.400000 +333 402 0.400000 +333 571 0.400000 +333 637 0.400000 +333 663 0.400000 +333 686 0.400000 +333 749 0.400000 +333 777 0.400000 +334 28 0.400000 +334 75 0.400000 +334 134 0.400000 +334 213 0.400000 +334 295 0.400000 +334 302 0.400000 +334 305 0.400000 +334 376 0.400000 +334 396 0.400000 +334 409 0.400000 +334 512 0.400000 +334 529 0.400000 +334 541 0.400000 +334 544 0.400000 +334 723 0.400000 +334 734 0.400000 +334 789 0.400000 +334 799 0.400000 +335 16 0.400000 +335 107 0.400000 +335 282 0.400000 +335 485 0.400000 +335 505 0.400000 +335 616 0.400000 +336 26 0.400000 +336 40 0.400000 +336 63 0.400000 +336 104 0.400000 +336 168 0.400000 +336 198 0.400000 +336 205 0.400000 +336 241 0.400000 +336 443 0.400000 +336 453 0.400000 +336 529 0.400000 +336 535 0.400000 +336 540 0.400000 +336 629 0.400000 +336 686 0.400000 +336 762 0.400000 +336 793 0.400000 +337 13 0.400000 +337 99 0.400000 +337 100 0.400000 +337 118 0.400000 +337 119 0.400000 +337 154 0.400000 +337 169 0.400000 +337 197 0.400000 +337 201 0.400000 +337 248 0.400000 +337 290 0.400000 +337 323 0.400000 +337 359 0.400000 +337 401 0.400000 +337 433 0.400000 +337 451 0.400000 +337 507 0.400000 +337 517 0.400000 +337 534 0.400000 +337 623 0.400000 +337 643 0.400000 +337 703 0.400000 +337 753 0.400000 +337 795 0.400000 +337 800 0.400000 +338 133 0.400000 +338 248 0.400000 +338 251 0.400000 +338 381 0.400000 +338 384 0.400000 +338 555 0.400000 +338 592 0.400000 +338 691 0.400000 +338 750 0.400000 +338 796 0.400000 +339 44 0.400000 +339 104 0.400000 +339 246 0.400000 +339 361 0.400000 +339 375 0.400000 +339 384 0.400000 +339 474 0.400000 +339 487 0.400000 +339 508 0.400000 +339 617 0.400000 +339 668 0.400000 +339 674 0.400000 +339 787 0.400000 +340 50 0.400000 +340 94 0.400000 +340 112 0.400000 +340 118 0.400000 +340 264 0.400000 +340 335 0.400000 +340 373 0.400000 +340 375 0.400000 +340 427 0.400000 +340 465 0.400000 +340 562 0.400000 +340 564 0.400000 +340 703 0.400000 +340 705 0.400000 +340 775 0.400000 +341 16 0.400000 +341 44 0.400000 +341 108 0.400000 +341 146 0.400000 +341 273 0.400000 +341 359 0.400000 +341 387 0.400000 +341 429 0.400000 +341 552 0.400000 +341 636 0.400000 +341 643 0.400000 +341 722 0.400000 +342 18 0.400000 +342 42 0.400000 +342 43 0.400000 +342 96 0.400000 +342 254 0.400000 +342 257 0.400000 +342 302 0.400000 +342 407 0.400000 +342 419 0.400000 +342 444 0.400000 +342 491 0.400000 +342 553 0.400000 +342 580 0.400000 +342 618 0.400000 +342 639 0.400000 +342 662 0.400000 +342 696 0.400000 +343 31 0.400000 +343 70 0.400000 +343 116 0.400000 +343 174 0.400000 +343 228 0.400000 +343 230 0.400000 +343 339 0.400000 +343 412 0.400000 +343 505 0.400000 +343 540 0.400000 +343 553 0.400000 +343 582 0.400000 +343 597 0.400000 +343 647 0.400000 +343 656 0.400000 +343 665 0.400000 +343 696 0.400000 +343 710 0.400000 +343 725 0.400000 +343 734 0.400000 +343 753 0.400000 +343 758 0.400000 +344 111 0.400000 +344 174 0.400000 +344 192 0.400000 +344 226 0.400000 +344 270 0.400000 +344 353 0.400000 +344 410 0.400000 +344 457 0.400000 +344 465 0.400000 +344 473 0.400000 +344 491 0.400000 +344 531 0.400000 +344 559 0.400000 +344 569 0.400000 +344 662 0.400000 +344 687 0.400000 +344 731 0.400000 +344 746 0.400000 +344 759 0.400000 +344 789 0.400000 +345 5 0.400000 +345 21 0.400000 +345 41 0.400000 +345 136 0.400000 +345 174 0.400000 +345 181 0.400000 +345 234 0.400000 +345 260 0.400000 +345 264 0.400000 +345 273 0.400000 +345 315 0.400000 +345 400 0.400000 +345 517 0.400000 +345 596 0.400000 +345 617 0.400000 +345 659 0.400000 +345 701 0.400000 +345 763 0.400000 +345 786 0.400000 +345 800 0.400000 +346 7 0.400000 +346 82 0.400000 +346 128 0.400000 +346 280 0.400000 +346 348 0.400000 +346 361 0.400000 +346 417 0.400000 +346 436 0.400000 +346 449 0.400000 +346 577 0.400000 +346 627 0.400000 +346 658 0.400000 +347 7 0.400000 +347 13 0.400000 +347 50 0.400000 +347 77 0.400000 +347 89 0.400000 +347 140 0.400000 +347 288 0.400000 +347 328 0.400000 +347 365 0.400000 +347 381 0.400000 +347 517 0.400000 +347 540 0.400000 +347 546 0.400000 +347 579 0.400000 +347 581 0.400000 +347 588 0.400000 +347 597 0.400000 +347 608 0.400000 +347 647 0.400000 +348 20 0.400000 +348 56 0.400000 +348 58 0.400000 +348 62 0.400000 +348 106 0.400000 +348 184 0.400000 +348 194 0.400000 +348 201 0.400000 +348 225 0.400000 +348 258 0.400000 +348 274 0.400000 +348 308 0.400000 +348 315 0.400000 +348 373 0.400000 +348 438 0.400000 +348 606 0.400000 +348 617 0.400000 +348 623 0.400000 +348 633 0.400000 +348 644 0.400000 +348 782 0.400000 +349 13 0.400000 +349 220 0.400000 +349 269 0.400000 +349 354 0.400000 +349 382 0.400000 +349 461 0.400000 +349 767 0.400000 +349 776 0.400000 +349 785 0.400000 +349 796 0.400000 +350 58 0.400000 +350 135 0.400000 +350 329 0.400000 +350 354 0.400000 +350 433 0.400000 +350 469 0.400000 +350 490 0.400000 +350 499 0.400000 +350 500 0.400000 +350 595 0.400000 +350 679 0.400000 +350 718 0.400000 +350 749 0.400000 +351 2 0.400000 +351 62 0.400000 +351 128 0.400000 +351 157 0.400000 +351 278 0.400000 +351 281 0.400000 +351 285 0.400000 +351 288 0.400000 +351 305 0.400000 +351 369 0.400000 +351 447 0.400000 +351 473 0.400000 +351 505 0.400000 +351 609 0.400000 +351 670 0.400000 +351 741 0.400000 +351 758 0.400000 +352 67 0.400000 +352 98 0.400000 +352 100 0.400000 +352 122 0.400000 +352 280 0.400000 +352 315 0.400000 +352 341 0.400000 +352 385 0.400000 +352 482 0.400000 +352 587 0.400000 +352 641 0.400000 +352 654 0.400000 +352 688 0.400000 +352 689 0.400000 +352 699 0.400000 +352 779 0.400000 +352 796 0.400000 +353 29 0.400000 +353 98 0.400000 +353 156 0.400000 +353 184 0.400000 +353 200 0.400000 +353 208 0.400000 +353 286 0.400000 +353 337 0.400000 +353 458 0.400000 +353 553 0.400000 +353 557 0.400000 +353 563 0.400000 +353 578 0.400000 +353 652 0.400000 +353 691 0.400000 +353 703 0.400000 +353 725 0.400000 +353 753 0.400000 +353 757 0.400000 +354 138 0.400000 +354 155 0.400000 +354 157 0.400000 +354 207 0.400000 +354 220 0.400000 +354 275 0.400000 +354 373 0.400000 +354 401 0.400000 +354 528 0.400000 +354 537 0.400000 +354 668 0.400000 +354 695 0.400000 +354 741 0.400000 +354 750 0.400000 +354 756 0.400000 +354 780 0.400000 +355 78 0.400000 +355 101 0.400000 +355 148 0.400000 +355 280 0.400000 +355 389 0.400000 +355 462 0.400000 +355 472 0.400000 +355 481 0.400000 +355 498 0.400000 +355 534 0.400000 +355 623 0.400000 +355 691 0.400000 +355 696 0.400000 +355 714 0.400000 +355 717 0.400000 +355 740 0.400000 +355 774 0.400000 +355 791 0.400000 +356 3 0.400000 +356 86 0.400000 +356 91 0.400000 +356 144 0.400000 +356 210 0.400000 +356 339 0.400000 +356 408 0.400000 +356 522 0.400000 +356 538 0.400000 +356 545 0.400000 +356 552 0.400000 +356 582 0.400000 +356 644 0.400000 +356 701 0.400000 +356 709 0.400000 +356 790 0.400000 +357 36 0.400000 +357 78 0.400000 +357 129 0.400000 +357 243 0.400000 +357 323 0.400000 +357 379 0.400000 +357 451 0.400000 +357 543 0.400000 +357 547 0.400000 +357 639 0.400000 +357 728 0.400000 +357 736 0.400000 +357 744 0.400000 +357 785 0.400000 +358 70 0.400000 +358 189 0.400000 +358 248 0.400000 +358 314 0.400000 +358 327 0.400000 +358 369 0.400000 +358 440 0.400000 +358 589 0.400000 +358 605 0.400000 +358 676 0.400000 +358 747 0.400000 +359 1 0.400000 +359 23 0.400000 +359 77 0.400000 +359 117 0.400000 +359 149 0.400000 +359 151 0.400000 +359 170 0.400000 +359 249 0.400000 +359 308 0.400000 +359 336 0.400000 +359 386 0.400000 +359 423 0.400000 +359 440 0.400000 +359 469 0.400000 +359 511 0.400000 +359 667 0.400000 +359 730 0.400000 +359 769 0.400000 +360 39 0.400000 +360 94 0.400000 +360 123 0.400000 +360 124 0.400000 +360 163 0.400000 +360 186 0.400000 +360 237 0.400000 +360 331 0.400000 +360 384 0.400000 +360 450 0.400000 +360 496 0.400000 +360 531 0.400000 +360 559 0.400000 +360 570 0.400000 +360 683 0.400000 +360 748 0.400000 +360 750 0.400000 +361 97 0.400000 +361 144 0.400000 +361 165 0.400000 +361 179 0.400000 +361 187 0.400000 +361 218 0.400000 +361 240 0.400000 +361 282 0.400000 +361 332 0.400000 +361 384 0.400000 +361 422 0.400000 +361 496 0.400000 +361 529 0.400000 +361 566 0.400000 +361 600 0.400000 +361 685 0.400000 +361 751 0.400000 +362 79 0.400000 +362 114 0.400000 +362 119 0.400000 +362 141 0.400000 +362 166 0.400000 +362 184 0.400000 +362 192 0.400000 +362 196 0.400000 +362 242 0.400000 +362 265 0.400000 +362 294 0.400000 +362 402 0.400000 +362 414 0.400000 +362 461 0.400000 +362 466 0.400000 +362 490 0.400000 +362 662 0.400000 +362 704 0.400000 +362 744 0.400000 +363 6 0.400000 +363 49 0.400000 +363 96 0.400000 +363 162 0.400000 +363 191 0.400000 +363 207 0.400000 +363 251 0.400000 +363 252 0.400000 +363 269 0.400000 +363 311 0.400000 +363 329 0.400000 +363 364 0.400000 +363 445 0.400000 +363 452 0.400000 +363 575 0.400000 +363 625 0.400000 +363 627 0.400000 +363 657 0.400000 +363 667 0.400000 +363 706 0.400000 +363 797 0.400000 +364 50 0.400000 +364 58 0.400000 +364 74 0.400000 +364 75 0.400000 +364 138 0.400000 +364 153 0.400000 +364 179 0.400000 +364 284 0.400000 +364 345 0.400000 +364 385 0.400000 +364 433 0.400000 +364 554 0.400000 +364 619 0.400000 +364 652 0.400000 +364 663 0.400000 +364 695 0.400000 +364 711 0.400000 +364 762 0.400000 +364 789 0.400000 +365 11 0.400000 +365 43 0.400000 +365 44 0.400000 +365 77 0.400000 +365 90 0.400000 +365 106 0.400000 +365 197 0.400000 +365 275 0.400000 +365 326 0.400000 +365 377 0.400000 +365 388 0.400000 +365 453 0.400000 +365 623 0.400000 +365 651 0.400000 +365 682 0.400000 +365 749 0.400000 +365 767 0.400000 +366 20 0.400000 +366 70 0.400000 +366 80 0.400000 +366 144 0.400000 +366 219 0.400000 +366 237 0.400000 +366 256 0.400000 +366 263 0.400000 +366 431 0.400000 +366 467 0.400000 +366 488 0.400000 +366 494 0.400000 +366 531 0.400000 +366 564 0.400000 +366 614 0.400000 +366 721 0.400000 +366 746 0.400000 +366 770 0.400000 +366 798 0.400000 +367 99 0.400000 +367 197 0.400000 +367 214 0.400000 +367 229 0.400000 +367 232 0.400000 +367 239 0.400000 +367 247 0.400000 +367 250 0.400000 +367 343 0.400000 +367 387 0.400000 +367 424 0.400000 +367 578 0.400000 +367 598 0.400000 +367 606 0.400000 +367 642 0.400000 +367 660 0.400000 +367 662 0.400000 +367 696 0.400000 +367 697 0.400000 +367 722 0.400000 +367 752 0.400000 +367 782 0.400000 +368 74 0.400000 +368 127 0.400000 +368 134 0.400000 +368 208 0.400000 +368 381 0.400000 +368 405 0.400000 +368 443 0.400000 +368 492 0.400000 +368 558 0.400000 +368 568 0.400000 +368 593 0.400000 +368 635 0.400000 +368 659 0.400000 +368 691 0.400000 +368 700 0.400000 +368 717 0.400000 +368 770 0.400000 +369 76 0.400000 +369 297 0.400000 +369 324 0.400000 +369 372 0.400000 +369 446 0.400000 +369 511 0.400000 +369 582 0.400000 +369 609 0.400000 +369 617 0.400000 +369 641 0.400000 +369 693 0.400000 +369 707 0.400000 +369 714 0.400000 +369 715 0.400000 +369 746 0.400000 +369 747 0.400000 +370 17 0.400000 +370 29 0.400000 +370 47 0.400000 +370 71 0.400000 +370 112 0.400000 +370 116 0.400000 +370 140 0.400000 +370 186 0.400000 +370 248 0.400000 +370 251 0.400000 +370 281 0.400000 +370 282 0.400000 +370 319 0.400000 +370 360 0.400000 +370 404 0.400000 +370 449 0.400000 +370 473 0.400000 +370 486 0.400000 +370 550 0.400000 +370 560 0.400000 +370 569 0.400000 +370 598 0.400000 +370 799 0.400000 +371 26 0.400000 +371 105 0.400000 +371 111 0.400000 +371 149 0.400000 +371 224 0.400000 +371 253 0.400000 +371 307 0.400000 +371 584 0.400000 +371 606 0.400000 +371 660 0.400000 +371 695 0.400000 +371 741 0.400000 +371 744 0.400000 +371 792 0.400000 +371 793 0.400000 +372 31 0.400000 +372 46 0.400000 +372 171 0.400000 +372 218 0.400000 +372 260 0.400000 +372 291 0.400000 +372 296 0.400000 +372 353 0.400000 +372 441 0.400000 +372 448 0.400000 +372 461 0.400000 +372 496 0.400000 +372 540 0.400000 +372 554 0.400000 +372 588 0.400000 +372 685 0.400000 +372 773 0.400000 +372 778 0.400000 +372 786 0.400000 +373 48 0.400000 +373 54 0.400000 +373 180 0.400000 +373 200 0.400000 +373 217 0.400000 +373 246 0.400000 +373 265 0.400000 +373 325 0.400000 +373 429 0.400000 +373 451 0.400000 +373 527 0.400000 +373 562 0.400000 +373 655 0.400000 +373 663 0.400000 +373 720 0.400000 +373 754 0.400000 +374 23 0.400000 +374 47 0.400000 +374 53 0.400000 +374 124 0.400000 +374 135 0.400000 +374 191 0.400000 +374 262 0.400000 +374 276 0.400000 +374 344 0.400000 +374 374 0.400000 +374 495 0.400000 +374 517 0.400000 +374 528 0.400000 +374 623 0.400000 +374 707 0.400000 +374 732 0.400000 +374 773 0.400000 +375 90 0.400000 +375 147 0.400000 +375 214 0.400000 +375 270 0.400000 +375 309 0.400000 +375 385 0.400000 +375 431 0.400000 +375 454 0.400000 +375 466 0.400000 +375 469 0.400000 +375 673 0.400000 +375 761 0.400000 +375 790 0.400000 +376 132 0.400000 +376 177 0.400000 +376 179 0.400000 +376 290 0.400000 +376 379 0.400000 +376 454 0.400000 +376 506 0.400000 +376 580 0.400000 +376 589 0.400000 +376 621 0.400000 +376 788 0.400000 +377 35 0.400000 +377 71 0.400000 +377 93 0.400000 +377 106 0.400000 +377 220 0.400000 +377 278 0.400000 +377 281 0.400000 +377 297 0.400000 +377 301 0.400000 +377 444 0.400000 +377 471 0.400000 +377 521 0.400000 +377 556 0.400000 +377 591 0.400000 +377 606 0.400000 +377 644 0.400000 +377 761 0.400000 +377 773 0.400000 +377 781 0.400000 +377 790 0.400000 +378 23 0.400000 +378 105 0.400000 +378 248 0.400000 +378 259 0.400000 +378 353 0.400000 +378 364 0.400000 +378 388 0.400000 +378 442 0.400000 +378 486 0.400000 +378 501 0.400000 +378 696 0.400000 +378 729 0.400000 +378 753 0.400000 +378 763 0.400000 +378 781 0.400000 +378 786 0.400000 +378 794 0.400000 +379 8 0.400000 +379 108 0.400000 +379 114 0.400000 +379 133 0.400000 +379 157 0.400000 +379 167 0.400000 +379 230 0.400000 +379 245 0.400000 +379 310 0.400000 +379 336 0.400000 +379 357 0.400000 +379 414 0.400000 +379 423 0.400000 +379 536 0.400000 +379 560 0.400000 +379 606 0.400000 +379 671 0.400000 +379 752 0.400000 +379 786 0.400000 +380 7 0.400000 +380 20 0.400000 +380 38 0.400000 +380 206 0.400000 +380 207 0.400000 +380 222 0.400000 +380 251 0.400000 +380 292 0.400000 +380 350 0.400000 +380 420 0.400000 +380 482 0.400000 +380 672 0.400000 +380 719 0.400000 +380 727 0.400000 +380 734 0.400000 +380 770 0.400000 +380 799 0.400000 +381 10 0.400000 +381 52 0.400000 +381 160 0.400000 +381 175 0.400000 +381 194 0.400000 +381 210 0.400000 +381 236 0.400000 +381 432 0.400000 +381 468 0.400000 +381 471 0.400000 +381 503 0.400000 +381 536 0.400000 +381 589 0.400000 +381 626 0.400000 +381 659 0.400000 +381 696 0.400000 +382 40 0.400000 +382 282 0.400000 +382 290 0.400000 +382 291 0.400000 +382 311 0.400000 +382 340 0.400000 +382 462 0.400000 +382 469 0.400000 +382 501 0.400000 +382 514 0.400000 +382 556 0.400000 +382 558 0.400000 +382 569 0.400000 +382 605 0.400000 +382 616 0.400000 +382 650 0.400000 +382 658 0.400000 +382 744 0.400000 +383 114 0.400000 +383 131 0.400000 +383 208 0.400000 +383 298 0.400000 +383 302 0.400000 +383 324 0.400000 +383 368 0.400000 +383 509 0.400000 +383 736 0.400000 +383 761 0.400000 +384 48 0.400000 +384 54 0.400000 +384 70 0.400000 +384 87 0.400000 +384 132 0.400000 +384 169 0.400000 +384 180 0.400000 +384 240 0.400000 +384 246 0.400000 +384 315 0.400000 +384 334 0.400000 +384 417 0.400000 +384 489 0.400000 +384 502 0.400000 +384 564 0.400000 +384 653 0.400000 +384 688 0.400000 +384 743 0.400000 +384 782 0.400000 +384 783 0.400000 +384 791 0.400000 +385 3 0.400000 +385 53 0.400000 +385 143 0.400000 +385 145 0.400000 +385 177 0.400000 +385 264 0.400000 +385 354 0.400000 +385 422 0.400000 +385 458 0.400000 +385 562 0.400000 +385 659 0.400000 +385 710 0.400000 +385 737 0.400000 +385 754 0.400000 +385 787 0.400000 +386 1 0.400000 +386 78 0.400000 +386 131 0.400000 +386 148 0.400000 +386 157 0.400000 +386 263 0.400000 +386 289 0.400000 +386 296 0.400000 +386 354 0.400000 +386 486 0.400000 +386 511 0.400000 +386 521 0.400000 +386 643 0.400000 +386 652 0.400000 +386 693 0.400000 +386 714 0.400000 +386 732 0.400000 +386 761 0.400000 +386 800 0.400000 +387 39 0.400000 +387 50 0.400000 +387 73 0.400000 +387 74 0.400000 +387 90 0.400000 +387 211 0.400000 +387 235 0.400000 +387 305 0.400000 +387 329 0.400000 +387 338 0.400000 +387 378 0.400000 +387 445 0.400000 +387 487 0.400000 +387 516 0.400000 +387 567 0.400000 +387 644 0.400000 +387 776 0.400000 +388 56 0.400000 +388 94 0.400000 +388 138 0.400000 +388 222 0.400000 +388 237 0.400000 +388 244 0.400000 +388 259 0.400000 +388 362 0.400000 +388 403 0.400000 +388 414 0.400000 +388 445 0.400000 +388 583 0.400000 +388 766 0.400000 +389 2 0.400000 +389 61 0.400000 +389 107 0.400000 +389 136 0.400000 +389 137 0.400000 +389 225 0.400000 +389 257 0.400000 +389 265 0.400000 +389 294 0.400000 +389 528 0.400000 +389 577 0.400000 +389 596 0.400000 +389 661 0.400000 +389 750 0.400000 +390 8 0.400000 +390 27 0.400000 +390 51 0.400000 +390 144 0.400000 +390 160 0.400000 +390 164 0.400000 +390 216 0.400000 +390 339 0.400000 +390 347 0.400000 +390 368 0.400000 +390 415 0.400000 +390 447 0.400000 +390 463 0.400000 +390 537 0.400000 +390 587 0.400000 +390 591 0.400000 +390 706 0.400000 +390 733 0.400000 +390 751 0.400000 +391 139 0.400000 +391 143 0.400000 +391 193 0.400000 +391 216 0.400000 +391 238 0.400000 +391 255 0.400000 +391 259 0.400000 +391 448 0.400000 +391 465 0.400000 +391 577 0.400000 +391 578 0.400000 +391 588 0.400000 +391 639 0.400000 +391 644 0.400000 +391 690 0.400000 +391 750 0.400000 +391 759 0.400000 +392 31 0.400000 +392 86 0.400000 +392 121 0.400000 +392 132 0.400000 +392 158 0.400000 +392 195 0.400000 +392 211 0.400000 +392 269 0.400000 +392 281 0.400000 +392 283 0.400000 +392 487 0.400000 +392 495 0.400000 +392 538 0.400000 +392 616 0.400000 +392 654 0.400000 +392 656 0.400000 +392 693 0.400000 +392 792 0.400000 +393 10 0.400000 +393 31 0.400000 +393 48 0.400000 +393 58 0.400000 +393 65 0.400000 +393 132 0.400000 +393 136 0.400000 +393 148 0.400000 +393 270 0.400000 +393 280 0.400000 +393 349 0.400000 +393 390 0.400000 +393 413 0.400000 +393 427 0.400000 +393 430 0.400000 +393 606 0.400000 +393 632 0.400000 +393 646 0.400000 +393 657 0.400000 +393 742 0.400000 +393 783 0.400000 +394 40 0.400000 +394 95 0.400000 +394 150 0.400000 +394 153 0.400000 +394 188 0.400000 +394 284 0.400000 +394 372 0.400000 +394 412 0.400000 +394 425 0.400000 +394 473 0.400000 +394 492 0.400000 +394 505 0.400000 +394 563 0.400000 +394 641 0.400000 +394 687 0.400000 +395 171 0.400000 +395 230 0.400000 +395 251 0.400000 +395 278 0.400000 +395 323 0.400000 +395 343 0.400000 +395 346 0.400000 +395 352 0.400000 +395 487 0.400000 +395 508 0.400000 +395 567 0.400000 +395 596 0.400000 +395 686 0.400000 +395 696 0.400000 +395 705 0.400000 +396 24 0.400000 +396 38 0.400000 +396 115 0.400000 +396 125 0.400000 +396 225 0.400000 +396 227 0.400000 +396 230 0.400000 +396 259 0.400000 +396 320 0.400000 +396 332 0.400000 +396 340 0.400000 +396 368 0.400000 +396 437 0.400000 +396 641 0.400000 +396 701 0.400000 +396 713 0.400000 +396 748 0.400000 +397 39 0.400000 +397 55 0.400000 +397 135 0.400000 +397 140 0.400000 +397 181 0.400000 +397 206 0.400000 +397 225 0.400000 +397 242 0.400000 +397 253 0.400000 +397 256 0.400000 +397 271 0.400000 +397 348 0.400000 +397 355 0.400000 +397 366 0.400000 +397 406 0.400000 +397 427 0.400000 +397 428 0.400000 +397 479 0.400000 +397 484 0.400000 +397 596 0.400000 +397 773 0.400000 +398 19 0.400000 +398 127 0.400000 +398 143 0.400000 +398 320 0.400000 +398 412 0.400000 +398 444 0.400000 +398 485 0.400000 +398 486 0.400000 +398 488 0.400000 +398 551 0.400000 +398 553 0.400000 +398 566 0.400000 +398 694 0.400000 +398 725 0.400000 +398 740 0.400000 +398 744 0.400000 +399 181 0.400000 +399 230 0.400000 +399 247 0.400000 +399 293 0.400000 +399 324 0.400000 +399 438 0.400000 +399 465 0.400000 +399 473 0.400000 +399 482 0.400000 +399 495 0.400000 +399 497 0.400000 +399 508 0.400000 +399 584 0.400000 +399 638 0.400000 +399 652 0.400000 +399 727 0.400000 +399 730 0.400000 +399 736 0.400000 +399 772 0.400000 +400 36 0.400000 +400 205 0.400000 +400 359 0.400000 +400 424 0.400000 +400 580 0.400000 +400 677 0.400000 +400 765 0.400000 +400 782 0.400000 +401 10 0.400000 +401 86 0.400000 +401 112 0.400000 +401 161 0.400000 +401 194 0.400000 +401 229 0.400000 +401 391 0.400000 +401 448 0.400000 +401 495 0.400000 +401 544 0.400000 +401 659 0.400000 +401 668 0.400000 +401 680 0.400000 +401 690 0.400000 +401 729 0.400000 +402 52 0.400000 +402 106 0.400000 +402 152 0.400000 +402 308 0.400000 +402 364 0.400000 +402 415 0.400000 +402 498 0.400000 +402 505 0.400000 +402 514 0.400000 +402 536 0.400000 +402 599 0.400000 +402 632 0.400000 +402 676 0.400000 +402 703 0.400000 +402 714 0.400000 +402 750 0.400000 +402 773 0.400000 +403 35 0.400000 +403 71 0.400000 +403 131 0.400000 +403 134 0.400000 +403 140 0.400000 +403 146 0.400000 +403 165 0.400000 +403 287 0.400000 +403 317 0.400000 +403 328 0.400000 +403 399 0.400000 +403 437 0.400000 +403 459 0.400000 +403 482 0.400000 +403 523 0.400000 +403 546 0.400000 +403 611 0.400000 +403 624 0.400000 +403 710 0.400000 +404 214 0.400000 +404 277 0.400000 +404 280 0.400000 +404 300 0.400000 +404 340 0.400000 +404 382 0.400000 +404 481 0.400000 +404 509 0.400000 +404 601 0.400000 +404 610 0.400000 +404 762 0.400000 +405 14 0.400000 +405 102 0.400000 +405 125 0.400000 +405 236 0.400000 +405 276 0.400000 +405 301 0.400000 +405 321 0.400000 +405 349 0.400000 +405 396 0.400000 +405 415 0.400000 +405 420 0.400000 +405 431 0.400000 +405 434 0.400000 +405 551 0.400000 +405 576 0.400000 +405 614 0.400000 +405 622 0.400000 +405 634 0.400000 +405 686 0.400000 +405 700 0.400000 +405 736 0.400000 +405 764 0.400000 +406 9 0.400000 +406 26 0.400000 +406 34 0.400000 +406 36 0.400000 +406 119 0.400000 +406 140 0.400000 +406 244 0.400000 +406 293 0.400000 +406 312 0.400000 +406 325 0.400000 +406 390 0.400000 +406 531 0.400000 +406 571 0.400000 +406 675 0.400000 +407 26 0.400000 +407 64 0.400000 +407 200 0.400000 +407 203 0.400000 +407 243 0.400000 +407 244 0.400000 +407 291 0.400000 +407 342 0.400000 +407 420 0.400000 +407 430 0.400000 +407 444 0.400000 +407 474 0.400000 +407 499 0.400000 +407 569 0.400000 +407 585 0.400000 +407 586 0.400000 +407 711 0.400000 +408 18 0.400000 +408 31 0.400000 +408 48 0.400000 +408 111 0.400000 +408 170 0.400000 +408 233 0.400000 +408 273 0.400000 +408 345 0.400000 +408 348 0.400000 +408 378 0.400000 +408 404 0.400000 +408 549 0.400000 +408 740 0.400000 +408 765 0.400000 +408 776 0.400000 +409 11 0.400000 +409 47 0.400000 +409 89 0.400000 +409 152 0.400000 +409 176 0.400000 +409 341 0.400000 +409 405 0.400000 +409 520 0.400000 +409 532 0.400000 +409 595 0.400000 +409 598 0.400000 +409 648 0.400000 +409 679 0.400000 +409 751 0.400000 +410 51 0.400000 +410 52 0.400000 +410 157 0.400000 +410 195 0.400000 +410 199 0.400000 +410 217 0.400000 +410 327 0.400000 +410 343 0.400000 +410 365 0.400000 +410 449 0.400000 +410 451 0.400000 +410 543 0.400000 +410 560 0.400000 +410 564 0.400000 +410 590 0.400000 +410 646 0.400000 +410 711 0.400000 +410 763 0.400000 +411 29 0.400000 +411 41 0.400000 +411 190 0.400000 +411 320 0.400000 +411 441 0.400000 +411 444 0.400000 +411 526 0.400000 +411 538 0.400000 +411 636 0.400000 +411 690 0.400000 +412 28 0.400000 +412 105 0.400000 +412 182 0.400000 +412 191 0.400000 +412 280 0.400000 +412 360 0.400000 +412 362 0.400000 +412 415 0.400000 +412 421 0.400000 +412 424 0.400000 +412 437 0.400000 +412 447 0.400000 +412 503 0.400000 +412 508 0.400000 +412 527 0.400000 +412 530 0.400000 +412 688 0.400000 +412 707 0.400000 +412 736 0.400000 +413 14 0.400000 +413 60 0.400000 +413 393 0.400000 +413 470 0.400000 +413 474 0.400000 +413 480 0.400000 +413 524 0.400000 +413 621 0.400000 +413 622 0.400000 +413 649 0.400000 +414 56 0.400000 +414 229 0.400000 +414 245 0.400000 +414 259 0.400000 +414 437 0.400000 +414 548 0.400000 +414 589 0.400000 +414 613 0.400000 +414 651 0.400000 +414 699 0.400000 +414 746 0.400000 +414 769 0.400000 +415 177 0.400000 +415 208 0.400000 +415 276 0.400000 +415 314 0.400000 +415 323 0.400000 +415 375 0.400000 +415 472 0.400000 +415 624 0.400000 +415 647 0.400000 +415 730 0.400000 +416 45 0.400000 +416 100 0.400000 +416 121 0.400000 +416 403 0.400000 +416 447 0.400000 +416 454 0.400000 +416 510 0.400000 +416 546 0.400000 +416 562 0.400000 +416 659 0.400000 +416 697 0.400000 +416 718 0.400000 +416 759 0.400000 +417 36 0.400000 +417 154 0.400000 +417 159 0.400000 +417 209 0.400000 +417 238 0.400000 +417 494 0.400000 +417 535 0.400000 +417 562 0.400000 +417 601 0.400000 +417 641 0.400000 +417 650 0.400000 +417 668 0.400000 +417 673 0.400000 +417 762 0.400000 +417 787 0.400000 +417 797 0.400000 +418 165 0.400000 +418 294 0.400000 +418 334 0.400000 +418 347 0.400000 +418 365 0.400000 +418 386 0.400000 +418 430 0.400000 +418 442 0.400000 +418 496 0.400000 +418 504 0.400000 +418 532 0.400000 +418 535 0.400000 +418 727 0.400000 +418 735 0.400000 +418 755 0.400000 +418 761 0.400000 +418 765 0.400000 +418 792 0.400000 +419 53 0.400000 +419 103 0.400000 +419 109 0.400000 +419 146 0.400000 +419 213 0.400000 +419 248 0.400000 +419 389 0.400000 +419 429 0.400000 +419 490 0.400000 +419 508 0.400000 +419 712 0.400000 +420 244 0.400000 +420 271 0.400000 +420 389 0.400000 +420 401 0.400000 +420 476 0.400000 +420 494 0.400000 +420 502 0.400000 +420 535 0.400000 +420 539 0.400000 +420 599 0.400000 +420 642 0.400000 +420 657 0.400000 +420 684 0.400000 +420 745 0.400000 +420 771 0.400000 +421 55 0.400000 +421 117 0.400000 +421 125 0.400000 +421 145 0.400000 +421 162 0.400000 +421 189 0.400000 +421 214 0.400000 +421 222 0.400000 +421 255 0.400000 +421 262 0.400000 +421 266 0.400000 +421 280 0.400000 +421 465 0.400000 +421 466 0.400000 +421 471 0.400000 +421 475 0.400000 +421 534 0.400000 +421 568 0.400000 +421 685 0.400000 +421 705 0.400000 +421 756 0.400000 +421 760 0.400000 +422 232 0.400000 +422 244 0.400000 +422 276 0.400000 +422 279 0.400000 +422 310 0.400000 +422 319 0.400000 +422 392 0.400000 +422 436 0.400000 +422 537 0.400000 +422 602 0.400000 +422 731 0.400000 +422 751 0.400000 +423 100 0.400000 +423 169 0.400000 +423 252 0.400000 +423 336 0.400000 +423 414 0.400000 +423 714 0.400000 +423 733 0.400000 +423 782 0.400000 +423 789 0.400000 +423 799 0.400000 +424 7 0.400000 +424 10 0.400000 +424 30 0.400000 +424 221 0.400000 +424 240 0.400000 +424 287 0.400000 +424 324 0.400000 +424 336 0.400000 +424 359 0.400000 +424 371 0.400000 +424 399 0.400000 +424 420 0.400000 +424 493 0.400000 +424 555 0.400000 +424 662 0.400000 +424 713 0.400000 +424 776 0.400000 +425 175 0.400000 +425 239 0.400000 +425 355 0.400000 +425 361 0.400000 +425 424 0.400000 +425 433 0.400000 +425 461 0.400000 +425 462 0.400000 +425 504 0.400000 +425 535 0.400000 +425 550 0.400000 +425 562 0.400000 +425 613 0.400000 +425 644 0.400000 +425 664 0.400000 +425 726 0.400000 +425 739 0.400000 +425 749 0.400000 +425 775 0.400000 +426 9 0.400000 +426 89 0.400000 +426 105 0.400000 +426 114 0.400000 +426 172 0.400000 +426 243 0.400000 +426 419 0.400000 +426 518 0.400000 +426 540 0.400000 +426 583 0.400000 +427 27 0.400000 +427 35 0.400000 +427 98 0.400000 +427 126 0.400000 +427 140 0.400000 +427 231 0.400000 +427 249 0.400000 +427 298 0.400000 +427 318 0.400000 +427 330 0.400000 +427 333 0.400000 +427 378 0.400000 +427 493 0.400000 +427 516 0.400000 +427 560 0.400000 +427 632 0.400000 +428 39 0.400000 +428 66 0.400000 +428 84 0.400000 +428 120 0.400000 +428 205 0.400000 +428 237 0.400000 +428 281 0.400000 +428 353 0.400000 +428 369 0.400000 +428 405 0.400000 +428 505 0.400000 +428 514 0.400000 +428 532 0.400000 +428 538 0.400000 +428 560 0.400000 +428 576 0.400000 +428 605 0.400000 +428 612 0.400000 +428 654 0.400000 +428 709 0.400000 +429 62 0.400000 +429 252 0.400000 +429 276 0.400000 +429 320 0.400000 +429 340 0.400000 +429 344 0.400000 +429 351 0.400000 +429 491 0.400000 +429 528 0.400000 +429 591 0.400000 +429 661 0.400000 +429 672 0.400000 +429 677 0.400000 +429 702 0.400000 +429 718 0.400000 +429 722 0.400000 +429 758 0.400000 +429 788 0.400000 +430 166 0.400000 +430 169 0.400000 +430 182 0.400000 +430 192 0.400000 +430 212 0.400000 +430 345 0.400000 +430 421 0.400000 +430 462 0.400000 +430 498 0.400000 +430 518 0.400000 +430 519 0.400000 +430 569 0.400000 +430 599 0.400000 +430 763 0.400000 +430 780 0.400000 +431 39 0.400000 +431 41 0.400000 +431 132 0.400000 +431 148 0.400000 +431 263 0.400000 +431 291 0.400000 +431 315 0.400000 +431 319 0.400000 +431 475 0.400000 +431 500 0.400000 +431 534 0.400000 +431 657 0.400000 +431 665 0.400000 +431 718 0.400000 +431 744 0.400000 +431 776 0.400000 +432 45 0.400000 +432 98 0.400000 +432 109 0.400000 +432 129 0.400000 +432 135 0.400000 +432 164 0.400000 +432 237 0.400000 +432 316 0.400000 +432 347 0.400000 +432 359 0.400000 +432 447 0.400000 +432 459 0.400000 +432 573 0.400000 +432 597 0.400000 +432 652 0.400000 +432 653 0.400000 +432 662 0.400000 +432 733 0.400000 +432 787 0.400000 +433 1 0.400000 +433 33 0.400000 +433 59 0.400000 +433 76 0.400000 +433 269 0.400000 +433 316 0.400000 +433 337 0.400000 +433 387 0.400000 +433 437 0.400000 +433 475 0.400000 +433 489 0.400000 +433 544 0.400000 +433 550 0.400000 +433 577 0.400000 +433 629 0.400000 +433 677 0.400000 +433 679 0.400000 +433 681 0.400000 +433 728 0.400000 +433 771 0.400000 +434 87 0.400000 +434 92 0.400000 +434 140 0.400000 +434 196 0.400000 +434 210 0.400000 +434 249 0.400000 +434 250 0.400000 +434 302 0.400000 +434 306 0.400000 +434 514 0.400000 +434 536 0.400000 +434 562 0.400000 +434 660 0.400000 +434 685 0.400000 +434 756 0.400000 +435 170 0.400000 +435 200 0.400000 +435 293 0.400000 +435 297 0.400000 +435 383 0.400000 +435 433 0.400000 +435 487 0.400000 +435 563 0.400000 +435 597 0.400000 +436 15 0.400000 +436 21 0.400000 +436 29 0.400000 +436 104 0.400000 +436 138 0.400000 +436 143 0.400000 +436 171 0.400000 +436 248 0.400000 +436 316 0.400000 +436 472 0.400000 +436 496 0.400000 +436 531 0.400000 +436 645 0.400000 +436 690 0.400000 +436 767 0.400000 +436 768 0.400000 +437 48 0.400000 +437 117 0.400000 +437 164 0.400000 +437 193 0.400000 +437 246 0.400000 +437 276 0.400000 +437 295 0.400000 +437 326 0.400000 +437 338 0.400000 +437 452 0.400000 +437 491 0.400000 +437 524 0.400000 +437 528 0.400000 +437 618 0.400000 +437 789 0.400000 +437 796 0.400000 +438 11 0.400000 +438 22 0.400000 +438 81 0.400000 +438 133 0.400000 +438 143 0.400000 +438 169 0.400000 +438 228 0.400000 +438 272 0.400000 +438 339 0.400000 +438 342 0.400000 +438 394 0.400000 +438 467 0.400000 +438 509 0.400000 +438 561 0.400000 +438 563 0.400000 +438 594 0.400000 +438 597 0.400000 +438 662 0.400000 +438 666 0.400000 +438 752 0.400000 +438 763 0.400000 +438 797 0.400000 +439 69 0.400000 +439 85 0.400000 +439 137 0.400000 +439 237 0.400000 +439 410 0.400000 +439 444 0.400000 +439 454 0.400000 +439 462 0.400000 +439 587 0.400000 +439 667 0.400000 +439 767 0.400000 +439 769 0.400000 +440 21 0.400000 +440 106 0.400000 +440 142 0.400000 +440 143 0.400000 +440 286 0.400000 +440 451 0.400000 +440 477 0.400000 +440 663 0.400000 +440 732 0.400000 +440 746 0.400000 +441 58 0.400000 +441 78 0.400000 +441 96 0.400000 +441 142 0.400000 +441 168 0.400000 +441 336 0.400000 +441 342 0.400000 +441 363 0.400000 +441 387 0.400000 +441 429 0.400000 +441 508 0.400000 +441 518 0.400000 +441 525 0.400000 +441 528 0.400000 +441 610 0.400000 +441 618 0.400000 +441 642 0.400000 +441 649 0.400000 +441 659 0.400000 +441 680 0.400000 +442 22 0.400000 +442 63 0.400000 +442 68 0.400000 +442 112 0.400000 +442 162 0.400000 +442 291 0.400000 +442 496 0.400000 +442 572 0.400000 +442 593 0.400000 +443 5 0.400000 +443 19 0.400000 +443 37 0.400000 +443 54 0.400000 +443 159 0.400000 +443 276 0.400000 +443 326 0.400000 +443 335 0.400000 +443 481 0.400000 +443 617 0.400000 +443 649 0.400000 +443 670 0.400000 +443 707 0.400000 +443 753 0.400000 +444 101 0.400000 +444 143 0.400000 +444 152 0.400000 +444 153 0.400000 +444 172 0.400000 +444 210 0.400000 +444 284 0.400000 +444 387 0.400000 +444 488 0.400000 +444 490 0.400000 +444 575 0.400000 +444 583 0.400000 +444 647 0.400000 +444 707 0.400000 +444 744 0.400000 +444 787 0.400000 +444 798 0.400000 +445 26 0.400000 +445 109 0.400000 +445 147 0.400000 +445 173 0.400000 +445 192 0.400000 +445 225 0.400000 +445 270 0.400000 +445 325 0.400000 +445 376 0.400000 +445 415 0.400000 +445 454 0.400000 +445 579 0.400000 +445 596 0.400000 +445 630 0.400000 +445 651 0.400000 +445 655 0.400000 +445 669 0.400000 +445 670 0.400000 +445 691 0.400000 +445 695 0.400000 +445 729 0.400000 +446 142 0.400000 +446 191 0.400000 +446 196 0.400000 +446 217 0.400000 +446 265 0.400000 +446 300 0.400000 +446 326 0.400000 +446 356 0.400000 +446 375 0.400000 +446 384 0.400000 +446 471 0.400000 +446 478 0.400000 +446 486 0.400000 +446 516 0.400000 +446 572 0.400000 +446 612 0.400000 +446 729 0.400000 +446 734 0.400000 +446 736 0.400000 +446 749 0.400000 +447 5 0.400000 +447 11 0.400000 +447 30 0.400000 +447 47 0.400000 +447 184 0.400000 +447 227 0.400000 +447 280 0.400000 +447 293 0.400000 +447 295 0.400000 +447 336 0.400000 +447 364 0.400000 +447 382 0.400000 +447 461 0.400000 +447 510 0.400000 +447 566 0.400000 +447 775 0.400000 +448 16 0.400000 +448 40 0.400000 +448 57 0.400000 +448 60 0.400000 +448 80 0.400000 +448 169 0.400000 +448 218 0.400000 +448 243 0.400000 +448 284 0.400000 +448 318 0.400000 +448 342 0.400000 +448 431 0.400000 +448 470 0.400000 +448 474 0.400000 +448 479 0.400000 +448 496 0.400000 +448 567 0.400000 +448 630 0.400000 +448 672 0.400000 +448 679 0.400000 +448 705 0.400000 +448 708 0.400000 +448 715 0.400000 +448 743 0.400000 +448 748 0.400000 +448 768 0.400000 +448 777 0.400000 +449 55 0.400000 +449 108 0.400000 +449 138 0.400000 +449 172 0.400000 +449 299 0.400000 +449 477 0.400000 +449 524 0.400000 +449 616 0.400000 +449 695 0.400000 +449 713 0.400000 +449 724 0.400000 +450 3 0.400000 +450 11 0.400000 +450 147 0.400000 +450 180 0.400000 +450 198 0.400000 +450 209 0.400000 +450 298 0.400000 +450 328 0.400000 +450 367 0.400000 +450 375 0.400000 +450 425 0.400000 +450 571 0.400000 +450 761 0.400000 +450 765 0.400000 +450 771 0.400000 +451 45 0.400000 +451 51 0.400000 +451 105 0.400000 +451 131 0.400000 +451 164 0.400000 +451 317 0.400000 +451 325 0.400000 +451 358 0.400000 +451 392 0.400000 +451 472 0.400000 +451 492 0.400000 +451 527 0.400000 +451 530 0.400000 +451 619 0.400000 +451 640 0.400000 +451 716 0.400000 +451 780 0.400000 +452 4 0.400000 +452 60 0.400000 +452 72 0.400000 +452 108 0.400000 +452 130 0.400000 +452 145 0.400000 +452 221 0.400000 +452 234 0.400000 +452 254 0.400000 +452 311 0.400000 +452 319 0.400000 +452 402 0.400000 +452 438 0.400000 +452 458 0.400000 +452 477 0.400000 +452 515 0.400000 +452 551 0.400000 +452 580 0.400000 +452 602 0.400000 +452 628 0.400000 +452 649 0.400000 +452 714 0.400000 +453 43 0.400000 +453 83 0.400000 +453 260 0.400000 +453 323 0.400000 +453 420 0.400000 +453 558 0.400000 +453 663 0.400000 +453 678 0.400000 +453 790 0.400000 +454 7 0.400000 +454 14 0.400000 +454 65 0.400000 +454 67 0.400000 +454 109 0.400000 +454 129 0.400000 +454 194 0.400000 +454 220 0.400000 +454 226 0.400000 +454 291 0.400000 +454 365 0.400000 +454 409 0.400000 +454 499 0.400000 +454 536 0.400000 +454 547 0.400000 +454 554 0.400000 +454 596 0.400000 +454 649 0.400000 +454 713 0.400000 +454 796 0.400000 +455 22 0.400000 +455 27 0.400000 +455 124 0.400000 +455 202 0.400000 +455 237 0.400000 +455 303 0.400000 +455 309 0.400000 +455 323 0.400000 +455 414 0.400000 +455 417 0.400000 +455 466 0.400000 +455 468 0.400000 +455 535 0.400000 +455 590 0.400000 +455 595 0.400000 +455 609 0.400000 +456 208 0.400000 +456 209 0.400000 +456 340 0.400000 +456 366 0.400000 +456 648 0.400000 +456 743 0.400000 +456 767 0.400000 +457 35 0.400000 +457 44 0.400000 +457 139 0.400000 +457 276 0.400000 +457 280 0.400000 +457 295 0.400000 +457 455 0.400000 +457 523 0.400000 +457 591 0.400000 +457 675 0.400000 +457 723 0.400000 +457 756 0.400000 +458 1 0.400000 +458 14 0.400000 +458 51 0.400000 +458 143 0.400000 +458 177 0.400000 +458 179 0.400000 +458 325 0.400000 +458 429 0.400000 +458 513 0.400000 +458 536 0.400000 +458 552 0.400000 +458 576 0.400000 +458 709 0.400000 +459 8 0.400000 +459 17 0.400000 +459 33 0.400000 +459 68 0.400000 +459 69 0.400000 +459 120 0.400000 +459 181 0.400000 +459 192 0.400000 +459 237 0.400000 +459 238 0.400000 +459 258 0.400000 +459 409 0.400000 +459 475 0.400000 +459 495 0.400000 +459 513 0.400000 +459 539 0.400000 +459 591 0.400000 +459 638 0.400000 +459 738 0.400000 +459 748 0.400000 +460 29 0.400000 +460 55 0.400000 +460 62 0.400000 +460 68 0.400000 +460 178 0.400000 +460 394 0.400000 +460 547 0.400000 +460 552 0.400000 +460 569 0.400000 +460 612 0.400000 +460 674 0.400000 +461 114 0.400000 +461 139 0.400000 +461 175 0.400000 +461 191 0.400000 +461 371 0.400000 +461 430 0.400000 +461 496 0.400000 +461 649 0.400000 +461 673 0.400000 +461 698 0.400000 +461 731 0.400000 +461 732 0.400000 +461 753 0.400000 +462 34 0.400000 +462 109 0.400000 +462 168 0.400000 +462 226 0.400000 +462 284 0.400000 +462 330 0.400000 +462 366 0.400000 +462 473 0.400000 +462 491 0.400000 +462 524 0.400000 +462 537 0.400000 +462 548 0.400000 +462 573 0.400000 +462 613 0.400000 +462 751 0.400000 +462 755 0.400000 +463 13 0.400000 +463 18 0.400000 +463 39 0.400000 +463 78 0.400000 +463 181 0.400000 +463 182 0.400000 +463 205 0.400000 +463 223 0.400000 +463 249 0.400000 +463 289 0.400000 +463 339 0.400000 +463 352 0.400000 +463 455 0.400000 +463 517 0.400000 +463 537 0.400000 +463 563 0.400000 +464 7 0.400000 +464 98 0.400000 +464 243 0.400000 +464 269 0.400000 +464 344 0.400000 +464 353 0.400000 +464 418 0.400000 +464 441 0.400000 +464 467 0.400000 +464 495 0.400000 +464 517 0.400000 +464 529 0.400000 +464 532 0.400000 +464 579 0.400000 +464 592 0.400000 +464 659 0.400000 +464 690 0.400000 +464 738 0.400000 +464 747 0.400000 +465 189 0.400000 +465 313 0.400000 +465 336 0.400000 +465 393 0.400000 +465 433 0.400000 +465 444 0.400000 +465 491 0.400000 +465 517 0.400000 +465 715 0.400000 +465 748 0.400000 +465 761 0.400000 +466 61 0.400000 +466 134 0.400000 +466 147 0.400000 +466 210 0.400000 +466 266 0.400000 +466 275 0.400000 +466 306 0.400000 +466 313 0.400000 +466 332 0.400000 +466 339 0.400000 +466 402 0.400000 +466 415 0.400000 +466 470 0.400000 +466 496 0.400000 +466 574 0.400000 +466 591 0.400000 +466 644 0.400000 +466 681 0.400000 +466 688 0.400000 +466 778 0.400000 +467 156 0.400000 +467 179 0.400000 +467 233 0.400000 +467 249 0.400000 +467 355 0.400000 +467 582 0.400000 +467 611 0.400000 +467 727 0.400000 +467 748 0.400000 +467 787 0.400000 +467 795 0.400000 +468 35 0.400000 +468 114 0.400000 +468 133 0.400000 +468 188 0.400000 +468 210 0.400000 +468 446 0.400000 +468 456 0.400000 +468 506 0.400000 +468 613 0.400000 +468 682 0.400000 +468 702 0.400000 +468 715 0.400000 +468 734 0.400000 +468 739 0.400000 +468 751 0.400000 +468 765 0.400000 +469 9 0.400000 +469 193 0.400000 +469 203 0.400000 +469 301 0.400000 +469 452 0.400000 +469 510 0.400000 +469 543 0.400000 +469 591 0.400000 +469 596 0.400000 +469 605 0.400000 +469 624 0.400000 +469 627 0.400000 +469 640 0.400000 +469 666 0.400000 +469 674 0.400000 +469 793 0.400000 +470 173 0.400000 +470 201 0.400000 +470 436 0.400000 +470 447 0.400000 +470 481 0.400000 +470 615 0.400000 +470 628 0.400000 +470 733 0.400000 +470 734 0.400000 +471 86 0.400000 +471 195 0.400000 +471 219 0.400000 +471 272 0.400000 +471 293 0.400000 +471 308 0.400000 +471 333 0.400000 +471 375 0.400000 +471 617 0.400000 +471 752 0.400000 +472 9 0.400000 +472 41 0.400000 +472 70 0.400000 +472 92 0.400000 +472 188 0.400000 +472 229 0.400000 +472 278 0.400000 +472 385 0.400000 +472 470 0.400000 +472 490 0.400000 +472 500 0.400000 +472 533 0.400000 +472 546 0.400000 +472 614 0.400000 +472 647 0.400000 +472 726 0.400000 +472 728 0.400000 +472 748 0.400000 +472 785 0.400000 +473 100 0.400000 +473 223 0.400000 +473 246 0.400000 +473 276 0.400000 +473 320 0.400000 +473 329 0.400000 +473 390 0.400000 +473 396 0.400000 +473 449 0.400000 +473 480 0.400000 +473 527 0.400000 +473 548 0.400000 +473 594 0.400000 +473 600 0.400000 +473 674 0.400000 +473 748 0.400000 +474 9 0.400000 +474 94 0.400000 +474 112 0.400000 +474 144 0.400000 +474 162 0.400000 +474 255 0.400000 +474 300 0.400000 +474 324 0.400000 +474 362 0.400000 +474 424 0.400000 +474 455 0.400000 +474 550 0.400000 +474 551 0.400000 +474 555 0.400000 +474 626 0.400000 +474 659 0.400000 +474 738 0.400000 +474 756 0.400000 +474 764 0.400000 +474 779 0.400000 +474 787 0.400000 +474 800 0.400000 +475 81 0.400000 +475 215 0.400000 +475 219 0.400000 +475 341 0.400000 +475 474 0.400000 +475 489 0.400000 +475 511 0.400000 +475 536 0.400000 +475 568 0.400000 +475 671 0.400000 +475 673 0.400000 +475 691 0.400000 +475 705 0.400000 +475 731 0.400000 +475 776 0.400000 +476 25 0.400000 +476 66 0.400000 +476 76 0.400000 +476 91 0.400000 +476 119 0.400000 +476 132 0.400000 +476 252 0.400000 +476 356 0.400000 +476 566 0.400000 +476 580 0.400000 +476 618 0.400000 +476 670 0.400000 +476 687 0.400000 +476 688 0.400000 +476 716 0.400000 +476 739 0.400000 +476 778 0.400000 +477 24 0.400000 +477 36 0.400000 +477 70 0.400000 +477 89 0.400000 +477 107 0.400000 +477 124 0.400000 +477 136 0.400000 +477 139 0.400000 +477 152 0.400000 +477 161 0.400000 +477 189 0.400000 +477 259 0.400000 +477 489 0.400000 +477 507 0.400000 +477 513 0.400000 +477 519 0.400000 +477 537 0.400000 +477 571 0.400000 +477 577 0.400000 +477 578 0.400000 +477 664 0.400000 +477 719 0.400000 +478 87 0.400000 +478 234 0.400000 +478 290 0.400000 +478 445 0.400000 +478 491 0.400000 +478 493 0.400000 +478 548 0.400000 +478 569 0.400000 +478 618 0.400000 +478 708 0.400000 +478 734 0.400000 +479 20 0.400000 +479 149 0.400000 +479 200 0.400000 +479 229 0.400000 +479 321 0.400000 +479 369 0.400000 +479 381 0.400000 +479 458 0.400000 +479 489 0.400000 +479 571 0.400000 +479 757 0.400000 +480 15 0.400000 +480 95 0.400000 +480 122 0.400000 +480 202 0.400000 +480 225 0.400000 +480 313 0.400000 +480 424 0.400000 +480 536 0.400000 +480 658 0.400000 +480 668 0.400000 +480 792 0.400000 +481 1 0.400000 +481 92 0.400000 +481 111 0.400000 +481 140 0.400000 +481 400 0.400000 +481 452 0.400000 +481 500 0.400000 +481 501 0.400000 +481 541 0.400000 +481 561 0.400000 +481 598 0.400000 +481 660 0.400000 +481 681 0.400000 +481 721 0.400000 +482 57 0.400000 +482 148 0.400000 +482 262 0.400000 +482 275 0.400000 +482 306 0.400000 +482 356 0.400000 +482 373 0.400000 +482 374 0.400000 +482 393 0.400000 +482 457 0.400000 +482 503 0.400000 +482 530 0.400000 +482 551 0.400000 +482 566 0.400000 +482 592 0.400000 +482 631 0.400000 +482 662 0.400000 +482 750 0.400000 +482 770 0.400000 +482 771 0.400000 +483 20 0.400000 +483 62 0.400000 +483 68 0.400000 +483 88 0.400000 +483 111 0.400000 +483 146 0.400000 +483 196 0.400000 +483 204 0.400000 +483 235 0.400000 +483 314 0.400000 +483 481 0.400000 +483 492 0.400000 +483 518 0.400000 +483 562 0.400000 +483 589 0.400000 +483 621 0.400000 +483 719 0.400000 +483 755 0.400000 +483 794 0.400000 +484 134 0.400000 +484 143 0.400000 +484 316 0.400000 +484 328 0.400000 +484 334 0.400000 +484 347 0.400000 +484 391 0.400000 +484 429 0.400000 +484 511 0.400000 +484 641 0.400000 +484 643 0.400000 +484 663 0.400000 +484 708 0.400000 +485 40 0.400000 +485 42 0.400000 +485 95 0.400000 +485 129 0.400000 +485 132 0.400000 +485 187 0.400000 +485 289 0.400000 +485 376 0.400000 +485 393 0.400000 +485 423 0.400000 +485 463 0.400000 +485 592 0.400000 +485 616 0.400000 +485 664 0.400000 +485 715 0.400000 +485 753 0.400000 +486 81 0.400000 +486 163 0.400000 +486 179 0.400000 +486 213 0.400000 +486 415 0.400000 +486 449 0.400000 +486 463 0.400000 +486 522 0.400000 +486 534 0.400000 +486 539 0.400000 +486 562 0.400000 +486 598 0.400000 +486 658 0.400000 +486 667 0.400000 +486 671 0.400000 +486 775 0.400000 +486 789 0.400000 +487 56 0.400000 +487 62 0.400000 +487 187 0.400000 +487 297 0.400000 +487 316 0.400000 +487 410 0.400000 +487 425 0.400000 +487 473 0.400000 +487 567 0.400000 +487 647 0.400000 +487 771 0.400000 +487 799 0.400000 +488 33 0.400000 +488 65 0.400000 +488 108 0.400000 +488 117 0.400000 +488 188 0.400000 +488 201 0.400000 +488 249 0.400000 +488 302 0.400000 +488 329 0.400000 +488 352 0.400000 +488 392 0.400000 +488 445 0.400000 +488 514 0.400000 +488 638 0.400000 +488 654 0.400000 +488 668 0.400000 +489 5 0.400000 +489 53 0.400000 +489 219 0.400000 +489 261 0.400000 +489 392 0.400000 +489 449 0.400000 +489 592 0.400000 +489 601 0.400000 +489 614 0.400000 +489 645 0.400000 +489 669 0.400000 +489 705 0.400000 +489 782 0.400000 +490 5 0.400000 +490 69 0.400000 +490 98 0.400000 +490 245 0.400000 +490 262 0.400000 +490 267 0.400000 +490 272 0.400000 +490 279 0.400000 +490 333 0.400000 +490 341 0.400000 +490 430 0.400000 +490 502 0.400000 +490 504 0.400000 +490 506 0.400000 +490 518 0.400000 +490 530 0.400000 +490 596 0.400000 +490 629 0.400000 +491 36 0.400000 +491 84 0.400000 +491 132 0.400000 +491 161 0.400000 +491 165 0.400000 +491 198 0.400000 +491 245 0.400000 +491 413 0.400000 +491 551 0.400000 +491 552 0.400000 +491 672 0.400000 +491 725 0.400000 +492 250 0.400000 +492 295 0.400000 +492 397 0.400000 +492 434 0.400000 +492 443 0.400000 +492 461 0.400000 +492 478 0.400000 +492 561 0.400000 +492 585 0.400000 +492 621 0.400000 +492 625 0.400000 +492 630 0.400000 +492 641 0.400000 +492 698 0.400000 +492 708 0.400000 +492 717 0.400000 +492 718 0.400000 +492 768 0.400000 +493 18 0.400000 +493 123 0.400000 +493 201 0.400000 +493 213 0.400000 +493 218 0.400000 +493 333 0.400000 +493 350 0.400000 +493 403 0.400000 +493 414 0.400000 +493 469 0.400000 +493 476 0.400000 +493 488 0.400000 +493 525 0.400000 +493 585 0.400000 +493 624 0.400000 +493 678 0.400000 +493 712 0.400000 +493 719 0.400000 +493 749 0.400000 +493 782 0.400000 +494 71 0.400000 +494 158 0.400000 +494 170 0.400000 +494 217 0.400000 +494 238 0.400000 +494 241 0.400000 +494 370 0.400000 +494 381 0.400000 +494 396 0.400000 +494 508 0.400000 +494 524 0.400000 +494 580 0.400000 +494 640 0.400000 +494 645 0.400000 +494 768 0.400000 +494 781 0.400000 +495 32 0.400000 +495 81 0.400000 +495 89 0.400000 +495 154 0.400000 +495 170 0.400000 +495 231 0.400000 +495 409 0.400000 +495 442 0.400000 +495 495 0.400000 +495 549 0.400000 +495 601 0.400000 +495 619 0.400000 +495 661 0.400000 +495 664 0.400000 +495 697 0.400000 +495 733 0.400000 +495 737 0.400000 +495 743 0.400000 +496 30 0.400000 +496 60 0.400000 +496 77 0.400000 +496 88 0.400000 +496 103 0.400000 +496 223 0.400000 +496 235 0.400000 +496 276 0.400000 +496 278 0.400000 +496 485 0.400000 +496 510 0.400000 +496 644 0.400000 +496 663 0.400000 +496 700 0.400000 +496 707 0.400000 +496 710 0.400000 +496 742 0.400000 +496 745 0.400000 +496 764 0.400000 +497 51 0.400000 +497 57 0.400000 +497 84 0.400000 +497 162 0.400000 +497 261 0.400000 +497 442 0.400000 +497 510 0.400000 +497 552 0.400000 +497 585 0.400000 +497 730 0.400000 +497 768 0.400000 +497 793 0.400000 +498 17 0.400000 +498 139 0.400000 +498 166 0.400000 +498 232 0.400000 +498 263 0.400000 +498 385 0.400000 +498 393 0.400000 +498 424 0.400000 +498 447 0.400000 +498 633 0.400000 +498 640 0.400000 +498 776 0.400000 +498 794 0.400000 +499 19 0.400000 +499 39 0.400000 +499 81 0.400000 +499 119 0.400000 +499 154 0.400000 +499 168 0.400000 +499 239 0.400000 +499 311 0.400000 +499 334 0.400000 +499 336 0.400000 +499 403 0.400000 +499 423 0.400000 +499 447 0.400000 +499 460 0.400000 +499 592 0.400000 +499 594 0.400000 +499 653 0.400000 +499 709 0.400000 +499 728 0.400000 +499 799 0.400000 +500 103 0.400000 +500 104 0.400000 +500 176 0.400000 +500 192 0.400000 +500 209 0.400000 +500 400 0.400000 +500 468 0.400000 +500 603 0.400000 +500 634 0.400000 +500 701 0.400000 +500 708 0.400000 +500 768 0.400000 +500 779 0.400000 +501 215 0.400000 +501 241 0.400000 +501 266 0.400000 +501 271 0.400000 +501 527 0.400000 +501 568 0.400000 +501 640 0.400000 +501 711 0.400000 +501 712 0.400000 +501 745 0.400000 +502 21 0.400000 +502 31 0.400000 +502 43 0.400000 +502 142 0.400000 +502 195 0.400000 +502 247 0.400000 +502 314 0.400000 +502 360 0.400000 +502 580 0.400000 +502 632 0.400000 +503 131 0.400000 +503 184 0.400000 +503 211 0.400000 +503 218 0.400000 +503 222 0.400000 +503 237 0.400000 +503 305 0.400000 +503 316 0.400000 +503 414 0.400000 +503 466 0.400000 +503 483 0.400000 +503 522 0.400000 +503 532 0.400000 +503 594 0.400000 +503 710 0.400000 +503 714 0.400000 +503 740 0.400000 +503 763 0.400000 +504 24 0.400000 +504 70 0.400000 +504 98 0.400000 +504 128 0.400000 +504 144 0.400000 +504 159 0.400000 +504 216 0.400000 +504 226 0.400000 +504 292 0.400000 +504 339 0.400000 +504 405 0.400000 +504 441 0.400000 +504 482 0.400000 +504 500 0.400000 +504 509 0.400000 +504 514 0.400000 +504 517 0.400000 +504 552 0.400000 +504 589 0.400000 +504 597 0.400000 +504 655 0.400000 +504 694 0.400000 +504 799 0.400000 +505 24 0.400000 +505 79 0.400000 +505 105 0.400000 +505 162 0.400000 +505 192 0.400000 +505 223 0.400000 +505 323 0.400000 +505 328 0.400000 +505 334 0.400000 +505 388 0.400000 +505 441 0.400000 +505 565 0.400000 +505 641 0.400000 +505 658 0.400000 +505 666 0.400000 +505 686 0.400000 +505 703 0.400000 +505 707 0.400000 +505 735 0.400000 +505 752 0.400000 +506 55 0.400000 +506 66 0.400000 +506 74 0.400000 +506 180 0.400000 +506 203 0.400000 +506 211 0.400000 +506 260 0.400000 +506 293 0.400000 +506 320 0.400000 +506 388 0.400000 +506 398 0.400000 +506 439 0.400000 +506 485 0.400000 +506 486 0.400000 +506 491 0.400000 +506 547 0.400000 +506 550 0.400000 +506 556 0.400000 +506 683 0.400000 +506 701 0.400000 +506 728 0.400000 +506 780 0.400000 +507 84 0.400000 +507 98 0.400000 +507 122 0.400000 +507 148 0.400000 +507 164 0.400000 +507 188 0.400000 +507 189 0.400000 +507 245 0.400000 +507 264 0.400000 +507 313 0.400000 +507 347 0.400000 +507 350 0.400000 +507 436 0.400000 +507 447 0.400000 +507 464 0.400000 +507 472 0.400000 +507 543 0.400000 +507 591 0.400000 +507 688 0.400000 +507 694 0.400000 +507 716 0.400000 +507 744 0.400000 +507 770 0.400000 +507 794 0.400000 +508 5 0.400000 +508 130 0.400000 +508 198 0.400000 +508 228 0.400000 +508 266 0.400000 +508 307 0.400000 +508 336 0.400000 +508 382 0.400000 +508 391 0.400000 +508 398 0.400000 +508 541 0.400000 +508 583 0.400000 +508 612 0.400000 +508 639 0.400000 +508 646 0.400000 +508 676 0.400000 +508 772 0.400000 +509 53 0.400000 +509 79 0.400000 +509 120 0.400000 +509 128 0.400000 +509 135 0.400000 +509 172 0.400000 +509 280 0.400000 +509 341 0.400000 +509 345 0.400000 +509 357 0.400000 +509 405 0.400000 +509 469 0.400000 +509 475 0.400000 +509 566 0.400000 +509 685 0.400000 +509 694 0.400000 +509 725 0.400000 +509 795 0.400000 +510 13 0.400000 +510 95 0.400000 +510 142 0.400000 +510 148 0.400000 +510 227 0.400000 +510 278 0.400000 +510 291 0.400000 +510 336 0.400000 +510 341 0.400000 +510 470 0.400000 +510 490 0.400000 +510 526 0.400000 +510 696 0.400000 +510 724 0.400000 +511 17 0.400000 +511 88 0.400000 +511 92 0.400000 +511 109 0.400000 +511 240 0.400000 +511 253 0.400000 +511 433 0.400000 +511 580 0.400000 +511 646 0.400000 +511 738 0.400000 +511 741 0.400000 +511 775 0.400000 +511 783 0.400000 +512 210 0.400000 +512 230 0.400000 +512 239 0.400000 +512 331 0.400000 +512 360 0.400000 +512 370 0.400000 +512 373 0.400000 +512 376 0.400000 +512 417 0.400000 +512 448 0.400000 +512 476 0.400000 +512 510 0.400000 +512 519 0.400000 +512 541 0.400000 +512 550 0.400000 +512 652 0.400000 +512 662 0.400000 +512 674 0.400000 +512 724 0.400000 +513 68 0.400000 +513 119 0.400000 +513 126 0.400000 +513 177 0.400000 +513 181 0.400000 +513 202 0.400000 +513 257 0.400000 +513 258 0.400000 +513 300 0.400000 +513 333 0.400000 +513 367 0.400000 +513 414 0.400000 +513 462 0.400000 +513 505 0.400000 +513 533 0.400000 +513 551 0.400000 +513 640 0.400000 +513 655 0.400000 +513 657 0.400000 +514 23 0.400000 +514 79 0.400000 +514 140 0.400000 +514 165 0.400000 +514 231 0.400000 +514 284 0.400000 +514 416 0.400000 +514 432 0.400000 +514 437 0.400000 +514 438 0.400000 +514 477 0.400000 +514 593 0.400000 +514 648 0.400000 +514 712 0.400000 +514 715 0.400000 +514 724 0.400000 +514 734 0.400000 +515 120 0.400000 +515 124 0.400000 +515 138 0.400000 +515 269 0.400000 +515 310 0.400000 +515 318 0.400000 +515 372 0.400000 +515 448 0.400000 +515 455 0.400000 +515 486 0.400000 +515 557 0.400000 +515 564 0.400000 +515 603 0.400000 +515 738 0.400000 +515 790 0.400000 +516 3 0.400000 +516 87 0.400000 +516 120 0.400000 +516 185 0.400000 +516 297 0.400000 +516 370 0.400000 +516 427 0.400000 +516 502 0.400000 +516 505 0.400000 +516 507 0.400000 +516 510 0.400000 +516 526 0.400000 +516 545 0.400000 +516 695 0.400000 +516 696 0.400000 +516 728 0.400000 +516 744 0.400000 +516 756 0.400000 +517 84 0.400000 +517 98 0.400000 +517 125 0.400000 +517 153 0.400000 +517 252 0.400000 +517 300 0.400000 +517 305 0.400000 +517 363 0.400000 +517 413 0.400000 +517 734 0.400000 +518 4 0.400000 +518 38 0.400000 +518 61 0.400000 +518 195 0.400000 +518 232 0.400000 +518 234 0.400000 +518 245 0.400000 +518 290 0.400000 +518 303 0.400000 +518 353 0.400000 +518 380 0.400000 +518 469 0.400000 +518 631 0.400000 +518 707 0.400000 +518 714 0.400000 +518 749 0.400000 +518 761 0.400000 +518 766 0.400000 +518 784 0.400000 +519 6 0.400000 +519 41 0.400000 +519 195 0.400000 +519 215 0.400000 +519 228 0.400000 +519 251 0.400000 +519 401 0.400000 +519 562 0.400000 +519 621 0.400000 +519 757 0.400000 +519 768 0.400000 +520 18 0.400000 +520 44 0.400000 +520 117 0.400000 +520 135 0.400000 +520 178 0.400000 +520 254 0.400000 +520 322 0.400000 +520 341 0.400000 +520 391 0.400000 +520 403 0.400000 +520 428 0.400000 +520 474 0.400000 +520 580 0.400000 +520 593 0.400000 +520 659 0.400000 +520 670 0.400000 +520 723 0.400000 +520 746 0.400000 +521 194 0.400000 +521 303 0.400000 +521 407 0.400000 +521 455 0.400000 +521 532 0.400000 +521 536 0.400000 +521 640 0.400000 +521 659 0.400000 +521 691 0.400000 +521 715 0.400000 +521 750 0.400000 +521 773 0.400000 +522 6 0.400000 +522 21 0.400000 +522 34 0.400000 +522 38 0.400000 +522 46 0.400000 +522 85 0.400000 +522 140 0.400000 +522 165 0.400000 +522 178 0.400000 +522 208 0.400000 +522 221 0.400000 +522 229 0.400000 +522 237 0.400000 +522 238 0.400000 +522 245 0.400000 +522 332 0.400000 +522 337 0.400000 +522 364 0.400000 +522 407 0.400000 +522 444 0.400000 +522 455 0.400000 +522 457 0.400000 +522 461 0.400000 +522 489 0.400000 +522 521 0.400000 +522 544 0.400000 +522 631 0.400000 +522 632 0.400000 +522 670 0.400000 +522 737 0.400000 +522 785 0.400000 +523 1 0.400000 +523 30 0.400000 +523 67 0.400000 +523 75 0.400000 +523 190 0.400000 +523 220 0.400000 +523 224 0.400000 +523 259 0.400000 +523 285 0.400000 +523 327 0.400000 +523 334 0.400000 +523 336 0.400000 +523 423 0.400000 +523 432 0.400000 +523 504 0.400000 +523 541 0.400000 +523 647 0.400000 +523 685 0.400000 +523 710 0.400000 +523 767 0.400000 +524 13 0.400000 +524 59 0.400000 +524 161 0.400000 +524 186 0.400000 +524 198 0.400000 +524 268 0.400000 +524 285 0.400000 +524 316 0.400000 +524 351 0.400000 +524 381 0.400000 +524 427 0.400000 +524 444 0.400000 +524 502 0.400000 +524 535 0.400000 +524 581 0.400000 +524 582 0.400000 +524 609 0.400000 +524 677 0.400000 +524 715 0.400000 +525 100 0.400000 +525 168 0.400000 +525 193 0.400000 +525 224 0.400000 +525 354 0.400000 +525 366 0.400000 +525 376 0.400000 +525 524 0.400000 +525 547 0.400000 +525 557 0.400000 +525 595 0.400000 +525 603 0.400000 +525 729 0.400000 +526 119 0.400000 +526 148 0.400000 +526 156 0.400000 +526 179 0.400000 +526 196 0.400000 +526 249 0.400000 +526 374 0.400000 +526 441 0.400000 +526 463 0.400000 +526 502 0.400000 +526 511 0.400000 +526 629 0.400000 +526 630 0.400000 +526 631 0.400000 +526 651 0.400000 +526 730 0.400000 +526 756 0.400000 +527 19 0.400000 +527 75 0.400000 +527 179 0.400000 +527 184 0.400000 +527 325 0.400000 +527 379 0.400000 +527 404 0.400000 +527 433 0.400000 +527 464 0.400000 +527 497 0.400000 +527 681 0.400000 +527 713 0.400000 +527 745 0.400000 +528 22 0.400000 +528 32 0.400000 +528 34 0.400000 +528 55 0.400000 +528 56 0.400000 +528 68 0.400000 +528 135 0.400000 +528 176 0.400000 +528 212 0.400000 +528 254 0.400000 +528 260 0.400000 +528 269 0.400000 +528 300 0.400000 +528 400 0.400000 +528 418 0.400000 +528 495 0.400000 +528 510 0.400000 +528 603 0.400000 +528 615 0.400000 +528 633 0.400000 +528 683 0.400000 +528 713 0.400000 +528 767 0.400000 +529 66 0.400000 +529 89 0.400000 +529 99 0.400000 +529 201 0.400000 +529 202 0.400000 +529 222 0.400000 +529 225 0.400000 +529 264 0.400000 +529 525 0.400000 +529 554 0.400000 +529 558 0.400000 +529 581 0.400000 +529 586 0.400000 +529 629 0.400000 +529 658 0.400000 +530 5 0.400000 +530 9 0.400000 +530 43 0.400000 +530 113 0.400000 +530 117 0.400000 +530 138 0.400000 +530 148 0.400000 +530 175 0.400000 +530 204 0.400000 +530 247 0.400000 +530 249 0.400000 +530 252 0.400000 +530 346 0.400000 +530 363 0.400000 +530 421 0.400000 +530 465 0.400000 +530 470 0.400000 +530 471 0.400000 +530 472 0.400000 +530 496 0.400000 +530 515 0.400000 +530 680 0.400000 +530 737 0.400000 +530 752 0.400000 +531 15 0.400000 +531 163 0.400000 +531 171 0.400000 +531 173 0.400000 +531 295 0.400000 +531 309 0.400000 +531 385 0.400000 +531 394 0.400000 +531 403 0.400000 +531 415 0.400000 +531 416 0.400000 +531 422 0.400000 +531 425 0.400000 +531 445 0.400000 +531 450 0.400000 +531 472 0.400000 +531 532 0.400000 +531 547 0.400000 +531 564 0.400000 +531 684 0.400000 +531 732 0.400000 +532 18 0.400000 +532 151 0.400000 +532 162 0.400000 +532 203 0.400000 +532 467 0.400000 +532 474 0.400000 +532 488 0.400000 +532 534 0.400000 +532 572 0.400000 +532 574 0.400000 +532 605 0.400000 +532 649 0.400000 +533 37 0.400000 +533 66 0.400000 +533 100 0.400000 +533 222 0.400000 +533 340 0.400000 +533 437 0.400000 +533 499 0.400000 +533 514 0.400000 +533 621 0.400000 +533 668 0.400000 +533 704 0.400000 +533 711 0.400000 +533 789 0.400000 +534 71 0.400000 +534 151 0.400000 +534 162 0.400000 +534 164 0.400000 +534 165 0.400000 +534 232 0.400000 +534 362 0.400000 +534 433 0.400000 +534 566 0.400000 +534 628 0.400000 +534 739 0.400000 +534 763 0.400000 +535 46 0.400000 +535 165 0.400000 +535 196 0.400000 +535 353 0.400000 +535 357 0.400000 +535 394 0.400000 +535 466 0.400000 +535 554 0.400000 +535 607 0.400000 +535 630 0.400000 +535 714 0.400000 +535 732 0.400000 +535 783 0.400000 +536 175 0.400000 +536 179 0.400000 +536 218 0.400000 +536 227 0.400000 +536 295 0.400000 +536 466 0.400000 +536 473 0.400000 +536 562 0.400000 +536 647 0.400000 +536 670 0.400000 +536 776 0.400000 +536 780 0.400000 +536 785 0.400000 +537 6 0.400000 +537 95 0.400000 +537 145 0.400000 +537 148 0.400000 +537 235 0.400000 +537 333 0.400000 +537 336 0.400000 +537 553 0.400000 +537 649 0.400000 +537 677 0.400000 +537 687 0.400000 +537 721 0.400000 +537 758 0.400000 +537 776 0.400000 +537 800 0.400000 +538 5 0.400000 +538 123 0.400000 +538 179 0.400000 +538 208 0.400000 +538 260 0.400000 +538 282 0.400000 +538 312 0.400000 +538 341 0.400000 +538 359 0.400000 +538 393 0.400000 +538 511 0.400000 +538 515 0.400000 +538 606 0.400000 +538 706 0.400000 +538 747 0.400000 +538 758 0.400000 +539 106 0.400000 +539 165 0.400000 +539 389 0.400000 +539 513 0.400000 +539 527 0.400000 +539 569 0.400000 +539 570 0.400000 +539 650 0.400000 +539 778 0.400000 +539 785 0.400000 +540 63 0.400000 +540 84 0.400000 +540 181 0.400000 +540 214 0.400000 +540 233 0.400000 +540 245 0.400000 +540 313 0.400000 +540 333 0.400000 +540 376 0.400000 +540 410 0.400000 +540 413 0.400000 +540 418 0.400000 +540 549 0.400000 +540 605 0.400000 +540 607 0.400000 +540 691 0.400000 +540 729 0.400000 +541 44 0.400000 +541 231 0.400000 +541 312 0.400000 +541 346 0.400000 +541 359 0.400000 +541 391 0.400000 +541 475 0.400000 +541 524 0.400000 +541 588 0.400000 +541 608 0.400000 +541 622 0.400000 +541 646 0.400000 +541 673 0.400000 +541 677 0.400000 +541 708 0.400000 +541 740 0.400000 +541 778 0.400000 +542 122 0.400000 +542 187 0.400000 +542 233 0.400000 +542 240 0.400000 +542 438 0.400000 +542 468 0.400000 +542 561 0.400000 +542 621 0.400000 +542 640 0.400000 +542 714 0.400000 +542 716 0.400000 +542 775 0.400000 +543 55 0.400000 +543 77 0.400000 +543 95 0.400000 +543 113 0.400000 +543 126 0.400000 +543 130 0.400000 +543 152 0.400000 +543 199 0.400000 +543 409 0.400000 +543 463 0.400000 +543 471 0.400000 +543 707 0.400000 +543 756 0.400000 +543 786 0.400000 +544 69 0.400000 +544 84 0.400000 +544 95 0.400000 +544 121 0.400000 +544 344 0.400000 +544 357 0.400000 +544 393 0.400000 +544 426 0.400000 +544 660 0.400000 +544 684 0.400000 +544 695 0.400000 +544 716 0.400000 +545 19 0.400000 +545 168 0.400000 +545 235 0.400000 +545 275 0.400000 +545 308 0.400000 +545 366 0.400000 +545 473 0.400000 +545 526 0.400000 +545 554 0.400000 +545 587 0.400000 +545 660 0.400000 +545 667 0.400000 +545 687 0.400000 +545 689 0.400000 +545 707 0.400000 +545 712 0.400000 +545 720 0.400000 +545 777 0.400000 +546 26 0.400000 +546 124 0.400000 +546 140 0.400000 +546 226 0.400000 +546 369 0.400000 +546 490 0.400000 +546 536 0.400000 +546 585 0.400000 +546 676 0.400000 +546 702 0.400000 +546 710 0.400000 +546 726 0.400000 +546 758 0.400000 +547 28 0.400000 +547 178 0.400000 +547 188 0.400000 +547 223 0.400000 +547 272 0.400000 +547 280 0.400000 +547 401 0.400000 +547 423 0.400000 +547 479 0.400000 +547 530 0.400000 +547 550 0.400000 +547 586 0.400000 +547 742 0.400000 +547 754 0.400000 +547 768 0.400000 +548 31 0.400000 +548 36 0.400000 +548 87 0.400000 +548 232 0.400000 +548 305 0.400000 +548 312 0.400000 +548 355 0.400000 +548 361 0.400000 +548 397 0.400000 +548 407 0.400000 +548 487 0.400000 +548 520 0.400000 +548 574 0.400000 +548 611 0.400000 +548 639 0.400000 +548 673 0.400000 +548 768 0.400000 +548 794 0.400000 +548 800 0.400000 +549 213 0.400000 +549 326 0.400000 +549 332 0.400000 +549 362 0.400000 +549 443 0.400000 +549 568 0.400000 +549 729 0.400000 +549 782 0.400000 +550 17 0.400000 +550 35 0.400000 +550 73 0.400000 +550 79 0.400000 +550 140 0.400000 +550 185 0.400000 +550 214 0.400000 +550 262 0.400000 +550 297 0.400000 +550 299 0.400000 +550 310 0.400000 +550 565 0.400000 +550 770 0.400000 +551 67 0.400000 +551 372 0.400000 +551 387 0.400000 +551 401 0.400000 +551 459 0.400000 +551 518 0.400000 +551 525 0.400000 +551 547 0.400000 +551 555 0.400000 +551 582 0.400000 +552 67 0.400000 +552 71 0.400000 +552 99 0.400000 +552 105 0.400000 +552 149 0.400000 +552 204 0.400000 +552 208 0.400000 +552 215 0.400000 +552 242 0.400000 +552 298 0.400000 +552 318 0.400000 +552 477 0.400000 +552 524 0.400000 +552 551 0.400000 +552 613 0.400000 +552 642 0.400000 +552 645 0.400000 +552 786 0.400000 +553 115 0.400000 +553 170 0.400000 +553 197 0.400000 +553 202 0.400000 +553 291 0.400000 +553 303 0.400000 +553 312 0.400000 +553 358 0.400000 +553 429 0.400000 +553 439 0.400000 +553 452 0.400000 +553 553 0.400000 +553 607 0.400000 +553 625 0.400000 +553 787 0.400000 +554 161 0.400000 +554 167 0.400000 +554 260 0.400000 +554 271 0.400000 +554 275 0.400000 +554 346 0.400000 +554 397 0.400000 +554 398 0.400000 +554 413 0.400000 +554 615 0.400000 +554 652 0.400000 +554 660 0.400000 +554 682 0.400000 +554 700 0.400000 +554 771 0.400000 +555 13 0.400000 +555 48 0.400000 +555 105 0.400000 +555 134 0.400000 +555 140 0.400000 +555 297 0.400000 +555 310 0.400000 +555 387 0.400000 +555 406 0.400000 +555 456 0.400000 +555 459 0.400000 +555 485 0.400000 +555 704 0.400000 +555 708 0.400000 +555 763 0.400000 +555 791 0.400000 +556 1 0.400000 +556 127 0.400000 +556 157 0.400000 +556 206 0.400000 +556 210 0.400000 +556 258 0.400000 +556 300 0.400000 +556 340 0.400000 +556 385 0.400000 +556 386 0.400000 +556 396 0.400000 +556 433 0.400000 +556 445 0.400000 +556 479 0.400000 +556 519 0.400000 +556 531 0.400000 +556 654 0.400000 +556 734 0.400000 +556 758 0.400000 +556 792 0.400000 +557 153 0.400000 +557 180 0.400000 +557 304 0.400000 +557 307 0.400000 +557 322 0.400000 +557 336 0.400000 +557 343 0.400000 +557 348 0.400000 +557 362 0.400000 +557 369 0.400000 +557 395 0.400000 +557 406 0.400000 +557 419 0.400000 +557 456 0.400000 +557 497 0.400000 +557 574 0.400000 +557 692 0.400000 +557 746 0.400000 +557 754 0.400000 +557 795 0.400000 +558 7 0.400000 +558 29 0.400000 +558 87 0.400000 +558 119 0.400000 +558 227 0.400000 +558 237 0.400000 +558 267 0.400000 +558 325 0.400000 +558 353 0.400000 +558 389 0.400000 +558 428 0.400000 +558 455 0.400000 +558 457 0.400000 +558 485 0.400000 +558 511 0.400000 +558 548 0.400000 +558 561 0.400000 +558 591 0.400000 +558 655 0.400000 +558 670 0.400000 +558 706 0.400000 +558 743 0.400000 +558 748 0.400000 +559 2 0.400000 +559 42 0.400000 +559 103 0.400000 +559 106 0.400000 +559 131 0.400000 +559 154 0.400000 +559 163 0.400000 +559 231 0.400000 +559 245 0.400000 +559 381 0.400000 +559 465 0.400000 +559 471 0.400000 +559 479 0.400000 +559 637 0.400000 +559 644 0.400000 +559 691 0.400000 +559 704 0.400000 +559 716 0.400000 +559 751 0.400000 +559 796 0.400000 +560 30 0.400000 +560 167 0.400000 +560 263 0.400000 +560 337 0.400000 +560 389 0.400000 +560 405 0.400000 +560 411 0.400000 +560 432 0.400000 +560 495 0.400000 +560 528 0.400000 +560 529 0.400000 +560 579 0.400000 +560 634 0.400000 +560 638 0.400000 +560 763 0.400000 +560 797 0.400000 +561 223 0.400000 +561 238 0.400000 +561 398 0.400000 +561 455 0.400000 +561 466 0.400000 +561 482 0.400000 +561 491 0.400000 +561 494 0.400000 +561 511 0.400000 +561 563 0.400000 +561 569 0.400000 +561 622 0.400000 +561 692 0.400000 +561 770 0.400000 +562 26 0.400000 +562 98 0.400000 +562 114 0.400000 +562 115 0.400000 +562 200 0.400000 +562 249 0.400000 +562 253 0.400000 +562 256 0.400000 +562 261 0.400000 +562 281 0.400000 +562 395 0.400000 +562 424 0.400000 +562 436 0.400000 +562 541 0.400000 +562 669 0.400000 +562 684 0.400000 +562 700 0.400000 +562 707 0.400000 +563 57 0.400000 +563 85 0.400000 +563 88 0.400000 +563 96 0.400000 +563 251 0.400000 +563 294 0.400000 +563 330 0.400000 +563 331 0.400000 +563 339 0.400000 +563 373 0.400000 +563 402 0.400000 +563 413 0.400000 +563 423 0.400000 +563 476 0.400000 +563 498 0.400000 +563 549 0.400000 +563 562 0.400000 +563 564 0.400000 +563 590 0.400000 +563 596 0.400000 +563 616 0.400000 +563 668 0.400000 +563 680 0.400000 +563 722 0.400000 +563 723 0.400000 +564 60 0.400000 +564 70 0.400000 +564 114 0.400000 +564 195 0.400000 +564 209 0.400000 +564 217 0.400000 +564 282 0.400000 +564 396 0.400000 +564 491 0.400000 +564 497 0.400000 +564 523 0.400000 +564 534 0.400000 +564 562 0.400000 +564 575 0.400000 +564 624 0.400000 +564 666 0.400000 +564 778 0.400000 +564 793 0.400000 +565 44 0.400000 +565 96 0.400000 +565 199 0.400000 +565 211 0.400000 +565 229 0.400000 +565 249 0.400000 +565 281 0.400000 +565 288 0.400000 +565 322 0.400000 +565 324 0.400000 +565 325 0.400000 +565 327 0.400000 +565 342 0.400000 +565 349 0.400000 +565 400 0.400000 +565 439 0.400000 +565 469 0.400000 +565 500 0.400000 +566 87 0.400000 +566 156 0.400000 +566 198 0.400000 +566 199 0.400000 +566 227 0.400000 +566 269 0.400000 +566 270 0.400000 +566 338 0.400000 +566 353 0.400000 +566 589 0.400000 +566 590 0.400000 +566 772 0.400000 +566 800 0.400000 +567 23 0.400000 +567 47 0.400000 +567 196 0.400000 +567 199 0.400000 +567 284 0.400000 +567 328 0.400000 +567 345 0.400000 +567 373 0.400000 +567 491 0.400000 +567 593 0.400000 +567 599 0.400000 +567 679 0.400000 +567 689 0.400000 +568 26 0.400000 +568 44 0.400000 +568 92 0.400000 +568 122 0.400000 +568 248 0.400000 +568 270 0.400000 +568 288 0.400000 +568 299 0.400000 +568 357 0.400000 +568 367 0.400000 +568 413 0.400000 +568 416 0.400000 +568 486 0.400000 +568 579 0.400000 +568 593 0.400000 +568 613 0.400000 +568 668 0.400000 +568 688 0.400000 +568 713 0.400000 +568 781 0.400000 +569 46 0.400000 +569 119 0.400000 +569 120 0.400000 +569 211 0.400000 +569 216 0.400000 +569 293 0.400000 +569 421 0.400000 +569 493 0.400000 +569 535 0.400000 +569 560 0.400000 +569 596 0.400000 +569 614 0.400000 +569 621 0.400000 +569 631 0.400000 +569 662 0.400000 +569 778 0.400000 +570 135 0.400000 +570 167 0.400000 +570 203 0.400000 +570 216 0.400000 +570 291 0.400000 +570 306 0.400000 +570 308 0.400000 +570 351 0.400000 +570 557 0.400000 +570 576 0.400000 +570 583 0.400000 +570 589 0.400000 +570 633 0.400000 +570 652 0.400000 +570 657 0.400000 +570 727 0.400000 +571 177 0.400000 +571 206 0.400000 +571 208 0.400000 +571 249 0.400000 +571 273 0.400000 +571 275 0.400000 +571 429 0.400000 +571 436 0.400000 +571 458 0.400000 +571 535 0.400000 +571 587 0.400000 +571 592 0.400000 +571 603 0.400000 +571 618 0.400000 +571 662 0.400000 +571 716 0.400000 +571 790 0.400000 +572 24 0.400000 +572 95 0.400000 +572 141 0.400000 +572 297 0.400000 +572 407 0.400000 +572 420 0.400000 +572 426 0.400000 +572 653 0.400000 +572 707 0.400000 +572 711 0.400000 +573 69 0.400000 +573 91 0.400000 +573 120 0.400000 +573 151 0.400000 +573 220 0.400000 +573 324 0.400000 +573 361 0.400000 +573 364 0.400000 +573 445 0.400000 +573 457 0.400000 +573 465 0.400000 +573 516 0.400000 +573 686 0.400000 +573 687 0.400000 +574 215 0.400000 +574 225 0.400000 +574 227 0.400000 +574 534 0.400000 +574 578 0.400000 +574 735 0.400000 +574 741 0.400000 +574 789 0.400000 +575 3 0.400000 +575 86 0.400000 +575 98 0.400000 +575 227 0.400000 +575 290 0.400000 +575 393 0.400000 +575 401 0.400000 +575 498 0.400000 +575 504 0.400000 +575 542 0.400000 +575 637 0.400000 +575 638 0.400000 +575 675 0.400000 +575 712 0.400000 +575 722 0.400000 +576 32 0.400000 +576 48 0.400000 +576 58 0.400000 +576 77 0.400000 +576 91 0.400000 +576 100 0.400000 +576 131 0.400000 +576 246 0.400000 +576 302 0.400000 +576 311 0.400000 +576 336 0.400000 +576 382 0.400000 +576 401 0.400000 +576 527 0.400000 +576 540 0.400000 +576 729 0.400000 +576 787 0.400000 +577 49 0.400000 +577 54 0.400000 +577 58 0.400000 +577 83 0.400000 +577 205 0.400000 +577 218 0.400000 +577 248 0.400000 +577 288 0.400000 +577 439 0.400000 +577 454 0.400000 +577 482 0.400000 +577 578 0.400000 +577 581 0.400000 +577 590 0.400000 +577 718 0.400000 +577 741 0.400000 +577 760 0.400000 +577 765 0.400000 +578 13 0.400000 +578 66 0.400000 +578 212 0.400000 +578 252 0.400000 +578 266 0.400000 +578 270 0.400000 +578 317 0.400000 +578 450 0.400000 +578 502 0.400000 +578 553 0.400000 +578 587 0.400000 +578 618 0.400000 +578 658 0.400000 +578 661 0.400000 +578 738 0.400000 +578 757 0.400000 +578 785 0.400000 +579 49 0.400000 +579 64 0.400000 +579 68 0.400000 +579 160 0.400000 +579 235 0.400000 +579 252 0.400000 +579 258 0.400000 +579 305 0.400000 +579 370 0.400000 +579 455 0.400000 +579 460 0.400000 +579 523 0.400000 +579 781 0.400000 +580 32 0.400000 +580 69 0.400000 +580 103 0.400000 +580 108 0.400000 +580 256 0.400000 +580 296 0.400000 +580 406 0.400000 +580 434 0.400000 +580 473 0.400000 +580 545 0.400000 +580 626 0.400000 +580 782 0.400000 +581 33 0.400000 +581 226 0.400000 +581 265 0.400000 +581 331 0.400000 +581 335 0.400000 +581 337 0.400000 +581 345 0.400000 +581 382 0.400000 +581 433 0.400000 +581 444 0.400000 +581 639 0.400000 +581 673 0.400000 +581 692 0.400000 +581 743 0.400000 +581 748 0.400000 +582 64 0.400000 +582 93 0.400000 +582 217 0.400000 +582 301 0.400000 +582 375 0.400000 +582 382 0.400000 +582 389 0.400000 +582 410 0.400000 +582 455 0.400000 +582 532 0.400000 +582 600 0.400000 +582 622 0.400000 +582 653 0.400000 +582 711 0.400000 +582 753 0.400000 +583 8 0.400000 +583 119 0.400000 +583 127 0.400000 +583 178 0.400000 +583 197 0.400000 +583 229 0.400000 +583 333 0.400000 +583 335 0.400000 +583 341 0.400000 +583 551 0.400000 +583 585 0.400000 +583 623 0.400000 +583 653 0.400000 +583 657 0.400000 +583 674 0.400000 +583 708 0.400000 +583 755 0.400000 +583 782 0.400000 +583 784 0.400000 +584 49 0.400000 +584 79 0.400000 +584 119 0.400000 +584 145 0.400000 +584 228 0.400000 +584 246 0.400000 +584 348 0.400000 +584 519 0.400000 +584 538 0.400000 +584 731 0.400000 +584 769 0.400000 +585 7 0.400000 +585 61 0.400000 +585 123 0.400000 +585 321 0.400000 +585 335 0.400000 +585 445 0.400000 +585 500 0.400000 +585 537 0.400000 +585 581 0.400000 +585 659 0.400000 +585 730 0.400000 +585 740 0.400000 +585 753 0.400000 +585 777 0.400000 +585 796 0.400000 +586 17 0.400000 +586 49 0.400000 +586 61 0.400000 +586 282 0.400000 +586 310 0.400000 +586 324 0.400000 +586 369 0.400000 +586 474 0.400000 +586 475 0.400000 +586 544 0.400000 +586 549 0.400000 +586 554 0.400000 +586 594 0.400000 +586 600 0.400000 +586 601 0.400000 +586 716 0.400000 +587 31 0.400000 +587 119 0.400000 +587 161 0.400000 +587 168 0.400000 +587 299 0.400000 +587 375 0.400000 +587 394 0.400000 +587 398 0.400000 +587 453 0.400000 +587 569 0.400000 +587 578 0.400000 +587 611 0.400000 +587 671 0.400000 +587 707 0.400000 +587 725 0.400000 +587 737 0.400000 +588 60 0.400000 +588 93 0.400000 +588 108 0.400000 +588 122 0.400000 +588 200 0.400000 +588 261 0.400000 +588 306 0.400000 +588 399 0.400000 +588 401 0.400000 +588 420 0.400000 +588 456 0.400000 +588 489 0.400000 +588 511 0.400000 +588 526 0.400000 +588 572 0.400000 +588 605 0.400000 +588 610 0.400000 +588 618 0.400000 +588 634 0.400000 +588 651 0.400000 +588 672 0.400000 +588 713 0.400000 +588 714 0.400000 +588 750 0.400000 +588 772 0.400000 +589 52 0.400000 +589 140 0.400000 +589 167 0.400000 +589 246 0.400000 +589 309 0.400000 +589 381 0.400000 +589 431 0.400000 +589 456 0.400000 +589 509 0.400000 +589 621 0.400000 +589 725 0.400000 +590 91 0.400000 +590 188 0.400000 +590 365 0.400000 +590 372 0.400000 +590 467 0.400000 +590 477 0.400000 +590 546 0.400000 +590 640 0.400000 +590 648 0.400000 +590 682 0.400000 +590 711 0.400000 +590 751 0.400000 +590 769 0.400000 +591 9 0.400000 +591 56 0.400000 +591 144 0.400000 +591 151 0.400000 +591 183 0.400000 +591 266 0.400000 +591 272 0.400000 +591 279 0.400000 +591 283 0.400000 +591 290 0.400000 +591 405 0.400000 +591 480 0.400000 +591 486 0.400000 +591 496 0.400000 +591 507 0.400000 +591 543 0.400000 +591 561 0.400000 +591 602 0.400000 +591 668 0.400000 +591 689 0.400000 +591 770 0.400000 +592 39 0.400000 +592 133 0.400000 +592 141 0.400000 +592 164 0.400000 +592 224 0.400000 +592 227 0.400000 +592 246 0.400000 +592 271 0.400000 +592 350 0.400000 +592 421 0.400000 +592 448 0.400000 +592 449 0.400000 +592 460 0.400000 +592 584 0.400000 +592 600 0.400000 +592 619 0.400000 +592 747 0.400000 +592 767 0.400000 +593 28 0.400000 +593 63 0.400000 +593 99 0.400000 +593 246 0.400000 +593 262 0.400000 +593 335 0.400000 +593 466 0.400000 +593 478 0.400000 +593 581 0.400000 +593 650 0.400000 +593 687 0.400000 +593 692 0.400000 +593 770 0.400000 +593 781 0.400000 +593 787 0.400000 +593 788 0.400000 +594 83 0.400000 +594 165 0.400000 +594 168 0.400000 +594 257 0.400000 +594 295 0.400000 +594 362 0.400000 +594 500 0.400000 +594 555 0.400000 +594 585 0.400000 +594 614 0.400000 +594 647 0.400000 +594 731 0.400000 +594 765 0.400000 +594 773 0.400000 +595 108 0.400000 +595 154 0.400000 +595 155 0.400000 +595 159 0.400000 +595 166 0.400000 +595 214 0.400000 +595 236 0.400000 +595 237 0.400000 +595 242 0.400000 +595 288 0.400000 +595 309 0.400000 +595 313 0.400000 +595 373 0.400000 +595 386 0.400000 +595 422 0.400000 +595 442 0.400000 +595 452 0.400000 +595 551 0.400000 +595 573 0.400000 +595 624 0.400000 +595 679 0.400000 +596 17 0.400000 +596 122 0.400000 +596 135 0.400000 +596 174 0.400000 +596 505 0.400000 +596 517 0.400000 +596 527 0.400000 +596 537 0.400000 +596 615 0.400000 +596 666 0.400000 +596 677 0.400000 +596 695 0.400000 +596 698 0.400000 +596 701 0.400000 +596 742 0.400000 +596 764 0.400000 +596 771 0.400000 +596 784 0.400000 +597 108 0.400000 +597 114 0.400000 +597 141 0.400000 +597 189 0.400000 +597 197 0.400000 +597 198 0.400000 +597 222 0.400000 +597 281 0.400000 +597 317 0.400000 +597 369 0.400000 +597 371 0.400000 +597 436 0.400000 +597 463 0.400000 +597 506 0.400000 +597 559 0.400000 +597 704 0.400000 +597 729 0.400000 +597 748 0.400000 +597 771 0.400000 +598 18 0.400000 +598 40 0.400000 +598 48 0.400000 +598 61 0.400000 +598 66 0.400000 +598 80 0.400000 +598 100 0.400000 +598 122 0.400000 +598 153 0.400000 +598 222 0.400000 +598 270 0.400000 +598 342 0.400000 +598 355 0.400000 +598 394 0.400000 +598 539 0.400000 +598 638 0.400000 +598 648 0.400000 +598 659 0.400000 +598 692 0.400000 +598 705 0.400000 +598 735 0.400000 +598 798 0.400000 +599 56 0.400000 +599 109 0.400000 +599 125 0.400000 +599 430 0.400000 +599 491 0.400000 +599 577 0.400000 +599 610 0.400000 +599 619 0.400000 +599 702 0.400000 +599 747 0.400000 +599 760 0.400000 +600 28 0.400000 +600 71 0.400000 +600 145 0.400000 +600 182 0.400000 +600 237 0.400000 +600 417 0.400000 +600 420 0.400000 +600 446 0.400000 +600 485 0.400000 +600 518 0.400000 +600 532 0.400000 +600 645 0.400000 +600 706 0.400000 +600 770 0.400000 +601 113 0.400000 +601 331 0.400000 +601 398 0.400000 +601 414 0.400000 +601 465 0.400000 +601 484 0.400000 +601 546 0.400000 +601 599 0.400000 +601 624 0.400000 +602 140 0.400000 +602 265 0.400000 +602 266 0.400000 +602 304 0.400000 +602 378 0.400000 +602 383 0.400000 +602 460 0.400000 +602 549 0.400000 +602 564 0.400000 +602 596 0.400000 +602 598 0.400000 +602 605 0.400000 +602 608 0.400000 +602 694 0.400000 +602 733 0.400000 +602 779 0.400000 +602 785 0.400000 +603 1 0.400000 +603 32 0.400000 +603 55 0.400000 +603 137 0.400000 +603 188 0.400000 +603 202 0.400000 +603 211 0.400000 +603 333 0.400000 +603 372 0.400000 +603 461 0.400000 +603 515 0.400000 +603 517 0.400000 +603 521 0.400000 +603 630 0.400000 +603 664 0.400000 +603 687 0.400000 +603 750 0.400000 +603 779 0.400000 +604 54 0.400000 +604 175 0.400000 +604 266 0.400000 +604 362 0.400000 +604 382 0.400000 +604 497 0.400000 +604 587 0.400000 +604 603 0.400000 +604 635 0.400000 +604 738 0.400000 +604 783 0.400000 +604 791 0.400000 +605 90 0.400000 +605 122 0.400000 +605 217 0.400000 +605 237 0.400000 +605 394 0.400000 +605 438 0.400000 +605 458 0.400000 +605 544 0.400000 +605 616 0.400000 +605 625 0.400000 +605 647 0.400000 +605 680 0.400000 +605 697 0.400000 +605 703 0.400000 +605 711 0.400000 +605 743 0.400000 +605 771 0.400000 +606 57 0.400000 +606 89 0.400000 +606 168 0.400000 +606 289 0.400000 +606 304 0.400000 +606 335 0.400000 +606 446 0.400000 +606 473 0.400000 +606 600 0.400000 +606 685 0.400000 +606 712 0.400000 +606 722 0.400000 +606 742 0.400000 +607 36 0.400000 +607 80 0.400000 +607 85 0.400000 +607 101 0.400000 +607 150 0.400000 +607 278 0.400000 +607 333 0.400000 +607 337 0.400000 +607 350 0.400000 +607 368 0.400000 +607 372 0.400000 +607 378 0.400000 +607 538 0.400000 +607 540 0.400000 +607 634 0.400000 +607 651 0.400000 +607 678 0.400000 +607 734 0.400000 +607 786 0.400000 +608 45 0.400000 +608 51 0.400000 +608 90 0.400000 +608 103 0.400000 +608 121 0.400000 +608 180 0.400000 +608 235 0.400000 +608 243 0.400000 +608 361 0.400000 +608 379 0.400000 +608 398 0.400000 +608 426 0.400000 +608 485 0.400000 +608 553 0.400000 +608 587 0.400000 +608 609 0.400000 +608 640 0.400000 +608 656 0.400000 +608 751 0.400000 +609 30 0.400000 +609 152 0.400000 +609 288 0.400000 +609 322 0.400000 +609 584 0.400000 +609 594 0.400000 +609 615 0.400000 +609 676 0.400000 +609 678 0.400000 +609 784 0.400000 +610 26 0.400000 +610 148 0.400000 +610 164 0.400000 +610 293 0.400000 +610 306 0.400000 +610 477 0.400000 +610 532 0.400000 +610 545 0.400000 +610 572 0.400000 +610 624 0.400000 +610 688 0.400000 +610 692 0.400000 +610 699 0.400000 +611 30 0.400000 +611 38 0.400000 +611 81 0.400000 +611 130 0.400000 +611 159 0.400000 +611 188 0.400000 +611 199 0.400000 +611 225 0.400000 +611 250 0.400000 +611 270 0.400000 +611 302 0.400000 +611 323 0.400000 +611 335 0.400000 +611 351 0.400000 +611 372 0.400000 +611 393 0.400000 +611 410 0.400000 +611 440 0.400000 +611 506 0.400000 +611 645 0.400000 +611 676 0.400000 +611 787 0.400000 +612 5 0.400000 +612 46 0.400000 +612 128 0.400000 +612 151 0.400000 +612 159 0.400000 +612 186 0.400000 +612 215 0.400000 +612 282 0.400000 +612 363 0.400000 +612 449 0.400000 +612 599 0.400000 +612 684 0.400000 +613 34 0.400000 +613 52 0.400000 +613 195 0.400000 +613 238 0.400000 +613 242 0.400000 +613 261 0.400000 +613 280 0.400000 +613 355 0.400000 +613 389 0.400000 +613 456 0.400000 +613 476 0.400000 +613 498 0.400000 +613 544 0.400000 +613 561 0.400000 +613 654 0.400000 +613 747 0.400000 +613 780 0.400000 +614 44 0.400000 +614 104 0.400000 +614 115 0.400000 +614 232 0.400000 +614 277 0.400000 +614 302 0.400000 +614 303 0.400000 +614 358 0.400000 +614 393 0.400000 +614 442 0.400000 +614 465 0.400000 +614 525 0.400000 +614 612 0.400000 +614 642 0.400000 +614 706 0.400000 +614 745 0.400000 +614 756 0.400000 +614 778 0.400000 +615 127 0.400000 +615 290 0.400000 +615 351 0.400000 +615 360 0.400000 +615 399 0.400000 +615 461 0.400000 +615 510 0.400000 +615 572 0.400000 +615 606 0.400000 +615 615 0.400000 +615 706 0.400000 +615 712 0.400000 +615 716 0.400000 +616 94 0.400000 +616 122 0.400000 +616 233 0.400000 +616 281 0.400000 +616 402 0.400000 +616 433 0.400000 +616 441 0.400000 +616 453 0.400000 +616 501 0.400000 +616 517 0.400000 +616 576 0.400000 +616 665 0.400000 +616 675 0.400000 +617 14 0.400000 +617 38 0.400000 +617 54 0.400000 +617 142 0.400000 +617 154 0.400000 +617 229 0.400000 +617 313 0.400000 +617 318 0.400000 +617 408 0.400000 +617 493 0.400000 +617 503 0.400000 +617 579 0.400000 +617 634 0.400000 +617 730 0.400000 +617 732 0.400000 +617 763 0.400000 +618 92 0.400000 +618 160 0.400000 +618 205 0.400000 +618 243 0.400000 +618 265 0.400000 +618 305 0.400000 +618 312 0.400000 +618 334 0.400000 +618 364 0.400000 +618 370 0.400000 +618 388 0.400000 +618 573 0.400000 +618 620 0.400000 +618 744 0.400000 +618 770 0.400000 +619 58 0.400000 +619 121 0.400000 +619 122 0.400000 +619 135 0.400000 +619 170 0.400000 +619 173 0.400000 +619 255 0.400000 +619 303 0.400000 +619 404 0.400000 +619 422 0.400000 +619 436 0.400000 +619 451 0.400000 +619 567 0.400000 +619 618 0.400000 +619 720 0.400000 +619 759 0.400000 +620 17 0.400000 +620 77 0.400000 +620 107 0.400000 +620 168 0.400000 +620 173 0.400000 +620 205 0.400000 +620 248 0.400000 +620 350 0.400000 +620 385 0.400000 +620 425 0.400000 +620 474 0.400000 +620 488 0.400000 +620 490 0.400000 +620 504 0.400000 +620 509 0.400000 +620 531 0.400000 +620 567 0.400000 +620 592 0.400000 +620 660 0.400000 +620 661 0.400000 +620 747 0.400000 +620 770 0.400000 +621 160 0.400000 +621 234 0.400000 +621 358 0.400000 +621 413 0.400000 +621 529 0.400000 +621 762 0.400000 +621 764 0.400000 +622 93 0.400000 +622 142 0.400000 +622 174 0.400000 +622 184 0.400000 +622 225 0.400000 +622 310 0.400000 +622 436 0.400000 +622 470 0.400000 +622 487 0.400000 +622 667 0.400000 +622 698 0.400000 +623 63 0.400000 +623 115 0.400000 +623 134 0.400000 +623 196 0.400000 +623 233 0.400000 +623 243 0.400000 +623 472 0.400000 +623 530 0.400000 +623 542 0.400000 +623 568 0.400000 +623 617 0.400000 +623 647 0.400000 +623 648 0.400000 +624 25 0.400000 +624 143 0.400000 +624 218 0.400000 +624 230 0.400000 +624 234 0.400000 +624 249 0.400000 +624 257 0.400000 +624 261 0.400000 +624 286 0.400000 +624 385 0.400000 +624 421 0.400000 +624 451 0.400000 +624 601 0.400000 +624 602 0.400000 +624 603 0.400000 +624 659 0.400000 +624 704 0.400000 +624 723 0.400000 +625 4 0.400000 +625 24 0.400000 +625 67 0.400000 +625 88 0.400000 +625 191 0.400000 +625 232 0.400000 +625 277 0.400000 +625 298 0.400000 +625 330 0.400000 +625 447 0.400000 +625 475 0.400000 +625 502 0.400000 +625 511 0.400000 +625 525 0.400000 +625 557 0.400000 +625 651 0.400000 +625 731 0.400000 +625 755 0.400000 +626 57 0.400000 +626 161 0.400000 +626 163 0.400000 +626 175 0.400000 +626 188 0.400000 +626 310 0.400000 +626 313 0.400000 +626 352 0.400000 +626 415 0.400000 +626 416 0.400000 +626 419 0.400000 +626 479 0.400000 +626 497 0.400000 +626 529 0.400000 +626 530 0.400000 +626 534 0.400000 +626 579 0.400000 +626 589 0.400000 +626 593 0.400000 +626 612 0.400000 +626 613 0.400000 +626 646 0.400000 +626 649 0.400000 +626 664 0.400000 +627 4 0.400000 +627 85 0.400000 +627 131 0.400000 +627 193 0.400000 +627 303 0.400000 +627 336 0.400000 +627 343 0.400000 +627 345 0.400000 +627 428 0.400000 +627 606 0.400000 +627 664 0.400000 +627 697 0.400000 +627 730 0.400000 +627 764 0.400000 +627 794 0.400000 +628 23 0.400000 +628 49 0.400000 +628 106 0.400000 +628 127 0.400000 +628 167 0.400000 +628 199 0.400000 +628 232 0.400000 +628 292 0.400000 +628 313 0.400000 +628 366 0.400000 +628 377 0.400000 +628 455 0.400000 +628 478 0.400000 +628 485 0.400000 +628 490 0.400000 +628 551 0.400000 +628 688 0.400000 +628 714 0.400000 +628 753 0.400000 +629 3 0.400000 +629 5 0.400000 +629 53 0.400000 +629 84 0.400000 +629 156 0.400000 +629 215 0.400000 +629 233 0.400000 +629 357 0.400000 +629 397 0.400000 +629 414 0.400000 +629 446 0.400000 +629 489 0.400000 +629 602 0.400000 +629 660 0.400000 +629 679 0.400000 +629 739 0.400000 +629 759 0.400000 +630 17 0.400000 +630 20 0.400000 +630 59 0.400000 +630 139 0.400000 +630 182 0.400000 +630 209 0.400000 +630 213 0.400000 +630 276 0.400000 +630 337 0.400000 +630 385 0.400000 +630 429 0.400000 +630 439 0.400000 +630 457 0.400000 +630 487 0.400000 +630 522 0.400000 +630 568 0.400000 +630 579 0.400000 +630 587 0.400000 +630 767 0.400000 +630 792 0.400000 +631 14 0.400000 +631 46 0.400000 +631 66 0.400000 +631 510 0.400000 +631 514 0.400000 +631 555 0.400000 +631 580 0.400000 +631 666 0.400000 +631 706 0.400000 +631 708 0.400000 +631 723 0.400000 +631 730 0.400000 +631 755 0.400000 +632 98 0.400000 +632 110 0.400000 +632 137 0.400000 +632 138 0.400000 +632 164 0.400000 +632 180 0.400000 +632 182 0.400000 +632 216 0.400000 +632 344 0.400000 +632 350 0.400000 +632 362 0.400000 +632 384 0.400000 +632 390 0.400000 +632 406 0.400000 +632 473 0.400000 +632 520 0.400000 +632 552 0.400000 +632 593 0.400000 +632 599 0.400000 +632 615 0.400000 +632 642 0.400000 +632 653 0.400000 +632 713 0.400000 +632 749 0.400000 +632 780 0.400000 +632 792 0.400000 +632 793 0.400000 +633 8 0.400000 +633 94 0.400000 +633 163 0.400000 +633 172 0.400000 +633 196 0.400000 +633 211 0.400000 +633 244 0.400000 +633 253 0.400000 +633 355 0.400000 +633 369 0.400000 +633 425 0.400000 +633 455 0.400000 +633 516 0.400000 +633 520 0.400000 +633 602 0.400000 +633 691 0.400000 +633 711 0.400000 +633 775 0.400000 +634 1 0.400000 +634 77 0.400000 +634 120 0.400000 +634 183 0.400000 +634 185 0.400000 +634 202 0.400000 +634 294 0.400000 +634 316 0.400000 +634 325 0.400000 +634 347 0.400000 +634 436 0.400000 +634 644 0.400000 +634 659 0.400000 +634 709 0.400000 +634 710 0.400000 +634 768 0.400000 +634 792 0.400000 +635 28 0.400000 +635 188 0.400000 +635 189 0.400000 +635 234 0.400000 +635 379 0.400000 +635 389 0.400000 +635 445 0.400000 +635 455 0.400000 +635 559 0.400000 +635 596 0.400000 +635 747 0.400000 +636 11 0.400000 +636 240 0.400000 +636 258 0.400000 +636 270 0.400000 +636 311 0.400000 +636 353 0.400000 +636 409 0.400000 +636 424 0.400000 +636 436 0.400000 +636 463 0.400000 +636 471 0.400000 +636 558 0.400000 +636 566 0.400000 +636 577 0.400000 +637 21 0.400000 +637 62 0.400000 +637 79 0.400000 +637 176 0.400000 +637 222 0.400000 +637 271 0.400000 +637 278 0.400000 +637 344 0.400000 +637 350 0.400000 +637 352 0.400000 +637 368 0.400000 +637 424 0.400000 +637 461 0.400000 +637 472 0.400000 +637 477 0.400000 +637 485 0.400000 +637 508 0.400000 +637 512 0.400000 +637 610 0.400000 +637 735 0.400000 +637 777 0.400000 +638 8 0.400000 +638 206 0.400000 +638 208 0.400000 +638 267 0.400000 +638 275 0.400000 +638 490 0.400000 +638 589 0.400000 +638 609 0.400000 +638 658 0.400000 +638 660 0.400000 +638 686 0.400000 +638 692 0.400000 +638 735 0.400000 +638 741 0.400000 +639 12 0.400000 +639 25 0.400000 +639 61 0.400000 +639 164 0.400000 +639 168 0.400000 +639 180 0.400000 +639 198 0.400000 +639 226 0.400000 +639 277 0.400000 +639 456 0.400000 +639 477 0.400000 +639 733 0.400000 +639 738 0.400000 +639 778 0.400000 +640 84 0.400000 +640 106 0.400000 +640 130 0.400000 +640 142 0.400000 +640 170 0.400000 +640 192 0.400000 +640 198 0.400000 +640 349 0.400000 +640 361 0.400000 +640 363 0.400000 +640 466 0.400000 +640 479 0.400000 +640 532 0.400000 +640 556 0.400000 +640 615 0.400000 +640 645 0.400000 +640 762 0.400000 +641 21 0.400000 +641 124 0.400000 +641 139 0.400000 +641 364 0.400000 +641 434 0.400000 +641 444 0.400000 +641 445 0.400000 +641 458 0.400000 +641 531 0.400000 +641 539 0.400000 +641 554 0.400000 +641 573 0.400000 +641 722 0.400000 +641 732 0.400000 +641 735 0.400000 +641 743 0.400000 +641 764 0.400000 +641 789 0.400000 +642 68 0.400000 +642 86 0.400000 +642 108 0.400000 +642 113 0.400000 +642 118 0.400000 +642 132 0.400000 +642 147 0.400000 +642 159 0.400000 +642 198 0.400000 +642 211 0.400000 +642 241 0.400000 +642 287 0.400000 +642 304 0.400000 +642 341 0.400000 +642 491 0.400000 +642 500 0.400000 +642 502 0.400000 +642 535 0.400000 +642 594 0.400000 +642 602 0.400000 +642 714 0.400000 +642 743 0.400000 +642 790 0.400000 +643 17 0.400000 +643 46 0.400000 +643 51 0.400000 +643 77 0.400000 +643 134 0.400000 +643 137 0.400000 +643 215 0.400000 +643 254 0.400000 +643 280 0.400000 +643 304 0.400000 +643 315 0.400000 +643 318 0.400000 +643 349 0.400000 +643 368 0.400000 +643 374 0.400000 +643 384 0.400000 +643 422 0.400000 +643 466 0.400000 +643 522 0.400000 +643 537 0.400000 +643 626 0.400000 +643 665 0.400000 +643 703 0.400000 +643 718 0.400000 +643 745 0.400000 +643 746 0.400000 +644 14 0.400000 +644 26 0.400000 +644 31 0.400000 +644 297 0.400000 +644 423 0.400000 +644 446 0.400000 +644 551 0.400000 +644 673 0.400000 +644 693 0.400000 +644 770 0.400000 +645 9 0.400000 +645 14 0.400000 +645 91 0.400000 +645 101 0.400000 +645 139 0.400000 +645 284 0.400000 +645 369 0.400000 +645 371 0.400000 +645 403 0.400000 +645 433 0.400000 +645 451 0.400000 +645 513 0.400000 +645 550 0.400000 +645 555 0.400000 +645 675 0.400000 +645 688 0.400000 +645 789 0.400000 +646 32 0.400000 +646 61 0.400000 +646 73 0.400000 +646 173 0.400000 +646 385 0.400000 +646 447 0.400000 +646 454 0.400000 +646 464 0.400000 +646 550 0.400000 +646 553 0.400000 +646 582 0.400000 +646 626 0.400000 +646 772 0.400000 +647 135 0.400000 +647 262 0.400000 +647 308 0.400000 +647 333 0.400000 +647 419 0.400000 +647 448 0.400000 +647 518 0.400000 +647 638 0.400000 +647 670 0.400000 +647 703 0.400000 +647 791 0.400000 +648 24 0.400000 +648 88 0.400000 +648 115 0.400000 +648 137 0.400000 +648 174 0.400000 +648 267 0.400000 +648 339 0.400000 +648 372 0.400000 +648 404 0.400000 +648 428 0.400000 +648 528 0.400000 +648 598 0.400000 +648 660 0.400000 +649 55 0.400000 +649 91 0.400000 +649 124 0.400000 +649 130 0.400000 +649 159 0.400000 +649 202 0.400000 +649 217 0.400000 +649 228 0.400000 +649 264 0.400000 +649 272 0.400000 +649 317 0.400000 +649 405 0.400000 +649 501 0.400000 +649 540 0.400000 +649 552 0.400000 +649 571 0.400000 +649 578 0.400000 +649 581 0.400000 +649 595 0.400000 +649 597 0.400000 +649 652 0.400000 +649 686 0.400000 +649 740 0.400000 +649 763 0.400000 +650 8 0.400000 +650 108 0.400000 +650 113 0.400000 +650 153 0.400000 +650 324 0.400000 +650 350 0.400000 +650 364 0.400000 +650 384 0.400000 +650 500 0.400000 +650 586 0.400000 +650 606 0.400000 +650 608 0.400000 +650 622 0.400000 +650 634 0.400000 +650 725 0.400000 +651 31 0.400000 +651 36 0.400000 +651 38 0.400000 +651 114 0.400000 +651 165 0.400000 +651 233 0.400000 +651 418 0.400000 +651 422 0.400000 +651 437 0.400000 +651 438 0.400000 +651 470 0.400000 +651 524 0.400000 +651 535 0.400000 +651 573 0.400000 +651 581 0.400000 +651 607 0.400000 +651 733 0.400000 +651 741 0.400000 +652 26 0.400000 +652 45 0.400000 +652 91 0.400000 +652 116 0.400000 +652 180 0.400000 +652 331 0.400000 +652 397 0.400000 +652 475 0.400000 +652 489 0.400000 +652 515 0.400000 +652 562 0.400000 +652 568 0.400000 +652 694 0.400000 +652 786 0.400000 +653 46 0.400000 +653 117 0.400000 +653 219 0.400000 +653 226 0.400000 +653 252 0.400000 +653 277 0.400000 +653 321 0.400000 +653 384 0.400000 +653 386 0.400000 +653 454 0.400000 +653 464 0.400000 +653 601 0.400000 +653 658 0.400000 +653 676 0.400000 +653 735 0.400000 +653 774 0.400000 +654 78 0.400000 +654 140 0.400000 +654 165 0.400000 +654 178 0.400000 +654 187 0.400000 +654 277 0.400000 +654 300 0.400000 +654 470 0.400000 +654 582 0.400000 +654 612 0.400000 +654 679 0.400000 +654 743 0.400000 +655 80 0.400000 +655 112 0.400000 +655 166 0.400000 +655 167 0.400000 +655 178 0.400000 +655 226 0.400000 +655 229 0.400000 +655 302 0.400000 +655 372 0.400000 +655 411 0.400000 +655 530 0.400000 +655 545 0.400000 +655 556 0.400000 +655 578 0.400000 +655 581 0.400000 +655 615 0.400000 +655 712 0.400000 +655 741 0.400000 +655 794 0.400000 +656 6 0.400000 +656 19 0.400000 +656 22 0.400000 +656 81 0.400000 +656 117 0.400000 +656 127 0.400000 +656 188 0.400000 +656 216 0.400000 +656 247 0.400000 +656 279 0.400000 +656 328 0.400000 +656 412 0.400000 +656 424 0.400000 +656 429 0.400000 +656 552 0.400000 +656 763 0.400000 +656 800 0.400000 +657 7 0.400000 +657 99 0.400000 +657 141 0.400000 +657 169 0.400000 +657 325 0.400000 +657 361 0.400000 +657 419 0.400000 +657 471 0.400000 +657 472 0.400000 +657 678 0.400000 +657 788 0.400000 +658 112 0.400000 +658 118 0.400000 +658 123 0.400000 +658 156 0.400000 +658 209 0.400000 +658 222 0.400000 +658 238 0.400000 +658 242 0.400000 +658 291 0.400000 +658 330 0.400000 +658 362 0.400000 +658 406 0.400000 +658 437 0.400000 +658 705 0.400000 +658 737 0.400000 +658 745 0.400000 +659 14 0.400000 +659 167 0.400000 +659 206 0.400000 +659 307 0.400000 +659 309 0.400000 +659 346 0.400000 +659 373 0.400000 +659 376 0.400000 +659 538 0.400000 +659 597 0.400000 +659 651 0.400000 +659 681 0.400000 +659 705 0.400000 +659 792 0.400000 +659 800 0.400000 +660 37 0.400000 +660 62 0.400000 +660 112 0.400000 +660 127 0.400000 +660 192 0.400000 +660 237 0.400000 +660 240 0.400000 +660 372 0.400000 +660 383 0.400000 +660 432 0.400000 +660 447 0.400000 +660 484 0.400000 +660 582 0.400000 +660 584 0.400000 +660 613 0.400000 +660 618 0.400000 +660 703 0.400000 +660 711 0.400000 +660 744 0.400000 +660 756 0.400000 +661 101 0.400000 +661 169 0.400000 +661 206 0.400000 +661 231 0.400000 +661 329 0.400000 +661 340 0.400000 +661 411 0.400000 +661 477 0.400000 +661 478 0.400000 +661 529 0.400000 +661 573 0.400000 +661 749 0.400000 +661 778 0.400000 +661 784 0.400000 +662 131 0.400000 +662 203 0.400000 +662 319 0.400000 +662 345 0.400000 +662 371 0.400000 +662 417 0.400000 +662 440 0.400000 +662 468 0.400000 +662 540 0.400000 +662 589 0.400000 +662 684 0.400000 +662 766 0.400000 +663 4 0.400000 +663 68 0.400000 +663 75 0.400000 +663 84 0.400000 +663 98 0.400000 +663 105 0.400000 +663 175 0.400000 +663 439 0.400000 +663 518 0.400000 +663 574 0.400000 +663 596 0.400000 +663 683 0.400000 +664 31 0.400000 +664 32 0.400000 +664 51 0.400000 +664 61 0.400000 +664 78 0.400000 +664 271 0.400000 +664 349 0.400000 +664 448 0.400000 +664 478 0.400000 +664 530 0.400000 +664 553 0.400000 +664 580 0.400000 +664 640 0.400000 +664 728 0.400000 +665 15 0.400000 +665 30 0.400000 +665 99 0.400000 +665 159 0.400000 +665 273 0.400000 +665 294 0.400000 +665 320 0.400000 +665 339 0.400000 +665 425 0.400000 +665 429 0.400000 +665 432 0.400000 +665 465 0.400000 +665 491 0.400000 +665 579 0.400000 +665 585 0.400000 +665 600 0.400000 +665 604 0.400000 +665 615 0.400000 +665 674 0.400000 +665 702 0.400000 +665 715 0.400000 +665 718 0.400000 +665 735 0.400000 +665 753 0.400000 +665 783 0.400000 +666 57 0.400000 +666 95 0.400000 +666 105 0.400000 +666 125 0.400000 +666 146 0.400000 +666 150 0.400000 +666 171 0.400000 +666 277 0.400000 +666 315 0.400000 +666 340 0.400000 +666 364 0.400000 +666 451 0.400000 +666 494 0.400000 +666 522 0.400000 +666 533 0.400000 +666 536 0.400000 +666 580 0.400000 +666 621 0.400000 +666 630 0.400000 +666 635 0.400000 +666 648 0.400000 +666 684 0.400000 +666 703 0.400000 +667 5 0.400000 +667 25 0.400000 +667 37 0.400000 +667 173 0.400000 +667 270 0.400000 +667 320 0.400000 +667 354 0.400000 +667 402 0.400000 +667 407 0.400000 +667 445 0.400000 +667 558 0.400000 +667 610 0.400000 +667 625 0.400000 +667 636 0.400000 +667 732 0.400000 +667 745 0.400000 +667 780 0.400000 +668 50 0.400000 +668 62 0.400000 +668 92 0.400000 +668 113 0.400000 +668 192 0.400000 +668 201 0.400000 +668 203 0.400000 +668 240 0.400000 +668 256 0.400000 +668 270 0.400000 +668 296 0.400000 +668 338 0.400000 +668 342 0.400000 +668 382 0.400000 +668 391 0.400000 +668 498 0.400000 +668 570 0.400000 +668 582 0.400000 +668 627 0.400000 +668 630 0.400000 +668 637 0.400000 +668 704 0.400000 +668 732 0.400000 +668 781 0.400000 +668 791 0.400000 +668 792 0.400000 +669 2 0.400000 +669 12 0.400000 +669 19 0.400000 +669 34 0.400000 +669 54 0.400000 +669 85 0.400000 +669 91 0.400000 +669 95 0.400000 +669 96 0.400000 +669 138 0.400000 +669 145 0.400000 +669 226 0.400000 +669 250 0.400000 +669 284 0.400000 +669 346 0.400000 +669 401 0.400000 +669 408 0.400000 +669 473 0.400000 +669 482 0.400000 +669 611 0.400000 +669 619 0.400000 +669 656 0.400000 +669 677 0.400000 +669 776 0.400000 +670 25 0.400000 +670 47 0.400000 +670 98 0.400000 +670 114 0.400000 +670 118 0.400000 +670 149 0.400000 +670 204 0.400000 +670 236 0.400000 +670 255 0.400000 +670 397 0.400000 +670 477 0.400000 +670 642 0.400000 +670 649 0.400000 +670 652 0.400000 +670 719 0.400000 +670 748 0.400000 +671 44 0.400000 +671 56 0.400000 +671 61 0.400000 +671 133 0.400000 +671 174 0.400000 +671 217 0.400000 +671 250 0.400000 +671 285 0.400000 +671 321 0.400000 +671 384 0.400000 +671 450 0.400000 +671 552 0.400000 +671 578 0.400000 +671 596 0.400000 +671 600 0.400000 +671 609 0.400000 +671 612 0.400000 +671 658 0.400000 +671 661 0.400000 +671 712 0.400000 +672 19 0.400000 +672 22 0.400000 +672 60 0.400000 +672 114 0.400000 +672 240 0.400000 +672 267 0.400000 +672 282 0.400000 +672 300 0.400000 +672 370 0.400000 +672 420 0.400000 +672 464 0.400000 +672 671 0.400000 +672 730 0.400000 +672 799 0.400000 +673 170 0.400000 +673 273 0.400000 +673 365 0.400000 +673 474 0.400000 +673 505 0.400000 +673 506 0.400000 +673 580 0.400000 +673 586 0.400000 +673 648 0.400000 +673 656 0.400000 +673 673 0.400000 +673 726 0.400000 +674 2 0.400000 +674 91 0.400000 +674 162 0.400000 +674 238 0.400000 +674 262 0.400000 +674 357 0.400000 +674 367 0.400000 +674 371 0.400000 +674 414 0.400000 +674 476 0.400000 +674 569 0.400000 +674 571 0.400000 +674 626 0.400000 +674 646 0.400000 +674 702 0.400000 +674 776 0.400000 +674 786 0.400000 +675 15 0.400000 +675 20 0.400000 +675 52 0.400000 +675 93 0.400000 +675 139 0.400000 +675 177 0.400000 +675 178 0.400000 +675 181 0.400000 +675 250 0.400000 +675 436 0.400000 +675 438 0.400000 +675 514 0.400000 +675 603 0.400000 +675 718 0.400000 +675 732 0.400000 +675 762 0.400000 +675 779 0.400000 +676 113 0.400000 +676 131 0.400000 +676 142 0.400000 +676 175 0.400000 +676 226 0.400000 +676 274 0.400000 +676 284 0.400000 +676 299 0.400000 +676 330 0.400000 +676 332 0.400000 +676 379 0.400000 +676 574 0.400000 +676 579 0.400000 +676 622 0.400000 +676 640 0.400000 +676 754 0.400000 +677 11 0.400000 +677 47 0.400000 +677 81 0.400000 +677 97 0.400000 +677 209 0.400000 +677 287 0.400000 +677 292 0.400000 +677 309 0.400000 +677 334 0.400000 +677 359 0.400000 +677 384 0.400000 +677 396 0.400000 +677 443 0.400000 +677 523 0.400000 +677 534 0.400000 +677 538 0.400000 +677 601 0.400000 +677 620 0.400000 +677 707 0.400000 +677 793 0.400000 +678 66 0.400000 +678 147 0.400000 +678 152 0.400000 +678 224 0.400000 +678 249 0.400000 +678 323 0.400000 +678 413 0.400000 +678 514 0.400000 +678 515 0.400000 +678 545 0.400000 +678 549 0.400000 +678 730 0.400000 +678 787 0.400000 +679 159 0.400000 +679 172 0.400000 +679 207 0.400000 +679 314 0.400000 +679 412 0.400000 +679 475 0.400000 +679 585 0.400000 +679 643 0.400000 +679 678 0.400000 +679 704 0.400000 +679 768 0.400000 +679 785 0.400000 +680 46 0.400000 +680 55 0.400000 +680 141 0.400000 +680 215 0.400000 +680 217 0.400000 +680 286 0.400000 +680 301 0.400000 +680 373 0.400000 +680 418 0.400000 +680 501 0.400000 +680 511 0.400000 +680 564 0.400000 +680 596 0.400000 +680 606 0.400000 +680 641 0.400000 +680 763 0.400000 +681 1 0.400000 +681 4 0.400000 +681 8 0.400000 +681 205 0.400000 +681 219 0.400000 +681 232 0.400000 +681 265 0.400000 +681 344 0.400000 +681 360 0.400000 +681 455 0.400000 +681 549 0.400000 +681 574 0.400000 +681 583 0.400000 +681 716 0.400000 +681 779 0.400000 +682 54 0.400000 +682 68 0.400000 +682 172 0.400000 +682 221 0.400000 +682 252 0.400000 +682 310 0.400000 +682 328 0.400000 +682 356 0.400000 +682 372 0.400000 +682 409 0.400000 +682 438 0.400000 +682 481 0.400000 +682 517 0.400000 +682 524 0.400000 +682 587 0.400000 +682 618 0.400000 +682 628 0.400000 +682 685 0.400000 +682 714 0.400000 +682 719 0.400000 +682 751 0.400000 +683 32 0.400000 +683 34 0.400000 +683 264 0.400000 +683 278 0.400000 +683 408 0.400000 +683 418 0.400000 +683 488 0.400000 +683 492 0.400000 +683 587 0.400000 +683 642 0.400000 +683 646 0.400000 +683 661 0.400000 +683 683 0.400000 +683 710 0.400000 +683 789 0.400000 +684 9 0.400000 +684 13 0.400000 +684 77 0.400000 +684 88 0.400000 +684 114 0.400000 +684 162 0.400000 +684 322 0.400000 +684 332 0.400000 +684 370 0.400000 +684 395 0.400000 +684 422 0.400000 +684 456 0.400000 +684 584 0.400000 +684 595 0.400000 +684 625 0.400000 +684 632 0.400000 +684 639 0.400000 +684 675 0.400000 +684 695 0.400000 +684 771 0.400000 +685 34 0.400000 +685 142 0.400000 +685 207 0.400000 +685 310 0.400000 +685 405 0.400000 +685 431 0.400000 +685 488 0.400000 +685 519 0.400000 +685 527 0.400000 +685 537 0.400000 +685 705 0.400000 +685 717 0.400000 +685 751 0.400000 +686 101 0.400000 +686 119 0.400000 +686 145 0.400000 +686 218 0.400000 +686 311 0.400000 +686 325 0.400000 +686 392 0.400000 +686 430 0.400000 +686 460 0.400000 +686 472 0.400000 +686 489 0.400000 +686 504 0.400000 +686 557 0.400000 +686 610 0.400000 +686 633 0.400000 +686 673 0.400000 +686 800 0.400000 +687 34 0.400000 +687 58 0.400000 +687 63 0.400000 +687 82 0.400000 +687 111 0.400000 +687 131 0.400000 +687 142 0.400000 +687 163 0.400000 +687 205 0.400000 +687 208 0.400000 +687 261 0.400000 +687 270 0.400000 +687 292 0.400000 +687 313 0.400000 +687 370 0.400000 +687 396 0.400000 +687 418 0.400000 +687 426 0.400000 +687 467 0.400000 +687 534 0.400000 +687 579 0.400000 +687 729 0.400000 +687 755 0.400000 +687 782 0.400000 +688 43 0.400000 +688 46 0.400000 +688 70 0.400000 +688 129 0.400000 +688 188 0.400000 +688 217 0.400000 +688 257 0.400000 +688 274 0.400000 +688 310 0.400000 +688 333 0.400000 +688 467 0.400000 +688 476 0.400000 +688 581 0.400000 +688 586 0.400000 +688 595 0.400000 +688 644 0.400000 +688 751 0.400000 +688 768 0.400000 +688 772 0.400000 +688 794 0.400000 +689 11 0.400000 +689 173 0.400000 +689 196 0.400000 +689 202 0.400000 +689 209 0.400000 +689 214 0.400000 +689 349 0.400000 +689 403 0.400000 +689 556 0.400000 +689 573 0.400000 +689 598 0.400000 +689 600 0.400000 +689 625 0.400000 +689 636 0.400000 +689 657 0.400000 +689 658 0.400000 +689 767 0.400000 +689 791 0.400000 +690 21 0.400000 +690 35 0.400000 +690 171 0.400000 +690 181 0.400000 +690 189 0.400000 +690 299 0.400000 +690 357 0.400000 +690 385 0.400000 +690 419 0.400000 +690 474 0.400000 +690 599 0.400000 +690 615 0.400000 +690 634 0.400000 +690 721 0.400000 +690 770 0.400000 +691 1 0.400000 +691 4 0.400000 +691 7 0.400000 +691 84 0.400000 +691 90 0.400000 +691 146 0.400000 +691 186 0.400000 +691 226 0.400000 +691 264 0.400000 +691 270 0.400000 +691 336 0.400000 +691 337 0.400000 +691 358 0.400000 +691 372 0.400000 +691 427 0.400000 +691 557 0.400000 +691 609 0.400000 +691 679 0.400000 +691 688 0.400000 +691 697 0.400000 +691 710 0.400000 +691 749 0.400000 +691 785 0.400000 +691 789 0.400000 +692 27 0.400000 +692 52 0.400000 +692 95 0.400000 +692 108 0.400000 +692 132 0.400000 +692 173 0.400000 +692 216 0.400000 +692 340 0.400000 +692 349 0.400000 +692 364 0.400000 +692 382 0.400000 +692 390 0.400000 +692 421 0.400000 +692 464 0.400000 +692 534 0.400000 +692 568 0.400000 +692 655 0.400000 +692 733 0.400000 +693 47 0.400000 +693 54 0.400000 +693 60 0.400000 +693 88 0.400000 +693 129 0.400000 +693 159 0.400000 +693 161 0.400000 +693 204 0.400000 +693 273 0.400000 +693 291 0.400000 +693 296 0.400000 +693 328 0.400000 +693 338 0.400000 +693 369 0.400000 +693 380 0.400000 +693 405 0.400000 +693 516 0.400000 +693 567 0.400000 +693 578 0.400000 +693 635 0.400000 +693 648 0.400000 +693 772 0.400000 +693 774 0.400000 +694 21 0.400000 +694 93 0.400000 +694 106 0.400000 +694 121 0.400000 +694 178 0.400000 +694 186 0.400000 +694 225 0.400000 +694 277 0.400000 +694 295 0.400000 +694 337 0.400000 +694 383 0.400000 +694 400 0.400000 +694 417 0.400000 +694 446 0.400000 +694 457 0.400000 +694 552 0.400000 +694 648 0.400000 +694 685 0.400000 +694 696 0.400000 +694 786 0.400000 +695 29 0.400000 +695 80 0.400000 +695 144 0.400000 +695 238 0.400000 +695 261 0.400000 +695 273 0.400000 +695 342 0.400000 +695 352 0.400000 +695 529 0.400000 +695 594 0.400000 +695 725 0.400000 +695 732 0.400000 +695 748 0.400000 +695 778 0.400000 +696 4 0.400000 +696 110 0.400000 +696 191 0.400000 +696 221 0.400000 +696 262 0.400000 +696 374 0.400000 +696 464 0.400000 +696 499 0.400000 +696 588 0.400000 +696 597 0.400000 +696 609 0.400000 +696 612 0.400000 +696 740 0.400000 +697 102 0.400000 +697 121 0.400000 +697 213 0.400000 +697 234 0.400000 +697 241 0.400000 +697 396 0.400000 +697 423 0.400000 +697 434 0.400000 +697 464 0.400000 +697 604 0.400000 +697 607 0.400000 +697 669 0.400000 +698 16 0.400000 +698 68 0.400000 +698 72 0.400000 +698 106 0.400000 +698 187 0.400000 +698 228 0.400000 +698 252 0.400000 +698 271 0.400000 +698 305 0.400000 +698 345 0.400000 +698 359 0.400000 +698 408 0.400000 +698 440 0.400000 +698 465 0.400000 +698 625 0.400000 +699 35 0.400000 +699 62 0.400000 +699 164 0.400000 +699 200 0.400000 +699 249 0.400000 +699 312 0.400000 +699 344 0.400000 +699 519 0.400000 +699 530 0.400000 +699 532 0.400000 +699 541 0.400000 +699 542 0.400000 +699 549 0.400000 +699 565 0.400000 +699 613 0.400000 +699 626 0.400000 +699 746 0.400000 +699 759 0.400000 +700 30 0.400000 +700 35 0.400000 +700 59 0.400000 +700 81 0.400000 +700 133 0.400000 +700 215 0.400000 +700 232 0.400000 +700 310 0.400000 +700 476 0.400000 +700 528 0.400000 +700 574 0.400000 +700 589 0.400000 +700 644 0.400000 +700 683 0.400000 +700 702 0.400000 +700 745 0.400000 +700 751 0.400000 +700 778 0.400000 +701 71 0.400000 +701 184 0.400000 +701 474 0.400000 +701 476 0.400000 +701 479 0.400000 +701 575 0.400000 +701 587 0.400000 +701 590 0.400000 +701 700 0.400000 +701 755 0.400000 +702 87 0.400000 +702 159 0.400000 +702 190 0.400000 +702 238 0.400000 +702 327 0.400000 +702 403 0.400000 +702 435 0.400000 +702 458 0.400000 +702 505 0.400000 +702 517 0.400000 +702 540 0.400000 +702 630 0.400000 +702 680 0.400000 +702 696 0.400000 +702 700 0.400000 +702 772 0.400000 +702 781 0.400000 +702 793 0.400000 +703 275 0.400000 +703 283 0.400000 +703 294 0.400000 +703 317 0.400000 +703 403 0.400000 +703 426 0.400000 +703 573 0.400000 +703 620 0.400000 +703 633 0.400000 +703 721 0.400000 +703 760 0.400000 +703 771 0.400000 +704 29 0.400000 +704 97 0.400000 +704 177 0.400000 +704 210 0.400000 +704 226 0.400000 +704 306 0.400000 +704 329 0.400000 +704 346 0.400000 +704 368 0.400000 +704 459 0.400000 +704 493 0.400000 +704 521 0.400000 +704 558 0.400000 +704 634 0.400000 +704 657 0.400000 +704 711 0.400000 +704 733 0.400000 +704 750 0.400000 +704 781 0.400000 +705 76 0.400000 +705 87 0.400000 +705 127 0.400000 +705 220 0.400000 +705 233 0.400000 +705 289 0.400000 +705 324 0.400000 +705 325 0.400000 +705 335 0.400000 +705 340 0.400000 +705 361 0.400000 +705 368 0.400000 +705 390 0.400000 +705 422 0.400000 +705 433 0.400000 +705 481 0.400000 +705 551 0.400000 +705 556 0.400000 +705 607 0.400000 +705 635 0.400000 +705 706 0.400000 +705 751 0.400000 +705 777 0.400000 +705 793 0.400000 +706 55 0.400000 +706 140 0.400000 +706 173 0.400000 +706 192 0.400000 +706 200 0.400000 +706 211 0.400000 +706 263 0.400000 +706 279 0.400000 +706 286 0.400000 +706 341 0.400000 +706 356 0.400000 +706 358 0.400000 +706 466 0.400000 +706 474 0.400000 +706 513 0.400000 +706 534 0.400000 +706 551 0.400000 +706 575 0.400000 +706 581 0.400000 +706 589 0.400000 +706 738 0.400000 +706 754 0.400000 +707 88 0.400000 +707 131 0.400000 +707 136 0.400000 +707 201 0.400000 +707 205 0.400000 +707 208 0.400000 +707 219 0.400000 +707 232 0.400000 +707 318 0.400000 +707 335 0.400000 +707 356 0.400000 +707 400 0.400000 +707 410 0.400000 +707 441 0.400000 +707 453 0.400000 +707 539 0.400000 +707 633 0.400000 +707 651 0.400000 +707 653 0.400000 +707 664 0.400000 +707 716 0.400000 +707 753 0.400000 +708 31 0.400000 +708 79 0.400000 +708 176 0.400000 +708 182 0.400000 +708 192 0.400000 +708 270 0.400000 +708 376 0.400000 +708 398 0.400000 +708 431 0.400000 +708 446 0.400000 +708 449 0.400000 +708 450 0.400000 +708 522 0.400000 +708 525 0.400000 +708 535 0.400000 +708 543 0.400000 +708 544 0.400000 +708 634 0.400000 +708 672 0.400000 +708 714 0.400000 +708 724 0.400000 +709 73 0.400000 +709 139 0.400000 +709 143 0.400000 +709 198 0.400000 +709 216 0.400000 +709 230 0.400000 +709 321 0.400000 +709 475 0.400000 +709 542 0.400000 +709 726 0.400000 +709 757 0.400000 +710 146 0.400000 +710 221 0.400000 +710 260 0.400000 +710 278 0.400000 +710 349 0.400000 +710 375 0.400000 +710 408 0.400000 +710 438 0.400000 +710 445 0.400000 +710 504 0.400000 +710 522 0.400000 +710 532 0.400000 +710 542 0.400000 +710 572 0.400000 +710 574 0.400000 +710 677 0.400000 +710 725 0.400000 +710 750 0.400000 +711 14 0.400000 +711 19 0.400000 +711 107 0.400000 +711 149 0.400000 +711 177 0.400000 +711 182 0.400000 +711 271 0.400000 +711 280 0.400000 +711 371 0.400000 +711 381 0.400000 +711 427 0.400000 +711 536 0.400000 +711 561 0.400000 +711 644 0.400000 +711 675 0.400000 +711 682 0.400000 +712 57 0.400000 +712 64 0.400000 +712 81 0.400000 +712 128 0.400000 +712 365 0.400000 +712 368 0.400000 +712 397 0.400000 +712 451 0.400000 +712 473 0.400000 +712 482 0.400000 +712 540 0.400000 +712 559 0.400000 +712 601 0.400000 +712 627 0.400000 +712 643 0.400000 +712 660 0.400000 +712 662 0.400000 +712 760 0.400000 +713 81 0.400000 +713 219 0.400000 +713 327 0.400000 +713 354 0.400000 +713 355 0.400000 +713 361 0.400000 +713 389 0.400000 +713 418 0.400000 +713 425 0.400000 +713 490 0.400000 +713 550 0.400000 +713 601 0.400000 +713 792 0.400000 +714 72 0.400000 +714 98 0.400000 +714 122 0.400000 +714 128 0.400000 +714 197 0.400000 +714 200 0.400000 +714 211 0.400000 +714 225 0.400000 +714 275 0.400000 +714 284 0.400000 +714 288 0.400000 +714 343 0.400000 +714 370 0.400000 +714 445 0.400000 +714 471 0.400000 +714 488 0.400000 +714 534 0.400000 +714 535 0.400000 +714 549 0.400000 +714 604 0.400000 +714 620 0.400000 +714 794 0.400000 +715 42 0.400000 +715 60 0.400000 +715 210 0.400000 +715 222 0.400000 +715 334 0.400000 +715 522 0.400000 +715 572 0.400000 +715 603 0.400000 +715 722 0.400000 +716 38 0.400000 +716 82 0.400000 +716 103 0.400000 +716 111 0.400000 +716 115 0.400000 +716 341 0.400000 +716 352 0.400000 +716 419 0.400000 +716 422 0.400000 +716 453 0.400000 +716 483 0.400000 +716 492 0.400000 +716 535 0.400000 +716 570 0.400000 +716 623 0.400000 +717 3 0.400000 +717 170 0.400000 +717 215 0.400000 +717 301 0.400000 +717 482 0.400000 +717 512 0.400000 +717 524 0.400000 +717 555 0.400000 +717 586 0.400000 +717 624 0.400000 +717 709 0.400000 +717 747 0.400000 +717 755 0.400000 +718 146 0.400000 +718 180 0.400000 +718 245 0.400000 +718 457 0.400000 +718 616 0.400000 +718 633 0.400000 +718 684 0.400000 +719 6 0.400000 +719 29 0.400000 +719 65 0.400000 +719 106 0.400000 +719 110 0.400000 +719 147 0.400000 +719 178 0.400000 +719 301 0.400000 +719 326 0.400000 +719 411 0.400000 +719 455 0.400000 +719 643 0.400000 +719 648 0.400000 +719 651 0.400000 +719 715 0.400000 +719 722 0.400000 +719 760 0.400000 +720 27 0.400000 +720 37 0.400000 +720 52 0.400000 +720 97 0.400000 +720 101 0.400000 +720 161 0.400000 +720 194 0.400000 +720 233 0.400000 +720 248 0.400000 +720 265 0.400000 +720 441 0.400000 +720 581 0.400000 +720 666 0.400000 +720 725 0.400000 +720 734 0.400000 +720 765 0.400000 +721 4 0.400000 +721 5 0.400000 +721 120 0.400000 +721 122 0.400000 +721 145 0.400000 +721 166 0.400000 +721 225 0.400000 +721 336 0.400000 +721 394 0.400000 +721 416 0.400000 +721 417 0.400000 +721 520 0.400000 +721 552 0.400000 +721 645 0.400000 +721 653 0.400000 +721 697 0.400000 +721 785 0.400000 +722 36 0.400000 +722 74 0.400000 +722 145 0.400000 +722 227 0.400000 +722 232 0.400000 +722 513 0.400000 +722 553 0.400000 +722 562 0.400000 +722 591 0.400000 +722 683 0.400000 +722 696 0.400000 +722 716 0.400000 +722 728 0.400000 +723 35 0.400000 +723 99 0.400000 +723 106 0.400000 +723 220 0.400000 +723 229 0.400000 +723 240 0.400000 +723 267 0.400000 +723 305 0.400000 +723 322 0.400000 +723 387 0.400000 +723 451 0.400000 +723 493 0.400000 +723 533 0.400000 +723 541 0.400000 +723 553 0.400000 +723 574 0.400000 +723 575 0.400000 +723 578 0.400000 +723 655 0.400000 +723 695 0.400000 +723 713 0.400000 +723 721 0.400000 +723 753 0.400000 +724 31 0.400000 +724 56 0.400000 +724 64 0.400000 +724 258 0.400000 +724 339 0.400000 +724 359 0.400000 +724 384 0.400000 +724 412 0.400000 +724 480 0.400000 +724 498 0.400000 +724 513 0.400000 +724 707 0.400000 +724 722 0.400000 +724 772 0.400000 +724 793 0.400000 +725 101 0.400000 +725 241 0.400000 +725 266 0.400000 +725 299 0.400000 +725 382 0.400000 +725 529 0.400000 +725 551 0.400000 +725 633 0.400000 +725 635 0.400000 +725 657 0.400000 +725 738 0.400000 +726 6 0.400000 +726 41 0.400000 +726 109 0.400000 +726 118 0.400000 +726 146 0.400000 +726 216 0.400000 +726 315 0.400000 +726 388 0.400000 +726 433 0.400000 +726 464 0.400000 +726 466 0.400000 +726 470 0.400000 +726 478 0.400000 +726 619 0.400000 +726 768 0.400000 +727 77 0.400000 +727 85 0.400000 +727 125 0.400000 +727 239 0.400000 +727 270 0.400000 +727 276 0.400000 +727 351 0.400000 +727 401 0.400000 +727 498 0.400000 +727 525 0.400000 +727 592 0.400000 +727 704 0.400000 +728 17 0.400000 +728 172 0.400000 +728 493 0.400000 +728 540 0.400000 +728 602 0.400000 +728 659 0.400000 +728 679 0.400000 +728 682 0.400000 +728 695 0.400000 +728 713 0.400000 +729 45 0.400000 +729 51 0.400000 +729 78 0.400000 +729 120 0.400000 +729 164 0.400000 +729 174 0.400000 +729 202 0.400000 +729 234 0.400000 +729 236 0.400000 +729 254 0.400000 +729 291 0.400000 +729 343 0.400000 +729 423 0.400000 +729 467 0.400000 +729 476 0.400000 +729 503 0.400000 +729 530 0.400000 +729 613 0.400000 +729 714 0.400000 +729 741 0.400000 +730 25 0.400000 +730 33 0.400000 +730 37 0.400000 +730 54 0.400000 +730 100 0.400000 +730 161 0.400000 +730 227 0.400000 +730 242 0.400000 +730 272 0.400000 +730 276 0.400000 +730 293 0.400000 +730 361 0.400000 +730 368 0.400000 +730 383 0.400000 +730 508 0.400000 +730 530 0.400000 +730 533 0.400000 +730 701 0.400000 +730 710 0.400000 +730 765 0.400000 +731 28 0.400000 +731 35 0.400000 +731 79 0.400000 +731 135 0.400000 +731 163 0.400000 +731 308 0.400000 +731 433 0.400000 +731 436 0.400000 +731 454 0.400000 +731 500 0.400000 +731 683 0.400000 +731 729 0.400000 +731 750 0.400000 +731 752 0.400000 +732 219 0.400000 +732 268 0.400000 +732 272 0.400000 +732 287 0.400000 +732 315 0.400000 +732 321 0.400000 +732 345 0.400000 +732 424 0.400000 +732 431 0.400000 +732 492 0.400000 +732 529 0.400000 +732 577 0.400000 +732 582 0.400000 +732 596 0.400000 +732 612 0.400000 +733 60 0.400000 +733 101 0.400000 +733 125 0.400000 +733 194 0.400000 +733 241 0.400000 +733 338 0.400000 +733 351 0.400000 +733 404 0.400000 +733 439 0.400000 +733 539 0.400000 +733 582 0.400000 +733 634 0.400000 +733 642 0.400000 +734 121 0.400000 +734 191 0.400000 +734 194 0.400000 +734 322 0.400000 +734 330 0.400000 +734 559 0.400000 +734 562 0.400000 +734 636 0.400000 +734 639 0.400000 +734 660 0.400000 +734 663 0.400000 +734 676 0.400000 +734 732 0.400000 +735 36 0.400000 +735 58 0.400000 +735 66 0.400000 +735 75 0.400000 +735 77 0.400000 +735 259 0.400000 +735 368 0.400000 +735 467 0.400000 +735 634 0.400000 +735 676 0.400000 +735 768 0.400000 +735 798 0.400000 +736 75 0.400000 +736 180 0.400000 +736 229 0.400000 +736 322 0.400000 +736 347 0.400000 +736 369 0.400000 +736 394 0.400000 +736 509 0.400000 +736 626 0.400000 +736 648 0.400000 +736 730 0.400000 +736 749 0.400000 +736 777 0.400000 +736 800 0.400000 +737 38 0.400000 +737 115 0.400000 +737 161 0.400000 +737 193 0.400000 +737 285 0.400000 +737 313 0.400000 +737 320 0.400000 +737 338 0.400000 +737 380 0.400000 +737 385 0.400000 +737 393 0.400000 +737 451 0.400000 +737 476 0.400000 +737 485 0.400000 +737 528 0.400000 +737 542 0.400000 +737 557 0.400000 +737 590 0.400000 +737 663 0.400000 +737 781 0.400000 +737 799 0.400000 +738 43 0.400000 +738 51 0.400000 +738 160 0.400000 +738 213 0.400000 +738 215 0.400000 +738 298 0.400000 +738 301 0.400000 +738 448 0.400000 +738 451 0.400000 +738 461 0.400000 +738 567 0.400000 +738 577 0.400000 +738 591 0.400000 +739 9 0.400000 +739 40 0.400000 +739 131 0.400000 +739 146 0.400000 +739 238 0.400000 +739 319 0.400000 +739 349 0.400000 +739 392 0.400000 +739 400 0.400000 +739 486 0.400000 +739 569 0.400000 +739 600 0.400000 +739 750 0.400000 +739 783 0.400000 +740 66 0.400000 +740 128 0.400000 +740 188 0.400000 +740 202 0.400000 +740 239 0.400000 +740 281 0.400000 +740 285 0.400000 +740 346 0.400000 +740 411 0.400000 +740 446 0.400000 +740 461 0.400000 +740 470 0.400000 +740 650 0.400000 +740 728 0.400000 +741 10 0.400000 +741 30 0.400000 +741 98 0.400000 +741 103 0.400000 +741 115 0.400000 +741 175 0.400000 +741 179 0.400000 +741 242 0.400000 +741 269 0.400000 +741 323 0.400000 +741 344 0.400000 +741 388 0.400000 +741 412 0.400000 +741 475 0.400000 +741 646 0.400000 +741 664 0.400000 +742 9 0.400000 +742 23 0.400000 +742 89 0.400000 +742 98 0.400000 +742 139 0.400000 +742 219 0.400000 +742 226 0.400000 +742 241 0.400000 +742 339 0.400000 +742 368 0.400000 +742 479 0.400000 +742 534 0.400000 +742 699 0.400000 +742 742 0.400000 +742 795 0.400000 +743 26 0.400000 +743 91 0.400000 +743 176 0.400000 +743 246 0.400000 +743 262 0.400000 +743 283 0.400000 +743 333 0.400000 +743 378 0.400000 +743 418 0.400000 +743 438 0.400000 +743 488 0.400000 +743 534 0.400000 +743 564 0.400000 +743 574 0.400000 +743 619 0.400000 +743 730 0.400000 +743 739 0.400000 +743 745 0.400000 +743 778 0.400000 +744 33 0.400000 +744 92 0.400000 +744 101 0.400000 +744 139 0.400000 +744 160 0.400000 +744 206 0.400000 +744 303 0.400000 +744 445 0.400000 +744 453 0.400000 +744 613 0.400000 +744 729 0.400000 +744 790 0.400000 +745 85 0.400000 +745 125 0.400000 +745 248 0.400000 +745 350 0.400000 +745 364 0.400000 +745 374 0.400000 +745 396 0.400000 +745 459 0.400000 +745 520 0.400000 +745 545 0.400000 +745 573 0.400000 +745 580 0.400000 +745 617 0.400000 +745 654 0.400000 +745 662 0.400000 +745 717 0.400000 +745 771 0.400000 +746 51 0.400000 +746 57 0.400000 +746 217 0.400000 +746 278 0.400000 +746 290 0.400000 +746 309 0.400000 +746 335 0.400000 +746 463 0.400000 +746 538 0.400000 +746 555 0.400000 +746 669 0.400000 +746 757 0.400000 +746 766 0.400000 +746 793 0.400000 +747 9 0.400000 +747 106 0.400000 +747 217 0.400000 +747 267 0.400000 +747 293 0.400000 +747 339 0.400000 +747 351 0.400000 +747 392 0.400000 +747 407 0.400000 +747 458 0.400000 +747 492 0.400000 +747 532 0.400000 +747 538 0.400000 +747 627 0.400000 +748 35 0.400000 +748 51 0.400000 +748 68 0.400000 +748 84 0.400000 +748 103 0.400000 +748 127 0.400000 +748 151 0.400000 +748 235 0.400000 +748 239 0.400000 +748 285 0.400000 +748 364 0.400000 +748 391 0.400000 +748 430 0.400000 +748 438 0.400000 +748 487 0.400000 +748 516 0.400000 +748 528 0.400000 +748 546 0.400000 +748 612 0.400000 +748 688 0.400000 +748 719 0.400000 +749 71 0.400000 +749 96 0.400000 +749 107 0.400000 +749 130 0.400000 +749 146 0.400000 +749 154 0.400000 +749 168 0.400000 +749 190 0.400000 +749 265 0.400000 +749 361 0.400000 +749 370 0.400000 +749 373 0.400000 +749 376 0.400000 +749 395 0.400000 +749 422 0.400000 +749 430 0.400000 +749 456 0.400000 +749 498 0.400000 +749 499 0.400000 +749 533 0.400000 +749 563 0.400000 +749 601 0.400000 +749 657 0.400000 +749 739 0.400000 +749 741 0.400000 +749 773 0.400000 +749 784 0.400000 +750 1 0.400000 +750 16 0.400000 +750 80 0.400000 +750 139 0.400000 +750 521 0.400000 +750 544 0.400000 +750 627 0.400000 +750 767 0.400000 +751 1 0.400000 +751 7 0.400000 +751 20 0.400000 +751 58 0.400000 +751 79 0.400000 +751 116 0.400000 +751 185 0.400000 +751 311 0.400000 +751 346 0.400000 +751 410 0.400000 +751 413 0.400000 +751 442 0.400000 +751 501 0.400000 +751 536 0.400000 +751 571 0.400000 +751 597 0.400000 +751 654 0.400000 +751 688 0.400000 +751 715 0.400000 +751 757 0.400000 +751 768 0.400000 +751 783 0.400000 +752 10 0.400000 +752 12 0.400000 +752 23 0.400000 +752 24 0.400000 +752 79 0.400000 +752 104 0.400000 +752 217 0.400000 +752 273 0.400000 +752 339 0.400000 +752 437 0.400000 +752 526 0.400000 +752 542 0.400000 +752 615 0.400000 +752 630 0.400000 +752 713 0.400000 +752 753 0.400000 +752 770 0.400000 +752 778 0.400000 +752 782 0.400000 +753 63 0.400000 +753 80 0.400000 +753 83 0.400000 +753 177 0.400000 +753 192 0.400000 +753 334 0.400000 +753 379 0.400000 +753 403 0.400000 +753 443 0.400000 +753 473 0.400000 +753 518 0.400000 +753 570 0.400000 +753 592 0.400000 +753 637 0.400000 +753 640 0.400000 +753 641 0.400000 +753 650 0.400000 +754 28 0.400000 +754 44 0.400000 +754 53 0.400000 +754 67 0.400000 +754 157 0.400000 +754 305 0.400000 +754 306 0.400000 +754 342 0.400000 +754 404 0.400000 +754 432 0.400000 +754 516 0.400000 +754 602 0.400000 +754 630 0.400000 +754 636 0.400000 +754 674 0.400000 +754 680 0.400000 +754 785 0.400000 +754 800 0.400000 +755 159 0.400000 +755 182 0.400000 +755 224 0.400000 +755 228 0.400000 +755 383 0.400000 +755 459 0.400000 +755 550 0.400000 +755 759 0.400000 +756 101 0.400000 +756 107 0.400000 +756 151 0.400000 +756 181 0.400000 +756 291 0.400000 +756 316 0.400000 +756 362 0.400000 +756 469 0.400000 +756 540 0.400000 +756 574 0.400000 +756 649 0.400000 +756 713 0.400000 +756 737 0.400000 +756 796 0.400000 +757 12 0.400000 +757 67 0.400000 +757 105 0.400000 +757 118 0.400000 +757 209 0.400000 +757 210 0.400000 +757 220 0.400000 +757 236 0.400000 +757 352 0.400000 +757 355 0.400000 +757 403 0.400000 +757 404 0.400000 +757 443 0.400000 +757 482 0.400000 +757 486 0.400000 +757 504 0.400000 +757 529 0.400000 +757 631 0.400000 +757 646 0.400000 +757 756 0.400000 +758 36 0.400000 +758 99 0.400000 +758 182 0.400000 +758 211 0.400000 +758 218 0.400000 +758 319 0.400000 +758 355 0.400000 +758 415 0.400000 +758 429 0.400000 +758 490 0.400000 +758 491 0.400000 +758 497 0.400000 +758 532 0.400000 +758 546 0.400000 +758 588 0.400000 +758 630 0.400000 +758 654 0.400000 +758 717 0.400000 +758 743 0.400000 +759 14 0.400000 +759 99 0.400000 +759 125 0.400000 +759 192 0.400000 +759 430 0.400000 +759 513 0.400000 +759 522 0.400000 +759 597 0.400000 +759 640 0.400000 +759 670 0.400000 +759 677 0.400000 +759 773 0.400000 +760 33 0.400000 +760 44 0.400000 +760 80 0.400000 +760 100 0.400000 +760 144 0.400000 +760 225 0.400000 +760 241 0.400000 +760 267 0.400000 +760 286 0.400000 +760 465 0.400000 +760 520 0.400000 +760 538 0.400000 +760 600 0.400000 +760 679 0.400000 +760 694 0.400000 +760 774 0.400000 +761 38 0.400000 +761 50 0.400000 +761 55 0.400000 +761 67 0.400000 +761 217 0.400000 +761 265 0.400000 +761 348 0.400000 +761 378 0.400000 +761 380 0.400000 +761 428 0.400000 +761 444 0.400000 +761 555 0.400000 +761 642 0.400000 +761 737 0.400000 +762 104 0.400000 +762 158 0.400000 +762 197 0.400000 +762 220 0.400000 +762 275 0.400000 +762 308 0.400000 +762 333 0.400000 +762 393 0.400000 +762 396 0.400000 +762 437 0.400000 +762 478 0.400000 +762 507 0.400000 +762 545 0.400000 +762 679 0.400000 +762 758 0.400000 +763 21 0.400000 +763 23 0.400000 +763 83 0.400000 +763 137 0.400000 +763 143 0.400000 +763 145 0.400000 +763 188 0.400000 +763 404 0.400000 +763 425 0.400000 +763 479 0.400000 +763 522 0.400000 +763 591 0.400000 +763 613 0.400000 +763 656 0.400000 +763 706 0.400000 +763 759 0.400000 +763 769 0.400000 +764 26 0.400000 +764 148 0.400000 +764 156 0.400000 +764 360 0.400000 +764 375 0.400000 +764 415 0.400000 +764 423 0.400000 +764 465 0.400000 +764 494 0.400000 +764 560 0.400000 +764 582 0.400000 +764 702 0.400000 +764 728 0.400000 +765 64 0.400000 +765 128 0.400000 +765 178 0.400000 +765 180 0.400000 +765 184 0.400000 +765 286 0.400000 +765 299 0.400000 +765 377 0.400000 +765 394 0.400000 +765 423 0.400000 +765 427 0.400000 +765 468 0.400000 +765 471 0.400000 +765 477 0.400000 +765 527 0.400000 +765 537 0.400000 +765 563 0.400000 +765 574 0.400000 +765 593 0.400000 +765 704 0.400000 +766 25 0.400000 +766 28 0.400000 +766 32 0.400000 +766 102 0.400000 +766 122 0.400000 +766 125 0.400000 +766 139 0.400000 +766 218 0.400000 +766 239 0.400000 +766 243 0.400000 +766 261 0.400000 +766 280 0.400000 +766 323 0.400000 +766 344 0.400000 +766 407 0.400000 +766 441 0.400000 +766 444 0.400000 +766 474 0.400000 +766 576 0.400000 +766 667 0.400000 +766 676 0.400000 +766 718 0.400000 +766 739 0.400000 +766 787 0.400000 +766 798 0.400000 +767 31 0.400000 +767 48 0.400000 +767 92 0.400000 +767 132 0.400000 +767 164 0.400000 +767 251 0.400000 +767 267 0.400000 +767 279 0.400000 +767 294 0.400000 +767 349 0.400000 +767 476 0.400000 +767 498 0.400000 +767 543 0.400000 +767 611 0.400000 +767 640 0.400000 +767 683 0.400000 +767 687 0.400000 +767 739 0.400000 +767 799 0.400000 +768 2 0.400000 +768 277 0.400000 +768 326 0.400000 +768 359 0.400000 +768 451 0.400000 +768 497 0.400000 +768 511 0.400000 +768 514 0.400000 +768 519 0.400000 +768 564 0.400000 +768 624 0.400000 +768 694 0.400000 +768 696 0.400000 +768 700 0.400000 +768 733 0.400000 +768 759 0.400000 +768 765 0.400000 +769 102 0.400000 +769 182 0.400000 +769 233 0.400000 +769 241 0.400000 +769 268 0.400000 +769 590 0.400000 +769 614 0.400000 +769 667 0.400000 +769 677 0.400000 +769 731 0.400000 +769 732 0.400000 +769 737 0.400000 +769 776 0.400000 +769 795 0.400000 +770 11 0.400000 +770 25 0.400000 +770 94 0.400000 +770 148 0.400000 +770 166 0.400000 +770 176 0.400000 +770 219 0.400000 +770 238 0.400000 +770 252 0.400000 +770 296 0.400000 +770 315 0.400000 +770 390 0.400000 +770 396 0.400000 +770 440 0.400000 +770 591 0.400000 +770 726 0.400000 +770 769 0.400000 +770 783 0.400000 +771 7 0.400000 +771 8 0.400000 +771 103 0.400000 +771 149 0.400000 +771 176 0.400000 +771 221 0.400000 +771 268 0.400000 +771 310 0.400000 +771 326 0.400000 +771 446 0.400000 +771 497 0.400000 +771 579 0.400000 +771 628 0.400000 +771 637 0.400000 +771 743 0.400000 +772 12 0.400000 +772 53 0.400000 +772 275 0.400000 +772 355 0.400000 +772 367 0.400000 +772 387 0.400000 +772 395 0.400000 +772 489 0.400000 +772 521 0.400000 +772 577 0.400000 +772 603 0.400000 +772 648 0.400000 +772 729 0.400000 +772 790 0.400000 +773 30 0.400000 +773 109 0.400000 +773 250 0.400000 +773 262 0.400000 +773 324 0.400000 +773 383 0.400000 +773 505 0.400000 +773 522 0.400000 +773 524 0.400000 +773 529 0.400000 +773 573 0.400000 +773 600 0.400000 +773 647 0.400000 +773 656 0.400000 +773 657 0.400000 +773 717 0.400000 +774 5 0.400000 +774 29 0.400000 +774 140 0.400000 +774 203 0.400000 +774 223 0.400000 +774 272 0.400000 +774 316 0.400000 +774 317 0.400000 +774 362 0.400000 +774 426 0.400000 +774 460 0.400000 +774 539 0.400000 +774 680 0.400000 +774 714 0.400000 +774 774 0.400000 +775 11 0.400000 +775 47 0.400000 +775 198 0.400000 +775 248 0.400000 +775 266 0.400000 +775 331 0.400000 +775 356 0.400000 +775 372 0.400000 +775 424 0.400000 +775 485 0.400000 +775 486 0.400000 +775 498 0.400000 +775 531 0.400000 +775 537 0.400000 +775 610 0.400000 +775 704 0.400000 +775 729 0.400000 +775 782 0.400000 +776 22 0.400000 +776 78 0.400000 +776 129 0.400000 +776 135 0.400000 +776 160 0.400000 +776 164 0.400000 +776 174 0.400000 +776 202 0.400000 +776 322 0.400000 +776 383 0.400000 +776 543 0.400000 +776 670 0.400000 +776 766 0.400000 +777 152 0.400000 +777 229 0.400000 +777 298 0.400000 +777 381 0.400000 +777 423 0.400000 +777 435 0.400000 +777 460 0.400000 +777 476 0.400000 +777 487 0.400000 +777 539 0.400000 +777 542 0.400000 +777 545 0.400000 +777 550 0.400000 +777 599 0.400000 +777 617 0.400000 +777 650 0.400000 +777 663 0.400000 +777 667 0.400000 +777 672 0.400000 +777 733 0.400000 +777 744 0.400000 +777 773 0.400000 +778 38 0.400000 +778 40 0.400000 +778 46 0.400000 +778 78 0.400000 +778 100 0.400000 +778 126 0.400000 +778 175 0.400000 +778 200 0.400000 +778 291 0.400000 +778 328 0.400000 +778 441 0.400000 +778 475 0.400000 +778 503 0.400000 +778 622 0.400000 +778 625 0.400000 +778 630 0.400000 +778 653 0.400000 +778 691 0.400000 +778 708 0.400000 +778 799 0.400000 +779 13 0.400000 +779 62 0.400000 +779 75 0.400000 +779 86 0.400000 +779 105 0.400000 +779 114 0.400000 +779 198 0.400000 +779 232 0.400000 +779 235 0.400000 +779 325 0.400000 +779 422 0.400000 +779 461 0.400000 +779 568 0.400000 +779 611 0.400000 +779 633 0.400000 +779 647 0.400000 +780 21 0.400000 +780 30 0.400000 +780 51 0.400000 +780 125 0.400000 +780 185 0.400000 +780 196 0.400000 +780 211 0.400000 +780 275 0.400000 +780 285 0.400000 +780 289 0.400000 +780 403 0.400000 +780 531 0.400000 +780 543 0.400000 +780 675 0.400000 +780 723 0.400000 +780 746 0.400000 +781 168 0.400000 +781 201 0.400000 +781 246 0.400000 +781 345 0.400000 +781 353 0.400000 +781 361 0.400000 +781 368 0.400000 +781 496 0.400000 +781 550 0.400000 +781 584 0.400000 +781 695 0.400000 +781 732 0.400000 +781 750 0.400000 +782 6 0.400000 +782 198 0.400000 +782 214 0.400000 +782 362 0.400000 +782 382 0.400000 +782 397 0.400000 +782 443 0.400000 +782 491 0.400000 +782 510 0.400000 +782 531 0.400000 +782 795 0.400000 +783 2 0.400000 +783 35 0.400000 +783 48 0.400000 +783 57 0.400000 +783 86 0.400000 +783 180 0.400000 +783 191 0.400000 +783 202 0.400000 +783 283 0.400000 +783 305 0.400000 +783 411 0.400000 +783 427 0.400000 +783 485 0.400000 +783 597 0.400000 +783 646 0.400000 +783 653 0.400000 +784 14 0.400000 +784 179 0.400000 +784 231 0.400000 +784 408 0.400000 +784 433 0.400000 +784 586 0.400000 +784 673 0.400000 +784 714 0.400000 +784 727 0.400000 +784 740 0.400000 +784 786 0.400000 +784 798 0.400000 +785 20 0.400000 +785 33 0.400000 +785 129 0.400000 +785 198 0.400000 +785 265 0.400000 +785 326 0.400000 +785 391 0.400000 +785 438 0.400000 +785 449 0.400000 +785 480 0.400000 +785 503 0.400000 +785 714 0.400000 +785 747 0.400000 +785 782 0.400000 +786 30 0.400000 +786 66 0.400000 +786 104 0.400000 +786 124 0.400000 +786 232 0.400000 +786 249 0.400000 +786 264 0.400000 +786 302 0.400000 +786 307 0.400000 +786 333 0.400000 +786 373 0.400000 +786 385 0.400000 +786 417 0.400000 +786 475 0.400000 +786 528 0.400000 +786 571 0.400000 +786 667 0.400000 +786 686 0.400000 +786 783 0.400000 +787 18 0.400000 +787 33 0.400000 +787 74 0.400000 +787 92 0.400000 +787 148 0.400000 +787 150 0.400000 +787 252 0.400000 +787 403 0.400000 +787 441 0.400000 +787 445 0.400000 +787 453 0.400000 +787 512 0.400000 +787 528 0.400000 +787 544 0.400000 +787 615 0.400000 +787 636 0.400000 +787 643 0.400000 +787 692 0.400000 +787 697 0.400000 +787 739 0.400000 +787 772 0.400000 +788 21 0.400000 +788 144 0.400000 +788 167 0.400000 +788 279 0.400000 +788 292 0.400000 +788 352 0.400000 +788 393 0.400000 +788 481 0.400000 +788 497 0.400000 +788 538 0.400000 +788 577 0.400000 +788 585 0.400000 +788 606 0.400000 +788 672 0.400000 +788 689 0.400000 +788 709 0.400000 +788 714 0.400000 +788 783 0.400000 +788 790 0.400000 +789 70 0.400000 +789 335 0.400000 +789 436 0.400000 +789 443 0.400000 +789 608 0.400000 +789 613 0.400000 +789 641 0.400000 +789 691 0.400000 +789 697 0.400000 +789 798 0.400000 +790 63 0.400000 +790 83 0.400000 +790 137 0.400000 +790 169 0.400000 +790 241 0.400000 +790 345 0.400000 +790 440 0.400000 +790 510 0.400000 +790 525 0.400000 +790 527 0.400000 +790 604 0.400000 +790 669 0.400000 +790 681 0.400000 +790 692 0.400000 +790 708 0.400000 +790 754 0.400000 +790 756 0.400000 +791 60 0.400000 +791 113 0.400000 +791 124 0.400000 +791 132 0.400000 +791 148 0.400000 +791 189 0.400000 +791 258 0.400000 +791 270 0.400000 +791 330 0.400000 +791 409 0.400000 +791 450 0.400000 +791 458 0.400000 +791 511 0.400000 +791 538 0.400000 +791 558 0.400000 +791 592 0.400000 +791 644 0.400000 +791 693 0.400000 +791 774 0.400000 +792 4 0.400000 +792 6 0.400000 +792 64 0.400000 +792 158 0.400000 +792 239 0.400000 +792 376 0.400000 +792 382 0.400000 +792 472 0.400000 +792 563 0.400000 +792 582 0.400000 +792 747 0.400000 +792 767 0.400000 +793 43 0.400000 +793 67 0.400000 +793 90 0.400000 +793 155 0.400000 +793 170 0.400000 +793 199 0.400000 +793 248 0.400000 +793 251 0.400000 +793 275 0.400000 +793 278 0.400000 +793 352 0.400000 +793 377 0.400000 +793 499 0.400000 +793 529 0.400000 +793 546 0.400000 +793 547 0.400000 +793 596 0.400000 +793 606 0.400000 +793 633 0.400000 +793 637 0.400000 +793 660 0.400000 +793 669 0.400000 +793 678 0.400000 +793 696 0.400000 +793 747 0.400000 +793 783 0.400000 +794 20 0.400000 +794 79 0.400000 +794 83 0.400000 +794 113 0.400000 +794 124 0.400000 +794 136 0.400000 +794 187 0.400000 +794 217 0.400000 +794 407 0.400000 +794 415 0.400000 +794 438 0.400000 +794 460 0.400000 +794 462 0.400000 +794 523 0.400000 +794 675 0.400000 +794 707 0.400000 +794 751 0.400000 +794 793 0.400000 +795 46 0.400000 +795 49 0.400000 +795 75 0.400000 +795 84 0.400000 +795 90 0.400000 +795 98 0.400000 +795 107 0.400000 +795 173 0.400000 +795 279 0.400000 +795 397 0.400000 +795 517 0.400000 +795 557 0.400000 +795 610 0.400000 +795 651 0.400000 +795 709 0.400000 +795 720 0.400000 +796 32 0.400000 +796 62 0.400000 +796 154 0.400000 +796 168 0.400000 +796 182 0.400000 +796 183 0.400000 +796 299 0.400000 +796 305 0.400000 +796 323 0.400000 +796 362 0.400000 +796 435 0.400000 +796 477 0.400000 +796 516 0.400000 +796 551 0.400000 +796 655 0.400000 +796 740 0.400000 +796 744 0.400000 +797 10 0.400000 +797 83 0.400000 +797 142 0.400000 +797 195 0.400000 +797 311 0.400000 +797 349 0.400000 +797 438 0.400000 +797 445 0.400000 +797 614 0.400000 +797 721 0.400000 +797 727 0.400000 +797 789 0.400000 +797 800 0.400000 +798 70 0.400000 +798 116 0.400000 +798 136 0.400000 +798 172 0.400000 +798 223 0.400000 +798 362 0.400000 +798 406 0.400000 +798 512 0.400000 +798 526 0.400000 +798 585 0.400000 +798 599 0.400000 +798 741 0.400000 +799 5 0.400000 +799 81 0.400000 +799 101 0.400000 +799 117 0.400000 +799 155 0.400000 +799 237 0.400000 +799 241 0.400000 +799 257 0.400000 +799 315 0.400000 +799 333 0.400000 +799 375 0.400000 +799 591 0.400000 +799 592 0.400000 +799 659 0.400000 +799 660 0.400000 +799 671 0.400000 +799 691 0.400000 +799 770 0.400000 +799 784 0.400000 +800 26 0.400000 +800 58 0.400000 +800 59 0.400000 +800 106 0.400000 +800 147 0.400000 +800 185 0.400000 +800 218 0.400000 +800 255 0.400000 +800 262 0.400000 +800 290 0.400000 +800 356 0.400000 +800 414 0.400000 +800 440 0.400000 +800 563 0.400000 +800 570 0.400000 +800 571 0.400000 +800 651 0.400000 +800 742 0.400000 +800 787 0.400000 +801 8 0.400000 +801 60 0.400000 +801 183 0.400000 +801 213 0.400000 +801 215 0.400000 +801 238 0.400000 +801 252 0.400000 +801 270 0.400000 +801 292 0.400000 +801 351 0.400000 +801 398 0.400000 +801 426 0.400000 +801 470 0.400000 +801 511 0.400000 +801 539 0.400000 +801 754 0.400000 +802 12 0.400000 +802 91 0.400000 +802 111 0.400000 +802 192 0.400000 +802 201 0.400000 +802 256 0.400000 +802 314 0.400000 +802 347 0.400000 +802 512 0.400000 +802 521 0.400000 +802 527 0.400000 +802 544 0.400000 +802 574 0.400000 +802 652 0.400000 +802 698 0.400000 +803 10 0.400000 +803 35 0.400000 +803 46 0.400000 +803 108 0.400000 +803 150 0.400000 +803 169 0.400000 +803 172 0.400000 +803 211 0.400000 +803 250 0.400000 +803 267 0.400000 +803 302 0.400000 +803 489 0.400000 +803 628 0.400000 +803 731 0.400000 +804 19 0.400000 +804 81 0.400000 +804 151 0.400000 +804 271 0.400000 +804 372 0.400000 +804 392 0.400000 +804 497 0.400000 +804 623 0.400000 +805 44 0.400000 +805 71 0.400000 +805 80 0.400000 +805 164 0.400000 +805 225 0.400000 +805 297 0.400000 +805 350 0.400000 +805 395 0.400000 +805 448 0.400000 +805 598 0.400000 +805 607 0.400000 +805 689 0.400000 +805 737 0.400000 +805 743 0.400000 +805 794 0.400000 +806 9 0.400000 +806 45 0.400000 +806 57 0.400000 +806 133 0.400000 +806 262 0.400000 +806 412 0.400000 +806 485 0.400000 +806 533 0.400000 +806 635 0.400000 +806 704 0.400000 +807 7 0.400000 +807 24 0.400000 +807 47 0.400000 +807 53 0.400000 +807 71 0.400000 +807 166 0.400000 +807 262 0.400000 +807 316 0.400000 +807 427 0.400000 +807 477 0.400000 +807 533 0.400000 +807 551 0.400000 +807 620 0.400000 +807 634 0.400000 +807 793 0.400000 +808 53 0.400000 +808 106 0.400000 +808 152 0.400000 +808 154 0.400000 +808 307 0.400000 +808 322 0.400000 +808 362 0.400000 +808 392 0.400000 +808 417 0.400000 +808 445 0.400000 +808 562 0.400000 +808 585 0.400000 +808 601 0.400000 +808 749 0.400000 +808 767 0.400000 +809 20 0.400000 +809 56 0.400000 +809 103 0.400000 +809 109 0.400000 +809 162 0.400000 +809 203 0.400000 +809 226 0.400000 +809 355 0.400000 +809 452 0.400000 +809 503 0.400000 +809 555 0.400000 +809 558 0.400000 +809 575 0.400000 +809 613 0.400000 +809 651 0.400000 +809 663 0.400000 +809 722 0.400000 +809 768 0.400000 +810 85 0.400000 +810 255 0.400000 +810 588 0.400000 +810 598 0.400000 +810 659 0.400000 +811 18 0.400000 +811 32 0.400000 +811 85 0.400000 +811 132 0.400000 +811 179 0.400000 +811 198 0.400000 +811 224 0.400000 +811 240 0.400000 +811 252 0.400000 +811 367 0.400000 +811 369 0.400000 +811 387 0.400000 +811 415 0.400000 +811 491 0.400000 +811 517 0.400000 +811 524 0.400000 +811 640 0.400000 +811 714 0.400000 +811 769 0.400000 +811 795 0.400000 +812 19 0.400000 +812 20 0.400000 +812 158 0.400000 +812 316 0.400000 +812 368 0.400000 +812 374 0.400000 +812 405 0.400000 +812 427 0.400000 +812 434 0.400000 +812 443 0.400000 +812 498 0.400000 +812 581 0.400000 +812 663 0.400000 +812 747 0.400000 +812 758 0.400000 +812 765 0.400000 +813 46 0.400000 +813 47 0.400000 +813 99 0.400000 +813 217 0.400000 +813 433 0.400000 +813 489 0.400000 +813 624 0.400000 +813 637 0.400000 +813 643 0.400000 +813 687 0.400000 +813 697 0.400000 +813 712 0.400000 +813 733 0.400000 +813 753 0.400000 +814 69 0.400000 +814 74 0.400000 +814 79 0.400000 +814 187 0.400000 +814 205 0.400000 +814 210 0.400000 +814 220 0.400000 +814 290 0.400000 +814 306 0.400000 +814 328 0.400000 +814 344 0.400000 +814 439 0.400000 +814 457 0.400000 +814 504 0.400000 +814 546 0.400000 +814 577 0.400000 +814 578 0.400000 +814 627 0.400000 +814 754 0.400000 +814 769 0.400000 +814 797 0.400000 +815 15 0.400000 +815 90 0.400000 +815 94 0.400000 +815 175 0.400000 +815 222 0.400000 +815 235 0.400000 +815 272 0.400000 +815 617 0.400000 +815 704 0.400000 +815 716 0.400000 +815 750 0.400000 +815 763 0.400000 +815 769 0.400000 +816 41 0.400000 +816 76 0.400000 +816 165 0.400000 +816 171 0.400000 +816 210 0.400000 +816 363 0.400000 +816 534 0.400000 +816 586 0.400000 +816 596 0.400000 +816 639 0.400000 +816 696 0.400000 +816 754 0.400000 +816 793 0.400000 +817 23 0.400000 +817 41 0.400000 +817 74 0.400000 +817 184 0.400000 +817 266 0.400000 +817 283 0.400000 +817 284 0.400000 +817 298 0.400000 +817 357 0.400000 +817 364 0.400000 +817 384 0.400000 +817 489 0.400000 +817 504 0.400000 +817 523 0.400000 +817 667 0.400000 +817 669 0.400000 +817 760 0.400000 +817 782 0.400000 +818 39 0.400000 +818 59 0.400000 +818 64 0.400000 +818 143 0.400000 +818 208 0.400000 +818 227 0.400000 +818 229 0.400000 +818 266 0.400000 +818 291 0.400000 +818 302 0.400000 +818 413 0.400000 +818 429 0.400000 +818 550 0.400000 +818 582 0.400000 +818 622 0.400000 +818 684 0.400000 +818 708 0.400000 +818 787 0.400000 +819 342 0.400000 +819 365 0.400000 +819 381 0.400000 +819 399 0.400000 +819 442 0.400000 +819 499 0.400000 +819 539 0.400000 +819 551 0.400000 +819 596 0.400000 +819 671 0.400000 +820 12 0.400000 +820 26 0.400000 +820 139 0.400000 +820 163 0.400000 +820 327 0.400000 +820 409 0.400000 +820 437 0.400000 +820 686 0.400000 +820 703 0.400000 +820 723 0.400000 +820 724 0.400000 +820 737 0.400000 +821 11 0.400000 +821 14 0.400000 +821 48 0.400000 +821 155 0.400000 +821 210 0.400000 +821 303 0.400000 +821 410 0.400000 +821 457 0.400000 +821 544 0.400000 +821 549 0.400000 +821 576 0.400000 +821 703 0.400000 +821 707 0.400000 +821 719 0.400000 +822 39 0.400000 +822 102 0.400000 +822 147 0.400000 +822 158 0.400000 +822 231 0.400000 +822 244 0.400000 +822 362 0.400000 +822 375 0.400000 +822 378 0.400000 +822 436 0.400000 +822 456 0.400000 +822 458 0.400000 +822 517 0.400000 +822 527 0.400000 +822 595 0.400000 +822 703 0.400000 +822 752 0.400000 +822 763 0.400000 +822 782 0.400000 +822 787 0.400000 +822 796 0.400000 +823 7 0.400000 +823 14 0.400000 +823 31 0.400000 +823 54 0.400000 +823 59 0.400000 +823 137 0.400000 +823 149 0.400000 +823 228 0.400000 +823 237 0.400000 +823 376 0.400000 +823 409 0.400000 +823 502 0.400000 +823 541 0.400000 +823 614 0.400000 +823 647 0.400000 +823 774 0.400000 +824 24 0.400000 +824 117 0.400000 +824 204 0.400000 +824 274 0.400000 +824 288 0.400000 +824 323 0.400000 +824 340 0.400000 +824 392 0.400000 +824 414 0.400000 +824 417 0.400000 +824 431 0.400000 +824 457 0.400000 +824 497 0.400000 +824 591 0.400000 +824 595 0.400000 +824 597 0.400000 +824 611 0.400000 +824 618 0.400000 +824 671 0.400000 +824 720 0.400000 +824 783 0.400000 +825 20 0.400000 +825 85 0.400000 +825 164 0.400000 +825 180 0.400000 +825 188 0.400000 +825 215 0.400000 +825 217 0.400000 +825 286 0.400000 +825 301 0.400000 +825 352 0.400000 +825 358 0.400000 +825 420 0.400000 +825 431 0.400000 +825 587 0.400000 +825 795 0.400000 +825 797 0.400000 +826 153 0.400000 +826 191 0.400000 +826 237 0.400000 +826 243 0.400000 +826 362 0.400000 +826 429 0.400000 +826 433 0.400000 +826 475 0.400000 +826 508 0.400000 +826 528 0.400000 +826 532 0.400000 +826 550 0.400000 +826 612 0.400000 +826 613 0.400000 +826 636 0.400000 +826 700 0.400000 +826 794 0.400000 +827 4 0.400000 +827 172 0.400000 +827 282 0.400000 +827 522 0.400000 +827 577 0.400000 +827 619 0.400000 +827 629 0.400000 +827 659 0.400000 +827 760 0.400000 +828 108 0.400000 +828 218 0.400000 +828 352 0.400000 +828 402 0.400000 +828 407 0.400000 +828 473 0.400000 +828 516 0.400000 +828 564 0.400000 +828 626 0.400000 +828 637 0.400000 +828 711 0.400000 +828 717 0.400000 +828 744 0.400000 +829 1 0.400000 +829 39 0.400000 +829 51 0.400000 +829 117 0.400000 +829 138 0.400000 +829 199 0.400000 +829 249 0.400000 +829 262 0.400000 +829 361 0.400000 +829 484 0.400000 +829 488 0.400000 +829 526 0.400000 +829 549 0.400000 +829 550 0.400000 +829 572 0.400000 +829 581 0.400000 +829 583 0.400000 +829 692 0.400000 +829 798 0.400000 +830 32 0.400000 +830 147 0.400000 +830 163 0.400000 +830 175 0.400000 +830 200 0.400000 +830 246 0.400000 +830 507 0.400000 +830 589 0.400000 +830 659 0.400000 +830 665 0.400000 +830 677 0.400000 +830 784 0.400000 +831 190 0.400000 +831 219 0.400000 +831 252 0.400000 +831 305 0.400000 +831 367 0.400000 +831 384 0.400000 +831 424 0.400000 +831 451 0.400000 +831 469 0.400000 +831 590 0.400000 +831 620 0.400000 +831 667 0.400000 +831 732 0.400000 +831 767 0.400000 +831 776 0.400000 +831 799 0.400000 +832 2 0.400000 +832 12 0.400000 +832 34 0.400000 +832 59 0.400000 +832 122 0.400000 +832 190 0.400000 +832 198 0.400000 +832 266 0.400000 +832 292 0.400000 +832 295 0.400000 +832 322 0.400000 +832 426 0.400000 +832 465 0.400000 +832 487 0.400000 +832 546 0.400000 +832 586 0.400000 +832 665 0.400000 +832 794 0.400000 +833 54 0.400000 +833 61 0.400000 +833 100 0.400000 +833 211 0.400000 +833 213 0.400000 +833 222 0.400000 +833 286 0.400000 +833 507 0.400000 +833 536 0.400000 +833 540 0.400000 +833 572 0.400000 +833 617 0.400000 +833 657 0.400000 +833 686 0.400000 +833 736 0.400000 +834 23 0.400000 +834 52 0.400000 +834 185 0.400000 +834 298 0.400000 +834 383 0.400000 +834 415 0.400000 +834 536 0.400000 +834 585 0.400000 +834 619 0.400000 +834 769 0.400000 +835 6 0.400000 +835 21 0.400000 +835 23 0.400000 +835 142 0.400000 +835 166 0.400000 +835 170 0.400000 +835 195 0.400000 +835 213 0.400000 +835 245 0.400000 +835 358 0.400000 +835 361 0.400000 +835 385 0.400000 +835 418 0.400000 +835 421 0.400000 +835 488 0.400000 +835 592 0.400000 +835 617 0.400000 +835 673 0.400000 +835 678 0.400000 +835 747 0.400000 +835 759 0.400000 +836 7 0.400000 +836 72 0.400000 +836 193 0.400000 +836 225 0.400000 +836 229 0.400000 +836 353 0.400000 +836 455 0.400000 +836 567 0.400000 +836 579 0.400000 +836 611 0.400000 +836 612 0.400000 +836 687 0.400000 +836 790 0.400000 +837 11 0.400000 +837 50 0.400000 +837 67 0.400000 +837 134 0.400000 +837 212 0.400000 +837 236 0.400000 +837 329 0.400000 +837 332 0.400000 +837 377 0.400000 +837 547 0.400000 +837 600 0.400000 +837 746 0.400000 +837 769 0.400000 +837 777 0.400000 +837 797 0.400000 +838 6 0.400000 +838 11 0.400000 +838 53 0.400000 +838 64 0.400000 +838 138 0.400000 +838 215 0.400000 +838 252 0.400000 +838 303 0.400000 +838 377 0.400000 +838 383 0.400000 +838 385 0.400000 +838 450 0.400000 +838 459 0.400000 +838 595 0.400000 +838 790 0.400000 +839 22 0.400000 +839 118 0.400000 +839 123 0.400000 +839 159 0.400000 +839 221 0.400000 +839 243 0.400000 +839 254 0.400000 +839 255 0.400000 +839 307 0.400000 +839 333 0.400000 +839 380 0.400000 +839 394 0.400000 +839 500 0.400000 +839 533 0.400000 +839 553 0.400000 +839 629 0.400000 +839 651 0.400000 +839 782 0.400000 +839 788 0.400000 +839 796 0.400000 +840 133 0.400000 +840 137 0.400000 +840 156 0.400000 +840 157 0.400000 +840 194 0.400000 +840 223 0.400000 +840 305 0.400000 +840 482 0.400000 +840 487 0.400000 +840 573 0.400000 +840 580 0.400000 +840 590 0.400000 +840 656 0.400000 +840 659 0.400000 +841 18 0.400000 +841 82 0.400000 +841 99 0.400000 +841 162 0.400000 +841 164 0.400000 +841 175 0.400000 +841 196 0.400000 +841 220 0.400000 +841 224 0.400000 +841 256 0.400000 +841 265 0.400000 +841 325 0.400000 +841 352 0.400000 +841 356 0.400000 +841 437 0.400000 +841 512 0.400000 +841 539 0.400000 +841 558 0.400000 +841 566 0.400000 +841 664 0.400000 +841 736 0.400000 +841 738 0.400000 +841 747 0.400000 +842 68 0.400000 +842 128 0.400000 +842 133 0.400000 +842 162 0.400000 +842 223 0.400000 +842 275 0.400000 +842 285 0.400000 +842 320 0.400000 +842 371 0.400000 +842 386 0.400000 +842 406 0.400000 +842 442 0.400000 +842 536 0.400000 +842 553 0.400000 +842 556 0.400000 +842 605 0.400000 +842 637 0.400000 +842 662 0.400000 +842 711 0.400000 +842 766 0.400000 +842 781 0.400000 +843 39 0.400000 +843 53 0.400000 +843 101 0.400000 +843 115 0.400000 +843 165 0.400000 +843 240 0.400000 +843 262 0.400000 +843 281 0.400000 +843 308 0.400000 +843 388 0.400000 +843 507 0.400000 +843 619 0.400000 +843 623 0.400000 +843 677 0.400000 +843 745 0.400000 +843 767 0.400000 +843 790 0.400000 +844 50 0.400000 +844 67 0.400000 +844 86 0.400000 +844 149 0.400000 +844 150 0.400000 +844 164 0.400000 +844 166 0.400000 +844 183 0.400000 +844 212 0.400000 +844 262 0.400000 +844 320 0.400000 +844 334 0.400000 +844 406 0.400000 +844 469 0.400000 +844 488 0.400000 +844 494 0.400000 +844 496 0.400000 +844 518 0.400000 +844 568 0.400000 +844 641 0.400000 +844 646 0.400000 +844 751 0.400000 +844 779 0.400000 +844 800 0.400000 +845 77 0.400000 +845 92 0.400000 +845 177 0.400000 +845 182 0.400000 +845 193 0.400000 +845 225 0.400000 +845 226 0.400000 +845 279 0.400000 +845 365 0.400000 +845 384 0.400000 +845 385 0.400000 +845 406 0.400000 +845 492 0.400000 +845 499 0.400000 +845 508 0.400000 +845 561 0.400000 +845 597 0.400000 +845 633 0.400000 +845 682 0.400000 +845 728 0.400000 +846 1 0.400000 +846 108 0.400000 +846 172 0.400000 +846 274 0.400000 +846 375 0.400000 +846 409 0.400000 +846 417 0.400000 +846 420 0.400000 +846 431 0.400000 +846 573 0.400000 +846 599 0.400000 +846 658 0.400000 +846 754 0.400000 +846 777 0.400000 +847 190 0.400000 +847 202 0.400000 +847 275 0.400000 +847 286 0.400000 +847 293 0.400000 +847 314 0.400000 +847 364 0.400000 +847 388 0.400000 +847 412 0.400000 +847 776 0.400000 +847 798 0.400000 +848 41 0.400000 +848 44 0.400000 +848 235 0.400000 +848 307 0.400000 +848 311 0.400000 +848 577 0.400000 +848 632 0.400000 +848 660 0.400000 +848 723 0.400000 +849 21 0.400000 +849 76 0.400000 +849 80 0.400000 +849 197 0.400000 +849 256 0.400000 +849 297 0.400000 +849 404 0.400000 +849 437 0.400000 +849 439 0.400000 +849 526 0.400000 +849 557 0.400000 +849 566 0.400000 +849 600 0.400000 +849 629 0.400000 +849 642 0.400000 +849 643 0.400000 +849 681 0.400000 +849 755 0.400000 +849 793 0.400000 +850 35 0.400000 +850 85 0.400000 +850 209 0.400000 +850 217 0.400000 +850 219 0.400000 +850 234 0.400000 +850 323 0.400000 +850 342 0.400000 +850 349 0.400000 +850 367 0.400000 +850 390 0.400000 +850 403 0.400000 +850 429 0.400000 +850 562 0.400000 +850 632 0.400000 +850 643 0.400000 +850 645 0.400000 +850 651 0.400000 +850 682 0.400000 +850 702 0.400000 +850 761 0.400000 +851 15 0.400000 +851 75 0.400000 +851 232 0.400000 +851 408 0.400000 +851 437 0.400000 +851 439 0.400000 +851 465 0.400000 +851 536 0.400000 +851 631 0.400000 +851 653 0.400000 +851 661 0.400000 +851 666 0.400000 +851 675 0.400000 +852 54 0.400000 +852 111 0.400000 +852 191 0.400000 +852 270 0.400000 +852 315 0.400000 +852 369 0.400000 +852 373 0.400000 +852 433 0.400000 +852 506 0.400000 +852 528 0.400000 +852 555 0.400000 +852 590 0.400000 +852 598 0.400000 +852 666 0.400000 +852 686 0.400000 +853 71 0.400000 +853 284 0.400000 +853 297 0.400000 +853 313 0.400000 +853 338 0.400000 +853 392 0.400000 +853 430 0.400000 +853 438 0.400000 +853 531 0.400000 +853 585 0.400000 +853 589 0.400000 +853 653 0.400000 +853 668 0.400000 +853 707 0.400000 +853 784 0.400000 +854 30 0.400000 +854 59 0.400000 +854 64 0.400000 +854 84 0.400000 +854 147 0.400000 +854 250 0.400000 +854 368 0.400000 +854 558 0.400000 +854 605 0.400000 +854 623 0.400000 +854 633 0.400000 +854 648 0.400000 +854 694 0.400000 +854 724 0.400000 +854 746 0.400000 +855 30 0.400000 +855 40 0.400000 +855 106 0.400000 +855 169 0.400000 +855 201 0.400000 +855 206 0.400000 +855 208 0.400000 +855 281 0.400000 +855 337 0.400000 +855 456 0.400000 +855 517 0.400000 +855 675 0.400000 +855 777 0.400000 +856 9 0.400000 +856 36 0.400000 +856 147 0.400000 +856 173 0.400000 +856 226 0.400000 +856 346 0.400000 +856 356 0.400000 +856 367 0.400000 +856 414 0.400000 +856 504 0.400000 +856 505 0.400000 +856 563 0.400000 +856 624 0.400000 +856 703 0.400000 +857 47 0.400000 +857 198 0.400000 +857 244 0.400000 +857 318 0.400000 +857 355 0.400000 +857 430 0.400000 +857 452 0.400000 +857 453 0.400000 +857 521 0.400000 +857 526 0.400000 +857 575 0.400000 +857 588 0.400000 +857 604 0.400000 +857 649 0.400000 +857 683 0.400000 +857 726 0.400000 +857 795 0.400000 +858 49 0.400000 +858 106 0.400000 +858 146 0.400000 +858 189 0.400000 +858 262 0.400000 +858 280 0.400000 +858 320 0.400000 +858 326 0.400000 +858 503 0.400000 +858 622 0.400000 +858 768 0.400000 +859 6 0.400000 +859 84 0.400000 +859 98 0.400000 +859 156 0.400000 +859 201 0.400000 +859 239 0.400000 +859 369 0.400000 +859 483 0.400000 +859 497 0.400000 +859 518 0.400000 +859 552 0.400000 +859 682 0.400000 +859 703 0.400000 +859 728 0.400000 +859 739 0.400000 +860 17 0.400000 +860 49 0.400000 +860 57 0.400000 +860 121 0.400000 +860 182 0.400000 +860 211 0.400000 +860 372 0.400000 +860 380 0.400000 +860 399 0.400000 +860 516 0.400000 +860 592 0.400000 +860 638 0.400000 +860 652 0.400000 +861 10 0.400000 +861 113 0.400000 +861 118 0.400000 +861 133 0.400000 +861 183 0.400000 +861 204 0.400000 +861 224 0.400000 +861 293 0.400000 +861 339 0.400000 +861 389 0.400000 +861 409 0.400000 +861 420 0.400000 +861 469 0.400000 +861 505 0.400000 +861 579 0.400000 +861 611 0.400000 +861 665 0.400000 +861 746 0.400000 +861 775 0.400000 +861 776 0.400000 +862 26 0.400000 +862 139 0.400000 +862 222 0.400000 +862 245 0.400000 +862 268 0.400000 +862 272 0.400000 +862 486 0.400000 +862 551 0.400000 +862 561 0.400000 +862 603 0.400000 +862 657 0.400000 +862 691 0.400000 +862 800 0.400000 +863 79 0.400000 +863 112 0.400000 +863 120 0.400000 +863 235 0.400000 +863 241 0.400000 +863 262 0.400000 +863 450 0.400000 +863 456 0.400000 +863 531 0.400000 +863 565 0.400000 +863 596 0.400000 +863 605 0.400000 +863 628 0.400000 +863 671 0.400000 +863 782 0.400000 +864 15 0.400000 +864 76 0.400000 +864 85 0.400000 +864 222 0.400000 +864 231 0.400000 +864 241 0.400000 +864 281 0.400000 +864 307 0.400000 +864 327 0.400000 +864 351 0.400000 +864 464 0.400000 +864 491 0.400000 +864 518 0.400000 +864 519 0.400000 +864 526 0.400000 +864 554 0.400000 +864 684 0.400000 +864 688 0.400000 +864 727 0.400000 +864 745 0.400000 +864 766 0.400000 +865 5 0.400000 +865 22 0.400000 +865 82 0.400000 +865 204 0.400000 +865 206 0.400000 +865 256 0.400000 +865 296 0.400000 +865 418 0.400000 +865 424 0.400000 +865 446 0.400000 +865 460 0.400000 +865 474 0.400000 +865 477 0.400000 +865 697 0.400000 +865 710 0.400000 +866 38 0.400000 +866 41 0.400000 +866 64 0.400000 +866 170 0.400000 +866 186 0.400000 +866 362 0.400000 +866 395 0.400000 +866 400 0.400000 +866 446 0.400000 +866 497 0.400000 +866 509 0.400000 +866 576 0.400000 +866 605 0.400000 +866 639 0.400000 +866 649 0.400000 +866 662 0.400000 +866 678 0.400000 +866 705 0.400000 +866 741 0.400000 +867 77 0.400000 +867 99 0.400000 +867 241 0.400000 +867 312 0.400000 +867 335 0.400000 +867 337 0.400000 +867 370 0.400000 +867 493 0.400000 +867 593 0.400000 +867 606 0.400000 +867 653 0.400000 +867 800 0.400000 +868 28 0.400000 +868 60 0.400000 +868 253 0.400000 +868 388 0.400000 +868 396 0.400000 +868 411 0.400000 +868 430 0.400000 +868 575 0.400000 +868 605 0.400000 +868 628 0.400000 +868 630 0.400000 +868 687 0.400000 +868 698 0.400000 +868 793 0.400000 +869 12 0.400000 +869 25 0.400000 +869 177 0.400000 +869 214 0.400000 +869 304 0.400000 +869 361 0.400000 +869 391 0.400000 +869 442 0.400000 +869 459 0.400000 +869 473 0.400000 +869 589 0.400000 +869 620 0.400000 +869 661 0.400000 +869 793 0.400000 +870 181 0.400000 +870 258 0.400000 +870 311 0.400000 +870 339 0.400000 +870 346 0.400000 +870 359 0.400000 +870 378 0.400000 +870 422 0.400000 +870 446 0.400000 +870 494 0.400000 +870 516 0.400000 +870 597 0.400000 +870 617 0.400000 +870 681 0.400000 +870 724 0.400000 +870 743 0.400000 +871 112 0.400000 +871 147 0.400000 +871 175 0.400000 +871 220 0.400000 +871 280 0.400000 +871 283 0.400000 +871 312 0.400000 +871 314 0.400000 +871 323 0.400000 +871 353 0.400000 +871 387 0.400000 +871 394 0.400000 +871 419 0.400000 +871 510 0.400000 +871 568 0.400000 +871 577 0.400000 +871 595 0.400000 +871 654 0.400000 +871 728 0.400000 +871 758 0.400000 +872 5 0.400000 +872 76 0.400000 +872 139 0.400000 +872 157 0.400000 +872 163 0.400000 +872 329 0.400000 +872 351 0.400000 +872 443 0.400000 +872 452 0.400000 +872 461 0.400000 +872 480 0.400000 +872 501 0.400000 +872 593 0.400000 +872 643 0.400000 +872 746 0.400000 +873 63 0.400000 +873 179 0.400000 +873 201 0.400000 +873 204 0.400000 +873 333 0.400000 +873 343 0.400000 +873 372 0.400000 +873 502 0.400000 +873 536 0.400000 +873 540 0.400000 +873 662 0.400000 +873 696 0.400000 +873 711 0.400000 +874 99 0.400000 +874 106 0.400000 +874 211 0.400000 +874 214 0.400000 +874 233 0.400000 +874 249 0.400000 +874 354 0.400000 +874 371 0.400000 +874 406 0.400000 +874 408 0.400000 +874 429 0.400000 +874 489 0.400000 +874 520 0.400000 +874 544 0.400000 +874 643 0.400000 +874 751 0.400000 +874 780 0.400000 +875 46 0.400000 +875 139 0.400000 +875 181 0.400000 +875 210 0.400000 +875 257 0.400000 +875 260 0.400000 +875 312 0.400000 +875 351 0.400000 +875 359 0.400000 +875 379 0.400000 +875 487 0.400000 +875 502 0.400000 +875 520 0.400000 +875 609 0.400000 +875 647 0.400000 +875 754 0.400000 +875 795 0.400000 +876 8 0.400000 +876 84 0.400000 +876 123 0.400000 +876 129 0.400000 +876 236 0.400000 +876 253 0.400000 +876 296 0.400000 +876 351 0.400000 +876 366 0.400000 +876 441 0.400000 +876 451 0.400000 +876 454 0.400000 +876 469 0.400000 +876 494 0.400000 +876 559 0.400000 +876 677 0.400000 +876 697 0.400000 +876 709 0.400000 +876 751 0.400000 +877 38 0.400000 +877 58 0.400000 +877 95 0.400000 +877 122 0.400000 +877 277 0.400000 +877 306 0.400000 +877 334 0.400000 +877 339 0.400000 +877 386 0.400000 +877 450 0.400000 +877 582 0.400000 +877 599 0.400000 +877 640 0.400000 +877 721 0.400000 +878 47 0.400000 +878 111 0.400000 +878 152 0.400000 +878 214 0.400000 +878 256 0.400000 +878 268 0.400000 +878 333 0.400000 +878 344 0.400000 +878 399 0.400000 +878 495 0.400000 +878 521 0.400000 +878 527 0.400000 +878 587 0.400000 +878 752 0.400000 +878 777 0.400000 +879 58 0.400000 +879 136 0.400000 +879 141 0.400000 +879 213 0.400000 +879 217 0.400000 +879 223 0.400000 +879 256 0.400000 +879 320 0.400000 +879 377 0.400000 +879 379 0.400000 +879 405 0.400000 +879 433 0.400000 +879 596 0.400000 +879 685 0.400000 +879 738 0.400000 +879 759 0.400000 +880 47 0.400000 +880 241 0.400000 +880 252 0.400000 +880 342 0.400000 +880 390 0.400000 +880 400 0.400000 +880 454 0.400000 +880 455 0.400000 +880 536 0.400000 +880 641 0.400000 +880 761 0.400000 +880 778 0.400000 +880 798 0.400000 +881 161 0.400000 +881 163 0.400000 +881 169 0.400000 +881 203 0.400000 +881 359 0.400000 +881 391 0.400000 +881 417 0.400000 +881 427 0.400000 +881 431 0.400000 +881 449 0.400000 +881 579 0.400000 +881 596 0.400000 +881 676 0.400000 +881 749 0.400000 +882 8 0.400000 +882 66 0.400000 +882 85 0.400000 +882 165 0.400000 +882 178 0.400000 +882 242 0.400000 +882 374 0.400000 +882 451 0.400000 +882 479 0.400000 +882 576 0.400000 +882 647 0.400000 +882 699 0.400000 +882 718 0.400000 +882 739 0.400000 +883 78 0.400000 +883 106 0.400000 +883 118 0.400000 +883 145 0.400000 +883 289 0.400000 +883 302 0.400000 +883 376 0.400000 +883 414 0.400000 +883 427 0.400000 +883 475 0.400000 +883 499 0.400000 +883 509 0.400000 +883 514 0.400000 +883 542 0.400000 +883 578 0.400000 +883 694 0.400000 +883 758 0.400000 +884 18 0.400000 +884 60 0.400000 +884 64 0.400000 +884 69 0.400000 +884 82 0.400000 +884 110 0.400000 +884 120 0.400000 +884 143 0.400000 +884 164 0.400000 +884 334 0.400000 +884 479 0.400000 +884 489 0.400000 +884 579 0.400000 +884 583 0.400000 +884 637 0.400000 +884 667 0.400000 +884 688 0.400000 +884 791 0.400000 +885 5 0.400000 +885 19 0.400000 +885 49 0.400000 +885 78 0.400000 +885 138 0.400000 +885 147 0.400000 +885 586 0.400000 +885 596 0.400000 +885 621 0.400000 +885 679 0.400000 +885 690 0.400000 +885 692 0.400000 +885 763 0.400000 +886 228 0.400000 +886 322 0.400000 +886 391 0.400000 +886 417 0.400000 +886 457 0.400000 +886 578 0.400000 +886 664 0.400000 +887 28 0.400000 +887 101 0.400000 +887 104 0.400000 +887 108 0.400000 +887 159 0.400000 +887 165 0.400000 +887 167 0.400000 +887 437 0.400000 +887 510 0.400000 +887 557 0.400000 +887 672 0.400000 +887 763 0.400000 +888 46 0.400000 +888 133 0.400000 +888 136 0.400000 +888 149 0.400000 +888 159 0.400000 +888 172 0.400000 +888 183 0.400000 +888 214 0.400000 +888 243 0.400000 +888 254 0.400000 +888 279 0.400000 +888 362 0.400000 +888 389 0.400000 +888 456 0.400000 +888 491 0.400000 +888 521 0.400000 +888 612 0.400000 +888 633 0.400000 +888 682 0.400000 +888 714 0.400000 +888 766 0.400000 +889 138 0.400000 +889 179 0.400000 +889 209 0.400000 +889 302 0.400000 +889 332 0.400000 +889 364 0.400000 +889 427 0.400000 +889 452 0.400000 +889 477 0.400000 +889 716 0.400000 +889 718 0.400000 +889 778 0.400000 +890 2 0.400000 +890 18 0.400000 +890 37 0.400000 +890 92 0.400000 +890 243 0.400000 +890 334 0.400000 +890 379 0.400000 +890 418 0.400000 +890 432 0.400000 +890 453 0.400000 +890 482 0.400000 +890 522 0.400000 +890 548 0.400000 +890 636 0.400000 +890 704 0.400000 +890 731 0.400000 +890 752 0.400000 +891 9 0.400000 +891 17 0.400000 +891 74 0.400000 +891 98 0.400000 +891 117 0.400000 +891 139 0.400000 +891 217 0.400000 +891 307 0.400000 +891 341 0.400000 +891 392 0.400000 +891 439 0.400000 +891 633 0.400000 +891 733 0.400000 +892 20 0.400000 +892 30 0.400000 +892 182 0.400000 +892 296 0.400000 +892 322 0.400000 +892 431 0.400000 +892 535 0.400000 +892 578 0.400000 +892 650 0.400000 +892 668 0.400000 +892 729 0.400000 +892 738 0.400000 +892 776 0.400000 +892 794 0.400000 +893 7 0.400000 +893 39 0.400000 +893 160 0.400000 +893 188 0.400000 +893 222 0.400000 +893 318 0.400000 +893 342 0.400000 +893 462 0.400000 +893 485 0.400000 +893 489 0.400000 +893 583 0.400000 +893 613 0.400000 +893 614 0.400000 +893 655 0.400000 +893 698 0.400000 +893 755 0.400000 +893 794 0.400000 +893 800 0.400000 +894 105 0.400000 +894 112 0.400000 +894 155 0.400000 +894 162 0.400000 +894 199 0.400000 +894 315 0.400000 +894 379 0.400000 +894 394 0.400000 +894 492 0.400000 +894 511 0.400000 +894 512 0.400000 +894 536 0.400000 +894 693 0.400000 +894 710 0.400000 +894 711 0.400000 +894 790 0.400000 +895 54 0.400000 +895 175 0.400000 +895 231 0.400000 +895 306 0.400000 +895 386 0.400000 +895 508 0.400000 +895 532 0.400000 +895 553 0.400000 +895 582 0.400000 +895 640 0.400000 +895 667 0.400000 +895 732 0.400000 +896 44 0.400000 +896 95 0.400000 +896 113 0.400000 +896 202 0.400000 +896 290 0.400000 +896 329 0.400000 +896 350 0.400000 +896 354 0.400000 +896 588 0.400000 +896 624 0.400000 +896 720 0.400000 +897 31 0.400000 +897 63 0.400000 +897 100 0.400000 +897 130 0.400000 +897 180 0.400000 +897 224 0.400000 +897 251 0.400000 +897 257 0.400000 +897 286 0.400000 +897 318 0.400000 +897 369 0.400000 +897 386 0.400000 +897 436 0.400000 +897 441 0.400000 +897 516 0.400000 +897 548 0.400000 +897 592 0.400000 +897 657 0.400000 +897 677 0.400000 +897 752 0.400000 +897 774 0.400000 +898 7 0.400000 +898 58 0.400000 +898 86 0.400000 +898 91 0.400000 +898 95 0.400000 +898 98 0.400000 +898 140 0.400000 +898 252 0.400000 +898 262 0.400000 +898 375 0.400000 +898 380 0.400000 +898 444 0.400000 +898 464 0.400000 +898 552 0.400000 +898 555 0.400000 +898 612 0.400000 +898 794 0.400000 +898 795 0.400000 +898 799 0.400000 +899 142 0.400000 +899 188 0.400000 +899 192 0.400000 +899 195 0.400000 +899 221 0.400000 +899 248 0.400000 +899 261 0.400000 +899 273 0.400000 +899 282 0.400000 +899 304 0.400000 +899 371 0.400000 +899 386 0.400000 +899 469 0.400000 +899 519 0.400000 +899 536 0.400000 +899 581 0.400000 +899 682 0.400000 +899 789 0.400000 +900 117 0.400000 +900 135 0.400000 +900 224 0.400000 +900 250 0.400000 +900 263 0.400000 +900 369 0.400000 +900 372 0.400000 +900 422 0.400000 +900 429 0.400000 +900 447 0.400000 +900 454 0.400000 +900 473 0.400000 +900 486 0.400000 +900 540 0.400000 +900 580 0.400000 +900 638 0.400000 +900 641 0.400000 +900 726 0.400000 +901 28 0.400000 +901 63 0.400000 +901 165 0.400000 +901 304 0.400000 +901 325 0.400000 +901 333 0.400000 +901 450 0.400000 +901 456 0.400000 +901 485 0.400000 +901 559 0.400000 +901 619 0.400000 +901 651 0.400000 +901 763 0.400000 +902 9 0.400000 +902 80 0.400000 +902 186 0.400000 +902 193 0.400000 +902 265 0.400000 +902 308 0.400000 +902 314 0.400000 +902 324 0.400000 +902 367 0.400000 +902 373 0.400000 +902 465 0.400000 +902 486 0.400000 +902 541 0.400000 +902 559 0.400000 +902 616 0.400000 +903 99 0.400000 +903 186 0.400000 +903 326 0.400000 +903 488 0.400000 +903 594 0.400000 +903 668 0.400000 +903 685 0.400000 +903 690 0.400000 +903 708 0.400000 +903 717 0.400000 +903 742 0.400000 +903 747 0.400000 +903 771 0.400000 +904 6 0.400000 +904 224 0.400000 +904 260 0.400000 +904 261 0.400000 +904 370 0.400000 +904 385 0.400000 +904 421 0.400000 +904 439 0.400000 +904 474 0.400000 +904 500 0.400000 +904 509 0.400000 +904 548 0.400000 +904 557 0.400000 +904 578 0.400000 +904 613 0.400000 +904 787 0.400000 +905 59 0.400000 +905 143 0.400000 +905 159 0.400000 +905 177 0.400000 +905 184 0.400000 +905 325 0.400000 +905 357 0.400000 +905 429 0.400000 +905 617 0.400000 +906 5 0.400000 +906 20 0.400000 +906 92 0.400000 +906 97 0.400000 +906 161 0.400000 +906 194 0.400000 +906 279 0.400000 +906 301 0.400000 +906 305 0.400000 +906 543 0.400000 +906 676 0.400000 +906 712 0.400000 +906 776 0.400000 +907 68 0.400000 +907 92 0.400000 +907 162 0.400000 +907 231 0.400000 +907 252 0.400000 +907 256 0.400000 +907 287 0.400000 +907 323 0.400000 +907 326 0.400000 +907 339 0.400000 +907 360 0.400000 +907 362 0.400000 +907 438 0.400000 +907 465 0.400000 +907 492 0.400000 +907 555 0.400000 +907 655 0.400000 +907 769 0.400000 +908 117 0.400000 +908 158 0.400000 +908 284 0.400000 +908 335 0.400000 +908 385 0.400000 +908 397 0.400000 +908 447 0.400000 +908 456 0.400000 +908 549 0.400000 +908 560 0.400000 +908 589 0.400000 +908 590 0.400000 +908 594 0.400000 +908 595 0.400000 +908 632 0.400000 +908 650 0.400000 +908 676 0.400000 +908 786 0.400000 +909 37 0.400000 +909 51 0.400000 +909 98 0.400000 +909 169 0.400000 +909 199 0.400000 +909 291 0.400000 +909 298 0.400000 +909 356 0.400000 +909 357 0.400000 +909 365 0.400000 +909 379 0.400000 +909 498 0.400000 +909 512 0.400000 +909 565 0.400000 +909 579 0.400000 +909 629 0.400000 +909 664 0.400000 +909 670 0.400000 +909 680 0.400000 +909 733 0.400000 +909 740 0.400000 +909 769 0.400000 +910 18 0.400000 +910 33 0.400000 +910 72 0.400000 +910 77 0.400000 +910 86 0.400000 +910 196 0.400000 +910 326 0.400000 +910 403 0.400000 +910 415 0.400000 +910 447 0.400000 +910 476 0.400000 +910 477 0.400000 +910 482 0.400000 +910 485 0.400000 +910 534 0.400000 +910 554 0.400000 +910 559 0.400000 +910 566 0.400000 +910 608 0.400000 +910 635 0.400000 +910 690 0.400000 +910 697 0.400000 +910 703 0.400000 +910 754 0.400000 +910 756 0.400000 +910 770 0.400000 +910 782 0.400000 +911 52 0.400000 +911 99 0.400000 +911 211 0.400000 +911 241 0.400000 +911 275 0.400000 +911 325 0.400000 +911 348 0.400000 +911 384 0.400000 +911 416 0.400000 +911 474 0.400000 +911 497 0.400000 +911 512 0.400000 +911 535 0.400000 +911 606 0.400000 +911 617 0.400000 +911 625 0.400000 +911 643 0.400000 +911 683 0.400000 +911 689 0.400000 +911 703 0.400000 +911 705 0.400000 +911 758 0.400000 +911 779 0.400000 +911 797 0.400000 +912 1 0.400000 +912 181 0.400000 +912 226 0.400000 +912 285 0.400000 +912 330 0.400000 +912 347 0.400000 +912 404 0.400000 +912 415 0.400000 +912 529 0.400000 +912 563 0.400000 +912 707 0.400000 +912 750 0.400000 +912 772 0.400000 +912 783 0.400000 +913 38 0.400000 +913 83 0.400000 +913 130 0.400000 +913 136 0.400000 +913 137 0.400000 +913 234 0.400000 +913 267 0.400000 +913 280 0.400000 +913 292 0.400000 +913 304 0.400000 +913 385 0.400000 +913 417 0.400000 +913 450 0.400000 +913 480 0.400000 +913 557 0.400000 +913 601 0.400000 +913 640 0.400000 +913 642 0.400000 +913 665 0.400000 +913 674 0.400000 +913 717 0.400000 +913 731 0.400000 +913 787 0.400000 +914 91 0.400000 +914 194 0.400000 +914 285 0.400000 +914 309 0.400000 +914 311 0.400000 +914 449 0.400000 +914 458 0.400000 +914 477 0.400000 +914 532 0.400000 +914 585 0.400000 +914 614 0.400000 +915 10 0.400000 +915 17 0.400000 +915 19 0.400000 +915 36 0.400000 +915 51 0.400000 +915 57 0.400000 +915 69 0.400000 +915 126 0.400000 +915 133 0.400000 +915 142 0.400000 +915 156 0.400000 +915 194 0.400000 +915 211 0.400000 +915 251 0.400000 +915 252 0.400000 +915 307 0.400000 +915 318 0.400000 +915 329 0.400000 +915 375 0.400000 +915 395 0.400000 +915 405 0.400000 +915 466 0.400000 +915 520 0.400000 +915 532 0.400000 +915 624 0.400000 +915 653 0.400000 +915 678 0.400000 +915 685 0.400000 +915 731 0.400000 +916 2 0.400000 +916 10 0.400000 +916 14 0.400000 +916 161 0.400000 +916 287 0.400000 +916 311 0.400000 +916 324 0.400000 +916 363 0.400000 +916 395 0.400000 +916 414 0.400000 +916 552 0.400000 +916 739 0.400000 +916 756 0.400000 +916 762 0.400000 +917 51 0.400000 +917 191 0.400000 +917 199 0.400000 +917 212 0.400000 +917 223 0.400000 +917 334 0.400000 +917 377 0.400000 +917 394 0.400000 +917 405 0.400000 +917 406 0.400000 +917 409 0.400000 +917 430 0.400000 +917 449 0.400000 +917 451 0.400000 +917 474 0.400000 +917 603 0.400000 +917 642 0.400000 +917 645 0.400000 +917 735 0.400000 +917 788 0.400000 +918 3 0.400000 +918 4 0.400000 +918 125 0.400000 +918 152 0.400000 +918 173 0.400000 +918 218 0.400000 +918 341 0.400000 +918 371 0.400000 +918 476 0.400000 +918 621 0.400000 +918 648 0.400000 +918 706 0.400000 +919 31 0.400000 +919 82 0.400000 +919 86 0.400000 +919 148 0.400000 +919 219 0.400000 +919 257 0.400000 +919 296 0.400000 +919 322 0.400000 +919 341 0.400000 +919 364 0.400000 +919 382 0.400000 +919 390 0.400000 +919 555 0.400000 +919 560 0.400000 +919 592 0.400000 +919 729 0.400000 +919 736 0.400000 +919 741 0.400000 +919 749 0.400000 +919 758 0.400000 +920 115 0.400000 +920 116 0.400000 +920 200 0.400000 +920 247 0.400000 +920 449 0.400000 +920 482 0.400000 +920 488 0.400000 +920 494 0.400000 +920 616 0.400000 +920 621 0.400000 +920 639 0.400000 +920 716 0.400000 +920 752 0.400000 +920 777 0.400000 +921 106 0.400000 +921 108 0.400000 +921 115 0.400000 +921 152 0.400000 +921 247 0.400000 +921 272 0.400000 +921 295 0.400000 +921 299 0.400000 +921 383 0.400000 +921 392 0.400000 +921 437 0.400000 +921 483 0.400000 +921 498 0.400000 +921 563 0.400000 +921 639 0.400000 +921 654 0.400000 +921 671 0.400000 +922 19 0.400000 +922 97 0.400000 +922 118 0.400000 +922 181 0.400000 +922 211 0.400000 +922 216 0.400000 +922 251 0.400000 +922 312 0.400000 +922 576 0.400000 +922 616 0.400000 +922 649 0.400000 +922 723 0.400000 +922 777 0.400000 +923 3 0.400000 +923 147 0.400000 +923 148 0.400000 +923 167 0.400000 +923 176 0.400000 +923 188 0.400000 +923 218 0.400000 +923 232 0.400000 +923 257 0.400000 +923 266 0.400000 +923 270 0.400000 +923 311 0.400000 +923 371 0.400000 +923 430 0.400000 +923 480 0.400000 +923 505 0.400000 +923 512 0.400000 +923 542 0.400000 +923 588 0.400000 +923 653 0.400000 +923 688 0.400000 +924 6 0.400000 +924 8 0.400000 +924 33 0.400000 +924 52 0.400000 +924 82 0.400000 +924 88 0.400000 +924 154 0.400000 +924 175 0.400000 +924 239 0.400000 +924 264 0.400000 +924 298 0.400000 +924 386 0.400000 +924 463 0.400000 +924 491 0.400000 +924 582 0.400000 +924 631 0.400000 +924 633 0.400000 +924 663 0.400000 +924 683 0.400000 +924 695 0.400000 +924 757 0.400000 +924 775 0.400000 +925 41 0.400000 +925 215 0.400000 +925 256 0.400000 +925 330 0.400000 +925 340 0.400000 +925 454 0.400000 +925 497 0.400000 +925 524 0.400000 +925 530 0.400000 +925 540 0.400000 +925 575 0.400000 +925 621 0.400000 +925 663 0.400000 +925 672 0.400000 +925 725 0.400000 +925 751 0.400000 +925 767 0.400000 +926 112 0.400000 +926 156 0.400000 +926 203 0.400000 +926 378 0.400000 +926 457 0.400000 +926 503 0.400000 +926 524 0.400000 +926 549 0.400000 +926 729 0.400000 +926 742 0.400000 +926 769 0.400000 +926 795 0.400000 +927 30 0.400000 +927 61 0.400000 +927 153 0.400000 +927 209 0.400000 +927 247 0.400000 +927 249 0.400000 +927 278 0.400000 +927 311 0.400000 +927 399 0.400000 +927 408 0.400000 +927 442 0.400000 +927 505 0.400000 +927 553 0.400000 +927 712 0.400000 +927 774 0.400000 +928 10 0.400000 +928 12 0.400000 +928 40 0.400000 +928 48 0.400000 +928 77 0.400000 +928 148 0.400000 +928 154 0.400000 +928 168 0.400000 +928 183 0.400000 +928 323 0.400000 +928 372 0.400000 +928 376 0.400000 +928 639 0.400000 +928 650 0.400000 +928 656 0.400000 +928 709 0.400000 +928 777 0.400000 +928 795 0.400000 +929 19 0.400000 +929 142 0.400000 +929 170 0.400000 +929 318 0.400000 +929 367 0.400000 +929 368 0.400000 +929 417 0.400000 +929 438 0.400000 +929 450 0.400000 +929 473 0.400000 +929 486 0.400000 +929 518 0.400000 +929 533 0.400000 +929 574 0.400000 +929 607 0.400000 +929 617 0.400000 +929 633 0.400000 +929 698 0.400000 +929 714 0.400000 +929 796 0.400000 +930 58 0.400000 +930 65 0.400000 +930 171 0.400000 +930 183 0.400000 +930 198 0.400000 +930 230 0.400000 +930 241 0.400000 +930 243 0.400000 +930 368 0.400000 +930 371 0.400000 +930 501 0.400000 +930 516 0.400000 +930 519 0.400000 +930 536 0.400000 +930 552 0.400000 +930 642 0.400000 +930 657 0.400000 +930 670 0.400000 +930 735 0.400000 +930 747 0.400000 +931 22 0.400000 +931 39 0.400000 +931 83 0.400000 +931 88 0.400000 +931 127 0.400000 +931 182 0.400000 +931 199 0.400000 +931 322 0.400000 +931 418 0.400000 +931 419 0.400000 +931 481 0.400000 +931 517 0.400000 +931 540 0.400000 +931 740 0.400000 +931 773 0.400000 +932 10 0.400000 +932 113 0.400000 +932 119 0.400000 +932 212 0.400000 +932 221 0.400000 +932 261 0.400000 +932 279 0.400000 +932 340 0.400000 +932 413 0.400000 +932 415 0.400000 +932 424 0.400000 +932 444 0.400000 +932 457 0.400000 +932 557 0.400000 +932 628 0.400000 +932 646 0.400000 +932 719 0.400000 +932 724 0.400000 +932 738 0.400000 +932 788 0.400000 +933 27 0.400000 +933 57 0.400000 +933 60 0.400000 +933 201 0.400000 +933 209 0.400000 +933 231 0.400000 +933 245 0.400000 +933 256 0.400000 +933 279 0.400000 +933 291 0.400000 +933 373 0.400000 +933 648 0.400000 +933 749 0.400000 +933 756 0.400000 +934 5 0.400000 +934 222 0.400000 +934 274 0.400000 +934 301 0.400000 +934 335 0.400000 +934 371 0.400000 +934 428 0.400000 +934 452 0.400000 +934 560 0.400000 +934 644 0.400000 +934 687 0.400000 +935 25 0.400000 +935 119 0.400000 +935 131 0.400000 +935 286 0.400000 +935 307 0.400000 +935 315 0.400000 +935 477 0.400000 +935 504 0.400000 +935 578 0.400000 +935 598 0.400000 +935 614 0.400000 +935 627 0.400000 +935 680 0.400000 +935 692 0.400000 +936 25 0.400000 +936 43 0.400000 +936 55 0.400000 +936 128 0.400000 +936 131 0.400000 +936 144 0.400000 +936 158 0.400000 +936 206 0.400000 +936 337 0.400000 +936 343 0.400000 +936 435 0.400000 +936 460 0.400000 +936 560 0.400000 +936 576 0.400000 +936 590 0.400000 +936 600 0.400000 +936 619 0.400000 +936 623 0.400000 +936 669 0.400000 +936 684 0.400000 +936 693 0.400000 +936 708 0.400000 +936 744 0.400000 +937 8 0.400000 +937 54 0.400000 +937 66 0.400000 +937 69 0.400000 +937 95 0.400000 +937 137 0.400000 +937 156 0.400000 +937 182 0.400000 +937 256 0.400000 +937 301 0.400000 +937 312 0.400000 +937 417 0.400000 +937 445 0.400000 +937 526 0.400000 +937 570 0.400000 +937 633 0.400000 +937 657 0.400000 +937 659 0.400000 +937 667 0.400000 +937 681 0.400000 +937 715 0.400000 +937 744 0.400000 +938 37 0.400000 +938 43 0.400000 +938 87 0.400000 +938 247 0.400000 +938 256 0.400000 +938 281 0.400000 +938 298 0.400000 +938 409 0.400000 +938 410 0.400000 +938 494 0.400000 +938 560 0.400000 +938 593 0.400000 +938 599 0.400000 +938 793 0.400000 +939 16 0.400000 +939 40 0.400000 +939 121 0.400000 +939 187 0.400000 +939 256 0.400000 +939 263 0.400000 +939 273 0.400000 +939 279 0.400000 +939 332 0.400000 +939 339 0.400000 +939 515 0.400000 +939 525 0.400000 +939 554 0.400000 +939 725 0.400000 +939 730 0.400000 +939 740 0.400000 +939 747 0.400000 +940 88 0.400000 +940 176 0.400000 +940 192 0.400000 +940 300 0.400000 +940 305 0.400000 +940 394 0.400000 +940 443 0.400000 +940 469 0.400000 +940 510 0.400000 +940 543 0.400000 +940 645 0.400000 +940 659 0.400000 +940 662 0.400000 +940 719 0.400000 +941 62 0.400000 +941 104 0.400000 +941 148 0.400000 +941 188 0.400000 +941 196 0.400000 +941 217 0.400000 +941 233 0.400000 +941 303 0.400000 +941 323 0.400000 +941 346 0.400000 +941 348 0.400000 +941 378 0.400000 +941 408 0.400000 +941 501 0.400000 +941 523 0.400000 +941 606 0.400000 +941 646 0.400000 +941 681 0.400000 +941 765 0.400000 +941 771 0.400000 +941 782 0.400000 +942 45 0.400000 +942 59 0.400000 +942 99 0.400000 +942 120 0.400000 +942 218 0.400000 +942 523 0.400000 +942 608 0.400000 +942 653 0.400000 +942 665 0.400000 +942 724 0.400000 +942 734 0.400000 +942 750 0.400000 +943 8 0.400000 +943 95 0.400000 +943 178 0.400000 +943 269 0.400000 +943 329 0.400000 +943 424 0.400000 +943 482 0.400000 +943 484 0.400000 +943 501 0.400000 +943 567 0.400000 +943 614 0.400000 +943 689 0.400000 +943 789 0.400000 +944 9 0.400000 +944 149 0.400000 +944 179 0.400000 +944 200 0.400000 +944 438 0.400000 +944 499 0.400000 +944 521 0.400000 +944 599 0.400000 +945 72 0.400000 +945 79 0.400000 +945 134 0.400000 +945 185 0.400000 +945 204 0.400000 +945 252 0.400000 +945 547 0.400000 +945 577 0.400000 +945 579 0.400000 +945 605 0.400000 +945 612 0.400000 +945 620 0.400000 +945 646 0.400000 +945 650 0.400000 +945 664 0.400000 +945 679 0.400000 +945 689 0.400000 +945 699 0.400000 +945 709 0.400000 +945 782 0.400000 +946 15 0.400000 +946 76 0.400000 +946 135 0.400000 +946 166 0.400000 +946 258 0.400000 +946 274 0.400000 +946 391 0.400000 +946 540 0.400000 +946 633 0.400000 +946 679 0.400000 +947 78 0.400000 +947 132 0.400000 +947 140 0.400000 +947 292 0.400000 +947 347 0.400000 +947 523 0.400000 +947 623 0.400000 +947 625 0.400000 +947 677 0.400000 +947 713 0.400000 +947 737 0.400000 +948 41 0.400000 +948 65 0.400000 +948 74 0.400000 +948 144 0.400000 +948 161 0.400000 +948 164 0.400000 +948 208 0.400000 +948 211 0.400000 +948 405 0.400000 +948 409 0.400000 +948 447 0.400000 +948 484 0.400000 +948 545 0.400000 +948 578 0.400000 +948 611 0.400000 +948 682 0.400000 +948 690 0.400000 +948 708 0.400000 +948 752 0.400000 +948 762 0.400000 +948 770 0.400000 +949 38 0.400000 +949 44 0.400000 +949 101 0.400000 +949 187 0.400000 +949 312 0.400000 +949 366 0.400000 +949 509 0.400000 +949 531 0.400000 +949 576 0.400000 +949 612 0.400000 +949 659 0.400000 +949 700 0.400000 +949 706 0.400000 +949 730 0.400000 +950 43 0.400000 +950 184 0.400000 +950 191 0.400000 +950 199 0.400000 +950 254 0.400000 +950 399 0.400000 +950 640 0.400000 +950 739 0.400000 +950 743 0.400000 +951 38 0.400000 +951 77 0.400000 +951 138 0.400000 +951 187 0.400000 +951 254 0.400000 +951 301 0.400000 +951 339 0.400000 +951 395 0.400000 +951 416 0.400000 +951 628 0.400000 +951 636 0.400000 +951 643 0.400000 +951 777 0.400000 +952 128 0.400000 +952 312 0.400000 +952 330 0.400000 +952 375 0.400000 +952 394 0.400000 +952 431 0.400000 +952 437 0.400000 +952 448 0.400000 +952 542 0.400000 +952 573 0.400000 +952 592 0.400000 +952 599 0.400000 +952 624 0.400000 +952 659 0.400000 +952 778 0.400000 +952 793 0.400000 +953 92 0.400000 +953 106 0.400000 +953 138 0.400000 +953 162 0.400000 +953 253 0.400000 +953 294 0.400000 +953 403 0.400000 +953 428 0.400000 +953 520 0.400000 +953 573 0.400000 +953 668 0.400000 +953 697 0.400000 +953 703 0.400000 +953 707 0.400000 +953 729 0.400000 +953 772 0.400000 +954 106 0.400000 +954 147 0.400000 +954 252 0.400000 +954 268 0.400000 +954 288 0.400000 +954 291 0.400000 +954 302 0.400000 +954 304 0.400000 +954 335 0.400000 +954 401 0.400000 +954 646 0.400000 +954 647 0.400000 +954 750 0.400000 +955 131 0.400000 +955 171 0.400000 +955 188 0.400000 +955 197 0.400000 +955 198 0.400000 +955 243 0.400000 +955 296 0.400000 +955 374 0.400000 +955 424 0.400000 +955 581 0.400000 +955 647 0.400000 +955 651 0.400000 +955 716 0.400000 +955 739 0.400000 +955 745 0.400000 +955 800 0.400000 +956 184 0.400000 +956 194 0.400000 +956 253 0.400000 +956 318 0.400000 +956 330 0.400000 +956 407 0.400000 +956 414 0.400000 +956 466 0.400000 +956 477 0.400000 +956 520 0.400000 +956 527 0.400000 +956 573 0.400000 +956 633 0.400000 +956 738 0.400000 +957 38 0.400000 +957 115 0.400000 +957 342 0.400000 +957 406 0.400000 +957 412 0.400000 +957 426 0.400000 +957 491 0.400000 +957 530 0.400000 +957 570 0.400000 +957 626 0.400000 +957 690 0.400000 +958 8 0.400000 +958 41 0.400000 +958 258 0.400000 +958 296 0.400000 +958 347 0.400000 +958 407 0.400000 +958 427 0.400000 +958 433 0.400000 +958 485 0.400000 +958 487 0.400000 +958 577 0.400000 +958 603 0.400000 +958 607 0.400000 +958 612 0.400000 +958 695 0.400000 +958 780 0.400000 +958 790 0.400000 +959 13 0.400000 +959 62 0.400000 +959 65 0.400000 +959 103 0.400000 +959 159 0.400000 +959 175 0.400000 +959 236 0.400000 +959 254 0.400000 +959 395 0.400000 +959 406 0.400000 +959 422 0.400000 +959 425 0.400000 +959 566 0.400000 +959 601 0.400000 +959 668 0.400000 +959 693 0.400000 +959 695 0.400000 +959 765 0.400000 +960 2 0.400000 +960 49 0.400000 +960 50 0.400000 +960 162 0.400000 +960 186 0.400000 +960 187 0.400000 +960 245 0.400000 +960 350 0.400000 +960 355 0.400000 +960 485 0.400000 +960 617 0.400000 +960 687 0.400000 +961 18 0.400000 +961 31 0.400000 +961 32 0.400000 +961 84 0.400000 +961 95 0.400000 +961 98 0.400000 +961 105 0.400000 +961 110 0.400000 +961 114 0.400000 +961 129 0.400000 +961 194 0.400000 +961 250 0.400000 +961 257 0.400000 +961 323 0.400000 +961 352 0.400000 +961 388 0.400000 +961 446 0.400000 +961 447 0.400000 +961 610 0.400000 +961 615 0.400000 +961 660 0.400000 +961 673 0.400000 +961 684 0.400000 +961 705 0.400000 +961 719 0.400000 +961 728 0.400000 +961 734 0.400000 +961 757 0.400000 +962 50 0.400000 +962 108 0.400000 +962 115 0.400000 +962 317 0.400000 +962 341 0.400000 +962 370 0.400000 +962 381 0.400000 +962 383 0.400000 +962 419 0.400000 +962 459 0.400000 +962 605 0.400000 +962 686 0.400000 +962 718 0.400000 +962 728 0.400000 +963 15 0.400000 +963 24 0.400000 +963 136 0.400000 +963 270 0.400000 +963 456 0.400000 +963 466 0.400000 +963 548 0.400000 +963 604 0.400000 +963 609 0.400000 +963 651 0.400000 +963 741 0.400000 +964 4 0.400000 +964 52 0.400000 +964 85 0.400000 +964 126 0.400000 +964 155 0.400000 +964 191 0.400000 +964 238 0.400000 +964 337 0.400000 +964 367 0.400000 +964 376 0.400000 +964 402 0.400000 +964 481 0.400000 +964 574 0.400000 +964 609 0.400000 +964 645 0.400000 +964 657 0.400000 +964 717 0.400000 +964 757 0.400000 +964 785 0.400000 +964 791 0.400000 +964 796 0.400000 +965 122 0.400000 +965 288 0.400000 +965 303 0.400000 +965 307 0.400000 +965 405 0.400000 +965 515 0.400000 +965 560 0.400000 +965 582 0.400000 +965 673 0.400000 +965 783 0.400000 +966 45 0.400000 +966 73 0.400000 +966 132 0.400000 +966 170 0.400000 +966 201 0.400000 +966 214 0.400000 +966 237 0.400000 +966 299 0.400000 +966 355 0.400000 +966 358 0.400000 +966 400 0.400000 +966 449 0.400000 +966 550 0.400000 +966 578 0.400000 +966 619 0.400000 +966 626 0.400000 +966 648 0.400000 +966 701 0.400000 +966 717 0.400000 +966 784 0.400000 +966 791 0.400000 +967 20 0.400000 +967 119 0.400000 +967 149 0.400000 +967 238 0.400000 +967 268 0.400000 +967 322 0.400000 +967 388 0.400000 +967 478 0.400000 +967 535 0.400000 +967 602 0.400000 +967 613 0.400000 +967 634 0.400000 +967 636 0.400000 +967 705 0.400000 +967 736 0.400000 +968 2 0.400000 +968 24 0.400000 +968 42 0.400000 +968 150 0.400000 +968 160 0.400000 +968 175 0.400000 +968 180 0.400000 +968 260 0.400000 +968 264 0.400000 +968 352 0.400000 +968 438 0.400000 +968 642 0.400000 +968 643 0.400000 +968 690 0.400000 +968 700 0.400000 +969 95 0.400000 +969 150 0.400000 +969 192 0.400000 +969 299 0.400000 +969 368 0.400000 +969 375 0.400000 +969 430 0.400000 +969 436 0.400000 +969 451 0.400000 +969 619 0.400000 +969 633 0.400000 +969 650 0.400000 +969 679 0.400000 +969 698 0.400000 +969 729 0.400000 +969 748 0.400000 +969 789 0.400000 +970 7 0.400000 +970 124 0.400000 +970 149 0.400000 +970 351 0.400000 +970 382 0.400000 +970 402 0.400000 +970 414 0.400000 +970 489 0.400000 +970 612 0.400000 +970 644 0.400000 +970 645 0.400000 +970 650 0.400000 +970 711 0.400000 +970 778 0.400000 +971 1 0.400000 +971 37 0.400000 +971 235 0.400000 +971 260 0.400000 +971 262 0.400000 +971 278 0.400000 +971 320 0.400000 +971 328 0.400000 +971 332 0.400000 +971 375 0.400000 +971 392 0.400000 +971 440 0.400000 +971 464 0.400000 +971 485 0.400000 +971 512 0.400000 +971 544 0.400000 +971 561 0.400000 +971 603 0.400000 +971 794 0.400000 +971 795 0.400000 +972 16 0.400000 +972 22 0.400000 +972 105 0.400000 +972 281 0.400000 +972 387 0.400000 +972 436 0.400000 +972 500 0.400000 +972 630 0.400000 +972 671 0.400000 +972 714 0.400000 +972 777 0.400000 +973 92 0.400000 +973 259 0.400000 +973 378 0.400000 +973 440 0.400000 +973 464 0.400000 +973 543 0.400000 +973 587 0.400000 +973 613 0.400000 +973 637 0.400000 +973 755 0.400000 +973 762 0.400000 +973 786 0.400000 +974 28 0.400000 +974 31 0.400000 +974 148 0.400000 +974 194 0.400000 +974 199 0.400000 +974 211 0.400000 +974 268 0.400000 +974 306 0.400000 +974 357 0.400000 +974 361 0.400000 +974 372 0.400000 +974 380 0.400000 +974 413 0.400000 +974 462 0.400000 +974 490 0.400000 +974 565 0.400000 +974 571 0.400000 +974 607 0.400000 +974 617 0.400000 +974 669 0.400000 +974 691 0.400000 +975 48 0.400000 +975 56 0.400000 +975 126 0.400000 +975 306 0.400000 +975 333 0.400000 +975 337 0.400000 +975 349 0.400000 +975 444 0.400000 +975 499 0.400000 +975 614 0.400000 +975 633 0.400000 +975 694 0.400000 +975 730 0.400000 +975 768 0.400000 +975 777 0.400000 +975 782 0.400000 +976 195 0.400000 +976 253 0.400000 +976 255 0.400000 +976 334 0.400000 +976 574 0.400000 +976 583 0.400000 +976 613 0.400000 +976 619 0.400000 +976 634 0.400000 +976 694 0.400000 +976 790 0.400000 +977 19 0.400000 +977 143 0.400000 +977 149 0.400000 +977 188 0.400000 +977 191 0.400000 +977 203 0.400000 +977 334 0.400000 +977 420 0.400000 +977 445 0.400000 +977 532 0.400000 +977 545 0.400000 +977 548 0.400000 +977 552 0.400000 +977 708 0.400000 +977 726 0.400000 +977 786 0.400000 +978 63 0.400000 +978 105 0.400000 +978 226 0.400000 +978 343 0.400000 +978 413 0.400000 +978 427 0.400000 +978 492 0.400000 +978 629 0.400000 +978 670 0.400000 +978 727 0.400000 +978 778 0.400000 +979 10 0.400000 +979 99 0.400000 +979 150 0.400000 +979 156 0.400000 +979 186 0.400000 +979 204 0.400000 +979 262 0.400000 +979 307 0.400000 +979 350 0.400000 +979 404 0.400000 +979 513 0.400000 +979 525 0.400000 +979 531 0.400000 +979 557 0.400000 +979 597 0.400000 +979 646 0.400000 +979 647 0.400000 +979 672 0.400000 +979 691 0.400000 +979 707 0.400000 +979 767 0.400000 +980 3 0.400000 +980 15 0.400000 +980 140 0.400000 +980 153 0.400000 +980 196 0.400000 +980 208 0.400000 +980 216 0.400000 +980 289 0.400000 +980 411 0.400000 +980 445 0.400000 +980 511 0.400000 +980 644 0.400000 +980 731 0.400000 +980 756 0.400000 +980 771 0.400000 +981 11 0.400000 +981 12 0.400000 +981 33 0.400000 +981 46 0.400000 +981 199 0.400000 +981 207 0.400000 +981 234 0.400000 +981 277 0.400000 +981 284 0.400000 +981 390 0.400000 +981 403 0.400000 +981 546 0.400000 +981 690 0.400000 +981 766 0.400000 +981 771 0.400000 +981 779 0.400000 +982 23 0.400000 +982 44 0.400000 +982 177 0.400000 +982 183 0.400000 +982 204 0.400000 +982 264 0.400000 +982 276 0.400000 +982 407 0.400000 +982 444 0.400000 +982 455 0.400000 +982 458 0.400000 +982 483 0.400000 +982 508 0.400000 +982 546 0.400000 +982 596 0.400000 +982 638 0.400000 +982 645 0.400000 +982 659 0.400000 +982 745 0.400000 +982 749 0.400000 +983 24 0.400000 +983 60 0.400000 +983 268 0.400000 +983 269 0.400000 +983 284 0.400000 +983 367 0.400000 +983 412 0.400000 +983 442 0.400000 +983 463 0.400000 +983 487 0.400000 +983 537 0.400000 +983 589 0.400000 +983 664 0.400000 +983 678 0.400000 +983 729 0.400000 +983 732 0.400000 +984 7 0.400000 +984 127 0.400000 +984 129 0.400000 +984 188 0.400000 +984 356 0.400000 +984 379 0.400000 +984 405 0.400000 +984 432 0.400000 +984 441 0.400000 +984 471 0.400000 +984 534 0.400000 +984 587 0.400000 +984 592 0.400000 +984 616 0.400000 +984 702 0.400000 +984 738 0.400000 +985 183 0.400000 +985 185 0.400000 +985 214 0.400000 +985 216 0.400000 +985 227 0.400000 +985 233 0.400000 +985 284 0.400000 +985 296 0.400000 +985 336 0.400000 +985 353 0.400000 +985 479 0.400000 +985 490 0.400000 +985 538 0.400000 +985 550 0.400000 +985 565 0.400000 +985 680 0.400000 +985 725 0.400000 +985 792 0.400000 +986 55 0.400000 +986 56 0.400000 +986 207 0.400000 +986 215 0.400000 +986 241 0.400000 +986 259 0.400000 +986 265 0.400000 +986 361 0.400000 +986 424 0.400000 +986 511 0.400000 +986 548 0.400000 +986 596 0.400000 +986 605 0.400000 +986 644 0.400000 +986 678 0.400000 +986 690 0.400000 +986 747 0.400000 +986 770 0.400000 +986 776 0.400000 +987 52 0.400000 +987 59 0.400000 +987 70 0.400000 +987 124 0.400000 +987 139 0.400000 +987 191 0.400000 +987 198 0.400000 +987 199 0.400000 +987 354 0.400000 +987 388 0.400000 +987 446 0.400000 +987 563 0.400000 +987 610 0.400000 +987 622 0.400000 +988 64 0.400000 +988 90 0.400000 +988 106 0.400000 +988 146 0.400000 +988 303 0.400000 +988 342 0.400000 +988 367 0.400000 +988 453 0.400000 +988 489 0.400000 +988 564 0.400000 +988 568 0.400000 +988 572 0.400000 +988 586 0.400000 +988 595 0.400000 +988 625 0.400000 +988 644 0.400000 +988 690 0.400000 +988 717 0.400000 +988 726 0.400000 +988 730 0.400000 +989 40 0.400000 +989 83 0.400000 +989 89 0.400000 +989 162 0.400000 +989 357 0.400000 +989 433 0.400000 +989 481 0.400000 +989 492 0.400000 +989 496 0.400000 +989 498 0.400000 +989 531 0.400000 +989 548 0.400000 +989 549 0.400000 +989 560 0.400000 +989 598 0.400000 +989 643 0.400000 +989 647 0.400000 +989 657 0.400000 +989 734 0.400000 +989 793 0.400000 +990 158 0.400000 +990 216 0.400000 +990 249 0.400000 +990 337 0.400000 +990 350 0.400000 +990 368 0.400000 +990 433 0.400000 +990 485 0.400000 +990 545 0.400000 +990 769 0.400000 +991 56 0.400000 +991 80 0.400000 +991 113 0.400000 +991 124 0.400000 +991 185 0.400000 +991 214 0.400000 +991 227 0.400000 +991 275 0.400000 +991 276 0.400000 +991 283 0.400000 +991 383 0.400000 +991 406 0.400000 +991 525 0.400000 +991 630 0.400000 +991 661 0.400000 +991 700 0.400000 +991 715 0.400000 +991 756 0.400000 +992 71 0.400000 +992 178 0.400000 +992 199 0.400000 +992 235 0.400000 +992 245 0.400000 +992 266 0.400000 +992 320 0.400000 +992 329 0.400000 +992 420 0.400000 +992 438 0.400000 +992 537 0.400000 +992 654 0.400000 +992 742 0.400000 +993 15 0.400000 +993 86 0.400000 +993 141 0.400000 +993 151 0.400000 +993 223 0.400000 +993 246 0.400000 +993 286 0.400000 +993 652 0.400000 +993 792 0.400000 +994 59 0.400000 +994 171 0.400000 +994 298 0.400000 +994 366 0.400000 +994 509 0.400000 +994 526 0.400000 +994 598 0.400000 +994 657 0.400000 +994 774 0.400000 +995 2 0.400000 +995 20 0.400000 +995 52 0.400000 +995 63 0.400000 +995 157 0.400000 +995 247 0.400000 +995 253 0.400000 +995 267 0.400000 +995 278 0.400000 +995 342 0.400000 +995 426 0.400000 +995 493 0.400000 +995 510 0.400000 +995 524 0.400000 +995 590 0.400000 +995 650 0.400000 +995 679 0.400000 +995 712 0.400000 +996 86 0.400000 +996 153 0.400000 +996 162 0.400000 +996 241 0.400000 +996 287 0.400000 +996 378 0.400000 +996 387 0.400000 +996 623 0.400000 +996 674 0.400000 +996 699 0.400000 +996 766 0.400000 +997 25 0.400000 +997 71 0.400000 +997 178 0.400000 +997 186 0.400000 +997 227 0.400000 +997 369 0.400000 +997 429 0.400000 +997 478 0.400000 +997 560 0.400000 +997 636 0.400000 +997 709 0.400000 +997 752 0.400000 +997 779 0.400000 +998 20 0.400000 +998 134 0.400000 +998 201 0.400000 +998 299 0.400000 +998 346 0.400000 +998 377 0.400000 +998 432 0.400000 +998 447 0.400000 +998 448 0.400000 +998 501 0.400000 +998 553 0.400000 +998 567 0.400000 +998 631 0.400000 +998 782 0.400000 +999 15 0.400000 +999 50 0.400000 +999 76 0.400000 +999 130 0.400000 +999 136 0.400000 +999 144 0.400000 +999 179 0.400000 +999 215 0.400000 +999 315 0.400000 +999 334 0.400000 +999 353 0.400000 +999 472 0.400000 +999 475 0.400000 +999 554 0.400000 +999 616 0.400000 +999 629 0.400000 +999 748 0.400000 +1000 4 0.400000 +1000 5 0.400000 +1000 51 0.400000 +1000 121 0.400000 +1000 129 0.400000 +1000 147 0.400000 +1000 198 0.400000 +1000 220 0.400000 +1000 234 0.400000 +1000 344 0.400000 +1000 405 0.400000 +1000 436 0.400000 +1000 449 0.400000 +1000 476 0.400000 +1000 513 0.400000 +1000 608 0.400000 +1000 619 0.400000 +1000 638 0.400000 +1000 659 0.400000 +1000 703 0.400000 +1000 733 0.400000 +1000 761 0.400000 +1000 791 0.400000 +1001 5 0.400000 +1001 55 0.400000 +1001 67 0.400000 +1001 305 0.400000 +1001 320 0.400000 +1001 328 0.400000 +1001 339 0.400000 +1001 404 0.400000 +1001 505 0.400000 +1001 569 0.400000 +1001 613 0.400000 +1001 736 0.400000 +1001 781 0.400000 +1002 26 0.400000 +1002 75 0.400000 +1002 123 0.400000 +1002 145 0.400000 +1002 153 0.400000 +1002 169 0.400000 +1002 211 0.400000 +1002 391 0.400000 +1002 422 0.400000 +1002 449 0.400000 +1002 478 0.400000 +1002 503 0.400000 +1002 637 0.400000 +1002 696 0.400000 +1002 721 0.400000 +1002 752 0.400000 +1002 759 0.400000 +1003 39 0.400000 +1003 64 0.400000 +1003 65 0.400000 +1003 144 0.400000 +1003 181 0.400000 +1003 189 0.400000 +1003 222 0.400000 +1003 226 0.400000 +1003 240 0.400000 +1003 315 0.400000 +1003 359 0.400000 +1003 362 0.400000 +1003 388 0.400000 +1003 434 0.400000 +1003 469 0.400000 +1003 492 0.400000 +1003 563 0.400000 +1003 565 0.400000 +1003 669 0.400000 +1003 674 0.400000 +1003 773 0.400000 +1003 780 0.400000 +1004 13 0.400000 +1004 44 0.400000 +1004 51 0.400000 +1004 134 0.400000 +1004 236 0.400000 +1004 298 0.400000 +1004 384 0.400000 +1004 398 0.400000 +1004 415 0.400000 +1004 441 0.400000 +1004 717 0.400000 +1004 786 0.400000 +1004 795 0.400000 +1005 25 0.400000 +1005 45 0.400000 +1005 102 0.400000 +1005 135 0.400000 +1005 262 0.400000 +1005 346 0.400000 +1005 474 0.400000 +1005 544 0.400000 +1005 578 0.400000 +1005 579 0.400000 +1005 586 0.400000 +1005 622 0.400000 +1005 668 0.400000 +1005 711 0.400000 +1006 119 0.400000 +1006 197 0.400000 +1006 234 0.400000 +1006 306 0.400000 +1006 343 0.400000 +1006 389 0.400000 +1006 443 0.400000 +1006 515 0.400000 +1006 523 0.400000 +1006 562 0.400000 +1006 568 0.400000 +1006 632 0.400000 +1006 722 0.400000 +1007 3 0.400000 +1007 31 0.400000 +1007 48 0.400000 +1007 114 0.400000 +1007 134 0.400000 +1007 228 0.400000 +1007 240 0.400000 +1007 290 0.400000 +1007 295 0.400000 +1007 326 0.400000 +1007 406 0.400000 +1007 422 0.400000 +1007 439 0.400000 +1007 444 0.400000 +1007 549 0.400000 +1007 613 0.400000 +1007 646 0.400000 +1007 679 0.400000 +1007 800 0.400000 +1008 66 0.400000 +1008 137 0.400000 +1008 199 0.400000 +1008 204 0.400000 +1008 351 0.400000 +1008 459 0.400000 +1008 530 0.400000 +1008 577 0.400000 +1008 658 0.400000 +1008 664 0.400000 +1008 709 0.400000 +1008 756 0.400000 +1008 787 0.400000 +1008 798 0.400000 +1009 56 0.400000 +1009 103 0.400000 +1009 235 0.400000 +1009 277 0.400000 +1009 366 0.400000 +1009 400 0.400000 +1009 411 0.400000 +1009 433 0.400000 +1009 445 0.400000 +1009 467 0.400000 +1009 535 0.400000 +1009 563 0.400000 +1009 712 0.400000 +1009 732 0.400000 +1009 738 0.400000 +1010 10 0.400000 +1010 29 0.400000 +1010 57 0.400000 +1010 83 0.400000 +1010 216 0.400000 +1010 438 0.400000 +1010 556 0.400000 +1010 626 0.400000 +1010 725 0.400000 +1010 777 0.400000 +1010 781 0.400000 +1010 796 0.400000 +1010 800 0.400000 +1011 122 0.400000 +1011 146 0.400000 +1011 266 0.400000 +1011 279 0.400000 +1011 296 0.400000 +1011 312 0.400000 +1011 317 0.400000 +1011 419 0.400000 +1011 439 0.400000 +1011 458 0.400000 +1011 577 0.400000 +1011 585 0.400000 +1011 627 0.400000 +1011 695 0.400000 +1011 701 0.400000 +1011 725 0.400000 +1012 25 0.400000 +1012 94 0.400000 +1012 126 0.400000 +1012 283 0.400000 +1012 310 0.400000 +1012 335 0.400000 +1012 388 0.400000 +1012 461 0.400000 +1012 589 0.400000 +1012 611 0.400000 +1012 649 0.400000 +1012 735 0.400000 +1012 772 0.400000 +1013 144 0.400000 +1013 150 0.400000 +1013 273 0.400000 +1013 298 0.400000 +1013 323 0.400000 +1013 346 0.400000 +1013 380 0.400000 +1013 431 0.400000 +1013 522 0.400000 +1013 563 0.400000 +1013 566 0.400000 +1013 652 0.400000 +1013 705 0.400000 +1013 708 0.400000 +1013 794 0.400000 +1013 795 0.400000 +1014 28 0.400000 +1014 42 0.400000 +1014 70 0.400000 +1014 100 0.400000 +1014 174 0.400000 +1014 197 0.400000 +1014 244 0.400000 +1014 293 0.400000 +1014 299 0.400000 +1014 337 0.400000 +1014 399 0.400000 +1014 415 0.400000 +1014 460 0.400000 +1014 468 0.400000 +1014 557 0.400000 +1014 783 0.400000 +1015 24 0.400000 +1015 61 0.400000 +1015 132 0.400000 +1015 186 0.400000 +1015 190 0.400000 +1015 366 0.400000 +1015 453 0.400000 +1015 507 0.400000 +1015 519 0.400000 +1015 551 0.400000 +1015 559 0.400000 +1015 697 0.400000 +1015 715 0.400000 +1015 769 0.400000 +1016 10 0.400000 +1016 26 0.400000 +1016 32 0.400000 +1016 42 0.400000 +1016 92 0.400000 +1016 132 0.400000 +1016 154 0.400000 +1016 206 0.400000 +1016 339 0.400000 +1016 518 0.400000 +1016 625 0.400000 +1016 691 0.400000 +1016 741 0.400000 +1016 788 0.400000 +1017 13 0.400000 +1017 67 0.400000 +1017 163 0.400000 +1017 270 0.400000 +1017 294 0.400000 +1017 295 0.400000 +1017 496 0.400000 +1017 513 0.400000 +1017 517 0.400000 +1017 588 0.400000 +1017 663 0.400000 +1018 42 0.400000 +1018 129 0.400000 +1018 151 0.400000 +1018 181 0.400000 +1018 183 0.400000 +1018 319 0.400000 +1018 354 0.400000 +1018 402 0.400000 +1018 486 0.400000 +1018 504 0.400000 +1018 547 0.400000 +1018 634 0.400000 +1018 655 0.400000 +1019 236 0.400000 +1019 325 0.400000 +1019 349 0.400000 +1019 416 0.400000 +1019 437 0.400000 +1019 488 0.400000 +1019 511 0.400000 +1019 586 0.400000 +1019 602 0.400000 +1019 639 0.400000 +1019 703 0.400000 +1019 725 0.400000 +1019 750 0.400000 +1020 21 0.400000 +1020 91 0.400000 +1020 169 0.400000 +1020 230 0.400000 +1020 285 0.400000 +1020 420 0.400000 +1020 433 0.400000 +1020 520 0.400000 +1020 616 0.400000 +1020 641 0.400000 +1020 682 0.400000 +1020 715 0.400000 +1020 753 0.400000 +1021 20 0.400000 +1021 88 0.400000 +1021 100 0.400000 +1021 109 0.400000 +1021 125 0.400000 +1021 148 0.400000 +1021 219 0.400000 +1021 268 0.400000 +1021 328 0.400000 +1021 461 0.400000 +1021 589 0.400000 +1021 616 0.400000 +1021 788 0.400000 +1022 11 0.400000 +1022 22 0.400000 +1022 81 0.400000 +1022 144 0.400000 +1022 150 0.400000 +1022 162 0.400000 +1022 259 0.400000 +1022 308 0.400000 +1022 413 0.400000 +1022 447 0.400000 +1022 573 0.400000 +1022 632 0.400000 +1022 653 0.400000 +1022 691 0.400000 +1022 790 0.400000 +1022 795 0.400000 +1023 40 0.400000 +1023 43 0.400000 +1023 122 0.400000 +1023 181 0.400000 +1023 359 0.400000 +1023 408 0.400000 +1023 425 0.400000 +1023 449 0.400000 +1023 603 0.400000 +1023 615 0.400000 +1023 644 0.400000 +1023 670 0.400000 +1023 679 0.400000 +1023 717 0.400000 +1024 88 0.400000 +1024 204 0.400000 +1024 223 0.400000 +1024 224 0.400000 +1024 280 0.400000 +1024 411 0.400000 +1024 535 0.400000 +1024 577 0.400000 +1024 635 0.400000 +1024 726 0.400000 +1025 3 0.400000 +1025 38 0.400000 +1025 74 0.400000 +1025 119 0.400000 +1025 195 0.400000 +1025 215 0.400000 +1025 365 0.400000 +1025 373 0.400000 +1025 437 0.400000 +1025 453 0.400000 +1025 475 0.400000 +1025 588 0.400000 +1025 615 0.400000 +1026 41 0.400000 +1026 54 0.400000 +1026 81 0.400000 +1026 104 0.400000 +1026 156 0.400000 +1026 163 0.400000 +1026 180 0.400000 +1026 269 0.400000 +1026 383 0.400000 +1026 414 0.400000 +1026 433 0.400000 +1026 437 0.400000 +1026 514 0.400000 +1026 519 0.400000 +1026 542 0.400000 +1026 685 0.400000 +1026 690 0.400000 +1026 751 0.400000 +1027 63 0.400000 +1027 119 0.400000 +1027 139 0.400000 +1027 154 0.400000 +1027 281 0.400000 +1027 307 0.400000 +1027 406 0.400000 +1027 449 0.400000 +1027 462 0.400000 +1027 474 0.400000 +1027 506 0.400000 +1027 590 0.400000 +1027 635 0.400000 +1027 666 0.400000 +1027 688 0.400000 +1027 741 0.400000 +1028 10 0.400000 +1028 40 0.400000 +1028 95 0.400000 +1028 133 0.400000 +1028 253 0.400000 +1028 403 0.400000 +1028 458 0.400000 +1028 471 0.400000 +1028 498 0.400000 +1028 560 0.400000 +1028 782 0.400000 +1029 6 0.400000 +1029 8 0.400000 +1029 23 0.400000 +1029 31 0.400000 +1029 115 0.400000 +1029 191 0.400000 +1029 200 0.400000 +1029 352 0.400000 +1029 402 0.400000 +1029 430 0.400000 +1029 464 0.400000 +1029 524 0.400000 +1029 648 0.400000 +1029 669 0.400000 +1029 676 0.400000 +1029 680 0.400000 +1029 721 0.400000 +1029 781 0.400000 +1030 60 0.400000 +1030 208 0.400000 +1030 327 0.400000 +1030 345 0.400000 +1030 348 0.400000 +1030 491 0.400000 +1030 502 0.400000 +1030 552 0.400000 +1030 559 0.400000 +1030 665 0.400000 +1030 743 0.400000 +1030 779 0.400000 +1031 6 0.400000 +1031 101 0.400000 +1031 176 0.400000 +1031 335 0.400000 +1031 369 0.400000 +1031 508 0.400000 +1031 749 0.400000 +1031 754 0.400000 +1032 42 0.400000 +1032 76 0.400000 +1032 126 0.400000 +1032 130 0.400000 +1032 233 0.400000 +1032 283 0.400000 +1032 351 0.400000 +1032 507 0.400000 +1032 605 0.400000 +1032 689 0.400000 +1032 757 0.400000 +1033 102 0.400000 +1033 124 0.400000 +1033 184 0.400000 +1033 191 0.400000 +1033 313 0.400000 +1033 369 0.400000 +1033 429 0.400000 +1033 485 0.400000 +1033 544 0.400000 +1033 545 0.400000 +1033 561 0.400000 +1033 566 0.400000 +1033 574 0.400000 +1033 690 0.400000 +1033 777 0.400000 +1033 781 0.400000 +1034 243 0.400000 +1034 245 0.400000 +1034 261 0.400000 +1034 392 0.400000 +1034 548 0.400000 +1034 601 0.400000 +1034 612 0.400000 +1034 715 0.400000 +1034 730 0.400000 +1034 773 0.400000 +1034 789 0.400000 +1035 262 0.400000 +1035 265 0.400000 +1035 279 0.400000 +1035 346 0.400000 +1035 368 0.400000 +1035 438 0.400000 +1035 457 0.400000 +1035 518 0.400000 +1035 635 0.400000 +1035 683 0.400000 +1035 727 0.400000 +1036 159 0.400000 +1036 160 0.400000 +1036 188 0.400000 +1036 210 0.400000 +1036 241 0.400000 +1036 252 0.400000 +1036 292 0.400000 +1036 309 0.400000 +1036 313 0.400000 +1036 451 0.400000 +1036 518 0.400000 +1036 578 0.400000 +1036 588 0.400000 +1036 618 0.400000 +1036 626 0.400000 +1036 725 0.400000 +1036 771 0.400000 +1037 36 0.400000 +1037 56 0.400000 +1037 66 0.400000 +1037 121 0.400000 +1037 122 0.400000 +1037 144 0.400000 +1037 262 0.400000 +1037 263 0.400000 +1037 306 0.400000 +1037 334 0.400000 +1037 339 0.400000 +1037 365 0.400000 +1037 395 0.400000 +1037 636 0.400000 +1037 686 0.400000 +1037 736 0.400000 +1037 741 0.400000 +1037 794 0.400000 +1038 22 0.400000 +1038 37 0.400000 +1038 51 0.400000 +1038 101 0.400000 +1038 230 0.400000 +1038 238 0.400000 +1038 310 0.400000 +1038 320 0.400000 +1038 374 0.400000 +1038 475 0.400000 +1038 500 0.400000 +1038 570 0.400000 +1038 627 0.400000 +1038 645 0.400000 +1038 729 0.400000 +1038 765 0.400000 +1038 775 0.400000 +1039 99 0.400000 +1039 171 0.400000 +1039 201 0.400000 +1039 296 0.400000 +1039 314 0.400000 +1039 316 0.400000 +1039 334 0.400000 +1039 353 0.400000 +1039 374 0.400000 +1039 414 0.400000 +1039 419 0.400000 +1039 427 0.400000 +1039 519 0.400000 +1039 526 0.400000 +1039 614 0.400000 +1039 720 0.400000 +1039 723 0.400000 +1039 731 0.400000 +1040 12 0.400000 +1040 87 0.400000 +1040 99 0.400000 +1040 112 0.400000 +1040 347 0.400000 +1040 379 0.400000 +1040 578 0.400000 +1040 601 0.400000 +1040 607 0.400000 +1040 642 0.400000 +1040 667 0.400000 +1040 682 0.400000 +1040 697 0.400000 +1040 737 0.400000 +1041 45 0.400000 +1041 80 0.400000 +1041 126 0.400000 +1041 134 0.400000 +1041 135 0.400000 +1041 195 0.400000 +1041 215 0.400000 +1041 304 0.400000 +1041 335 0.400000 +1041 338 0.400000 +1041 365 0.400000 +1041 368 0.400000 +1041 389 0.400000 +1041 406 0.400000 +1041 423 0.400000 +1041 440 0.400000 +1041 479 0.400000 +1041 481 0.400000 +1041 577 0.400000 +1041 656 0.400000 +1041 694 0.400000 +1041 731 0.400000 +1041 739 0.400000 +1041 790 0.400000 +1042 69 0.400000 +1042 129 0.400000 +1042 154 0.400000 +1042 238 0.400000 +1042 258 0.400000 +1042 374 0.400000 +1042 380 0.400000 +1042 464 0.400000 +1042 490 0.400000 +1042 515 0.400000 +1042 569 0.400000 +1042 598 0.400000 +1042 638 0.400000 +1042 659 0.400000 +1042 680 0.400000 +1042 739 0.400000 +1042 770 0.400000 +1042 785 0.400000 +1043 48 0.400000 +1043 54 0.400000 +1043 154 0.400000 +1043 250 0.400000 +1043 285 0.400000 +1043 293 0.400000 +1043 392 0.400000 +1043 553 0.400000 +1043 624 0.400000 +1043 644 0.400000 +1044 16 0.400000 +1044 46 0.400000 +1044 65 0.400000 +1044 101 0.400000 +1044 126 0.400000 +1044 146 0.400000 +1044 228 0.400000 +1044 246 0.400000 +1044 250 0.400000 +1044 326 0.400000 +1044 328 0.400000 +1044 445 0.400000 +1044 491 0.400000 +1044 512 0.400000 +1044 561 0.400000 +1044 698 0.400000 +1044 751 0.400000 +1045 23 0.400000 +1045 78 0.400000 +1045 133 0.400000 +1045 152 0.400000 +1045 159 0.400000 +1045 168 0.400000 +1045 192 0.400000 +1045 400 0.400000 +1045 410 0.400000 +1045 468 0.400000 +1045 611 0.400000 +1045 749 0.400000 +1045 794 0.400000 +1046 13 0.400000 +1046 15 0.400000 +1046 98 0.400000 +1046 145 0.400000 +1046 164 0.400000 +1046 244 0.400000 +1046 373 0.400000 +1046 416 0.400000 +1046 458 0.400000 +1046 503 0.400000 +1046 504 0.400000 +1046 534 0.400000 +1046 557 0.400000 +1046 691 0.400000 +1046 731 0.400000 +1046 784 0.400000 +1047 26 0.400000 +1047 62 0.400000 +1047 147 0.400000 +1047 178 0.400000 +1047 186 0.400000 +1047 208 0.400000 +1047 231 0.400000 +1047 266 0.400000 +1047 341 0.400000 +1047 367 0.400000 +1047 494 0.400000 +1047 497 0.400000 +1047 558 0.400000 +1047 589 0.400000 +1047 619 0.400000 +1047 638 0.400000 +1047 686 0.400000 +1047 738 0.400000 +1048 108 0.400000 +1048 153 0.400000 +1048 183 0.400000 +1048 205 0.400000 +1048 281 0.400000 +1048 421 0.400000 +1048 425 0.400000 +1048 458 0.400000 +1048 470 0.400000 +1048 529 0.400000 +1048 585 0.400000 +1048 614 0.400000 +1048 720 0.400000 +1048 737 0.400000 +1048 743 0.400000 +1048 784 0.400000 +1049 155 0.400000 +1049 166 0.400000 +1049 186 0.400000 +1049 187 0.400000 +1049 263 0.400000 +1049 324 0.400000 +1049 329 0.400000 +1049 354 0.400000 +1049 384 0.400000 +1049 454 0.400000 +1049 470 0.400000 +1049 575 0.400000 +1049 594 0.400000 +1049 615 0.400000 +1049 656 0.400000 +1049 682 0.400000 +1049 731 0.400000 +1049 736 0.400000 +1049 759 0.400000 +1050 107 0.400000 +1050 147 0.400000 +1050 174 0.400000 +1050 183 0.400000 +1050 245 0.400000 +1050 320 0.400000 +1050 368 0.400000 +1050 380 0.400000 +1050 421 0.400000 +1050 488 0.400000 +1050 603 0.400000 +1050 621 0.400000 +1050 653 0.400000 +1050 691 0.400000 +1050 709 0.400000 +1050 767 0.400000 +1051 29 0.400000 +1051 56 0.400000 +1051 141 0.400000 +1051 193 0.400000 +1051 215 0.400000 +1051 294 0.400000 +1051 297 0.400000 +1051 335 0.400000 +1051 344 0.400000 +1051 477 0.400000 +1051 534 0.400000 +1051 556 0.400000 +1051 558 0.400000 +1051 569 0.400000 +1051 729 0.400000 +1052 6 0.400000 +1052 54 0.400000 +1052 107 0.400000 +1052 109 0.400000 +1052 132 0.400000 +1052 191 0.400000 +1052 225 0.400000 +1052 291 0.400000 +1052 304 0.400000 +1052 367 0.400000 +1052 522 0.400000 +1052 598 0.400000 +1052 607 0.400000 +1052 611 0.400000 +1052 699 0.400000 +1052 708 0.400000 +1052 782 0.400000 +1052 797 0.400000 +1053 5 0.400000 +1053 18 0.400000 +1053 182 0.400000 +1053 217 0.400000 +1053 230 0.400000 +1053 359 0.400000 +1053 483 0.400000 +1053 531 0.400000 +1053 564 0.400000 +1053 601 0.400000 +1053 624 0.400000 +1053 630 0.400000 +1053 648 0.400000 +1053 676 0.400000 +1053 684 0.400000 +1053 761 0.400000 +1053 766 0.400000 +1054 4 0.400000 +1054 42 0.400000 +1054 144 0.400000 +1054 246 0.400000 +1054 290 0.400000 +1054 292 0.400000 +1054 319 0.400000 +1054 322 0.400000 +1054 417 0.400000 +1054 418 0.400000 +1054 430 0.400000 +1054 470 0.400000 +1054 570 0.400000 +1054 588 0.400000 +1054 607 0.400000 +1055 75 0.400000 +1055 109 0.400000 +1055 120 0.400000 +1055 124 0.400000 +1055 126 0.400000 +1055 142 0.400000 +1055 257 0.400000 +1055 317 0.400000 +1055 380 0.400000 +1055 394 0.400000 +1055 416 0.400000 +1055 459 0.400000 +1055 460 0.400000 +1055 546 0.400000 +1055 562 0.400000 +1055 612 0.400000 +1055 651 0.400000 +1055 733 0.400000 +1055 745 0.400000 +1056 37 0.400000 +1056 52 0.400000 +1056 104 0.400000 +1056 126 0.400000 +1056 225 0.400000 +1056 269 0.400000 +1056 326 0.400000 +1056 373 0.400000 +1056 388 0.400000 +1056 457 0.400000 +1056 505 0.400000 +1056 511 0.400000 +1056 527 0.400000 +1056 607 0.400000 +1056 666 0.400000 +1056 780 0.400000 +1057 75 0.400000 +1057 87 0.400000 +1057 164 0.400000 +1057 173 0.400000 +1057 320 0.400000 +1057 324 0.400000 +1057 362 0.400000 +1057 434 0.400000 +1057 452 0.400000 +1057 468 0.400000 +1057 471 0.400000 +1057 503 0.400000 +1057 558 0.400000 +1057 582 0.400000 +1057 624 0.400000 +1057 701 0.400000 +1057 703 0.400000 +1057 777 0.400000 +1058 17 0.400000 +1058 21 0.400000 +1058 44 0.400000 +1058 47 0.400000 +1058 63 0.400000 +1058 281 0.400000 +1058 300 0.400000 +1058 536 0.400000 +1058 587 0.400000 +1058 667 0.400000 +1058 735 0.400000 +1058 779 0.400000 +1058 785 0.400000 +1059 127 0.400000 +1059 187 0.400000 +1059 220 0.400000 +1059 310 0.400000 +1059 311 0.400000 +1059 326 0.400000 +1059 341 0.400000 +1059 373 0.400000 +1059 397 0.400000 +1059 407 0.400000 +1059 504 0.400000 +1059 675 0.400000 +1059 750 0.400000 +1060 78 0.400000 +1060 131 0.400000 +1060 172 0.400000 +1060 441 0.400000 +1060 471 0.400000 +1060 492 0.400000 +1060 515 0.400000 +1060 539 0.400000 +1060 558 0.400000 +1060 596 0.400000 +1060 607 0.400000 +1060 669 0.400000 +1060 753 0.400000 +1060 791 0.400000 +1061 4 0.400000 +1061 29 0.400000 +1061 101 0.400000 +1061 334 0.400000 +1061 360 0.400000 +1061 374 0.400000 +1061 408 0.400000 +1061 455 0.400000 +1061 474 0.400000 +1061 494 0.400000 +1061 509 0.400000 +1061 519 0.400000 +1061 597 0.400000 +1061 610 0.400000 +1061 654 0.400000 +1061 710 0.400000 +1061 739 0.400000 +1062 56 0.400000 +1062 173 0.400000 +1062 265 0.400000 +1062 340 0.400000 +1062 365 0.400000 +1062 404 0.400000 +1062 448 0.400000 +1062 453 0.400000 +1062 487 0.400000 +1062 554 0.400000 +1062 632 0.400000 +1062 666 0.400000 +1062 761 0.400000 +1062 774 0.400000 +1063 10 0.400000 +1063 231 0.400000 +1063 349 0.400000 +1063 388 0.400000 +1063 545 0.400000 +1063 548 0.400000 +1063 624 0.400000 +1063 626 0.400000 +1063 642 0.400000 +1063 656 0.400000 +1063 663 0.400000 +1063 679 0.400000 +1063 760 0.400000 +1063 765 0.400000 +1063 793 0.400000 +1063 795 0.400000 +1064 14 0.400000 +1064 105 0.400000 +1064 146 0.400000 +1064 162 0.400000 +1064 264 0.400000 +1064 265 0.400000 +1064 365 0.400000 +1064 372 0.400000 +1064 392 0.400000 +1064 427 0.400000 +1064 453 0.400000 +1064 563 0.400000 +1064 570 0.400000 +1064 632 0.400000 +1064 637 0.400000 +1064 642 0.400000 +1064 740 0.400000 +1064 742 0.400000 +1065 2 0.400000 +1065 10 0.400000 +1065 34 0.400000 +1065 112 0.400000 +1065 129 0.400000 +1065 178 0.400000 +1065 208 0.400000 +1065 234 0.400000 +1065 238 0.400000 +1065 246 0.400000 +1065 278 0.400000 +1065 315 0.400000 +1065 329 0.400000 +1065 346 0.400000 +1065 408 0.400000 +1065 431 0.400000 +1065 440 0.400000 +1065 454 0.400000 +1065 520 0.400000 +1065 570 0.400000 +1065 588 0.400000 +1065 638 0.400000 +1065 655 0.400000 +1065 687 0.400000 +1065 711 0.400000 +1065 754 0.400000 +1066 8 0.400000 +1066 15 0.400000 +1066 46 0.400000 +1066 64 0.400000 +1066 150 0.400000 +1066 261 0.400000 +1066 263 0.400000 +1066 276 0.400000 +1066 348 0.400000 +1066 349 0.400000 +1066 406 0.400000 +1066 460 0.400000 +1066 651 0.400000 +1066 655 0.400000 +1066 693 0.400000 +1067 17 0.400000 +1067 41 0.400000 +1067 108 0.400000 +1067 113 0.400000 +1067 115 0.400000 +1067 179 0.400000 +1067 188 0.400000 +1067 280 0.400000 +1067 331 0.400000 +1067 390 0.400000 +1067 490 0.400000 +1067 536 0.400000 +1067 553 0.400000 +1067 567 0.400000 +1067 597 0.400000 +1067 632 0.400000 +1067 702 0.400000 +1067 724 0.400000 +1067 740 0.400000 +1068 34 0.400000 +1068 119 0.400000 +1068 129 0.400000 +1068 219 0.400000 +1068 286 0.400000 +1068 301 0.400000 +1068 459 0.400000 +1068 557 0.400000 +1068 568 0.400000 +1068 662 0.400000 +1068 687 0.400000 +1068 726 0.400000 +1068 744 0.400000 +1068 790 0.400000 +1068 791 0.400000 +1069 41 0.400000 +1069 50 0.400000 +1069 113 0.400000 +1069 117 0.400000 +1069 212 0.400000 +1069 229 0.400000 +1069 244 0.400000 +1069 245 0.400000 +1069 435 0.400000 +1069 543 0.400000 +1069 624 0.400000 +1069 629 0.400000 +1069 667 0.400000 +1069 682 0.400000 +1069 709 0.400000 +1069 719 0.400000 +1069 796 0.400000 +1070 71 0.400000 +1070 77 0.400000 +1070 191 0.400000 +1070 281 0.400000 +1070 339 0.400000 +1070 383 0.400000 +1070 412 0.400000 +1070 427 0.400000 +1070 436 0.400000 +1070 578 0.400000 +1070 590 0.400000 +1070 601 0.400000 +1070 689 0.400000 +1070 728 0.400000 +1070 795 0.400000 +1071 10 0.400000 +1071 12 0.400000 +1071 62 0.400000 +1071 169 0.400000 +1071 186 0.400000 +1071 237 0.400000 +1071 261 0.400000 +1071 355 0.400000 +1071 566 0.400000 +1071 569 0.400000 +1071 577 0.400000 +1071 592 0.400000 +1071 598 0.400000 +1071 620 0.400000 +1071 718 0.400000 +1072 10 0.400000 +1072 61 0.400000 +1072 73 0.400000 +1072 149 0.400000 +1072 359 0.400000 +1072 404 0.400000 +1072 414 0.400000 +1072 443 0.400000 +1072 463 0.400000 +1072 511 0.400000 +1072 586 0.400000 +1072 635 0.400000 +1072 661 0.400000 +1073 97 0.400000 +1073 109 0.400000 +1073 135 0.400000 +1073 175 0.400000 +1073 292 0.400000 +1073 338 0.400000 +1073 365 0.400000 +1073 380 0.400000 +1073 383 0.400000 +1073 421 0.400000 +1073 532 0.400000 +1073 535 0.400000 +1073 632 0.400000 +1073 640 0.400000 +1073 708 0.400000 +1073 765 0.400000 +1073 797 0.400000 +1074 44 0.400000 +1074 73 0.400000 +1074 99 0.400000 +1074 112 0.400000 +1074 275 0.400000 +1074 290 0.400000 +1074 372 0.400000 +1074 579 0.400000 +1074 589 0.400000 +1074 607 0.400000 +1074 628 0.400000 +1074 631 0.400000 +1074 640 0.400000 +1074 664 0.400000 +1074 674 0.400000 +1074 699 0.400000 +1074 768 0.400000 +1074 789 0.400000 +1075 20 0.400000 +1075 150 0.400000 +1075 159 0.400000 +1075 180 0.400000 +1075 220 0.400000 +1075 351 0.400000 +1075 353 0.400000 +1075 420 0.400000 +1075 496 0.400000 +1075 537 0.400000 +1075 540 0.400000 +1075 631 0.400000 +1075 769 0.400000 +1075 787 0.400000 +1076 24 0.400000 +1076 42 0.400000 +1076 209 0.400000 +1076 255 0.400000 +1076 359 0.400000 +1076 378 0.400000 +1076 396 0.400000 +1076 573 0.400000 +1076 658 0.400000 +1076 669 0.400000 +1076 676 0.400000 +1076 795 0.400000 +1077 29 0.400000 +1077 81 0.400000 +1077 219 0.400000 +1077 248 0.400000 +1077 251 0.400000 +1077 303 0.400000 +1077 304 0.400000 +1077 323 0.400000 +1077 355 0.400000 +1077 416 0.400000 +1077 440 0.400000 +1077 442 0.400000 +1077 450 0.400000 +1077 483 0.400000 +1077 508 0.400000 +1077 519 0.400000 +1077 584 0.400000 +1077 600 0.400000 +1077 626 0.400000 +1077 650 0.400000 +1077 666 0.400000 +1077 719 0.400000 +1077 721 0.400000 +1077 769 0.400000 +1078 109 0.400000 +1078 132 0.400000 +1078 175 0.400000 +1078 183 0.400000 +1078 206 0.400000 +1078 445 0.400000 +1078 471 0.400000 +1078 478 0.400000 +1078 510 0.400000 +1078 542 0.400000 +1078 545 0.400000 +1078 546 0.400000 +1078 620 0.400000 +1078 643 0.400000 +1078 694 0.400000 +1079 37 0.400000 +1079 41 0.400000 +1079 122 0.400000 +1079 165 0.400000 +1079 184 0.400000 +1079 213 0.400000 +1079 311 0.400000 +1079 353 0.400000 +1079 419 0.400000 +1079 477 0.400000 +1079 490 0.400000 +1079 527 0.400000 +1079 683 0.400000 +1079 754 0.400000 +1079 781 0.400000 +1079 788 0.400000 +1080 11 0.400000 +1080 129 0.400000 +1080 137 0.400000 +1080 210 0.400000 +1080 229 0.400000 +1080 260 0.400000 +1080 286 0.400000 +1080 300 0.400000 +1080 304 0.400000 +1080 403 0.400000 +1080 429 0.400000 +1080 566 0.400000 +1080 627 0.400000 +1080 676 0.400000 +1080 684 0.400000 +1080 744 0.400000 +1080 782 0.400000 +1081 35 0.400000 +1081 58 0.400000 +1081 97 0.400000 +1081 103 0.400000 +1081 132 0.400000 +1081 194 0.400000 +1081 355 0.400000 +1081 364 0.400000 +1081 371 0.400000 +1081 437 0.400000 +1081 495 0.400000 +1081 499 0.400000 +1081 584 0.400000 +1081 636 0.400000 +1081 677 0.400000 +1081 751 0.400000 +1081 768 0.400000 +1081 775 0.400000 +1082 93 0.400000 +1082 108 0.400000 +1082 170 0.400000 +1082 216 0.400000 +1082 300 0.400000 +1082 314 0.400000 +1082 340 0.400000 +1082 442 0.400000 +1082 444 0.400000 +1082 560 0.400000 +1082 563 0.400000 +1082 590 0.400000 +1082 686 0.400000 +1083 132 0.400000 +1083 173 0.400000 +1083 175 0.400000 +1083 216 0.400000 +1083 223 0.400000 +1083 278 0.400000 +1083 293 0.400000 +1083 369 0.400000 +1083 425 0.400000 +1083 467 0.400000 +1083 468 0.400000 +1083 568 0.400000 +1083 606 0.400000 +1083 662 0.400000 +1083 704 0.400000 +1083 764 0.400000 +1084 43 0.400000 +1084 59 0.400000 +1084 61 0.400000 +1084 86 0.400000 +1084 92 0.400000 +1084 160 0.400000 +1084 170 0.400000 +1084 210 0.400000 +1084 213 0.400000 +1084 247 0.400000 +1084 276 0.400000 +1084 404 0.400000 +1084 416 0.400000 +1084 475 0.400000 +1084 485 0.400000 +1084 568 0.400000 +1084 569 0.400000 +1084 608 0.400000 +1084 649 0.400000 +1084 654 0.400000 +1084 782 0.400000 +1085 24 0.400000 +1085 105 0.400000 +1085 129 0.400000 +1085 326 0.400000 +1085 380 0.400000 +1085 386 0.400000 +1085 419 0.400000 +1085 455 0.400000 +1085 600 0.400000 +1085 687 0.400000 +1085 699 0.400000 +1085 792 0.400000 +1086 98 0.400000 +1086 455 0.400000 +1086 472 0.400000 +1086 511 0.400000 +1086 675 0.400000 +1086 689 0.400000 +1086 709 0.400000 +1086 757 0.400000 +1086 769 0.400000 +1086 779 0.400000 +1086 780 0.400000 +1087 45 0.400000 +1087 64 0.400000 +1087 100 0.400000 +1087 110 0.400000 +1087 122 0.400000 +1087 130 0.400000 +1087 140 0.400000 +1087 145 0.400000 +1087 153 0.400000 +1087 285 0.400000 +1087 344 0.400000 +1087 359 0.400000 +1087 499 0.400000 +1087 540 0.400000 +1087 731 0.400000 +1087 788 0.400000 +1088 8 0.400000 +1088 14 0.400000 +1088 48 0.400000 +1088 70 0.400000 +1088 107 0.400000 +1088 129 0.400000 +1088 276 0.400000 +1088 300 0.400000 +1088 335 0.400000 +1088 340 0.400000 +1088 342 0.400000 +1088 364 0.400000 +1088 372 0.400000 +1088 391 0.400000 +1088 479 0.400000 +1088 525 0.400000 +1088 550 0.400000 +1088 575 0.400000 +1088 644 0.400000 +1088 656 0.400000 +1089 160 0.400000 +1089 165 0.400000 +1089 227 0.400000 +1089 314 0.400000 +1089 325 0.400000 +1089 336 0.400000 +1089 455 0.400000 +1089 564 0.400000 +1089 664 0.400000 +1089 666 0.400000 +1089 672 0.400000 +1089 678 0.400000 +1089 729 0.400000 +1090 18 0.400000 +1090 35 0.400000 +1090 67 0.400000 +1090 98 0.400000 +1090 178 0.400000 +1090 271 0.400000 +1090 343 0.400000 +1090 378 0.400000 +1090 390 0.400000 +1090 398 0.400000 +1090 719 0.400000 +1090 736 0.400000 +1090 754 0.400000 +1091 50 0.400000 +1091 131 0.400000 +1091 157 0.400000 +1091 177 0.400000 +1091 196 0.400000 +1091 203 0.400000 +1091 257 0.400000 +1091 299 0.400000 +1091 303 0.400000 +1091 310 0.400000 +1091 317 0.400000 +1091 369 0.400000 +1091 448 0.400000 +1091 474 0.400000 +1091 501 0.400000 +1091 503 0.400000 +1091 552 0.400000 +1091 581 0.400000 +1091 585 0.400000 +1091 615 0.400000 +1091 678 0.400000 +1091 696 0.400000 +1091 722 0.400000 +1091 772 0.400000 +1092 9 0.400000 +1092 83 0.400000 +1092 102 0.400000 +1092 135 0.400000 +1092 253 0.400000 +1092 362 0.400000 +1092 371 0.400000 +1092 400 0.400000 +1092 628 0.400000 +1092 664 0.400000 +1093 25 0.400000 +1093 132 0.400000 +1093 192 0.400000 +1093 403 0.400000 +1093 463 0.400000 +1093 517 0.400000 +1093 528 0.400000 +1093 573 0.400000 +1093 623 0.400000 +1093 632 0.400000 +1093 635 0.400000 +1093 732 0.400000 +1093 743 0.400000 +1093 780 0.400000 +1094 45 0.400000 +1094 143 0.400000 +1094 176 0.400000 +1094 229 0.400000 +1094 260 0.400000 +1094 310 0.400000 +1094 390 0.400000 +1094 413 0.400000 +1094 437 0.400000 +1094 465 0.400000 +1094 471 0.400000 +1094 514 0.400000 +1094 650 0.400000 +1094 681 0.400000 +1094 727 0.400000 +1094 793 0.400000 +1095 26 0.400000 +1095 61 0.400000 +1095 159 0.400000 +1095 210 0.400000 +1095 266 0.400000 +1095 329 0.400000 +1095 349 0.400000 +1095 375 0.400000 +1095 402 0.400000 +1095 426 0.400000 +1095 438 0.400000 +1095 484 0.400000 +1095 652 0.400000 +1095 726 0.400000 +1095 728 0.400000 +1095 743 0.400000 +1096 5 0.400000 +1096 110 0.400000 +1096 247 0.400000 +1096 256 0.400000 +1096 290 0.400000 +1096 363 0.400000 +1096 388 0.400000 +1096 460 0.400000 +1096 468 0.400000 +1096 587 0.400000 +1096 626 0.400000 +1096 778 0.400000 +1097 29 0.400000 +1097 33 0.400000 +1097 34 0.400000 +1097 120 0.400000 +1097 274 0.400000 +1097 386 0.400000 +1097 387 0.400000 +1097 467 0.400000 +1097 469 0.400000 +1097 487 0.400000 +1097 523 0.400000 +1097 536 0.400000 +1097 583 0.400000 +1097 625 0.400000 +1097 656 0.400000 +1097 694 0.400000 +1097 697 0.400000 +1098 3 0.400000 +1098 5 0.400000 +1098 7 0.400000 +1098 48 0.400000 +1098 49 0.400000 +1098 51 0.400000 +1098 149 0.400000 +1098 185 0.400000 +1098 194 0.400000 +1098 495 0.400000 +1098 552 0.400000 +1098 569 0.400000 +1098 588 0.400000 +1098 599 0.400000 +1098 725 0.400000 +1099 1 0.400000 +1099 14 0.400000 +1099 61 0.400000 +1099 164 0.400000 +1099 275 0.400000 +1099 293 0.400000 +1099 385 0.400000 +1099 387 0.400000 +1099 413 0.400000 +1099 479 0.400000 +1099 564 0.400000 +1099 586 0.400000 +1099 612 0.400000 +1099 617 0.400000 +1099 628 0.400000 +1099 641 0.400000 +1099 659 0.400000 +1100 101 0.400000 +1100 192 0.400000 +1100 263 0.400000 +1100 311 0.400000 +1100 496 0.400000 +1100 589 0.400000 +1100 613 0.400000 +1100 674 0.400000 +1100 731 0.400000 +1101 97 0.400000 +1101 136 0.400000 +1101 139 0.400000 +1101 166 0.400000 +1101 291 0.400000 +1101 305 0.400000 +1101 537 0.400000 +1101 569 0.400000 +1101 571 0.400000 +1101 708 0.400000 +1101 734 0.400000 +1101 761 0.400000 +1101 782 0.400000 +1102 15 0.400000 +1102 82 0.400000 +1102 107 0.400000 +1102 278 0.400000 +1102 288 0.400000 +1102 492 0.400000 +1102 516 0.400000 +1102 545 0.400000 +1102 608 0.400000 +1102 716 0.400000 +1103 134 0.400000 +1103 181 0.400000 +1103 239 0.400000 +1103 309 0.400000 +1103 320 0.400000 +1103 402 0.400000 +1103 448 0.400000 +1103 519 0.400000 +1103 555 0.400000 +1103 557 0.400000 +1103 568 0.400000 +1103 580 0.400000 +1103 583 0.400000 +1103 631 0.400000 +1103 658 0.400000 +1103 661 0.400000 +1103 671 0.400000 +1103 706 0.400000 +1104 26 0.400000 +1104 61 0.400000 +1104 73 0.400000 +1104 137 0.400000 +1104 172 0.400000 +1104 218 0.400000 +1104 247 0.400000 +1104 256 0.400000 +1104 286 0.400000 +1104 370 0.400000 +1104 408 0.400000 +1104 414 0.400000 +1104 425 0.400000 +1104 472 0.400000 +1104 589 0.400000 +1104 632 0.400000 +1104 698 0.400000 +1105 36 0.400000 +1105 56 0.400000 +1105 68 0.400000 +1105 105 0.400000 +1105 109 0.400000 +1105 271 0.400000 +1105 375 0.400000 +1105 439 0.400000 +1105 484 0.400000 +1105 503 0.400000 +1105 506 0.400000 +1105 552 0.400000 +1105 561 0.400000 +1105 613 0.400000 +1105 618 0.400000 +1105 677 0.400000 +1105 682 0.400000 +1105 721 0.400000 +1105 766 0.400000 +1106 35 0.400000 +1106 244 0.400000 +1106 346 0.400000 +1106 405 0.400000 +1106 527 0.400000 +1106 557 0.400000 +1106 579 0.400000 +1106 609 0.400000 +1106 612 0.400000 +1106 624 0.400000 +1106 628 0.400000 +1106 636 0.400000 +1106 720 0.400000 +1106 728 0.400000 +1106 734 0.400000 +1106 771 0.400000 +1106 790 0.400000 +1107 5 0.400000 +1107 36 0.400000 +1107 83 0.400000 +1107 154 0.400000 +1107 173 0.400000 +1107 194 0.400000 +1107 343 0.400000 +1107 352 0.400000 +1107 416 0.400000 +1107 489 0.400000 +1107 551 0.400000 +1107 673 0.400000 +1107 694 0.400000 +1107 718 0.400000 +1107 728 0.400000 +1107 759 0.400000 +1107 768 0.400000 +1108 57 0.400000 +1108 205 0.400000 +1108 264 0.400000 +1108 267 0.400000 +1108 315 0.400000 +1108 428 0.400000 +1108 449 0.400000 +1108 622 0.400000 +1108 677 0.400000 +1108 763 0.400000 +1108 796 0.400000 +1109 30 0.400000 +1109 78 0.400000 +1109 84 0.400000 +1109 92 0.400000 +1109 134 0.400000 +1109 153 0.400000 +1109 234 0.400000 +1109 243 0.400000 +1109 247 0.400000 +1109 293 0.400000 +1109 329 0.400000 +1109 409 0.400000 +1109 463 0.400000 +1109 467 0.400000 +1109 468 0.400000 +1109 489 0.400000 +1109 507 0.400000 +1109 601 0.400000 +1109 624 0.400000 +1109 650 0.400000 +1109 679 0.400000 +1109 687 0.400000 +1109 791 0.400000 +1109 792 0.400000 +1110 79 0.400000 +1110 164 0.400000 +1110 167 0.400000 +1110 189 0.400000 +1110 221 0.400000 +1110 256 0.400000 +1110 342 0.400000 +1110 490 0.400000 +1110 505 0.400000 +1110 550 0.400000 +1110 609 0.400000 +1110 611 0.400000 +1110 620 0.400000 +1110 667 0.400000 +1110 719 0.400000 +1110 730 0.400000 +1110 749 0.400000 +1110 756 0.400000 +1110 778 0.400000 +1110 799 0.400000 +1111 6 0.400000 +1111 120 0.400000 +1111 197 0.400000 +1111 212 0.400000 +1111 274 0.400000 +1111 285 0.400000 +1111 317 0.400000 +1111 319 0.400000 +1111 417 0.400000 +1111 428 0.400000 +1111 462 0.400000 +1111 481 0.400000 +1111 490 0.400000 +1111 507 0.400000 +1111 523 0.400000 +1111 744 0.400000 +1111 790 0.400000 +1112 31 0.400000 +1112 147 0.400000 +1112 154 0.400000 +1112 217 0.400000 +1112 230 0.400000 +1112 353 0.400000 +1112 478 0.400000 +1112 488 0.400000 +1112 556 0.400000 +1112 580 0.400000 +1112 662 0.400000 +1112 742 0.400000 +1112 767 0.400000 +1113 40 0.400000 +1113 74 0.400000 +1113 76 0.400000 +1113 107 0.400000 +1113 174 0.400000 +1113 248 0.400000 +1113 253 0.400000 +1113 264 0.400000 +1113 269 0.400000 +1113 327 0.400000 +1113 329 0.400000 +1113 403 0.400000 +1113 440 0.400000 +1113 476 0.400000 +1113 555 0.400000 +1113 580 0.400000 +1113 658 0.400000 +1113 684 0.400000 +1113 703 0.400000 +1114 26 0.400000 +1114 67 0.400000 +1114 114 0.400000 +1114 179 0.400000 +1114 184 0.400000 +1114 202 0.400000 +1114 214 0.400000 +1114 267 0.400000 +1114 336 0.400000 +1114 378 0.400000 +1114 634 0.400000 +1114 637 0.400000 +1114 673 0.400000 +1115 10 0.400000 +1115 54 0.400000 +1115 102 0.400000 +1115 129 0.400000 +1115 207 0.400000 +1115 224 0.400000 +1115 245 0.400000 +1115 263 0.400000 +1115 287 0.400000 +1115 330 0.400000 +1115 350 0.400000 +1115 368 0.400000 +1115 405 0.400000 +1115 454 0.400000 +1115 488 0.400000 +1115 513 0.400000 +1115 559 0.400000 +1115 615 0.400000 +1115 619 0.400000 +1115 625 0.400000 +1115 662 0.400000 +1115 678 0.400000 +1115 725 0.400000 +1115 751 0.400000 +1116 3 0.400000 +1116 13 0.400000 +1116 72 0.400000 +1116 380 0.400000 +1116 435 0.400000 +1116 443 0.400000 +1116 461 0.400000 +1116 493 0.400000 +1116 545 0.400000 +1116 674 0.400000 +1116 676 0.400000 +1116 737 0.400000 +1116 747 0.400000 +1116 800 0.400000 +1117 97 0.400000 +1117 103 0.400000 +1117 125 0.400000 +1117 170 0.400000 +1117 182 0.400000 +1117 193 0.400000 +1117 233 0.400000 +1117 387 0.400000 +1117 389 0.400000 +1117 430 0.400000 +1117 568 0.400000 +1117 570 0.400000 +1117 678 0.400000 +1117 747 0.400000 +1118 66 0.400000 +1118 93 0.400000 +1118 153 0.400000 +1118 217 0.400000 +1118 337 0.400000 +1118 361 0.400000 +1118 370 0.400000 +1118 524 0.400000 +1118 564 0.400000 +1118 621 0.400000 +1118 653 0.400000 +1118 786 0.400000 +1119 6 0.400000 +1119 9 0.400000 +1119 65 0.400000 +1119 265 0.400000 +1119 290 0.400000 +1119 309 0.400000 +1119 424 0.400000 +1119 438 0.400000 +1119 478 0.400000 +1119 683 0.400000 +1119 687 0.400000 +1119 704 0.400000 +1119 749 0.400000 +1120 6 0.400000 +1120 50 0.400000 +1120 117 0.400000 +1120 151 0.400000 +1120 263 0.400000 +1120 267 0.400000 +1120 283 0.400000 +1120 295 0.400000 +1120 296 0.400000 +1120 339 0.400000 +1120 458 0.400000 +1120 476 0.400000 +1120 504 0.400000 +1120 518 0.400000 +1120 617 0.400000 +1120 621 0.400000 +1120 623 0.400000 +1120 737 0.400000 +1120 796 0.400000 +1121 306 0.400000 +1121 330 0.400000 +1121 333 0.400000 +1121 347 0.400000 +1121 353 0.400000 +1121 380 0.400000 +1121 388 0.400000 +1121 449 0.400000 +1121 500 0.400000 +1121 528 0.400000 +1121 565 0.400000 +1121 602 0.400000 +1121 604 0.400000 +1121 609 0.400000 +1121 647 0.400000 +1121 730 0.400000 +1121 762 0.400000 +1122 73 0.400000 +1122 188 0.400000 +1122 206 0.400000 +1122 209 0.400000 +1122 294 0.400000 +1122 301 0.400000 +1122 411 0.400000 +1122 473 0.400000 +1122 528 0.400000 +1122 566 0.400000 +1122 605 0.400000 +1122 613 0.400000 +1122 749 0.400000 +1123 13 0.400000 +1123 174 0.400000 +1123 204 0.400000 +1123 217 0.400000 +1123 273 0.400000 +1123 295 0.400000 +1123 327 0.400000 +1123 416 0.400000 +1123 496 0.400000 +1123 557 0.400000 +1123 593 0.400000 +1123 609 0.400000 +1123 642 0.400000 +1123 690 0.400000 +1123 703 0.400000 +1123 707 0.400000 +1123 727 0.400000 +1123 741 0.400000 +1123 768 0.400000 +1124 7 0.400000 +1124 115 0.400000 +1124 120 0.400000 +1124 122 0.400000 +1124 251 0.400000 +1124 253 0.400000 +1124 300 0.400000 +1124 314 0.400000 +1124 315 0.400000 +1124 361 0.400000 +1124 385 0.400000 +1124 398 0.400000 +1124 404 0.400000 +1124 416 0.400000 +1124 447 0.400000 +1124 515 0.400000 +1124 527 0.400000 +1124 545 0.400000 +1124 575 0.400000 +1124 586 0.400000 +1124 672 0.400000 +1124 681 0.400000 +1124 711 0.400000 +1124 769 0.400000 +1124 772 0.400000 +1124 793 0.400000 +1125 115 0.400000 +1125 323 0.400000 +1125 346 0.400000 +1125 404 0.400000 +1125 411 0.400000 +1125 498 0.400000 +1125 499 0.400000 +1125 508 0.400000 +1125 537 0.400000 +1125 545 0.400000 +1125 557 0.400000 +1125 620 0.400000 +1125 664 0.400000 +1125 747 0.400000 +1125 755 0.400000 +1125 759 0.400000 +1125 764 0.400000 +1125 776 0.400000 +1126 9 0.400000 +1126 32 0.400000 +1126 84 0.400000 +1126 127 0.400000 +1126 144 0.400000 +1126 151 0.400000 +1126 237 0.400000 +1126 287 0.400000 +1126 321 0.400000 +1126 414 0.400000 +1126 450 0.400000 +1126 475 0.400000 +1127 5 0.400000 +1127 105 0.400000 +1127 106 0.400000 +1127 192 0.400000 +1127 237 0.400000 +1127 329 0.400000 +1127 347 0.400000 +1127 395 0.400000 +1127 406 0.400000 +1127 467 0.400000 +1127 513 0.400000 +1127 527 0.400000 +1127 660 0.400000 +1127 670 0.400000 +1127 681 0.400000 +1127 688 0.400000 +1127 702 0.400000 +1127 727 0.400000 +1128 13 0.400000 +1128 28 0.400000 +1128 34 0.400000 +1128 46 0.400000 +1128 87 0.400000 +1128 106 0.400000 +1128 182 0.400000 +1128 184 0.400000 +1128 264 0.400000 +1128 266 0.400000 +1128 275 0.400000 +1128 307 0.400000 +1128 556 0.400000 +1128 557 0.400000 +1128 560 0.400000 +1128 706 0.400000 +1128 729 0.400000 +1128 796 0.400000 +1129 11 0.400000 +1129 29 0.400000 +1129 111 0.400000 +1129 125 0.400000 +1129 203 0.400000 +1129 205 0.400000 +1129 231 0.400000 +1129 289 0.400000 +1129 403 0.400000 +1129 453 0.400000 +1129 557 0.400000 +1129 652 0.400000 +1129 664 0.400000 +1129 704 0.400000 +1129 726 0.400000 +1129 745 0.400000 +1129 759 0.400000 +1130 3 0.400000 +1130 62 0.400000 +1130 121 0.400000 +1130 164 0.400000 +1130 222 0.400000 +1130 246 0.400000 +1130 308 0.400000 +1130 370 0.400000 +1130 373 0.400000 +1130 380 0.400000 +1130 413 0.400000 +1130 447 0.400000 +1130 555 0.400000 +1130 639 0.400000 +1130 664 0.400000 +1130 720 0.400000 +1131 12 0.400000 +1131 165 0.400000 +1131 171 0.400000 +1131 185 0.400000 +1131 193 0.400000 +1131 283 0.400000 +1131 308 0.400000 +1131 346 0.400000 +1131 366 0.400000 +1131 426 0.400000 +1131 472 0.400000 +1131 528 0.400000 +1131 630 0.400000 +1131 701 0.400000 +1131 746 0.400000 +1131 793 0.400000 +1131 799 0.400000 +1132 7 0.400000 +1132 67 0.400000 +1132 115 0.400000 +1132 119 0.400000 +1132 123 0.400000 +1132 271 0.400000 +1132 281 0.400000 +1132 285 0.400000 +1132 291 0.400000 +1132 294 0.400000 +1132 356 0.400000 +1132 385 0.400000 +1132 617 0.400000 +1132 752 0.400000 +1132 755 0.400000 +1133 18 0.400000 +1133 112 0.400000 +1133 116 0.400000 +1133 160 0.400000 +1133 180 0.400000 +1133 232 0.400000 +1133 296 0.400000 +1133 298 0.400000 +1133 340 0.400000 +1133 352 0.400000 +1133 406 0.400000 +1133 416 0.400000 +1133 459 0.400000 +1133 492 0.400000 +1133 514 0.400000 +1133 626 0.400000 +1133 700 0.400000 +1134 44 0.400000 +1134 102 0.400000 +1134 246 0.400000 +1134 292 0.400000 +1134 394 0.400000 +1134 428 0.400000 +1134 452 0.400000 +1134 458 0.400000 +1134 499 0.400000 +1134 555 0.400000 +1134 631 0.400000 +1134 692 0.400000 +1134 767 0.400000 +1135 54 0.400000 +1135 72 0.400000 +1135 115 0.400000 +1135 119 0.400000 +1135 127 0.400000 +1135 191 0.400000 +1135 199 0.400000 +1135 208 0.400000 +1135 215 0.400000 +1135 261 0.400000 +1135 324 0.400000 +1135 351 0.400000 +1135 412 0.400000 +1135 422 0.400000 +1135 426 0.400000 +1135 460 0.400000 +1135 480 0.400000 +1135 500 0.400000 +1135 694 0.400000 +1135 715 0.400000 +1135 730 0.400000 +1135 756 0.400000 +1135 772 0.400000 +1135 799 0.400000 +1136 177 0.400000 +1136 211 0.400000 +1136 298 0.400000 +1136 310 0.400000 +1136 335 0.400000 +1136 352 0.400000 +1136 361 0.400000 +1136 427 0.400000 +1136 439 0.400000 +1136 470 0.400000 +1136 528 0.400000 +1136 568 0.400000 +1136 663 0.400000 +1136 709 0.400000 +1136 755 0.400000 +1137 3 0.400000 +1137 56 0.400000 +1137 121 0.400000 +1137 126 0.400000 +1137 150 0.400000 +1137 172 0.400000 +1137 181 0.400000 +1137 214 0.400000 +1137 264 0.400000 +1137 314 0.400000 +1137 358 0.400000 +1137 424 0.400000 +1137 434 0.400000 +1137 462 0.400000 +1137 476 0.400000 +1137 491 0.400000 +1137 529 0.400000 +1137 542 0.400000 +1137 561 0.400000 +1137 570 0.400000 +1137 576 0.400000 +1137 587 0.400000 +1137 592 0.400000 +1137 653 0.400000 +1137 680 0.400000 +1137 731 0.400000 +1138 48 0.400000 +1138 67 0.400000 +1138 76 0.400000 +1138 141 0.400000 +1138 182 0.400000 +1138 273 0.400000 +1138 297 0.400000 +1138 330 0.400000 +1138 343 0.400000 +1138 460 0.400000 +1138 520 0.400000 +1138 577 0.400000 +1138 705 0.400000 +1138 773 0.400000 +1139 2 0.400000 +1139 34 0.400000 +1139 65 0.400000 +1139 80 0.400000 +1139 122 0.400000 +1139 147 0.400000 +1139 246 0.400000 +1139 348 0.400000 +1139 457 0.400000 +1139 466 0.400000 +1139 475 0.400000 +1139 574 0.400000 +1139 629 0.400000 +1140 32 0.400000 +1140 47 0.400000 +1140 50 0.400000 +1140 144 0.400000 +1140 196 0.400000 +1140 261 0.400000 +1140 334 0.400000 +1140 405 0.400000 +1140 571 0.400000 +1140 622 0.400000 +1140 663 0.400000 +1140 742 0.400000 +1141 3 0.400000 +1141 126 0.400000 +1141 157 0.400000 +1141 185 0.400000 +1141 196 0.400000 +1141 232 0.400000 +1141 259 0.400000 +1141 274 0.400000 +1141 325 0.400000 +1141 354 0.400000 +1141 391 0.400000 +1141 450 0.400000 +1141 457 0.400000 +1141 501 0.400000 +1141 518 0.400000 +1141 575 0.400000 +1141 592 0.400000 +1141 593 0.400000 +1141 659 0.400000 +1141 698 0.400000 +1142 20 0.400000 +1142 86 0.400000 +1142 230 0.400000 +1142 232 0.400000 +1142 243 0.400000 +1142 263 0.400000 +1142 327 0.400000 +1142 348 0.400000 +1142 445 0.400000 +1142 567 0.400000 +1142 596 0.400000 +1142 748 0.400000 +1142 779 0.400000 +1143 44 0.400000 +1143 113 0.400000 +1143 133 0.400000 +1143 136 0.400000 +1143 237 0.400000 +1143 305 0.400000 +1143 330 0.400000 +1143 347 0.400000 +1143 348 0.400000 +1143 412 0.400000 +1143 436 0.400000 +1143 445 0.400000 +1143 530 0.400000 +1143 552 0.400000 +1143 573 0.400000 +1143 588 0.400000 +1143 634 0.400000 +1143 685 0.400000 +1143 708 0.400000 +1143 718 0.400000 +1143 722 0.400000 +1143 745 0.400000 +1143 753 0.400000 +1144 163 0.400000 +1144 219 0.400000 +1144 285 0.400000 +1144 286 0.400000 +1144 318 0.400000 +1144 341 0.400000 +1144 343 0.400000 +1144 346 0.400000 +1144 469 0.400000 +1144 470 0.400000 +1144 471 0.400000 +1144 593 0.400000 +1144 623 0.400000 +1145 56 0.400000 +1145 104 0.400000 +1145 111 0.400000 +1145 118 0.400000 +1145 169 0.400000 +1145 180 0.400000 +1145 301 0.400000 +1145 520 0.400000 +1145 551 0.400000 +1145 641 0.400000 +1145 664 0.400000 +1145 692 0.400000 +1145 710 0.400000 +1145 725 0.400000 +1145 770 0.400000 +1145 791 0.400000 +1146 71 0.400000 +1146 107 0.400000 +1146 113 0.400000 +1146 218 0.400000 +1146 311 0.400000 +1146 385 0.400000 +1146 444 0.400000 +1146 467 0.400000 +1146 626 0.400000 +1147 2 0.400000 +1147 14 0.400000 +1147 126 0.400000 +1147 182 0.400000 +1147 225 0.400000 +1147 259 0.400000 +1147 291 0.400000 +1147 372 0.400000 +1147 398 0.400000 +1147 411 0.400000 +1147 440 0.400000 +1147 576 0.400000 +1147 638 0.400000 +1147 694 0.400000 +1147 734 0.400000 +1147 771 0.400000 +1148 42 0.400000 +1148 61 0.400000 +1148 76 0.400000 +1148 127 0.400000 +1148 150 0.400000 +1148 241 0.400000 +1148 251 0.400000 +1148 273 0.400000 +1148 289 0.400000 +1148 294 0.400000 +1148 362 0.400000 +1148 385 0.400000 +1148 524 0.400000 +1148 583 0.400000 +1148 612 0.400000 +1148 684 0.400000 +1148 783 0.400000 +1149 8 0.400000 +1149 82 0.400000 +1149 143 0.400000 +1149 146 0.400000 +1149 167 0.400000 +1149 259 0.400000 +1149 334 0.400000 +1149 343 0.400000 +1149 344 0.400000 +1149 357 0.400000 +1149 361 0.400000 +1149 427 0.400000 +1149 438 0.400000 +1149 582 0.400000 +1149 691 0.400000 +1149 702 0.400000 +1149 724 0.400000 +1149 757 0.400000 +1149 776 0.400000 +1150 8 0.400000 +1150 178 0.400000 +1150 190 0.400000 +1150 202 0.400000 +1150 296 0.400000 +1150 303 0.400000 +1150 329 0.400000 +1150 339 0.400000 +1150 350 0.400000 +1150 407 0.400000 +1150 408 0.400000 +1150 501 0.400000 +1150 561 0.400000 +1150 578 0.400000 +1150 708 0.400000 +1150 745 0.400000 +1150 755 0.400000 +1150 775 0.400000 +1151 3 0.400000 +1151 19 0.400000 +1151 121 0.400000 +1151 122 0.400000 +1151 136 0.400000 +1151 262 0.400000 +1151 302 0.400000 +1151 303 0.400000 +1151 364 0.400000 +1151 373 0.400000 +1151 404 0.400000 +1151 461 0.400000 +1151 482 0.400000 +1151 487 0.400000 +1151 493 0.400000 +1151 511 0.400000 +1151 591 0.400000 +1151 642 0.400000 +1151 691 0.400000 +1151 708 0.400000 +1152 343 0.400000 +1152 392 0.400000 +1152 403 0.400000 +1152 431 0.400000 +1152 452 0.400000 +1152 477 0.400000 +1152 622 0.400000 +1152 652 0.400000 +1152 654 0.400000 +1152 734 0.400000 +1152 757 0.400000 +1153 93 0.400000 +1153 116 0.400000 +1153 156 0.400000 +1153 272 0.400000 +1153 422 0.400000 +1153 460 0.400000 +1153 467 0.400000 +1153 499 0.400000 +1153 515 0.400000 +1153 646 0.400000 +1153 662 0.400000 +1153 675 0.400000 +1153 750 0.400000 +1153 752 0.400000 +1153 781 0.400000 +1153 797 0.400000 +1154 107 0.400000 +1154 117 0.400000 +1154 137 0.400000 +1154 173 0.400000 +1154 182 0.400000 +1154 217 0.400000 +1154 226 0.400000 +1154 244 0.400000 +1154 265 0.400000 +1154 301 0.400000 +1154 345 0.400000 +1154 440 0.400000 +1154 527 0.400000 +1154 543 0.400000 +1154 575 0.400000 +1155 138 0.400000 +1155 153 0.400000 +1155 169 0.400000 +1155 179 0.400000 +1155 216 0.400000 +1155 308 0.400000 +1155 313 0.400000 +1155 342 0.400000 +1155 382 0.400000 +1155 491 0.400000 +1155 533 0.400000 +1155 545 0.400000 +1155 557 0.400000 +1155 590 0.400000 +1156 6 0.400000 +1156 55 0.400000 +1156 133 0.400000 +1156 147 0.400000 +1156 150 0.400000 +1156 230 0.400000 +1156 235 0.400000 +1156 277 0.400000 +1156 300 0.400000 +1156 337 0.400000 +1156 435 0.400000 +1156 500 0.400000 +1156 517 0.400000 +1156 569 0.400000 +1156 633 0.400000 +1157 83 0.400000 +1157 115 0.400000 +1157 116 0.400000 +1157 136 0.400000 +1157 223 0.400000 +1157 367 0.400000 +1157 377 0.400000 +1157 468 0.400000 +1157 500 0.400000 +1157 512 0.400000 +1157 523 0.400000 +1157 529 0.400000 +1157 558 0.400000 +1157 589 0.400000 +1157 614 0.400000 +1157 623 0.400000 +1157 646 0.400000 +1157 660 0.400000 +1158 53 0.400000 +1158 98 0.400000 +1158 128 0.400000 +1158 180 0.400000 +1158 219 0.400000 +1158 268 0.400000 +1158 274 0.400000 +1158 348 0.400000 +1158 364 0.400000 +1158 371 0.400000 +1158 384 0.400000 +1158 400 0.400000 +1158 555 0.400000 +1158 572 0.400000 +1158 619 0.400000 +1158 706 0.400000 +1158 748 0.400000 +1158 765 0.400000 +1158 767 0.400000 +1158 777 0.400000 +1158 792 0.400000 +1159 11 0.400000 +1159 46 0.400000 +1159 84 0.400000 +1159 104 0.400000 +1159 132 0.400000 +1159 249 0.400000 +1159 253 0.400000 +1159 275 0.400000 +1159 281 0.400000 +1159 304 0.400000 +1159 315 0.400000 +1159 324 0.400000 +1159 351 0.400000 +1159 374 0.400000 +1159 482 0.400000 +1159 495 0.400000 +1159 625 0.400000 +1159 666 0.400000 +1159 667 0.400000 +1159 708 0.400000 +1159 792 0.400000 +1160 13 0.400000 +1160 44 0.400000 +1160 107 0.400000 +1160 144 0.400000 +1160 148 0.400000 +1160 224 0.400000 +1160 250 0.400000 +1160 256 0.400000 +1160 264 0.400000 +1160 447 0.400000 +1160 534 0.400000 +1160 579 0.400000 +1160 601 0.400000 +1160 718 0.400000 +1160 736 0.400000 +1160 784 0.400000 +1161 27 0.400000 +1161 66 0.400000 +1161 248 0.400000 +1161 259 0.400000 +1161 280 0.400000 +1161 321 0.400000 +1161 333 0.400000 +1161 357 0.400000 +1161 433 0.400000 +1161 446 0.400000 +1161 451 0.400000 +1161 485 0.400000 +1161 520 0.400000 +1161 573 0.400000 +1161 587 0.400000 +1161 628 0.400000 +1161 691 0.400000 +1161 750 0.400000 +1161 773 0.400000 +1162 8 0.400000 +1162 44 0.400000 +1162 183 0.400000 +1162 191 0.400000 +1162 284 0.400000 +1162 285 0.400000 +1162 295 0.400000 +1162 328 0.400000 +1162 372 0.400000 +1162 470 0.400000 +1162 549 0.400000 +1162 588 0.400000 +1162 627 0.400000 +1162 652 0.400000 +1163 166 0.400000 +1163 271 0.400000 +1163 299 0.400000 +1163 496 0.400000 +1163 505 0.400000 +1163 519 0.400000 +1163 607 0.400000 +1163 609 0.400000 +1163 641 0.400000 +1163 715 0.400000 +1164 48 0.400000 +1164 71 0.400000 +1164 110 0.400000 +1164 182 0.400000 +1164 197 0.400000 +1164 275 0.400000 +1164 334 0.400000 +1164 335 0.400000 +1164 350 0.400000 +1164 376 0.400000 +1164 410 0.400000 +1164 484 0.400000 +1164 518 0.400000 +1164 588 0.400000 +1164 607 0.400000 +1164 656 0.400000 +1164 669 0.400000 +1165 26 0.400000 +1165 34 0.400000 +1165 40 0.400000 +1165 74 0.400000 +1165 131 0.400000 +1165 159 0.400000 +1165 178 0.400000 +1165 266 0.400000 +1165 308 0.400000 +1165 372 0.400000 +1165 437 0.400000 +1165 479 0.400000 +1165 499 0.400000 +1165 523 0.400000 +1165 575 0.400000 +1165 692 0.400000 +1165 708 0.400000 +1165 770 0.400000 +1166 12 0.400000 +1166 51 0.400000 +1166 82 0.400000 +1166 140 0.400000 +1166 206 0.400000 +1166 233 0.400000 +1166 274 0.400000 +1166 332 0.400000 +1166 348 0.400000 +1166 364 0.400000 +1166 462 0.400000 +1166 482 0.400000 +1166 537 0.400000 +1166 579 0.400000 +1166 587 0.400000 +1166 590 0.400000 +1166 608 0.400000 +1166 609 0.400000 +1166 667 0.400000 +1166 680 0.400000 +1166 711 0.400000 +1166 712 0.400000 +1166 735 0.400000 +1166 747 0.400000 +1167 41 0.400000 +1167 67 0.400000 +1167 74 0.400000 +1167 105 0.400000 +1167 108 0.400000 +1167 117 0.400000 +1167 180 0.400000 +1167 183 0.400000 +1167 206 0.400000 +1167 214 0.400000 +1167 317 0.400000 +1167 323 0.400000 +1167 409 0.400000 +1167 468 0.400000 +1167 560 0.400000 +1167 579 0.400000 +1167 606 0.400000 +1167 665 0.400000 +1167 671 0.400000 +1168 8 0.400000 +1168 26 0.400000 +1168 74 0.400000 +1168 184 0.400000 +1168 209 0.400000 +1168 210 0.400000 +1168 223 0.400000 +1168 250 0.400000 +1168 260 0.400000 +1168 360 0.400000 +1168 389 0.400000 +1168 411 0.400000 +1168 532 0.400000 +1168 573 0.400000 +1168 639 0.400000 +1168 675 0.400000 +1168 730 0.400000 +1168 742 0.400000 +1169 43 0.400000 +1169 50 0.400000 +1169 152 0.400000 +1169 191 0.400000 +1169 315 0.400000 +1169 329 0.400000 +1169 343 0.400000 +1169 379 0.400000 +1169 406 0.400000 +1169 437 0.400000 +1169 471 0.400000 +1169 616 0.400000 +1169 733 0.400000 +1169 773 0.400000 +1170 26 0.400000 +1170 80 0.400000 +1170 115 0.400000 +1170 393 0.400000 +1170 401 0.400000 +1170 436 0.400000 +1170 451 0.400000 +1170 462 0.400000 +1170 530 0.400000 +1170 778 0.400000 +1171 11 0.400000 +1171 35 0.400000 +1171 69 0.400000 +1171 274 0.400000 +1171 304 0.400000 +1171 305 0.400000 +1171 356 0.400000 +1171 360 0.400000 +1171 374 0.400000 +1171 419 0.400000 +1171 459 0.400000 +1171 466 0.400000 +1171 494 0.400000 +1171 521 0.400000 +1171 535 0.400000 +1171 570 0.400000 +1171 580 0.400000 +1171 598 0.400000 +1171 675 0.400000 +1171 710 0.400000 +1171 722 0.400000 +1171 732 0.400000 +1171 769 0.400000 +1172 15 0.400000 +1172 108 0.400000 +1172 116 0.400000 +1172 161 0.400000 +1172 218 0.400000 +1172 238 0.400000 +1172 271 0.400000 +1172 311 0.400000 +1172 455 0.400000 +1172 465 0.400000 +1172 513 0.400000 +1172 520 0.400000 +1172 538 0.400000 +1172 612 0.400000 +1172 624 0.400000 +1172 625 0.400000 +1172 638 0.400000 +1172 688 0.400000 +1172 724 0.400000 +1172 734 0.400000 +1172 750 0.400000 +1173 41 0.400000 +1173 79 0.400000 +1173 91 0.400000 +1173 93 0.400000 +1173 274 0.400000 +1173 386 0.400000 +1173 400 0.400000 +1173 408 0.400000 +1173 416 0.400000 +1173 541 0.400000 +1173 546 0.400000 +1173 562 0.400000 +1173 597 0.400000 +1173 724 0.400000 +1174 31 0.400000 +1174 118 0.400000 +1174 184 0.400000 +1174 192 0.400000 +1174 204 0.400000 +1174 271 0.400000 +1174 369 0.400000 +1174 430 0.400000 +1174 499 0.400000 +1174 544 0.400000 +1174 772 0.400000 +1175 29 0.400000 +1175 97 0.400000 +1175 134 0.400000 +1175 279 0.400000 +1175 323 0.400000 +1175 385 0.400000 +1175 444 0.400000 +1175 454 0.400000 +1175 589 0.400000 +1175 617 0.400000 +1175 701 0.400000 +1176 52 0.400000 +1176 79 0.400000 +1176 146 0.400000 +1176 272 0.400000 +1176 379 0.400000 +1176 483 0.400000 +1176 539 0.400000 +1176 548 0.400000 +1176 600 0.400000 +1176 602 0.400000 +1176 622 0.400000 +1176 726 0.400000 +1177 26 0.400000 +1177 42 0.400000 +1177 54 0.400000 +1177 100 0.400000 +1177 102 0.400000 +1177 131 0.400000 +1177 170 0.400000 +1177 199 0.400000 +1177 262 0.400000 +1177 299 0.400000 +1177 319 0.400000 +1177 369 0.400000 +1177 465 0.400000 +1177 490 0.400000 +1177 539 0.400000 +1177 570 0.400000 +1177 586 0.400000 +1177 646 0.400000 +1177 654 0.400000 +1177 687 0.400000 +1177 788 0.400000 +1178 10 0.400000 +1178 74 0.400000 +1178 82 0.400000 +1178 131 0.400000 +1178 169 0.400000 +1178 242 0.400000 +1178 259 0.400000 +1178 291 0.400000 +1178 312 0.400000 +1178 319 0.400000 +1178 351 0.400000 +1178 357 0.400000 +1178 384 0.400000 +1178 449 0.400000 +1178 470 0.400000 +1178 514 0.400000 +1178 530 0.400000 +1178 659 0.400000 +1178 668 0.400000 +1178 669 0.400000 +1178 677 0.400000 +1178 685 0.400000 +1178 688 0.400000 +1178 772 0.400000 +1178 778 0.400000 +1179 66 0.400000 +1179 87 0.400000 +1179 116 0.400000 +1179 240 0.400000 +1179 381 0.400000 +1179 384 0.400000 +1179 393 0.400000 +1179 402 0.400000 +1179 605 0.400000 +1179 656 0.400000 +1179 685 0.400000 +1179 696 0.400000 +1179 706 0.400000 +1179 726 0.400000 +1179 727 0.400000 +1179 791 0.400000 +1180 68 0.400000 +1180 88 0.400000 +1180 98 0.400000 +1180 116 0.400000 +1180 118 0.400000 +1180 136 0.400000 +1180 199 0.400000 +1180 203 0.400000 +1180 210 0.400000 +1180 230 0.400000 +1180 393 0.400000 +1180 446 0.400000 +1180 491 0.400000 +1180 512 0.400000 +1180 602 0.400000 +1180 603 0.400000 +1180 611 0.400000 +1180 663 0.400000 +1180 746 0.400000 +1180 776 0.400000 +1180 789 0.400000 +1181 11 0.400000 +1181 12 0.400000 +1181 74 0.400000 +1181 86 0.400000 +1181 211 0.400000 +1181 258 0.400000 +1181 266 0.400000 +1181 278 0.400000 +1181 321 0.400000 +1181 350 0.400000 +1181 368 0.400000 +1181 386 0.400000 +1181 435 0.400000 +1181 440 0.400000 +1181 490 0.400000 +1181 596 0.400000 +1181 623 0.400000 +1182 171 0.400000 +1182 201 0.400000 +1182 275 0.400000 +1182 338 0.400000 +1182 459 0.400000 +1182 514 0.400000 +1182 606 0.400000 +1182 679 0.400000 +1183 53 0.400000 +1183 62 0.400000 +1183 73 0.400000 +1183 96 0.400000 +1183 145 0.400000 +1183 172 0.400000 +1183 186 0.400000 +1183 333 0.400000 +1183 342 0.400000 +1183 348 0.400000 +1183 377 0.400000 +1183 505 0.400000 +1183 513 0.400000 +1183 514 0.400000 +1183 630 0.400000 +1183 677 0.400000 +1183 700 0.400000 +1183 727 0.400000 +1183 774 0.400000 +1183 793 0.400000 +1184 16 0.400000 +1184 19 0.400000 +1184 55 0.400000 +1184 72 0.400000 +1184 73 0.400000 +1184 173 0.400000 +1184 182 0.400000 +1184 325 0.400000 +1184 369 0.400000 +1184 380 0.400000 +1184 397 0.400000 +1184 424 0.400000 +1184 443 0.400000 +1184 582 0.400000 +1184 588 0.400000 +1184 636 0.400000 +1184 642 0.400000 +1184 681 0.400000 +1184 702 0.400000 +1184 711 0.400000 +1185 10 0.400000 +1185 34 0.400000 +1185 154 0.400000 +1185 171 0.400000 +1185 418 0.400000 +1185 452 0.400000 +1185 474 0.400000 +1185 502 0.400000 +1185 518 0.400000 +1185 546 0.400000 +1185 549 0.400000 +1185 583 0.400000 +1185 621 0.400000 +1185 626 0.400000 +1185 700 0.400000 +1185 744 0.400000 +1186 28 0.400000 +1186 42 0.400000 +1186 65 0.400000 +1186 79 0.400000 +1186 151 0.400000 +1186 194 0.400000 +1186 242 0.400000 +1186 273 0.400000 +1186 285 0.400000 +1186 344 0.400000 +1186 375 0.400000 +1186 501 0.400000 +1186 509 0.400000 +1186 572 0.400000 +1186 625 0.400000 +1186 647 0.400000 +1186 704 0.400000 +1186 752 0.400000 +1186 783 0.400000 +1187 12 0.400000 +1187 17 0.400000 +1187 28 0.400000 +1187 145 0.400000 +1187 155 0.400000 +1187 189 0.400000 +1187 192 0.400000 +1187 209 0.400000 +1187 244 0.400000 +1187 274 0.400000 +1187 328 0.400000 +1187 386 0.400000 +1187 509 0.400000 +1187 573 0.400000 +1187 601 0.400000 +1187 614 0.400000 +1187 630 0.400000 +1187 634 0.400000 +1187 694 0.400000 +1187 775 0.400000 +1187 798 0.400000 +1188 139 0.400000 +1188 185 0.400000 +1188 191 0.400000 +1188 196 0.400000 +1188 229 0.400000 +1188 233 0.400000 +1188 238 0.400000 +1188 269 0.400000 +1188 414 0.400000 +1188 540 0.400000 +1188 653 0.400000 +1188 661 0.400000 +1188 708 0.400000 +1189 59 0.400000 +1189 93 0.400000 +1189 165 0.400000 +1189 267 0.400000 +1189 319 0.400000 +1189 405 0.400000 +1189 502 0.400000 +1189 514 0.400000 +1189 658 0.400000 +1189 686 0.400000 +1190 66 0.400000 +1190 117 0.400000 +1190 118 0.400000 +1190 140 0.400000 +1190 307 0.400000 +1190 386 0.400000 +1190 404 0.400000 +1190 406 0.400000 +1190 427 0.400000 +1190 474 0.400000 +1190 521 0.400000 +1190 649 0.400000 +1190 729 0.400000 +1190 732 0.400000 +1190 800 0.400000 +1191 78 0.400000 +1191 84 0.400000 +1191 191 0.400000 +1191 205 0.400000 +1191 495 0.400000 +1191 519 0.400000 +1191 650 0.400000 +1191 715 0.400000 +1191 741 0.400000 +1191 784 0.400000 +1192 86 0.400000 +1192 114 0.400000 +1192 144 0.400000 +1192 201 0.400000 +1192 296 0.400000 +1192 402 0.400000 +1192 476 0.400000 +1192 554 0.400000 +1192 699 0.400000 +1192 711 0.400000 +1192 739 0.400000 +1192 783 0.400000 +1192 796 0.400000 +1193 2 0.400000 +1193 17 0.400000 +1193 35 0.400000 +1193 77 0.400000 +1193 100 0.400000 +1193 222 0.400000 +1193 234 0.400000 +1193 266 0.400000 +1193 288 0.400000 +1193 301 0.400000 +1193 363 0.400000 +1193 416 0.400000 +1193 418 0.400000 +1193 457 0.400000 +1193 463 0.400000 +1193 494 0.400000 +1193 588 0.400000 +1193 622 0.400000 +1193 630 0.400000 +1193 632 0.400000 +1193 682 0.400000 +1193 729 0.400000 +1193 731 0.400000 +1193 770 0.400000 +1193 798 0.400000 +1194 43 0.400000 +1194 83 0.400000 +1194 88 0.400000 +1194 229 0.400000 +1194 316 0.400000 +1194 405 0.400000 +1194 532 0.400000 +1194 793 0.400000 +1195 19 0.400000 +1195 74 0.400000 +1195 87 0.400000 +1195 112 0.400000 +1195 234 0.400000 +1195 243 0.400000 +1195 337 0.400000 +1195 415 0.400000 +1195 499 0.400000 +1195 507 0.400000 +1195 508 0.400000 +1195 596 0.400000 +1195 704 0.400000 +1196 73 0.400000 +1196 132 0.400000 +1196 159 0.400000 +1196 287 0.400000 +1196 408 0.400000 +1196 441 0.400000 +1196 477 0.400000 +1196 547 0.400000 +1196 550 0.400000 +1196 586 0.400000 +1196 608 0.400000 +1196 647 0.400000 +1196 694 0.400000 +1196 783 0.400000 +1197 29 0.400000 +1197 43 0.400000 +1197 96 0.400000 +1197 98 0.400000 +1197 120 0.400000 +1197 224 0.400000 +1197 230 0.400000 +1197 234 0.400000 +1197 346 0.400000 +1197 350 0.400000 +1197 477 0.400000 +1197 518 0.400000 +1197 522 0.400000 +1197 588 0.400000 +1197 592 0.400000 +1197 635 0.400000 +1197 668 0.400000 +1197 707 0.400000 +1197 745 0.400000 +1198 7 0.400000 +1198 12 0.400000 +1198 16 0.400000 +1198 35 0.400000 +1198 87 0.400000 +1198 115 0.400000 +1198 198 0.400000 +1198 227 0.400000 +1198 252 0.400000 +1198 322 0.400000 +1198 344 0.400000 +1198 401 0.400000 +1198 436 0.400000 +1198 528 0.400000 +1198 568 0.400000 +1198 606 0.400000 +1198 622 0.400000 +1198 749 0.400000 +1198 788 0.400000 +1198 793 0.400000 +1198 799 0.400000 +1199 22 0.400000 +1199 30 0.400000 +1199 189 0.400000 +1199 202 0.400000 +1199 246 0.400000 +1199 291 0.400000 +1199 311 0.400000 +1199 357 0.400000 +1199 360 0.400000 +1199 482 0.400000 +1199 677 0.400000 +1199 687 0.400000 +1199 743 0.400000 +1200 50 0.400000 +1200 75 0.400000 +1200 89 0.400000 +1200 99 0.400000 +1200 117 0.400000 +1200 123 0.400000 +1200 160 0.400000 +1200 172 0.400000 +1200 191 0.400000 +1200 213 0.400000 +1200 214 0.400000 +1200 236 0.400000 +1200 237 0.400000 +1200 242 0.400000 +1200 351 0.400000 +1200 585 0.400000 +1200 643 0.400000 +1200 683 0.400000 +1200 714 0.400000 +1200 758 0.400000 +1201 19 0.400000 +1201 71 0.400000 +1201 150 0.400000 +1201 357 0.400000 +1201 388 0.400000 +1201 422 0.400000 +1201 428 0.400000 +1201 474 0.400000 +1201 477 0.400000 +1201 485 0.400000 +1201 645 0.400000 +1201 656 0.400000 +1201 687 0.400000 +1201 759 0.400000 +1202 127 0.400000 +1202 165 0.400000 +1202 187 0.400000 +1202 213 0.400000 +1202 237 0.400000 +1202 264 0.400000 +1202 277 0.400000 +1202 299 0.400000 +1202 355 0.400000 +1202 438 0.400000 +1202 456 0.400000 +1202 476 0.400000 +1202 501 0.400000 +1202 533 0.400000 +1202 555 0.400000 +1202 587 0.400000 +1202 657 0.400000 +1202 700 0.400000 +1202 710 0.400000 +1203 19 0.400000 +1203 56 0.400000 +1203 147 0.400000 +1203 168 0.400000 +1203 171 0.400000 +1203 229 0.400000 +1203 248 0.400000 +1203 249 0.400000 +1203 341 0.400000 +1203 355 0.400000 +1203 389 0.400000 +1203 421 0.400000 +1203 473 0.400000 +1203 485 0.400000 +1203 683 0.400000 +1204 42 0.400000 +1204 53 0.400000 +1204 60 0.400000 +1204 85 0.400000 +1204 141 0.400000 +1204 206 0.400000 +1204 269 0.400000 +1204 404 0.400000 +1204 449 0.400000 +1204 477 0.400000 +1204 498 0.400000 +1204 610 0.400000 +1204 677 0.400000 +1204 715 0.400000 +1204 763 0.400000 +1205 8 0.400000 +1205 43 0.400000 +1205 57 0.400000 +1205 75 0.400000 +1205 189 0.400000 +1205 314 0.400000 +1205 339 0.400000 +1205 361 0.400000 +1205 368 0.400000 +1205 375 0.400000 +1205 404 0.400000 +1205 461 0.400000 +1205 519 0.400000 +1205 571 0.400000 +1205 578 0.400000 +1205 584 0.400000 +1205 587 0.400000 +1205 668 0.400000 +1205 670 0.400000 +1206 30 0.400000 +1206 140 0.400000 +1206 240 0.400000 +1206 284 0.400000 +1206 390 0.400000 +1206 462 0.400000 +1206 557 0.400000 +1206 559 0.400000 +1206 601 0.400000 +1206 623 0.400000 +1206 653 0.400000 +1206 753 0.400000 +1207 8 0.400000 +1207 33 0.400000 +1207 109 0.400000 +1207 218 0.400000 +1207 284 0.400000 +1207 291 0.400000 +1207 455 0.400000 +1207 593 0.400000 +1207 624 0.400000 +1207 628 0.400000 +1207 639 0.400000 +1207 684 0.400000 +1207 700 0.400000 +1207 725 0.400000 +1207 762 0.400000 +1207 777 0.400000 +1208 16 0.400000 +1208 56 0.400000 +1208 65 0.400000 +1208 84 0.400000 +1208 211 0.400000 +1208 300 0.400000 +1208 377 0.400000 +1208 397 0.400000 +1208 430 0.400000 +1208 534 0.400000 +1208 621 0.400000 +1208 623 0.400000 +1208 669 0.400000 +1209 125 0.400000 +1209 135 0.400000 +1209 249 0.400000 +1209 280 0.400000 +1209 287 0.400000 +1209 334 0.400000 +1209 344 0.400000 +1209 425 0.400000 +1209 432 0.400000 +1209 557 0.400000 +1209 592 0.400000 +1210 53 0.400000 +1210 61 0.400000 +1210 74 0.400000 +1210 120 0.400000 +1210 178 0.400000 +1210 289 0.400000 +1210 292 0.400000 +1210 305 0.400000 +1210 328 0.400000 +1210 361 0.400000 +1210 382 0.400000 +1210 385 0.400000 +1210 482 0.400000 +1210 492 0.400000 +1210 580 0.400000 +1210 611 0.400000 +1210 742 0.400000 +1210 759 0.400000 +1211 7 0.400000 +1211 25 0.400000 +1211 94 0.400000 +1211 172 0.400000 +1211 204 0.400000 +1211 209 0.400000 +1211 273 0.400000 +1211 274 0.400000 +1211 347 0.400000 +1211 380 0.400000 +1211 405 0.400000 +1211 466 0.400000 +1211 497 0.400000 +1211 612 0.400000 +1211 679 0.400000 +1212 7 0.400000 +1212 17 0.400000 +1212 43 0.400000 +1212 51 0.400000 +1212 80 0.400000 +1212 87 0.400000 +1212 118 0.400000 +1212 129 0.400000 +1212 142 0.400000 +1212 239 0.400000 +1212 341 0.400000 +1212 392 0.400000 +1212 456 0.400000 +1212 465 0.400000 +1212 483 0.400000 +1212 527 0.400000 +1212 545 0.400000 +1212 577 0.400000 +1212 644 0.400000 +1212 671 0.400000 +1212 689 0.400000 +1212 781 0.400000 +1212 789 0.400000 +1213 42 0.400000 +1213 45 0.400000 +1213 73 0.400000 +1213 167 0.400000 +1213 214 0.400000 +1213 228 0.400000 +1213 424 0.400000 +1213 570 0.400000 +1213 724 0.400000 +1213 752 0.400000 +1213 799 0.400000 +1214 60 0.400000 +1214 65 0.400000 +1214 120 0.400000 +1214 153 0.400000 +1214 157 0.400000 +1214 164 0.400000 +1214 208 0.400000 +1214 250 0.400000 +1214 319 0.400000 +1214 394 0.400000 +1214 453 0.400000 +1214 517 0.400000 +1214 693 0.400000 +1214 695 0.400000 +1214 736 0.400000 +1214 783 0.400000 +1214 790 0.400000 +1215 40 0.400000 +1215 138 0.400000 +1215 139 0.400000 +1215 156 0.400000 +1215 345 0.400000 +1215 355 0.400000 +1215 374 0.400000 +1215 504 0.400000 +1215 521 0.400000 +1215 652 0.400000 +1215 660 0.400000 +1215 711 0.400000 +1215 728 0.400000 +1215 734 0.400000 +1216 21 0.400000 +1216 135 0.400000 +1216 276 0.400000 +1216 282 0.400000 +1216 285 0.400000 +1216 342 0.400000 +1216 359 0.400000 +1216 562 0.400000 +1216 568 0.400000 +1216 748 0.400000 +1216 758 0.400000 +1217 86 0.400000 +1217 164 0.400000 +1217 172 0.400000 +1217 177 0.400000 +1217 207 0.400000 +1217 229 0.400000 +1217 251 0.400000 +1217 390 0.400000 +1217 462 0.400000 +1217 491 0.400000 +1217 529 0.400000 +1217 550 0.400000 +1217 634 0.400000 +1217 718 0.400000 +1217 736 0.400000 +1217 796 0.400000 +1218 118 0.400000 +1218 210 0.400000 +1218 262 0.400000 +1218 356 0.400000 +1218 397 0.400000 +1218 483 0.400000 +1218 525 0.400000 +1218 612 0.400000 +1218 625 0.400000 +1218 644 0.400000 +1219 33 0.400000 +1219 58 0.400000 +1219 61 0.400000 +1219 260 0.400000 +1219 310 0.400000 +1219 333 0.400000 +1219 346 0.400000 +1219 479 0.400000 +1219 486 0.400000 +1219 558 0.400000 +1219 594 0.400000 +1219 615 0.400000 +1220 42 0.400000 +1220 166 0.400000 +1220 276 0.400000 +1220 357 0.400000 +1220 373 0.400000 +1220 379 0.400000 +1220 409 0.400000 +1220 415 0.400000 +1220 431 0.400000 +1220 477 0.400000 +1220 538 0.400000 +1220 544 0.400000 +1220 573 0.400000 +1220 747 0.400000 +1221 24 0.400000 +1221 93 0.400000 +1221 107 0.400000 +1221 264 0.400000 +1221 278 0.400000 +1221 301 0.400000 +1221 313 0.400000 +1221 363 0.400000 +1221 491 0.400000 +1221 534 0.400000 +1221 542 0.400000 +1221 601 0.400000 +1221 656 0.400000 +1221 662 0.400000 +1221 705 0.400000 +1221 721 0.400000 +1221 730 0.400000 +1222 85 0.400000 +1222 164 0.400000 +1222 188 0.400000 +1222 311 0.400000 +1222 331 0.400000 +1222 332 0.400000 +1222 397 0.400000 +1222 499 0.400000 +1222 648 0.400000 +1222 657 0.400000 +1222 689 0.400000 +1222 748 0.400000 +1222 751 0.400000 +1222 795 0.400000 +1223 19 0.400000 +1223 82 0.400000 +1223 83 0.400000 +1223 91 0.400000 +1223 112 0.400000 +1223 250 0.400000 +1223 294 0.400000 +1223 493 0.400000 +1223 564 0.400000 +1223 647 0.400000 +1223 661 0.400000 +1223 688 0.400000 +1223 690 0.400000 +1224 10 0.400000 +1224 51 0.400000 +1224 53 0.400000 +1224 66 0.400000 +1224 79 0.400000 +1224 148 0.400000 +1224 166 0.400000 +1224 210 0.400000 +1224 273 0.400000 +1224 310 0.400000 +1224 380 0.400000 +1224 464 0.400000 +1224 547 0.400000 +1224 689 0.400000 +1224 729 0.400000 +1224 775 0.400000 +1225 135 0.400000 +1225 244 0.400000 +1225 372 0.400000 +1225 436 0.400000 +1225 453 0.400000 +1225 486 0.400000 +1225 512 0.400000 +1225 544 0.400000 +1225 597 0.400000 +1225 754 0.400000 +1226 1 0.400000 +1226 29 0.400000 +1226 92 0.400000 +1226 232 0.400000 +1226 235 0.400000 +1226 260 0.400000 +1226 347 0.400000 +1226 388 0.400000 +1226 500 0.400000 +1226 535 0.400000 +1226 632 0.400000 +1226 646 0.400000 +1226 743 0.400000 +1226 794 0.400000 +1227 123 0.400000 +1227 168 0.400000 +1227 170 0.400000 +1227 180 0.400000 +1227 194 0.400000 +1227 196 0.400000 +1227 209 0.400000 +1227 215 0.400000 +1227 231 0.400000 +1227 233 0.400000 +1227 305 0.400000 +1227 417 0.400000 +1227 440 0.400000 +1227 461 0.400000 +1227 474 0.400000 +1227 508 0.400000 +1227 579 0.400000 +1227 619 0.400000 +1227 670 0.400000 +1227 671 0.400000 +1227 693 0.400000 +1227 751 0.400000 +1227 772 0.400000 +1227 782 0.400000 +1228 12 0.400000 +1228 106 0.400000 +1228 122 0.400000 +1228 133 0.400000 +1228 160 0.400000 +1228 191 0.400000 +1228 208 0.400000 +1228 221 0.400000 +1228 281 0.400000 +1228 332 0.400000 +1228 371 0.400000 +1228 392 0.400000 +1228 397 0.400000 +1228 433 0.400000 +1228 488 0.400000 +1228 541 0.400000 +1228 625 0.400000 +1228 695 0.400000 +1229 39 0.400000 +1229 47 0.400000 +1229 76 0.400000 +1229 107 0.400000 +1229 121 0.400000 +1229 324 0.400000 +1229 589 0.400000 +1229 614 0.400000 +1229 677 0.400000 +1229 722 0.400000 +1229 733 0.400000 +1229 763 0.400000 +1230 41 0.400000 +1230 53 0.400000 +1230 59 0.400000 +1230 120 0.400000 +1230 156 0.400000 +1230 287 0.400000 +1230 367 0.400000 +1230 451 0.400000 +1230 493 0.400000 +1230 529 0.400000 +1230 574 0.400000 +1230 715 0.400000 +1231 63 0.400000 +1231 95 0.400000 +1231 103 0.400000 +1231 248 0.400000 +1231 262 0.400000 +1231 419 0.400000 +1231 443 0.400000 +1231 463 0.400000 +1231 540 0.400000 +1231 639 0.400000 +1231 650 0.400000 +1231 691 0.400000 +1231 747 0.400000 +1232 12 0.400000 +1232 41 0.400000 +1232 54 0.400000 +1232 58 0.400000 +1232 62 0.400000 +1232 139 0.400000 +1232 159 0.400000 +1232 202 0.400000 +1232 228 0.400000 +1232 284 0.400000 +1232 411 0.400000 +1232 445 0.400000 +1232 529 0.400000 +1232 564 0.400000 +1232 598 0.400000 +1232 705 0.400000 +1232 734 0.400000 +1233 3 0.400000 +1233 65 0.400000 +1233 137 0.400000 +1233 165 0.400000 +1233 200 0.400000 +1233 247 0.400000 +1233 291 0.400000 +1233 304 0.400000 +1233 361 0.400000 +1233 373 0.400000 +1233 416 0.400000 +1233 503 0.400000 +1233 531 0.400000 +1233 620 0.400000 +1233 668 0.400000 +1233 732 0.400000 +1233 758 0.400000 +1233 790 0.400000 +1234 64 0.400000 +1234 83 0.400000 +1234 284 0.400000 +1234 309 0.400000 +1234 383 0.400000 +1234 448 0.400000 +1234 478 0.400000 +1234 527 0.400000 +1234 536 0.400000 +1234 547 0.400000 +1234 554 0.400000 +1234 587 0.400000 +1234 589 0.400000 +1234 673 0.400000 +1234 686 0.400000 +1234 715 0.400000 +1234 726 0.400000 +1235 63 0.400000 +1235 81 0.400000 +1235 82 0.400000 +1235 145 0.400000 +1235 151 0.400000 +1235 176 0.400000 +1235 401 0.400000 +1235 470 0.400000 +1235 471 0.400000 +1235 621 0.400000 +1235 670 0.400000 +1235 673 0.400000 +1235 761 0.400000 +1236 108 0.400000 +1236 225 0.400000 +1236 270 0.400000 +1236 320 0.400000 +1236 357 0.400000 +1236 509 0.400000 +1236 518 0.400000 +1236 532 0.400000 +1236 550 0.400000 +1236 602 0.400000 +1236 652 0.400000 +1236 687 0.400000 +1236 706 0.400000 +1236 722 0.400000 +1236 742 0.400000 +1236 772 0.400000 +1236 795 0.400000 +1237 80 0.400000 +1237 117 0.400000 +1237 169 0.400000 +1237 185 0.400000 +1237 280 0.400000 +1237 286 0.400000 +1237 448 0.400000 +1237 464 0.400000 +1237 507 0.400000 +1237 550 0.400000 +1237 553 0.400000 +1237 561 0.400000 +1237 616 0.400000 +1237 647 0.400000 +1237 726 0.400000 +1237 762 0.400000 +1238 14 0.400000 +1238 31 0.400000 +1238 75 0.400000 +1238 190 0.400000 +1238 195 0.400000 +1238 318 0.400000 +1238 326 0.400000 +1238 369 0.400000 +1238 373 0.400000 +1238 543 0.400000 +1238 590 0.400000 +1238 709 0.400000 +1238 743 0.400000 +1238 764 0.400000 +1239 5 0.400000 +1239 129 0.400000 +1239 216 0.400000 +1239 287 0.400000 +1239 298 0.400000 +1239 308 0.400000 +1239 332 0.400000 +1239 348 0.400000 +1239 402 0.400000 +1239 449 0.400000 +1239 512 0.400000 +1239 645 0.400000 +1239 655 0.400000 +1239 683 0.400000 +1239 689 0.400000 +1239 710 0.400000 +1239 789 0.400000 +1240 63 0.400000 +1240 70 0.400000 +1240 134 0.400000 +1240 151 0.400000 +1240 176 0.400000 +1240 202 0.400000 +1240 224 0.400000 +1240 277 0.400000 +1240 336 0.400000 +1240 394 0.400000 +1240 428 0.400000 +1240 441 0.400000 +1240 486 0.400000 +1240 527 0.400000 +1240 579 0.400000 +1240 608 0.400000 +1240 632 0.400000 +1240 655 0.400000 +1240 767 0.400000 +1240 769 0.400000 +1241 8 0.400000 +1241 71 0.400000 +1241 80 0.400000 +1241 163 0.400000 +1241 302 0.400000 +1241 323 0.400000 +1241 397 0.400000 +1241 405 0.400000 +1241 482 0.400000 +1241 625 0.400000 +1241 653 0.400000 +1241 713 0.400000 +1241 753 0.400000 +1242 32 0.400000 +1242 51 0.400000 +1242 65 0.400000 +1242 101 0.400000 +1242 252 0.400000 +1242 344 0.400000 +1242 399 0.400000 +1242 424 0.400000 +1242 445 0.400000 +1242 459 0.400000 +1242 471 0.400000 +1242 476 0.400000 +1242 498 0.400000 +1242 626 0.400000 +1242 642 0.400000 +1242 646 0.400000 +1242 648 0.400000 +1242 694 0.400000 +1242 725 0.400000 +1242 726 0.400000 +1242 728 0.400000 +1243 2 0.400000 +1243 15 0.400000 +1243 94 0.400000 +1243 178 0.400000 +1243 190 0.400000 +1243 210 0.400000 +1243 212 0.400000 +1243 236 0.400000 +1243 303 0.400000 +1243 365 0.400000 +1243 408 0.400000 +1243 464 0.400000 +1243 516 0.400000 +1243 517 0.400000 +1243 522 0.400000 +1243 589 0.400000 +1243 724 0.400000 +1243 757 0.400000 +1244 7 0.400000 +1244 20 0.400000 +1244 70 0.400000 +1244 77 0.400000 +1244 110 0.400000 +1244 158 0.400000 +1244 280 0.400000 +1244 293 0.400000 +1244 325 0.400000 +1244 414 0.400000 +1244 462 0.400000 +1244 643 0.400000 +1244 792 0.400000 +1245 17 0.400000 +1245 23 0.400000 +1245 26 0.400000 +1245 52 0.400000 +1245 67 0.400000 +1245 82 0.400000 +1245 115 0.400000 +1245 176 0.400000 +1245 294 0.400000 +1245 318 0.400000 +1245 391 0.400000 +1245 421 0.400000 +1245 451 0.400000 +1245 480 0.400000 +1245 481 0.400000 +1245 505 0.400000 +1245 542 0.400000 +1245 585 0.400000 +1245 625 0.400000 +1245 730 0.400000 +1246 55 0.400000 +1246 82 0.400000 +1246 115 0.400000 +1246 130 0.400000 +1246 182 0.400000 +1246 239 0.400000 +1246 252 0.400000 +1246 258 0.400000 +1246 385 0.400000 +1246 429 0.400000 +1246 454 0.400000 +1246 456 0.400000 +1246 526 0.400000 +1246 560 0.400000 +1246 586 0.400000 +1246 599 0.400000 +1246 668 0.400000 +1246 689 0.400000 +1246 735 0.400000 +1247 107 0.400000 +1247 115 0.400000 +1247 191 0.400000 +1247 234 0.400000 +1247 248 0.400000 +1247 284 0.400000 +1247 361 0.400000 +1247 387 0.400000 +1247 525 0.400000 +1247 529 0.400000 +1247 672 0.400000 +1247 724 0.400000 +1248 76 0.400000 +1248 178 0.400000 +1248 186 0.400000 +1248 241 0.400000 +1248 272 0.400000 +1248 382 0.400000 +1248 409 0.400000 +1248 460 0.400000 +1248 476 0.400000 +1248 640 0.400000 +1248 672 0.400000 +1248 682 0.400000 +1248 749 0.400000 +1248 760 0.400000 +1248 781 0.400000 +1248 792 0.400000 +1249 129 0.400000 +1249 172 0.400000 +1249 194 0.400000 +1249 204 0.400000 +1249 341 0.400000 +1249 434 0.400000 +1249 507 0.400000 +1249 604 0.400000 +1249 619 0.400000 +1249 653 0.400000 +1249 701 0.400000 +1249 724 0.400000 +1249 734 0.400000 +1249 757 0.400000 +1249 785 0.400000 +1250 43 0.400000 +1250 47 0.400000 +1250 72 0.400000 +1250 105 0.400000 +1250 140 0.400000 +1250 229 0.400000 +1250 296 0.400000 +1250 335 0.400000 +1250 409 0.400000 +1250 443 0.400000 +1250 445 0.400000 +1250 495 0.400000 +1250 603 0.400000 +1250 606 0.400000 +1250 725 0.400000 +1250 762 0.400000 +1250 771 0.400000 +1251 87 0.400000 +1251 100 0.400000 +1251 134 0.400000 +1251 140 0.400000 +1251 174 0.400000 +1251 204 0.400000 +1251 229 0.400000 +1251 264 0.400000 +1251 364 0.400000 +1251 580 0.400000 +1251 605 0.400000 +1251 610 0.400000 +1251 672 0.400000 +1251 678 0.400000 +1252 28 0.400000 +1252 200 0.400000 +1252 294 0.400000 +1252 297 0.400000 +1252 329 0.400000 +1252 330 0.400000 +1252 450 0.400000 +1252 489 0.400000 +1252 561 0.400000 +1252 574 0.400000 +1252 621 0.400000 +1252 671 0.400000 +1252 692 0.400000 +1252 702 0.400000 +1252 761 0.400000 +1253 23 0.400000 +1253 88 0.400000 +1253 162 0.400000 +1253 166 0.400000 +1253 282 0.400000 +1253 283 0.400000 +1253 420 0.400000 +1253 462 0.400000 +1253 479 0.400000 +1253 505 0.400000 +1253 680 0.400000 +1253 693 0.400000 +1253 779 0.400000 +1254 18 0.400000 +1254 104 0.400000 +1254 120 0.400000 +1254 138 0.400000 +1254 148 0.400000 +1254 217 0.400000 +1254 218 0.400000 +1254 237 0.400000 +1254 250 0.400000 +1254 517 0.400000 +1254 523 0.400000 +1254 541 0.400000 +1254 570 0.400000 +1254 607 0.400000 +1254 625 0.400000 +1254 627 0.400000 +1254 670 0.400000 +1254 690 0.400000 +1254 736 0.400000 +1254 741 0.400000 +1255 79 0.400000 +1255 109 0.400000 +1255 122 0.400000 +1255 134 0.400000 +1255 189 0.400000 +1255 266 0.400000 +1255 309 0.400000 +1255 343 0.400000 +1255 347 0.400000 +1255 358 0.400000 +1255 378 0.400000 +1255 494 0.400000 +1255 598 0.400000 +1255 611 0.400000 +1255 735 0.400000 +1255 741 0.400000 +1255 800 0.400000 +1256 46 0.400000 +1256 76 0.400000 +1256 203 0.400000 +1256 259 0.400000 +1256 261 0.400000 +1256 469 0.400000 +1256 513 0.400000 +1256 536 0.400000 +1256 549 0.400000 +1256 559 0.400000 +1256 589 0.400000 +1256 632 0.400000 +1256 710 0.400000 +1256 723 0.400000 +1256 763 0.400000 +1257 30 0.400000 +1257 39 0.400000 +1257 41 0.400000 +1257 87 0.400000 +1257 341 0.400000 +1257 467 0.400000 +1257 477 0.400000 +1257 503 0.400000 +1257 540 0.400000 +1257 599 0.400000 +1257 616 0.400000 +1257 619 0.400000 +1257 634 0.400000 +1257 671 0.400000 +1257 707 0.400000 +1257 717 0.400000 +1257 735 0.400000 +1257 775 0.400000 +1258 46 0.400000 +1258 47 0.400000 +1258 50 0.400000 +1258 152 0.400000 +1258 217 0.400000 +1258 249 0.400000 +1258 255 0.400000 +1258 260 0.400000 +1258 281 0.400000 +1258 450 0.400000 +1258 460 0.400000 +1258 466 0.400000 +1258 540 0.400000 +1258 542 0.400000 +1258 573 0.400000 +1258 647 0.400000 +1258 649 0.400000 +1258 651 0.400000 +1258 669 0.400000 +1258 713 0.400000 +1258 764 0.400000 +1259 24 0.400000 +1259 60 0.400000 +1259 142 0.400000 +1259 149 0.400000 +1259 325 0.400000 +1259 427 0.400000 +1259 507 0.400000 +1259 534 0.400000 +1259 563 0.400000 +1259 595 0.400000 +1259 646 0.400000 +1259 664 0.400000 +1259 667 0.400000 +1259 688 0.400000 +1259 741 0.400000 +1259 750 0.400000 +1259 782 0.400000 +1260 73 0.400000 +1260 143 0.400000 +1260 161 0.400000 +1260 200 0.400000 +1260 269 0.400000 +1260 328 0.400000 +1260 358 0.400000 +1260 367 0.400000 +1260 486 0.400000 +1260 502 0.400000 +1260 508 0.400000 +1260 529 0.400000 +1260 588 0.400000 +1260 603 0.400000 +1260 742 0.400000 +1260 782 0.400000 +1260 783 0.400000 +1261 54 0.400000 +1261 102 0.400000 +1261 171 0.400000 +1261 334 0.400000 +1261 425 0.400000 +1261 466 0.400000 +1261 520 0.400000 +1261 641 0.400000 +1261 758 0.400000 +1262 29 0.400000 +1262 43 0.400000 +1262 64 0.400000 +1262 81 0.400000 +1262 87 0.400000 +1262 161 0.400000 +1262 204 0.400000 +1262 266 0.400000 +1262 372 0.400000 +1262 448 0.400000 +1262 545 0.400000 +1262 573 0.400000 +1262 579 0.400000 +1262 629 0.400000 +1262 689 0.400000 +1262 742 0.400000 +1262 747 0.400000 +1262 761 0.400000 +1262 776 0.400000 +1262 799 0.400000 +1263 10 0.400000 +1263 110 0.400000 +1263 182 0.400000 +1263 223 0.400000 +1263 375 0.400000 +1263 447 0.400000 +1263 475 0.400000 +1263 547 0.400000 +1263 550 0.400000 +1263 582 0.400000 +1263 645 0.400000 +1263 744 0.400000 +1264 72 0.400000 +1264 77 0.400000 +1264 182 0.400000 +1264 198 0.400000 +1264 203 0.400000 +1264 354 0.400000 +1264 393 0.400000 +1264 466 0.400000 +1264 502 0.400000 +1264 505 0.400000 +1264 693 0.400000 +1264 703 0.400000 +1264 729 0.400000 +1264 770 0.400000 +1265 11 0.400000 +1265 37 0.400000 +1265 57 0.400000 +1265 120 0.400000 +1265 158 0.400000 +1265 163 0.400000 +1265 212 0.400000 +1265 240 0.400000 +1265 305 0.400000 +1265 316 0.400000 +1265 331 0.400000 +1265 350 0.400000 +1265 360 0.400000 +1265 430 0.400000 +1265 452 0.400000 +1265 454 0.400000 +1265 460 0.400000 +1265 563 0.400000 +1265 567 0.400000 +1265 600 0.400000 +1265 625 0.400000 +1265 739 0.400000 +1266 44 0.400000 +1266 56 0.400000 +1266 108 0.400000 +1266 152 0.400000 +1266 236 0.400000 +1266 298 0.400000 +1266 303 0.400000 +1266 339 0.400000 +1266 374 0.400000 +1266 405 0.400000 +1266 415 0.400000 +1266 578 0.400000 +1266 613 0.400000 +1266 640 0.400000 +1266 641 0.400000 +1266 668 0.400000 +1266 754 0.400000 +1267 107 0.400000 +1267 126 0.400000 +1267 191 0.400000 +1267 288 0.400000 +1267 319 0.400000 +1267 332 0.400000 +1267 423 0.400000 +1267 492 0.400000 +1267 510 0.400000 +1267 520 0.400000 +1267 580 0.400000 +1267 727 0.400000 +1267 734 0.400000 +1267 779 0.400000 +1268 83 0.400000 +1268 98 0.400000 +1268 198 0.400000 +1268 245 0.400000 +1268 269 0.400000 +1268 370 0.400000 +1268 399 0.400000 +1268 415 0.400000 +1268 478 0.400000 +1268 634 0.400000 +1268 652 0.400000 +1268 672 0.400000 +1268 709 0.400000 +1268 797 0.400000 +1269 23 0.400000 +1269 48 0.400000 +1269 85 0.400000 +1269 105 0.400000 +1269 115 0.400000 +1269 123 0.400000 +1269 197 0.400000 +1269 352 0.400000 +1269 367 0.400000 +1269 400 0.400000 +1269 493 0.400000 +1269 527 0.400000 +1269 552 0.400000 +1269 628 0.400000 +1269 725 0.400000 +1269 746 0.400000 +1270 65 0.400000 +1270 76 0.400000 +1270 119 0.400000 +1270 159 0.400000 +1270 172 0.400000 +1270 174 0.400000 +1270 309 0.400000 +1270 419 0.400000 +1270 468 0.400000 +1270 568 0.400000 +1270 638 0.400000 +1270 640 0.400000 +1270 707 0.400000 +1270 715 0.400000 +1270 781 0.400000 +1271 25 0.400000 +1271 137 0.400000 +1271 190 0.400000 +1271 219 0.400000 +1271 229 0.400000 +1271 254 0.400000 +1271 483 0.400000 +1271 581 0.400000 +1271 612 0.400000 +1271 622 0.400000 +1271 658 0.400000 +1271 725 0.400000 +1272 16 0.400000 +1272 29 0.400000 +1272 99 0.400000 +1272 106 0.400000 +1272 193 0.400000 +1272 294 0.400000 +1272 552 0.400000 +1272 571 0.400000 +1272 608 0.400000 +1272 645 0.400000 +1272 680 0.400000 +1272 764 0.400000 +1272 771 0.400000 +1272 793 0.400000 +1273 40 0.400000 +1273 82 0.400000 +1273 100 0.400000 +1273 193 0.400000 +1273 303 0.400000 +1273 327 0.400000 +1273 437 0.400000 +1273 445 0.400000 +1273 507 0.400000 +1273 534 0.400000 +1273 543 0.400000 +1273 546 0.400000 +1273 619 0.400000 +1273 630 0.400000 +1273 651 0.400000 +1273 654 0.400000 +1273 661 0.400000 +1273 662 0.400000 +1274 102 0.400000 +1274 105 0.400000 +1274 148 0.400000 +1274 179 0.400000 +1274 209 0.400000 +1274 269 0.400000 +1274 476 0.400000 +1274 478 0.400000 +1274 507 0.400000 +1274 514 0.400000 +1274 621 0.400000 +1274 640 0.400000 +1274 704 0.400000 +1274 746 0.400000 +1274 747 0.400000 +1274 771 0.400000 +1274 786 0.400000 +1275 43 0.400000 +1275 158 0.400000 +1275 185 0.400000 +1275 274 0.400000 +1275 357 0.400000 +1275 375 0.400000 +1275 407 0.400000 +1275 428 0.400000 +1275 432 0.400000 +1275 508 0.400000 +1275 509 0.400000 +1275 527 0.400000 +1275 567 0.400000 +1275 583 0.400000 +1275 603 0.400000 +1275 676 0.400000 +1275 718 0.400000 +1275 719 0.400000 +1275 777 0.400000 +1275 797 0.400000 +1276 60 0.400000 +1276 174 0.400000 +1276 224 0.400000 +1276 235 0.400000 +1276 256 0.400000 +1276 303 0.400000 +1276 320 0.400000 +1276 337 0.400000 +1276 360 0.400000 +1276 526 0.400000 +1276 551 0.400000 +1276 617 0.400000 +1276 685 0.400000 +1276 775 0.400000 +1276 800 0.400000 +1277 7 0.400000 +1277 25 0.400000 +1277 115 0.400000 +1277 154 0.400000 +1277 178 0.400000 +1277 242 0.400000 +1277 253 0.400000 +1277 257 0.400000 +1277 295 0.400000 +1277 360 0.400000 +1277 386 0.400000 +1277 546 0.400000 +1277 619 0.400000 +1277 630 0.400000 +1277 636 0.400000 +1277 718 0.400000 +1278 102 0.400000 +1278 155 0.400000 +1278 207 0.400000 +1278 307 0.400000 +1278 373 0.400000 +1278 386 0.400000 +1278 507 0.400000 +1278 554 0.400000 +1278 759 0.400000 +1279 64 0.400000 +1279 157 0.400000 +1279 231 0.400000 +1279 248 0.400000 +1279 358 0.400000 +1279 385 0.400000 +1279 407 0.400000 +1279 421 0.400000 +1279 490 0.400000 +1279 507 0.400000 +1279 526 0.400000 +1279 626 0.400000 +1279 786 0.400000 +1280 7 0.400000 +1280 14 0.400000 +1280 66 0.400000 +1280 95 0.400000 +1280 158 0.400000 +1280 181 0.400000 +1280 204 0.400000 +1280 223 0.400000 +1280 268 0.400000 +1280 298 0.400000 +1280 389 0.400000 +1280 435 0.400000 +1280 462 0.400000 +1280 527 0.400000 +1280 550 0.400000 +1280 581 0.400000 +1280 628 0.400000 +1280 647 0.400000 +1280 665 0.400000 +1280 670 0.400000 +1280 736 0.400000 +1280 746 0.400000 +1281 8 0.400000 +1281 35 0.400000 +1281 129 0.400000 +1281 164 0.400000 +1281 225 0.400000 +1281 229 0.400000 +1281 231 0.400000 +1281 240 0.400000 +1281 292 0.400000 +1281 294 0.400000 +1281 311 0.400000 +1281 349 0.400000 +1281 413 0.400000 +1281 467 0.400000 +1281 482 0.400000 +1281 520 0.400000 +1281 590 0.400000 +1281 599 0.400000 +1281 632 0.400000 +1281 688 0.400000 +1281 712 0.400000 +1281 722 0.400000 +1281 732 0.400000 +1281 745 0.400000 +1282 82 0.400000 +1282 183 0.400000 +1282 202 0.400000 +1282 213 0.400000 +1282 280 0.400000 +1282 358 0.400000 +1282 363 0.400000 +1282 442 0.400000 +1282 464 0.400000 +1282 494 0.400000 +1282 596 0.400000 +1282 635 0.400000 +1282 673 0.400000 +1282 675 0.400000 +1282 676 0.400000 +1282 680 0.400000 +1282 792 0.400000 +1283 49 0.400000 +1283 99 0.400000 +1283 190 0.400000 +1283 192 0.400000 +1283 300 0.400000 +1283 314 0.400000 +1283 414 0.400000 +1283 417 0.400000 +1283 437 0.400000 +1283 440 0.400000 +1283 476 0.400000 +1283 658 0.400000 +1283 686 0.400000 +1283 696 0.400000 +1283 714 0.400000 +1283 753 0.400000 +1283 782 0.400000 +1284 41 0.400000 +1284 140 0.400000 +1284 240 0.400000 +1284 275 0.400000 +1284 285 0.400000 +1284 329 0.400000 +1284 357 0.400000 +1284 420 0.400000 +1284 498 0.400000 +1284 504 0.400000 +1284 539 0.400000 +1284 593 0.400000 +1284 656 0.400000 +1284 673 0.400000 +1284 677 0.400000 +1284 749 0.400000 +1284 752 0.400000 +1284 757 0.400000 +1285 35 0.400000 +1285 75 0.400000 +1285 154 0.400000 +1285 265 0.400000 +1285 312 0.400000 +1285 323 0.400000 +1285 364 0.400000 +1285 544 0.400000 +1285 550 0.400000 +1285 733 0.400000 +1285 760 0.400000 +1285 765 0.400000 +1286 53 0.400000 +1286 96 0.400000 +1286 131 0.400000 +1286 151 0.400000 +1286 174 0.400000 +1286 224 0.400000 +1286 275 0.400000 +1286 291 0.400000 +1286 346 0.400000 +1286 360 0.400000 +1286 392 0.400000 +1286 420 0.400000 +1286 496 0.400000 +1286 507 0.400000 +1286 531 0.400000 +1286 588 0.400000 +1287 21 0.400000 +1287 29 0.400000 +1287 97 0.400000 +1287 129 0.400000 +1287 133 0.400000 +1287 139 0.400000 +1287 141 0.400000 +1287 143 0.400000 +1287 181 0.400000 +1287 214 0.400000 +1287 385 0.400000 +1287 392 0.400000 +1287 399 0.400000 +1287 426 0.400000 +1287 432 0.400000 +1287 518 0.400000 +1287 534 0.400000 +1287 606 0.400000 +1287 798 0.400000 +1288 42 0.400000 +1288 53 0.400000 +1288 123 0.400000 +1288 176 0.400000 +1288 200 0.400000 +1288 273 0.400000 +1288 317 0.400000 +1288 333 0.400000 +1288 347 0.400000 +1288 369 0.400000 +1288 497 0.400000 +1288 537 0.400000 +1288 566 0.400000 +1289 104 0.400000 +1289 141 0.400000 +1289 148 0.400000 +1289 355 0.400000 +1289 408 0.400000 +1289 424 0.400000 +1289 428 0.400000 +1289 466 0.400000 +1289 480 0.400000 +1289 514 0.400000 +1289 519 0.400000 +1289 523 0.400000 +1289 525 0.400000 +1289 555 0.400000 +1289 592 0.400000 +1289 609 0.400000 +1289 716 0.400000 +1289 720 0.400000 +1289 757 0.400000 +1289 768 0.400000 +1290 11 0.400000 +1290 12 0.400000 +1290 23 0.400000 +1290 40 0.400000 +1290 140 0.400000 +1290 143 0.400000 +1290 159 0.400000 +1290 241 0.400000 +1290 254 0.400000 +1290 256 0.400000 +1290 321 0.400000 +1290 382 0.400000 +1290 443 0.400000 +1290 466 0.400000 +1290 473 0.400000 +1290 475 0.400000 +1290 492 0.400000 +1290 538 0.400000 +1290 582 0.400000 +1290 592 0.400000 +1290 598 0.400000 +1290 620 0.400000 +1290 632 0.400000 +1290 636 0.400000 +1290 684 0.400000 +1290 736 0.400000 +1290 748 0.400000 +1290 762 0.400000 +1290 785 0.400000 +1290 792 0.400000 +1291 144 0.400000 +1291 161 0.400000 +1291 227 0.400000 +1291 336 0.400000 +1291 358 0.400000 +1291 408 0.400000 +1291 445 0.400000 +1291 476 0.400000 +1291 484 0.400000 +1291 502 0.400000 +1291 598 0.400000 +1291 654 0.400000 +1291 720 0.400000 +1291 730 0.400000 +1291 737 0.400000 +1291 786 0.400000 +1292 69 0.400000 +1292 116 0.400000 +1292 186 0.400000 +1292 187 0.400000 +1292 192 0.400000 +1292 248 0.400000 +1292 267 0.400000 +1292 272 0.400000 +1292 423 0.400000 +1292 463 0.400000 +1292 476 0.400000 +1292 497 0.400000 +1292 514 0.400000 +1292 556 0.400000 +1292 574 0.400000 +1292 605 0.400000 +1292 614 0.400000 +1292 638 0.400000 +1292 657 0.400000 +1292 762 0.400000 +1293 36 0.400000 +1293 90 0.400000 +1293 133 0.400000 +1293 134 0.400000 +1293 223 0.400000 +1293 270 0.400000 +1293 334 0.400000 +1293 362 0.400000 +1293 411 0.400000 +1293 435 0.400000 +1293 603 0.400000 +1293 789 0.400000 +1293 792 0.400000 +1293 794 0.400000 +1294 143 0.400000 +1294 159 0.400000 +1294 316 0.400000 +1294 366 0.400000 +1294 384 0.400000 +1294 428 0.400000 +1294 525 0.400000 +1294 541 0.400000 +1295 64 0.400000 +1295 84 0.400000 +1295 117 0.400000 +1295 129 0.400000 +1295 150 0.400000 +1295 171 0.400000 +1295 190 0.400000 +1295 204 0.400000 +1295 233 0.400000 +1295 258 0.400000 +1295 301 0.400000 +1295 348 0.400000 +1295 401 0.400000 +1295 481 0.400000 +1295 529 0.400000 +1295 543 0.400000 +1295 571 0.400000 +1295 627 0.400000 +1295 645 0.400000 +1295 682 0.400000 +1295 771 0.400000 +1296 171 0.400000 +1296 186 0.400000 +1296 193 0.400000 +1296 209 0.400000 +1296 310 0.400000 +1296 398 0.400000 +1296 456 0.400000 +1296 490 0.400000 +1296 586 0.400000 +1296 661 0.400000 +1296 684 0.400000 +1296 770 0.400000 +1297 20 0.400000 +1297 95 0.400000 +1297 124 0.400000 +1297 158 0.400000 +1297 223 0.400000 +1297 255 0.400000 +1297 277 0.400000 +1297 290 0.400000 +1297 321 0.400000 +1297 353 0.400000 +1297 354 0.400000 +1297 418 0.400000 +1297 445 0.400000 +1297 627 0.400000 +1297 701 0.400000 +1297 725 0.400000 +1297 746 0.400000 +1297 770 0.400000 +1298 12 0.400000 +1298 57 0.400000 +1298 98 0.400000 +1298 114 0.400000 +1298 188 0.400000 +1298 224 0.400000 +1298 263 0.400000 +1298 278 0.400000 +1298 456 0.400000 +1298 494 0.400000 +1298 520 0.400000 +1298 545 0.400000 +1298 624 0.400000 +1298 694 0.400000 +1298 800 0.400000 +1299 5 0.400000 +1299 142 0.400000 +1299 200 0.400000 +1299 264 0.400000 +1299 277 0.400000 +1299 296 0.400000 +1299 365 0.400000 +1299 395 0.400000 +1299 488 0.400000 +1299 580 0.400000 +1299 587 0.400000 +1299 660 0.400000 +1299 716 0.400000 +1299 719 0.400000 +1300 31 0.400000 +1300 81 0.400000 +1300 90 0.400000 +1300 130 0.400000 +1300 132 0.400000 +1300 166 0.400000 +1300 177 0.400000 +1300 320 0.400000 +1300 368 0.400000 +1300 378 0.400000 +1300 503 0.400000 +1300 569 0.400000 +1300 601 0.400000 +1300 678 0.400000 +1300 715 0.400000 +1300 720 0.400000 +1300 769 0.400000 +1300 771 0.400000 +1300 781 0.400000 +1301 15 0.400000 +1301 20 0.400000 +1301 22 0.400000 +1301 88 0.400000 +1301 91 0.400000 +1301 141 0.400000 +1301 169 0.400000 +1301 192 0.400000 +1301 205 0.400000 +1301 287 0.400000 +1301 301 0.400000 +1301 306 0.400000 +1301 317 0.400000 +1301 383 0.400000 +1301 407 0.400000 +1301 452 0.400000 +1301 461 0.400000 +1301 462 0.400000 +1301 498 0.400000 +1301 562 0.400000 +1301 595 0.400000 +1301 624 0.400000 +1301 652 0.400000 +1301 661 0.400000 +1302 53 0.400000 +1302 121 0.400000 +1302 128 0.400000 +1302 263 0.400000 +1302 288 0.400000 +1302 328 0.400000 +1302 336 0.400000 +1302 421 0.400000 +1302 580 0.400000 +1302 615 0.400000 +1302 690 0.400000 +1302 729 0.400000 +1303 4 0.400000 +1303 102 0.400000 +1303 104 0.400000 +1303 122 0.400000 +1303 131 0.400000 +1303 190 0.400000 +1303 232 0.400000 +1303 254 0.400000 +1303 368 0.400000 +1303 423 0.400000 +1303 445 0.400000 +1303 477 0.400000 +1303 559 0.400000 +1303 575 0.400000 +1303 581 0.400000 +1303 640 0.400000 +1303 736 0.400000 +1304 20 0.400000 +1304 75 0.400000 +1304 115 0.400000 +1304 133 0.400000 +1304 219 0.400000 +1304 272 0.400000 +1304 281 0.400000 +1304 299 0.400000 +1304 305 0.400000 +1304 339 0.400000 +1304 346 0.400000 +1304 373 0.400000 +1304 464 0.400000 +1304 516 0.400000 +1304 732 0.400000 +1304 769 0.400000 +1304 797 0.400000 +1305 30 0.400000 +1305 104 0.400000 +1305 148 0.400000 +1305 176 0.400000 +1305 223 0.400000 +1305 243 0.400000 +1305 244 0.400000 +1305 251 0.400000 +1305 255 0.400000 +1305 340 0.400000 +1305 343 0.400000 +1305 381 0.400000 +1305 464 0.400000 +1305 534 0.400000 +1305 580 0.400000 +1305 641 0.400000 +1305 671 0.400000 +1306 18 0.400000 +1306 323 0.400000 +1306 332 0.400000 +1306 378 0.400000 +1306 386 0.400000 +1306 511 0.400000 +1306 565 0.400000 +1306 592 0.400000 +1306 621 0.400000 +1306 639 0.400000 +1306 726 0.400000 +1306 764 0.400000 +1306 788 0.400000 +1306 794 0.400000 +1307 94 0.400000 +1307 138 0.400000 +1307 140 0.400000 +1307 205 0.400000 +1307 214 0.400000 +1307 290 0.400000 +1307 302 0.400000 +1307 305 0.400000 +1307 314 0.400000 +1307 331 0.400000 +1307 340 0.400000 +1307 410 0.400000 +1307 632 0.400000 +1308 39 0.400000 +1308 88 0.400000 +1308 141 0.400000 +1308 192 0.400000 +1308 203 0.400000 +1308 241 0.400000 +1308 271 0.400000 +1308 327 0.400000 +1308 389 0.400000 +1308 393 0.400000 +1308 561 0.400000 +1308 565 0.400000 +1308 574 0.400000 +1308 590 0.400000 +1308 631 0.400000 +1308 672 0.400000 +1308 678 0.400000 +1308 729 0.400000 +1308 752 0.400000 +1309 8 0.400000 +1309 18 0.400000 +1309 35 0.400000 +1309 36 0.400000 +1309 38 0.400000 +1309 110 0.400000 +1309 139 0.400000 +1309 214 0.400000 +1309 221 0.400000 +1309 298 0.400000 +1309 322 0.400000 +1309 388 0.400000 +1309 416 0.400000 +1309 432 0.400000 +1309 448 0.400000 +1309 455 0.400000 +1309 515 0.400000 +1309 518 0.400000 +1309 564 0.400000 +1309 689 0.400000 +1310 1 0.400000 +1310 40 0.400000 +1310 220 0.400000 +1310 273 0.400000 +1310 415 0.400000 +1310 434 0.400000 +1310 461 0.400000 +1310 473 0.400000 +1310 496 0.400000 +1310 532 0.400000 +1310 586 0.400000 +1310 637 0.400000 +1310 655 0.400000 +1310 663 0.400000 +1310 686 0.400000 +1311 28 0.400000 +1311 31 0.400000 +1311 51 0.400000 +1311 146 0.400000 +1311 150 0.400000 +1311 214 0.400000 +1311 234 0.400000 +1311 248 0.400000 +1311 386 0.400000 +1311 473 0.400000 +1311 504 0.400000 +1311 611 0.400000 +1311 627 0.400000 +1311 655 0.400000 +1311 659 0.400000 +1311 671 0.400000 +1311 682 0.400000 +1311 700 0.400000 +1311 734 0.400000 +1312 49 0.400000 +1312 100 0.400000 +1312 224 0.400000 +1312 290 0.400000 +1312 403 0.400000 +1312 486 0.400000 +1312 576 0.400000 +1312 590 0.400000 +1312 644 0.400000 +1312 759 0.400000 +1313 4 0.400000 +1313 37 0.400000 +1313 53 0.400000 +1313 63 0.400000 +1313 85 0.400000 +1313 127 0.400000 +1313 218 0.400000 +1313 236 0.400000 +1313 316 0.400000 +1313 336 0.400000 +1313 377 0.400000 +1313 427 0.400000 +1313 472 0.400000 +1313 503 0.400000 +1313 508 0.400000 +1313 679 0.400000 +1313 711 0.400000 +1313 713 0.400000 +1313 733 0.400000 +1313 766 0.400000 +1314 3 0.400000 +1314 43 0.400000 +1314 52 0.400000 +1314 268 0.400000 +1314 342 0.400000 +1314 348 0.400000 +1314 359 0.400000 +1314 363 0.400000 +1314 371 0.400000 +1314 401 0.400000 +1314 423 0.400000 +1314 536 0.400000 +1314 675 0.400000 +1314 679 0.400000 +1314 710 0.400000 +1314 717 0.400000 +1314 721 0.400000 +1315 9 0.400000 +1315 47 0.400000 +1315 100 0.400000 +1315 186 0.400000 +1315 208 0.400000 +1315 261 0.400000 +1315 297 0.400000 +1315 309 0.400000 +1315 321 0.400000 +1315 418 0.400000 +1315 445 0.400000 +1315 546 0.400000 +1315 565 0.400000 +1315 568 0.400000 +1315 618 0.400000 +1315 626 0.400000 +1315 628 0.400000 +1316 12 0.400000 +1316 55 0.400000 +1316 89 0.400000 +1316 121 0.400000 +1316 144 0.400000 +1316 215 0.400000 +1316 225 0.400000 +1316 274 0.400000 +1316 326 0.400000 +1316 343 0.400000 +1316 458 0.400000 +1316 484 0.400000 +1316 535 0.400000 +1316 564 0.400000 +1316 587 0.400000 +1316 607 0.400000 +1316 668 0.400000 +1317 101 0.400000 +1317 124 0.400000 +1317 204 0.400000 +1317 302 0.400000 +1317 306 0.400000 +1317 328 0.400000 +1317 336 0.400000 +1317 338 0.400000 +1317 462 0.400000 +1317 527 0.400000 +1317 772 0.400000 +1318 17 0.400000 +1318 129 0.400000 +1318 134 0.400000 +1318 183 0.400000 +1318 241 0.400000 +1318 288 0.400000 +1318 339 0.400000 +1318 354 0.400000 +1318 371 0.400000 +1318 395 0.400000 +1318 435 0.400000 +1318 452 0.400000 +1318 493 0.400000 +1318 561 0.400000 +1318 608 0.400000 +1318 671 0.400000 +1318 708 0.400000 +1318 717 0.400000 +1318 754 0.400000 +1319 30 0.400000 +1319 51 0.400000 +1319 59 0.400000 +1319 135 0.400000 +1319 147 0.400000 +1319 149 0.400000 +1319 174 0.400000 +1319 192 0.400000 +1319 225 0.400000 +1319 278 0.400000 +1319 284 0.400000 +1319 299 0.400000 +1319 610 0.400000 +1319 640 0.400000 +1319 721 0.400000 +1319 764 0.400000 +1319 794 0.400000 +1320 41 0.400000 +1320 80 0.400000 +1320 114 0.400000 +1320 155 0.400000 +1320 222 0.400000 +1320 395 0.400000 +1320 410 0.400000 +1320 412 0.400000 +1320 423 0.400000 +1320 466 0.400000 +1320 581 0.400000 +1320 598 0.400000 +1320 651 0.400000 +1321 207 0.400000 +1321 209 0.400000 +1321 212 0.400000 +1321 219 0.400000 +1321 264 0.400000 +1321 308 0.400000 +1321 324 0.400000 +1321 345 0.400000 +1321 393 0.400000 +1321 428 0.400000 +1321 431 0.400000 +1321 486 0.400000 +1321 575 0.400000 +1321 582 0.400000 +1321 600 0.400000 +1321 608 0.400000 +1321 663 0.400000 +1321 720 0.400000 +1321 775 0.400000 +1322 31 0.400000 +1322 57 0.400000 +1322 173 0.400000 +1322 230 0.400000 +1322 252 0.400000 +1322 340 0.400000 +1322 342 0.400000 +1322 364 0.400000 +1322 436 0.400000 +1322 514 0.400000 +1322 729 0.400000 +1322 734 0.400000 +1322 741 0.400000 +1322 784 0.400000 +1323 83 0.400000 +1323 183 0.400000 +1323 272 0.400000 +1323 306 0.400000 +1323 323 0.400000 +1323 357 0.400000 +1323 361 0.400000 +1323 532 0.400000 +1323 666 0.400000 +1323 776 0.400000 +1323 788 0.400000 +1324 99 0.400000 +1324 129 0.400000 +1324 151 0.400000 +1324 285 0.400000 +1324 377 0.400000 +1324 416 0.400000 +1324 460 0.400000 +1324 461 0.400000 +1324 517 0.400000 +1324 591 0.400000 +1325 25 0.400000 +1325 102 0.400000 +1325 146 0.400000 +1325 162 0.400000 +1325 174 0.400000 +1325 211 0.400000 +1325 300 0.400000 +1325 322 0.400000 +1325 357 0.400000 +1325 382 0.400000 +1325 413 0.400000 +1325 451 0.400000 +1325 514 0.400000 +1325 525 0.400000 +1325 549 0.400000 +1325 596 0.400000 +1325 696 0.400000 +1325 710 0.400000 +1326 8 0.400000 +1326 13 0.400000 +1326 251 0.400000 +1326 279 0.400000 +1326 283 0.400000 +1326 319 0.400000 +1326 340 0.400000 +1326 353 0.400000 +1326 361 0.400000 +1326 366 0.400000 +1326 399 0.400000 +1326 416 0.400000 +1326 457 0.400000 +1326 488 0.400000 +1326 494 0.400000 +1326 499 0.400000 +1326 547 0.400000 +1326 560 0.400000 +1326 618 0.400000 +1326 671 0.400000 +1326 702 0.400000 +1327 24 0.400000 +1327 30 0.400000 +1327 176 0.400000 +1327 259 0.400000 +1327 323 0.400000 +1327 389 0.400000 +1327 582 0.400000 +1327 616 0.400000 +1327 708 0.400000 +1327 764 0.400000 +1327 775 0.400000 +1327 800 0.400000 +1328 69 0.400000 +1328 100 0.400000 +1328 109 0.400000 +1328 343 0.400000 +1328 352 0.400000 +1328 390 0.400000 +1328 412 0.400000 +1328 570 0.400000 +1328 666 0.400000 +1328 713 0.400000 +1328 732 0.400000 +1329 16 0.400000 +1329 56 0.400000 +1329 63 0.400000 +1329 116 0.400000 +1329 124 0.400000 +1329 134 0.400000 +1329 180 0.400000 +1329 209 0.400000 +1329 225 0.400000 +1329 233 0.400000 +1329 239 0.400000 +1329 310 0.400000 +1329 350 0.400000 +1329 377 0.400000 +1329 415 0.400000 +1329 504 0.400000 +1329 594 0.400000 +1329 660 0.400000 +1329 661 0.400000 +1329 669 0.400000 +1329 697 0.400000 +1329 708 0.400000 +1329 711 0.400000 +1329 724 0.400000 +1329 725 0.400000 +1330 55 0.400000 +1330 160 0.400000 +1330 185 0.400000 +1330 200 0.400000 +1330 202 0.400000 +1330 284 0.400000 +1330 329 0.400000 +1330 372 0.400000 +1330 414 0.400000 +1330 527 0.400000 +1330 549 0.400000 +1330 638 0.400000 +1330 678 0.400000 +1330 712 0.400000 +1330 717 0.400000 +1330 739 0.400000 +1330 751 0.400000 +1330 761 0.400000 +1330 763 0.400000 +1331 2 0.400000 +1331 15 0.400000 +1331 117 0.400000 +1331 179 0.400000 +1331 280 0.400000 +1331 496 0.400000 +1331 537 0.400000 +1331 590 0.400000 +1331 614 0.400000 +1331 620 0.400000 +1331 634 0.400000 +1331 680 0.400000 +1331 689 0.400000 +1331 714 0.400000 +1331 723 0.400000 +1332 38 0.400000 +1332 55 0.400000 +1332 133 0.400000 +1332 146 0.400000 +1332 182 0.400000 +1332 259 0.400000 +1332 290 0.400000 +1332 322 0.400000 +1332 328 0.400000 +1332 347 0.400000 +1332 395 0.400000 +1332 426 0.400000 +1332 491 0.400000 +1332 504 0.400000 +1332 517 0.400000 +1332 607 0.400000 +1332 623 0.400000 +1332 787 0.400000 +1332 789 0.400000 +1332 800 0.400000 +1333 50 0.400000 +1333 72 0.400000 +1333 74 0.400000 +1333 95 0.400000 +1333 140 0.400000 +1333 143 0.400000 +1333 184 0.400000 +1333 190 0.400000 +1333 192 0.400000 +1333 207 0.400000 +1333 241 0.400000 +1333 262 0.400000 +1333 413 0.400000 +1333 480 0.400000 +1333 598 0.400000 +1333 626 0.400000 +1333 646 0.400000 +1333 649 0.400000 +1333 686 0.400000 +1333 731 0.400000 +1333 735 0.400000 +1333 798 0.400000 +1334 57 0.400000 +1334 66 0.400000 +1334 78 0.400000 +1334 118 0.400000 +1334 126 0.400000 +1334 345 0.400000 +1334 445 0.400000 +1334 742 0.400000 +1334 777 0.400000 +1335 152 0.400000 +1335 228 0.400000 +1335 259 0.400000 +1335 363 0.400000 +1335 450 0.400000 +1335 470 0.400000 +1335 525 0.400000 +1335 585 0.400000 +1335 623 0.400000 +1335 715 0.400000 +1335 720 0.400000 +1335 766 0.400000 +1336 4 0.400000 +1336 10 0.400000 +1336 19 0.400000 +1336 38 0.400000 +1336 77 0.400000 +1336 86 0.400000 +1336 104 0.400000 +1336 152 0.400000 +1336 234 0.400000 +1336 285 0.400000 +1336 395 0.400000 +1336 497 0.400000 +1336 538 0.400000 +1336 637 0.400000 +1336 680 0.400000 +1336 703 0.400000 +1336 718 0.400000 +1336 757 0.400000 +1337 51 0.400000 +1337 75 0.400000 +1337 129 0.400000 +1337 187 0.400000 +1337 215 0.400000 +1337 254 0.400000 +1337 292 0.400000 +1337 376 0.400000 +1337 379 0.400000 +1337 389 0.400000 +1337 452 0.400000 +1337 482 0.400000 +1337 501 0.400000 +1337 544 0.400000 +1337 553 0.400000 +1337 650 0.400000 +1337 656 0.400000 +1337 663 0.400000 +1337 675 0.400000 +1337 712 0.400000 +1337 772 0.400000 +1337 791 0.400000 +1338 5 0.400000 +1338 70 0.400000 +1338 79 0.400000 +1338 132 0.400000 +1338 147 0.400000 +1338 246 0.400000 +1338 272 0.400000 +1338 326 0.400000 +1338 401 0.400000 +1338 475 0.400000 +1338 479 0.400000 +1338 681 0.400000 +1338 763 0.400000 +1339 15 0.400000 +1339 39 0.400000 +1339 104 0.400000 +1339 151 0.400000 +1339 179 0.400000 +1339 253 0.400000 +1339 303 0.400000 +1339 341 0.400000 +1339 449 0.400000 +1339 487 0.400000 +1339 532 0.400000 +1339 596 0.400000 +1339 639 0.400000 +1339 774 0.400000 +1340 46 0.400000 +1340 72 0.400000 +1340 97 0.400000 +1340 123 0.400000 +1340 162 0.400000 +1340 258 0.400000 +1340 286 0.400000 +1340 291 0.400000 +1340 301 0.400000 +1340 334 0.400000 +1340 369 0.400000 +1340 432 0.400000 +1340 452 0.400000 +1340 613 0.400000 +1340 648 0.400000 +1340 732 0.400000 +1341 12 0.400000 +1341 26 0.400000 +1341 64 0.400000 +1341 140 0.400000 +1341 174 0.400000 +1341 175 0.400000 +1341 217 0.400000 +1341 258 0.400000 +1341 260 0.400000 +1341 285 0.400000 +1341 333 0.400000 +1341 359 0.400000 +1341 389 0.400000 +1341 558 0.400000 +1341 658 0.400000 +1341 681 0.400000 +1341 742 0.400000 +1342 37 0.400000 +1342 140 0.400000 +1342 187 0.400000 +1342 239 0.400000 +1342 264 0.400000 +1342 294 0.400000 +1342 309 0.400000 +1342 367 0.400000 +1342 455 0.400000 +1342 508 0.400000 +1342 532 0.400000 +1342 647 0.400000 +1342 674 0.400000 +1342 729 0.400000 +1343 81 0.400000 +1343 87 0.400000 +1343 100 0.400000 +1343 154 0.400000 +1343 248 0.400000 +1343 253 0.400000 +1343 264 0.400000 +1343 281 0.400000 +1343 343 0.400000 +1343 358 0.400000 +1343 383 0.400000 +1343 426 0.400000 +1343 658 0.400000 +1343 682 0.400000 +1343 742 0.400000 +1343 762 0.400000 +1343 789 0.400000 +1343 800 0.400000 +1344 113 0.400000 +1344 161 0.400000 +1344 239 0.400000 +1344 299 0.400000 +1344 312 0.400000 +1344 318 0.400000 +1344 422 0.400000 +1344 515 0.400000 +1344 637 0.400000 +1344 735 0.400000 +1344 797 0.400000 +1345 16 0.400000 +1345 98 0.400000 +1345 116 0.400000 +1345 155 0.400000 +1345 179 0.400000 +1345 238 0.400000 +1345 240 0.400000 +1345 255 0.400000 +1345 302 0.400000 +1345 313 0.400000 +1345 367 0.400000 +1345 427 0.400000 +1345 473 0.400000 +1345 518 0.400000 +1345 529 0.400000 +1345 548 0.400000 +1345 553 0.400000 +1345 739 0.400000 +1345 757 0.400000 +1346 89 0.400000 +1346 94 0.400000 +1346 96 0.400000 +1346 204 0.400000 +1346 234 0.400000 +1346 258 0.400000 +1346 361 0.400000 +1346 403 0.400000 +1346 416 0.400000 +1346 423 0.400000 +1346 574 0.400000 +1346 673 0.400000 +1346 759 0.400000 +1346 773 0.400000 +1346 775 0.400000 +1346 780 0.400000 +1347 30 0.400000 +1347 50 0.400000 +1347 129 0.400000 +1347 142 0.400000 +1347 153 0.400000 +1347 185 0.400000 +1347 287 0.400000 +1347 306 0.400000 +1347 310 0.400000 +1347 336 0.400000 +1347 464 0.400000 +1347 541 0.400000 +1347 558 0.400000 +1347 567 0.400000 +1347 572 0.400000 +1347 598 0.400000 +1347 600 0.400000 +1347 608 0.400000 +1347 717 0.400000 +1347 795 0.400000 +1348 3 0.400000 +1348 279 0.400000 +1348 282 0.400000 +1348 283 0.400000 +1348 392 0.400000 +1348 493 0.400000 +1348 735 0.400000 +1348 739 0.400000 +1348 765 0.400000 +1349 78 0.400000 +1349 83 0.400000 +1349 101 0.400000 +1349 235 0.400000 +1349 239 0.400000 +1349 246 0.400000 +1349 250 0.400000 +1349 387 0.400000 +1349 411 0.400000 +1349 419 0.400000 +1349 442 0.400000 +1349 466 0.400000 +1349 568 0.400000 +1349 604 0.400000 +1349 614 0.400000 +1349 617 0.400000 +1349 635 0.400000 +1349 681 0.400000 +1349 702 0.400000 +1349 716 0.400000 +1349 785 0.400000 +1350 7 0.400000 +1350 83 0.400000 +1350 119 0.400000 +1350 145 0.400000 +1350 211 0.400000 +1350 279 0.400000 +1350 281 0.400000 +1350 401 0.400000 +1350 406 0.400000 +1350 559 0.400000 +1350 642 0.400000 +1350 670 0.400000 +1351 92 0.400000 +1351 136 0.400000 +1351 244 0.400000 +1351 318 0.400000 +1351 353 0.400000 +1351 367 0.400000 +1351 396 0.400000 +1351 425 0.400000 +1351 473 0.400000 +1351 505 0.400000 +1351 584 0.400000 +1351 603 0.400000 +1351 646 0.400000 +1351 653 0.400000 +1351 691 0.400000 +1351 697 0.400000 +1352 46 0.400000 +1352 60 0.400000 +1352 114 0.400000 +1352 138 0.400000 +1352 400 0.400000 +1352 417 0.400000 +1352 423 0.400000 +1352 463 0.400000 +1352 475 0.400000 +1352 479 0.400000 +1352 735 0.400000 +1353 100 0.400000 +1353 150 0.400000 +1353 153 0.400000 +1353 176 0.400000 +1353 191 0.400000 +1353 201 0.400000 +1353 246 0.400000 +1353 266 0.400000 +1353 295 0.400000 +1353 320 0.400000 +1353 328 0.400000 +1353 340 0.400000 +1353 469 0.400000 +1353 557 0.400000 +1353 582 0.400000 +1353 620 0.400000 +1353 655 0.400000 +1353 663 0.400000 +1353 740 0.400000 +1353 773 0.400000 +1353 774 0.400000 +1353 792 0.400000 +1354 122 0.400000 +1354 126 0.400000 +1354 240 0.400000 +1354 354 0.400000 +1354 487 0.400000 +1354 497 0.400000 +1354 546 0.400000 +1354 602 0.400000 +1354 629 0.400000 +1354 649 0.400000 +1354 681 0.400000 +1355 47 0.400000 +1355 51 0.400000 +1355 90 0.400000 +1355 101 0.400000 +1355 143 0.400000 +1355 155 0.400000 +1355 185 0.400000 +1355 188 0.400000 +1355 247 0.400000 +1355 257 0.400000 +1355 448 0.400000 +1355 449 0.400000 +1355 492 0.400000 +1355 644 0.400000 +1355 721 0.400000 +1356 42 0.400000 +1356 73 0.400000 +1356 119 0.400000 +1356 143 0.400000 +1356 145 0.400000 +1356 160 0.400000 +1356 191 0.400000 +1356 223 0.400000 +1356 272 0.400000 +1356 397 0.400000 +1356 451 0.400000 +1356 456 0.400000 +1356 472 0.400000 +1356 528 0.400000 +1356 558 0.400000 +1356 591 0.400000 +1356 771 0.400000 +1357 16 0.400000 +1357 76 0.400000 +1357 92 0.400000 +1357 143 0.400000 +1357 208 0.400000 +1357 219 0.400000 +1357 220 0.400000 +1357 247 0.400000 +1357 339 0.400000 +1357 385 0.400000 +1357 425 0.400000 +1357 429 0.400000 +1357 481 0.400000 +1357 487 0.400000 +1357 493 0.400000 +1357 535 0.400000 +1357 636 0.400000 +1357 640 0.400000 +1357 657 0.400000 +1357 686 0.400000 +1357 759 0.400000 +1357 782 0.400000 +1358 6 0.400000 +1358 48 0.400000 +1358 53 0.400000 +1358 235 0.400000 +1358 247 0.400000 +1358 295 0.400000 +1358 311 0.400000 +1358 384 0.400000 +1358 391 0.400000 +1358 392 0.400000 +1358 422 0.400000 +1358 429 0.400000 +1358 430 0.400000 +1358 496 0.400000 +1358 509 0.400000 +1358 511 0.400000 +1358 537 0.400000 +1358 581 0.400000 +1358 598 0.400000 +1358 637 0.400000 +1358 640 0.400000 +1358 643 0.400000 +1358 661 0.400000 +1358 723 0.400000 +1358 726 0.400000 +1358 764 0.400000 +1359 97 0.400000 +1359 215 0.400000 +1359 334 0.400000 +1359 421 0.400000 +1359 435 0.400000 +1359 455 0.400000 +1359 715 0.400000 +1359 717 0.400000 +1359 723 0.400000 +1359 728 0.400000 +1359 750 0.400000 +1360 24 0.400000 +1360 35 0.400000 +1360 39 0.400000 +1360 88 0.400000 +1360 104 0.400000 +1360 106 0.400000 +1360 117 0.400000 +1360 148 0.400000 +1360 168 0.400000 +1360 176 0.400000 +1360 248 0.400000 +1360 452 0.400000 +1360 454 0.400000 +1360 568 0.400000 +1360 608 0.400000 +1360 614 0.400000 +1360 688 0.400000 +1360 690 0.400000 +1360 691 0.400000 +1360 741 0.400000 +1361 26 0.400000 +1361 233 0.400000 +1361 271 0.400000 +1361 313 0.400000 +1361 389 0.400000 +1361 439 0.400000 +1361 507 0.400000 +1361 524 0.400000 +1361 542 0.400000 +1361 666 0.400000 +1361 683 0.400000 +1361 734 0.400000 +1361 746 0.400000 +1362 69 0.400000 +1362 163 0.400000 +1362 234 0.400000 +1362 379 0.400000 +1362 412 0.400000 +1362 472 0.400000 +1362 521 0.400000 +1362 585 0.400000 +1362 588 0.400000 +1362 626 0.400000 +1362 636 0.400000 +1362 664 0.400000 +1362 712 0.400000 +1363 83 0.400000 +1363 206 0.400000 +1363 209 0.400000 +1363 232 0.400000 +1363 239 0.400000 +1363 248 0.400000 +1363 274 0.400000 +1363 278 0.400000 +1363 392 0.400000 +1363 399 0.400000 +1363 419 0.400000 +1363 451 0.400000 +1363 478 0.400000 +1363 493 0.400000 +1363 509 0.400000 +1363 526 0.400000 +1363 614 0.400000 +1363 662 0.400000 +1363 736 0.400000 +1363 782 0.400000 +1363 792 0.400000 +1364 37 0.400000 +1364 61 0.400000 +1364 219 0.400000 +1364 237 0.400000 +1364 247 0.400000 +1364 369 0.400000 +1364 399 0.400000 +1364 478 0.400000 +1364 491 0.400000 +1364 535 0.400000 +1364 575 0.400000 +1364 597 0.400000 +1364 670 0.400000 +1364 760 0.400000 +1365 113 0.400000 +1365 220 0.400000 +1365 253 0.400000 +1365 261 0.400000 +1365 282 0.400000 +1365 305 0.400000 +1365 365 0.400000 +1365 461 0.400000 +1365 486 0.400000 +1365 543 0.400000 +1365 587 0.400000 +1365 613 0.400000 +1365 656 0.400000 +1365 660 0.400000 +1366 190 0.400000 +1366 233 0.400000 +1366 254 0.400000 +1366 261 0.400000 +1366 296 0.400000 +1366 383 0.400000 +1366 386 0.400000 +1366 403 0.400000 +1366 544 0.400000 +1366 623 0.400000 +1366 681 0.400000 +1367 7 0.400000 +1367 31 0.400000 +1367 139 0.400000 +1367 179 0.400000 +1367 295 0.400000 +1367 340 0.400000 +1367 366 0.400000 +1367 396 0.400000 +1367 493 0.400000 +1367 528 0.400000 +1367 728 0.400000 +1367 737 0.400000 +1367 761 0.400000 +1367 783 0.400000 +1367 792 0.400000 +1368 28 0.400000 +1368 39 0.400000 +1368 79 0.400000 +1368 95 0.400000 +1368 102 0.400000 +1368 117 0.400000 +1368 125 0.400000 +1368 128 0.400000 +1368 185 0.400000 +1368 233 0.400000 +1368 274 0.400000 +1368 284 0.400000 +1368 292 0.400000 +1368 331 0.400000 +1368 348 0.400000 +1368 390 0.400000 +1368 440 0.400000 +1368 633 0.400000 +1368 674 0.400000 +1368 711 0.400000 +1368 739 0.400000 +1368 797 0.400000 +1369 65 0.400000 +1369 95 0.400000 +1369 134 0.400000 +1369 139 0.400000 +1369 180 0.400000 +1369 264 0.400000 +1369 277 0.400000 +1369 322 0.400000 +1369 359 0.400000 +1369 393 0.400000 +1369 396 0.400000 +1369 412 0.400000 +1369 426 0.400000 +1369 468 0.400000 +1369 578 0.400000 +1369 684 0.400000 +1369 726 0.400000 +1369 752 0.400000 +1369 790 0.400000 +1370 96 0.400000 +1370 103 0.400000 +1370 229 0.400000 +1370 316 0.400000 +1370 324 0.400000 +1370 326 0.400000 +1370 344 0.400000 +1370 451 0.400000 +1370 458 0.400000 +1370 535 0.400000 +1370 612 0.400000 +1370 679 0.400000 +1370 718 0.400000 +1370 779 0.400000 +1371 24 0.400000 +1371 39 0.400000 +1371 122 0.400000 +1371 133 0.400000 +1371 159 0.400000 +1371 361 0.400000 +1371 369 0.400000 +1371 375 0.400000 +1371 458 0.400000 +1371 558 0.400000 +1371 631 0.400000 +1371 740 0.400000 +1371 754 0.400000 +1371 778 0.400000 +1372 79 0.400000 +1372 154 0.400000 +1372 184 0.400000 +1372 209 0.400000 +1372 229 0.400000 +1372 261 0.400000 +1372 270 0.400000 +1372 275 0.400000 +1372 288 0.400000 +1372 310 0.400000 +1372 322 0.400000 +1372 505 0.400000 +1372 520 0.400000 +1372 622 0.400000 +1372 701 0.400000 +1372 789 0.400000 +1373 106 0.400000 +1373 174 0.400000 +1373 224 0.400000 +1373 231 0.400000 +1373 252 0.400000 +1373 290 0.400000 +1373 301 0.400000 +1373 326 0.400000 +1373 337 0.400000 +1373 339 0.400000 +1373 370 0.400000 +1373 430 0.400000 +1373 518 0.400000 +1373 533 0.400000 +1373 559 0.400000 +1373 642 0.400000 +1373 652 0.400000 +1373 694 0.400000 +1374 95 0.400000 +1374 110 0.400000 +1374 156 0.400000 +1374 174 0.400000 +1374 224 0.400000 +1374 352 0.400000 +1374 479 0.400000 +1374 526 0.400000 +1374 562 0.400000 +1374 596 0.400000 +1374 659 0.400000 +1374 674 0.400000 +1374 775 0.400000 +1375 21 0.400000 +1375 66 0.400000 +1375 133 0.400000 +1375 171 0.400000 +1375 186 0.400000 +1375 197 0.400000 +1375 238 0.400000 +1375 252 0.400000 +1375 309 0.400000 +1375 354 0.400000 +1375 425 0.400000 +1375 446 0.400000 +1375 468 0.400000 +1375 470 0.400000 +1375 494 0.400000 +1375 568 0.400000 +1375 607 0.400000 +1375 686 0.400000 +1375 711 0.400000 +1375 751 0.400000 +1375 787 0.400000 +1376 15 0.400000 +1376 107 0.400000 +1376 127 0.400000 +1376 142 0.400000 +1376 212 0.400000 +1376 275 0.400000 +1376 287 0.400000 +1376 642 0.400000 +1376 689 0.400000 +1376 711 0.400000 +1376 739 0.400000 +1377 43 0.400000 +1377 194 0.400000 +1377 209 0.400000 +1377 227 0.400000 +1377 235 0.400000 +1377 240 0.400000 +1377 251 0.400000 +1377 252 0.400000 +1377 343 0.400000 +1377 355 0.400000 +1377 369 0.400000 +1377 371 0.400000 +1377 375 0.400000 +1377 386 0.400000 +1377 399 0.400000 +1377 473 0.400000 +1377 524 0.400000 +1377 552 0.400000 +1377 563 0.400000 +1377 579 0.400000 +1377 647 0.400000 +1377 731 0.400000 +1377 754 0.400000 +1378 37 0.400000 +1378 67 0.400000 +1378 83 0.400000 +1378 101 0.400000 +1378 147 0.400000 +1378 424 0.400000 +1378 483 0.400000 +1378 508 0.400000 +1378 609 0.400000 +1378 657 0.400000 +1378 729 0.400000 +1378 739 0.400000 +1378 746 0.400000 +1378 789 0.400000 +1378 793 0.400000 +1378 799 0.400000 +1379 28 0.400000 +1379 50 0.400000 +1379 64 0.400000 +1379 124 0.400000 +1379 256 0.400000 +1379 276 0.400000 +1379 286 0.400000 +1379 334 0.400000 +1379 335 0.400000 +1379 359 0.400000 +1379 450 0.400000 +1379 469 0.400000 +1379 704 0.400000 +1379 763 0.400000 +1380 87 0.400000 +1380 126 0.400000 +1380 145 0.400000 +1380 171 0.400000 +1380 225 0.400000 +1380 238 0.400000 +1380 242 0.400000 +1380 313 0.400000 +1380 317 0.400000 +1380 427 0.400000 +1380 440 0.400000 +1380 544 0.400000 +1380 626 0.400000 +1381 123 0.400000 +1381 203 0.400000 +1381 270 0.400000 +1381 385 0.400000 +1381 395 0.400000 +1381 437 0.400000 +1381 627 0.400000 +1381 654 0.400000 +1381 675 0.400000 +1381 753 0.400000 +1381 782 0.400000 +1381 791 0.400000 +1382 24 0.400000 +1382 35 0.400000 +1382 37 0.400000 +1382 66 0.400000 +1382 110 0.400000 +1382 118 0.400000 +1382 194 0.400000 +1382 197 0.400000 +1382 221 0.400000 +1382 230 0.400000 +1382 242 0.400000 +1382 247 0.400000 +1382 347 0.400000 +1382 413 0.400000 +1382 437 0.400000 +1382 474 0.400000 +1382 493 0.400000 +1382 508 0.400000 +1382 627 0.400000 +1382 752 0.400000 +1382 798 0.400000 +1383 32 0.400000 +1383 41 0.400000 +1383 105 0.400000 +1383 119 0.400000 +1383 172 0.400000 +1383 229 0.400000 +1383 244 0.400000 +1383 266 0.400000 +1383 267 0.400000 +1383 313 0.400000 +1383 376 0.400000 +1383 557 0.400000 +1383 578 0.400000 +1383 589 0.400000 +1383 629 0.400000 +1383 667 0.400000 +1383 680 0.400000 +1383 690 0.400000 +1383 763 0.400000 +1383 781 0.400000 +1383 784 0.400000 +1384 21 0.400000 +1384 56 0.400000 +1384 80 0.400000 +1384 110 0.400000 +1384 186 0.400000 +1384 194 0.400000 +1384 199 0.400000 +1384 238 0.400000 +1384 312 0.400000 +1384 328 0.400000 +1384 374 0.400000 +1384 389 0.400000 +1384 423 0.400000 +1384 518 0.400000 +1384 583 0.400000 +1384 600 0.400000 +1384 614 0.400000 +1384 671 0.400000 +1384 680 0.400000 +1384 696 0.400000 +1384 730 0.400000 +1384 739 0.400000 +1384 747 0.400000 +1384 757 0.400000 +1384 794 0.400000 +1385 5 0.400000 +1385 82 0.400000 +1385 164 0.400000 +1385 251 0.400000 +1385 311 0.400000 +1385 385 0.400000 +1385 413 0.400000 +1385 446 0.400000 +1385 589 0.400000 +1385 626 0.400000 +1385 708 0.400000 +1385 741 0.400000 +1385 790 0.400000 +1386 71 0.400000 +1386 206 0.400000 +1386 266 0.400000 +1386 279 0.400000 +1386 323 0.400000 +1386 372 0.400000 +1386 384 0.400000 +1386 385 0.400000 +1386 417 0.400000 +1386 550 0.400000 +1386 582 0.400000 +1386 715 0.400000 +1386 739 0.400000 +1387 62 0.400000 +1387 181 0.400000 +1387 189 0.400000 +1387 350 0.400000 +1387 354 0.400000 +1387 442 0.400000 +1387 509 0.400000 +1387 525 0.400000 +1387 649 0.400000 +1387 685 0.400000 +1387 737 0.400000 +1387 742 0.400000 +1388 92 0.400000 +1388 99 0.400000 +1388 107 0.400000 +1388 194 0.400000 +1388 195 0.400000 +1388 249 0.400000 +1388 362 0.400000 +1388 364 0.400000 +1388 455 0.400000 +1388 531 0.400000 +1388 594 0.400000 +1388 626 0.400000 +1388 661 0.400000 +1388 715 0.400000 +1388 781 0.400000 +1389 26 0.400000 +1389 42 0.400000 +1389 70 0.400000 +1389 98 0.400000 +1389 183 0.400000 +1389 289 0.400000 +1389 310 0.400000 +1389 382 0.400000 +1389 439 0.400000 +1389 539 0.400000 +1389 558 0.400000 +1389 626 0.400000 +1389 679 0.400000 +1389 698 0.400000 +1389 742 0.400000 +1389 793 0.400000 +1390 68 0.400000 +1390 173 0.400000 +1390 228 0.400000 +1390 269 0.400000 +1390 318 0.400000 +1390 367 0.400000 +1390 412 0.400000 +1390 675 0.400000 +1390 697 0.400000 +1390 698 0.400000 +1390 746 0.400000 +1390 771 0.400000 +1391 42 0.400000 +1391 119 0.400000 +1391 138 0.400000 +1391 177 0.400000 +1391 217 0.400000 +1391 230 0.400000 +1391 279 0.400000 +1391 384 0.400000 +1391 389 0.400000 +1391 571 0.400000 +1391 656 0.400000 +1391 785 0.400000 +1392 15 0.400000 +1392 16 0.400000 +1392 51 0.400000 +1392 142 0.400000 +1392 219 0.400000 +1392 228 0.400000 +1392 296 0.400000 +1392 320 0.400000 +1392 333 0.400000 +1392 412 0.400000 +1392 441 0.400000 +1392 462 0.400000 +1392 489 0.400000 +1392 509 0.400000 +1392 527 0.400000 +1392 554 0.400000 +1392 580 0.400000 +1392 648 0.400000 +1392 663 0.400000 +1392 670 0.400000 +1392 671 0.400000 +1392 690 0.400000 +1392 749 0.400000 +1392 787 0.400000 +1392 800 0.400000 +1393 32 0.400000 +1393 48 0.400000 +1393 193 0.400000 +1393 197 0.400000 +1393 214 0.400000 +1393 300 0.400000 +1393 336 0.400000 +1393 414 0.400000 +1393 555 0.400000 +1393 698 0.400000 +1393 776 0.400000 +1393 796 0.400000 +1394 44 0.400000 +1394 69 0.400000 +1394 234 0.400000 +1394 242 0.400000 +1394 302 0.400000 +1394 363 0.400000 +1394 366 0.400000 +1394 487 0.400000 +1394 490 0.400000 +1394 528 0.400000 +1394 636 0.400000 +1394 665 0.400000 +1394 691 0.400000 +1394 788 0.400000 +1395 38 0.400000 +1395 50 0.400000 +1395 115 0.400000 +1395 130 0.400000 +1395 225 0.400000 +1395 228 0.400000 +1395 252 0.400000 +1395 253 0.400000 +1395 254 0.400000 +1395 260 0.400000 +1395 304 0.400000 +1395 450 0.400000 +1395 482 0.400000 +1395 511 0.400000 +1395 525 0.400000 +1395 616 0.400000 +1395 620 0.400000 +1395 711 0.400000 +1395 722 0.400000 +1395 725 0.400000 +1396 11 0.400000 +1396 73 0.400000 +1396 74 0.400000 +1396 86 0.400000 +1396 123 0.400000 +1396 155 0.400000 +1396 172 0.400000 +1396 316 0.400000 +1396 415 0.400000 +1396 462 0.400000 +1396 482 0.400000 +1396 561 0.400000 +1396 613 0.400000 +1396 658 0.400000 +1396 768 0.400000 +1397 1 0.400000 +1397 18 0.400000 +1397 115 0.400000 +1397 124 0.400000 +1397 146 0.400000 +1397 156 0.400000 +1397 185 0.400000 +1397 406 0.400000 +1397 495 0.400000 +1397 582 0.400000 +1397 606 0.400000 +1397 623 0.400000 +1397 709 0.400000 +1397 797 0.400000 +1398 1 0.400000 +1398 51 0.400000 +1398 122 0.400000 +1398 167 0.400000 +1398 174 0.400000 +1398 198 0.400000 +1398 213 0.400000 +1398 237 0.400000 +1398 257 0.400000 +1398 453 0.400000 +1398 473 0.400000 +1398 495 0.400000 +1398 553 0.400000 +1398 567 0.400000 +1398 671 0.400000 +1398 797 0.400000 +1399 7 0.400000 +1399 11 0.400000 +1399 64 0.400000 +1399 193 0.400000 +1399 194 0.400000 +1399 266 0.400000 +1399 290 0.400000 +1399 377 0.400000 +1399 380 0.400000 +1399 392 0.400000 +1399 415 0.400000 +1399 621 0.400000 +1399 624 0.400000 +1399 652 0.400000 +1399 667 0.400000 +1399 714 0.400000 +1400 199 0.400000 +1400 235 0.400000 +1400 237 0.400000 +1400 339 0.400000 +1400 355 0.400000 +1400 365 0.400000 +1400 374 0.400000 +1400 409 0.400000 +1400 461 0.400000 +1400 495 0.400000 +1400 502 0.400000 +1400 571 0.400000 +1400 598 0.400000 +1400 610 0.400000 +1400 614 0.400000 +1400 796 0.400000 +1401 11 0.400000 +1401 100 0.400000 +1401 169 0.400000 +1401 189 0.400000 +1401 200 0.400000 +1401 231 0.400000 +1401 254 0.400000 +1401 265 0.400000 +1401 397 0.400000 +1401 411 0.400000 +1401 412 0.400000 +1401 503 0.400000 +1401 504 0.400000 +1401 560 0.400000 +1401 605 0.400000 +1401 708 0.400000 +1401 725 0.400000 +1401 732 0.400000 +1401 758 0.400000 +1402 17 0.400000 +1402 38 0.400000 +1402 101 0.400000 +1402 120 0.400000 +1402 192 0.400000 +1402 211 0.400000 +1402 214 0.400000 +1402 251 0.400000 +1402 277 0.400000 +1402 299 0.400000 +1402 347 0.400000 +1402 412 0.400000 +1402 464 0.400000 +1402 493 0.400000 +1402 507 0.400000 +1402 608 0.400000 +1402 610 0.400000 +1402 643 0.400000 +1402 687 0.400000 +1402 705 0.400000 +1402 727 0.400000 +1402 737 0.400000 +1402 782 0.400000 +1403 31 0.400000 +1403 59 0.400000 +1403 66 0.400000 +1403 80 0.400000 +1403 86 0.400000 +1403 130 0.400000 +1403 144 0.400000 +1403 200 0.400000 +1403 208 0.400000 +1403 316 0.400000 +1403 377 0.400000 +1403 534 0.400000 +1403 573 0.400000 +1403 582 0.400000 +1403 673 0.400000 +1403 729 0.400000 +1403 742 0.400000 +1403 769 0.400000 +1404 34 0.400000 +1404 43 0.400000 +1404 107 0.400000 +1404 123 0.400000 +1404 130 0.400000 +1404 217 0.400000 +1404 327 0.400000 +1404 348 0.400000 +1404 392 0.400000 +1404 398 0.400000 +1404 511 0.400000 +1404 528 0.400000 +1404 587 0.400000 +1404 592 0.400000 +1404 693 0.400000 +1404 757 0.400000 +1404 778 0.400000 +1405 9 0.400000 +1405 63 0.400000 +1405 106 0.400000 +1405 130 0.400000 +1405 137 0.400000 +1405 179 0.400000 +1405 187 0.400000 +1405 298 0.400000 +1405 333 0.400000 +1405 345 0.400000 +1405 400 0.400000 +1405 408 0.400000 +1405 473 0.400000 +1405 554 0.400000 +1405 632 0.400000 +1405 669 0.400000 +1405 779 0.400000 +1406 105 0.400000 +1406 160 0.400000 +1406 177 0.400000 +1406 183 0.400000 +1406 256 0.400000 +1406 266 0.400000 +1406 420 0.400000 +1406 487 0.400000 +1406 494 0.400000 +1406 502 0.400000 +1406 503 0.400000 +1406 636 0.400000 +1406 640 0.400000 +1406 723 0.400000 +1407 16 0.400000 +1407 95 0.400000 +1407 101 0.400000 +1407 121 0.400000 +1407 158 0.400000 +1407 208 0.400000 +1407 324 0.400000 +1407 346 0.400000 +1407 387 0.400000 +1407 456 0.400000 +1407 549 0.400000 +1407 606 0.400000 +1407 637 0.400000 +1407 673 0.400000 +1407 688 0.400000 +1408 11 0.400000 +1408 23 0.400000 +1408 24 0.400000 +1408 31 0.400000 +1408 46 0.400000 +1408 100 0.400000 +1408 124 0.400000 +1408 129 0.400000 +1408 131 0.400000 +1408 238 0.400000 +1408 272 0.400000 +1408 306 0.400000 +1408 450 0.400000 +1408 482 0.400000 +1408 506 0.400000 +1408 521 0.400000 +1408 738 0.400000 +1408 747 0.400000 +1408 772 0.400000 +1409 19 0.400000 +1409 51 0.400000 +1409 52 0.400000 +1409 106 0.400000 +1409 145 0.400000 +1409 165 0.400000 +1409 201 0.400000 +1409 222 0.400000 +1409 240 0.400000 +1409 319 0.400000 +1409 406 0.400000 +1409 449 0.400000 +1409 533 0.400000 +1409 571 0.400000 +1409 599 0.400000 +1409 665 0.400000 +1409 737 0.400000 +1409 749 0.400000 +1409 792 0.400000 +1410 89 0.400000 +1410 121 0.400000 +1410 207 0.400000 +1410 258 0.400000 +1410 309 0.400000 +1410 334 0.400000 +1410 335 0.400000 +1410 399 0.400000 +1410 403 0.400000 +1410 421 0.400000 +1410 430 0.400000 +1410 492 0.400000 +1410 562 0.400000 +1410 625 0.400000 +1410 747 0.400000 +1410 756 0.400000 +1411 81 0.400000 +1411 252 0.400000 +1411 320 0.400000 +1411 322 0.400000 +1411 499 0.400000 +1411 545 0.400000 +1411 624 0.400000 +1411 674 0.400000 +1411 696 0.400000 +1411 719 0.400000 +1411 735 0.400000 +1411 750 0.400000 +1412 47 0.400000 +1412 266 0.400000 +1412 279 0.400000 +1412 286 0.400000 +1412 306 0.400000 +1412 378 0.400000 +1412 450 0.400000 +1412 601 0.400000 +1412 677 0.400000 +1412 769 0.400000 +1413 35 0.400000 +1413 58 0.400000 +1413 86 0.400000 +1413 96 0.400000 +1413 113 0.400000 +1413 136 0.400000 +1413 143 0.400000 +1413 196 0.400000 +1413 335 0.400000 +1413 355 0.400000 +1413 377 0.400000 +1413 385 0.400000 +1413 419 0.400000 +1413 431 0.400000 +1413 516 0.400000 +1413 573 0.400000 +1413 629 0.400000 +1413 633 0.400000 +1413 640 0.400000 +1413 667 0.400000 +1413 700 0.400000 +1413 785 0.400000 +1414 155 0.400000 +1414 195 0.400000 +1414 213 0.400000 +1414 251 0.400000 +1414 290 0.400000 +1414 343 0.400000 +1414 390 0.400000 +1414 425 0.400000 +1414 488 0.400000 +1414 489 0.400000 +1414 547 0.400000 +1414 609 0.400000 +1414 677 0.400000 +1414 739 0.400000 +1415 28 0.400000 +1415 113 0.400000 +1415 155 0.400000 +1415 184 0.400000 +1415 225 0.400000 +1415 251 0.400000 +1415 292 0.400000 +1415 302 0.400000 +1415 357 0.400000 +1415 371 0.400000 +1415 433 0.400000 +1415 482 0.400000 +1415 483 0.400000 +1415 502 0.400000 +1415 684 0.400000 +1415 726 0.400000 +1416 20 0.400000 +1416 125 0.400000 +1416 137 0.400000 +1416 142 0.400000 +1416 236 0.400000 +1416 246 0.400000 +1416 352 0.400000 +1416 442 0.400000 +1416 444 0.400000 +1416 455 0.400000 +1416 615 0.400000 +1416 627 0.400000 +1416 642 0.400000 +1416 685 0.400000 +1416 691 0.400000 +1416 708 0.400000 +1416 778 0.400000 +1417 8 0.400000 +1417 23 0.400000 +1417 108 0.400000 +1417 136 0.400000 +1417 144 0.400000 +1417 510 0.400000 +1417 552 0.400000 +1417 610 0.400000 +1417 651 0.400000 +1417 684 0.400000 +1417 695 0.400000 +1417 757 0.400000 +1418 27 0.400000 +1418 31 0.400000 +1418 70 0.400000 +1418 97 0.400000 +1418 113 0.400000 +1418 120 0.400000 +1418 131 0.400000 +1418 138 0.400000 +1418 205 0.400000 +1418 290 0.400000 +1418 384 0.400000 +1418 413 0.400000 +1418 417 0.400000 +1418 488 0.400000 +1418 498 0.400000 +1418 509 0.400000 +1418 530 0.400000 +1418 534 0.400000 +1418 635 0.400000 +1418 667 0.400000 +1418 707 0.400000 +1418 735 0.400000 +1418 744 0.400000 +1419 8 0.400000 +1419 51 0.400000 +1419 74 0.400000 +1419 80 0.400000 +1419 121 0.400000 +1419 189 0.400000 +1419 235 0.400000 +1419 289 0.400000 +1419 358 0.400000 +1419 386 0.400000 +1419 429 0.400000 +1419 441 0.400000 +1419 444 0.400000 +1419 455 0.400000 +1419 471 0.400000 +1419 500 0.400000 +1419 781 0.400000 +1420 7 0.400000 +1420 24 0.400000 +1420 57 0.400000 +1420 94 0.400000 +1420 102 0.400000 +1420 214 0.400000 +1420 374 0.400000 +1420 424 0.400000 +1420 463 0.400000 +1420 516 0.400000 +1420 609 0.400000 +1420 649 0.400000 +1420 661 0.400000 +1420 679 0.400000 +1420 762 0.400000 +1421 85 0.400000 +1421 167 0.400000 +1421 319 0.400000 +1421 333 0.400000 +1421 335 0.400000 +1421 376 0.400000 +1421 422 0.400000 +1421 441 0.400000 +1421 459 0.400000 +1421 484 0.400000 +1421 491 0.400000 +1421 500 0.400000 +1421 553 0.400000 +1421 582 0.400000 +1421 708 0.400000 +1421 711 0.400000 +1421 735 0.400000 +1421 741 0.400000 +1422 177 0.400000 +1422 181 0.400000 +1422 198 0.400000 +1422 213 0.400000 +1422 217 0.400000 +1422 224 0.400000 +1422 238 0.400000 +1422 280 0.400000 +1422 291 0.400000 +1422 294 0.400000 +1422 324 0.400000 +1422 334 0.400000 +1422 347 0.400000 +1422 354 0.400000 +1422 358 0.400000 +1422 416 0.400000 +1422 439 0.400000 +1422 499 0.400000 +1422 507 0.400000 +1422 582 0.400000 +1422 647 0.400000 +1422 703 0.400000 +1422 757 0.400000 +1422 761 0.400000 +1423 10 0.400000 +1423 22 0.400000 +1423 69 0.400000 +1423 127 0.400000 +1423 224 0.400000 +1423 295 0.400000 +1423 401 0.400000 +1423 447 0.400000 +1423 578 0.400000 +1423 618 0.400000 +1423 623 0.400000 +1423 635 0.400000 +1423 667 0.400000 +1423 690 0.400000 +1423 708 0.400000 +1423 757 0.400000 +1423 766 0.400000 +1424 17 0.400000 +1424 62 0.400000 +1424 69 0.400000 +1424 102 0.400000 +1424 193 0.400000 +1424 246 0.400000 +1424 269 0.400000 +1424 291 0.400000 +1424 297 0.400000 +1424 338 0.400000 +1424 522 0.400000 +1424 557 0.400000 +1424 689 0.400000 +1424 710 0.400000 +1424 735 0.400000 +1424 751 0.400000 +1424 783 0.400000 +1424 798 0.400000 +1425 57 0.400000 +1425 150 0.400000 +1425 208 0.400000 +1425 298 0.400000 +1425 327 0.400000 +1425 356 0.400000 +1425 450 0.400000 +1425 582 0.400000 +1425 626 0.400000 +1425 662 0.400000 +1425 715 0.400000 +1426 142 0.400000 +1426 164 0.400000 +1426 223 0.400000 +1426 232 0.400000 +1426 243 0.400000 +1426 251 0.400000 +1426 265 0.400000 +1426 300 0.400000 +1426 311 0.400000 +1426 399 0.400000 +1426 402 0.400000 +1426 429 0.400000 +1426 433 0.400000 +1426 462 0.400000 +1426 656 0.400000 +1426 676 0.400000 +1426 704 0.400000 +1426 718 0.400000 +1427 28 0.400000 +1427 67 0.400000 +1427 95 0.400000 +1427 154 0.400000 +1427 243 0.400000 +1427 307 0.400000 +1427 352 0.400000 +1427 363 0.400000 +1427 369 0.400000 +1427 421 0.400000 +1427 462 0.400000 +1427 465 0.400000 +1427 466 0.400000 +1427 668 0.400000 +1427 770 0.400000 +1427 793 0.400000 +1428 27 0.400000 +1428 47 0.400000 +1428 108 0.400000 +1428 163 0.400000 +1428 187 0.400000 +1428 195 0.400000 +1428 209 0.400000 +1428 267 0.400000 +1428 270 0.400000 +1428 274 0.400000 +1428 367 0.400000 +1428 369 0.400000 +1428 380 0.400000 +1428 382 0.400000 +1428 405 0.400000 +1428 483 0.400000 +1428 489 0.400000 +1428 492 0.400000 +1428 562 0.400000 +1428 572 0.400000 +1428 615 0.400000 +1428 618 0.400000 +1428 650 0.400000 +1429 50 0.400000 +1429 203 0.400000 +1429 252 0.400000 +1429 401 0.400000 +1429 402 0.400000 +1429 442 0.400000 +1429 461 0.400000 +1429 472 0.400000 +1429 484 0.400000 +1429 537 0.400000 +1429 581 0.400000 +1429 623 0.400000 +1429 632 0.400000 +1429 663 0.400000 +1429 685 0.400000 +1429 692 0.400000 +1429 743 0.400000 +1429 747 0.400000 +1430 24 0.400000 +1430 82 0.400000 +1430 85 0.400000 +1430 165 0.400000 +1430 206 0.400000 +1430 293 0.400000 +1430 300 0.400000 +1430 331 0.400000 +1430 390 0.400000 +1430 431 0.400000 +1430 503 0.400000 +1430 513 0.400000 +1430 666 0.400000 +1430 728 0.400000 +1431 6 0.400000 +1431 72 0.400000 +1431 76 0.400000 +1431 80 0.400000 +1431 298 0.400000 +1431 520 0.400000 +1431 553 0.400000 +1431 693 0.400000 +1431 716 0.400000 +1431 756 0.400000 +1431 770 0.400000 +1431 783 0.400000 +1431 791 0.400000 +1432 11 0.400000 +1432 61 0.400000 +1432 91 0.400000 +1432 178 0.400000 +1432 211 0.400000 +1432 268 0.400000 +1432 287 0.400000 +1432 365 0.400000 +1432 395 0.400000 +1432 414 0.400000 +1432 426 0.400000 +1432 440 0.400000 +1432 486 0.400000 +1432 521 0.400000 +1432 522 0.400000 +1432 531 0.400000 +1432 539 0.400000 +1432 595 0.400000 +1432 635 0.400000 +1432 637 0.400000 +1432 639 0.400000 +1432 665 0.400000 +1432 679 0.400000 +1433 49 0.400000 +1433 132 0.400000 +1433 171 0.400000 +1433 181 0.400000 +1433 233 0.400000 +1433 245 0.400000 +1433 250 0.400000 +1433 299 0.400000 +1433 316 0.400000 +1433 351 0.400000 +1433 356 0.400000 +1433 466 0.400000 +1433 480 0.400000 +1433 503 0.400000 +1433 600 0.400000 +1433 626 0.400000 +1433 646 0.400000 +1433 677 0.400000 +1433 729 0.400000 +1433 777 0.400000 +1433 799 0.400000 +1434 49 0.400000 +1434 57 0.400000 +1434 74 0.400000 +1434 86 0.400000 +1434 112 0.400000 +1434 244 0.400000 +1434 293 0.400000 +1434 304 0.400000 +1434 522 0.400000 +1434 547 0.400000 +1434 564 0.400000 +1434 576 0.400000 +1434 583 0.400000 +1434 599 0.400000 +1434 654 0.400000 +1434 739 0.400000 +1434 763 0.400000 +1435 4 0.400000 +1435 49 0.400000 +1435 67 0.400000 +1435 94 0.400000 +1435 115 0.400000 +1435 298 0.400000 +1435 345 0.400000 +1435 350 0.400000 +1435 400 0.400000 +1435 440 0.400000 +1435 456 0.400000 +1435 460 0.400000 +1435 526 0.400000 +1435 548 0.400000 +1435 600 0.400000 +1435 793 0.400000 +1436 6 0.400000 +1436 17 0.400000 +1436 84 0.400000 +1436 188 0.400000 +1436 226 0.400000 +1436 276 0.400000 +1436 394 0.400000 +1436 416 0.400000 +1436 482 0.400000 +1436 566 0.400000 +1436 636 0.400000 +1436 800 0.400000 +1437 104 0.400000 +1437 131 0.400000 +1437 206 0.400000 +1437 226 0.400000 +1437 277 0.400000 +1437 389 0.400000 +1437 397 0.400000 +1437 412 0.400000 +1437 439 0.400000 +1437 542 0.400000 +1437 558 0.400000 +1437 637 0.400000 +1437 665 0.400000 +1437 674 0.400000 +1437 686 0.400000 +1437 700 0.400000 +1438 32 0.400000 +1438 45 0.400000 +1438 64 0.400000 +1438 178 0.400000 +1438 180 0.400000 +1438 231 0.400000 +1438 252 0.400000 +1438 259 0.400000 +1438 266 0.400000 +1438 337 0.400000 +1438 398 0.400000 +1438 552 0.400000 +1438 582 0.400000 +1438 626 0.400000 +1438 743 0.400000 +1438 765 0.400000 +1439 9 0.400000 +1439 80 0.400000 +1439 90 0.400000 +1439 214 0.400000 +1439 259 0.400000 +1439 287 0.400000 +1439 308 0.400000 +1439 384 0.400000 +1439 402 0.400000 +1439 430 0.400000 +1439 475 0.400000 +1439 488 0.400000 +1439 494 0.400000 +1439 564 0.400000 +1439 577 0.400000 +1439 617 0.400000 +1439 624 0.400000 +1439 712 0.400000 +1440 37 0.400000 +1440 38 0.400000 +1440 141 0.400000 +1440 192 0.400000 +1440 231 0.400000 +1440 278 0.400000 +1440 281 0.400000 +1440 371 0.400000 +1440 419 0.400000 +1440 420 0.400000 +1440 453 0.400000 +1440 471 0.400000 +1440 478 0.400000 +1440 510 0.400000 +1440 515 0.400000 +1440 533 0.400000 +1440 587 0.400000 +1440 618 0.400000 +1440 630 0.400000 +1440 734 0.400000 +1440 735 0.400000 +1440 752 0.400000 +1441 62 0.400000 +1441 76 0.400000 +1441 85 0.400000 +1441 152 0.400000 +1441 153 0.400000 +1441 254 0.400000 +1441 255 0.400000 +1441 264 0.400000 +1441 266 0.400000 +1441 385 0.400000 +1441 414 0.400000 +1441 458 0.400000 +1441 617 0.400000 +1441 671 0.400000 +1441 691 0.400000 +1441 698 0.400000 +1441 701 0.400000 +1441 724 0.400000 +1441 725 0.400000 +1441 763 0.400000 +1442 17 0.400000 +1442 162 0.400000 +1442 210 0.400000 +1442 228 0.400000 +1442 256 0.400000 +1442 265 0.400000 +1442 341 0.400000 +1442 350 0.400000 +1442 372 0.400000 +1442 393 0.400000 +1442 443 0.400000 +1442 576 0.400000 +1442 597 0.400000 +1442 632 0.400000 +1442 669 0.400000 +1443 132 0.400000 +1443 179 0.400000 +1443 188 0.400000 +1443 190 0.400000 +1443 276 0.400000 +1443 482 0.400000 +1443 523 0.400000 +1443 543 0.400000 +1443 605 0.400000 +1443 663 0.400000 +1443 795 0.400000 +1444 1 0.400000 +1444 11 0.400000 +1444 28 0.400000 +1444 215 0.400000 +1444 235 0.400000 +1444 246 0.400000 +1444 260 0.400000 +1444 324 0.400000 +1444 366 0.400000 +1444 482 0.400000 +1444 486 0.400000 +1444 490 0.400000 +1444 502 0.400000 +1444 552 0.400000 +1444 593 0.400000 +1444 628 0.400000 +1444 690 0.400000 +1444 720 0.400000 +1444 729 0.400000 +1445 44 0.400000 +1445 81 0.400000 +1445 88 0.400000 +1445 138 0.400000 +1445 187 0.400000 +1445 213 0.400000 +1445 251 0.400000 +1445 260 0.400000 +1445 263 0.400000 +1445 344 0.400000 +1445 360 0.400000 +1445 398 0.400000 +1445 424 0.400000 +1445 426 0.400000 +1445 438 0.400000 +1445 450 0.400000 +1445 453 0.400000 +1445 489 0.400000 +1445 506 0.400000 +1445 589 0.400000 +1445 645 0.400000 +1445 736 0.400000 +1445 799 0.400000 +1446 31 0.400000 +1446 59 0.400000 +1446 144 0.400000 +1446 159 0.400000 +1446 166 0.400000 +1446 224 0.400000 +1446 259 0.400000 +1446 349 0.400000 +1446 365 0.400000 +1446 413 0.400000 +1446 442 0.400000 +1446 448 0.400000 +1446 496 0.400000 +1446 505 0.400000 +1446 507 0.400000 +1446 617 0.400000 +1446 673 0.400000 +1446 688 0.400000 +1446 694 0.400000 +1446 766 0.400000 +1447 52 0.400000 +1447 82 0.400000 +1447 89 0.400000 +1447 176 0.400000 +1447 199 0.400000 +1447 263 0.400000 +1447 339 0.400000 +1447 342 0.400000 +1447 430 0.400000 +1447 442 0.400000 +1447 472 0.400000 +1447 548 0.400000 +1447 569 0.400000 +1447 604 0.400000 +1447 697 0.400000 +1447 719 0.400000 +1448 74 0.400000 +1448 93 0.400000 +1448 175 0.400000 +1448 257 0.400000 +1448 349 0.400000 +1448 401 0.400000 +1448 488 0.400000 +1448 541 0.400000 +1448 554 0.400000 +1448 564 0.400000 +1448 575 0.400000 +1448 622 0.400000 +1448 624 0.400000 +1448 652 0.400000 +1448 682 0.400000 +1448 756 0.400000 +1448 779 0.400000 +1449 36 0.400000 +1449 127 0.400000 +1449 163 0.400000 +1449 256 0.400000 +1449 387 0.400000 +1449 399 0.400000 +1449 427 0.400000 +1449 479 0.400000 +1449 492 0.400000 +1449 530 0.400000 +1449 548 0.400000 +1449 563 0.400000 +1449 613 0.400000 +1449 614 0.400000 +1449 624 0.400000 +1449 655 0.400000 +1449 674 0.400000 +1449 707 0.400000 +1449 743 0.400000 +1449 761 0.400000 +1449 795 0.400000 +1450 11 0.400000 +1450 47 0.400000 +1450 78 0.400000 +1450 110 0.400000 +1450 135 0.400000 +1450 183 0.400000 +1450 287 0.400000 +1450 336 0.400000 +1450 411 0.400000 +1450 451 0.400000 +1450 464 0.400000 +1450 504 0.400000 +1450 511 0.400000 +1450 614 0.400000 +1450 666 0.400000 +1450 671 0.400000 +1450 684 0.400000 +1450 726 0.400000 +1450 773 0.400000 +1451 71 0.400000 +1451 78 0.400000 +1451 141 0.400000 +1451 146 0.400000 +1451 240 0.400000 +1451 277 0.400000 +1451 298 0.400000 +1451 416 0.400000 +1451 446 0.400000 +1451 489 0.400000 +1451 534 0.400000 +1451 559 0.400000 +1451 567 0.400000 +1451 577 0.400000 +1451 578 0.400000 +1451 631 0.400000 +1451 642 0.400000 +1452 27 0.400000 +1452 39 0.400000 +1452 49 0.400000 +1452 203 0.400000 +1452 235 0.400000 +1452 272 0.400000 +1452 277 0.400000 +1452 298 0.400000 +1452 337 0.400000 +1452 340 0.400000 +1452 343 0.400000 +1452 396 0.400000 +1452 438 0.400000 +1452 517 0.400000 +1452 535 0.400000 +1452 644 0.400000 +1452 663 0.400000 +1452 693 0.400000 +1452 714 0.400000 +1453 19 0.400000 +1453 103 0.400000 +1453 107 0.400000 +1453 119 0.400000 +1453 170 0.400000 +1453 202 0.400000 +1453 255 0.400000 +1453 265 0.400000 +1453 275 0.400000 +1453 301 0.400000 +1453 325 0.400000 +1453 396 0.400000 +1453 522 0.400000 +1453 529 0.400000 +1453 594 0.400000 +1453 605 0.400000 +1453 617 0.400000 +1453 628 0.400000 +1453 657 0.400000 +1453 773 0.400000 +1454 79 0.400000 +1454 90 0.400000 +1454 184 0.400000 +1454 229 0.400000 +1454 314 0.400000 +1454 336 0.400000 +1454 385 0.400000 +1454 415 0.400000 +1454 443 0.400000 +1454 510 0.400000 +1454 784 0.400000 +1455 19 0.400000 +1455 101 0.400000 +1455 152 0.400000 +1455 192 0.400000 +1455 219 0.400000 +1455 395 0.400000 +1455 526 0.400000 +1455 536 0.400000 +1455 703 0.400000 +1455 742 0.400000 +1455 778 0.400000 +1455 793 0.400000 +1456 24 0.400000 +1456 73 0.400000 +1456 170 0.400000 +1456 177 0.400000 +1456 194 0.400000 +1456 229 0.400000 +1456 235 0.400000 +1456 316 0.400000 +1456 422 0.400000 +1456 454 0.400000 +1456 588 0.400000 +1456 647 0.400000 +1456 652 0.400000 +1456 717 0.400000 +1456 728 0.400000 +1456 784 0.400000 +1457 6 0.400000 +1457 9 0.400000 +1457 54 0.400000 +1457 68 0.400000 +1457 178 0.400000 +1457 224 0.400000 +1457 289 0.400000 +1457 299 0.400000 +1457 434 0.400000 +1457 547 0.400000 +1457 564 0.400000 +1457 620 0.400000 +1457 631 0.400000 +1457 640 0.400000 +1457 642 0.400000 +1457 738 0.400000 +1458 38 0.400000 +1458 71 0.400000 +1458 77 0.400000 +1458 94 0.400000 +1458 105 0.400000 +1458 185 0.400000 +1458 204 0.400000 +1458 268 0.400000 +1458 301 0.400000 +1458 309 0.400000 +1458 446 0.400000 +1458 503 0.400000 +1458 520 0.400000 +1458 540 0.400000 +1458 558 0.400000 +1458 609 0.400000 +1458 716 0.400000 +1458 726 0.400000 +1459 20 0.400000 +1459 65 0.400000 +1459 66 0.400000 +1459 77 0.400000 +1459 197 0.400000 +1459 206 0.400000 +1459 229 0.400000 +1459 324 0.400000 +1459 350 0.400000 +1459 475 0.400000 +1459 477 0.400000 +1459 495 0.400000 +1459 750 0.400000 +1460 3 0.400000 +1460 21 0.400000 +1460 33 0.400000 +1460 121 0.400000 +1460 301 0.400000 +1460 394 0.400000 +1460 433 0.400000 +1460 456 0.400000 +1460 531 0.400000 +1460 563 0.400000 +1460 572 0.400000 +1460 660 0.400000 +1460 676 0.400000 +1460 769 0.400000 +1461 14 0.400000 +1461 176 0.400000 +1461 184 0.400000 +1461 217 0.400000 +1461 221 0.400000 +1461 272 0.400000 +1461 281 0.400000 +1461 284 0.400000 +1461 442 0.400000 +1461 453 0.400000 +1461 457 0.400000 +1461 468 0.400000 +1461 590 0.400000 +1461 591 0.400000 +1461 599 0.400000 +1461 628 0.400000 +1461 658 0.400000 +1462 11 0.400000 +1462 23 0.400000 +1462 86 0.400000 +1462 339 0.400000 +1462 367 0.400000 +1462 372 0.400000 +1462 390 0.400000 +1462 399 0.400000 +1462 426 0.400000 +1462 551 0.400000 +1462 653 0.400000 +1462 684 0.400000 +1462 711 0.400000 +1462 713 0.400000 +1462 746 0.400000 +1463 42 0.400000 +1463 79 0.400000 +1463 145 0.400000 +1463 466 0.400000 +1463 534 0.400000 +1463 537 0.400000 +1463 591 0.400000 +1463 796 0.400000 +1463 797 0.400000 +1464 58 0.400000 +1464 143 0.400000 +1464 190 0.400000 +1464 210 0.400000 +1464 247 0.400000 +1464 248 0.400000 +1464 265 0.400000 +1464 273 0.400000 +1464 402 0.400000 +1464 421 0.400000 +1464 542 0.400000 +1464 551 0.400000 +1464 568 0.400000 +1464 605 0.400000 +1464 617 0.400000 +1464 651 0.400000 +1464 653 0.400000 +1465 101 0.400000 +1465 166 0.400000 +1465 177 0.400000 +1465 227 0.400000 +1465 275 0.400000 +1465 352 0.400000 +1465 358 0.400000 +1465 393 0.400000 +1465 414 0.400000 +1465 419 0.400000 +1465 433 0.400000 +1465 460 0.400000 +1465 479 0.400000 +1465 485 0.400000 +1465 519 0.400000 +1465 595 0.400000 +1465 648 0.400000 +1465 650 0.400000 +1465 770 0.400000 +1465 777 0.400000 +1466 3 0.400000 +1466 23 0.400000 +1466 66 0.400000 +1466 112 0.400000 +1466 142 0.400000 +1466 157 0.400000 +1466 172 0.400000 +1466 345 0.400000 +1466 355 0.400000 +1466 502 0.400000 +1466 516 0.400000 +1466 521 0.400000 +1466 677 0.400000 +1466 737 0.400000 +1466 739 0.400000 +1466 779 0.400000 +1467 184 0.400000 +1467 208 0.400000 +1467 260 0.400000 +1467 283 0.400000 +1467 284 0.400000 +1467 319 0.400000 +1467 404 0.400000 +1467 433 0.400000 +1467 458 0.400000 +1467 566 0.400000 +1467 734 0.400000 +1467 765 0.400000 +1468 63 0.400000 +1468 95 0.400000 +1468 120 0.400000 +1468 162 0.400000 +1468 230 0.400000 +1468 270 0.400000 +1468 302 0.400000 +1468 356 0.400000 +1468 502 0.400000 +1468 593 0.400000 +1468 611 0.400000 +1468 636 0.400000 +1468 647 0.400000 +1468 674 0.400000 +1468 698 0.400000 +1468 706 0.400000 +1468 724 0.400000 +1468 741 0.400000 +1468 755 0.400000 +1468 760 0.400000 +1468 770 0.400000 +1469 3 0.400000 +1469 4 0.400000 +1469 181 0.400000 +1469 189 0.400000 +1469 205 0.400000 +1469 222 0.400000 +1469 285 0.400000 +1469 376 0.400000 +1469 427 0.400000 +1469 433 0.400000 +1469 473 0.400000 +1469 530 0.400000 +1469 730 0.400000 +1469 732 0.400000 +1469 739 0.400000 +1469 752 0.400000 +1469 760 0.400000 +1469 772 0.400000 +1470 22 0.400000 +1470 23 0.400000 +1470 77 0.400000 +1470 88 0.400000 +1470 126 0.400000 +1470 162 0.400000 +1470 268 0.400000 +1470 278 0.400000 +1470 290 0.400000 +1470 335 0.400000 +1470 397 0.400000 +1470 454 0.400000 +1470 464 0.400000 +1470 488 0.400000 +1470 521 0.400000 +1470 613 0.400000 +1470 656 0.400000 +1470 706 0.400000 +1470 751 0.400000 +1471 38 0.400000 +1471 69 0.400000 +1471 122 0.400000 +1471 157 0.400000 +1471 162 0.400000 +1471 188 0.400000 +1471 260 0.400000 +1471 275 0.400000 +1471 281 0.400000 +1471 363 0.400000 +1471 382 0.400000 +1471 423 0.400000 +1471 425 0.400000 +1471 426 0.400000 +1471 434 0.400000 +1471 457 0.400000 +1471 467 0.400000 +1471 521 0.400000 +1471 535 0.400000 +1471 599 0.400000 +1471 611 0.400000 +1471 641 0.400000 +1471 644 0.400000 +1471 674 0.400000 +1471 763 0.400000 +1471 771 0.400000 +1472 5 0.400000 +1472 9 0.400000 +1472 34 0.400000 +1472 113 0.400000 +1472 117 0.400000 +1472 118 0.400000 +1472 198 0.400000 +1472 199 0.400000 +1472 228 0.400000 +1472 270 0.400000 +1472 327 0.400000 +1472 362 0.400000 +1472 399 0.400000 +1472 423 0.400000 +1472 476 0.400000 +1472 669 0.400000 +1472 673 0.400000 +1472 716 0.400000 +1472 756 0.400000 +1472 774 0.400000 +1472 780 0.400000 +1473 70 0.400000 +1473 115 0.400000 +1473 233 0.400000 +1473 334 0.400000 +1473 428 0.400000 +1473 444 0.400000 +1473 566 0.400000 +1473 605 0.400000 +1473 653 0.400000 +1473 726 0.400000 +1473 742 0.400000 +1473 748 0.400000 +1473 784 0.400000 +1473 786 0.400000 +1474 33 0.400000 +1474 134 0.400000 +1474 137 0.400000 +1474 188 0.400000 +1474 231 0.400000 +1474 399 0.400000 +1474 527 0.400000 +1474 549 0.400000 +1474 615 0.400000 +1474 618 0.400000 +1474 728 0.400000 +1474 761 0.400000 +1474 787 0.400000 +1475 101 0.400000 +1475 221 0.400000 +1475 347 0.400000 +1475 352 0.400000 +1475 422 0.400000 +1475 545 0.400000 +1475 570 0.400000 +1475 571 0.400000 +1475 579 0.400000 +1476 37 0.400000 +1476 43 0.400000 +1476 48 0.400000 +1476 77 0.400000 +1476 99 0.400000 +1476 126 0.400000 +1476 164 0.400000 +1476 175 0.400000 +1476 200 0.400000 +1476 209 0.400000 +1476 288 0.400000 +1476 311 0.400000 +1476 428 0.400000 +1476 477 0.400000 +1476 503 0.400000 +1476 545 0.400000 +1476 653 0.400000 +1476 674 0.400000 +1476 746 0.400000 +1476 756 0.400000 +1477 82 0.400000 +1477 175 0.400000 +1477 505 0.400000 +1477 521 0.400000 +1477 754 0.400000 +1477 755 0.400000 +1477 783 0.400000 +1478 38 0.400000 +1478 70 0.400000 +1478 76 0.400000 +1478 113 0.400000 +1478 149 0.400000 +1478 152 0.400000 +1478 156 0.400000 +1478 228 0.400000 +1478 232 0.400000 +1478 266 0.400000 +1478 389 0.400000 +1478 431 0.400000 +1478 443 0.400000 +1478 452 0.400000 +1478 471 0.400000 +1478 497 0.400000 +1478 565 0.400000 +1478 567 0.400000 +1478 637 0.400000 +1478 699 0.400000 +1478 761 0.400000 +1479 20 0.400000 +1479 140 0.400000 +1479 175 0.400000 +1479 184 0.400000 +1479 190 0.400000 +1479 193 0.400000 +1479 198 0.400000 +1479 278 0.400000 +1479 292 0.400000 +1479 317 0.400000 +1479 355 0.400000 +1479 464 0.400000 +1479 489 0.400000 +1479 518 0.400000 +1479 522 0.400000 +1479 532 0.400000 +1479 550 0.400000 +1479 592 0.400000 +1479 644 0.400000 +1479 683 0.400000 +1479 788 0.400000 +1480 15 0.400000 +1480 39 0.400000 +1480 65 0.400000 +1480 311 0.400000 +1480 350 0.400000 +1480 449 0.400000 +1480 550 0.400000 +1480 562 0.400000 +1480 597 0.400000 +1480 605 0.400000 +1480 765 0.400000 +1481 13 0.400000 +1481 15 0.400000 +1481 94 0.400000 +1481 96 0.400000 +1481 102 0.400000 +1481 266 0.400000 +1481 280 0.400000 +1481 419 0.400000 +1481 560 0.400000 +1481 758 0.400000 +1482 174 0.400000 +1482 242 0.400000 +1482 244 0.400000 +1482 259 0.400000 +1482 275 0.400000 +1482 320 0.400000 +1482 388 0.400000 +1482 397 0.400000 +1482 414 0.400000 +1482 431 0.400000 +1482 474 0.400000 +1482 505 0.400000 +1482 532 0.400000 +1482 581 0.400000 +1482 728 0.400000 +1482 737 0.400000 +1483 74 0.400000 +1483 180 0.400000 +1483 273 0.400000 +1483 304 0.400000 +1483 322 0.400000 +1483 382 0.400000 +1483 384 0.400000 +1483 400 0.400000 +1483 412 0.400000 +1483 451 0.400000 +1483 557 0.400000 +1483 671 0.400000 +1483 743 0.400000 +1483 751 0.400000 +1483 771 0.400000 +1483 789 0.400000 +1484 54 0.400000 +1484 94 0.400000 +1484 203 0.400000 +1484 254 0.400000 +1484 313 0.400000 +1484 321 0.400000 +1484 385 0.400000 +1484 417 0.400000 +1484 451 0.400000 +1484 494 0.400000 +1484 506 0.400000 +1484 572 0.400000 +1484 678 0.400000 +1484 713 0.400000 +1484 729 0.400000 +1484 763 0.400000 +1484 794 0.400000 +1485 48 0.400000 +1485 59 0.400000 +1485 81 0.400000 +1485 169 0.400000 +1485 199 0.400000 +1485 200 0.400000 +1485 244 0.400000 +1485 250 0.400000 +1485 301 0.400000 +1485 360 0.400000 +1485 388 0.400000 +1485 404 0.400000 +1485 419 0.400000 +1485 420 0.400000 +1485 463 0.400000 +1485 478 0.400000 +1485 557 0.400000 +1485 587 0.400000 +1485 630 0.400000 +1485 680 0.400000 +1485 704 0.400000 +1485 719 0.400000 +1485 783 0.400000 +1486 111 0.400000 +1486 293 0.400000 +1486 323 0.400000 +1486 332 0.400000 +1486 352 0.400000 +1486 367 0.400000 +1486 371 0.400000 +1486 382 0.400000 +1486 403 0.400000 +1486 411 0.400000 +1486 449 0.400000 +1486 455 0.400000 +1486 500 0.400000 +1486 642 0.400000 +1486 665 0.400000 +1486 700 0.400000 +1486 701 0.400000 +1486 711 0.400000 +1486 757 0.400000 +1487 81 0.400000 +1487 131 0.400000 +1487 200 0.400000 +1487 228 0.400000 +1487 239 0.400000 +1487 312 0.400000 +1487 324 0.400000 +1487 358 0.400000 +1487 409 0.400000 +1487 513 0.400000 +1487 527 0.400000 +1487 559 0.400000 +1487 629 0.400000 +1487 691 0.400000 +1487 728 0.400000 +1487 770 0.400000 +1488 31 0.400000 +1488 61 0.400000 +1488 99 0.400000 +1488 224 0.400000 +1488 234 0.400000 +1488 260 0.400000 +1488 265 0.400000 +1488 272 0.400000 +1488 295 0.400000 +1488 380 0.400000 +1488 394 0.400000 +1488 437 0.400000 +1488 455 0.400000 +1488 469 0.400000 +1488 540 0.400000 +1488 590 0.400000 +1488 619 0.400000 +1488 682 0.400000 +1489 7 0.400000 +1489 43 0.400000 +1489 61 0.400000 +1489 91 0.400000 +1489 119 0.400000 +1489 192 0.400000 +1489 233 0.400000 +1489 244 0.400000 +1489 251 0.400000 +1489 290 0.400000 +1489 345 0.400000 +1489 346 0.400000 +1489 373 0.400000 +1489 377 0.400000 +1489 392 0.400000 +1489 404 0.400000 +1489 420 0.400000 +1489 537 0.400000 +1489 557 0.400000 +1489 619 0.400000 +1489 650 0.400000 +1489 783 0.400000 +1490 116 0.400000 +1490 239 0.400000 +1490 243 0.400000 +1490 299 0.400000 +1490 330 0.400000 +1490 390 0.400000 +1490 438 0.400000 +1490 503 0.400000 +1490 508 0.400000 +1490 715 0.400000 +1490 728 0.400000 +1490 758 0.400000 +1491 27 0.400000 +1491 46 0.400000 +1491 167 0.400000 +1491 220 0.400000 +1491 265 0.400000 +1491 351 0.400000 +1491 352 0.400000 +1491 388 0.400000 +1491 508 0.400000 +1491 525 0.400000 +1491 548 0.400000 +1491 609 0.400000 +1491 739 0.400000 +1491 756 0.400000 +1491 774 0.400000 +1492 44 0.400000 +1492 88 0.400000 +1492 138 0.400000 +1492 247 0.400000 +1492 253 0.400000 +1492 375 0.400000 +1492 439 0.400000 +1492 473 0.400000 +1492 592 0.400000 +1493 5 0.400000 +1493 156 0.400000 +1493 209 0.400000 +1493 305 0.400000 +1493 366 0.400000 +1493 388 0.400000 +1493 430 0.400000 +1493 534 0.400000 +1494 33 0.400000 +1494 101 0.400000 +1494 174 0.400000 +1494 234 0.400000 +1494 257 0.400000 +1494 262 0.400000 +1494 285 0.400000 +1494 287 0.400000 +1494 376 0.400000 +1494 379 0.400000 +1494 675 0.400000 +1494 737 0.400000 +1495 14 0.400000 +1495 25 0.400000 +1495 154 0.400000 +1495 176 0.400000 +1495 202 0.400000 +1495 370 0.400000 +1495 396 0.400000 +1495 424 0.400000 +1495 490 0.400000 +1495 578 0.400000 +1495 587 0.400000 +1495 650 0.400000 +1495 654 0.400000 +1495 665 0.400000 +1495 725 0.400000 +1495 749 0.400000 +1495 762 0.400000 +1495 782 0.400000 +1495 792 0.400000 +1496 49 0.400000 +1496 76 0.400000 +1496 118 0.400000 +1496 167 0.400000 +1496 267 0.400000 +1496 277 0.400000 +1496 281 0.400000 +1496 312 0.400000 +1496 480 0.400000 +1496 562 0.400000 +1496 574 0.400000 +1496 588 0.400000 +1496 639 0.400000 +1496 731 0.400000 +1496 756 0.400000 +1496 779 0.400000 +1497 4 0.400000 +1497 8 0.400000 +1497 39 0.400000 +1497 103 0.400000 +1497 131 0.400000 +1497 204 0.400000 +1497 220 0.400000 +1497 321 0.400000 +1497 373 0.400000 +1497 409 0.400000 +1497 497 0.400000 +1497 511 0.400000 +1497 537 0.400000 +1497 617 0.400000 +1497 657 0.400000 +1497 688 0.400000 +1497 698 0.400000 +1497 713 0.400000 +1497 728 0.400000 +1497 749 0.400000 +1497 784 0.400000 +1497 791 0.400000 +1498 27 0.400000 +1498 96 0.400000 +1498 144 0.400000 +1498 218 0.400000 +1498 239 0.400000 +1498 263 0.400000 +1498 365 0.400000 +1498 377 0.400000 +1498 483 0.400000 +1498 542 0.400000 +1498 582 0.400000 +1498 585 0.400000 +1498 593 0.400000 +1498 629 0.400000 +1498 684 0.400000 +1498 733 0.400000 +1498 778 0.400000 +1499 12 0.400000 +1499 55 0.400000 +1499 192 0.400000 +1499 268 0.400000 +1499 316 0.400000 +1499 527 0.400000 +1499 546 0.400000 +1499 550 0.400000 +1499 633 0.400000 +1499 643 0.400000 +1500 37 0.400000 +1500 51 0.400000 +1500 89 0.400000 +1500 147 0.400000 +1500 161 0.400000 +1500 207 0.400000 +1500 248 0.400000 +1500 270 0.400000 +1500 317 0.400000 +1500 363 0.400000 +1500 370 0.400000 +1500 429 0.400000 +1500 448 0.400000 +1500 511 0.400000 +1500 606 0.400000 +1500 625 0.400000 +1500 684 0.400000 +1500 694 0.400000 +1500 716 0.400000 +1500 718 0.400000 +1500 723 0.400000 +1500 768 0.400000 +1500 786 0.400000 +1501 24 0.400000 +1501 81 0.400000 +1501 147 0.400000 +1501 165 0.400000 +1501 204 0.400000 +1501 383 0.400000 +1501 434 0.400000 +1501 436 0.400000 +1501 457 0.400000 +1501 519 0.400000 +1501 538 0.400000 +1501 550 0.400000 +1501 636 0.400000 +1501 745 0.400000 +1502 9 0.400000 +1502 24 0.400000 +1502 101 0.400000 +1502 217 0.400000 +1502 372 0.400000 +1502 385 0.400000 +1502 495 0.400000 +1502 529 0.400000 +1502 608 0.400000 +1502 610 0.400000 +1502 672 0.400000 +1503 46 0.400000 +1503 170 0.400000 +1503 183 0.400000 +1503 284 0.400000 +1503 305 0.400000 +1503 374 0.400000 +1503 428 0.400000 +1503 546 0.400000 +1503 576 0.400000 +1503 686 0.400000 +1503 730 0.400000 +1503 800 0.400000 +1504 17 0.400000 +1504 80 0.400000 +1504 104 0.400000 +1504 149 0.400000 +1504 152 0.400000 +1504 176 0.400000 +1504 224 0.400000 +1504 301 0.400000 +1504 327 0.400000 +1504 361 0.400000 +1504 524 0.400000 +1504 653 0.400000 +1504 695 0.400000 +1504 734 0.400000 +1504 743 0.400000 +1504 753 0.400000 +1505 37 0.400000 +1505 115 0.400000 +1505 208 0.400000 +1505 311 0.400000 +1505 359 0.400000 +1505 419 0.400000 +1505 537 0.400000 +1505 538 0.400000 +1505 571 0.400000 +1505 641 0.400000 +1505 710 0.400000 +1505 726 0.400000 +1505 750 0.400000 +1505 773 0.400000 +1505 777 0.400000 +1505 799 0.400000 +1506 35 0.400000 +1506 44 0.400000 +1506 84 0.400000 +1506 91 0.400000 +1506 95 0.400000 +1506 100 0.400000 +1506 200 0.400000 +1506 228 0.400000 +1506 254 0.400000 +1506 369 0.400000 +1506 394 0.400000 +1506 470 0.400000 +1506 474 0.400000 +1506 512 0.400000 +1507 26 0.400000 +1507 73 0.400000 +1507 146 0.400000 +1507 302 0.400000 +1507 311 0.400000 +1507 352 0.400000 +1507 462 0.400000 +1507 517 0.400000 +1507 527 0.400000 +1507 543 0.400000 +1507 555 0.400000 +1507 611 0.400000 +1507 632 0.400000 +1507 699 0.400000 +1507 791 0.400000 +1508 10 0.400000 +1508 79 0.400000 +1508 177 0.400000 +1508 184 0.400000 +1508 195 0.400000 +1508 229 0.400000 +1508 233 0.400000 +1508 324 0.400000 +1508 335 0.400000 +1508 453 0.400000 +1508 464 0.400000 +1508 557 0.400000 +1508 633 0.400000 +1508 643 0.400000 +1508 650 0.400000 +1508 655 0.400000 +1509 31 0.400000 +1509 244 0.400000 +1509 260 0.400000 +1509 273 0.400000 +1509 287 0.400000 +1509 352 0.400000 +1509 454 0.400000 +1509 462 0.400000 +1509 503 0.400000 +1509 527 0.400000 +1509 539 0.400000 +1509 545 0.400000 +1509 701 0.400000 +1510 59 0.400000 +1510 147 0.400000 +1510 150 0.400000 +1510 163 0.400000 +1510 245 0.400000 +1510 259 0.400000 +1510 260 0.400000 +1510 423 0.400000 +1510 447 0.400000 +1510 469 0.400000 +1510 533 0.400000 +1510 540 0.400000 +1510 551 0.400000 +1510 629 0.400000 +1510 638 0.400000 +1510 716 0.400000 +1510 767 0.400000 +1511 17 0.400000 +1511 35 0.400000 +1511 59 0.400000 +1511 154 0.400000 +1511 158 0.400000 +1511 188 0.400000 +1511 190 0.400000 +1511 430 0.400000 +1511 459 0.400000 +1511 506 0.400000 +1511 530 0.400000 +1511 553 0.400000 +1511 670 0.400000 +1511 678 0.400000 +1511 779 0.400000 +1511 792 0.400000 +1512 2 0.400000 +1512 9 0.400000 +1512 42 0.400000 +1512 47 0.400000 +1512 184 0.400000 +1512 306 0.400000 +1512 409 0.400000 +1512 445 0.400000 +1512 543 0.400000 +1512 622 0.400000 +1512 625 0.400000 +1512 636 0.400000 +1512 669 0.400000 +1512 703 0.400000 +1512 705 0.400000 +1512 710 0.400000 +1512 781 0.400000 +1513 23 0.400000 +1513 93 0.400000 +1513 102 0.400000 +1513 195 0.400000 +1513 196 0.400000 +1513 205 0.400000 +1513 216 0.400000 +1513 223 0.400000 +1513 278 0.400000 +1513 350 0.400000 +1513 357 0.400000 +1513 389 0.400000 +1513 562 0.400000 +1513 584 0.400000 +1513 596 0.400000 +1513 623 0.400000 +1513 691 0.400000 +1513 797 0.400000 +1514 7 0.400000 +1514 26 0.400000 +1514 134 0.400000 +1514 359 0.400000 +1514 452 0.400000 +1514 456 0.400000 +1514 461 0.400000 +1514 540 0.400000 +1514 575 0.400000 +1514 582 0.400000 +1514 630 0.400000 +1514 669 0.400000 +1514 672 0.400000 +1514 682 0.400000 +1514 746 0.400000 +1514 777 0.400000 +1515 87 0.400000 +1515 135 0.400000 +1515 226 0.400000 +1515 305 0.400000 +1515 349 0.400000 +1515 432 0.400000 +1515 465 0.400000 +1515 471 0.400000 +1515 513 0.400000 +1515 529 0.400000 +1515 547 0.400000 +1515 716 0.400000 +1515 776 0.400000 +1516 20 0.400000 +1516 163 0.400000 +1516 200 0.400000 +1516 250 0.400000 +1516 289 0.400000 +1516 326 0.400000 +1516 434 0.400000 +1516 494 0.400000 +1516 506 0.400000 +1516 561 0.400000 +1516 616 0.400000 +1516 626 0.400000 +1516 655 0.400000 +1516 717 0.400000 +1516 749 0.400000 +1516 783 0.400000 +1516 785 0.400000 +1517 1 0.400000 +1517 2 0.400000 +1517 46 0.400000 +1517 102 0.400000 +1517 192 0.400000 +1517 196 0.400000 +1517 202 0.400000 +1517 237 0.400000 +1517 269 0.400000 +1517 314 0.400000 +1517 354 0.400000 +1517 367 0.400000 +1517 398 0.400000 +1517 515 0.400000 +1517 598 0.400000 +1517 655 0.400000 +1517 665 0.400000 +1517 671 0.400000 +1517 679 0.400000 +1517 685 0.400000 +1517 771 0.400000 +1518 59 0.400000 +1518 73 0.400000 +1518 126 0.400000 +1518 204 0.400000 +1518 226 0.400000 +1518 285 0.400000 +1518 298 0.400000 +1518 490 0.400000 +1518 517 0.400000 +1518 527 0.400000 +1518 646 0.400000 +1518 691 0.400000 +1518 700 0.400000 +1518 761 0.400000 +1518 794 0.400000 +1518 798 0.400000 +1519 10 0.400000 +1519 99 0.400000 +1519 115 0.400000 +1519 139 0.400000 +1519 189 0.400000 +1519 206 0.400000 +1519 299 0.400000 +1519 380 0.400000 +1519 428 0.400000 +1519 597 0.400000 +1519 631 0.400000 +1519 643 0.400000 +1519 682 0.400000 +1520 4 0.400000 +1520 15 0.400000 +1520 44 0.400000 +1520 66 0.400000 +1520 167 0.400000 +1520 350 0.400000 +1520 409 0.400000 +1520 551 0.400000 +1520 741 0.400000 +1520 761 0.400000 +1521 50 0.400000 +1521 69 0.400000 +1521 102 0.400000 +1521 126 0.400000 +1521 158 0.400000 +1521 194 0.400000 +1521 245 0.400000 +1521 305 0.400000 +1521 312 0.400000 +1521 429 0.400000 +1521 435 0.400000 +1521 501 0.400000 +1521 507 0.400000 +1521 513 0.400000 +1521 540 0.400000 +1521 625 0.400000 +1521 690 0.400000 +1521 737 0.400000 +1521 795 0.400000 +1522 9 0.400000 +1522 21 0.400000 +1522 49 0.400000 +1522 51 0.400000 +1522 102 0.400000 +1522 123 0.400000 +1522 380 0.400000 +1522 447 0.400000 +1522 450 0.400000 +1522 490 0.400000 +1522 500 0.400000 +1522 502 0.400000 +1522 511 0.400000 +1522 720 0.400000 +1522 774 0.400000 +1522 792 0.400000 +1523 25 0.400000 +1523 27 0.400000 +1523 106 0.400000 +1523 136 0.400000 +1523 164 0.400000 +1523 250 0.400000 +1523 264 0.400000 +1523 266 0.400000 +1523 347 0.400000 +1523 365 0.400000 +1523 377 0.400000 +1523 383 0.400000 +1523 393 0.400000 +1523 433 0.400000 +1523 469 0.400000 +1523 481 0.400000 +1523 493 0.400000 +1523 500 0.400000 +1523 546 0.400000 +1523 578 0.400000 +1523 579 0.400000 +1523 711 0.400000 +1523 715 0.400000 +1523 722 0.400000 +1523 748 0.400000 +1523 781 0.400000 +1523 784 0.400000 +1523 798 0.400000 +1524 37 0.400000 +1524 79 0.400000 +1524 103 0.400000 +1524 130 0.400000 +1524 132 0.400000 +1524 166 0.400000 +1524 178 0.400000 +1524 229 0.400000 +1524 323 0.400000 +1524 329 0.400000 +1524 375 0.400000 +1524 388 0.400000 +1524 463 0.400000 +1524 469 0.400000 +1524 470 0.400000 +1524 473 0.400000 +1524 520 0.400000 +1524 567 0.400000 +1524 597 0.400000 +1524 621 0.400000 +1524 622 0.400000 +1524 691 0.400000 +1524 773 0.400000 +1524 781 0.400000 +1525 9 0.400000 +1525 253 0.400000 +1525 283 0.400000 +1525 288 0.400000 +1525 347 0.400000 +1525 361 0.400000 +1525 404 0.400000 +1525 454 0.400000 +1525 505 0.400000 +1525 554 0.400000 +1525 639 0.400000 +1525 739 0.400000 +1525 789 0.400000 +1525 791 0.400000 +1526 20 0.400000 +1526 124 0.400000 +1526 229 0.400000 +1526 248 0.400000 +1526 296 0.400000 +1526 360 0.400000 +1526 388 0.400000 +1526 401 0.400000 +1526 428 0.400000 +1526 500 0.400000 +1526 582 0.400000 +1526 626 0.400000 +1526 658 0.400000 +1526 683 0.400000 +1527 9 0.400000 +1527 29 0.400000 +1527 83 0.400000 +1527 126 0.400000 +1527 137 0.400000 +1527 194 0.400000 +1527 254 0.400000 +1527 264 0.400000 +1527 312 0.400000 +1527 320 0.400000 +1527 332 0.400000 +1527 342 0.400000 +1527 388 0.400000 +1527 404 0.400000 +1527 507 0.400000 +1527 529 0.400000 +1527 564 0.400000 +1527 627 0.400000 +1527 679 0.400000 +1527 697 0.400000 +1527 727 0.400000 +1527 732 0.400000 +1527 748 0.400000 +1528 12 0.400000 +1528 19 0.400000 +1528 52 0.400000 +1528 264 0.400000 +1528 288 0.400000 +1528 378 0.400000 +1528 389 0.400000 +1528 397 0.400000 +1528 412 0.400000 +1528 469 0.400000 +1528 570 0.400000 +1528 611 0.400000 +1528 643 0.400000 +1528 688 0.400000 +1528 703 0.400000 +1528 766 0.400000 +1529 30 0.400000 +1529 62 0.400000 +1529 88 0.400000 +1529 92 0.400000 +1529 99 0.400000 +1529 108 0.400000 +1529 139 0.400000 +1529 160 0.400000 +1529 256 0.400000 +1529 348 0.400000 +1529 397 0.400000 +1529 432 0.400000 +1529 440 0.400000 +1529 519 0.400000 +1529 533 0.400000 +1529 540 0.400000 +1529 617 0.400000 +1529 623 0.400000 +1529 692 0.400000 +1529 740 0.400000 +1530 146 0.400000 +1530 188 0.400000 +1530 213 0.400000 +1530 229 0.400000 +1530 282 0.400000 +1530 335 0.400000 +1530 342 0.400000 +1530 393 0.400000 +1530 475 0.400000 +1530 500 0.400000 +1530 510 0.400000 +1530 679 0.400000 +1530 685 0.400000 +1530 800 0.400000 +1531 15 0.400000 +1531 120 0.400000 +1531 159 0.400000 +1531 183 0.400000 +1531 204 0.400000 +1531 244 0.400000 +1531 312 0.400000 +1531 320 0.400000 +1531 387 0.400000 +1531 395 0.400000 +1531 425 0.400000 +1531 442 0.400000 +1531 478 0.400000 +1531 541 0.400000 +1531 545 0.400000 +1531 557 0.400000 +1531 620 0.400000 +1531 646 0.400000 +1531 684 0.400000 +1531 702 0.400000 +1531 709 0.400000 +1532 119 0.400000 +1532 342 0.400000 +1532 382 0.400000 +1532 707 0.400000 +1532 715 0.400000 +1533 57 0.400000 +1533 189 0.400000 +1533 458 0.400000 +1533 471 0.400000 +1533 474 0.400000 +1533 501 0.400000 +1533 535 0.400000 +1533 548 0.400000 +1533 551 0.400000 +1533 565 0.400000 +1533 592 0.400000 +1533 601 0.400000 +1533 602 0.400000 +1533 618 0.400000 +1533 677 0.400000 +1533 696 0.400000 +1533 749 0.400000 +1533 750 0.400000 +1534 99 0.400000 +1534 136 0.400000 +1534 162 0.400000 +1534 191 0.400000 +1534 223 0.400000 +1534 296 0.400000 +1534 457 0.400000 +1534 467 0.400000 +1534 485 0.400000 +1534 568 0.400000 +1534 642 0.400000 +1534 656 0.400000 +1534 694 0.400000 +1535 18 0.400000 +1535 36 0.400000 +1535 137 0.400000 +1535 219 0.400000 +1535 227 0.400000 +1535 273 0.400000 +1535 367 0.400000 +1535 405 0.400000 +1535 407 0.400000 +1535 446 0.400000 +1535 532 0.400000 +1535 558 0.400000 +1535 589 0.400000 +1535 666 0.400000 +1535 716 0.400000 +1535 751 0.400000 +1535 760 0.400000 +1536 46 0.400000 +1536 48 0.400000 +1536 145 0.400000 +1536 158 0.400000 +1536 162 0.400000 +1536 211 0.400000 +1536 292 0.400000 +1536 394 0.400000 +1536 555 0.400000 +1536 582 0.400000 +1536 593 0.400000 +1536 767 0.400000 +1537 7 0.400000 +1537 64 0.400000 +1537 77 0.400000 +1537 100 0.400000 +1537 191 0.400000 +1537 220 0.400000 +1537 259 0.400000 +1537 341 0.400000 +1537 401 0.400000 +1537 413 0.400000 +1537 440 0.400000 +1537 556 0.400000 +1537 588 0.400000 +1537 629 0.400000 +1537 662 0.400000 +1537 700 0.400000 +1537 760 0.400000 +1537 766 0.400000 +1537 778 0.400000 +1538 13 0.400000 +1538 43 0.400000 +1538 98 0.400000 +1538 139 0.400000 +1538 239 0.400000 +1538 286 0.400000 +1538 322 0.400000 +1538 434 0.400000 +1538 523 0.400000 +1538 617 0.400000 +1538 735 0.400000 +1539 91 0.400000 +1539 125 0.400000 +1539 138 0.400000 +1539 183 0.400000 +1539 216 0.400000 +1539 226 0.400000 +1539 282 0.400000 +1539 299 0.400000 +1539 394 0.400000 +1539 418 0.400000 +1539 485 0.400000 +1539 499 0.400000 +1539 629 0.400000 +1539 641 0.400000 +1539 658 0.400000 +1539 694 0.400000 +1539 711 0.400000 +1539 716 0.400000 +1539 726 0.400000 +1540 60 0.400000 +1540 77 0.400000 +1540 82 0.400000 +1540 134 0.400000 +1540 146 0.400000 +1540 179 0.400000 +1540 429 0.400000 +1540 507 0.400000 +1540 782 0.400000 +1541 79 0.400000 +1541 98 0.400000 +1541 155 0.400000 +1541 177 0.400000 +1541 227 0.400000 +1541 249 0.400000 +1541 273 0.400000 +1541 318 0.400000 +1541 323 0.400000 +1541 398 0.400000 +1541 552 0.400000 +1541 570 0.400000 +1541 580 0.400000 +1541 582 0.400000 +1541 631 0.400000 +1541 655 0.400000 +1541 662 0.400000 +1541 697 0.400000 +1542 73 0.400000 +1542 81 0.400000 +1542 157 0.400000 +1542 292 0.400000 +1542 330 0.400000 +1542 360 0.400000 +1542 422 0.400000 +1542 483 0.400000 +1542 559 0.400000 +1542 574 0.400000 +1542 688 0.400000 +1542 751 0.400000 +1543 49 0.400000 +1543 166 0.400000 +1543 305 0.400000 +1543 307 0.400000 +1543 347 0.400000 +1543 353 0.400000 +1543 448 0.400000 +1543 472 0.400000 +1543 473 0.400000 +1543 480 0.400000 +1543 499 0.400000 +1543 503 0.400000 +1543 504 0.400000 +1543 507 0.400000 +1543 510 0.400000 +1543 684 0.400000 +1543 697 0.400000 +1543 703 0.400000 +1543 713 0.400000 +1544 119 0.400000 +1544 182 0.400000 +1544 207 0.400000 +1544 275 0.400000 +1544 327 0.400000 +1544 342 0.400000 +1544 360 0.400000 +1544 379 0.400000 +1544 466 0.400000 +1544 542 0.400000 +1544 549 0.400000 +1544 551 0.400000 +1544 595 0.400000 +1544 613 0.400000 +1544 661 0.400000 +1544 666 0.400000 +1544 715 0.400000 +1544 722 0.400000 +1544 732 0.400000 +1545 68 0.400000 +1545 104 0.400000 +1545 128 0.400000 +1545 141 0.400000 +1545 148 0.400000 +1545 156 0.400000 +1545 260 0.400000 +1545 350 0.400000 +1545 421 0.400000 +1545 439 0.400000 +1545 464 0.400000 +1545 517 0.400000 +1545 634 0.400000 +1546 94 0.400000 +1546 112 0.400000 +1546 132 0.400000 +1546 134 0.400000 +1546 160 0.400000 +1546 228 0.400000 +1546 343 0.400000 +1546 353 0.400000 +1546 360 0.400000 +1546 427 0.400000 +1546 505 0.400000 +1546 646 0.400000 +1546 717 0.400000 +1546 760 0.400000 +1546 798 0.400000 +1547 27 0.400000 +1547 221 0.400000 +1547 252 0.400000 +1547 263 0.400000 +1547 294 0.400000 +1547 466 0.400000 +1547 488 0.400000 +1547 508 0.400000 +1547 629 0.400000 +1547 648 0.400000 +1547 676 0.400000 +1547 681 0.400000 +1547 779 0.400000 +1547 791 0.400000 +1548 15 0.400000 +1548 68 0.400000 +1548 100 0.400000 +1548 130 0.400000 +1548 141 0.400000 +1548 363 0.400000 +1548 457 0.400000 +1548 520 0.400000 +1548 585 0.400000 +1548 646 0.400000 +1548 649 0.400000 +1548 675 0.400000 +1548 703 0.400000 +1548 726 0.400000 +1548 749 0.400000 +1549 82 0.400000 +1549 107 0.400000 +1549 117 0.400000 +1549 131 0.400000 +1549 132 0.400000 +1549 147 0.400000 +1549 164 0.400000 +1549 190 0.400000 +1549 239 0.400000 +1549 265 0.400000 +1549 268 0.400000 +1549 390 0.400000 +1549 411 0.400000 +1549 504 0.400000 +1549 535 0.400000 +1549 572 0.400000 +1549 613 0.400000 +1549 650 0.400000 +1549 652 0.400000 +1549 714 0.400000 +1549 771 0.400000 +1550 18 0.400000 +1550 42 0.400000 +1550 92 0.400000 +1550 99 0.400000 +1550 155 0.400000 +1550 167 0.400000 +1550 181 0.400000 +1550 228 0.400000 +1550 335 0.400000 +1550 439 0.400000 +1550 454 0.400000 +1550 465 0.400000 +1550 579 0.400000 +1550 724 0.400000 +1550 769 0.400000 +1551 174 0.400000 +1551 237 0.400000 +1551 484 0.400000 +1551 520 0.400000 +1551 524 0.400000 +1551 565 0.400000 +1551 603 0.400000 +1551 786 0.400000 +1551 795 0.400000 +1552 48 0.400000 +1552 147 0.400000 +1552 196 0.400000 +1552 222 0.400000 +1552 225 0.400000 +1552 290 0.400000 +1552 320 0.400000 +1552 354 0.400000 +1552 380 0.400000 +1552 381 0.400000 +1552 424 0.400000 +1552 432 0.400000 +1552 459 0.400000 +1552 470 0.400000 +1552 520 0.400000 +1552 573 0.400000 +1552 621 0.400000 +1552 674 0.400000 +1552 683 0.400000 +1552 703 0.400000 +1553 13 0.400000 +1553 20 0.400000 +1553 79 0.400000 +1553 93 0.400000 +1553 104 0.400000 +1553 108 0.400000 +1553 115 0.400000 +1553 147 0.400000 +1553 200 0.400000 +1553 213 0.400000 +1553 307 0.400000 +1553 359 0.400000 +1553 382 0.400000 +1553 391 0.400000 +1553 527 0.400000 +1553 654 0.400000 +1553 673 0.400000 +1553 737 0.400000 +1553 746 0.400000 +1553 781 0.400000 +1554 65 0.400000 +1554 268 0.400000 +1554 278 0.400000 +1554 298 0.400000 +1554 409 0.400000 +1554 454 0.400000 +1554 546 0.400000 +1554 605 0.400000 +1554 607 0.400000 +1554 765 0.400000 +1554 768 0.400000 +1555 1 0.400000 +1555 4 0.400000 +1555 36 0.400000 +1555 235 0.400000 +1555 273 0.400000 +1555 339 0.400000 +1555 340 0.400000 +1555 457 0.400000 +1555 492 0.400000 +1555 501 0.400000 +1555 576 0.400000 +1555 603 0.400000 +1555 614 0.400000 +1555 688 0.400000 +1555 713 0.400000 +1555 766 0.400000 +1556 93 0.400000 +1556 140 0.400000 +1556 190 0.400000 +1556 192 0.400000 +1556 223 0.400000 +1556 241 0.400000 +1556 286 0.400000 +1556 330 0.400000 +1556 422 0.400000 +1556 442 0.400000 +1556 465 0.400000 +1556 483 0.400000 +1556 498 0.400000 +1556 503 0.400000 +1556 516 0.400000 +1556 543 0.400000 +1556 678 0.400000 +1556 724 0.400000 +1556 762 0.400000 +1556 787 0.400000 +1557 95 0.400000 +1557 146 0.400000 +1557 227 0.400000 +1557 257 0.400000 +1557 312 0.400000 +1557 366 0.400000 +1557 619 0.400000 +1557 747 0.400000 +1558 108 0.400000 +1558 198 0.400000 +1558 261 0.400000 +1558 330 0.400000 +1558 351 0.400000 +1558 352 0.400000 +1558 421 0.400000 +1558 443 0.400000 +1558 444 0.400000 +1558 501 0.400000 +1558 533 0.400000 +1558 686 0.400000 +1558 725 0.400000 +1558 727 0.400000 +1558 742 0.400000 +1558 766 0.400000 +1559 247 0.400000 +1559 281 0.400000 +1559 327 0.400000 +1559 434 0.400000 +1559 529 0.400000 +1559 602 0.400000 +1559 756 0.400000 +1559 764 0.400000 +1559 776 0.400000 +1560 138 0.400000 +1560 145 0.400000 +1560 216 0.400000 +1560 250 0.400000 +1560 336 0.400000 +1560 349 0.400000 +1560 521 0.400000 +1560 523 0.400000 +1560 605 0.400000 +1560 675 0.400000 +1560 709 0.400000 +1561 63 0.400000 +1561 154 0.400000 +1561 225 0.400000 +1561 237 0.400000 +1561 271 0.400000 +1561 296 0.400000 +1561 301 0.400000 +1561 347 0.400000 +1561 380 0.400000 +1561 395 0.400000 +1561 446 0.400000 +1561 474 0.400000 +1561 480 0.400000 +1561 487 0.400000 +1561 601 0.400000 +1561 684 0.400000 +1561 715 0.400000 +1561 772 0.400000 +1562 6 0.400000 +1562 38 0.400000 +1562 67 0.400000 +1562 107 0.400000 +1562 231 0.400000 +1562 238 0.400000 +1562 289 0.400000 +1562 290 0.400000 +1562 306 0.400000 +1562 514 0.400000 +1562 519 0.400000 +1562 594 0.400000 +1562 679 0.400000 +1562 722 0.400000 +1562 757 0.400000 +1562 762 0.400000 +1563 44 0.400000 +1563 49 0.400000 +1563 83 0.400000 +1563 109 0.400000 +1563 184 0.400000 +1563 225 0.400000 +1563 240 0.400000 +1563 249 0.400000 +1563 260 0.400000 +1563 325 0.400000 +1563 356 0.400000 +1563 454 0.400000 +1563 464 0.400000 +1563 465 0.400000 +1563 482 0.400000 +1563 525 0.400000 +1563 756 0.400000 +1563 767 0.400000 +1564 10 0.400000 +1564 25 0.400000 +1564 30 0.400000 +1564 214 0.400000 +1564 230 0.400000 +1564 325 0.400000 +1564 467 0.400000 +1564 472 0.400000 +1564 476 0.400000 +1564 511 0.400000 +1564 513 0.400000 +1564 605 0.400000 +1564 623 0.400000 +1564 644 0.400000 +1564 713 0.400000 +1565 10 0.400000 +1565 12 0.400000 +1565 150 0.400000 +1565 253 0.400000 +1565 284 0.400000 +1565 340 0.400000 +1565 406 0.400000 +1565 505 0.400000 +1565 512 0.400000 +1565 590 0.400000 +1565 612 0.400000 +1565 668 0.400000 +1565 714 0.400000 +1565 733 0.400000 +1565 765 0.400000 +1565 776 0.400000 +1566 57 0.400000 +1566 267 0.400000 +1566 353 0.400000 +1566 401 0.400000 +1566 463 0.400000 +1566 480 0.400000 +1566 535 0.400000 +1566 555 0.400000 +1566 654 0.400000 +1566 671 0.400000 +1566 706 0.400000 +1566 748 0.400000 +1566 763 0.400000 +1567 16 0.400000 +1567 51 0.400000 +1567 142 0.400000 +1567 160 0.400000 +1567 266 0.400000 +1567 302 0.400000 +1567 303 0.400000 +1567 351 0.400000 +1567 503 0.400000 +1567 519 0.400000 +1567 525 0.400000 +1567 572 0.400000 +1567 658 0.400000 +1567 684 0.400000 +1568 66 0.400000 +1568 81 0.400000 +1568 127 0.400000 +1568 184 0.400000 +1568 205 0.400000 +1568 215 0.400000 +1568 309 0.400000 +1568 317 0.400000 +1568 355 0.400000 +1568 437 0.400000 +1568 492 0.400000 +1568 710 0.400000 +1568 735 0.400000 +1568 752 0.400000 +1568 770 0.400000 +1568 790 0.400000 +1568 796 0.400000 +1569 69 0.400000 +1569 141 0.400000 +1569 177 0.400000 +1569 279 0.400000 +1569 314 0.400000 +1569 343 0.400000 +1569 345 0.400000 +1569 386 0.400000 +1569 406 0.400000 +1569 477 0.400000 +1569 499 0.400000 +1569 615 0.400000 +1569 664 0.400000 +1569 670 0.400000 +1569 710 0.400000 +1569 728 0.400000 +1569 733 0.400000 +1569 738 0.400000 +1569 794 0.400000 +1570 10 0.400000 +1570 31 0.400000 +1570 132 0.400000 +1570 168 0.400000 +1570 213 0.400000 +1570 260 0.400000 +1570 373 0.400000 +1570 424 0.400000 +1570 458 0.400000 +1570 550 0.400000 +1570 561 0.400000 +1570 584 0.400000 +1570 599 0.400000 +1570 602 0.400000 +1570 626 0.400000 +1570 713 0.400000 +1570 719 0.400000 +1571 152 0.400000 +1571 154 0.400000 +1571 171 0.400000 +1571 172 0.400000 +1571 244 0.400000 +1571 430 0.400000 +1571 483 0.400000 +1571 516 0.400000 +1571 641 0.400000 +1571 666 0.400000 +1571 712 0.400000 +1571 714 0.400000 +1572 64 0.400000 +1572 80 0.400000 +1572 106 0.400000 +1572 118 0.400000 +1572 120 0.400000 +1572 161 0.400000 +1572 238 0.400000 +1572 250 0.400000 +1572 270 0.400000 +1572 305 0.400000 +1572 345 0.400000 +1572 355 0.400000 +1572 439 0.400000 +1572 448 0.400000 +1572 488 0.400000 +1572 546 0.400000 +1572 703 0.400000 +1572 706 0.400000 +1573 13 0.400000 +1573 25 0.400000 +1573 65 0.400000 +1573 68 0.400000 +1573 231 0.400000 +1573 242 0.400000 +1573 266 0.400000 +1573 275 0.400000 +1573 304 0.400000 +1573 308 0.400000 +1573 334 0.400000 +1573 389 0.400000 +1573 410 0.400000 +1573 419 0.400000 +1573 436 0.400000 +1573 442 0.400000 +1573 524 0.400000 +1573 580 0.400000 +1573 727 0.400000 +1573 767 0.400000 +1573 795 0.400000 +1574 180 0.400000 +1574 210 0.400000 +1574 286 0.400000 +1574 532 0.400000 +1574 536 0.400000 +1574 553 0.400000 +1574 555 0.400000 +1574 599 0.400000 +1574 611 0.400000 +1574 725 0.400000 +1574 729 0.400000 +1574 731 0.400000 +1574 737 0.400000 +1575 10 0.400000 +1575 46 0.400000 +1575 215 0.400000 +1575 289 0.400000 +1575 313 0.400000 +1575 487 0.400000 +1575 505 0.400000 +1575 561 0.400000 +1575 652 0.400000 +1575 658 0.400000 +1575 688 0.400000 +1575 728 0.400000 +1575 778 0.400000 +1575 780 0.400000 +1575 789 0.400000 +1576 22 0.400000 +1576 92 0.400000 +1576 100 0.400000 +1576 106 0.400000 +1576 391 0.400000 +1576 450 0.400000 +1576 518 0.400000 +1576 559 0.400000 +1577 4 0.400000 +1577 24 0.400000 +1577 37 0.400000 +1577 56 0.400000 +1577 160 0.400000 +1577 170 0.400000 +1577 193 0.400000 +1577 239 0.400000 +1577 305 0.400000 +1577 414 0.400000 +1577 446 0.400000 +1577 483 0.400000 +1577 503 0.400000 +1577 672 0.400000 +1577 729 0.400000 +1578 28 0.400000 +1578 255 0.400000 +1578 347 0.400000 +1578 370 0.400000 +1578 408 0.400000 +1578 476 0.400000 +1578 513 0.400000 +1578 591 0.400000 +1578 611 0.400000 +1578 711 0.400000 +1578 737 0.400000 +1578 748 0.400000 +1579 23 0.400000 +1579 34 0.400000 +1579 64 0.400000 +1579 119 0.400000 +1579 151 0.400000 +1579 269 0.400000 +1579 292 0.400000 +1579 320 0.400000 +1579 457 0.400000 +1579 506 0.400000 +1579 598 0.400000 +1579 652 0.400000 +1579 719 0.400000 +1579 726 0.400000 +1579 745 0.400000 +1579 784 0.400000 +1580 20 0.400000 +1580 91 0.400000 +1580 119 0.400000 +1580 136 0.400000 +1580 146 0.400000 +1580 212 0.400000 +1580 238 0.400000 +1580 275 0.400000 +1580 297 0.400000 +1580 325 0.400000 +1580 450 0.400000 +1580 467 0.400000 +1580 482 0.400000 +1580 510 0.400000 +1580 597 0.400000 +1580 628 0.400000 +1580 636 0.400000 +1580 657 0.400000 +1580 704 0.400000 +1580 719 0.400000 +1580 727 0.400000 +1580 753 0.400000 +1580 768 0.400000 +1581 45 0.400000 +1581 98 0.400000 +1581 145 0.400000 +1581 153 0.400000 +1581 244 0.400000 +1581 270 0.400000 +1581 327 0.400000 +1581 394 0.400000 +1581 458 0.400000 +1581 469 0.400000 +1581 561 0.400000 +1581 654 0.400000 +1581 662 0.400000 +1581 794 0.400000 +1582 57 0.400000 +1582 58 0.400000 +1582 69 0.400000 +1582 126 0.400000 +1582 157 0.400000 +1582 211 0.400000 +1582 229 0.400000 +1582 306 0.400000 +1582 309 0.400000 +1582 324 0.400000 +1582 325 0.400000 +1582 353 0.400000 +1582 449 0.400000 +1582 474 0.400000 +1582 482 0.400000 +1582 489 0.400000 +1582 510 0.400000 +1582 646 0.400000 +1582 669 0.400000 +1582 677 0.400000 +1582 722 0.400000 +1582 752 0.400000 +1582 765 0.400000 +1582 775 0.400000 +1583 9 0.400000 +1583 76 0.400000 +1583 102 0.400000 +1583 136 0.400000 +1583 155 0.400000 +1583 250 0.400000 +1583 287 0.400000 +1583 399 0.400000 +1583 568 0.400000 +1583 672 0.400000 +1583 695 0.400000 +1583 705 0.400000 +1583 722 0.400000 +1583 747 0.400000 +1584 17 0.400000 +1584 108 0.400000 +1584 116 0.400000 +1584 132 0.400000 +1584 148 0.400000 +1584 185 0.400000 +1584 212 0.400000 +1584 223 0.400000 +1584 225 0.400000 +1584 226 0.400000 +1584 247 0.400000 +1584 326 0.400000 +1584 465 0.400000 +1584 570 0.400000 +1584 624 0.400000 +1584 706 0.400000 +1585 30 0.400000 +1585 94 0.400000 +1585 108 0.400000 +1585 114 0.400000 +1585 172 0.400000 +1585 207 0.400000 +1585 275 0.400000 +1585 283 0.400000 +1585 296 0.400000 +1585 334 0.400000 +1585 394 0.400000 +1585 413 0.400000 +1585 484 0.400000 +1585 508 0.400000 +1585 536 0.400000 +1585 554 0.400000 +1585 583 0.400000 +1585 599 0.400000 +1585 615 0.400000 +1585 620 0.400000 +1585 686 0.400000 +1585 773 0.400000 +1585 774 0.400000 +1586 9 0.400000 +1586 48 0.400000 +1586 56 0.400000 +1586 59 0.400000 +1586 79 0.400000 +1586 107 0.400000 +1586 174 0.400000 +1586 204 0.400000 +1586 286 0.400000 +1586 354 0.400000 +1586 377 0.400000 +1586 385 0.400000 +1586 390 0.400000 +1586 433 0.400000 +1586 457 0.400000 +1586 480 0.400000 +1586 510 0.400000 +1586 550 0.400000 +1586 692 0.400000 +1587 9 0.400000 +1587 23 0.400000 +1587 100 0.400000 +1587 102 0.400000 +1587 105 0.400000 +1587 113 0.400000 +1587 134 0.400000 +1587 164 0.400000 +1587 216 0.400000 +1587 284 0.400000 +1587 300 0.400000 +1587 386 0.400000 +1587 439 0.400000 +1587 589 0.400000 +1587 616 0.400000 +1587 688 0.400000 +1587 711 0.400000 +1588 114 0.400000 +1588 135 0.400000 +1588 143 0.400000 +1588 158 0.400000 +1588 179 0.400000 +1588 187 0.400000 +1588 236 0.400000 +1588 237 0.400000 +1588 489 0.400000 +1588 508 0.400000 +1588 583 0.400000 +1588 673 0.400000 +1588 709 0.400000 +1588 728 0.400000 +1588 791 0.400000 +1589 5 0.400000 +1589 27 0.400000 +1589 29 0.400000 +1589 69 0.400000 +1589 74 0.400000 +1589 91 0.400000 +1589 95 0.400000 +1589 129 0.400000 +1589 134 0.400000 +1589 157 0.400000 +1589 187 0.400000 +1589 206 0.400000 +1589 291 0.400000 +1589 424 0.400000 +1589 523 0.400000 +1589 594 0.400000 +1589 624 0.400000 +1589 632 0.400000 +1589 636 0.400000 +1589 732 0.400000 +1590 43 0.400000 +1590 56 0.400000 +1590 97 0.400000 +1590 105 0.400000 +1590 206 0.400000 +1590 212 0.400000 +1590 289 0.400000 +1590 331 0.400000 +1590 335 0.400000 +1590 402 0.400000 +1590 440 0.400000 +1590 441 0.400000 +1590 541 0.400000 +1590 590 0.400000 +1590 633 0.400000 +1591 4 0.400000 +1591 23 0.400000 +1591 125 0.400000 +1591 126 0.400000 +1591 198 0.400000 +1591 318 0.400000 +1591 372 0.400000 +1591 476 0.400000 +1591 482 0.400000 +1591 495 0.400000 +1591 559 0.400000 +1591 574 0.400000 +1591 667 0.400000 +1591 712 0.400000 +1591 715 0.400000 +1592 196 0.400000 +1592 266 0.400000 +1592 312 0.400000 +1592 382 0.400000 +1592 406 0.400000 +1592 418 0.400000 +1592 445 0.400000 +1592 484 0.400000 +1592 514 0.400000 +1592 600 0.400000 +1592 614 0.400000 +1592 727 0.400000 +1592 747 0.400000 +1592 789 0.400000 +1593 19 0.400000 +1593 31 0.400000 +1593 103 0.400000 +1593 181 0.400000 +1593 182 0.400000 +1593 294 0.400000 +1593 339 0.400000 +1593 373 0.400000 +1593 433 0.400000 +1593 460 0.400000 +1593 468 0.400000 +1593 487 0.400000 +1593 570 0.400000 +1593 590 0.400000 +1593 625 0.400000 +1594 57 0.400000 +1594 101 0.400000 +1594 145 0.400000 +1594 220 0.400000 +1594 315 0.400000 +1594 372 0.400000 +1594 565 0.400000 +1594 571 0.400000 +1594 605 0.400000 +1594 607 0.400000 +1594 680 0.400000 +1594 765 0.400000 +1595 47 0.400000 +1595 62 0.400000 +1595 67 0.400000 +1595 140 0.400000 +1595 145 0.400000 +1595 190 0.400000 +1595 201 0.400000 +1595 205 0.400000 +1595 218 0.400000 +1595 271 0.400000 +1595 319 0.400000 +1595 378 0.400000 +1595 435 0.400000 +1595 473 0.400000 +1595 599 0.400000 +1595 602 0.400000 +1595 604 0.400000 +1595 614 0.400000 +1595 636 0.400000 +1595 742 0.400000 +1595 761 0.400000 +1595 797 0.400000 +1596 85 0.400000 +1596 133 0.400000 +1596 153 0.400000 +1596 179 0.400000 +1596 201 0.400000 +1596 284 0.400000 +1596 423 0.400000 +1596 450 0.400000 +1596 557 0.400000 +1596 601 0.400000 +1597 9 0.400000 +1597 40 0.400000 +1597 53 0.400000 +1597 94 0.400000 +1597 138 0.400000 +1597 157 0.400000 +1597 328 0.400000 +1597 424 0.400000 +1597 473 0.400000 +1597 520 0.400000 +1597 546 0.400000 +1597 629 0.400000 +1597 706 0.400000 +1597 764 0.400000 +1598 3 0.400000 +1598 47 0.400000 +1598 83 0.400000 +1598 142 0.400000 +1598 144 0.400000 +1598 190 0.400000 +1598 231 0.400000 +1598 289 0.400000 +1598 303 0.400000 +1598 306 0.400000 +1598 331 0.400000 +1598 352 0.400000 +1598 394 0.400000 +1598 410 0.400000 +1598 492 0.400000 +1598 553 0.400000 +1598 572 0.400000 +1598 576 0.400000 +1598 638 0.400000 +1598 643 0.400000 +1598 694 0.400000 +1598 719 0.400000 +1599 6 0.400000 +1599 7 0.400000 +1599 26 0.400000 +1599 41 0.400000 +1599 42 0.400000 +1599 95 0.400000 +1599 96 0.400000 +1599 137 0.400000 +1599 351 0.400000 +1599 365 0.400000 +1599 438 0.400000 +1599 480 0.400000 +1599 510 0.400000 +1599 593 0.400000 +1599 623 0.400000 +1599 724 0.400000 +1600 24 0.400000 +1600 131 0.400000 +1600 156 0.400000 +1600 466 0.400000 +1600 555 0.400000 +1600 749 0.400000 +1600 767 0.400000 +1601 14 0.400000 +1601 43 0.400000 +1601 55 0.400000 +1601 102 0.400000 +1601 117 0.400000 +1601 120 0.400000 +1601 204 0.400000 +1601 205 0.400000 +1601 265 0.400000 +1601 295 0.400000 +1601 303 0.400000 +1601 367 0.400000 +1601 395 0.400000 +1601 468 0.400000 +1601 497 0.400000 +1601 508 0.400000 +1601 620 0.400000 +1601 646 0.400000 +1601 785 0.400000 +1602 22 0.400000 +1602 75 0.400000 +1602 76 0.400000 +1602 81 0.400000 +1602 202 0.400000 +1602 281 0.400000 +1602 319 0.400000 +1602 380 0.400000 +1602 419 0.400000 +1602 458 0.400000 +1602 465 0.400000 +1602 554 0.400000 +1602 650 0.400000 +1602 763 0.400000 +1603 36 0.400000 +1603 46 0.400000 +1603 187 0.400000 +1603 240 0.400000 +1603 289 0.400000 +1603 301 0.400000 +1603 324 0.400000 +1603 355 0.400000 +1603 384 0.400000 +1603 414 0.400000 +1603 433 0.400000 +1603 469 0.400000 +1603 531 0.400000 +1603 591 0.400000 +1603 592 0.400000 +1603 674 0.400000 +1603 743 0.400000 +1603 758 0.400000 +1603 788 0.400000 +1603 800 0.400000 +1604 51 0.400000 +1604 116 0.400000 +1604 266 0.400000 +1604 276 0.400000 +1604 350 0.400000 +1604 376 0.400000 +1604 396 0.400000 +1604 570 0.400000 +1604 584 0.400000 +1604 677 0.400000 +1604 712 0.400000 +1604 797 0.400000 +1605 31 0.400000 +1605 48 0.400000 +1605 53 0.400000 +1605 55 0.400000 +1605 62 0.400000 +1605 225 0.400000 +1605 252 0.400000 +1605 258 0.400000 +1605 289 0.400000 +1605 337 0.400000 +1605 439 0.400000 +1605 449 0.400000 +1605 533 0.400000 +1605 626 0.400000 +1605 663 0.400000 +1605 740 0.400000 +1605 771 0.400000 +1606 100 0.400000 +1606 124 0.400000 +1606 319 0.400000 +1606 337 0.400000 +1606 469 0.400000 +1606 557 0.400000 +1606 703 0.400000 +1606 758 0.400000 +1607 4 0.400000 +1607 17 0.400000 +1607 62 0.400000 +1607 112 0.400000 +1607 138 0.400000 +1607 157 0.400000 +1607 211 0.400000 +1607 312 0.400000 +1607 435 0.400000 +1607 446 0.400000 +1607 531 0.400000 +1607 542 0.400000 +1607 591 0.400000 +1607 612 0.400000 +1607 622 0.400000 +1607 691 0.400000 +1607 715 0.400000 +1607 746 0.400000 +1608 28 0.400000 +1608 114 0.400000 +1608 138 0.400000 +1608 146 0.400000 +1608 177 0.400000 +1608 211 0.400000 +1608 237 0.400000 +1608 263 0.400000 +1608 282 0.400000 +1608 296 0.400000 +1608 354 0.400000 +1608 673 0.400000 +1608 720 0.400000 +1608 756 0.400000 +1608 780 0.400000 +1608 784 0.400000 +1608 794 0.400000 +1609 4 0.400000 +1609 53 0.400000 +1609 74 0.400000 +1609 80 0.400000 +1609 93 0.400000 +1609 163 0.400000 +1609 200 0.400000 +1609 285 0.400000 +1609 306 0.400000 +1609 322 0.400000 +1609 346 0.400000 +1609 374 0.400000 +1609 396 0.400000 +1609 406 0.400000 +1609 502 0.400000 +1609 531 0.400000 +1609 533 0.400000 +1609 571 0.400000 +1609 610 0.400000 +1609 629 0.400000 +1609 672 0.400000 +1610 74 0.400000 +1610 91 0.400000 +1610 151 0.400000 +1610 322 0.400000 +1610 352 0.400000 +1610 417 0.400000 +1610 450 0.400000 +1610 576 0.400000 +1610 656 0.400000 +1610 674 0.400000 +1610 718 0.400000 +1610 734 0.400000 +1610 738 0.400000 +1610 742 0.400000 +1610 749 0.400000 +1611 3 0.400000 +1611 65 0.400000 +1611 87 0.400000 +1611 153 0.400000 +1611 240 0.400000 +1611 266 0.400000 +1611 292 0.400000 +1611 425 0.400000 +1611 443 0.400000 +1611 464 0.400000 +1611 472 0.400000 +1611 506 0.400000 +1611 515 0.400000 +1611 572 0.400000 +1611 590 0.400000 +1611 624 0.400000 +1611 630 0.400000 +1611 684 0.400000 +1611 699 0.400000 +1612 20 0.400000 +1612 167 0.400000 +1612 178 0.400000 +1612 182 0.400000 +1612 300 0.400000 +1612 320 0.400000 +1612 334 0.400000 +1612 344 0.400000 +1612 446 0.400000 +1612 462 0.400000 +1612 544 0.400000 +1612 671 0.400000 +1612 732 0.400000 +1612 750 0.400000 +1613 135 0.400000 +1613 178 0.400000 +1613 267 0.400000 +1613 292 0.400000 +1613 301 0.400000 +1613 317 0.400000 +1613 342 0.400000 +1613 381 0.400000 +1613 410 0.400000 +1613 464 0.400000 +1613 517 0.400000 +1613 545 0.400000 +1613 598 0.400000 +1613 664 0.400000 +1613 741 0.400000 +1614 83 0.400000 +1614 120 0.400000 +1614 154 0.400000 +1614 194 0.400000 +1614 293 0.400000 +1614 363 0.400000 +1614 434 0.400000 +1614 490 0.400000 +1614 566 0.400000 +1614 613 0.400000 +1614 631 0.400000 +1614 648 0.400000 +1614 759 0.400000 +1615 29 0.400000 +1615 37 0.400000 +1615 91 0.400000 +1615 103 0.400000 +1615 136 0.400000 +1615 192 0.400000 +1615 226 0.400000 +1615 256 0.400000 +1615 482 0.400000 +1615 506 0.400000 +1615 577 0.400000 +1615 604 0.400000 +1615 620 0.400000 +1615 759 0.400000 +1615 793 0.400000 +1616 2 0.400000 +1616 21 0.400000 +1616 65 0.400000 +1616 181 0.400000 +1616 204 0.400000 +1616 354 0.400000 +1616 386 0.400000 +1616 395 0.400000 +1616 470 0.400000 +1616 510 0.400000 +1616 518 0.400000 +1616 537 0.400000 +1616 673 0.400000 +1616 702 0.400000 +1616 728 0.400000 +1617 27 0.400000 +1617 65 0.400000 +1617 84 0.400000 +1617 95 0.400000 +1617 107 0.400000 +1617 128 0.400000 +1617 134 0.400000 +1617 171 0.400000 +1617 183 0.400000 +1617 220 0.400000 +1617 246 0.400000 +1617 400 0.400000 +1617 429 0.400000 +1617 475 0.400000 +1617 482 0.400000 +1617 520 0.400000 +1617 593 0.400000 +1618 124 0.400000 +1618 317 0.400000 +1618 381 0.400000 +1618 408 0.400000 +1618 412 0.400000 +1618 419 0.400000 +1618 445 0.400000 +1618 500 0.400000 +1618 544 0.400000 +1618 602 0.400000 +1618 699 0.400000 +1618 771 0.400000 +1619 32 0.400000 +1619 50 0.400000 +1619 61 0.400000 +1619 70 0.400000 +1619 104 0.400000 +1619 265 0.400000 +1619 408 0.400000 +1619 488 0.400000 +1619 581 0.400000 +1619 632 0.400000 +1619 645 0.400000 +1619 682 0.400000 +1619 699 0.400000 +1619 714 0.400000 +1620 140 0.400000 +1620 159 0.400000 +1620 226 0.400000 +1620 255 0.400000 +1620 260 0.400000 +1620 292 0.400000 +1620 293 0.400000 +1620 337 0.400000 +1620 400 0.400000 +1620 439 0.400000 +1620 475 0.400000 +1620 499 0.400000 +1620 516 0.400000 +1620 524 0.400000 +1620 551 0.400000 +1620 572 0.400000 +1620 576 0.400000 +1620 743 0.400000 +1621 20 0.400000 +1621 267 0.400000 +1621 270 0.400000 +1621 296 0.400000 +1621 374 0.400000 +1621 377 0.400000 +1621 381 0.400000 +1621 460 0.400000 +1621 494 0.400000 +1621 594 0.400000 +1621 646 0.400000 +1621 678 0.400000 +1621 725 0.400000 +1621 763 0.400000 +1621 793 0.400000 +1622 4 0.400000 +1622 50 0.400000 +1622 81 0.400000 +1622 107 0.400000 +1622 122 0.400000 +1622 124 0.400000 +1622 149 0.400000 +1622 201 0.400000 +1622 207 0.400000 +1622 270 0.400000 +1622 297 0.400000 +1622 322 0.400000 +1622 333 0.400000 +1622 372 0.400000 +1622 380 0.400000 +1622 398 0.400000 +1622 480 0.400000 +1622 578 0.400000 +1622 605 0.400000 +1622 766 0.400000 +1623 11 0.400000 +1623 14 0.400000 +1623 114 0.400000 +1623 140 0.400000 +1623 145 0.400000 +1623 163 0.400000 +1623 212 0.400000 +1623 229 0.400000 +1623 238 0.400000 +1623 256 0.400000 +1623 280 0.400000 +1623 293 0.400000 +1623 367 0.400000 +1623 368 0.400000 +1623 398 0.400000 +1623 445 0.400000 +1623 495 0.400000 +1623 573 0.400000 +1623 663 0.400000 +1623 758 0.400000 +1623 781 0.400000 +1623 795 0.400000 +1624 30 0.400000 +1624 109 0.400000 +1624 187 0.400000 +1624 251 0.400000 +1624 276 0.400000 +1624 280 0.400000 +1624 327 0.400000 +1624 333 0.400000 +1624 341 0.400000 +1624 347 0.400000 +1624 380 0.400000 +1624 381 0.400000 +1624 484 0.400000 +1624 488 0.400000 +1624 544 0.400000 +1624 585 0.400000 +1624 686 0.400000 +1624 702 0.400000 +1624 713 0.400000 +1624 716 0.400000 +1625 112 0.400000 +1625 286 0.400000 +1625 288 0.400000 +1625 305 0.400000 +1625 323 0.400000 +1625 353 0.400000 +1625 399 0.400000 +1625 424 0.400000 +1625 433 0.400000 +1625 434 0.400000 +1625 486 0.400000 +1625 503 0.400000 +1625 536 0.400000 +1625 618 0.400000 +1625 642 0.400000 +1625 656 0.400000 +1625 689 0.400000 +1625 728 0.400000 +1625 779 0.400000 +1626 33 0.400000 +1626 185 0.400000 +1626 225 0.400000 +1626 235 0.400000 +1626 254 0.400000 +1626 268 0.400000 +1626 331 0.400000 +1626 366 0.400000 +1626 379 0.400000 +1626 388 0.400000 +1626 466 0.400000 +1626 673 0.400000 +1626 691 0.400000 +1626 694 0.400000 +1626 795 0.400000 +1627 23 0.400000 +1627 48 0.400000 +1627 51 0.400000 +1627 81 0.400000 +1627 159 0.400000 +1627 220 0.400000 +1627 228 0.400000 +1627 409 0.400000 +1627 530 0.400000 +1627 540 0.400000 +1627 620 0.400000 +1627 629 0.400000 +1627 665 0.400000 +1627 677 0.400000 +1628 201 0.400000 +1628 263 0.400000 +1628 300 0.400000 +1628 307 0.400000 +1628 334 0.400000 +1628 392 0.400000 +1628 422 0.400000 +1628 480 0.400000 +1628 516 0.400000 +1628 572 0.400000 +1628 591 0.400000 +1628 624 0.400000 +1628 718 0.400000 +1629 100 0.400000 +1629 229 0.400000 +1629 253 0.400000 +1629 344 0.400000 +1629 346 0.400000 +1629 408 0.400000 +1629 441 0.400000 +1629 483 0.400000 +1629 533 0.400000 +1629 534 0.400000 +1629 655 0.400000 +1630 13 0.400000 +1630 16 0.400000 +1630 157 0.400000 +1630 162 0.400000 +1630 203 0.400000 +1630 272 0.400000 +1630 343 0.400000 +1630 348 0.400000 +1630 353 0.400000 +1630 383 0.400000 +1630 452 0.400000 +1630 462 0.400000 +1630 497 0.400000 +1630 543 0.400000 +1630 558 0.400000 +1630 575 0.400000 +1630 598 0.400000 +1630 641 0.400000 +1630 662 0.400000 +1630 714 0.400000 +1631 180 0.400000 +1631 331 0.400000 +1631 357 0.400000 +1631 374 0.400000 +1631 405 0.400000 +1631 417 0.400000 +1631 429 0.400000 +1631 504 0.400000 +1631 543 0.400000 +1631 566 0.400000 +1631 631 0.400000 +1631 704 0.400000 +1632 83 0.400000 +1632 100 0.400000 +1632 184 0.400000 +1632 236 0.400000 +1632 300 0.400000 +1632 335 0.400000 +1632 350 0.400000 +1632 355 0.400000 +1632 384 0.400000 +1632 433 0.400000 +1632 524 0.400000 +1632 545 0.400000 +1632 712 0.400000 +1632 786 0.400000 +1633 32 0.400000 +1633 78 0.400000 +1633 123 0.400000 +1633 166 0.400000 +1633 179 0.400000 +1633 196 0.400000 +1633 197 0.400000 +1633 211 0.400000 +1633 279 0.400000 +1633 370 0.400000 +1633 383 0.400000 +1633 403 0.400000 +1633 410 0.400000 +1633 427 0.400000 +1633 429 0.400000 +1633 461 0.400000 +1633 510 0.400000 +1633 545 0.400000 +1633 549 0.400000 +1633 571 0.400000 +1633 624 0.400000 +1634 23 0.400000 +1634 116 0.400000 +1634 136 0.400000 +1634 301 0.400000 +1634 337 0.400000 +1634 339 0.400000 +1634 369 0.400000 +1634 457 0.400000 +1634 525 0.400000 +1634 598 0.400000 +1634 610 0.400000 +1634 778 0.400000 +1635 5 0.400000 +1635 38 0.400000 +1635 74 0.400000 +1635 96 0.400000 +1635 331 0.400000 +1635 351 0.400000 +1635 374 0.400000 +1635 394 0.400000 +1635 430 0.400000 +1635 433 0.400000 +1635 467 0.400000 +1635 471 0.400000 +1635 553 0.400000 +1635 565 0.400000 +1635 574 0.400000 +1635 716 0.400000 +1636 4 0.400000 +1636 49 0.400000 +1636 70 0.400000 +1636 181 0.400000 +1636 186 0.400000 +1636 213 0.400000 +1636 217 0.400000 +1636 226 0.400000 +1636 228 0.400000 +1636 240 0.400000 +1636 321 0.400000 +1636 365 0.400000 +1636 366 0.400000 +1636 383 0.400000 +1636 422 0.400000 +1636 615 0.400000 +1636 620 0.400000 +1636 655 0.400000 +1636 718 0.400000 +1636 739 0.400000 +1636 746 0.400000 +1637 43 0.400000 +1637 81 0.400000 +1637 120 0.400000 +1637 158 0.400000 +1637 182 0.400000 +1637 207 0.400000 +1637 300 0.400000 +1637 423 0.400000 +1637 503 0.400000 +1637 706 0.400000 +1637 723 0.400000 +1637 740 0.400000 +1637 786 0.400000 +1638 110 0.400000 +1638 138 0.400000 +1638 181 0.400000 +1638 337 0.400000 +1638 356 0.400000 +1638 357 0.400000 +1638 371 0.400000 +1638 413 0.400000 +1638 565 0.400000 +1638 571 0.400000 +1638 602 0.400000 +1638 688 0.400000 +1638 785 0.400000 +1638 789 0.400000 +1638 791 0.400000 +1639 78 0.400000 +1639 194 0.400000 +1639 324 0.400000 +1639 377 0.400000 +1639 432 0.400000 +1639 453 0.400000 +1639 454 0.400000 +1639 471 0.400000 +1639 514 0.400000 +1639 534 0.400000 +1639 565 0.400000 +1639 622 0.400000 +1639 634 0.400000 +1639 648 0.400000 +1639 697 0.400000 +1639 733 0.400000 +1639 794 0.400000 +1640 18 0.400000 +1640 87 0.400000 +1640 92 0.400000 +1640 97 0.400000 +1640 242 0.400000 +1640 249 0.400000 +1640 282 0.400000 +1640 295 0.400000 +1640 418 0.400000 +1640 431 0.400000 +1640 456 0.400000 +1640 638 0.400000 +1640 641 0.400000 +1640 675 0.400000 +1640 695 0.400000 +1640 730 0.400000 +1640 773 0.400000 +1641 40 0.400000 +1641 63 0.400000 +1641 88 0.400000 +1641 100 0.400000 +1641 129 0.400000 +1641 165 0.400000 +1641 218 0.400000 +1641 233 0.400000 +1641 235 0.400000 +1641 264 0.400000 +1641 279 0.400000 +1641 338 0.400000 +1641 346 0.400000 +1641 567 0.400000 +1641 579 0.400000 +1641 590 0.400000 +1641 611 0.400000 +1641 612 0.400000 +1641 643 0.400000 +1641 680 0.400000 +1641 741 0.400000 +1641 773 0.400000 +1642 12 0.400000 +1642 69 0.400000 +1642 86 0.400000 +1642 169 0.400000 +1642 175 0.400000 +1642 276 0.400000 +1642 283 0.400000 +1642 309 0.400000 +1642 348 0.400000 +1642 396 0.400000 +1642 464 0.400000 +1642 501 0.400000 +1642 534 0.400000 +1642 535 0.400000 +1642 571 0.400000 +1642 574 0.400000 +1642 583 0.400000 +1642 588 0.400000 +1642 641 0.400000 +1642 665 0.400000 +1642 667 0.400000 +1642 720 0.400000 +1642 747 0.400000 +1643 141 0.400000 +1643 153 0.400000 +1643 167 0.400000 +1643 273 0.400000 +1643 367 0.400000 +1643 399 0.400000 +1643 426 0.400000 +1643 461 0.400000 +1643 604 0.400000 +1643 726 0.400000 +1644 45 0.400000 +1644 182 0.400000 +1644 184 0.400000 +1644 227 0.400000 +1644 262 0.400000 +1644 318 0.400000 +1644 324 0.400000 +1644 328 0.400000 +1644 344 0.400000 +1644 424 0.400000 +1644 472 0.400000 +1644 522 0.400000 +1644 541 0.400000 +1644 598 0.400000 +1644 610 0.400000 +1644 622 0.400000 +1644 638 0.400000 +1644 657 0.400000 +1644 684 0.400000 +1644 722 0.400000 +1644 770 0.400000 +1645 52 0.400000 +1645 100 0.400000 +1645 230 0.400000 +1645 284 0.400000 +1645 294 0.400000 +1645 427 0.400000 +1645 428 0.400000 +1645 601 0.400000 +1645 626 0.400000 +1645 686 0.400000 +1645 799 0.400000 +1646 25 0.400000 +1646 84 0.400000 +1646 100 0.400000 +1646 130 0.400000 +1646 152 0.400000 +1646 176 0.400000 +1646 178 0.400000 +1646 194 0.400000 +1646 221 0.400000 +1646 235 0.400000 +1646 372 0.400000 +1646 412 0.400000 +1646 433 0.400000 +1646 480 0.400000 +1646 484 0.400000 +1646 492 0.400000 +1646 521 0.400000 +1646 567 0.400000 +1646 592 0.400000 +1646 627 0.400000 +1646 673 0.400000 +1646 681 0.400000 +1646 707 0.400000 +1647 31 0.400000 +1647 90 0.400000 +1647 133 0.400000 +1647 153 0.400000 +1647 167 0.400000 +1647 241 0.400000 +1647 255 0.400000 +1647 364 0.400000 +1647 423 0.400000 +1647 438 0.400000 +1647 593 0.400000 +1647 682 0.400000 +1647 770 0.400000 +1648 2 0.400000 +1648 69 0.400000 +1648 80 0.400000 +1648 131 0.400000 +1648 184 0.400000 +1648 186 0.400000 +1648 204 0.400000 +1648 205 0.400000 +1648 217 0.400000 +1648 234 0.400000 +1648 346 0.400000 +1648 372 0.400000 +1648 386 0.400000 +1648 422 0.400000 +1648 444 0.400000 +1648 473 0.400000 +1648 625 0.400000 +1648 684 0.400000 +1648 725 0.400000 +1648 730 0.400000 +1648 769 0.400000 +1648 795 0.400000 +1649 90 0.400000 +1649 188 0.400000 +1649 258 0.400000 +1649 283 0.400000 +1649 286 0.400000 +1649 297 0.400000 +1649 363 0.400000 +1649 446 0.400000 +1649 456 0.400000 +1649 537 0.400000 +1649 616 0.400000 +1649 685 0.400000 +1649 707 0.400000 +1649 711 0.400000 +1649 719 0.400000 +1649 775 0.400000 +1649 798 0.400000 +1650 45 0.400000 +1650 162 0.400000 +1650 215 0.400000 +1650 291 0.400000 +1650 316 0.400000 +1650 324 0.400000 +1650 390 0.400000 +1650 397 0.400000 +1650 494 0.400000 +1650 538 0.400000 +1650 611 0.400000 +1650 681 0.400000 +1650 690 0.400000 +1650 697 0.400000 +1651 12 0.400000 +1651 86 0.400000 +1651 87 0.400000 +1651 158 0.400000 +1651 211 0.400000 +1651 236 0.400000 +1651 388 0.400000 +1651 435 0.400000 +1651 552 0.400000 +1651 586 0.400000 +1651 592 0.400000 +1651 628 0.400000 +1651 695 0.400000 +1651 761 0.400000 +1652 31 0.400000 +1652 43 0.400000 +1652 88 0.400000 +1652 180 0.400000 +1652 216 0.400000 +1652 217 0.400000 +1652 256 0.400000 +1652 264 0.400000 +1652 312 0.400000 +1652 361 0.400000 +1652 438 0.400000 +1652 500 0.400000 +1652 501 0.400000 +1652 515 0.400000 +1652 558 0.400000 +1652 582 0.400000 +1652 679 0.400000 +1652 697 0.400000 +1652 715 0.400000 +1652 752 0.400000 +1652 798 0.400000 +1653 71 0.400000 +1653 166 0.400000 +1653 181 0.400000 +1653 274 0.400000 +1653 347 0.400000 +1653 390 0.400000 +1653 415 0.400000 +1653 438 0.400000 +1653 529 0.400000 +1653 557 0.400000 +1653 594 0.400000 +1653 641 0.400000 +1653 708 0.400000 +1653 728 0.400000 +1653 736 0.400000 +1653 758 0.400000 +1653 779 0.400000 +1654 45 0.400000 +1654 79 0.400000 +1654 138 0.400000 +1654 331 0.400000 +1654 425 0.400000 +1654 572 0.400000 +1654 677 0.400000 +1654 736 0.400000 +1655 24 0.400000 +1655 75 0.400000 +1655 123 0.400000 +1655 276 0.400000 +1655 328 0.400000 +1655 358 0.400000 +1655 375 0.400000 +1655 381 0.400000 +1655 487 0.400000 +1655 584 0.400000 +1656 5 0.400000 +1656 44 0.400000 +1656 75 0.400000 +1656 138 0.400000 +1656 158 0.400000 +1656 167 0.400000 +1656 194 0.400000 +1656 221 0.400000 +1656 290 0.400000 +1656 441 0.400000 +1656 555 0.400000 +1656 593 0.400000 +1656 631 0.400000 +1656 662 0.400000 +1656 668 0.400000 +1656 676 0.400000 +1656 739 0.400000 +1656 741 0.400000 +1656 745 0.400000 +1656 757 0.400000 +1656 776 0.400000 +1657 165 0.400000 +1657 211 0.400000 +1657 365 0.400000 +1657 376 0.400000 +1657 444 0.400000 +1657 502 0.400000 +1657 568 0.400000 +1657 658 0.400000 +1657 675 0.400000 +1657 678 0.400000 +1657 719 0.400000 +1658 37 0.400000 +1658 93 0.400000 +1658 108 0.400000 +1658 147 0.400000 +1658 270 0.400000 +1658 328 0.400000 +1658 356 0.400000 +1658 377 0.400000 +1658 381 0.400000 +1658 503 0.400000 +1658 526 0.400000 +1658 529 0.400000 +1658 532 0.400000 +1658 542 0.400000 +1658 580 0.400000 +1658 586 0.400000 +1658 692 0.400000 +1658 693 0.400000 +1658 724 0.400000 +1658 725 0.400000 +1659 51 0.400000 +1659 53 0.400000 +1659 54 0.400000 +1659 105 0.400000 +1659 214 0.400000 +1659 231 0.400000 +1659 311 0.400000 +1659 357 0.400000 +1659 391 0.400000 +1659 399 0.400000 +1659 501 0.400000 +1659 536 0.400000 +1659 665 0.400000 +1659 743 0.400000 +1659 766 0.400000 +1660 6 0.400000 +1660 36 0.400000 +1660 62 0.400000 +1660 64 0.400000 +1660 96 0.400000 +1660 117 0.400000 +1660 202 0.400000 +1660 284 0.400000 +1660 301 0.400000 +1660 371 0.400000 +1660 493 0.400000 +1660 548 0.400000 +1660 558 0.400000 +1660 577 0.400000 +1660 681 0.400000 +1660 717 0.400000 +1660 778 0.400000 +1661 160 0.400000 +1661 182 0.400000 +1661 227 0.400000 +1661 230 0.400000 +1661 261 0.400000 +1661 286 0.400000 +1661 291 0.400000 +1661 317 0.400000 +1661 342 0.400000 +1661 415 0.400000 +1661 427 0.400000 +1661 460 0.400000 +1661 488 0.400000 +1661 500 0.400000 +1661 514 0.400000 +1661 521 0.400000 +1661 534 0.400000 +1662 47 0.400000 +1662 75 0.400000 +1662 120 0.400000 +1662 152 0.400000 +1662 298 0.400000 +1662 346 0.400000 +1662 363 0.400000 +1662 385 0.400000 +1662 545 0.400000 +1662 556 0.400000 +1662 585 0.400000 +1662 612 0.400000 +1662 636 0.400000 +1662 706 0.400000 +1662 726 0.400000 +1662 746 0.400000 +1663 137 0.400000 +1663 142 0.400000 +1663 184 0.400000 +1663 205 0.400000 +1663 253 0.400000 +1663 305 0.400000 +1663 474 0.400000 +1663 511 0.400000 +1663 524 0.400000 +1663 568 0.400000 +1663 604 0.400000 +1663 654 0.400000 +1663 674 0.400000 +1663 699 0.400000 +1663 769 0.400000 +1664 121 0.400000 +1664 235 0.400000 +1664 277 0.400000 +1664 465 0.400000 +1664 533 0.400000 +1664 555 0.400000 +1664 578 0.400000 +1664 658 0.400000 +1664 758 0.400000 +1664 772 0.400000 +1665 19 0.400000 +1665 54 0.400000 +1665 134 0.400000 +1665 164 0.400000 +1665 284 0.400000 +1665 296 0.400000 +1665 297 0.400000 +1665 370 0.400000 +1665 389 0.400000 +1665 391 0.400000 +1665 484 0.400000 +1665 502 0.400000 +1665 543 0.400000 +1665 669 0.400000 +1665 691 0.400000 +1665 741 0.400000 +1665 773 0.400000 +1666 26 0.400000 +1666 134 0.400000 +1666 238 0.400000 +1666 250 0.400000 +1666 260 0.400000 +1666 307 0.400000 +1666 328 0.400000 +1666 354 0.400000 +1666 387 0.400000 +1666 445 0.400000 +1666 528 0.400000 +1666 552 0.400000 +1666 555 0.400000 +1666 654 0.400000 +1666 726 0.400000 +1666 785 0.400000 +1666 799 0.400000 +1667 10 0.400000 +1667 170 0.400000 +1667 221 0.400000 +1667 361 0.400000 +1667 414 0.400000 +1667 437 0.400000 +1667 481 0.400000 +1667 498 0.400000 +1667 505 0.400000 +1667 575 0.400000 +1667 643 0.400000 +1667 697 0.400000 +1668 29 0.400000 +1668 144 0.400000 +1668 181 0.400000 +1668 240 0.400000 +1668 290 0.400000 +1668 405 0.400000 +1668 644 0.400000 +1668 712 0.400000 +1668 719 0.400000 +1668 741 0.400000 +1668 758 0.400000 +1668 769 0.400000 +1669 127 0.400000 +1669 166 0.400000 +1669 271 0.400000 +1669 287 0.400000 +1669 294 0.400000 +1669 397 0.400000 +1669 452 0.400000 +1669 529 0.400000 +1669 543 0.400000 +1669 565 0.400000 +1669 569 0.400000 +1669 594 0.400000 +1669 610 0.400000 +1669 779 0.400000 +1670 74 0.400000 +1670 98 0.400000 +1670 110 0.400000 +1670 350 0.400000 +1670 371 0.400000 +1670 399 0.400000 +1670 430 0.400000 +1670 465 0.400000 +1670 495 0.400000 +1670 635 0.400000 +1670 690 0.400000 +1670 742 0.400000 +1670 761 0.400000 +1671 19 0.400000 +1671 92 0.400000 +1671 118 0.400000 +1671 129 0.400000 +1671 162 0.400000 +1671 186 0.400000 +1671 305 0.400000 +1671 324 0.400000 +1671 385 0.400000 +1671 431 0.400000 +1671 550 0.400000 +1671 590 0.400000 +1671 600 0.400000 +1671 601 0.400000 +1671 706 0.400000 +1671 745 0.400000 +1671 762 0.400000 +1671 787 0.400000 +1672 8 0.400000 +1672 68 0.400000 +1672 110 0.400000 +1672 161 0.400000 +1672 186 0.400000 +1672 256 0.400000 +1672 262 0.400000 +1672 271 0.400000 +1672 298 0.400000 +1672 309 0.400000 +1672 326 0.400000 +1672 360 0.400000 +1672 455 0.400000 +1672 502 0.400000 +1672 584 0.400000 +1672 683 0.400000 +1672 754 0.400000 +1672 760 0.400000 +1673 17 0.400000 +1673 74 0.400000 +1673 200 0.400000 +1673 221 0.400000 +1673 264 0.400000 +1673 463 0.400000 +1673 501 0.400000 +1673 538 0.400000 +1673 707 0.400000 +1674 38 0.400000 +1674 150 0.400000 +1674 171 0.400000 +1674 223 0.400000 +1674 248 0.400000 +1674 320 0.400000 +1674 381 0.400000 +1674 493 0.400000 +1674 576 0.400000 +1674 583 0.400000 +1674 595 0.400000 +1674 612 0.400000 +1674 637 0.400000 +1674 725 0.400000 +1674 772 0.400000 +1675 3 0.400000 +1675 103 0.400000 +1675 108 0.400000 +1675 149 0.400000 +1675 183 0.400000 +1675 206 0.400000 +1675 326 0.400000 +1675 441 0.400000 +1675 449 0.400000 +1675 612 0.400000 +1675 689 0.400000 +1675 758 0.400000 +1676 17 0.400000 +1676 73 0.400000 +1676 97 0.400000 +1676 108 0.400000 +1676 118 0.400000 +1676 156 0.400000 +1676 163 0.400000 +1676 182 0.400000 +1676 197 0.400000 +1676 255 0.400000 +1676 259 0.400000 +1676 343 0.400000 +1676 352 0.400000 +1676 409 0.400000 +1676 441 0.400000 +1676 477 0.400000 +1676 482 0.400000 +1676 602 0.400000 +1676 607 0.400000 +1676 618 0.400000 +1676 697 0.400000 +1676 760 0.400000 +1676 769 0.400000 +1676 796 0.400000 +1677 54 0.400000 +1677 145 0.400000 +1677 232 0.400000 +1677 262 0.400000 +1677 317 0.400000 +1677 321 0.400000 +1677 337 0.400000 +1677 352 0.400000 +1677 397 0.400000 +1677 483 0.400000 +1677 530 0.400000 +1677 544 0.400000 +1677 547 0.400000 +1677 597 0.400000 +1677 629 0.400000 +1677 631 0.400000 +1677 668 0.400000 +1677 687 0.400000 +1677 756 0.400000 +1677 798 0.400000 +1678 6 0.400000 +1678 9 0.400000 +1678 106 0.400000 +1678 136 0.400000 +1678 262 0.400000 +1678 274 0.400000 +1678 293 0.400000 +1678 312 0.400000 +1678 324 0.400000 +1678 364 0.400000 +1678 410 0.400000 +1678 472 0.400000 +1678 512 0.400000 +1678 513 0.400000 +1678 523 0.400000 +1678 525 0.400000 +1678 574 0.400000 +1678 607 0.400000 +1678 697 0.400000 +1678 726 0.400000 +1678 736 0.400000 +1678 757 0.400000 +1678 800 0.400000 +1679 36 0.400000 +1679 79 0.400000 +1679 111 0.400000 +1679 128 0.400000 +1679 286 0.400000 +1679 333 0.400000 +1679 534 0.400000 +1679 535 0.400000 +1679 553 0.400000 +1679 634 0.400000 +1679 729 0.400000 +1679 790 0.400000 +1680 3 0.400000 +1680 219 0.400000 +1680 284 0.400000 +1680 422 0.400000 +1680 464 0.400000 +1680 621 0.400000 +1680 634 0.400000 +1680 700 0.400000 +1680 711 0.400000 +1680 716 0.400000 +1680 752 0.400000 +1681 14 0.400000 +1681 41 0.400000 +1681 82 0.400000 +1681 109 0.400000 +1681 117 0.400000 +1681 208 0.400000 +1681 214 0.400000 +1681 261 0.400000 +1681 354 0.400000 +1681 356 0.400000 +1681 358 0.400000 +1681 377 0.400000 +1681 388 0.400000 +1681 417 0.400000 +1681 421 0.400000 +1681 436 0.400000 +1681 484 0.400000 +1681 595 0.400000 +1681 681 0.400000 +1681 699 0.400000 +1681 717 0.400000 +1681 743 0.400000 +1681 791 0.400000 +1682 1 0.400000 +1682 134 0.400000 +1682 191 0.400000 +1682 236 0.400000 +1682 417 0.400000 +1682 453 0.400000 +1682 464 0.400000 +1682 467 0.400000 +1682 539 0.400000 +1682 549 0.400000 +1682 578 0.400000 +1683 30 0.400000 +1683 31 0.400000 +1683 53 0.400000 +1683 128 0.400000 +1683 173 0.400000 +1683 175 0.400000 +1683 236 0.400000 +1683 381 0.400000 +1683 442 0.400000 +1683 493 0.400000 +1683 591 0.400000 +1683 713 0.400000 +1683 729 0.400000 +1683 766 0.400000 +1684 11 0.400000 +1684 13 0.400000 +1684 93 0.400000 +1684 168 0.400000 +1684 233 0.400000 +1684 282 0.400000 +1684 299 0.400000 +1684 312 0.400000 +1684 366 0.400000 +1684 438 0.400000 +1684 473 0.400000 +1684 489 0.400000 +1684 515 0.400000 +1684 532 0.400000 +1684 540 0.400000 +1684 546 0.400000 +1684 627 0.400000 +1684 656 0.400000 +1684 692 0.400000 +1684 699 0.400000 +1684 773 0.400000 +1685 24 0.400000 +1685 30 0.400000 +1685 130 0.400000 +1685 135 0.400000 +1685 152 0.400000 +1685 221 0.400000 +1685 302 0.400000 +1685 343 0.400000 +1685 349 0.400000 +1685 422 0.400000 +1685 550 0.400000 +1685 698 0.400000 +1685 765 0.400000 +1686 43 0.400000 +1686 81 0.400000 +1686 183 0.400000 +1686 273 0.400000 +1686 311 0.400000 +1686 318 0.400000 +1686 350 0.400000 +1686 389 0.400000 +1686 478 0.400000 +1686 519 0.400000 +1686 551 0.400000 +1686 585 0.400000 +1686 587 0.400000 +1686 619 0.400000 +1686 779 0.400000 +1687 21 0.400000 +1687 37 0.400000 +1687 53 0.400000 +1687 63 0.400000 +1687 72 0.400000 +1687 130 0.400000 +1687 235 0.400000 +1687 242 0.400000 +1687 246 0.400000 +1687 267 0.400000 +1687 285 0.400000 +1687 325 0.400000 +1687 331 0.400000 +1687 349 0.400000 +1687 364 0.400000 +1687 384 0.400000 +1687 403 0.400000 +1687 497 0.400000 +1687 507 0.400000 +1687 566 0.400000 +1687 668 0.400000 +1687 670 0.400000 +1687 678 0.400000 +1687 686 0.400000 +1687 780 0.400000 +1688 17 0.400000 +1688 137 0.400000 +1688 148 0.400000 +1688 343 0.400000 +1688 386 0.400000 +1688 426 0.400000 +1688 490 0.400000 +1688 508 0.400000 +1688 595 0.400000 +1688 676 0.400000 +1688 692 0.400000 +1688 724 0.400000 +1688 727 0.400000 +1688 774 0.400000 +1688 778 0.400000 +1688 800 0.400000 +1689 113 0.400000 +1689 145 0.400000 +1689 210 0.400000 +1689 215 0.400000 +1689 250 0.400000 +1689 337 0.400000 +1689 341 0.400000 +1689 377 0.400000 +1689 395 0.400000 +1689 406 0.400000 +1689 427 0.400000 +1689 463 0.400000 +1689 507 0.400000 +1689 577 0.400000 +1689 661 0.400000 +1690 32 0.400000 +1690 43 0.400000 +1690 133 0.400000 +1690 141 0.400000 +1690 182 0.400000 +1690 287 0.400000 +1690 355 0.400000 +1690 421 0.400000 +1690 465 0.400000 +1690 477 0.400000 +1690 550 0.400000 +1690 677 0.400000 +1690 769 0.400000 +1690 785 0.400000 +1691 11 0.400000 +1691 30 0.400000 +1691 53 0.400000 +1691 130 0.400000 +1691 155 0.400000 +1691 166 0.400000 +1691 221 0.400000 +1691 236 0.400000 +1691 258 0.400000 +1691 295 0.400000 +1691 312 0.400000 +1691 355 0.400000 +1691 428 0.400000 +1691 430 0.400000 +1691 461 0.400000 +1691 511 0.400000 +1691 557 0.400000 +1691 754 0.400000 +1691 794 0.400000 +1691 795 0.400000 +1692 15 0.400000 +1692 25 0.400000 +1692 56 0.400000 +1692 64 0.400000 +1692 151 0.400000 +1692 165 0.400000 +1692 197 0.400000 +1692 315 0.400000 +1692 394 0.400000 +1692 407 0.400000 +1692 474 0.400000 +1692 477 0.400000 +1692 563 0.400000 +1692 762 0.400000 +1692 781 0.400000 +1692 789 0.400000 +1693 14 0.400000 +1693 59 0.400000 +1693 118 0.400000 +1693 180 0.400000 +1693 288 0.400000 +1693 309 0.400000 +1693 519 0.400000 +1693 775 0.400000 +1693 796 0.400000 +1694 29 0.400000 +1694 49 0.400000 +1694 196 0.400000 +1694 235 0.400000 +1694 310 0.400000 +1694 316 0.400000 +1694 483 0.400000 +1694 493 0.400000 +1694 522 0.400000 +1694 621 0.400000 +1694 633 0.400000 +1694 765 0.400000 +1694 788 0.400000 +1695 9 0.400000 +1695 17 0.400000 +1695 67 0.400000 +1695 233 0.400000 +1695 243 0.400000 +1695 348 0.400000 +1695 387 0.400000 +1695 490 0.400000 +1695 522 0.400000 +1695 541 0.400000 +1695 578 0.400000 +1695 590 0.400000 +1695 684 0.400000 +1695 758 0.400000 +1696 80 0.400000 +1696 88 0.400000 +1696 98 0.400000 +1696 216 0.400000 +1696 377 0.400000 +1696 390 0.400000 +1696 479 0.400000 +1696 496 0.400000 +1696 591 0.400000 +1696 610 0.400000 +1696 621 0.400000 +1696 628 0.400000 +1696 647 0.400000 +1696 678 0.400000 +1696 682 0.400000 +1696 736 0.400000 +1696 749 0.400000 +1696 752 0.400000 +1696 757 0.400000 +1697 32 0.400000 +1697 245 0.400000 +1697 304 0.400000 +1697 308 0.400000 +1697 309 0.400000 +1697 315 0.400000 +1697 489 0.400000 +1697 530 0.400000 +1697 555 0.400000 +1697 559 0.400000 +1697 611 0.400000 +1697 737 0.400000 +1697 748 0.400000 +1697 781 0.400000 +1698 550 0.400000 +1698 611 0.400000 +1698 641 0.400000 +1698 705 0.400000 +1698 776 0.400000 +1699 12 0.400000 +1699 91 0.400000 +1699 98 0.400000 +1699 113 0.400000 +1699 260 0.400000 +1699 313 0.400000 +1699 329 0.400000 +1699 437 0.400000 +1699 441 0.400000 +1699 591 0.400000 +1699 613 0.400000 +1699 623 0.400000 +1699 638 0.400000 +1699 708 0.400000 +1699 718 0.400000 +1700 15 0.400000 +1700 22 0.400000 +1700 23 0.400000 +1700 258 0.400000 +1700 281 0.400000 +1700 459 0.400000 +1700 510 0.400000 +1700 522 0.400000 +1700 678 0.400000 +1701 54 0.400000 +1701 165 0.400000 +1701 184 0.400000 +1701 197 0.400000 +1701 228 0.400000 +1701 271 0.400000 +1701 277 0.400000 +1701 331 0.400000 +1701 447 0.400000 +1701 542 0.400000 +1701 555 0.400000 +1701 639 0.400000 +1701 722 0.400000 +1702 150 0.400000 +1702 230 0.400000 +1702 401 0.400000 +1702 404 0.400000 +1702 430 0.400000 +1702 476 0.400000 +1702 490 0.400000 +1702 541 0.400000 +1702 622 0.400000 +1702 665 0.400000 +1702 669 0.400000 +1702 677 0.400000 +1702 728 0.400000 +1702 737 0.400000 +1703 142 0.400000 +1703 156 0.400000 +1703 171 0.400000 +1703 205 0.400000 +1703 297 0.400000 +1703 298 0.400000 +1703 394 0.400000 +1703 471 0.400000 +1703 500 0.400000 +1703 588 0.400000 +1703 604 0.400000 +1703 621 0.400000 +1703 645 0.400000 +1703 649 0.400000 +1703 654 0.400000 +1703 659 0.400000 +1703 704 0.400000 +1703 741 0.400000 +1703 744 0.400000 +1704 4 0.400000 +1704 5 0.400000 +1704 31 0.400000 +1704 86 0.400000 +1704 96 0.400000 +1704 100 0.400000 +1704 105 0.400000 +1704 146 0.400000 +1704 215 0.400000 +1704 231 0.400000 +1704 251 0.400000 +1704 270 0.400000 +1704 276 0.400000 +1704 280 0.400000 +1704 330 0.400000 +1704 346 0.400000 +1704 414 0.400000 +1704 436 0.400000 +1704 437 0.400000 +1704 471 0.400000 +1704 493 0.400000 +1704 517 0.400000 +1704 523 0.400000 +1704 543 0.400000 +1704 584 0.400000 +1704 650 0.400000 +1704 684 0.400000 +1704 686 0.400000 +1705 118 0.400000 +1705 157 0.400000 +1705 164 0.400000 +1705 180 0.400000 +1705 202 0.400000 +1705 318 0.400000 +1705 323 0.400000 +1705 358 0.400000 +1705 457 0.400000 +1705 515 0.400000 +1705 523 0.400000 +1705 615 0.400000 +1705 674 0.400000 +1705 677 0.400000 +1705 778 0.400000 +1706 7 0.400000 +1706 74 0.400000 +1706 127 0.400000 +1706 178 0.400000 +1706 264 0.400000 +1706 398 0.400000 +1706 404 0.400000 +1706 473 0.400000 +1706 534 0.400000 +1706 565 0.400000 +1706 739 0.400000 +1707 48 0.400000 +1707 269 0.400000 +1707 343 0.400000 +1707 363 0.400000 +1707 401 0.400000 +1707 428 0.400000 +1707 531 0.400000 +1707 557 0.400000 +1707 601 0.400000 +1707 638 0.400000 +1707 653 0.400000 +1707 759 0.400000 +1708 42 0.400000 +1708 88 0.400000 +1708 210 0.400000 +1708 348 0.400000 +1708 397 0.400000 +1708 449 0.400000 +1708 528 0.400000 +1708 561 0.400000 +1708 575 0.400000 +1708 597 0.400000 +1708 633 0.400000 +1708 689 0.400000 +1708 691 0.400000 +1708 701 0.400000 +1708 705 0.400000 +1708 718 0.400000 +1708 735 0.400000 +1709 14 0.400000 +1709 20 0.400000 +1709 55 0.400000 +1709 85 0.400000 +1709 115 0.400000 +1709 168 0.400000 +1709 266 0.400000 +1709 287 0.400000 +1709 305 0.400000 +1709 497 0.400000 +1709 499 0.400000 +1709 521 0.400000 +1709 529 0.400000 +1709 539 0.400000 +1709 557 0.400000 +1709 593 0.400000 +1709 649 0.400000 +1709 709 0.400000 +1709 749 0.400000 +1709 778 0.400000 +1709 784 0.400000 +1710 86 0.400000 +1710 136 0.400000 +1710 213 0.400000 +1710 219 0.400000 +1710 327 0.400000 +1710 417 0.400000 +1710 422 0.400000 +1710 437 0.400000 +1710 439 0.400000 +1710 515 0.400000 +1710 532 0.400000 +1710 614 0.400000 +1710 630 0.400000 +1710 699 0.400000 +1710 751 0.400000 +1710 793 0.400000 +1711 129 0.400000 +1711 150 0.400000 +1711 310 0.400000 +1711 320 0.400000 +1711 351 0.400000 +1711 450 0.400000 +1711 474 0.400000 +1711 557 0.400000 +1711 563 0.400000 +1711 571 0.400000 +1711 609 0.400000 +1711 675 0.400000 +1711 684 0.400000 +1711 735 0.400000 +1711 750 0.400000 +1712 246 0.400000 +1712 268 0.400000 +1712 367 0.400000 +1712 404 0.400000 +1712 484 0.400000 +1712 525 0.400000 +1712 577 0.400000 +1712 653 0.400000 +1712 747 0.400000 +1712 754 0.400000 +1713 54 0.400000 +1713 102 0.400000 +1713 119 0.400000 +1713 149 0.400000 +1713 154 0.400000 +1713 190 0.400000 +1713 302 0.400000 +1713 307 0.400000 +1713 395 0.400000 +1713 496 0.400000 +1713 513 0.400000 +1713 543 0.400000 +1713 547 0.400000 +1713 597 0.400000 +1713 647 0.400000 +1713 695 0.400000 +1713 702 0.400000 +1713 710 0.400000 +1713 767 0.400000 +1713 786 0.400000 +1713 788 0.400000 +1713 795 0.400000 +1713 799 0.400000 +1714 39 0.400000 +1714 51 0.400000 +1714 266 0.400000 +1714 295 0.400000 +1714 315 0.400000 +1714 317 0.400000 +1714 593 0.400000 +1714 608 0.400000 +1714 636 0.400000 +1714 639 0.400000 +1714 689 0.400000 +1714 722 0.400000 +1714 725 0.400000 +1714 748 0.400000 +1715 157 0.400000 +1715 291 0.400000 +1715 307 0.400000 +1715 320 0.400000 +1715 335 0.400000 +1715 347 0.400000 +1715 393 0.400000 +1715 503 0.400000 +1715 543 0.400000 +1715 577 0.400000 +1715 716 0.400000 +1715 725 0.400000 +1716 28 0.400000 +1716 77 0.400000 +1716 100 0.400000 +1716 124 0.400000 +1716 126 0.400000 +1716 145 0.400000 +1716 147 0.400000 +1716 174 0.400000 +1716 210 0.400000 +1716 217 0.400000 +1716 227 0.400000 +1716 439 0.400000 +1716 467 0.400000 +1716 534 0.400000 +1716 619 0.400000 +1716 638 0.400000 +1717 19 0.400000 +1717 83 0.400000 +1717 88 0.400000 +1717 114 0.400000 +1717 135 0.400000 +1717 191 0.400000 +1717 259 0.400000 +1717 315 0.400000 +1717 344 0.400000 +1717 386 0.400000 +1717 443 0.400000 +1717 483 0.400000 +1717 494 0.400000 +1717 580 0.400000 +1717 632 0.400000 +1717 657 0.400000 +1717 678 0.400000 +1717 772 0.400000 +1717 787 0.400000 +1718 15 0.400000 +1718 103 0.400000 +1718 222 0.400000 +1718 342 0.400000 +1718 468 0.400000 +1718 577 0.400000 +1718 627 0.400000 +1718 630 0.400000 +1718 653 0.400000 +1718 764 0.400000 +1718 788 0.400000 +1719 3 0.400000 +1719 13 0.400000 +1719 43 0.400000 +1719 49 0.400000 +1719 100 0.400000 +1719 162 0.400000 +1719 258 0.400000 +1719 265 0.400000 +1719 279 0.400000 +1719 301 0.400000 +1719 307 0.400000 +1719 330 0.400000 +1719 630 0.400000 +1719 690 0.400000 +1719 722 0.400000 +1719 767 0.400000 +1720 228 0.400000 +1720 316 0.400000 +1720 374 0.400000 +1720 568 0.400000 +1720 645 0.400000 +1720 781 0.400000 +1721 40 0.400000 +1721 77 0.400000 +1721 286 0.400000 +1721 425 0.400000 +1721 571 0.400000 +1721 601 0.400000 +1722 47 0.400000 +1722 185 0.400000 +1722 215 0.400000 +1722 230 0.400000 +1722 317 0.400000 +1722 407 0.400000 +1722 408 0.400000 +1722 488 0.400000 +1722 494 0.400000 +1722 532 0.400000 +1722 535 0.400000 +1722 603 0.400000 +1722 636 0.400000 +1722 706 0.400000 +1722 716 0.400000 +1722 717 0.400000 +1722 776 0.400000 +1722 796 0.400000 +1723 81 0.400000 +1723 168 0.400000 +1723 335 0.400000 +1723 357 0.400000 +1723 379 0.400000 +1723 457 0.400000 +1723 459 0.400000 +1723 469 0.400000 +1723 472 0.400000 +1723 495 0.400000 +1723 514 0.400000 +1723 531 0.400000 +1723 588 0.400000 +1723 621 0.400000 +1723 653 0.400000 +1723 794 0.400000 +1723 800 0.400000 +1724 8 0.400000 +1724 75 0.400000 +1724 78 0.400000 +1724 85 0.400000 +1724 161 0.400000 +1724 216 0.400000 +1724 259 0.400000 +1724 293 0.400000 +1724 326 0.400000 +1724 390 0.400000 +1724 481 0.400000 +1724 487 0.400000 +1724 494 0.400000 +1724 525 0.400000 +1724 568 0.400000 +1724 665 0.400000 +1724 743 0.400000 +1725 3 0.400000 +1725 19 0.400000 +1725 129 0.400000 +1725 142 0.400000 +1725 243 0.400000 +1725 284 0.400000 +1725 369 0.400000 +1725 370 0.400000 +1725 381 0.400000 +1725 446 0.400000 +1725 569 0.400000 +1725 580 0.400000 +1725 668 0.400000 +1725 710 0.400000 +1725 760 0.400000 +1726 23 0.400000 +1726 26 0.400000 +1726 104 0.400000 +1726 263 0.400000 +1726 285 0.400000 +1726 290 0.400000 +1726 441 0.400000 +1726 476 0.400000 +1726 522 0.400000 +1726 587 0.400000 +1726 591 0.400000 +1726 701 0.400000 +1726 721 0.400000 +1726 754 0.400000 +1726 755 0.400000 +1726 774 0.400000 +1727 358 0.400000 +1727 361 0.400000 +1727 400 0.400000 +1727 422 0.400000 +1727 500 0.400000 +1727 548 0.400000 +1727 629 0.400000 +1727 694 0.400000 +1727 728 0.400000 +1727 795 0.400000 +1728 32 0.400000 +1728 50 0.400000 +1728 57 0.400000 +1728 80 0.400000 +1728 128 0.400000 +1728 143 0.400000 +1728 163 0.400000 +1728 167 0.400000 +1728 226 0.400000 +1728 310 0.400000 +1728 326 0.400000 +1728 393 0.400000 +1728 469 0.400000 +1728 615 0.400000 +1728 647 0.400000 +1728 656 0.400000 +1728 687 0.400000 +1728 731 0.400000 +1728 732 0.400000 +1728 787 0.400000 +1729 24 0.400000 +1729 59 0.400000 +1729 166 0.400000 +1729 200 0.400000 +1729 206 0.400000 +1729 215 0.400000 +1729 280 0.400000 +1729 337 0.400000 +1729 382 0.400000 +1729 386 0.400000 +1729 428 0.400000 +1729 433 0.400000 +1729 461 0.400000 +1729 505 0.400000 +1729 690 0.400000 +1729 786 0.400000 +1730 5 0.400000 +1730 31 0.400000 +1730 99 0.400000 +1730 103 0.400000 +1730 115 0.400000 +1730 136 0.400000 +1730 155 0.400000 +1730 280 0.400000 +1730 282 0.400000 +1730 406 0.400000 +1730 409 0.400000 +1730 412 0.400000 +1730 452 0.400000 +1730 502 0.400000 +1730 589 0.400000 +1730 623 0.400000 +1730 707 0.400000 +1730 766 0.400000 +1730 793 0.400000 +1731 22 0.400000 +1731 54 0.400000 +1731 76 0.400000 +1731 104 0.400000 +1731 107 0.400000 +1731 229 0.400000 +1731 293 0.400000 +1731 296 0.400000 +1731 338 0.400000 +1731 413 0.400000 +1731 449 0.400000 +1731 466 0.400000 +1731 470 0.400000 +1731 565 0.400000 +1731 712 0.400000 +1731 722 0.400000 +1731 730 0.400000 +1731 778 0.400000 +1732 219 0.400000 +1732 277 0.400000 +1732 279 0.400000 +1732 297 0.400000 +1732 371 0.400000 +1732 373 0.400000 +1732 375 0.400000 +1732 466 0.400000 +1732 475 0.400000 +1732 508 0.400000 +1732 530 0.400000 +1732 570 0.400000 +1732 587 0.400000 +1732 695 0.400000 +1732 788 0.400000 +1733 20 0.400000 +1733 33 0.400000 +1733 54 0.400000 +1733 88 0.400000 +1733 122 0.400000 +1733 158 0.400000 +1733 162 0.400000 +1733 183 0.400000 +1733 193 0.400000 +1733 298 0.400000 +1733 353 0.400000 +1733 393 0.400000 +1733 462 0.400000 +1733 464 0.400000 +1733 470 0.400000 +1733 527 0.400000 +1733 538 0.400000 +1733 560 0.400000 +1733 620 0.400000 +1733 677 0.400000 +1733 739 0.400000 +1733 759 0.400000 +1734 145 0.400000 +1734 153 0.400000 +1734 209 0.400000 +1734 211 0.400000 +1734 228 0.400000 +1734 264 0.400000 +1734 311 0.400000 +1734 314 0.400000 +1734 372 0.400000 +1734 435 0.400000 +1734 504 0.400000 +1734 634 0.400000 +1734 721 0.400000 +1734 782 0.400000 +1734 783 0.400000 +1734 790 0.400000 +1735 14 0.400000 +1735 20 0.400000 +1735 119 0.400000 +1735 123 0.400000 +1735 179 0.400000 +1735 185 0.400000 +1735 189 0.400000 +1735 193 0.400000 +1735 198 0.400000 +1735 374 0.400000 +1735 504 0.400000 +1735 505 0.400000 +1735 507 0.400000 +1735 566 0.400000 +1735 627 0.400000 +1735 676 0.400000 +1735 694 0.400000 +1735 737 0.400000 +1735 746 0.400000 +1735 753 0.400000 +1735 769 0.400000 +1735 771 0.400000 +1735 785 0.400000 +1736 55 0.400000 +1736 66 0.400000 +1736 127 0.400000 +1736 177 0.400000 +1736 194 0.400000 +1736 309 0.400000 +1736 372 0.400000 +1736 490 0.400000 +1736 603 0.400000 +1736 609 0.400000 +1736 632 0.400000 +1736 650 0.400000 +1736 675 0.400000 +1736 727 0.400000 +1737 18 0.400000 +1737 25 0.400000 +1737 107 0.400000 +1737 248 0.400000 +1737 256 0.400000 +1737 267 0.400000 +1737 283 0.400000 +1737 290 0.400000 +1737 298 0.400000 +1737 308 0.400000 +1737 427 0.400000 +1737 442 0.400000 +1737 546 0.400000 +1737 632 0.400000 +1737 651 0.400000 +1737 672 0.400000 +1737 729 0.400000 +1737 744 0.400000 +1738 81 0.400000 +1738 99 0.400000 +1738 138 0.400000 +1738 154 0.400000 +1738 205 0.400000 +1738 238 0.400000 +1738 330 0.400000 +1738 561 0.400000 +1738 581 0.400000 +1738 608 0.400000 +1738 635 0.400000 +1738 671 0.400000 +1738 689 0.400000 +1738 721 0.400000 +1738 796 0.400000 +1739 35 0.400000 +1739 54 0.400000 +1739 98 0.400000 +1739 124 0.400000 +1739 178 0.400000 +1739 198 0.400000 +1739 218 0.400000 +1739 250 0.400000 +1739 371 0.400000 +1739 372 0.400000 +1739 404 0.400000 +1739 407 0.400000 +1739 413 0.400000 +1739 424 0.400000 +1739 642 0.400000 +1739 679 0.400000 +1739 706 0.400000 +1740 6 0.400000 +1740 31 0.400000 +1740 100 0.400000 +1740 222 0.400000 +1740 229 0.400000 +1740 267 0.400000 +1740 355 0.400000 +1740 399 0.400000 +1740 522 0.400000 +1740 606 0.400000 +1740 634 0.400000 +1740 644 0.400000 +1740 648 0.400000 +1740 684 0.400000 +1740 687 0.400000 +1740 769 0.400000 +1740 773 0.400000 +1741 42 0.400000 +1741 69 0.400000 +1741 102 0.400000 +1741 140 0.400000 +1741 311 0.400000 +1741 318 0.400000 +1741 328 0.400000 +1741 434 0.400000 +1741 439 0.400000 +1741 547 0.400000 +1741 559 0.400000 +1741 598 0.400000 +1741 601 0.400000 +1741 624 0.400000 +1741 683 0.400000 +1741 739 0.400000 +1742 3 0.400000 +1742 74 0.400000 +1742 214 0.400000 +1742 258 0.400000 +1742 262 0.400000 +1742 285 0.400000 +1742 466 0.400000 +1742 623 0.400000 +1742 744 0.400000 +1742 796 0.400000 +1743 8 0.400000 +1743 15 0.400000 +1743 17 0.400000 +1743 29 0.400000 +1743 37 0.400000 +1743 58 0.400000 +1743 254 0.400000 +1743 290 0.400000 +1743 295 0.400000 +1743 383 0.400000 +1743 540 0.400000 +1743 561 0.400000 +1743 700 0.400000 +1743 727 0.400000 +1743 730 0.400000 +1743 739 0.400000 +1743 742 0.400000 +1743 755 0.400000 +1744 30 0.400000 +1744 62 0.400000 +1744 74 0.400000 +1744 89 0.400000 +1744 114 0.400000 +1744 184 0.400000 +1744 244 0.400000 +1744 271 0.400000 +1744 301 0.400000 +1744 331 0.400000 +1744 357 0.400000 +1744 401 0.400000 +1744 402 0.400000 +1744 411 0.400000 +1744 422 0.400000 +1744 613 0.400000 +1744 622 0.400000 +1745 53 0.400000 +1745 169 0.400000 +1745 306 0.400000 +1745 436 0.400000 +1745 541 0.400000 +1745 555 0.400000 +1745 707 0.400000 +1745 728 0.400000 +1745 741 0.400000 +1746 88 0.400000 +1746 146 0.400000 +1746 171 0.400000 +1746 202 0.400000 +1746 248 0.400000 +1746 313 0.400000 +1746 390 0.400000 +1746 469 0.400000 +1746 595 0.400000 +1746 703 0.400000 +1747 123 0.400000 +1747 223 0.400000 +1747 227 0.400000 +1747 258 0.400000 +1747 281 0.400000 +1747 334 0.400000 +1747 373 0.400000 +1747 378 0.400000 +1747 393 0.400000 +1747 404 0.400000 +1747 416 0.400000 +1747 493 0.400000 +1747 540 0.400000 +1747 592 0.400000 +1747 624 0.400000 +1747 699 0.400000 +1747 723 0.400000 +1747 734 0.400000 +1747 755 0.400000 +1747 767 0.400000 +1747 779 0.400000 +1748 17 0.400000 +1748 36 0.400000 +1748 196 0.400000 +1748 325 0.400000 +1748 356 0.400000 +1748 369 0.400000 +1748 448 0.400000 +1748 470 0.400000 +1748 474 0.400000 +1748 488 0.400000 +1748 544 0.400000 +1748 581 0.400000 +1748 635 0.400000 +1748 655 0.400000 +1748 663 0.400000 +1748 682 0.400000 +1748 792 0.400000 +1749 3 0.400000 +1749 52 0.400000 +1749 90 0.400000 +1749 100 0.400000 +1749 281 0.400000 +1749 306 0.400000 +1749 354 0.400000 +1749 393 0.400000 +1749 422 0.400000 +1749 475 0.400000 +1749 493 0.400000 +1749 506 0.400000 +1749 507 0.400000 +1749 511 0.400000 +1749 563 0.400000 +1749 602 0.400000 +1749 618 0.400000 +1749 682 0.400000 +1749 757 0.400000 +1749 762 0.400000 +1750 57 0.400000 +1750 65 0.400000 +1750 86 0.400000 +1750 107 0.400000 +1750 109 0.400000 +1750 148 0.400000 +1750 207 0.400000 +1750 222 0.400000 +1750 242 0.400000 +1750 264 0.400000 +1750 280 0.400000 +1750 283 0.400000 +1750 426 0.400000 +1750 443 0.400000 +1750 455 0.400000 +1750 509 0.400000 +1750 523 0.400000 +1750 670 0.400000 +1750 769 0.400000 +1750 779 0.400000 +1750 790 0.400000 +1751 21 0.400000 +1751 33 0.400000 +1751 71 0.400000 +1751 211 0.400000 +1751 262 0.400000 +1751 270 0.400000 +1751 299 0.400000 +1751 414 0.400000 +1751 421 0.400000 +1751 457 0.400000 +1751 470 0.400000 +1751 474 0.400000 +1751 478 0.400000 +1751 512 0.400000 +1751 518 0.400000 +1751 560 0.400000 +1751 564 0.400000 +1751 612 0.400000 +1751 613 0.400000 +1751 645 0.400000 +1752 67 0.400000 +1752 197 0.400000 +1752 250 0.400000 +1752 265 0.400000 +1752 286 0.400000 +1752 363 0.400000 +1752 398 0.400000 +1752 484 0.400000 +1752 514 0.400000 +1752 515 0.400000 +1752 544 0.400000 +1752 601 0.400000 +1752 678 0.400000 +1752 766 0.400000 +1753 28 0.400000 +1753 34 0.400000 +1753 45 0.400000 +1753 125 0.400000 +1753 231 0.400000 +1753 244 0.400000 +1753 250 0.400000 +1753 263 0.400000 +1753 292 0.400000 +1753 303 0.400000 +1753 490 0.400000 +1753 569 0.400000 +1753 714 0.400000 +1753 743 0.400000 +1754 9 0.400000 +1754 32 0.400000 +1754 69 0.400000 +1754 249 0.400000 +1754 283 0.400000 +1754 337 0.400000 +1754 392 0.400000 +1754 393 0.400000 +1754 502 0.400000 +1754 534 0.400000 +1754 565 0.400000 +1754 577 0.400000 +1754 760 0.400000 +1754 766 0.400000 +1755 78 0.400000 +1755 134 0.400000 +1755 146 0.400000 +1755 181 0.400000 +1755 332 0.400000 +1755 336 0.400000 +1755 361 0.400000 +1755 427 0.400000 +1755 442 0.400000 +1755 609 0.400000 +1755 637 0.400000 +1755 653 0.400000 +1755 670 0.400000 +1755 675 0.400000 +1755 690 0.400000 +1755 711 0.400000 +1755 789 0.400000 +1756 58 0.400000 +1756 92 0.400000 +1756 242 0.400000 +1756 243 0.400000 +1756 295 0.400000 +1756 452 0.400000 +1756 458 0.400000 +1756 486 0.400000 +1756 662 0.400000 +1756 689 0.400000 +1756 700 0.400000 +1756 715 0.400000 +1756 750 0.400000 +1756 756 0.400000 +1757 144 0.400000 +1757 231 0.400000 +1757 367 0.400000 +1757 484 0.400000 +1757 569 0.400000 +1757 575 0.400000 +1757 646 0.400000 +1757 681 0.400000 +1757 711 0.400000 +1757 719 0.400000 +1757 727 0.400000 +1757 776 0.400000 +1758 65 0.400000 +1758 130 0.400000 +1758 134 0.400000 +1758 198 0.400000 +1758 244 0.400000 +1758 252 0.400000 +1758 279 0.400000 +1758 351 0.400000 +1758 385 0.400000 +1758 412 0.400000 +1758 500 0.400000 +1758 506 0.400000 +1758 598 0.400000 +1758 638 0.400000 +1758 687 0.400000 +1758 707 0.400000 +1758 740 0.400000 +1759 60 0.400000 +1759 85 0.400000 +1759 130 0.400000 +1759 179 0.400000 +1759 192 0.400000 +1759 317 0.400000 +1759 320 0.400000 +1759 362 0.400000 +1759 364 0.400000 +1759 380 0.400000 +1759 498 0.400000 +1759 562 0.400000 +1759 601 0.400000 +1759 721 0.400000 +1759 796 0.400000 +1760 4 0.400000 +1760 28 0.400000 +1760 52 0.400000 +1760 96 0.400000 +1760 177 0.400000 +1760 251 0.400000 +1760 318 0.400000 +1760 321 0.400000 +1760 444 0.400000 +1760 493 0.400000 +1760 500 0.400000 +1760 546 0.400000 +1760 556 0.400000 +1760 571 0.400000 +1760 617 0.400000 +1760 679 0.400000 +1760 711 0.400000 +1760 714 0.400000 +1760 720 0.400000 +1760 732 0.400000 +1760 766 0.400000 +1761 46 0.400000 +1761 232 0.400000 +1761 319 0.400000 +1761 347 0.400000 +1761 353 0.400000 +1761 364 0.400000 +1761 406 0.400000 +1761 435 0.400000 +1761 569 0.400000 +1761 574 0.400000 +1761 630 0.400000 +1761 708 0.400000 +1762 36 0.400000 +1762 141 0.400000 +1762 159 0.400000 +1762 215 0.400000 +1762 381 0.400000 +1762 402 0.400000 +1762 407 0.400000 +1762 411 0.400000 +1762 440 0.400000 +1762 561 0.400000 +1762 647 0.400000 +1762 650 0.400000 +1762 717 0.400000 +1763 14 0.400000 +1763 74 0.400000 +1763 80 0.400000 +1763 97 0.400000 +1763 122 0.400000 +1763 135 0.400000 +1763 142 0.400000 +1763 164 0.400000 +1763 233 0.400000 +1763 333 0.400000 +1763 344 0.400000 +1763 377 0.400000 +1763 486 0.400000 +1763 487 0.400000 +1763 515 0.400000 +1763 523 0.400000 +1763 544 0.400000 +1763 581 0.400000 +1763 642 0.400000 +1763 694 0.400000 +1763 710 0.400000 +1763 723 0.400000 +1763 735 0.400000 +1763 783 0.400000 +1764 59 0.400000 +1764 70 0.400000 +1764 81 0.400000 +1764 97 0.400000 +1764 105 0.400000 +1764 116 0.400000 +1764 117 0.400000 +1764 135 0.400000 +1764 299 0.400000 +1764 322 0.400000 +1764 379 0.400000 +1764 386 0.400000 +1764 410 0.400000 +1764 417 0.400000 +1764 470 0.400000 +1764 503 0.400000 +1764 543 0.400000 +1764 612 0.400000 +1764 626 0.400000 +1764 638 0.400000 +1764 653 0.400000 +1764 753 0.400000 +1765 62 0.400000 +1765 126 0.400000 +1765 136 0.400000 +1765 207 0.400000 +1765 242 0.400000 +1765 310 0.400000 +1765 356 0.400000 +1765 362 0.400000 +1765 407 0.400000 +1765 447 0.400000 +1765 490 0.400000 +1765 565 0.400000 +1765 607 0.400000 +1765 627 0.400000 +1765 674 0.400000 +1765 716 0.400000 +1765 745 0.400000 +1766 117 0.400000 +1766 137 0.400000 +1766 144 0.400000 +1766 146 0.400000 +1766 246 0.400000 +1766 337 0.400000 +1766 450 0.400000 +1766 452 0.400000 +1766 465 0.400000 +1766 495 0.400000 +1766 499 0.400000 +1766 529 0.400000 +1766 554 0.400000 +1766 555 0.400000 +1766 636 0.400000 +1766 679 0.400000 +1766 724 0.400000 +1766 730 0.400000 +1767 36 0.400000 +1767 55 0.400000 +1767 226 0.400000 +1767 269 0.400000 +1767 319 0.400000 +1767 324 0.400000 +1767 348 0.400000 +1767 389 0.400000 +1767 396 0.400000 +1767 496 0.400000 +1767 514 0.400000 +1767 526 0.400000 +1767 587 0.400000 +1767 654 0.400000 +1767 689 0.400000 +1767 711 0.400000 +1767 749 0.400000 +1768 38 0.400000 +1768 74 0.400000 +1768 101 0.400000 +1768 139 0.400000 +1768 158 0.400000 +1768 184 0.400000 +1768 195 0.400000 +1768 231 0.400000 +1768 241 0.400000 +1768 279 0.400000 +1768 290 0.400000 +1768 305 0.400000 +1768 340 0.400000 +1768 463 0.400000 +1768 626 0.400000 +1768 636 0.400000 +1768 678 0.400000 +1768 698 0.400000 +1768 753 0.400000 +1768 799 0.400000 +1769 87 0.400000 +1769 93 0.400000 +1769 151 0.400000 +1769 178 0.400000 +1769 211 0.400000 +1769 258 0.400000 +1769 388 0.400000 +1769 389 0.400000 +1769 400 0.400000 +1769 671 0.400000 +1769 673 0.400000 +1769 682 0.400000 +1769 748 0.400000 +1769 767 0.400000 +1770 95 0.400000 +1770 248 0.400000 +1770 300 0.400000 +1770 302 0.400000 +1770 345 0.400000 +1770 380 0.400000 +1770 431 0.400000 +1770 526 0.400000 +1770 551 0.400000 +1770 682 0.400000 +1770 766 0.400000 +1770 792 0.400000 +1771 42 0.400000 +1771 80 0.400000 +1771 217 0.400000 +1771 220 0.400000 +1771 230 0.400000 +1771 367 0.400000 +1771 388 0.400000 +1771 421 0.400000 +1771 450 0.400000 +1771 459 0.400000 +1771 563 0.400000 +1771 569 0.400000 +1771 583 0.400000 +1771 675 0.400000 +1771 787 0.400000 +1771 799 0.400000 +1772 137 0.400000 +1772 219 0.400000 +1772 264 0.400000 +1772 267 0.400000 +1772 285 0.400000 +1772 402 0.400000 +1772 439 0.400000 +1772 482 0.400000 +1772 533 0.400000 +1772 582 0.400000 +1772 745 0.400000 +1773 67 0.400000 +1773 99 0.400000 +1773 102 0.400000 +1773 143 0.400000 +1773 163 0.400000 +1773 211 0.400000 +1773 324 0.400000 +1773 347 0.400000 +1773 365 0.400000 +1773 391 0.400000 +1773 518 0.400000 +1773 565 0.400000 +1773 584 0.400000 +1773 630 0.400000 +1773 641 0.400000 +1773 679 0.400000 +1773 692 0.400000 +1773 763 0.400000 +1774 71 0.400000 +1774 133 0.400000 +1774 167 0.400000 +1774 206 0.400000 +1774 285 0.400000 +1774 339 0.400000 +1774 448 0.400000 +1774 551 0.400000 +1774 594 0.400000 +1774 662 0.400000 +1774 669 0.400000 +1774 725 0.400000 +1774 732 0.400000 +1775 33 0.400000 +1775 64 0.400000 +1775 198 0.400000 +1775 215 0.400000 +1775 290 0.400000 +1775 344 0.400000 +1775 352 0.400000 +1775 666 0.400000 +1775 681 0.400000 +1775 703 0.400000 +1775 711 0.400000 +1776 24 0.400000 +1776 107 0.400000 +1776 146 0.400000 +1776 160 0.400000 +1776 192 0.400000 +1776 198 0.400000 +1776 251 0.400000 +1776 344 0.400000 +1776 554 0.400000 +1776 672 0.400000 +1776 674 0.400000 +1776 687 0.400000 +1776 697 0.400000 +1776 726 0.400000 +1776 728 0.400000 +1776 742 0.400000 +1776 757 0.400000 +1776 773 0.400000 +1776 784 0.400000 +1777 28 0.400000 +1777 36 0.400000 +1777 71 0.400000 +1777 123 0.400000 +1777 133 0.400000 +1777 182 0.400000 +1777 186 0.400000 +1777 193 0.400000 +1777 221 0.400000 +1777 304 0.400000 +1777 326 0.400000 +1777 384 0.400000 +1777 432 0.400000 +1777 506 0.400000 +1777 565 0.400000 +1777 585 0.400000 +1777 597 0.400000 +1777 627 0.400000 +1777 647 0.400000 +1777 652 0.400000 +1778 45 0.400000 +1778 59 0.400000 +1778 101 0.400000 +1778 103 0.400000 +1778 121 0.400000 +1778 123 0.400000 +1778 201 0.400000 +1778 245 0.400000 +1778 257 0.400000 +1778 270 0.400000 +1778 317 0.400000 +1778 437 0.400000 +1778 455 0.400000 +1778 544 0.400000 +1778 582 0.400000 +1778 605 0.400000 +1778 630 0.400000 +1778 631 0.400000 +1778 634 0.400000 +1778 696 0.400000 +1778 798 0.400000 +1779 30 0.400000 +1779 41 0.400000 +1779 58 0.400000 +1779 119 0.400000 +1779 134 0.400000 +1779 171 0.400000 +1779 173 0.400000 +1779 279 0.400000 +1779 296 0.400000 +1779 348 0.400000 +1779 353 0.400000 +1779 361 0.400000 +1779 437 0.400000 +1779 463 0.400000 +1779 499 0.400000 +1779 591 0.400000 +1779 610 0.400000 +1779 633 0.400000 +1779 644 0.400000 +1779 706 0.400000 +1780 30 0.400000 +1780 48 0.400000 +1780 92 0.400000 +1780 125 0.400000 +1780 163 0.400000 +1780 194 0.400000 +1780 232 0.400000 +1780 286 0.400000 +1780 311 0.400000 +1780 315 0.400000 +1780 353 0.400000 +1780 388 0.400000 +1780 396 0.400000 +1780 406 0.400000 +1780 415 0.400000 +1780 438 0.400000 +1780 472 0.400000 +1780 493 0.400000 +1780 496 0.400000 +1780 593 0.400000 +1780 691 0.400000 +1780 746 0.400000 +1781 7 0.400000 +1781 102 0.400000 +1781 120 0.400000 +1781 134 0.400000 +1781 159 0.400000 +1781 172 0.400000 +1781 174 0.400000 +1781 265 0.400000 +1781 421 0.400000 +1781 508 0.400000 +1781 565 0.400000 +1781 649 0.400000 +1781 689 0.400000 +1781 786 0.400000 +1782 7 0.400000 +1782 92 0.400000 +1782 156 0.400000 +1782 182 0.400000 +1782 241 0.400000 +1782 251 0.400000 +1782 257 0.400000 +1782 289 0.400000 +1782 297 0.400000 +1782 434 0.400000 +1782 520 0.400000 +1782 676 0.400000 +1782 771 0.400000 +1783 32 0.400000 +1783 42 0.400000 +1783 111 0.400000 +1783 136 0.400000 +1783 161 0.400000 +1783 178 0.400000 +1783 213 0.400000 +1783 256 0.400000 +1783 361 0.400000 +1783 402 0.400000 +1783 468 0.400000 +1783 575 0.400000 +1783 610 0.400000 +1783 639 0.400000 +1783 667 0.400000 +1783 705 0.400000 +1783 785 0.400000 +1784 26 0.400000 +1784 304 0.400000 +1784 327 0.400000 +1784 372 0.400000 +1784 398 0.400000 +1784 425 0.400000 +1784 531 0.400000 +1784 533 0.400000 +1784 700 0.400000 +1784 781 0.400000 +1785 15 0.400000 +1785 199 0.400000 +1785 213 0.400000 +1785 257 0.400000 +1785 327 0.400000 +1785 328 0.400000 +1785 443 0.400000 +1785 456 0.400000 +1785 478 0.400000 +1785 501 0.400000 +1785 658 0.400000 +1785 690 0.400000 +1785 792 0.400000 +1786 36 0.400000 +1786 88 0.400000 +1786 300 0.400000 +1786 308 0.400000 +1786 349 0.400000 +1786 437 0.400000 +1786 438 0.400000 +1786 442 0.400000 +1786 524 0.400000 +1786 576 0.400000 +1786 724 0.400000 +1786 786 0.400000 +1787 13 0.400000 +1787 42 0.400000 +1787 49 0.400000 +1787 103 0.400000 +1787 239 0.400000 +1787 326 0.400000 +1787 414 0.400000 +1787 443 0.400000 +1787 488 0.400000 +1787 516 0.400000 +1787 530 0.400000 +1787 532 0.400000 +1787 621 0.400000 +1787 661 0.400000 +1787 663 0.400000 +1787 704 0.400000 +1788 53 0.400000 +1788 66 0.400000 +1788 204 0.400000 +1788 231 0.400000 +1788 244 0.400000 +1788 257 0.400000 +1788 314 0.400000 +1788 365 0.400000 +1788 376 0.400000 +1788 380 0.400000 +1788 460 0.400000 +1788 466 0.400000 +1788 480 0.400000 +1788 487 0.400000 +1788 537 0.400000 +1788 554 0.400000 +1788 671 0.400000 +1788 690 0.400000 +1788 762 0.400000 +1788 785 0.400000 +1789 8 0.400000 +1789 41 0.400000 +1789 63 0.400000 +1789 94 0.400000 +1789 141 0.400000 +1789 142 0.400000 +1789 202 0.400000 +1789 286 0.400000 +1789 319 0.400000 +1789 337 0.400000 +1789 400 0.400000 +1789 446 0.400000 +1789 456 0.400000 +1789 561 0.400000 +1789 649 0.400000 +1789 730 0.400000 +1790 7 0.400000 +1790 89 0.400000 +1790 227 0.400000 +1790 231 0.400000 +1790 238 0.400000 +1790 244 0.400000 +1790 365 0.400000 +1790 400 0.400000 +1790 414 0.400000 +1790 439 0.400000 +1790 470 0.400000 +1790 519 0.400000 +1790 741 0.400000 +1790 788 0.400000 +1791 62 0.400000 +1791 125 0.400000 +1791 201 0.400000 +1791 233 0.400000 +1791 257 0.400000 +1791 365 0.400000 +1791 461 0.400000 +1791 544 0.400000 +1791 554 0.400000 +1791 606 0.400000 +1791 630 0.400000 +1791 796 0.400000 +1792 53 0.400000 +1792 73 0.400000 +1792 75 0.400000 +1792 95 0.400000 +1792 102 0.400000 +1792 109 0.400000 +1792 157 0.400000 +1792 221 0.400000 +1792 265 0.400000 +1792 284 0.400000 +1792 323 0.400000 +1792 331 0.400000 +1792 381 0.400000 +1792 382 0.400000 +1792 403 0.400000 +1792 421 0.400000 +1792 435 0.400000 +1792 439 0.400000 +1792 457 0.400000 +1792 471 0.400000 +1792 499 0.400000 +1792 585 0.400000 +1792 629 0.400000 +1792 631 0.400000 +1792 674 0.400000 +1793 11 0.400000 +1793 64 0.400000 +1793 86 0.400000 +1793 199 0.400000 +1793 272 0.400000 +1793 401 0.400000 +1793 483 0.400000 +1793 511 0.400000 +1793 512 0.400000 +1793 531 0.400000 +1793 597 0.400000 +1793 726 0.400000 +1793 798 0.400000 +1794 2 0.400000 +1794 65 0.400000 +1794 196 0.400000 +1794 300 0.400000 +1794 320 0.400000 +1794 398 0.400000 +1794 443 0.400000 +1794 482 0.400000 +1794 509 0.400000 +1794 716 0.400000 +1795 58 0.400000 +1795 113 0.400000 +1795 153 0.400000 +1795 165 0.400000 +1795 175 0.400000 +1795 180 0.400000 +1795 234 0.400000 +1795 245 0.400000 +1795 329 0.400000 +1795 333 0.400000 +1795 338 0.400000 +1795 394 0.400000 +1795 453 0.400000 +1795 498 0.400000 +1795 579 0.400000 +1795 693 0.400000 +1795 705 0.400000 +1795 723 0.400000 +1795 787 0.400000 +1796 2 0.400000 +1796 9 0.400000 +1796 46 0.400000 +1796 81 0.400000 +1796 213 0.400000 +1796 367 0.400000 +1796 369 0.400000 +1796 561 0.400000 +1796 678 0.400000 +1796 733 0.400000 +1796 737 0.400000 +1796 774 0.400000 +1796 796 0.400000 +1797 4 0.400000 +1797 152 0.400000 +1797 198 0.400000 +1797 283 0.400000 +1797 317 0.400000 +1797 323 0.400000 +1797 388 0.400000 +1797 408 0.400000 +1797 409 0.400000 +1797 437 0.400000 +1797 501 0.400000 +1797 521 0.400000 +1797 617 0.400000 +1798 108 0.400000 +1798 115 0.400000 +1798 253 0.400000 +1798 316 0.400000 +1798 367 0.400000 +1798 369 0.400000 +1798 417 0.400000 +1798 471 0.400000 +1798 677 0.400000 +1798 722 0.400000 +1798 766 0.400000 +1798 770 0.400000 +1799 45 0.400000 +1799 74 0.400000 +1799 116 0.400000 +1799 145 0.400000 +1799 195 0.400000 +1799 220 0.400000 +1799 258 0.400000 +1799 294 0.400000 +1799 302 0.400000 +1799 385 0.400000 +1799 408 0.400000 +1799 439 0.400000 +1799 473 0.400000 +1799 536 0.400000 +1799 585 0.400000 +1799 597 0.400000 +1799 695 0.400000 +1799 697 0.400000 +1799 701 0.400000 +1799 725 0.400000 +1799 734 0.400000 +1799 758 0.400000 +1799 771 0.400000 +1800 136 0.400000 +1800 163 0.400000 +1800 194 0.400000 +1800 267 0.400000 +1800 300 0.400000 +1800 306 0.400000 +1800 310 0.400000 +1800 362 0.400000 +1800 432 0.400000 +1800 441 0.400000 +1800 531 0.400000 +1800 541 0.400000 +1800 551 0.400000 +1800 624 0.400000 +1800 629 0.400000 +1800 650 0.400000 +1800 697 0.400000 +1801 15 0.400000 +1801 34 0.400000 +1801 164 0.400000 +1801 185 0.400000 +1801 282 0.400000 +1801 328 0.400000 +1801 346 0.400000 +1801 405 0.400000 +1801 457 0.400000 +1801 468 0.400000 +1801 470 0.400000 +1801 478 0.400000 +1801 527 0.400000 +1801 558 0.400000 +1801 578 0.400000 +1801 685 0.400000 +1801 792 0.400000 +1802 94 0.400000 +1802 100 0.400000 +1802 140 0.400000 +1802 175 0.400000 +1802 267 0.400000 +1802 294 0.400000 +1802 413 0.400000 +1802 430 0.400000 +1802 484 0.400000 +1802 539 0.400000 +1802 596 0.400000 +1802 635 0.400000 +1802 704 0.400000 +1802 736 0.400000 +1802 744 0.400000 +1803 40 0.400000 +1803 97 0.400000 +1803 117 0.400000 +1803 151 0.400000 +1803 169 0.400000 +1803 172 0.400000 +1803 178 0.400000 +1803 184 0.400000 +1803 225 0.400000 +1803 268 0.400000 +1803 319 0.400000 +1803 421 0.400000 +1803 427 0.400000 +1803 432 0.400000 +1803 584 0.400000 +1803 666 0.400000 +1803 738 0.400000 +1804 29 0.400000 +1804 94 0.400000 +1804 131 0.400000 +1804 254 0.400000 +1804 413 0.400000 +1804 443 0.400000 +1804 543 0.400000 +1804 561 0.400000 +1804 596 0.400000 +1804 614 0.400000 +1804 618 0.400000 +1804 684 0.400000 +1804 744 0.400000 +1804 747 0.400000 +1804 758 0.400000 +1804 793 0.400000 +1805 204 0.400000 +1805 270 0.400000 +1805 284 0.400000 +1805 530 0.400000 +1805 549 0.400000 +1805 581 0.400000 +1805 629 0.400000 +1805 673 0.400000 +1805 676 0.400000 +1806 45 0.400000 +1806 245 0.400000 +1806 254 0.400000 +1806 328 0.400000 +1806 367 0.400000 +1806 388 0.400000 +1806 484 0.400000 +1806 518 0.400000 +1806 581 0.400000 +1806 654 0.400000 +1806 661 0.400000 +1806 720 0.400000 +1807 3 0.400000 +1807 16 0.400000 +1807 74 0.400000 +1807 89 0.400000 +1807 112 0.400000 +1807 142 0.400000 +1807 159 0.400000 +1807 230 0.400000 +1807 240 0.400000 +1807 365 0.400000 +1807 440 0.400000 +1807 446 0.400000 +1807 457 0.400000 +1807 517 0.400000 +1807 525 0.400000 +1807 527 0.400000 +1807 634 0.400000 +1807 681 0.400000 +1807 756 0.400000 +1808 32 0.400000 +1808 38 0.400000 +1808 96 0.400000 +1808 202 0.400000 +1808 314 0.400000 +1808 370 0.400000 +1808 392 0.400000 +1808 520 0.400000 +1808 637 0.400000 +1808 718 0.400000 +1808 743 0.400000 +1808 760 0.400000 +1808 762 0.400000 +1808 766 0.400000 +1809 115 0.400000 +1809 118 0.400000 +1809 120 0.400000 +1809 217 0.400000 +1809 229 0.400000 +1809 263 0.400000 +1809 307 0.400000 +1809 329 0.400000 +1809 332 0.400000 +1809 377 0.400000 +1809 381 0.400000 +1809 410 0.400000 +1809 463 0.400000 +1809 465 0.400000 +1809 547 0.400000 +1809 568 0.400000 +1809 571 0.400000 +1809 596 0.400000 +1809 604 0.400000 +1809 659 0.400000 +1809 741 0.400000 +1809 768 0.400000 +1810 93 0.400000 +1810 140 0.400000 +1810 161 0.400000 +1810 184 0.400000 +1810 348 0.400000 +1810 354 0.400000 +1810 383 0.400000 +1810 420 0.400000 +1810 494 0.400000 +1810 499 0.400000 +1810 522 0.400000 +1810 577 0.400000 +1810 695 0.400000 +1810 775 0.400000 +1811 22 0.400000 +1811 59 0.400000 +1811 149 0.400000 +1811 179 0.400000 +1811 226 0.400000 +1811 284 0.400000 +1811 333 0.400000 +1811 348 0.400000 +1811 411 0.400000 +1811 463 0.400000 +1811 539 0.400000 +1811 674 0.400000 +1811 678 0.400000 +1811 748 0.400000 +1811 757 0.400000 +1811 790 0.400000 +1812 52 0.400000 +1812 59 0.400000 +1812 99 0.400000 +1812 123 0.400000 +1812 191 0.400000 +1812 259 0.400000 +1812 281 0.400000 +1812 327 0.400000 +1812 337 0.400000 +1812 433 0.400000 +1812 655 0.400000 +1812 707 0.400000 +1812 716 0.400000 +1812 736 0.400000 +1813 27 0.400000 +1813 71 0.400000 +1813 101 0.400000 +1813 122 0.400000 +1813 130 0.400000 +1813 340 0.400000 +1813 445 0.400000 +1813 450 0.400000 +1813 459 0.400000 +1813 699 0.400000 +1813 774 0.400000 +1814 62 0.400000 +1814 69 0.400000 +1814 95 0.400000 +1814 112 0.400000 +1814 159 0.400000 +1814 191 0.400000 +1814 193 0.400000 +1814 220 0.400000 +1814 261 0.400000 +1814 347 0.400000 +1814 357 0.400000 +1814 409 0.400000 +1814 449 0.400000 +1814 458 0.400000 +1814 479 0.400000 +1814 521 0.400000 +1814 708 0.400000 +1814 709 0.400000 +1814 742 0.400000 +1814 765 0.400000 +1815 54 0.400000 +1815 65 0.400000 +1815 102 0.400000 +1815 150 0.400000 +1815 179 0.400000 +1815 209 0.400000 +1815 226 0.400000 +1815 240 0.400000 +1815 263 0.400000 +1815 292 0.400000 +1815 413 0.400000 +1815 481 0.400000 +1815 614 0.400000 +1815 621 0.400000 +1815 695 0.400000 +1815 699 0.400000 +1816 41 0.400000 +1816 53 0.400000 +1816 54 0.400000 +1816 78 0.400000 +1816 107 0.400000 +1816 176 0.400000 +1816 330 0.400000 +1816 341 0.400000 +1816 347 0.400000 +1816 489 0.400000 +1816 497 0.400000 +1816 564 0.400000 +1816 585 0.400000 +1816 633 0.400000 +1816 730 0.400000 +1816 731 0.400000 +1816 798 0.400000 +1817 12 0.400000 +1817 112 0.400000 +1817 156 0.400000 +1817 199 0.400000 +1817 475 0.400000 +1817 498 0.400000 +1817 503 0.400000 +1817 512 0.400000 +1817 514 0.400000 +1817 567 0.400000 +1817 663 0.400000 +1817 735 0.400000 +1817 764 0.400000 +1818 6 0.400000 +1818 7 0.400000 +1818 157 0.400000 +1818 170 0.400000 +1818 214 0.400000 +1818 215 0.400000 +1818 222 0.400000 +1818 234 0.400000 +1818 246 0.400000 +1818 506 0.400000 +1818 525 0.400000 +1818 693 0.400000 +1818 731 0.400000 +1818 785 0.400000 +1819 41 0.400000 +1819 135 0.400000 +1819 161 0.400000 +1819 176 0.400000 +1819 190 0.400000 +1819 244 0.400000 +1819 321 0.400000 +1819 363 0.400000 +1819 436 0.400000 +1819 486 0.400000 +1819 533 0.400000 +1819 569 0.400000 +1819 703 0.400000 +1819 786 0.400000 +1820 226 0.400000 +1820 369 0.400000 +1820 397 0.400000 +1821 38 0.400000 +1821 182 0.400000 +1821 241 0.400000 +1821 284 0.400000 +1821 335 0.400000 +1821 436 0.400000 +1821 484 0.400000 +1821 503 0.400000 +1821 554 0.400000 +1821 630 0.400000 +1821 697 0.400000 +1822 41 0.400000 +1822 84 0.400000 +1822 125 0.400000 +1822 202 0.400000 +1822 217 0.400000 +1822 317 0.400000 +1822 328 0.400000 +1822 417 0.400000 +1822 419 0.400000 +1822 429 0.400000 +1822 568 0.400000 +1822 621 0.400000 +1822 640 0.400000 +1822 657 0.400000 +1822 661 0.400000 +1822 669 0.400000 +1822 674 0.400000 +1822 722 0.400000 +1823 1 0.400000 +1823 40 0.400000 +1823 172 0.400000 +1823 232 0.400000 +1823 282 0.400000 +1823 487 0.400000 +1823 524 0.400000 +1823 533 0.400000 +1823 542 0.400000 +1823 604 0.400000 +1823 610 0.400000 +1823 663 0.400000 +1823 670 0.400000 +1823 696 0.400000 +1823 700 0.400000 +1823 712 0.400000 +1824 35 0.400000 +1824 114 0.400000 +1824 164 0.400000 +1824 217 0.400000 +1824 235 0.400000 +1824 269 0.400000 +1824 272 0.400000 +1824 322 0.400000 +1824 349 0.400000 +1824 393 0.400000 +1824 395 0.400000 +1824 433 0.400000 +1824 443 0.400000 +1824 648 0.400000 +1824 666 0.400000 +1824 677 0.400000 +1824 690 0.400000 +1824 719 0.400000 +1824 774 0.400000 +1825 90 0.400000 +1825 170 0.400000 +1825 231 0.400000 +1825 264 0.400000 +1825 296 0.400000 +1825 349 0.400000 +1825 372 0.400000 +1825 374 0.400000 +1825 431 0.400000 +1825 466 0.400000 +1825 474 0.400000 +1825 520 0.400000 +1825 530 0.400000 +1825 580 0.400000 +1825 585 0.400000 +1825 599 0.400000 +1825 607 0.400000 +1825 665 0.400000 +1825 707 0.400000 +1825 726 0.400000 +1825 749 0.400000 +1826 43 0.400000 +1826 104 0.400000 +1826 170 0.400000 +1826 205 0.400000 +1826 284 0.400000 +1826 400 0.400000 +1826 410 0.400000 +1826 438 0.400000 +1826 441 0.400000 +1826 484 0.400000 +1826 492 0.400000 +1826 602 0.400000 +1826 615 0.400000 +1826 620 0.400000 +1826 637 0.400000 +1826 646 0.400000 +1826 657 0.400000 +1826 662 0.400000 +1826 667 0.400000 +1826 714 0.400000 +1826 732 0.400000 +1826 743 0.400000 +1827 60 0.400000 +1827 248 0.400000 +1827 303 0.400000 +1827 378 0.400000 +1827 410 0.400000 +1827 472 0.400000 +1827 477 0.400000 +1827 565 0.400000 +1827 580 0.400000 +1827 597 0.400000 +1827 631 0.400000 +1827 637 0.400000 +1827 739 0.400000 +1827 766 0.400000 +1827 780 0.400000 +1828 25 0.400000 +1828 28 0.400000 +1828 155 0.400000 +1828 295 0.400000 +1828 315 0.400000 +1828 341 0.400000 +1828 385 0.400000 +1828 467 0.400000 +1828 570 0.400000 +1828 581 0.400000 +1828 709 0.400000 +1828 718 0.400000 +1829 34 0.400000 +1829 151 0.400000 +1829 207 0.400000 +1829 238 0.400000 +1829 380 0.400000 +1829 532 0.400000 +1829 641 0.400000 +1829 690 0.400000 +1830 43 0.400000 +1830 50 0.400000 +1830 64 0.400000 +1830 171 0.400000 +1830 173 0.400000 +1830 199 0.400000 +1830 422 0.400000 +1830 494 0.400000 +1830 519 0.400000 +1830 539 0.400000 +1830 609 0.400000 +1830 610 0.400000 +1830 663 0.400000 +1830 678 0.400000 +1830 708 0.400000 +1830 716 0.400000 +1830 727 0.400000 +1830 771 0.400000 +1831 97 0.400000 +1831 573 0.400000 +1831 668 0.400000 +1831 739 0.400000 +1831 760 0.400000 +1831 786 0.400000 +1832 73 0.400000 +1832 193 0.400000 +1832 263 0.400000 +1832 281 0.400000 +1832 370 0.400000 +1832 373 0.400000 +1832 457 0.400000 +1832 473 0.400000 +1832 543 0.400000 +1832 605 0.400000 +1832 611 0.400000 +1832 642 0.400000 +1832 646 0.400000 +1832 670 0.400000 +1833 93 0.400000 +1833 134 0.400000 +1833 233 0.400000 +1833 237 0.400000 +1833 247 0.400000 +1833 301 0.400000 +1833 336 0.400000 +1833 347 0.400000 +1833 360 0.400000 +1833 367 0.400000 +1833 612 0.400000 +1833 613 0.400000 +1833 646 0.400000 +1834 6 0.400000 +1834 110 0.400000 +1834 171 0.400000 +1834 172 0.400000 +1834 288 0.400000 +1834 326 0.400000 +1834 354 0.400000 +1834 458 0.400000 +1834 476 0.400000 +1834 486 0.400000 +1834 493 0.400000 +1834 522 0.400000 +1834 538 0.400000 +1834 563 0.400000 +1834 619 0.400000 +1834 627 0.400000 +1834 718 0.400000 +1834 743 0.400000 +1835 83 0.400000 +1835 162 0.400000 +1835 257 0.400000 +1835 287 0.400000 +1835 365 0.400000 +1835 622 0.400000 +1835 632 0.400000 +1835 649 0.400000 +1835 651 0.400000 +1835 706 0.400000 +1835 744 0.400000 +1835 747 0.400000 +1835 798 0.400000 +1836 24 0.400000 +1836 166 0.400000 +1836 389 0.400000 +1836 402 0.400000 +1836 430 0.400000 +1836 480 0.400000 +1836 518 0.400000 +1836 586 0.400000 +1836 651 0.400000 +1836 657 0.400000 +1837 21 0.400000 +1837 64 0.400000 +1837 84 0.400000 +1837 171 0.400000 +1837 214 0.400000 +1837 256 0.400000 +1837 257 0.400000 +1837 260 0.400000 +1837 273 0.400000 +1837 557 0.400000 +1837 596 0.400000 +1837 603 0.400000 +1837 639 0.400000 +1837 655 0.400000 +1838 8 0.400000 +1838 10 0.400000 +1838 13 0.400000 +1838 25 0.400000 +1838 66 0.400000 +1838 72 0.400000 +1838 92 0.400000 +1838 111 0.400000 +1838 123 0.400000 +1838 319 0.400000 +1838 421 0.400000 +1838 441 0.400000 +1838 447 0.400000 +1838 484 0.400000 +1838 507 0.400000 +1838 534 0.400000 +1838 593 0.400000 +1838 616 0.400000 +1838 617 0.400000 +1838 637 0.400000 +1838 716 0.400000 +1839 109 0.400000 +1839 173 0.400000 +1839 181 0.400000 +1839 252 0.400000 +1839 385 0.400000 +1839 409 0.400000 +1839 428 0.400000 +1839 467 0.400000 +1839 477 0.400000 +1839 481 0.400000 +1839 581 0.400000 +1839 629 0.400000 +1839 640 0.400000 +1839 656 0.400000 +1839 713 0.400000 +1840 60 0.400000 +1840 101 0.400000 +1840 204 0.400000 +1840 207 0.400000 +1840 316 0.400000 +1840 342 0.400000 +1840 366 0.400000 +1840 562 0.400000 +1840 636 0.400000 +1840 639 0.400000 +1840 673 0.400000 +1841 40 0.400000 +1841 41 0.400000 +1841 100 0.400000 +1841 127 0.400000 +1841 152 0.400000 +1841 154 0.400000 +1841 205 0.400000 +1841 237 0.400000 +1841 366 0.400000 +1841 376 0.400000 +1841 514 0.400000 +1841 587 0.400000 +1841 590 0.400000 +1841 603 0.400000 +1841 657 0.400000 +1841 676 0.400000 +1841 781 0.400000 +1842 88 0.400000 +1842 115 0.400000 +1842 179 0.400000 +1842 235 0.400000 +1842 291 0.400000 +1842 382 0.400000 +1842 452 0.400000 +1842 455 0.400000 +1842 469 0.400000 +1842 530 0.400000 +1842 700 0.400000 +1842 769 0.400000 +1843 60 0.400000 +1843 158 0.400000 +1843 219 0.400000 +1843 243 0.400000 +1843 251 0.400000 +1843 332 0.400000 +1843 337 0.400000 +1843 350 0.400000 +1843 398 0.400000 +1843 411 0.400000 +1843 540 0.400000 +1843 551 0.400000 +1843 573 0.400000 +1843 602 0.400000 +1843 617 0.400000 +1843 776 0.400000 +1843 782 0.400000 +1844 3 0.400000 +1844 33 0.400000 +1844 36 0.400000 +1844 111 0.400000 +1844 191 0.400000 +1844 247 0.400000 +1844 294 0.400000 +1844 315 0.400000 +1844 481 0.400000 +1844 500 0.400000 +1844 506 0.400000 +1844 580 0.400000 +1844 660 0.400000 +1844 664 0.400000 +1844 722 0.400000 +1845 97 0.400000 +1845 143 0.400000 +1845 185 0.400000 +1845 187 0.400000 +1845 329 0.400000 +1845 348 0.400000 +1845 401 0.400000 +1845 432 0.400000 +1845 446 0.400000 +1845 677 0.400000 +1845 688 0.400000 +1845 720 0.400000 +1846 45 0.400000 +1846 48 0.400000 +1846 139 0.400000 +1846 185 0.400000 +1846 190 0.400000 +1846 310 0.400000 +1846 339 0.400000 +1846 357 0.400000 +1846 446 0.400000 +1846 458 0.400000 +1846 528 0.400000 +1846 537 0.400000 +1846 626 0.400000 +1846 651 0.400000 +1846 678 0.400000 +1846 797 0.400000 +1847 16 0.400000 +1847 26 0.400000 +1847 55 0.400000 +1847 139 0.400000 +1847 166 0.400000 +1847 202 0.400000 +1847 209 0.400000 +1847 405 0.400000 +1847 432 0.400000 +1847 495 0.400000 +1847 507 0.400000 +1847 510 0.400000 +1847 513 0.400000 +1847 518 0.400000 +1847 556 0.400000 +1847 614 0.400000 +1847 709 0.400000 +1847 744 0.400000 +1847 790 0.400000 +1848 109 0.400000 +1848 191 0.400000 +1848 244 0.400000 +1848 253 0.400000 +1848 394 0.400000 +1848 450 0.400000 +1848 506 0.400000 +1848 508 0.400000 +1848 559 0.400000 +1848 615 0.400000 +1848 621 0.400000 +1848 734 0.400000 +1848 754 0.400000 +1848 799 0.400000 +1849 2 0.400000 +1849 16 0.400000 +1849 40 0.400000 +1849 123 0.400000 +1849 129 0.400000 +1849 246 0.400000 +1849 269 0.400000 +1849 303 0.400000 +1849 321 0.400000 +1849 395 0.400000 +1849 474 0.400000 +1849 603 0.400000 +1849 629 0.400000 +1849 781 0.400000 +1850 1 0.400000 +1850 41 0.400000 +1850 69 0.400000 +1850 78 0.400000 +1850 131 0.400000 +1850 230 0.400000 +1850 233 0.400000 +1850 234 0.400000 +1850 272 0.400000 +1850 282 0.400000 +1850 299 0.400000 +1850 342 0.400000 +1850 410 0.400000 +1850 532 0.400000 +1850 579 0.400000 +1850 614 0.400000 +1850 712 0.400000 +1850 713 0.400000 +1850 776 0.400000 +1851 26 0.400000 +1851 227 0.400000 +1851 231 0.400000 +1851 254 0.400000 +1851 389 0.400000 +1851 420 0.400000 +1851 456 0.400000 +1851 461 0.400000 +1851 549 0.400000 +1851 695 0.400000 +1851 733 0.400000 +1851 735 0.400000 +1852 333 0.400000 +1852 425 0.400000 +1852 550 0.400000 +1852 607 0.400000 +1852 613 0.400000 +1852 622 0.400000 +1852 633 0.400000 +1852 707 0.400000 +1852 713 0.400000 +1852 724 0.400000 +1852 728 0.400000 +1852 763 0.400000 +1853 151 0.400000 +1853 222 0.400000 +1853 240 0.400000 +1853 252 0.400000 +1853 274 0.400000 +1853 304 0.400000 +1853 349 0.400000 +1853 378 0.400000 +1853 409 0.400000 +1853 476 0.400000 +1853 531 0.400000 +1853 541 0.400000 +1853 578 0.400000 +1853 605 0.400000 +1853 681 0.400000 +1853 710 0.400000 +1853 716 0.400000 +1853 756 0.400000 +1853 767 0.400000 +1854 15 0.400000 +1854 88 0.400000 +1854 184 0.400000 +1854 198 0.400000 +1854 210 0.400000 +1854 256 0.400000 +1854 267 0.400000 +1854 441 0.400000 +1854 554 0.400000 +1854 649 0.400000 +1854 678 0.400000 +1854 697 0.400000 +1855 113 0.400000 +1855 117 0.400000 +1855 267 0.400000 +1855 283 0.400000 +1855 297 0.400000 +1855 314 0.400000 +1855 415 0.400000 +1855 581 0.400000 +1855 635 0.400000 +1855 650 0.400000 +1855 719 0.400000 +1855 765 0.400000 +1856 1 0.400000 +1856 8 0.400000 +1856 69 0.400000 +1856 137 0.400000 +1856 173 0.400000 +1856 191 0.400000 +1856 308 0.400000 +1856 344 0.400000 +1856 540 0.400000 +1856 542 0.400000 +1856 625 0.400000 +1856 646 0.400000 +1856 677 0.400000 +1856 700 0.400000 +1857 103 0.400000 +1857 147 0.400000 +1857 148 0.400000 +1857 174 0.400000 +1857 241 0.400000 +1857 337 0.400000 +1857 352 0.400000 +1857 360 0.400000 +1857 362 0.400000 +1857 397 0.400000 +1857 415 0.400000 +1857 465 0.400000 +1857 481 0.400000 +1857 498 0.400000 +1857 547 0.400000 +1857 587 0.400000 +1857 636 0.400000 +1857 741 0.400000 +1857 742 0.400000 +1857 743 0.400000 +1858 50 0.400000 +1858 103 0.400000 +1858 129 0.400000 +1858 154 0.400000 +1858 162 0.400000 +1858 199 0.400000 +1858 211 0.400000 +1858 455 0.400000 +1858 478 0.400000 +1858 499 0.400000 +1858 554 0.400000 +1858 635 0.400000 +1858 656 0.400000 +1858 749 0.400000 +1858 778 0.400000 +1859 37 0.400000 +1859 38 0.400000 +1859 57 0.400000 +1859 98 0.400000 +1859 154 0.400000 +1859 198 0.400000 +1859 245 0.400000 +1859 322 0.400000 +1859 440 0.400000 +1859 446 0.400000 +1859 489 0.400000 +1859 490 0.400000 +1859 563 0.400000 +1859 724 0.400000 +1859 744 0.400000 +1859 786 0.400000 +1860 9 0.400000 +1860 19 0.400000 +1860 71 0.400000 +1860 350 0.400000 +1860 358 0.400000 +1860 449 0.400000 +1860 466 0.400000 +1860 505 0.400000 +1860 540 0.400000 +1860 549 0.400000 +1860 578 0.400000 +1860 580 0.400000 +1860 595 0.400000 +1860 652 0.400000 +1860 668 0.400000 +1860 683 0.400000 +1860 708 0.400000 +1860 761 0.400000 +1860 781 0.400000 +1861 42 0.400000 +1861 224 0.400000 +1861 317 0.400000 +1861 387 0.400000 +1861 441 0.400000 +1861 458 0.400000 +1861 459 0.400000 +1861 492 0.400000 +1861 521 0.400000 +1861 554 0.400000 +1861 591 0.400000 +1861 659 0.400000 +1861 718 0.400000 +1861 762 0.400000 +1861 778 0.400000 +1862 38 0.400000 +1862 92 0.400000 +1862 137 0.400000 +1862 165 0.400000 +1862 235 0.400000 +1862 274 0.400000 +1862 298 0.400000 +1862 322 0.400000 +1862 348 0.400000 +1862 359 0.400000 +1862 399 0.400000 +1862 450 0.400000 +1862 476 0.400000 +1862 581 0.400000 +1862 702 0.400000 +1862 765 0.400000 +1863 181 0.400000 +1863 183 0.400000 +1863 194 0.400000 +1863 326 0.400000 +1863 360 0.400000 +1863 407 0.400000 +1863 417 0.400000 +1863 418 0.400000 +1863 474 0.400000 +1863 502 0.400000 +1863 685 0.400000 +1863 709 0.400000 +1863 739 0.400000 +1863 754 0.400000 +1864 38 0.400000 +1864 73 0.400000 +1864 164 0.400000 +1864 176 0.400000 +1864 301 0.400000 +1864 323 0.400000 +1864 327 0.400000 +1864 348 0.400000 +1864 394 0.400000 +1864 403 0.400000 +1864 548 0.400000 +1864 571 0.400000 +1864 577 0.400000 +1864 590 0.400000 +1864 619 0.400000 +1864 655 0.400000 +1864 696 0.400000 +1864 763 0.400000 +1865 82 0.400000 +1865 95 0.400000 +1865 133 0.400000 +1865 145 0.400000 +1865 151 0.400000 +1865 155 0.400000 +1865 211 0.400000 +1865 268 0.400000 +1865 393 0.400000 +1865 429 0.400000 +1865 435 0.400000 +1865 436 0.400000 +1865 437 0.400000 +1865 463 0.400000 +1865 476 0.400000 +1865 600 0.400000 +1865 603 0.400000 +1865 636 0.400000 +1865 653 0.400000 +1865 688 0.400000 +1865 692 0.400000 +1865 701 0.400000 +1866 95 0.400000 +1866 101 0.400000 +1866 139 0.400000 +1866 356 0.400000 +1866 464 0.400000 +1866 518 0.400000 +1866 519 0.400000 +1866 542 0.400000 +1866 612 0.400000 +1866 660 0.400000 +1866 692 0.400000 +1867 7 0.400000 +1867 26 0.400000 +1867 40 0.400000 +1867 55 0.400000 +1867 58 0.400000 +1867 97 0.400000 +1867 108 0.400000 +1867 155 0.400000 +1867 196 0.400000 +1867 266 0.400000 +1867 332 0.400000 +1867 352 0.400000 +1867 367 0.400000 +1867 404 0.400000 +1867 455 0.400000 +1867 474 0.400000 +1867 489 0.400000 +1867 524 0.400000 +1867 719 0.400000 +1868 55 0.400000 +1868 82 0.400000 +1868 112 0.400000 +1868 128 0.400000 +1868 252 0.400000 +1868 261 0.400000 +1868 390 0.400000 +1868 411 0.400000 +1868 483 0.400000 +1868 670 0.400000 +1869 44 0.400000 +1869 46 0.400000 +1869 111 0.400000 +1869 145 0.400000 +1869 150 0.400000 +1869 180 0.400000 +1869 210 0.400000 +1869 246 0.400000 +1869 312 0.400000 +1869 349 0.400000 +1869 367 0.400000 +1869 389 0.400000 +1869 426 0.400000 +1869 453 0.400000 +1869 465 0.400000 +1869 478 0.400000 +1869 532 0.400000 +1869 596 0.400000 +1869 601 0.400000 +1869 603 0.400000 +1869 628 0.400000 +1869 738 0.400000 +1870 61 0.400000 +1870 85 0.400000 +1870 90 0.400000 +1870 95 0.400000 +1870 267 0.400000 +1870 273 0.400000 +1870 300 0.400000 +1870 307 0.400000 +1870 312 0.400000 +1870 326 0.400000 +1870 352 0.400000 +1870 374 0.400000 +1870 527 0.400000 +1870 604 0.400000 +1870 628 0.400000 +1870 654 0.400000 +1870 692 0.400000 +1870 695 0.400000 +1870 714 0.400000 +1871 49 0.400000 +1871 91 0.400000 +1871 94 0.400000 +1871 136 0.400000 +1871 141 0.400000 +1871 219 0.400000 +1871 235 0.400000 +1871 296 0.400000 +1871 341 0.400000 +1871 459 0.400000 +1871 491 0.400000 +1871 505 0.400000 +1871 537 0.400000 +1871 599 0.400000 +1871 604 0.400000 +1871 684 0.400000 +1871 746 0.400000 +1871 790 0.400000 +1872 6 0.400000 +1872 72 0.400000 +1872 233 0.400000 +1872 254 0.400000 +1872 279 0.400000 +1872 456 0.400000 +1872 604 0.400000 +1872 665 0.400000 +1872 675 0.400000 +1872 720 0.400000 +1872 780 0.400000 +1873 30 0.400000 +1873 108 0.400000 +1873 258 0.400000 +1873 332 0.400000 +1873 346 0.400000 +1873 398 0.400000 +1873 425 0.400000 +1873 431 0.400000 +1873 531 0.400000 +1873 596 0.400000 +1873 597 0.400000 +1873 606 0.400000 +1873 785 0.400000 +1873 794 0.400000 +1874 11 0.400000 +1874 101 0.400000 +1874 128 0.400000 +1874 137 0.400000 +1874 139 0.400000 +1874 208 0.400000 +1874 228 0.400000 +1874 246 0.400000 +1874 274 0.400000 +1874 309 0.400000 +1874 335 0.400000 +1874 339 0.400000 +1874 359 0.400000 +1874 420 0.400000 +1874 423 0.400000 +1874 462 0.400000 +1874 520 0.400000 +1874 749 0.400000 +1875 4 0.400000 +1875 102 0.400000 +1875 113 0.400000 +1875 162 0.400000 +1875 260 0.400000 +1875 504 0.400000 +1875 583 0.400000 +1875 694 0.400000 +1875 729 0.400000 +1875 731 0.400000 +1875 781 0.400000 +1876 15 0.400000 +1876 55 0.400000 +1876 78 0.400000 +1876 347 0.400000 +1876 379 0.400000 +1876 495 0.400000 +1876 550 0.400000 +1876 563 0.400000 +1876 573 0.400000 +1876 579 0.400000 +1876 681 0.400000 +1876 704 0.400000 +1876 741 0.400000 +1876 775 0.400000 +1876 800 0.400000 +1877 46 0.400000 +1877 99 0.400000 +1877 139 0.400000 +1877 184 0.400000 +1877 232 0.400000 +1877 244 0.400000 +1877 299 0.400000 +1877 444 0.400000 +1877 464 0.400000 +1877 490 0.400000 +1877 508 0.400000 +1877 509 0.400000 +1877 618 0.400000 +1877 619 0.400000 +1877 685 0.400000 +1878 4 0.400000 +1878 22 0.400000 +1878 65 0.400000 +1878 185 0.400000 +1878 214 0.400000 +1878 285 0.400000 +1878 300 0.400000 +1878 433 0.400000 +1878 502 0.400000 +1878 519 0.400000 +1878 613 0.400000 +1878 651 0.400000 +1878 682 0.400000 +1878 730 0.400000 +1879 2 0.400000 +1879 84 0.400000 +1879 87 0.400000 +1879 228 0.400000 +1879 235 0.400000 +1879 250 0.400000 +1879 327 0.400000 +1879 369 0.400000 +1879 427 0.400000 +1879 487 0.400000 +1879 491 0.400000 +1879 636 0.400000 +1879 700 0.400000 +1879 705 0.400000 +1879 742 0.400000 +1879 763 0.400000 +1879 782 0.400000 +1880 117 0.400000 +1880 225 0.400000 +1880 271 0.400000 +1880 309 0.400000 +1880 410 0.400000 +1880 477 0.400000 +1880 567 0.400000 +1880 628 0.400000 +1880 641 0.400000 +1880 706 0.400000 +1880 718 0.400000 +1881 47 0.400000 +1881 101 0.400000 +1881 144 0.400000 +1881 217 0.400000 +1881 227 0.400000 +1881 256 0.400000 +1881 374 0.400000 +1881 419 0.400000 +1881 473 0.400000 +1881 503 0.400000 +1881 508 0.400000 +1881 520 0.400000 +1881 578 0.400000 +1881 594 0.400000 +1881 657 0.400000 +1881 700 0.400000 +1881 774 0.400000 +1881 776 0.400000 +1881 795 0.400000 +1882 10 0.400000 +1882 32 0.400000 +1882 99 0.400000 +1882 275 0.400000 +1882 302 0.400000 +1882 324 0.400000 +1882 460 0.400000 +1882 538 0.400000 +1882 602 0.400000 +1882 608 0.400000 +1882 622 0.400000 +1882 641 0.400000 +1882 644 0.400000 +1882 662 0.400000 +1882 692 0.400000 +1882 696 0.400000 +1882 732 0.400000 +1883 20 0.400000 +1883 40 0.400000 +1883 60 0.400000 +1883 98 0.400000 +1883 109 0.400000 +1883 500 0.400000 +1883 504 0.400000 +1883 583 0.400000 +1883 584 0.400000 +1883 615 0.400000 +1883 621 0.400000 +1883 622 0.400000 +1883 659 0.400000 +1883 683 0.400000 +1883 692 0.400000 +1883 747 0.400000 +1883 758 0.400000 +1883 775 0.400000 +1884 79 0.400000 +1884 89 0.400000 +1884 178 0.400000 +1884 249 0.400000 +1884 251 0.400000 +1884 255 0.400000 +1884 274 0.400000 +1884 276 0.400000 +1884 284 0.400000 +1884 318 0.400000 +1884 327 0.400000 +1884 408 0.400000 +1884 474 0.400000 +1884 596 0.400000 +1884 742 0.400000 +1884 785 0.400000 +1885 50 0.400000 +1885 66 0.400000 +1885 107 0.400000 +1885 141 0.400000 +1885 257 0.400000 +1885 265 0.400000 +1885 278 0.400000 +1885 314 0.400000 +1885 340 0.400000 +1885 383 0.400000 +1885 426 0.400000 +1885 470 0.400000 +1885 504 0.400000 +1885 528 0.400000 +1885 601 0.400000 +1885 618 0.400000 +1885 716 0.400000 +1885 722 0.400000 +1885 777 0.400000 +1885 779 0.400000 +1886 4 0.400000 +1886 11 0.400000 +1886 42 0.400000 +1886 44 0.400000 +1886 209 0.400000 +1886 284 0.400000 +1886 292 0.400000 +1886 320 0.400000 +1886 379 0.400000 +1886 398 0.400000 +1886 481 0.400000 +1886 536 0.400000 +1886 538 0.400000 +1886 563 0.400000 +1886 578 0.400000 +1886 656 0.400000 +1886 683 0.400000 +1886 703 0.400000 +1886 774 0.400000 +1887 21 0.400000 +1887 24 0.400000 +1887 88 0.400000 +1887 158 0.400000 +1887 204 0.400000 +1887 265 0.400000 +1887 318 0.400000 +1887 320 0.400000 +1887 352 0.400000 +1887 377 0.400000 +1887 401 0.400000 +1887 490 0.400000 +1887 497 0.400000 +1887 640 0.400000 +1887 691 0.400000 +1887 730 0.400000 +1888 22 0.400000 +1888 30 0.400000 +1888 53 0.400000 +1888 134 0.400000 +1888 144 0.400000 +1888 198 0.400000 +1888 239 0.400000 +1888 380 0.400000 +1888 516 0.400000 +1888 573 0.400000 +1888 574 0.400000 +1888 575 0.400000 +1888 696 0.400000 +1888 729 0.400000 +1888 733 0.400000 +1889 121 0.400000 +1889 126 0.400000 +1889 182 0.400000 +1889 188 0.400000 +1889 210 0.400000 +1889 309 0.400000 +1889 346 0.400000 +1889 497 0.400000 +1889 558 0.400000 +1889 586 0.400000 +1889 591 0.400000 +1889 622 0.400000 +1889 730 0.400000 +1889 732 0.400000 +1889 751 0.400000 +1890 11 0.400000 +1890 26 0.400000 +1890 186 0.400000 +1890 190 0.400000 +1890 237 0.400000 +1890 242 0.400000 +1890 309 0.400000 +1890 313 0.400000 +1890 378 0.400000 +1890 393 0.400000 +1890 402 0.400000 +1890 437 0.400000 +1890 453 0.400000 +1890 485 0.400000 +1890 580 0.400000 +1890 630 0.400000 +1890 645 0.400000 +1890 672 0.400000 +1890 721 0.400000 +1890 737 0.400000 +1890 741 0.400000 +1890 770 0.400000 +1891 6 0.400000 +1891 21 0.400000 +1891 82 0.400000 +1891 159 0.400000 +1891 214 0.400000 +1891 281 0.400000 +1891 338 0.400000 +1891 375 0.400000 +1891 454 0.400000 +1891 461 0.400000 +1891 480 0.400000 +1891 522 0.400000 +1891 531 0.400000 +1891 576 0.400000 +1891 626 0.400000 +1891 658 0.400000 +1891 667 0.400000 +1891 671 0.400000 +1891 673 0.400000 +1891 724 0.400000 +1892 13 0.400000 +1892 100 0.400000 +1892 171 0.400000 +1892 315 0.400000 +1892 374 0.400000 +1892 404 0.400000 +1892 412 0.400000 +1892 422 0.400000 +1892 602 0.400000 +1892 628 0.400000 +1892 657 0.400000 +1892 728 0.400000 +1892 751 0.400000 +1892 757 0.400000 +1892 758 0.400000 +1892 762 0.400000 +1893 9 0.400000 +1893 37 0.400000 +1893 143 0.400000 +1893 197 0.400000 +1893 279 0.400000 +1893 286 0.400000 +1893 307 0.400000 +1893 361 0.400000 +1893 367 0.400000 +1893 374 0.400000 +1893 391 0.400000 +1893 405 0.400000 +1893 460 0.400000 +1893 505 0.400000 +1893 512 0.400000 +1893 578 0.400000 +1893 638 0.400000 +1893 664 0.400000 +1894 14 0.400000 +1894 96 0.400000 +1894 162 0.400000 +1894 178 0.400000 +1894 283 0.400000 +1894 285 0.400000 +1894 406 0.400000 +1894 434 0.400000 +1894 441 0.400000 +1894 450 0.400000 +1894 568 0.400000 +1894 572 0.400000 +1894 633 0.400000 +1895 361 0.400000 +1895 438 0.400000 +1895 462 0.400000 +1895 506 0.400000 +1895 512 0.400000 +1895 519 0.400000 +1895 558 0.400000 +1895 599 0.400000 +1895 613 0.400000 +1895 636 0.400000 +1895 648 0.400000 +1895 672 0.400000 +1895 710 0.400000 +1895 723 0.400000 +1896 1 0.400000 +1896 30 0.400000 +1896 139 0.400000 +1896 198 0.400000 +1896 251 0.400000 +1896 443 0.400000 +1896 578 0.400000 +1896 604 0.400000 +1896 666 0.400000 +1896 750 0.400000 +1896 795 0.400000 +1897 41 0.400000 +1897 79 0.400000 +1897 81 0.400000 +1897 107 0.400000 +1897 185 0.400000 +1897 192 0.400000 +1897 285 0.400000 +1897 304 0.400000 +1897 327 0.400000 +1897 353 0.400000 +1897 381 0.400000 +1897 382 0.400000 +1897 404 0.400000 +1897 461 0.400000 +1897 639 0.400000 +1897 700 0.400000 +1897 749 0.400000 +1898 9 0.400000 +1898 124 0.400000 +1898 601 0.400000 +1898 625 0.400000 +1898 688 0.400000 +1898 761 0.400000 +1899 40 0.400000 +1899 69 0.400000 +1899 75 0.400000 +1899 118 0.400000 +1899 122 0.400000 +1899 154 0.400000 +1899 211 0.400000 +1899 225 0.400000 +1899 263 0.400000 +1899 290 0.400000 +1899 400 0.400000 +1899 412 0.400000 +1899 578 0.400000 +1899 644 0.400000 +1899 699 0.400000 +1899 717 0.400000 +1900 44 0.400000 +1900 48 0.400000 +1900 112 0.400000 +1900 129 0.400000 +1900 224 0.400000 +1900 306 0.400000 +1900 343 0.400000 +1900 356 0.400000 +1900 698 0.400000 +1900 701 0.400000 +1900 705 0.400000 +1900 708 0.400000 +1900 731 0.400000 +1900 734 0.400000 +1900 775 0.400000 +1901 7 0.400000 +1901 76 0.400000 +1901 245 0.400000 +1901 272 0.400000 +1901 274 0.400000 +1901 358 0.400000 +1901 526 0.400000 +1901 548 0.400000 +1901 653 0.400000 +1901 737 0.400000 +1901 745 0.400000 +1902 78 0.400000 +1902 82 0.400000 +1902 97 0.400000 +1902 205 0.400000 +1902 338 0.400000 +1902 358 0.400000 +1902 385 0.400000 +1902 403 0.400000 +1902 407 0.400000 +1902 497 0.400000 +1902 523 0.400000 +1902 619 0.400000 +1902 715 0.400000 +1902 799 0.400000 +1903 22 0.400000 +1903 95 0.400000 +1903 112 0.400000 +1903 140 0.400000 +1903 247 0.400000 +1903 329 0.400000 +1903 331 0.400000 +1903 386 0.400000 +1903 410 0.400000 +1903 440 0.400000 +1903 493 0.400000 +1903 638 0.400000 +1903 756 0.400000 +1904 56 0.400000 +1904 85 0.400000 +1904 139 0.400000 +1904 191 0.400000 +1904 192 0.400000 +1904 246 0.400000 +1904 286 0.400000 +1904 535 0.400000 +1904 548 0.400000 +1904 577 0.400000 +1904 621 0.400000 +1904 692 0.400000 +1904 727 0.400000 +1904 755 0.400000 +1904 786 0.400000 +1904 795 0.400000 +1905 61 0.400000 +1905 180 0.400000 +1905 313 0.400000 +1905 360 0.400000 +1905 388 0.400000 +1905 395 0.400000 +1905 419 0.400000 +1905 427 0.400000 +1905 435 0.400000 +1905 444 0.400000 +1905 447 0.400000 +1905 454 0.400000 +1905 504 0.400000 +1905 521 0.400000 +1905 565 0.400000 +1905 579 0.400000 +1905 603 0.400000 +1905 631 0.400000 +1905 657 0.400000 +1905 682 0.400000 +1905 741 0.400000 +1905 764 0.400000 +1905 774 0.400000 +1906 54 0.400000 +1906 55 0.400000 +1906 87 0.400000 +1906 105 0.400000 +1906 177 0.400000 +1906 214 0.400000 +1906 218 0.400000 +1906 257 0.400000 +1906 292 0.400000 +1906 513 0.400000 +1906 530 0.400000 +1906 547 0.400000 +1906 675 0.400000 +1906 691 0.400000 +1906 704 0.400000 +1907 20 0.400000 +1907 32 0.400000 +1907 197 0.400000 +1907 378 0.400000 +1907 400 0.400000 +1907 545 0.400000 +1907 696 0.400000 +1907 784 0.400000 +1908 173 0.400000 +1908 205 0.400000 +1908 267 0.400000 +1908 321 0.400000 +1908 383 0.400000 +1908 539 0.400000 +1908 587 0.400000 +1908 601 0.400000 +1908 691 0.400000 +1908 696 0.400000 +1908 737 0.400000 +1909 70 0.400000 +1909 106 0.400000 +1909 113 0.400000 +1909 131 0.400000 +1909 176 0.400000 +1909 183 0.400000 +1909 210 0.400000 +1909 263 0.400000 +1909 307 0.400000 +1909 359 0.400000 +1909 365 0.400000 +1909 368 0.400000 +1909 526 0.400000 +1909 610 0.400000 +1909 661 0.400000 +1909 714 0.400000 +1909 725 0.400000 +1909 755 0.400000 +1910 6 0.400000 +1910 57 0.400000 +1910 105 0.400000 +1910 119 0.400000 +1910 182 0.400000 +1910 214 0.400000 +1910 281 0.400000 +1910 323 0.400000 +1910 358 0.400000 +1910 368 0.400000 +1910 393 0.400000 +1910 407 0.400000 +1910 455 0.400000 +1910 491 0.400000 +1910 568 0.400000 +1910 594 0.400000 +1910 696 0.400000 +1910 700 0.400000 +1911 12 0.400000 +1911 143 0.400000 +1911 164 0.400000 +1911 244 0.400000 +1911 385 0.400000 +1911 429 0.400000 +1911 446 0.400000 +1911 474 0.400000 +1911 482 0.400000 +1911 538 0.400000 +1911 645 0.400000 +1911 696 0.400000 +1911 705 0.400000 +1911 706 0.400000 +1911 729 0.400000 +1912 58 0.400000 +1912 79 0.400000 +1912 81 0.400000 +1912 82 0.400000 +1912 123 0.400000 +1912 148 0.400000 +1912 166 0.400000 +1912 206 0.400000 +1912 228 0.400000 +1912 325 0.400000 +1912 361 0.400000 +1912 367 0.400000 +1912 369 0.400000 +1912 413 0.400000 +1912 422 0.400000 +1912 487 0.400000 +1912 599 0.400000 +1912 621 0.400000 +1912 748 0.400000 +1913 34 0.400000 +1913 90 0.400000 +1913 138 0.400000 +1913 178 0.400000 +1913 257 0.400000 +1913 343 0.400000 +1913 351 0.400000 +1913 353 0.400000 +1913 478 0.400000 +1913 554 0.400000 +1913 568 0.400000 +1913 603 0.400000 +1913 716 0.400000 +1913 733 0.400000 +1913 735 0.400000 +1913 775 0.400000 +1914 13 0.400000 +1914 17 0.400000 +1914 56 0.400000 +1914 63 0.400000 +1914 141 0.400000 +1914 194 0.400000 +1914 205 0.400000 +1914 242 0.400000 +1914 324 0.400000 +1914 331 0.400000 +1914 368 0.400000 +1914 406 0.400000 +1914 424 0.400000 +1914 440 0.400000 +1914 479 0.400000 +1914 620 0.400000 +1914 650 0.400000 +1914 684 0.400000 +1914 687 0.400000 +1914 702 0.400000 +1914 719 0.400000 +1914 720 0.400000 +1915 30 0.400000 +1915 67 0.400000 +1915 75 0.400000 +1915 128 0.400000 +1915 149 0.400000 +1915 151 0.400000 +1915 155 0.400000 +1915 195 0.400000 +1915 228 0.400000 +1915 250 0.400000 +1915 257 0.400000 +1915 392 0.400000 +1915 520 0.400000 +1915 530 0.400000 +1915 550 0.400000 +1915 570 0.400000 +1915 641 0.400000 +1915 656 0.400000 +1915 674 0.400000 +1915 788 0.400000 +1916 80 0.400000 +1916 82 0.400000 +1916 103 0.400000 +1916 105 0.400000 +1916 234 0.400000 +1916 294 0.400000 +1916 324 0.400000 +1916 348 0.400000 +1916 361 0.400000 +1916 407 0.400000 +1916 458 0.400000 +1916 512 0.400000 +1916 549 0.400000 +1916 688 0.400000 +1916 723 0.400000 +1916 739 0.400000 +1917 42 0.400000 +1917 94 0.400000 +1917 102 0.400000 +1917 128 0.400000 +1917 130 0.400000 +1917 137 0.400000 +1917 176 0.400000 +1917 181 0.400000 +1917 205 0.400000 +1917 206 0.400000 +1917 242 0.400000 +1917 260 0.400000 +1917 261 0.400000 +1917 330 0.400000 +1917 435 0.400000 +1917 513 0.400000 +1917 577 0.400000 +1917 657 0.400000 +1917 663 0.400000 +1917 664 0.400000 +1918 3 0.400000 +1918 132 0.400000 +1918 135 0.400000 +1918 167 0.400000 +1918 186 0.400000 +1918 206 0.400000 +1918 402 0.400000 +1918 442 0.400000 +1918 508 0.400000 +1918 545 0.400000 +1918 561 0.400000 +1918 630 0.400000 +1918 713 0.400000 +1918 737 0.400000 +1919 101 0.400000 +1919 152 0.400000 +1919 205 0.400000 +1919 211 0.400000 +1919 234 0.400000 +1919 267 0.400000 +1919 312 0.400000 +1919 328 0.400000 +1919 384 0.400000 +1919 465 0.400000 +1919 551 0.400000 +1919 664 0.400000 +1919 725 0.400000 +1919 739 0.400000 +1919 742 0.400000 +1919 775 0.400000 +1919 784 0.400000 +1919 793 0.400000 +1920 23 0.400000 +1920 26 0.400000 +1920 58 0.400000 +1920 125 0.400000 +1920 164 0.400000 +1920 169 0.400000 +1920 184 0.400000 +1920 209 0.400000 +1920 227 0.400000 +1920 281 0.400000 +1920 284 0.400000 +1920 295 0.400000 +1920 342 0.400000 +1920 375 0.400000 +1920 383 0.400000 +1920 483 0.400000 +1920 669 0.400000 +1920 717 0.400000 +1920 729 0.400000 +1920 743 0.400000 +1920 745 0.400000 +1920 755 0.400000 +1920 764 0.400000 +1921 76 0.400000 +1921 177 0.400000 +1921 178 0.400000 +1921 272 0.400000 +1921 335 0.400000 +1921 425 0.400000 +1921 455 0.400000 +1921 469 0.400000 +1921 520 0.400000 +1921 585 0.400000 +1921 636 0.400000 +1921 643 0.400000 +1921 702 0.400000 +1921 726 0.400000 +1921 775 0.400000 +1922 43 0.400000 +1922 168 0.400000 +1922 181 0.400000 +1922 216 0.400000 +1922 236 0.400000 +1922 238 0.400000 +1922 363 0.400000 +1922 442 0.400000 +1922 497 0.400000 +1922 570 0.400000 +1922 594 0.400000 +1922 669 0.400000 +1923 55 0.400000 +1923 83 0.400000 +1923 149 0.400000 +1923 154 0.400000 +1923 316 0.400000 +1923 483 0.400000 +1923 487 0.400000 +1923 542 0.400000 +1923 543 0.400000 +1923 574 0.400000 +1923 649 0.400000 +1923 696 0.400000 +1923 697 0.400000 +1923 699 0.400000 +1923 707 0.400000 +1923 713 0.400000 +1923 742 0.400000 +1923 753 0.400000 +1924 30 0.400000 +1924 74 0.400000 +1924 76 0.400000 +1924 129 0.400000 +1924 143 0.400000 +1924 162 0.400000 +1924 201 0.400000 +1924 248 0.400000 +1924 362 0.400000 +1924 421 0.400000 +1924 467 0.400000 +1924 469 0.400000 +1924 496 0.400000 +1924 585 0.400000 +1924 601 0.400000 +1924 620 0.400000 +1924 644 0.400000 +1924 646 0.400000 +1924 743 0.400000 +1924 747 0.400000 +1925 56 0.400000 +1925 102 0.400000 +1925 281 0.400000 +1926 45 0.400000 +1926 105 0.400000 +1926 139 0.400000 +1926 168 0.400000 +1926 185 0.400000 +1926 220 0.400000 +1926 229 0.400000 +1926 335 0.400000 +1926 379 0.400000 +1926 380 0.400000 +1926 390 0.400000 +1926 660 0.400000 +1926 696 0.400000 +1926 734 0.400000 +1926 755 0.400000 +1927 74 0.400000 +1927 101 0.400000 +1927 157 0.400000 +1927 158 0.400000 +1927 200 0.400000 +1927 336 0.400000 +1927 341 0.400000 +1927 346 0.400000 +1927 385 0.400000 +1927 443 0.400000 +1927 488 0.400000 +1927 491 0.400000 +1927 520 0.400000 +1927 567 0.400000 +1927 588 0.400000 +1927 594 0.400000 +1927 618 0.400000 +1927 628 0.400000 +1927 685 0.400000 +1927 776 0.400000 +1927 779 0.400000 +1928 166 0.400000 +1928 270 0.400000 +1928 348 0.400000 +1928 409 0.400000 +1928 425 0.400000 +1928 444 0.400000 +1928 592 0.400000 +1928 689 0.400000 +1929 55 0.400000 +1929 129 0.400000 +1929 143 0.400000 +1929 152 0.400000 +1929 176 0.400000 +1929 183 0.400000 +1929 237 0.400000 +1929 255 0.400000 +1929 322 0.400000 +1929 359 0.400000 +1929 404 0.400000 +1929 428 0.400000 +1929 450 0.400000 +1929 477 0.400000 +1929 490 0.400000 +1929 544 0.400000 +1929 547 0.400000 +1929 571 0.400000 +1929 600 0.400000 +1929 611 0.400000 +1929 689 0.400000 +1929 711 0.400000 +1930 116 0.400000 +1930 359 0.400000 +1930 412 0.400000 +1930 435 0.400000 +1930 475 0.400000 +1930 548 0.400000 +1930 560 0.400000 +1930 561 0.400000 +1930 599 0.400000 +1930 655 0.400000 +1930 693 0.400000 +1930 715 0.400000 +1930 792 0.400000 +1931 29 0.400000 +1931 95 0.400000 +1931 109 0.400000 +1931 124 0.400000 +1931 290 0.400000 +1931 341 0.400000 +1931 408 0.400000 +1931 436 0.400000 +1931 547 0.400000 +1931 565 0.400000 +1931 605 0.400000 +1931 663 0.400000 +1931 675 0.400000 +1931 783 0.400000 +1932 39 0.400000 +1932 49 0.400000 +1932 90 0.400000 +1932 93 0.400000 +1932 98 0.400000 +1932 102 0.400000 +1932 125 0.400000 +1932 174 0.400000 +1932 192 0.400000 +1932 363 0.400000 +1932 416 0.400000 +1932 526 0.400000 +1932 571 0.400000 +1932 587 0.400000 +1932 591 0.400000 +1932 614 0.400000 +1932 678 0.400000 +1932 719 0.400000 +1932 743 0.400000 +1932 760 0.400000 +1933 4 0.400000 +1933 17 0.400000 +1933 18 0.400000 +1933 78 0.400000 +1933 155 0.400000 +1933 194 0.400000 +1933 254 0.400000 +1933 283 0.400000 +1933 308 0.400000 +1933 331 0.400000 +1933 424 0.400000 +1933 458 0.400000 +1933 492 0.400000 +1933 502 0.400000 +1933 538 0.400000 +1933 565 0.400000 +1933 574 0.400000 +1933 618 0.400000 +1933 674 0.400000 +1933 715 0.400000 +1934 83 0.400000 +1934 209 0.400000 +1934 243 0.400000 +1934 306 0.400000 +1934 381 0.400000 +1934 513 0.400000 +1934 559 0.400000 +1934 572 0.400000 +1934 733 0.400000 +1934 754 0.400000 +1934 763 0.400000 +1935 16 0.400000 +1935 80 0.400000 +1935 158 0.400000 +1935 173 0.400000 +1935 187 0.400000 +1935 202 0.400000 +1935 227 0.400000 +1935 320 0.400000 +1935 340 0.400000 +1935 395 0.400000 +1935 449 0.400000 +1935 461 0.400000 +1935 495 0.400000 +1935 536 0.400000 +1935 574 0.400000 +1935 581 0.400000 +1935 609 0.400000 +1935 616 0.400000 +1935 659 0.400000 +1935 679 0.400000 +1935 783 0.400000 +1936 25 0.400000 +1936 102 0.400000 +1936 126 0.400000 +1936 144 0.400000 +1936 153 0.400000 +1936 210 0.400000 +1936 297 0.400000 +1936 349 0.400000 +1936 416 0.400000 +1936 433 0.400000 +1936 461 0.400000 +1936 495 0.400000 +1936 586 0.400000 +1936 627 0.400000 +1936 639 0.400000 +1936 673 0.400000 +1937 20 0.400000 +1937 42 0.400000 +1937 97 0.400000 +1937 114 0.400000 +1937 135 0.400000 +1937 144 0.400000 +1937 160 0.400000 +1937 165 0.400000 +1937 187 0.400000 +1937 206 0.400000 +1937 248 0.400000 +1937 255 0.400000 +1937 338 0.400000 +1937 340 0.400000 +1937 341 0.400000 +1937 426 0.400000 +1937 480 0.400000 +1937 481 0.400000 +1937 615 0.400000 +1937 622 0.400000 +1937 663 0.400000 +1937 696 0.400000 +1937 738 0.400000 +1938 54 0.400000 +1938 147 0.400000 +1938 161 0.400000 +1938 164 0.400000 +1938 258 0.400000 +1938 263 0.400000 +1938 333 0.400000 +1938 385 0.400000 +1938 502 0.400000 +1938 529 0.400000 +1938 592 0.400000 +1938 625 0.400000 +1938 649 0.400000 +1939 40 0.400000 +1939 83 0.400000 +1939 92 0.400000 +1939 98 0.400000 +1939 340 0.400000 +1939 415 0.400000 +1939 541 0.400000 +1939 546 0.400000 +1939 594 0.400000 +1939 661 0.400000 +1939 720 0.400000 +1939 721 0.400000 +1939 743 0.400000 +1939 751 0.400000 +1939 776 0.400000 +1940 126 0.400000 +1940 167 0.400000 +1940 183 0.400000 +1940 226 0.400000 +1940 269 0.400000 +1940 316 0.400000 +1940 384 0.400000 +1940 407 0.400000 +1940 471 0.400000 +1940 582 0.400000 +1940 621 0.400000 +1940 651 0.400000 +1940 689 0.400000 +1940 782 0.400000 +1940 794 0.400000 +1941 28 0.400000 +1941 92 0.400000 +1941 161 0.400000 +1941 190 0.400000 +1941 207 0.400000 +1941 268 0.400000 +1941 293 0.400000 +1941 382 0.400000 +1941 422 0.400000 +1941 446 0.400000 +1941 524 0.400000 +1941 585 0.400000 +1941 587 0.400000 +1941 631 0.400000 +1941 800 0.400000 +1942 67 0.400000 +1942 131 0.400000 +1942 151 0.400000 +1942 153 0.400000 +1942 194 0.400000 +1942 197 0.400000 +1942 209 0.400000 +1942 309 0.400000 +1942 329 0.400000 +1942 367 0.400000 +1942 392 0.400000 +1942 588 0.400000 +1942 591 0.400000 +1942 615 0.400000 +1942 719 0.400000 +1942 778 0.400000 +1942 791 0.400000 +1943 49 0.400000 +1943 57 0.400000 +1943 102 0.400000 +1943 107 0.400000 +1943 163 0.400000 +1943 220 0.400000 +1943 256 0.400000 +1943 328 0.400000 +1943 342 0.400000 +1943 368 0.400000 +1943 385 0.400000 +1943 396 0.400000 +1943 408 0.400000 +1943 423 0.400000 +1943 525 0.400000 +1943 671 0.400000 +1943 734 0.400000 +1943 759 0.400000 +1944 63 0.400000 +1944 100 0.400000 +1944 123 0.400000 +1944 214 0.400000 +1944 250 0.400000 +1944 274 0.400000 +1944 284 0.400000 +1944 291 0.400000 +1944 293 0.400000 +1944 311 0.400000 +1944 419 0.400000 +1944 462 0.400000 +1944 594 0.400000 +1944 709 0.400000 +1944 794 0.400000 +1945 26 0.400000 +1945 38 0.400000 +1945 99 0.400000 +1945 198 0.400000 +1945 289 0.400000 +1945 313 0.400000 +1945 324 0.400000 +1945 380 0.400000 +1945 402 0.400000 +1945 470 0.400000 +1945 478 0.400000 +1945 487 0.400000 +1945 497 0.400000 +1945 544 0.400000 +1945 574 0.400000 +1945 589 0.400000 +1945 654 0.400000 +1945 673 0.400000 +1945 714 0.400000 +1946 4 0.400000 +1946 103 0.400000 +1946 176 0.400000 +1946 186 0.400000 +1946 288 0.400000 +1946 304 0.400000 +1946 343 0.400000 +1946 376 0.400000 +1946 398 0.400000 +1946 417 0.400000 +1946 519 0.400000 +1946 554 0.400000 +1946 579 0.400000 +1946 735 0.400000 +1946 775 0.400000 +1946 790 0.400000 +1947 25 0.400000 +1947 220 0.400000 +1947 243 0.400000 +1947 411 0.400000 +1947 502 0.400000 +1947 515 0.400000 +1947 664 0.400000 +1947 707 0.400000 +1947 734 0.400000 +1947 748 0.400000 +1947 764 0.400000 +1947 784 0.400000 +1948 59 0.400000 +1948 202 0.400000 +1948 208 0.400000 +1948 214 0.400000 +1948 227 0.400000 +1948 279 0.400000 +1948 411 0.400000 +1948 422 0.400000 +1948 513 0.400000 +1948 540 0.400000 +1948 579 0.400000 +1948 688 0.400000 +1948 707 0.400000 +1948 751 0.400000 +1948 776 0.400000 +1949 81 0.400000 +1949 238 0.400000 +1949 249 0.400000 +1949 265 0.400000 +1949 276 0.400000 +1949 301 0.400000 +1949 311 0.400000 +1949 323 0.400000 +1949 341 0.400000 +1949 342 0.400000 +1949 374 0.400000 +1949 383 0.400000 +1949 425 0.400000 +1949 441 0.400000 +1949 454 0.400000 +1949 462 0.400000 +1949 491 0.400000 +1949 509 0.400000 +1949 563 0.400000 +1949 567 0.400000 +1949 581 0.400000 +1949 673 0.400000 +1949 759 0.400000 +1950 49 0.400000 +1950 69 0.400000 +1950 70 0.400000 +1950 169 0.400000 +1950 324 0.400000 +1950 381 0.400000 +1950 396 0.400000 +1950 435 0.400000 +1950 455 0.400000 +1950 484 0.400000 +1950 500 0.400000 +1950 529 0.400000 +1950 653 0.400000 +1950 668 0.400000 +1950 674 0.400000 +1950 704 0.400000 +1950 740 0.400000 +1950 795 0.400000 +1951 4 0.400000 +1951 72 0.400000 +1951 150 0.400000 +1951 164 0.400000 +1951 225 0.400000 +1951 259 0.400000 +1951 342 0.400000 +1951 384 0.400000 +1951 468 0.400000 +1951 549 0.400000 +1951 663 0.400000 +1951 768 0.400000 +1952 56 0.400000 +1952 79 0.400000 +1952 87 0.400000 +1952 99 0.400000 +1952 117 0.400000 +1952 165 0.400000 +1952 206 0.400000 +1952 242 0.400000 +1952 305 0.400000 +1952 353 0.400000 +1952 361 0.400000 +1952 391 0.400000 +1952 425 0.400000 +1952 607 0.400000 +1952 672 0.400000 +1952 705 0.400000 +1952 746 0.400000 +1953 20 0.400000 +1953 53 0.400000 +1953 82 0.400000 +1953 120 0.400000 +1953 239 0.400000 +1953 292 0.400000 +1953 390 0.400000 +1953 438 0.400000 +1953 481 0.400000 +1953 524 0.400000 +1953 555 0.400000 +1953 575 0.400000 +1953 636 0.400000 +1953 712 0.400000 +1953 734 0.400000 +1953 752 0.400000 +1953 793 0.400000 +1953 797 0.400000 +1954 45 0.400000 +1954 48 0.400000 +1954 53 0.400000 +1954 149 0.400000 +1954 328 0.400000 +1954 358 0.400000 +1954 422 0.400000 +1954 463 0.400000 +1954 469 0.400000 +1954 493 0.400000 +1954 504 0.400000 +1954 547 0.400000 +1954 565 0.400000 +1954 581 0.400000 +1954 583 0.400000 +1954 680 0.400000 +1954 697 0.400000 +1954 761 0.400000 +1954 776 0.400000 +1955 9 0.400000 +1955 130 0.400000 +1955 137 0.400000 +1955 166 0.400000 +1955 200 0.400000 +1955 227 0.400000 +1955 230 0.400000 +1955 260 0.400000 +1955 311 0.400000 +1955 321 0.400000 +1955 322 0.400000 +1955 333 0.400000 +1955 342 0.400000 +1955 366 0.400000 +1955 486 0.400000 +1955 490 0.400000 +1955 542 0.400000 +1955 608 0.400000 +1955 627 0.400000 +1955 651 0.400000 +1955 665 0.400000 +1955 682 0.400000 +1955 723 0.400000 +1955 745 0.400000 +1955 759 0.400000 +1955 781 0.400000 +1955 791 0.400000 +1956 102 0.400000 +1956 241 0.400000 +1956 397 0.400000 +1956 452 0.400000 +1956 462 0.400000 +1956 529 0.400000 +1956 592 0.400000 +1956 686 0.400000 +1956 713 0.400000 +1957 24 0.400000 +1957 38 0.400000 +1957 202 0.400000 +1957 209 0.400000 +1957 262 0.400000 +1957 268 0.400000 +1957 289 0.400000 +1957 405 0.400000 +1957 455 0.400000 +1957 459 0.400000 +1957 615 0.400000 +1957 626 0.400000 +1957 766 0.400000 +1957 778 0.400000 +1957 797 0.400000 +1958 2 0.400000 +1958 6 0.400000 +1958 140 0.400000 +1958 156 0.400000 +1958 208 0.400000 +1958 222 0.400000 +1958 262 0.400000 +1958 293 0.400000 +1958 358 0.400000 +1958 366 0.400000 +1958 418 0.400000 +1958 422 0.400000 +1958 441 0.400000 +1958 443 0.400000 +1958 475 0.400000 +1958 554 0.400000 +1958 725 0.400000 +1958 744 0.400000 +1958 762 0.400000 +1959 20 0.400000 +1959 68 0.400000 +1959 202 0.400000 +1959 214 0.400000 +1959 354 0.400000 +1959 395 0.400000 +1959 444 0.400000 +1959 504 0.400000 +1959 540 0.400000 +1959 567 0.400000 +1959 592 0.400000 +1959 656 0.400000 +1959 670 0.400000 +1959 680 0.400000 +1959 708 0.400000 +1960 20 0.400000 +1960 42 0.400000 +1960 210 0.400000 +1960 281 0.400000 +1960 320 0.400000 +1960 333 0.400000 +1960 337 0.400000 +1960 382 0.400000 +1960 405 0.400000 +1960 414 0.400000 +1960 439 0.400000 +1960 446 0.400000 +1960 467 0.400000 +1960 513 0.400000 +1960 538 0.400000 +1960 565 0.400000 +1960 635 0.400000 +1960 756 0.400000 +1961 28 0.400000 +1961 89 0.400000 +1961 161 0.400000 +1961 206 0.400000 +1961 211 0.400000 +1961 281 0.400000 +1961 367 0.400000 +1961 383 0.400000 +1961 392 0.400000 +1961 460 0.400000 +1961 599 0.400000 +1961 621 0.400000 +1961 625 0.400000 +1961 627 0.400000 +1961 645 0.400000 +1961 676 0.400000 +1961 677 0.400000 +1961 731 0.400000 +1961 754 0.400000 +1961 761 0.400000 +1962 29 0.400000 +1962 90 0.400000 +1962 126 0.400000 +1962 165 0.400000 +1962 179 0.400000 +1962 202 0.400000 +1962 253 0.400000 +1962 292 0.400000 +1962 378 0.400000 +1962 380 0.400000 +1962 533 0.400000 +1962 573 0.400000 +1962 578 0.400000 +1962 601 0.400000 +1962 628 0.400000 +1962 659 0.400000 +1962 677 0.400000 +1962 704 0.400000 +1963 40 0.400000 +1963 63 0.400000 +1963 83 0.400000 +1963 114 0.400000 +1963 199 0.400000 +1963 206 0.400000 +1963 227 0.400000 +1963 260 0.400000 +1963 292 0.400000 +1963 322 0.400000 +1963 351 0.400000 +1963 402 0.400000 +1963 415 0.400000 +1963 418 0.400000 +1963 447 0.400000 +1963 479 0.400000 +1963 488 0.400000 +1963 537 0.400000 +1963 785 0.400000 +1964 91 0.400000 +1964 127 0.400000 +1964 243 0.400000 +1964 312 0.400000 +1964 374 0.400000 +1964 429 0.400000 +1964 459 0.400000 +1964 522 0.400000 +1964 735 0.400000 +1964 750 0.400000 +1964 770 0.400000 +1964 774 0.400000 +1965 31 0.400000 +1965 113 0.400000 +1965 114 0.400000 +1965 128 0.400000 +1965 168 0.400000 +1965 177 0.400000 +1965 201 0.400000 +1965 241 0.400000 +1965 265 0.400000 +1965 267 0.400000 +1965 494 0.400000 +1965 547 0.400000 +1965 777 0.400000 +1965 787 0.400000 +1966 55 0.400000 +1966 87 0.400000 +1966 96 0.400000 +1966 125 0.400000 +1966 152 0.400000 +1966 185 0.400000 +1966 284 0.400000 +1966 311 0.400000 +1966 329 0.400000 +1966 401 0.400000 +1966 421 0.400000 +1966 452 0.400000 +1966 473 0.400000 +1966 562 0.400000 +1966 625 0.400000 +1966 638 0.400000 +1966 655 0.400000 +1966 665 0.400000 +1966 732 0.400000 +1966 745 0.400000 +1967 189 0.400000 +1967 196 0.400000 +1967 242 0.400000 +1967 271 0.400000 +1967 275 0.400000 +1967 300 0.400000 +1967 328 0.400000 +1967 439 0.400000 +1967 448 0.400000 +1967 464 0.400000 +1967 479 0.400000 +1967 511 0.400000 +1967 514 0.400000 +1967 666 0.400000 +1967 724 0.400000 +1967 786 0.400000 +1967 797 0.400000 +1968 3 0.400000 +1968 109 0.400000 +1968 117 0.400000 +1968 212 0.400000 +1968 281 0.400000 +1968 356 0.400000 +1968 380 0.400000 +1968 418 0.400000 +1968 472 0.400000 +1968 479 0.400000 +1968 562 0.400000 +1968 591 0.400000 +1968 650 0.400000 +1968 661 0.400000 +1968 668 0.400000 +1968 741 0.400000 +1968 753 0.400000 +1969 100 0.400000 +1969 167 0.400000 +1969 223 0.400000 +1969 236 0.400000 +1969 342 0.400000 +1969 426 0.400000 +1969 430 0.400000 +1969 473 0.400000 +1969 477 0.400000 +1969 570 0.400000 +1969 573 0.400000 +1969 596 0.400000 +1969 749 0.400000 +1969 784 0.400000 +1970 18 0.400000 +1970 41 0.400000 +1970 59 0.400000 +1970 183 0.400000 +1970 209 0.400000 +1970 230 0.400000 +1970 334 0.400000 +1970 376 0.400000 +1970 389 0.400000 +1970 390 0.400000 +1970 405 0.400000 +1970 425 0.400000 +1970 517 0.400000 +1970 622 0.400000 +1970 651 0.400000 +1970 693 0.400000 +1970 785 0.400000 +1970 791 0.400000 +1971 14 0.400000 +1971 36 0.400000 +1971 161 0.400000 +1971 273 0.400000 +1971 276 0.400000 +1971 364 0.400000 +1971 365 0.400000 +1971 380 0.400000 +1971 419 0.400000 +1971 544 0.400000 +1971 775 0.400000 +1971 778 0.400000 +1971 794 0.400000 +1971 799 0.400000 +1972 97 0.400000 +1972 152 0.400000 +1972 180 0.400000 +1972 192 0.400000 +1972 293 0.400000 +1972 489 0.400000 +1972 508 0.400000 +1972 540 0.400000 +1972 627 0.400000 +1972 720 0.400000 +1973 39 0.400000 +1973 58 0.400000 +1973 124 0.400000 +1973 134 0.400000 +1973 280 0.400000 +1973 377 0.400000 +1973 440 0.400000 +1973 454 0.400000 +1973 461 0.400000 +1973 462 0.400000 +1973 545 0.400000 +1973 608 0.400000 +1973 730 0.400000 +1974 4 0.400000 +1974 47 0.400000 +1974 120 0.400000 +1974 216 0.400000 +1974 310 0.400000 +1974 391 0.400000 +1974 396 0.400000 +1974 473 0.400000 +1974 667 0.400000 +1974 704 0.400000 +1974 715 0.400000 +1974 780 0.400000 +1975 42 0.400000 +1975 66 0.400000 +1975 96 0.400000 +1975 104 0.400000 +1975 144 0.400000 +1975 244 0.400000 +1975 245 0.400000 +1975 249 0.400000 +1975 381 0.400000 +1975 428 0.400000 +1975 443 0.400000 +1975 524 0.400000 +1975 527 0.400000 +1975 583 0.400000 +1975 730 0.400000 +1975 755 0.400000 +1976 30 0.400000 +1976 47 0.400000 +1976 76 0.400000 +1976 251 0.400000 +1976 347 0.400000 +1976 357 0.400000 +1976 361 0.400000 +1976 397 0.400000 +1976 412 0.400000 +1976 535 0.400000 +1977 22 0.400000 +1977 29 0.400000 +1977 199 0.400000 +1977 255 0.400000 +1977 259 0.400000 +1977 387 0.400000 +1977 494 0.400000 +1977 519 0.400000 +1977 544 0.400000 +1977 573 0.400000 +1977 601 0.400000 +1977 617 0.400000 +1977 669 0.400000 +1977 752 0.400000 +1977 782 0.400000 +1978 7 0.400000 +1978 49 0.400000 +1978 51 0.400000 +1978 60 0.400000 +1978 116 0.400000 +1978 131 0.400000 +1978 202 0.400000 +1978 207 0.400000 +1978 277 0.400000 +1978 348 0.400000 +1978 486 0.400000 +1978 560 0.400000 +1978 565 0.400000 +1978 581 0.400000 +1978 601 0.400000 +1978 644 0.400000 +1978 653 0.400000 +1978 701 0.400000 +1978 778 0.400000 +1978 782 0.400000 +1978 785 0.400000 +1979 37 0.400000 +1979 70 0.400000 +1979 87 0.400000 +1979 134 0.400000 +1979 250 0.400000 +1979 277 0.400000 +1979 401 0.400000 +1979 410 0.400000 +1979 416 0.400000 +1979 431 0.400000 +1979 499 0.400000 +1979 761 0.400000 +1979 795 0.400000 +1980 4 0.400000 +1980 56 0.400000 +1980 105 0.400000 +1980 118 0.400000 +1980 132 0.400000 +1980 159 0.400000 +1980 196 0.400000 +1980 267 0.400000 +1980 293 0.400000 +1980 298 0.400000 +1980 310 0.400000 +1980 314 0.400000 +1980 537 0.400000 +1980 548 0.400000 +1980 593 0.400000 +1980 631 0.400000 +1980 652 0.400000 +1980 659 0.400000 +1980 775 0.400000 +1981 1 0.400000 +1981 6 0.400000 +1981 7 0.400000 +1981 49 0.400000 +1981 191 0.400000 +1981 301 0.400000 +1981 328 0.400000 +1981 339 0.400000 +1981 364 0.400000 +1981 369 0.400000 +1981 390 0.400000 +1981 394 0.400000 +1981 466 0.400000 +1981 493 0.400000 +1981 496 0.400000 +1981 651 0.400000 +1981 684 0.400000 +1981 685 0.400000 +1981 688 0.400000 +1981 736 0.400000 +1981 745 0.400000 +1981 774 0.400000 +1982 11 0.400000 +1982 41 0.400000 +1982 47 0.400000 +1982 92 0.400000 +1982 172 0.400000 +1982 235 0.400000 +1982 260 0.400000 +1982 268 0.400000 +1982 345 0.400000 +1982 376 0.400000 +1982 552 0.400000 +1982 604 0.400000 +1982 608 0.400000 +1982 661 0.400000 +1983 161 0.400000 +1983 313 0.400000 +1983 333 0.400000 +1983 489 0.400000 +1983 511 0.400000 +1983 544 0.400000 +1983 556 0.400000 +1983 586 0.400000 +1983 599 0.400000 +1983 655 0.400000 +1983 789 0.400000 +1984 37 0.400000 +1984 75 0.400000 +1984 97 0.400000 +1984 173 0.400000 +1984 190 0.400000 +1984 236 0.400000 +1984 319 0.400000 +1984 447 0.400000 +1984 468 0.400000 +1984 545 0.400000 +1984 633 0.400000 +1984 656 0.400000 +1984 720 0.400000 +1984 776 0.400000 +1985 52 0.400000 +1985 281 0.400000 +1985 462 0.400000 +1985 489 0.400000 +1985 492 0.400000 +1985 556 0.400000 +1985 623 0.400000 +1985 665 0.400000 +1985 679 0.400000 +1986 42 0.400000 +1986 68 0.400000 +1986 134 0.400000 +1986 171 0.400000 +1986 192 0.400000 +1986 311 0.400000 +1986 312 0.400000 +1986 385 0.400000 +1986 390 0.400000 +1986 493 0.400000 +1986 499 0.400000 +1986 525 0.400000 +1986 555 0.400000 +1986 571 0.400000 +1987 66 0.400000 +1987 203 0.400000 +1987 279 0.400000 +1987 372 0.400000 +1987 378 0.400000 +1987 396 0.400000 +1987 513 0.400000 +1987 558 0.400000 +1987 583 0.400000 +1987 639 0.400000 +1987 677 0.400000 +1987 709 0.400000 +1987 747 0.400000 +1987 758 0.400000 +1987 768 0.400000 +1987 791 0.400000 +1988 313 0.400000 +1988 327 0.400000 +1988 383 0.400000 +1988 409 0.400000 +1988 555 0.400000 +1988 605 0.400000 +1988 629 0.400000 +1988 647 0.400000 +1988 694 0.400000 +1988 728 0.400000 +1988 776 0.400000 +1989 71 0.400000 +1989 125 0.400000 +1989 203 0.400000 +1989 367 0.400000 +1989 400 0.400000 +1989 406 0.400000 +1989 410 0.400000 +1989 417 0.400000 +1989 454 0.400000 +1989 495 0.400000 +1989 516 0.400000 +1989 644 0.400000 +1989 670 0.400000 +1989 671 0.400000 +1989 678 0.400000 +1989 730 0.400000 +1990 6 0.400000 +1990 38 0.400000 +1990 52 0.400000 +1990 99 0.400000 +1990 111 0.400000 +1990 155 0.400000 +1990 158 0.400000 +1990 160 0.400000 +1990 236 0.400000 +1990 268 0.400000 +1990 290 0.400000 +1990 319 0.400000 +1990 333 0.400000 +1990 367 0.400000 +1990 391 0.400000 +1990 401 0.400000 +1990 418 0.400000 +1990 430 0.400000 +1990 461 0.400000 +1990 467 0.400000 +1990 486 0.400000 +1990 550 0.400000 +1990 779 0.400000 +1990 797 0.400000 +1991 24 0.400000 +1991 48 0.400000 +1991 93 0.400000 +1991 99 0.400000 +1991 111 0.400000 +1991 142 0.400000 +1991 233 0.400000 +1991 285 0.400000 +1991 325 0.400000 +1991 378 0.400000 +1991 417 0.400000 +1991 435 0.400000 +1991 436 0.400000 +1991 441 0.400000 +1991 478 0.400000 +1991 480 0.400000 +1991 522 0.400000 +1991 541 0.400000 +1991 618 0.400000 +1991 688 0.400000 +1991 709 0.400000 +1991 770 0.400000 +1992 3 0.400000 +1992 35 0.400000 +1992 48 0.400000 +1992 76 0.400000 +1992 80 0.400000 +1992 159 0.400000 +1992 170 0.400000 +1992 230 0.400000 +1992 338 0.400000 +1992 343 0.400000 +1992 474 0.400000 +1992 538 0.400000 +1992 549 0.400000 +1992 555 0.400000 +1992 618 0.400000 +1992 678 0.400000 +1992 701 0.400000 +1992 710 0.400000 +1992 751 0.400000 +1993 25 0.400000 +1993 27 0.400000 +1993 81 0.400000 +1993 161 0.400000 +1993 185 0.400000 +1993 219 0.400000 +1993 233 0.400000 +1993 327 0.400000 +1993 394 0.400000 +1993 457 0.400000 +1993 467 0.400000 +1993 515 0.400000 +1993 541 0.400000 +1993 545 0.400000 +1993 641 0.400000 +1993 706 0.400000 +1993 753 0.400000 +1993 763 0.400000 +1993 768 0.400000 +1993 798 0.400000 +1994 70 0.400000 +1994 140 0.400000 +1994 161 0.400000 +1994 213 0.400000 +1994 293 0.400000 +1994 397 0.400000 +1994 495 0.400000 +1994 761 0.400000 +1994 799 0.400000 +1995 61 0.400000 +1995 141 0.400000 +1995 197 0.400000 +1995 255 0.400000 +1995 256 0.400000 +1995 266 0.400000 +1995 295 0.400000 +1995 457 0.400000 +1995 524 0.400000 +1995 545 0.400000 +1995 560 0.400000 +1995 566 0.400000 +1995 597 0.400000 +1995 654 0.400000 +1995 682 0.400000 +1995 695 0.400000 +1995 740 0.400000 +1995 743 0.400000 +1995 771 0.400000 +1996 32 0.400000 +1996 182 0.400000 +1996 218 0.400000 +1996 237 0.400000 +1996 238 0.400000 +1996 289 0.400000 +1996 367 0.400000 +1996 378 0.400000 +1996 387 0.400000 +1996 394 0.400000 +1996 478 0.400000 +1996 545 0.400000 +1996 677 0.400000 +1997 8 0.400000 +1997 48 0.400000 +1997 54 0.400000 +1997 116 0.400000 +1997 165 0.400000 +1997 286 0.400000 +1997 311 0.400000 +1997 343 0.400000 +1997 406 0.400000 +1997 416 0.400000 +1997 419 0.400000 +1997 548 0.400000 +1997 569 0.400000 +1997 649 0.400000 +1997 698 0.400000 +1997 722 0.400000 +1997 732 0.400000 +1997 745 0.400000 +1998 3 0.400000 +1998 55 0.400000 +1998 120 0.400000 +1998 158 0.400000 +1998 174 0.400000 +1998 186 0.400000 +1998 194 0.400000 +1998 274 0.400000 +1998 319 0.400000 +1998 347 0.400000 +1998 448 0.400000 +1998 495 0.400000 +1998 553 0.400000 +1998 555 0.400000 +1998 608 0.400000 +1998 712 0.400000 +1998 733 0.400000 +1998 734 0.400000 +1999 35 0.400000 +1999 106 0.400000 +1999 156 0.400000 +1999 372 0.400000 +1999 381 0.400000 +1999 437 0.400000 +1999 493 0.400000 +1999 515 0.400000 +1999 531 0.400000 +1999 592 0.400000 +1999 624 0.400000 +1999 677 0.400000 +1999 691 0.400000 +1999 745 0.400000 +1999 777 0.400000 +2000 64 0.400000 +2000 120 0.400000 +2000 143 0.400000 +2000 193 0.400000 +2000 197 0.400000 +2000 322 0.400000 +2000 354 0.400000 +2000 364 0.400000 +2000 397 0.400000 +2000 434 0.400000 +2000 533 0.400000 +2000 605 0.400000 +2000 670 0.400000 +2000 676 0.400000 +2000 690 0.400000 +2000 695 0.400000 +2000 704 0.400000 +2000 714 0.400000 +2001 23 0.400000 +2001 93 0.400000 +2001 234 0.400000 +2001 285 0.400000 +2001 291 0.400000 +2001 420 0.400000 +2001 430 0.400000 +2001 495 0.400000 +2001 521 0.400000 +2001 525 0.400000 +2001 526 0.400000 +2001 646 0.400000 +2001 666 0.400000 +2001 692 0.400000 +2001 743 0.400000 +2001 763 0.400000 +2002 31 0.400000 +2002 83 0.400000 +2002 105 0.400000 +2002 202 0.400000 +2002 217 0.400000 +2002 249 0.400000 +2002 315 0.400000 +2002 361 0.400000 +2002 414 0.400000 +2002 429 0.400000 +2002 477 0.400000 +2002 481 0.400000 +2002 517 0.400000 +2002 522 0.400000 +2002 523 0.400000 +2002 577 0.400000 +2002 647 0.400000 +2002 654 0.400000 +2002 668 0.400000 +2002 723 0.400000 +2002 736 0.400000 +2003 3 0.400000 +2003 67 0.400000 +2003 82 0.400000 +2003 86 0.400000 +2003 93 0.400000 +2003 174 0.400000 +2003 183 0.400000 +2003 280 0.400000 +2003 339 0.400000 +2003 433 0.400000 +2003 448 0.400000 +2003 470 0.400000 +2003 477 0.400000 +2003 532 0.400000 +2003 763 0.400000 +2004 10 0.400000 +2004 102 0.400000 +2004 127 0.400000 +2004 134 0.400000 +2004 193 0.400000 +2004 204 0.400000 +2004 205 0.400000 +2004 293 0.400000 +2004 385 0.400000 +2004 393 0.400000 +2004 407 0.400000 +2004 489 0.400000 +2004 491 0.400000 +2004 501 0.400000 +2004 506 0.400000 +2004 559 0.400000 +2004 602 0.400000 +2004 618 0.400000 +2004 623 0.400000 +2004 638 0.400000 +2004 671 0.400000 +2004 678 0.400000 +2004 800 0.400000 +2005 18 0.400000 +2005 113 0.400000 +2005 207 0.400000 +2005 275 0.400000 +2005 297 0.400000 +2005 306 0.400000 +2005 320 0.400000 +2005 336 0.400000 +2005 346 0.400000 +2005 411 0.400000 +2005 521 0.400000 +2005 630 0.400000 +2005 747 0.400000 +2006 88 0.400000 +2006 178 0.400000 +2006 181 0.400000 +2006 215 0.400000 +2006 329 0.400000 +2006 438 0.400000 +2006 460 0.400000 +2006 523 0.400000 +2006 531 0.400000 +2006 608 0.400000 +2006 649 0.400000 +2006 685 0.400000 +2006 730 0.400000 +2006 794 0.400000 +2007 41 0.400000 +2007 47 0.400000 +2007 91 0.400000 +2007 99 0.400000 +2007 100 0.400000 +2007 103 0.400000 +2007 128 0.400000 +2007 129 0.400000 +2007 199 0.400000 +2007 252 0.400000 +2007 327 0.400000 +2007 358 0.400000 +2007 373 0.400000 +2007 376 0.400000 +2007 414 0.400000 +2007 511 0.400000 +2007 539 0.400000 +2007 593 0.400000 +2007 659 0.400000 +2007 672 0.400000 +2007 733 0.400000 +2008 42 0.400000 +2008 71 0.400000 +2008 108 0.400000 +2008 171 0.400000 +2008 192 0.400000 +2008 194 0.400000 +2008 226 0.400000 +2008 267 0.400000 +2008 298 0.400000 +2008 347 0.400000 +2008 402 0.400000 +2008 436 0.400000 +2008 440 0.400000 +2008 471 0.400000 +2008 518 0.400000 +2008 552 0.400000 +2008 553 0.400000 +2008 558 0.400000 +2008 652 0.400000 +2008 695 0.400000 +2008 752 0.400000 +2008 795 0.400000 +2009 34 0.400000 +2009 78 0.400000 +2009 91 0.400000 +2009 177 0.400000 +2009 184 0.400000 +2009 214 0.400000 +2009 229 0.400000 +2009 262 0.400000 +2009 299 0.400000 +2009 312 0.400000 +2009 329 0.400000 +2009 443 0.400000 +2009 455 0.400000 +2009 703 0.400000 +2009 710 0.400000 +2009 713 0.400000 +2009 768 0.400000 +2010 35 0.400000 +2010 53 0.400000 +2010 125 0.400000 +2010 159 0.400000 +2010 261 0.400000 +2010 280 0.400000 +2010 359 0.400000 +2010 361 0.400000 +2010 380 0.400000 +2010 387 0.400000 +2010 397 0.400000 +2010 496 0.400000 +2010 576 0.400000 +2010 591 0.400000 +2010 592 0.400000 +2010 622 0.400000 +2010 683 0.400000 +2010 695 0.400000 +2010 723 0.400000 +2010 746 0.400000 +2011 216 0.400000 +2011 235 0.400000 +2011 258 0.400000 +2011 305 0.400000 +2011 414 0.400000 +2011 422 0.400000 +2011 463 0.400000 +2011 468 0.400000 +2011 508 0.400000 +2011 529 0.400000 +2011 542 0.400000 +2011 564 0.400000 +2011 621 0.400000 +2011 691 0.400000 +2011 720 0.400000 +2011 746 0.400000 +2011 789 0.400000 +2011 793 0.400000 +2012 128 0.400000 +2012 131 0.400000 +2012 191 0.400000 +2012 264 0.400000 +2012 303 0.400000 +2012 381 0.400000 +2012 414 0.400000 +2012 418 0.400000 +2012 438 0.400000 +2012 474 0.400000 +2012 533 0.400000 +2012 562 0.400000 +2012 571 0.400000 +2012 642 0.400000 +2012 647 0.400000 +2012 752 0.400000 +2013 2 0.400000 +2013 49 0.400000 +2013 109 0.400000 +2013 171 0.400000 +2013 345 0.400000 +2013 605 0.400000 +2013 617 0.400000 +2013 633 0.400000 +2013 643 0.400000 +2013 752 0.400000 +2014 177 0.400000 +2014 225 0.400000 +2014 270 0.400000 +2014 324 0.400000 +2014 333 0.400000 +2014 382 0.400000 +2014 654 0.400000 +2015 26 0.400000 +2015 53 0.400000 +2015 85 0.400000 +2015 118 0.400000 +2015 193 0.400000 +2015 283 0.400000 +2015 390 0.400000 +2015 395 0.400000 +2015 466 0.400000 +2015 476 0.400000 +2015 487 0.400000 +2015 566 0.400000 +2015 578 0.400000 +2015 585 0.400000 +2015 655 0.400000 +2015 699 0.400000 +2015 718 0.400000 +2015 741 0.400000 +2016 2 0.400000 +2016 56 0.400000 +2016 76 0.400000 +2016 141 0.400000 +2016 156 0.400000 +2016 227 0.400000 +2016 300 0.400000 +2016 303 0.400000 +2016 327 0.400000 +2016 381 0.400000 +2016 384 0.400000 +2016 503 0.400000 +2016 602 0.400000 +2016 623 0.400000 +2016 721 0.400000 +2017 22 0.400000 +2017 49 0.400000 +2017 51 0.400000 +2017 197 0.400000 +2017 312 0.400000 +2017 357 0.400000 +2017 392 0.400000 +2017 406 0.400000 +2017 416 0.400000 +2017 460 0.400000 +2017 462 0.400000 +2017 526 0.400000 +2017 551 0.400000 +2017 610 0.400000 +2017 648 0.400000 +2017 657 0.400000 +2018 16 0.400000 +2018 79 0.400000 +2018 83 0.400000 +2018 117 0.400000 +2018 191 0.400000 +2018 233 0.400000 +2018 255 0.400000 +2018 301 0.400000 +2018 333 0.400000 +2018 392 0.400000 +2018 423 0.400000 +2018 481 0.400000 +2018 550 0.400000 +2018 629 0.400000 +2018 637 0.400000 +2018 641 0.400000 +2018 743 0.400000 +2018 750 0.400000 +2018 781 0.400000 +2019 43 0.400000 +2019 50 0.400000 +2019 92 0.400000 +2019 97 0.400000 +2019 132 0.400000 +2019 136 0.400000 +2019 197 0.400000 +2019 217 0.400000 +2019 300 0.400000 +2019 495 0.400000 +2019 509 0.400000 +2019 520 0.400000 +2019 550 0.400000 +2019 643 0.400000 +2019 644 0.400000 +2020 5 0.400000 +2020 31 0.400000 +2020 44 0.400000 +2020 220 0.400000 +2020 304 0.400000 +2020 403 0.400000 +2020 444 0.400000 +2020 506 0.400000 +2020 513 0.400000 +2020 515 0.400000 +2021 19 0.400000 +2021 85 0.400000 +2021 147 0.400000 +2021 180 0.400000 +2021 192 0.400000 +2021 252 0.400000 +2021 300 0.400000 +2021 335 0.400000 +2021 344 0.400000 +2021 470 0.400000 +2021 478 0.400000 +2021 552 0.400000 +2021 581 0.400000 +2021 589 0.400000 +2021 615 0.400000 +2021 623 0.400000 +2021 788 0.400000 +2022 196 0.400000 +2022 337 0.400000 +2022 390 0.400000 +2022 435 0.400000 +2022 521 0.400000 +2022 589 0.400000 +2022 621 0.400000 +2023 39 0.400000 +2023 79 0.400000 +2023 100 0.400000 +2023 171 0.400000 +2023 227 0.400000 +2023 301 0.400000 +2023 306 0.400000 +2023 358 0.400000 +2023 587 0.400000 +2023 595 0.400000 +2023 597 0.400000 +2023 623 0.400000 +2023 661 0.400000 +2024 7 0.400000 +2024 29 0.400000 +2024 86 0.400000 +2024 157 0.400000 +2024 195 0.400000 +2024 217 0.400000 +2024 279 0.400000 +2024 297 0.400000 +2024 328 0.400000 +2024 410 0.400000 +2024 434 0.400000 +2024 466 0.400000 +2024 469 0.400000 +2024 480 0.400000 +2024 685 0.400000 +2025 2 0.400000 +2025 6 0.400000 +2025 28 0.400000 +2025 39 0.400000 +2025 73 0.400000 +2025 184 0.400000 +2025 260 0.400000 +2025 267 0.400000 +2025 281 0.400000 +2025 306 0.400000 +2025 340 0.400000 +2025 344 0.400000 +2025 353 0.400000 +2025 371 0.400000 +2025 479 0.400000 +2025 486 0.400000 +2025 512 0.400000 +2025 611 0.400000 +2025 656 0.400000 +2025 657 0.400000 +2025 677 0.400000 +2025 711 0.400000 +2025 737 0.400000 +2026 53 0.400000 +2026 120 0.400000 +2026 122 0.400000 +2026 152 0.400000 +2026 178 0.400000 +2026 295 0.400000 +2026 310 0.400000 +2026 445 0.400000 +2026 531 0.400000 +2026 533 0.400000 +2026 564 0.400000 +2026 584 0.400000 +2026 690 0.400000 +2026 700 0.400000 +2027 85 0.400000 +2027 96 0.400000 +2027 277 0.400000 +2027 345 0.400000 +2027 349 0.400000 +2027 377 0.400000 +2027 446 0.400000 +2027 465 0.400000 +2027 508 0.400000 +2027 510 0.400000 +2027 670 0.400000 +2028 89 0.400000 +2028 95 0.400000 +2028 148 0.400000 +2028 153 0.400000 +2028 158 0.400000 +2028 169 0.400000 +2028 247 0.400000 +2028 253 0.400000 +2028 321 0.400000 +2028 344 0.400000 +2028 391 0.400000 +2028 400 0.400000 +2028 414 0.400000 +2028 425 0.400000 +2028 439 0.400000 +2028 441 0.400000 +2028 485 0.400000 +2028 499 0.400000 +2028 595 0.400000 +2028 679 0.400000 +2028 684 0.400000 +2029 38 0.400000 +2029 112 0.400000 +2029 128 0.400000 +2029 141 0.400000 +2029 147 0.400000 +2029 230 0.400000 +2029 233 0.400000 +2029 236 0.400000 +2029 334 0.400000 +2029 405 0.400000 +2029 464 0.400000 +2029 481 0.400000 +2029 550 0.400000 +2029 554 0.400000 +2029 571 0.400000 +2029 576 0.400000 +2029 641 0.400000 +2029 729 0.400000 +2029 738 0.400000 +2030 54 0.400000 +2030 106 0.400000 +2030 122 0.400000 +2030 149 0.400000 +2030 172 0.400000 +2030 253 0.400000 +2030 272 0.400000 +2030 374 0.400000 +2030 389 0.400000 +2030 410 0.400000 +2030 438 0.400000 +2030 445 0.400000 +2030 486 0.400000 +2030 488 0.400000 +2030 570 0.400000 +2031 12 0.400000 +2031 76 0.400000 +2031 82 0.400000 +2031 111 0.400000 +2031 242 0.400000 +2031 249 0.400000 +2031 315 0.400000 +2031 444 0.400000 +2031 488 0.400000 +2031 550 0.400000 +2031 591 0.400000 +2031 727 0.400000 +2031 752 0.400000 +2032 23 0.400000 +2032 65 0.400000 +2032 94 0.400000 +2032 206 0.400000 +2032 275 0.400000 +2032 324 0.400000 +2032 330 0.400000 +2032 367 0.400000 +2032 468 0.400000 +2032 502 0.400000 +2032 509 0.400000 +2032 523 0.400000 +2032 605 0.400000 +2032 720 0.400000 +2032 768 0.400000 +2033 28 0.400000 +2033 122 0.400000 +2033 187 0.400000 +2033 189 0.400000 +2033 205 0.400000 +2033 206 0.400000 +2033 219 0.400000 +2033 233 0.400000 +2033 254 0.400000 +2033 259 0.400000 +2033 266 0.400000 +2033 296 0.400000 +2033 319 0.400000 +2033 510 0.400000 +2033 546 0.400000 +2033 556 0.400000 +2033 582 0.400000 +2033 589 0.400000 +2033 605 0.400000 +2033 652 0.400000 +2033 788 0.400000 +2034 13 0.400000 +2034 26 0.400000 +2034 44 0.400000 +2034 52 0.400000 +2034 105 0.400000 +2034 118 0.400000 +2034 122 0.400000 +2034 187 0.400000 +2034 258 0.400000 +2034 286 0.400000 +2034 318 0.400000 +2034 341 0.400000 +2034 351 0.400000 +2034 357 0.400000 +2034 406 0.400000 +2034 450 0.400000 +2034 471 0.400000 +2034 528 0.400000 +2034 584 0.400000 +2034 609 0.400000 +2034 654 0.400000 +2034 732 0.400000 +2034 733 0.400000 +2034 754 0.400000 +2034 769 0.400000 +2035 42 0.400000 +2035 90 0.400000 +2035 281 0.400000 +2035 316 0.400000 +2035 325 0.400000 +2035 355 0.400000 +2035 408 0.400000 +2035 419 0.400000 +2035 505 0.400000 +2035 512 0.400000 +2035 531 0.400000 +2035 585 0.400000 +2035 603 0.400000 +2035 672 0.400000 +2035 736 0.400000 +2035 792 0.400000 +2036 26 0.400000 +2036 135 0.400000 +2036 220 0.400000 +2036 256 0.400000 +2036 317 0.400000 +2036 340 0.400000 +2036 467 0.400000 +2036 518 0.400000 +2036 570 0.400000 +2036 604 0.400000 +2036 620 0.400000 +2036 725 0.400000 +2036 781 0.400000 +2037 36 0.400000 +2037 90 0.400000 +2037 96 0.400000 +2037 128 0.400000 +2037 133 0.400000 +2037 150 0.400000 +2037 266 0.400000 +2037 370 0.400000 +2037 463 0.400000 +2037 541 0.400000 +2037 602 0.400000 +2037 609 0.400000 +2037 642 0.400000 +2038 27 0.400000 +2038 43 0.400000 +2038 173 0.400000 +2038 205 0.400000 +2038 274 0.400000 +2038 285 0.400000 +2038 312 0.400000 +2038 343 0.400000 +2038 365 0.400000 +2038 455 0.400000 +2038 529 0.400000 +2038 543 0.400000 +2038 554 0.400000 +2038 564 0.400000 +2038 599 0.400000 +2038 742 0.400000 +2039 3 0.400000 +2039 11 0.400000 +2039 84 0.400000 +2039 210 0.400000 +2039 217 0.400000 +2039 274 0.400000 +2039 352 0.400000 +2039 361 0.400000 +2039 363 0.400000 +2039 391 0.400000 +2039 419 0.400000 +2039 516 0.400000 +2039 521 0.400000 +2039 552 0.400000 +2039 599 0.400000 +2039 615 0.400000 +2039 724 0.400000 +2039 732 0.400000 +2040 16 0.400000 +2040 73 0.400000 +2040 116 0.400000 +2040 146 0.400000 +2040 158 0.400000 +2040 178 0.400000 +2040 305 0.400000 +2040 329 0.400000 +2040 425 0.400000 +2040 444 0.400000 +2040 461 0.400000 +2040 470 0.400000 +2040 494 0.400000 +2040 516 0.400000 +2040 529 0.400000 +2040 686 0.400000 +2040 709 0.400000 +2040 740 0.400000 +2040 771 0.400000 +2041 16 0.400000 +2041 133 0.400000 +2041 277 0.400000 +2041 310 0.400000 +2041 335 0.400000 +2041 409 0.400000 +2041 422 0.400000 +2041 497 0.400000 +2041 504 0.400000 +2041 588 0.400000 +2041 655 0.400000 +2041 736 0.400000 +2042 47 0.400000 +2042 83 0.400000 +2042 151 0.400000 +2042 181 0.400000 +2042 195 0.400000 +2042 238 0.400000 +2042 292 0.400000 +2042 429 0.400000 +2042 494 0.400000 +2042 545 0.400000 +2042 551 0.400000 +2042 557 0.400000 +2042 666 0.400000 +2042 750 0.400000 +2042 753 0.400000 +2042 761 0.400000 +2043 11 0.400000 +2043 35 0.400000 +2043 40 0.400000 +2043 50 0.400000 +2043 58 0.400000 +2043 132 0.400000 +2043 200 0.400000 +2043 201 0.400000 +2043 350 0.400000 +2043 386 0.400000 +2043 396 0.400000 +2043 490 0.400000 +2043 556 0.400000 +2043 688 0.400000 +2043 693 0.400000 +2043 713 0.400000 +2043 737 0.400000 +2043 771 0.400000 +2043 800 0.400000 +2044 127 0.400000 +2044 137 0.400000 +2044 142 0.400000 +2044 157 0.400000 +2044 228 0.400000 +2044 262 0.400000 +2044 406 0.400000 +2044 418 0.400000 +2044 455 0.400000 +2044 522 0.400000 +2044 556 0.400000 +2044 561 0.400000 +2044 605 0.400000 +2044 608 0.400000 +2044 657 0.400000 +2044 660 0.400000 +2044 744 0.400000 +2044 759 0.400000 +2044 788 0.400000 +2045 13 0.400000 +2045 44 0.400000 +2045 59 0.400000 +2045 104 0.400000 +2045 112 0.400000 +2045 122 0.400000 +2045 126 0.400000 +2045 142 0.400000 +2045 151 0.400000 +2045 163 0.400000 +2045 186 0.400000 +2045 265 0.400000 +2045 453 0.400000 +2045 536 0.400000 +2045 580 0.400000 +2045 631 0.400000 +2045 718 0.400000 +2045 741 0.400000 +2046 37 0.400000 +2046 108 0.400000 +2046 111 0.400000 +2046 180 0.400000 +2046 191 0.400000 +2046 286 0.400000 +2046 381 0.400000 +2046 493 0.400000 +2046 546 0.400000 +2046 649 0.400000 +2046 696 0.400000 +2046 761 0.400000 +2046 786 0.400000 +2046 793 0.400000 +2047 108 0.400000 +2047 138 0.400000 +2047 163 0.400000 +2047 298 0.400000 +2047 398 0.400000 +2047 406 0.400000 +2047 423 0.400000 +2047 553 0.400000 +2047 557 0.400000 +2047 693 0.400000 +2047 718 0.400000 +2047 744 0.400000 +2048 32 0.400000 +2048 109 0.400000 +2048 178 0.400000 +2048 189 0.400000 +2048 200 0.400000 +2048 236 0.400000 +2048 457 0.400000 +2048 481 0.400000 +2048 483 0.400000 +2048 562 0.400000 +2048 706 0.400000 +2048 757 0.400000 +2048 760 0.400000 +2049 17 0.400000 +2049 133 0.400000 +2049 225 0.400000 +2049 228 0.400000 +2049 244 0.400000 +2049 273 0.400000 +2049 383 0.400000 +2049 409 0.400000 +2049 453 0.400000 +2049 525 0.400000 +2049 575 0.400000 +2049 584 0.400000 +2049 641 0.400000 +2049 668 0.400000 +2049 721 0.400000 +2050 38 0.400000 +2050 77 0.400000 +2050 106 0.400000 +2050 120 0.400000 +2050 123 0.400000 +2050 252 0.400000 +2050 310 0.400000 +2050 327 0.400000 +2050 366 0.400000 +2050 395 0.400000 +2050 403 0.400000 +2050 412 0.400000 +2050 465 0.400000 +2050 512 0.400000 +2050 518 0.400000 +2050 543 0.400000 +2050 586 0.400000 +2050 747 0.400000 +2050 773 0.400000 +2050 786 0.400000 +2051 81 0.400000 +2051 122 0.400000 +2051 193 0.400000 +2051 248 0.400000 +2051 324 0.400000 +2051 347 0.400000 +2051 381 0.400000 +2051 403 0.400000 +2051 507 0.400000 +2051 596 0.400000 +2052 35 0.400000 +2052 59 0.400000 +2052 77 0.400000 +2052 89 0.400000 +2052 122 0.400000 +2052 162 0.400000 +2052 240 0.400000 +2052 272 0.400000 +2052 310 0.400000 +2052 386 0.400000 +2052 489 0.400000 +2052 502 0.400000 +2052 534 0.400000 +2052 603 0.400000 +2052 657 0.400000 +2052 761 0.400000 +2053 3 0.400000 +2053 173 0.400000 +2053 190 0.400000 +2053 257 0.400000 +2053 311 0.400000 +2053 430 0.400000 +2053 453 0.400000 +2053 459 0.400000 +2053 483 0.400000 +2053 521 0.400000 +2053 531 0.400000 +2053 546 0.400000 +2053 602 0.400000 +2053 614 0.400000 +2053 634 0.400000 +2053 635 0.400000 +2053 638 0.400000 +2053 669 0.400000 +2053 776 0.400000 +2053 778 0.400000 +2054 40 0.400000 +2054 50 0.400000 +2054 128 0.400000 +2054 204 0.400000 +2054 211 0.400000 +2054 226 0.400000 +2054 245 0.400000 +2054 247 0.400000 +2054 264 0.400000 +2054 558 0.400000 +2054 610 0.400000 +2054 632 0.400000 +2054 655 0.400000 +2054 728 0.400000 +2054 738 0.400000 +2054 753 0.400000 +2055 32 0.400000 +2055 55 0.400000 +2055 78 0.400000 +2055 132 0.400000 +2055 145 0.400000 +2055 157 0.400000 +2055 186 0.400000 +2055 269 0.400000 +2055 298 0.400000 +2055 307 0.400000 +2055 400 0.400000 +2055 402 0.400000 +2055 444 0.400000 +2055 449 0.400000 +2055 532 0.400000 +2055 575 0.400000 +2055 585 0.400000 +2055 587 0.400000 +2055 612 0.400000 +2055 615 0.400000 +2055 677 0.400000 +2056 52 0.400000 +2056 61 0.400000 +2056 182 0.400000 +2056 244 0.400000 +2056 291 0.400000 +2056 446 0.400000 +2056 568 0.400000 +2056 656 0.400000 +2056 659 0.400000 +2056 701 0.400000 +2056 796 0.400000 +2056 798 0.400000 +2057 43 0.400000 +2057 65 0.400000 +2057 171 0.400000 +2057 200 0.400000 +2057 259 0.400000 +2057 331 0.400000 +2057 465 0.400000 +2057 489 0.400000 +2057 533 0.400000 +2057 563 0.400000 +2058 55 0.400000 +2058 71 0.400000 +2058 110 0.400000 +2058 111 0.400000 +2058 114 0.400000 +2058 151 0.400000 +2058 154 0.400000 +2058 172 0.400000 +2058 181 0.400000 +2058 190 0.400000 +2058 231 0.400000 +2058 255 0.400000 +2058 303 0.400000 +2058 322 0.400000 +2058 416 0.400000 +2058 498 0.400000 +2058 569 0.400000 +2058 644 0.400000 +2058 798 0.400000 +2059 127 0.400000 +2059 156 0.400000 +2059 212 0.400000 +2059 308 0.400000 +2059 395 0.400000 +2059 483 0.400000 +2059 574 0.400000 +2059 596 0.400000 +2059 650 0.400000 +2059 682 0.400000 +2059 689 0.400000 +2059 743 0.400000 +2060 2 0.400000 +2060 41 0.400000 +2060 72 0.400000 +2060 219 0.400000 +2060 335 0.400000 +2060 381 0.400000 +2060 439 0.400000 +2060 454 0.400000 +2060 548 0.400000 +2060 704 0.400000 +2060 764 0.400000 +2061 24 0.400000 +2061 71 0.400000 +2061 125 0.400000 +2061 131 0.400000 +2061 145 0.400000 +2061 201 0.400000 +2061 203 0.400000 +2061 279 0.400000 +2061 314 0.400000 +2061 376 0.400000 +2061 378 0.400000 +2061 401 0.400000 +2061 458 0.400000 +2061 501 0.400000 +2061 557 0.400000 +2061 581 0.400000 +2061 596 0.400000 +2061 629 0.400000 +2061 654 0.400000 +2061 720 0.400000 +2061 758 0.400000 +2061 786 0.400000 +2061 797 0.400000 +2062 118 0.400000 +2062 169 0.400000 +2062 202 0.400000 +2062 240 0.400000 +2062 275 0.400000 +2062 277 0.400000 +2062 375 0.400000 +2062 417 0.400000 +2062 427 0.400000 +2062 443 0.400000 +2062 471 0.400000 +2062 482 0.400000 +2062 515 0.400000 +2062 537 0.400000 +2062 551 0.400000 +2062 566 0.400000 +2062 589 0.400000 +2062 634 0.400000 +2062 679 0.400000 +2062 699 0.400000 +2062 745 0.400000 +2062 776 0.400000 +2063 10 0.400000 +2063 44 0.400000 +2063 93 0.400000 +2063 124 0.400000 +2063 158 0.400000 +2063 221 0.400000 +2063 255 0.400000 +2063 372 0.400000 +2063 430 0.400000 +2063 493 0.400000 +2063 564 0.400000 +2063 620 0.400000 +2063 668 0.400000 +2063 722 0.400000 +2064 102 0.400000 +2064 153 0.400000 +2064 176 0.400000 +2064 234 0.400000 +2064 251 0.400000 +2064 430 0.400000 +2064 577 0.400000 +2064 600 0.400000 +2064 676 0.400000 +2064 719 0.400000 +2065 77 0.400000 +2065 209 0.400000 +2065 213 0.400000 +2065 219 0.400000 +2065 251 0.400000 +2065 317 0.400000 +2065 383 0.400000 +2065 407 0.400000 +2065 498 0.400000 +2065 506 0.400000 +2065 509 0.400000 +2065 589 0.400000 +2065 641 0.400000 +2066 86 0.400000 +2066 158 0.400000 +2066 296 0.400000 +2066 408 0.400000 +2066 417 0.400000 +2066 503 0.400000 +2066 633 0.400000 +2066 722 0.400000 +2066 737 0.400000 +2066 749 0.400000 +2067 23 0.400000 +2067 30 0.400000 +2067 87 0.400000 +2067 109 0.400000 +2067 157 0.400000 +2067 170 0.400000 +2067 179 0.400000 +2067 217 0.400000 +2067 218 0.400000 +2067 244 0.400000 +2067 272 0.400000 +2067 281 0.400000 +2067 367 0.400000 +2067 370 0.400000 +2067 378 0.400000 +2067 413 0.400000 +2067 434 0.400000 +2067 478 0.400000 +2067 493 0.400000 +2067 588 0.400000 +2067 598 0.400000 +2067 667 0.400000 +2067 703 0.400000 +2067 744 0.400000 +2067 779 0.400000 +2068 20 0.400000 +2068 106 0.400000 +2068 207 0.400000 +2068 226 0.400000 +2068 306 0.400000 +2068 318 0.400000 +2068 327 0.400000 +2068 340 0.400000 +2068 404 0.400000 +2068 423 0.400000 +2068 612 0.400000 +2068 663 0.400000 +2068 711 0.400000 +2068 722 0.400000 +2068 777 0.400000 +2068 780 0.400000 +2068 797 0.400000 +2068 799 0.400000 +2069 2 0.400000 +2069 152 0.400000 +2069 178 0.400000 +2069 472 0.400000 +2069 477 0.400000 +2069 532 0.400000 +2069 600 0.400000 +2069 603 0.400000 +2069 699 0.400000 +2070 52 0.400000 +2070 70 0.400000 +2070 160 0.400000 +2070 176 0.400000 +2070 210 0.400000 +2070 216 0.400000 +2070 285 0.400000 +2070 319 0.400000 +2070 329 0.400000 +2070 461 0.400000 +2070 559 0.400000 +2070 683 0.400000 +2070 684 0.400000 +2070 704 0.400000 +2070 758 0.400000 +2070 788 0.400000 +2071 41 0.400000 +2071 87 0.400000 +2071 149 0.400000 +2071 308 0.400000 +2071 355 0.400000 +2071 358 0.400000 +2071 398 0.400000 +2071 458 0.400000 +2071 476 0.400000 +2071 508 0.400000 +2071 560 0.400000 +2071 680 0.400000 +2071 750 0.400000 +2071 757 0.400000 +2071 789 0.400000 +2071 793 0.400000 +2072 8 0.400000 +2072 128 0.400000 +2072 162 0.400000 +2072 188 0.400000 +2072 211 0.400000 +2072 217 0.400000 +2072 353 0.400000 +2072 508 0.400000 +2072 534 0.400000 +2072 536 0.400000 +2072 552 0.400000 +2072 565 0.400000 +2072 581 0.400000 +2072 684 0.400000 +2072 776 0.400000 +2072 795 0.400000 +2073 34 0.400000 +2073 48 0.400000 +2073 159 0.400000 +2073 273 0.400000 +2073 279 0.400000 +2073 385 0.400000 +2073 393 0.400000 +2073 402 0.400000 +2073 442 0.400000 +2073 481 0.400000 +2073 483 0.400000 +2073 484 0.400000 +2073 675 0.400000 +2073 752 0.400000 +2074 30 0.400000 +2074 64 0.400000 +2074 84 0.400000 +2074 97 0.400000 +2074 188 0.400000 +2074 445 0.400000 +2074 451 0.400000 +2074 526 0.400000 +2074 554 0.400000 +2074 575 0.400000 +2074 702 0.400000 +2074 719 0.400000 +2074 741 0.400000 +2075 49 0.400000 +2075 70 0.400000 +2075 77 0.400000 +2075 150 0.400000 +2075 176 0.400000 +2075 177 0.400000 +2075 330 0.400000 +2075 430 0.400000 +2075 505 0.400000 +2075 525 0.400000 +2075 606 0.400000 +2075 650 0.400000 +2075 748 0.400000 +2075 758 0.400000 +2076 13 0.400000 +2076 30 0.400000 +2076 150 0.400000 +2076 200 0.400000 +2076 279 0.400000 +2076 290 0.400000 +2076 319 0.400000 +2076 378 0.400000 +2076 408 0.400000 +2076 409 0.400000 +2076 430 0.400000 +2076 437 0.400000 +2076 525 0.400000 +2076 607 0.400000 +2076 633 0.400000 +2076 645 0.400000 +2076 651 0.400000 +2076 715 0.400000 +2076 726 0.400000 +2076 727 0.400000 +2076 734 0.400000 +2077 44 0.400000 +2077 76 0.400000 +2077 144 0.400000 +2077 199 0.400000 +2077 210 0.400000 +2077 296 0.400000 +2077 302 0.400000 +2077 427 0.400000 +2077 428 0.400000 +2077 457 0.400000 +2077 503 0.400000 +2077 506 0.400000 +2077 541 0.400000 +2077 601 0.400000 +2077 635 0.400000 +2077 661 0.400000 +2077 712 0.400000 +2077 726 0.400000 +2077 798 0.400000 +2078 207 0.400000 +2078 261 0.400000 +2078 264 0.400000 +2078 281 0.400000 +2078 284 0.400000 +2078 341 0.400000 +2078 375 0.400000 +2078 427 0.400000 +2078 459 0.400000 +2078 519 0.400000 +2078 577 0.400000 +2078 606 0.400000 +2078 612 0.400000 +2078 630 0.400000 +2078 669 0.400000 +2078 677 0.400000 +2078 727 0.400000 +2078 735 0.400000 +2078 777 0.400000 +2079 45 0.400000 +2079 109 0.400000 +2079 110 0.400000 +2079 116 0.400000 +2079 127 0.400000 +2079 138 0.400000 +2079 161 0.400000 +2079 162 0.400000 +2079 177 0.400000 +2079 210 0.400000 +2079 219 0.400000 +2079 269 0.400000 +2079 273 0.400000 +2079 426 0.400000 +2079 440 0.400000 +2079 570 0.400000 +2079 615 0.400000 +2079 665 0.400000 +2080 37 0.400000 +2080 66 0.400000 +2080 133 0.400000 +2080 166 0.400000 +2080 232 0.400000 +2080 391 0.400000 +2080 469 0.400000 +2080 565 0.400000 +2080 568 0.400000 +2080 574 0.400000 +2080 683 0.400000 +2080 740 0.400000 +2080 768 0.400000 +2080 773 0.400000 +2081 3 0.400000 +2081 14 0.400000 +2081 93 0.400000 +2081 130 0.400000 +2081 208 0.400000 +2081 249 0.400000 +2081 250 0.400000 +2081 263 0.400000 +2081 288 0.400000 +2081 337 0.400000 +2081 516 0.400000 +2081 518 0.400000 +2081 632 0.400000 +2081 652 0.400000 +2081 699 0.400000 +2081 761 0.400000 +2082 7 0.400000 +2082 27 0.400000 +2082 70 0.400000 +2082 90 0.400000 +2082 97 0.400000 +2082 126 0.400000 +2082 197 0.400000 +2082 201 0.400000 +2082 339 0.400000 +2082 354 0.400000 +2082 362 0.400000 +2082 376 0.400000 +2082 452 0.400000 +2082 503 0.400000 +2082 524 0.400000 +2082 579 0.400000 +2082 587 0.400000 +2082 661 0.400000 +2082 717 0.400000 +2082 790 0.400000 +2082 792 0.400000 +2083 2 0.400000 +2083 73 0.400000 +2083 77 0.400000 +2083 258 0.400000 +2083 356 0.400000 +2083 449 0.400000 +2083 473 0.400000 +2083 475 0.400000 +2083 499 0.400000 +2083 510 0.400000 +2083 514 0.400000 +2083 578 0.400000 +2083 588 0.400000 +2083 646 0.400000 +2083 666 0.400000 +2083 681 0.400000 +2083 764 0.400000 +2083 772 0.400000 +2084 69 0.400000 +2084 73 0.400000 +2084 75 0.400000 +2084 78 0.400000 +2084 86 0.400000 +2084 133 0.400000 +2084 204 0.400000 +2084 211 0.400000 +2084 297 0.400000 +2084 335 0.400000 +2084 350 0.400000 +2084 431 0.400000 +2084 497 0.400000 +2084 535 0.400000 +2084 587 0.400000 +2084 601 0.400000 +2084 687 0.400000 +2084 716 0.400000 +2084 737 0.400000 +2084 744 0.400000 +2084 772 0.400000 +2084 786 0.400000 +2085 34 0.400000 +2085 45 0.400000 +2085 172 0.400000 +2085 218 0.400000 +2085 231 0.400000 +2085 284 0.400000 +2085 333 0.400000 +2085 348 0.400000 +2085 351 0.400000 +2085 466 0.400000 +2085 499 0.400000 +2085 524 0.400000 +2085 575 0.400000 +2085 637 0.400000 +2085 645 0.400000 +2085 658 0.400000 +2085 665 0.400000 +2085 670 0.400000 +2085 700 0.400000 +2085 708 0.400000 +2085 776 0.400000 +2085 778 0.400000 +2085 783 0.400000 +2086 25 0.400000 +2086 40 0.400000 +2086 128 0.400000 +2086 229 0.400000 +2086 248 0.400000 +2086 297 0.400000 +2086 302 0.400000 +2086 325 0.400000 +2086 327 0.400000 +2086 338 0.400000 +2086 342 0.400000 +2086 392 0.400000 +2086 442 0.400000 +2086 546 0.400000 +2086 605 0.400000 +2086 619 0.400000 +2086 731 0.400000 +2087 71 0.400000 +2087 94 0.400000 +2087 133 0.400000 +2087 253 0.400000 +2087 258 0.400000 +2087 275 0.400000 +2087 278 0.400000 +2087 324 0.400000 +2087 340 0.400000 +2087 470 0.400000 +2087 530 0.400000 +2087 531 0.400000 +2087 635 0.400000 +2087 722 0.400000 +2087 771 0.400000 +2088 31 0.400000 +2088 131 0.400000 +2088 171 0.400000 +2088 189 0.400000 +2088 203 0.400000 +2088 207 0.400000 +2088 332 0.400000 +2088 429 0.400000 +2088 548 0.400000 +2088 647 0.400000 +2088 652 0.400000 +2088 676 0.400000 +2088 740 0.400000 +2088 758 0.400000 +2089 99 0.400000 +2089 155 0.400000 +2089 275 0.400000 +2089 361 0.400000 +2089 407 0.400000 +2089 461 0.400000 +2089 475 0.400000 +2089 495 0.400000 +2089 498 0.400000 +2089 549 0.400000 +2089 577 0.400000 +2089 589 0.400000 +2089 678 0.400000 +2089 690 0.400000 +2089 699 0.400000 +2089 757 0.400000 +2089 778 0.400000 +2089 789 0.400000 +2089 790 0.400000 +2090 56 0.400000 +2090 66 0.400000 +2090 108 0.400000 +2090 144 0.400000 +2090 167 0.400000 +2090 204 0.400000 +2090 256 0.400000 +2090 268 0.400000 +2090 389 0.400000 +2090 508 0.400000 +2090 510 0.400000 +2090 581 0.400000 +2090 627 0.400000 +2090 644 0.400000 +2090 677 0.400000 +2090 680 0.400000 +2090 727 0.400000 +2091 83 0.400000 +2091 103 0.400000 +2091 105 0.400000 +2091 114 0.400000 +2091 137 0.400000 +2091 141 0.400000 +2091 244 0.400000 +2091 250 0.400000 +2091 254 0.400000 +2091 267 0.400000 +2091 278 0.400000 +2091 288 0.400000 +2091 296 0.400000 +2091 404 0.400000 +2091 429 0.400000 +2091 523 0.400000 +2091 537 0.400000 +2091 607 0.400000 +2091 719 0.400000 +2091 725 0.400000 +2092 189 0.400000 +2092 203 0.400000 +2092 234 0.400000 +2092 255 0.400000 +2092 259 0.400000 +2092 350 0.400000 +2092 452 0.400000 +2092 489 0.400000 +2092 526 0.400000 +2092 587 0.400000 +2092 665 0.400000 +2092 680 0.400000 +2093 28 0.400000 +2093 30 0.400000 +2093 34 0.400000 +2093 84 0.400000 +2093 97 0.400000 +2093 122 0.400000 +2093 145 0.400000 +2093 153 0.400000 +2093 174 0.400000 +2093 179 0.400000 +2093 244 0.400000 +2093 249 0.400000 +2093 329 0.400000 +2093 358 0.400000 +2093 593 0.400000 +2093 615 0.400000 +2093 750 0.400000 +2093 754 0.400000 +2093 770 0.400000 +2093 791 0.400000 +2094 50 0.400000 +2094 87 0.400000 +2094 245 0.400000 +2094 253 0.400000 +2094 323 0.400000 +2094 341 0.400000 +2094 372 0.400000 +2094 465 0.400000 +2094 473 0.400000 +2094 487 0.400000 +2094 632 0.400000 +2094 658 0.400000 +2095 13 0.400000 +2095 27 0.400000 +2095 101 0.400000 +2095 204 0.400000 +2095 232 0.400000 +2095 308 0.400000 +2095 508 0.400000 +2095 519 0.400000 +2095 522 0.400000 +2095 531 0.400000 +2095 544 0.400000 +2095 546 0.400000 +2095 558 0.400000 +2095 601 0.400000 +2095 621 0.400000 +2095 690 0.400000 +2095 694 0.400000 +2095 732 0.400000 +2095 766 0.400000 +2095 796 0.400000 +2096 95 0.400000 +2096 144 0.400000 +2096 174 0.400000 +2096 200 0.400000 +2096 210 0.400000 +2096 252 0.400000 +2096 323 0.400000 +2096 519 0.400000 +2096 609 0.400000 +2096 765 0.400000 +2096 786 0.400000 +2097 8 0.400000 +2097 72 0.400000 +2097 107 0.400000 +2097 138 0.400000 +2097 149 0.400000 +2097 157 0.400000 +2097 215 0.400000 +2097 223 0.400000 +2097 255 0.400000 +2097 322 0.400000 +2097 381 0.400000 +2097 444 0.400000 +2097 463 0.400000 +2097 565 0.400000 +2097 661 0.400000 +2097 728 0.400000 +2097 744 0.400000 +2098 28 0.400000 +2098 66 0.400000 +2098 87 0.400000 +2098 107 0.400000 +2098 153 0.400000 +2098 174 0.400000 +2098 211 0.400000 +2098 434 0.400000 +2098 456 0.400000 +2098 473 0.400000 +2098 580 0.400000 +2098 681 0.400000 +2098 780 0.400000 +2099 26 0.400000 +2099 44 0.400000 +2099 77 0.400000 +2099 92 0.400000 +2099 164 0.400000 +2099 243 0.400000 +2099 257 0.400000 +2099 313 0.400000 +2099 374 0.400000 +2099 475 0.400000 +2099 521 0.400000 +2099 603 0.400000 +2099 610 0.400000 +2099 637 0.400000 +2099 686 0.400000 +2099 703 0.400000 +2099 740 0.400000 +2100 35 0.400000 +2100 138 0.400000 +2100 150 0.400000 +2100 242 0.400000 +2100 285 0.400000 +2100 309 0.400000 +2100 325 0.400000 +2100 353 0.400000 +2100 434 0.400000 +2100 462 0.400000 +2100 541 0.400000 +2100 680 0.400000 +2100 697 0.400000 +2100 745 0.400000 +2100 758 0.400000 +2100 782 0.400000 +2101 119 0.400000 +2101 138 0.400000 +2101 139 0.400000 +2101 171 0.400000 +2101 193 0.400000 +2101 194 0.400000 +2101 286 0.400000 +2101 305 0.400000 +2101 353 0.400000 +2101 429 0.400000 +2101 458 0.400000 +2101 486 0.400000 +2101 618 0.400000 +2101 630 0.400000 +2101 670 0.400000 +2101 703 0.400000 +2102 109 0.400000 +2102 111 0.400000 +2102 115 0.400000 +2102 146 0.400000 +2102 228 0.400000 +2102 245 0.400000 +2102 330 0.400000 +2102 438 0.400000 +2102 545 0.400000 +2102 624 0.400000 +2102 649 0.400000 +2102 705 0.400000 +2103 20 0.400000 +2103 77 0.400000 +2103 81 0.400000 +2103 123 0.400000 +2103 140 0.400000 +2103 167 0.400000 +2103 171 0.400000 +2103 207 0.400000 +2103 222 0.400000 +2103 223 0.400000 +2103 259 0.400000 +2103 439 0.400000 +2103 441 0.400000 +2103 491 0.400000 +2103 565 0.400000 +2103 582 0.400000 +2103 613 0.400000 +2103 620 0.400000 +2103 676 0.400000 +2103 749 0.400000 +2103 767 0.400000 +2104 149 0.400000 +2104 158 0.400000 +2104 169 0.400000 +2104 242 0.400000 +2104 256 0.400000 +2104 278 0.400000 +2104 281 0.400000 +2104 346 0.400000 +2104 440 0.400000 +2104 522 0.400000 +2104 555 0.400000 +2104 572 0.400000 +2104 635 0.400000 +2104 646 0.400000 +2104 695 0.400000 +2104 703 0.400000 +2104 736 0.400000 +2104 796 0.400000 +2105 53 0.400000 +2105 86 0.400000 +2105 106 0.400000 +2105 135 0.400000 +2105 149 0.400000 +2105 271 0.400000 +2105 282 0.400000 +2105 293 0.400000 +2105 302 0.400000 +2105 359 0.400000 +2105 370 0.400000 +2105 380 0.400000 +2105 417 0.400000 +2105 423 0.400000 +2105 448 0.400000 +2105 453 0.400000 +2105 495 0.400000 +2105 581 0.400000 +2105 642 0.400000 +2105 692 0.400000 +2105 761 0.400000 +2106 116 0.400000 +2106 165 0.400000 +2106 328 0.400000 +2106 374 0.400000 +2106 379 0.400000 +2106 455 0.400000 +2106 492 0.400000 +2106 614 0.400000 +2106 631 0.400000 +2106 671 0.400000 +2106 716 0.400000 +2106 755 0.400000 +2106 790 0.400000 +2107 17 0.400000 +2107 24 0.400000 +2107 73 0.400000 +2107 210 0.400000 +2107 216 0.400000 +2107 218 0.400000 +2107 241 0.400000 +2107 245 0.400000 +2107 249 0.400000 +2107 281 0.400000 +2107 334 0.400000 +2107 363 0.400000 +2107 463 0.400000 +2107 529 0.400000 +2107 557 0.400000 +2107 585 0.400000 +2107 641 0.400000 +2108 7 0.400000 +2108 37 0.400000 +2108 115 0.400000 +2108 140 0.400000 +2108 152 0.400000 +2108 175 0.400000 +2108 214 0.400000 +2108 285 0.400000 +2108 302 0.400000 +2108 316 0.400000 +2108 334 0.400000 +2108 366 0.400000 +2108 508 0.400000 +2108 515 0.400000 +2108 537 0.400000 +2108 654 0.400000 +2108 758 0.400000 +2109 26 0.400000 +2109 71 0.400000 +2109 106 0.400000 +2109 144 0.400000 +2109 160 0.400000 +2109 163 0.400000 +2109 243 0.400000 +2109 353 0.400000 +2109 446 0.400000 +2109 494 0.400000 +2109 554 0.400000 +2109 582 0.400000 +2109 634 0.400000 +2109 695 0.400000 +2109 771 0.400000 +2110 167 0.400000 +2110 173 0.400000 +2110 218 0.400000 +2110 231 0.400000 +2110 252 0.400000 +2110 290 0.400000 +2110 367 0.400000 +2110 370 0.400000 +2110 372 0.400000 +2110 384 0.400000 +2110 400 0.400000 +2110 440 0.400000 +2110 488 0.400000 +2110 584 0.400000 +2110 700 0.400000 +2110 768 0.400000 +2111 98 0.400000 +2111 140 0.400000 +2111 225 0.400000 +2111 326 0.400000 +2111 361 0.400000 +2111 373 0.400000 +2111 374 0.400000 +2111 384 0.400000 +2111 402 0.400000 +2111 411 0.400000 +2111 437 0.400000 +2111 531 0.400000 +2111 573 0.400000 +2111 583 0.400000 +2111 605 0.400000 +2111 702 0.400000 +2111 724 0.400000 +2111 739 0.400000 +2111 791 0.400000 +2112 90 0.400000 +2112 94 0.400000 +2112 101 0.400000 +2112 182 0.400000 +2112 221 0.400000 +2112 234 0.400000 +2112 235 0.400000 +2112 242 0.400000 +2112 363 0.400000 +2112 410 0.400000 +2112 569 0.400000 +2112 604 0.400000 +2112 695 0.400000 +2112 754 0.400000 +2113 42 0.400000 +2113 182 0.400000 +2113 230 0.400000 +2113 237 0.400000 +2113 266 0.400000 +2113 295 0.400000 +2113 338 0.400000 +2113 357 0.400000 +2113 382 0.400000 +2113 391 0.400000 +2113 466 0.400000 +2113 571 0.400000 +2113 612 0.400000 +2113 669 0.400000 +2113 712 0.400000 +2113 722 0.400000 +2113 748 0.400000 +2113 786 0.400000 +2114 58 0.400000 +2114 59 0.400000 +2114 84 0.400000 +2114 90 0.400000 +2114 116 0.400000 +2114 219 0.400000 +2114 273 0.400000 +2114 280 0.400000 +2114 375 0.400000 +2114 377 0.400000 +2114 399 0.400000 +2114 469 0.400000 +2114 500 0.400000 +2114 539 0.400000 +2114 640 0.400000 +2114 691 0.400000 +2114 755 0.400000 +2114 784 0.400000 +2115 13 0.400000 +2115 14 0.400000 +2115 74 0.400000 +2115 207 0.400000 +2115 378 0.400000 +2115 387 0.400000 +2115 412 0.400000 +2115 423 0.400000 +2115 527 0.400000 +2115 580 0.400000 +2115 584 0.400000 +2115 585 0.400000 +2115 698 0.400000 +2115 724 0.400000 +2115 728 0.400000 +2115 763 0.400000 +2116 54 0.400000 +2116 120 0.400000 +2116 127 0.400000 +2116 176 0.400000 +2116 191 0.400000 +2116 211 0.400000 +2116 256 0.400000 +2116 266 0.400000 +2116 319 0.400000 +2116 378 0.400000 +2116 410 0.400000 +2116 433 0.400000 +2116 483 0.400000 +2116 514 0.400000 +2116 657 0.400000 +2116 686 0.400000 +2116 713 0.400000 +2116 722 0.400000 +2116 743 0.400000 +2117 62 0.400000 +2117 94 0.400000 +2117 149 0.400000 +2117 160 0.400000 +2117 373 0.400000 +2117 393 0.400000 +2117 415 0.400000 +2117 468 0.400000 +2117 556 0.400000 +2117 576 0.400000 +2117 672 0.400000 +2117 733 0.400000 +2117 738 0.400000 +2117 739 0.400000 +2118 43 0.400000 +2118 53 0.400000 +2118 94 0.400000 +2118 135 0.400000 +2118 290 0.400000 +2118 507 0.400000 +2118 511 0.400000 +2118 595 0.400000 +2118 682 0.400000 +2118 688 0.400000 +2118 718 0.400000 +2118 729 0.400000 +2118 780 0.400000 +2118 781 0.400000 +2119 12 0.400000 +2119 48 0.400000 +2119 94 0.400000 +2119 331 0.400000 +2119 402 0.400000 +2119 450 0.400000 +2119 537 0.400000 +2120 26 0.400000 +2120 49 0.400000 +2120 81 0.400000 +2120 95 0.400000 +2120 104 0.400000 +2120 129 0.400000 +2120 155 0.400000 +2120 184 0.400000 +2120 217 0.400000 +2120 246 0.400000 +2120 280 0.400000 +2120 296 0.400000 +2120 297 0.400000 +2120 329 0.400000 +2120 344 0.400000 +2120 365 0.400000 +2120 389 0.400000 +2120 619 0.400000 +2120 728 0.400000 +2121 20 0.400000 +2121 37 0.400000 +2121 39 0.400000 +2121 49 0.400000 +2121 100 0.400000 +2121 106 0.400000 +2121 148 0.400000 +2121 187 0.400000 +2121 292 0.400000 +2121 335 0.400000 +2121 355 0.400000 +2121 414 0.400000 +2121 455 0.400000 +2121 474 0.400000 +2121 486 0.400000 +2121 495 0.400000 +2121 529 0.400000 +2121 619 0.400000 +2121 779 0.400000 +2121 783 0.400000 +2122 32 0.400000 +2122 79 0.400000 +2122 163 0.400000 +2122 186 0.400000 +2122 241 0.400000 +2122 255 0.400000 +2122 343 0.400000 +2122 388 0.400000 +2122 409 0.400000 +2122 413 0.400000 +2122 490 0.400000 +2122 565 0.400000 +2122 599 0.400000 +2122 740 0.400000 +2122 758 0.400000 +2122 766 0.400000 +2123 72 0.400000 +2123 93 0.400000 +2123 101 0.400000 +2123 267 0.400000 +2123 312 0.400000 +2123 315 0.400000 +2123 316 0.400000 +2123 345 0.400000 +2123 411 0.400000 +2123 418 0.400000 +2123 500 0.400000 +2123 519 0.400000 +2123 529 0.400000 +2123 611 0.400000 +2123 741 0.400000 +2123 766 0.400000 +2123 771 0.400000 +2124 67 0.400000 +2124 86 0.400000 +2124 386 0.400000 +2124 402 0.400000 +2124 423 0.400000 +2124 457 0.400000 +2124 486 0.400000 +2124 503 0.400000 +2124 531 0.400000 +2124 562 0.400000 +2124 613 0.400000 +2124 661 0.400000 +2124 680 0.400000 +2124 693 0.400000 +2124 744 0.400000 +2124 790 0.400000 +2125 36 0.400000 +2125 38 0.400000 +2125 44 0.400000 +2125 49 0.400000 +2125 85 0.400000 +2125 87 0.400000 +2125 104 0.400000 +2125 229 0.400000 +2125 400 0.400000 +2125 521 0.400000 +2125 659 0.400000 +2125 717 0.400000 +2125 760 0.400000 +2126 261 0.400000 +2126 306 0.400000 +2126 313 0.400000 +2126 353 0.400000 +2126 369 0.400000 +2126 386 0.400000 +2126 391 0.400000 +2126 445 0.400000 +2126 511 0.400000 +2126 543 0.400000 +2126 546 0.400000 +2126 593 0.400000 +2126 612 0.400000 +2126 621 0.400000 +2126 655 0.400000 +2126 663 0.400000 +2126 729 0.400000 +2126 769 0.400000 +2127 3 0.400000 +2127 8 0.400000 +2127 13 0.400000 +2127 29 0.400000 +2127 36 0.400000 +2127 37 0.400000 +2127 64 0.400000 +2127 113 0.400000 +2127 180 0.400000 +2127 195 0.400000 +2127 237 0.400000 +2127 289 0.400000 +2127 316 0.400000 +2127 321 0.400000 +2127 443 0.400000 +2127 463 0.400000 +2127 539 0.400000 +2127 616 0.400000 +2127 653 0.400000 +2127 682 0.400000 +2127 737 0.400000 +2128 46 0.400000 +2128 51 0.400000 +2128 159 0.400000 +2128 220 0.400000 +2128 283 0.400000 +2128 434 0.400000 +2128 462 0.400000 +2128 477 0.400000 +2128 519 0.400000 +2128 551 0.400000 +2128 633 0.400000 +2128 659 0.400000 +2128 700 0.400000 +2129 31 0.400000 +2129 36 0.400000 +2129 47 0.400000 +2129 61 0.400000 +2129 75 0.400000 +2129 181 0.400000 +2129 215 0.400000 +2129 267 0.400000 +2129 288 0.400000 +2129 327 0.400000 +2129 353 0.400000 +2129 539 0.400000 +2129 745 0.400000 +2129 751 0.400000 +2129 773 0.400000 +2130 30 0.400000 +2130 42 0.400000 +2130 89 0.400000 +2130 185 0.400000 +2130 202 0.400000 +2130 235 0.400000 +2130 245 0.400000 +2130 289 0.400000 +2130 295 0.400000 +2130 367 0.400000 +2130 427 0.400000 +2130 585 0.400000 +2130 593 0.400000 +2130 676 0.400000 +2130 712 0.400000 +2130 724 0.400000 +2130 785 0.400000 +2131 25 0.400000 +2131 29 0.400000 +2131 128 0.400000 +2131 134 0.400000 +2131 239 0.400000 +2131 267 0.400000 +2131 294 0.400000 +2131 350 0.400000 +2131 459 0.400000 +2131 480 0.400000 +2131 499 0.400000 +2131 591 0.400000 +2131 613 0.400000 +2131 631 0.400000 +2131 663 0.400000 +2131 730 0.400000 +2131 775 0.400000 +2132 62 0.400000 +2132 163 0.400000 +2132 271 0.400000 +2132 287 0.400000 +2132 468 0.400000 +2132 469 0.400000 +2132 472 0.400000 +2132 525 0.400000 +2132 656 0.400000 +2132 665 0.400000 +2132 677 0.400000 +2132 685 0.400000 +2132 773 0.400000 +2132 800 0.400000 +2133 17 0.400000 +2133 141 0.400000 +2133 188 0.400000 +2133 356 0.400000 +2133 388 0.400000 +2133 512 0.400000 +2133 515 0.400000 +2133 524 0.400000 +2133 541 0.400000 +2133 552 0.400000 +2133 584 0.400000 +2133 595 0.400000 +2133 597 0.400000 +2133 651 0.400000 +2133 653 0.400000 +2133 710 0.400000 +2133 728 0.400000 +2133 744 0.400000 +2133 780 0.400000 +2134 19 0.400000 +2134 59 0.400000 +2134 66 0.400000 +2134 77 0.400000 +2134 102 0.400000 +2134 141 0.400000 +2134 289 0.400000 +2134 338 0.400000 +2134 381 0.400000 +2134 441 0.400000 +2134 524 0.400000 +2134 537 0.400000 +2134 540 0.400000 +2134 573 0.400000 +2134 575 0.400000 +2134 644 0.400000 +2135 12 0.400000 +2135 24 0.400000 +2135 37 0.400000 +2135 129 0.400000 +2135 299 0.400000 +2135 329 0.400000 +2135 360 0.400000 +2135 446 0.400000 +2135 467 0.400000 +2135 516 0.400000 +2135 731 0.400000 +2135 735 0.400000 +2135 768 0.400000 +2136 107 0.400000 +2136 116 0.400000 +2136 132 0.400000 +2136 134 0.400000 +2136 164 0.400000 +2136 178 0.400000 +2136 220 0.400000 +2136 258 0.400000 +2136 351 0.400000 +2136 394 0.400000 +2136 545 0.400000 +2136 590 0.400000 +2136 592 0.400000 +2136 663 0.400000 +2136 682 0.400000 +2136 685 0.400000 +2136 686 0.400000 +2136 698 0.400000 +2136 707 0.400000 +2136 758 0.400000 +2137 21 0.400000 +2137 25 0.400000 +2137 66 0.400000 +2137 73 0.400000 +2137 109 0.400000 +2137 463 0.400000 +2137 540 0.400000 +2137 542 0.400000 +2137 582 0.400000 +2137 618 0.400000 +2137 622 0.400000 +2137 679 0.400000 +2137 683 0.400000 +2137 695 0.400000 +2137 751 0.400000 +2137 762 0.400000 +2137 769 0.400000 +2138 11 0.400000 +2138 77 0.400000 +2138 147 0.400000 +2138 251 0.400000 +2138 301 0.400000 +2138 401 0.400000 +2138 443 0.400000 +2138 449 0.400000 +2138 544 0.400000 +2138 593 0.400000 +2138 721 0.400000 +2138 774 0.400000 +2138 776 0.400000 +2138 779 0.400000 +2139 9 0.400000 +2139 42 0.400000 +2139 100 0.400000 +2139 111 0.400000 +2139 127 0.400000 +2139 379 0.400000 +2139 414 0.400000 +2139 448 0.400000 +2139 454 0.400000 +2139 578 0.400000 +2139 660 0.400000 +2139 683 0.400000 +2139 717 0.400000 +2139 749 0.400000 +2139 751 0.400000 +2139 757 0.400000 +2139 781 0.400000 +2140 17 0.400000 +2140 87 0.400000 +2140 107 0.400000 +2140 123 0.400000 +2140 140 0.400000 +2140 144 0.400000 +2140 159 0.400000 +2140 172 0.400000 +2140 315 0.400000 +2140 318 0.400000 +2140 356 0.400000 +2140 383 0.400000 +2140 515 0.400000 +2140 523 0.400000 +2140 528 0.400000 +2140 576 0.400000 +2140 596 0.400000 +2140 645 0.400000 +2140 671 0.400000 +2140 686 0.400000 +2140 718 0.400000 +2140 790 0.400000 +2141 8 0.400000 +2141 79 0.400000 +2141 130 0.400000 +2141 156 0.400000 +2141 198 0.400000 +2141 200 0.400000 +2141 248 0.400000 +2141 250 0.400000 +2141 301 0.400000 +2141 424 0.400000 +2141 441 0.400000 +2141 504 0.400000 +2141 581 0.400000 +2142 160 0.400000 +2142 320 0.400000 +2142 355 0.400000 +2142 373 0.400000 +2142 452 0.400000 +2142 469 0.400000 +2142 548 0.400000 +2142 580 0.400000 +2142 591 0.400000 +2142 686 0.400000 +2142 750 0.400000 +2143 27 0.400000 +2143 124 0.400000 +2143 194 0.400000 +2143 206 0.400000 +2143 241 0.400000 +2143 340 0.400000 +2143 399 0.400000 +2143 428 0.400000 +2143 597 0.400000 +2143 664 0.400000 +2143 680 0.400000 +2143 722 0.400000 +2144 7 0.400000 +2144 8 0.400000 +2144 26 0.400000 +2144 240 0.400000 +2144 250 0.400000 +2144 346 0.400000 +2144 430 0.400000 +2144 514 0.400000 +2144 784 0.400000 +2144 800 0.400000 +2145 44 0.400000 +2145 186 0.400000 +2145 191 0.400000 +2145 234 0.400000 +2145 320 0.400000 +2145 355 0.400000 +2145 421 0.400000 +2145 430 0.400000 +2145 462 0.400000 +2145 678 0.400000 +2145 771 0.400000 +2146 8 0.400000 +2146 21 0.400000 +2146 57 0.400000 +2146 131 0.400000 +2146 142 0.400000 +2146 190 0.400000 +2146 219 0.400000 +2146 288 0.400000 +2146 369 0.400000 +2146 417 0.400000 +2146 432 0.400000 +2146 434 0.400000 +2146 438 0.400000 +2146 449 0.400000 +2146 455 0.400000 +2146 506 0.400000 +2146 554 0.400000 +2146 597 0.400000 +2146 611 0.400000 +2146 663 0.400000 +2146 672 0.400000 +2146 799 0.400000 +2147 118 0.400000 +2147 125 0.400000 +2147 126 0.400000 +2147 164 0.400000 +2147 225 0.400000 +2147 320 0.400000 +2147 543 0.400000 +2147 591 0.400000 +2147 676 0.400000 +2147 689 0.400000 +2147 762 0.400000 +2147 767 0.400000 +2147 780 0.400000 +2147 791 0.400000 +2147 797 0.400000 +2148 21 0.400000 +2148 157 0.400000 +2148 241 0.400000 +2148 254 0.400000 +2148 258 0.400000 +2148 268 0.400000 +2148 269 0.400000 +2148 284 0.400000 +2148 286 0.400000 +2148 288 0.400000 +2148 360 0.400000 +2148 475 0.400000 +2148 732 0.400000 +2148 749 0.400000 +2148 775 0.400000 +2149 106 0.400000 +2149 117 0.400000 +2149 127 0.400000 +2149 150 0.400000 +2149 236 0.400000 +2149 262 0.400000 +2149 286 0.400000 +2149 301 0.400000 +2149 308 0.400000 +2149 427 0.400000 +2149 462 0.400000 +2149 481 0.400000 +2149 485 0.400000 +2149 499 0.400000 +2149 530 0.400000 +2149 547 0.400000 +2150 43 0.400000 +2150 68 0.400000 +2150 103 0.400000 +2150 135 0.400000 +2150 235 0.400000 +2150 269 0.400000 +2150 288 0.400000 +2150 384 0.400000 +2150 533 0.400000 +2150 609 0.400000 +2150 677 0.400000 +2150 679 0.400000 +2150 693 0.400000 +2150 705 0.400000 +2150 722 0.400000 +2150 735 0.400000 +2151 46 0.400000 +2151 65 0.400000 +2151 115 0.400000 +2151 184 0.400000 +2151 245 0.400000 +2151 282 0.400000 +2151 285 0.400000 +2151 302 0.400000 +2151 394 0.400000 +2151 528 0.400000 +2151 599 0.400000 +2151 615 0.400000 +2151 652 0.400000 +2151 653 0.400000 +2151 685 0.400000 +2151 709 0.400000 +2151 710 0.400000 +2151 755 0.400000 +2152 105 0.400000 +2152 205 0.400000 +2152 356 0.400000 +2152 418 0.400000 +2152 419 0.400000 +2152 460 0.400000 +2152 485 0.400000 +2152 491 0.400000 +2152 660 0.400000 +2152 709 0.400000 +2152 742 0.400000 +2153 35 0.400000 +2153 65 0.400000 +2153 76 0.400000 +2153 154 0.400000 +2153 163 0.400000 +2153 198 0.400000 +2153 206 0.400000 +2153 249 0.400000 +2153 255 0.400000 +2153 442 0.400000 +2153 489 0.400000 +2153 547 0.400000 +2153 577 0.400000 +2153 686 0.400000 +2153 705 0.400000 +2153 717 0.400000 +2153 759 0.400000 +2154 91 0.400000 +2154 92 0.400000 +2154 107 0.400000 +2154 231 0.400000 +2154 272 0.400000 +2154 300 0.400000 +2154 334 0.400000 +2154 335 0.400000 +2154 466 0.400000 +2154 617 0.400000 +2154 670 0.400000 +2154 700 0.400000 +2154 708 0.400000 +2154 739 0.400000 +2155 7 0.400000 +2155 36 0.400000 +2155 97 0.400000 +2155 177 0.400000 +2155 302 0.400000 +2155 316 0.400000 +2155 348 0.400000 +2155 457 0.400000 +2155 479 0.400000 +2155 482 0.400000 +2155 487 0.400000 +2155 493 0.400000 +2155 522 0.400000 +2155 562 0.400000 +2155 639 0.400000 +2155 682 0.400000 +2156 61 0.400000 +2156 67 0.400000 +2156 172 0.400000 +2156 174 0.400000 +2156 293 0.400000 +2156 358 0.400000 +2156 425 0.400000 +2156 544 0.400000 +2156 573 0.400000 +2156 596 0.400000 +2156 631 0.400000 +2156 683 0.400000 +2156 689 0.400000 +2156 738 0.400000 +2156 791 0.400000 +2157 14 0.400000 +2157 125 0.400000 +2157 130 0.400000 +2157 185 0.400000 +2157 202 0.400000 +2157 246 0.400000 +2157 297 0.400000 +2157 318 0.400000 +2157 356 0.400000 +2157 364 0.400000 +2157 414 0.400000 +2157 429 0.400000 +2157 460 0.400000 +2157 490 0.400000 +2157 507 0.400000 +2157 573 0.400000 +2157 623 0.400000 +2157 624 0.400000 +2157 680 0.400000 +2157 704 0.400000 +2157 737 0.400000 +2157 757 0.400000 +2158 7 0.400000 +2158 76 0.400000 +2158 142 0.400000 +2158 216 0.400000 +2158 222 0.400000 +2158 367 0.400000 +2158 378 0.400000 +2158 418 0.400000 +2158 540 0.400000 +2158 545 0.400000 +2158 566 0.400000 +2158 614 0.400000 +2158 627 0.400000 +2158 736 0.400000 +2158 753 0.400000 +2158 774 0.400000 +2159 21 0.400000 +2159 79 0.400000 +2159 147 0.400000 +2159 216 0.400000 +2159 273 0.400000 +2159 371 0.400000 +2159 387 0.400000 +2159 408 0.400000 +2159 544 0.400000 +2159 584 0.400000 +2159 601 0.400000 +2159 664 0.400000 +2159 666 0.400000 +2159 688 0.400000 +2159 729 0.400000 +2159 782 0.400000 +2160 22 0.400000 +2160 42 0.400000 +2160 48 0.400000 +2160 99 0.400000 +2160 106 0.400000 +2160 120 0.400000 +2160 154 0.400000 +2160 242 0.400000 +2160 321 0.400000 +2160 356 0.400000 +2160 400 0.400000 +2160 419 0.400000 +2160 433 0.400000 +2160 479 0.400000 +2160 533 0.400000 +2160 670 0.400000 +2160 735 0.400000 +2160 766 0.400000 +2160 771 0.400000 +2161 180 0.400000 +2161 185 0.400000 +2161 208 0.400000 +2161 223 0.400000 +2161 254 0.400000 +2161 270 0.400000 +2161 272 0.400000 +2161 325 0.400000 +2161 478 0.400000 +2161 545 0.400000 +2161 549 0.400000 +2161 599 0.400000 +2161 640 0.400000 +2161 687 0.400000 +2161 772 0.400000 +2162 56 0.400000 +2162 144 0.400000 +2162 264 0.400000 +2162 317 0.400000 +2162 348 0.400000 +2162 493 0.400000 +2162 584 0.400000 +2162 635 0.400000 +2163 14 0.400000 +2163 112 0.400000 +2163 121 0.400000 +2163 132 0.400000 +2163 155 0.400000 +2163 250 0.400000 +2163 297 0.400000 +2163 319 0.400000 +2163 452 0.400000 +2163 495 0.400000 +2163 576 0.400000 +2163 602 0.400000 +2163 703 0.400000 +2163 724 0.400000 +2163 725 0.400000 +2164 112 0.400000 +2164 205 0.400000 +2164 336 0.400000 +2164 367 0.400000 +2164 383 0.400000 +2164 413 0.400000 +2164 428 0.400000 +2164 494 0.400000 +2164 544 0.400000 +2164 574 0.400000 +2164 601 0.400000 +2164 745 0.400000 +2165 15 0.400000 +2165 69 0.400000 +2165 85 0.400000 +2165 101 0.400000 +2165 367 0.400000 +2165 376 0.400000 +2165 398 0.400000 +2165 426 0.400000 +2165 593 0.400000 +2165 637 0.400000 +2165 639 0.400000 +2165 675 0.400000 +2165 765 0.400000 +2165 789 0.400000 +2166 131 0.400000 +2166 134 0.400000 +2166 160 0.400000 +2166 222 0.400000 +2166 265 0.400000 +2166 336 0.400000 +2166 350 0.400000 +2166 383 0.400000 +2166 479 0.400000 +2166 501 0.400000 +2166 541 0.400000 +2166 545 0.400000 +2166 558 0.400000 +2166 563 0.400000 +2166 712 0.400000 +2166 765 0.400000 +2167 57 0.400000 +2167 94 0.400000 +2167 121 0.400000 +2167 207 0.400000 +2167 241 0.400000 +2167 265 0.400000 +2167 288 0.400000 +2167 367 0.400000 +2167 386 0.400000 +2167 526 0.400000 +2167 546 0.400000 +2167 566 0.400000 +2167 570 0.400000 +2167 606 0.400000 +2167 615 0.400000 +2167 658 0.400000 +2167 678 0.400000 +2167 719 0.400000 +2167 739 0.400000 +2167 758 0.400000 +2168 2 0.400000 +2168 24 0.400000 +2168 51 0.400000 +2168 117 0.400000 +2168 246 0.400000 +2168 311 0.400000 +2168 347 0.400000 +2168 418 0.400000 +2168 426 0.400000 +2168 543 0.400000 +2168 549 0.400000 +2168 578 0.400000 +2168 579 0.400000 +2168 618 0.400000 +2168 623 0.400000 +2168 662 0.400000 +2168 770 0.400000 +2168 776 0.400000 +2169 1 0.400000 +2169 24 0.400000 +2169 62 0.400000 +2169 147 0.400000 +2169 158 0.400000 +2169 163 0.400000 +2169 260 0.400000 +2169 283 0.400000 +2169 387 0.400000 +2169 417 0.400000 +2169 434 0.400000 +2169 609 0.400000 +2169 761 0.400000 +2169 770 0.400000 +2169 773 0.400000 +2170 16 0.400000 +2170 50 0.400000 +2170 130 0.400000 +2170 197 0.400000 +2170 220 0.400000 +2170 266 0.400000 +2170 370 0.400000 +2170 532 0.400000 +2170 577 0.400000 +2170 599 0.400000 +2170 674 0.400000 +2170 719 0.400000 +2170 778 0.400000 +2171 4 0.400000 +2171 6 0.400000 +2171 24 0.400000 +2171 103 0.400000 +2171 119 0.400000 +2171 137 0.400000 +2171 141 0.400000 +2171 169 0.400000 +2171 189 0.400000 +2171 480 0.400000 +2171 493 0.400000 +2171 556 0.400000 +2171 683 0.400000 +2171 690 0.400000 +2171 714 0.400000 +2171 724 0.400000 +2172 142 0.400000 +2172 187 0.400000 +2172 202 0.400000 +2172 232 0.400000 +2172 304 0.400000 +2172 315 0.400000 +2172 364 0.400000 +2172 587 0.400000 +2172 620 0.400000 +2172 693 0.400000 +2172 731 0.400000 +2172 764 0.400000 +2172 784 0.400000 +2173 61 0.400000 +2173 79 0.400000 +2173 102 0.400000 +2173 209 0.400000 +2173 241 0.400000 +2173 306 0.400000 +2173 417 0.400000 +2173 425 0.400000 +2173 446 0.400000 +2173 479 0.400000 +2173 519 0.400000 +2173 541 0.400000 +2173 601 0.400000 +2173 739 0.400000 +2173 764 0.400000 +2174 5 0.400000 +2174 21 0.400000 +2174 37 0.400000 +2174 67 0.400000 +2174 69 0.400000 +2174 100 0.400000 +2174 142 0.400000 +2174 242 0.400000 +2174 310 0.400000 +2174 372 0.400000 +2174 381 0.400000 +2174 407 0.400000 +2174 419 0.400000 +2174 423 0.400000 +2174 462 0.400000 +2174 473 0.400000 +2174 480 0.400000 +2174 596 0.400000 +2174 740 0.400000 +2175 161 0.400000 +2175 202 0.400000 +2175 225 0.400000 +2175 357 0.400000 +2175 378 0.400000 +2175 460 0.400000 +2175 492 0.400000 +2175 567 0.400000 +2175 571 0.400000 +2175 670 0.400000 +2175 672 0.400000 +2175 727 0.400000 +2175 743 0.400000 +2175 778 0.400000 +2176 25 0.400000 +2176 29 0.400000 +2176 49 0.400000 +2176 76 0.400000 +2176 105 0.400000 +2176 150 0.400000 +2176 187 0.400000 +2176 199 0.400000 +2176 207 0.400000 +2176 224 0.400000 +2176 244 0.400000 +2176 315 0.400000 +2176 374 0.400000 +2176 401 0.400000 +2176 457 0.400000 +2176 480 0.400000 +2176 525 0.400000 +2176 543 0.400000 +2176 583 0.400000 +2176 607 0.400000 +2176 611 0.400000 +2176 629 0.400000 +2176 659 0.400000 +2177 60 0.400000 +2177 66 0.400000 +2177 116 0.400000 +2177 482 0.400000 +2177 509 0.400000 +2177 694 0.400000 +2177 724 0.400000 +2177 744 0.400000 +2178 27 0.400000 +2178 62 0.400000 +2178 176 0.400000 +2178 213 0.400000 +2178 452 0.400000 +2178 476 0.400000 +2178 477 0.400000 +2178 534 0.400000 +2178 556 0.400000 +2178 571 0.400000 +2178 582 0.400000 +2178 670 0.400000 +2178 693 0.400000 +2179 12 0.400000 +2179 26 0.400000 +2179 224 0.400000 +2179 248 0.400000 +2179 263 0.400000 +2179 284 0.400000 +2179 291 0.400000 +2179 314 0.400000 +2179 362 0.400000 +2179 394 0.400000 +2179 442 0.400000 +2179 457 0.400000 +2179 466 0.400000 +2179 512 0.400000 +2179 595 0.400000 +2179 597 0.400000 +2179 688 0.400000 +2179 747 0.400000 +2180 6 0.400000 +2180 9 0.400000 +2180 13 0.400000 +2180 66 0.400000 +2180 126 0.400000 +2180 148 0.400000 +2180 207 0.400000 +2180 226 0.400000 +2180 237 0.400000 +2180 311 0.400000 +2180 370 0.400000 +2180 444 0.400000 +2180 600 0.400000 +2180 664 0.400000 +2180 683 0.400000 +2180 724 0.400000 +2180 745 0.400000 +2180 761 0.400000 +2181 44 0.400000 +2181 122 0.400000 +2181 123 0.400000 +2181 133 0.400000 +2181 209 0.400000 +2181 223 0.400000 +2181 263 0.400000 +2181 273 0.400000 +2181 282 0.400000 +2181 311 0.400000 +2181 339 0.400000 +2181 456 0.400000 +2181 514 0.400000 +2181 645 0.400000 +2181 672 0.400000 +2181 684 0.400000 +2181 695 0.400000 +2181 737 0.400000 +2181 763 0.400000 +2181 766 0.400000 +2182 86 0.400000 +2182 206 0.400000 +2182 291 0.400000 +2182 321 0.400000 +2182 325 0.400000 +2182 327 0.400000 +2182 356 0.400000 +2182 357 0.400000 +2182 429 0.400000 +2182 435 0.400000 +2182 443 0.400000 +2182 505 0.400000 +2182 530 0.400000 +2182 569 0.400000 +2182 572 0.400000 +2182 646 0.400000 +2182 689 0.400000 +2182 751 0.400000 +2182 768 0.400000 +2182 790 0.400000 +2183 22 0.400000 +2183 37 0.400000 +2183 272 0.400000 +2183 383 0.400000 +2183 437 0.400000 +2183 558 0.400000 +2183 600 0.400000 +2183 630 0.400000 +2183 722 0.400000 +2183 787 0.400000 +2183 798 0.400000 +2184 7 0.400000 +2184 31 0.400000 +2184 126 0.400000 +2184 256 0.400000 +2184 409 0.400000 +2184 431 0.400000 +2184 489 0.400000 +2184 527 0.400000 +2184 628 0.400000 +2184 645 0.400000 +2185 17 0.400000 +2185 38 0.400000 +2185 97 0.400000 +2185 111 0.400000 +2185 177 0.400000 +2185 188 0.400000 +2185 218 0.400000 +2185 275 0.400000 +2185 316 0.400000 +2185 349 0.400000 +2185 383 0.400000 +2185 407 0.400000 +2185 436 0.400000 +2185 478 0.400000 +2185 514 0.400000 +2185 668 0.400000 +2186 12 0.400000 +2186 18 0.400000 +2186 37 0.400000 +2186 64 0.400000 +2186 80 0.400000 +2186 140 0.400000 +2186 144 0.400000 +2186 179 0.400000 +2186 180 0.400000 +2186 248 0.400000 +2186 262 0.400000 +2186 287 0.400000 +2186 352 0.400000 +2186 363 0.400000 +2186 375 0.400000 +2186 447 0.400000 +2186 450 0.400000 +2186 613 0.400000 +2186 616 0.400000 +2186 644 0.400000 +2186 659 0.400000 +2186 746 0.400000 +2186 772 0.400000 +2187 121 0.400000 +2187 131 0.400000 +2187 186 0.400000 +2187 289 0.400000 +2187 334 0.400000 +2187 395 0.400000 +2187 419 0.400000 +2187 421 0.400000 +2187 457 0.400000 +2187 502 0.400000 +2187 569 0.400000 +2187 585 0.400000 +2187 599 0.400000 +2187 679 0.400000 +2188 11 0.400000 +2188 39 0.400000 +2188 184 0.400000 +2188 285 0.400000 +2188 294 0.400000 +2188 329 0.400000 +2188 603 0.400000 +2188 648 0.400000 +2188 665 0.400000 +2188 686 0.400000 +2188 735 0.400000 +2188 771 0.400000 +2188 777 0.400000 +2188 778 0.400000 +2188 795 0.400000 +2189 257 0.400000 +2189 290 0.400000 +2189 299 0.400000 +2189 401 0.400000 +2189 428 0.400000 +2189 429 0.400000 +2189 562 0.400000 +2189 690 0.400000 +2189 761 0.400000 +2190 17 0.400000 +2190 25 0.400000 +2190 47 0.400000 +2190 72 0.400000 +2190 95 0.400000 +2190 107 0.400000 +2190 324 0.400000 +2190 344 0.400000 +2190 372 0.400000 +2190 377 0.400000 +2190 507 0.400000 +2190 540 0.400000 +2190 617 0.400000 +2190 650 0.400000 +2190 678 0.400000 +2190 707 0.400000 +2191 69 0.400000 +2191 94 0.400000 +2191 101 0.400000 +2191 108 0.400000 +2191 153 0.400000 +2191 221 0.400000 +2191 230 0.400000 +2191 240 0.400000 +2191 248 0.400000 +2191 287 0.400000 +2191 330 0.400000 +2191 383 0.400000 +2191 407 0.400000 +2191 476 0.400000 +2191 539 0.400000 +2191 571 0.400000 +2191 640 0.400000 +2191 701 0.400000 +2192 139 0.400000 +2192 150 0.400000 +2192 157 0.400000 +2192 216 0.400000 +2192 287 0.400000 +2192 292 0.400000 +2192 343 0.400000 +2192 361 0.400000 +2192 404 0.400000 +2192 426 0.400000 +2192 459 0.400000 +2192 483 0.400000 +2192 565 0.400000 +2192 575 0.400000 +2192 592 0.400000 +2192 684 0.400000 +2192 693 0.400000 +2192 698 0.400000 +2192 726 0.400000 +2192 740 0.400000 +2192 750 0.400000 +2193 123 0.400000 +2193 132 0.400000 +2193 138 0.400000 +2193 143 0.400000 +2193 148 0.400000 +2193 161 0.400000 +2193 172 0.400000 +2193 225 0.400000 +2193 239 0.400000 +2193 296 0.400000 +2193 358 0.400000 +2193 391 0.400000 +2193 415 0.400000 +2193 470 0.400000 +2193 540 0.400000 +2193 556 0.400000 +2193 581 0.400000 +2193 582 0.400000 +2193 592 0.400000 +2193 596 0.400000 +2193 620 0.400000 +2193 651 0.400000 +2193 691 0.400000 +2193 697 0.400000 +2193 763 0.400000 +2194 10 0.400000 +2194 20 0.400000 +2194 96 0.400000 +2194 107 0.400000 +2194 117 0.400000 +2194 199 0.400000 +2194 312 0.400000 +2194 329 0.400000 +2194 334 0.400000 +2194 371 0.400000 +2194 418 0.400000 +2194 505 0.400000 +2194 508 0.400000 +2194 524 0.400000 +2194 569 0.400000 +2194 659 0.400000 +2194 707 0.400000 +2194 734 0.400000 +2194 794 0.400000 +2195 165 0.400000 +2195 205 0.400000 +2195 209 0.400000 +2195 281 0.400000 +2195 294 0.400000 +2195 338 0.400000 +2195 362 0.400000 +2195 378 0.400000 +2195 436 0.400000 +2195 486 0.400000 +2195 509 0.400000 +2195 511 0.400000 +2195 516 0.400000 +2195 574 0.400000 +2195 598 0.400000 +2195 724 0.400000 +2195 741 0.400000 +2195 761 0.400000 +2195 798 0.400000 +2196 7 0.400000 +2196 61 0.400000 +2196 70 0.400000 +2196 78 0.400000 +2196 120 0.400000 +2196 141 0.400000 +2196 143 0.400000 +2196 243 0.400000 +2196 365 0.400000 +2196 406 0.400000 +2196 540 0.400000 +2196 554 0.400000 +2196 558 0.400000 +2196 559 0.400000 +2196 567 0.400000 +2196 574 0.400000 +2196 590 0.400000 +2196 633 0.400000 +2196 653 0.400000 +2196 658 0.400000 +2196 671 0.400000 +2196 747 0.400000 +2196 795 0.400000 +2197 53 0.400000 +2197 62 0.400000 +2197 101 0.400000 +2197 167 0.400000 +2197 203 0.400000 +2197 239 0.400000 +2197 504 0.400000 +2197 571 0.400000 +2197 596 0.400000 +2197 609 0.400000 +2197 756 0.400000 +2198 17 0.400000 +2198 53 0.400000 +2198 79 0.400000 +2198 81 0.400000 +2198 192 0.400000 +2198 193 0.400000 +2198 202 0.400000 +2198 248 0.400000 +2198 388 0.400000 +2198 441 0.400000 +2198 593 0.400000 +2198 594 0.400000 +2198 710 0.400000 +2198 749 0.400000 +2199 15 0.400000 +2199 20 0.400000 +2199 38 0.400000 +2199 103 0.400000 +2199 112 0.400000 +2199 128 0.400000 +2199 135 0.400000 +2199 207 0.400000 +2199 217 0.400000 +2199 226 0.400000 +2199 237 0.400000 +2199 254 0.400000 +2199 265 0.400000 +2199 321 0.400000 +2199 332 0.400000 +2199 334 0.400000 +2199 399 0.400000 +2199 478 0.400000 +2199 516 0.400000 +2199 550 0.400000 +2199 613 0.400000 +2199 660 0.400000 +2199 683 0.400000 +2199 704 0.400000 +2199 712 0.400000 +2199 741 0.400000 +2199 793 0.400000 +2199 796 0.400000 +2200 17 0.400000 +2200 27 0.400000 +2200 116 0.400000 +2200 310 0.400000 +2200 340 0.400000 +2200 386 0.400000 +2200 430 0.400000 +2200 456 0.400000 +2200 477 0.400000 +2200 581 0.400000 +2200 588 0.400000 +2200 607 0.400000 +2200 641 0.400000 +2200 764 0.400000 +2200 765 0.400000 +2201 97 0.400000 +2201 117 0.400000 +2201 137 0.400000 +2201 173 0.400000 +2201 178 0.400000 +2201 180 0.400000 +2201 189 0.400000 +2201 259 0.400000 +2201 335 0.400000 +2201 338 0.400000 +2201 463 0.400000 +2201 585 0.400000 +2201 788 0.400000 +2202 68 0.400000 +2202 96 0.400000 +2202 109 0.400000 +2202 311 0.400000 +2202 338 0.400000 +2202 349 0.400000 +2202 423 0.400000 +2202 464 0.400000 +2202 595 0.400000 +2202 609 0.400000 +2202 694 0.400000 +2202 793 0.400000 +2203 14 0.400000 +2203 48 0.400000 +2203 64 0.400000 +2203 96 0.400000 +2203 155 0.400000 +2203 171 0.400000 +2203 174 0.400000 +2203 206 0.400000 +2203 214 0.400000 +2203 217 0.400000 +2203 256 0.400000 +2203 363 0.400000 +2203 435 0.400000 +2203 527 0.400000 +2203 530 0.400000 +2203 564 0.400000 +2203 617 0.400000 +2203 716 0.400000 +2203 796 0.400000 +2204 117 0.400000 +2204 163 0.400000 +2204 239 0.400000 +2204 274 0.400000 +2204 288 0.400000 +2204 322 0.400000 +2204 350 0.400000 +2204 430 0.400000 +2204 536 0.400000 +2204 594 0.400000 +2204 603 0.400000 +2204 604 0.400000 +2204 664 0.400000 +2204 711 0.400000 +2204 784 0.400000 +2204 799 0.400000 +2205 133 0.400000 +2205 164 0.400000 +2205 366 0.400000 +2205 535 0.400000 +2205 557 0.400000 +2205 595 0.400000 +2205 650 0.400000 +2205 710 0.400000 +2205 725 0.400000 +2205 729 0.400000 +2205 777 0.400000 +2206 55 0.400000 +2206 135 0.400000 +2206 146 0.400000 +2206 392 0.400000 +2206 396 0.400000 +2206 443 0.400000 +2206 511 0.400000 +2206 527 0.400000 +2206 560 0.400000 +2206 625 0.400000 +2206 681 0.400000 +2206 719 0.400000 +2207 37 0.400000 +2207 98 0.400000 +2207 153 0.400000 +2207 176 0.400000 +2207 219 0.400000 +2207 238 0.400000 +2207 244 0.400000 +2207 296 0.400000 +2207 379 0.400000 +2207 415 0.400000 +2207 441 0.400000 +2207 451 0.400000 +2207 575 0.400000 +2207 600 0.400000 +2207 603 0.400000 +2207 613 0.400000 +2207 640 0.400000 +2207 726 0.400000 +2207 800 0.400000 +2208 79 0.400000 +2208 128 0.400000 +2208 198 0.400000 +2208 330 0.400000 +2208 393 0.400000 +2208 410 0.400000 +2208 480 0.400000 +2208 535 0.400000 +2208 589 0.400000 +2208 597 0.400000 +2208 642 0.400000 +2208 666 0.400000 +2208 784 0.400000 +2209 8 0.400000 +2209 25 0.400000 +2209 32 0.400000 +2209 42 0.400000 +2209 49 0.400000 +2209 88 0.400000 +2209 149 0.400000 +2209 185 0.400000 +2209 239 0.400000 +2209 245 0.400000 +2209 319 0.400000 +2209 320 0.400000 +2209 336 0.400000 +2209 340 0.400000 +2209 343 0.400000 +2209 408 0.400000 +2209 423 0.400000 +2209 463 0.400000 +2209 512 0.400000 +2209 583 0.400000 +2209 674 0.400000 +2209 680 0.400000 +2209 688 0.400000 +2210 64 0.400000 +2210 72 0.400000 +2210 73 0.400000 +2210 99 0.400000 +2210 106 0.400000 +2210 108 0.400000 +2210 109 0.400000 +2210 176 0.400000 +2210 216 0.400000 +2210 281 0.400000 +2210 318 0.400000 +2210 392 0.400000 +2210 462 0.400000 +2210 480 0.400000 +2210 493 0.400000 +2210 504 0.400000 +2210 513 0.400000 +2210 597 0.400000 +2210 613 0.400000 +2210 669 0.400000 +2210 767 0.400000 +2210 798 0.400000 +2211 27 0.400000 +2211 88 0.400000 +2211 148 0.400000 +2211 158 0.400000 +2211 178 0.400000 +2211 228 0.400000 +2211 231 0.400000 +2211 243 0.400000 +2211 271 0.400000 +2211 321 0.400000 +2211 335 0.400000 +2211 374 0.400000 +2211 417 0.400000 +2211 432 0.400000 +2211 462 0.400000 +2211 533 0.400000 +2211 636 0.400000 +2211 639 0.400000 +2211 758 0.400000 +2211 772 0.400000 +2211 783 0.400000 +2212 223 0.400000 +2212 229 0.400000 +2212 264 0.400000 +2212 468 0.400000 +2212 595 0.400000 +2212 709 0.400000 +2212 789 0.400000 +2213 135 0.400000 +2213 167 0.400000 +2213 173 0.400000 +2213 194 0.400000 +2213 206 0.400000 +2213 394 0.400000 +2213 421 0.400000 +2213 444 0.400000 +2213 517 0.400000 +2213 554 0.400000 +2213 611 0.400000 +2213 679 0.400000 +2213 755 0.400000 +2213 778 0.400000 +2214 2 0.400000 +2214 66 0.400000 +2214 129 0.400000 +2214 152 0.400000 +2214 155 0.400000 +2214 167 0.400000 +2214 181 0.400000 +2214 225 0.400000 +2214 262 0.400000 +2214 277 0.400000 +2214 294 0.400000 +2214 424 0.400000 +2214 425 0.400000 +2214 591 0.400000 +2214 654 0.400000 +2214 698 0.400000 +2214 773 0.400000 +2215 21 0.400000 +2215 50 0.400000 +2215 124 0.400000 +2215 200 0.400000 +2215 204 0.400000 +2215 268 0.400000 +2215 316 0.400000 +2215 317 0.400000 +2215 408 0.400000 +2215 533 0.400000 +2215 646 0.400000 +2215 652 0.400000 +2215 677 0.400000 +2216 96 0.400000 +2216 119 0.400000 +2216 261 0.400000 +2216 337 0.400000 +2216 345 0.400000 +2216 354 0.400000 +2216 375 0.400000 +2216 404 0.400000 +2216 421 0.400000 +2216 435 0.400000 +2216 504 0.400000 +2216 537 0.400000 +2216 559 0.400000 +2216 709 0.400000 +2216 746 0.400000 +2216 796 0.400000 +2217 24 0.400000 +2217 44 0.400000 +2217 52 0.400000 +2217 78 0.400000 +2217 141 0.400000 +2217 159 0.400000 +2217 209 0.400000 +2217 252 0.400000 +2217 286 0.400000 +2217 323 0.400000 +2217 392 0.400000 +2217 435 0.400000 +2217 439 0.400000 +2217 465 0.400000 +2217 496 0.400000 +2217 531 0.400000 +2217 631 0.400000 +2217 683 0.400000 +2217 709 0.400000 +2217 721 0.400000 +2217 757 0.400000 +2217 773 0.400000 +2218 42 0.400000 +2218 59 0.400000 +2218 75 0.400000 +2218 106 0.400000 +2218 110 0.400000 +2218 134 0.400000 +2218 140 0.400000 +2218 178 0.400000 +2218 206 0.400000 +2218 243 0.400000 +2218 244 0.400000 +2218 364 0.400000 +2218 371 0.400000 +2218 381 0.400000 +2218 479 0.400000 +2218 641 0.400000 +2218 681 0.400000 +2218 729 0.400000 +2219 9 0.400000 +2219 67 0.400000 +2219 79 0.400000 +2219 88 0.400000 +2219 95 0.400000 +2219 162 0.400000 +2219 340 0.400000 +2219 459 0.400000 +2219 504 0.400000 +2219 556 0.400000 +2219 606 0.400000 +2219 763 0.400000 +2219 764 0.400000 +2219 797 0.400000 +2220 82 0.400000 +2220 115 0.400000 +2220 282 0.400000 +2220 333 0.400000 +2220 402 0.400000 +2220 473 0.400000 +2220 537 0.400000 +2220 552 0.400000 +2220 576 0.400000 +2220 593 0.400000 +2220 614 0.400000 +2220 670 0.400000 +2220 724 0.400000 +2221 35 0.400000 +2221 92 0.400000 +2221 121 0.400000 +2221 137 0.400000 +2221 199 0.400000 +2221 233 0.400000 +2221 238 0.400000 +2221 339 0.400000 +2221 411 0.400000 +2221 449 0.400000 +2221 564 0.400000 +2221 580 0.400000 +2221 614 0.400000 +2221 700 0.400000 +2221 759 0.400000 +2221 767 0.400000 +2222 19 0.400000 +2222 150 0.400000 +2222 166 0.400000 +2222 256 0.400000 +2222 258 0.400000 +2222 287 0.400000 +2222 315 0.400000 +2222 326 0.400000 +2222 392 0.400000 +2222 397 0.400000 +2222 403 0.400000 +2222 408 0.400000 +2222 470 0.400000 +2222 478 0.400000 +2222 484 0.400000 +2222 622 0.400000 +2222 656 0.400000 +2223 24 0.400000 +2223 225 0.400000 +2223 272 0.400000 +2223 273 0.400000 +2223 418 0.400000 +2223 533 0.400000 +2223 544 0.400000 +2223 560 0.400000 +2223 609 0.400000 +2223 610 0.400000 +2223 637 0.400000 +2223 710 0.400000 +2223 746 0.400000 +2223 779 0.400000 +2223 785 0.400000 +2224 8 0.400000 +2224 29 0.400000 +2224 48 0.400000 +2224 101 0.400000 +2224 128 0.400000 +2224 162 0.400000 +2224 166 0.400000 +2224 210 0.400000 +2224 349 0.400000 +2224 427 0.400000 +2224 466 0.400000 +2224 633 0.400000 +2224 739 0.400000 +2224 740 0.400000 +2224 780 0.400000 +2225 45 0.400000 +2225 89 0.400000 +2225 123 0.400000 +2225 260 0.400000 +2225 465 0.400000 +2225 470 0.400000 +2225 665 0.400000 +2225 706 0.400000 +2226 44 0.400000 +2226 48 0.400000 +2226 56 0.400000 +2226 64 0.400000 +2226 92 0.400000 +2226 178 0.400000 +2226 183 0.400000 +2226 202 0.400000 +2226 203 0.400000 +2226 219 0.400000 +2226 340 0.400000 +2226 399 0.400000 +2226 490 0.400000 +2226 499 0.400000 +2226 534 0.400000 +2226 571 0.400000 +2226 584 0.400000 +2226 590 0.400000 +2226 621 0.400000 +2226 687 0.400000 +2226 689 0.400000 +2226 713 0.400000 +2226 718 0.400000 +2226 720 0.400000 +2226 722 0.400000 +2226 749 0.400000 +2226 763 0.400000 +2227 22 0.400000 +2227 39 0.400000 +2227 75 0.400000 +2227 83 0.400000 +2227 123 0.400000 +2227 150 0.400000 +2227 204 0.400000 +2227 210 0.400000 +2227 350 0.400000 +2227 384 0.400000 +2227 439 0.400000 +2227 453 0.400000 +2227 467 0.400000 +2227 500 0.400000 +2227 513 0.400000 +2227 526 0.400000 +2227 726 0.400000 +2227 748 0.400000 +2227 785 0.400000 +2228 67 0.400000 +2228 85 0.400000 +2228 115 0.400000 +2228 119 0.400000 +2228 123 0.400000 +2228 179 0.400000 +2228 213 0.400000 +2228 241 0.400000 +2228 379 0.400000 +2228 445 0.400000 +2228 451 0.400000 +2228 469 0.400000 +2228 472 0.400000 +2228 477 0.400000 +2228 496 0.400000 +2228 686 0.400000 +2228 688 0.400000 +2228 740 0.400000 +2228 741 0.400000 +2228 771 0.400000 +2228 784 0.400000 +2229 60 0.400000 +2229 225 0.400000 +2229 276 0.400000 +2229 311 0.400000 +2229 392 0.400000 +2229 424 0.400000 +2229 436 0.400000 +2229 488 0.400000 +2229 568 0.400000 +2229 634 0.400000 +2229 668 0.400000 +2229 757 0.400000 +2230 37 0.400000 +2230 167 0.400000 +2230 278 0.400000 +2230 283 0.400000 +2230 335 0.400000 +2230 367 0.400000 +2230 390 0.400000 +2230 392 0.400000 +2230 404 0.400000 +2230 490 0.400000 +2230 558 0.400000 +2230 565 0.400000 +2230 585 0.400000 +2230 606 0.400000 +2230 626 0.400000 +2230 627 0.400000 +2230 687 0.400000 +2230 750 0.400000 +2230 771 0.400000 +2231 18 0.400000 +2231 79 0.400000 +2231 82 0.400000 +2231 107 0.400000 +2231 117 0.400000 +2231 119 0.400000 +2231 200 0.400000 +2231 218 0.400000 +2231 221 0.400000 +2231 232 0.400000 +2231 234 0.400000 +2231 303 0.400000 +2231 329 0.400000 +2231 330 0.400000 +2231 614 0.400000 +2231 618 0.400000 +2231 785 0.400000 +2232 83 0.400000 +2232 115 0.400000 +2232 121 0.400000 +2232 189 0.400000 +2232 256 0.400000 +2232 315 0.400000 +2232 342 0.400000 +2232 383 0.400000 +2232 398 0.400000 +2232 539 0.400000 +2232 540 0.400000 +2232 608 0.400000 +2232 731 0.400000 +2232 758 0.400000 +2232 776 0.400000 +2233 16 0.400000 +2233 43 0.400000 +2233 78 0.400000 +2233 123 0.400000 +2233 164 0.400000 +2233 179 0.400000 +2233 318 0.400000 +2233 342 0.400000 +2233 362 0.400000 +2233 376 0.400000 +2233 457 0.400000 +2233 459 0.400000 +2233 550 0.400000 +2233 584 0.400000 +2233 602 0.400000 +2233 631 0.400000 +2233 669 0.400000 +2233 725 0.400000 +2234 19 0.400000 +2234 38 0.400000 +2234 76 0.400000 +2234 149 0.400000 +2234 203 0.400000 +2234 341 0.400000 +2234 346 0.400000 +2234 440 0.400000 +2234 554 0.400000 +2234 562 0.400000 +2234 629 0.400000 +2234 715 0.400000 +2235 3 0.400000 +2235 31 0.400000 +2235 104 0.400000 +2235 116 0.400000 +2235 157 0.400000 +2235 215 0.400000 +2235 283 0.400000 +2235 431 0.400000 +2235 443 0.400000 +2235 453 0.400000 +2235 561 0.400000 +2235 650 0.400000 +2235 672 0.400000 +2235 715 0.400000 +2235 757 0.400000 +2236 119 0.400000 +2236 262 0.400000 +2236 279 0.400000 +2236 309 0.400000 +2236 320 0.400000 +2236 414 0.400000 +2236 451 0.400000 +2236 466 0.400000 +2236 512 0.400000 +2236 516 0.400000 +2236 529 0.400000 +2236 566 0.400000 +2236 591 0.400000 +2236 629 0.400000 +2236 673 0.400000 +2236 708 0.400000 +2236 718 0.400000 +2236 749 0.400000 +2236 794 0.400000 +2237 250 0.400000 +2237 305 0.400000 +2237 613 0.400000 +2237 623 0.400000 +2237 628 0.400000 +2237 665 0.400000 +2237 689 0.400000 +2238 237 0.400000 +2238 297 0.400000 +2238 488 0.400000 +2238 534 0.400000 +2238 559 0.400000 +2238 563 0.400000 +2238 605 0.400000 +2238 625 0.400000 +2238 640 0.400000 +2238 762 0.400000 +2238 766 0.400000 +2239 77 0.400000 +2239 105 0.400000 +2239 145 0.400000 +2239 318 0.400000 +2239 441 0.400000 +2239 470 0.400000 +2239 504 0.400000 +2239 601 0.400000 +2239 632 0.400000 +2239 643 0.400000 +2239 666 0.400000 +2239 669 0.400000 +2239 719 0.400000 +2239 761 0.400000 +2240 7 0.400000 +2240 23 0.400000 +2240 70 0.400000 +2240 182 0.400000 +2240 188 0.400000 +2240 249 0.400000 +2240 264 0.400000 +2240 276 0.400000 +2240 295 0.400000 +2240 303 0.400000 +2240 387 0.400000 +2240 391 0.400000 +2240 406 0.400000 +2240 431 0.400000 +2240 436 0.400000 +2240 501 0.400000 +2240 509 0.400000 +2240 556 0.400000 +2240 576 0.400000 +2240 589 0.400000 +2240 642 0.400000 +2240 708 0.400000 +2240 725 0.400000 +2240 750 0.400000 +2240 785 0.400000 +2241 115 0.400000 +2241 237 0.400000 +2241 382 0.400000 +2241 394 0.400000 +2241 492 0.400000 +2241 549 0.400000 +2241 615 0.400000 +2241 624 0.400000 +2241 662 0.400000 +2241 700 0.400000 +2241 713 0.400000 +2241 748 0.400000 +2242 16 0.400000 +2242 104 0.400000 +2242 207 0.400000 +2242 226 0.400000 +2242 265 0.400000 +2242 288 0.400000 +2242 301 0.400000 +2242 374 0.400000 +2242 404 0.400000 +2242 418 0.400000 +2242 480 0.400000 +2242 495 0.400000 +2242 502 0.400000 +2242 525 0.400000 +2242 613 0.400000 +2242 686 0.400000 +2242 737 0.400000 +2243 21 0.400000 +2243 44 0.400000 +2243 84 0.400000 +2243 86 0.400000 +2243 144 0.400000 +2243 213 0.400000 +2243 214 0.400000 +2243 317 0.400000 +2243 318 0.400000 +2243 330 0.400000 +2243 539 0.400000 +2243 607 0.400000 +2243 621 0.400000 +2243 704 0.400000 +2243 709 0.400000 +2244 103 0.400000 +2244 161 0.400000 +2244 274 0.400000 +2244 338 0.400000 +2244 371 0.400000 +2244 398 0.400000 +2244 429 0.400000 +2244 446 0.400000 +2244 478 0.400000 +2244 512 0.400000 +2244 651 0.400000 +2244 653 0.400000 +2244 711 0.400000 +2244 735 0.400000 +2244 761 0.400000 +2245 22 0.400000 +2245 33 0.400000 +2245 131 0.400000 +2245 266 0.400000 +2245 360 0.400000 +2245 393 0.400000 +2245 465 0.400000 +2245 475 0.400000 +2245 506 0.400000 +2245 570 0.400000 +2245 591 0.400000 +2245 618 0.400000 +2245 632 0.400000 +2245 794 0.400000 +2245 795 0.400000 +2246 1 0.400000 +2246 14 0.400000 +2246 32 0.400000 +2246 95 0.400000 +2246 213 0.400000 +2246 334 0.400000 +2246 341 0.400000 +2246 429 0.400000 +2246 455 0.400000 +2246 471 0.400000 +2246 611 0.400000 +2246 668 0.400000 +2246 678 0.400000 +2246 731 0.400000 +2246 755 0.400000 +2247 33 0.400000 +2247 50 0.400000 +2247 95 0.400000 +2247 184 0.400000 +2247 198 0.400000 +2247 347 0.400000 +2247 393 0.400000 +2247 418 0.400000 +2247 472 0.400000 +2247 501 0.400000 +2247 536 0.400000 +2247 676 0.400000 +2247 701 0.400000 +2247 797 0.400000 +2248 23 0.400000 +2248 29 0.400000 +2248 159 0.400000 +2248 205 0.400000 +2248 294 0.400000 +2248 356 0.400000 +2248 373 0.400000 +2248 404 0.400000 +2248 490 0.400000 +2248 622 0.400000 +2248 628 0.400000 +2248 682 0.400000 +2249 57 0.400000 +2249 169 0.400000 +2249 270 0.400000 +2249 304 0.400000 +2249 359 0.400000 +2249 370 0.400000 +2249 533 0.400000 +2249 559 0.400000 +2249 563 0.400000 +2249 569 0.400000 +2249 799 0.400000 +2250 24 0.400000 +2250 45 0.400000 +2250 83 0.400000 +2250 133 0.400000 +2250 136 0.400000 +2250 225 0.400000 +2250 328 0.400000 +2250 384 0.400000 +2250 426 0.400000 +2250 548 0.400000 +2250 567 0.400000 +2250 583 0.400000 +2250 602 0.400000 +2250 630 0.400000 +2250 634 0.400000 +2250 673 0.400000 +2250 706 0.400000 +2251 5 0.400000 +2251 88 0.400000 +2251 95 0.400000 +2251 96 0.400000 +2251 110 0.400000 +2251 113 0.400000 +2251 192 0.400000 +2251 228 0.400000 +2251 377 0.400000 +2251 379 0.400000 +2251 383 0.400000 +2251 451 0.400000 +2251 503 0.400000 +2251 524 0.400000 +2251 558 0.400000 +2251 633 0.400000 +2251 645 0.400000 +2251 670 0.400000 +2251 682 0.400000 +2251 692 0.400000 +2251 712 0.400000 +2252 49 0.400000 +2252 76 0.400000 +2252 140 0.400000 +2252 157 0.400000 +2252 175 0.400000 +2252 179 0.400000 +2252 194 0.400000 +2252 322 0.400000 +2252 344 0.400000 +2252 418 0.400000 +2252 465 0.400000 +2252 468 0.400000 +2252 484 0.400000 +2252 553 0.400000 +2252 567 0.400000 +2252 612 0.400000 +2252 722 0.400000 +2253 11 0.400000 +2253 69 0.400000 +2253 88 0.400000 +2253 215 0.400000 +2253 235 0.400000 +2253 251 0.400000 +2253 349 0.400000 +2253 353 0.400000 +2253 361 0.400000 +2253 403 0.400000 +2253 425 0.400000 +2253 463 0.400000 +2253 466 0.400000 +2253 530 0.400000 +2253 536 0.400000 +2253 555 0.400000 +2253 571 0.400000 +2253 590 0.400000 +2253 617 0.400000 +2253 685 0.400000 +2253 728 0.400000 +2253 789 0.400000 +2253 797 0.400000 +2254 31 0.400000 +2254 47 0.400000 +2254 86 0.400000 +2254 94 0.400000 +2254 221 0.400000 +2254 308 0.400000 +2254 314 0.400000 +2254 339 0.400000 +2254 416 0.400000 +2254 441 0.400000 +2254 501 0.400000 +2254 519 0.400000 +2254 587 0.400000 +2254 591 0.400000 +2254 614 0.400000 +2254 671 0.400000 +2254 776 0.400000 +2254 800 0.400000 +2255 15 0.400000 +2255 43 0.400000 +2255 107 0.400000 +2255 124 0.400000 +2255 207 0.400000 +2255 222 0.400000 +2255 224 0.400000 +2255 285 0.400000 +2255 307 0.400000 +2255 332 0.400000 +2255 334 0.400000 +2255 353 0.400000 +2255 436 0.400000 +2255 442 0.400000 +2255 443 0.400000 +2255 455 0.400000 +2255 456 0.400000 +2255 470 0.400000 +2255 535 0.400000 +2255 558 0.400000 +2255 602 0.400000 +2255 665 0.400000 +2255 668 0.400000 +2255 706 0.400000 +2255 713 0.400000 +2255 752 0.400000 +2256 26 0.400000 +2256 42 0.400000 +2256 60 0.400000 +2256 173 0.400000 +2256 246 0.400000 +2256 357 0.400000 +2256 505 0.400000 +2256 517 0.400000 +2256 601 0.400000 +2256 615 0.400000 +2256 645 0.400000 +2256 666 0.400000 +2256 710 0.400000 +2256 743 0.400000 +2256 786 0.400000 +2257 91 0.400000 +2257 132 0.400000 +2257 176 0.400000 +2257 205 0.400000 +2257 239 0.400000 +2257 301 0.400000 +2257 469 0.400000 +2257 506 0.400000 +2257 530 0.400000 +2257 618 0.400000 +2257 771 0.400000 +2258 73 0.400000 +2258 216 0.400000 +2258 443 0.400000 +2258 561 0.400000 +2258 640 0.400000 +2258 654 0.400000 +2258 678 0.400000 +2259 25 0.400000 +2259 80 0.400000 +2259 130 0.400000 +2259 176 0.400000 +2259 193 0.400000 +2259 299 0.400000 +2259 345 0.400000 +2259 388 0.400000 +2259 407 0.400000 +2259 419 0.400000 +2259 427 0.400000 +2259 528 0.400000 +2259 556 0.400000 +2259 749 0.400000 +2259 772 0.400000 +2259 785 0.400000 +2260 20 0.400000 +2260 28 0.400000 +2260 87 0.400000 +2260 105 0.400000 +2260 146 0.400000 +2260 187 0.400000 +2260 190 0.400000 +2260 194 0.400000 +2260 237 0.400000 +2260 273 0.400000 +2260 350 0.400000 +2260 388 0.400000 +2260 401 0.400000 +2260 405 0.400000 +2260 456 0.400000 +2260 512 0.400000 +2260 525 0.400000 +2260 572 0.400000 +2260 599 0.400000 +2260 619 0.400000 +2260 746 0.400000 +2260 752 0.400000 +2261 65 0.400000 +2261 70 0.400000 +2261 72 0.400000 +2261 83 0.400000 +2261 109 0.400000 +2261 122 0.400000 +2261 143 0.400000 +2261 152 0.400000 +2261 156 0.400000 +2261 272 0.400000 +2261 382 0.400000 +2261 507 0.400000 +2261 592 0.400000 +2261 669 0.400000 +2261 730 0.400000 +2261 769 0.400000 +2262 25 0.400000 +2262 92 0.400000 +2262 110 0.400000 +2262 174 0.400000 +2262 257 0.400000 +2262 291 0.400000 +2262 339 0.400000 +2262 361 0.400000 +2262 400 0.400000 +2262 405 0.400000 +2262 473 0.400000 +2262 534 0.400000 +2262 599 0.400000 +2262 638 0.400000 +2262 681 0.400000 +2262 769 0.400000 +2262 782 0.400000 +2262 785 0.400000 +2263 56 0.400000 +2263 147 0.400000 +2263 162 0.400000 +2263 239 0.400000 +2263 336 0.400000 +2263 406 0.400000 +2263 453 0.400000 +2263 467 0.400000 +2263 480 0.400000 +2263 588 0.400000 +2263 600 0.400000 +2263 632 0.400000 +2263 661 0.400000 +2263 767 0.400000 +2264 27 0.400000 +2264 96 0.400000 +2264 97 0.400000 +2264 104 0.400000 +2264 159 0.400000 +2264 165 0.400000 +2264 179 0.400000 +2264 278 0.400000 +2264 279 0.400000 +2264 314 0.400000 +2264 317 0.400000 +2264 332 0.400000 +2264 333 0.400000 +2264 366 0.400000 +2264 370 0.400000 +2264 515 0.400000 +2264 604 0.400000 +2264 682 0.400000 +2264 767 0.400000 +2264 796 0.400000 +2265 56 0.400000 +2265 99 0.400000 +2265 271 0.400000 +2265 320 0.400000 +2265 374 0.400000 +2265 410 0.400000 +2265 416 0.400000 +2265 452 0.400000 +2265 591 0.400000 +2265 793 0.400000 +2266 87 0.400000 +2266 249 0.400000 +2266 456 0.400000 +2266 510 0.400000 +2266 521 0.400000 +2266 588 0.400000 +2266 682 0.400000 +2266 689 0.400000 +2266 703 0.400000 +2266 722 0.400000 +2266 765 0.400000 +2267 60 0.400000 +2267 124 0.400000 +2267 133 0.400000 +2267 157 0.400000 +2267 159 0.400000 +2267 246 0.400000 +2267 282 0.400000 +2267 354 0.400000 +2267 460 0.400000 +2267 514 0.400000 +2267 540 0.400000 +2267 598 0.400000 +2267 603 0.400000 +2267 627 0.400000 +2267 634 0.400000 +2267 644 0.400000 +2267 647 0.400000 +2267 656 0.400000 +2267 703 0.400000 +2267 706 0.400000 +2268 53 0.400000 +2268 99 0.400000 +2268 115 0.400000 +2268 154 0.400000 +2268 161 0.400000 +2268 205 0.400000 +2268 209 0.400000 +2268 260 0.400000 +2268 349 0.400000 +2268 449 0.400000 +2268 522 0.400000 +2268 533 0.400000 +2268 558 0.400000 +2268 576 0.400000 +2268 685 0.400000 +2268 737 0.400000 +2268 770 0.400000 +2269 92 0.400000 +2269 135 0.400000 +2269 139 0.400000 +2269 256 0.400000 +2269 290 0.400000 +2269 353 0.400000 +2269 462 0.400000 +2269 539 0.400000 +2269 619 0.400000 +2269 631 0.400000 +2269 662 0.400000 +2269 692 0.400000 +2269 785 0.400000 +2270 21 0.400000 +2270 25 0.400000 +2270 147 0.400000 +2270 155 0.400000 +2270 266 0.400000 +2270 345 0.400000 +2270 435 0.400000 +2270 445 0.400000 +2270 485 0.400000 +2270 522 0.400000 +2270 531 0.400000 +2270 533 0.400000 +2270 544 0.400000 +2270 562 0.400000 +2270 565 0.400000 +2270 568 0.400000 +2270 588 0.400000 +2270 636 0.400000 +2270 655 0.400000 +2270 692 0.400000 +2270 747 0.400000 +2270 789 0.400000 +2271 22 0.400000 +2271 24 0.400000 +2271 122 0.400000 +2271 134 0.400000 +2271 139 0.400000 +2271 141 0.400000 +2271 148 0.400000 +2271 180 0.400000 +2271 273 0.400000 +2271 299 0.400000 +2271 339 0.400000 +2271 396 0.400000 +2271 420 0.400000 +2271 459 0.400000 +2271 463 0.400000 +2271 466 0.400000 +2271 514 0.400000 +2271 588 0.400000 +2271 625 0.400000 +2271 696 0.400000 +2271 736 0.400000 +2271 741 0.400000 +2271 747 0.400000 +2271 754 0.400000 +2272 1 0.400000 +2272 8 0.400000 +2272 182 0.400000 +2272 287 0.400000 +2272 294 0.400000 +2272 303 0.400000 +2272 333 0.400000 +2272 337 0.400000 +2272 349 0.400000 +2272 491 0.400000 +2272 499 0.400000 +2272 550 0.400000 +2272 577 0.400000 +2272 660 0.400000 +2272 779 0.400000 +2273 46 0.400000 +2273 66 0.400000 +2273 217 0.400000 +2273 231 0.400000 +2273 314 0.400000 +2273 316 0.400000 +2273 348 0.400000 +2273 407 0.400000 +2273 424 0.400000 +2273 428 0.400000 +2273 471 0.400000 +2273 548 0.400000 +2273 565 0.400000 +2273 576 0.400000 +2273 634 0.400000 +2273 645 0.400000 +2273 647 0.400000 +2274 31 0.400000 +2274 79 0.400000 +2274 88 0.400000 +2274 188 0.400000 +2274 206 0.400000 +2274 217 0.400000 +2274 297 0.400000 +2274 308 0.400000 +2274 392 0.400000 +2274 492 0.400000 +2274 518 0.400000 +2274 535 0.400000 +2274 557 0.400000 +2274 584 0.400000 +2274 591 0.400000 +2274 614 0.400000 +2274 693 0.400000 +2274 726 0.400000 +2274 731 0.400000 +2275 11 0.400000 +2275 52 0.400000 +2275 53 0.400000 +2275 257 0.400000 +2275 288 0.400000 +2275 308 0.400000 +2275 318 0.400000 +2275 338 0.400000 +2275 373 0.400000 +2275 383 0.400000 +2275 456 0.400000 +2275 537 0.400000 +2275 542 0.400000 +2275 543 0.400000 +2275 608 0.400000 +2275 629 0.400000 +2275 691 0.400000 +2275 730 0.400000 +2275 760 0.400000 +2275 780 0.400000 +2276 13 0.400000 +2276 16 0.400000 +2276 35 0.400000 +2276 108 0.400000 +2276 114 0.400000 +2276 151 0.400000 +2276 181 0.400000 +2276 260 0.400000 +2276 351 0.400000 +2276 407 0.400000 +2276 786 0.400000 +2277 152 0.400000 +2277 158 0.400000 +2277 186 0.400000 +2277 202 0.400000 +2277 218 0.400000 +2277 249 0.400000 +2277 295 0.400000 +2277 398 0.400000 +2277 460 0.400000 +2277 523 0.400000 +2277 538 0.400000 +2277 598 0.400000 +2277 773 0.400000 +2277 798 0.400000 +2278 48 0.400000 +2278 49 0.400000 +2278 119 0.400000 +2278 191 0.400000 +2278 195 0.400000 +2278 207 0.400000 +2278 327 0.400000 +2278 362 0.400000 +2278 403 0.400000 +2278 408 0.400000 +2278 412 0.400000 +2278 533 0.400000 +2278 654 0.400000 +2278 758 0.400000 +2279 138 0.400000 +2279 334 0.400000 +2279 354 0.400000 +2279 366 0.400000 +2279 374 0.400000 +2279 381 0.400000 +2279 568 0.400000 +2279 586 0.400000 +2279 594 0.400000 +2279 599 0.400000 +2279 607 0.400000 +2279 659 0.400000 +2280 89 0.400000 +2280 155 0.400000 +2280 166 0.400000 +2280 194 0.400000 +2280 208 0.400000 +2280 219 0.400000 +2280 301 0.400000 +2280 310 0.400000 +2280 326 0.400000 +2280 377 0.400000 +2280 388 0.400000 +2280 459 0.400000 +2280 475 0.400000 +2280 557 0.400000 +2280 585 0.400000 +2280 644 0.400000 +2280 667 0.400000 +2280 694 0.400000 +2280 720 0.400000 +2280 765 0.400000 +2280 794 0.400000 +2281 40 0.400000 +2281 51 0.400000 +2281 171 0.400000 +2281 191 0.400000 +2281 226 0.400000 +2281 313 0.400000 +2281 325 0.400000 +2281 336 0.400000 +2281 352 0.400000 +2281 547 0.400000 +2281 559 0.400000 +2281 620 0.400000 +2281 624 0.400000 +2281 633 0.400000 +2281 648 0.400000 +2281 712 0.400000 +2281 791 0.400000 +2282 37 0.400000 +2282 42 0.400000 +2282 63 0.400000 +2282 94 0.400000 +2282 110 0.400000 +2282 241 0.400000 +2282 242 0.400000 +2282 321 0.400000 +2282 465 0.400000 +2282 567 0.400000 +2282 573 0.400000 +2282 622 0.400000 +2282 704 0.400000 +2283 12 0.400000 +2283 142 0.400000 +2283 145 0.400000 +2283 168 0.400000 +2283 258 0.400000 +2283 263 0.400000 +2283 276 0.400000 +2283 310 0.400000 +2283 325 0.400000 +2283 482 0.400000 +2283 486 0.400000 +2283 495 0.400000 +2283 516 0.400000 +2283 542 0.400000 +2283 552 0.400000 +2283 668 0.400000 +2284 30 0.400000 +2284 60 0.400000 +2284 146 0.400000 +2284 158 0.400000 +2284 163 0.400000 +2284 179 0.400000 +2284 195 0.400000 +2284 267 0.400000 +2284 308 0.400000 +2284 312 0.400000 +2284 376 0.400000 +2284 393 0.400000 +2284 451 0.400000 +2284 608 0.400000 +2284 684 0.400000 +2284 769 0.400000 +2284 797 0.400000 +2285 1 0.400000 +2285 119 0.400000 +2285 172 0.400000 +2285 182 0.400000 +2285 195 0.400000 +2285 271 0.400000 +2285 287 0.400000 +2285 302 0.400000 +2285 432 0.400000 +2285 474 0.400000 +2285 497 0.400000 +2285 520 0.400000 +2285 525 0.400000 +2285 616 0.400000 +2285 639 0.400000 +2285 691 0.400000 +2285 737 0.400000 +2285 772 0.400000 +2286 13 0.400000 +2286 17 0.400000 +2286 65 0.400000 +2286 116 0.400000 +2286 134 0.400000 +2286 236 0.400000 +2286 288 0.400000 +2286 372 0.400000 +2286 397 0.400000 +2286 419 0.400000 +2286 459 0.400000 +2286 504 0.400000 +2286 549 0.400000 +2286 600 0.400000 +2286 607 0.400000 +2286 737 0.400000 +2287 6 0.400000 +2287 13 0.400000 +2287 35 0.400000 +2287 70 0.400000 +2287 131 0.400000 +2287 151 0.400000 +2287 205 0.400000 +2287 218 0.400000 +2287 308 0.400000 +2287 330 0.400000 +2287 358 0.400000 +2287 381 0.400000 +2287 460 0.400000 +2287 495 0.400000 +2287 537 0.400000 +2287 618 0.400000 +2287 716 0.400000 +2287 721 0.400000 +2287 732 0.400000 +2287 737 0.400000 +2287 762 0.400000 +2287 786 0.400000 +2288 80 0.400000 +2288 338 0.400000 +2288 357 0.400000 +2288 467 0.400000 +2288 488 0.400000 +2288 510 0.400000 +2288 538 0.400000 +2288 647 0.400000 +2288 703 0.400000 +2288 735 0.400000 +2288 746 0.400000 +2289 40 0.400000 +2289 59 0.400000 +2289 207 0.400000 +2289 255 0.400000 +2289 261 0.400000 +2289 298 0.400000 +2289 334 0.400000 +2289 372 0.400000 +2289 408 0.400000 +2289 441 0.400000 +2289 462 0.400000 +2289 558 0.400000 +2289 601 0.400000 +2290 191 0.400000 +2290 236 0.400000 +2290 310 0.400000 +2290 311 0.400000 +2290 400 0.400000 +2290 498 0.400000 +2290 502 0.400000 +2290 544 0.400000 +2290 548 0.400000 +2290 578 0.400000 +2290 670 0.400000 +2290 710 0.400000 +2291 43 0.400000 +2291 172 0.400000 +2291 209 0.400000 +2291 273 0.400000 +2291 372 0.400000 +2291 394 0.400000 +2291 435 0.400000 +2291 459 0.400000 +2291 462 0.400000 +2291 531 0.400000 +2291 532 0.400000 +2291 552 0.400000 +2291 622 0.400000 +2291 657 0.400000 +2291 747 0.400000 +2291 779 0.400000 +2292 1 0.400000 +2292 2 0.400000 +2292 82 0.400000 +2292 112 0.400000 +2292 148 0.400000 +2292 249 0.400000 +2292 275 0.400000 +2292 345 0.400000 +2292 352 0.400000 +2292 362 0.400000 +2292 417 0.400000 +2292 500 0.400000 +2292 517 0.400000 +2292 554 0.400000 +2292 563 0.400000 +2292 643 0.400000 +2292 645 0.400000 +2292 730 0.400000 +2292 744 0.400000 +2292 772 0.400000 +2292 778 0.400000 +2292 784 0.400000 +2293 46 0.400000 +2293 157 0.400000 +2293 282 0.400000 +2293 290 0.400000 +2293 380 0.400000 +2293 383 0.400000 +2293 400 0.400000 +2293 446 0.400000 +2293 464 0.400000 +2293 521 0.400000 +2293 545 0.400000 +2293 582 0.400000 +2293 586 0.400000 +2293 626 0.400000 +2293 674 0.400000 +2293 677 0.400000 +2293 735 0.400000 +2293 776 0.400000 +2294 59 0.400000 +2294 103 0.400000 +2294 121 0.400000 +2294 288 0.400000 +2294 300 0.400000 +2294 317 0.400000 +2294 403 0.400000 +2294 425 0.400000 +2294 451 0.400000 +2294 522 0.400000 +2294 534 0.400000 +2294 657 0.400000 +2294 713 0.400000 +2294 740 0.400000 +2295 98 0.400000 +2295 177 0.400000 +2295 193 0.400000 +2295 198 0.400000 +2295 209 0.400000 +2295 361 0.400000 +2295 363 0.400000 +2295 390 0.400000 +2295 480 0.400000 +2295 494 0.400000 +2295 526 0.400000 +2295 538 0.400000 +2295 612 0.400000 +2295 614 0.400000 +2295 652 0.400000 +2295 721 0.400000 +2295 726 0.400000 +2295 749 0.400000 +2296 42 0.400000 +2296 104 0.400000 +2296 151 0.400000 +2296 216 0.400000 +2296 221 0.400000 +2296 264 0.400000 +2296 322 0.400000 +2296 389 0.400000 +2296 402 0.400000 +2296 411 0.400000 +2296 423 0.400000 +2296 435 0.400000 +2296 516 0.400000 +2296 561 0.400000 +2296 596 0.400000 +2296 608 0.400000 +2296 623 0.400000 +2296 631 0.400000 +2296 717 0.400000 +2297 7 0.400000 +2297 10 0.400000 +2297 69 0.400000 +2297 154 0.400000 +2297 203 0.400000 +2297 243 0.400000 +2297 290 0.400000 +2297 312 0.400000 +2297 327 0.400000 +2297 362 0.400000 +2297 406 0.400000 +2297 497 0.400000 +2297 542 0.400000 +2297 567 0.400000 +2297 615 0.400000 +2297 619 0.400000 +2297 638 0.400000 +2297 659 0.400000 +2297 695 0.400000 +2297 763 0.400000 +2298 201 0.400000 +2298 245 0.400000 +2298 264 0.400000 +2298 340 0.400000 +2298 370 0.400000 +2298 445 0.400000 +2298 451 0.400000 +2298 495 0.400000 +2298 496 0.400000 +2298 502 0.400000 +2298 571 0.400000 +2298 575 0.400000 +2298 609 0.400000 +2298 618 0.400000 +2298 662 0.400000 +2298 673 0.400000 +2298 778 0.400000 +2299 13 0.400000 +2299 101 0.400000 +2299 153 0.400000 +2299 167 0.400000 +2299 174 0.400000 +2299 181 0.400000 +2299 209 0.400000 +2299 285 0.400000 +2299 315 0.400000 +2299 340 0.400000 +2299 377 0.400000 +2299 430 0.400000 +2299 441 0.400000 +2299 469 0.400000 +2299 507 0.400000 +2299 571 0.400000 +2299 637 0.400000 +2299 728 0.400000 +2300 58 0.400000 +2300 164 0.400000 +2300 168 0.400000 +2300 291 0.400000 +2300 444 0.400000 +2300 496 0.400000 +2300 512 0.400000 +2300 530 0.400000 +2300 547 0.400000 +2300 549 0.400000 +2300 566 0.400000 +2300 627 0.400000 +2300 664 0.400000 +2300 676 0.400000 +2300 713 0.400000 +2300 731 0.400000 +2300 786 0.400000 +2301 7 0.400000 +2301 29 0.400000 +2301 40 0.400000 +2301 145 0.400000 +2301 168 0.400000 +2301 175 0.400000 +2301 211 0.400000 +2301 227 0.400000 +2301 327 0.400000 +2301 402 0.400000 +2301 474 0.400000 +2301 490 0.400000 +2301 531 0.400000 +2301 572 0.400000 +2301 580 0.400000 +2301 669 0.400000 +2301 707 0.400000 +2301 711 0.400000 +2301 768 0.400000 +2302 56 0.400000 +2302 93 0.400000 +2302 232 0.400000 +2302 253 0.400000 +2302 281 0.400000 +2302 285 0.400000 +2302 472 0.400000 +2302 491 0.400000 +2302 558 0.400000 +2302 722 0.400000 +2302 770 0.400000 +2302 777 0.400000 +2302 786 0.400000 +2302 795 0.400000 +2303 25 0.400000 +2303 54 0.400000 +2303 71 0.400000 +2303 146 0.400000 +2303 243 0.400000 +2303 282 0.400000 +2303 299 0.400000 +2303 306 0.400000 +2303 330 0.400000 +2303 352 0.400000 +2303 428 0.400000 +2303 472 0.400000 +2303 498 0.400000 +2303 524 0.400000 +2303 558 0.400000 +2303 587 0.400000 +2303 606 0.400000 +2303 611 0.400000 +2303 627 0.400000 +2303 684 0.400000 +2304 2 0.400000 +2304 29 0.400000 +2304 102 0.400000 +2304 237 0.400000 +2304 331 0.400000 +2304 336 0.400000 +2304 461 0.400000 +2304 477 0.400000 +2304 481 0.400000 +2304 529 0.400000 +2304 597 0.400000 +2304 664 0.400000 +2304 679 0.400000 +2304 689 0.400000 +2305 333 0.400000 +2305 353 0.400000 +2305 424 0.400000 +2305 507 0.400000 +2305 523 0.400000 +2305 780 0.400000 +2305 785 0.400000 +2306 36 0.400000 +2306 61 0.400000 +2306 80 0.400000 +2306 93 0.400000 +2306 163 0.400000 +2306 228 0.400000 +2306 229 0.400000 +2306 240 0.400000 +2306 251 0.400000 +2306 288 0.400000 +2306 320 0.400000 +2306 344 0.400000 +2306 377 0.400000 +2306 389 0.400000 +2306 419 0.400000 +2306 435 0.400000 +2306 475 0.400000 +2306 539 0.400000 +2306 546 0.400000 +2306 588 0.400000 +2306 596 0.400000 +2306 638 0.400000 +2306 775 0.400000 +2307 59 0.400000 +2307 100 0.400000 +2307 115 0.400000 +2307 142 0.400000 +2307 255 0.400000 +2307 336 0.400000 +2307 394 0.400000 +2307 447 0.400000 +2307 458 0.400000 +2307 479 0.400000 +2307 504 0.400000 +2307 588 0.400000 +2308 35 0.400000 +2308 40 0.400000 +2308 66 0.400000 +2308 84 0.400000 +2308 101 0.400000 +2308 132 0.400000 +2308 154 0.400000 +2308 206 0.400000 +2308 218 0.400000 +2308 313 0.400000 +2308 331 0.400000 +2308 352 0.400000 +2308 388 0.400000 +2308 455 0.400000 +2308 464 0.400000 +2308 468 0.400000 +2308 510 0.400000 +2308 511 0.400000 +2308 519 0.400000 +2308 520 0.400000 +2308 546 0.400000 +2308 582 0.400000 +2308 618 0.400000 +2308 693 0.400000 +2308 706 0.400000 +2308 725 0.400000 +2309 27 0.400000 +2309 123 0.400000 +2309 124 0.400000 +2309 312 0.400000 +2309 363 0.400000 +2309 369 0.400000 +2309 412 0.400000 +2309 413 0.400000 +2309 447 0.400000 +2309 468 0.400000 +2309 474 0.400000 +2309 512 0.400000 +2309 622 0.400000 +2309 624 0.400000 +2309 657 0.400000 +2309 729 0.400000 +2310 45 0.400000 +2310 112 0.400000 +2310 136 0.400000 +2310 170 0.400000 +2310 233 0.400000 +2310 401 0.400000 +2310 430 0.400000 +2310 471 0.400000 +2310 546 0.400000 +2310 589 0.400000 +2310 608 0.400000 +2310 621 0.400000 +2311 25 0.400000 +2311 59 0.400000 +2311 104 0.400000 +2311 154 0.400000 +2311 215 0.400000 +2311 251 0.400000 +2311 260 0.400000 +2311 326 0.400000 +2311 381 0.400000 +2311 413 0.400000 +2311 512 0.400000 +2311 552 0.400000 +2311 692 0.400000 +2311 772 0.400000 +2312 3 0.400000 +2312 42 0.400000 +2312 119 0.400000 +2312 146 0.400000 +2312 147 0.400000 +2312 159 0.400000 +2312 308 0.400000 +2312 309 0.400000 +2312 372 0.400000 +2312 395 0.400000 +2312 459 0.400000 +2312 505 0.400000 +2312 519 0.400000 +2312 590 0.400000 +2312 620 0.400000 +2312 702 0.400000 +2313 49 0.400000 +2313 98 0.400000 +2313 105 0.400000 +2313 113 0.400000 +2313 144 0.400000 +2313 228 0.400000 +2313 412 0.400000 +2313 541 0.400000 +2313 559 0.400000 +2313 648 0.400000 +2313 736 0.400000 +2313 781 0.400000 +2313 799 0.400000 +2314 20 0.400000 +2314 47 0.400000 +2314 144 0.400000 +2314 184 0.400000 +2314 214 0.400000 +2314 261 0.400000 +2314 292 0.400000 +2314 319 0.400000 +2314 323 0.400000 +2314 395 0.400000 +2314 420 0.400000 +2314 425 0.400000 +2314 431 0.400000 +2314 459 0.400000 +2314 473 0.400000 +2314 517 0.400000 +2314 558 0.400000 +2314 636 0.400000 +2314 787 0.400000 +2315 40 0.400000 +2315 117 0.400000 +2315 138 0.400000 +2315 168 0.400000 +2315 176 0.400000 +2315 247 0.400000 +2315 303 0.400000 +2315 381 0.400000 +2315 485 0.400000 +2315 523 0.400000 +2315 580 0.400000 +2315 669 0.400000 +2315 789 0.400000 +2316 19 0.400000 +2316 22 0.400000 +2316 119 0.400000 +2316 121 0.400000 +2316 125 0.400000 +2316 127 0.400000 +2316 250 0.400000 +2316 352 0.400000 +2316 353 0.400000 +2316 373 0.400000 +2316 439 0.400000 +2316 467 0.400000 +2316 486 0.400000 +2316 489 0.400000 +2316 540 0.400000 +2316 571 0.400000 +2316 581 0.400000 +2316 651 0.400000 +2316 718 0.400000 +2317 245 0.400000 +2317 301 0.400000 +2317 326 0.400000 +2317 417 0.400000 +2317 443 0.400000 +2317 542 0.400000 +2317 639 0.400000 +2317 645 0.400000 +2317 730 0.400000 +2318 17 0.400000 +2318 61 0.400000 +2318 71 0.400000 +2318 174 0.400000 +2318 220 0.400000 +2318 255 0.400000 +2318 305 0.400000 +2318 336 0.400000 +2318 360 0.400000 +2318 470 0.400000 +2318 524 0.400000 +2318 540 0.400000 +2318 554 0.400000 +2318 556 0.400000 +2318 597 0.400000 +2318 791 0.400000 +2318 797 0.400000 +2319 57 0.400000 +2319 83 0.400000 +2319 121 0.400000 +2319 314 0.400000 +2319 319 0.400000 +2319 338 0.400000 +2319 353 0.400000 +2319 432 0.400000 +2319 588 0.400000 +2319 655 0.400000 +2319 674 0.400000 +2319 679 0.400000 +2319 685 0.400000 +2319 759 0.400000 +2320 31 0.400000 +2320 73 0.400000 +2320 92 0.400000 +2320 150 0.400000 +2320 193 0.400000 +2320 275 0.400000 +2320 316 0.400000 +2320 322 0.400000 +2320 372 0.400000 +2320 376 0.400000 +2320 466 0.400000 +2320 559 0.400000 +2320 575 0.400000 +2320 589 0.400000 +2320 693 0.400000 +2320 753 0.400000 +2320 762 0.400000 +2321 14 0.400000 +2321 111 0.400000 +2321 279 0.400000 +2321 383 0.400000 +2321 449 0.400000 +2321 474 0.400000 +2321 524 0.400000 +2321 577 0.400000 +2321 628 0.400000 +2321 711 0.400000 +2321 769 0.400000 +2322 9 0.400000 +2322 46 0.400000 +2322 88 0.400000 +2322 94 0.400000 +2322 114 0.400000 +2322 119 0.400000 +2322 161 0.400000 +2322 321 0.400000 +2322 404 0.400000 +2322 405 0.400000 +2322 461 0.400000 +2322 512 0.400000 +2322 624 0.400000 +2322 666 0.400000 +2322 670 0.400000 +2322 681 0.400000 +2322 739 0.400000 +2322 771 0.400000 +2323 4 0.400000 +2323 21 0.400000 +2323 49 0.400000 +2323 194 0.400000 +2323 208 0.400000 +2323 253 0.400000 +2323 305 0.400000 +2323 324 0.400000 +2323 333 0.400000 +2323 335 0.400000 +2323 358 0.400000 +2323 442 0.400000 +2323 456 0.400000 +2323 518 0.400000 +2323 531 0.400000 +2323 773 0.400000 +2324 47 0.400000 +2324 58 0.400000 +2324 59 0.400000 +2324 101 0.400000 +2324 128 0.400000 +2324 139 0.400000 +2324 344 0.400000 +2324 393 0.400000 +2324 417 0.400000 +2324 476 0.400000 +2324 515 0.400000 +2324 534 0.400000 +2324 603 0.400000 +2324 656 0.400000 +2324 729 0.400000 +2324 760 0.400000 +2325 21 0.400000 +2325 37 0.400000 +2325 57 0.400000 +2325 160 0.400000 +2325 184 0.400000 +2325 286 0.400000 +2325 349 0.400000 +2325 354 0.400000 +2325 481 0.400000 +2325 544 0.400000 +2325 608 0.400000 +2325 644 0.400000 +2325 687 0.400000 +2325 691 0.400000 +2325 738 0.400000 +2325 763 0.400000 +2325 798 0.400000 +2326 175 0.400000 +2326 220 0.400000 +2326 258 0.400000 +2326 264 0.400000 +2326 310 0.400000 +2326 343 0.400000 +2326 391 0.400000 +2326 398 0.400000 +2326 455 0.400000 +2326 493 0.400000 +2326 676 0.400000 +2326 714 0.400000 +2327 20 0.400000 +2327 36 0.400000 +2327 68 0.400000 +2327 171 0.400000 +2327 240 0.400000 +2327 347 0.400000 +2327 354 0.400000 +2327 358 0.400000 +2327 360 0.400000 +2327 371 0.400000 +2327 384 0.400000 +2327 392 0.400000 +2327 477 0.400000 +2327 592 0.400000 +2327 603 0.400000 +2327 620 0.400000 +2327 640 0.400000 +2327 647 0.400000 +2327 726 0.400000 +2327 775 0.400000 +2328 3 0.400000 +2328 8 0.400000 +2328 69 0.400000 +2328 77 0.400000 +2328 147 0.400000 +2328 153 0.400000 +2328 162 0.400000 +2328 179 0.400000 +2328 202 0.400000 +2328 322 0.400000 +2328 451 0.400000 +2328 468 0.400000 +2328 479 0.400000 +2328 495 0.400000 +2328 584 0.400000 +2328 621 0.400000 +2328 637 0.400000 +2328 647 0.400000 +2328 651 0.400000 +2328 683 0.400000 +2328 687 0.400000 +2328 701 0.400000 +2328 712 0.400000 +2328 769 0.400000 +2328 799 0.400000 +2329 8 0.400000 +2329 14 0.400000 +2329 40 0.400000 +2329 106 0.400000 +2329 115 0.400000 +2329 154 0.400000 +2329 168 0.400000 +2329 176 0.400000 +2329 185 0.400000 +2329 208 0.400000 +2329 389 0.400000 +2329 431 0.400000 +2329 469 0.400000 +2329 532 0.400000 +2329 533 0.400000 +2329 682 0.400000 +2329 703 0.400000 +2330 66 0.400000 +2330 67 0.400000 +2330 77 0.400000 +2330 119 0.400000 +2330 195 0.400000 +2330 232 0.400000 +2330 288 0.400000 +2330 289 0.400000 +2330 335 0.400000 +2330 345 0.400000 +2330 370 0.400000 +2330 383 0.400000 +2330 471 0.400000 +2330 531 0.400000 +2330 565 0.400000 +2330 579 0.400000 +2330 600 0.400000 +2330 628 0.400000 +2330 664 0.400000 +2330 682 0.400000 +2330 791 0.400000 +2331 94 0.400000 +2331 245 0.400000 +2331 253 0.400000 +2331 276 0.400000 +2331 277 0.400000 +2331 543 0.400000 +2331 590 0.400000 +2331 605 0.400000 +2331 708 0.400000 +2331 743 0.400000 +2332 6 0.400000 +2332 99 0.400000 +2332 152 0.400000 +2332 242 0.400000 +2332 333 0.400000 +2332 430 0.400000 +2332 455 0.400000 +2332 532 0.400000 +2332 585 0.400000 +2332 687 0.400000 +2332 728 0.400000 +2332 783 0.400000 +2332 787 0.400000 +2333 1 0.400000 +2333 24 0.400000 +2333 33 0.400000 +2333 45 0.400000 +2333 69 0.400000 +2333 95 0.400000 +2333 98 0.400000 +2333 144 0.400000 +2333 192 0.400000 +2333 193 0.400000 +2333 318 0.400000 +2333 319 0.400000 +2333 331 0.400000 +2333 369 0.400000 +2333 371 0.400000 +2333 400 0.400000 +2333 496 0.400000 +2333 505 0.400000 +2333 614 0.400000 +2333 662 0.400000 +2333 676 0.400000 +2333 678 0.400000 +2333 728 0.400000 +2333 755 0.400000 +2333 769 0.400000 +2334 84 0.400000 +2334 171 0.400000 +2334 289 0.400000 +2334 304 0.400000 +2334 344 0.400000 +2334 394 0.400000 +2334 435 0.400000 +2334 450 0.400000 +2334 453 0.400000 +2334 532 0.400000 +2334 578 0.400000 +2334 579 0.400000 +2334 608 0.400000 +2334 614 0.400000 +2334 676 0.400000 +2334 683 0.400000 +2334 736 0.400000 +2334 762 0.400000 +2335 22 0.400000 +2335 40 0.400000 +2335 265 0.400000 +2335 330 0.400000 +2335 355 0.400000 +2335 378 0.400000 +2335 403 0.400000 +2335 512 0.400000 +2335 515 0.400000 +2335 630 0.400000 +2335 778 0.400000 +2335 784 0.400000 +2336 14 0.400000 +2336 28 0.400000 +2336 147 0.400000 +2336 196 0.400000 +2336 345 0.400000 +2336 435 0.400000 +2336 515 0.400000 +2336 606 0.400000 +2336 624 0.400000 +2336 688 0.400000 +2336 699 0.400000 +2336 765 0.400000 +2337 27 0.400000 +2337 194 0.400000 +2337 269 0.400000 +2337 376 0.400000 +2337 510 0.400000 +2337 568 0.400000 +2337 639 0.400000 +2337 667 0.400000 +2337 710 0.400000 +2338 30 0.400000 +2338 49 0.400000 +2338 52 0.400000 +2338 56 0.400000 +2338 60 0.400000 +2338 83 0.400000 +2338 113 0.400000 +2338 135 0.400000 +2338 159 0.400000 +2338 237 0.400000 +2338 243 0.400000 +2338 324 0.400000 +2338 461 0.400000 +2338 482 0.400000 +2338 541 0.400000 +2338 638 0.400000 +2338 669 0.400000 +2338 731 0.400000 +2339 71 0.400000 +2339 85 0.400000 +2339 112 0.400000 +2339 118 0.400000 +2339 140 0.400000 +2339 155 0.400000 +2339 237 0.400000 +2339 249 0.400000 +2339 270 0.400000 +2339 368 0.400000 +2339 380 0.400000 +2339 423 0.400000 +2339 470 0.400000 +2339 473 0.400000 +2339 526 0.400000 +2339 527 0.400000 +2339 547 0.400000 +2339 689 0.400000 +2339 724 0.400000 +2339 772 0.400000 +2340 7 0.400000 +2340 36 0.400000 +2340 51 0.400000 +2340 90 0.400000 +2340 274 0.400000 +2340 337 0.400000 +2340 413 0.400000 +2340 610 0.400000 +2340 768 0.400000 +2341 13 0.400000 +2341 28 0.400000 +2341 86 0.400000 +2341 259 0.400000 +2341 269 0.400000 +2341 276 0.400000 +2341 345 0.400000 +2341 377 0.400000 +2341 464 0.400000 +2341 470 0.400000 +2341 521 0.400000 +2341 564 0.400000 +2341 715 0.400000 +2341 725 0.400000 +2341 763 0.400000 +2341 769 0.400000 +2342 8 0.400000 +2342 18 0.400000 +2342 34 0.400000 +2342 37 0.400000 +2342 46 0.400000 +2342 56 0.400000 +2342 132 0.400000 +2342 233 0.400000 +2342 439 0.400000 +2342 462 0.400000 +2342 466 0.400000 +2342 477 0.400000 +2342 481 0.400000 +2342 491 0.400000 +2342 507 0.400000 +2342 735 0.400000 +2342 771 0.400000 +2343 23 0.400000 +2343 33 0.400000 +2343 84 0.400000 +2343 185 0.400000 +2343 207 0.400000 +2343 234 0.400000 +2343 247 0.400000 +2343 264 0.400000 +2343 331 0.400000 +2343 345 0.400000 +2343 451 0.400000 +2343 463 0.400000 +2343 622 0.400000 +2343 657 0.400000 +2343 683 0.400000 +2343 766 0.400000 +2344 5 0.400000 +2344 135 0.400000 +2344 149 0.400000 +2344 167 0.400000 +2344 206 0.400000 +2344 383 0.400000 +2344 419 0.400000 +2344 519 0.400000 +2344 545 0.400000 +2344 572 0.400000 +2344 584 0.400000 +2344 632 0.400000 +2344 633 0.400000 +2344 710 0.400000 +2344 714 0.400000 +2344 747 0.400000 +2344 748 0.400000 +2344 754 0.400000 +2344 777 0.400000 +2345 19 0.400000 +2345 42 0.400000 +2345 50 0.400000 +2345 58 0.400000 +2345 119 0.400000 +2345 170 0.400000 +2345 186 0.400000 +2345 301 0.400000 +2345 389 0.400000 +2345 412 0.400000 +2345 423 0.400000 +2345 439 0.400000 +2345 521 0.400000 +2345 529 0.400000 +2345 592 0.400000 +2345 610 0.400000 +2345 664 0.400000 +2345 675 0.400000 +2345 686 0.400000 +2345 695 0.400000 +2345 791 0.400000 +2346 386 0.400000 +2346 391 0.400000 +2346 458 0.400000 +2346 487 0.400000 +2346 520 0.400000 +2346 693 0.400000 +2346 709 0.400000 +2346 723 0.400000 +2346 738 0.400000 +2346 761 0.400000 +2346 763 0.400000 +2347 37 0.400000 +2347 245 0.400000 +2347 265 0.400000 +2347 295 0.400000 +2347 368 0.400000 +2347 413 0.400000 +2347 440 0.400000 +2347 482 0.400000 +2347 514 0.400000 +2347 547 0.400000 +2347 563 0.400000 +2347 675 0.400000 +2347 788 0.400000 +2348 92 0.400000 +2348 152 0.400000 +2348 153 0.400000 +2348 300 0.400000 +2348 308 0.400000 +2348 336 0.400000 +2348 390 0.400000 +2348 493 0.400000 +2348 534 0.400000 +2348 603 0.400000 +2348 628 0.400000 +2348 636 0.400000 +2348 640 0.400000 +2348 659 0.400000 +2348 678 0.400000 +2349 6 0.400000 +2349 58 0.400000 +2349 63 0.400000 +2349 120 0.400000 +2349 135 0.400000 +2349 170 0.400000 +2349 326 0.400000 +2349 368 0.400000 +2349 379 0.400000 +2349 388 0.400000 +2349 393 0.400000 +2349 397 0.400000 +2349 401 0.400000 +2349 408 0.400000 +2349 471 0.400000 +2349 526 0.400000 +2349 542 0.400000 +2349 624 0.400000 +2349 665 0.400000 +2349 686 0.400000 +2349 689 0.400000 +2349 695 0.400000 +2349 758 0.400000 +2349 777 0.400000 +2350 91 0.400000 +2350 100 0.400000 +2350 110 0.400000 +2350 126 0.400000 +2350 148 0.400000 +2350 181 0.400000 +2350 197 0.400000 +2350 454 0.400000 +2350 455 0.400000 +2350 466 0.400000 +2350 467 0.400000 +2350 472 0.400000 +2350 474 0.400000 +2350 581 0.400000 +2350 596 0.400000 +2350 671 0.400000 +2350 735 0.400000 +2350 772 0.400000 +2351 75 0.400000 +2351 145 0.400000 +2351 228 0.400000 +2351 233 0.400000 +2351 343 0.400000 +2351 409 0.400000 +2351 467 0.400000 +2351 714 0.400000 +2351 757 0.400000 +2351 761 0.400000 +2352 186 0.400000 +2352 200 0.400000 +2352 213 0.400000 +2352 346 0.400000 +2352 398 0.400000 +2352 435 0.400000 +2352 532 0.400000 +2352 539 0.400000 +2352 577 0.400000 +2352 729 0.400000 +2352 772 0.400000 +2352 789 0.400000 +2353 15 0.400000 +2353 35 0.400000 +2353 126 0.400000 +2353 255 0.400000 +2353 315 0.400000 +2353 386 0.400000 +2353 388 0.400000 +2353 480 0.400000 +2353 511 0.400000 +2353 525 0.400000 +2353 531 0.400000 +2353 546 0.400000 +2353 673 0.400000 +2353 746 0.400000 +2353 770 0.400000 +2354 81 0.400000 +2354 122 0.400000 +2354 166 0.400000 +2354 170 0.400000 +2354 175 0.400000 +2354 188 0.400000 +2354 198 0.400000 +2354 213 0.400000 +2354 335 0.400000 +2354 379 0.400000 +2354 497 0.400000 +2354 533 0.400000 +2354 568 0.400000 +2354 583 0.400000 +2354 644 0.400000 +2354 692 0.400000 +2354 729 0.400000 +2354 753 0.400000 +2354 770 0.400000 +2355 78 0.400000 +2355 111 0.400000 +2355 187 0.400000 +2355 212 0.400000 +2355 217 0.400000 +2355 342 0.400000 +2355 372 0.400000 +2355 401 0.400000 +2355 402 0.400000 +2355 495 0.400000 +2355 528 0.400000 +2356 11 0.400000 +2356 14 0.400000 +2356 131 0.400000 +2356 137 0.400000 +2356 139 0.400000 +2356 150 0.400000 +2356 188 0.400000 +2356 225 0.400000 +2356 231 0.400000 +2356 242 0.400000 +2356 312 0.400000 +2356 345 0.400000 +2356 377 0.400000 +2356 446 0.400000 +2356 473 0.400000 +2356 615 0.400000 +2356 711 0.400000 +2356 726 0.400000 +2356 787 0.400000 +2357 35 0.400000 +2357 100 0.400000 +2357 117 0.400000 +2357 339 0.400000 +2357 346 0.400000 +2357 478 0.400000 +2357 483 0.400000 +2357 486 0.400000 +2357 543 0.400000 +2357 557 0.400000 +2357 800 0.400000 +2358 125 0.400000 +2358 190 0.400000 +2358 232 0.400000 +2358 337 0.400000 +2358 537 0.400000 +2358 545 0.400000 +2358 661 0.400000 +2358 734 0.400000 +2358 744 0.400000 +2359 120 0.400000 +2359 260 0.400000 +2359 267 0.400000 +2359 395 0.400000 +2359 464 0.400000 +2359 472 0.400000 +2359 551 0.400000 +2359 596 0.400000 +2359 652 0.400000 +2359 670 0.400000 +2359 689 0.400000 +2359 707 0.400000 +2359 732 0.400000 +2359 776 0.400000 +2359 788 0.400000 +2360 21 0.400000 +2360 187 0.400000 +2360 292 0.400000 +2360 296 0.400000 +2360 330 0.400000 +2360 500 0.400000 +2360 578 0.400000 +2360 599 0.400000 +2360 662 0.400000 +2360 674 0.400000 +2360 694 0.400000 +2360 771 0.400000 +2361 5 0.400000 +2361 23 0.400000 +2361 41 0.400000 +2361 139 0.400000 +2361 386 0.400000 +2361 411 0.400000 +2361 445 0.400000 +2361 620 0.400000 +2362 2 0.400000 +2362 372 0.400000 +2362 399 0.400000 +2362 455 0.400000 +2362 524 0.400000 +2362 530 0.400000 +2362 558 0.400000 +2362 620 0.400000 +2362 688 0.400000 +2363 8 0.400000 +2363 70 0.400000 +2363 73 0.400000 +2363 149 0.400000 +2363 181 0.400000 +2363 186 0.400000 +2363 280 0.400000 +2363 307 0.400000 +2363 353 0.400000 +2363 374 0.400000 +2363 377 0.400000 +2363 401 0.400000 +2363 518 0.400000 +2363 563 0.400000 +2363 629 0.400000 +2363 661 0.400000 +2363 770 0.400000 +2363 783 0.400000 +2364 15 0.400000 +2364 18 0.400000 +2364 40 0.400000 +2364 69 0.400000 +2364 70 0.400000 +2364 90 0.400000 +2364 186 0.400000 +2364 214 0.400000 +2364 275 0.400000 +2364 324 0.400000 +2364 368 0.400000 +2364 435 0.400000 +2364 489 0.400000 +2364 540 0.400000 +2364 549 0.400000 +2364 665 0.400000 +2365 192 0.400000 +2365 230 0.400000 +2365 253 0.400000 +2365 311 0.400000 +2365 423 0.400000 +2365 484 0.400000 +2365 583 0.400000 +2365 640 0.400000 +2365 654 0.400000 +2365 659 0.400000 +2365 763 0.400000 +2366 28 0.400000 +2366 75 0.400000 +2366 146 0.400000 +2366 160 0.400000 +2366 170 0.400000 +2366 191 0.400000 +2366 208 0.400000 +2366 214 0.400000 +2366 327 0.400000 +2366 413 0.400000 +2366 469 0.400000 +2366 576 0.400000 +2366 654 0.400000 +2367 30 0.400000 +2367 59 0.400000 +2367 92 0.400000 +2367 201 0.400000 +2367 322 0.400000 +2367 347 0.400000 +2367 370 0.400000 +2367 402 0.400000 +2367 454 0.400000 +2367 471 0.400000 +2367 579 0.400000 +2367 705 0.400000 +2367 752 0.400000 +2368 37 0.400000 +2368 141 0.400000 +2368 152 0.400000 +2368 159 0.400000 +2368 204 0.400000 +2368 237 0.400000 +2368 309 0.400000 +2368 365 0.400000 +2368 418 0.400000 +2368 425 0.400000 +2368 539 0.400000 +2368 598 0.400000 +2368 733 0.400000 +2368 786 0.400000 +2369 42 0.400000 +2369 57 0.400000 +2369 108 0.400000 +2369 160 0.400000 +2369 166 0.400000 +2369 192 0.400000 +2369 202 0.400000 +2369 408 0.400000 +2369 476 0.400000 +2369 506 0.400000 +2369 514 0.400000 +2369 543 0.400000 +2369 546 0.400000 +2369 570 0.400000 +2369 616 0.400000 +2369 701 0.400000 +2370 6 0.400000 +2370 81 0.400000 +2370 186 0.400000 +2370 239 0.400000 +2370 242 0.400000 +2370 248 0.400000 +2370 265 0.400000 +2370 305 0.400000 +2370 388 0.400000 +2370 404 0.400000 +2370 486 0.400000 +2370 557 0.400000 +2370 582 0.400000 +2370 591 0.400000 +2370 600 0.400000 +2370 608 0.400000 +2370 735 0.400000 +2370 746 0.400000 +2371 48 0.400000 +2371 95 0.400000 +2371 110 0.400000 +2371 232 0.400000 +2371 271 0.400000 +2371 351 0.400000 +2371 358 0.400000 +2371 385 0.400000 +2371 401 0.400000 +2371 495 0.400000 +2371 531 0.400000 +2371 545 0.400000 +2371 625 0.400000 +2371 630 0.400000 +2371 644 0.400000 +2371 685 0.400000 +2371 716 0.400000 +2371 746 0.400000 +2372 116 0.400000 +2372 197 0.400000 +2372 235 0.400000 +2372 248 0.400000 +2372 293 0.400000 +2372 301 0.400000 +2372 339 0.400000 +2372 340 0.400000 +2372 355 0.400000 +2372 370 0.400000 +2372 386 0.400000 +2372 388 0.400000 +2372 466 0.400000 +2372 490 0.400000 +2372 543 0.400000 +2372 626 0.400000 +2372 678 0.400000 +2372 698 0.400000 +2372 735 0.400000 +2372 791 0.400000 +2373 52 0.400000 +2373 109 0.400000 +2373 278 0.400000 +2373 285 0.400000 +2373 362 0.400000 +2373 400 0.400000 +2373 489 0.400000 +2373 492 0.400000 +2373 535 0.400000 +2373 638 0.400000 +2373 675 0.400000 +2373 682 0.400000 +2373 694 0.400000 +2373 707 0.400000 +2374 225 0.400000 +2374 238 0.400000 +2374 259 0.400000 +2374 360 0.400000 +2374 450 0.400000 +2374 455 0.400000 +2374 456 0.400000 +2374 604 0.400000 +2374 628 0.400000 +2374 738 0.400000 +2374 772 0.400000 +2375 18 0.400000 +2375 212 0.400000 +2375 309 0.400000 +2375 333 0.400000 +2375 393 0.400000 +2375 432 0.400000 +2375 444 0.400000 +2375 445 0.400000 +2375 575 0.400000 +2375 663 0.400000 +2375 688 0.400000 +2375 707 0.400000 +2375 739 0.400000 +2375 771 0.400000 +2375 787 0.400000 +2376 33 0.400000 +2376 103 0.400000 +2376 109 0.400000 +2376 118 0.400000 +2376 128 0.400000 +2376 142 0.400000 +2376 146 0.400000 +2376 196 0.400000 +2376 343 0.400000 +2376 377 0.400000 +2376 390 0.400000 +2376 478 0.400000 +2376 522 0.400000 +2376 539 0.400000 +2376 559 0.400000 +2376 624 0.400000 +2376 652 0.400000 +2376 668 0.400000 +2376 719 0.400000 +2376 753 0.400000 +2377 66 0.400000 +2377 100 0.400000 +2377 154 0.400000 +2377 193 0.400000 +2377 207 0.400000 +2377 263 0.400000 +2377 295 0.400000 +2377 306 0.400000 +2377 351 0.400000 +2377 433 0.400000 +2377 460 0.400000 +2377 465 0.400000 +2377 519 0.400000 +2377 524 0.400000 +2377 543 0.400000 +2377 590 0.400000 +2378 202 0.400000 +2378 233 0.400000 +2378 284 0.400000 +2378 370 0.400000 +2378 374 0.400000 +2378 386 0.400000 +2378 395 0.400000 +2378 426 0.400000 +2378 486 0.400000 +2378 527 0.400000 +2378 538 0.400000 +2378 575 0.400000 +2378 674 0.400000 +2379 2 0.400000 +2379 27 0.400000 +2379 61 0.400000 +2379 97 0.400000 +2379 180 0.400000 +2379 213 0.400000 +2379 253 0.400000 +2379 309 0.400000 +2379 384 0.400000 +2379 406 0.400000 +2379 539 0.400000 +2379 547 0.400000 +2379 582 0.400000 +2379 596 0.400000 +2379 600 0.400000 +2379 624 0.400000 +2379 663 0.400000 +2379 677 0.400000 +2379 697 0.400000 +2379 710 0.400000 +2379 750 0.400000 +2380 4 0.400000 +2380 54 0.400000 +2380 69 0.400000 +2380 81 0.400000 +2380 313 0.400000 +2380 409 0.400000 +2380 463 0.400000 +2380 488 0.400000 +2380 583 0.400000 +2380 588 0.400000 +2380 613 0.400000 +2380 727 0.400000 +2380 770 0.400000 +2381 8 0.400000 +2381 88 0.400000 +2381 165 0.400000 +2381 179 0.400000 +2381 219 0.400000 +2381 240 0.400000 +2381 241 0.400000 +2381 304 0.400000 +2381 328 0.400000 +2381 385 0.400000 +2381 452 0.400000 +2381 457 0.400000 +2381 625 0.400000 +2381 641 0.400000 +2381 644 0.400000 +2381 702 0.400000 +2381 725 0.400000 +2381 767 0.400000 +2381 779 0.400000 +2382 3 0.400000 +2382 27 0.400000 +2382 31 0.400000 +2382 98 0.400000 +2382 102 0.400000 +2382 116 0.400000 +2382 137 0.400000 +2382 138 0.400000 +2382 191 0.400000 +2382 210 0.400000 +2382 227 0.400000 +2382 265 0.400000 +2382 323 0.400000 +2382 397 0.400000 +2382 446 0.400000 +2382 486 0.400000 +2382 523 0.400000 +2382 527 0.400000 +2382 648 0.400000 +2382 740 0.400000 +2382 772 0.400000 +2382 793 0.400000 +2383 56 0.400000 +2383 61 0.400000 +2383 96 0.400000 +2383 119 0.400000 +2383 148 0.400000 +2383 257 0.400000 +2383 297 0.400000 +2383 363 0.400000 +2383 403 0.400000 +2383 687 0.400000 +2383 722 0.400000 +2383 752 0.400000 +2383 762 0.400000 +2384 16 0.400000 +2384 33 0.400000 +2384 63 0.400000 +2384 133 0.400000 +2384 167 0.400000 +2384 206 0.400000 +2384 262 0.400000 +2384 286 0.400000 +2384 322 0.400000 +2384 334 0.400000 +2384 343 0.400000 +2384 361 0.400000 +2384 384 0.400000 +2384 417 0.400000 +2384 432 0.400000 +2384 437 0.400000 +2384 445 0.400000 +2384 470 0.400000 +2384 476 0.400000 +2384 486 0.400000 +2384 489 0.400000 +2384 627 0.400000 +2384 706 0.400000 +2384 721 0.400000 +2384 796 0.400000 +2385 116 0.400000 +2385 186 0.400000 +2385 192 0.400000 +2385 239 0.400000 +2385 256 0.400000 +2385 307 0.400000 +2385 338 0.400000 +2385 364 0.400000 +2385 366 0.400000 +2385 415 0.400000 +2385 449 0.400000 +2385 476 0.400000 +2385 497 0.400000 +2385 544 0.400000 +2385 588 0.400000 +2385 620 0.400000 +2385 653 0.400000 +2385 692 0.400000 +2385 742 0.400000 +2385 785 0.400000 +2386 41 0.400000 +2386 238 0.400000 +2386 310 0.400000 +2386 352 0.400000 +2386 401 0.400000 +2386 424 0.400000 +2386 589 0.400000 +2386 614 0.400000 +2386 654 0.400000 +2386 731 0.400000 +2387 24 0.400000 +2387 32 0.400000 +2387 112 0.400000 +2387 130 0.400000 +2387 156 0.400000 +2387 199 0.400000 +2387 241 0.400000 +2387 260 0.400000 +2387 296 0.400000 +2387 403 0.400000 +2387 410 0.400000 +2387 502 0.400000 +2387 512 0.400000 +2387 521 0.400000 +2387 597 0.400000 +2387 612 0.400000 +2387 653 0.400000 +2387 676 0.400000 +2388 87 0.400000 +2388 97 0.400000 +2388 111 0.400000 +2388 400 0.400000 +2388 455 0.400000 +2388 546 0.400000 +2388 547 0.400000 +2388 558 0.400000 +2388 679 0.400000 +2388 682 0.400000 +2388 707 0.400000 +2388 757 0.400000 +2388 781 0.400000 +2389 6 0.400000 +2389 9 0.400000 +2389 24 0.400000 +2389 32 0.400000 +2389 66 0.400000 +2389 136 0.400000 +2389 170 0.400000 +2389 173 0.400000 +2389 298 0.400000 +2389 369 0.400000 +2389 407 0.400000 +2389 411 0.400000 +2389 430 0.400000 +2389 467 0.400000 +2389 506 0.400000 +2389 572 0.400000 +2389 701 0.400000 +2389 750 0.400000 +2389 771 0.400000 +2390 92 0.400000 +2390 154 0.400000 +2390 367 0.400000 +2390 371 0.400000 +2390 382 0.400000 +2390 411 0.400000 +2390 420 0.400000 +2390 422 0.400000 +2390 467 0.400000 +2390 472 0.400000 +2390 603 0.400000 +2390 739 0.400000 +2391 19 0.400000 +2391 198 0.400000 +2391 206 0.400000 +2391 219 0.400000 +2391 270 0.400000 +2391 297 0.400000 +2391 396 0.400000 +2391 433 0.400000 +2391 450 0.400000 +2391 464 0.400000 +2391 519 0.400000 +2391 520 0.400000 +2391 533 0.400000 +2391 571 0.400000 +2391 581 0.400000 +2391 605 0.400000 +2391 667 0.400000 +2391 682 0.400000 +2391 705 0.400000 +2392 101 0.400000 +2392 140 0.400000 +2392 237 0.400000 +2392 373 0.400000 +2392 412 0.400000 +2392 418 0.400000 +2392 506 0.400000 +2392 583 0.400000 +2392 588 0.400000 +2392 599 0.400000 +2392 686 0.400000 +2392 710 0.400000 +2392 767 0.400000 +2392 768 0.400000 +2393 71 0.400000 +2393 156 0.400000 +2393 209 0.400000 +2393 236 0.400000 +2393 348 0.400000 +2393 423 0.400000 +2393 481 0.400000 +2393 501 0.400000 +2393 517 0.400000 +2393 632 0.400000 +2393 649 0.400000 +2393 682 0.400000 +2393 709 0.400000 +2394 20 0.400000 +2394 104 0.400000 +2394 200 0.400000 +2394 291 0.400000 +2394 388 0.400000 +2394 417 0.400000 +2394 437 0.400000 +2394 487 0.400000 +2394 508 0.400000 +2394 567 0.400000 +2394 647 0.400000 +2394 685 0.400000 +2394 687 0.400000 +2395 6 0.400000 +2395 74 0.400000 +2395 118 0.400000 +2395 167 0.400000 +2395 173 0.400000 +2395 237 0.400000 +2395 249 0.400000 +2395 266 0.400000 +2395 272 0.400000 +2395 364 0.400000 +2395 382 0.400000 +2395 388 0.400000 +2395 399 0.400000 +2395 460 0.400000 +2395 484 0.400000 +2395 547 0.400000 +2395 560 0.400000 +2395 570 0.400000 +2395 617 0.400000 +2395 715 0.400000 +2395 719 0.400000 +2395 746 0.400000 +2396 58 0.400000 +2396 236 0.400000 +2396 238 0.400000 +2396 279 0.400000 +2396 315 0.400000 +2396 393 0.400000 +2396 425 0.400000 +2396 435 0.400000 +2396 437 0.400000 +2396 533 0.400000 +2396 558 0.400000 +2396 619 0.400000 +2396 649 0.400000 +2396 755 0.400000 +2396 776 0.400000 +2396 783 0.400000 +2397 153 0.400000 +2397 241 0.400000 +2397 300 0.400000 +2397 311 0.400000 +2397 350 0.400000 +2397 357 0.400000 +2397 359 0.400000 +2397 399 0.400000 +2397 583 0.400000 +2397 584 0.400000 +2397 668 0.400000 +2397 734 0.400000 +2398 43 0.400000 +2398 44 0.400000 +2398 167 0.400000 +2398 205 0.400000 +2398 235 0.400000 +2398 257 0.400000 +2398 289 0.400000 +2398 319 0.400000 +2398 327 0.400000 +2398 424 0.400000 +2398 522 0.400000 +2398 618 0.400000 +2398 653 0.400000 +2398 708 0.400000 +2398 790 0.400000 +2399 4 0.400000 +2399 16 0.400000 +2399 17 0.400000 +2399 239 0.400000 +2399 282 0.400000 +2399 309 0.400000 +2399 311 0.400000 +2399 325 0.400000 +2399 328 0.400000 +2399 347 0.400000 +2399 358 0.400000 +2399 482 0.400000 +2399 494 0.400000 +2399 516 0.400000 +2399 568 0.400000 +2399 626 0.400000 +2399 683 0.400000 +2399 714 0.400000 +2399 724 0.400000 +2399 791 0.400000 +2400 91 0.400000 +2400 130 0.400000 +2400 143 0.400000 +2400 161 0.400000 +2400 280 0.400000 +2400 311 0.400000 +2400 364 0.400000 +2400 425 0.400000 +2400 464 0.400000 +2400 588 0.400000 +2400 619 0.400000 +2400 654 0.400000 +2400 672 0.400000 +2400 719 0.400000 +2400 748 0.400000 +2400 754 0.400000 +2401 21 0.400000 +2401 88 0.400000 +2401 111 0.400000 +2401 200 0.400000 +2401 205 0.400000 +2401 236 0.400000 +2401 369 0.400000 +2401 379 0.400000 +2401 436 0.400000 +2401 441 0.400000 +2401 464 0.400000 +2401 491 0.400000 +2401 517 0.400000 +2401 541 0.400000 +2401 551 0.400000 +2401 576 0.400000 +2401 595 0.400000 +2401 600 0.400000 +2401 629 0.400000 +2401 793 0.400000 +2402 49 0.400000 +2402 306 0.400000 +2402 511 0.400000 +2402 565 0.400000 +2402 633 0.400000 +2402 735 0.400000 +2403 40 0.400000 +2403 46 0.400000 +2403 110 0.400000 +2403 147 0.400000 +2403 171 0.400000 +2403 236 0.400000 +2403 308 0.400000 +2403 392 0.400000 +2403 447 0.400000 +2403 607 0.400000 +2403 621 0.400000 +2403 632 0.400000 +2403 646 0.400000 +2403 695 0.400000 +2403 744 0.400000 +2403 776 0.400000 +2403 788 0.400000 +2403 792 0.400000 +2404 34 0.400000 +2404 44 0.400000 +2404 68 0.400000 +2404 91 0.400000 +2404 475 0.400000 +2404 477 0.400000 +2404 540 0.400000 +2404 568 0.400000 +2404 570 0.400000 +2404 604 0.400000 +2404 652 0.400000 +2404 755 0.400000 +2404 758 0.400000 +2404 760 0.400000 +2404 766 0.400000 +2405 58 0.400000 +2405 63 0.400000 +2405 76 0.400000 +2405 210 0.400000 +2405 336 0.400000 +2405 476 0.400000 +2405 485 0.400000 +2405 532 0.400000 +2405 623 0.400000 +2405 675 0.400000 +2405 688 0.400000 +2405 711 0.400000 +2405 788 0.400000 +2406 83 0.400000 +2406 113 0.400000 +2406 214 0.400000 +2406 227 0.400000 +2406 259 0.400000 +2406 391 0.400000 +2406 394 0.400000 +2406 408 0.400000 +2406 496 0.400000 +2406 507 0.400000 +2406 678 0.400000 +2406 681 0.400000 +2406 697 0.400000 +2406 780 0.400000 +2407 34 0.400000 +2407 110 0.400000 +2407 146 0.400000 +2407 195 0.400000 +2407 199 0.400000 +2407 240 0.400000 +2407 323 0.400000 +2407 358 0.400000 +2407 433 0.400000 +2407 463 0.400000 +2407 471 0.400000 +2407 487 0.400000 +2407 515 0.400000 +2407 517 0.400000 +2407 524 0.400000 +2407 649 0.400000 +2407 696 0.400000 +2407 708 0.400000 +2407 729 0.400000 +2407 732 0.400000 +2407 748 0.400000 +2407 762 0.400000 +2407 767 0.400000 +2407 771 0.400000 +2408 3 0.400000 +2408 39 0.400000 +2408 229 0.400000 +2408 271 0.400000 +2408 283 0.400000 +2408 317 0.400000 +2408 385 0.400000 +2408 413 0.400000 +2408 452 0.400000 +2408 457 0.400000 +2408 503 0.400000 +2408 548 0.400000 +2408 787 0.400000 +2409 55 0.400000 +2409 314 0.400000 +2409 452 0.400000 +2409 532 0.400000 +2409 585 0.400000 +2409 672 0.400000 +2409 692 0.400000 +2409 716 0.400000 +2409 751 0.400000 +2409 780 0.400000 +2410 87 0.400000 +2410 132 0.400000 +2410 228 0.400000 +2410 296 0.400000 +2410 380 0.400000 +2410 406 0.400000 +2410 412 0.400000 +2410 426 0.400000 +2410 490 0.400000 +2410 595 0.400000 +2410 649 0.400000 +2410 662 0.400000 +2410 718 0.400000 +2410 796 0.400000 +2411 18 0.400000 +2411 109 0.400000 +2411 234 0.400000 +2411 333 0.400000 +2411 360 0.400000 +2411 510 0.400000 +2411 562 0.400000 +2411 575 0.400000 +2411 594 0.400000 +2411 664 0.400000 +2411 671 0.400000 +2411 745 0.400000 +2412 8 0.400000 +2412 101 0.400000 +2412 129 0.400000 +2412 138 0.400000 +2412 223 0.400000 +2412 462 0.400000 +2412 477 0.400000 +2412 524 0.400000 +2412 551 0.400000 +2412 581 0.400000 +2412 591 0.400000 +2412 687 0.400000 +2413 6 0.400000 +2413 19 0.400000 +2413 114 0.400000 +2413 155 0.400000 +2413 192 0.400000 +2413 194 0.400000 +2413 203 0.400000 +2413 225 0.400000 +2413 299 0.400000 +2413 308 0.400000 +2413 369 0.400000 +2413 385 0.400000 +2413 389 0.400000 +2413 391 0.400000 +2413 413 0.400000 +2413 423 0.400000 +2413 449 0.400000 +2413 626 0.400000 +2413 706 0.400000 +2413 707 0.400000 +2413 753 0.400000 +2413 796 0.400000 +2414 28 0.400000 +2414 37 0.400000 +2414 53 0.400000 +2414 55 0.400000 +2414 73 0.400000 +2414 110 0.400000 +2414 125 0.400000 +2414 160 0.400000 +2414 222 0.400000 +2414 239 0.400000 +2414 273 0.400000 +2414 312 0.400000 +2414 491 0.400000 +2414 503 0.400000 +2414 516 0.400000 +2414 539 0.400000 +2414 702 0.400000 +2414 704 0.400000 +2414 739 0.400000 +2414 780 0.400000 +2414 796 0.400000 +2415 85 0.400000 +2415 130 0.400000 +2415 277 0.400000 +2415 319 0.400000 +2415 327 0.400000 +2415 368 0.400000 +2415 379 0.400000 +2415 442 0.400000 +2415 568 0.400000 +2415 695 0.400000 +2415 706 0.400000 +2415 728 0.400000 +2415 737 0.400000 +2416 13 0.400000 +2416 52 0.400000 +2416 87 0.400000 +2416 223 0.400000 +2416 363 0.400000 +2416 364 0.400000 +2416 420 0.400000 +2416 458 0.400000 +2416 484 0.400000 +2416 536 0.400000 +2416 577 0.400000 +2416 703 0.400000 +2416 746 0.400000 +2416 749 0.400000 +2416 769 0.400000 +2417 60 0.400000 +2417 151 0.400000 +2417 161 0.400000 +2417 170 0.400000 +2417 203 0.400000 +2417 214 0.400000 +2417 271 0.400000 +2417 289 0.400000 +2417 291 0.400000 +2417 327 0.400000 +2417 507 0.400000 +2417 529 0.400000 +2417 557 0.400000 +2417 646 0.400000 +2417 673 0.400000 +2417 729 0.400000 +2417 762 0.400000 +2418 19 0.400000 +2418 26 0.400000 +2418 85 0.400000 +2418 86 0.400000 +2418 201 0.400000 +2418 276 0.400000 +2418 455 0.400000 +2418 471 0.400000 +2418 564 0.400000 +2418 572 0.400000 +2418 581 0.400000 +2418 623 0.400000 +2418 756 0.400000 +2418 762 0.400000 +2418 765 0.400000 +2418 773 0.400000 +2419 18 0.400000 +2419 238 0.400000 +2419 369 0.400000 +2419 385 0.400000 +2419 560 0.400000 +2419 591 0.400000 +2419 678 0.400000 +2419 692 0.400000 +2419 705 0.400000 +2419 782 0.400000 +2419 786 0.400000 +2420 214 0.400000 +2420 251 0.400000 +2420 337 0.400000 +2420 377 0.400000 +2420 382 0.400000 +2420 393 0.400000 +2420 423 0.400000 +2420 444 0.400000 +2420 474 0.400000 +2420 548 0.400000 +2420 558 0.400000 +2420 581 0.400000 +2420 597 0.400000 +2420 629 0.400000 +2420 690 0.400000 +2420 755 0.400000 +2420 763 0.400000 +2420 788 0.400000 +2420 790 0.400000 +2421 64 0.400000 +2421 66 0.400000 +2421 120 0.400000 +2421 178 0.400000 +2421 207 0.400000 +2421 239 0.400000 +2421 292 0.400000 +2421 294 0.400000 +2421 332 0.400000 +2421 345 0.400000 +2421 407 0.400000 +2421 434 0.400000 +2421 478 0.400000 +2421 530 0.400000 +2421 679 0.400000 +2422 20 0.400000 +2422 80 0.400000 +2422 87 0.400000 +2422 115 0.400000 +2422 206 0.400000 +2422 207 0.400000 +2422 210 0.400000 +2422 335 0.400000 +2422 415 0.400000 +2422 448 0.400000 +2422 523 0.400000 +2422 553 0.400000 +2422 598 0.400000 +2422 627 0.400000 +2422 631 0.400000 +2423 75 0.400000 +2423 102 0.400000 +2423 215 0.400000 +2423 273 0.400000 +2423 552 0.400000 +2423 588 0.400000 +2423 601 0.400000 +2423 619 0.400000 +2423 796 0.400000 +2424 38 0.400000 +2424 127 0.400000 +2424 221 0.400000 +2424 294 0.400000 +2424 305 0.400000 +2424 361 0.400000 +2424 408 0.400000 +2424 426 0.400000 +2424 473 0.400000 +2424 502 0.400000 +2424 592 0.400000 +2424 621 0.400000 +2424 683 0.400000 +2424 697 0.400000 +2425 26 0.400000 +2425 39 0.400000 +2425 48 0.400000 +2425 72 0.400000 +2425 93 0.400000 +2425 129 0.400000 +2425 252 0.400000 +2425 322 0.400000 +2425 329 0.400000 +2425 352 0.400000 +2425 360 0.400000 +2425 363 0.400000 +2425 422 0.400000 +2425 446 0.400000 +2425 528 0.400000 +2425 540 0.400000 +2425 542 0.400000 +2425 577 0.400000 +2425 579 0.400000 +2425 591 0.400000 +2425 750 0.400000 +2426 159 0.400000 +2426 251 0.400000 +2426 273 0.400000 +2426 391 0.400000 +2426 394 0.400000 +2426 402 0.400000 +2426 505 0.400000 +2426 584 0.400000 +2426 649 0.400000 +2427 40 0.400000 +2427 67 0.400000 +2427 128 0.400000 +2427 260 0.400000 +2427 274 0.400000 +2427 423 0.400000 +2427 436 0.400000 +2427 541 0.400000 +2427 713 0.400000 +2427 720 0.400000 +2427 759 0.400000 +2427 760 0.400000 +2428 12 0.400000 +2428 175 0.400000 +2428 241 0.400000 +2428 256 0.400000 +2428 265 0.400000 +2428 313 0.400000 +2428 389 0.400000 +2428 448 0.400000 +2428 493 0.400000 +2428 673 0.400000 +2428 731 0.400000 +2428 792 0.400000 +2429 2 0.400000 +2429 123 0.400000 +2429 201 0.400000 +2429 469 0.400000 +2429 483 0.400000 +2429 522 0.400000 +2429 591 0.400000 +2429 635 0.400000 +2429 686 0.400000 +2429 741 0.400000 +2429 778 0.400000 +2429 786 0.400000 +2430 13 0.400000 +2430 129 0.400000 +2430 166 0.400000 +2430 289 0.400000 +2430 291 0.400000 +2430 313 0.400000 +2430 315 0.400000 +2430 319 0.400000 +2430 380 0.400000 +2430 434 0.400000 +2430 443 0.400000 +2430 465 0.400000 +2430 485 0.400000 +2430 592 0.400000 +2430 609 0.400000 +2430 636 0.400000 +2430 659 0.400000 +2430 662 0.400000 +2430 671 0.400000 +2430 702 0.400000 +2430 722 0.400000 +2431 20 0.400000 +2431 190 0.400000 +2431 216 0.400000 +2431 257 0.400000 +2431 269 0.400000 +2431 289 0.400000 +2431 337 0.400000 +2431 372 0.400000 +2431 375 0.400000 +2431 378 0.400000 +2431 388 0.400000 +2431 477 0.400000 +2431 483 0.400000 +2431 499 0.400000 +2431 511 0.400000 +2431 544 0.400000 +2431 558 0.400000 +2431 759 0.400000 +2432 195 0.400000 +2432 275 0.400000 +2432 278 0.400000 +2432 305 0.400000 +2432 321 0.400000 +2432 344 0.400000 +2432 353 0.400000 +2432 376 0.400000 +2432 421 0.400000 +2432 429 0.400000 +2432 463 0.400000 +2432 500 0.400000 +2432 606 0.400000 +2432 676 0.400000 +2432 769 0.400000 +2433 45 0.400000 +2433 131 0.400000 +2433 173 0.400000 +2433 178 0.400000 +2433 191 0.400000 +2433 200 0.400000 +2433 348 0.400000 +2433 418 0.400000 +2433 420 0.400000 +2433 566 0.400000 +2433 617 0.400000 +2433 631 0.400000 +2433 744 0.400000 +2434 2 0.400000 +2434 43 0.400000 +2434 134 0.400000 +2434 140 0.400000 +2434 158 0.400000 +2434 250 0.400000 +2434 304 0.400000 +2434 318 0.400000 +2434 345 0.400000 +2434 354 0.400000 +2434 365 0.400000 +2434 441 0.400000 +2434 443 0.400000 +2434 496 0.400000 +2434 528 0.400000 +2434 555 0.400000 +2434 604 0.400000 +2434 688 0.400000 +2435 56 0.400000 +2435 95 0.400000 +2435 115 0.400000 +2435 185 0.400000 +2435 248 0.400000 +2435 297 0.400000 +2435 303 0.400000 +2435 330 0.400000 +2435 348 0.400000 +2435 431 0.400000 +2435 491 0.400000 +2435 494 0.400000 +2435 625 0.400000 +2435 658 0.400000 +2435 690 0.400000 +2435 758 0.400000 +2435 759 0.400000 +2436 33 0.400000 +2436 149 0.400000 +2436 215 0.400000 +2436 377 0.400000 +2436 452 0.400000 +2436 532 0.400000 +2436 577 0.400000 +2436 617 0.400000 +2436 697 0.400000 +2436 721 0.400000 +2437 47 0.400000 +2437 126 0.400000 +2437 127 0.400000 +2437 242 0.400000 +2437 268 0.400000 +2437 300 0.400000 +2437 355 0.400000 +2437 356 0.400000 +2437 406 0.400000 +2437 463 0.400000 +2437 510 0.400000 +2437 527 0.400000 +2437 597 0.400000 +2437 632 0.400000 +2437 654 0.400000 +2437 698 0.400000 +2437 746 0.400000 +2437 760 0.400000 +2438 136 0.400000 +2438 222 0.400000 +2438 516 0.400000 +2438 563 0.400000 +2438 616 0.400000 +2438 689 0.400000 +2438 759 0.400000 +2438 771 0.400000 +2438 790 0.400000 +2439 62 0.400000 +2439 67 0.400000 +2439 124 0.400000 +2439 210 0.400000 +2439 260 0.400000 +2439 347 0.400000 +2439 363 0.400000 +2439 386 0.400000 +2439 431 0.400000 +2439 460 0.400000 +2439 488 0.400000 +2439 527 0.400000 +2439 594 0.400000 +2439 606 0.400000 +2439 640 0.400000 +2439 743 0.400000 +2440 305 0.400000 +2440 682 0.400000 +2440 709 0.400000 +2440 722 0.400000 +2440 745 0.400000 +2440 782 0.400000 +2441 9 0.400000 +2441 115 0.400000 +2441 179 0.400000 +2441 264 0.400000 +2441 300 0.400000 +2441 319 0.400000 +2441 388 0.400000 +2441 404 0.400000 +2441 416 0.400000 +2441 443 0.400000 +2441 467 0.400000 +2441 470 0.400000 +2441 494 0.400000 +2441 582 0.400000 +2441 668 0.400000 +2441 675 0.400000 +2441 726 0.400000 +2441 771 0.400000 +2441 790 0.400000 +2442 48 0.400000 +2442 53 0.400000 +2442 58 0.400000 +2442 89 0.400000 +2442 110 0.400000 +2442 224 0.400000 +2442 272 0.400000 +2442 285 0.400000 +2442 365 0.400000 +2442 402 0.400000 +2442 582 0.400000 +2442 619 0.400000 +2442 698 0.400000 +2442 719 0.400000 +2442 733 0.400000 +2442 771 0.400000 +2443 62 0.400000 +2443 129 0.400000 +2443 162 0.400000 +2443 182 0.400000 +2443 230 0.400000 +2443 239 0.400000 +2443 268 0.400000 +2443 300 0.400000 +2443 358 0.400000 +2443 403 0.400000 +2443 487 0.400000 +2443 524 0.400000 +2443 551 0.400000 +2443 553 0.400000 +2443 689 0.400000 +2443 716 0.400000 +2443 740 0.400000 +2443 748 0.400000 +2443 775 0.400000 +2443 776 0.400000 +2443 796 0.400000 +2443 799 0.400000 +2444 71 0.400000 +2444 178 0.400000 +2444 212 0.400000 +2444 241 0.400000 +2444 245 0.400000 +2444 335 0.400000 +2444 359 0.400000 +2444 380 0.400000 +2444 384 0.400000 +2444 459 0.400000 +2444 534 0.400000 +2444 681 0.400000 +2444 697 0.400000 +2444 720 0.400000 +2444 730 0.400000 +2444 733 0.400000 +2444 737 0.400000 +2444 739 0.400000 +2444 787 0.400000 +2445 154 0.400000 +2445 187 0.400000 +2445 222 0.400000 +2445 323 0.400000 +2445 449 0.400000 +2445 536 0.400000 +2445 587 0.400000 +2445 618 0.400000 +2445 716 0.400000 +2445 728 0.400000 +2445 746 0.400000 +2445 764 0.400000 +2446 108 0.400000 +2446 137 0.400000 +2446 173 0.400000 +2446 183 0.400000 +2446 241 0.400000 +2446 295 0.400000 +2446 301 0.400000 +2446 308 0.400000 +2446 312 0.400000 +2446 320 0.400000 +2446 357 0.400000 +2446 364 0.400000 +2446 432 0.400000 +2446 627 0.400000 +2446 720 0.400000 +2446 779 0.400000 +2447 39 0.400000 +2447 69 0.400000 +2447 80 0.400000 +2447 159 0.400000 +2447 253 0.400000 +2447 269 0.400000 +2447 287 0.400000 +2447 306 0.400000 +2447 310 0.400000 +2447 320 0.400000 +2447 369 0.400000 +2447 476 0.400000 +2447 532 0.400000 +2447 577 0.400000 +2447 606 0.400000 +2447 660 0.400000 +2447 663 0.400000 +2447 673 0.400000 +2447 706 0.400000 +2447 724 0.400000 +2447 768 0.400000 +2448 30 0.400000 +2448 280 0.400000 +2448 281 0.400000 +2448 321 0.400000 +2448 392 0.400000 +2448 415 0.400000 +2448 444 0.400000 +2448 454 0.400000 +2448 459 0.400000 +2448 462 0.400000 +2448 575 0.400000 +2448 580 0.400000 +2448 673 0.400000 +2449 67 0.400000 +2449 145 0.400000 +2449 193 0.400000 +2449 256 0.400000 +2449 314 0.400000 +2449 438 0.400000 +2449 461 0.400000 +2449 478 0.400000 +2449 481 0.400000 +2449 612 0.400000 +2449 613 0.400000 +2449 658 0.400000 +2449 742 0.400000 +2449 780 0.400000 +2449 781 0.400000 +2449 796 0.400000 +2450 20 0.400000 +2450 33 0.400000 +2450 181 0.400000 +2450 214 0.400000 +2450 233 0.400000 +2450 287 0.400000 +2450 366 0.400000 +2450 397 0.400000 +2450 411 0.400000 +2450 452 0.400000 +2450 460 0.400000 +2450 467 0.400000 +2450 527 0.400000 +2450 535 0.400000 +2450 536 0.400000 +2450 568 0.400000 +2450 584 0.400000 +2450 590 0.400000 +2450 605 0.400000 +2451 85 0.400000 +2451 203 0.400000 +2451 306 0.400000 +2451 349 0.400000 +2451 403 0.400000 +2451 407 0.400000 +2451 414 0.400000 +2451 448 0.400000 +2451 526 0.400000 +2451 539 0.400000 +2451 704 0.400000 +2451 709 0.400000 +2451 759 0.400000 +2451 762 0.400000 +2451 797 0.400000 +2452 131 0.400000 +2452 242 0.400000 +2452 267 0.400000 +2452 279 0.400000 +2452 305 0.400000 +2452 331 0.400000 +2452 369 0.400000 +2452 390 0.400000 +2452 420 0.400000 +2452 571 0.400000 +2452 603 0.400000 +2452 707 0.400000 +2452 724 0.400000 +2452 799 0.400000 +2453 18 0.400000 +2453 91 0.400000 +2453 118 0.400000 +2453 120 0.400000 +2453 287 0.400000 +2453 340 0.400000 +2453 346 0.400000 +2453 360 0.400000 +2453 509 0.400000 +2453 522 0.400000 +2453 541 0.400000 +2453 542 0.400000 +2453 551 0.400000 +2453 603 0.400000 +2453 650 0.400000 +2453 661 0.400000 +2453 688 0.400000 +2453 731 0.400000 +2454 75 0.400000 +2454 110 0.400000 +2454 139 0.400000 +2454 141 0.400000 +2454 146 0.400000 +2454 217 0.400000 +2454 343 0.400000 +2454 366 0.400000 +2454 437 0.400000 +2454 478 0.400000 +2454 482 0.400000 +2454 579 0.400000 +2454 581 0.400000 +2454 763 0.400000 +2454 791 0.400000 +2455 114 0.400000 +2455 122 0.400000 +2455 132 0.400000 +2455 186 0.400000 +2455 243 0.400000 +2455 246 0.400000 +2455 295 0.400000 +2455 315 0.400000 +2455 332 0.400000 +2455 406 0.400000 +2455 494 0.400000 +2455 557 0.400000 +2455 590 0.400000 +2455 632 0.400000 +2455 673 0.400000 +2455 689 0.400000 +2456 18 0.400000 +2456 84 0.400000 +2456 114 0.400000 +2456 148 0.400000 +2456 171 0.400000 +2456 200 0.400000 +2456 216 0.400000 +2456 260 0.400000 +2456 319 0.400000 +2456 396 0.400000 +2456 468 0.400000 +2456 485 0.400000 +2456 598 0.400000 +2456 624 0.400000 +2456 639 0.400000 +2456 728 0.400000 +2457 130 0.400000 +2457 139 0.400000 +2457 213 0.400000 +2457 243 0.400000 +2457 307 0.400000 +2457 374 0.400000 +2457 407 0.400000 +2457 528 0.400000 +2457 542 0.400000 +2457 551 0.400000 +2457 555 0.400000 +2458 21 0.400000 +2458 28 0.400000 +2458 55 0.400000 +2458 157 0.400000 +2458 269 0.400000 +2458 341 0.400000 +2458 385 0.400000 +2458 396 0.400000 +2458 414 0.400000 +2458 440 0.400000 +2458 499 0.400000 +2458 590 0.400000 +2458 645 0.400000 +2459 109 0.400000 +2459 137 0.400000 +2459 149 0.400000 +2459 193 0.400000 +2459 291 0.400000 +2459 311 0.400000 +2459 326 0.400000 +2459 364 0.400000 +2459 396 0.400000 +2459 444 0.400000 +2459 470 0.400000 +2459 542 0.400000 +2459 543 0.400000 +2459 642 0.400000 +2459 659 0.400000 +2459 713 0.400000 +2459 777 0.400000 +2459 795 0.400000 +2460 20 0.400000 +2460 88 0.400000 +2460 205 0.400000 +2460 232 0.400000 +2460 241 0.400000 +2460 258 0.400000 +2460 419 0.400000 +2460 488 0.400000 +2460 551 0.400000 +2460 598 0.400000 +2460 680 0.400000 +2460 763 0.400000 +2460 775 0.400000 +2461 12 0.400000 +2461 27 0.400000 +2461 51 0.400000 +2461 80 0.400000 +2461 88 0.400000 +2461 149 0.400000 +2461 236 0.400000 +2461 312 0.400000 +2461 496 0.400000 +2461 592 0.400000 +2461 624 0.400000 +2461 642 0.400000 +2461 743 0.400000 +2462 69 0.400000 +2462 114 0.400000 +2462 147 0.400000 +2462 154 0.400000 +2462 161 0.400000 +2462 172 0.400000 +2462 198 0.400000 +2462 245 0.400000 +2462 303 0.400000 +2462 389 0.400000 +2462 483 0.400000 +2462 582 0.400000 +2462 592 0.400000 +2462 609 0.400000 +2462 625 0.400000 +2462 647 0.400000 +2462 727 0.400000 +2462 736 0.400000 +2462 752 0.400000 +2462 788 0.400000 +2463 35 0.400000 +2463 50 0.400000 +2463 129 0.400000 +2463 225 0.400000 +2463 229 0.400000 +2463 322 0.400000 +2463 329 0.400000 +2463 362 0.400000 +2463 378 0.400000 +2463 435 0.400000 +2463 529 0.400000 +2463 552 0.400000 +2463 573 0.400000 +2463 580 0.400000 +2463 586 0.400000 +2463 603 0.400000 +2463 700 0.400000 +2463 706 0.400000 +2463 796 0.400000 +2464 13 0.400000 +2464 46 0.400000 +2464 73 0.400000 +2464 79 0.400000 +2464 133 0.400000 +2464 214 0.400000 +2464 226 0.400000 +2464 313 0.400000 +2464 568 0.400000 +2464 688 0.400000 +2464 733 0.400000 +2465 3 0.400000 +2465 10 0.400000 +2465 11 0.400000 +2465 86 0.400000 +2465 87 0.400000 +2465 150 0.400000 +2465 153 0.400000 +2465 172 0.400000 +2465 285 0.400000 +2465 352 0.400000 +2465 495 0.400000 +2465 519 0.400000 +2465 539 0.400000 +2465 647 0.400000 +2465 692 0.400000 +2466 14 0.400000 +2466 19 0.400000 +2466 21 0.400000 +2466 80 0.400000 +2466 112 0.400000 +2466 117 0.400000 +2466 118 0.400000 +2466 129 0.400000 +2466 229 0.400000 +2466 258 0.400000 +2466 300 0.400000 +2466 304 0.400000 +2466 454 0.400000 +2466 486 0.400000 +2466 501 0.400000 +2466 579 0.400000 +2466 598 0.400000 +2466 743 0.400000 +2466 797 0.400000 +2467 60 0.400000 +2467 93 0.400000 +2467 142 0.400000 +2467 193 0.400000 +2467 276 0.400000 +2467 343 0.400000 +2467 444 0.400000 +2467 466 0.400000 +2467 613 0.400000 +2467 695 0.400000 +2467 760 0.400000 +2468 26 0.400000 +2468 60 0.400000 +2468 102 0.400000 +2468 112 0.400000 +2468 202 0.400000 +2468 293 0.400000 +2468 435 0.400000 +2468 442 0.400000 +2468 494 0.400000 +2468 626 0.400000 +2468 633 0.400000 +2468 639 0.400000 +2468 650 0.400000 +2468 695 0.400000 +2468 719 0.400000 +2468 786 0.400000 +2469 47 0.400000 +2469 103 0.400000 +2469 110 0.400000 +2469 122 0.400000 +2469 142 0.400000 +2469 237 0.400000 +2469 241 0.400000 +2469 279 0.400000 +2469 318 0.400000 +2469 357 0.400000 +2469 498 0.400000 +2469 636 0.400000 +2469 778 0.400000 +2470 8 0.400000 +2470 163 0.400000 +2470 212 0.400000 +2470 234 0.400000 +2470 280 0.400000 +2470 302 0.400000 +2470 303 0.400000 +2470 338 0.400000 +2470 339 0.400000 +2470 347 0.400000 +2470 439 0.400000 +2470 501 0.400000 +2470 556 0.400000 +2470 605 0.400000 +2470 680 0.400000 +2470 738 0.400000 +2470 739 0.400000 +2471 96 0.400000 +2471 260 0.400000 +2471 274 0.400000 +2471 349 0.400000 +2471 387 0.400000 +2471 443 0.400000 +2471 574 0.400000 +2471 607 0.400000 +2471 608 0.400000 +2471 685 0.400000 +2471 689 0.400000 +2471 698 0.400000 +2471 721 0.400000 +2471 734 0.400000 +2471 753 0.400000 +2471 758 0.400000 +2472 11 0.400000 +2472 84 0.400000 +2472 155 0.400000 +2472 234 0.400000 +2472 285 0.400000 +2472 389 0.400000 +2472 433 0.400000 +2472 476 0.400000 +2472 504 0.400000 +2472 650 0.400000 +2472 763 0.400000 +2473 14 0.400000 +2473 27 0.400000 +2473 91 0.400000 +2473 105 0.400000 +2473 490 0.400000 +2473 554 0.400000 +2473 582 0.400000 +2473 622 0.400000 +2473 632 0.400000 +2473 676 0.400000 +2473 700 0.400000 +2473 733 0.400000 +2473 799 0.400000 +2474 151 0.400000 +2474 158 0.400000 +2474 189 0.400000 +2474 308 0.400000 +2474 347 0.400000 +2474 357 0.400000 +2474 415 0.400000 +2474 432 0.400000 +2474 497 0.400000 +2474 566 0.400000 +2474 650 0.400000 +2474 671 0.400000 +2474 740 0.400000 +2474 757 0.400000 +2474 759 0.400000 +2475 78 0.400000 +2475 90 0.400000 +2475 96 0.400000 +2475 128 0.400000 +2475 142 0.400000 +2475 146 0.400000 +2475 164 0.400000 +2475 166 0.400000 +2475 328 0.400000 +2475 375 0.400000 +2475 419 0.400000 +2475 433 0.400000 +2475 454 0.400000 +2475 624 0.400000 +2475 753 0.400000 +2476 93 0.400000 +2476 121 0.400000 +2476 148 0.400000 +2476 151 0.400000 +2476 185 0.400000 +2476 298 0.400000 +2476 326 0.400000 +2476 366 0.400000 +2476 544 0.400000 +2476 605 0.400000 +2476 660 0.400000 +2476 762 0.400000 +2476 782 0.400000 +2476 788 0.400000 +2477 44 0.400000 +2477 104 0.400000 +2477 123 0.400000 +2477 139 0.400000 +2477 220 0.400000 +2477 264 0.400000 +2477 338 0.400000 +2477 384 0.400000 +2477 393 0.400000 +2477 459 0.400000 +2477 481 0.400000 +2477 496 0.400000 +2477 560 0.400000 +2477 613 0.400000 +2477 648 0.400000 +2477 660 0.400000 +2477 671 0.400000 +2477 685 0.400000 +2477 699 0.400000 +2477 767 0.400000 +2477 793 0.400000 +2478 15 0.400000 +2478 153 0.400000 +2478 233 0.400000 +2478 235 0.400000 +2478 252 0.400000 +2478 335 0.400000 +2478 344 0.400000 +2478 423 0.400000 +2478 439 0.400000 +2478 568 0.400000 +2478 628 0.400000 +2478 702 0.400000 +2478 717 0.400000 +2478 757 0.400000 +2478 781 0.400000 +2479 34 0.400000 +2479 176 0.400000 +2479 259 0.400000 +2479 346 0.400000 +2479 354 0.400000 +2479 435 0.400000 +2479 485 0.400000 +2479 488 0.400000 +2479 501 0.400000 +2479 515 0.400000 +2479 582 0.400000 +2479 628 0.400000 +2479 642 0.400000 +2479 799 0.400000 +2480 19 0.400000 +2480 195 0.400000 +2480 220 0.400000 +2480 291 0.400000 +2480 394 0.400000 +2480 433 0.400000 +2480 555 0.400000 +2480 689 0.400000 +2481 31 0.400000 +2481 71 0.400000 +2481 87 0.400000 +2481 120 0.400000 +2481 149 0.400000 +2481 205 0.400000 +2481 234 0.400000 +2481 249 0.400000 +2481 293 0.400000 +2481 379 0.400000 +2481 412 0.400000 +2481 446 0.400000 +2481 753 0.400000 +2482 171 0.400000 +2482 220 0.400000 +2482 260 0.400000 +2482 433 0.400000 +2482 438 0.400000 +2482 491 0.400000 +2482 570 0.400000 +2482 622 0.400000 +2482 719 0.400000 +2482 767 0.400000 +2483 45 0.400000 +2483 203 0.400000 +2483 275 0.400000 +2483 429 0.400000 +2483 435 0.400000 +2483 451 0.400000 +2483 520 0.400000 +2483 530 0.400000 +2483 578 0.400000 +2484 23 0.400000 +2484 30 0.400000 +2484 77 0.400000 +2484 168 0.400000 +2484 190 0.400000 +2484 288 0.400000 +2484 289 0.400000 +2484 349 0.400000 +2484 409 0.400000 +2484 447 0.400000 +2484 460 0.400000 +2484 650 0.400000 +2484 659 0.400000 +2484 766 0.400000 +2485 116 0.400000 +2485 153 0.400000 +2485 225 0.400000 +2485 266 0.400000 +2485 274 0.400000 +2485 362 0.400000 +2485 378 0.400000 +2485 385 0.400000 +2485 395 0.400000 +2485 716 0.400000 +2485 773 0.400000 +2486 11 0.400000 +2486 14 0.400000 +2486 43 0.400000 +2486 61 0.400000 +2486 67 0.400000 +2486 81 0.400000 +2486 99 0.400000 +2486 138 0.400000 +2486 168 0.400000 +2486 214 0.400000 +2486 221 0.400000 +2486 257 0.400000 +2486 283 0.400000 +2486 359 0.400000 +2486 381 0.400000 +2486 427 0.400000 +2486 704 0.400000 +2486 752 0.400000 +2486 794 0.400000 +2487 26 0.400000 +2487 53 0.400000 +2487 175 0.400000 +2487 197 0.400000 +2487 224 0.400000 +2487 226 0.400000 +2487 260 0.400000 +2487 362 0.400000 +2487 384 0.400000 +2487 424 0.400000 +2487 487 0.400000 +2487 508 0.400000 +2487 565 0.400000 +2487 590 0.400000 +2487 595 0.400000 +2487 670 0.400000 +2487 778 0.400000 +2487 779 0.400000 +2488 14 0.400000 +2488 36 0.400000 +2488 64 0.400000 +2488 115 0.400000 +2488 161 0.400000 +2488 196 0.400000 +2488 310 0.400000 +2488 374 0.400000 +2488 479 0.400000 +2488 513 0.400000 +2488 530 0.400000 +2488 554 0.400000 +2488 740 0.400000 +2488 758 0.400000 +2488 770 0.400000 +2488 793 0.400000 +2489 67 0.400000 +2489 141 0.400000 +2489 148 0.400000 +2489 166 0.400000 +2489 168 0.400000 +2489 286 0.400000 +2489 295 0.400000 +2489 311 0.400000 +2489 373 0.400000 +2489 450 0.400000 +2489 541 0.400000 +2489 750 0.400000 +2489 776 0.400000 +2489 779 0.400000 +2489 780 0.400000 +2489 781 0.400000 +2490 3 0.400000 +2490 94 0.400000 +2490 113 0.400000 +2490 200 0.400000 +2490 263 0.400000 +2490 372 0.400000 +2490 374 0.400000 +2490 445 0.400000 +2490 485 0.400000 +2490 501 0.400000 +2490 548 0.400000 +2490 615 0.400000 +2490 697 0.400000 +2490 705 0.400000 +2490 731 0.400000 +2491 63 0.400000 +2491 132 0.400000 +2491 140 0.400000 +2491 201 0.400000 +2491 216 0.400000 +2491 245 0.400000 +2491 282 0.400000 +2491 424 0.400000 +2491 441 0.400000 +2491 456 0.400000 +2491 543 0.400000 +2491 576 0.400000 +2491 621 0.400000 +2491 648 0.400000 +2491 678 0.400000 +2491 687 0.400000 +2491 710 0.400000 +2491 743 0.400000 +2491 781 0.400000 +2492 4 0.400000 +2492 10 0.400000 +2492 130 0.400000 +2492 190 0.400000 +2492 281 0.400000 +2492 301 0.400000 +2492 370 0.400000 +2492 457 0.400000 +2492 505 0.400000 +2492 526 0.400000 +2492 626 0.400000 +2492 663 0.400000 +2492 698 0.400000 +2492 740 0.400000 +2492 742 0.400000 +2492 752 0.400000 +2493 31 0.400000 +2493 90 0.400000 +2493 111 0.400000 +2493 155 0.400000 +2493 250 0.400000 +2493 278 0.400000 +2493 339 0.400000 +2493 364 0.400000 +2493 421 0.400000 +2493 498 0.400000 +2493 610 0.400000 +2493 659 0.400000 +2493 729 0.400000 +2493 743 0.400000 +2493 769 0.400000 +2494 30 0.400000 +2494 42 0.400000 +2494 61 0.400000 +2494 177 0.400000 +2494 276 0.400000 +2494 370 0.400000 +2494 375 0.400000 +2494 519 0.400000 +2494 591 0.400000 +2494 754 0.400000 +2494 771 0.400000 +2495 124 0.400000 +2495 205 0.400000 +2495 222 0.400000 +2495 227 0.400000 +2495 229 0.400000 +2495 315 0.400000 +2495 521 0.400000 +2495 695 0.400000 +2495 700 0.400000 +2495 771 0.400000 +2496 29 0.400000 +2496 65 0.400000 +2496 91 0.400000 +2496 93 0.400000 +2496 114 0.400000 +2496 122 0.400000 +2496 207 0.400000 +2496 222 0.400000 +2496 237 0.400000 +2496 261 0.400000 +2496 278 0.400000 +2496 345 0.400000 +2496 448 0.400000 +2496 464 0.400000 +2497 365 0.400000 +2497 426 0.400000 +2497 432 0.400000 +2497 450 0.400000 +2497 471 0.400000 +2497 494 0.400000 +2497 522 0.400000 +2497 645 0.400000 +2497 679 0.400000 +2497 712 0.400000 +2498 28 0.400000 +2498 98 0.400000 +2498 99 0.400000 +2498 143 0.400000 +2498 165 0.400000 +2498 191 0.400000 +2498 228 0.400000 +2498 231 0.400000 +2498 252 0.400000 +2498 300 0.400000 +2498 385 0.400000 +2498 429 0.400000 +2498 452 0.400000 +2498 526 0.400000 +2498 611 0.400000 +2498 687 0.400000 +2498 707 0.400000 +2498 713 0.400000 +2498 756 0.400000 +2498 763 0.400000 +2499 49 0.400000 +2499 52 0.400000 +2499 73 0.400000 +2499 184 0.400000 +2499 275 0.400000 +2499 305 0.400000 +2499 321 0.400000 +2499 376 0.400000 +2499 404 0.400000 +2499 406 0.400000 +2499 411 0.400000 +2499 431 0.400000 +2499 442 0.400000 +2499 474 0.400000 +2499 490 0.400000 +2499 574 0.400000 +2499 637 0.400000 +2499 681 0.400000 +2499 737 0.400000 +2499 743 0.400000 +2499 757 0.400000 +2500 11 0.400000 +2500 52 0.400000 +2500 156 0.400000 +2500 216 0.400000 +2500 317 0.400000 +2500 329 0.400000 +2500 344 0.400000 +2500 362 0.400000 +2500 411 0.400000 +2500 414 0.400000 +2500 431 0.400000 +2500 531 0.400000 +2500 620 0.400000 +2500 646 0.400000 +2500 707 0.400000 +2500 714 0.400000 +2501 60 0.400000 +2501 61 0.400000 +2501 121 0.400000 +2501 190 0.400000 +2501 200 0.400000 +2501 201 0.400000 +2501 219 0.400000 +2501 267 0.400000 +2501 308 0.400000 +2501 316 0.400000 +2501 321 0.400000 +2501 452 0.400000 +2501 475 0.400000 +2501 594 0.400000 +2501 684 0.400000 +2501 695 0.400000 +2501 717 0.400000 +2502 206 0.400000 +2502 323 0.400000 +2502 365 0.400000 +2502 434 0.400000 +2502 437 0.400000 +2502 440 0.400000 +2502 476 0.400000 +2502 548 0.400000 +2502 566 0.400000 +2502 598 0.400000 +2502 673 0.400000 +2503 75 0.400000 +2503 242 0.400000 +2503 245 0.400000 +2503 255 0.400000 +2503 279 0.400000 +2503 341 0.400000 +2503 343 0.400000 +2503 361 0.400000 +2503 372 0.400000 +2503 475 0.400000 +2503 491 0.400000 +2503 537 0.400000 +2503 614 0.400000 +2503 637 0.400000 +2503 693 0.400000 +2503 697 0.400000 +2503 699 0.400000 +2503 708 0.400000 +2504 77 0.400000 +2504 85 0.400000 +2504 105 0.400000 +2504 130 0.400000 +2504 166 0.400000 +2504 182 0.400000 +2504 245 0.400000 +2504 290 0.400000 +2504 296 0.400000 +2504 322 0.400000 +2504 351 0.400000 +2504 368 0.400000 +2504 379 0.400000 +2504 409 0.400000 +2504 417 0.400000 +2504 500 0.400000 +2504 599 0.400000 +2504 626 0.400000 +2504 639 0.400000 +2504 798 0.400000 +2505 32 0.400000 +2505 36 0.400000 +2505 72 0.400000 +2505 172 0.400000 +2505 369 0.400000 +2505 387 0.400000 +2505 491 0.400000 +2505 512 0.400000 +2505 515 0.400000 +2505 541 0.400000 +2505 559 0.400000 +2505 681 0.400000 +2505 693 0.400000 +2506 8 0.400000 +2506 285 0.400000 +2506 331 0.400000 +2506 469 0.400000 +2506 472 0.400000 +2506 490 0.400000 +2506 527 0.400000 +2506 605 0.400000 +2506 680 0.400000 +2506 726 0.400000 +2506 730 0.400000 +2507 92 0.400000 +2507 95 0.400000 +2507 134 0.400000 +2507 192 0.400000 +2507 279 0.400000 +2507 290 0.400000 +2507 323 0.400000 +2507 363 0.400000 +2507 411 0.400000 +2507 430 0.400000 +2507 444 0.400000 +2507 454 0.400000 +2507 456 0.400000 +2507 489 0.400000 +2507 500 0.400000 +2507 549 0.400000 +2507 619 0.400000 +2507 629 0.400000 +2507 726 0.400000 +2507 796 0.400000 +2508 8 0.400000 +2508 87 0.400000 +2508 95 0.400000 +2508 134 0.400000 +2508 190 0.400000 +2508 228 0.400000 +2508 261 0.400000 +2508 342 0.400000 +2508 517 0.400000 +2508 520 0.400000 +2508 583 0.400000 +2508 633 0.400000 +2508 654 0.400000 +2508 682 0.400000 +2508 716 0.400000 +2508 756 0.400000 +2509 89 0.400000 +2509 120 0.400000 +2509 250 0.400000 +2509 368 0.400000 +2509 393 0.400000 +2509 398 0.400000 +2509 407 0.400000 +2509 430 0.400000 +2509 437 0.400000 +2509 455 0.400000 +2509 540 0.400000 +2509 548 0.400000 +2509 664 0.400000 +2509 699 0.400000 +2509 754 0.400000 +2510 27 0.400000 +2510 47 0.400000 +2510 69 0.400000 +2510 118 0.400000 +2510 164 0.400000 +2510 172 0.400000 +2510 191 0.400000 +2510 195 0.400000 +2510 258 0.400000 +2510 270 0.400000 +2510 328 0.400000 +2510 396 0.400000 +2510 422 0.400000 +2510 448 0.400000 +2510 497 0.400000 +2510 563 0.400000 +2510 646 0.400000 +2510 775 0.400000 +2511 5 0.400000 +2511 12 0.400000 +2511 47 0.400000 +2511 114 0.400000 +2511 135 0.400000 +2511 285 0.400000 +2511 340 0.400000 +2511 344 0.400000 +2511 476 0.400000 +2511 701 0.400000 +2511 717 0.400000 +2511 776 0.400000 +2512 9 0.400000 +2512 52 0.400000 +2512 68 0.400000 +2512 108 0.400000 +2512 140 0.400000 +2512 163 0.400000 +2512 178 0.400000 +2512 184 0.400000 +2512 292 0.400000 +2512 379 0.400000 +2512 531 0.400000 +2512 555 0.400000 +2512 578 0.400000 +2512 607 0.400000 +2512 651 0.400000 +2512 666 0.400000 +2513 4 0.400000 +2513 115 0.400000 +2513 182 0.400000 +2513 193 0.400000 +2513 260 0.400000 +2513 330 0.400000 +2513 332 0.400000 +2513 492 0.400000 +2513 512 0.400000 +2513 521 0.400000 +2513 527 0.400000 +2513 605 0.400000 +2513 619 0.400000 +2513 732 0.400000 +2513 762 0.400000 +2513 789 0.400000 +2514 29 0.400000 +2514 69 0.400000 +2514 149 0.400000 +2514 164 0.400000 +2514 185 0.400000 +2514 203 0.400000 +2514 263 0.400000 +2514 315 0.400000 +2514 400 0.400000 +2514 403 0.400000 +2514 416 0.400000 +2514 458 0.400000 +2514 509 0.400000 +2514 531 0.400000 +2514 578 0.400000 +2514 622 0.400000 +2514 651 0.400000 +2514 683 0.400000 +2514 717 0.400000 +2514 728 0.400000 +2514 759 0.400000 +2515 71 0.400000 +2515 88 0.400000 +2515 125 0.400000 +2515 183 0.400000 +2515 214 0.400000 +2515 241 0.400000 +2515 342 0.400000 +2515 351 0.400000 +2515 364 0.400000 +2515 508 0.400000 +2515 566 0.400000 +2515 581 0.400000 +2515 608 0.400000 +2515 641 0.400000 +2515 646 0.400000 +2515 649 0.400000 +2515 653 0.400000 +2515 724 0.400000 +2516 47 0.400000 +2516 48 0.400000 +2516 102 0.400000 +2516 378 0.400000 +2516 483 0.400000 +2516 503 0.400000 +2516 532 0.400000 +2516 537 0.400000 +2516 583 0.400000 +2516 710 0.400000 +2517 15 0.400000 +2517 115 0.400000 +2517 195 0.400000 +2517 291 0.400000 +2517 329 0.400000 +2517 332 0.400000 +2517 483 0.400000 +2517 489 0.400000 +2517 563 0.400000 +2517 649 0.400000 +2517 675 0.400000 +2517 676 0.400000 +2517 677 0.400000 +2517 684 0.400000 +2517 718 0.400000 +2518 42 0.400000 +2518 71 0.400000 +2518 112 0.400000 +2518 120 0.400000 +2518 149 0.400000 +2518 224 0.400000 +2518 233 0.400000 +2518 327 0.400000 +2518 384 0.400000 +2518 387 0.400000 +2518 433 0.400000 +2518 461 0.400000 +2518 546 0.400000 +2518 666 0.400000 +2518 773 0.400000 +2519 17 0.400000 +2519 41 0.400000 +2519 118 0.400000 +2519 147 0.400000 +2519 209 0.400000 +2519 217 0.400000 +2519 271 0.400000 +2519 325 0.400000 +2519 344 0.400000 +2519 380 0.400000 +2519 404 0.400000 +2519 519 0.400000 +2519 531 0.400000 +2519 533 0.400000 +2519 539 0.400000 +2519 558 0.400000 +2519 583 0.400000 +2519 590 0.400000 +2519 628 0.400000 +2519 653 0.400000 +2519 690 0.400000 +2519 767 0.400000 +2520 87 0.400000 +2520 89 0.400000 +2520 145 0.400000 +2520 199 0.400000 +2520 216 0.400000 +2520 241 0.400000 +2520 355 0.400000 +2520 370 0.400000 +2520 415 0.400000 +2520 460 0.400000 +2520 485 0.400000 +2520 489 0.400000 +2520 503 0.400000 +2520 507 0.400000 +2520 558 0.400000 +2520 583 0.400000 +2520 648 0.400000 +2520 696 0.400000 +2520 727 0.400000 +2521 121 0.400000 +2521 216 0.400000 +2521 219 0.400000 +2521 247 0.400000 +2521 328 0.400000 +2521 359 0.400000 +2521 375 0.400000 +2521 379 0.400000 +2521 388 0.400000 +2521 452 0.400000 +2521 576 0.400000 +2521 703 0.400000 +2522 64 0.400000 +2522 97 0.400000 +2522 98 0.400000 +2522 339 0.400000 +2522 340 0.400000 +2522 387 0.400000 +2522 427 0.400000 +2522 443 0.400000 +2522 605 0.400000 +2522 647 0.400000 +2522 650 0.400000 +2522 683 0.400000 +2522 707 0.400000 +2522 710 0.400000 +2522 713 0.400000 +2523 30 0.400000 +2523 50 0.400000 +2523 57 0.400000 +2523 101 0.400000 +2523 106 0.400000 +2523 251 0.400000 +2523 310 0.400000 +2523 541 0.400000 +2523 616 0.400000 +2524 10 0.400000 +2524 53 0.400000 +2524 86 0.400000 +2524 183 0.400000 +2524 202 0.400000 +2524 221 0.400000 +2524 228 0.400000 +2524 254 0.400000 +2524 302 0.400000 +2524 304 0.400000 +2524 430 0.400000 +2524 470 0.400000 +2524 529 0.400000 +2524 544 0.400000 +2524 636 0.400000 +2524 638 0.400000 +2524 640 0.400000 +2524 658 0.400000 +2524 668 0.400000 +2524 734 0.400000 +2524 759 0.400000 +2524 780 0.400000 +2524 798 0.400000 +2524 799 0.400000 +2525 39 0.400000 +2525 75 0.400000 +2525 111 0.400000 +2525 140 0.400000 +2525 189 0.400000 +2525 233 0.400000 +2525 248 0.400000 +2525 297 0.400000 +2525 318 0.400000 +2525 406 0.400000 +2525 522 0.400000 +2525 543 0.400000 +2525 574 0.400000 +2525 582 0.400000 +2525 667 0.400000 +2525 695 0.400000 +2525 700 0.400000 +2525 765 0.400000 +2525 781 0.400000 +2526 106 0.400000 +2526 132 0.400000 +2526 379 0.400000 +2526 434 0.400000 +2526 527 0.400000 +2526 540 0.400000 +2526 549 0.400000 +2526 572 0.400000 +2526 591 0.400000 +2526 691 0.400000 +2526 732 0.400000 +2526 736 0.400000 +2526 769 0.400000 +2526 779 0.400000 +2527 19 0.400000 +2527 94 0.400000 +2527 161 0.400000 +2527 220 0.400000 +2527 307 0.400000 +2527 462 0.400000 +2527 622 0.400000 +2527 625 0.400000 +2527 703 0.400000 +2527 716 0.400000 +2527 721 0.400000 +2527 726 0.400000 +2527 763 0.400000 +2528 15 0.400000 +2528 43 0.400000 +2528 85 0.400000 +2528 97 0.400000 +2528 104 0.400000 +2528 256 0.400000 +2528 259 0.400000 +2528 304 0.400000 +2528 349 0.400000 +2528 469 0.400000 +2528 493 0.400000 +2528 570 0.400000 +2528 708 0.400000 +2528 740 0.400000 +2528 744 0.400000 +2529 25 0.400000 +2529 41 0.400000 +2529 71 0.400000 +2529 72 0.400000 +2529 162 0.400000 +2529 178 0.400000 +2529 187 0.400000 +2529 224 0.400000 +2529 299 0.400000 +2529 407 0.400000 +2529 440 0.400000 +2529 443 0.400000 +2529 464 0.400000 +2529 542 0.400000 +2529 631 0.400000 +2530 172 0.400000 +2530 228 0.400000 +2530 282 0.400000 +2530 379 0.400000 +2530 418 0.400000 +2530 421 0.400000 +2530 425 0.400000 +2530 496 0.400000 +2530 554 0.400000 +2530 592 0.400000 +2530 653 0.400000 +2530 693 0.400000 +2530 725 0.400000 +2530 782 0.400000 +2531 17 0.400000 +2531 31 0.400000 +2531 32 0.400000 +2531 50 0.400000 +2531 95 0.400000 +2531 138 0.400000 +2531 222 0.400000 +2531 248 0.400000 +2531 326 0.400000 +2531 333 0.400000 +2531 386 0.400000 +2531 413 0.400000 +2531 546 0.400000 +2531 555 0.400000 +2531 624 0.400000 +2531 683 0.400000 +2531 743 0.400000 +2532 1 0.400000 +2532 198 0.400000 +2532 238 0.400000 +2532 279 0.400000 +2532 290 0.400000 +2532 302 0.400000 +2532 359 0.400000 +2532 415 0.400000 +2532 498 0.400000 +2532 500 0.400000 +2532 636 0.400000 +2532 726 0.400000 +2532 769 0.400000 +2533 66 0.400000 +2533 116 0.400000 +2533 117 0.400000 +2533 121 0.400000 +2533 166 0.400000 +2533 213 0.400000 +2533 218 0.400000 +2533 233 0.400000 +2533 258 0.400000 +2533 343 0.400000 +2533 589 0.400000 +2533 624 0.400000 +2533 721 0.400000 +2533 759 0.400000 +2534 11 0.400000 +2534 20 0.400000 +2534 41 0.400000 +2534 135 0.400000 +2534 154 0.400000 +2534 180 0.400000 +2534 207 0.400000 +2534 294 0.400000 +2534 301 0.400000 +2534 305 0.400000 +2534 412 0.400000 +2534 451 0.400000 +2534 484 0.400000 +2534 554 0.400000 +2534 621 0.400000 +2535 69 0.400000 +2535 88 0.400000 +2535 127 0.400000 +2535 375 0.400000 +2535 380 0.400000 +2535 454 0.400000 +2535 555 0.400000 +2535 568 0.400000 +2535 582 0.400000 +2535 659 0.400000 +2535 712 0.400000 +2535 730 0.400000 +2536 32 0.400000 +2536 95 0.400000 +2536 109 0.400000 +2536 114 0.400000 +2536 136 0.400000 +2536 213 0.400000 +2536 290 0.400000 +2536 349 0.400000 +2536 413 0.400000 +2536 426 0.400000 +2536 520 0.400000 +2536 582 0.400000 +2536 625 0.400000 +2536 692 0.400000 +2536 722 0.400000 +2536 765 0.400000 +2537 3 0.400000 +2537 80 0.400000 +2537 125 0.400000 +2537 170 0.400000 +2537 178 0.400000 +2537 259 0.400000 +2537 282 0.400000 +2537 313 0.400000 +2537 363 0.400000 +2537 379 0.400000 +2537 382 0.400000 +2537 389 0.400000 +2537 559 0.400000 +2537 619 0.400000 +2537 626 0.400000 +2537 668 0.400000 +2537 779 0.400000 +2538 14 0.400000 +2538 60 0.400000 +2538 106 0.400000 +2538 120 0.400000 +2538 127 0.400000 +2538 160 0.400000 +2538 189 0.400000 +2538 246 0.400000 +2538 414 0.400000 +2538 420 0.400000 +2538 459 0.400000 +2538 481 0.400000 +2538 590 0.400000 +2538 685 0.400000 +2538 727 0.400000 +2538 745 0.400000 +2538 788 0.400000 +2539 49 0.400000 +2539 65 0.400000 +2539 94 0.400000 +2539 114 0.400000 +2539 167 0.400000 +2539 248 0.400000 +2539 300 0.400000 +2539 314 0.400000 +2539 351 0.400000 +2539 422 0.400000 +2539 490 0.400000 +2539 528 0.400000 +2539 598 0.400000 +2539 743 0.400000 +2539 757 0.400000 +2539 776 0.400000 +2539 778 0.400000 +2539 785 0.400000 +2539 790 0.400000 +2540 32 0.400000 +2540 50 0.400000 +2540 52 0.400000 +2540 58 0.400000 +2540 116 0.400000 +2540 328 0.400000 +2540 361 0.400000 +2540 385 0.400000 +2540 485 0.400000 +2540 539 0.400000 +2540 543 0.400000 +2540 580 0.400000 +2540 603 0.400000 +2540 605 0.400000 +2540 610 0.400000 +2540 630 0.400000 +2540 687 0.400000 +2541 5 0.400000 +2541 107 0.400000 +2541 121 0.400000 +2541 141 0.400000 +2541 268 0.400000 +2541 381 0.400000 +2541 416 0.400000 +2541 513 0.400000 +2541 514 0.400000 +2541 541 0.400000 +2541 573 0.400000 +2541 578 0.400000 +2541 582 0.400000 +2541 661 0.400000 +2541 699 0.400000 +2541 701 0.400000 +2541 738 0.400000 +2542 1 0.400000 +2542 17 0.400000 +2542 25 0.400000 +2542 96 0.400000 +2542 99 0.400000 +2542 111 0.400000 +2542 116 0.400000 +2542 135 0.400000 +2542 142 0.400000 +2542 158 0.400000 +2542 297 0.400000 +2542 350 0.400000 +2542 382 0.400000 +2542 556 0.400000 +2542 569 0.400000 +2542 586 0.400000 +2542 628 0.400000 +2542 765 0.400000 +2543 86 0.400000 +2543 104 0.400000 +2543 227 0.400000 +2543 235 0.400000 +2543 405 0.400000 +2543 414 0.400000 +2543 484 0.400000 +2543 507 0.400000 +2543 549 0.400000 +2543 639 0.400000 +2543 703 0.400000 +2543 706 0.400000 +2543 754 0.400000 +2544 123 0.400000 +2544 166 0.400000 +2544 182 0.400000 +2544 191 0.400000 +2544 277 0.400000 +2544 305 0.400000 +2544 344 0.400000 +2544 458 0.400000 +2544 488 0.400000 +2544 507 0.400000 +2544 586 0.400000 +2544 606 0.400000 +2544 655 0.400000 +2545 97 0.400000 +2545 140 0.400000 +2545 150 0.400000 +2545 159 0.400000 +2545 165 0.400000 +2545 171 0.400000 +2545 201 0.400000 +2545 208 0.400000 +2545 246 0.400000 +2545 264 0.400000 +2545 327 0.400000 +2545 331 0.400000 +2545 536 0.400000 +2545 548 0.400000 +2545 595 0.400000 +2545 624 0.400000 +2545 668 0.400000 +2545 751 0.400000 +2546 49 0.400000 +2546 72 0.400000 +2546 73 0.400000 +2546 121 0.400000 +2546 144 0.400000 +2546 163 0.400000 +2546 183 0.400000 +2546 193 0.400000 +2546 345 0.400000 +2546 398 0.400000 +2546 520 0.400000 +2546 546 0.400000 +2546 626 0.400000 +2546 629 0.400000 +2546 713 0.400000 +2547 66 0.400000 +2547 96 0.400000 +2547 173 0.400000 +2547 211 0.400000 +2547 353 0.400000 +2547 391 0.400000 +2547 432 0.400000 +2547 470 0.400000 +2547 693 0.400000 +2548 55 0.400000 +2548 227 0.400000 +2548 378 0.400000 +2548 388 0.400000 +2548 427 0.400000 +2548 434 0.400000 +2548 467 0.400000 +2548 485 0.400000 +2548 560 0.400000 +2548 588 0.400000 +2548 638 0.400000 +2548 707 0.400000 +2548 768 0.400000 +2548 783 0.400000 +2549 17 0.400000 +2549 25 0.400000 +2549 95 0.400000 +2549 106 0.400000 +2549 157 0.400000 +2549 225 0.400000 +2549 247 0.400000 +2549 298 0.400000 +2549 357 0.400000 +2549 429 0.400000 +2549 505 0.400000 +2549 586 0.400000 +2549 608 0.400000 +2549 616 0.400000 +2549 666 0.400000 +2549 761 0.400000 +2550 15 0.400000 +2550 32 0.400000 +2550 89 0.400000 +2550 156 0.400000 +2550 312 0.400000 +2550 347 0.400000 +2550 353 0.400000 +2550 434 0.400000 +2550 491 0.400000 +2550 589 0.400000 +2550 592 0.400000 +2550 602 0.400000 +2550 629 0.400000 +2550 646 0.400000 +2550 699 0.400000 +2550 777 0.400000 +2551 16 0.400000 +2551 107 0.400000 +2551 168 0.400000 +2551 208 0.400000 +2551 230 0.400000 +2551 231 0.400000 +2551 281 0.400000 +2551 285 0.400000 +2551 381 0.400000 +2551 414 0.400000 +2551 416 0.400000 +2551 455 0.400000 +2551 470 0.400000 +2551 547 0.400000 +2551 550 0.400000 +2551 764 0.400000 +2551 799 0.400000 +2552 97 0.400000 +2552 100 0.400000 +2552 135 0.400000 +2552 174 0.400000 +2552 262 0.400000 +2552 331 0.400000 +2552 344 0.400000 +2552 393 0.400000 +2552 402 0.400000 +2552 443 0.400000 +2552 546 0.400000 +2552 655 0.400000 +2552 731 0.400000 +2552 773 0.400000 +2552 787 0.400000 +2552 798 0.400000 +2553 6 0.400000 +2553 23 0.400000 +2553 74 0.400000 +2553 103 0.400000 +2553 144 0.400000 +2553 242 0.400000 +2553 343 0.400000 +2553 416 0.400000 +2553 562 0.400000 +2553 607 0.400000 +2553 635 0.400000 +2553 668 0.400000 +2553 696 0.400000 +2553 710 0.400000 +2553 738 0.400000 +2553 744 0.400000 +2553 770 0.400000 +2554 134 0.400000 +2554 217 0.400000 +2554 276 0.400000 +2554 296 0.400000 +2554 438 0.400000 +2554 504 0.400000 +2554 523 0.400000 +2554 575 0.400000 +2554 589 0.400000 +2554 608 0.400000 +2554 610 0.400000 +2554 629 0.400000 +2554 685 0.400000 +2554 708 0.400000 +2554 725 0.400000 +2554 759 0.400000 +2555 133 0.400000 +2555 195 0.400000 +2555 241 0.400000 +2555 247 0.400000 +2555 255 0.400000 +2555 256 0.400000 +2555 370 0.400000 +2555 380 0.400000 +2555 450 0.400000 +2555 481 0.400000 +2555 681 0.400000 +2555 682 0.400000 +2555 720 0.400000 +2555 731 0.400000 +2556 22 0.400000 +2556 70 0.400000 +2556 106 0.400000 +2556 311 0.400000 +2556 321 0.400000 +2556 361 0.400000 +2556 365 0.400000 +2556 451 0.400000 +2556 504 0.400000 +2556 609 0.400000 +2556 654 0.400000 +2556 682 0.400000 +2556 687 0.400000 +2556 727 0.400000 +2556 733 0.400000 +2557 13 0.400000 +2557 95 0.400000 +2557 116 0.400000 +2557 148 0.400000 +2557 163 0.400000 +2557 198 0.400000 +2557 215 0.400000 +2557 280 0.400000 +2557 309 0.400000 +2557 344 0.400000 +2557 369 0.400000 +2557 403 0.400000 +2557 450 0.400000 +2557 504 0.400000 +2557 616 0.400000 +2557 704 0.400000 +2557 707 0.400000 +2557 709 0.400000 +2557 714 0.400000 +2558 18 0.400000 +2558 90 0.400000 +2558 186 0.400000 +2558 190 0.400000 +2558 226 0.400000 +2558 239 0.400000 +2558 303 0.400000 +2558 310 0.400000 +2558 348 0.400000 +2558 405 0.400000 +2558 528 0.400000 +2558 646 0.400000 +2558 671 0.400000 +2558 702 0.400000 +2558 726 0.400000 +2558 740 0.400000 +2559 5 0.400000 +2559 68 0.400000 +2559 69 0.400000 +2559 178 0.400000 +2559 196 0.400000 +2559 265 0.400000 +2559 299 0.400000 +2559 380 0.400000 +2559 435 0.400000 +2559 561 0.400000 +2559 603 0.400000 +2559 691 0.400000 +2559 708 0.400000 +2559 717 0.400000 +2559 788 0.400000 +2560 98 0.400000 +2560 100 0.400000 +2560 117 0.400000 +2560 163 0.400000 +2560 165 0.400000 +2560 210 0.400000 +2560 253 0.400000 +2560 288 0.400000 +2560 291 0.400000 +2560 294 0.400000 +2560 333 0.400000 +2560 348 0.400000 +2560 360 0.400000 +2560 375 0.400000 +2560 395 0.400000 +2560 399 0.400000 +2560 405 0.400000 +2560 455 0.400000 +2560 474 0.400000 +2560 563 0.400000 +2560 587 0.400000 +2560 705 0.400000 +2560 725 0.400000 +2560 749 0.400000 +2560 751 0.400000 +2560 761 0.400000 +2560 784 0.400000 +2561 18 0.400000 +2561 89 0.400000 +2561 152 0.400000 +2561 163 0.400000 +2561 203 0.400000 +2561 231 0.400000 +2561 248 0.400000 +2561 325 0.400000 +2561 335 0.400000 +2561 352 0.400000 +2561 367 0.400000 +2561 411 0.400000 +2561 428 0.400000 +2561 474 0.400000 +2561 488 0.400000 +2561 499 0.400000 +2561 504 0.400000 +2561 577 0.400000 +2561 618 0.400000 +2561 677 0.400000 +2561 698 0.400000 +2561 747 0.400000 +2561 790 0.400000 +2561 791 0.400000 +2562 22 0.400000 +2562 93 0.400000 +2562 119 0.400000 +2562 136 0.400000 +2562 140 0.400000 +2562 152 0.400000 +2562 191 0.400000 +2562 199 0.400000 +2562 223 0.400000 +2562 250 0.400000 +2562 275 0.400000 +2562 282 0.400000 +2562 337 0.400000 +2562 351 0.400000 +2562 361 0.400000 +2562 404 0.400000 +2562 418 0.400000 +2562 435 0.400000 +2562 514 0.400000 +2562 519 0.400000 +2562 546 0.400000 +2562 589 0.400000 +2562 610 0.400000 +2562 616 0.400000 +2562 636 0.400000 +2562 690 0.400000 +2562 714 0.400000 +2562 715 0.400000 +2562 758 0.400000 +2563 21 0.400000 +2563 24 0.400000 +2563 105 0.400000 +2563 126 0.400000 +2563 174 0.400000 +2563 195 0.400000 +2563 289 0.400000 +2563 317 0.400000 +2563 328 0.400000 +2563 334 0.400000 +2563 373 0.400000 +2563 411 0.400000 +2563 442 0.400000 +2563 473 0.400000 +2563 476 0.400000 +2563 537 0.400000 +2563 538 0.400000 +2563 586 0.400000 +2563 632 0.400000 +2563 700 0.400000 +2563 733 0.400000 +2564 51 0.400000 +2564 65 0.400000 +2564 240 0.400000 +2564 257 0.400000 +2564 304 0.400000 +2564 342 0.400000 +2564 396 0.400000 +2564 427 0.400000 +2564 452 0.400000 +2564 638 0.400000 +2564 698 0.400000 +2564 699 0.400000 +2564 719 0.400000 +2565 19 0.400000 +2565 106 0.400000 +2565 119 0.400000 +2565 124 0.400000 +2565 219 0.400000 +2565 238 0.400000 +2565 240 0.400000 +2565 243 0.400000 +2565 255 0.400000 +2565 272 0.400000 +2565 321 0.400000 +2565 349 0.400000 +2565 441 0.400000 +2565 516 0.400000 +2565 580 0.400000 +2565 713 0.400000 +2565 724 0.400000 +2566 43 0.400000 +2566 60 0.400000 +2566 174 0.400000 +2566 194 0.400000 +2566 311 0.400000 +2566 404 0.400000 +2566 437 0.400000 +2566 560 0.400000 +2566 574 0.400000 +2566 580 0.400000 +2566 631 0.400000 +2566 670 0.400000 +2566 680 0.400000 +2566 705 0.400000 +2566 727 0.400000 +2566 745 0.400000 +2566 765 0.400000 +2567 9 0.400000 +2567 69 0.400000 +2567 140 0.400000 +2567 172 0.400000 +2567 236 0.400000 +2567 269 0.400000 +2567 293 0.400000 +2567 322 0.400000 +2567 327 0.400000 +2567 345 0.400000 +2567 370 0.400000 +2567 456 0.400000 +2567 503 0.400000 +2567 524 0.400000 +2567 561 0.400000 +2567 571 0.400000 +2567 759 0.400000 +2567 788 0.400000 +2567 799 0.400000 +2568 13 0.400000 +2568 56 0.400000 +2568 101 0.400000 +2568 219 0.400000 +2568 256 0.400000 +2568 290 0.400000 +2568 338 0.400000 +2568 358 0.400000 +2568 428 0.400000 +2568 447 0.400000 +2568 548 0.400000 +2568 571 0.400000 +2568 703 0.400000 +2569 1 0.400000 +2569 19 0.400000 +2569 92 0.400000 +2569 121 0.400000 +2569 169 0.400000 +2569 219 0.400000 +2569 286 0.400000 +2569 318 0.400000 +2569 339 0.400000 +2569 381 0.400000 +2569 417 0.400000 +2569 431 0.400000 +2569 471 0.400000 +2569 476 0.400000 +2569 525 0.400000 +2569 537 0.400000 +2569 772 0.400000 +2570 21 0.400000 +2570 48 0.400000 +2570 53 0.400000 +2570 245 0.400000 +2570 352 0.400000 +2570 377 0.400000 +2570 385 0.400000 +2570 393 0.400000 +2570 575 0.400000 +2570 657 0.400000 +2570 664 0.400000 +2570 778 0.400000 +2570 793 0.400000 +2571 42 0.400000 +2571 43 0.400000 +2571 187 0.400000 +2571 221 0.400000 +2571 278 0.400000 +2571 290 0.400000 +2571 295 0.400000 +2571 310 0.400000 +2571 311 0.400000 +2571 352 0.400000 +2571 355 0.400000 +2571 431 0.400000 +2571 436 0.400000 +2571 439 0.400000 +2571 552 0.400000 +2571 604 0.400000 +2571 657 0.400000 +2571 665 0.400000 +2571 719 0.400000 +2571 751 0.400000 +2572 81 0.400000 +2572 123 0.400000 +2572 209 0.400000 +2572 212 0.400000 +2572 288 0.400000 +2572 495 0.400000 +2572 504 0.400000 +2572 559 0.400000 +2572 664 0.400000 +2572 701 0.400000 +2572 762 0.400000 +2573 85 0.400000 +2573 234 0.400000 +2573 371 0.400000 +2573 530 0.400000 +2573 543 0.400000 +2574 106 0.400000 +2574 108 0.400000 +2574 135 0.400000 +2574 191 0.400000 +2574 201 0.400000 +2574 215 0.400000 +2574 221 0.400000 +2574 260 0.400000 +2574 265 0.400000 +2574 321 0.400000 +2574 330 0.400000 +2574 415 0.400000 +2574 430 0.400000 +2574 440 0.400000 +2574 559 0.400000 +2574 593 0.400000 +2574 661 0.400000 +2574 687 0.400000 +2575 9 0.400000 +2575 17 0.400000 +2575 18 0.400000 +2575 50 0.400000 +2575 390 0.400000 +2575 459 0.400000 +2575 462 0.400000 +2575 502 0.400000 +2575 514 0.400000 +2575 536 0.400000 +2575 570 0.400000 +2575 603 0.400000 +2575 613 0.400000 +2575 738 0.400000 +2575 781 0.400000 +2576 93 0.400000 +2576 116 0.400000 +2576 250 0.400000 +2576 260 0.400000 +2576 274 0.400000 +2576 304 0.400000 +2576 351 0.400000 +2576 355 0.400000 +2576 361 0.400000 +2576 366 0.400000 +2576 410 0.400000 +2576 475 0.400000 +2576 506 0.400000 +2576 517 0.400000 +2576 520 0.400000 +2576 650 0.400000 +2576 669 0.400000 +2576 695 0.400000 +2576 745 0.400000 +2577 38 0.400000 +2577 76 0.400000 +2577 131 0.400000 +2577 237 0.400000 +2577 322 0.400000 +2577 326 0.400000 +2577 422 0.400000 +2577 485 0.400000 +2577 504 0.400000 +2577 600 0.400000 +2577 653 0.400000 +2578 10 0.400000 +2578 65 0.400000 +2578 86 0.400000 +2578 91 0.400000 +2578 132 0.400000 +2578 148 0.400000 +2578 156 0.400000 +2578 177 0.400000 +2578 219 0.400000 +2578 269 0.400000 +2578 369 0.400000 +2578 580 0.400000 +2578 637 0.400000 +2578 685 0.400000 +2578 686 0.400000 +2578 798 0.400000 +2579 49 0.400000 +2579 79 0.400000 +2579 108 0.400000 +2579 237 0.400000 +2579 262 0.400000 +2579 293 0.400000 +2579 336 0.400000 +2579 431 0.400000 +2579 483 0.400000 +2579 521 0.400000 +2579 564 0.400000 +2579 652 0.400000 +2579 699 0.400000 +2579 707 0.400000 +2580 121 0.400000 +2580 386 0.400000 +2580 390 0.400000 +2580 406 0.400000 +2580 439 0.400000 +2580 469 0.400000 +2580 484 0.400000 +2580 511 0.400000 +2580 512 0.400000 +2580 514 0.400000 +2580 676 0.400000 +2580 716 0.400000 +2580 730 0.400000 +2580 741 0.400000 +2580 749 0.400000 +2580 795 0.400000 +2581 22 0.400000 +2581 34 0.400000 +2581 196 0.400000 +2581 255 0.400000 +2581 261 0.400000 +2581 337 0.400000 +2581 407 0.400000 +2581 478 0.400000 +2581 544 0.400000 +2581 593 0.400000 +2581 625 0.400000 +2581 635 0.400000 +2581 682 0.400000 +2581 734 0.400000 +2581 783 0.400000 +2582 8 0.400000 +2582 30 0.400000 +2582 44 0.400000 +2582 56 0.400000 +2582 65 0.400000 +2582 88 0.400000 +2582 95 0.400000 +2582 108 0.400000 +2582 128 0.400000 +2582 138 0.400000 +2582 154 0.400000 +2582 159 0.400000 +2582 178 0.400000 +2582 209 0.400000 +2582 280 0.400000 +2582 301 0.400000 +2582 333 0.400000 +2582 415 0.400000 +2582 428 0.400000 +2582 497 0.400000 +2582 504 0.400000 +2582 543 0.400000 +2582 550 0.400000 +2582 679 0.400000 +2582 693 0.400000 +2582 697 0.400000 +2583 124 0.400000 +2583 139 0.400000 +2583 148 0.400000 +2583 161 0.400000 +2583 164 0.400000 +2583 199 0.400000 +2583 203 0.400000 +2583 263 0.400000 +2583 392 0.400000 +2583 419 0.400000 +2583 439 0.400000 +2583 441 0.400000 +2583 487 0.400000 +2583 710 0.400000 +2583 765 0.400000 +2583 768 0.400000 +2584 29 0.400000 +2584 65 0.400000 +2584 81 0.400000 +2584 132 0.400000 +2584 147 0.400000 +2584 180 0.400000 +2584 203 0.400000 +2584 222 0.400000 +2584 424 0.400000 +2584 453 0.400000 +2584 469 0.400000 +2584 484 0.400000 +2584 563 0.400000 +2584 605 0.400000 +2584 617 0.400000 +2584 643 0.400000 +2584 645 0.400000 +2584 695 0.400000 +2584 724 0.400000 +2584 753 0.400000 +2584 783 0.400000 +2585 35 0.400000 +2585 163 0.400000 +2585 186 0.400000 +2585 190 0.400000 +2585 207 0.400000 +2585 220 0.400000 +2585 295 0.400000 +2585 372 0.400000 +2585 385 0.400000 +2585 401 0.400000 +2585 433 0.400000 +2585 529 0.400000 +2585 606 0.400000 +2585 687 0.400000 +2586 9 0.400000 +2586 10 0.400000 +2586 53 0.400000 +2586 108 0.400000 +2586 136 0.400000 +2586 148 0.400000 +2586 247 0.400000 +2586 258 0.400000 +2586 315 0.400000 +2586 469 0.400000 +2586 517 0.400000 +2586 532 0.400000 +2586 587 0.400000 +2586 629 0.400000 +2586 635 0.400000 +2586 702 0.400000 +2586 738 0.400000 +2586 758 0.400000 +2587 49 0.400000 +2587 86 0.400000 +2587 101 0.400000 +2587 140 0.400000 +2587 178 0.400000 +2587 234 0.400000 +2587 277 0.400000 +2587 324 0.400000 +2587 343 0.400000 +2587 346 0.400000 +2587 404 0.400000 +2587 457 0.400000 +2587 585 0.400000 +2587 692 0.400000 +2587 707 0.400000 +2587 709 0.400000 +2587 729 0.400000 +2587 734 0.400000 +2587 771 0.400000 +2588 5 0.400000 +2588 124 0.400000 +2588 158 0.400000 +2588 170 0.400000 +2588 260 0.400000 +2588 370 0.400000 +2588 429 0.400000 +2588 474 0.400000 +2588 629 0.400000 +2588 635 0.400000 +2588 652 0.400000 +2588 682 0.400000 +2588 686 0.400000 +2588 747 0.400000 +2588 750 0.400000 +2589 82 0.400000 +2589 94 0.400000 +2589 172 0.400000 +2589 222 0.400000 +2589 250 0.400000 +2589 447 0.400000 +2589 477 0.400000 +2589 513 0.400000 +2589 543 0.400000 +2589 553 0.400000 +2589 562 0.400000 +2589 596 0.400000 +2589 612 0.400000 +2589 691 0.400000 +2589 699 0.400000 +2589 761 0.400000 +2590 205 0.400000 +2590 221 0.400000 +2590 334 0.400000 +2590 371 0.400000 +2590 404 0.400000 +2590 427 0.400000 +2590 533 0.400000 +2590 548 0.400000 +2590 557 0.400000 +2590 670 0.400000 +2590 675 0.400000 +2590 714 0.400000 +2590 734 0.400000 +2591 10 0.400000 +2591 13 0.400000 +2591 39 0.400000 +2591 50 0.400000 +2591 59 0.400000 +2591 126 0.400000 +2591 131 0.400000 +2591 174 0.400000 +2591 191 0.400000 +2591 195 0.400000 +2591 257 0.400000 +2591 263 0.400000 +2591 316 0.400000 +2591 411 0.400000 +2591 432 0.400000 +2591 440 0.400000 +2591 477 0.400000 +2591 504 0.400000 +2591 510 0.400000 +2591 517 0.400000 +2591 528 0.400000 +2591 623 0.400000 +2591 659 0.400000 +2591 738 0.400000 +2591 754 0.400000 +2591 756 0.400000 +2592 53 0.400000 +2592 56 0.400000 +2592 64 0.400000 +2592 114 0.400000 +2592 119 0.400000 +2592 239 0.400000 +2592 321 0.400000 +2592 391 0.400000 +2592 418 0.400000 +2592 469 0.400000 +2592 563 0.400000 +2592 577 0.400000 +2592 583 0.400000 +2592 616 0.400000 +2592 769 0.400000 +2592 778 0.400000 +2593 33 0.400000 +2593 61 0.400000 +2593 104 0.400000 +2593 182 0.400000 +2593 219 0.400000 +2593 313 0.400000 +2593 331 0.400000 +2593 336 0.400000 +2593 363 0.400000 +2593 376 0.400000 +2593 378 0.400000 +2593 413 0.400000 +2593 568 0.400000 +2593 600 0.400000 +2593 708 0.400000 +2593 737 0.400000 +2593 738 0.400000 +2593 752 0.400000 +2593 788 0.400000 +2593 794 0.400000 +2593 799 0.400000 +2594 238 0.400000 +2594 299 0.400000 +2594 321 0.400000 +2594 325 0.400000 +2594 345 0.400000 +2594 478 0.400000 +2594 557 0.400000 +2594 571 0.400000 +2594 643 0.400000 +2594 664 0.400000 +2594 715 0.400000 +2594 767 0.400000 +2595 235 0.400000 +2595 241 0.400000 +2595 348 0.400000 +2595 368 0.400000 +2595 397 0.400000 +2595 410 0.400000 +2595 430 0.400000 +2595 469 0.400000 +2595 470 0.400000 +2595 530 0.400000 +2595 540 0.400000 +2595 550 0.400000 +2595 576 0.400000 +2595 630 0.400000 +2595 737 0.400000 +2595 747 0.400000 +2596 39 0.400000 +2596 46 0.400000 +2596 87 0.400000 +2596 129 0.400000 +2596 136 0.400000 +2596 159 0.400000 +2596 333 0.400000 +2596 389 0.400000 +2596 407 0.400000 +2596 414 0.400000 +2596 435 0.400000 +2596 454 0.400000 +2596 463 0.400000 +2596 665 0.400000 +2596 760 0.400000 +2596 782 0.400000 +2597 28 0.400000 +2597 55 0.400000 +2597 186 0.400000 +2597 218 0.400000 +2597 277 0.400000 +2597 327 0.400000 +2597 333 0.400000 +2597 566 0.400000 +2597 569 0.400000 +2597 626 0.400000 +2597 746 0.400000 +2597 770 0.400000 +2598 29 0.400000 +2598 44 0.400000 +2598 79 0.400000 +2598 149 0.400000 +2598 163 0.400000 +2598 167 0.400000 +2598 264 0.400000 +2598 289 0.400000 +2598 297 0.400000 +2598 308 0.400000 +2598 309 0.400000 +2598 412 0.400000 +2598 426 0.400000 +2598 484 0.400000 +2598 589 0.400000 +2598 611 0.400000 +2598 615 0.400000 +2598 667 0.400000 +2598 698 0.400000 +2598 719 0.400000 +2599 125 0.400000 +2599 300 0.400000 +2599 312 0.400000 +2599 349 0.400000 +2599 436 0.400000 +2599 488 0.400000 +2599 506 0.400000 +2599 507 0.400000 +2599 546 0.400000 +2599 550 0.400000 +2599 622 0.400000 +2599 624 0.400000 +2599 633 0.400000 +2599 648 0.400000 +2599 677 0.400000 +2599 696 0.400000 +2599 726 0.400000 +2599 743 0.400000 +2599 746 0.400000 +2599 788 0.400000 +2600 90 0.400000 +2600 131 0.400000 +2600 157 0.400000 +2600 181 0.400000 +2600 257 0.400000 +2600 325 0.400000 +2600 410 0.400000 +2600 475 0.400000 +2600 486 0.400000 +2600 544 0.400000 +2600 616 0.400000 +2600 621 0.400000 +2600 770 0.400000 +2600 783 0.400000 +2600 795 0.400000 +2601 195 0.400000 +2601 214 0.400000 +2601 231 0.400000 +2601 328 0.400000 +2601 340 0.400000 +2601 387 0.400000 +2601 450 0.400000 +2601 464 0.400000 +2601 547 0.400000 +2601 632 0.400000 +2601 737 0.400000 +2601 763 0.400000 +2601 778 0.400000 +2601 797 0.400000 +2602 111 0.400000 +2602 146 0.400000 +2602 215 0.400000 +2602 240 0.400000 +2602 266 0.400000 +2602 302 0.400000 +2602 307 0.400000 +2602 312 0.400000 +2602 365 0.400000 +2602 395 0.400000 +2602 453 0.400000 +2602 554 0.400000 +2602 570 0.400000 +2602 599 0.400000 +2602 600 0.400000 +2602 705 0.400000 +2602 747 0.400000 +2602 798 0.400000 +2602 799 0.400000 +2603 21 0.400000 +2603 111 0.400000 +2603 196 0.400000 +2603 230 0.400000 +2603 351 0.400000 +2603 435 0.400000 +2603 641 0.400000 +2603 676 0.400000 +2603 677 0.400000 +2603 776 0.400000 +2603 787 0.400000 +2604 6 0.400000 +2604 20 0.400000 +2604 31 0.400000 +2604 97 0.400000 +2604 190 0.400000 +2604 217 0.400000 +2604 253 0.400000 +2604 345 0.400000 +2604 362 0.400000 +2604 550 0.400000 +2604 574 0.400000 +2604 652 0.400000 +2604 759 0.400000 +2605 24 0.400000 +2605 42 0.400000 +2605 91 0.400000 +2605 124 0.400000 +2605 138 0.400000 +2605 236 0.400000 +2605 336 0.400000 +2605 383 0.400000 +2605 463 0.400000 +2605 541 0.400000 +2605 553 0.400000 +2605 625 0.400000 +2605 635 0.400000 +2605 683 0.400000 +2605 746 0.400000 +2605 751 0.400000 +2606 2 0.400000 +2606 30 0.400000 +2606 47 0.400000 +2606 51 0.400000 +2606 87 0.400000 +2606 125 0.400000 +2606 136 0.400000 +2606 152 0.400000 +2606 165 0.400000 +2606 180 0.400000 +2606 216 0.400000 +2606 217 0.400000 +2606 246 0.400000 +2606 265 0.400000 +2606 283 0.400000 +2606 291 0.400000 +2606 354 0.400000 +2606 376 0.400000 +2606 400 0.400000 +2606 406 0.400000 +2606 444 0.400000 +2606 523 0.400000 +2606 768 0.400000 +2606 774 0.400000 +2606 775 0.400000 +2606 798 0.400000 +2607 52 0.400000 +2607 143 0.400000 +2607 210 0.400000 +2607 323 0.400000 +2607 347 0.400000 +2607 374 0.400000 +2607 424 0.400000 +2607 425 0.400000 +2607 476 0.400000 +2607 589 0.400000 +2607 656 0.400000 +2607 667 0.400000 +2607 770 0.400000 +2608 33 0.400000 +2608 49 0.400000 +2608 54 0.400000 +2608 150 0.400000 +2608 193 0.400000 +2608 211 0.400000 +2608 213 0.400000 +2608 225 0.400000 +2608 323 0.400000 +2608 377 0.400000 +2608 465 0.400000 +2608 504 0.400000 +2608 508 0.400000 +2608 518 0.400000 +2608 520 0.400000 +2608 535 0.400000 +2608 548 0.400000 +2608 692 0.400000 +2608 707 0.400000 +2608 726 0.400000 +2608 753 0.400000 +2608 778 0.400000 +2608 786 0.400000 +2609 14 0.400000 +2609 44 0.400000 +2609 47 0.400000 +2609 64 0.400000 +2609 335 0.400000 +2609 371 0.400000 +2609 379 0.400000 +2609 424 0.400000 +2609 456 0.400000 +2609 477 0.400000 +2609 484 0.400000 +2609 583 0.400000 +2609 628 0.400000 +2609 646 0.400000 +2609 740 0.400000 +2610 33 0.400000 +2610 59 0.400000 +2610 91 0.400000 +2610 266 0.400000 +2610 272 0.400000 +2610 307 0.400000 +2610 343 0.400000 +2610 350 0.400000 +2610 374 0.400000 +2610 444 0.400000 +2610 543 0.400000 +2610 604 0.400000 +2610 675 0.400000 +2610 688 0.400000 +2610 691 0.400000 +2610 718 0.400000 +2611 14 0.400000 +2611 28 0.400000 +2611 45 0.400000 +2611 81 0.400000 +2611 119 0.400000 +2611 284 0.400000 +2611 308 0.400000 +2611 316 0.400000 +2611 336 0.400000 +2611 421 0.400000 +2611 482 0.400000 +2611 515 0.400000 +2611 636 0.400000 +2611 665 0.400000 +2611 707 0.400000 +2611 787 0.400000 +2612 35 0.400000 +2612 50 0.400000 +2612 156 0.400000 +2612 213 0.400000 +2612 271 0.400000 +2612 274 0.400000 +2612 276 0.400000 +2612 277 0.400000 +2612 347 0.400000 +2612 383 0.400000 +2612 403 0.400000 +2612 421 0.400000 +2612 432 0.400000 +2612 494 0.400000 +2612 572 0.400000 +2612 577 0.400000 +2612 655 0.400000 +2612 656 0.400000 +2612 723 0.400000 +2612 745 0.400000 +2613 39 0.400000 +2613 60 0.400000 +2613 63 0.400000 +2613 137 0.400000 +2613 153 0.400000 +2613 241 0.400000 +2613 244 0.400000 +2613 258 0.400000 +2613 364 0.400000 +2613 369 0.400000 +2613 497 0.400000 +2613 529 0.400000 +2613 594 0.400000 +2613 634 0.400000 +2613 659 0.400000 +2613 686 0.400000 +2613 724 0.400000 +2613 727 0.400000 +2614 184 0.400000 +2614 187 0.400000 +2614 268 0.400000 +2614 308 0.400000 +2614 332 0.400000 +2614 373 0.400000 +2614 384 0.400000 +2614 437 0.400000 +2614 444 0.400000 +2614 456 0.400000 +2614 541 0.400000 +2614 738 0.400000 +2614 793 0.400000 +2615 68 0.400000 +2615 94 0.400000 +2615 199 0.400000 +2615 363 0.400000 +2615 375 0.400000 +2615 557 0.400000 +2615 622 0.400000 +2615 693 0.400000 +2615 742 0.400000 +2616 237 0.400000 +2616 320 0.400000 +2616 326 0.400000 +2616 353 0.400000 +2616 376 0.400000 +2616 384 0.400000 +2616 452 0.400000 +2616 507 0.400000 +2616 532 0.400000 +2616 609 0.400000 +2616 709 0.400000 +2616 726 0.400000 +2616 764 0.400000 +2617 36 0.400000 +2617 54 0.400000 +2617 63 0.400000 +2617 68 0.400000 +2617 122 0.400000 +2617 136 0.400000 +2617 177 0.400000 +2617 277 0.400000 +2617 315 0.400000 +2617 367 0.400000 +2617 516 0.400000 +2617 553 0.400000 +2617 638 0.400000 +2617 659 0.400000 +2617 782 0.400000 +2617 796 0.400000 +2618 6 0.400000 +2618 33 0.400000 +2618 78 0.400000 +2618 90 0.400000 +2618 99 0.400000 +2618 107 0.400000 +2618 233 0.400000 +2618 239 0.400000 +2618 299 0.400000 +2618 313 0.400000 +2618 324 0.400000 +2618 330 0.400000 +2618 338 0.400000 +2618 380 0.400000 +2618 458 0.400000 +2618 517 0.400000 +2618 582 0.400000 +2618 688 0.400000 +2618 754 0.400000 +2619 1 0.400000 +2619 87 0.400000 +2619 95 0.400000 +2619 129 0.400000 +2619 180 0.400000 +2619 280 0.400000 +2619 354 0.400000 +2619 373 0.400000 +2619 380 0.400000 +2619 407 0.400000 +2619 551 0.400000 +2619 642 0.400000 +2619 760 0.400000 +2620 101 0.400000 +2620 287 0.400000 +2620 438 0.400000 +2620 493 0.400000 +2620 516 0.400000 +2620 573 0.400000 +2620 678 0.400000 +2620 696 0.400000 +2620 778 0.400000 +2620 796 0.400000 +2621 105 0.400000 +2621 194 0.400000 +2621 212 0.400000 +2621 213 0.400000 +2621 317 0.400000 +2621 325 0.400000 +2621 343 0.400000 +2621 365 0.400000 +2621 387 0.400000 +2621 462 0.400000 +2621 542 0.400000 +2621 646 0.400000 +2621 649 0.400000 +2621 656 0.400000 +2621 673 0.400000 +2621 707 0.400000 +2621 717 0.400000 +2622 57 0.400000 +2622 75 0.400000 +2622 268 0.400000 +2622 290 0.400000 +2622 329 0.400000 +2622 349 0.400000 +2622 392 0.400000 +2622 497 0.400000 +2622 525 0.400000 +2622 625 0.400000 +2622 660 0.400000 +2622 759 0.400000 +2623 29 0.400000 +2623 45 0.400000 +2623 116 0.400000 +2623 167 0.400000 +2623 207 0.400000 +2623 267 0.400000 +2623 300 0.400000 +2623 355 0.400000 +2623 368 0.400000 +2623 407 0.400000 +2623 431 0.400000 +2623 531 0.400000 +2623 622 0.400000 +2623 714 0.400000 +2623 724 0.400000 +2623 772 0.400000 +2623 798 0.400000 +2624 42 0.400000 +2624 113 0.400000 +2624 123 0.400000 +2624 139 0.400000 +2624 256 0.400000 +2624 402 0.400000 +2624 404 0.400000 +2624 433 0.400000 +2624 486 0.400000 +2624 530 0.400000 +2624 592 0.400000 +2624 664 0.400000 +2624 681 0.400000 +2624 787 0.400000 +2625 18 0.400000 +2625 45 0.400000 +2625 128 0.400000 +2625 149 0.400000 +2625 353 0.400000 +2625 377 0.400000 +2625 435 0.400000 +2625 510 0.400000 +2625 610 0.400000 +2625 647 0.400000 +2625 674 0.400000 +2625 690 0.400000 +2625 762 0.400000 +2626 62 0.400000 +2626 205 0.400000 +2626 358 0.400000 +2626 372 0.400000 +2626 384 0.400000 +2626 402 0.400000 +2626 496 0.400000 +2626 510 0.400000 +2626 575 0.400000 +2626 608 0.400000 +2626 691 0.400000 +2627 18 0.400000 +2627 26 0.400000 +2627 43 0.400000 +2627 118 0.400000 +2627 127 0.400000 +2627 144 0.400000 +2627 145 0.400000 +2627 232 0.400000 +2627 310 0.400000 +2627 313 0.400000 +2627 362 0.400000 +2627 424 0.400000 +2627 525 0.400000 +2627 540 0.400000 +2627 562 0.400000 +2627 587 0.400000 +2627 606 0.400000 +2627 615 0.400000 +2627 630 0.400000 +2627 683 0.400000 +2627 707 0.400000 +2627 728 0.400000 +2627 755 0.400000 +2627 762 0.400000 +2627 793 0.400000 +2628 24 0.400000 +2628 58 0.400000 +2628 106 0.400000 +2628 126 0.400000 +2628 131 0.400000 +2628 194 0.400000 +2628 200 0.400000 +2628 281 0.400000 +2628 300 0.400000 +2628 318 0.400000 +2628 354 0.400000 +2628 435 0.400000 +2628 494 0.400000 +2628 497 0.400000 +2628 691 0.400000 +2628 718 0.400000 +2628 761 0.400000 +2628 796 0.400000 +2629 45 0.400000 +2629 88 0.400000 +2629 150 0.400000 +2629 240 0.400000 +2629 366 0.400000 +2629 416 0.400000 +2629 449 0.400000 +2629 499 0.400000 +2629 513 0.400000 +2629 519 0.400000 +2629 545 0.400000 +2629 588 0.400000 +2629 646 0.400000 +2629 745 0.400000 +2629 797 0.400000 +2630 5 0.400000 +2630 36 0.400000 +2630 85 0.400000 +2630 110 0.400000 +2630 124 0.400000 +2630 127 0.400000 +2630 155 0.400000 +2630 203 0.400000 +2630 284 0.400000 +2630 388 0.400000 +2630 401 0.400000 +2630 422 0.400000 +2630 441 0.400000 +2630 508 0.400000 +2630 565 0.400000 +2630 623 0.400000 +2630 676 0.400000 +2630 736 0.400000 +2630 794 0.400000 +2631 76 0.400000 +2631 85 0.400000 +2631 135 0.400000 +2631 152 0.400000 +2631 295 0.400000 +2631 313 0.400000 +2631 315 0.400000 +2631 316 0.400000 +2631 355 0.400000 +2631 375 0.400000 +2631 503 0.400000 +2631 525 0.400000 +2631 551 0.400000 +2631 590 0.400000 +2631 603 0.400000 +2631 671 0.400000 +2631 729 0.400000 +2631 788 0.400000 +2632 24 0.400000 +2632 62 0.400000 +2632 79 0.400000 +2632 117 0.400000 +2632 278 0.400000 +2632 285 0.400000 +2632 356 0.400000 +2632 449 0.400000 +2632 554 0.400000 +2632 613 0.400000 +2632 677 0.400000 +2632 693 0.400000 +2632 716 0.400000 +2632 728 0.400000 +2632 777 0.400000 +2633 104 0.400000 +2633 157 0.400000 +2633 175 0.400000 +2633 210 0.400000 +2633 297 0.400000 +2633 347 0.400000 +2633 429 0.400000 +2633 465 0.400000 +2633 566 0.400000 +2633 669 0.400000 +2633 720 0.400000 +2633 770 0.400000 +2634 41 0.400000 +2634 189 0.400000 +2634 241 0.400000 +2634 247 0.400000 +2634 327 0.400000 +2634 387 0.400000 +2634 441 0.400000 +2634 497 0.400000 +2634 580 0.400000 +2634 592 0.400000 +2634 613 0.400000 +2634 642 0.400000 +2635 87 0.400000 +2635 120 0.400000 +2635 161 0.400000 +2635 186 0.400000 +2635 198 0.400000 +2635 236 0.400000 +2635 241 0.400000 +2635 265 0.400000 +2635 527 0.400000 +2635 552 0.400000 +2635 594 0.400000 +2635 674 0.400000 +2635 747 0.400000 +2635 772 0.400000 +2635 790 0.400000 +2636 45 0.400000 +2636 83 0.400000 +2636 99 0.400000 +2636 130 0.400000 +2636 148 0.400000 +2636 176 0.400000 +2636 188 0.400000 +2636 205 0.400000 +2636 214 0.400000 +2636 221 0.400000 +2636 290 0.400000 +2636 371 0.400000 +2636 487 0.400000 +2636 521 0.400000 +2636 629 0.400000 +2637 101 0.400000 +2637 134 0.400000 +2637 161 0.400000 +2637 235 0.400000 +2637 350 0.400000 +2637 404 0.400000 +2637 428 0.400000 +2637 444 0.400000 +2637 448 0.400000 +2637 577 0.400000 +2637 600 0.400000 +2637 656 0.400000 +2637 663 0.400000 +2637 696 0.400000 +2637 706 0.400000 +2637 763 0.400000 +2637 797 0.400000 +2638 20 0.400000 +2638 71 0.400000 +2638 144 0.400000 +2638 160 0.400000 +2638 161 0.400000 +2638 180 0.400000 +2638 214 0.400000 +2638 217 0.400000 +2638 239 0.400000 +2638 277 0.400000 +2638 314 0.400000 +2638 324 0.400000 +2638 334 0.400000 +2638 462 0.400000 +2638 572 0.400000 +2638 645 0.400000 +2638 674 0.400000 +2638 729 0.400000 +2638 748 0.400000 +2638 756 0.400000 +2639 67 0.400000 +2639 157 0.400000 +2639 224 0.400000 +2639 291 0.400000 +2639 324 0.400000 +2639 346 0.400000 +2639 366 0.400000 +2639 542 0.400000 +2639 573 0.400000 +2639 619 0.400000 +2639 756 0.400000 +2640 10 0.400000 +2640 69 0.400000 +2640 93 0.400000 +2640 175 0.400000 +2640 307 0.400000 +2640 344 0.400000 +2640 495 0.400000 +2640 554 0.400000 +2640 617 0.400000 +2640 675 0.400000 +2640 687 0.400000 +2641 27 0.400000 +2641 64 0.400000 +2641 68 0.400000 +2641 73 0.400000 +2641 89 0.400000 +2641 357 0.400000 +2641 363 0.400000 +2641 387 0.400000 +2641 426 0.400000 +2641 464 0.400000 +2641 475 0.400000 +2641 485 0.400000 +2641 678 0.400000 +2641 679 0.400000 +2641 688 0.400000 +2641 689 0.400000 +2641 729 0.400000 +2641 732 0.400000 +2642 37 0.400000 +2642 47 0.400000 +2642 54 0.400000 +2642 80 0.400000 +2642 114 0.400000 +2642 120 0.400000 +2642 128 0.400000 +2642 183 0.400000 +2642 195 0.400000 +2642 245 0.400000 +2642 254 0.400000 +2642 321 0.400000 +2642 344 0.400000 +2642 528 0.400000 +2642 564 0.400000 +2642 567 0.400000 +2642 637 0.400000 +2642 705 0.400000 +2642 710 0.400000 +2643 18 0.400000 +2643 150 0.400000 +2643 165 0.400000 +2643 174 0.400000 +2643 175 0.400000 +2643 177 0.400000 +2643 246 0.400000 +2643 261 0.400000 +2643 273 0.400000 +2643 278 0.400000 +2643 307 0.400000 +2643 309 0.400000 +2643 310 0.400000 +2643 325 0.400000 +2643 327 0.400000 +2643 397 0.400000 +2643 498 0.400000 +2643 544 0.400000 +2643 558 0.400000 +2643 585 0.400000 +2643 639 0.400000 +2643 674 0.400000 +2643 676 0.400000 +2643 681 0.400000 +2643 691 0.400000 +2643 696 0.400000 +2643 725 0.400000 +2643 737 0.400000 +2643 741 0.400000 +2643 771 0.400000 +2644 99 0.400000 +2644 132 0.400000 +2644 297 0.400000 +2644 406 0.400000 +2644 421 0.400000 +2644 549 0.400000 +2644 560 0.400000 +2644 562 0.400000 +2644 685 0.400000 +2644 714 0.400000 +2644 729 0.400000 +2644 775 0.400000 +2644 800 0.400000 +2645 34 0.400000 +2645 95 0.400000 +2645 114 0.400000 +2645 136 0.400000 +2645 213 0.400000 +2645 295 0.400000 +2645 341 0.400000 +2645 435 0.400000 +2645 512 0.400000 +2645 552 0.400000 +2645 642 0.400000 +2645 644 0.400000 +2645 775 0.400000 +2646 3 0.400000 +2646 47 0.400000 +2646 107 0.400000 +2646 243 0.400000 +2646 255 0.400000 +2646 299 0.400000 +2646 359 0.400000 +2646 399 0.400000 +2646 426 0.400000 +2646 485 0.400000 +2646 511 0.400000 +2646 513 0.400000 +2646 522 0.400000 +2646 530 0.400000 +2646 648 0.400000 +2646 658 0.400000 +2646 696 0.400000 +2646 734 0.400000 +2647 27 0.400000 +2647 61 0.400000 +2647 88 0.400000 +2647 91 0.400000 +2647 118 0.400000 +2647 211 0.400000 +2647 260 0.400000 +2647 277 0.400000 +2647 331 0.400000 +2647 433 0.400000 +2647 516 0.400000 +2647 518 0.400000 +2647 527 0.400000 +2647 584 0.400000 +2647 759 0.400000 +2647 799 0.400000 +2648 27 0.400000 +2648 43 0.400000 +2648 91 0.400000 +2648 311 0.400000 +2648 418 0.400000 +2648 429 0.400000 +2648 445 0.400000 +2648 458 0.400000 +2648 537 0.400000 +2648 555 0.400000 +2648 600 0.400000 +2648 655 0.400000 +2648 687 0.400000 +2648 694 0.400000 +2648 705 0.400000 +2649 7 0.400000 +2649 57 0.400000 +2649 72 0.400000 +2649 114 0.400000 +2649 126 0.400000 +2649 154 0.400000 +2649 200 0.400000 +2649 207 0.400000 +2649 364 0.400000 +2649 430 0.400000 +2649 460 0.400000 +2649 484 0.400000 +2649 619 0.400000 +2649 633 0.400000 +2649 678 0.400000 +2649 793 0.400000 +2650 19 0.400000 +2650 44 0.400000 +2650 86 0.400000 +2650 110 0.400000 +2650 113 0.400000 +2650 124 0.400000 +2650 235 0.400000 +2650 378 0.400000 +2650 414 0.400000 +2650 527 0.400000 +2650 537 0.400000 +2650 606 0.400000 +2650 646 0.400000 +2650 658 0.400000 +2650 695 0.400000 +2650 713 0.400000 +2650 754 0.400000 +2651 40 0.400000 +2651 69 0.400000 +2651 87 0.400000 +2651 166 0.400000 +2651 179 0.400000 +2651 210 0.400000 +2651 218 0.400000 +2651 290 0.400000 +2651 400 0.400000 +2651 463 0.400000 +2651 492 0.400000 +2651 512 0.400000 +2651 588 0.400000 +2651 625 0.400000 +2651 670 0.400000 +2651 691 0.400000 +2651 714 0.400000 +2651 772 0.400000 +2651 794 0.400000 +2652 33 0.400000 +2652 82 0.400000 +2652 119 0.400000 +2652 123 0.400000 +2652 180 0.400000 +2652 203 0.400000 +2652 299 0.400000 +2652 313 0.400000 +2652 347 0.400000 +2652 349 0.400000 +2652 357 0.400000 +2652 378 0.400000 +2652 406 0.400000 +2652 416 0.400000 +2652 479 0.400000 +2652 506 0.400000 +2652 620 0.400000 +2652 707 0.400000 +2652 731 0.400000 +2652 734 0.400000 +2653 10 0.400000 +2653 16 0.400000 +2653 77 0.400000 +2653 105 0.400000 +2653 124 0.400000 +2653 135 0.400000 +2653 233 0.400000 +2653 333 0.400000 +2653 367 0.400000 +2653 405 0.400000 +2653 444 0.400000 +2653 466 0.400000 +2653 475 0.400000 +2653 484 0.400000 +2653 540 0.400000 +2653 631 0.400000 +2653 640 0.400000 +2653 669 0.400000 +2653 683 0.400000 +2653 744 0.400000 +2653 765 0.400000 +2653 792 0.400000 +2653 797 0.400000 +2654 168 0.400000 +2654 218 0.400000 +2654 288 0.400000 +2654 375 0.400000 +2654 732 0.400000 +2654 744 0.400000 +2654 783 0.400000 +2655 18 0.400000 +2655 52 0.400000 +2655 119 0.400000 +2655 174 0.400000 +2655 212 0.400000 +2655 260 0.400000 +2655 283 0.400000 +2655 361 0.400000 +2655 460 0.400000 +2655 478 0.400000 +2655 537 0.400000 +2655 561 0.400000 +2655 673 0.400000 +2655 694 0.400000 +2655 781 0.400000 +2655 795 0.400000 +2655 797 0.400000 +2656 16 0.400000 +2656 95 0.400000 +2656 126 0.400000 +2656 180 0.400000 +2656 318 0.400000 +2656 348 0.400000 +2656 371 0.400000 +2656 392 0.400000 +2656 427 0.400000 +2656 522 0.400000 +2656 527 0.400000 +2656 560 0.400000 +2656 745 0.400000 +2656 782 0.400000 +2657 80 0.400000 +2657 102 0.400000 +2657 126 0.400000 +2657 134 0.400000 +2657 264 0.400000 +2657 271 0.400000 +2657 279 0.400000 +2657 324 0.400000 +2657 358 0.400000 +2657 396 0.400000 +2657 419 0.400000 +2657 426 0.400000 +2657 464 0.400000 +2657 473 0.400000 +2657 480 0.400000 +2657 495 0.400000 +2657 504 0.400000 +2657 539 0.400000 +2657 541 0.400000 +2657 556 0.400000 +2657 646 0.400000 +2657 794 0.400000 +2658 3 0.400000 +2658 26 0.400000 +2658 87 0.400000 +2658 97 0.400000 +2658 122 0.400000 +2658 164 0.400000 +2658 291 0.400000 +2658 317 0.400000 +2658 323 0.400000 +2658 422 0.400000 +2658 466 0.400000 +2658 472 0.400000 +2658 535 0.400000 +2658 642 0.400000 +2658 691 0.400000 +2659 79 0.400000 +2659 82 0.400000 +2659 127 0.400000 +2659 144 0.400000 +2659 172 0.400000 +2659 193 0.400000 +2659 306 0.400000 +2659 355 0.400000 +2659 457 0.400000 +2659 508 0.400000 +2659 514 0.400000 +2659 533 0.400000 +2659 646 0.400000 +2659 647 0.400000 +2659 650 0.400000 +2659 652 0.400000 +2659 695 0.400000 +2659 753 0.400000 +2660 26 0.400000 +2660 75 0.400000 +2660 100 0.400000 +2660 120 0.400000 +2660 148 0.400000 +2660 181 0.400000 +2660 281 0.400000 +2660 334 0.400000 +2660 369 0.400000 +2660 382 0.400000 +2660 438 0.400000 +2660 508 0.400000 +2660 521 0.400000 +2660 529 0.400000 +2660 578 0.400000 +2660 581 0.400000 +2660 604 0.400000 +2661 114 0.400000 +2661 195 0.400000 +2661 202 0.400000 +2661 224 0.400000 +2661 357 0.400000 +2661 389 0.400000 +2661 471 0.400000 +2661 474 0.400000 +2661 500 0.400000 +2661 553 0.400000 +2661 559 0.400000 +2661 561 0.400000 +2661 629 0.400000 +2661 646 0.400000 +2661 691 0.400000 +2661 738 0.400000 +2661 788 0.400000 +2662 23 0.400000 +2662 65 0.400000 +2662 109 0.400000 +2662 116 0.400000 +2662 134 0.400000 +2662 148 0.400000 +2662 153 0.400000 +2662 169 0.400000 +2662 211 0.400000 +2662 275 0.400000 +2662 382 0.400000 +2662 402 0.400000 +2662 473 0.400000 +2662 517 0.400000 +2662 601 0.400000 +2662 624 0.400000 +2662 644 0.400000 +2663 32 0.400000 +2663 65 0.400000 +2663 79 0.400000 +2663 106 0.400000 +2663 125 0.400000 +2663 220 0.400000 +2663 275 0.400000 +2663 303 0.400000 +2663 331 0.400000 +2663 402 0.400000 +2663 421 0.400000 +2663 545 0.400000 +2663 689 0.400000 +2663 707 0.400000 +2663 732 0.400000 +2663 745 0.400000 +2663 779 0.400000 +2663 797 0.400000 +2664 21 0.400000 +2664 22 0.400000 +2664 25 0.400000 +2664 42 0.400000 +2664 107 0.400000 +2664 131 0.400000 +2664 190 0.400000 +2664 312 0.400000 +2664 337 0.400000 +2664 539 0.400000 +2664 598 0.400000 +2664 638 0.400000 +2664 664 0.400000 +2664 698 0.400000 +2664 747 0.400000 +2665 68 0.400000 +2665 72 0.400000 +2665 147 0.400000 +2665 193 0.400000 +2665 310 0.400000 +2665 330 0.400000 +2665 336 0.400000 +2665 393 0.400000 +2665 418 0.400000 +2665 465 0.400000 +2665 513 0.400000 +2665 574 0.400000 +2665 585 0.400000 +2665 587 0.400000 +2665 647 0.400000 +2665 662 0.400000 +2665 773 0.400000 +2666 25 0.400000 +2666 145 0.400000 +2666 161 0.400000 +2666 171 0.400000 +2666 279 0.400000 +2666 284 0.400000 +2666 288 0.400000 +2666 326 0.400000 +2666 339 0.400000 +2666 388 0.400000 +2666 458 0.400000 +2666 575 0.400000 +2666 685 0.400000 +2666 745 0.400000 +2667 38 0.400000 +2667 44 0.400000 +2667 98 0.400000 +2667 153 0.400000 +2667 200 0.400000 +2667 212 0.400000 +2667 242 0.400000 +2667 350 0.400000 +2667 377 0.400000 +2667 417 0.400000 +2667 438 0.400000 +2667 456 0.400000 +2667 514 0.400000 +2667 612 0.400000 +2667 647 0.400000 +2667 662 0.400000 +2667 714 0.400000 +2668 6 0.400000 +2668 56 0.400000 +2668 81 0.400000 +2668 104 0.400000 +2668 127 0.400000 +2668 145 0.400000 +2668 195 0.400000 +2668 222 0.400000 +2668 347 0.400000 +2668 382 0.400000 +2668 421 0.400000 +2668 455 0.400000 +2668 456 0.400000 +2668 574 0.400000 +2668 679 0.400000 +2668 697 0.400000 +2668 710 0.400000 +2669 7 0.400000 +2669 70 0.400000 +2669 82 0.400000 +2669 127 0.400000 +2669 131 0.400000 +2669 186 0.400000 +2669 239 0.400000 +2669 254 0.400000 +2669 413 0.400000 +2669 441 0.400000 +2669 465 0.400000 +2669 477 0.400000 +2669 654 0.400000 +2669 688 0.400000 +2669 720 0.400000 +2669 726 0.400000 +2669 746 0.400000 +2669 791 0.400000 +2670 12 0.400000 +2670 87 0.400000 +2670 93 0.400000 +2670 197 0.400000 +2670 244 0.400000 +2670 329 0.400000 +2670 357 0.400000 +2670 378 0.400000 +2670 440 0.400000 +2670 448 0.400000 +2670 524 0.400000 +2670 540 0.400000 +2670 552 0.400000 +2670 557 0.400000 +2671 8 0.400000 +2671 93 0.400000 +2671 115 0.400000 +2671 185 0.400000 +2671 229 0.400000 +2671 276 0.400000 +2671 312 0.400000 +2671 371 0.400000 +2671 414 0.400000 +2671 486 0.400000 +2671 488 0.400000 +2671 516 0.400000 +2671 670 0.400000 +2671 681 0.400000 +2671 720 0.400000 +2671 762 0.400000 +2672 97 0.400000 +2672 149 0.400000 +2672 159 0.400000 +2672 172 0.400000 +2672 205 0.400000 +2672 248 0.400000 +2672 361 0.400000 +2672 389 0.400000 +2672 390 0.400000 +2672 445 0.400000 +2672 471 0.400000 +2672 487 0.400000 +2672 569 0.400000 +2672 670 0.400000 +2672 692 0.400000 +2672 704 0.400000 +2672 722 0.400000 +2672 751 0.400000 +2672 778 0.400000 +2672 790 0.400000 +2672 792 0.400000 +2672 798 0.400000 +2673 18 0.400000 +2673 49 0.400000 +2673 67 0.400000 +2673 77 0.400000 +2673 143 0.400000 +2673 170 0.400000 +2673 190 0.400000 +2673 209 0.400000 +2673 243 0.400000 +2673 249 0.400000 +2673 337 0.400000 +2673 382 0.400000 +2673 450 0.400000 +2673 548 0.400000 +2673 648 0.400000 +2673 705 0.400000 +2673 740 0.400000 +2673 754 0.400000 +2674 30 0.400000 +2674 34 0.400000 +2674 52 0.400000 +2674 179 0.400000 +2674 306 0.400000 +2674 355 0.400000 +2674 384 0.400000 +2674 402 0.400000 +2674 511 0.400000 +2674 594 0.400000 +2674 603 0.400000 +2674 664 0.400000 +2674 708 0.400000 +2674 746 0.400000 +2674 748 0.400000 +2675 33 0.400000 +2675 53 0.400000 +2675 183 0.400000 +2675 199 0.400000 +2675 221 0.400000 +2675 223 0.400000 +2675 235 0.400000 +2675 253 0.400000 +2675 275 0.400000 +2675 380 0.400000 +2675 403 0.400000 +2675 564 0.400000 +2675 729 0.400000 +2676 85 0.400000 +2676 121 0.400000 +2676 127 0.400000 +2676 204 0.400000 +2676 246 0.400000 +2676 282 0.400000 +2676 293 0.400000 +2676 320 0.400000 +2676 335 0.400000 +2676 339 0.400000 +2676 352 0.400000 +2676 364 0.400000 +2676 464 0.400000 +2676 466 0.400000 +2676 508 0.400000 +2676 581 0.400000 +2676 610 0.400000 +2676 630 0.400000 +2676 657 0.400000 +2676 663 0.400000 +2676 667 0.400000 +2676 680 0.400000 +2676 695 0.400000 +2676 705 0.400000 +2676 721 0.400000 +2676 781 0.400000 +2677 117 0.400000 +2677 165 0.400000 +2677 172 0.400000 +2677 278 0.400000 +2677 329 0.400000 +2677 366 0.400000 +2677 448 0.400000 +2677 487 0.400000 +2677 531 0.400000 +2677 583 0.400000 +2677 600 0.400000 +2677 655 0.400000 +2677 685 0.400000 +2677 701 0.400000 +2677 707 0.400000 +2677 715 0.400000 +2677 761 0.400000 +2677 784 0.400000 +2677 800 0.400000 +2678 50 0.400000 +2678 72 0.400000 +2678 86 0.400000 +2678 128 0.400000 +2678 182 0.400000 +2678 220 0.400000 +2678 256 0.400000 +2678 352 0.400000 +2678 395 0.400000 +2678 403 0.400000 +2678 406 0.400000 +2678 441 0.400000 +2678 455 0.400000 +2678 475 0.400000 +2678 662 0.400000 +2679 315 0.400000 +2679 333 0.400000 +2679 386 0.400000 +2679 434 0.400000 +2679 440 0.400000 +2679 487 0.400000 +2679 518 0.400000 +2679 608 0.400000 +2679 628 0.400000 +2679 664 0.400000 +2679 671 0.400000 +2679 673 0.400000 +2679 701 0.400000 +2679 708 0.400000 +2679 718 0.400000 +2679 757 0.400000 +2680 19 0.400000 +2680 477 0.400000 +2680 529 0.400000 +2680 535 0.400000 +2680 625 0.400000 +2680 762 0.400000 +2681 44 0.400000 +2681 89 0.400000 +2681 164 0.400000 +2681 227 0.400000 +2681 239 0.400000 +2681 333 0.400000 +2681 374 0.400000 +2681 419 0.400000 +2681 577 0.400000 +2681 604 0.400000 +2681 670 0.400000 +2682 32 0.400000 +2682 60 0.400000 +2682 138 0.400000 +2682 139 0.400000 +2682 144 0.400000 +2682 163 0.400000 +2682 178 0.400000 +2682 221 0.400000 +2682 234 0.400000 +2682 235 0.400000 +2682 253 0.400000 +2682 281 0.400000 +2682 318 0.400000 +2682 357 0.400000 +2682 441 0.400000 +2682 456 0.400000 +2682 481 0.400000 +2682 486 0.400000 +2682 493 0.400000 +2682 523 0.400000 +2682 558 0.400000 +2682 732 0.400000 +2682 740 0.400000 +2682 742 0.400000 +2683 19 0.400000 +2683 24 0.400000 +2683 64 0.400000 +2683 69 0.400000 +2683 153 0.400000 +2683 202 0.400000 +2683 224 0.400000 +2683 315 0.400000 +2683 382 0.400000 +2683 583 0.400000 +2683 588 0.400000 +2683 635 0.400000 +2683 680 0.400000 +2683 744 0.400000 +2684 93 0.400000 +2684 156 0.400000 +2684 189 0.400000 +2684 210 0.400000 +2684 225 0.400000 +2684 231 0.400000 +2684 340 0.400000 +2684 366 0.400000 +2684 367 0.400000 +2684 377 0.400000 +2684 501 0.400000 +2684 559 0.400000 +2684 595 0.400000 +2684 756 0.400000 +2685 15 0.400000 +2685 166 0.400000 +2685 209 0.400000 +2685 275 0.400000 +2685 321 0.400000 +2685 322 0.400000 +2685 492 0.400000 +2685 541 0.400000 +2685 560 0.400000 +2685 561 0.400000 +2685 589 0.400000 +2685 622 0.400000 +2685 730 0.400000 +2686 13 0.400000 +2686 33 0.400000 +2686 132 0.400000 +2686 380 0.400000 +2686 506 0.400000 +2686 581 0.400000 +2686 593 0.400000 +2686 612 0.400000 +2686 629 0.400000 +2686 656 0.400000 +2686 766 0.400000 +2687 10 0.400000 +2687 53 0.400000 +2687 126 0.400000 +2687 137 0.400000 +2687 174 0.400000 +2687 249 0.400000 +2687 348 0.400000 +2687 411 0.400000 +2687 434 0.400000 +2687 454 0.400000 +2687 530 0.400000 +2687 561 0.400000 +2687 569 0.400000 +2687 584 0.400000 +2687 715 0.400000 +2688 16 0.400000 +2688 36 0.400000 +2688 101 0.400000 +2688 123 0.400000 +2688 139 0.400000 +2688 176 0.400000 +2688 196 0.400000 +2688 258 0.400000 +2688 376 0.400000 +2688 424 0.400000 +2688 433 0.400000 +2688 441 0.400000 +2688 442 0.400000 +2688 444 0.400000 +2688 503 0.400000 +2688 528 0.400000 +2688 548 0.400000 +2688 592 0.400000 +2688 645 0.400000 +2688 649 0.400000 +2688 706 0.400000 +2688 775 0.400000 +2689 12 0.400000 +2689 56 0.400000 +2689 100 0.400000 +2689 197 0.400000 +2689 200 0.400000 +2689 228 0.400000 +2689 271 0.400000 +2689 337 0.400000 +2689 402 0.400000 +2689 448 0.400000 +2689 458 0.400000 +2689 507 0.400000 +2689 680 0.400000 +2689 685 0.400000 +2689 696 0.400000 +2689 750 0.400000 +2690 26 0.400000 +2690 130 0.400000 +2690 156 0.400000 +2690 211 0.400000 +2690 249 0.400000 +2690 347 0.400000 +2690 494 0.400000 +2690 513 0.400000 +2690 534 0.400000 +2690 562 0.400000 +2690 570 0.400000 +2690 624 0.400000 +2690 663 0.400000 +2690 678 0.400000 +2690 687 0.400000 +2690 723 0.400000 +2690 750 0.400000 +2690 782 0.400000 +2691 17 0.400000 +2691 43 0.400000 +2691 143 0.400000 +2691 230 0.400000 +2691 247 0.400000 +2691 296 0.400000 +2691 326 0.400000 +2691 447 0.400000 +2691 468 0.400000 +2691 611 0.400000 +2691 652 0.400000 +2691 662 0.400000 +2691 758 0.400000 +2692 47 0.400000 +2692 52 0.400000 +2692 138 0.400000 +2692 524 0.400000 +2692 528 0.400000 +2692 535 0.400000 +2692 618 0.400000 +2692 643 0.400000 +2692 732 0.400000 +2692 734 0.400000 +2693 59 0.400000 +2693 282 0.400000 +2693 307 0.400000 +2693 347 0.400000 +2693 372 0.400000 +2693 730 0.400000 +2693 735 0.400000 +2694 22 0.400000 +2694 55 0.400000 +2694 83 0.400000 +2694 84 0.400000 +2694 143 0.400000 +2694 194 0.400000 +2694 215 0.400000 +2694 219 0.400000 +2694 265 0.400000 +2694 457 0.400000 +2694 470 0.400000 +2694 497 0.400000 +2694 498 0.400000 +2694 562 0.400000 +2694 610 0.400000 +2694 751 0.400000 +2695 11 0.400000 +2695 42 0.400000 +2695 91 0.400000 +2695 110 0.400000 +2695 113 0.400000 +2695 188 0.400000 +2695 198 0.400000 +2695 214 0.400000 +2695 305 0.400000 +2695 430 0.400000 +2695 500 0.400000 +2695 504 0.400000 +2695 602 0.400000 +2695 671 0.400000 +2695 764 0.400000 +2696 100 0.400000 +2696 136 0.400000 +2696 152 0.400000 +2696 187 0.400000 +2696 276 0.400000 +2696 305 0.400000 +2696 311 0.400000 +2696 463 0.400000 +2696 653 0.400000 +2696 660 0.400000 +2696 722 0.400000 +2696 727 0.400000 +2696 757 0.400000 +2696 800 0.400000 +2697 90 0.400000 +2697 92 0.400000 +2697 195 0.400000 +2697 203 0.400000 +2697 213 0.400000 +2697 228 0.400000 +2697 257 0.400000 +2697 307 0.400000 +2697 342 0.400000 +2697 451 0.400000 +2697 487 0.400000 +2697 506 0.400000 +2697 510 0.400000 +2697 521 0.400000 +2697 606 0.400000 +2697 678 0.400000 +2697 691 0.400000 +2697 745 0.400000 +2697 777 0.400000 +2698 24 0.400000 +2698 39 0.400000 +2698 84 0.400000 +2698 90 0.400000 +2698 111 0.400000 +2698 267 0.400000 +2698 432 0.400000 +2698 480 0.400000 +2698 544 0.400000 +2698 557 0.400000 +2698 561 0.400000 +2698 652 0.400000 +2698 662 0.400000 +2698 800 0.400000 +2699 48 0.400000 +2699 129 0.400000 +2699 130 0.400000 +2699 146 0.400000 +2699 239 0.400000 +2699 419 0.400000 +2699 435 0.400000 +2699 652 0.400000 +2699 721 0.400000 +2699 732 0.400000 +2699 746 0.400000 +2699 765 0.400000 +2699 790 0.400000 +2700 62 0.400000 +2700 65 0.400000 +2700 264 0.400000 +2700 312 0.400000 +2700 382 0.400000 +2700 425 0.400000 +2700 437 0.400000 +2700 526 0.400000 +2700 528 0.400000 +2700 544 0.400000 +2700 608 0.400000 +2700 615 0.400000 +2700 689 0.400000 +2700 725 0.400000 +2700 728 0.400000 +2700 746 0.400000 +2701 47 0.400000 +2701 179 0.400000 +2701 303 0.400000 +2701 308 0.400000 +2701 358 0.400000 +2701 381 0.400000 +2701 382 0.400000 +2701 452 0.400000 +2701 566 0.400000 +2701 625 0.400000 +2701 663 0.400000 +2701 704 0.400000 +2701 726 0.400000 +2701 732 0.400000 +2702 408 0.400000 +2702 485 0.400000 +2702 533 0.400000 +2702 678 0.400000 +2702 771 0.400000 +2702 798 0.400000 +2703 38 0.400000 +2703 46 0.400000 +2703 69 0.400000 +2703 88 0.400000 +2703 97 0.400000 +2703 166 0.400000 +2703 172 0.400000 +2703 176 0.400000 +2703 224 0.400000 +2703 242 0.400000 +2703 258 0.400000 +2703 261 0.400000 +2703 264 0.400000 +2703 278 0.400000 +2703 302 0.400000 +2703 387 0.400000 +2703 402 0.400000 +2703 449 0.400000 +2703 487 0.400000 +2703 536 0.400000 +2703 553 0.400000 +2703 561 0.400000 +2703 666 0.400000 +2703 726 0.400000 +2703 773 0.400000 +2703 799 0.400000 +2704 4 0.400000 +2704 9 0.400000 +2704 111 0.400000 +2704 243 0.400000 +2704 334 0.400000 +2704 484 0.400000 +2704 515 0.400000 +2704 563 0.400000 +2704 581 0.400000 +2704 683 0.400000 +2704 717 0.400000 +2704 761 0.400000 +2705 13 0.400000 +2705 16 0.400000 +2705 62 0.400000 +2705 126 0.400000 +2705 135 0.400000 +2705 152 0.400000 +2705 169 0.400000 +2705 186 0.400000 +2705 212 0.400000 +2705 226 0.400000 +2705 300 0.400000 +2705 327 0.400000 +2705 337 0.400000 +2705 444 0.400000 +2705 451 0.400000 +2705 452 0.400000 +2705 473 0.400000 +2705 496 0.400000 +2705 607 0.400000 +2705 658 0.400000 +2705 758 0.400000 +2706 36 0.400000 +2706 48 0.400000 +2706 71 0.400000 +2706 127 0.400000 +2706 134 0.400000 +2706 155 0.400000 +2706 179 0.400000 +2706 196 0.400000 +2706 265 0.400000 +2706 271 0.400000 +2706 277 0.400000 +2706 438 0.400000 +2706 445 0.400000 +2706 450 0.400000 +2706 582 0.400000 +2706 628 0.400000 +2707 83 0.400000 +2707 189 0.400000 +2707 258 0.400000 +2707 317 0.400000 +2707 394 0.400000 +2707 443 0.400000 +2707 476 0.400000 +2707 511 0.400000 +2707 627 0.400000 +2707 700 0.400000 +2707 712 0.400000 +2707 720 0.400000 +2707 731 0.400000 +2707 760 0.400000 +2708 6 0.400000 +2708 32 0.400000 +2708 40 0.400000 +2708 53 0.400000 +2708 149 0.400000 +2708 221 0.400000 +2708 249 0.400000 +2708 338 0.400000 +2708 435 0.400000 +2708 480 0.400000 +2708 500 0.400000 +2708 519 0.400000 +2708 557 0.400000 +2708 597 0.400000 +2708 636 0.400000 +2708 683 0.400000 +2708 710 0.400000 +2708 735 0.400000 +2708 743 0.400000 +2708 753 0.400000 +2708 754 0.400000 +2708 760 0.400000 +2708 764 0.400000 +2708 785 0.400000 +2709 34 0.400000 +2709 86 0.400000 +2709 140 0.400000 +2709 202 0.400000 +2709 212 0.400000 +2709 238 0.400000 +2709 309 0.400000 +2709 339 0.400000 +2709 359 0.400000 +2709 413 0.400000 +2709 455 0.400000 +2709 458 0.400000 +2709 507 0.400000 +2709 542 0.400000 +2709 620 0.400000 +2709 631 0.400000 +2709 635 0.400000 +2709 638 0.400000 +2709 719 0.400000 +2709 735 0.400000 +2709 749 0.400000 +2710 9 0.400000 +2710 46 0.400000 +2710 115 0.400000 +2710 118 0.400000 +2710 126 0.400000 +2710 136 0.400000 +2710 159 0.400000 +2710 334 0.400000 +2710 405 0.400000 +2710 440 0.400000 +2710 455 0.400000 +2710 495 0.400000 +2710 552 0.400000 +2710 572 0.400000 +2710 644 0.400000 +2710 738 0.400000 +2710 770 0.400000 +2711 193 0.400000 +2711 298 0.400000 +2711 367 0.400000 +2711 450 0.400000 +2711 495 0.400000 +2711 522 0.400000 +2711 528 0.400000 +2711 529 0.400000 +2711 539 0.400000 +2711 571 0.400000 +2711 667 0.400000 +2711 695 0.400000 +2711 784 0.400000 +2711 798 0.400000 +2712 16 0.400000 +2712 39 0.400000 +2712 60 0.400000 +2712 88 0.400000 +2712 132 0.400000 +2712 139 0.400000 +2712 238 0.400000 +2712 252 0.400000 +2712 393 0.400000 +2712 482 0.400000 +2712 535 0.400000 +2712 639 0.400000 +2712 767 0.400000 +2713 15 0.400000 +2713 17 0.400000 +2713 51 0.400000 +2713 52 0.400000 +2713 62 0.400000 +2713 63 0.400000 +2713 150 0.400000 +2713 171 0.400000 +2713 198 0.400000 +2713 207 0.400000 +2713 237 0.400000 +2713 239 0.400000 +2713 341 0.400000 +2713 370 0.400000 +2713 387 0.400000 +2713 454 0.400000 +2713 485 0.400000 +2713 528 0.400000 +2713 553 0.400000 +2713 673 0.400000 +2713 724 0.400000 +2713 743 0.400000 +2714 8 0.400000 +2714 11 0.400000 +2714 13 0.400000 +2714 19 0.400000 +2714 24 0.400000 +2714 205 0.400000 +2714 245 0.400000 +2714 318 0.400000 +2714 352 0.400000 +2714 395 0.400000 +2714 406 0.400000 +2714 447 0.400000 +2714 561 0.400000 +2714 570 0.400000 +2714 645 0.400000 +2714 698 0.400000 +2714 757 0.400000 +2714 759 0.400000 +2714 777 0.400000 +2715 14 0.400000 +2715 40 0.400000 +2715 58 0.400000 +2715 97 0.400000 +2715 103 0.400000 +2715 127 0.400000 +2715 139 0.400000 +2715 230 0.400000 +2715 245 0.400000 +2715 280 0.400000 +2715 295 0.400000 +2715 454 0.400000 +2715 477 0.400000 +2715 488 0.400000 +2715 489 0.400000 +2715 503 0.400000 +2715 524 0.400000 +2715 551 0.400000 +2715 570 0.400000 +2715 634 0.400000 +2715 665 0.400000 +2715 699 0.400000 +2715 784 0.400000 +2716 14 0.400000 +2716 31 0.400000 +2716 73 0.400000 +2716 96 0.400000 +2716 223 0.400000 +2716 231 0.400000 +2716 242 0.400000 +2716 322 0.400000 +2716 336 0.400000 +2716 349 0.400000 +2716 392 0.400000 +2716 432 0.400000 +2716 456 0.400000 +2716 465 0.400000 +2716 471 0.400000 +2716 521 0.400000 +2716 541 0.400000 +2716 546 0.400000 +2716 557 0.400000 +2716 645 0.400000 +2716 702 0.400000 +2716 788 0.400000 +2716 795 0.400000 +2716 800 0.400000 +2717 28 0.400000 +2717 43 0.400000 +2717 115 0.400000 +2717 148 0.400000 +2717 158 0.400000 +2717 164 0.400000 +2717 399 0.400000 +2717 418 0.400000 +2717 423 0.400000 +2717 475 0.400000 +2717 504 0.400000 +2717 550 0.400000 +2717 600 0.400000 +2717 729 0.400000 +2718 152 0.400000 +2718 181 0.400000 +2718 293 0.400000 +2718 345 0.400000 +2718 412 0.400000 +2718 441 0.400000 +2718 473 0.400000 +2718 509 0.400000 +2718 605 0.400000 +2718 630 0.400000 +2718 662 0.400000 +2718 699 0.400000 +2718 703 0.400000 +2718 706 0.400000 +2718 753 0.400000 +2718 790 0.400000 +2719 141 0.400000 +2719 161 0.400000 +2719 185 0.400000 +2719 294 0.400000 +2719 298 0.400000 +2719 316 0.400000 +2719 338 0.400000 +2719 378 0.400000 +2719 430 0.400000 +2719 544 0.400000 +2719 614 0.400000 +2719 626 0.400000 +2719 645 0.400000 +2719 742 0.400000 +2719 744 0.400000 +2719 758 0.400000 +2719 790 0.400000 +2720 19 0.400000 +2720 75 0.400000 +2720 77 0.400000 +2720 152 0.400000 +2720 153 0.400000 +2720 302 0.400000 +2720 515 0.400000 +2720 589 0.400000 +2720 691 0.400000 +2720 722 0.400000 +2720 761 0.400000 +2721 62 0.400000 +2721 77 0.400000 +2721 82 0.400000 +2721 103 0.400000 +2721 122 0.400000 +2721 143 0.400000 +2721 147 0.400000 +2721 202 0.400000 +2721 290 0.400000 +2721 340 0.400000 +2721 344 0.400000 +2721 358 0.400000 +2721 374 0.400000 +2721 405 0.400000 +2721 419 0.400000 +2721 425 0.400000 +2721 454 0.400000 +2721 650 0.400000 +2721 742 0.400000 +2721 768 0.400000 +2721 784 0.400000 +2722 12 0.400000 +2722 106 0.400000 +2722 126 0.400000 +2722 208 0.400000 +2722 259 0.400000 +2722 281 0.400000 +2722 395 0.400000 +2722 501 0.400000 +2722 577 0.400000 +2722 644 0.400000 +2722 702 0.400000 +2722 743 0.400000 +2722 749 0.400000 +2722 752 0.400000 +2723 33 0.400000 +2723 37 0.400000 +2723 235 0.400000 +2723 284 0.400000 +2723 314 0.400000 +2723 326 0.400000 +2723 408 0.400000 +2723 459 0.400000 +2723 472 0.400000 +2723 486 0.400000 +2723 602 0.400000 +2723 723 0.400000 +2724 23 0.400000 +2724 54 0.400000 +2724 85 0.400000 +2724 96 0.400000 +2724 177 0.400000 +2724 238 0.400000 +2724 372 0.400000 +2724 409 0.400000 +2724 488 0.400000 +2724 781 0.400000 +2725 44 0.400000 +2725 79 0.400000 +2725 100 0.400000 +2725 120 0.400000 +2725 148 0.400000 +2725 202 0.400000 +2725 269 0.400000 +2725 289 0.400000 +2725 342 0.400000 +2725 364 0.400000 +2725 464 0.400000 +2725 494 0.400000 +2725 543 0.400000 +2725 558 0.400000 +2725 574 0.400000 +2725 603 0.400000 +2725 633 0.400000 +2725 668 0.400000 +2725 689 0.400000 +2725 701 0.400000 +2725 771 0.400000 +2725 774 0.400000 +2725 780 0.400000 +2725 799 0.400000 +2726 71 0.400000 +2726 145 0.400000 +2726 205 0.400000 +2726 208 0.400000 +2726 234 0.400000 +2726 308 0.400000 +2726 332 0.400000 +2726 380 0.400000 +2726 405 0.400000 +2726 420 0.400000 +2726 426 0.400000 +2726 465 0.400000 +2726 530 0.400000 +2726 540 0.400000 +2726 700 0.400000 +2726 707 0.400000 +2726 715 0.400000 +2726 763 0.400000 +2727 67 0.400000 +2727 97 0.400000 +2727 99 0.400000 +2727 507 0.400000 +2727 521 0.400000 +2727 522 0.400000 +2727 526 0.400000 +2727 551 0.400000 +2727 553 0.400000 +2727 560 0.400000 +2727 571 0.400000 +2727 588 0.400000 +2727 640 0.400000 +2727 641 0.400000 +2727 695 0.400000 +2727 776 0.400000 +2727 797 0.400000 +2728 48 0.400000 +2728 62 0.400000 +2728 79 0.400000 +2728 117 0.400000 +2728 133 0.400000 +2728 214 0.400000 +2728 320 0.400000 +2728 341 0.400000 +2728 345 0.400000 +2728 368 0.400000 +2728 374 0.400000 +2728 492 0.400000 +2728 524 0.400000 +2728 579 0.400000 +2728 601 0.400000 +2728 606 0.400000 +2728 616 0.400000 +2728 621 0.400000 +2728 701 0.400000 +2728 706 0.400000 +2728 712 0.400000 +2728 738 0.400000 +2728 739 0.400000 +2728 774 0.400000 +2729 1 0.400000 +2729 80 0.400000 +2729 179 0.400000 +2729 398 0.400000 +2729 458 0.400000 +2729 495 0.400000 +2729 529 0.400000 +2729 578 0.400000 +2729 646 0.400000 +2729 765 0.400000 +2730 54 0.400000 +2730 58 0.400000 +2730 67 0.400000 +2730 81 0.400000 +2730 106 0.400000 +2730 133 0.400000 +2730 165 0.400000 +2730 180 0.400000 +2730 201 0.400000 +2730 243 0.400000 +2730 262 0.400000 +2730 340 0.400000 +2730 428 0.400000 +2730 544 0.400000 +2730 565 0.400000 +2730 693 0.400000 +2730 714 0.400000 +2730 716 0.400000 +2730 734 0.400000 +2730 757 0.400000 +2730 770 0.400000 +2731 28 0.400000 +2731 47 0.400000 +2731 69 0.400000 +2731 126 0.400000 +2731 342 0.400000 +2731 441 0.400000 +2731 482 0.400000 +2731 527 0.400000 +2731 540 0.400000 +2731 570 0.400000 +2731 585 0.400000 +2731 741 0.400000 +2731 755 0.400000 +2731 759 0.400000 +2732 51 0.400000 +2732 132 0.400000 +2732 147 0.400000 +2732 415 0.400000 +2732 427 0.400000 +2732 589 0.400000 +2732 621 0.400000 +2732 703 0.400000 +2732 727 0.400000 +2732 753 0.400000 +2733 11 0.400000 +2733 62 0.400000 +2733 146 0.400000 +2733 154 0.400000 +2733 215 0.400000 +2733 217 0.400000 +2733 239 0.400000 +2733 316 0.400000 +2733 334 0.400000 +2733 493 0.400000 +2733 512 0.400000 +2733 568 0.400000 +2733 602 0.400000 +2733 641 0.400000 +2733 659 0.400000 +2733 707 0.400000 +2733 717 0.400000 +2733 749 0.400000 +2733 760 0.400000 +2733 781 0.400000 +2733 800 0.400000 +2734 17 0.400000 +2734 38 0.400000 +2734 43 0.400000 +2734 51 0.400000 +2734 78 0.400000 +2734 133 0.400000 +2734 139 0.400000 +2734 201 0.400000 +2734 273 0.400000 +2734 329 0.400000 +2734 345 0.400000 +2734 398 0.400000 +2734 422 0.400000 +2734 595 0.400000 +2734 619 0.400000 +2734 639 0.400000 +2734 710 0.400000 +2734 769 0.400000 +2734 782 0.400000 +2734 794 0.400000 +2735 76 0.400000 +2735 89 0.400000 +2735 176 0.400000 +2735 240 0.400000 +2735 241 0.400000 +2735 327 0.400000 +2735 435 0.400000 +2735 464 0.400000 +2735 562 0.400000 +2735 588 0.400000 +2735 758 0.400000 +2735 763 0.400000 +2735 779 0.400000 +2736 13 0.400000 +2736 20 0.400000 +2736 100 0.400000 +2736 178 0.400000 +2736 195 0.400000 +2736 291 0.400000 +2736 327 0.400000 +2736 378 0.400000 +2736 467 0.400000 +2736 500 0.400000 +2736 501 0.400000 +2736 550 0.400000 +2736 620 0.400000 +2736 623 0.400000 +2736 634 0.400000 +2736 771 0.400000 +2736 789 0.400000 +2737 33 0.400000 +2737 47 0.400000 +2737 62 0.400000 +2737 120 0.400000 +2737 162 0.400000 +2737 190 0.400000 +2737 216 0.400000 +2737 237 0.400000 +2737 345 0.400000 +2737 411 0.400000 +2737 516 0.400000 +2737 539 0.400000 +2737 632 0.400000 +2737 646 0.400000 +2737 685 0.400000 +2737 711 0.400000 +2738 6 0.400000 +2738 12 0.400000 +2738 30 0.400000 +2738 55 0.400000 +2738 59 0.400000 +2738 74 0.400000 +2738 78 0.400000 +2738 114 0.400000 +2738 139 0.400000 +2738 201 0.400000 +2738 208 0.400000 +2738 235 0.400000 +2738 287 0.400000 +2738 290 0.400000 +2738 339 0.400000 +2738 356 0.400000 +2738 362 0.400000 +2738 444 0.400000 +2738 466 0.400000 +2738 476 0.400000 +2738 485 0.400000 +2738 537 0.400000 +2738 569 0.400000 +2738 603 0.400000 +2738 687 0.400000 +2738 715 0.400000 +2738 800 0.400000 +2739 2 0.400000 +2739 47 0.400000 +2739 89 0.400000 +2739 96 0.400000 +2739 100 0.400000 +2739 257 0.400000 +2739 348 0.400000 +2739 352 0.400000 +2739 376 0.400000 +2739 384 0.400000 +2739 445 0.400000 +2739 502 0.400000 +2739 519 0.400000 +2739 538 0.400000 +2739 575 0.400000 +2739 577 0.400000 +2739 617 0.400000 +2739 634 0.400000 +2739 658 0.400000 +2739 663 0.400000 +2739 780 0.400000 +2740 60 0.400000 +2740 137 0.400000 +2740 143 0.400000 +2740 162 0.400000 +2740 223 0.400000 +2740 248 0.400000 +2740 262 0.400000 +2740 282 0.400000 +2740 330 0.400000 +2740 374 0.400000 +2740 398 0.400000 +2740 466 0.400000 +2740 474 0.400000 +2740 531 0.400000 +2740 545 0.400000 +2740 568 0.400000 +2740 577 0.400000 +2740 597 0.400000 +2740 784 0.400000 +2740 793 0.400000 +2741 144 0.400000 +2741 325 0.400000 +2741 422 0.400000 +2741 579 0.400000 +2741 642 0.400000 +2741 647 0.400000 +2741 661 0.400000 +2741 719 0.400000 +2741 727 0.400000 +2741 728 0.400000 +2741 787 0.400000 +2742 13 0.400000 +2742 147 0.400000 +2742 203 0.400000 +2742 296 0.400000 +2742 334 0.400000 +2742 337 0.400000 +2742 339 0.400000 +2742 341 0.400000 +2742 342 0.400000 +2742 354 0.400000 +2742 401 0.400000 +2742 411 0.400000 +2742 451 0.400000 +2742 483 0.400000 +2742 533 0.400000 +2742 597 0.400000 +2742 705 0.400000 +2742 709 0.400000 +2742 724 0.400000 +2742 786 0.400000 +2743 7 0.400000 +2743 48 0.400000 +2743 66 0.400000 +2743 102 0.400000 +2743 190 0.400000 +2743 209 0.400000 +2743 306 0.400000 +2743 353 0.400000 +2743 372 0.400000 +2743 420 0.400000 +2743 496 0.400000 +2743 724 0.400000 +2743 737 0.400000 +2743 748 0.400000 +2743 790 0.400000 +2743 797 0.400000 +2744 17 0.400000 +2744 172 0.400000 +2744 175 0.400000 +2744 183 0.400000 +2744 214 0.400000 +2744 256 0.400000 +2744 353 0.400000 +2744 357 0.400000 +2744 387 0.400000 +2744 411 0.400000 +2744 456 0.400000 +2744 552 0.400000 +2744 589 0.400000 +2744 649 0.400000 +2744 719 0.400000 +2745 151 0.400000 +2745 261 0.400000 +2745 328 0.400000 +2745 422 0.400000 +2745 426 0.400000 +2745 439 0.400000 +2745 632 0.400000 +2745 653 0.400000 +2745 690 0.400000 +2745 764 0.400000 +2745 788 0.400000 +2745 796 0.400000 +2746 3 0.400000 +2746 105 0.400000 +2746 128 0.400000 +2746 287 0.400000 +2746 307 0.400000 +2746 324 0.400000 +2746 349 0.400000 +2746 425 0.400000 +2746 426 0.400000 +2746 660 0.400000 +2747 132 0.400000 +2747 137 0.400000 +2747 194 0.400000 +2747 268 0.400000 +2747 284 0.400000 +2747 286 0.400000 +2747 369 0.400000 +2747 443 0.400000 +2747 478 0.400000 +2747 586 0.400000 +2747 635 0.400000 +2747 678 0.400000 +2747 704 0.400000 +2747 758 0.400000 +2747 770 0.400000 +2748 75 0.400000 +2748 148 0.400000 +2748 250 0.400000 +2748 288 0.400000 +2748 342 0.400000 +2748 374 0.400000 +2748 477 0.400000 +2748 529 0.400000 +2748 591 0.400000 +2748 636 0.400000 +2748 725 0.400000 +2748 736 0.400000 +2748 770 0.400000 +2749 13 0.400000 +2749 23 0.400000 +2749 43 0.400000 +2749 66 0.400000 +2749 111 0.400000 +2749 131 0.400000 +2749 142 0.400000 +2749 202 0.400000 +2749 220 0.400000 +2749 257 0.400000 +2749 333 0.400000 +2749 425 0.400000 +2749 462 0.400000 +2749 498 0.400000 +2749 592 0.400000 +2749 594 0.400000 +2749 715 0.400000 +2749 721 0.400000 +2750 86 0.400000 +2750 137 0.400000 +2750 158 0.400000 +2750 206 0.400000 +2750 225 0.400000 +2750 239 0.400000 +2750 392 0.400000 +2750 550 0.400000 +2750 676 0.400000 +2750 681 0.400000 +2750 692 0.400000 +2750 763 0.400000 +2751 32 0.400000 +2751 107 0.400000 +2751 185 0.400000 +2751 187 0.400000 +2751 230 0.400000 +2751 292 0.400000 +2751 516 0.400000 +2751 571 0.400000 +2751 620 0.400000 +2751 642 0.400000 +2751 644 0.400000 +2751 738 0.400000 +2751 759 0.400000 +2751 768 0.400000 +2752 43 0.400000 +2752 105 0.400000 +2752 171 0.400000 +2752 239 0.400000 +2752 307 0.400000 +2752 343 0.400000 +2752 425 0.400000 +2752 431 0.400000 +2752 550 0.400000 +2752 603 0.400000 +2752 614 0.400000 +2752 640 0.400000 +2752 722 0.400000 +2752 774 0.400000 +2753 36 0.400000 +2753 93 0.400000 +2753 232 0.400000 +2753 262 0.400000 +2753 287 0.400000 +2753 309 0.400000 +2753 313 0.400000 +2753 314 0.400000 +2753 333 0.400000 +2753 423 0.400000 +2753 461 0.400000 +2753 710 0.400000 +2754 118 0.400000 +2754 215 0.400000 +2754 262 0.400000 +2754 306 0.400000 +2754 321 0.400000 +2754 363 0.400000 +2754 408 0.400000 +2754 436 0.400000 +2754 447 0.400000 +2754 626 0.400000 +2754 676 0.400000 +2754 792 0.400000 +2755 11 0.400000 +2755 82 0.400000 +2755 123 0.400000 +2755 250 0.400000 +2755 287 0.400000 +2755 305 0.400000 +2755 363 0.400000 +2755 370 0.400000 +2755 404 0.400000 +2755 417 0.400000 +2755 445 0.400000 +2755 487 0.400000 +2755 681 0.400000 +2756 51 0.400000 +2756 163 0.400000 +2756 194 0.400000 +2756 275 0.400000 +2756 339 0.400000 +2756 352 0.400000 +2756 380 0.400000 +2756 415 0.400000 +2756 423 0.400000 +2756 437 0.400000 +2756 453 0.400000 +2756 467 0.400000 +2756 523 0.400000 +2756 579 0.400000 +2757 46 0.400000 +2757 58 0.400000 +2757 130 0.400000 +2757 140 0.400000 +2757 235 0.400000 +2757 242 0.400000 +2757 259 0.400000 +2757 328 0.400000 +2757 345 0.400000 +2757 374 0.400000 +2757 432 0.400000 +2757 465 0.400000 +2757 482 0.400000 +2757 494 0.400000 +2757 535 0.400000 +2757 538 0.400000 +2757 680 0.400000 +2757 702 0.400000 +2757 736 0.400000 +2757 766 0.400000 +2758 14 0.400000 +2758 66 0.400000 +2758 69 0.400000 +2758 102 0.400000 +2758 150 0.400000 +2758 221 0.400000 +2758 259 0.400000 +2758 304 0.400000 +2758 311 0.400000 +2758 365 0.400000 +2758 388 0.400000 +2758 394 0.400000 +2758 409 0.400000 +2758 552 0.400000 +2758 629 0.400000 +2758 651 0.400000 +2758 770 0.400000 +2759 38 0.400000 +2759 133 0.400000 +2759 147 0.400000 +2759 148 0.400000 +2759 201 0.400000 +2759 232 0.400000 +2759 314 0.400000 +2759 328 0.400000 +2759 404 0.400000 +2759 459 0.400000 +2759 479 0.400000 +2759 562 0.400000 +2759 611 0.400000 +2759 741 0.400000 +2759 770 0.400000 +2759 795 0.400000 +2760 45 0.400000 +2760 50 0.400000 +2760 151 0.400000 +2760 161 0.400000 +2760 165 0.400000 +2760 195 0.400000 +2760 246 0.400000 +2760 253 0.400000 +2760 286 0.400000 +2760 325 0.400000 +2760 353 0.400000 +2760 393 0.400000 +2760 403 0.400000 +2760 406 0.400000 +2760 440 0.400000 +2760 501 0.400000 +2760 507 0.400000 +2760 671 0.400000 +2760 720 0.400000 +2760 749 0.400000 +2761 32 0.400000 +2761 61 0.400000 +2761 63 0.400000 +2761 109 0.400000 +2761 111 0.400000 +2761 117 0.400000 +2761 180 0.400000 +2761 198 0.400000 +2761 242 0.400000 +2761 246 0.400000 +2761 271 0.400000 +2761 287 0.400000 +2761 317 0.400000 +2761 331 0.400000 +2761 394 0.400000 +2761 399 0.400000 +2761 401 0.400000 +2761 431 0.400000 +2761 453 0.400000 +2761 456 0.400000 +2761 483 0.400000 +2761 516 0.400000 +2761 547 0.400000 +2761 616 0.400000 +2761 678 0.400000 +2761 679 0.400000 +2761 750 0.400000 +2762 4 0.400000 +2762 47 0.400000 +2762 68 0.400000 +2762 84 0.400000 +2762 248 0.400000 +2762 337 0.400000 +2762 352 0.400000 +2762 354 0.400000 +2762 464 0.400000 +2762 480 0.400000 +2762 504 0.400000 +2762 547 0.400000 +2762 589 0.400000 +2762 657 0.400000 +2762 679 0.400000 +2762 731 0.400000 +2762 779 0.400000 +2763 65 0.400000 +2763 82 0.400000 +2763 139 0.400000 +2763 183 0.400000 +2763 228 0.400000 +2763 239 0.400000 +2763 247 0.400000 +2763 265 0.400000 +2763 317 0.400000 +2763 332 0.400000 +2763 438 0.400000 +2763 463 0.400000 +2763 470 0.400000 +2763 545 0.400000 +2763 593 0.400000 +2763 609 0.400000 +2763 650 0.400000 +2763 671 0.400000 +2763 711 0.400000 +2763 762 0.400000 +2764 69 0.400000 +2764 293 0.400000 +2764 436 0.400000 +2764 613 0.400000 +2764 625 0.400000 +2764 658 0.400000 +2764 683 0.400000 +2764 716 0.400000 +2764 749 0.400000 +2765 1 0.400000 +2765 15 0.400000 +2765 34 0.400000 +2765 71 0.400000 +2765 96 0.400000 +2765 127 0.400000 +2765 145 0.400000 +2765 170 0.400000 +2765 344 0.400000 +2765 360 0.400000 +2765 375 0.400000 +2765 399 0.400000 +2765 483 0.400000 +2765 493 0.400000 +2765 548 0.400000 +2765 590 0.400000 +2765 592 0.400000 +2765 611 0.400000 +2765 614 0.400000 +2765 620 0.400000 +2765 644 0.400000 +2765 656 0.400000 +2765 757 0.400000 +2765 784 0.400000 +2766 71 0.400000 +2766 149 0.400000 +2766 232 0.400000 +2766 264 0.400000 +2766 305 0.400000 +2766 348 0.400000 +2766 475 0.400000 +2766 521 0.400000 +2766 559 0.400000 +2766 626 0.400000 +2766 660 0.400000 +2766 737 0.400000 +2766 774 0.400000 +2766 781 0.400000 +2767 46 0.400000 +2767 85 0.400000 +2767 104 0.400000 +2767 110 0.400000 +2767 118 0.400000 +2767 148 0.400000 +2767 195 0.400000 +2767 226 0.400000 +2767 254 0.400000 +2767 312 0.400000 +2767 314 0.400000 +2767 320 0.400000 +2767 541 0.400000 +2767 588 0.400000 +2767 614 0.400000 +2767 639 0.400000 +2767 670 0.400000 +2768 210 0.400000 +2768 304 0.400000 +2768 335 0.400000 +2768 379 0.400000 +2768 429 0.400000 +2768 467 0.400000 +2768 479 0.400000 +2768 534 0.400000 +2768 577 0.400000 +2768 669 0.400000 +2768 717 0.400000 +2768 758 0.400000 +2769 4 0.400000 +2769 20 0.400000 +2769 41 0.400000 +2769 107 0.400000 +2769 112 0.400000 +2769 115 0.400000 +2769 118 0.400000 +2769 156 0.400000 +2769 250 0.400000 +2769 262 0.400000 +2769 360 0.400000 +2769 412 0.400000 +2769 417 0.400000 +2769 431 0.400000 +2769 550 0.400000 +2769 569 0.400000 +2769 692 0.400000 +2769 710 0.400000 +2769 756 0.400000 +2770 149 0.400000 +2770 162 0.400000 +2770 298 0.400000 +2770 618 0.400000 +2770 652 0.400000 +2770 680 0.400000 +2770 734 0.400000 +2770 789 0.400000 +2770 798 0.400000 +2771 41 0.400000 +2771 76 0.400000 +2771 165 0.400000 +2771 175 0.400000 +2771 256 0.400000 +2771 330 0.400000 +2771 355 0.400000 +2771 462 0.400000 +2771 496 0.400000 +2771 532 0.400000 +2771 556 0.400000 +2771 691 0.400000 +2771 707 0.400000 +2772 28 0.400000 +2772 97 0.400000 +2772 194 0.400000 +2772 316 0.400000 +2772 329 0.400000 +2772 448 0.400000 +2773 13 0.400000 +2773 46 0.400000 +2773 97 0.400000 +2773 101 0.400000 +2773 105 0.400000 +2773 138 0.400000 +2773 196 0.400000 +2773 202 0.400000 +2773 226 0.400000 +2773 400 0.400000 +2773 411 0.400000 +2773 433 0.400000 +2773 450 0.400000 +2773 469 0.400000 +2773 557 0.400000 +2773 577 0.400000 +2773 603 0.400000 +2773 639 0.400000 +2773 643 0.400000 +2773 666 0.400000 +2773 743 0.400000 +2773 753 0.400000 +2773 759 0.400000 +2773 777 0.400000 +2774 33 0.400000 +2774 54 0.400000 +2774 131 0.400000 +2774 435 0.400000 +2774 451 0.400000 +2774 457 0.400000 +2774 466 0.400000 +2774 501 0.400000 +2774 537 0.400000 +2774 658 0.400000 +2774 726 0.400000 +2774 764 0.400000 +2775 50 0.400000 +2775 264 0.400000 +2775 275 0.400000 +2775 418 0.400000 +2775 525 0.400000 +2775 540 0.400000 +2775 584 0.400000 +2775 705 0.400000 +2775 715 0.400000 +2775 718 0.400000 +2775 731 0.400000 +2776 132 0.400000 +2776 140 0.400000 +2776 216 0.400000 +2776 226 0.400000 +2776 338 0.400000 +2776 339 0.400000 +2776 388 0.400000 +2776 411 0.400000 +2776 426 0.400000 +2776 626 0.400000 +2776 660 0.400000 +2776 703 0.400000 +2777 49 0.400000 +2777 146 0.400000 +2777 266 0.400000 +2777 273 0.400000 +2777 371 0.400000 +2777 414 0.400000 +2777 457 0.400000 +2777 495 0.400000 +2777 580 0.400000 +2777 693 0.400000 +2778 35 0.400000 +2778 46 0.400000 +2778 143 0.400000 +2778 180 0.400000 +2778 197 0.400000 +2778 317 0.400000 +2778 416 0.400000 +2778 453 0.400000 +2778 480 0.400000 +2778 555 0.400000 +2778 796 0.400000 +2778 798 0.400000 +2779 57 0.400000 +2779 93 0.400000 +2779 124 0.400000 +2779 165 0.400000 +2779 185 0.400000 +2779 231 0.400000 +2779 354 0.400000 +2779 369 0.400000 +2779 380 0.400000 +2779 524 0.400000 +2779 591 0.400000 +2779 719 0.400000 +2779 763 0.400000 +2779 790 0.400000 +2780 83 0.400000 +2780 104 0.400000 +2780 112 0.400000 +2780 127 0.400000 +2780 137 0.400000 +2780 271 0.400000 +2780 333 0.400000 +2780 343 0.400000 +2780 483 0.400000 +2780 486 0.400000 +2780 744 0.400000 +2781 42 0.400000 +2781 159 0.400000 +2781 167 0.400000 +2781 267 0.400000 +2781 301 0.400000 +2781 374 0.400000 +2781 385 0.400000 +2781 392 0.400000 +2781 402 0.400000 +2781 495 0.400000 +2781 507 0.400000 +2781 591 0.400000 +2781 629 0.400000 +2781 638 0.400000 +2781 708 0.400000 +2781 791 0.400000 +2782 22 0.400000 +2782 60 0.400000 +2782 109 0.400000 +2782 126 0.400000 +2782 131 0.400000 +2782 174 0.400000 +2782 215 0.400000 +2782 234 0.400000 +2782 325 0.400000 +2782 327 0.400000 +2782 384 0.400000 +2782 411 0.400000 +2782 412 0.400000 +2782 435 0.400000 +2782 564 0.400000 +2782 608 0.400000 +2782 664 0.400000 +2782 679 0.400000 +2782 757 0.400000 +2783 3 0.400000 +2783 26 0.400000 +2783 103 0.400000 +2783 134 0.400000 +2783 163 0.400000 +2783 176 0.400000 +2783 186 0.400000 +2783 195 0.400000 +2783 207 0.400000 +2783 420 0.400000 +2783 446 0.400000 +2783 448 0.400000 +2783 449 0.400000 +2783 618 0.400000 +2783 668 0.400000 +2783 700 0.400000 +2783 739 0.400000 +2783 793 0.400000 +2783 797 0.400000 +2784 108 0.400000 +2784 172 0.400000 +2784 204 0.400000 +2784 211 0.400000 +2784 257 0.400000 +2784 278 0.400000 +2784 323 0.400000 +2784 387 0.400000 +2784 473 0.400000 +2784 717 0.400000 +2784 727 0.400000 +2785 17 0.400000 +2785 23 0.400000 +2785 35 0.400000 +2785 42 0.400000 +2785 71 0.400000 +2785 87 0.400000 +2785 88 0.400000 +2785 367 0.400000 +2785 369 0.400000 +2785 392 0.400000 +2785 401 0.400000 +2785 408 0.400000 +2785 426 0.400000 +2785 520 0.400000 +2785 528 0.400000 +2785 579 0.400000 +2785 716 0.400000 +2785 743 0.400000 +2785 775 0.400000 +2786 3 0.400000 +2786 63 0.400000 +2786 104 0.400000 +2786 149 0.400000 +2786 308 0.400000 +2786 391 0.400000 +2786 506 0.400000 +2786 551 0.400000 +2786 564 0.400000 +2786 567 0.400000 +2786 576 0.400000 +2786 589 0.400000 +2786 709 0.400000 +2786 772 0.400000 +2787 12 0.400000 +2787 28 0.400000 +2787 33 0.400000 +2787 37 0.400000 +2787 73 0.400000 +2787 138 0.400000 +2787 160 0.400000 +2787 214 0.400000 +2787 281 0.400000 +2787 344 0.400000 +2787 430 0.400000 +2787 545 0.400000 +2787 550 0.400000 +2787 636 0.400000 +2787 698 0.400000 +2787 735 0.400000 +2787 769 0.400000 +2787 794 0.400000 +2787 798 0.400000 +2788 42 0.400000 +2788 102 0.400000 +2788 107 0.400000 +2788 176 0.400000 +2788 328 0.400000 +2788 380 0.400000 +2788 441 0.400000 +2788 458 0.400000 +2788 508 0.400000 +2789 4 0.400000 +2789 10 0.400000 +2789 113 0.400000 +2789 213 0.400000 +2789 222 0.400000 +2789 232 0.400000 +2789 250 0.400000 +2789 305 0.400000 +2789 332 0.400000 +2789 378 0.400000 +2789 461 0.400000 +2789 473 0.400000 +2789 517 0.400000 +2789 597 0.400000 +2789 600 0.400000 +2789 648 0.400000 +2789 658 0.400000 +2789 701 0.400000 +2789 749 0.400000 +2789 754 0.400000 +2789 755 0.400000 +2790 5 0.400000 +2790 27 0.400000 +2790 159 0.400000 +2790 204 0.400000 +2790 231 0.400000 +2790 244 0.400000 +2790 287 0.400000 +2790 299 0.400000 +2790 305 0.400000 +2790 312 0.400000 +2790 414 0.400000 +2790 438 0.400000 +2790 444 0.400000 +2790 445 0.400000 +2790 450 0.400000 +2790 503 0.400000 +2790 615 0.400000 +2790 625 0.400000 +2790 634 0.400000 +2790 645 0.400000 +2790 698 0.400000 +2790 752 0.400000 +2790 774 0.400000 +2791 13 0.400000 +2791 22 0.400000 +2791 24 0.400000 +2791 115 0.400000 +2791 197 0.400000 +2791 200 0.400000 +2791 205 0.400000 +2791 217 0.400000 +2791 239 0.400000 +2791 262 0.400000 +2791 399 0.400000 +2791 469 0.400000 +2791 501 0.400000 +2791 790 0.400000 +2792 84 0.400000 +2792 102 0.400000 +2792 140 0.400000 +2792 187 0.400000 +2792 273 0.400000 +2792 331 0.400000 +2792 382 0.400000 +2792 398 0.400000 +2792 430 0.400000 +2792 505 0.400000 +2792 565 0.400000 +2792 632 0.400000 +2792 654 0.400000 +2792 746 0.400000 +2793 105 0.400000 +2793 240 0.400000 +2793 319 0.400000 +2793 362 0.400000 +2793 382 0.400000 +2793 417 0.400000 +2793 450 0.400000 +2793 461 0.400000 +2793 487 0.400000 +2793 510 0.400000 +2793 549 0.400000 +2793 560 0.400000 +2793 561 0.400000 +2793 568 0.400000 +2793 627 0.400000 +2793 771 0.400000 +2794 307 0.400000 +2794 344 0.400000 +2794 488 0.400000 +2794 632 0.400000 +2794 641 0.400000 +2794 735 0.400000 +2795 13 0.400000 +2795 152 0.400000 +2795 181 0.400000 +2795 196 0.400000 +2795 223 0.400000 +2795 241 0.400000 +2795 314 0.400000 +2795 322 0.400000 +2795 325 0.400000 +2795 345 0.400000 +2795 358 0.400000 +2795 413 0.400000 +2795 427 0.400000 +2795 441 0.400000 +2795 443 0.400000 +2795 459 0.400000 +2795 475 0.400000 +2796 62 0.400000 +2796 70 0.400000 +2796 75 0.400000 +2796 183 0.400000 +2796 215 0.400000 +2796 368 0.400000 +2796 396 0.400000 +2796 414 0.400000 +2796 464 0.400000 +2796 491 0.400000 +2796 541 0.400000 +2796 550 0.400000 +2796 599 0.400000 +2796 618 0.400000 +2796 619 0.400000 +2796 642 0.400000 +2796 731 0.400000 +2796 758 0.400000 +2796 773 0.400000 +2797 27 0.400000 +2797 33 0.400000 +2797 42 0.400000 +2797 146 0.400000 +2797 152 0.400000 +2797 197 0.400000 +2797 206 0.400000 +2797 208 0.400000 +2797 318 0.400000 +2797 338 0.400000 +2797 382 0.400000 +2797 438 0.400000 +2797 443 0.400000 +2797 466 0.400000 +2797 541 0.400000 +2797 561 0.400000 +2797 615 0.400000 +2797 655 0.400000 +2797 670 0.400000 +2798 25 0.400000 +2798 64 0.400000 +2798 135 0.400000 +2798 204 0.400000 +2798 235 0.400000 +2798 257 0.400000 +2798 496 0.400000 +2798 498 0.400000 +2798 719 0.400000 +2798 728 0.400000 +2798 751 0.400000 +2798 778 0.400000 +2798 793 0.400000 +2799 12 0.400000 +2799 24 0.400000 +2799 53 0.400000 +2799 95 0.400000 +2799 162 0.400000 +2799 194 0.400000 +2799 257 0.400000 +2799 346 0.400000 +2799 440 0.400000 +2799 451 0.400000 +2799 514 0.400000 +2799 517 0.400000 +2799 586 0.400000 +2799 588 0.400000 +2800 3 0.400000 +2800 87 0.400000 +2800 116 0.400000 +2800 133 0.400000 +2800 285 0.400000 +2800 292 0.400000 +2800 293 0.400000 +2800 321 0.400000 +2800 388 0.400000 +2800 424 0.400000 +2800 442 0.400000 +2800 535 0.400000 +2800 542 0.400000 +2800 549 0.400000 +2800 585 0.400000 +2800 635 0.400000 +2800 649 0.400000 +2800 676 0.400000 +2800 737 0.400000 +2801 30 0.400000 +2801 61 0.400000 +2801 101 0.400000 +2801 107 0.400000 +2801 110 0.400000 +2801 185 0.400000 +2801 186 0.400000 +2801 262 0.400000 +2801 318 0.400000 +2801 348 0.400000 +2801 394 0.400000 +2801 398 0.400000 +2801 445 0.400000 +2801 463 0.400000 +2801 464 0.400000 +2801 514 0.400000 +2801 516 0.400000 +2801 534 0.400000 +2801 555 0.400000 +2801 599 0.400000 +2801 605 0.400000 +2801 644 0.400000 +2802 7 0.400000 +2802 27 0.400000 +2802 91 0.400000 +2802 188 0.400000 +2802 219 0.400000 +2802 265 0.400000 +2802 388 0.400000 +2802 424 0.400000 +2802 480 0.400000 +2802 493 0.400000 +2802 643 0.400000 +2802 707 0.400000 +2802 709 0.400000 +2802 773 0.400000 +2803 83 0.400000 +2803 128 0.400000 +2803 136 0.400000 +2803 147 0.400000 +2803 148 0.400000 +2803 249 0.400000 +2803 354 0.400000 +2803 402 0.400000 +2803 414 0.400000 +2803 471 0.400000 +2803 537 0.400000 +2803 563 0.400000 +2803 644 0.400000 +2803 652 0.400000 +2803 686 0.400000 +2803 706 0.400000 +2804 21 0.400000 +2804 36 0.400000 +2804 111 0.400000 +2804 229 0.400000 +2804 232 0.400000 +2804 265 0.400000 +2804 276 0.400000 +2804 310 0.400000 +2804 313 0.400000 +2804 348 0.400000 +2804 421 0.400000 +2804 450 0.400000 +2804 480 0.400000 +2804 525 0.400000 +2804 589 0.400000 +2804 599 0.400000 +2804 630 0.400000 +2804 677 0.400000 +2804 689 0.400000 +2804 719 0.400000 +2804 768 0.400000 +2805 30 0.400000 +2805 34 0.400000 +2805 324 0.400000 +2805 328 0.400000 +2805 355 0.400000 +2805 403 0.400000 +2805 408 0.400000 +2805 443 0.400000 +2805 450 0.400000 +2805 542 0.400000 +2805 577 0.400000 +2805 627 0.400000 +2805 667 0.400000 +2805 676 0.400000 +2805 734 0.400000 +2805 757 0.400000 +2805 800 0.400000 +2806 21 0.400000 +2806 28 0.400000 +2806 36 0.400000 +2806 50 0.400000 +2806 63 0.400000 +2806 103 0.400000 +2806 151 0.400000 +2806 183 0.400000 +2806 224 0.400000 +2806 291 0.400000 +2806 318 0.400000 +2806 380 0.400000 +2806 381 0.400000 +2806 476 0.400000 +2806 507 0.400000 +2806 511 0.400000 +2806 518 0.400000 +2806 530 0.400000 +2806 538 0.400000 +2806 590 0.400000 +2806 603 0.400000 +2806 669 0.400000 +2806 712 0.400000 +2806 718 0.400000 +2806 759 0.400000 +2806 773 0.400000 +2807 17 0.400000 +2807 22 0.400000 +2807 27 0.400000 +2807 50 0.400000 +2807 73 0.400000 +2807 81 0.400000 +2807 120 0.400000 +2807 261 0.400000 +2807 291 0.400000 +2807 419 0.400000 +2807 448 0.400000 +2807 517 0.400000 +2807 551 0.400000 +2807 579 0.400000 +2807 706 0.400000 +2807 762 0.400000 +2807 766 0.400000 +2808 43 0.400000 +2808 60 0.400000 +2808 98 0.400000 +2808 282 0.400000 +2808 338 0.400000 +2808 410 0.400000 +2808 426 0.400000 +2808 449 0.400000 +2808 456 0.400000 +2808 615 0.400000 +2808 635 0.400000 +2808 662 0.400000 +2808 727 0.400000 +2808 763 0.400000 +2809 9 0.400000 +2809 38 0.400000 +2809 44 0.400000 +2809 71 0.400000 +2809 111 0.400000 +2809 126 0.400000 +2809 153 0.400000 +2809 171 0.400000 +2809 196 0.400000 +2809 198 0.400000 +2809 233 0.400000 +2809 286 0.400000 +2809 327 0.400000 +2809 347 0.400000 +2809 387 0.400000 +2809 405 0.400000 +2809 455 0.400000 +2809 463 0.400000 +2809 468 0.400000 +2809 483 0.400000 +2809 528 0.400000 +2809 630 0.400000 +2809 642 0.400000 +2809 647 0.400000 +2809 667 0.400000 +2809 671 0.400000 +2809 694 0.400000 +2809 695 0.400000 +2809 712 0.400000 +2810 17 0.400000 +2810 39 0.400000 +2810 72 0.400000 +2810 114 0.400000 +2810 223 0.400000 +2810 266 0.400000 +2810 295 0.400000 +2810 350 0.400000 +2810 392 0.400000 +2810 441 0.400000 +2810 490 0.400000 +2810 507 0.400000 +2810 564 0.400000 +2810 750 0.400000 +2810 758 0.400000 +2811 18 0.400000 +2811 69 0.400000 +2811 131 0.400000 +2811 166 0.400000 +2811 229 0.400000 +2811 248 0.400000 +2811 296 0.400000 +2811 322 0.400000 +2811 331 0.400000 +2811 345 0.400000 +2811 358 0.400000 +2811 424 0.400000 +2811 450 0.400000 +2811 473 0.400000 +2811 495 0.400000 +2811 581 0.400000 +2811 596 0.400000 +2811 606 0.400000 +2811 618 0.400000 +2811 659 0.400000 +2811 664 0.400000 +2811 666 0.400000 +2811 686 0.400000 +2811 747 0.400000 +2811 751 0.400000 +2812 66 0.400000 +2812 80 0.400000 +2812 216 0.400000 +2812 286 0.400000 +2812 289 0.400000 +2812 320 0.400000 +2812 332 0.400000 +2812 351 0.400000 +2812 368 0.400000 +2812 602 0.400000 +2812 606 0.400000 +2812 618 0.400000 +2812 621 0.400000 +2812 634 0.400000 +2812 754 0.400000 +2812 758 0.400000 +2813 10 0.400000 +2813 14 0.400000 +2813 44 0.400000 +2813 84 0.400000 +2813 155 0.400000 +2813 193 0.400000 +2813 249 0.400000 +2813 260 0.400000 +2813 275 0.400000 +2813 351 0.400000 +2813 512 0.400000 +2813 514 0.400000 +2813 520 0.400000 +2813 542 0.400000 +2813 621 0.400000 +2813 644 0.400000 +2813 666 0.400000 +2813 681 0.400000 +2813 731 0.400000 +2813 736 0.400000 +2814 55 0.400000 +2814 77 0.400000 +2814 127 0.400000 +2814 167 0.400000 +2814 179 0.400000 +2814 384 0.400000 +2814 437 0.400000 +2814 465 0.400000 +2814 473 0.400000 +2814 483 0.400000 +2814 500 0.400000 +2814 556 0.400000 +2814 598 0.400000 +2814 599 0.400000 +2814 645 0.400000 +2814 707 0.400000 +2814 757 0.400000 +2815 1 0.400000 +2815 8 0.400000 +2815 117 0.400000 +2815 190 0.400000 +2815 276 0.400000 +2815 309 0.400000 +2815 395 0.400000 +2815 447 0.400000 +2815 449 0.400000 +2815 564 0.400000 +2815 654 0.400000 +2815 692 0.400000 +2815 724 0.400000 +2815 750 0.400000 +2815 780 0.400000 +2816 80 0.400000 +2816 92 0.400000 +2816 233 0.400000 +2816 246 0.400000 +2816 278 0.400000 +2816 426 0.400000 +2816 435 0.400000 +2816 475 0.400000 +2816 527 0.400000 +2816 570 0.400000 +2816 593 0.400000 +2816 626 0.400000 +2816 750 0.400000 +2816 768 0.400000 +2817 8 0.400000 +2817 42 0.400000 +2817 52 0.400000 +2817 72 0.400000 +2817 92 0.400000 +2817 110 0.400000 +2817 115 0.400000 +2817 116 0.400000 +2817 189 0.400000 +2817 195 0.400000 +2817 250 0.400000 +2817 324 0.400000 +2817 326 0.400000 +2817 358 0.400000 +2817 389 0.400000 +2817 409 0.400000 +2817 441 0.400000 +2817 480 0.400000 +2817 504 0.400000 +2817 529 0.400000 +2817 579 0.400000 +2817 698 0.400000 +2817 725 0.400000 +2817 729 0.400000 +2817 771 0.400000 +2818 63 0.400000 +2818 113 0.400000 +2818 158 0.400000 +2818 206 0.400000 +2818 270 0.400000 +2818 274 0.400000 +2818 298 0.400000 +2818 306 0.400000 +2818 334 0.400000 +2818 397 0.400000 +2818 398 0.400000 +2818 422 0.400000 +2818 425 0.400000 +2818 482 0.400000 +2818 616 0.400000 +2818 621 0.400000 +2818 654 0.400000 +2818 740 0.400000 +2818 775 0.400000 +2819 39 0.400000 +2819 95 0.400000 +2819 197 0.400000 +2819 271 0.400000 +2819 282 0.400000 +2819 324 0.400000 +2819 341 0.400000 +2819 383 0.400000 +2819 389 0.400000 +2819 445 0.400000 +2819 680 0.400000 +2819 682 0.400000 +2819 745 0.400000 +2819 774 0.400000 +2819 798 0.400000 +2820 9 0.400000 +2820 122 0.400000 +2820 125 0.400000 +2820 215 0.400000 +2820 276 0.400000 +2820 333 0.400000 +2820 483 0.400000 +2820 512 0.400000 +2820 584 0.400000 +2820 595 0.400000 +2820 686 0.400000 +2821 71 0.400000 +2821 135 0.400000 +2821 152 0.400000 +2821 177 0.400000 +2821 398 0.400000 +2821 452 0.400000 +2821 502 0.400000 +2821 544 0.400000 +2821 616 0.400000 +2821 638 0.400000 +2821 756 0.400000 +2821 792 0.400000 +2822 95 0.400000 +2822 114 0.400000 +2822 138 0.400000 +2822 140 0.400000 +2822 153 0.400000 +2822 175 0.400000 +2822 201 0.400000 +2822 212 0.400000 +2822 247 0.400000 +2822 366 0.400000 +2822 403 0.400000 +2822 443 0.400000 +2822 448 0.400000 +2822 483 0.400000 +2822 527 0.400000 +2822 566 0.400000 +2822 586 0.400000 +2823 44 0.400000 +2823 65 0.400000 +2823 184 0.400000 +2823 206 0.400000 +2823 237 0.400000 +2823 373 0.400000 +2823 414 0.400000 +2823 513 0.400000 +2823 556 0.400000 +2823 559 0.400000 +2823 662 0.400000 +2823 669 0.400000 +2823 744 0.400000 +2823 745 0.400000 +2823 748 0.400000 +2823 796 0.400000 +2824 6 0.400000 +2824 17 0.400000 +2824 105 0.400000 +2824 143 0.400000 +2824 151 0.400000 +2824 278 0.400000 +2824 298 0.400000 +2824 303 0.400000 +2824 356 0.400000 +2824 385 0.400000 +2824 452 0.400000 +2824 540 0.400000 +2824 541 0.400000 +2824 609 0.400000 +2824 746 0.400000 +2824 773 0.400000 +2825 88 0.400000 +2825 246 0.400000 +2825 277 0.400000 +2825 458 0.400000 +2825 468 0.400000 +2825 475 0.400000 +2825 490 0.400000 +2825 497 0.400000 +2825 512 0.400000 +2825 620 0.400000 +2825 628 0.400000 +2825 703 0.400000 +2825 765 0.400000 +2826 34 0.400000 +2826 87 0.400000 +2826 121 0.400000 +2826 134 0.400000 +2826 248 0.400000 +2826 375 0.400000 +2826 379 0.400000 +2826 431 0.400000 +2826 612 0.400000 +2826 636 0.400000 +2826 690 0.400000 +2827 11 0.400000 +2827 20 0.400000 +2827 93 0.400000 +2827 163 0.400000 +2827 342 0.400000 +2827 387 0.400000 +2827 410 0.400000 +2827 416 0.400000 +2827 504 0.400000 +2827 519 0.400000 +2827 552 0.400000 +2827 555 0.400000 +2827 571 0.400000 +2827 586 0.400000 +2827 632 0.400000 +2827 758 0.400000 +2828 26 0.400000 +2828 220 0.400000 +2828 249 0.400000 +2828 333 0.400000 +2828 391 0.400000 +2828 411 0.400000 +2828 522 0.400000 +2828 633 0.400000 +2828 661 0.400000 +2828 685 0.400000 +2828 690 0.400000 +2828 707 0.400000 +2828 716 0.400000 +2828 733 0.400000 +2828 764 0.400000 +2828 780 0.400000 +2829 34 0.400000 +2829 89 0.400000 +2829 94 0.400000 +2829 107 0.400000 +2829 197 0.400000 +2829 236 0.400000 +2829 304 0.400000 +2829 377 0.400000 +2829 395 0.400000 +2829 470 0.400000 +2829 484 0.400000 +2829 583 0.400000 +2829 591 0.400000 +2829 608 0.400000 +2829 620 0.400000 +2829 655 0.400000 +2829 688 0.400000 +2829 781 0.400000 +2829 793 0.400000 +2830 55 0.400000 +2830 88 0.400000 +2830 102 0.400000 +2830 129 0.400000 +2830 133 0.400000 +2830 159 0.400000 +2830 233 0.400000 +2830 259 0.400000 +2830 310 0.400000 +2830 510 0.400000 +2830 607 0.400000 +2830 643 0.400000 +2830 675 0.400000 +2830 759 0.400000 +2831 37 0.400000 +2831 73 0.400000 +2831 112 0.400000 +2831 118 0.400000 +2831 163 0.400000 +2831 205 0.400000 +2831 319 0.400000 +2831 414 0.400000 +2831 561 0.400000 +2831 569 0.400000 +2831 624 0.400000 +2831 738 0.400000 +2831 766 0.400000 +2831 768 0.400000 +2832 21 0.400000 +2832 190 0.400000 +2832 238 0.400000 +2832 258 0.400000 +2832 272 0.400000 +2832 283 0.400000 +2832 357 0.400000 +2832 388 0.400000 +2832 460 0.400000 +2832 530 0.400000 +2832 545 0.400000 +2832 563 0.400000 +2832 598 0.400000 +2832 618 0.400000 +2832 619 0.400000 +2832 672 0.400000 +2833 9 0.400000 +2833 57 0.400000 +2833 115 0.400000 +2833 127 0.400000 +2833 131 0.400000 +2833 158 0.400000 +2833 262 0.400000 +2833 304 0.400000 +2833 435 0.400000 +2833 485 0.400000 +2833 511 0.400000 +2833 519 0.400000 +2833 635 0.400000 +2833 657 0.400000 +2833 677 0.400000 +2833 695 0.400000 +2833 710 0.400000 +2833 711 0.400000 +2834 36 0.400000 +2834 102 0.400000 +2834 158 0.400000 +2834 224 0.400000 +2834 226 0.400000 +2834 270 0.400000 +2834 295 0.400000 +2834 307 0.400000 +2834 343 0.400000 +2834 363 0.400000 +2834 369 0.400000 +2834 411 0.400000 +2834 481 0.400000 +2834 498 0.400000 +2834 509 0.400000 +2834 621 0.400000 +2834 654 0.400000 +2834 656 0.400000 +2834 779 0.400000 +2834 788 0.400000 +2835 5 0.400000 +2835 50 0.400000 +2835 209 0.400000 +2835 236 0.400000 +2835 263 0.400000 +2835 309 0.400000 +2835 379 0.400000 +2835 393 0.400000 +2835 490 0.400000 +2835 519 0.400000 +2835 530 0.400000 +2835 538 0.400000 +2835 666 0.400000 +2835 795 0.400000 +2836 2 0.400000 +2836 6 0.400000 +2836 92 0.400000 +2836 146 0.400000 +2836 219 0.400000 +2836 223 0.400000 +2836 289 0.400000 +2836 307 0.400000 +2836 385 0.400000 +2836 387 0.400000 +2836 403 0.400000 +2836 457 0.400000 +2836 461 0.400000 +2836 570 0.400000 +2836 662 0.400000 +2836 772 0.400000 +2836 778 0.400000 +2837 226 0.400000 +2837 268 0.400000 +2837 272 0.400000 +2837 296 0.400000 +2837 350 0.400000 +2837 505 0.400000 +2837 536 0.400000 +2837 571 0.400000 +2837 622 0.400000 +2837 656 0.400000 +2837 785 0.400000 +2837 789 0.400000 +2838 9 0.400000 +2838 37 0.400000 +2838 58 0.400000 +2838 257 0.400000 +2838 290 0.400000 +2838 476 0.400000 +2838 522 0.400000 +2838 667 0.400000 +2838 705 0.400000 +2838 721 0.400000 +2839 15 0.400000 +2839 72 0.400000 +2839 97 0.400000 +2839 118 0.400000 +2839 302 0.400000 +2839 430 0.400000 +2839 519 0.400000 +2839 522 0.400000 +2839 530 0.400000 +2839 543 0.400000 +2839 595 0.400000 +2839 693 0.400000 +2839 698 0.400000 +2840 7 0.400000 +2840 32 0.400000 +2840 98 0.400000 +2840 109 0.400000 +2840 117 0.400000 +2840 162 0.400000 +2840 180 0.400000 +2840 268 0.400000 +2840 297 0.400000 +2840 370 0.400000 +2840 720 0.400000 +2840 738 0.400000 +2840 744 0.400000 +2840 761 0.400000 +2841 47 0.400000 +2841 64 0.400000 +2841 65 0.400000 +2841 175 0.400000 +2841 316 0.400000 +2841 399 0.400000 +2841 407 0.400000 +2841 461 0.400000 +2841 471 0.400000 +2841 541 0.400000 +2841 543 0.400000 +2841 581 0.400000 +2841 589 0.400000 +2841 628 0.400000 +2841 732 0.400000 +2841 788 0.400000 +2842 24 0.400000 +2842 28 0.400000 +2842 43 0.400000 +2842 47 0.400000 +2842 52 0.400000 +2842 67 0.400000 +2842 92 0.400000 +2842 115 0.400000 +2842 131 0.400000 +2842 245 0.400000 +2842 269 0.400000 +2842 278 0.400000 +2842 285 0.400000 +2842 479 0.400000 +2842 513 0.400000 +2842 587 0.400000 +2842 676 0.400000 +2842 677 0.400000 +2842 748 0.400000 +2842 789 0.400000 +2842 794 0.400000 +2843 110 0.400000 +2843 217 0.400000 +2843 255 0.400000 +2843 341 0.400000 +2843 434 0.400000 +2843 440 0.400000 +2843 543 0.400000 +2843 602 0.400000 +2843 657 0.400000 +2843 690 0.400000 +2843 732 0.400000 +2843 751 0.400000 +2844 65 0.400000 +2844 151 0.400000 +2844 159 0.400000 +2844 182 0.400000 +2844 219 0.400000 +2844 221 0.400000 +2844 315 0.400000 +2844 319 0.400000 +2844 329 0.400000 +2844 484 0.400000 +2844 495 0.400000 +2844 580 0.400000 +2844 705 0.400000 +2844 708 0.400000 +2844 748 0.400000 +2845 27 0.400000 +2845 73 0.400000 +2845 87 0.400000 +2845 148 0.400000 +2845 202 0.400000 +2845 236 0.400000 +2845 278 0.400000 +2845 310 0.400000 +2845 341 0.400000 +2845 366 0.400000 +2845 411 0.400000 +2845 435 0.400000 +2845 483 0.400000 +2845 487 0.400000 +2845 523 0.400000 +2845 533 0.400000 +2845 562 0.400000 +2845 611 0.400000 +2845 651 0.400000 +2845 712 0.400000 +2845 722 0.400000 +2845 766 0.400000 +2845 769 0.400000 +2846 16 0.400000 +2846 75 0.400000 +2846 92 0.400000 +2846 110 0.400000 +2846 255 0.400000 +2846 295 0.400000 +2846 348 0.400000 +2846 353 0.400000 +2846 406 0.400000 +2846 423 0.400000 +2846 437 0.400000 +2846 525 0.400000 +2846 537 0.400000 +2846 603 0.400000 +2846 626 0.400000 +2846 637 0.400000 +2846 686 0.400000 +2846 695 0.400000 +2846 742 0.400000 +2847 38 0.400000 +2847 84 0.400000 +2847 124 0.400000 +2847 172 0.400000 +2847 207 0.400000 +2847 233 0.400000 +2847 256 0.400000 +2847 270 0.400000 +2847 285 0.400000 +2847 288 0.400000 +2847 315 0.400000 +2847 335 0.400000 +2847 414 0.400000 +2847 429 0.400000 +2847 443 0.400000 +2847 480 0.400000 +2847 483 0.400000 +2847 498 0.400000 +2847 502 0.400000 +2847 726 0.400000 +2847 732 0.400000 +2848 67 0.400000 +2848 75 0.400000 +2848 140 0.400000 +2848 324 0.400000 +2848 334 0.400000 +2848 403 0.400000 +2848 610 0.400000 +2848 613 0.400000 +2848 751 0.400000 +2848 766 0.400000 +2848 796 0.400000 +2849 33 0.400000 +2849 50 0.400000 +2849 87 0.400000 +2849 94 0.400000 +2849 178 0.400000 +2849 231 0.400000 +2849 253 0.400000 +2849 380 0.400000 +2849 389 0.400000 +2849 405 0.400000 +2849 416 0.400000 +2849 495 0.400000 +2849 504 0.400000 +2849 538 0.400000 +2849 553 0.400000 +2849 600 0.400000 +2849 716 0.400000 +2849 753 0.400000 +2849 769 0.400000 +2849 775 0.400000 +2850 28 0.400000 +2850 87 0.400000 +2850 158 0.400000 +2850 286 0.400000 +2850 297 0.400000 +2850 449 0.400000 +2850 465 0.400000 +2850 501 0.400000 +2850 575 0.400000 +2850 602 0.400000 +2850 603 0.400000 +2850 624 0.400000 +2850 671 0.400000 +2850 705 0.400000 +2851 2 0.400000 +2851 45 0.400000 +2851 56 0.400000 +2851 89 0.400000 +2851 138 0.400000 +2851 157 0.400000 +2851 158 0.400000 +2851 268 0.400000 +2851 296 0.400000 +2851 355 0.400000 +2851 356 0.400000 +2851 387 0.400000 +2851 433 0.400000 +2851 489 0.400000 +2851 566 0.400000 +2851 599 0.400000 +2851 628 0.400000 +2851 676 0.400000 +2851 679 0.400000 +2852 24 0.400000 +2852 53 0.400000 +2852 125 0.400000 +2852 140 0.400000 +2852 173 0.400000 +2852 260 0.400000 +2852 360 0.400000 +2852 386 0.400000 +2852 394 0.400000 +2852 413 0.400000 +2852 442 0.400000 +2852 449 0.400000 +2852 530 0.400000 +2852 590 0.400000 +2852 610 0.400000 +2852 615 0.400000 +2852 648 0.400000 +2852 691 0.400000 +2852 725 0.400000 +2852 773 0.400000 +2852 780 0.400000 +2853 149 0.400000 +2853 244 0.400000 +2853 259 0.400000 +2853 359 0.400000 +2853 530 0.400000 +2853 532 0.400000 +2853 542 0.400000 +2853 562 0.400000 +2853 597 0.400000 +2853 606 0.400000 +2853 677 0.400000 +2853 720 0.400000 +2853 767 0.400000 +2854 147 0.400000 +2854 217 0.400000 +2854 254 0.400000 +2854 261 0.400000 +2854 266 0.400000 +2854 284 0.400000 +2854 324 0.400000 +2854 328 0.400000 +2854 361 0.400000 +2854 500 0.400000 +2854 554 0.400000 +2854 585 0.400000 +2854 644 0.400000 +2854 731 0.400000 +2854 737 0.400000 +2854 783 0.400000 +2855 109 0.400000 +2855 120 0.400000 +2855 156 0.400000 +2855 358 0.400000 +2855 420 0.400000 +2855 431 0.400000 +2855 474 0.400000 +2855 491 0.400000 +2855 528 0.400000 +2855 532 0.400000 +2855 540 0.400000 +2855 583 0.400000 +2855 591 0.400000 +2855 626 0.400000 +2855 711 0.400000 +2855 714 0.400000 +2855 760 0.400000 +2855 775 0.400000 +2856 16 0.400000 +2856 89 0.400000 +2856 102 0.400000 +2856 166 0.400000 +2856 186 0.400000 +2856 251 0.400000 +2856 316 0.400000 +2856 352 0.400000 +2856 365 0.400000 +2856 487 0.400000 +2856 550 0.400000 +2856 583 0.400000 +2856 616 0.400000 +2856 654 0.400000 +2856 674 0.400000 +2856 685 0.400000 +2856 717 0.400000 +2856 743 0.400000 +2856 745 0.400000 +2856 748 0.400000 +2856 767 0.400000 +2857 181 0.400000 +2857 267 0.400000 +2857 341 0.400000 +2857 352 0.400000 +2857 533 0.400000 +2857 592 0.400000 +2857 634 0.400000 +2857 661 0.400000 +2857 737 0.400000 +2857 764 0.400000 +2857 771 0.400000 +2857 776 0.400000 +2857 783 0.400000 +2858 32 0.400000 +2858 49 0.400000 +2858 61 0.400000 +2858 74 0.400000 +2858 86 0.400000 +2858 191 0.400000 +2858 192 0.400000 +2858 211 0.400000 +2858 229 0.400000 +2858 288 0.400000 +2858 327 0.400000 +2858 354 0.400000 +2858 373 0.400000 +2858 438 0.400000 +2858 610 0.400000 +2858 646 0.400000 +2858 750 0.400000 +2858 798 0.400000 +2859 205 0.400000 +2859 243 0.400000 +2859 278 0.400000 +2859 297 0.400000 +2859 331 0.400000 +2859 343 0.400000 +2859 369 0.400000 +2859 442 0.400000 +2859 533 0.400000 +2859 552 0.400000 +2859 587 0.400000 +2859 692 0.400000 +2859 707 0.400000 +2859 763 0.400000 +2859 769 0.400000 +2859 793 0.400000 +2860 1 0.400000 +2860 31 0.400000 +2860 44 0.400000 +2860 49 0.400000 +2860 91 0.400000 +2860 155 0.400000 +2860 189 0.400000 +2860 236 0.400000 +2860 244 0.400000 +2860 348 0.400000 +2860 423 0.400000 +2860 496 0.400000 +2860 505 0.400000 +2860 513 0.400000 +2860 541 0.400000 +2860 585 0.400000 +2860 611 0.400000 +2860 642 0.400000 +2860 678 0.400000 +2861 49 0.400000 +2861 100 0.400000 +2861 103 0.400000 +2861 115 0.400000 +2861 137 0.400000 +2861 165 0.400000 +2861 177 0.400000 +2861 193 0.400000 +2861 216 0.400000 +2861 244 0.400000 +2861 332 0.400000 +2861 339 0.400000 +2861 359 0.400000 +2861 409 0.400000 +2861 619 0.400000 +2861 676 0.400000 +2861 732 0.400000 +2862 6 0.400000 +2862 89 0.400000 +2862 95 0.400000 +2862 125 0.400000 +2862 131 0.400000 +2862 164 0.400000 +2862 165 0.400000 +2862 184 0.400000 +2862 186 0.400000 +2862 225 0.400000 +2862 288 0.400000 +2862 343 0.400000 +2862 673 0.400000 +2862 683 0.400000 +2862 697 0.400000 +2862 714 0.400000 +2862 757 0.400000 +2862 768 0.400000 +2863 162 0.400000 +2863 194 0.400000 +2863 238 0.400000 +2863 243 0.400000 +2863 250 0.400000 +2863 266 0.400000 +2863 269 0.400000 +2863 270 0.400000 +2863 295 0.400000 +2863 369 0.400000 +2863 620 0.400000 +2863 631 0.400000 +2863 635 0.400000 +2863 753 0.400000 +2863 778 0.400000 +2863 787 0.400000 +2864 79 0.400000 +2864 103 0.400000 +2864 209 0.400000 +2864 257 0.400000 +2864 335 0.400000 +2864 353 0.400000 +2864 382 0.400000 +2864 479 0.400000 +2864 490 0.400000 +2864 492 0.400000 +2864 526 0.400000 +2864 573 0.400000 +2864 598 0.400000 +2864 623 0.400000 +2864 626 0.400000 +2864 730 0.400000 +2864 748 0.400000 +2864 764 0.400000 +2865 7 0.400000 +2865 27 0.400000 +2865 61 0.400000 +2865 110 0.400000 +2865 131 0.400000 +2865 163 0.400000 +2865 210 0.400000 +2865 237 0.400000 +2865 241 0.400000 +2865 286 0.400000 +2865 295 0.400000 +2865 341 0.400000 +2865 366 0.400000 +2865 411 0.400000 +2865 428 0.400000 +2865 467 0.400000 +2865 531 0.400000 +2865 540 0.400000 +2865 657 0.400000 +2865 705 0.400000 +2866 11 0.400000 +2866 14 0.400000 +2866 60 0.400000 +2866 124 0.400000 +2866 175 0.400000 +2866 195 0.400000 +2866 236 0.400000 +2866 282 0.400000 +2866 332 0.400000 +2866 550 0.400000 +2866 635 0.400000 +2866 673 0.400000 +2866 691 0.400000 +2866 707 0.400000 +2866 786 0.400000 +2867 63 0.400000 +2867 82 0.400000 +2867 107 0.400000 +2867 144 0.400000 +2867 157 0.400000 +2867 162 0.400000 +2867 189 0.400000 +2867 208 0.400000 +2867 220 0.400000 +2867 286 0.400000 +2867 309 0.400000 +2867 316 0.400000 +2867 374 0.400000 +2867 383 0.400000 +2867 428 0.400000 +2867 460 0.400000 +2867 493 0.400000 +2867 536 0.400000 +2867 607 0.400000 +2867 649 0.400000 +2867 665 0.400000 +2867 759 0.400000 +2867 770 0.400000 +2868 23 0.400000 +2868 92 0.400000 +2868 109 0.400000 +2868 149 0.400000 +2868 279 0.400000 +2868 361 0.400000 +2868 374 0.400000 +2868 440 0.400000 +2868 551 0.400000 +2868 612 0.400000 +2868 680 0.400000 +2868 699 0.400000 +2868 702 0.400000 +2868 767 0.400000 +2869 29 0.400000 +2869 149 0.400000 +2869 153 0.400000 +2869 170 0.400000 +2869 224 0.400000 +2869 233 0.400000 +2869 336 0.400000 +2869 359 0.400000 +2869 403 0.400000 +2869 407 0.400000 +2869 411 0.400000 +2869 603 0.400000 +2869 608 0.400000 +2869 634 0.400000 +2869 690 0.400000 +2870 19 0.400000 +2870 135 0.400000 +2870 288 0.400000 +2870 403 0.400000 +2870 597 0.400000 +2870 617 0.400000 +2870 633 0.400000 +2870 642 0.400000 +2870 694 0.400000 +2870 720 0.400000 +2870 794 0.400000 +2871 9 0.400000 +2871 67 0.400000 +2871 95 0.400000 +2871 124 0.400000 +2871 150 0.400000 +2871 184 0.400000 +2871 190 0.400000 +2871 229 0.400000 +2871 268 0.400000 +2871 295 0.400000 +2871 318 0.400000 +2871 376 0.400000 +2871 436 0.400000 +2871 437 0.400000 +2871 446 0.400000 +2871 482 0.400000 +2871 498 0.400000 +2871 524 0.400000 +2871 534 0.400000 +2871 727 0.400000 +2871 777 0.400000 +2872 28 0.400000 +2872 39 0.400000 +2872 44 0.400000 +2872 70 0.400000 +2872 127 0.400000 +2872 168 0.400000 +2872 193 0.400000 +2872 310 0.400000 +2872 354 0.400000 +2872 372 0.400000 +2872 373 0.400000 +2872 398 0.400000 +2872 445 0.400000 +2872 502 0.400000 +2872 519 0.400000 +2872 574 0.400000 +2872 580 0.400000 +2872 587 0.400000 +2872 624 0.400000 +2872 684 0.400000 +2872 717 0.400000 +2872 740 0.400000 +2872 756 0.400000 +2872 757 0.400000 +2872 785 0.400000 +2873 9 0.400000 +2873 52 0.400000 +2873 84 0.400000 +2873 179 0.400000 +2873 266 0.400000 +2873 268 0.400000 +2873 368 0.400000 +2873 404 0.400000 +2873 438 0.400000 +2873 718 0.400000 +2873 730 0.400000 +2873 731 0.400000 +2873 739 0.400000 +2873 767 0.400000 +2873 775 0.400000 +2873 787 0.400000 +2873 789 0.400000 +2874 2 0.400000 +2874 64 0.400000 +2874 223 0.400000 +2874 261 0.400000 +2874 311 0.400000 +2874 332 0.400000 +2874 356 0.400000 +2874 370 0.400000 +2874 397 0.400000 +2874 457 0.400000 +2874 523 0.400000 +2874 530 0.400000 +2874 549 0.400000 +2874 572 0.400000 +2874 581 0.400000 +2874 618 0.400000 +2874 634 0.400000 +2874 787 0.400000 +2874 788 0.400000 +2875 27 0.400000 +2875 103 0.400000 +2875 149 0.400000 +2875 281 0.400000 +2875 317 0.400000 +2875 323 0.400000 +2875 387 0.400000 +2875 501 0.400000 +2875 559 0.400000 +2875 617 0.400000 +2875 706 0.400000 +2876 84 0.400000 +2876 137 0.400000 +2876 155 0.400000 +2876 203 0.400000 +2876 271 0.400000 +2876 403 0.400000 +2876 416 0.400000 +2876 421 0.400000 +2876 452 0.400000 +2876 510 0.400000 +2876 590 0.400000 +2876 683 0.400000 +2876 777 0.400000 +2877 39 0.400000 +2877 77 0.400000 +2877 78 0.400000 +2877 104 0.400000 +2877 125 0.400000 +2877 230 0.400000 +2877 285 0.400000 +2877 326 0.400000 +2877 341 0.400000 +2877 394 0.400000 +2877 458 0.400000 +2877 491 0.400000 +2877 496 0.400000 +2877 571 0.400000 +2877 590 0.400000 +2877 592 0.400000 +2877 622 0.400000 +2878 47 0.400000 +2878 50 0.400000 +2878 197 0.400000 +2878 284 0.400000 +2878 304 0.400000 +2878 418 0.400000 +2878 424 0.400000 +2878 435 0.400000 +2878 499 0.400000 +2878 514 0.400000 +2878 541 0.400000 +2878 664 0.400000 +2878 676 0.400000 +2878 800 0.400000 +2879 6 0.400000 +2879 73 0.400000 +2879 79 0.400000 +2879 96 0.400000 +2879 150 0.400000 +2879 168 0.400000 +2879 239 0.400000 +2879 287 0.400000 +2879 392 0.400000 +2879 410 0.400000 +2879 493 0.400000 +2879 529 0.400000 +2879 537 0.400000 +2879 565 0.400000 +2879 570 0.400000 +2879 578 0.400000 +2879 696 0.400000 +2879 749 0.400000 +2879 761 0.400000 +2879 793 0.400000 +2880 25 0.400000 +2880 26 0.400000 +2880 83 0.400000 +2880 105 0.400000 +2880 149 0.400000 +2880 166 0.400000 +2880 232 0.400000 +2880 278 0.400000 +2880 356 0.400000 +2880 374 0.400000 +2880 490 0.400000 +2880 524 0.400000 +2880 532 0.400000 +2880 535 0.400000 +2880 547 0.400000 +2880 633 0.400000 +2880 724 0.400000 +2880 740 0.400000 +2881 28 0.400000 +2881 128 0.400000 +2881 278 0.400000 +2881 354 0.400000 +2881 571 0.400000 +2881 594 0.400000 +2881 789 0.400000 +2881 798 0.400000 +2882 11 0.400000 +2882 43 0.400000 +2882 54 0.400000 +2882 72 0.400000 +2882 101 0.400000 +2882 132 0.400000 +2882 148 0.400000 +2882 250 0.400000 +2882 272 0.400000 +2882 275 0.400000 +2882 313 0.400000 +2882 374 0.400000 +2882 379 0.400000 +2882 388 0.400000 +2882 437 0.400000 +2882 477 0.400000 +2882 488 0.400000 +2882 498 0.400000 +2882 531 0.400000 +2882 532 0.400000 +2882 588 0.400000 +2882 658 0.400000 +2882 670 0.400000 +2882 695 0.400000 +2882 731 0.400000 +2883 62 0.400000 +2883 73 0.400000 +2883 158 0.400000 +2883 198 0.400000 +2883 226 0.400000 +2883 313 0.400000 +2883 392 0.400000 +2883 494 0.400000 +2883 577 0.400000 +2883 588 0.400000 +2883 607 0.400000 +2883 614 0.400000 +2883 649 0.400000 +2883 707 0.400000 +2884 16 0.400000 +2884 126 0.400000 +2884 203 0.400000 +2884 280 0.400000 +2884 299 0.400000 +2884 321 0.400000 +2884 363 0.400000 +2884 375 0.400000 +2884 444 0.400000 +2884 453 0.400000 +2884 472 0.400000 +2884 538 0.400000 +2884 548 0.400000 +2884 574 0.400000 +2884 577 0.400000 +2884 664 0.400000 +2885 33 0.400000 +2885 38 0.400000 +2885 42 0.400000 +2885 56 0.400000 +2885 137 0.400000 +2885 225 0.400000 +2885 369 0.400000 +2885 375 0.400000 +2885 447 0.400000 +2885 529 0.400000 +2885 603 0.400000 +2885 609 0.400000 +2885 770 0.400000 +2885 800 0.400000 +2886 79 0.400000 +2886 163 0.400000 +2886 241 0.400000 +2886 289 0.400000 +2886 290 0.400000 +2886 347 0.400000 +2886 403 0.400000 +2886 464 0.400000 +2886 553 0.400000 +2886 629 0.400000 +2886 658 0.400000 +2886 662 0.400000 +2886 705 0.400000 +2886 722 0.400000 +2886 723 0.400000 +2886 781 0.400000 +2887 72 0.400000 +2887 129 0.400000 +2887 132 0.400000 +2887 152 0.400000 +2887 364 0.400000 +2887 389 0.400000 +2887 415 0.400000 +2887 444 0.400000 +2887 468 0.400000 +2887 490 0.400000 +2887 547 0.400000 +2887 755 0.400000 +2887 799 0.400000 +2888 19 0.400000 +2888 58 0.400000 +2888 67 0.400000 +2888 71 0.400000 +2888 166 0.400000 +2888 207 0.400000 +2888 268 0.400000 +2888 284 0.400000 +2888 305 0.400000 +2888 521 0.400000 +2888 577 0.400000 +2888 614 0.400000 +2888 637 0.400000 +2888 654 0.400000 +2888 699 0.400000 +2888 715 0.400000 +2888 717 0.400000 +2888 764 0.400000 +2889 68 0.400000 +2889 69 0.400000 +2889 84 0.400000 +2889 99 0.400000 +2889 162 0.400000 +2889 173 0.400000 +2889 191 0.400000 +2889 194 0.400000 +2889 227 0.400000 +2889 245 0.400000 +2889 332 0.400000 +2889 413 0.400000 +2889 430 0.400000 +2889 437 0.400000 +2889 488 0.400000 +2889 593 0.400000 +2889 634 0.400000 +2890 168 0.400000 +2890 189 0.400000 +2890 289 0.400000 +2890 310 0.400000 +2890 337 0.400000 +2890 340 0.400000 +2890 380 0.400000 +2890 525 0.400000 +2890 529 0.400000 +2890 557 0.400000 +2890 676 0.400000 +2890 692 0.400000 +2890 731 0.400000 +2891 69 0.400000 +2891 275 0.400000 +2891 379 0.400000 +2891 401 0.400000 +2891 434 0.400000 +2891 457 0.400000 +2891 481 0.400000 +2891 586 0.400000 +2891 614 0.400000 +2891 691 0.400000 +2891 692 0.400000 +2891 698 0.400000 +2891 706 0.400000 +2891 731 0.400000 +2891 776 0.400000 +2891 782 0.400000 +2891 796 0.400000 +2892 186 0.400000 +2892 191 0.400000 +2892 276 0.400000 +2892 319 0.400000 +2892 377 0.400000 +2892 441 0.400000 +2892 468 0.400000 +2892 513 0.400000 +2892 585 0.400000 +2892 691 0.400000 +2893 33 0.400000 +2893 56 0.400000 +2893 117 0.400000 +2893 141 0.400000 +2893 152 0.400000 +2893 263 0.400000 +2893 305 0.400000 +2893 321 0.400000 +2893 377 0.400000 +2893 378 0.400000 +2893 387 0.400000 +2893 465 0.400000 +2893 481 0.400000 +2893 513 0.400000 +2893 580 0.400000 +2893 638 0.400000 +2893 671 0.400000 +2893 682 0.400000 +2893 719 0.400000 +2893 766 0.400000 +2893 769 0.400000 +2893 799 0.400000 +2894 71 0.400000 +2894 79 0.400000 +2894 97 0.400000 +2894 134 0.400000 +2894 138 0.400000 +2894 147 0.400000 +2894 170 0.400000 +2894 190 0.400000 +2894 198 0.400000 +2894 231 0.400000 +2894 245 0.400000 +2894 256 0.400000 +2894 304 0.400000 +2894 449 0.400000 +2894 454 0.400000 +2894 521 0.400000 +2894 530 0.400000 +2894 554 0.400000 +2894 629 0.400000 +2894 675 0.400000 +2894 763 0.400000 +2895 19 0.400000 +2895 56 0.400000 +2895 86 0.400000 +2895 107 0.400000 +2895 312 0.400000 +2895 330 0.400000 +2895 362 0.400000 +2895 393 0.400000 +2895 395 0.400000 +2895 485 0.400000 +2895 510 0.400000 +2895 540 0.400000 +2895 593 0.400000 +2895 615 0.400000 +2895 657 0.400000 +2895 705 0.400000 +2895 735 0.400000 +2895 752 0.400000 +2895 754 0.400000 +2895 763 0.400000 +2895 797 0.400000 +2896 3 0.400000 +2896 13 0.400000 +2896 53 0.400000 +2896 67 0.400000 +2896 92 0.400000 +2896 107 0.400000 +2896 163 0.400000 +2896 167 0.400000 +2896 236 0.400000 +2896 275 0.400000 +2896 326 0.400000 +2896 334 0.400000 +2896 399 0.400000 +2896 407 0.400000 +2896 427 0.400000 +2896 589 0.400000 +2896 774 0.400000 +2896 794 0.400000 +2897 14 0.400000 +2897 64 0.400000 +2897 87 0.400000 +2897 218 0.400000 +2897 241 0.400000 +2897 261 0.400000 +2897 326 0.400000 +2897 339 0.400000 +2897 351 0.400000 +2897 353 0.400000 +2897 369 0.400000 +2897 404 0.400000 +2897 433 0.400000 +2897 454 0.400000 +2897 483 0.400000 +2897 491 0.400000 +2897 516 0.400000 +2897 636 0.400000 +2897 639 0.400000 +2897 674 0.400000 +2897 679 0.400000 +2897 683 0.400000 +2897 727 0.400000 +2897 743 0.400000 +2898 48 0.400000 +2898 117 0.400000 +2898 199 0.400000 +2898 203 0.400000 +2898 210 0.400000 +2898 227 0.400000 +2898 228 0.400000 +2898 240 0.400000 +2898 256 0.400000 +2898 262 0.400000 +2898 358 0.400000 +2898 420 0.400000 +2898 430 0.400000 +2898 480 0.400000 +2898 499 0.400000 +2898 540 0.400000 +2898 667 0.400000 +2898 685 0.400000 +2898 696 0.400000 +2898 725 0.400000 +2898 730 0.400000 +2898 741 0.400000 +2899 25 0.400000 +2899 76 0.400000 +2899 84 0.400000 +2899 135 0.400000 +2899 172 0.400000 +2899 218 0.400000 +2899 233 0.400000 +2899 304 0.400000 +2899 317 0.400000 +2899 346 0.400000 +2899 371 0.400000 +2899 413 0.400000 +2899 437 0.400000 +2899 549 0.400000 +2899 608 0.400000 +2899 649 0.400000 +2899 675 0.400000 +2899 696 0.400000 +2899 703 0.400000 +2899 707 0.400000 +2899 725 0.400000 +2899 794 0.400000 +2900 66 0.400000 +2900 202 0.400000 +2900 233 0.400000 +2900 278 0.400000 +2900 581 0.400000 +2900 622 0.400000 +2900 664 0.400000 +2900 671 0.400000 +2900 675 0.400000 +2900 677 0.400000 +2900 707 0.400000 +2900 709 0.400000 +2900 727 0.400000 +2900 797 0.400000 +2901 139 0.400000 +2901 191 0.400000 +2901 211 0.400000 +2901 222 0.400000 +2901 242 0.400000 +2901 411 0.400000 +2901 506 0.400000 +2901 655 0.400000 +2901 697 0.400000 +2901 741 0.400000 +2902 16 0.400000 +2902 64 0.400000 +2902 67 0.400000 +2902 81 0.400000 +2902 91 0.400000 +2902 105 0.400000 +2902 193 0.400000 +2902 203 0.400000 +2902 208 0.400000 +2902 226 0.400000 +2902 232 0.400000 +2902 330 0.400000 +2902 347 0.400000 +2902 514 0.400000 +2902 524 0.400000 +2902 534 0.400000 +2902 629 0.400000 +2902 646 0.400000 +2902 684 0.400000 +2903 10 0.400000 +2903 30 0.400000 +2903 37 0.400000 +2903 65 0.400000 +2903 154 0.400000 +2903 162 0.400000 +2903 169 0.400000 +2903 186 0.400000 +2903 255 0.400000 +2903 378 0.400000 +2903 410 0.400000 +2903 422 0.400000 +2903 505 0.400000 +2903 521 0.400000 +2903 535 0.400000 +2903 578 0.400000 +2903 596 0.400000 +2903 619 0.400000 +2903 635 0.400000 +2903 695 0.400000 +2903 700 0.400000 +2903 727 0.400000 +2903 736 0.400000 +2904 133 0.400000 +2904 174 0.400000 +2904 214 0.400000 +2904 235 0.400000 +2904 278 0.400000 +2904 311 0.400000 +2904 368 0.400000 +2904 396 0.400000 +2904 417 0.400000 +2904 452 0.400000 +2904 534 0.400000 +2904 582 0.400000 +2904 594 0.400000 +2904 639 0.400000 +2904 680 0.400000 +2904 735 0.400000 +2904 781 0.400000 +2905 6 0.400000 +2905 99 0.400000 +2905 109 0.400000 +2905 149 0.400000 +2905 187 0.400000 +2905 192 0.400000 +2905 205 0.400000 +2905 245 0.400000 +2905 265 0.400000 +2905 300 0.400000 +2905 301 0.400000 +2905 307 0.400000 +2905 352 0.400000 +2905 370 0.400000 +2905 378 0.400000 +2905 403 0.400000 +2905 516 0.400000 +2905 532 0.400000 +2905 567 0.400000 +2905 589 0.400000 +2905 608 0.400000 +2905 681 0.400000 +2905 698 0.400000 +2905 733 0.400000 +2905 785 0.400000 +2906 38 0.400000 +2906 43 0.400000 +2906 184 0.400000 +2906 233 0.400000 +2906 237 0.400000 +2906 408 0.400000 +2906 414 0.400000 +2906 415 0.400000 +2906 448 0.400000 +2906 510 0.400000 +2906 595 0.400000 +2906 610 0.400000 +2906 667 0.400000 +2906 748 0.400000 +2906 771 0.400000 +2907 201 0.400000 +2907 270 0.400000 +2907 300 0.400000 +2907 383 0.400000 +2907 415 0.400000 +2907 458 0.400000 +2907 534 0.400000 +2907 594 0.400000 +2907 657 0.400000 +2907 698 0.400000 +2907 766 0.400000 +2908 28 0.400000 +2908 48 0.400000 +2908 65 0.400000 +2908 143 0.400000 +2908 148 0.400000 +2908 173 0.400000 +2908 209 0.400000 +2908 211 0.400000 +2908 255 0.400000 +2908 260 0.400000 +2908 348 0.400000 +2908 368 0.400000 +2908 389 0.400000 +2908 420 0.400000 +2908 426 0.400000 +2908 472 0.400000 +2908 533 0.400000 +2908 559 0.400000 +2908 682 0.400000 +2908 715 0.400000 +2908 740 0.400000 +2908 778 0.400000 +2908 799 0.400000 +2909 189 0.400000 +2909 207 0.400000 +2909 298 0.400000 +2909 329 0.400000 +2909 333 0.400000 +2909 345 0.400000 +2909 365 0.400000 +2909 450 0.400000 +2909 540 0.400000 +2909 609 0.400000 +2909 629 0.400000 +2909 631 0.400000 +2909 650 0.400000 +2909 698 0.400000 +2909 722 0.400000 +2909 760 0.400000 +2910 96 0.400000 +2910 119 0.400000 +2910 296 0.400000 +2910 319 0.400000 +2910 352 0.400000 +2910 366 0.400000 +2910 374 0.400000 +2910 430 0.400000 +2910 440 0.400000 +2910 465 0.400000 +2910 542 0.400000 +2910 585 0.400000 +2910 685 0.400000 +2911 131 0.400000 +2911 135 0.400000 +2911 154 0.400000 +2911 329 0.400000 +2911 532 0.400000 +2911 560 0.400000 +2911 622 0.400000 +2911 684 0.400000 +2911 710 0.400000 +2912 23 0.400000 +2912 67 0.400000 +2912 113 0.400000 +2912 244 0.400000 +2912 389 0.400000 +2912 423 0.400000 +2912 500 0.400000 +2912 520 0.400000 +2912 591 0.400000 +2912 594 0.400000 +2912 648 0.400000 +2912 696 0.400000 +2912 717 0.400000 +2912 732 0.400000 +2912 789 0.400000 +2913 52 0.400000 +2913 111 0.400000 +2913 141 0.400000 +2913 196 0.400000 +2913 206 0.400000 +2913 261 0.400000 +2913 279 0.400000 +2913 281 0.400000 +2913 303 0.400000 +2913 305 0.400000 +2913 348 0.400000 +2913 433 0.400000 +2913 461 0.400000 +2913 618 0.400000 +2913 638 0.400000 +2913 648 0.400000 +2913 650 0.400000 +2914 62 0.400000 +2914 71 0.400000 +2914 92 0.400000 +2914 132 0.400000 +2914 285 0.400000 +2914 316 0.400000 +2914 368 0.400000 +2914 385 0.400000 +2914 444 0.400000 +2914 521 0.400000 +2914 533 0.400000 +2914 547 0.400000 +2914 639 0.400000 +2914 677 0.400000 +2915 176 0.400000 +2915 282 0.400000 +2915 397 0.400000 +2915 418 0.400000 +2915 439 0.400000 +2915 487 0.400000 +2915 528 0.400000 +2915 596 0.400000 +2915 626 0.400000 +2915 649 0.400000 +2915 700 0.400000 +2915 719 0.400000 +2915 788 0.400000 +2915 792 0.400000 +2916 98 0.400000 +2916 104 0.400000 +2916 133 0.400000 +2916 184 0.400000 +2916 233 0.400000 +2916 368 0.400000 +2916 371 0.400000 +2916 482 0.400000 +2916 501 0.400000 +2916 544 0.400000 +2916 648 0.400000 +2916 650 0.400000 +2916 658 0.400000 +2916 758 0.400000 +2916 787 0.400000 +2917 12 0.400000 +2917 31 0.400000 +2917 35 0.400000 +2917 173 0.400000 +2917 218 0.400000 +2917 273 0.400000 +2917 292 0.400000 +2917 400 0.400000 +2917 453 0.400000 +2917 495 0.400000 +2917 626 0.400000 +2917 713 0.400000 +2917 780 0.400000 +2918 19 0.400000 +2918 103 0.400000 +2918 263 0.400000 +2918 334 0.400000 +2918 381 0.400000 +2918 417 0.400000 +2918 458 0.400000 +2918 498 0.400000 +2918 501 0.400000 +2918 615 0.400000 +2918 652 0.400000 +2918 681 0.400000 +2918 713 0.400000 +2919 110 0.400000 +2919 212 0.400000 +2919 218 0.400000 +2919 263 0.400000 +2919 276 0.400000 +2919 291 0.400000 +2919 311 0.400000 +2919 330 0.400000 +2919 376 0.400000 +2919 441 0.400000 +2919 643 0.400000 +2919 780 0.400000 +2920 88 0.400000 +2920 89 0.400000 +2920 112 0.400000 +2920 140 0.400000 +2920 157 0.400000 +2920 226 0.400000 +2920 248 0.400000 +2920 269 0.400000 +2920 340 0.400000 +2920 395 0.400000 +2920 442 0.400000 +2920 499 0.400000 +2920 542 0.400000 +2920 548 0.400000 +2920 588 0.400000 +2920 630 0.400000 +2920 752 0.400000 +2921 158 0.400000 +2921 172 0.400000 +2921 399 0.400000 +2921 419 0.400000 +2921 461 0.400000 +2921 475 0.400000 +2921 660 0.400000 +2921 661 0.400000 +2921 681 0.400000 +2921 684 0.400000 +2921 769 0.400000 +2922 111 0.400000 +2922 128 0.400000 +2922 171 0.400000 +2922 229 0.400000 +2922 343 0.400000 +2922 387 0.400000 +2922 404 0.400000 +2922 422 0.400000 +2922 567 0.400000 +2922 689 0.400000 +2922 700 0.400000 +2922 758 0.400000 +2922 761 0.400000 +2922 785 0.400000 +2923 119 0.400000 +2923 131 0.400000 +2923 175 0.400000 +2923 188 0.400000 +2923 224 0.400000 +2923 239 0.400000 +2923 321 0.400000 +2923 346 0.400000 +2923 384 0.400000 +2923 400 0.400000 +2923 482 0.400000 +2923 612 0.400000 +2923 788 0.400000 +2924 2 0.400000 +2924 56 0.400000 +2924 60 0.400000 +2924 115 0.400000 +2924 209 0.400000 +2924 411 0.400000 +2924 477 0.400000 +2924 486 0.400000 +2924 501 0.400000 +2924 535 0.400000 +2924 637 0.400000 +2924 649 0.400000 +2924 709 0.400000 +2924 729 0.400000 +2924 731 0.400000 +2924 782 0.400000 +2924 799 0.400000 +2925 65 0.400000 +2925 76 0.400000 +2925 147 0.400000 +2925 212 0.400000 +2925 286 0.400000 +2925 295 0.400000 +2925 389 0.400000 +2925 410 0.400000 +2925 472 0.400000 +2925 610 0.400000 +2925 615 0.400000 +2925 677 0.400000 +2925 693 0.400000 +2925 694 0.400000 +2925 743 0.400000 +2925 770 0.400000 +2926 82 0.400000 +2926 85 0.400000 +2926 142 0.400000 +2926 199 0.400000 +2926 211 0.400000 +2926 215 0.400000 +2926 225 0.400000 +2926 297 0.400000 +2926 298 0.400000 +2926 304 0.400000 +2926 378 0.400000 +2926 416 0.400000 +2926 479 0.400000 +2926 568 0.400000 +2926 597 0.400000 +2926 651 0.400000 +2926 679 0.400000 +2926 680 0.400000 +2926 705 0.400000 +2926 791 0.400000 +2927 11 0.400000 +2927 13 0.400000 +2927 26 0.400000 +2927 99 0.400000 +2927 124 0.400000 +2927 178 0.400000 +2927 243 0.400000 +2927 290 0.400000 +2927 299 0.400000 +2927 303 0.400000 +2927 313 0.400000 +2927 507 0.400000 +2927 535 0.400000 +2927 536 0.400000 +2927 584 0.400000 +2927 588 0.400000 +2927 600 0.400000 +2927 619 0.400000 +2927 680 0.400000 +2927 712 0.400000 +2927 727 0.400000 +2927 742 0.400000 +2927 754 0.400000 +2927 785 0.400000 +2928 36 0.400000 +2928 84 0.400000 +2928 91 0.400000 +2928 170 0.400000 +2928 222 0.400000 +2928 234 0.400000 +2928 257 0.400000 +2928 308 0.400000 +2928 330 0.400000 +2928 398 0.400000 +2928 462 0.400000 +2928 463 0.400000 +2928 488 0.400000 +2928 523 0.400000 +2928 527 0.400000 +2928 578 0.400000 +2928 611 0.400000 +2928 618 0.400000 +2928 640 0.400000 +2928 727 0.400000 +2929 6 0.400000 +2929 21 0.400000 +2929 45 0.400000 +2929 65 0.400000 +2929 201 0.400000 +2929 365 0.400000 +2929 496 0.400000 +2929 544 0.400000 +2929 563 0.400000 +2929 603 0.400000 +2929 608 0.400000 +2929 670 0.400000 +2929 706 0.400000 +2930 35 0.400000 +2930 145 0.400000 +2930 188 0.400000 +2930 325 0.400000 +2930 391 0.400000 +2930 429 0.400000 +2930 505 0.400000 +2930 513 0.400000 +2930 668 0.400000 +2930 694 0.400000 +2930 800 0.400000 +2931 96 0.400000 +2931 105 0.400000 +2931 219 0.400000 +2931 234 0.400000 +2931 363 0.400000 +2931 400 0.400000 +2931 440 0.400000 +2931 461 0.400000 +2931 495 0.400000 +2931 565 0.400000 +2931 578 0.400000 +2931 609 0.400000 +2931 626 0.400000 +2931 635 0.400000 +2932 70 0.400000 +2932 244 0.400000 +2932 309 0.400000 +2932 504 0.400000 +2932 534 0.400000 +2932 609 0.400000 +2932 636 0.400000 +2932 640 0.400000 +2932 667 0.400000 +2932 676 0.400000 +2932 788 0.400000 +2933 126 0.400000 +2933 140 0.400000 +2933 171 0.400000 +2933 242 0.400000 +2933 243 0.400000 +2933 256 0.400000 +2933 292 0.400000 +2933 340 0.400000 +2933 370 0.400000 +2933 385 0.400000 +2933 396 0.400000 +2933 579 0.400000 +2933 699 0.400000 +2933 703 0.400000 +2933 760 0.400000 +2934 57 0.400000 +2934 91 0.400000 +2934 110 0.400000 +2934 147 0.400000 +2934 166 0.400000 +2934 221 0.400000 +2934 222 0.400000 +2934 236 0.400000 +2934 238 0.400000 +2934 369 0.400000 +2934 403 0.400000 +2934 428 0.400000 +2934 498 0.400000 +2934 534 0.400000 +2934 543 0.400000 +2934 574 0.400000 +2934 614 0.400000 +2934 658 0.400000 +2934 750 0.400000 +2934 783 0.400000 +2935 11 0.400000 +2935 33 0.400000 +2935 38 0.400000 +2935 83 0.400000 +2935 98 0.400000 +2935 144 0.400000 +2935 211 0.400000 +2935 295 0.400000 +2935 343 0.400000 +2935 357 0.400000 +2935 400 0.400000 +2935 450 0.400000 +2935 458 0.400000 +2935 465 0.400000 +2935 471 0.400000 +2935 496 0.400000 +2935 616 0.400000 +2935 631 0.400000 +2935 668 0.400000 +2935 736 0.400000 +2935 792 0.400000 +2936 8 0.400000 +2936 25 0.400000 +2936 103 0.400000 +2936 147 0.400000 +2936 161 0.400000 +2936 169 0.400000 +2936 192 0.400000 +2936 223 0.400000 +2936 290 0.400000 +2936 331 0.400000 +2936 385 0.400000 +2936 416 0.400000 +2936 517 0.400000 +2936 538 0.400000 +2936 620 0.400000 +2936 678 0.400000 +2936 739 0.400000 +2936 781 0.400000 +2936 796 0.400000 +2937 3 0.400000 +2937 21 0.400000 +2937 70 0.400000 +2937 75 0.400000 +2937 124 0.400000 +2937 171 0.400000 +2937 181 0.400000 +2937 370 0.400000 +2937 417 0.400000 +2937 469 0.400000 +2937 489 0.400000 +2937 587 0.400000 +2937 636 0.400000 +2937 648 0.400000 +2937 679 0.400000 +2937 730 0.400000 +2937 767 0.400000 +2938 126 0.400000 +2938 162 0.400000 +2938 294 0.400000 +2938 412 0.400000 +2938 444 0.400000 +2938 516 0.400000 +2938 579 0.400000 +2938 611 0.400000 +2938 659 0.400000 +2938 670 0.400000 +2938 687 0.400000 +2938 717 0.400000 +2939 12 0.400000 +2939 73 0.400000 +2939 157 0.400000 +2939 158 0.400000 +2939 275 0.400000 +2939 280 0.400000 +2939 330 0.400000 +2939 356 0.400000 +2939 439 0.400000 +2939 442 0.400000 +2939 575 0.400000 +2939 627 0.400000 +2939 669 0.400000 +2939 670 0.400000 +2939 717 0.400000 +2939 800 0.400000 +2940 79 0.400000 +2940 161 0.400000 +2940 165 0.400000 +2940 183 0.400000 +2940 185 0.400000 +2940 258 0.400000 +2940 282 0.400000 +2940 309 0.400000 +2940 319 0.400000 +2940 347 0.400000 +2940 363 0.400000 +2940 480 0.400000 +2940 593 0.400000 +2940 655 0.400000 +2940 693 0.400000 +2940 772 0.400000 +2941 49 0.400000 +2941 101 0.400000 +2941 118 0.400000 +2941 166 0.400000 +2941 222 0.400000 +2941 280 0.400000 +2941 345 0.400000 +2941 372 0.400000 +2941 376 0.400000 +2941 455 0.400000 +2941 543 0.400000 +2941 547 0.400000 +2941 555 0.400000 +2941 567 0.400000 +2941 582 0.400000 +2941 649 0.400000 +2941 672 0.400000 +2941 673 0.400000 +2941 684 0.400000 +2941 728 0.400000 +2941 785 0.400000 +2942 96 0.400000 +2942 191 0.400000 +2942 309 0.400000 +2942 355 0.400000 +2942 598 0.400000 +2942 664 0.400000 +2942 698 0.400000 +2942 714 0.400000 +2942 715 0.400000 +2942 748 0.400000 +2943 57 0.400000 +2943 143 0.400000 +2943 211 0.400000 +2943 216 0.400000 +2943 223 0.400000 +2943 254 0.400000 +2943 268 0.400000 +2943 343 0.400000 +2943 361 0.400000 +2943 429 0.400000 +2943 452 0.400000 +2943 505 0.400000 +2943 527 0.400000 +2943 663 0.400000 +2943 668 0.400000 +2943 688 0.400000 +2943 698 0.400000 +2943 703 0.400000 +2943 720 0.400000 +2943 742 0.400000 +2943 746 0.400000 +2943 778 0.400000 +2943 781 0.400000 +2944 29 0.400000 +2944 71 0.400000 +2944 84 0.400000 +2944 116 0.400000 +2944 131 0.400000 +2944 140 0.400000 +2944 178 0.400000 +2944 203 0.400000 +2944 283 0.400000 +2944 311 0.400000 +2944 422 0.400000 +2944 498 0.400000 +2944 509 0.400000 +2944 690 0.400000 +2944 750 0.400000 +2945 13 0.400000 +2945 22 0.400000 +2945 85 0.400000 +2945 94 0.400000 +2945 129 0.400000 +2945 307 0.400000 +2945 328 0.400000 +2945 333 0.400000 +2945 368 0.400000 +2945 384 0.400000 +2945 421 0.400000 +2945 503 0.400000 +2945 560 0.400000 +2945 574 0.400000 +2945 585 0.400000 +2945 594 0.400000 +2945 595 0.400000 +2945 668 0.400000 +2945 769 0.400000 +2945 777 0.400000 +2945 795 0.400000 +2946 37 0.400000 +2946 38 0.400000 +2946 58 0.400000 +2946 70 0.400000 +2946 80 0.400000 +2946 81 0.400000 +2946 112 0.400000 +2946 127 0.400000 +2946 133 0.400000 +2946 247 0.400000 +2946 294 0.400000 +2946 385 0.400000 +2946 454 0.400000 +2946 746 0.400000 +2946 754 0.400000 +2946 779 0.400000 +2946 789 0.400000 +2946 795 0.400000 +2947 16 0.400000 +2947 165 0.400000 +2947 206 0.400000 +2947 218 0.400000 +2947 284 0.400000 +2947 294 0.400000 +2947 326 0.400000 +2947 330 0.400000 +2947 339 0.400000 +2947 387 0.400000 +2947 415 0.400000 +2947 469 0.400000 +2947 481 0.400000 +2947 496 0.400000 +2947 524 0.400000 +2947 589 0.400000 +2947 641 0.400000 +2947 646 0.400000 +2947 721 0.400000 +2947 744 0.400000 +2948 89 0.400000 +2948 143 0.400000 +2948 147 0.400000 +2948 212 0.400000 +2948 255 0.400000 +2948 259 0.400000 +2948 287 0.400000 +2948 289 0.400000 +2948 383 0.400000 +2948 500 0.400000 +2948 504 0.400000 +2948 543 0.400000 +2948 636 0.400000 +2948 649 0.400000 +2948 762 0.400000 +2948 798 0.400000 +2949 15 0.400000 +2949 23 0.400000 +2949 53 0.400000 +2949 147 0.400000 +2949 188 0.400000 +2949 225 0.400000 +2949 255 0.400000 +2949 258 0.400000 +2949 288 0.400000 +2949 367 0.400000 +2949 409 0.400000 +2949 412 0.400000 +2949 497 0.400000 +2949 567 0.400000 +2949 615 0.400000 +2949 616 0.400000 +2949 671 0.400000 +2949 700 0.400000 +2950 144 0.400000 +2950 157 0.400000 +2950 354 0.400000 +2950 374 0.400000 +2950 400 0.400000 +2950 470 0.400000 +2950 489 0.400000 +2950 502 0.400000 +2950 514 0.400000 +2950 563 0.400000 +2950 566 0.400000 +2950 585 0.400000 +2950 629 0.400000 +2950 701 0.400000 +2950 720 0.400000 +2950 722 0.400000 +2950 738 0.400000 +2951 88 0.400000 +2951 93 0.400000 +2951 254 0.400000 +2951 272 0.400000 +2951 369 0.400000 +2951 380 0.400000 +2951 477 0.400000 +2951 680 0.400000 +2951 685 0.400000 +2952 23 0.400000 +2952 138 0.400000 +2952 262 0.400000 +2952 274 0.400000 +2952 294 0.400000 +2952 366 0.400000 +2952 427 0.400000 +2952 452 0.400000 +2952 482 0.400000 +2952 491 0.400000 +2952 624 0.400000 +2952 679 0.400000 +2952 702 0.400000 +2952 784 0.400000 +2952 796 0.400000 +2953 5 0.400000 +2953 25 0.400000 +2953 34 0.400000 +2953 53 0.400000 +2953 109 0.400000 +2953 169 0.400000 +2953 246 0.400000 +2953 283 0.400000 +2953 389 0.400000 +2953 467 0.400000 +2953 500 0.400000 +2953 636 0.400000 +2953 704 0.400000 +2953 788 0.400000 +2954 81 0.400000 +2954 162 0.400000 +2954 232 0.400000 +2954 262 0.400000 +2954 263 0.400000 +2954 288 0.400000 +2954 292 0.400000 +2954 296 0.400000 +2954 306 0.400000 +2954 345 0.400000 +2954 358 0.400000 +2954 418 0.400000 +2954 435 0.400000 +2954 460 0.400000 +2954 537 0.400000 +2954 586 0.400000 +2954 636 0.400000 +2954 660 0.400000 +2954 729 0.400000 +2954 772 0.400000 +2954 794 0.400000 +2955 31 0.400000 +2955 236 0.400000 +2955 249 0.400000 +2955 270 0.400000 +2955 287 0.400000 +2955 379 0.400000 +2955 455 0.400000 +2955 461 0.400000 +2955 489 0.400000 +2955 509 0.400000 +2955 551 0.400000 +2955 575 0.400000 +2955 626 0.400000 +2955 696 0.400000 +2955 698 0.400000 +2955 768 0.400000 +2956 55 0.400000 +2956 62 0.400000 +2956 88 0.400000 +2956 183 0.400000 +2956 184 0.400000 +2956 191 0.400000 +2956 313 0.400000 +2956 324 0.400000 +2956 326 0.400000 +2956 360 0.400000 +2956 365 0.400000 +2956 433 0.400000 +2956 519 0.400000 +2956 548 0.400000 +2956 600 0.400000 +2956 678 0.400000 +2956 718 0.400000 +2956 771 0.400000 +2956 794 0.400000 +2957 121 0.400000 +2957 133 0.400000 +2957 135 0.400000 +2957 146 0.400000 +2957 193 0.400000 +2957 219 0.400000 +2957 362 0.400000 +2957 395 0.400000 +2957 426 0.400000 +2957 471 0.400000 +2957 510 0.400000 +2957 521 0.400000 +2957 534 0.400000 +2957 567 0.400000 +2957 577 0.400000 +2957 625 0.400000 +2957 663 0.400000 +2957 744 0.400000 +2957 771 0.400000 +2958 5 0.400000 +2958 49 0.400000 +2958 57 0.400000 +2958 63 0.400000 +2958 158 0.400000 +2958 483 0.400000 +2958 496 0.400000 +2958 561 0.400000 +2958 585 0.400000 +2958 591 0.400000 +2958 606 0.400000 +2958 630 0.400000 +2958 667 0.400000 +2958 679 0.400000 +2958 703 0.400000 +2958 723 0.400000 +2959 40 0.400000 +2959 137 0.400000 +2959 289 0.400000 +2959 328 0.400000 +2959 330 0.400000 +2959 534 0.400000 +2959 615 0.400000 +2959 619 0.400000 +2959 620 0.400000 +2959 664 0.400000 +2959 682 0.400000 +2959 701 0.400000 +2959 723 0.400000 +2959 784 0.400000 +2960 76 0.400000 +2960 120 0.400000 +2960 121 0.400000 +2960 277 0.400000 +2960 292 0.400000 +2960 337 0.400000 +2960 345 0.400000 +2960 359 0.400000 +2960 419 0.400000 +2960 517 0.400000 +2960 661 0.400000 +2960 743 0.400000 +2960 768 0.400000 +2961 56 0.400000 +2961 86 0.400000 +2961 91 0.400000 +2961 269 0.400000 +2961 291 0.400000 +2961 311 0.400000 +2961 326 0.400000 +2961 455 0.400000 +2961 478 0.400000 +2961 486 0.400000 +2961 490 0.400000 +2961 542 0.400000 +2961 572 0.400000 +2961 586 0.400000 +2961 680 0.400000 +2961 753 0.400000 +2961 774 0.400000 +2961 795 0.400000 +2961 797 0.400000 +2962 74 0.400000 +2962 89 0.400000 +2962 101 0.400000 +2962 171 0.400000 +2962 177 0.400000 +2962 285 0.400000 +2962 307 0.400000 +2962 333 0.400000 +2962 407 0.400000 +2962 449 0.400000 +2962 463 0.400000 +2962 474 0.400000 +2962 643 0.400000 +2962 646 0.400000 +2962 695 0.400000 +2962 723 0.400000 +2962 766 0.400000 +2962 796 0.400000 +2963 11 0.400000 +2963 65 0.400000 +2963 134 0.400000 +2963 162 0.400000 +2963 173 0.400000 +2963 175 0.400000 +2963 192 0.400000 +2963 222 0.400000 +2963 253 0.400000 +2963 292 0.400000 +2963 308 0.400000 +2963 321 0.400000 +2963 406 0.400000 +2963 494 0.400000 +2963 525 0.400000 +2963 563 0.400000 +2963 564 0.400000 +2963 565 0.400000 +2963 588 0.400000 +2963 619 0.400000 +2963 773 0.400000 +2963 796 0.400000 +2964 40 0.400000 +2964 53 0.400000 +2964 90 0.400000 +2964 291 0.400000 +2964 303 0.400000 +2964 411 0.400000 +2964 541 0.400000 +2964 611 0.400000 +2964 772 0.400000 +2964 776 0.400000 +2965 3 0.400000 +2965 194 0.400000 +2965 235 0.400000 +2965 320 0.400000 +2965 332 0.400000 +2965 392 0.400000 +2965 439 0.400000 +2965 506 0.400000 +2965 514 0.400000 +2965 528 0.400000 +2965 559 0.400000 +2965 655 0.400000 +2965 690 0.400000 +2965 776 0.400000 +2965 794 0.400000 +2966 52 0.400000 +2966 133 0.400000 +2966 189 0.400000 +2966 228 0.400000 +2966 230 0.400000 +2966 247 0.400000 +2966 259 0.400000 +2966 281 0.400000 +2966 289 0.400000 +2966 312 0.400000 +2966 394 0.400000 +2966 426 0.400000 +2966 513 0.400000 +2966 528 0.400000 +2966 571 0.400000 +2966 733 0.400000 +2966 734 0.400000 +2966 746 0.400000 +2966 758 0.400000 +2966 788 0.400000 +2967 6 0.400000 +2967 46 0.400000 +2967 87 0.400000 +2967 136 0.400000 +2967 246 0.400000 +2967 277 0.400000 +2967 294 0.400000 +2967 302 0.400000 +2967 319 0.400000 +2967 320 0.400000 +2967 355 0.400000 +2967 421 0.400000 +2967 445 0.400000 +2967 459 0.400000 +2967 543 0.400000 +2967 559 0.400000 +2967 572 0.400000 +2967 629 0.400000 +2967 642 0.400000 +2967 646 0.400000 +2967 656 0.400000 +2967 701 0.400000 +2968 40 0.400000 +2968 52 0.400000 +2968 76 0.400000 +2968 91 0.400000 +2968 97 0.400000 +2968 208 0.400000 +2968 246 0.400000 +2968 288 0.400000 +2968 291 0.400000 +2968 348 0.400000 +2968 627 0.400000 +2968 659 0.400000 +2968 717 0.400000 +2968 722 0.400000 +2968 737 0.400000 +2968 765 0.400000 +2969 8 0.400000 +2969 366 0.400000 +2969 389 0.400000 +2969 393 0.400000 +2969 413 0.400000 +2969 429 0.400000 +2969 599 0.400000 +2969 609 0.400000 +2969 702 0.400000 +2969 775 0.400000 +2970 24 0.400000 +2970 49 0.400000 +2970 121 0.400000 +2970 126 0.400000 +2970 153 0.400000 +2970 255 0.400000 +2970 329 0.400000 +2970 359 0.400000 +2970 368 0.400000 +2970 459 0.400000 +2970 534 0.400000 +2970 652 0.400000 +2970 741 0.400000 +2970 755 0.400000 +2970 795 0.400000 +2971 78 0.400000 +2971 107 0.400000 +2971 120 0.400000 +2971 170 0.400000 +2971 179 0.400000 +2971 187 0.400000 +2971 200 0.400000 +2971 252 0.400000 +2971 352 0.400000 +2971 361 0.400000 +2971 390 0.400000 +2971 434 0.400000 +2971 500 0.400000 +2971 713 0.400000 +2972 6 0.400000 +2972 66 0.400000 +2972 119 0.400000 +2972 165 0.400000 +2972 193 0.400000 +2972 222 0.400000 +2972 275 0.400000 +2972 319 0.400000 +2972 389 0.400000 +2972 500 0.400000 +2972 505 0.400000 +2972 529 0.400000 +2972 567 0.400000 +2972 580 0.400000 +2972 677 0.400000 +2972 764 0.400000 +2972 773 0.400000 +2972 786 0.400000 +2972 788 0.400000 +2972 792 0.400000 +2972 794 0.400000 +2973 70 0.400000 +2973 108 0.400000 +2973 147 0.400000 +2973 148 0.400000 +2973 174 0.400000 +2973 255 0.400000 +2973 281 0.400000 +2973 363 0.400000 +2973 373 0.400000 +2973 374 0.400000 +2973 456 0.400000 +2973 491 0.400000 +2973 520 0.400000 +2973 601 0.400000 +2973 623 0.400000 +2973 632 0.400000 +2973 656 0.400000 +2973 716 0.400000 +2973 795 0.400000 +2974 43 0.400000 +2974 44 0.400000 +2974 56 0.400000 +2974 175 0.400000 +2974 214 0.400000 +2974 265 0.400000 +2974 305 0.400000 +2974 330 0.400000 +2974 439 0.400000 +2974 457 0.400000 +2974 700 0.400000 +2974 705 0.400000 +2974 772 0.400000 +2975 68 0.400000 +2975 74 0.400000 +2975 85 0.400000 +2975 106 0.400000 +2975 154 0.400000 +2975 162 0.400000 +2975 236 0.400000 +2975 249 0.400000 +2975 345 0.400000 +2975 402 0.400000 +2975 478 0.400000 +2975 501 0.400000 +2975 513 0.400000 +2975 558 0.400000 +2975 562 0.400000 +2975 771 0.400000 +2975 787 0.400000 +2976 253 0.400000 +2976 311 0.400000 +2976 319 0.400000 +2976 323 0.400000 +2976 325 0.400000 +2976 510 0.400000 +2976 525 0.400000 +2976 562 0.400000 +2976 664 0.400000 +2976 670 0.400000 +2977 7 0.400000 +2977 64 0.400000 +2977 192 0.400000 +2977 244 0.400000 +2977 246 0.400000 +2977 332 0.400000 +2977 337 0.400000 +2977 338 0.400000 +2977 418 0.400000 +2977 433 0.400000 +2977 446 0.400000 +2977 460 0.400000 +2977 473 0.400000 +2977 481 0.400000 +2977 636 0.400000 +2977 667 0.400000 +2977 713 0.400000 +2977 735 0.400000 +2977 775 0.400000 +2977 778 0.400000 +2978 50 0.400000 +2978 212 0.400000 +2978 241 0.400000 +2978 273 0.400000 +2978 329 0.400000 +2978 498 0.400000 +2978 557 0.400000 +2978 573 0.400000 +2978 720 0.400000 +2978 722 0.400000 +2978 755 0.400000 +2978 794 0.400000 +2979 117 0.400000 +2979 177 0.400000 +2979 178 0.400000 +2979 235 0.400000 +2979 280 0.400000 +2979 389 0.400000 +2979 394 0.400000 +2979 453 0.400000 +2979 488 0.400000 +2979 512 0.400000 +2979 562 0.400000 +2979 645 0.400000 +2980 75 0.400000 +2980 88 0.400000 +2980 102 0.400000 +2980 161 0.400000 +2980 219 0.400000 +2980 252 0.400000 +2980 267 0.400000 +2980 324 0.400000 +2980 432 0.400000 +2980 448 0.400000 +2980 562 0.400000 +2980 564 0.400000 +2980 600 0.400000 +2980 614 0.400000 +2980 669 0.400000 +2981 7 0.400000 +2981 121 0.400000 +2981 137 0.400000 +2981 274 0.400000 +2981 384 0.400000 +2981 434 0.400000 +2981 444 0.400000 +2981 628 0.400000 +2981 632 0.400000 +2981 644 0.400000 +2981 666 0.400000 +2981 678 0.400000 +2981 699 0.400000 +2982 99 0.400000 +2982 121 0.400000 +2982 144 0.400000 +2982 274 0.400000 +2982 318 0.400000 +2982 330 0.400000 +2982 402 0.400000 +2982 431 0.400000 +2982 433 0.400000 +2982 438 0.400000 +2982 482 0.400000 +2982 522 0.400000 +2982 621 0.400000 +2982 644 0.400000 +2982 681 0.400000 +2982 744 0.400000 +2983 31 0.400000 +2983 55 0.400000 +2983 70 0.400000 +2983 90 0.400000 +2983 120 0.400000 +2983 486 0.400000 +2983 634 0.400000 +2983 714 0.400000 +2983 734 0.400000 +2983 759 0.400000 +2984 123 0.400000 +2984 141 0.400000 +2984 303 0.400000 +2984 406 0.400000 +2984 468 0.400000 +2984 512 0.400000 +2984 754 0.400000 +2984 765 0.400000 +2985 142 0.400000 +2985 175 0.400000 +2985 176 0.400000 +2985 257 0.400000 +2985 261 0.400000 +2985 366 0.400000 +2985 368 0.400000 +2985 465 0.400000 +2985 487 0.400000 +2985 489 0.400000 +2985 616 0.400000 +2985 660 0.400000 +2985 693 0.400000 +2985 732 0.400000 +2985 782 0.400000 +2986 142 0.400000 +2986 213 0.400000 +2986 275 0.400000 +2986 280 0.400000 +2986 330 0.400000 +2986 360 0.400000 +2986 366 0.400000 +2986 385 0.400000 +2986 430 0.400000 +2986 446 0.400000 +2986 457 0.400000 +2986 479 0.400000 +2986 530 0.400000 +2986 602 0.400000 +2986 635 0.400000 +2986 643 0.400000 +2986 714 0.400000 +2986 722 0.400000 +2987 26 0.400000 +2987 89 0.400000 +2987 109 0.400000 +2987 179 0.400000 +2987 189 0.400000 +2987 220 0.400000 +2987 222 0.400000 +2987 225 0.400000 +2987 254 0.400000 +2987 314 0.400000 +2987 317 0.400000 +2987 335 0.400000 +2987 429 0.400000 +2987 460 0.400000 +2987 533 0.400000 +2987 538 0.400000 +2987 541 0.400000 +2987 569 0.400000 +2987 709 0.400000 +2988 29 0.400000 +2988 51 0.400000 +2988 121 0.400000 +2988 150 0.400000 +2988 200 0.400000 +2988 206 0.400000 +2988 251 0.400000 +2988 267 0.400000 +2988 349 0.400000 +2988 356 0.400000 +2988 383 0.400000 +2988 442 0.400000 +2988 460 0.400000 +2988 495 0.400000 +2988 502 0.400000 +2988 509 0.400000 +2988 535 0.400000 +2988 600 0.400000 +2988 640 0.400000 +2988 687 0.400000 +2988 736 0.400000 +2988 739 0.400000 +2988 768 0.400000 +2989 40 0.400000 +2989 137 0.400000 +2989 160 0.400000 +2989 177 0.400000 +2989 233 0.400000 +2989 293 0.400000 +2989 307 0.400000 +2989 334 0.400000 +2989 351 0.400000 +2989 400 0.400000 +2989 440 0.400000 +2989 482 0.400000 +2989 497 0.400000 +2989 603 0.400000 +2989 643 0.400000 +2989 716 0.400000 +2989 748 0.400000 +2990 61 0.400000 +2990 114 0.400000 +2990 137 0.400000 +2990 201 0.400000 +2990 230 0.400000 +2990 299 0.400000 +2990 300 0.400000 +2990 369 0.400000 +2990 394 0.400000 +2990 456 0.400000 +2990 517 0.400000 +2990 521 0.400000 +2990 533 0.400000 +2990 582 0.400000 +2990 600 0.400000 +2990 652 0.400000 +2990 682 0.400000 +2990 696 0.400000 +2990 727 0.400000 +2990 747 0.400000 +2990 757 0.400000 +2990 766 0.400000 +2990 777 0.400000 +2991 70 0.400000 +2991 89 0.400000 +2991 163 0.400000 +2991 206 0.400000 +2991 288 0.400000 +2991 337 0.400000 +2991 338 0.400000 +2991 420 0.400000 +2991 449 0.400000 +2991 455 0.400000 +2991 456 0.400000 +2991 476 0.400000 +2991 539 0.400000 +2991 548 0.400000 +2991 617 0.400000 +2991 628 0.400000 +2991 686 0.400000 +2991 718 0.400000 +2991 750 0.400000 +2991 763 0.400000 +2992 22 0.400000 +2992 47 0.400000 +2992 115 0.400000 +2992 120 0.400000 +2992 225 0.400000 +2992 240 0.400000 +2992 289 0.400000 +2992 340 0.400000 +2992 348 0.400000 +2992 629 0.400000 +2992 663 0.400000 +2992 697 0.400000 +2992 706 0.400000 +2992 730 0.400000 +2993 98 0.400000 +2993 159 0.400000 +2993 209 0.400000 +2993 361 0.400000 +2993 403 0.400000 +2993 427 0.400000 +2993 485 0.400000 +2993 534 0.400000 +2993 633 0.400000 +2993 687 0.400000 +2993 741 0.400000 +2993 751 0.400000 +2993 794 0.400000 +2994 15 0.400000 +2994 20 0.400000 +2994 126 0.400000 +2994 319 0.400000 +2994 340 0.400000 +2994 362 0.400000 +2994 383 0.400000 +2994 411 0.400000 +2994 530 0.400000 +2994 558 0.400000 +2994 640 0.400000 +2994 696 0.400000 +2995 36 0.400000 +2995 189 0.400000 +2995 214 0.400000 +2995 264 0.400000 +2995 285 0.400000 +2995 292 0.400000 +2995 333 0.400000 +2995 355 0.400000 +2995 389 0.400000 +2995 397 0.400000 +2995 446 0.400000 +2995 449 0.400000 +2995 513 0.400000 +2995 539 0.400000 +2995 580 0.400000 +2995 658 0.400000 +2995 690 0.400000 +2995 705 0.400000 +2995 749 0.400000 +2996 61 0.400000 +2996 66 0.400000 +2996 115 0.400000 +2996 156 0.400000 +2996 179 0.400000 +2996 185 0.400000 +2996 211 0.400000 +2996 223 0.400000 +2996 238 0.400000 +2996 362 0.400000 +2996 444 0.400000 +2996 485 0.400000 +2996 511 0.400000 +2996 582 0.400000 +2996 789 0.400000 +2997 28 0.400000 +2997 79 0.400000 +2997 100 0.400000 +2997 155 0.400000 +2997 168 0.400000 +2997 175 0.400000 +2997 249 0.400000 +2997 264 0.400000 +2997 278 0.400000 +2997 316 0.400000 +2997 328 0.400000 +2997 357 0.400000 +2997 506 0.400000 +2997 542 0.400000 +2997 675 0.400000 +2997 747 0.400000 +2997 797 0.400000 +2998 48 0.400000 +2998 83 0.400000 +2998 85 0.400000 +2998 99 0.400000 +2998 160 0.400000 +2998 174 0.400000 +2998 228 0.400000 +2998 254 0.400000 +2998 327 0.400000 +2998 370 0.400000 +2998 381 0.400000 +2998 409 0.400000 +2998 459 0.400000 +2998 495 0.400000 +2998 673 0.400000 +2998 781 0.400000 +2999 7 0.400000 +2999 124 0.400000 +2999 125 0.400000 +2999 204 0.400000 +2999 245 0.400000 +2999 297 0.400000 +2999 381 0.400000 +2999 504 0.400000 +2999 537 0.400000 +2999 549 0.400000 +2999 590 0.400000 +2999 620 0.400000 +2999 770 0.400000 +3000 23 0.400000 +3000 38 0.400000 +3000 94 0.400000 +3000 119 0.400000 +3000 180 0.400000 +3000 235 0.400000 +3000 266 0.400000 +3000 555 0.400000 +3000 591 0.400000 +3000 598 0.400000 +3000 715 0.400000 +3000 792 0.400000 +3000 798 0.400000 +3001 10 0.400000 +3001 72 0.400000 +3001 81 0.400000 +3001 131 0.400000 +3001 163 0.400000 +3001 182 0.400000 +3001 190 0.400000 +3001 220 0.400000 +3001 267 0.400000 +3001 302 0.400000 +3001 317 0.400000 +3001 485 0.400000 +3001 487 0.400000 +3001 491 0.400000 +3001 731 0.400000 +3002 12 0.400000 +3002 16 0.400000 +3002 49 0.400000 +3002 52 0.400000 +3002 90 0.400000 +3002 97 0.400000 +3002 229 0.400000 +3002 361 0.400000 +3002 390 0.400000 +3002 429 0.400000 +3002 642 0.400000 +3002 738 0.400000 +3002 784 0.400000 +3003 34 0.400000 +3003 70 0.400000 +3003 123 0.400000 +3003 175 0.400000 +3003 276 0.400000 +3003 306 0.400000 +3003 327 0.400000 +3003 400 0.400000 +3003 432 0.400000 +3003 578 0.400000 +3003 641 0.400000 +3003 726 0.400000 +3003 737 0.400000 +3003 746 0.400000 +3004 122 0.400000 +3004 234 0.400000 +3004 250 0.400000 +3004 256 0.400000 +3004 369 0.400000 +3004 370 0.400000 +3004 476 0.400000 +3004 609 0.400000 +3004 654 0.400000 +3004 660 0.400000 +3004 678 0.400000 +3004 708 0.400000 +3004 722 0.400000 +3004 772 0.400000 +3005 19 0.400000 +3005 27 0.400000 +3005 46 0.400000 +3005 93 0.400000 +3005 171 0.400000 +3005 183 0.400000 +3005 225 0.400000 +3005 235 0.400000 +3005 254 0.400000 +3005 258 0.400000 +3005 301 0.400000 +3005 303 0.400000 +3005 384 0.400000 +3005 386 0.400000 +3005 442 0.400000 +3005 607 0.400000 +3005 712 0.400000 +3005 739 0.400000 +3005 740 0.400000 +3005 753 0.400000 +3005 761 0.400000 +3006 165 0.400000 +3006 264 0.400000 +3006 400 0.400000 +3006 403 0.400000 +3006 496 0.400000 +3006 503 0.400000 +3006 523 0.400000 +3006 539 0.400000 +3006 603 0.400000 +3006 605 0.400000 +3006 639 0.400000 +3006 646 0.400000 +3006 674 0.400000 +3006 715 0.400000 +3006 717 0.400000 +3007 169 0.400000 +3007 283 0.400000 +3007 302 0.400000 +3007 307 0.400000 +3007 418 0.400000 +3007 433 0.400000 +3007 560 0.400000 +3007 644 0.400000 +3007 662 0.400000 +3007 665 0.400000 +3007 712 0.400000 +3007 734 0.400000 +3008 50 0.400000 +3008 88 0.400000 +3008 90 0.400000 +3008 115 0.400000 +3008 162 0.400000 +3008 170 0.400000 +3008 175 0.400000 +3008 178 0.400000 +3008 185 0.400000 +3008 186 0.400000 +3008 200 0.400000 +3008 205 0.400000 +3008 206 0.400000 +3008 258 0.400000 +3008 302 0.400000 +3008 371 0.400000 +3008 410 0.400000 +3008 430 0.400000 +3008 500 0.400000 +3008 501 0.400000 +3008 523 0.400000 +3008 545 0.400000 +3008 586 0.400000 +3008 708 0.400000 +3008 782 0.400000 +3009 71 0.400000 +3009 189 0.400000 +3009 263 0.400000 +3009 316 0.400000 +3009 351 0.400000 +3009 537 0.400000 +3009 593 0.400000 +3009 631 0.400000 +3009 647 0.400000 +3009 651 0.400000 +3009 701 0.400000 +3009 705 0.400000 +3009 792 0.400000 +3010 14 0.400000 +3010 64 0.400000 +3010 130 0.400000 +3010 149 0.400000 +3010 232 0.400000 +3010 236 0.400000 +3010 248 0.400000 +3010 269 0.400000 +3010 311 0.400000 +3010 341 0.400000 +3010 392 0.400000 +3010 417 0.400000 +3010 468 0.400000 +3010 470 0.400000 +3010 486 0.400000 +3010 577 0.400000 +3010 626 0.400000 +3010 662 0.400000 +3010 669 0.400000 +3010 687 0.400000 +3010 720 0.400000 +3010 735 0.400000 +3010 777 0.400000 +3010 784 0.400000 +3011 77 0.400000 +3011 220 0.400000 +3011 253 0.400000 +3011 257 0.400000 +3011 261 0.400000 +3011 287 0.400000 +3011 305 0.400000 +3011 315 0.400000 +3011 368 0.400000 +3011 459 0.400000 +3011 500 0.400000 +3011 519 0.400000 +3011 535 0.400000 +3011 568 0.400000 +3011 570 0.400000 +3011 586 0.400000 +3011 638 0.400000 +3011 644 0.400000 +3011 671 0.400000 +3011 771 0.400000 +3012 3 0.400000 +3012 211 0.400000 +3012 268 0.400000 +3012 286 0.400000 +3012 309 0.400000 +3012 373 0.400000 +3012 406 0.400000 +3012 423 0.400000 +3012 449 0.400000 +3012 489 0.400000 +3012 496 0.400000 +3012 533 0.400000 +3012 570 0.400000 +3012 624 0.400000 +3012 793 0.400000 +3013 14 0.400000 +3013 18 0.400000 +3013 48 0.400000 +3013 60 0.400000 +3013 182 0.400000 +3013 191 0.400000 +3013 213 0.400000 +3013 266 0.400000 +3013 339 0.400000 +3013 342 0.400000 +3013 392 0.400000 +3013 418 0.400000 +3013 449 0.400000 +3013 525 0.400000 +3013 534 0.400000 +3013 582 0.400000 +3013 605 0.400000 +3013 615 0.400000 +3013 648 0.400000 +3013 748 0.400000 +3014 33 0.400000 +3014 46 0.400000 +3014 54 0.400000 +3014 66 0.400000 +3014 160 0.400000 +3014 230 0.400000 +3014 246 0.400000 +3014 286 0.400000 +3014 305 0.400000 +3014 314 0.400000 +3014 400 0.400000 +3014 461 0.400000 +3014 491 0.400000 +3014 534 0.400000 +3014 537 0.400000 +3014 605 0.400000 +3014 613 0.400000 +3014 720 0.400000 +3014 763 0.400000 +3015 8 0.400000 +3015 26 0.400000 +3015 214 0.400000 +3015 249 0.400000 +3015 296 0.400000 +3015 367 0.400000 +3015 601 0.400000 +3015 607 0.400000 +3015 634 0.400000 +3015 778 0.400000 +3016 19 0.400000 +3016 32 0.400000 +3016 74 0.400000 +3016 154 0.400000 +3016 264 0.400000 +3016 306 0.400000 +3016 342 0.400000 +3016 398 0.400000 +3016 400 0.400000 +3016 410 0.400000 +3016 427 0.400000 +3016 463 0.400000 +3016 577 0.400000 +3016 619 0.400000 +3016 731 0.400000 +3016 743 0.400000 +3016 744 0.400000 +3016 753 0.400000 +3017 28 0.400000 +3017 198 0.400000 +3017 257 0.400000 +3017 352 0.400000 +3017 369 0.400000 +3017 374 0.400000 +3017 391 0.400000 +3017 427 0.400000 +3017 434 0.400000 +3017 492 0.400000 +3017 510 0.400000 +3017 560 0.400000 +3017 619 0.400000 +3017 641 0.400000 +3017 647 0.400000 +3017 674 0.400000 +3018 43 0.400000 +3018 223 0.400000 +3018 230 0.400000 +3018 249 0.400000 +3018 314 0.400000 +3018 403 0.400000 +3018 447 0.400000 +3018 466 0.400000 +3018 468 0.400000 +3018 483 0.400000 +3018 562 0.400000 +3018 661 0.400000 +3018 692 0.400000 +3018 707 0.400000 +3018 714 0.400000 +3018 732 0.400000 +3018 797 0.400000 +3019 75 0.400000 +3019 186 0.400000 +3019 273 0.400000 +3019 361 0.400000 +3019 481 0.400000 +3019 523 0.400000 +3019 533 0.400000 +3019 584 0.400000 +3019 623 0.400000 +3019 678 0.400000 +3019 763 0.400000 +3020 11 0.400000 +3020 94 0.400000 +3020 119 0.400000 +3020 133 0.400000 +3020 172 0.400000 +3020 181 0.400000 +3020 240 0.400000 +3020 245 0.400000 +3020 254 0.400000 +3020 257 0.400000 +3020 362 0.400000 +3020 396 0.400000 +3020 441 0.400000 +3020 571 0.400000 +3020 575 0.400000 +3020 587 0.400000 +3020 602 0.400000 +3020 607 0.400000 +3020 650 0.400000 +3020 656 0.400000 +3020 682 0.400000 +3020 766 0.400000 +3021 13 0.400000 +3021 27 0.400000 +3021 202 0.400000 +3021 225 0.400000 +3021 247 0.400000 +3021 518 0.400000 +3021 535 0.400000 +3021 541 0.400000 +3021 563 0.400000 +3021 566 0.400000 +3021 626 0.400000 +3021 628 0.400000 +3021 741 0.400000 +3021 745 0.400000 +3021 750 0.400000 +3021 752 0.400000 +3021 774 0.400000 +3022 23 0.400000 +3022 51 0.400000 +3022 99 0.400000 +3022 133 0.400000 +3022 179 0.400000 +3022 204 0.400000 +3022 231 0.400000 +3022 247 0.400000 +3022 354 0.400000 +3022 414 0.400000 +3022 437 0.400000 +3022 490 0.400000 +3022 492 0.400000 +3022 572 0.400000 +3022 617 0.400000 +3022 639 0.400000 +3022 671 0.400000 +3022 741 0.400000 +3022 757 0.400000 +3023 1 0.400000 +3023 50 0.400000 +3023 153 0.400000 +3023 248 0.400000 +3023 324 0.400000 +3023 332 0.400000 +3023 338 0.400000 +3023 568 0.400000 +3023 684 0.400000 +3023 698 0.400000 +3023 758 0.400000 +3023 766 0.400000 +3023 777 0.400000 +3024 8 0.400000 +3024 19 0.400000 +3024 33 0.400000 +3024 238 0.400000 +3024 279 0.400000 +3024 287 0.400000 +3024 370 0.400000 +3024 403 0.400000 +3024 456 0.400000 +3024 492 0.400000 +3024 499 0.400000 +3024 644 0.400000 +3024 665 0.400000 +3024 788 0.400000 +3025 18 0.400000 +3025 139 0.400000 +3025 224 0.400000 +3025 308 0.400000 +3025 332 0.400000 +3025 345 0.400000 +3025 384 0.400000 +3025 388 0.400000 +3025 397 0.400000 +3025 429 0.400000 +3025 462 0.400000 +3025 587 0.400000 +3025 614 0.400000 +3025 616 0.400000 +3025 665 0.400000 +3025 766 0.400000 +3026 24 0.400000 +3026 35 0.400000 +3026 147 0.400000 +3026 162 0.400000 +3026 235 0.400000 +3026 240 0.400000 +3026 258 0.400000 +3026 295 0.400000 +3026 296 0.400000 +3026 363 0.400000 +3026 382 0.400000 +3026 456 0.400000 +3026 495 0.400000 +3026 503 0.400000 +3026 570 0.400000 +3026 665 0.400000 +3026 702 0.400000 +3026 752 0.400000 +3027 16 0.400000 +3027 40 0.400000 +3027 60 0.400000 +3027 136 0.400000 +3027 164 0.400000 +3027 168 0.400000 +3027 199 0.400000 +3027 229 0.400000 +3027 246 0.400000 +3027 259 0.400000 +3027 348 0.400000 +3027 470 0.400000 +3027 565 0.400000 +3027 566 0.400000 +3027 570 0.400000 +3027 596 0.400000 +3027 715 0.400000 +3027 725 0.400000 +3028 77 0.400000 +3028 94 0.400000 +3028 108 0.400000 +3028 109 0.400000 +3028 236 0.400000 +3028 261 0.400000 +3028 282 0.400000 +3028 312 0.400000 +3028 315 0.400000 +3028 343 0.400000 +3028 347 0.400000 +3028 358 0.400000 +3028 373 0.400000 +3028 394 0.400000 +3028 420 0.400000 +3028 421 0.400000 +3028 479 0.400000 +3028 535 0.400000 +3028 546 0.400000 +3028 729 0.400000 +3028 757 0.400000 +3028 794 0.400000 +3029 131 0.400000 +3029 135 0.400000 +3029 180 0.400000 +3029 250 0.400000 +3029 331 0.400000 +3029 410 0.400000 +3029 480 0.400000 +3029 488 0.400000 +3029 530 0.400000 +3030 21 0.400000 +3030 67 0.400000 +3030 89 0.400000 +3030 99 0.400000 +3030 103 0.400000 +3030 190 0.400000 +3030 192 0.400000 +3030 227 0.400000 +3030 237 0.400000 +3030 275 0.400000 +3030 286 0.400000 +3030 392 0.400000 +3030 545 0.400000 +3030 618 0.400000 +3030 620 0.400000 +3030 680 0.400000 +3030 688 0.400000 +3030 741 0.400000 +3030 753 0.400000 +3030 794 0.400000 +3030 795 0.400000 +3031 50 0.400000 +3031 120 0.400000 +3031 180 0.400000 +3031 257 0.400000 +3031 268 0.400000 +3031 311 0.400000 +3031 316 0.400000 +3031 399 0.400000 +3031 439 0.400000 +3031 469 0.400000 +3031 473 0.400000 +3031 477 0.400000 +3031 487 0.400000 +3031 565 0.400000 +3031 586 0.400000 +3031 589 0.400000 +3031 705 0.400000 +3031 755 0.400000 +3032 37 0.400000 +3032 45 0.400000 +3032 60 0.400000 +3032 98 0.400000 +3032 178 0.400000 +3032 377 0.400000 +3032 378 0.400000 +3032 398 0.400000 +3032 434 0.400000 +3032 472 0.400000 +3032 488 0.400000 +3032 532 0.400000 +3032 577 0.400000 +3032 594 0.400000 +3032 657 0.400000 +3032 678 0.400000 +3032 694 0.400000 +3032 739 0.400000 +3032 770 0.400000 +3033 28 0.400000 +3033 32 0.400000 +3033 57 0.400000 +3033 74 0.400000 +3033 91 0.400000 +3033 129 0.400000 +3033 183 0.400000 +3033 231 0.400000 +3033 256 0.400000 +3033 311 0.400000 +3033 403 0.400000 +3033 417 0.400000 +3033 425 0.400000 +3033 487 0.400000 +3033 568 0.400000 +3033 733 0.400000 +3034 56 0.400000 +3034 209 0.400000 +3034 236 0.400000 +3034 279 0.400000 +3034 338 0.400000 +3034 344 0.400000 +3034 345 0.400000 +3034 538 0.400000 +3034 590 0.400000 +3034 632 0.400000 +3034 741 0.400000 +3035 102 0.400000 +3035 108 0.400000 +3035 114 0.400000 +3035 150 0.400000 +3035 226 0.400000 +3035 261 0.400000 +3035 536 0.400000 +3035 539 0.400000 +3035 729 0.400000 +3035 759 0.400000 +3035 761 0.400000 +3035 782 0.400000 +3036 23 0.400000 +3036 109 0.400000 +3036 131 0.400000 +3036 138 0.400000 +3036 252 0.400000 +3036 312 0.400000 +3036 372 0.400000 +3036 374 0.400000 +3036 376 0.400000 +3036 440 0.400000 +3036 453 0.400000 +3036 529 0.400000 +3036 536 0.400000 +3036 627 0.400000 +3036 674 0.400000 +3036 708 0.400000 +3036 732 0.400000 +3037 77 0.400000 +3037 84 0.400000 +3037 96 0.400000 +3037 107 0.400000 +3037 269 0.400000 +3037 290 0.400000 +3037 333 0.400000 +3037 373 0.400000 +3037 376 0.400000 +3037 565 0.400000 +3037 632 0.400000 +3037 687 0.400000 +3037 746 0.400000 +3037 798 0.400000 +3038 101 0.400000 +3038 126 0.400000 +3038 140 0.400000 +3038 242 0.400000 +3038 304 0.400000 +3038 358 0.400000 +3038 370 0.400000 +3038 498 0.400000 +3038 507 0.400000 +3038 513 0.400000 +3038 531 0.400000 +3038 571 0.400000 +3038 727 0.400000 +3039 21 0.400000 +3039 35 0.400000 +3039 66 0.400000 +3039 113 0.400000 +3039 240 0.400000 +3039 241 0.400000 +3039 247 0.400000 +3039 264 0.400000 +3039 268 0.400000 +3039 334 0.400000 +3039 343 0.400000 +3039 391 0.400000 +3039 393 0.400000 +3039 395 0.400000 +3039 398 0.400000 +3039 425 0.400000 +3039 431 0.400000 +3039 533 0.400000 +3039 579 0.400000 +3039 682 0.400000 +3040 43 0.400000 +3040 127 0.400000 +3040 136 0.400000 +3040 286 0.400000 +3040 289 0.400000 +3040 290 0.400000 +3040 293 0.400000 +3040 302 0.400000 +3040 514 0.400000 +3040 517 0.400000 +3040 566 0.400000 +3040 607 0.400000 +3040 617 0.400000 +3040 702 0.400000 +3040 703 0.400000 +3041 49 0.400000 +3041 74 0.400000 +3041 98 0.400000 +3041 106 0.400000 +3041 191 0.400000 +3041 214 0.400000 +3041 219 0.400000 +3041 273 0.400000 +3041 330 0.400000 +3041 332 0.400000 +3041 416 0.400000 +3041 572 0.400000 +3041 584 0.400000 +3041 643 0.400000 +3041 796 0.400000 +3042 20 0.400000 +3042 124 0.400000 +3042 143 0.400000 +3042 172 0.400000 +3042 251 0.400000 +3042 266 0.400000 +3042 278 0.400000 +3042 319 0.400000 +3042 524 0.400000 +3042 536 0.400000 +3042 599 0.400000 +3042 615 0.400000 +3042 625 0.400000 +3042 793 0.400000 +3043 47 0.400000 +3043 71 0.400000 +3043 139 0.400000 +3043 165 0.400000 +3043 382 0.400000 +3043 510 0.400000 +3043 602 0.400000 +3043 691 0.400000 +3043 737 0.400000 +3043 765 0.400000 +3043 771 0.400000 +3044 88 0.400000 +3044 99 0.400000 +3044 118 0.400000 +3044 177 0.400000 +3044 207 0.400000 +3044 237 0.400000 +3044 250 0.400000 +3044 260 0.400000 +3044 310 0.400000 +3044 318 0.400000 +3044 368 0.400000 +3044 448 0.400000 +3044 472 0.400000 +3044 482 0.400000 +3044 484 0.400000 +3044 579 0.400000 +3044 642 0.400000 +3044 662 0.400000 +3044 670 0.400000 +3044 694 0.400000 +3044 710 0.400000 +3044 769 0.400000 +3044 782 0.400000 +3044 784 0.400000 +3045 79 0.400000 +3045 82 0.400000 +3045 113 0.400000 +3045 125 0.400000 +3045 156 0.400000 +3045 181 0.400000 +3045 231 0.400000 +3045 245 0.400000 +3045 273 0.400000 +3045 318 0.400000 +3045 568 0.400000 +3045 602 0.400000 +3045 628 0.400000 +3045 676 0.400000 +3045 742 0.400000 +3046 26 0.400000 +3046 87 0.400000 +3046 162 0.400000 +3046 315 0.400000 +3046 354 0.400000 +3046 395 0.400000 +3046 464 0.400000 +3046 490 0.400000 +3046 508 0.400000 +3046 538 0.400000 +3046 541 0.400000 +3046 550 0.400000 +3046 563 0.400000 +3046 568 0.400000 +3046 739 0.400000 +3046 744 0.400000 +3046 760 0.400000 +3047 41 0.400000 +3047 42 0.400000 +3047 68 0.400000 +3047 70 0.400000 +3047 113 0.400000 +3047 183 0.400000 +3047 293 0.400000 +3047 349 0.400000 +3047 431 0.400000 +3047 614 0.400000 +3047 622 0.400000 +3047 669 0.400000 +3047 671 0.400000 +3047 698 0.400000 +3047 712 0.400000 +3047 764 0.400000 +3048 19 0.400000 +3048 109 0.400000 +3048 221 0.400000 +3048 280 0.400000 +3048 351 0.400000 +3048 495 0.400000 +3048 516 0.400000 +3048 554 0.400000 +3048 570 0.400000 +3048 581 0.400000 +3048 639 0.400000 +3048 702 0.400000 +3048 742 0.400000 +3048 763 0.400000 +3049 34 0.400000 +3049 62 0.400000 +3049 156 0.400000 +3049 180 0.400000 +3049 282 0.400000 +3049 293 0.400000 +3049 341 0.400000 +3049 351 0.400000 +3049 468 0.400000 +3049 500 0.400000 +3049 521 0.400000 +3049 537 0.400000 +3049 600 0.400000 +3049 652 0.400000 +3049 658 0.400000 +3049 720 0.400000 +3049 774 0.400000 +3050 33 0.400000 +3050 78 0.400000 +3050 105 0.400000 +3050 175 0.400000 +3050 209 0.400000 +3050 310 0.400000 +3050 487 0.400000 +3050 527 0.400000 +3050 621 0.400000 +3050 636 0.400000 +3050 664 0.400000 +3050 721 0.400000 +3050 758 0.400000 +3051 48 0.400000 +3051 123 0.400000 +3051 149 0.400000 +3051 314 0.400000 +3051 325 0.400000 +3051 446 0.400000 +3051 480 0.400000 +3051 549 0.400000 +3051 647 0.400000 +3051 695 0.400000 +3051 775 0.400000 +3052 5 0.400000 +3052 235 0.400000 +3052 282 0.400000 +3052 322 0.400000 +3052 330 0.400000 +3052 441 0.400000 +3052 477 0.400000 +3052 488 0.400000 +3052 501 0.400000 +3052 510 0.400000 +3052 636 0.400000 +3052 725 0.400000 +3052 786 0.400000 +3052 794 0.400000 +3053 35 0.400000 +3053 79 0.400000 +3053 83 0.400000 +3053 183 0.400000 +3053 199 0.400000 +3053 235 0.400000 +3053 245 0.400000 +3053 337 0.400000 +3053 339 0.400000 +3053 361 0.400000 +3053 406 0.400000 +3053 444 0.400000 +3053 547 0.400000 +3053 702 0.400000 +3053 747 0.400000 +3053 768 0.400000 +3053 783 0.400000 +3054 230 0.400000 +3054 299 0.400000 +3054 401 0.400000 +3054 402 0.400000 +3054 411 0.400000 +3054 588 0.400000 +3054 589 0.400000 +3054 601 0.400000 +3054 650 0.400000 +3054 695 0.400000 +3054 724 0.400000 +3054 735 0.400000 +3055 100 0.400000 +3055 153 0.400000 +3055 155 0.400000 +3055 163 0.400000 +3055 207 0.400000 +3055 241 0.400000 +3055 267 0.400000 +3055 300 0.400000 +3055 374 0.400000 +3055 377 0.400000 +3055 401 0.400000 +3055 438 0.400000 +3055 565 0.400000 +3055 575 0.400000 +3055 602 0.400000 +3055 628 0.400000 +3055 706 0.400000 +3055 712 0.400000 +3055 731 0.400000 +3056 76 0.400000 +3056 132 0.400000 +3056 169 0.400000 +3056 248 0.400000 +3056 335 0.400000 +3056 425 0.400000 +3056 447 0.400000 +3056 461 0.400000 +3056 464 0.400000 +3056 494 0.400000 +3056 509 0.400000 +3056 560 0.400000 +3056 566 0.400000 +3056 579 0.400000 +3056 701 0.400000 +3056 743 0.400000 +3057 54 0.400000 +3057 84 0.400000 +3057 152 0.400000 +3057 169 0.400000 +3057 357 0.400000 +3057 369 0.400000 +3057 416 0.400000 +3057 604 0.400000 +3057 628 0.400000 +3057 633 0.400000 +3057 676 0.400000 +3057 713 0.400000 +3058 27 0.400000 +3058 167 0.400000 +3058 182 0.400000 +3058 258 0.400000 +3058 306 0.400000 +3058 354 0.400000 +3058 436 0.400000 +3058 587 0.400000 +3058 628 0.400000 +3058 739 0.400000 +3059 2 0.400000 +3059 7 0.400000 +3059 121 0.400000 +3059 249 0.400000 +3059 368 0.400000 +3059 383 0.400000 +3059 413 0.400000 +3059 423 0.400000 +3059 449 0.400000 +3059 484 0.400000 +3059 541 0.400000 +3059 545 0.400000 +3059 631 0.400000 +3059 648 0.400000 +3059 694 0.400000 +3059 710 0.400000 +3059 737 0.400000 +3059 745 0.400000 +3059 769 0.400000 +3060 179 0.400000 +3060 303 0.400000 +3060 306 0.400000 +3060 318 0.400000 +3060 324 0.400000 +3060 361 0.400000 +3060 485 0.400000 +3060 528 0.400000 +3060 531 0.400000 +3060 541 0.400000 +3060 602 0.400000 +3060 603 0.400000 +3060 655 0.400000 +3060 673 0.400000 +3060 750 0.400000 +3060 764 0.400000 +3060 776 0.400000 +3061 22 0.400000 +3061 66 0.400000 +3061 109 0.400000 +3061 187 0.400000 +3061 264 0.400000 +3061 279 0.400000 +3061 326 0.400000 +3061 416 0.400000 +3061 421 0.400000 +3061 455 0.400000 +3061 469 0.400000 +3061 493 0.400000 +3061 508 0.400000 +3061 517 0.400000 +3061 576 0.400000 +3061 623 0.400000 +3061 775 0.400000 +3061 780 0.400000 +3062 109 0.400000 +3062 265 0.400000 +3062 294 0.400000 +3062 387 0.400000 +3062 421 0.400000 +3062 458 0.400000 +3062 496 0.400000 +3062 547 0.400000 +3062 622 0.400000 +3062 636 0.400000 +3062 711 0.400000 +3062 729 0.400000 +3062 760 0.400000 +3063 111 0.400000 +3063 218 0.400000 +3063 219 0.400000 +3063 280 0.400000 +3063 311 0.400000 +3063 520 0.400000 +3063 657 0.400000 +3063 721 0.400000 +3063 764 0.400000 +3064 12 0.400000 +3064 25 0.400000 +3064 39 0.400000 +3064 97 0.400000 +3064 116 0.400000 +3064 150 0.400000 +3064 212 0.400000 +3064 265 0.400000 +3064 298 0.400000 +3064 352 0.400000 +3064 380 0.400000 +3064 484 0.400000 +3064 519 0.400000 +3064 535 0.400000 +3064 649 0.400000 +3064 685 0.400000 +3064 689 0.400000 +3064 697 0.400000 +3064 703 0.400000 +3065 33 0.400000 +3065 38 0.400000 +3065 89 0.400000 +3065 144 0.400000 +3065 155 0.400000 +3065 180 0.400000 +3065 263 0.400000 +3065 279 0.400000 +3065 302 0.400000 +3065 339 0.400000 +3065 362 0.400000 +3065 383 0.400000 +3065 467 0.400000 +3065 510 0.400000 +3065 581 0.400000 +3065 634 0.400000 +3065 732 0.400000 +3065 798 0.400000 +3066 22 0.400000 +3066 66 0.400000 +3066 132 0.400000 +3066 281 0.400000 +3066 324 0.400000 +3066 341 0.400000 +3066 464 0.400000 +3066 478 0.400000 +3066 564 0.400000 +3066 621 0.400000 +3066 703 0.400000 +3066 750 0.400000 +3067 40 0.400000 +3067 41 0.400000 +3067 42 0.400000 +3067 114 0.400000 +3067 154 0.400000 +3067 269 0.400000 +3067 275 0.400000 +3067 339 0.400000 +3067 509 0.400000 +3067 515 0.400000 +3067 746 0.400000 +3068 98 0.400000 +3068 127 0.400000 +3068 128 0.400000 +3068 146 0.400000 +3068 173 0.400000 +3068 183 0.400000 +3068 196 0.400000 +3068 287 0.400000 +3068 313 0.400000 +3068 343 0.400000 +3068 368 0.400000 +3068 406 0.400000 +3068 421 0.400000 +3068 461 0.400000 +3068 723 0.400000 +3068 740 0.400000 +3068 781 0.400000 +3069 13 0.400000 +3069 46 0.400000 +3069 65 0.400000 +3069 103 0.400000 +3069 111 0.400000 +3069 206 0.400000 +3069 256 0.400000 +3069 260 0.400000 +3069 285 0.400000 +3069 287 0.400000 +3069 368 0.400000 +3069 411 0.400000 +3069 414 0.400000 +3069 457 0.400000 +3069 461 0.400000 +3069 480 0.400000 +3069 482 0.400000 +3069 484 0.400000 +3069 501 0.400000 +3069 505 0.400000 +3069 538 0.400000 +3069 567 0.400000 +3069 668 0.400000 +3069 674 0.400000 +3069 689 0.400000 +3069 718 0.400000 +3069 720 0.400000 +3069 763 0.400000 +3069 764 0.400000 +3069 768 0.400000 +3069 780 0.400000 +3070 13 0.400000 +3070 128 0.400000 +3070 159 0.400000 +3070 252 0.400000 +3070 256 0.400000 +3070 328 0.400000 +3070 484 0.400000 +3070 504 0.400000 +3070 515 0.400000 +3070 528 0.400000 +3070 570 0.400000 +3070 645 0.400000 +3070 795 0.400000 +3071 20 0.400000 +3071 62 0.400000 +3071 118 0.400000 +3071 222 0.400000 +3071 344 0.400000 +3071 371 0.400000 +3071 392 0.400000 +3071 463 0.400000 +3071 466 0.400000 +3071 527 0.400000 +3071 558 0.400000 +3071 567 0.400000 +3071 588 0.400000 +3071 675 0.400000 +3071 800 0.400000 +3072 34 0.400000 +3072 72 0.400000 +3072 180 0.400000 +3072 201 0.400000 +3072 270 0.400000 +3072 288 0.400000 +3072 320 0.400000 +3072 332 0.400000 +3072 343 0.400000 +3072 382 0.400000 +3072 415 0.400000 +3072 427 0.400000 +3072 476 0.400000 +3072 494 0.400000 +3072 543 0.400000 +3072 689 0.400000 +3072 771 0.400000 +3072 795 0.400000 +3073 17 0.400000 +3073 71 0.400000 +3073 79 0.400000 +3073 235 0.400000 +3073 314 0.400000 +3073 333 0.400000 +3073 415 0.400000 +3073 524 0.400000 +3073 682 0.400000 +3073 707 0.400000 +3073 718 0.400000 +3074 34 0.400000 +3074 158 0.400000 +3074 291 0.400000 +3074 302 0.400000 +3074 355 0.400000 +3074 461 0.400000 +3074 487 0.400000 +3074 523 0.400000 +3074 596 0.400000 +3074 621 0.400000 +3074 623 0.400000 +3074 686 0.400000 +3074 690 0.400000 +3074 716 0.400000 +3074 793 0.400000 +3075 39 0.400000 +3075 43 0.400000 +3075 123 0.400000 +3075 165 0.400000 +3075 166 0.400000 +3075 184 0.400000 +3075 215 0.400000 +3075 249 0.400000 +3075 264 0.400000 +3075 281 0.400000 +3075 284 0.400000 +3075 348 0.400000 +3075 393 0.400000 +3075 484 0.400000 +3075 542 0.400000 +3075 578 0.400000 +3075 623 0.400000 +3075 706 0.400000 +3075 721 0.400000 +3075 758 0.400000 +3076 23 0.400000 +3076 67 0.400000 +3076 90 0.400000 +3076 174 0.400000 +3076 245 0.400000 +3076 349 0.400000 +3076 451 0.400000 +3076 463 0.400000 +3076 474 0.400000 +3076 530 0.400000 +3076 531 0.400000 +3076 643 0.400000 +3076 645 0.400000 +3077 167 0.400000 +3077 211 0.400000 +3077 290 0.400000 +3077 376 0.400000 +3077 403 0.400000 +3077 429 0.400000 +3077 444 0.400000 +3077 478 0.400000 +3077 489 0.400000 +3077 595 0.400000 +3077 598 0.400000 +3077 611 0.400000 +3077 750 0.400000 +3078 208 0.400000 +3078 229 0.400000 +3078 244 0.400000 +3078 296 0.400000 +3078 341 0.400000 +3078 392 0.400000 +3078 452 0.400000 +3078 465 0.400000 +3078 471 0.400000 +3078 520 0.400000 +3078 531 0.400000 +3078 652 0.400000 +3078 688 0.400000 +3078 723 0.400000 +3078 760 0.400000 +3078 790 0.400000 +3079 70 0.400000 +3079 82 0.400000 +3079 171 0.400000 +3079 263 0.400000 +3079 339 0.400000 +3079 367 0.400000 +3079 437 0.400000 +3079 459 0.400000 +3079 502 0.400000 +3079 586 0.400000 +3079 718 0.400000 +3079 750 0.400000 +3079 764 0.400000 +3080 11 0.400000 +3080 156 0.400000 +3080 266 0.400000 +3080 397 0.400000 +3080 529 0.400000 +3080 573 0.400000 +3080 592 0.400000 +3080 644 0.400000 +3080 704 0.400000 +3080 751 0.400000 +3081 9 0.400000 +3081 16 0.400000 +3081 34 0.400000 +3081 114 0.400000 +3081 155 0.400000 +3081 301 0.400000 +3081 377 0.400000 +3081 380 0.400000 +3081 392 0.400000 +3081 405 0.400000 +3081 425 0.400000 +3081 476 0.400000 +3081 506 0.400000 +3081 574 0.400000 +3081 586 0.400000 +3081 644 0.400000 +3082 17 0.400000 +3082 135 0.400000 +3082 143 0.400000 +3082 220 0.400000 +3082 223 0.400000 +3082 243 0.400000 +3082 391 0.400000 +3082 484 0.400000 +3082 485 0.400000 +3082 511 0.400000 +3082 577 0.400000 +3082 583 0.400000 +3082 604 0.400000 +3082 643 0.400000 +3082 738 0.400000 +3082 764 0.400000 +3082 770 0.400000 +3082 772 0.400000 +3083 19 0.400000 +3083 21 0.400000 +3083 44 0.400000 +3083 62 0.400000 +3083 115 0.400000 +3083 300 0.400000 +3083 452 0.400000 +3083 468 0.400000 +3083 558 0.400000 +3083 561 0.400000 +3083 564 0.400000 +3083 636 0.400000 +3083 794 0.400000 +3083 795 0.400000 +3084 121 0.400000 +3084 137 0.400000 +3084 316 0.400000 +3084 359 0.400000 +3084 422 0.400000 +3084 544 0.400000 +3084 641 0.400000 +3084 668 0.400000 +3084 694 0.400000 +3084 724 0.400000 +3085 53 0.400000 +3085 117 0.400000 +3085 220 0.400000 +3085 221 0.400000 +3085 270 0.400000 +3085 278 0.400000 +3085 360 0.400000 +3085 373 0.400000 +3085 384 0.400000 +3085 392 0.400000 +3085 415 0.400000 +3085 428 0.400000 +3085 488 0.400000 +3085 578 0.400000 +3085 600 0.400000 +3085 614 0.400000 +3085 781 0.400000 +3086 127 0.400000 +3086 190 0.400000 +3086 196 0.400000 +3086 307 0.400000 +3086 324 0.400000 +3086 461 0.400000 +3086 526 0.400000 +3086 538 0.400000 +3086 560 0.400000 +3086 687 0.400000 +3086 707 0.400000 +3086 717 0.400000 +3086 777 0.400000 +3087 34 0.400000 +3087 44 0.400000 +3087 103 0.400000 +3087 181 0.400000 +3087 188 0.400000 +3087 223 0.400000 +3087 235 0.400000 +3087 247 0.400000 +3087 311 0.400000 +3087 380 0.400000 +3087 439 0.400000 +3087 465 0.400000 +3087 504 0.400000 +3087 521 0.400000 +3087 527 0.400000 +3087 533 0.400000 +3087 538 0.400000 +3087 705 0.400000 +3087 711 0.400000 +3087 713 0.400000 +3087 715 0.400000 +3087 734 0.400000 +3087 754 0.400000 +3088 177 0.400000 +3088 360 0.400000 +3088 384 0.400000 +3088 428 0.400000 +3088 505 0.400000 +3088 527 0.400000 +3088 622 0.400000 +3088 642 0.400000 +3088 646 0.400000 +3088 715 0.400000 +3088 740 0.400000 +3088 774 0.400000 +3089 38 0.400000 +3089 183 0.400000 +3089 193 0.400000 +3089 251 0.400000 +3089 351 0.400000 +3089 387 0.400000 +3089 405 0.400000 +3089 423 0.400000 +3089 440 0.400000 +3089 448 0.400000 +3089 505 0.400000 +3089 610 0.400000 +3089 712 0.400000 +3089 735 0.400000 +3089 786 0.400000 +3090 4 0.400000 +3090 22 0.400000 +3090 42 0.400000 +3090 50 0.400000 +3090 156 0.400000 +3090 246 0.400000 +3090 337 0.400000 +3090 371 0.400000 +3090 376 0.400000 +3090 600 0.400000 +3090 625 0.400000 +3090 630 0.400000 +3090 683 0.400000 +3090 706 0.400000 +3090 729 0.400000 +3091 51 0.400000 +3091 239 0.400000 +3091 377 0.400000 +3091 396 0.400000 +3091 408 0.400000 +3091 531 0.400000 +3091 565 0.400000 +3091 575 0.400000 +3091 679 0.400000 +3092 20 0.400000 +3092 30 0.400000 +3092 163 0.400000 +3092 168 0.400000 +3092 177 0.400000 +3092 221 0.400000 +3092 249 0.400000 +3092 277 0.400000 +3092 396 0.400000 +3092 417 0.400000 +3092 465 0.400000 +3092 469 0.400000 +3092 485 0.400000 +3092 512 0.400000 +3092 517 0.400000 +3092 521 0.400000 +3092 558 0.400000 +3092 574 0.400000 +3092 671 0.400000 +3093 145 0.400000 +3093 188 0.400000 +3093 307 0.400000 +3093 322 0.400000 +3093 364 0.400000 +3093 382 0.400000 +3093 443 0.400000 +3093 665 0.400000 +3093 719 0.400000 +3093 778 0.400000 +3093 783 0.400000 +3094 280 0.400000 +3094 290 0.400000 +3094 412 0.400000 +3094 462 0.400000 +3094 465 0.400000 +3094 479 0.400000 +3094 591 0.400000 +3094 700 0.400000 +3094 737 0.400000 +3094 756 0.400000 +3094 781 0.400000 +3095 172 0.400000 +3095 249 0.400000 +3095 270 0.400000 +3095 282 0.400000 +3095 301 0.400000 +3095 357 0.400000 +3095 371 0.400000 +3095 385 0.400000 +3095 414 0.400000 +3095 416 0.400000 +3095 519 0.400000 +3095 533 0.400000 +3095 595 0.400000 +3095 639 0.400000 +3095 686 0.400000 +3095 730 0.400000 +3096 19 0.400000 +3096 42 0.400000 +3096 46 0.400000 +3096 78 0.400000 +3096 80 0.400000 +3096 252 0.400000 +3096 482 0.400000 +3096 564 0.400000 +3096 615 0.400000 +3096 784 0.400000 +3097 61 0.400000 +3097 88 0.400000 +3097 103 0.400000 +3097 112 0.400000 +3097 152 0.400000 +3097 179 0.400000 +3097 218 0.400000 +3097 311 0.400000 +3097 354 0.400000 +3097 420 0.400000 +3097 429 0.400000 +3097 488 0.400000 +3097 528 0.400000 +3097 536 0.400000 +3097 560 0.400000 +3097 592 0.400000 +3097 599 0.400000 +3097 608 0.400000 +3097 627 0.400000 +3097 631 0.400000 +3097 693 0.400000 +3097 700 0.400000 +3097 768 0.400000 +3098 28 0.400000 +3098 54 0.400000 +3098 78 0.400000 +3098 185 0.400000 +3098 212 0.400000 +3098 285 0.400000 +3098 296 0.400000 +3098 416 0.400000 +3098 456 0.400000 +3098 469 0.400000 +3098 513 0.400000 +3098 569 0.400000 +3098 603 0.400000 +3098 669 0.400000 +3098 762 0.400000 +3099 5 0.400000 +3099 54 0.400000 +3099 114 0.400000 +3099 146 0.400000 +3099 235 0.400000 +3099 251 0.400000 +3099 265 0.400000 +3099 324 0.400000 +3099 325 0.400000 +3099 345 0.400000 +3099 347 0.400000 +3099 444 0.400000 +3099 460 0.400000 +3099 635 0.400000 +3099 747 0.400000 +3100 47 0.400000 +3100 186 0.400000 +3100 326 0.400000 +3100 455 0.400000 +3100 484 0.400000 +3100 692 0.400000 +3100 700 0.400000 +3100 723 0.400000 +3100 766 0.400000 +3101 42 0.400000 +3101 143 0.400000 +3101 153 0.400000 +3101 256 0.400000 +3101 313 0.400000 +3101 387 0.400000 +3101 436 0.400000 +3101 558 0.400000 +3101 723 0.400000 +3101 732 0.400000 +3102 15 0.400000 +3102 19 0.400000 +3102 35 0.400000 +3102 65 0.400000 +3102 137 0.400000 +3102 138 0.400000 +3102 152 0.400000 +3102 260 0.400000 +3102 344 0.400000 +3102 357 0.400000 +3102 416 0.400000 +3102 417 0.400000 +3102 433 0.400000 +3102 468 0.400000 +3102 525 0.400000 +3102 526 0.400000 +3102 701 0.400000 +3102 715 0.400000 +3103 1 0.400000 +3103 37 0.400000 +3103 183 0.400000 +3103 265 0.400000 +3103 296 0.400000 +3103 340 0.400000 +3103 344 0.400000 +3103 372 0.400000 +3103 503 0.400000 +3103 504 0.400000 +3103 554 0.400000 +3103 579 0.400000 +3103 588 0.400000 +3103 612 0.400000 +3103 703 0.400000 +3103 708 0.400000 +3103 723 0.400000 +3103 752 0.400000 +3103 786 0.400000 +3103 793 0.400000 +3104 43 0.400000 +3104 54 0.400000 +3104 62 0.400000 +3104 147 0.400000 +3104 174 0.400000 +3104 201 0.400000 +3104 248 0.400000 +3104 265 0.400000 +3104 287 0.400000 +3104 384 0.400000 +3104 462 0.400000 +3104 478 0.400000 +3104 575 0.400000 +3104 637 0.400000 +3104 769 0.400000 +3104 772 0.400000 +3105 82 0.400000 +3105 86 0.400000 +3105 207 0.400000 +3105 300 0.400000 +3105 332 0.400000 +3105 341 0.400000 +3105 365 0.400000 +3105 398 0.400000 +3105 428 0.400000 +3105 431 0.400000 +3105 531 0.400000 +3105 619 0.400000 +3105 773 0.400000 +3105 777 0.400000 +3106 6 0.400000 +3106 16 0.400000 +3106 26 0.400000 +3106 48 0.400000 +3106 138 0.400000 +3106 160 0.400000 +3106 166 0.400000 +3106 270 0.400000 +3106 334 0.400000 +3106 448 0.400000 +3106 483 0.400000 +3106 524 0.400000 +3106 605 0.400000 +3106 685 0.400000 +3107 93 0.400000 +3107 111 0.400000 +3107 194 0.400000 +3107 244 0.400000 +3107 330 0.400000 +3107 367 0.400000 +3107 385 0.400000 +3107 487 0.400000 +3107 508 0.400000 +3107 544 0.400000 +3107 588 0.400000 +3107 629 0.400000 +3107 765 0.400000 +3107 770 0.400000 +3108 30 0.400000 +3108 69 0.400000 +3108 78 0.400000 +3108 100 0.400000 +3108 171 0.400000 +3108 180 0.400000 +3108 210 0.400000 +3108 227 0.400000 +3108 284 0.400000 +3108 314 0.400000 +3108 340 0.400000 +3108 567 0.400000 +3108 601 0.400000 +3108 610 0.400000 +3108 627 0.400000 +3108 665 0.400000 +3108 667 0.400000 +3108 717 0.400000 +3108 725 0.400000 +3108 744 0.400000 +3108 750 0.400000 +3108 756 0.400000 +3108 795 0.400000 +3109 81 0.400000 +3109 241 0.400000 +3109 270 0.400000 +3109 298 0.400000 +3109 374 0.400000 +3109 512 0.400000 +3109 638 0.400000 +3109 662 0.400000 +3109 753 0.400000 +3109 796 0.400000 +3110 75 0.400000 +3110 97 0.400000 +3110 119 0.400000 +3110 138 0.400000 +3110 305 0.400000 +3110 357 0.400000 +3110 453 0.400000 +3110 475 0.400000 +3110 546 0.400000 +3110 577 0.400000 +3110 748 0.400000 +3110 761 0.400000 +3110 767 0.400000 +3110 771 0.400000 +3111 138 0.400000 +3111 151 0.400000 +3111 200 0.400000 +3111 230 0.400000 +3111 231 0.400000 +3111 339 0.400000 +3111 412 0.400000 +3111 555 0.400000 +3111 594 0.400000 +3111 683 0.400000 +3111 708 0.400000 +3111 709 0.400000 +3111 746 0.400000 +3112 13 0.400000 +3112 78 0.400000 +3112 116 0.400000 +3112 146 0.400000 +3112 172 0.400000 +3112 214 0.400000 +3112 253 0.400000 +3112 282 0.400000 +3112 324 0.400000 +3112 428 0.400000 +3112 431 0.400000 +3112 465 0.400000 +3112 484 0.400000 +3112 527 0.400000 +3112 555 0.400000 +3112 603 0.400000 +3112 640 0.400000 +3112 650 0.400000 +3113 17 0.400000 +3113 56 0.400000 +3113 86 0.400000 +3113 150 0.400000 +3113 151 0.400000 +3113 258 0.400000 +3113 300 0.400000 +3113 343 0.400000 +3113 366 0.400000 +3113 454 0.400000 +3113 481 0.400000 +3113 503 0.400000 +3113 526 0.400000 +3113 558 0.400000 +3113 566 0.400000 +3113 631 0.400000 +3113 686 0.400000 +3113 691 0.400000 +3114 42 0.400000 +3114 48 0.400000 +3114 71 0.400000 +3114 85 0.400000 +3114 154 0.400000 +3114 180 0.400000 +3114 327 0.400000 +3114 336 0.400000 +3114 344 0.400000 +3114 349 0.400000 +3114 555 0.400000 +3114 651 0.400000 +3115 44 0.400000 +3115 154 0.400000 +3115 171 0.400000 +3115 248 0.400000 +3115 380 0.400000 +3115 455 0.400000 +3115 472 0.400000 +3115 477 0.400000 +3115 509 0.400000 +3115 522 0.400000 +3115 525 0.400000 +3115 547 0.400000 +3115 564 0.400000 +3115 581 0.400000 +3115 582 0.400000 +3115 615 0.400000 +3115 629 0.400000 +3115 671 0.400000 +3115 722 0.400000 +3115 743 0.400000 +3115 754 0.400000 +3116 11 0.400000 +3116 28 0.400000 +3116 59 0.400000 +3116 92 0.400000 +3116 138 0.400000 +3116 155 0.400000 +3116 199 0.400000 +3116 224 0.400000 +3116 276 0.400000 +3116 305 0.400000 +3116 310 0.400000 +3116 328 0.400000 +3116 366 0.400000 +3116 389 0.400000 +3116 416 0.400000 +3116 440 0.400000 +3116 443 0.400000 +3116 474 0.400000 +3116 505 0.400000 +3116 554 0.400000 +3116 624 0.400000 +3116 644 0.400000 +3116 693 0.400000 +3116 713 0.400000 +3116 729 0.400000 +3116 792 0.400000 +3117 15 0.400000 +3117 113 0.400000 +3117 147 0.400000 +3117 182 0.400000 +3117 257 0.400000 +3117 312 0.400000 +3117 319 0.400000 +3117 370 0.400000 +3117 444 0.400000 +3117 482 0.400000 +3117 494 0.400000 +3117 631 0.400000 +3117 641 0.400000 +3117 772 0.400000 +3117 793 0.400000 +3118 1 0.400000 +3118 6 0.400000 +3118 7 0.400000 +3118 29 0.400000 +3118 103 0.400000 +3118 105 0.400000 +3118 222 0.400000 +3118 253 0.400000 +3118 289 0.400000 +3118 290 0.400000 +3118 327 0.400000 +3118 329 0.400000 +3118 403 0.400000 +3118 451 0.400000 +3118 501 0.400000 +3118 509 0.400000 +3118 557 0.400000 +3118 562 0.400000 +3118 563 0.400000 +3118 574 0.400000 +3118 577 0.400000 +3118 599 0.400000 +3118 679 0.400000 +3118 699 0.400000 +3118 714 0.400000 +3118 721 0.400000 +3118 749 0.400000 +3118 779 0.400000 +3119 62 0.400000 +3119 101 0.400000 +3119 136 0.400000 +3119 149 0.400000 +3119 179 0.400000 +3119 199 0.400000 +3119 321 0.400000 +3119 382 0.400000 +3119 385 0.400000 +3119 396 0.400000 +3119 408 0.400000 +3119 572 0.400000 +3119 597 0.400000 +3119 675 0.400000 +3119 708 0.400000 +3119 757 0.400000 +3119 772 0.400000 +3119 776 0.400000 +3120 38 0.400000 +3120 78 0.400000 +3120 93 0.400000 +3120 114 0.400000 +3120 156 0.400000 +3120 206 0.400000 +3120 215 0.400000 +3120 341 0.400000 +3120 417 0.400000 +3120 426 0.400000 +3120 487 0.400000 +3120 524 0.400000 +3120 544 0.400000 +3120 567 0.400000 +3120 605 0.400000 +3120 619 0.400000 +3120 747 0.400000 +3120 786 0.400000 +3121 69 0.400000 +3121 74 0.400000 +3121 97 0.400000 +3121 141 0.400000 +3121 214 0.400000 +3121 281 0.400000 +3121 315 0.400000 +3121 357 0.400000 +3121 408 0.400000 +3121 494 0.400000 +3121 515 0.400000 +3121 523 0.400000 +3121 571 0.400000 +3121 630 0.400000 +3121 688 0.400000 +3121 729 0.400000 +3121 742 0.400000 +3121 760 0.400000 +3121 781 0.400000 +3121 800 0.400000 +3122 16 0.400000 +3122 61 0.400000 +3122 69 0.400000 +3122 94 0.400000 +3122 95 0.400000 +3122 156 0.400000 +3122 181 0.400000 +3122 343 0.400000 +3122 352 0.400000 +3122 372 0.400000 +3122 382 0.400000 +3122 404 0.400000 +3122 545 0.400000 +3122 614 0.400000 +3122 619 0.400000 +3122 719 0.400000 +3122 758 0.400000 +3123 4 0.400000 +3123 22 0.400000 +3123 123 0.400000 +3123 145 0.400000 +3123 210 0.400000 +3123 349 0.400000 +3123 430 0.400000 +3123 455 0.400000 +3123 564 0.400000 +3123 568 0.400000 +3123 605 0.400000 +3123 627 0.400000 +3123 648 0.400000 +3123 760 0.400000 +3124 49 0.400000 +3124 70 0.400000 +3124 77 0.400000 +3124 103 0.400000 +3124 119 0.400000 +3124 121 0.400000 +3124 133 0.400000 +3124 142 0.400000 +3124 148 0.400000 +3124 212 0.400000 +3124 309 0.400000 +3124 379 0.400000 +3124 441 0.400000 +3124 558 0.400000 +3124 582 0.400000 +3124 585 0.400000 +3124 616 0.400000 +3124 679 0.400000 +3124 696 0.400000 +3124 777 0.400000 +3124 794 0.400000 +3125 172 0.400000 +3125 183 0.400000 +3125 184 0.400000 +3125 295 0.400000 +3125 339 0.400000 +3125 387 0.400000 +3125 440 0.400000 +3125 507 0.400000 +3125 539 0.400000 +3125 560 0.400000 +3125 642 0.400000 +3126 48 0.400000 +3126 65 0.400000 +3126 130 0.400000 +3126 162 0.400000 +3126 264 0.400000 +3126 266 0.400000 +3126 310 0.400000 +3126 329 0.400000 +3126 419 0.400000 +3126 500 0.400000 +3126 614 0.400000 +3126 620 0.400000 +3126 650 0.400000 +3127 218 0.400000 +3127 233 0.400000 +3127 235 0.400000 +3127 305 0.400000 +3127 331 0.400000 +3127 374 0.400000 +3127 406 0.400000 +3127 463 0.400000 +3127 475 0.400000 +3127 557 0.400000 +3127 570 0.400000 +3127 659 0.400000 +3127 673 0.400000 +3127 697 0.400000 +3127 753 0.400000 +3127 785 0.400000 +3127 798 0.400000 +3128 34 0.400000 +3128 53 0.400000 +3128 92 0.400000 +3128 121 0.400000 +3128 213 0.400000 +3128 295 0.400000 +3128 443 0.400000 +3128 662 0.400000 +3128 753 0.400000 +3128 763 0.400000 +3129 4 0.400000 +3129 30 0.400000 +3129 53 0.400000 +3129 78 0.400000 +3129 90 0.400000 +3129 113 0.400000 +3129 152 0.400000 +3129 282 0.400000 +3129 317 0.400000 +3129 329 0.400000 +3129 401 0.400000 +3129 411 0.400000 +3129 577 0.400000 +3129 605 0.400000 +3129 675 0.400000 +3129 689 0.400000 +3129 694 0.400000 +3129 740 0.400000 +3130 19 0.400000 +3130 35 0.400000 +3130 124 0.400000 +3130 129 0.400000 +3130 139 0.400000 +3130 157 0.400000 +3130 201 0.400000 +3130 221 0.400000 +3130 263 0.400000 +3130 440 0.400000 +3130 576 0.400000 +3130 609 0.400000 +3130 662 0.400000 +3130 702 0.400000 +3130 706 0.400000 +3131 37 0.400000 +3131 113 0.400000 +3131 119 0.400000 +3131 122 0.400000 +3131 143 0.400000 +3131 145 0.400000 +3131 162 0.400000 +3131 178 0.400000 +3131 229 0.400000 +3131 324 0.400000 +3131 325 0.400000 +3131 370 0.400000 +3131 408 0.400000 +3131 434 0.400000 +3131 472 0.400000 +3131 492 0.400000 +3131 501 0.400000 +3131 516 0.400000 +3131 548 0.400000 +3131 573 0.400000 +3131 613 0.400000 +3131 687 0.400000 +3131 722 0.400000 +3131 774 0.400000 +3132 13 0.400000 +3132 17 0.400000 +3132 64 0.400000 +3132 66 0.400000 +3132 82 0.400000 +3132 91 0.400000 +3132 98 0.400000 +3132 102 0.400000 +3132 114 0.400000 +3132 158 0.400000 +3132 229 0.400000 +3132 334 0.400000 +3132 340 0.400000 +3132 351 0.400000 +3132 380 0.400000 +3132 384 0.400000 +3132 443 0.400000 +3132 460 0.400000 +3132 519 0.400000 +3132 564 0.400000 +3132 586 0.400000 +3132 591 0.400000 +3132 620 0.400000 +3132 634 0.400000 +3132 646 0.400000 +3132 716 0.400000 +3132 725 0.400000 +3132 779 0.400000 +3132 786 0.400000 +3133 13 0.400000 +3133 90 0.400000 +3133 149 0.400000 +3133 171 0.400000 +3133 198 0.400000 +3133 244 0.400000 +3133 246 0.400000 +3133 252 0.400000 +3133 278 0.400000 +3133 387 0.400000 +3133 389 0.400000 +3133 413 0.400000 +3133 657 0.400000 +3133 703 0.400000 +3133 759 0.400000 +3134 120 0.400000 +3134 174 0.400000 +3134 202 0.400000 +3134 308 0.400000 +3134 357 0.400000 +3134 379 0.400000 +3134 413 0.400000 +3134 415 0.400000 +3134 498 0.400000 +3134 575 0.400000 +3134 619 0.400000 +3134 635 0.400000 +3134 661 0.400000 +3134 737 0.400000 +3135 23 0.400000 +3135 26 0.400000 +3135 36 0.400000 +3135 121 0.400000 +3135 122 0.400000 +3135 129 0.400000 +3135 241 0.400000 +3135 315 0.400000 +3135 316 0.400000 +3135 384 0.400000 +3135 389 0.400000 +3135 411 0.400000 +3135 421 0.400000 +3135 472 0.400000 +3135 496 0.400000 +3135 502 0.400000 +3135 511 0.400000 +3135 536 0.400000 +3135 601 0.400000 +3135 608 0.400000 +3135 645 0.400000 +3135 788 0.400000 +3136 29 0.400000 +3136 66 0.400000 +3136 201 0.400000 +3136 211 0.400000 +3136 252 0.400000 +3136 320 0.400000 +3136 402 0.400000 +3136 503 0.400000 +3136 509 0.400000 +3136 538 0.400000 +3136 552 0.400000 +3136 625 0.400000 +3136 633 0.400000 +3136 709 0.400000 +3137 152 0.400000 +3137 283 0.400000 +3137 508 0.400000 +3137 530 0.400000 +3137 569 0.400000 +3137 577 0.400000 +3137 652 0.400000 +3137 702 0.400000 +3137 790 0.400000 +3138 25 0.400000 +3138 97 0.400000 +3138 132 0.400000 +3138 137 0.400000 +3138 153 0.400000 +3138 192 0.400000 +3138 193 0.400000 +3138 231 0.400000 +3138 312 0.400000 +3138 377 0.400000 +3138 411 0.400000 +3138 543 0.400000 +3138 562 0.400000 +3138 565 0.400000 +3138 582 0.400000 +3138 664 0.400000 +3138 692 0.400000 +3138 698 0.400000 +3138 710 0.400000 +3138 723 0.400000 +3138 776 0.400000 +3139 42 0.400000 +3139 132 0.400000 +3139 176 0.400000 +3139 308 0.400000 +3139 406 0.400000 +3139 431 0.400000 +3139 512 0.400000 +3139 546 0.400000 +3139 570 0.400000 +3139 579 0.400000 +3139 594 0.400000 +3139 617 0.400000 +3139 675 0.400000 +3139 686 0.400000 +3139 690 0.400000 +3139 741 0.400000 +3139 778 0.400000 +3140 61 0.400000 +3140 113 0.400000 +3140 209 0.400000 +3140 216 0.400000 +3140 240 0.400000 +3140 319 0.400000 +3140 488 0.400000 +3140 588 0.400000 +3140 615 0.400000 +3140 681 0.400000 +3140 761 0.400000 +3140 777 0.400000 +3140 799 0.400000 +3141 36 0.400000 +3141 48 0.400000 +3141 188 0.400000 +3141 221 0.400000 +3141 230 0.400000 +3141 274 0.400000 +3141 350 0.400000 +3141 430 0.400000 +3141 481 0.400000 +3141 498 0.400000 +3141 504 0.400000 +3141 594 0.400000 +3141 596 0.400000 +3141 730 0.400000 +3141 738 0.400000 +3141 763 0.400000 +3141 767 0.400000 +3141 768 0.400000 +3141 783 0.400000 +3142 3 0.400000 +3142 26 0.400000 +3142 28 0.400000 +3142 86 0.400000 +3142 91 0.400000 +3142 109 0.400000 +3142 122 0.400000 +3142 143 0.400000 +3142 175 0.400000 +3142 182 0.400000 +3142 433 0.400000 +3142 449 0.400000 +3142 469 0.400000 +3142 567 0.400000 +3142 592 0.400000 +3142 616 0.400000 +3142 619 0.400000 +3142 646 0.400000 +3142 650 0.400000 +3142 753 0.400000 +3143 48 0.400000 +3143 65 0.400000 +3143 161 0.400000 +3143 164 0.400000 +3143 685 0.400000 +3143 702 0.400000 +3143 759 0.400000 +3144 40 0.400000 +3144 80 0.400000 +3144 201 0.400000 +3144 228 0.400000 +3144 238 0.400000 +3144 271 0.400000 +3144 306 0.400000 +3144 401 0.400000 +3144 420 0.400000 +3144 480 0.400000 +3144 481 0.400000 +3144 674 0.400000 +3145 1 0.400000 +3145 17 0.400000 +3145 33 0.400000 +3145 75 0.400000 +3145 192 0.400000 +3145 206 0.400000 +3145 315 0.400000 +3145 342 0.400000 +3145 470 0.400000 +3145 492 0.400000 +3145 599 0.400000 +3145 622 0.400000 +3145 716 0.400000 +3145 745 0.400000 +3146 82 0.400000 +3146 168 0.400000 +3146 188 0.400000 +3146 232 0.400000 +3146 235 0.400000 +3146 239 0.400000 +3146 241 0.400000 +3146 354 0.400000 +3146 421 0.400000 +3146 428 0.400000 +3146 437 0.400000 +3146 546 0.400000 +3146 668 0.400000 +3146 764 0.400000 +3147 70 0.400000 +3147 73 0.400000 +3147 89 0.400000 +3147 128 0.400000 +3147 163 0.400000 +3147 179 0.400000 +3147 232 0.400000 +3147 258 0.400000 +3147 353 0.400000 +3147 388 0.400000 +3147 400 0.400000 +3147 417 0.400000 +3147 457 0.400000 +3147 461 0.400000 +3147 485 0.400000 +3147 537 0.400000 +3147 554 0.400000 +3147 594 0.400000 +3147 665 0.400000 +3147 676 0.400000 +3147 684 0.400000 +3147 689 0.400000 +3147 721 0.400000 +3147 723 0.400000 +3147 738 0.400000 +3147 795 0.400000 +3148 43 0.400000 +3148 49 0.400000 +3148 57 0.400000 +3148 87 0.400000 +3148 183 0.400000 +3148 203 0.400000 +3148 244 0.400000 +3148 291 0.400000 +3148 360 0.400000 +3148 416 0.400000 +3148 576 0.400000 +3148 618 0.400000 +3148 619 0.400000 +3148 633 0.400000 +3148 671 0.400000 +3148 686 0.400000 +3148 713 0.400000 +3148 786 0.400000 +3148 791 0.400000 +3149 3 0.400000 +3149 83 0.400000 +3149 162 0.400000 +3149 171 0.400000 +3149 283 0.400000 +3149 284 0.400000 +3149 469 0.400000 +3149 514 0.400000 +3149 698 0.400000 +3149 798 0.400000 +3150 1 0.400000 +3150 112 0.400000 +3150 132 0.400000 +3150 146 0.400000 +3150 169 0.400000 +3150 170 0.400000 +3150 253 0.400000 +3150 297 0.400000 +3150 371 0.400000 +3150 439 0.400000 +3150 456 0.400000 +3150 461 0.400000 +3150 611 0.400000 +3150 617 0.400000 +3150 693 0.400000 +3151 21 0.400000 +3151 63 0.400000 +3151 125 0.400000 +3151 139 0.400000 +3151 239 0.400000 +3151 286 0.400000 +3151 321 0.400000 +3151 352 0.400000 +3151 360 0.400000 +3151 414 0.400000 +3151 479 0.400000 +3151 485 0.400000 +3151 558 0.400000 +3151 682 0.400000 +3151 687 0.400000 +3151 783 0.400000 +3152 40 0.400000 +3152 47 0.400000 +3152 97 0.400000 +3152 175 0.400000 +3152 189 0.400000 +3152 212 0.400000 +3152 231 0.400000 +3152 242 0.400000 +3152 327 0.400000 +3152 358 0.400000 +3152 456 0.400000 +3152 458 0.400000 +3152 474 0.400000 +3152 484 0.400000 +3152 499 0.400000 +3152 513 0.400000 +3152 564 0.400000 +3152 576 0.400000 +3152 642 0.400000 +3152 648 0.400000 +3152 689 0.400000 +3153 3 0.400000 +3153 47 0.400000 +3153 151 0.400000 +3153 222 0.400000 +3153 257 0.400000 +3153 291 0.400000 +3153 322 0.400000 +3153 410 0.400000 +3153 420 0.400000 +3153 436 0.400000 +3153 476 0.400000 +3153 563 0.400000 +3153 642 0.400000 +3153 678 0.400000 +3153 731 0.400000 +3154 32 0.400000 +3154 68 0.400000 +3154 103 0.400000 +3154 178 0.400000 +3154 196 0.400000 +3154 217 0.400000 +3154 285 0.400000 +3154 291 0.400000 +3154 303 0.400000 +3154 312 0.400000 +3154 402 0.400000 +3154 489 0.400000 +3154 498 0.400000 +3154 529 0.400000 +3154 561 0.400000 +3154 688 0.400000 +3154 721 0.400000 +3154 729 0.400000 +3154 733 0.400000 +3155 16 0.400000 +3155 77 0.400000 +3155 109 0.400000 +3155 141 0.400000 +3155 147 0.400000 +3155 304 0.400000 +3155 347 0.400000 +3155 403 0.400000 +3155 421 0.400000 +3155 448 0.400000 +3155 531 0.400000 +3155 545 0.400000 +3155 556 0.400000 +3155 577 0.400000 +3155 605 0.400000 +3155 625 0.400000 +3155 660 0.400000 +3155 714 0.400000 +3155 715 0.400000 +3155 755 0.400000 +3155 757 0.400000 +3156 23 0.400000 +3156 51 0.400000 +3156 108 0.400000 +3156 136 0.400000 +3156 214 0.400000 +3156 226 0.400000 +3156 243 0.400000 +3156 256 0.400000 +3156 310 0.400000 +3156 340 0.400000 +3156 390 0.400000 +3156 432 0.400000 +3156 436 0.400000 +3156 444 0.400000 +3156 496 0.400000 +3156 497 0.400000 +3156 637 0.400000 +3156 717 0.400000 +3156 721 0.400000 +3156 726 0.400000 +3157 29 0.400000 +3157 167 0.400000 +3157 224 0.400000 +3157 250 0.400000 +3157 318 0.400000 +3157 418 0.400000 +3157 509 0.400000 +3157 518 0.400000 +3157 546 0.400000 +3157 758 0.400000 +3158 4 0.400000 +3158 13 0.400000 +3158 38 0.400000 +3158 85 0.400000 +3158 109 0.400000 +3158 127 0.400000 +3158 223 0.400000 +3158 228 0.400000 +3158 280 0.400000 +3158 314 0.400000 +3158 342 0.400000 +3158 434 0.400000 +3158 457 0.400000 +3158 516 0.400000 +3158 588 0.400000 +3158 635 0.400000 +3158 649 0.400000 +3158 727 0.400000 +3159 11 0.400000 +3159 17 0.400000 +3159 19 0.400000 +3159 60 0.400000 +3159 84 0.400000 +3159 110 0.400000 +3159 124 0.400000 +3159 257 0.400000 +3159 280 0.400000 +3159 293 0.400000 +3159 345 0.400000 +3159 368 0.400000 +3159 469 0.400000 +3159 789 0.400000 +3160 9 0.400000 +3160 17 0.400000 +3160 185 0.400000 +3160 224 0.400000 +3160 249 0.400000 +3160 282 0.400000 +3160 333 0.400000 +3160 346 0.400000 +3160 358 0.400000 +3160 371 0.400000 +3160 425 0.400000 +3160 456 0.400000 +3160 524 0.400000 +3160 585 0.400000 +3160 644 0.400000 +3160 660 0.400000 +3161 23 0.400000 +3161 43 0.400000 +3161 196 0.400000 +3161 291 0.400000 +3161 358 0.400000 +3161 430 0.400000 +3161 449 0.400000 +3161 477 0.400000 +3161 505 0.400000 +3161 558 0.400000 +3161 644 0.400000 +3161 712 0.400000 +3161 731 0.400000 +3161 755 0.400000 +3162 20 0.400000 +3162 148 0.400000 +3162 203 0.400000 +3162 283 0.400000 +3162 346 0.400000 +3162 371 0.400000 +3162 554 0.400000 +3162 603 0.400000 +3162 674 0.400000 +3162 707 0.400000 +3162 750 0.400000 +3163 5 0.400000 +3163 137 0.400000 +3163 232 0.400000 +3163 424 0.400000 +3163 432 0.400000 +3163 478 0.400000 +3163 491 0.400000 +3163 493 0.400000 +3163 598 0.400000 +3163 643 0.400000 +3163 731 0.400000 +3163 763 0.400000 +3164 95 0.400000 +3164 108 0.400000 +3164 129 0.400000 +3164 188 0.400000 +3164 253 0.400000 +3164 278 0.400000 +3164 296 0.400000 +3164 323 0.400000 +3164 400 0.400000 +3164 435 0.400000 +3164 527 0.400000 +3164 550 0.400000 +3164 595 0.400000 +3164 650 0.400000 +3164 668 0.400000 +3164 685 0.400000 +3164 732 0.400000 +3164 736 0.400000 +3165 5 0.400000 +3165 43 0.400000 +3165 145 0.400000 +3165 181 0.400000 +3165 215 0.400000 +3165 272 0.400000 +3165 334 0.400000 +3165 382 0.400000 +3165 399 0.400000 +3165 438 0.400000 +3165 461 0.400000 +3165 496 0.400000 +3165 566 0.400000 +3165 707 0.400000 +3165 754 0.400000 +3165 767 0.400000 +3166 119 0.400000 +3166 133 0.400000 +3166 198 0.400000 +3166 241 0.400000 +3166 257 0.400000 +3166 370 0.400000 +3166 416 0.400000 +3166 439 0.400000 +3166 501 0.400000 +3166 530 0.400000 +3166 616 0.400000 +3166 624 0.400000 +3166 681 0.400000 +3166 702 0.400000 +3166 715 0.400000 +3166 729 0.400000 +3167 90 0.400000 +3167 92 0.400000 +3167 113 0.400000 +3167 138 0.400000 +3167 145 0.400000 +3167 173 0.400000 +3167 232 0.400000 +3167 236 0.400000 +3167 280 0.400000 +3167 392 0.400000 +3167 409 0.400000 +3167 432 0.400000 +3167 444 0.400000 +3167 459 0.400000 +3167 462 0.400000 +3167 545 0.400000 +3167 606 0.400000 +3167 611 0.400000 +3167 670 0.400000 +3167 690 0.400000 +3167 695 0.400000 +3168 26 0.400000 +3168 39 0.400000 +3168 133 0.400000 +3168 136 0.400000 +3168 185 0.400000 +3168 315 0.400000 +3168 388 0.400000 +3168 471 0.400000 +3168 477 0.400000 +3168 559 0.400000 +3168 655 0.400000 +3168 677 0.400000 +3168 710 0.400000 +3168 720 0.400000 +3168 736 0.400000 +3168 751 0.400000 +3168 792 0.400000 +3168 793 0.400000 +3169 57 0.400000 +3169 100 0.400000 +3169 132 0.400000 +3169 185 0.400000 +3169 215 0.400000 +3169 323 0.400000 +3169 432 0.400000 +3169 599 0.400000 +3169 696 0.400000 +3169 717 0.400000 +3169 721 0.400000 +3169 732 0.400000 +3169 753 0.400000 +3169 759 0.400000 +3170 7 0.400000 +3170 99 0.400000 +3170 129 0.400000 +3170 173 0.400000 +3170 207 0.400000 +3170 266 0.400000 +3170 395 0.400000 +3170 510 0.400000 +3170 544 0.400000 +3170 560 0.400000 +3171 38 0.400000 +3171 47 0.400000 +3171 169 0.400000 +3171 177 0.400000 +3171 203 0.400000 +3171 204 0.400000 +3171 229 0.400000 +3171 240 0.400000 +3171 299 0.400000 +3171 308 0.400000 +3171 361 0.400000 +3171 372 0.400000 +3171 380 0.400000 +3171 414 0.400000 +3171 510 0.400000 +3171 524 0.400000 +3171 540 0.400000 +3171 559 0.400000 +3171 607 0.400000 +3171 617 0.400000 +3171 678 0.400000 +3171 725 0.400000 +3171 742 0.400000 +3172 53 0.400000 +3172 94 0.400000 +3172 117 0.400000 +3172 124 0.400000 +3172 224 0.400000 +3172 302 0.400000 +3172 310 0.400000 +3172 328 0.400000 +3172 410 0.400000 +3172 436 0.400000 +3172 463 0.400000 +3172 496 0.400000 +3172 508 0.400000 +3172 628 0.400000 +3172 633 0.400000 +3172 645 0.400000 +3172 708 0.400000 +3173 113 0.400000 +3173 202 0.400000 +3173 214 0.400000 +3173 216 0.400000 +3173 285 0.400000 +3173 373 0.400000 +3173 390 0.400000 +3173 430 0.400000 +3173 498 0.400000 +3173 579 0.400000 +3173 679 0.400000 +3173 725 0.400000 +3173 749 0.400000 +3173 750 0.400000 +3173 792 0.400000 +3174 13 0.400000 +3174 68 0.400000 +3174 79 0.400000 +3174 93 0.400000 +3174 174 0.400000 +3174 309 0.400000 +3174 332 0.400000 +3174 335 0.400000 +3174 409 0.400000 +3174 462 0.400000 +3174 520 0.400000 +3174 521 0.400000 +3174 528 0.400000 +3174 541 0.400000 +3174 544 0.400000 +3174 572 0.400000 +3174 594 0.400000 +3174 613 0.400000 +3174 690 0.400000 +3174 731 0.400000 +3174 745 0.400000 +3174 794 0.400000 +3175 13 0.400000 +3175 169 0.400000 +3175 324 0.400000 +3175 355 0.400000 +3175 369 0.400000 +3175 380 0.400000 +3175 477 0.400000 +3175 575 0.400000 +3175 648 0.400000 +3175 653 0.400000 +3175 678 0.400000 +3175 760 0.400000 +3175 781 0.400000 +3176 18 0.400000 +3176 29 0.400000 +3176 36 0.400000 +3176 38 0.400000 +3176 102 0.400000 +3176 162 0.400000 +3176 271 0.400000 +3176 275 0.400000 +3176 300 0.400000 +3176 328 0.400000 +3176 373 0.400000 +3176 396 0.400000 +3176 398 0.400000 +3176 429 0.400000 +3176 447 0.400000 +3176 498 0.400000 +3176 549 0.400000 +3176 658 0.400000 +3176 661 0.400000 +3176 664 0.400000 +3177 5 0.400000 +3177 14 0.400000 +3177 18 0.400000 +3177 102 0.400000 +3177 119 0.400000 +3177 184 0.400000 +3177 186 0.400000 +3177 394 0.400000 +3177 479 0.400000 +3177 583 0.400000 +3177 600 0.400000 +3177 602 0.400000 +3177 611 0.400000 +3177 613 0.400000 +3177 646 0.400000 +3177 701 0.400000 +3177 739 0.400000 +3178 2 0.400000 +3178 61 0.400000 +3178 65 0.400000 +3178 76 0.400000 +3178 105 0.400000 +3178 209 0.400000 +3178 218 0.400000 +3178 267 0.400000 +3178 319 0.400000 +3178 376 0.400000 +3178 380 0.400000 +3178 402 0.400000 +3178 435 0.400000 +3178 465 0.400000 +3178 469 0.400000 +3178 497 0.400000 +3178 551 0.400000 +3178 665 0.400000 +3178 681 0.400000 +3179 25 0.400000 +3179 27 0.400000 +3179 54 0.400000 +3179 60 0.400000 +3179 102 0.400000 +3179 353 0.400000 +3179 492 0.400000 +3179 493 0.400000 +3179 548 0.400000 +3179 763 0.400000 +3180 14 0.400000 +3180 21 0.400000 +3180 141 0.400000 +3180 166 0.400000 +3180 187 0.400000 +3180 211 0.400000 +3180 231 0.400000 +3180 328 0.400000 +3180 408 0.400000 +3180 437 0.400000 +3180 439 0.400000 +3180 646 0.400000 +3180 716 0.400000 +3180 739 0.400000 +3180 750 0.400000 +3181 20 0.400000 +3181 24 0.400000 +3181 26 0.400000 +3181 69 0.400000 +3181 125 0.400000 +3181 194 0.400000 +3181 341 0.400000 +3181 362 0.400000 +3181 381 0.400000 +3181 419 0.400000 +3181 444 0.400000 +3181 478 0.400000 +3181 499 0.400000 +3181 640 0.400000 +3181 666 0.400000 +3181 734 0.400000 +3181 749 0.400000 +3182 75 0.400000 +3182 81 0.400000 +3182 196 0.400000 +3182 221 0.400000 +3182 324 0.400000 +3182 444 0.400000 +3182 460 0.400000 +3182 563 0.400000 +3182 574 0.400000 +3182 589 0.400000 +3182 667 0.400000 +3182 676 0.400000 +3182 725 0.400000 +3182 786 0.400000 +3183 8 0.400000 +3183 105 0.400000 +3183 146 0.400000 +3183 227 0.400000 +3183 258 0.400000 +3183 456 0.400000 +3183 496 0.400000 +3183 515 0.400000 +3183 607 0.400000 +3183 749 0.400000 +3183 779 0.400000 +3184 5 0.400000 +3184 14 0.400000 +3184 18 0.400000 +3184 76 0.400000 +3184 179 0.400000 +3184 301 0.400000 +3184 443 0.400000 +3184 477 0.400000 +3184 499 0.400000 +3184 513 0.400000 +3184 538 0.400000 +3184 542 0.400000 +3184 651 0.400000 +3184 658 0.400000 +3184 664 0.400000 +3185 121 0.400000 +3185 133 0.400000 +3185 142 0.400000 +3185 147 0.400000 +3185 331 0.400000 +3185 356 0.400000 +3185 438 0.400000 +3185 443 0.400000 +3185 547 0.400000 +3185 555 0.400000 +3185 582 0.400000 +3185 666 0.400000 +3185 689 0.400000 +3186 27 0.400000 +3186 223 0.400000 +3186 346 0.400000 +3186 403 0.400000 +3186 418 0.400000 +3186 422 0.400000 +3186 522 0.400000 +3186 540 0.400000 +3186 553 0.400000 +3186 605 0.400000 +3186 649 0.400000 +3186 673 0.400000 +3186 775 0.400000 +3187 35 0.400000 +3187 316 0.400000 +3187 369 0.400000 +3187 407 0.400000 +3187 501 0.400000 +3187 507 0.400000 +3187 564 0.400000 +3187 619 0.400000 +3187 662 0.400000 +3187 742 0.400000 +3188 19 0.400000 +3188 55 0.400000 +3188 104 0.400000 +3188 137 0.400000 +3188 140 0.400000 +3188 163 0.400000 +3188 176 0.400000 +3188 199 0.400000 +3188 288 0.400000 +3188 297 0.400000 +3188 309 0.400000 +3188 387 0.400000 +3188 412 0.400000 +3188 425 0.400000 +3188 501 0.400000 +3188 513 0.400000 +3188 521 0.400000 +3188 566 0.400000 +3188 581 0.400000 +3188 636 0.400000 +3188 638 0.400000 +3188 649 0.400000 +3188 688 0.400000 +3188 692 0.400000 +3188 697 0.400000 +3188 722 0.400000 +3189 21 0.400000 +3189 352 0.400000 +3189 372 0.400000 +3189 517 0.400000 +3189 518 0.400000 +3189 550 0.400000 +3189 595 0.400000 +3189 728 0.400000 +3189 737 0.400000 +3189 745 0.400000 +3189 756 0.400000 +3189 764 0.400000 +3190 95 0.400000 +3190 100 0.400000 +3190 146 0.400000 +3190 155 0.400000 +3190 201 0.400000 +3190 212 0.400000 +3190 216 0.400000 +3190 264 0.400000 +3190 296 0.400000 +3190 368 0.400000 +3190 433 0.400000 +3190 461 0.400000 +3190 489 0.400000 +3190 572 0.400000 +3190 624 0.400000 +3190 654 0.400000 +3190 725 0.400000 +3190 750 0.400000 +3191 87 0.400000 +3191 222 0.400000 +3191 259 0.400000 +3191 323 0.400000 +3191 410 0.400000 +3191 615 0.400000 +3191 639 0.400000 +3191 662 0.400000 +3191 758 0.400000 +3191 790 0.400000 +3192 21 0.400000 +3192 31 0.400000 +3192 68 0.400000 +3192 113 0.400000 +3192 158 0.400000 +3192 191 0.400000 +3192 210 0.400000 +3192 258 0.400000 +3192 306 0.400000 +3192 312 0.400000 +3192 314 0.400000 +3192 355 0.400000 +3192 492 0.400000 +3192 551 0.400000 +3192 607 0.400000 +3192 718 0.400000 +3192 786 0.400000 +3192 796 0.400000 +3193 47 0.400000 +3193 107 0.400000 +3193 225 0.400000 +3193 232 0.400000 +3193 315 0.400000 +3193 325 0.400000 +3193 336 0.400000 +3193 395 0.400000 +3193 563 0.400000 +3193 635 0.400000 +3193 699 0.400000 +3193 760 0.400000 +3193 799 0.400000 +3194 27 0.400000 +3194 57 0.400000 +3194 109 0.400000 +3194 158 0.400000 +3194 172 0.400000 +3194 176 0.400000 +3194 195 0.400000 +3194 285 0.400000 +3194 373 0.400000 +3194 424 0.400000 +3194 484 0.400000 +3194 658 0.400000 +3194 682 0.400000 +3194 716 0.400000 +3194 755 0.400000 +3194 782 0.400000 +3195 1 0.400000 +3195 68 0.400000 +3195 81 0.400000 +3195 159 0.400000 +3195 166 0.400000 +3195 284 0.400000 +3195 315 0.400000 +3195 350 0.400000 +3195 374 0.400000 +3195 405 0.400000 +3195 426 0.400000 +3195 462 0.400000 +3195 506 0.400000 +3195 509 0.400000 +3195 582 0.400000 +3195 619 0.400000 +3195 667 0.400000 +3195 681 0.400000 +3195 741 0.400000 +3195 781 0.400000 +3195 786 0.400000 +3196 100 0.400000 +3196 164 0.400000 +3196 180 0.400000 +3196 242 0.400000 +3196 452 0.400000 +3196 575 0.400000 +3196 650 0.400000 +3196 738 0.400000 +3196 770 0.400000 +3197 48 0.400000 +3197 115 0.400000 +3197 190 0.400000 +3197 213 0.400000 +3197 231 0.400000 +3197 317 0.400000 +3197 373 0.400000 +3197 400 0.400000 +3197 416 0.400000 +3197 442 0.400000 +3197 493 0.400000 +3197 586 0.400000 +3197 615 0.400000 +3197 665 0.400000 +3197 799 0.400000 +3198 111 0.400000 +3198 163 0.400000 +3198 197 0.400000 +3198 207 0.400000 +3198 234 0.400000 +3198 384 0.400000 +3198 430 0.400000 +3198 475 0.400000 +3198 478 0.400000 +3198 547 0.400000 +3198 720 0.400000 +3198 741 0.400000 +3198 751 0.400000 +3198 774 0.400000 +3199 52 0.400000 +3199 60 0.400000 +3199 134 0.400000 +3199 253 0.400000 +3199 258 0.400000 +3199 288 0.400000 +3199 430 0.400000 +3199 446 0.400000 +3199 563 0.400000 +3199 564 0.400000 +3199 627 0.400000 +3199 631 0.400000 +3199 644 0.400000 +3200 22 0.400000 +3200 131 0.400000 +3200 190 0.400000 +3200 200 0.400000 +3200 222 0.400000 +3200 241 0.400000 +3200 258 0.400000 +3200 279 0.400000 +3200 334 0.400000 +3200 416 0.400000 +3200 439 0.400000 +3200 610 0.400000 +3200 612 0.400000 +3200 627 0.400000 +3200 632 0.400000 +3200 710 0.400000 +3200 734 0.400000 +3200 765 0.400000 diff --git a/tests/coba_test/pynn.ie.wmat b/tests/coba_test/pynn.ie.wmat new file mode 100644 index 00000000..74295b50 --- /dev/null +++ b/tests/coba_test/pynn.ie.wmat @@ -0,0 +1,51126 @@ +%%MatrixMarket matrix coordinate real general +% Auryn weight matrix. Has to be kept in row major order for load operation. +% Connection name: SparseConnection +% Locked range: 1 +% +800 3200 51126 +1 10 5.100000 +1 12 5.100000 +1 40 5.100000 +1 88 5.100000 +1 119 5.100000 +1 122 5.100000 +1 170 5.100000 +1 235 5.100000 +1 335 5.100000 +1 400 5.100000 +1 429 5.100000 +1 452 5.100000 +1 502 5.100000 +1 517 5.100000 +1 520 5.100000 +1 540 5.100000 +1 573 5.100000 +1 580 5.100000 +1 750 5.100000 +1 830 5.100000 +1 893 5.100000 +1 972 5.100000 +1 1114 5.100000 +1 1145 5.100000 +1 1450 5.100000 +1 1507 5.100000 +1 1516 5.100000 +1 1539 5.100000 +1 1631 5.100000 +1 1726 5.100000 +1 1792 5.100000 +1 1833 5.100000 +1 1844 5.100000 +1 1884 5.100000 +1 1946 5.100000 +1 2005 5.100000 +1 2036 5.100000 +1 2053 5.100000 +1 2289 5.100000 +1 2313 5.100000 +1 2324 5.100000 +1 2402 5.100000 +1 2412 5.100000 +1 2427 5.100000 +1 2440 5.100000 +1 2565 5.100000 +1 2618 5.100000 +1 2757 5.100000 +1 2779 5.100000 +1 2867 5.100000 +1 2938 5.100000 +1 2979 5.100000 +1 2992 5.100000 +1 2999 5.100000 +1 3127 5.100000 +1 3164 5.100000 +1 3172 5.100000 +2 84 5.100000 +2 122 5.100000 +2 129 5.100000 +2 198 5.100000 +2 200 5.100000 +2 203 5.100000 +2 208 5.100000 +2 235 5.100000 +2 272 5.100000 +2 323 5.100000 +2 354 5.100000 +2 373 5.100000 +2 393 5.100000 +2 407 5.100000 +2 427 5.100000 +2 517 5.100000 +2 560 5.100000 +2 749 5.100000 +2 765 5.100000 +2 796 5.100000 +2 878 5.100000 +2 885 5.100000 +2 1108 5.100000 +2 1141 5.100000 +2 1152 5.100000 +2 1327 5.100000 +2 1349 5.100000 +2 1402 5.100000 +2 1419 5.100000 +2 1452 5.100000 +2 1474 5.100000 +2 1493 5.100000 +2 1664 5.100000 +2 1796 5.100000 +2 1835 5.100000 +2 1862 5.100000 +2 2008 5.100000 +2 2068 5.100000 +2 2080 5.100000 +2 2100 5.100000 +2 2154 5.100000 +2 2167 5.100000 +2 2199 5.100000 +2 2347 5.100000 +2 2392 5.100000 +2 2395 5.100000 +2 2435 5.100000 +2 2448 5.100000 +2 2490 5.100000 +2 2568 5.100000 +2 2629 5.100000 +2 2642 5.100000 +2 2668 5.100000 +2 2680 5.100000 +2 2771 5.100000 +2 2791 5.100000 +2 2859 5.100000 +2 2867 5.100000 +2 2901 5.100000 +2 2952 5.100000 +2 3061 5.100000 +2 3124 5.100000 +2 3125 5.100000 +2 3169 5.100000 +3 28 5.100000 +3 30 5.100000 +3 142 5.100000 +3 177 5.100000 +3 247 5.100000 +3 439 5.100000 +3 449 5.100000 +3 526 5.100000 +3 556 5.100000 +3 588 5.100000 +3 632 5.100000 +3 670 5.100000 +3 750 5.100000 +3 752 5.100000 +3 775 5.100000 +3 985 5.100000 +3 986 5.100000 +3 1000 5.100000 +3 1099 5.100000 +3 1110 5.100000 +3 1127 5.100000 +3 1147 5.100000 +3 1185 5.100000 +3 1214 5.100000 +3 1227 5.100000 +3 1245 5.100000 +3 1278 5.100000 +3 1339 5.100000 +3 1353 5.100000 +3 1391 5.100000 +3 1409 5.100000 +3 1494 5.100000 +3 1620 5.100000 +3 1672 5.100000 +3 1686 5.100000 +3 1688 5.100000 +3 1750 5.100000 +3 1751 5.100000 +3 1765 5.100000 +3 1802 5.100000 +3 1862 5.100000 +3 2028 5.100000 +3 2083 5.100000 +3 2124 5.100000 +3 2151 5.100000 +3 2194 5.100000 +3 2289 5.100000 +3 2303 5.100000 +3 2328 5.100000 +3 2410 5.100000 +3 2444 5.100000 +3 2521 5.100000 +3 2538 5.100000 +3 2543 5.100000 +3 2768 5.100000 +3 2779 5.100000 +3 2798 5.100000 +3 2874 5.100000 +3 2934 5.100000 +3 2980 5.100000 +3 3042 5.100000 +3 3147 5.100000 +3 3158 5.100000 +3 3185 5.100000 +3 3192 5.100000 +4 14 5.100000 +4 39 5.100000 +4 124 5.100000 +4 187 5.100000 +4 191 5.100000 +4 268 5.100000 +4 301 5.100000 +4 352 5.100000 +4 450 5.100000 +4 494 5.100000 +4 506 5.100000 +4 524 5.100000 +4 553 5.100000 +4 614 5.100000 +4 644 5.100000 +4 681 5.100000 +4 762 5.100000 +4 818 5.100000 +4 844 5.100000 +4 859 5.100000 +4 870 5.100000 +4 882 5.100000 +4 909 5.100000 +4 948 5.100000 +4 954 5.100000 +4 1003 5.100000 +4 1031 5.100000 +4 1035 5.100000 +4 1054 5.100000 +4 1055 5.100000 +4 1079 5.100000 +4 1085 5.100000 +4 1176 5.100000 +4 1251 5.100000 +4 1283 5.100000 +4 1294 5.100000 +4 1305 5.100000 +4 1321 5.100000 +4 1337 5.100000 +4 1357 5.100000 +4 1487 5.100000 +4 1497 5.100000 +4 1541 5.100000 +4 1642 5.100000 +4 1676 5.100000 +4 1716 5.100000 +4 1791 5.100000 +4 1815 5.100000 +4 1837 5.100000 +4 1857 5.100000 +4 2028 5.100000 +4 2111 5.100000 +4 2133 5.100000 +4 2232 5.100000 +4 2307 5.100000 +4 2328 5.100000 +4 2364 5.100000 +4 2518 5.100000 +4 2559 5.100000 +4 2615 5.100000 +4 2647 5.100000 +4 2652 5.100000 +4 2673 5.100000 +4 2735 5.100000 +4 2742 5.100000 +4 2797 5.100000 +4 2806 5.100000 +4 2849 5.100000 +4 2888 5.100000 +4 2894 5.100000 +4 2918 5.100000 +4 2955 5.100000 +4 2972 5.100000 +4 3001 5.100000 +4 3011 5.100000 +4 3040 5.100000 +4 3065 5.100000 +4 3101 5.100000 +4 3142 5.100000 +4 3149 5.100000 +4 3192 5.100000 +5 10 5.100000 +5 173 5.100000 +5 180 5.100000 +5 208 5.100000 +5 335 5.100000 +5 373 5.100000 +5 451 5.100000 +5 489 5.100000 +5 554 5.100000 +5 617 5.100000 +5 633 5.100000 +5 727 5.100000 +5 730 5.100000 +5 838 5.100000 +5 861 5.100000 +5 887 5.100000 +5 942 5.100000 +5 1109 5.100000 +5 1151 5.100000 +5 1289 5.100000 +5 1307 5.100000 +5 1357 5.100000 +5 1414 5.100000 +5 1417 5.100000 +5 1460 5.100000 +5 1528 5.100000 +5 1540 5.100000 +5 1541 5.100000 +5 1565 5.100000 +5 1596 5.100000 +5 1623 5.100000 +5 1657 5.100000 +5 1670 5.100000 +5 1827 5.100000 +5 1828 5.100000 +5 1844 5.100000 +5 1892 5.100000 +5 1995 5.100000 +5 2007 5.100000 +5 2050 5.100000 +5 2095 5.100000 +5 2143 5.100000 +5 2145 5.100000 +5 2152 5.100000 +5 2201 5.100000 +5 2240 5.100000 +5 2272 5.100000 +5 2302 5.100000 +5 2352 5.100000 +5 2405 5.100000 +5 2420 5.100000 +5 2541 5.100000 +5 2725 5.100000 +5 2805 5.100000 +5 2923 5.100000 +5 2972 5.100000 +5 2979 5.100000 +5 2988 5.100000 +5 3189 5.100000 +6 2 5.100000 +6 10 5.100000 +6 16 5.100000 +6 39 5.100000 +6 58 5.100000 +6 133 5.100000 +6 165 5.100000 +6 195 5.100000 +6 196 5.100000 +6 210 5.100000 +6 252 5.100000 +6 268 5.100000 +6 275 5.100000 +6 405 5.100000 +6 449 5.100000 +6 538 5.100000 +6 648 5.100000 +6 728 5.100000 +6 767 5.100000 +6 786 5.100000 +6 828 5.100000 +6 893 5.100000 +6 911 5.100000 +6 958 5.100000 +6 1047 5.100000 +6 1067 5.100000 +6 1073 5.100000 +6 1082 5.100000 +6 1116 5.100000 +6 1167 5.100000 +6 1245 5.100000 +6 1272 5.100000 +6 1276 5.100000 +6 1344 5.100000 +6 1370 5.100000 +6 1468 5.100000 +6 1618 5.100000 +6 1670 5.100000 +6 1699 5.100000 +6 1806 5.100000 +6 1807 5.100000 +6 1809 5.100000 +6 1827 5.100000 +6 1910 5.100000 +6 2008 5.100000 +6 2065 5.100000 +6 2136 5.100000 +6 2161 5.100000 +6 2185 5.100000 +6 2316 5.100000 +6 2358 5.100000 +6 2428 5.100000 +6 2449 5.100000 +6 2463 5.100000 +6 2620 5.100000 +6 2643 5.100000 +6 2670 5.100000 +6 2678 5.100000 +6 2724 5.100000 +6 2820 5.100000 +6 2835 5.100000 +6 2886 5.100000 +6 2900 5.100000 +6 2916 5.100000 +6 2973 5.100000 +6 2978 5.100000 +6 3060 5.100000 +6 3080 5.100000 +6 3091 5.100000 +6 3111 5.100000 +6 3120 5.100000 +6 3142 5.100000 +6 3148 5.100000 +6 3164 5.100000 +7 80 5.100000 +7 113 5.100000 +7 158 5.100000 +7 189 5.100000 +7 314 5.100000 +7 378 5.100000 +7 405 5.100000 +7 421 5.100000 +7 424 5.100000 +7 446 5.100000 +7 653 5.100000 +7 656 5.100000 +7 665 5.100000 +7 821 5.100000 +7 856 5.100000 +7 913 5.100000 +7 962 5.100000 +7 970 5.100000 +7 980 5.100000 +7 1042 5.100000 +7 1220 5.100000 +7 1237 5.100000 +7 1504 5.100000 +7 1576 5.100000 +7 1610 5.100000 +7 1686 5.100000 +7 1696 5.100000 +7 1756 5.100000 +7 1772 5.100000 +7 1777 5.100000 +7 1780 5.100000 +7 1782 5.100000 +7 1912 5.100000 +7 1915 5.100000 +7 1918 5.100000 +7 2078 5.100000 +7 2082 5.100000 +7 2110 5.100000 +7 2161 5.100000 +7 2207 5.100000 +7 2249 5.100000 +7 2404 5.100000 +7 2407 5.100000 +7 2420 5.100000 +7 2492 5.100000 +7 2544 5.100000 +7 2580 5.100000 +7 2597 5.100000 +7 2600 5.100000 +7 2618 5.100000 +7 2663 5.100000 +7 2750 5.100000 +7 2754 5.100000 +7 2782 5.100000 +7 2813 5.100000 +7 2817 5.100000 +7 2879 5.100000 +7 2889 5.100000 +7 2954 5.100000 +7 3021 5.100000 +7 3064 5.100000 +7 3181 5.100000 +8 5 5.100000 +8 51 5.100000 +8 83 5.100000 +8 150 5.100000 +8 185 5.100000 +8 266 5.100000 +8 290 5.100000 +8 380 5.100000 +8 390 5.100000 +8 454 5.100000 +8 482 5.100000 +8 521 5.100000 +8 554 5.100000 +8 601 5.100000 +8 645 5.100000 +8 647 5.100000 +8 669 5.100000 +8 766 5.100000 +8 804 5.100000 +8 822 5.100000 +8 855 5.100000 +8 857 5.100000 +8 952 5.100000 +8 1005 5.100000 +8 1022 5.100000 +8 1083 5.100000 +8 1120 5.100000 +8 1125 5.100000 +8 1136 5.100000 +8 1219 5.100000 +8 1220 5.100000 +8 1293 5.100000 +8 1591 5.100000 +8 1595 5.100000 +8 1711 5.100000 +8 1718 5.100000 +8 1788 5.100000 +8 1875 5.100000 +8 1885 5.100000 +8 1899 5.100000 +8 2007 5.100000 +8 2015 5.100000 +8 2093 5.100000 +8 2225 5.100000 +8 2297 5.100000 +8 2350 5.100000 +8 2440 5.100000 +8 2509 5.100000 +8 2642 5.100000 +8 2651 5.100000 +8 2684 5.100000 +8 2787 5.100000 +8 2788 5.100000 +8 3032 5.100000 +8 3053 5.100000 +8 3116 5.100000 +8 3121 5.100000 +9 17 5.100000 +9 41 5.100000 +9 43 5.100000 +9 84 5.100000 +9 167 5.100000 +9 200 5.100000 +9 208 5.100000 +9 394 5.100000 +9 550 5.100000 +9 611 5.100000 +9 734 5.100000 +9 754 5.100000 +9 762 5.100000 +9 808 5.100000 +9 875 5.100000 +9 879 5.100000 +9 895 5.100000 +9 926 5.100000 +9 964 5.100000 +9 967 5.100000 +9 985 5.100000 +9 1023 5.100000 +9 1039 5.100000 +9 1111 5.100000 +9 1140 5.100000 +9 1190 5.100000 +9 1205 5.100000 +9 1404 5.100000 +9 1474 5.100000 +9 1477 5.100000 +9 1778 5.100000 +9 1789 5.100000 +9 1858 5.100000 +9 1876 5.100000 +9 1882 5.100000 +9 1887 5.100000 +9 1926 5.100000 +9 1958 5.100000 +9 1997 5.100000 +9 2036 5.100000 +9 2178 5.100000 +9 2180 5.100000 +9 2195 5.100000 +9 2210 5.100000 +9 2292 5.100000 +9 2309 5.100000 +9 2311 5.100000 +9 2439 5.100000 +9 2441 5.100000 +9 2453 5.100000 +9 2636 5.100000 +9 2695 5.100000 +9 2721 5.100000 +9 2878 5.100000 +9 2883 5.100000 +9 2948 5.100000 +9 3084 5.100000 +9 3097 5.100000 +9 3098 5.100000 +9 3127 5.100000 +10 15 5.100000 +10 28 5.100000 +10 59 5.100000 +10 127 5.100000 +10 160 5.100000 +10 223 5.100000 +10 282 5.100000 +10 327 5.100000 +10 353 5.100000 +10 537 5.100000 +10 546 5.100000 +10 559 5.100000 +10 675 5.100000 +10 707 5.100000 +10 712 5.100000 +10 737 5.100000 +10 785 5.100000 +10 802 5.100000 +10 830 5.100000 +10 869 5.100000 +10 899 5.100000 +10 927 5.100000 +10 949 5.100000 +10 966 5.100000 +10 1031 5.100000 +10 1212 5.100000 +10 1261 5.100000 +10 1281 5.100000 +10 1327 5.100000 +10 1380 5.100000 +10 1394 5.100000 +10 1472 5.100000 +10 1500 5.100000 +10 1534 5.100000 +10 1543 5.100000 +10 1575 5.100000 +10 1579 5.100000 +10 1801 5.100000 +10 1809 5.100000 +10 1833 5.100000 +10 1844 5.100000 +10 1890 5.100000 +10 1936 5.100000 +10 1937 5.100000 +10 1972 5.100000 +10 1978 5.100000 +10 1979 5.100000 +10 2037 5.100000 +10 2103 5.100000 +10 2124 5.100000 +10 2137 5.100000 +10 2169 5.100000 +10 2172 5.100000 +10 2182 5.100000 +10 2201 5.100000 +10 2222 5.100000 +10 2254 5.100000 +10 2317 5.100000 +10 2331 5.100000 +10 2402 5.100000 +10 2514 5.100000 +10 2628 5.100000 +10 2741 5.100000 +10 2744 5.100000 +10 2807 5.100000 +10 2825 5.100000 +10 2995 5.100000 +10 3005 5.100000 +10 3014 5.100000 +10 3047 5.100000 +10 3051 5.100000 +10 3112 5.100000 +10 3126 5.100000 +10 3134 5.100000 +10 3186 5.100000 +10 3190 5.100000 +11 1 5.100000 +11 14 5.100000 +11 63 5.100000 +11 87 5.100000 +11 140 5.100000 +11 208 5.100000 +11 241 5.100000 +11 309 5.100000 +11 328 5.100000 +11 346 5.100000 +11 349 5.100000 +11 361 5.100000 +11 388 5.100000 +11 458 5.100000 +11 459 5.100000 +11 480 5.100000 +11 488 5.100000 +11 642 5.100000 +11 688 5.100000 +11 754 5.100000 +11 814 5.100000 +11 831 5.100000 +11 926 5.100000 +11 949 5.100000 +11 990 5.100000 +11 1113 5.100000 +11 1150 5.100000 +11 1168 5.100000 +11 1192 5.100000 +11 1198 5.100000 +11 1251 5.100000 +11 1255 5.100000 +11 1308 5.100000 +11 1352 5.100000 +11 1513 5.100000 +11 1547 5.100000 +11 1571 5.100000 +11 1849 5.100000 +11 1903 5.100000 +11 1904 5.100000 +11 1979 5.100000 +11 2005 5.100000 +11 2031 5.100000 +11 2261 5.100000 +11 2285 5.100000 +11 2349 5.100000 +11 2367 5.100000 +11 2391 5.100000 +11 2491 5.100000 +11 2502 5.100000 +11 2555 5.100000 +11 2563 5.100000 +11 2567 5.100000 +11 2575 5.100000 +11 2619 5.100000 +11 2654 5.100000 +11 2759 5.100000 +11 2808 5.100000 +11 2900 5.100000 +11 2908 5.100000 +11 2929 5.100000 +11 2981 5.100000 +11 3017 5.100000 +11 3050 5.100000 +11 3051 5.100000 +11 3084 5.100000 +11 3118 5.100000 +12 63 5.100000 +12 77 5.100000 +12 243 5.100000 +12 295 5.100000 +12 427 5.100000 +12 455 5.100000 +12 566 5.100000 +12 603 5.100000 +12 699 5.100000 +12 749 5.100000 +12 780 5.100000 +12 807 5.100000 +12 873 5.100000 +12 912 5.100000 +12 966 5.100000 +12 1048 5.100000 +12 1187 5.100000 +12 1221 5.100000 +12 1349 5.100000 +12 1350 5.100000 +12 1352 5.100000 +12 1393 5.100000 +12 1490 5.100000 +12 1503 5.100000 +12 1555 5.100000 +12 1677 5.100000 +12 1691 5.100000 +12 1717 5.100000 +12 1757 5.100000 +12 1763 5.100000 +12 1838 5.100000 +12 1850 5.100000 +12 1851 5.100000 +12 1902 5.100000 +12 1935 5.100000 +12 1937 5.100000 +12 2003 5.100000 +12 2080 5.100000 +12 2096 5.100000 +12 2097 5.100000 +12 2140 5.100000 +12 2151 5.100000 +12 2177 5.100000 +12 2186 5.100000 +12 2237 5.100000 +12 2298 5.100000 +12 2339 5.100000 +12 2356 5.100000 +12 2408 5.100000 +12 2488 5.100000 +12 2567 5.100000 +12 2589 5.100000 +12 2621 5.100000 +12 2741 5.100000 +12 2742 5.100000 +12 2745 5.100000 +12 2823 5.100000 +12 3109 5.100000 +12 3138 5.100000 +13 113 5.100000 +13 156 5.100000 +13 160 5.100000 +13 377 5.100000 +13 396 5.100000 +13 418 5.100000 +13 457 5.100000 +13 463 5.100000 +13 574 5.100000 +13 601 5.100000 +13 670 5.100000 +13 682 5.100000 +13 696 5.100000 +13 714 5.100000 +13 811 5.100000 +13 864 5.100000 +13 867 5.100000 +13 1076 5.100000 +13 1143 5.100000 +13 1166 5.100000 +13 1194 5.100000 +13 1226 5.100000 +13 1323 5.100000 +13 1420 5.100000 +13 1486 5.100000 +13 1507 5.100000 +13 1538 5.100000 +13 1633 5.100000 +13 1693 5.100000 +13 1714 5.100000 +13 1732 5.100000 +13 1771 5.100000 +13 1856 5.100000 +13 1947 5.100000 +13 1968 5.100000 +13 1991 5.100000 +13 2015 5.100000 +13 2262 5.100000 +13 2287 5.100000 +13 2292 5.100000 +13 2319 5.100000 +13 2370 5.100000 +13 2394 5.100000 +13 2567 5.100000 +13 2655 5.100000 +13 2810 5.100000 +13 2831 5.100000 +13 2892 5.100000 +13 2914 5.100000 +13 2920 5.100000 +13 2932 5.100000 +13 3001 5.100000 +13 3050 5.100000 +13 3092 5.100000 +13 3122 5.100000 +13 3129 5.100000 +13 3144 5.100000 +14 14 5.100000 +14 40 5.100000 +14 44 5.100000 +14 51 5.100000 +14 87 5.100000 +14 192 5.100000 +14 292 5.100000 +14 403 5.100000 +14 428 5.100000 +14 485 5.100000 +14 665 5.100000 +14 709 5.100000 +14 759 5.100000 +14 813 5.100000 +14 822 5.100000 +14 846 5.100000 +14 931 5.100000 +14 1086 5.100000 +14 1105 5.100000 +14 1167 5.100000 +14 1172 5.100000 +14 1191 5.100000 +14 1248 5.100000 +14 1503 5.100000 +14 1516 5.100000 +14 1565 5.100000 +14 1567 5.100000 +14 1668 5.100000 +14 1683 5.100000 +14 1754 5.100000 +14 1798 5.100000 +14 1864 5.100000 +14 1889 5.100000 +14 1920 5.100000 +14 1922 5.100000 +14 1927 5.100000 +14 1966 5.100000 +14 1992 5.100000 +14 2103 5.100000 +14 2232 5.100000 +14 2271 5.100000 +14 2312 5.100000 +14 2378 5.100000 +14 2399 5.100000 +14 2440 5.100000 +14 2441 5.100000 +14 2496 5.100000 +14 2533 5.100000 +14 2563 5.100000 +14 2590 5.100000 +14 2599 5.100000 +14 2739 5.100000 +14 2854 5.100000 +14 3147 5.100000 +14 3187 5.100000 +15 20 5.100000 +15 25 5.100000 +15 154 5.100000 +15 271 5.100000 +15 328 5.100000 +15 337 5.100000 +15 535 5.100000 +15 569 5.100000 +15 731 5.100000 +15 740 5.100000 +15 748 5.100000 +15 819 5.100000 +15 828 5.100000 +15 863 5.100000 +15 873 5.100000 +15 1021 5.100000 +15 1032 5.100000 +15 1033 5.100000 +15 1076 5.100000 +15 1114 5.100000 +15 1200 5.100000 +15 1255 5.100000 +15 1259 5.100000 +15 1267 5.100000 +15 1269 5.100000 +15 1444 5.100000 +15 1460 5.100000 +15 1491 5.100000 +15 1503 5.100000 +15 1562 5.100000 +15 1564 5.100000 +15 1733 5.100000 +15 1740 5.100000 +15 1745 5.100000 +15 1776 5.100000 +15 1833 5.100000 +15 1876 5.100000 +15 1883 5.100000 +15 1914 5.100000 +15 1985 5.100000 +15 2012 5.100000 +15 2043 5.100000 +15 2059 5.100000 +15 2061 5.100000 +15 2099 5.100000 +15 2109 5.100000 +15 2163 5.100000 +15 2165 5.100000 +15 2172 5.100000 +15 2210 5.100000 +15 2243 5.100000 +15 2246 5.100000 +15 2260 5.100000 +15 2276 5.100000 +15 2294 5.100000 +15 2432 5.100000 +15 2493 5.100000 +15 2672 5.100000 +15 2674 5.100000 +15 2732 5.100000 +15 2740 5.100000 +15 2759 5.100000 +15 2803 5.100000 +15 2895 5.100000 +15 2922 5.100000 +15 2944 5.100000 +15 2954 5.100000 +15 2964 5.100000 +15 3078 5.100000 +15 3170 5.100000 +15 3173 5.100000 +16 55 5.100000 +16 59 5.100000 +16 113 5.100000 +16 120 5.100000 +16 268 5.100000 +16 269 5.100000 +16 290 5.100000 +16 468 5.100000 +16 476 5.100000 +16 632 5.100000 +16 828 5.100000 +16 834 5.100000 +16 961 5.100000 +16 969 5.100000 +16 1011 5.100000 +16 1089 5.100000 +16 1149 5.100000 +16 1264 5.100000 +16 1423 5.100000 +16 1452 5.100000 +16 1479 5.100000 +16 1578 5.100000 +16 1657 5.100000 +16 1694 5.100000 +16 1739 5.100000 +16 1785 5.100000 +16 1886 5.100000 +16 1905 5.100000 +16 1908 5.100000 +16 1923 5.100000 +16 2188 5.100000 +16 2320 5.100000 +16 2337 5.100000 +16 2373 5.100000 +16 2379 5.100000 +16 2386 5.100000 +16 2462 5.100000 +16 2477 5.100000 +16 2520 5.100000 +16 2540 5.100000 +16 2594 5.100000 +16 2618 5.100000 +16 2705 5.100000 +16 3021 5.100000 +16 3084 5.100000 +16 3173 5.100000 +17 48 5.100000 +17 99 5.100000 +17 116 5.100000 +17 170 5.100000 +17 246 5.100000 +17 418 5.100000 +17 478 5.100000 +17 516 5.100000 +17 543 5.100000 +17 553 5.100000 +17 571 5.100000 +17 615 5.100000 +17 652 5.100000 +17 669 5.100000 +17 681 5.100000 +17 711 5.100000 +17 729 5.100000 +17 772 5.100000 +17 823 5.100000 +17 933 5.100000 +17 947 5.100000 +17 952 5.100000 +17 969 5.100000 +17 1087 5.100000 +17 1152 5.100000 +17 1279 5.100000 +17 1294 5.100000 +17 1325 5.100000 +17 1333 5.100000 +17 1346 5.100000 +17 1386 5.100000 +17 1407 5.100000 +17 1431 5.100000 +17 1485 5.100000 +17 1493 5.100000 +17 1565 5.100000 +17 1706 5.100000 +17 1772 5.100000 +17 1782 5.100000 +17 1835 5.100000 +17 1837 5.100000 +17 1894 5.100000 +17 1919 5.100000 +17 2035 5.100000 +17 2050 5.100000 +17 2095 5.100000 +17 2130 5.100000 +17 2169 5.100000 +17 2223 5.100000 +17 2237 5.100000 +17 2488 5.100000 +17 2537 5.100000 +17 2641 5.100000 +17 2657 5.100000 +17 2830 5.100000 +17 2867 5.100000 +17 2879 5.100000 +17 2901 5.100000 +17 2930 5.100000 +17 2988 5.100000 +17 3002 5.100000 +17 3042 5.100000 +18 9 5.100000 +18 39 5.100000 +18 99 5.100000 +18 106 5.100000 +18 186 5.100000 +18 210 5.100000 +18 217 5.100000 +18 292 5.100000 +18 327 5.100000 +18 329 5.100000 +18 342 5.100000 +18 440 5.100000 +18 462 5.100000 +18 537 5.100000 +18 548 5.100000 +18 555 5.100000 +18 568 5.100000 +18 785 5.100000 +18 814 5.100000 +18 872 5.100000 +18 873 5.100000 +18 890 5.100000 +18 902 5.100000 +18 931 5.100000 +18 975 5.100000 +18 1021 5.100000 +18 1080 5.100000 +18 1117 5.100000 +18 1153 5.100000 +18 1170 5.100000 +18 1191 5.100000 +18 1337 5.100000 +18 1368 5.100000 +18 1383 5.100000 +18 1412 5.100000 +18 1427 5.100000 +18 1455 5.100000 +18 1463 5.100000 +18 1565 5.100000 +18 1580 5.100000 +18 1592 5.100000 +18 1615 5.100000 +18 1645 5.100000 +18 1762 5.100000 +18 1763 5.100000 +18 1797 5.100000 +18 1870 5.100000 +18 1883 5.100000 +18 1902 5.100000 +18 1933 5.100000 +18 1945 5.100000 +18 1948 5.100000 +18 1965 5.100000 +18 1971 5.100000 +18 2000 5.100000 +18 2099 5.100000 +18 2166 5.100000 +18 2255 5.100000 +18 2285 5.100000 +18 2489 5.100000 +18 2510 5.100000 +18 2568 5.100000 +18 2584 5.100000 +18 2620 5.100000 +18 2653 5.100000 +18 2689 5.100000 +18 2723 5.100000 +18 2736 5.100000 +18 2742 5.100000 +18 2815 5.100000 +18 2825 5.100000 +18 2852 5.100000 +18 2873 5.100000 +18 2880 5.100000 +18 2970 5.100000 +18 3007 5.100000 +18 3065 5.100000 +18 3098 5.100000 +18 3168 5.100000 +18 3188 5.100000 +19 26 5.100000 +19 45 5.100000 +19 135 5.100000 +19 208 5.100000 +19 237 5.100000 +19 241 5.100000 +19 293 5.100000 +19 414 5.100000 +19 430 5.100000 +19 485 5.100000 +19 534 5.100000 +19 600 5.100000 +19 626 5.100000 +19 628 5.100000 +19 634 5.100000 +19 636 5.100000 +19 642 5.100000 +19 666 5.100000 +19 678 5.100000 +19 750 5.100000 +19 826 5.100000 +19 835 5.100000 +19 875 5.100000 +19 880 5.100000 +19 907 5.100000 +19 917 5.100000 +19 924 5.100000 +19 976 5.100000 +19 983 5.100000 +19 985 5.100000 +19 1005 5.100000 +19 1047 5.100000 +19 1053 5.100000 +19 1107 5.100000 +19 1138 5.100000 +19 1176 5.100000 +19 1180 5.100000 +19 1217 5.100000 +19 1219 5.100000 +19 1253 5.100000 +19 1266 5.100000 +19 1309 5.100000 +19 1328 5.100000 +19 1377 5.100000 +19 1401 5.100000 +19 1467 5.100000 +19 1550 5.100000 +19 1552 5.100000 +19 1637 5.100000 +19 1701 5.100000 +19 1711 5.100000 +19 1791 5.100000 +19 1828 5.100000 +19 1829 5.100000 +19 1911 5.100000 +19 1987 5.100000 +19 2000 5.100000 +19 2014 5.100000 +19 2018 5.100000 +19 2041 5.100000 +19 2055 5.100000 +19 2100 5.100000 +19 2160 5.100000 +19 2235 5.100000 +19 2320 5.100000 +19 2375 5.100000 +19 2386 5.100000 +19 2413 5.100000 +19 2428 5.100000 +19 2431 5.100000 +19 2474 5.100000 +19 2519 5.100000 +19 2555 5.100000 +19 2568 5.100000 +19 2615 5.100000 +19 2619 5.100000 +19 2689 5.100000 +19 2721 5.100000 +19 2776 5.100000 +19 2816 5.100000 +19 2851 5.100000 +19 2873 5.100000 +19 2928 5.100000 +20 14 5.100000 +20 42 5.100000 +20 65 5.100000 +20 123 5.100000 +20 158 5.100000 +20 322 5.100000 +20 403 5.100000 +20 457 5.100000 +20 505 5.100000 +20 546 5.100000 +20 566 5.100000 +20 578 5.100000 +20 645 5.100000 +20 707 5.100000 +20 723 5.100000 +20 725 5.100000 +20 763 5.100000 +20 813 5.100000 +20 892 5.100000 +20 896 5.100000 +20 914 5.100000 +20 1021 5.100000 +20 1048 5.100000 +20 1059 5.100000 +20 1134 5.100000 +20 1218 5.100000 +20 1324 5.100000 +20 1357 5.100000 +20 1374 5.100000 +20 1375 5.100000 +20 1398 5.100000 +20 1452 5.100000 +20 1482 5.100000 +20 1584 5.100000 +20 1630 5.100000 +20 1688 5.100000 +20 1705 5.100000 +20 1709 5.100000 +20 1791 5.100000 +20 1794 5.100000 +20 1808 5.100000 +20 1817 5.100000 +20 1827 5.100000 +20 1878 5.100000 +20 2023 5.100000 +20 2024 5.100000 +20 2160 5.100000 +20 2249 5.100000 +20 2340 5.100000 +20 2384 5.100000 +20 2439 5.100000 +20 2477 5.100000 +20 2483 5.100000 +20 2485 5.100000 +20 2518 5.100000 +20 2577 5.100000 +20 2647 5.100000 +20 2667 5.100000 +20 2691 5.100000 +20 2843 5.100000 +20 2851 5.100000 +20 2921 5.100000 +20 3023 5.100000 +20 3099 5.100000 +20 3146 5.100000 +20 3181 5.100000 +20 3194 5.100000 +20 3200 5.100000 +21 39 5.100000 +21 71 5.100000 +21 136 5.100000 +21 220 5.100000 +21 241 5.100000 +21 282 5.100000 +21 374 5.100000 +21 537 5.100000 +21 545 5.100000 +21 552 5.100000 +21 613 5.100000 +21 843 5.100000 +21 878 5.100000 +21 936 5.100000 +21 942 5.100000 +21 958 5.100000 +21 969 5.100000 +21 1003 5.100000 +21 1015 5.100000 +21 1142 5.100000 +21 1241 5.100000 +21 1301 5.100000 +21 1378 5.100000 +21 1422 5.100000 +21 1464 5.100000 +21 1504 5.100000 +21 1555 5.100000 +21 1718 5.100000 +21 1744 5.100000 +21 1853 5.100000 +21 2013 5.100000 +21 2038 5.100000 +21 2066 5.100000 +21 2079 5.100000 +21 2107 5.100000 +21 2114 5.100000 +21 2146 5.100000 +21 2199 5.100000 +21 2250 5.100000 +21 2422 5.100000 +21 2499 5.100000 +21 2510 5.100000 +21 2518 5.100000 +21 2585 5.100000 +21 2596 5.100000 +21 2701 5.100000 +21 2712 5.100000 +21 2753 5.100000 +21 2816 5.100000 +21 2845 5.100000 +21 2913 5.100000 +21 2919 5.100000 +21 2968 5.100000 +21 2992 5.100000 +21 2993 5.100000 +21 3024 5.100000 +21 3090 5.100000 +21 3092 5.100000 +22 11 5.100000 +22 353 5.100000 +22 356 5.100000 +22 524 5.100000 +22 580 5.100000 +22 629 5.100000 +22 645 5.100000 +22 715 5.100000 +22 734 5.100000 +22 735 5.100000 +22 883 5.100000 +22 915 5.100000 +22 1041 5.100000 +22 1071 5.100000 +22 1146 5.100000 +22 1179 5.100000 +22 1199 5.100000 +22 1235 5.100000 +22 1243 5.100000 +22 1280 5.100000 +22 1302 5.100000 +22 1393 5.100000 +22 1453 5.100000 +22 1456 5.100000 +22 1470 5.100000 +22 1504 5.100000 +22 1623 5.100000 +22 1658 5.100000 +22 1708 5.100000 +22 1817 5.100000 +22 1877 5.100000 +22 1900 5.100000 +22 1919 5.100000 +22 2042 5.100000 +22 2079 5.100000 +22 2098 5.100000 +22 2160 5.100000 +22 2164 5.100000 +22 2198 5.100000 +22 2200 5.100000 +22 2257 5.100000 +22 2283 5.100000 +22 2364 5.100000 +22 2401 5.100000 +22 2503 5.100000 +22 2710 5.100000 +22 2729 5.100000 +22 2835 5.100000 +22 2878 5.100000 +22 2900 5.100000 +22 2929 5.100000 +22 2957 5.100000 +22 2959 5.100000 +22 2965 5.100000 +22 3058 5.100000 +22 3063 5.100000 +22 3188 5.100000 +23 20 5.100000 +23 21 5.100000 +23 94 5.100000 +23 120 5.100000 +23 143 5.100000 +23 183 5.100000 +23 273 5.100000 +23 359 5.100000 +23 384 5.100000 +23 386 5.100000 +23 470 5.100000 +23 522 5.100000 +23 577 5.100000 +23 592 5.100000 +23 603 5.100000 +23 616 5.100000 +23 666 5.100000 +23 672 5.100000 +23 879 5.100000 +23 979 5.100000 +23 983 5.100000 +23 1030 5.100000 +23 1043 5.100000 +23 1076 5.100000 +23 1077 5.100000 +23 1130 5.100000 +23 1157 5.100000 +23 1174 5.100000 +23 1287 5.100000 +23 1337 5.100000 +23 1354 5.100000 +23 1408 5.100000 +23 1463 5.100000 +23 1471 5.100000 +23 1499 5.100000 +23 1520 5.100000 +23 1573 5.100000 +23 1607 5.100000 +23 1645 5.100000 +23 1675 5.100000 +23 1684 5.100000 +23 1687 5.100000 +23 1695 5.100000 +23 1701 5.100000 +23 1741 5.100000 +23 1767 5.100000 +23 1801 5.100000 +23 1804 5.100000 +23 1817 5.100000 +23 1982 5.100000 +23 2005 5.100000 +23 2058 5.100000 +23 2086 5.100000 +23 2087 5.100000 +23 2126 5.100000 +23 2140 5.100000 +23 2189 5.100000 +23 2228 5.100000 +23 2229 5.100000 +23 2306 5.100000 +23 2317 5.100000 +23 2330 5.100000 +23 2390 5.100000 +23 2428 5.100000 +23 2474 5.100000 +23 2537 5.100000 +23 2539 5.100000 +23 2548 5.100000 +23 2552 5.100000 +23 2563 5.100000 +23 2566 5.100000 +23 2662 5.100000 +23 2681 5.100000 +23 2755 5.100000 +23 2777 5.100000 +23 2846 5.100000 +23 2865 5.100000 +23 2898 5.100000 +23 2970 5.100000 +23 3182 5.100000 +23 3197 5.100000 +24 112 5.100000 +24 126 5.100000 +24 148 5.100000 +24 172 5.100000 +24 203 5.100000 +24 210 5.100000 +24 308 5.100000 +24 356 5.100000 +24 370 5.100000 +24 565 5.100000 +24 577 5.100000 +24 663 5.100000 +24 665 5.100000 +24 744 5.100000 +24 768 5.100000 +24 772 5.100000 +24 822 5.100000 +24 904 5.100000 +24 929 5.100000 +24 952 5.100000 +24 1041 5.100000 +24 1166 5.100000 +24 1181 5.100000 +24 1207 5.100000 +24 1237 5.100000 +24 1423 5.100000 +24 1494 5.100000 +24 1570 5.100000 +24 1638 5.100000 +24 1764 5.100000 +24 1803 5.100000 +24 1926 5.100000 +24 1930 5.100000 +24 1945 5.100000 +24 1984 5.100000 +24 1994 5.100000 +24 2004 5.100000 +24 2115 5.100000 +24 2147 5.100000 +24 2191 5.100000 +24 2210 5.100000 +24 2296 5.100000 +24 2299 5.100000 +24 2340 5.100000 +24 2353 5.100000 +24 2392 5.100000 +24 2691 5.100000 +24 2725 5.100000 +24 2795 5.100000 +24 2909 5.100000 +24 2917 5.100000 +24 2941 5.100000 +24 2955 5.100000 +24 2985 5.100000 +24 3038 5.100000 +24 3080 5.100000 +24 3101 5.100000 +24 3146 5.100000 +24 3168 5.100000 +24 3171 5.100000 +25 20 5.100000 +25 35 5.100000 +25 99 5.100000 +25 125 5.100000 +25 147 5.100000 +25 223 5.100000 +25 226 5.100000 +25 243 5.100000 +25 399 5.100000 +25 502 5.100000 +25 518 5.100000 +25 593 5.100000 +25 619 5.100000 +25 631 5.100000 +25 634 5.100000 +25 665 5.100000 +25 738 5.100000 +25 751 5.100000 +25 811 5.100000 +25 864 5.100000 +25 870 5.100000 +25 889 5.100000 +25 907 5.100000 +25 927 5.100000 +25 1010 5.100000 +25 1064 5.100000 +25 1099 5.100000 +25 1186 5.100000 +25 1237 5.100000 +25 1240 5.100000 +25 1242 5.100000 +25 1274 5.100000 +25 1305 5.100000 +25 1396 5.100000 +25 1420 5.100000 +25 1441 5.100000 +25 1550 5.100000 +25 1606 5.100000 +25 1625 5.100000 +25 1717 5.100000 +25 1854 5.100000 +25 1870 5.100000 +25 1919 5.100000 +25 2163 5.100000 +25 2312 5.100000 +25 2335 5.100000 +25 2363 5.100000 +25 2497 5.100000 +25 2541 5.100000 +25 2608 5.100000 +25 2700 5.100000 +25 2778 5.100000 +25 2803 5.100000 +25 2986 5.100000 +25 2988 5.100000 +26 7 5.100000 +26 11 5.100000 +26 68 5.100000 +26 77 5.100000 +26 83 5.100000 +26 259 5.100000 +26 303 5.100000 +26 379 5.100000 +26 380 5.100000 +26 487 5.100000 +26 515 5.100000 +26 556 5.100000 +26 678 5.100000 +26 686 5.100000 +26 697 5.100000 +26 712 5.100000 +26 720 5.100000 +26 772 5.100000 +26 782 5.100000 +26 828 5.100000 +26 833 5.100000 +26 951 5.100000 +26 976 5.100000 +26 1187 5.100000 +26 1190 5.100000 +26 1216 5.100000 +26 1334 5.100000 +26 1357 5.100000 +26 1361 5.100000 +26 1376 5.100000 +26 1378 5.100000 +26 1380 5.100000 +26 1447 5.100000 +26 1523 5.100000 +26 1573 5.100000 +26 1579 5.100000 +26 1612 5.100000 +26 1647 5.100000 +26 1685 5.100000 +26 1743 5.100000 +26 1781 5.100000 +26 1951 5.100000 +26 2173 5.100000 +26 2284 5.100000 +26 2304 5.100000 +26 2332 5.100000 +26 2354 5.100000 +26 2423 5.100000 +26 2586 5.100000 +26 2612 5.100000 +26 2653 5.100000 +26 2697 5.100000 +26 2793 5.100000 +26 2979 5.100000 +26 3007 5.100000 +26 3064 5.100000 +26 3065 5.100000 +26 3072 5.100000 +26 3155 5.100000 +26 3175 5.100000 +27 73 5.100000 +27 95 5.100000 +27 278 5.100000 +27 315 5.100000 +27 383 5.100000 +27 395 5.100000 +27 409 5.100000 +27 446 5.100000 +27 457 5.100000 +27 476 5.100000 +27 597 5.100000 +27 598 5.100000 +27 607 5.100000 +27 701 5.100000 +27 771 5.100000 +27 789 5.100000 +27 808 5.100000 +27 857 5.100000 +27 859 5.100000 +27 868 5.100000 +27 887 5.100000 +27 953 5.100000 +27 957 5.100000 +27 1024 5.100000 +27 1077 5.100000 +27 1139 5.100000 +27 1188 5.100000 +27 1259 5.100000 +27 1307 5.100000 +27 1398 5.100000 +27 1451 5.100000 +27 1484 5.100000 +27 1572 5.100000 +27 1675 5.100000 +27 1720 5.100000 +27 1814 5.100000 +27 1820 5.100000 +27 1840 5.100000 +27 1895 5.100000 +27 2022 5.100000 +27 2132 5.100000 +27 2184 5.100000 +27 2224 5.100000 +27 2233 5.100000 +27 2251 5.100000 +27 2292 5.100000 +27 2432 5.100000 +27 2466 5.100000 +27 2516 5.100000 +27 2563 5.100000 +27 2566 5.100000 +27 2613 5.100000 +27 2646 5.100000 +27 2664 5.100000 +27 2760 5.100000 +27 2799 5.100000 +27 2815 5.100000 +27 2842 5.100000 +27 2900 5.100000 +27 2922 5.100000 +27 3098 5.100000 +27 3135 5.100000 +27 3169 5.100000 +28 5 5.100000 +28 54 5.100000 +28 115 5.100000 +28 209 5.100000 +28 267 5.100000 +28 305 5.100000 +28 313 5.100000 +28 450 5.100000 +28 455 5.100000 +28 512 5.100000 +28 598 5.100000 +28 666 5.100000 +28 698 5.100000 +28 725 5.100000 +28 886 5.100000 +28 971 5.100000 +28 974 5.100000 +28 1017 5.100000 +28 1036 5.100000 +28 1050 5.100000 +28 1127 5.100000 +28 1139 5.100000 +28 1164 5.100000 +28 1199 5.100000 +28 1205 5.100000 +28 1231 5.100000 +28 1301 5.100000 +28 1353 5.100000 +28 1406 5.100000 +28 1436 5.100000 +28 1526 5.100000 +28 1571 5.100000 +28 1687 5.100000 +28 1865 5.100000 +28 1926 5.100000 +28 2096 5.100000 +28 2158 5.100000 +28 2249 5.100000 +28 2257 5.100000 +28 2261 5.100000 +28 2323 5.100000 +28 2346 5.100000 +28 2462 5.100000 +28 2594 5.100000 +28 2649 5.100000 +28 2713 5.100000 +28 2782 5.100000 +28 2795 5.100000 +28 2818 5.100000 +28 3010 5.100000 +28 3047 5.100000 +28 3057 5.100000 +28 3075 5.100000 +28 3076 5.100000 +28 3109 5.100000 +28 3184 5.100000 +29 91 5.100000 +29 96 5.100000 +29 167 5.100000 +29 178 5.100000 +29 182 5.100000 +29 281 5.100000 +29 336 5.100000 +29 346 5.100000 +29 420 5.100000 +29 448 5.100000 +29 492 5.100000 +29 502 5.100000 +29 572 5.100000 +29 576 5.100000 +29 663 5.100000 +29 758 5.100000 +29 891 5.100000 +29 924 5.100000 +29 1016 5.100000 +29 1018 5.100000 +29 1032 5.100000 +29 1140 5.100000 +29 1160 5.100000 +29 1235 5.100000 +29 1275 5.100000 +29 1322 5.100000 +29 1353 5.100000 +29 1410 5.100000 +29 1418 5.100000 +29 1419 5.100000 +29 1470 5.100000 +29 1498 5.100000 +29 1499 5.100000 +29 1500 5.100000 +29 1508 5.100000 +29 1522 5.100000 +29 1524 5.100000 +29 1672 5.100000 +29 1732 5.100000 +29 1825 5.100000 +29 1884 5.100000 +29 1885 5.100000 +29 1899 5.100000 +29 1915 5.100000 +29 2075 5.100000 +29 2164 5.100000 +29 2203 5.100000 +29 2263 5.100000 +29 2336 5.100000 +29 2340 5.100000 +29 2384 5.100000 +29 2425 5.100000 +29 2485 5.100000 +29 2498 5.100000 +29 2512 5.100000 +29 2667 5.100000 +29 2775 5.100000 +29 2829 5.100000 +29 2847 5.100000 +29 2864 5.100000 +29 2874 5.100000 +29 2918 5.100000 +29 2970 5.100000 +29 3018 5.100000 +29 3063 5.100000 +29 3078 5.100000 +29 3091 5.100000 +30 74 5.100000 +30 79 5.100000 +30 90 5.100000 +30 96 5.100000 +30 154 5.100000 +30 226 5.100000 +30 229 5.100000 +30 319 5.100000 +30 381 5.100000 +30 389 5.100000 +30 403 5.100000 +30 455 5.100000 +30 487 5.100000 +30 622 5.100000 +30 661 5.100000 +30 699 5.100000 +30 766 5.100000 +30 791 5.100000 +30 832 5.100000 +30 880 5.100000 +30 911 5.100000 +30 963 5.100000 +30 967 5.100000 +30 1008 5.100000 +30 1086 5.100000 +30 1087 5.100000 +30 1198 5.100000 +30 1257 5.100000 +30 1370 5.100000 +30 1458 5.100000 +30 1501 5.100000 +30 1512 5.100000 +30 1551 5.100000 +30 1695 5.100000 +30 1746 5.100000 +30 1788 5.100000 +30 1793 5.100000 +30 1902 5.100000 +30 1960 5.100000 +30 2038 5.100000 +30 2061 5.100000 +30 2151 5.100000 +30 2235 5.100000 +30 2283 5.100000 +30 2424 5.100000 +30 2466 5.100000 +30 2575 5.100000 +30 2647 5.100000 +30 2663 5.100000 +30 2668 5.100000 +30 2760 5.100000 +30 2780 5.100000 +30 2826 5.100000 +30 2975 5.100000 +30 3071 5.100000 +30 3144 5.100000 +31 12 5.100000 +31 52 5.100000 +31 141 5.100000 +31 331 5.100000 +31 336 5.100000 +31 416 5.100000 +31 623 5.100000 +31 642 5.100000 +31 664 5.100000 +31 682 5.100000 +31 686 5.100000 +31 704 5.100000 +31 758 5.100000 +31 772 5.100000 +31 780 5.100000 +31 806 5.100000 +31 894 5.100000 +31 913 5.100000 +31 918 5.100000 +31 919 5.100000 +31 960 5.100000 +31 994 5.100000 +31 1074 5.100000 +31 1162 5.100000 +31 1163 5.100000 +31 1226 5.100000 +31 1319 5.100000 +31 1368 5.100000 +31 1393 5.100000 +31 1404 5.100000 +31 1531 5.100000 +31 1597 5.100000 +31 1625 5.100000 +31 1641 5.100000 +31 1682 5.100000 +31 1745 5.100000 +31 1815 5.100000 +31 1905 5.100000 +31 2019 5.100000 +31 2021 5.100000 +31 2042 5.100000 +31 2060 5.100000 +31 2102 5.100000 +31 2292 5.100000 +31 2295 5.100000 +31 2489 5.100000 +31 2498 5.100000 +31 2633 5.100000 +31 2690 5.100000 +31 2729 5.100000 +31 2730 5.100000 +31 2831 5.100000 +31 2854 5.100000 +31 2868 5.100000 +31 2909 5.100000 +31 2933 5.100000 +31 2952 5.100000 +31 3030 5.100000 +31 3052 5.100000 +31 3107 5.100000 +31 3157 5.100000 +31 3184 5.100000 +32 31 5.100000 +32 69 5.100000 +32 156 5.100000 +32 178 5.100000 +32 186 5.100000 +32 265 5.100000 +32 317 5.100000 +32 427 5.100000 +32 456 5.100000 +32 470 5.100000 +32 633 5.100000 +32 702 5.100000 +32 776 5.100000 +32 948 5.100000 +32 1022 5.100000 +32 1055 5.100000 +32 1100 5.100000 +32 1166 5.100000 +32 1329 5.100000 +32 1415 5.100000 +32 1627 5.100000 +32 1671 5.100000 +32 1754 5.100000 +32 1774 5.100000 +32 1793 5.100000 +32 1836 5.100000 +32 1881 5.100000 +32 1922 5.100000 +32 1985 5.100000 +32 2012 5.100000 +32 2037 5.100000 +32 2042 5.100000 +32 2077 5.100000 +32 2113 5.100000 +32 2120 5.100000 +32 2204 5.100000 +32 2206 5.100000 +32 2258 5.100000 +32 2259 5.100000 +32 2283 5.100000 +32 2395 5.100000 +32 2468 5.100000 +32 2473 5.100000 +32 2511 5.100000 +32 2582 5.100000 +32 2637 5.100000 +32 2823 5.100000 +32 2866 5.100000 +32 3093 5.100000 +32 3108 5.100000 +32 3164 5.100000 +33 16 5.100000 +33 57 5.100000 +33 73 5.100000 +33 92 5.100000 +33 101 5.100000 +33 123 5.100000 +33 197 5.100000 +33 204 5.100000 +33 213 5.100000 +33 216 5.100000 +33 283 5.100000 +33 416 5.100000 +33 471 5.100000 +33 474 5.100000 +33 562 5.100000 +33 585 5.100000 +33 660 5.100000 +33 693 5.100000 +33 705 5.100000 +33 751 5.100000 +33 835 5.100000 +33 847 5.100000 +33 886 5.100000 +33 936 5.100000 +33 1079 5.100000 +33 1094 5.100000 +33 1143 5.100000 +33 1174 5.100000 +33 1184 5.100000 +33 1226 5.100000 +33 1307 5.100000 +33 1309 5.100000 +33 1317 5.100000 +33 1343 5.100000 +33 1382 5.100000 +33 1395 5.100000 +33 1410 5.100000 +33 1421 5.100000 +33 1444 5.100000 +33 1491 5.100000 +33 1500 5.100000 +33 1518 5.100000 +33 1537 5.100000 +33 1572 5.100000 +33 1591 5.100000 +33 1645 5.100000 +33 1699 5.100000 +33 1793 5.100000 +33 1820 5.100000 +33 1857 5.100000 +33 1908 5.100000 +33 1918 5.100000 +33 1923 5.100000 +33 1955 5.100000 +33 2031 5.100000 +33 2045 5.100000 +33 2187 5.100000 +33 2214 5.100000 +33 2222 5.100000 +33 2247 5.100000 +33 2254 5.100000 +33 2295 5.100000 +33 2305 5.100000 +33 2382 5.100000 +33 2395 5.100000 +33 2492 5.100000 +33 2503 5.100000 +33 2516 5.100000 +33 2521 5.100000 +33 2534 5.100000 +33 2594 5.100000 +33 2596 5.100000 +33 2614 5.100000 +33 2660 5.100000 +33 2706 5.100000 +33 2727 5.100000 +33 2817 5.100000 +33 2836 5.100000 +33 2839 5.100000 +33 2960 5.100000 +33 2997 5.100000 +33 3000 5.100000 +33 3094 5.100000 +33 3118 5.100000 +33 3186 5.100000 +34 18 5.100000 +34 130 5.100000 +34 174 5.100000 +34 196 5.100000 +34 235 5.100000 +34 251 5.100000 +34 260 5.100000 +34 389 5.100000 +34 505 5.100000 +34 564 5.100000 +34 606 5.100000 +34 659 5.100000 +34 733 5.100000 +34 740 5.100000 +34 763 5.100000 +34 832 5.100000 +34 851 5.100000 +34 890 5.100000 +34 986 5.100000 +34 993 5.100000 +34 1047 5.100000 +34 1075 5.100000 +34 1081 5.100000 +34 1129 5.100000 +34 1267 5.100000 +34 1320 5.100000 +34 1349 5.100000 +34 1373 5.100000 +34 1577 5.100000 +34 1676 5.100000 +34 1716 5.100000 +34 1731 5.100000 +34 1732 5.100000 +34 1782 5.100000 +34 1846 5.100000 +34 1853 5.100000 +34 1880 5.100000 +34 1899 5.100000 +34 1926 5.100000 +34 1927 5.100000 +34 1952 5.100000 +34 2011 5.100000 +34 2061 5.100000 +34 2067 5.100000 +34 2107 5.100000 +34 2120 5.100000 +34 2163 5.100000 +34 2276 5.100000 +34 2408 5.100000 +34 2432 5.100000 +34 2469 5.100000 +34 2491 5.100000 +34 2504 5.100000 +34 2572 5.100000 +34 2631 5.100000 +34 2705 5.100000 +34 2721 5.100000 +34 2737 5.100000 +34 2746 5.100000 +34 2978 5.100000 +34 3047 5.100000 +34 3137 5.100000 +34 3158 5.100000 +34 3177 5.100000 +35 13 5.100000 +35 27 5.100000 +35 28 5.100000 +35 73 5.100000 +35 82 5.100000 +35 89 5.100000 +35 182 5.100000 +35 267 5.100000 +35 268 5.100000 +35 274 5.100000 +35 342 5.100000 +35 369 5.100000 +35 423 5.100000 +35 462 5.100000 +35 598 5.100000 +35 604 5.100000 +35 663 5.100000 +35 765 5.100000 +35 839 5.100000 +35 858 5.100000 +35 1014 5.100000 +35 1018 5.100000 +35 1077 5.100000 +35 1089 5.100000 +35 1156 5.100000 +35 1157 5.100000 +35 1266 5.100000 +35 1393 5.100000 +35 1437 5.100000 +35 1468 5.100000 +35 1482 5.100000 +35 1504 5.100000 +35 1550 5.100000 +35 1572 5.100000 +35 1574 5.100000 +35 1607 5.100000 +35 1615 5.100000 +35 1950 5.100000 +35 1981 5.100000 +35 1982 5.100000 +35 1990 5.100000 +35 1992 5.100000 +35 2021 5.100000 +35 2077 5.100000 +35 2079 5.100000 +35 2096 5.100000 +35 2160 5.100000 +35 2237 5.100000 +35 2261 5.100000 +35 2271 5.100000 +35 2288 5.100000 +35 2330 5.100000 +35 2371 5.100000 +35 2432 5.100000 +35 2457 5.100000 +35 2459 5.100000 +35 2482 5.100000 +35 2519 5.100000 +35 2550 5.100000 +35 2703 5.100000 +35 2903 5.100000 +35 2916 5.100000 +35 2935 5.100000 +35 2937 5.100000 +35 3012 5.100000 +36 8 5.100000 +36 68 5.100000 +36 168 5.100000 +36 236 5.100000 +36 280 5.100000 +36 286 5.100000 +36 385 5.100000 +36 419 5.100000 +36 441 5.100000 +36 521 5.100000 +36 524 5.100000 +36 566 5.100000 +36 589 5.100000 +36 728 5.100000 +36 800 5.100000 +36 848 5.100000 +36 851 5.100000 +36 927 5.100000 +36 1009 5.100000 +36 1038 5.100000 +36 1051 5.100000 +36 1106 5.100000 +36 1124 5.100000 +36 1131 5.100000 +36 1141 5.100000 +36 1234 5.100000 +36 1247 5.100000 +36 1292 5.100000 +36 1326 5.100000 +36 1333 5.100000 +36 1510 5.100000 +36 1566 5.100000 +36 1642 5.100000 +36 1726 5.100000 +36 1737 5.100000 +36 1935 5.100000 +36 1957 5.100000 +36 2074 5.100000 +36 2264 5.100000 +36 2291 5.100000 +36 2445 5.100000 +36 2455 5.100000 +36 2496 5.100000 +36 2549 5.100000 +36 2588 5.100000 +36 2619 5.100000 +36 2690 5.100000 +36 2876 5.100000 +36 2924 5.100000 +36 2951 5.100000 +36 2965 5.100000 +36 3001 5.100000 +36 3095 5.100000 +36 3104 5.100000 +36 3107 5.100000 +36 3126 5.100000 +37 34 5.100000 +37 57 5.100000 +37 116 5.100000 +37 252 5.100000 +37 293 5.100000 +37 394 5.100000 +37 432 5.100000 +37 460 5.100000 +37 510 5.100000 +37 513 5.100000 +37 522 5.100000 +37 659 5.100000 +37 825 5.100000 +37 836 5.100000 +37 876 5.100000 +37 972 5.100000 +37 992 5.100000 +37 1007 5.100000 +37 1021 5.100000 +37 1075 5.100000 +37 1163 5.100000 +37 1291 5.100000 +37 1322 5.100000 +37 1372 5.100000 +37 1453 5.100000 +37 1469 5.100000 +37 1596 5.100000 +37 1628 5.100000 +37 1632 5.100000 +37 1788 5.100000 +37 2193 5.100000 +37 2243 5.100000 +37 2383 5.100000 +37 2433 5.100000 +37 2460 5.100000 +37 2483 5.100000 +37 2526 5.100000 +37 2569 5.100000 +37 2581 5.100000 +37 2667 5.100000 +37 2845 5.100000 +37 2892 5.100000 +37 2895 5.100000 +37 2899 5.100000 +37 2951 5.100000 +37 2991 5.100000 +37 3019 5.100000 +37 3125 5.100000 +38 34 5.100000 +38 59 5.100000 +38 67 5.100000 +38 114 5.100000 +38 164 5.100000 +38 165 5.100000 +38 183 5.100000 +38 204 5.100000 +38 216 5.100000 +38 330 5.100000 +38 331 5.100000 +38 413 5.100000 +38 531 5.100000 +38 619 5.100000 +38 685 5.100000 +38 736 5.100000 +38 842 5.100000 +38 878 5.100000 +38 899 5.100000 +38 926 5.100000 +38 959 5.100000 +38 969 5.100000 +38 977 5.100000 +38 1038 5.100000 +38 1040 5.100000 +38 1045 5.100000 +38 1060 5.100000 +38 1076 5.100000 +38 1080 5.100000 +38 1117 5.100000 +38 1169 5.100000 +38 1244 5.100000 +38 1384 5.100000 +38 1403 5.100000 +38 1454 5.100000 +38 1455 5.100000 +38 1465 5.100000 +38 1467 5.100000 +38 1492 5.100000 +38 1585 5.100000 +38 1615 5.100000 +38 1771 5.100000 +38 1809 5.100000 +38 2005 5.100000 +38 2186 5.100000 +38 2200 5.100000 +38 2218 5.100000 +38 2259 5.100000 +38 2312 5.100000 +38 2372 5.100000 +38 2376 5.100000 +38 2412 5.100000 +38 2500 5.100000 +38 2626 5.100000 +38 2669 5.100000 +38 2684 5.100000 +38 2704 5.100000 +38 2716 5.100000 +38 2741 5.100000 +38 2840 5.100000 +38 2844 5.100000 +38 3015 5.100000 +38 3068 5.100000 +38 3096 5.100000 +38 3107 5.100000 +38 3157 5.100000 +38 3185 5.100000 +38 3190 5.100000 +39 22 5.100000 +39 39 5.100000 +39 58 5.100000 +39 63 5.100000 +39 103 5.100000 +39 170 5.100000 +39 188 5.100000 +39 206 5.100000 +39 208 5.100000 +39 216 5.100000 +39 245 5.100000 +39 257 5.100000 +39 300 5.100000 +39 428 5.100000 +39 442 5.100000 +39 465 5.100000 +39 549 5.100000 +39 629 5.100000 +39 661 5.100000 +39 710 5.100000 +39 728 5.100000 +39 794 5.100000 +39 896 5.100000 +39 988 5.100000 +39 995 5.100000 +39 1268 5.100000 +39 1546 5.100000 +39 1576 5.100000 +39 1593 5.100000 +39 1657 5.100000 +39 1717 5.100000 +39 1753 5.100000 +39 1762 5.100000 +39 1795 5.100000 +39 1828 5.100000 +39 1887 5.100000 +39 1902 5.100000 +39 2020 5.100000 +39 2021 5.100000 +39 2044 5.100000 +39 2073 5.100000 +39 2124 5.100000 +39 2140 5.100000 +39 2264 5.100000 +39 2285 5.100000 +39 2294 5.100000 +39 2309 5.100000 +39 2423 5.100000 +39 2460 5.100000 +39 2568 5.100000 +39 2598 5.100000 +39 2648 5.100000 +39 2741 5.100000 +39 2771 5.100000 +39 2812 5.100000 +39 2837 5.100000 +39 2878 5.100000 +39 2906 5.100000 +39 2994 5.100000 +39 2997 5.100000 +39 3071 5.100000 +39 3167 5.100000 +40 59 5.100000 +40 106 5.100000 +40 107 5.100000 +40 179 5.100000 +40 234 5.100000 +40 235 5.100000 +40 296 5.100000 +40 339 5.100000 +40 581 5.100000 +40 595 5.100000 +40 633 5.100000 +40 663 5.100000 +40 716 5.100000 +40 721 5.100000 +40 821 5.100000 +40 896 5.100000 +40 924 5.100000 +40 1104 5.100000 +40 1163 5.100000 +40 1298 5.100000 +40 1305 5.100000 +40 1310 5.100000 +40 1471 5.100000 +40 1537 5.100000 +40 1554 5.100000 +40 1555 5.100000 +40 1614 5.100000 +40 1643 5.100000 +40 1654 5.100000 +40 1680 5.100000 +40 1749 5.100000 +40 1786 5.100000 +40 1854 5.100000 +40 1935 5.100000 +40 2020 5.100000 +40 2083 5.100000 +40 2107 5.100000 +40 2151 5.100000 +40 2274 5.100000 +40 2353 5.100000 +40 2490 5.100000 +40 2504 5.100000 +40 2511 5.100000 +40 2523 5.100000 +40 2530 5.100000 +40 2800 5.100000 +40 2812 5.100000 +40 2836 5.100000 +40 2869 5.100000 +40 2918 5.100000 +40 2999 5.100000 +40 3004 5.100000 +40 3009 5.100000 +40 3024 5.100000 +40 3068 5.100000 +40 3173 5.100000 +40 3197 5.100000 +41 21 5.100000 +41 47 5.100000 +41 106 5.100000 +41 189 5.100000 +41 191 5.100000 +41 233 5.100000 +41 244 5.100000 +41 380 5.100000 +41 587 5.100000 +41 636 5.100000 +41 677 5.100000 +41 746 5.100000 +41 838 5.100000 +41 892 5.100000 +41 934 5.100000 +41 999 5.100000 +41 1077 5.100000 +41 1152 5.100000 +41 1174 5.100000 +41 1275 5.100000 +41 1298 5.100000 +41 1359 5.100000 +41 1394 5.100000 +41 1398 5.100000 +41 1425 5.100000 +41 1459 5.100000 +41 1572 5.100000 +41 1582 5.100000 +41 1622 5.100000 +41 1648 5.100000 +41 1733 5.100000 +41 1925 5.100000 +41 1995 5.100000 +41 2011 5.100000 +41 2029 5.100000 +41 2121 5.100000 +41 2147 5.100000 +41 2215 5.100000 +41 2241 5.100000 +41 2308 5.100000 +41 2325 5.100000 +41 2357 5.100000 +41 2476 5.100000 +41 2510 5.100000 +41 2591 5.100000 +41 2606 5.100000 +41 2773 5.100000 +41 2849 5.100000 +41 2895 5.100000 +41 2938 5.100000 +41 2953 5.100000 +41 2983 5.100000 +41 3022 5.100000 +41 3085 5.100000 +41 3103 5.100000 +41 3184 5.100000 +42 18 5.100000 +42 78 5.100000 +42 106 5.100000 +42 115 5.100000 +42 225 5.100000 +42 274 5.100000 +42 276 5.100000 +42 306 5.100000 +42 308 5.100000 +42 412 5.100000 +42 513 5.100000 +42 536 5.100000 +42 583 5.100000 +42 606 5.100000 +42 703 5.100000 +42 822 5.100000 +42 883 5.100000 +42 905 5.100000 +42 912 5.100000 +42 962 5.100000 +42 1046 5.100000 +42 1159 5.100000 +42 1224 5.100000 +42 1225 5.100000 +42 1252 5.100000 +42 1265 5.100000 +42 1287 5.100000 +42 1398 5.100000 +42 1499 5.100000 +42 1544 5.100000 +42 1557 5.100000 +42 1563 5.100000 +42 1667 5.100000 +42 1702 5.100000 +42 1724 5.100000 +42 1924 5.100000 +42 1928 5.100000 +42 1979 5.100000 +42 2021 5.100000 +42 2129 5.100000 +42 2135 5.100000 +42 2170 5.100000 +42 2230 5.100000 +42 2316 5.100000 +42 2417 5.100000 +42 2418 5.100000 +42 2449 5.100000 +42 2580 5.100000 +42 2624 5.100000 +42 2655 5.100000 +42 2797 5.100000 +42 2799 5.100000 +42 2831 5.100000 +42 2844 5.100000 +42 2903 5.100000 +42 2957 5.100000 +42 3040 5.100000 +42 3110 5.100000 +43 10 5.100000 +43 73 5.100000 +43 82 5.100000 +43 87 5.100000 +43 114 5.100000 +43 119 5.100000 +43 346 5.100000 +43 369 5.100000 +43 373 5.100000 +43 418 5.100000 +43 425 5.100000 +43 536 5.100000 +43 598 5.100000 +43 608 5.100000 +43 731 5.100000 +43 883 5.100000 +43 908 5.100000 +43 910 5.100000 +43 962 5.100000 +43 981 5.100000 +43 1004 5.100000 +43 1092 5.100000 +43 1257 5.100000 +43 1297 5.100000 +43 1400 5.100000 +43 1439 5.100000 +43 1498 5.100000 +43 1500 5.100000 +43 1537 5.100000 +43 1588 5.100000 +43 1592 5.100000 +43 1650 5.100000 +43 1731 5.100000 +43 1855 5.100000 +43 1868 5.100000 +43 1926 5.100000 +43 1975 5.100000 +43 1994 5.100000 +43 2029 5.100000 +43 2030 5.100000 +43 2112 5.100000 +43 2184 5.100000 +43 2185 5.100000 +43 2244 5.100000 +43 2263 5.100000 +43 2292 5.100000 +43 2535 5.100000 +43 2838 5.100000 +43 2878 5.100000 +43 2887 5.100000 +43 2949 5.100000 +43 2953 5.100000 +43 3005 5.100000 +43 3013 5.100000 +43 3019 5.100000 +43 3099 5.100000 +43 3105 5.100000 +43 3174 5.100000 +44 45 5.100000 +44 144 5.100000 +44 183 5.100000 +44 223 5.100000 +44 261 5.100000 +44 305 5.100000 +44 398 5.100000 +44 474 5.100000 +44 475 5.100000 +44 489 5.100000 +44 622 5.100000 +44 641 5.100000 +44 779 5.100000 +44 789 5.100000 +44 920 5.100000 +44 1049 5.100000 +44 1124 5.100000 +44 1210 5.100000 +44 1251 5.100000 +44 1298 5.100000 +44 1359 5.100000 +44 1433 5.100000 +44 1437 5.100000 +44 1479 5.100000 +44 1530 5.100000 +44 1539 5.100000 +44 1569 5.100000 +44 1587 5.100000 +44 1663 5.100000 +44 1674 5.100000 +44 1703 5.100000 +44 1769 5.100000 +44 1915 5.100000 +44 1936 5.100000 +44 2012 5.100000 +44 2032 5.100000 +44 2106 5.100000 +44 2124 5.100000 +44 2126 5.100000 +44 2209 5.100000 +44 2224 5.100000 +44 2282 5.100000 +44 2307 5.100000 +44 2409 5.100000 +44 2485 5.100000 +44 2503 5.100000 +44 2587 5.100000 +44 2589 5.100000 +44 2612 5.100000 +44 2648 5.100000 +44 2680 5.100000 +44 2745 5.100000 +44 2828 5.100000 +44 2889 5.100000 +44 2897 5.100000 +44 2953 5.100000 +44 2992 5.100000 +44 3080 5.100000 +44 3115 5.100000 +44 3141 5.100000 +44 3174 5.100000 +45 43 5.100000 +45 65 5.100000 +45 242 5.100000 +45 270 5.100000 +45 393 5.100000 +45 520 5.100000 +45 618 5.100000 +45 731 5.100000 +45 909 5.100000 +45 998 5.100000 +45 1007 5.100000 +45 1015 5.100000 +45 1108 5.100000 +45 1137 5.100000 +45 1217 5.100000 +45 1306 5.100000 +45 1327 5.100000 +45 1332 5.100000 +45 1460 5.100000 +45 1509 5.100000 +45 1578 5.100000 +45 1582 5.100000 +45 1630 5.100000 +45 1636 5.100000 +45 1772 5.100000 +45 1774 5.100000 +45 1832 5.100000 +45 1911 5.100000 +45 2022 5.100000 +45 2232 5.100000 +45 2342 5.100000 +45 2344 5.100000 +45 2352 5.100000 +45 2369 5.100000 +45 2376 5.100000 +45 2406 5.100000 +45 2462 5.100000 +45 2514 5.100000 +45 2556 5.100000 +45 2691 5.100000 +45 2761 5.100000 +45 2780 5.100000 +45 2810 5.100000 +45 2832 5.100000 +45 2893 5.100000 +45 2907 5.100000 +45 2909 5.100000 +45 3042 5.100000 +45 3086 5.100000 +45 3120 5.100000 +46 23 5.100000 +46 130 5.100000 +46 270 5.100000 +46 275 5.100000 +46 384 5.100000 +46 433 5.100000 +46 535 5.100000 +46 543 5.100000 +46 594 5.100000 +46 602 5.100000 +46 615 5.100000 +46 789 5.100000 +46 882 5.100000 +46 895 5.100000 +46 997 5.100000 +46 1048 5.100000 +46 1218 5.100000 +46 1225 5.100000 +46 1229 5.100000 +46 1313 5.100000 +46 1337 5.100000 +46 1706 5.100000 +46 1800 5.100000 +46 1805 5.100000 +46 2029 5.100000 +46 2090 5.100000 +46 2103 5.100000 +46 2130 5.100000 +46 2192 5.100000 +46 2214 5.100000 +46 2260 5.100000 +46 2287 5.100000 +46 2296 5.100000 +46 2298 5.100000 +46 2317 5.100000 +46 2357 5.100000 +46 2368 5.100000 +46 2394 5.100000 +46 2407 5.100000 +46 2416 5.100000 +46 2445 5.100000 +46 2507 5.100000 +46 2590 5.100000 +46 2660 5.100000 +46 2698 5.100000 +46 2770 5.100000 +46 2844 5.100000 +46 2882 5.100000 +46 2913 5.100000 +46 2995 5.100000 +46 3148 5.100000 +46 3154 5.100000 +46 3192 5.100000 +47 96 5.100000 +47 141 5.100000 +47 231 5.100000 +47 330 5.100000 +47 389 5.100000 +47 433 5.100000 +47 445 5.100000 +47 500 5.100000 +47 507 5.100000 +47 563 5.100000 +47 590 5.100000 +47 634 5.100000 +47 646 5.100000 +47 680 5.100000 +47 697 5.100000 +47 761 5.100000 +47 840 5.100000 +47 842 5.100000 +47 859 5.100000 +47 927 5.100000 +47 1008 5.100000 +47 1029 5.100000 +47 1043 5.100000 +47 1083 5.100000 +47 1142 5.100000 +47 1225 5.100000 +47 1293 5.100000 +47 1419 5.100000 +47 1474 5.100000 +47 1541 5.100000 +47 1580 5.100000 +47 1662 5.100000 +47 1752 5.100000 +47 1800 5.100000 +47 1814 5.100000 +47 1818 5.100000 +47 1863 5.100000 +47 1985 5.100000 +47 1990 5.100000 +47 1993 5.100000 +47 2039 5.100000 +47 2157 5.100000 +47 2201 5.100000 +47 2522 5.100000 +47 2539 5.100000 +47 2560 5.100000 +47 2629 5.100000 +47 2671 5.100000 +47 2715 5.100000 +47 2787 5.100000 +47 2825 5.100000 +47 2836 5.100000 +47 2867 5.100000 +47 2872 5.100000 +47 2904 5.100000 +47 2958 5.100000 +47 2960 5.100000 +47 2961 5.100000 +47 2968 5.100000 +47 3027 5.100000 +47 3195 5.100000 +48 79 5.100000 +48 149 5.100000 +48 193 5.100000 +48 236 5.100000 +48 284 5.100000 +48 352 5.100000 +48 389 5.100000 +48 484 5.100000 +48 552 5.100000 +48 601 5.100000 +48 622 5.100000 +48 623 5.100000 +48 635 5.100000 +48 714 5.100000 +48 756 5.100000 +48 887 5.100000 +48 891 5.100000 +48 1033 5.100000 +48 1069 5.100000 +48 1143 5.100000 +48 1188 5.100000 +48 1212 5.100000 +48 1223 5.100000 +48 1287 5.100000 +48 1357 5.100000 +48 1385 5.100000 +48 1426 5.100000 +48 1469 5.100000 +48 1482 5.100000 +48 1489 5.100000 +48 1513 5.100000 +48 1560 5.100000 +48 1678 5.100000 +48 1685 5.100000 +48 1689 5.100000 +48 1815 5.100000 +48 1845 5.100000 +48 1855 5.100000 +48 1884 5.100000 +48 1891 5.100000 +48 2002 5.100000 +48 2008 5.100000 +48 2039 5.100000 +48 2043 5.100000 +48 2048 5.100000 +48 2130 5.100000 +48 2174 5.100000 +48 2180 5.100000 +48 2190 5.100000 +48 2236 5.100000 +48 2283 5.100000 +48 2290 5.100000 +48 2398 5.100000 +48 2406 5.100000 +48 2489 5.100000 +48 2573 5.100000 +48 2608 5.100000 +48 2609 5.100000 +48 2648 5.100000 +48 2739 5.100000 +48 2885 5.100000 +48 3019 5.100000 +48 3053 5.100000 +48 3076 5.100000 +48 3081 5.100000 +48 3170 5.100000 +49 114 5.100000 +49 184 5.100000 +49 197 5.100000 +49 356 5.100000 +49 466 5.100000 +49 467 5.100000 +49 581 5.100000 +49 676 5.100000 +49 723 5.100000 +49 736 5.100000 +49 862 5.100000 +49 903 5.100000 +49 1010 5.100000 +49 1199 5.100000 +49 1320 5.100000 +49 1365 5.100000 +49 1384 5.100000 +49 1405 5.100000 +49 1473 5.100000 +49 1490 5.100000 +49 1516 5.100000 +49 1712 5.100000 +49 1728 5.100000 +49 1739 5.100000 +49 1740 5.100000 +49 1763 5.100000 +49 1788 5.100000 +49 1850 5.100000 +49 1893 5.100000 +49 1903 5.100000 +49 2017 5.100000 +49 2031 5.100000 +49 2054 5.100000 +49 2065 5.100000 +49 2310 5.100000 +49 2391 5.100000 +49 2457 5.100000 +49 2630 5.100000 +49 2652 5.100000 +49 2655 5.100000 +49 2772 5.100000 +49 2832 5.100000 +49 2884 5.100000 +49 2898 5.100000 +49 2928 5.100000 +49 2967 5.100000 +49 2990 5.100000 +49 3002 5.100000 +49 3003 5.100000 +49 3032 5.100000 +49 3093 5.100000 +49 3127 5.100000 +49 3156 5.100000 +50 3 5.100000 +50 7 5.100000 +50 81 5.100000 +50 89 5.100000 +50 111 5.100000 +50 117 5.100000 +50 187 5.100000 +50 303 5.100000 +50 313 5.100000 +50 314 5.100000 +50 329 5.100000 +50 338 5.100000 +50 362 5.100000 +50 402 5.100000 +50 458 5.100000 +50 542 5.100000 +50 584 5.100000 +50 592 5.100000 +50 609 5.100000 +50 678 5.100000 +50 940 5.100000 +50 978 5.100000 +50 981 5.100000 +50 1005 5.100000 +50 1018 5.100000 +50 1046 5.100000 +50 1053 5.100000 +50 1108 5.100000 +50 1147 5.100000 +50 1178 5.100000 +50 1207 5.100000 +50 1300 5.100000 +50 1407 5.100000 +50 1408 5.100000 +50 1423 5.100000 +50 1478 5.100000 +50 1504 5.100000 +50 1521 5.100000 +50 1559 5.100000 +50 1573 5.100000 +50 1600 5.100000 +50 1677 5.100000 +50 1685 5.100000 +50 1746 5.100000 +50 1825 5.100000 +50 1878 5.100000 +50 1958 5.100000 +50 1961 5.100000 +50 2083 5.100000 +50 2097 5.100000 +50 2176 5.100000 +50 2222 5.100000 +50 2269 5.100000 +50 2292 5.100000 +50 2350 5.100000 +50 2358 5.100000 +50 2391 5.100000 +50 2439 5.100000 +50 2504 5.100000 +50 2516 5.100000 +50 2551 5.100000 +50 2723 5.100000 +50 2759 5.100000 +50 2910 5.100000 +50 2936 5.100000 +50 3060 5.100000 +50 3085 5.100000 +50 3113 5.100000 +50 3187 5.100000 +51 53 5.100000 +51 84 5.100000 +51 103 5.100000 +51 170 5.100000 +51 281 5.100000 +51 341 5.100000 +51 380 5.100000 +51 392 5.100000 +51 559 5.100000 +51 568 5.100000 +51 614 5.100000 +51 739 5.100000 +51 877 5.100000 +51 981 5.100000 +51 1100 5.100000 +51 1153 5.100000 +51 1214 5.100000 +51 1233 5.100000 +51 1369 5.100000 +51 1415 5.100000 +51 1418 5.100000 +51 1523 5.100000 +51 1600 5.100000 +51 1611 5.100000 +51 1644 5.100000 +51 1656 5.100000 +51 1665 5.100000 +51 1690 5.100000 +51 1696 5.100000 +51 1786 5.100000 +51 1911 5.100000 +51 1914 5.100000 +51 1935 5.100000 +51 1957 5.100000 +51 1999 5.100000 +51 2102 5.100000 +51 2107 5.100000 +51 2128 5.100000 +51 2137 5.100000 +51 2189 5.100000 +51 2248 5.100000 +51 2281 5.100000 +51 2296 5.100000 +51 2318 5.100000 +51 2325 5.100000 +51 2336 5.100000 +51 2345 5.100000 +51 2383 5.100000 +51 2464 5.100000 +51 2471 5.100000 +51 2512 5.100000 +51 2515 5.100000 +51 2516 5.100000 +51 2658 5.100000 +51 2664 5.100000 +51 2667 5.100000 +51 2736 5.100000 +51 2749 5.100000 +51 2777 5.100000 +51 2976 5.100000 +51 3031 5.100000 +51 3053 5.100000 +51 3173 5.100000 +52 54 5.100000 +52 101 5.100000 +52 143 5.100000 +52 191 5.100000 +52 198 5.100000 +52 284 5.100000 +52 289 5.100000 +52 362 5.100000 +52 395 5.100000 +52 491 5.100000 +52 506 5.100000 +52 524 5.100000 +52 543 5.100000 +52 623 5.100000 +52 625 5.100000 +52 647 5.100000 +52 650 5.100000 +52 883 5.100000 +52 890 5.100000 +52 927 5.100000 +52 931 5.100000 +52 1019 5.100000 +52 1022 5.100000 +52 1050 5.100000 +52 1192 5.100000 +52 1263 5.100000 +52 1451 5.100000 +52 1490 5.100000 +52 1518 5.100000 +52 1624 5.100000 +52 1627 5.100000 +52 1705 5.100000 +52 1714 5.100000 +52 1717 5.100000 +52 1795 5.100000 +52 1822 5.100000 +52 1850 5.100000 +52 1929 5.100000 +52 1937 5.100000 +52 1984 5.100000 +52 2019 5.100000 +52 2023 5.100000 +52 2072 5.100000 +52 2101 5.100000 +52 2169 5.100000 +52 2178 5.100000 +52 2201 5.100000 +52 2249 5.100000 +52 2295 5.100000 +52 2387 5.100000 +52 2439 5.100000 +52 2489 5.100000 +52 2501 5.100000 +52 2647 5.100000 +52 2688 5.100000 +52 2827 5.100000 +52 2961 5.100000 +52 2966 5.100000 +52 3076 5.100000 +52 3083 5.100000 +52 3095 5.100000 +52 3132 5.100000 +53 35 5.100000 +53 37 5.100000 +53 174 5.100000 +53 185 5.100000 +53 197 5.100000 +53 231 5.100000 +53 238 5.100000 +53 284 5.100000 +53 290 5.100000 +53 328 5.100000 +53 394 5.100000 +53 408 5.100000 +53 470 5.100000 +53 518 5.100000 +53 589 5.100000 +53 593 5.100000 +53 616 5.100000 +53 751 5.100000 +53 776 5.100000 +53 798 5.100000 +53 833 5.100000 +53 880 5.100000 +53 1008 5.100000 +53 1048 5.100000 +53 1200 5.100000 +53 1339 5.100000 +53 1370 5.100000 +53 1382 5.100000 +53 1393 5.100000 +53 1415 5.100000 +53 1422 5.100000 +53 1462 5.100000 +53 1487 5.100000 +53 1497 5.100000 +53 1535 5.100000 +53 1559 5.100000 +53 1566 5.100000 +53 1779 5.100000 +53 1865 5.100000 +53 1902 5.100000 +53 1946 5.100000 +53 1995 5.100000 +53 2014 5.100000 +53 2083 5.100000 +53 2144 5.100000 +53 2267 5.100000 +53 2270 5.100000 +53 2274 5.100000 +53 2402 5.100000 +53 2529 5.100000 +53 2585 5.100000 +53 2604 5.100000 +53 2656 5.100000 +53 2801 5.100000 +53 2859 5.100000 +53 2889 5.100000 +53 2973 5.100000 +53 3096 5.100000 +53 3119 5.100000 +54 5 5.100000 +54 6 5.100000 +54 109 5.100000 +54 227 5.100000 +54 248 5.100000 +54 334 5.100000 +54 336 5.100000 +54 343 5.100000 +54 353 5.100000 +54 358 5.100000 +54 396 5.100000 +54 409 5.100000 +54 417 5.100000 +54 580 5.100000 +54 591 5.100000 +54 680 5.100000 +54 716 5.100000 +54 772 5.100000 +54 782 5.100000 +54 822 5.100000 +54 825 5.100000 +54 858 5.100000 +54 868 5.100000 +54 885 5.100000 +54 1051 5.100000 +54 1118 5.100000 +54 1124 5.100000 +54 1129 5.100000 +54 1131 5.100000 +54 1193 5.100000 +54 1261 5.100000 +54 1291 5.100000 +54 1335 5.100000 +54 1340 5.100000 +54 1458 5.100000 +54 1490 5.100000 +54 1493 5.100000 +54 1650 5.100000 +54 1668 5.100000 +54 1703 5.100000 +54 1712 5.100000 +54 1740 5.100000 +54 1793 5.100000 +54 1806 5.100000 +54 1808 5.100000 +54 1888 5.100000 +54 1896 5.100000 +54 1951 5.100000 +54 1987 5.100000 +54 1994 5.100000 +54 2098 5.100000 +54 2136 5.100000 +54 2308 5.100000 +54 2311 5.100000 +54 2386 5.100000 +54 2420 5.100000 +54 2499 5.100000 +54 2521 5.100000 +54 2701 5.100000 +54 2736 5.100000 +54 2768 5.100000 +54 2872 5.100000 +54 2915 5.100000 +54 3006 5.100000 +54 3020 5.100000 +54 3073 5.100000 +54 3117 5.100000 +54 3146 5.100000 +55 39 5.100000 +55 121 5.100000 +55 177 5.100000 +55 183 5.100000 +55 193 5.100000 +55 196 5.100000 +55 261 5.100000 +55 290 5.100000 +55 304 5.100000 +55 309 5.100000 +55 327 5.100000 +55 433 5.100000 +55 469 5.100000 +55 491 5.100000 +55 504 5.100000 +55 506 5.100000 +55 571 5.100000 +55 586 5.100000 +55 681 5.100000 +55 690 5.100000 +55 695 5.100000 +55 707 5.100000 +55 709 5.100000 +55 745 5.100000 +55 759 5.100000 +55 784 5.100000 +55 785 5.100000 +55 811 5.100000 +55 879 5.100000 +55 948 5.100000 +55 993 5.100000 +55 1054 5.100000 +55 1195 5.100000 +55 1267 5.100000 +55 1336 5.100000 +55 1443 5.100000 +55 1597 5.100000 +55 1640 5.100000 +55 1741 5.100000 +55 1745 5.100000 +55 1794 5.100000 +55 1824 5.100000 +55 1836 5.100000 +55 1875 5.100000 +55 2014 5.100000 +55 2048 5.100000 +55 2084 5.100000 +55 2100 5.100000 +55 2111 5.100000 +55 2117 5.100000 +55 2148 5.100000 +55 2151 5.100000 +55 2202 5.100000 +55 2257 5.100000 +55 2391 5.100000 +55 2428 5.100000 +55 2447 5.100000 +55 2485 5.100000 +55 2520 5.100000 +55 2556 5.100000 +55 2558 5.100000 +55 2625 5.100000 +55 2642 5.100000 +55 2649 5.100000 +55 2659 5.100000 +55 2699 5.100000 +55 2750 5.100000 +55 2757 5.100000 +55 2780 5.100000 +55 2872 5.100000 +55 3018 5.100000 +55 3025 5.100000 +55 3103 5.100000 +55 3169 5.100000 +55 3184 5.100000 +55 3189 5.100000 +56 19 5.100000 +56 46 5.100000 +56 66 5.100000 +56 94 5.100000 +56 182 5.100000 +56 196 5.100000 +56 302 5.100000 +56 364 5.100000 +56 566 5.100000 +56 573 5.100000 +56 627 5.100000 +56 695 5.100000 +56 712 5.100000 +56 773 5.100000 +56 789 5.100000 +56 864 5.100000 +56 904 5.100000 +56 925 5.100000 +56 944 5.100000 +56 1086 5.100000 +56 1090 5.100000 +56 1266 5.100000 +56 1275 5.100000 +56 1293 5.100000 +56 1339 5.100000 +56 1356 5.100000 +56 1455 5.100000 +56 1477 5.100000 +56 1727 5.100000 +56 1748 5.100000 +56 1762 5.100000 +56 1902 5.100000 +56 1917 5.100000 +56 1939 5.100000 +56 2056 5.100000 +56 2101 5.100000 +56 2106 5.100000 +56 2138 5.100000 +56 2139 5.100000 +56 2155 5.100000 +56 2228 5.100000 +56 2329 5.100000 +56 2359 5.100000 +56 2437 5.100000 +56 2490 5.100000 +56 2560 5.100000 +56 2616 5.100000 +56 2661 5.100000 +56 2693 5.100000 +56 2737 5.100000 +56 2799 5.100000 +56 2862 5.100000 +56 2863 5.100000 +56 2928 5.100000 +56 3019 5.100000 +56 3040 5.100000 +57 36 5.100000 +57 174 5.100000 +57 217 5.100000 +57 277 5.100000 +57 302 5.100000 +57 358 5.100000 +57 388 5.100000 +57 398 5.100000 +57 461 5.100000 +57 466 5.100000 +57 643 5.100000 +57 664 5.100000 +57 738 5.100000 +57 740 5.100000 +57 811 5.100000 +57 834 5.100000 +57 1019 5.100000 +57 1062 5.100000 +57 1100 5.100000 +57 1150 5.100000 +57 1213 5.100000 +57 1214 5.100000 +57 1322 5.100000 +57 1330 5.100000 +57 1359 5.100000 +57 1433 5.100000 +57 1524 5.100000 +57 1638 5.100000 +57 1639 5.100000 +57 1644 5.100000 +57 1692 5.100000 +57 1753 5.100000 +57 1762 5.100000 +57 1822 5.100000 +57 1908 5.100000 +57 1991 5.100000 +57 2012 5.100000 +57 2076 5.100000 +57 2087 5.100000 +57 2091 5.100000 +57 2115 5.100000 +57 2202 5.100000 +57 2215 5.100000 +57 2342 5.100000 +57 2419 5.100000 +57 2434 5.100000 +57 2460 5.100000 +57 2513 5.100000 +57 2550 5.100000 +57 2570 5.100000 +57 2629 5.100000 +57 2679 5.100000 +57 2693 5.100000 +57 2776 5.100000 +57 2800 5.100000 +57 2801 5.100000 +57 2865 5.100000 +57 2965 5.100000 +57 3006 5.100000 +57 3017 5.100000 +57 3040 5.100000 +58 113 5.100000 +58 132 5.100000 +58 150 5.100000 +58 169 5.100000 +58 199 5.100000 +58 255 5.100000 +58 280 5.100000 +58 282 5.100000 +58 331 5.100000 +58 344 5.100000 +58 353 5.100000 +58 361 5.100000 +58 423 5.100000 +58 481 5.100000 +58 506 5.100000 +58 647 5.100000 +58 700 5.100000 +58 741 5.100000 +58 775 5.100000 +58 843 5.100000 +58 859 5.100000 +58 876 5.100000 +58 881 5.100000 +58 939 5.100000 +58 1090 5.100000 +58 1095 5.100000 +58 1134 5.100000 +58 1139 5.100000 +58 1167 5.100000 +58 1201 5.100000 +58 1233 5.100000 +58 1309 5.100000 +58 1361 5.100000 +58 1368 5.100000 +58 1437 5.100000 +58 1489 5.100000 +58 1498 5.100000 +58 1572 5.100000 +58 1593 5.100000 +58 1636 5.100000 +58 1739 5.100000 +58 1914 5.100000 +58 1939 5.100000 +58 1963 5.100000 +58 1997 5.100000 +58 2034 5.100000 +58 2074 5.100000 +58 2152 5.100000 +58 2264 5.100000 +58 2293 5.100000 +58 2382 5.100000 +58 2391 5.100000 +58 2424 5.100000 +58 2430 5.100000 +58 2450 5.100000 +58 2503 5.100000 +58 2544 5.100000 +58 2656 5.100000 +58 2666 5.100000 +58 2715 5.100000 +58 2729 5.100000 +58 2731 5.100000 +58 2769 5.100000 +58 2803 5.100000 +58 2819 5.100000 +58 2828 5.100000 +58 2890 5.100000 +58 2902 5.100000 +58 2929 5.100000 +58 2945 5.100000 +58 3013 5.100000 +58 3024 5.100000 +58 3030 5.100000 +58 3147 5.100000 +58 3159 5.100000 +59 15 5.100000 +59 42 5.100000 +59 67 5.100000 +59 70 5.100000 +59 119 5.100000 +59 133 5.100000 +59 192 5.100000 +59 219 5.100000 +59 247 5.100000 +59 423 5.100000 +59 505 5.100000 +59 647 5.100000 +59 705 5.100000 +59 709 5.100000 +59 713 5.100000 +59 724 5.100000 +59 727 5.100000 +59 757 5.100000 +59 809 5.100000 +59 886 5.100000 +59 888 5.100000 +59 913 5.100000 +59 953 5.100000 +59 1009 5.100000 +59 1079 5.100000 +59 1094 5.100000 +59 1104 5.100000 +59 1144 5.100000 +59 1182 5.100000 +59 1195 5.100000 +59 1208 5.100000 +59 1228 5.100000 +59 1259 5.100000 +59 1320 5.100000 +59 1377 5.100000 +59 1517 5.100000 +59 1547 5.100000 +59 1550 5.100000 +59 1581 5.100000 +59 1693 5.100000 +59 1750 5.100000 +59 1814 5.100000 +59 1866 5.100000 +59 1926 5.100000 +59 1960 5.100000 +59 1974 5.100000 +59 1992 5.100000 +59 2142 5.100000 +59 2230 5.100000 +59 2253 5.100000 +59 2264 5.100000 +59 2302 5.100000 +59 2341 5.100000 +59 2380 5.100000 +59 2397 5.100000 +59 2679 5.100000 +59 2700 5.100000 +59 2771 5.100000 +59 2859 5.100000 +59 3100 5.100000 +59 3102 5.100000 +59 3145 5.100000 +59 3167 5.100000 +60 21 5.100000 +60 171 5.100000 +60 173 5.100000 +60 257 5.100000 +60 359 5.100000 +60 394 5.100000 +60 537 5.100000 +60 566 5.100000 +60 683 5.100000 +60 708 5.100000 +60 898 5.100000 +60 947 5.100000 +60 1036 5.100000 +60 1095 5.100000 +60 1101 5.100000 +60 1429 5.100000 +60 1441 5.100000 +60 1493 5.100000 +60 1537 5.100000 +60 1544 5.100000 +60 1549 5.100000 +60 1576 5.100000 +60 1648 5.100000 +60 1676 5.100000 +60 1700 5.100000 +60 1878 5.100000 +60 2042 5.100000 +60 2056 5.100000 +60 2070 5.100000 +60 2081 5.100000 +60 2083 5.100000 +60 2193 5.100000 +60 2197 5.100000 +60 2205 5.100000 +60 2235 5.100000 +60 2316 5.100000 +60 2370 5.100000 +60 2374 5.100000 +60 2376 5.100000 +60 2398 5.100000 +60 2399 5.100000 +60 2500 5.100000 +60 2574 5.100000 +60 2577 5.100000 +60 2758 5.100000 +60 2785 5.100000 +60 2806 5.100000 +60 2817 5.100000 +60 2872 5.100000 +60 2886 5.100000 +60 2908 5.100000 +60 2916 5.100000 +60 2961 5.100000 +60 3021 5.100000 +60 3115 5.100000 +60 3122 5.100000 +60 3127 5.100000 +60 3178 5.100000 +60 3193 5.100000 +61 13 5.100000 +61 63 5.100000 +61 70 5.100000 +61 84 5.100000 +61 88 5.100000 +61 102 5.100000 +61 106 5.100000 +61 114 5.100000 +61 123 5.100000 +61 211 5.100000 +61 271 5.100000 +61 538 5.100000 +61 564 5.100000 +61 579 5.100000 +61 676 5.100000 +61 705 5.100000 +61 711 5.100000 +61 719 5.100000 +61 748 5.100000 +61 769 5.100000 +61 827 5.100000 +61 835 5.100000 +61 844 5.100000 +61 851 5.100000 +61 913 5.100000 +61 933 5.100000 +61 1021 5.100000 +61 1081 5.100000 +61 1114 5.100000 +61 1149 5.100000 +61 1517 5.100000 +61 1541 5.100000 +61 1609 5.100000 +61 1613 5.100000 +61 1657 5.100000 +61 1686 5.100000 +61 1720 5.100000 +61 1744 5.100000 +61 1774 5.100000 +61 1808 5.100000 +61 1896 5.100000 +61 1898 5.100000 +61 2070 5.100000 +61 2093 5.100000 +61 2112 5.100000 +61 2139 5.100000 +61 2147 5.100000 +61 2211 5.100000 +61 2223 5.100000 +61 2243 5.100000 +61 2293 5.100000 +61 2359 5.100000 +61 2409 5.100000 +61 2522 5.100000 +61 2643 5.100000 +61 2791 5.100000 +61 2846 5.100000 +61 2885 5.100000 +61 3006 5.100000 +61 3105 5.100000 +61 3157 5.100000 +62 55 5.100000 +62 105 5.100000 +62 138 5.100000 +62 211 5.100000 +62 252 5.100000 +62 300 5.100000 +62 303 5.100000 +62 331 5.100000 +62 366 5.100000 +62 467 5.100000 +62 479 5.100000 +62 605 5.100000 +62 637 5.100000 +62 706 5.100000 +62 799 5.100000 +62 803 5.100000 +62 814 5.100000 +62 823 5.100000 +62 873 5.100000 +62 877 5.100000 +62 947 5.100000 +62 1039 5.100000 +62 1061 5.100000 +62 1165 5.100000 +62 1181 5.100000 +62 1243 5.100000 +62 1273 5.100000 +62 1429 5.100000 +62 1468 5.100000 +62 1498 5.100000 +62 1500 5.100000 +62 1712 5.100000 +62 1929 5.100000 +62 2026 5.100000 +62 2033 5.100000 +62 2041 5.100000 +62 2053 5.100000 +62 2060 5.100000 +62 2105 5.100000 +62 2144 5.100000 +62 2250 5.100000 +62 2253 5.100000 +62 2414 5.100000 +62 2459 5.100000 +62 2464 5.100000 +62 2472 5.100000 +62 2556 5.100000 +62 2687 5.100000 +62 2731 5.100000 +62 2825 5.100000 +62 2846 5.100000 +62 2913 5.100000 +62 3023 5.100000 +62 3098 5.100000 +62 3117 5.100000 +62 3139 5.100000 +62 3147 5.100000 +63 37 5.100000 +63 91 5.100000 +63 171 5.100000 +63 293 5.100000 +63 296 5.100000 +63 337 5.100000 +63 406 5.100000 +63 453 5.100000 +63 470 5.100000 +63 485 5.100000 +63 494 5.100000 +63 518 5.100000 +63 542 5.100000 +63 561 5.100000 +63 562 5.100000 +63 587 5.100000 +63 796 5.100000 +63 810 5.100000 +63 839 5.100000 +63 1000 5.100000 +63 1016 5.100000 +63 1019 5.100000 +63 1127 5.100000 +63 1134 5.100000 +63 1135 5.100000 +63 1149 5.100000 +63 1201 5.100000 +63 1373 5.100000 +63 1393 5.100000 +63 1453 5.100000 +63 1457 5.100000 +63 1479 5.100000 +63 1604 5.100000 +63 1625 5.100000 +63 1633 5.100000 +63 1683 5.100000 +63 1722 5.100000 +63 1817 5.100000 +63 1907 5.100000 +63 1977 5.100000 +63 2086 5.100000 +63 2119 5.100000 +63 2157 5.100000 +63 2211 5.100000 +63 2239 5.100000 +63 2255 5.100000 +63 2370 5.100000 +63 2377 5.100000 +63 2381 5.100000 +63 2432 5.100000 +63 2452 5.100000 +63 2520 5.100000 +63 2652 5.100000 +63 2663 5.100000 +63 2721 5.100000 +63 2745 5.100000 +63 2764 5.100000 +63 2780 5.100000 +63 2791 5.100000 +63 2923 5.100000 +63 2926 5.100000 +63 2996 5.100000 +63 3006 5.100000 +63 3040 5.100000 +63 3045 5.100000 +63 3068 5.100000 +63 3080 5.100000 +63 3097 5.100000 +63 3154 5.100000 +63 3163 5.100000 +63 3192 5.100000 +64 41 5.100000 +64 61 5.100000 +64 80 5.100000 +64 98 5.100000 +64 133 5.100000 +64 213 5.100000 +64 242 5.100000 +64 276 5.100000 +64 287 5.100000 +64 380 5.100000 +64 476 5.100000 +64 539 5.100000 +64 698 5.100000 +64 714 5.100000 +64 950 5.100000 +64 1045 5.100000 +64 1113 5.100000 +64 1171 5.100000 +64 1214 5.100000 +64 1264 5.100000 +64 1267 5.100000 +64 1370 5.100000 +64 1404 5.100000 +64 1409 5.100000 +64 1415 5.100000 +64 1486 5.100000 +64 1500 5.100000 +64 1665 5.100000 +64 1740 5.100000 +64 1819 5.100000 +64 1826 5.100000 +64 1887 5.100000 +64 1988 5.100000 +64 2077 5.100000 +64 2088 5.100000 +64 2093 5.100000 +64 2140 5.100000 +64 2333 5.100000 +64 2363 5.100000 +64 2421 5.100000 +64 2454 5.100000 +64 2506 5.100000 +64 2558 5.100000 +64 2559 5.100000 +64 2589 5.100000 +64 2610 5.100000 +64 2628 5.100000 +64 2683 5.100000 +64 2777 5.100000 +64 2792 5.100000 +64 2842 5.100000 +64 2888 5.100000 +64 2918 5.100000 +64 2947 5.100000 +64 3012 5.100000 +64 3032 5.100000 +64 3169 5.100000 +65 36 5.100000 +65 179 5.100000 +65 200 5.100000 +65 201 5.100000 +65 244 5.100000 +65 294 5.100000 +65 320 5.100000 +65 353 5.100000 +65 369 5.100000 +65 390 5.100000 +65 431 5.100000 +65 454 5.100000 +65 490 5.100000 +65 551 5.100000 +65 569 5.100000 +65 577 5.100000 +65 579 5.100000 +65 616 5.100000 +65 620 5.100000 +65 791 5.100000 +65 800 5.100000 +65 826 5.100000 +65 915 5.100000 +65 917 5.100000 +65 935 5.100000 +65 963 5.100000 +65 1149 5.100000 +65 1173 5.100000 +65 1271 5.100000 +65 1293 5.100000 +65 1301 5.100000 +65 1317 5.100000 +65 1468 5.100000 +65 1503 5.100000 +65 1513 5.100000 +65 1698 5.100000 +65 1712 5.100000 +65 1736 5.100000 +65 1778 5.100000 +65 1944 5.100000 +65 1952 5.100000 +65 2016 5.100000 +65 2112 5.100000 +65 2114 5.100000 +65 2184 5.100000 +65 2254 5.100000 +65 2302 5.100000 +65 2316 5.100000 +65 2422 5.100000 +65 2504 5.100000 +65 2611 5.100000 +65 2615 5.100000 +65 2631 5.100000 +65 2678 5.100000 +65 2704 5.100000 +65 2715 5.100000 +65 2730 5.100000 +65 2750 5.100000 +65 2756 5.100000 +65 2805 5.100000 +65 2856 5.100000 +65 2873 5.100000 +65 3101 5.100000 +65 3129 5.100000 +66 8 5.100000 +66 91 5.100000 +66 128 5.100000 +66 171 5.100000 +66 237 5.100000 +66 331 5.100000 +66 358 5.100000 +66 367 5.100000 +66 371 5.100000 +66 374 5.100000 +66 483 5.100000 +66 535 5.100000 +66 565 5.100000 +66 647 5.100000 +66 751 5.100000 +66 798 5.100000 +66 812 5.100000 +66 858 5.100000 +66 970 5.100000 +66 1009 5.100000 +66 1082 5.100000 +66 1102 5.100000 +66 1140 5.100000 +66 1152 5.100000 +66 1162 5.100000 +66 1236 5.100000 +66 1511 5.100000 +66 1591 5.100000 +66 1850 5.100000 +66 1865 5.100000 +66 1874 5.100000 +66 1968 5.100000 +66 2160 5.100000 +66 2331 5.100000 +66 2411 5.100000 +66 2434 5.100000 +66 2463 5.100000 +66 2575 5.100000 +66 2622 5.100000 +66 2650 5.100000 +66 2659 5.100000 +66 2712 5.100000 +66 2773 5.100000 +66 2801 5.100000 +66 2834 5.100000 +66 2887 5.100000 +66 3063 5.100000 +66 3077 5.100000 +66 3083 5.100000 +66 3086 5.100000 +67 73 5.100000 +67 92 5.100000 +67 122 5.100000 +67 167 5.100000 +67 168 5.100000 +67 178 5.100000 +67 201 5.100000 +67 257 5.100000 +67 347 5.100000 +67 350 5.100000 +67 380 5.100000 +67 392 5.100000 +67 488 5.100000 +67 503 5.100000 +67 581 5.100000 +67 589 5.100000 +67 618 5.100000 +67 645 5.100000 +67 680 5.100000 +67 690 5.100000 +67 695 5.100000 +67 698 5.100000 +67 838 5.100000 +67 900 5.100000 +67 948 5.100000 +67 1031 5.100000 +67 1059 5.100000 +67 1070 5.100000 +67 1084 5.100000 +67 1111 5.100000 +67 1158 5.100000 +67 1164 5.100000 +67 1170 5.100000 +67 1182 5.100000 +67 1191 5.100000 +67 1231 5.100000 +67 1276 5.100000 +67 1318 5.100000 +67 1340 5.100000 +67 1396 5.100000 +67 1423 5.100000 +67 1473 5.100000 +67 1481 5.100000 +67 1516 5.100000 +67 1561 5.100000 +67 1688 5.100000 +67 1791 5.100000 +67 1830 5.100000 +67 1839 5.100000 +67 1853 5.100000 +67 1902 5.100000 +67 1968 5.100000 +67 2017 5.100000 +67 2239 5.100000 +67 2245 5.100000 +67 2350 5.100000 +67 2401 5.100000 +67 2402 5.100000 +67 2497 5.100000 +67 2501 5.100000 +67 2528 5.100000 +67 2727 5.100000 +67 2818 5.100000 +67 3191 5.100000 +68 15 5.100000 +68 45 5.100000 +68 67 5.100000 +68 70 5.100000 +68 75 5.100000 +68 202 5.100000 +68 278 5.100000 +68 390 5.100000 +68 438 5.100000 +68 461 5.100000 +68 623 5.100000 +68 699 5.100000 +68 760 5.100000 +68 761 5.100000 +68 813 5.100000 +68 827 5.100000 +68 1016 5.100000 +68 1041 5.100000 +68 1067 5.100000 +68 1102 5.100000 +68 1144 5.100000 +68 1243 5.100000 +68 1342 5.100000 +68 1364 5.100000 +68 1477 5.100000 +68 1479 5.100000 +68 1493 5.100000 +68 1550 5.100000 +68 1556 5.100000 +68 1566 5.100000 +68 1600 5.100000 +68 1610 5.100000 +68 1631 5.100000 +68 1683 5.100000 +68 1720 5.100000 +68 1764 5.100000 +68 1792 5.100000 +68 1863 5.100000 +68 1879 5.100000 +68 1933 5.100000 +68 1934 5.100000 +68 1970 5.100000 +68 1983 5.100000 +68 1988 5.100000 +68 2002 5.100000 +68 2041 5.100000 +68 2075 5.100000 +68 2113 5.100000 +68 2136 5.100000 +68 2139 5.100000 +68 2149 5.100000 +68 2156 5.100000 +68 2177 5.100000 +68 2181 5.100000 +68 2194 5.100000 +68 2212 5.100000 +68 2235 5.100000 +68 2277 5.100000 +68 2537 5.100000 +68 2552 5.100000 +68 2575 5.100000 +68 2664 5.100000 +68 2765 5.100000 +68 2816 5.100000 +68 2960 5.100000 +68 2966 5.100000 +68 3043 5.100000 +68 3054 5.100000 +68 3060 5.100000 +68 3078 5.100000 +68 3083 5.100000 +68 3117 5.100000 +68 3187 5.100000 +69 12 5.100000 +69 126 5.100000 +69 149 5.100000 +69 226 5.100000 +69 248 5.100000 +69 309 5.100000 +69 427 5.100000 +69 462 5.100000 +69 529 5.100000 +69 544 5.100000 +69 594 5.100000 +69 608 5.100000 +69 617 5.100000 +69 629 5.100000 +69 666 5.100000 +69 711 5.100000 +69 788 5.100000 +69 859 5.100000 +69 902 5.100000 +69 935 5.100000 +69 1000 5.100000 +69 1131 5.100000 +69 1217 5.100000 +69 1290 5.100000 +69 1299 5.100000 +69 1577 5.100000 +69 1589 5.100000 +69 1631 5.100000 +69 1635 5.100000 +69 1715 5.100000 +69 1783 5.100000 +69 1794 5.100000 +69 1808 5.100000 +69 1879 5.100000 +69 1882 5.100000 +69 1898 5.100000 +69 1994 5.100000 +69 2008 5.100000 +69 2208 5.100000 +69 2265 5.100000 +69 2370 5.100000 +69 2372 5.100000 +69 2411 5.100000 +69 2445 5.100000 +69 2464 5.100000 +69 2549 5.100000 +69 2623 5.100000 +69 2662 5.100000 +69 2664 5.100000 +69 2690 5.100000 +69 2752 5.100000 +69 2794 5.100000 +69 2855 5.100000 +69 2899 5.100000 +69 2956 5.100000 +69 3044 5.100000 +69 3099 5.100000 +69 3134 5.100000 +70 25 5.100000 +70 38 5.100000 +70 74 5.100000 +70 103 5.100000 +70 115 5.100000 +70 166 5.100000 +70 250 5.100000 +70 271 5.100000 +70 345 5.100000 +70 350 5.100000 +70 382 5.100000 +70 450 5.100000 +70 496 5.100000 +70 510 5.100000 +70 572 5.100000 +70 638 5.100000 +70 725 5.100000 +70 730 5.100000 +70 788 5.100000 +70 871 5.100000 +70 876 5.100000 +70 884 5.100000 +70 1013 5.100000 +70 1090 5.100000 +70 1107 5.100000 +70 1111 5.100000 +70 1156 5.100000 +70 1172 5.100000 +70 1203 5.100000 +70 1382 5.100000 +70 1390 5.100000 +70 1433 5.100000 +70 1438 5.100000 +70 1541 5.100000 +70 1637 5.100000 +70 1836 5.100000 +70 1965 5.100000 +70 2012 5.100000 +70 2023 5.100000 +70 2158 5.100000 +70 2160 5.100000 +70 2262 5.100000 +70 2297 5.100000 +70 2333 5.100000 +70 2350 5.100000 +70 2362 5.100000 +70 2438 5.100000 +70 2476 5.100000 +70 2481 5.100000 +70 2492 5.100000 +70 2559 5.100000 +70 2771 5.100000 +70 2798 5.100000 +70 2887 5.100000 +70 2947 5.100000 +70 2969 5.100000 +70 2986 5.100000 +70 3097 5.100000 +70 3098 5.100000 +71 7 5.100000 +71 93 5.100000 +71 103 5.100000 +71 110 5.100000 +71 180 5.100000 +71 300 5.100000 +71 428 5.100000 +71 441 5.100000 +71 463 5.100000 +71 532 5.100000 +71 607 5.100000 +71 720 5.100000 +71 731 5.100000 +71 767 5.100000 +71 787 5.100000 +71 794 5.100000 +71 809 5.100000 +71 826 5.100000 +71 828 5.100000 +71 910 5.100000 +71 911 5.100000 +71 942 5.100000 +71 963 5.100000 +71 967 5.100000 +71 1038 5.100000 +71 1114 5.100000 +71 1165 5.100000 +71 1189 5.100000 +71 1198 5.100000 +71 1322 5.100000 +71 1431 5.100000 +71 1465 5.100000 +71 1468 5.100000 +71 1523 5.100000 +71 1537 5.100000 +71 1623 5.100000 +71 1631 5.100000 +71 1677 5.100000 +71 1730 5.100000 +71 1783 5.100000 +71 1805 5.100000 +71 1821 5.100000 +71 1836 5.100000 +71 1875 5.100000 +71 1983 5.100000 +71 1994 5.100000 +71 2005 5.100000 +71 2020 5.100000 +71 2059 5.100000 +71 2107 5.100000 +71 2281 5.100000 +71 2330 5.100000 +71 2332 5.100000 +71 2364 5.100000 +71 2436 5.100000 +71 2505 5.100000 +71 2619 5.100000 +71 2666 5.100000 +71 2673 5.100000 +71 2685 5.100000 +71 2771 5.100000 +71 2935 5.100000 +71 3079 5.100000 +71 3113 5.100000 +72 66 5.100000 +72 67 5.100000 +72 70 5.100000 +72 171 5.100000 +72 415 5.100000 +72 418 5.100000 +72 478 5.100000 +72 506 5.100000 +72 512 5.100000 +72 524 5.100000 +72 560 5.100000 +72 606 5.100000 +72 617 5.100000 +72 695 5.100000 +72 759 5.100000 +72 900 5.100000 +72 980 5.100000 +72 1060 5.100000 +72 1078 5.100000 +72 1096 5.100000 +72 1097 5.100000 +72 1166 5.100000 +72 1178 5.100000 +72 1307 5.100000 +72 1316 5.100000 +72 1378 5.100000 +72 1401 5.100000 +72 1567 5.100000 +72 1607 5.100000 +72 1629 5.100000 +72 1638 5.100000 +72 1666 5.100000 +72 1713 5.100000 +72 1723 5.100000 +72 1865 5.100000 +72 1920 5.100000 +72 2011 5.100000 +72 2021 5.100000 +72 2066 5.100000 +72 2173 5.100000 +72 2239 5.100000 +72 2288 5.100000 +72 2331 5.100000 +72 2354 5.100000 +72 2405 5.100000 +72 2416 5.100000 +72 2440 5.100000 +72 2448 5.100000 +72 2479 5.100000 +72 2483 5.100000 +72 2490 5.100000 +72 2556 5.100000 +72 2656 5.100000 +72 2668 5.100000 +72 2731 5.100000 +72 2791 5.100000 +72 2803 5.100000 +72 2971 5.100000 +72 3047 5.100000 +72 3057 5.100000 +72 3076 5.100000 +72 3084 5.100000 +72 3163 5.100000 +73 14 5.100000 +73 147 5.100000 +73 254 5.100000 +73 275 5.100000 +73 319 5.100000 +73 363 5.100000 +73 627 5.100000 +73 641 5.100000 +73 661 5.100000 +73 722 5.100000 +73 733 5.100000 +73 797 5.100000 +73 798 5.100000 +73 848 5.100000 +73 899 5.100000 +73 1069 5.100000 +73 1075 5.100000 +73 1108 5.100000 +73 1168 5.100000 +73 1171 5.100000 +73 1227 5.100000 +73 1303 5.100000 +73 1442 5.100000 +73 1490 5.100000 +73 1494 5.100000 +73 1526 5.100000 +73 1529 5.100000 +73 1555 5.100000 +73 1570 5.100000 +73 1628 5.100000 +73 1633 5.100000 +73 1657 5.100000 +73 1678 5.100000 +73 1687 5.100000 +73 1753 5.100000 +73 1867 5.100000 +73 1939 5.100000 +73 2255 5.100000 +73 2262 5.100000 +73 2370 5.100000 +73 2411 5.100000 +73 2512 5.100000 +73 2521 5.100000 +73 2530 5.100000 +73 2631 5.100000 +73 2701 5.100000 +73 2754 5.100000 +73 2801 5.100000 +73 2856 5.100000 +73 2903 5.100000 +73 2979 5.100000 +73 3002 5.100000 +73 3069 5.100000 +74 20 5.100000 +74 38 5.100000 +74 85 5.100000 +74 93 5.100000 +74 115 5.100000 +74 118 5.100000 +74 177 5.100000 +74 186 5.100000 +74 200 5.100000 +74 215 5.100000 +74 289 5.100000 +74 297 5.100000 +74 334 5.100000 +74 399 5.100000 +74 417 5.100000 +74 486 5.100000 +74 498 5.100000 +74 509 5.100000 +74 572 5.100000 +74 592 5.100000 +74 594 5.100000 +74 633 5.100000 +74 657 5.100000 +74 703 5.100000 +74 733 5.100000 +74 770 5.100000 +74 790 5.100000 +74 834 5.100000 +74 896 5.100000 +74 936 5.100000 +74 942 5.100000 +74 1116 5.100000 +74 1353 5.100000 +74 1451 5.100000 +74 1623 5.100000 +74 1625 5.100000 +74 1709 5.100000 +74 1830 5.100000 +74 1960 5.100000 +74 2028 5.100000 +74 2039 5.100000 +74 2051 5.100000 +74 2126 5.100000 +74 2145 5.100000 +74 2403 5.100000 +74 2508 5.100000 +74 2575 5.100000 +74 2679 5.100000 +74 2686 5.100000 +74 2754 5.100000 +74 2766 5.100000 +74 2879 5.100000 +74 2934 5.100000 +74 2942 5.100000 +74 2977 5.100000 +74 3000 5.100000 +74 3020 5.100000 +74 3028 5.100000 +74 3042 5.100000 +74 3045 5.100000 +74 3070 5.100000 +74 3155 5.100000 +74 3160 5.100000 +75 51 5.100000 +75 62 5.100000 +75 68 5.100000 +75 176 5.100000 +75 316 5.100000 +75 337 5.100000 +75 369 5.100000 +75 417 5.100000 +75 445 5.100000 +75 505 5.100000 +75 539 5.100000 +75 558 5.100000 +75 563 5.100000 +75 595 5.100000 +75 626 5.100000 +75 764 5.100000 +75 866 5.100000 +75 935 5.100000 +75 957 5.100000 +75 1007 5.100000 +75 1014 5.100000 +75 1028 5.100000 +75 1129 5.100000 +75 1144 5.100000 +75 1146 5.100000 +75 1209 5.100000 +75 1224 5.100000 +75 1240 5.100000 +75 1281 5.100000 +75 1419 5.100000 +75 1495 5.100000 +75 1498 5.100000 +75 1521 5.100000 +75 1533 5.100000 +75 1547 5.100000 +75 1699 5.100000 +75 1779 5.100000 +75 1842 5.100000 +75 1850 5.100000 +75 1886 5.100000 +75 2097 5.100000 +75 2111 5.100000 +75 2205 5.100000 +75 2367 5.100000 +75 2410 5.100000 +75 2425 5.100000 +75 2459 5.100000 +75 2543 5.100000 +75 2621 5.100000 +75 2622 5.100000 +75 2625 5.100000 +75 2646 5.100000 +75 2656 5.100000 +75 2732 5.100000 +75 2772 5.100000 +75 2833 5.100000 +75 2853 5.100000 +75 2858 5.100000 +75 2860 5.100000 +75 2962 5.100000 +75 3138 5.100000 +75 3156 5.100000 +76 53 5.100000 +76 109 5.100000 +76 154 5.100000 +76 170 5.100000 +76 192 5.100000 +76 228 5.100000 +76 249 5.100000 +76 259 5.100000 +76 298 5.100000 +76 361 5.100000 +76 492 5.100000 +76 546 5.100000 +76 547 5.100000 +76 551 5.100000 +76 752 5.100000 +76 754 5.100000 +76 755 5.100000 +76 879 5.100000 +76 900 5.100000 +76 914 5.100000 +76 936 5.100000 +76 948 5.100000 +76 960 5.100000 +76 963 5.100000 +76 1144 5.100000 +76 1153 5.100000 +76 1233 5.100000 +76 1237 5.100000 +76 1354 5.100000 +76 1445 5.100000 +76 1595 5.100000 +76 1693 5.100000 +76 1709 5.100000 +76 1807 5.100000 +76 1823 5.100000 +76 1881 5.100000 +76 1942 5.100000 +76 1956 5.100000 +76 2068 5.100000 +76 2077 5.100000 +76 2101 5.100000 +76 2114 5.100000 +76 2151 5.100000 +76 2286 5.100000 +76 2378 5.100000 +76 2381 5.100000 +76 2393 5.100000 +76 2405 5.100000 +76 2417 5.100000 +76 2508 5.100000 +76 2601 5.100000 +76 2617 5.100000 +76 2639 5.100000 +76 2668 5.100000 +76 2734 5.100000 +76 2876 5.100000 +76 2897 5.100000 +76 2901 5.100000 +76 2909 5.100000 +76 2977 5.100000 +76 3126 5.100000 +76 3177 5.100000 +77 5 5.100000 +77 11 5.100000 +77 44 5.100000 +77 115 5.100000 +77 221 5.100000 +77 252 5.100000 +77 254 5.100000 +77 277 5.100000 +77 321 5.100000 +77 382 5.100000 +77 414 5.100000 +77 501 5.100000 +77 524 5.100000 +77 525 5.100000 +77 527 5.100000 +77 537 5.100000 +77 548 5.100000 +77 638 5.100000 +77 686 5.100000 +77 794 5.100000 +77 935 5.100000 +77 1137 5.100000 +77 1154 5.100000 +77 1179 5.100000 +77 1180 5.100000 +77 1276 5.100000 +77 1313 5.100000 +77 1322 5.100000 +77 1347 5.100000 +77 1425 5.100000 +77 1434 5.100000 +77 1480 5.100000 +77 1553 5.100000 +77 1640 5.100000 +77 1792 5.100000 +77 1823 5.100000 +77 1828 5.100000 +77 1936 5.100000 +77 1937 5.100000 +77 1951 5.100000 +77 1972 5.100000 +77 2030 5.100000 +77 2127 5.100000 +77 2131 5.100000 +77 2175 5.100000 +77 2202 5.100000 +77 2220 5.100000 +77 2242 5.100000 +77 2276 5.100000 +77 2312 5.100000 +77 2348 5.100000 +77 2353 5.100000 +77 2389 5.100000 +77 2569 5.100000 +77 2703 5.100000 +77 2726 5.100000 +77 2741 5.100000 +77 2780 5.100000 +77 2871 5.100000 +77 2874 5.100000 +77 2941 5.100000 +77 2962 5.100000 +77 2982 5.100000 +77 2984 5.100000 +77 3025 5.100000 +77 3185 5.100000 +78 3 5.100000 +78 34 5.100000 +78 101 5.100000 +78 134 5.100000 +78 147 5.100000 +78 151 5.100000 +78 162 5.100000 +78 180 5.100000 +78 230 5.100000 +78 425 5.100000 +78 470 5.100000 +78 472 5.100000 +78 548 5.100000 +78 554 5.100000 +78 578 5.100000 +78 732 5.100000 +78 826 5.100000 +78 855 5.100000 +78 937 5.100000 +78 955 5.100000 +78 985 5.100000 +78 1053 5.100000 +78 1069 5.100000 +78 1145 5.100000 +78 1186 5.100000 +78 1224 5.100000 +78 1261 5.100000 +78 1412 5.100000 +78 1539 5.100000 +78 1660 5.100000 +78 1734 5.100000 +78 1776 5.100000 +78 1803 5.100000 +78 1856 5.100000 +78 1926 5.100000 +78 1962 5.100000 +78 2072 5.100000 +78 2083 5.100000 +78 2089 5.100000 +78 2105 5.100000 +78 2107 5.100000 +78 2109 5.100000 +78 2148 5.100000 +78 2241 5.100000 +78 2256 5.100000 +78 2274 5.100000 +78 2277 5.100000 +78 2342 5.100000 +78 2559 5.100000 +78 2622 5.100000 +78 2671 5.100000 +78 2686 5.100000 +78 2747 5.100000 +78 2799 5.100000 +78 3159 5.100000 +78 3165 5.100000 +78 3188 5.100000 +79 72 5.100000 +79 97 5.100000 +79 119 5.100000 +79 138 5.100000 +79 306 5.100000 +79 314 5.100000 +79 322 5.100000 +79 410 5.100000 +79 496 5.100000 +79 523 5.100000 +79 627 5.100000 +79 637 5.100000 +79 666 5.100000 +79 689 5.100000 +79 709 5.100000 +79 712 5.100000 +79 714 5.100000 +79 715 5.100000 +79 751 5.100000 +79 773 5.100000 +79 787 5.100000 +79 804 5.100000 +79 808 5.100000 +79 850 5.100000 +79 970 5.100000 +79 1006 5.100000 +79 1019 5.100000 +79 1080 5.100000 +79 1112 5.100000 +79 1141 5.100000 +79 1195 5.100000 +79 1230 5.100000 +79 1243 5.100000 +79 1309 5.100000 +79 1322 5.100000 +79 1402 5.100000 +79 1479 5.100000 +79 1506 5.100000 +79 1536 5.100000 +79 1585 5.100000 +79 1598 5.100000 +79 1624 5.100000 +79 1636 5.100000 +79 1750 5.100000 +79 1792 5.100000 +79 1885 5.100000 +79 1888 5.100000 +79 1993 5.100000 +79 2028 5.100000 +79 2065 5.100000 +79 2107 5.100000 +79 2196 5.100000 +79 2232 5.100000 +79 2284 5.100000 +79 2318 5.100000 +79 2361 5.100000 +79 2383 5.100000 +79 2474 5.100000 +79 2500 5.100000 +79 2566 5.100000 +79 2587 5.100000 +79 2588 5.100000 +79 2665 5.100000 +79 2705 5.100000 +79 2788 5.100000 +79 2965 5.100000 +79 2974 5.100000 +79 3023 5.100000 +79 3027 5.100000 +79 3170 5.100000 +79 3191 5.100000 +80 65 5.100000 +80 125 5.100000 +80 373 5.100000 +80 496 5.100000 +80 535 5.100000 +80 670 5.100000 +80 681 5.100000 +80 798 5.100000 +80 888 5.100000 +80 909 5.100000 +80 972 5.100000 +80 985 5.100000 +80 992 5.100000 +80 1005 5.100000 +80 1048 5.100000 +80 1269 5.100000 +80 1290 5.100000 +80 1291 5.100000 +80 1395 5.100000 +80 1436 5.100000 +80 1441 5.100000 +80 1468 5.100000 +80 1487 5.100000 +80 1529 5.100000 +80 1598 5.100000 +80 1628 5.100000 +80 1636 5.100000 +80 1651 5.100000 +80 1665 5.100000 +80 1706 5.100000 +80 1721 5.100000 +80 1927 5.100000 +80 1930 5.100000 +80 1974 5.100000 +80 2012 5.100000 +80 2047 5.100000 +80 2060 5.100000 +80 2078 5.100000 +80 2092 5.100000 +80 2100 5.100000 +80 2109 5.100000 +80 2114 5.100000 +80 2117 5.100000 +80 2142 5.100000 +80 2189 5.100000 +80 2266 5.100000 +80 2269 5.100000 +80 2375 5.100000 +80 2402 5.100000 +80 2474 5.100000 +80 2515 5.100000 +80 2598 5.100000 +80 2704 5.100000 +80 2718 5.100000 +80 2851 5.100000 +80 2909 5.100000 +80 2960 5.100000 +80 2978 5.100000 +80 3064 5.100000 +80 3121 5.100000 +80 3126 5.100000 +80 3141 5.100000 +81 22 5.100000 +81 88 5.100000 +81 101 5.100000 +81 133 5.100000 +81 168 5.100000 +81 197 5.100000 +81 231 5.100000 +81 371 5.100000 +81 406 5.100000 +81 408 5.100000 +81 455 5.100000 +81 488 5.100000 +81 506 5.100000 +81 511 5.100000 +81 601 5.100000 +81 704 5.100000 +81 732 5.100000 +81 742 5.100000 +81 750 5.100000 +81 903 5.100000 +81 924 5.100000 +81 1014 5.100000 +81 1019 5.100000 +81 1038 5.100000 +81 1061 5.100000 +81 1127 5.100000 +81 1142 5.100000 +81 1310 5.100000 +81 1376 5.100000 +81 1441 5.100000 +81 1492 5.100000 +81 1568 5.100000 +81 1612 5.100000 +81 1666 5.100000 +81 1682 5.100000 +81 1757 5.100000 +81 1860 5.100000 +81 1874 5.100000 +81 1901 5.100000 +81 1950 5.100000 +81 1973 5.100000 +81 1975 5.100000 +81 2087 5.100000 +81 2119 5.100000 +81 2178 5.100000 +81 2206 5.100000 +81 2236 5.100000 +81 2250 5.100000 +81 2260 5.100000 +81 2277 5.100000 +81 2278 5.100000 +81 2384 5.100000 +81 2393 5.100000 +81 2423 5.100000 +81 2448 5.100000 +81 2464 5.100000 +81 2479 5.100000 +81 2484 5.100000 +81 2531 5.100000 +81 2579 5.100000 +81 2717 5.100000 +81 2767 5.100000 +81 2826 5.100000 +81 2867 5.100000 +81 2976 5.100000 +81 2980 5.100000 +81 3013 5.100000 +81 3107 5.100000 +82 5 5.100000 +82 24 5.100000 +82 105 5.100000 +82 134 5.100000 +82 139 5.100000 +82 151 5.100000 +82 249 5.100000 +82 294 5.100000 +82 340 5.100000 +82 397 5.100000 +82 518 5.100000 +82 557 5.100000 +82 671 5.100000 +82 690 5.100000 +82 695 5.100000 +82 847 5.100000 +82 878 5.100000 +82 953 5.100000 +82 982 5.100000 +82 1048 5.100000 +82 1080 5.100000 +82 1091 5.100000 +82 1147 5.100000 +82 1217 5.100000 +82 1235 5.100000 +82 1248 5.100000 +82 1263 5.100000 +82 1275 5.100000 +82 1297 5.100000 +82 1320 5.100000 +82 1336 5.100000 +82 1448 5.100000 +82 1468 5.100000 +82 1480 5.100000 +82 1654 5.100000 +82 1724 5.100000 +82 1731 5.100000 +82 1767 5.100000 +82 1800 5.100000 +82 1835 5.100000 +82 1921 5.100000 +82 1959 5.100000 +82 1993 5.100000 +82 2033 5.100000 +82 2046 5.100000 +82 2075 5.100000 +82 2139 5.100000 +82 2141 5.100000 +82 2173 5.100000 +82 2185 5.100000 +82 2204 5.100000 +82 2258 5.100000 +82 2282 5.100000 +82 2286 5.100000 +82 2357 5.100000 +82 2397 5.100000 +82 2454 5.100000 +82 2461 5.100000 +82 2486 5.100000 +82 2516 5.100000 +82 2600 5.100000 +82 2606 5.100000 +82 2634 5.100000 +82 2666 5.100000 +82 2704 5.100000 +82 2727 5.100000 +82 2775 5.100000 +82 2807 5.100000 +82 2863 5.100000 +82 2866 5.100000 +82 2903 5.100000 +82 2928 5.100000 +82 2938 5.100000 +82 2958 5.100000 +82 3093 5.100000 +83 26 5.100000 +83 60 5.100000 +83 61 5.100000 +83 178 5.100000 +83 193 5.100000 +83 207 5.100000 +83 236 5.100000 +83 290 5.100000 +83 306 5.100000 +83 394 5.100000 +83 412 5.100000 +83 424 5.100000 +83 550 5.100000 +83 583 5.100000 +83 598 5.100000 +83 642 5.100000 +83 654 5.100000 +83 692 5.100000 +83 773 5.100000 +83 945 5.100000 +83 950 5.100000 +83 955 5.100000 +83 982 5.100000 +83 992 5.100000 +83 1015 5.100000 +83 1065 5.100000 +83 1070 5.100000 +83 1075 5.100000 +83 1078 5.100000 +83 1385 5.100000 +83 1411 5.100000 +83 1443 5.100000 +83 1446 5.100000 +83 1471 5.100000 +83 1491 5.100000 +83 1502 5.100000 +83 1527 5.100000 +83 1740 5.100000 +83 1773 5.100000 +83 1789 5.100000 +83 1864 5.100000 +83 1876 5.100000 +83 1923 5.100000 +83 2119 5.100000 +83 2130 5.100000 +83 2162 5.100000 +83 2215 5.100000 +83 2244 5.100000 +83 2249 5.100000 +83 2254 5.100000 +83 2257 5.100000 +83 2344 5.100000 +83 2362 5.100000 +83 2364 5.100000 +83 2378 5.100000 +83 2381 5.100000 +83 2387 5.100000 +83 2394 5.100000 +83 2405 5.100000 +83 2480 5.100000 +83 2484 5.100000 +83 2586 5.100000 +83 2587 5.100000 +83 2651 5.100000 +83 2845 5.100000 +83 2885 5.100000 +83 2920 5.100000 +83 2928 5.100000 +83 2938 5.100000 +83 2982 5.100000 +83 3016 5.100000 +83 3028 5.100000 +83 3040 5.100000 +84 31 5.100000 +84 59 5.100000 +84 61 5.100000 +84 87 5.100000 +84 139 5.100000 +84 157 5.100000 +84 182 5.100000 +84 205 5.100000 +84 210 5.100000 +84 225 5.100000 +84 323 5.100000 +84 325 5.100000 +84 385 5.100000 +84 489 5.100000 +84 497 5.100000 +84 524 5.100000 +84 552 5.100000 +84 571 5.100000 +84 653 5.100000 +84 673 5.100000 +84 677 5.100000 +84 681 5.100000 +84 727 5.100000 +84 778 5.100000 +84 780 5.100000 +84 791 5.100000 +84 820 5.100000 +84 877 5.100000 +84 941 5.100000 +84 1024 5.100000 +84 1027 5.100000 +84 1081 5.100000 +84 1092 5.100000 +84 1263 5.100000 +84 1293 5.100000 +84 1315 5.100000 +84 1341 5.100000 +84 1354 5.100000 +84 1494 5.100000 +84 1522 5.100000 +84 1528 5.100000 +84 1601 5.100000 +84 1679 5.100000 +84 1728 5.100000 +84 1823 5.100000 +84 1827 5.100000 +84 1899 5.100000 +84 1948 5.100000 +84 1957 5.100000 +84 2000 5.100000 +84 2035 5.100000 +84 2063 5.100000 +84 2100 5.100000 +84 2147 5.100000 +84 2221 5.100000 +84 2230 5.100000 +84 2288 5.100000 +84 2330 5.100000 +84 2343 5.100000 +84 2440 5.100000 +84 2503 5.100000 +84 2553 5.100000 +84 2605 5.100000 +84 2611 5.100000 +84 2645 5.100000 +84 2708 5.100000 +84 2722 5.100000 +84 2730 5.100000 +84 2786 5.100000 +84 2819 5.100000 +84 2912 5.100000 +84 2918 5.100000 +84 3019 5.100000 +84 3044 5.100000 +84 3158 5.100000 +84 3161 5.100000 +84 3172 5.100000 +85 23 5.100000 +85 37 5.100000 +85 106 5.100000 +85 143 5.100000 +85 233 5.100000 +85 295 5.100000 +85 302 5.100000 +85 367 5.100000 +85 406 5.100000 +85 465 5.100000 +85 489 5.100000 +85 556 5.100000 +85 616 5.100000 +85 651 5.100000 +85 664 5.100000 +85 718 5.100000 +85 764 5.100000 +85 801 5.100000 +85 979 5.100000 +85 1020 5.100000 +85 1029 5.100000 +85 1141 5.100000 +85 1218 5.100000 +85 1293 5.100000 +85 1296 5.100000 +85 1302 5.100000 +85 1340 5.100000 +85 1367 5.100000 +85 1470 5.100000 +85 1485 5.100000 +85 1488 5.100000 +85 1548 5.100000 +85 1748 5.100000 +85 1790 5.100000 +85 1890 5.100000 +85 2093 5.100000 +85 2116 5.100000 +85 2121 5.100000 +85 2216 5.100000 +85 2231 5.100000 +85 2240 5.100000 +85 2258 5.100000 +85 2337 5.100000 +85 2379 5.100000 +85 2415 5.100000 +85 2446 5.100000 +85 2473 5.100000 +85 2534 5.100000 +85 2582 5.100000 +85 2589 5.100000 +85 2711 5.100000 +85 2713 5.100000 +85 2734 5.100000 +85 2778 5.100000 +85 2815 5.100000 +85 2872 5.100000 +85 2884 5.100000 +85 2933 5.100000 +85 2963 5.100000 +85 2971 5.100000 +85 3007 5.100000 +85 3134 5.100000 +85 3137 5.100000 +85 3160 5.100000 +86 22 5.100000 +86 85 5.100000 +86 102 5.100000 +86 135 5.100000 +86 221 5.100000 +86 224 5.100000 +86 257 5.100000 +86 270 5.100000 +86 409 5.100000 +86 603 5.100000 +86 610 5.100000 +86 683 5.100000 +86 716 5.100000 +86 719 5.100000 +86 776 5.100000 +86 791 5.100000 +86 817 5.100000 +86 867 5.100000 +86 880 5.100000 +86 908 5.100000 +86 946 5.100000 +86 957 5.100000 +86 968 5.100000 +86 1005 5.100000 +86 1132 5.100000 +86 1164 5.100000 +86 1242 5.100000 +86 1278 5.100000 +86 1324 5.100000 +86 1346 5.100000 +86 1376 5.100000 +86 1396 5.100000 +86 1529 5.100000 +86 1552 5.100000 +86 1562 5.100000 +86 1609 5.100000 +86 1616 5.100000 +86 1642 5.100000 +86 1669 5.100000 +86 1698 5.100000 +86 1709 5.100000 +86 1821 5.100000 +86 1851 5.100000 +86 1891 5.100000 +86 1960 5.100000 +86 2043 5.100000 +86 2072 5.100000 +86 2076 5.100000 +86 2090 5.100000 +86 2094 5.100000 +86 2115 5.100000 +86 2151 5.100000 +86 2222 5.100000 +86 2318 5.100000 +86 2397 5.100000 +86 2429 5.100000 +86 2457 5.100000 +86 2510 5.100000 +86 2565 5.100000 +86 2712 5.100000 +86 2743 5.100000 +86 2826 5.100000 +86 2891 5.100000 +86 2965 5.100000 +86 3118 5.100000 +86 3159 5.100000 +87 21 5.100000 +87 30 5.100000 +87 96 5.100000 +87 145 5.100000 +87 175 5.100000 +87 204 5.100000 +87 283 5.100000 +87 358 5.100000 +87 416 5.100000 +87 557 5.100000 +87 621 5.100000 +87 639 5.100000 +87 715 5.100000 +87 738 5.100000 +87 752 5.100000 +87 829 5.100000 +87 860 5.100000 +87 983 5.100000 +87 992 5.100000 +87 1012 5.100000 +87 1044 5.100000 +87 1046 5.100000 +87 1072 5.100000 +87 1159 5.100000 +87 1173 5.100000 +87 1202 5.100000 +87 1363 5.100000 +87 1416 5.100000 +87 1560 5.100000 +87 1681 5.100000 +87 1763 5.100000 +87 1899 5.100000 +87 1972 5.100000 +87 1980 5.100000 +87 2089 5.100000 +87 2099 5.100000 +87 2117 5.100000 +87 2141 5.100000 +87 2193 5.100000 +87 2304 5.100000 +87 2333 5.100000 +87 2366 5.100000 +87 2491 5.100000 +87 2728 5.100000 +87 2749 5.100000 +87 2818 5.100000 +87 2827 5.100000 +87 2848 5.100000 +87 2926 5.100000 +87 2949 5.100000 +87 3148 5.100000 +87 3184 5.100000 +88 28 5.100000 +88 49 5.100000 +88 233 5.100000 +88 290 5.100000 +88 391 5.100000 +88 402 5.100000 +88 429 5.100000 +88 687 5.100000 +88 715 5.100000 +88 722 5.100000 +88 729 5.100000 +88 929 5.100000 +88 959 5.100000 +88 1007 5.100000 +88 1050 5.100000 +88 1061 5.100000 +88 1066 5.100000 +88 1076 5.100000 +88 1078 5.100000 +88 1099 5.100000 +88 1124 5.100000 +88 1156 5.100000 +88 1186 5.100000 +88 1231 5.100000 +88 1254 5.100000 +88 1304 5.100000 +88 1312 5.100000 +88 1329 5.100000 +88 1363 5.100000 +88 1387 5.100000 +88 1413 5.100000 +88 1448 5.100000 +88 1462 5.100000 +88 1463 5.100000 +88 1497 5.100000 +88 1689 5.100000 +88 1875 5.100000 +88 1894 5.100000 +88 1911 5.100000 +88 1914 5.100000 +88 1950 5.100000 +88 1983 5.100000 +88 2016 5.100000 +88 2021 5.100000 +88 2059 5.100000 +88 2061 5.100000 +88 2334 5.100000 +88 2415 5.100000 +88 2565 5.100000 +88 2589 5.100000 +88 2610 5.100000 +88 2650 5.100000 +88 2685 5.100000 +88 2744 5.100000 +88 2762 5.100000 +88 2787 5.100000 +88 2886 5.100000 +88 2948 5.100000 +88 3017 5.100000 +88 3126 5.100000 +89 48 5.100000 +89 442 5.100000 +89 467 5.100000 +89 510 5.100000 +89 519 5.100000 +89 539 5.100000 +89 782 5.100000 +89 835 5.100000 +89 838 5.100000 +89 880 5.100000 +89 912 5.100000 +89 937 5.100000 +89 1053 5.100000 +89 1123 5.100000 +89 1175 5.100000 +89 1271 5.100000 +89 1294 5.100000 +89 1312 5.100000 +89 1421 5.100000 +89 1426 5.100000 +89 1519 5.100000 +89 1558 5.100000 +89 1577 5.100000 +89 1589 5.100000 +89 1612 5.100000 +89 1690 5.100000 +89 1773 5.100000 +89 1807 5.100000 +89 1848 5.100000 +89 1867 5.100000 +89 1937 5.100000 +89 1950 5.100000 +89 1966 5.100000 +89 2006 5.100000 +89 2088 5.100000 +89 2098 5.100000 +89 2301 5.100000 +89 2410 5.100000 +89 2412 5.100000 +89 2441 5.100000 +89 2455 5.100000 +89 2601 5.100000 +89 2613 5.100000 +89 2690 5.100000 +89 2939 5.100000 +89 2944 5.100000 +89 2945 5.100000 +89 2949 5.100000 +89 3063 5.100000 +89 3164 5.100000 +90 104 5.100000 +90 105 5.100000 +90 114 5.100000 +90 120 5.100000 +90 228 5.100000 +90 246 5.100000 +90 280 5.100000 +90 303 5.100000 +90 336 5.100000 +90 345 5.100000 +90 376 5.100000 +90 377 5.100000 +90 417 5.100000 +90 489 5.100000 +90 497 5.100000 +90 535 5.100000 +90 537 5.100000 +90 582 5.100000 +90 699 5.100000 +90 729 5.100000 +90 744 5.100000 +90 746 5.100000 +90 751 5.100000 +90 771 5.100000 +90 796 5.100000 +90 825 5.100000 +90 839 5.100000 +90 861 5.100000 +90 985 5.100000 +90 1014 5.100000 +90 1090 5.100000 +90 1111 5.100000 +90 1161 5.100000 +90 1162 5.100000 +90 1225 5.100000 +90 1248 5.100000 +90 1254 5.100000 +90 1290 5.100000 +90 1296 5.100000 +90 1331 5.100000 +90 1343 5.100000 +90 1353 5.100000 +90 1411 5.100000 +90 1562 5.100000 +90 1577 5.100000 +90 1607 5.100000 +90 1629 5.100000 +90 1632 5.100000 +90 1761 5.100000 +90 1807 5.100000 +90 1824 5.100000 +90 1947 5.100000 +90 2016 5.100000 +90 2074 5.100000 +90 2235 5.100000 +90 2254 5.100000 +90 2381 5.100000 +90 2401 5.100000 +90 2403 5.100000 +90 2409 5.100000 +90 2429 5.100000 +90 2439 5.100000 +90 2463 5.100000 +90 2634 5.100000 +90 2661 5.100000 +90 2687 5.100000 +90 2753 5.100000 +90 2754 5.100000 +90 2846 5.100000 +90 2891 5.100000 +90 2920 5.100000 +90 2961 5.100000 +90 2970 5.100000 +90 3023 5.100000 +90 3080 5.100000 +90 3113 5.100000 +90 3118 5.100000 +91 17 5.100000 +91 89 5.100000 +91 149 5.100000 +91 191 5.100000 +91 192 5.100000 +91 236 5.100000 +91 250 5.100000 +91 280 5.100000 +91 291 5.100000 +91 295 5.100000 +91 346 5.100000 +91 362 5.100000 +91 509 5.100000 +91 513 5.100000 +91 579 5.100000 +91 627 5.100000 +91 652 5.100000 +91 699 5.100000 +91 793 5.100000 +91 823 5.100000 +91 948 5.100000 +91 1032 5.100000 +91 1089 5.100000 +91 1104 5.100000 +91 1117 5.100000 +91 1147 5.100000 +91 1153 5.100000 +91 1186 5.100000 +91 1239 5.100000 +91 1251 5.100000 +91 1283 5.100000 +91 1300 5.100000 +91 1303 5.100000 +91 1307 5.100000 +91 1350 5.100000 +91 1351 5.100000 +91 1381 5.100000 +91 1387 5.100000 +91 1486 5.100000 +91 1515 5.100000 +91 1541 5.100000 +91 1559 5.100000 +91 1603 5.100000 +91 1726 5.100000 +91 1754 5.100000 +91 1814 5.100000 +91 1865 5.100000 +91 1893 5.100000 +91 1902 5.100000 +91 1921 5.100000 +91 1937 5.100000 +91 2011 5.100000 +91 2022 5.100000 +91 2063 5.100000 +91 2108 5.100000 +91 2143 5.100000 +91 2173 5.100000 +91 2191 5.100000 +91 2302 5.100000 +91 2363 5.100000 +91 2385 5.100000 +91 2418 5.100000 +91 2430 5.100000 +91 2470 5.100000 +91 2513 5.100000 +91 2560 5.100000 +91 2568 5.100000 +91 2673 5.100000 +91 2680 5.100000 +91 2688 5.100000 +91 2770 5.100000 +91 2826 5.100000 +91 2835 5.100000 +91 2839 5.100000 +91 2840 5.100000 +91 2843 5.100000 +91 2883 5.100000 +91 2923 5.100000 +91 2997 5.100000 +91 3163 5.100000 +91 3173 5.100000 +92 99 5.100000 +92 121 5.100000 +92 123 5.100000 +92 153 5.100000 +92 278 5.100000 +92 378 5.100000 +92 441 5.100000 +92 507 5.100000 +92 571 5.100000 +92 622 5.100000 +92 624 5.100000 +92 713 5.100000 +92 816 5.100000 +92 830 5.100000 +92 1080 5.100000 +92 1083 5.100000 +92 1102 5.100000 +92 1116 5.100000 +92 1215 5.100000 +92 1226 5.100000 +92 1258 5.100000 +92 1336 5.100000 +92 1347 5.100000 +92 1353 5.100000 +92 1512 5.100000 +92 1522 5.100000 +92 1545 5.100000 +92 1582 5.100000 +92 1622 5.100000 +92 1640 5.100000 +92 1668 5.100000 +92 1767 5.100000 +92 1770 5.100000 +92 1771 5.100000 +92 1785 5.100000 +92 1810 5.100000 +92 1854 5.100000 +92 1906 5.100000 +92 2063 5.100000 +92 2143 5.100000 +92 2169 5.100000 +92 2190 5.100000 +92 2221 5.100000 +92 2315 5.100000 +92 2334 5.100000 +92 2472 5.100000 +92 2588 5.100000 +92 2603 5.100000 +92 2624 5.100000 +92 2684 5.100000 +92 2778 5.100000 +92 2788 5.100000 +92 2808 5.100000 +92 2809 5.100000 +92 2823 5.100000 +92 2853 5.100000 +92 2881 5.100000 +92 2924 5.100000 +92 2946 5.100000 +92 2999 5.100000 +92 3025 5.100000 +92 3063 5.100000 +92 3086 5.100000 +92 3122 5.100000 +93 4 5.100000 +93 20 5.100000 +93 78 5.100000 +93 100 5.100000 +93 110 5.100000 +93 137 5.100000 +93 173 5.100000 +93 477 5.100000 +93 537 5.100000 +93 623 5.100000 +93 808 5.100000 +93 891 5.100000 +93 956 5.100000 +93 995 5.100000 +93 1113 5.100000 +93 1119 5.100000 +93 1218 5.100000 +93 1222 5.100000 +93 1237 5.100000 +93 1316 5.100000 +93 1389 5.100000 +93 1392 5.100000 +93 1411 5.100000 +93 1477 5.100000 +93 1589 5.100000 +93 1718 5.100000 +93 1750 5.100000 +93 1784 5.100000 +93 1785 5.100000 +93 1824 5.100000 +93 1848 5.100000 +93 1865 5.100000 +93 2036 5.100000 +93 2045 5.100000 +93 2047 5.100000 +93 2072 5.100000 +93 2126 5.100000 +93 2140 5.100000 +93 2217 5.100000 +93 2266 5.100000 +93 2271 5.100000 +93 2284 5.100000 +93 2463 5.100000 +93 2560 5.100000 +93 2561 5.100000 +93 2632 5.100000 +93 2637 5.100000 +93 2697 5.100000 +93 2724 5.100000 +93 2725 5.100000 +93 2752 5.100000 +93 2811 5.100000 +93 2879 5.100000 +93 2965 5.100000 +93 2968 5.100000 +93 3055 5.100000 +93 3085 5.100000 +93 3125 5.100000 +93 3156 5.100000 +93 3160 5.100000 +93 3166 5.100000 +93 3195 5.100000 +94 26 5.100000 +94 98 5.100000 +94 158 5.100000 +94 180 5.100000 +94 249 5.100000 +94 307 5.100000 +94 347 5.100000 +94 387 5.100000 +94 445 5.100000 +94 448 5.100000 +94 537 5.100000 +94 560 5.100000 +94 632 5.100000 +94 686 5.100000 +94 874 5.100000 +94 949 5.100000 +94 951 5.100000 +94 1006 5.100000 +94 1056 5.100000 +94 1063 5.100000 +94 1153 5.100000 +94 1313 5.100000 +94 1337 5.100000 +94 1344 5.100000 +94 1365 5.100000 +94 1369 5.100000 +94 1374 5.100000 +94 1391 5.100000 +94 1407 5.100000 +94 1416 5.100000 +94 1442 5.100000 +94 1540 5.100000 +94 1577 5.100000 +94 1593 5.100000 +94 1623 5.100000 +94 1678 5.100000 +94 1710 5.100000 +94 1762 5.100000 +94 1808 5.100000 +94 1810 5.100000 +94 1915 5.100000 +94 1976 5.100000 +94 2041 5.100000 +94 2052 5.100000 +94 2063 5.100000 +94 2154 5.100000 +94 2208 5.100000 +94 2294 5.100000 +94 2295 5.100000 +94 2345 5.100000 +94 2399 5.100000 +94 2425 5.100000 +94 2448 5.100000 +94 2639 5.100000 +94 2729 5.100000 +94 2731 5.100000 +94 2763 5.100000 +94 2769 5.100000 +94 2772 5.100000 +94 2780 5.100000 +94 2788 5.100000 +94 2819 5.100000 +94 2853 5.100000 +94 2902 5.100000 +94 2928 5.100000 +94 2951 5.100000 +94 2971 5.100000 +94 2995 5.100000 +94 3150 5.100000 +94 3176 5.100000 +95 4 5.100000 +95 26 5.100000 +95 217 5.100000 +95 255 5.100000 +95 290 5.100000 +95 396 5.100000 +95 427 5.100000 +95 667 5.100000 +95 679 5.100000 +95 711 5.100000 +95 715 5.100000 +95 795 5.100000 +95 799 5.100000 +95 801 5.100000 +95 846 5.100000 +95 887 5.100000 +95 932 5.100000 +95 953 5.100000 +95 963 5.100000 +95 1045 5.100000 +95 1110 5.100000 +95 1166 5.100000 +95 1218 5.100000 +95 1272 5.100000 +95 1590 5.100000 +95 1599 5.100000 +95 1728 5.100000 +95 1798 5.100000 +95 1805 5.100000 +95 1857 5.100000 +95 1863 5.100000 +95 1900 5.100000 +95 1980 5.100000 +95 2060 5.100000 +95 2094 5.100000 +95 2099 5.100000 +95 2103 5.100000 +95 2156 5.100000 +95 2204 5.100000 +95 2263 5.100000 +95 2265 5.100000 +95 2314 5.100000 +95 2316 5.100000 +95 2344 5.100000 +95 2489 5.100000 +95 2525 5.100000 +95 2866 5.100000 +95 2874 5.100000 +95 2891 5.100000 +95 2936 5.100000 +95 3033 5.100000 +96 6 5.100000 +96 134 5.100000 +96 168 5.100000 +96 186 5.100000 +96 249 5.100000 +96 281 5.100000 +96 391 5.100000 +96 437 5.100000 +96 449 5.100000 +96 522 5.100000 +96 526 5.100000 +96 775 5.100000 +96 1082 5.100000 +96 1171 5.100000 +96 1206 5.100000 +96 1238 5.100000 +96 1265 5.100000 +96 1267 5.100000 +96 1305 5.100000 +96 1465 5.100000 +96 1487 5.100000 +96 1545 5.100000 +96 1637 5.100000 +96 1750 5.100000 +96 1795 5.100000 +96 1888 5.100000 +96 1920 5.100000 +96 1944 5.100000 +96 2067 5.100000 +96 2083 5.100000 +96 2157 5.100000 +96 2275 5.100000 +96 2286 5.100000 +96 2322 5.100000 +96 2447 5.100000 +96 2491 5.100000 +96 2522 5.100000 +96 2548 5.100000 +96 2555 5.100000 +96 2731 5.100000 +96 2801 5.100000 +96 2881 5.100000 +96 2954 5.100000 +96 2957 5.100000 +96 2965 5.100000 +96 2975 5.100000 +96 3050 5.100000 +96 3194 5.100000 +97 149 5.100000 +97 168 5.100000 +97 210 5.100000 +97 228 5.100000 +97 304 5.100000 +97 305 5.100000 +97 401 5.100000 +97 424 5.100000 +97 488 5.100000 +97 513 5.100000 +97 543 5.100000 +97 557 5.100000 +97 559 5.100000 +97 568 5.100000 +97 598 5.100000 +97 622 5.100000 +97 692 5.100000 +97 740 5.100000 +97 752 5.100000 +97 793 5.100000 +97 814 5.100000 +97 819 5.100000 +97 848 5.100000 +97 849 5.100000 +97 1019 5.100000 +97 1020 5.100000 +97 1035 5.100000 +97 1044 5.100000 +97 1077 5.100000 +97 1116 5.100000 +97 1161 5.100000 +97 1179 5.100000 +97 1202 5.100000 +97 1230 5.100000 +97 1264 5.100000 +97 1276 5.100000 +97 1354 5.100000 +97 1388 5.100000 +97 1464 5.100000 +97 1503 5.100000 +97 1584 5.100000 +97 1671 5.100000 +97 1710 5.100000 +97 1801 5.100000 +97 1828 5.100000 +97 1838 5.100000 +97 1840 5.100000 +97 2014 5.100000 +97 2027 5.100000 +97 2049 5.100000 +97 2058 5.100000 +97 2068 5.100000 +97 2159 5.100000 +97 2185 5.100000 +97 2284 5.100000 +97 2307 5.100000 +97 2442 5.100000 +97 2483 5.100000 +97 2567 5.100000 +97 2580 5.100000 +97 2613 5.100000 +97 2711 5.100000 +97 2785 5.100000 +97 2855 5.100000 +97 3082 5.100000 +97 3088 5.100000 +97 3172 5.100000 +98 4 5.100000 +98 119 5.100000 +98 129 5.100000 +98 213 5.100000 +98 310 5.100000 +98 372 5.100000 +98 429 5.100000 +98 445 5.100000 +98 489 5.100000 +98 553 5.100000 +98 765 5.100000 +98 777 5.100000 +98 902 5.100000 +98 912 5.100000 +98 939 5.100000 +98 1014 5.100000 +98 1232 5.100000 +98 1260 5.100000 +98 1308 5.100000 +98 1312 5.100000 +98 1417 5.100000 +98 1419 5.100000 +98 1453 5.100000 +98 1514 5.100000 +98 1542 5.100000 +98 1608 5.100000 +98 1661 5.100000 +98 1776 5.100000 +98 1821 5.100000 +98 1966 5.100000 +98 1972 5.100000 +98 2011 5.100000 +98 2023 5.100000 +98 2078 5.100000 +98 2114 5.100000 +98 2195 5.100000 +98 2201 5.100000 +98 2250 5.100000 +98 2254 5.100000 +98 2299 5.100000 +98 2302 5.100000 +98 2331 5.100000 +98 2371 5.100000 +98 2601 5.100000 +98 2628 5.100000 +98 2701 5.100000 +98 2707 5.100000 +98 2756 5.100000 +98 2799 5.100000 +98 2838 5.100000 +98 2893 5.100000 +98 2908 5.100000 +98 2947 5.100000 +98 2991 5.100000 +98 3074 5.100000 +99 48 5.100000 +99 53 5.100000 +99 62 5.100000 +99 75 5.100000 +99 115 5.100000 +99 188 5.100000 +99 208 5.100000 +99 267 5.100000 +99 327 5.100000 +99 340 5.100000 +99 447 5.100000 +99 455 5.100000 +99 457 5.100000 +99 568 5.100000 +99 591 5.100000 +99 643 5.100000 +99 645 5.100000 +99 657 5.100000 +99 738 5.100000 +99 768 5.100000 +99 779 5.100000 +99 801 5.100000 +99 815 5.100000 +99 823 5.100000 +99 827 5.100000 +99 885 5.100000 +99 918 5.100000 +99 920 5.100000 +99 951 5.100000 +99 963 5.100000 +99 984 5.100000 +99 1053 5.100000 +99 1077 5.100000 +99 1087 5.100000 +99 1165 5.100000 +99 1166 5.100000 +99 1342 5.100000 +99 1392 5.100000 +99 1486 5.100000 +99 1499 5.100000 +99 1569 5.100000 +99 1594 5.100000 +99 1722 5.100000 +99 1833 5.100000 +99 1956 5.100000 +99 1985 5.100000 +99 1997 5.100000 +99 2038 5.100000 +99 2100 5.100000 +99 2166 5.100000 +99 2268 5.100000 +99 2309 5.100000 +99 2381 5.100000 +99 2450 5.100000 +99 2604 5.100000 +99 2628 5.100000 +99 2636 5.100000 +99 2663 5.100000 +99 2749 5.100000 +99 2880 5.100000 +99 2935 5.100000 +99 3169 5.100000 +100 21 5.100000 +100 62 5.100000 +100 274 5.100000 +100 283 5.100000 +100 297 5.100000 +100 333 5.100000 +100 353 5.100000 +100 358 5.100000 +100 425 5.100000 +100 431 5.100000 +100 536 5.100000 +100 578 5.100000 +100 630 5.100000 +100 706 5.100000 +100 712 5.100000 +100 713 5.100000 +100 731 5.100000 +100 766 5.100000 +100 779 5.100000 +100 784 5.100000 +100 790 5.100000 +100 794 5.100000 +100 816 5.100000 +100 870 5.100000 +100 898 5.100000 +100 1073 5.100000 +100 1076 5.100000 +100 1092 5.100000 +100 1148 5.100000 +100 1263 5.100000 +100 1352 5.100000 +100 1368 5.100000 +100 1371 5.100000 +100 1379 5.100000 +100 1437 5.100000 +100 1487 5.100000 +100 1554 5.100000 +100 1719 5.100000 +100 1748 5.100000 +100 1761 5.100000 +100 1781 5.100000 +100 1831 5.100000 +100 1864 5.100000 +100 2109 5.100000 +100 2339 5.100000 +100 2347 5.100000 +100 2574 5.100000 +100 2621 5.100000 +100 2641 5.100000 +100 2682 5.100000 +100 2859 5.100000 +100 2911 5.100000 +100 3016 5.100000 +100 3037 5.100000 +100 3116 5.100000 +100 3117 5.100000 +101 40 5.100000 +101 68 5.100000 +101 207 5.100000 +101 217 5.100000 +101 257 5.100000 +101 271 5.100000 +101 312 5.100000 +101 334 5.100000 +101 354 5.100000 +101 379 5.100000 +101 381 5.100000 +101 398 5.100000 +101 417 5.100000 +101 465 5.100000 +101 533 5.100000 +101 544 5.100000 +101 595 5.100000 +101 617 5.100000 +101 670 5.100000 +101 764 5.100000 +101 778 5.100000 +101 848 5.100000 +101 878 5.100000 +101 892 5.100000 +101 1032 5.100000 +101 1101 5.100000 +101 1242 5.100000 +101 1384 5.100000 +101 1460 5.100000 +101 1461 5.100000 +101 1472 5.100000 +101 1485 5.100000 +101 1525 5.100000 +101 1529 5.100000 +101 1539 5.100000 +101 1583 5.100000 +101 1607 5.100000 +101 1746 5.100000 +101 1827 5.100000 +101 1849 5.100000 +101 1937 5.100000 +101 1994 5.100000 +101 2077 5.100000 +101 2177 5.100000 +101 2220 5.100000 +101 2243 5.100000 +101 2258 5.100000 +101 2302 5.100000 +101 2313 5.100000 +101 2321 5.100000 +101 2596 5.100000 +101 2615 5.100000 +101 2668 5.100000 +101 2687 5.100000 +101 2786 5.100000 +101 2809 5.100000 +101 2937 5.100000 +101 3003 5.100000 +101 3056 5.100000 +102 8 5.100000 +102 19 5.100000 +102 101 5.100000 +102 109 5.100000 +102 240 5.100000 +102 260 5.100000 +102 272 5.100000 +102 543 5.100000 +102 747 5.100000 +102 776 5.100000 +102 808 5.100000 +102 834 5.100000 +102 935 5.100000 +102 986 5.100000 +102 995 5.100000 +102 1007 5.100000 +102 1034 5.100000 +102 1191 5.100000 +102 1284 5.100000 +102 1467 5.100000 +102 1528 5.100000 +102 1556 5.100000 +102 1628 5.100000 +102 1689 5.100000 +102 1716 5.100000 +102 1750 5.100000 +102 1912 5.100000 +102 1923 5.100000 +102 1950 5.100000 +102 2098 5.100000 +102 2129 5.100000 +102 2200 5.100000 +102 2244 5.100000 +102 2311 5.100000 +102 2365 5.100000 +102 2372 5.100000 +102 2516 5.100000 +102 2568 5.100000 +102 2672 5.100000 +102 2705 5.100000 +102 2787 5.100000 +102 2803 5.100000 +102 2818 5.100000 +102 2820 5.100000 +102 2822 5.100000 +102 2823 5.100000 +102 2829 5.100000 +102 2839 5.100000 +102 2897 5.100000 +102 2910 5.100000 +102 2921 5.100000 +102 2963 5.100000 +102 3099 5.100000 +102 3124 5.100000 +102 3137 5.100000 +102 3174 5.100000 +103 55 5.100000 +103 72 5.100000 +103 146 5.100000 +103 158 5.100000 +103 310 5.100000 +103 367 5.100000 +103 384 5.100000 +103 393 5.100000 +103 440 5.100000 +103 480 5.100000 +103 500 5.100000 +103 517 5.100000 +103 565 5.100000 +103 612 5.100000 +103 649 5.100000 +103 688 5.100000 +103 714 5.100000 +103 731 5.100000 +103 754 5.100000 +103 776 5.100000 +103 1004 5.100000 +103 1102 5.100000 +103 1208 5.100000 +103 1307 5.100000 +103 1334 5.100000 +103 1339 5.100000 +103 1356 5.100000 +103 1361 5.100000 +103 1362 5.100000 +103 1427 5.100000 +103 1513 5.100000 +103 1528 5.100000 +103 1540 5.100000 +103 1630 5.100000 +103 1663 5.100000 +103 1672 5.100000 +103 1703 5.100000 +103 1726 5.100000 +103 1793 5.100000 +103 1858 5.100000 +103 1904 5.100000 +103 1936 5.100000 +103 1965 5.100000 +103 1999 5.100000 +103 2146 5.100000 +103 2205 5.100000 +103 2377 5.100000 +103 2397 5.100000 +103 2445 5.100000 +103 2460 5.100000 +103 2493 5.100000 +103 2549 5.100000 +103 2569 5.100000 +103 2579 5.100000 +103 2588 5.100000 +103 2595 5.100000 +103 2676 5.100000 +103 2747 5.100000 +103 2879 5.100000 +103 2892 5.100000 +103 2915 5.100000 +103 2939 5.100000 +103 2945 5.100000 +103 3051 5.100000 +103 3053 5.100000 +103 3074 5.100000 +103 3109 5.100000 +104 67 5.100000 +104 83 5.100000 +104 179 5.100000 +104 263 5.100000 +104 318 5.100000 +104 341 5.100000 +104 424 5.100000 +104 438 5.100000 +104 487 5.100000 +104 543 5.100000 +104 610 5.100000 +104 615 5.100000 +104 616 5.100000 +104 619 5.100000 +104 628 5.100000 +104 677 5.100000 +104 842 5.100000 +104 867 5.100000 +104 1025 5.100000 +104 1049 5.100000 +104 1144 5.100000 +104 1167 5.100000 +104 1176 5.100000 +104 1247 5.100000 +104 1250 5.100000 +104 1465 5.100000 +104 1511 5.100000 +104 1557 5.100000 +104 1567 5.100000 +104 1571 5.100000 +104 1626 5.100000 +104 1628 5.100000 +104 1670 5.100000 +104 1754 5.100000 +104 1921 5.100000 +104 1946 5.100000 +104 2102 5.100000 +104 2119 5.100000 +104 2145 5.100000 +104 2180 5.100000 +104 2270 5.100000 +104 2311 5.100000 +104 2322 5.100000 +104 2424 5.100000 +104 2435 5.100000 +104 2486 5.100000 +104 2533 5.100000 +104 2553 5.100000 +104 2639 5.100000 +104 2644 5.100000 +104 2691 5.100000 +104 2850 5.100000 +104 2857 5.100000 +104 2871 5.100000 +104 2890 5.100000 +104 2900 5.100000 +104 2961 5.100000 +104 2962 5.100000 +104 3043 5.100000 +104 3090 5.100000 +104 3149 5.100000 +104 3151 5.100000 +104 3182 5.100000 +104 3188 5.100000 +105 112 5.100000 +105 220 5.100000 +105 230 5.100000 +105 316 5.100000 +105 372 5.100000 +105 380 5.100000 +105 386 5.100000 +105 487 5.100000 +105 590 5.100000 +105 620 5.100000 +105 623 5.100000 +105 649 5.100000 +105 661 5.100000 +105 669 5.100000 +105 674 5.100000 +105 676 5.100000 +105 751 5.100000 +105 757 5.100000 +105 769 5.100000 +105 811 5.100000 +105 854 5.100000 +105 888 5.100000 +105 897 5.100000 +105 1120 5.100000 +105 1149 5.100000 +105 1202 5.100000 +105 1243 5.100000 +105 1330 5.100000 +105 1331 5.100000 +105 1457 5.100000 +105 1484 5.100000 +105 1503 5.100000 +105 1601 5.100000 +105 1623 5.100000 +105 1767 5.100000 +105 1829 5.100000 +105 1887 5.100000 +105 1978 5.100000 +105 1987 5.100000 +105 2067 5.100000 +105 2096 5.100000 +105 2243 5.100000 +105 2273 5.100000 +105 2289 5.100000 +105 2336 5.100000 +105 2385 5.100000 +105 2470 5.100000 +105 2772 5.100000 +105 2893 5.100000 +105 2920 5.100000 +105 2941 5.100000 +105 2955 5.100000 +105 2976 5.100000 +105 2978 5.100000 +105 2998 5.100000 +105 3018 5.100000 +105 3122 5.100000 +105 3170 5.100000 +106 8 5.100000 +106 82 5.100000 +106 261 5.100000 +106 431 5.100000 +106 502 5.100000 +106 528 5.100000 +106 539 5.100000 +106 584 5.100000 +106 587 5.100000 +106 625 5.100000 +106 665 5.100000 +106 766 5.100000 +106 856 5.100000 +106 962 5.100000 +106 970 5.100000 +106 984 5.100000 +106 988 5.100000 +106 1007 5.100000 +106 1021 5.100000 +106 1071 5.100000 +106 1091 5.100000 +106 1168 5.100000 +106 1198 5.100000 +106 1205 5.100000 +106 1229 5.100000 +106 1288 5.100000 +106 1315 5.100000 +106 1350 5.100000 +106 1502 5.100000 +106 1518 5.100000 +106 1660 5.100000 +106 1680 5.100000 +106 1771 5.100000 +106 1872 5.100000 +106 1884 5.100000 +106 1913 5.100000 +106 1948 5.100000 +106 1950 5.100000 +106 1970 5.100000 +106 2140 5.100000 +106 2161 5.100000 +106 2218 5.100000 +106 2320 5.100000 +106 2441 5.100000 +106 2455 5.100000 +106 2520 5.100000 +106 2592 5.100000 +106 2626 5.100000 +106 2632 5.100000 +106 2782 5.100000 +106 2873 5.100000 +106 2876 5.100000 +106 3064 5.100000 +106 3077 5.100000 +106 3080 5.100000 +106 3104 5.100000 +106 3196 5.100000 +107 201 5.100000 +107 203 5.100000 +107 212 5.100000 +107 218 5.100000 +107 229 5.100000 +107 250 5.100000 +107 309 5.100000 +107 394 5.100000 +107 418 5.100000 +107 510 5.100000 +107 559 5.100000 +107 573 5.100000 +107 706 5.100000 +107 735 5.100000 +107 752 5.100000 +107 834 5.100000 +107 866 5.100000 +107 875 5.100000 +107 876 5.100000 +107 1117 5.100000 +107 1162 5.100000 +107 1216 5.100000 +107 1252 5.100000 +107 1278 5.100000 +107 1289 5.100000 +107 1322 5.100000 +107 1340 5.100000 +107 1363 5.100000 +107 1388 5.100000 +107 1413 5.100000 +107 1442 5.100000 +107 1496 5.100000 +107 1512 5.100000 +107 1565 5.100000 +107 1636 5.100000 +107 1639 5.100000 +107 1678 5.100000 +107 1765 5.100000 +107 1817 5.100000 +107 1829 5.100000 +107 1847 5.100000 +107 1848 5.100000 +107 1874 5.100000 +107 1972 5.100000 +107 1976 5.100000 +107 1988 5.100000 +107 2007 5.100000 +107 2078 5.100000 +107 2208 5.100000 +107 2327 5.100000 +107 2395 5.100000 +107 2465 5.100000 +107 2483 5.100000 +107 2537 5.100000 +107 2620 5.100000 +107 2656 5.100000 +107 2691 5.100000 +107 2711 5.100000 +107 2768 5.100000 +107 2879 5.100000 +107 2985 5.100000 +107 3001 5.100000 +107 3059 5.100000 +107 3084 5.100000 +107 3184 5.100000 +108 7 5.100000 +108 21 5.100000 +108 93 5.100000 +108 112 5.100000 +108 225 5.100000 +108 366 5.100000 +108 505 5.100000 +108 565 5.100000 +108 580 5.100000 +108 621 5.100000 +108 662 5.100000 +108 681 5.100000 +108 697 5.100000 +108 699 5.100000 +108 781 5.100000 +108 863 5.100000 +108 866 5.100000 +108 1160 5.100000 +108 1214 5.100000 +108 1327 5.100000 +108 1349 5.100000 +108 1479 5.100000 +108 1522 5.100000 +108 1589 5.100000 +108 1625 5.100000 +108 1672 5.100000 +108 1751 5.100000 +108 1773 5.100000 +108 1807 5.100000 +108 1852 5.100000 +108 1857 5.100000 +108 1974 5.100000 +108 2013 5.100000 +108 2054 5.100000 +108 2114 5.100000 +108 2181 5.100000 +108 2196 5.100000 +108 2235 5.100000 +108 2256 5.100000 +108 2257 5.100000 +108 2258 5.100000 +108 2269 5.100000 +108 2312 5.100000 +108 2412 5.100000 +108 2451 5.100000 +108 2493 5.100000 +108 2505 5.100000 +108 2517 5.100000 +108 2841 5.100000 +108 2939 5.100000 +108 2984 5.100000 +108 3052 5.100000 +108 3092 5.100000 +108 3123 5.100000 +108 3131 5.100000 +108 3170 5.100000 +108 3175 5.100000 +108 3195 5.100000 +109 153 5.100000 +109 438 5.100000 +109 472 5.100000 +109 490 5.100000 +109 505 5.100000 +109 522 5.100000 +109 581 5.100000 +109 701 5.100000 +109 712 5.100000 +109 731 5.100000 +109 740 5.100000 +109 840 5.100000 +109 905 5.100000 +109 918 5.100000 +109 922 5.100000 +109 942 5.100000 +109 965 5.100000 +109 1055 5.100000 +109 1240 5.100000 +109 1269 5.100000 +109 1272 5.100000 +109 1404 5.100000 +109 1406 5.100000 +109 1499 5.100000 +109 1506 5.100000 +109 1507 5.100000 +109 1565 5.100000 +109 1568 5.100000 +109 1656 5.100000 +109 1706 5.100000 +109 1884 5.100000 +109 1924 5.100000 +109 1925 5.100000 +109 1940 5.100000 +109 1962 5.100000 +109 2007 5.100000 +109 2054 5.100000 +109 2055 5.100000 +109 2071 5.100000 +109 2072 5.100000 +109 2167 5.100000 +109 2299 5.100000 +109 2345 5.100000 +109 2370 5.100000 +109 2613 5.100000 +109 2625 5.100000 +109 2701 5.100000 +109 2879 5.100000 +109 2903 5.100000 +109 2905 5.100000 +109 2908 5.100000 +109 2977 5.100000 +109 3060 5.100000 +109 3074 5.100000 +110 47 5.100000 +110 53 5.100000 +110 116 5.100000 +110 127 5.100000 +110 216 5.100000 +110 259 5.100000 +110 328 5.100000 +110 555 5.100000 +110 611 5.100000 +110 621 5.100000 +110 814 5.100000 +110 854 5.100000 +110 895 5.100000 +110 910 5.100000 +110 1017 5.100000 +110 1022 5.100000 +110 1198 5.100000 +110 1215 5.100000 +110 1238 5.100000 +110 1285 5.100000 +110 1378 5.100000 +110 1448 5.100000 +110 1561 5.100000 +110 1780 5.100000 +110 1860 5.100000 +110 1914 5.100000 +110 1917 5.100000 +110 1934 5.100000 +110 1954 5.100000 +110 1985 5.100000 +110 1989 5.100000 +110 2074 5.100000 +110 2127 5.100000 +110 2225 5.100000 +110 2254 5.100000 +110 2268 5.100000 +110 2287 5.100000 +110 2297 5.100000 +110 2323 5.100000 +110 2376 5.100000 +110 2379 5.100000 +110 2438 5.100000 +110 2513 5.100000 +110 2523 5.100000 +110 2584 5.100000 +110 2610 5.100000 +110 2628 5.100000 +110 2638 5.100000 +110 2660 5.100000 +110 2752 5.100000 +110 2829 5.100000 +110 2871 5.100000 +110 2900 5.100000 +110 2967 5.100000 +110 2968 5.100000 +110 2973 5.100000 +110 2997 5.100000 +110 3088 5.100000 +110 3097 5.100000 +110 3124 5.100000 +110 3146 5.100000 +111 42 5.100000 +111 56 5.100000 +111 61 5.100000 +111 81 5.100000 +111 100 5.100000 +111 123 5.100000 +111 151 5.100000 +111 233 5.100000 +111 338 5.100000 +111 360 5.100000 +111 396 5.100000 +111 405 5.100000 +111 523 5.100000 +111 631 5.100000 +111 811 5.100000 +111 813 5.100000 +111 880 5.100000 +111 915 5.100000 +111 928 5.100000 +111 957 5.100000 +111 1024 5.100000 +111 1035 5.100000 +111 1052 5.100000 +111 1060 5.100000 +111 1093 5.100000 +111 1184 5.100000 +111 1232 5.100000 +111 1234 5.100000 +111 1245 5.100000 +111 1325 5.100000 +111 1332 5.100000 +111 1333 5.100000 +111 1365 5.100000 +111 1434 5.100000 +111 1499 5.100000 +111 1588 5.100000 +111 1853 5.100000 +111 1863 5.100000 +111 1905 5.100000 +111 1949 5.100000 +111 1961 5.100000 +111 1970 5.100000 +111 2051 5.100000 +111 2118 5.100000 +111 2157 5.100000 +111 2241 5.100000 +111 2243 5.100000 +111 2256 5.100000 +111 2281 5.100000 +111 2375 5.100000 +111 2392 5.100000 +111 2398 5.100000 +111 2536 5.100000 +111 2552 5.100000 +111 2587 5.100000 +111 2664 5.100000 +111 2680 5.100000 +111 2692 5.100000 +111 2876 5.100000 +111 3024 5.100000 +111 3029 5.100000 +112 34 5.100000 +112 50 5.100000 +112 64 5.100000 +112 178 5.100000 +112 223 5.100000 +112 322 5.100000 +112 398 5.100000 +112 439 5.100000 +112 458 5.100000 +112 464 5.100000 +112 572 5.100000 +112 590 5.100000 +112 591 5.100000 +112 592 5.100000 +112 622 5.100000 +112 661 5.100000 +112 700 5.100000 +112 712 5.100000 +112 842 5.100000 +112 893 5.100000 +112 926 5.100000 +112 985 5.100000 +112 990 5.100000 +112 1078 5.100000 +112 1084 5.100000 +112 1108 5.100000 +112 1123 5.100000 +112 1166 5.100000 +112 1169 5.100000 +112 1274 5.100000 +112 1316 5.100000 +112 1364 5.100000 +112 1369 5.100000 +112 1683 5.100000 +112 1750 5.100000 +112 1780 5.100000 +112 1830 5.100000 +112 1888 5.100000 +112 1930 5.100000 +112 1937 5.100000 +112 1985 5.100000 +112 2082 5.100000 +112 2102 5.100000 +112 2103 5.100000 +112 2189 5.100000 +112 2192 5.100000 +112 2230 5.100000 +112 2282 5.100000 +112 2299 5.100000 +112 2307 5.100000 +112 2326 5.100000 +112 2366 5.100000 +112 2421 5.100000 +112 2482 5.100000 +112 2586 5.100000 +112 2593 5.100000 +112 2607 5.100000 +112 2611 5.100000 +112 2710 5.100000 +112 2712 5.100000 +112 2754 5.100000 +112 2760 5.100000 +112 2839 5.100000 +112 2854 5.100000 +112 2905 5.100000 +112 2906 5.100000 +112 3126 5.100000 +113 1 5.100000 +113 80 5.100000 +113 164 5.100000 +113 175 5.100000 +113 318 5.100000 +113 391 5.100000 +113 416 5.100000 +113 541 5.100000 +113 575 5.100000 +113 685 5.100000 +113 804 5.100000 +113 808 5.100000 +113 809 5.100000 +113 921 5.100000 +113 956 5.100000 +113 965 5.100000 +113 970 5.100000 +113 1114 5.100000 +113 1131 5.100000 +113 1212 5.100000 +113 1224 5.100000 +113 1291 5.100000 +113 1324 5.100000 +113 1336 5.100000 +113 1376 5.100000 +113 1377 5.100000 +113 1378 5.100000 +113 1380 5.100000 +113 1419 5.100000 +113 1444 5.100000 +113 1449 5.100000 +113 1457 5.100000 +113 1459 5.100000 +113 1543 5.100000 +113 1555 5.100000 +113 1571 5.100000 +113 1582 5.100000 +113 1796 5.100000 +113 1831 5.100000 +113 1864 5.100000 +113 2081 5.100000 +113 2135 5.100000 +113 2254 5.100000 +113 2277 5.100000 +113 2335 5.100000 +113 2343 5.100000 +113 2360 5.100000 +113 2460 5.100000 +113 2469 5.100000 +113 2480 5.100000 +113 2564 5.100000 +113 2578 5.100000 +113 2603 5.100000 +113 2692 5.100000 +113 2709 5.100000 +113 2716 5.100000 +113 2727 5.100000 +113 2788 5.100000 +113 2792 5.100000 +113 2804 5.100000 +113 2850 5.100000 +113 3081 5.100000 +113 3144 5.100000 +113 3150 5.100000 +113 3184 5.100000 +114 16 5.100000 +114 33 5.100000 +114 40 5.100000 +114 150 5.100000 +114 188 5.100000 +114 193 5.100000 +114 323 5.100000 +114 463 5.100000 +114 487 5.100000 +114 495 5.100000 +114 574 5.100000 +114 649 5.100000 +114 727 5.100000 +114 792 5.100000 +114 856 5.100000 +114 888 5.100000 +114 941 5.100000 +114 993 5.100000 +114 1043 5.100000 +114 1056 5.100000 +114 1089 5.100000 +114 1110 5.100000 +114 1113 5.100000 +114 1146 5.100000 +114 1182 5.100000 +114 1217 5.100000 +114 1258 5.100000 +114 1315 5.100000 +114 1331 5.100000 +114 1424 5.100000 +114 1439 5.100000 +114 1478 5.100000 +114 1576 5.100000 +114 1596 5.100000 +114 1602 5.100000 +114 1647 5.100000 +114 1669 5.100000 +114 1678 5.100000 +114 1696 5.100000 +114 1729 5.100000 +114 1760 5.100000 +114 1762 5.100000 +114 1780 5.100000 +114 1781 5.100000 +114 1843 5.100000 +114 1859 5.100000 +114 2005 5.100000 +114 2011 5.100000 +114 2025 5.100000 +114 2078 5.100000 +114 2108 5.100000 +114 2200 5.100000 +114 2250 5.100000 +114 2316 5.100000 +114 2392 5.100000 +114 2423 5.100000 +114 2432 5.100000 +114 2443 5.100000 +114 2586 5.100000 +114 2593 5.100000 +114 2608 5.100000 +114 2661 5.100000 +114 2682 5.100000 +114 2736 5.100000 +114 2760 5.100000 +114 2785 5.100000 +114 2794 5.100000 +114 2856 5.100000 +114 2974 5.100000 +114 3049 5.100000 +114 3052 5.100000 +114 3110 5.100000 +114 3113 5.100000 +114 3147 5.100000 +115 32 5.100000 +115 35 5.100000 +115 38 5.100000 +115 52 5.100000 +115 101 5.100000 +115 114 5.100000 +115 135 5.100000 +115 149 5.100000 +115 292 5.100000 +115 327 5.100000 +115 335 5.100000 +115 344 5.100000 +115 372 5.100000 +115 392 5.100000 +115 400 5.100000 +115 422 5.100000 +115 455 5.100000 +115 495 5.100000 +115 520 5.100000 +115 588 5.100000 +115 768 5.100000 +115 777 5.100000 +115 959 5.100000 +115 978 5.100000 +115 1091 5.100000 +115 1126 5.100000 +115 1147 5.100000 +115 1150 5.100000 +115 1155 5.100000 +115 1190 5.100000 +115 1262 5.100000 +115 1306 5.100000 +115 1376 5.100000 +115 1439 5.100000 +115 1580 5.100000 +115 1606 5.100000 +115 1643 5.100000 +115 1660 5.100000 +115 1679 5.100000 +115 1681 5.100000 +115 1728 5.100000 +115 1824 5.100000 +115 1834 5.100000 +115 1876 5.100000 +115 2030 5.100000 +115 2069 5.100000 +115 2142 5.100000 +115 2313 5.100000 +115 2320 5.100000 +115 2350 5.100000 +115 2353 5.100000 +115 2386 5.100000 +115 2393 5.100000 +115 2583 5.100000 +115 2591 5.100000 +115 2657 5.100000 +115 2697 5.100000 +115 2718 5.100000 +115 2745 5.100000 +115 2749 5.100000 +115 2787 5.100000 +115 2924 5.100000 +115 3062 5.100000 +115 3139 5.100000 +115 3174 5.100000 +115 3196 5.100000 +116 26 5.100000 +116 55 5.100000 +116 89 5.100000 +116 135 5.100000 +116 203 5.100000 +116 385 5.100000 +116 396 5.100000 +116 446 5.100000 +116 484 5.100000 +116 837 5.100000 +116 856 5.100000 +116 899 5.100000 +116 1108 5.100000 +116 1279 5.100000 +116 1283 5.100000 +116 1297 5.100000 +116 1312 5.100000 +116 1387 5.100000 +116 1401 5.100000 +116 1426 5.100000 +116 1440 5.100000 +116 1443 5.100000 +116 1471 5.100000 +116 1487 5.100000 +116 1511 5.100000 +116 1584 5.100000 +116 1600 5.100000 +116 1621 5.100000 +116 1669 5.100000 +116 1694 5.100000 +116 1757 5.100000 +116 1784 5.100000 +116 1952 5.100000 +116 2005 5.100000 +116 2019 5.100000 +116 2124 5.100000 +116 2190 5.100000 +116 2193 5.100000 +116 2249 5.100000 +116 2251 5.100000 +116 2284 5.100000 +116 2337 5.100000 +116 2465 5.100000 +116 2468 5.100000 +116 2560 5.100000 +116 2708 5.100000 +116 2772 5.100000 +116 2779 5.100000 +116 2828 5.100000 +116 2845 5.100000 +116 2853 5.100000 +116 2918 5.100000 +116 2921 5.100000 +116 2933 5.100000 +116 2998 5.100000 +116 3028 5.100000 +116 3047 5.100000 +116 3191 5.100000 +117 9 5.100000 +117 57 5.100000 +117 241 5.100000 +117 252 5.100000 +117 301 5.100000 +117 311 5.100000 +117 377 5.100000 +117 523 5.100000 +117 567 5.100000 +117 578 5.100000 +117 640 5.100000 +117 700 5.100000 +117 726 5.100000 +117 883 5.100000 +117 889 5.100000 +117 904 5.100000 +117 927 5.100000 +117 1002 5.100000 +117 1023 5.100000 +117 1088 5.100000 +117 1090 5.100000 +117 1133 5.100000 +117 1307 5.100000 +117 1348 5.100000 +117 1511 5.100000 +117 1626 5.100000 +117 1647 5.100000 +117 1665 5.100000 +117 1687 5.100000 +117 1699 5.100000 +117 1707 5.100000 +117 1708 5.100000 +117 1824 5.100000 +117 1838 5.100000 +117 1881 5.100000 +117 1898 5.100000 +117 1903 5.100000 +117 1989 5.100000 +117 2000 5.100000 +117 2008 5.100000 +117 2051 5.100000 +117 2071 5.100000 +117 2079 5.100000 +117 2084 5.100000 +117 2151 5.100000 +117 2295 5.100000 +117 2333 5.100000 +117 2340 5.100000 +117 2468 5.100000 +117 2522 5.100000 +117 2604 5.100000 +117 2642 5.100000 +117 2649 5.100000 +117 2688 5.100000 +117 2790 5.100000 +117 2843 5.100000 +117 2985 5.100000 +117 3130 5.100000 +118 9 5.100000 +118 89 5.100000 +118 117 5.100000 +118 173 5.100000 +118 185 5.100000 +118 267 5.100000 +118 268 5.100000 +118 308 5.100000 +118 319 5.100000 +118 362 5.100000 +118 364 5.100000 +118 555 5.100000 +118 599 5.100000 +118 614 5.100000 +118 659 5.100000 +118 692 5.100000 +118 697 5.100000 +118 922 5.100000 +118 939 5.100000 +118 1010 5.100000 +118 1087 5.100000 +118 1127 5.100000 +118 1132 5.100000 +118 1152 5.100000 +118 1236 5.100000 +118 1361 5.100000 +118 1365 5.100000 +118 1584 5.100000 +118 1610 5.100000 +118 1661 5.100000 +118 1701 5.100000 +118 1813 5.100000 +118 1905 5.100000 +118 1954 5.100000 +118 1979 5.100000 +118 2006 5.100000 +118 2008 5.100000 +118 2136 5.100000 +118 2254 5.100000 +118 2328 5.100000 +118 2364 5.100000 +118 2421 5.100000 +118 2478 5.100000 +118 2514 5.100000 +118 2553 5.100000 +118 2578 5.100000 +118 2581 5.100000 +118 2587 5.100000 +118 2598 5.100000 +118 2608 5.100000 +118 2623 5.100000 +118 2664 5.100000 +118 2686 5.100000 +118 2719 5.100000 +118 2733 5.100000 +118 2774 5.100000 +118 2845 5.100000 +118 2956 5.100000 +118 2990 5.100000 +118 3050 5.100000 +118 3071 5.100000 +118 3133 5.100000 +118 3155 5.100000 +118 3163 5.100000 +118 3186 5.100000 +119 90 5.100000 +119 189 5.100000 +119 200 5.100000 +119 256 5.100000 +119 347 5.100000 +119 553 5.100000 +119 559 5.100000 +119 635 5.100000 +119 641 5.100000 +119 645 5.100000 +119 757 5.100000 +119 859 5.100000 +119 880 5.100000 +119 885 5.100000 +119 929 5.100000 +119 956 5.100000 +119 1010 5.100000 +119 1041 5.100000 +119 1056 5.100000 +119 1061 5.100000 +119 1097 5.100000 +119 1142 5.100000 +119 1168 5.100000 +119 1180 5.100000 +119 1240 5.100000 +119 1268 5.100000 +119 1272 5.100000 +119 1329 5.100000 +119 1347 5.100000 +119 1378 5.100000 +119 1386 5.100000 +119 1422 5.100000 +119 1702 5.100000 +119 1729 5.100000 +119 1791 5.100000 +119 1810 5.100000 +119 1894 5.100000 +119 1958 5.100000 +119 1962 5.100000 +119 2004 5.100000 +119 2015 5.100000 +119 2057 5.100000 +119 2087 5.100000 +119 2100 5.100000 +119 2236 5.100000 +119 2275 5.100000 +119 2387 5.100000 +119 2410 5.100000 +119 2570 5.100000 +119 2644 5.100000 +119 2666 5.100000 +119 2698 5.100000 +119 2718 5.100000 +119 2817 5.100000 +119 2829 5.100000 +119 2840 5.100000 +119 2845 5.100000 +119 2903 5.100000 +119 2963 5.100000 +119 3060 5.100000 +119 3105 5.100000 +120 12 5.100000 +120 134 5.100000 +120 195 5.100000 +120 287 5.100000 +120 356 5.100000 +120 381 5.100000 +120 424 5.100000 +120 433 5.100000 +120 446 5.100000 +120 482 5.100000 +120 486 5.100000 +120 527 5.100000 +120 531 5.100000 +120 664 5.100000 +120 760 5.100000 +120 769 5.100000 +120 783 5.100000 +120 830 5.100000 +120 974 5.100000 +120 978 5.100000 +120 1024 5.100000 +120 1157 5.100000 +120 1263 5.100000 +120 1340 5.100000 +120 1344 5.100000 +120 1623 5.100000 +120 1684 5.100000 +120 1686 5.100000 +120 1694 5.100000 +120 1731 5.100000 +120 1750 5.100000 +120 1789 5.100000 +120 1843 5.100000 +120 1851 5.100000 +120 1863 5.100000 +120 1944 5.100000 +120 2042 5.100000 +120 2089 5.100000 +120 2164 5.100000 +120 2216 5.100000 +120 2229 5.100000 +120 2257 5.100000 +120 2325 5.100000 +120 2405 5.100000 +120 2566 5.100000 +120 2608 5.100000 +120 2716 5.100000 +120 2855 5.100000 +120 2957 5.100000 +120 2978 5.100000 +120 3003 5.100000 +120 3126 5.100000 +120 3138 5.100000 +120 3173 5.100000 +121 7 5.100000 +121 49 5.100000 +121 53 5.100000 +121 94 5.100000 +121 162 5.100000 +121 167 5.100000 +121 534 5.100000 +121 543 5.100000 +121 619 5.100000 +121 640 5.100000 +121 680 5.100000 +121 723 5.100000 +121 797 5.100000 +121 895 5.100000 +121 963 5.100000 +121 1042 5.100000 +121 1052 5.100000 +121 1073 5.100000 +121 1080 5.100000 +121 1102 5.100000 +121 1122 5.100000 +121 1222 5.100000 +121 1234 5.100000 +121 1269 5.100000 +121 1324 5.100000 +121 1416 5.100000 +121 1599 5.100000 +121 1649 5.100000 +121 1708 5.100000 +121 1733 5.100000 +121 1760 5.100000 +121 1771 5.100000 +121 1803 5.100000 +121 1852 5.100000 +121 2000 5.100000 +121 2067 5.100000 +121 2083 5.100000 +121 2092 5.100000 +121 2107 5.100000 +121 2278 5.100000 +121 2377 5.100000 +121 2380 5.100000 +121 2419 5.100000 +121 2494 5.100000 +121 2701 5.100000 +121 2909 5.100000 +121 3020 5.100000 +121 3032 5.100000 +121 3066 5.100000 +121 3141 5.100000 +121 3166 5.100000 +121 3183 5.100000 +122 8 5.100000 +122 40 5.100000 +122 90 5.100000 +122 132 5.100000 +122 138 5.100000 +122 160 5.100000 +122 181 5.100000 +122 388 5.100000 +122 410 5.100000 +122 540 5.100000 +122 598 5.100000 +122 613 5.100000 +122 632 5.100000 +122 699 5.100000 +122 729 5.100000 +122 773 5.100000 +122 813 5.100000 +122 1145 5.100000 +122 1165 5.100000 +122 1203 5.100000 +122 1347 5.100000 +122 1422 5.100000 +122 1485 5.100000 +122 1525 5.100000 +122 1539 5.100000 +122 1550 5.100000 +122 1574 5.100000 +122 1582 5.100000 +122 1585 5.100000 +122 1645 5.100000 +122 1678 5.100000 +122 1708 5.100000 +122 1768 5.100000 +122 1787 5.100000 +122 1889 5.100000 +122 1970 5.100000 +122 1979 5.100000 +122 2000 5.100000 +122 2058 5.100000 +122 2064 5.100000 +122 2149 5.100000 +122 2165 5.100000 +122 2217 5.100000 +122 2317 5.100000 +122 2460 5.100000 +122 2470 5.100000 +122 2482 5.100000 +122 2490 5.100000 +122 2533 5.100000 +122 2545 5.100000 +122 2546 5.100000 +122 2571 5.100000 +122 2641 5.100000 +122 2709 5.100000 +122 2744 5.100000 +122 2775 5.100000 +122 2827 5.100000 +122 2845 5.100000 +122 2864 5.100000 +122 2889 5.100000 +122 2938 5.100000 +122 2985 5.100000 +122 3018 5.100000 +122 3022 5.100000 +122 3044 5.100000 +122 3064 5.100000 +122 3073 5.100000 +122 3101 5.100000 +122 3102 5.100000 +123 7 5.100000 +123 36 5.100000 +123 58 5.100000 +123 124 5.100000 +123 126 5.100000 +123 250 5.100000 +123 313 5.100000 +123 318 5.100000 +123 353 5.100000 +123 383 5.100000 +123 416 5.100000 +123 453 5.100000 +123 711 5.100000 +123 917 5.100000 +123 1107 5.100000 +123 1222 5.100000 +123 1306 5.100000 +123 1325 5.100000 +123 1358 5.100000 +123 1498 5.100000 +123 1581 5.100000 +123 1676 5.100000 +123 1720 5.100000 +123 1730 5.100000 +123 1794 5.100000 +123 1863 5.100000 +123 1901 5.100000 +123 1935 5.100000 +123 1962 5.100000 +123 1988 5.100000 +123 1992 5.100000 +123 2008 5.100000 +123 2032 5.100000 +123 2161 5.100000 +123 2239 5.100000 +123 2273 5.100000 +123 2306 5.100000 +123 2402 5.100000 +123 2499 5.100000 +123 2528 5.100000 +123 2690 5.100000 +123 2717 5.100000 +123 2751 5.100000 +123 2815 5.100000 +123 2920 5.100000 +123 2953 5.100000 +123 3129 5.100000 +123 3184 5.100000 +124 31 5.100000 +124 41 5.100000 +124 130 5.100000 +124 136 5.100000 +124 147 5.100000 +124 148 5.100000 +124 216 5.100000 +124 321 5.100000 +124 394 5.100000 +124 435 5.100000 +124 470 5.100000 +124 474 5.100000 +124 485 5.100000 +124 495 5.100000 +124 509 5.100000 +124 521 5.100000 +124 535 5.100000 +124 628 5.100000 +124 661 5.100000 +124 682 5.100000 +124 705 5.100000 +124 724 5.100000 +124 739 5.100000 +124 747 5.100000 +124 778 5.100000 +124 831 5.100000 +124 870 5.100000 +124 905 5.100000 +124 963 5.100000 +124 995 5.100000 +124 1131 5.100000 +124 1160 5.100000 +124 1166 5.100000 +124 1167 5.100000 +124 1178 5.100000 +124 1193 5.100000 +124 1211 5.100000 +124 1218 5.100000 +124 1370 5.100000 +124 1454 5.100000 +124 1459 5.100000 +124 1474 5.100000 +124 1497 5.100000 +124 1500 5.100000 +124 1534 5.100000 +124 1542 5.100000 +124 1562 5.100000 +124 1606 5.100000 +124 1631 5.100000 +124 1772 5.100000 +124 1826 5.100000 +124 1856 5.100000 +124 1867 5.100000 +124 1875 5.100000 +124 1983 5.100000 +124 2003 5.100000 +124 2072 5.100000 +124 2117 5.100000 +124 2124 5.100000 +124 2134 5.100000 +124 2153 5.100000 +124 2202 5.100000 +124 2230 5.100000 +124 2289 5.100000 +124 2403 5.100000 +124 2449 5.100000 +124 2627 5.100000 +124 2629 5.100000 +124 2663 5.100000 +124 2708 5.100000 +124 2719 5.100000 +124 2770 5.100000 +124 2840 5.100000 +124 2858 5.100000 +124 2888 5.100000 +124 2895 5.100000 +124 2984 5.100000 +124 2997 5.100000 +124 2998 5.100000 +124 3022 5.100000 +124 3118 5.100000 +124 3131 5.100000 +125 34 5.100000 +125 42 5.100000 +125 107 5.100000 +125 115 5.100000 +125 150 5.100000 +125 269 5.100000 +125 292 5.100000 +125 342 5.100000 +125 407 5.100000 +125 439 5.100000 +125 449 5.100000 +125 503 5.100000 +125 511 5.100000 +125 529 5.100000 +125 542 5.100000 +125 669 5.100000 +125 678 5.100000 +125 702 5.100000 +125 762 5.100000 +125 838 5.100000 +125 867 5.100000 +125 886 5.100000 +125 999 5.100000 +125 1011 5.100000 +125 1119 5.100000 +125 1136 5.100000 +125 1220 5.100000 +125 1229 5.100000 +125 1233 5.100000 +125 1240 5.100000 +125 1332 5.100000 +125 1375 5.100000 +125 1410 5.100000 +125 1482 5.100000 +125 1499 5.100000 +125 1783 5.100000 +125 1809 5.100000 +125 1820 5.100000 +125 1841 5.100000 +125 1857 5.100000 +125 1872 5.100000 +125 1890 5.100000 +125 1936 5.100000 +125 2001 5.100000 +125 2035 5.100000 +125 2080 5.100000 +125 2105 5.100000 +125 2131 5.100000 +125 2166 5.100000 +125 2181 5.100000 +125 2315 5.100000 +125 2411 5.100000 +125 2421 5.100000 +125 2457 5.100000 +125 2463 5.100000 +125 2556 5.100000 +125 2579 5.100000 +125 2588 5.100000 +125 2593 5.100000 +125 2597 5.100000 +125 2649 5.100000 +125 2667 5.100000 +125 2761 5.100000 +125 2801 5.100000 +125 2807 5.100000 +125 2926 5.100000 +125 2993 5.100000 +125 3001 5.100000 +125 3128 5.100000 +125 3156 5.100000 +126 25 5.100000 +126 55 5.100000 +126 135 5.100000 +126 152 5.100000 +126 158 5.100000 +126 163 5.100000 +126 179 5.100000 +126 195 5.100000 +126 296 5.100000 +126 341 5.100000 +126 344 5.100000 +126 400 5.100000 +126 432 5.100000 +126 517 5.100000 +126 596 5.100000 +126 619 5.100000 +126 650 5.100000 +126 659 5.100000 +126 857 5.100000 +126 899 5.100000 +126 900 5.100000 +126 903 5.100000 +126 948 5.100000 +126 973 5.100000 +126 1057 5.100000 +126 1107 5.100000 +126 1112 5.100000 +126 1130 5.100000 +126 1148 5.100000 +126 1257 5.100000 +126 1299 5.100000 +126 1342 5.100000 +126 1353 5.100000 +126 1380 5.100000 +126 1445 5.100000 +126 1481 5.100000 +126 1499 5.100000 +126 1593 5.100000 +126 1635 5.100000 +126 1645 5.100000 +126 1658 5.100000 +126 1747 5.100000 +126 1814 5.100000 +126 1857 5.100000 +126 1886 5.100000 +126 1909 5.100000 +126 2023 5.100000 +126 2111 5.100000 +126 2126 5.100000 +126 2128 5.100000 +126 2144 5.100000 +126 2191 5.100000 +126 2194 5.100000 +126 2221 5.100000 +126 2231 5.100000 +126 2285 5.100000 +126 2377 5.100000 +126 2415 5.100000 +126 2457 5.100000 +126 2537 5.100000 +126 2634 5.100000 +126 2662 5.100000 +126 2697 5.100000 +126 2746 5.100000 +126 2841 5.100000 +126 2882 5.100000 +126 3032 5.100000 +126 3044 5.100000 +126 3126 5.100000 +127 23 5.100000 +127 27 5.100000 +127 70 5.100000 +127 211 5.100000 +127 411 5.100000 +127 452 5.100000 +127 467 5.100000 +127 609 5.100000 +127 779 5.100000 +127 781 5.100000 +127 787 5.100000 +127 885 5.100000 +127 895 5.100000 +127 898 5.100000 +127 902 5.100000 +127 1184 5.100000 +127 1378 5.100000 +127 1452 5.100000 +127 1505 5.100000 +127 1520 5.100000 +127 1599 5.100000 +127 1616 5.100000 +127 1624 5.100000 +127 1633 5.100000 +127 1645 5.100000 +127 1654 5.100000 +127 1659 5.100000 +127 1850 5.100000 +127 1978 5.100000 +127 2001 5.100000 +127 2006 5.100000 +127 2032 5.100000 +127 2037 5.100000 +127 2079 5.100000 +127 2151 5.100000 +127 2176 5.100000 +127 2185 5.100000 +127 2357 5.100000 +127 2383 5.100000 +127 2440 5.100000 +127 2500 5.100000 +127 2501 5.100000 +127 2582 5.100000 +127 2608 5.100000 +127 2655 5.100000 +127 2801 5.100000 +127 2908 5.100000 +127 2938 5.100000 +127 3024 5.100000 +127 3062 5.100000 +127 3068 5.100000 +127 3081 5.100000 +128 27 5.100000 +128 49 5.100000 +128 54 5.100000 +128 133 5.100000 +128 151 5.100000 +128 159 5.100000 +128 169 5.100000 +128 199 5.100000 +128 248 5.100000 +128 267 5.100000 +128 387 5.100000 +128 394 5.100000 +128 475 5.100000 +128 513 5.100000 +128 544 5.100000 +128 551 5.100000 +128 565 5.100000 +128 600 5.100000 +128 621 5.100000 +128 630 5.100000 +128 677 5.100000 +128 725 5.100000 +128 761 5.100000 +128 803 5.100000 +128 804 5.100000 +128 813 5.100000 +128 826 5.100000 +128 939 5.100000 +128 1017 5.100000 +128 1028 5.100000 +128 1047 5.100000 +128 1096 5.100000 +128 1175 5.100000 +128 1205 5.100000 +128 1249 5.100000 +128 1310 5.100000 +128 1357 5.100000 +128 1368 5.100000 +128 1369 5.100000 +128 1464 5.100000 +128 1613 5.100000 +128 1745 5.100000 +128 1770 5.100000 +128 1771 5.100000 +128 1862 5.100000 +128 1919 5.100000 +128 1920 5.100000 +128 1951 5.100000 +128 1958 5.100000 +128 1963 5.100000 +128 2002 5.100000 +128 2056 5.100000 +128 2126 5.100000 +128 2265 5.100000 +128 2306 5.100000 +128 2397 5.100000 +128 2425 5.100000 +128 2427 5.100000 +128 2566 5.100000 +128 2586 5.100000 +128 2627 5.100000 +128 2634 5.100000 +128 2650 5.100000 +128 2776 5.100000 +128 2845 5.100000 +128 2846 5.100000 +128 2857 5.100000 +128 2858 5.100000 +128 2900 5.100000 +128 2910 5.100000 +128 2914 5.100000 +128 3033 5.100000 +128 3038 5.100000 +128 3097 5.100000 +128 3141 5.100000 +129 126 5.100000 +129 238 5.100000 +129 247 5.100000 +129 256 5.100000 +129 329 5.100000 +129 417 5.100000 +129 460 5.100000 +129 465 5.100000 +129 480 5.100000 +129 502 5.100000 +129 509 5.100000 +129 557 5.100000 +129 837 5.100000 +129 893 5.100000 +129 963 5.100000 +129 1188 5.100000 +129 1260 5.100000 +129 1288 5.100000 +129 1302 5.100000 +129 1324 5.100000 +129 1387 5.100000 +129 1483 5.100000 +129 1535 5.100000 +129 1595 5.100000 +129 1768 5.100000 +129 1849 5.100000 +129 1885 5.100000 +129 1942 5.100000 +129 1968 5.100000 +129 2035 5.100000 +129 2047 5.100000 +129 2054 5.100000 +129 2104 5.100000 +129 2230 5.100000 +129 2320 5.100000 +129 2340 5.100000 +129 2360 5.100000 +129 2388 5.100000 +129 2404 5.100000 +129 2443 5.100000 +129 2448 5.100000 +129 2459 5.100000 +129 2522 5.100000 +129 2593 5.100000 +129 2614 5.100000 +129 2636 5.100000 +129 2679 5.100000 +129 2687 5.100000 +129 2752 5.100000 +129 2755 5.100000 +129 2815 5.100000 +129 2836 5.100000 +129 2873 5.100000 +129 2874 5.100000 +129 2950 5.100000 +129 2992 5.100000 +129 3115 5.100000 +129 3166 5.100000 +130 52 5.100000 +130 165 5.100000 +130 204 5.100000 +130 266 5.100000 +130 287 5.100000 +130 315 5.100000 +130 316 5.100000 +130 485 5.100000 +130 555 5.100000 +130 557 5.100000 +130 589 5.100000 +130 629 5.100000 +130 717 5.100000 +130 722 5.100000 +130 775 5.100000 +130 808 5.100000 +130 925 5.100000 +130 1003 5.100000 +130 1025 5.100000 +130 1039 5.100000 +130 1069 5.100000 +130 1131 5.100000 +130 1230 5.100000 +130 1392 5.100000 +130 1402 5.100000 +130 1522 5.100000 +130 1536 5.100000 +130 1600 5.100000 +130 1664 5.100000 +130 1667 5.100000 +130 1674 5.100000 +130 1679 5.100000 +130 1835 5.100000 +130 1852 5.100000 +130 2158 5.100000 +130 2168 5.100000 +130 2180 5.100000 +130 2192 5.100000 +130 2383 5.100000 +130 2407 5.100000 +130 2461 5.100000 +130 2472 5.100000 +130 2526 5.100000 +130 2730 5.100000 +130 2772 5.100000 +130 2820 5.100000 +130 2853 5.100000 +130 2884 5.100000 +130 2969 5.100000 +130 2989 5.100000 +130 3058 5.100000 +130 3106 5.100000 +130 3111 5.100000 +131 11 5.100000 +131 13 5.100000 +131 30 5.100000 +131 33 5.100000 +131 35 5.100000 +131 42 5.100000 +131 98 5.100000 +131 184 5.100000 +131 186 5.100000 +131 254 5.100000 +131 263 5.100000 +131 276 5.100000 +131 323 5.100000 +131 360 5.100000 +131 451 5.100000 +131 501 5.100000 +131 521 5.100000 +131 526 5.100000 +131 573 5.100000 +131 654 5.100000 +131 773 5.100000 +131 865 5.100000 +131 882 5.100000 +131 921 5.100000 +131 1002 5.100000 +131 1007 5.100000 +131 1008 5.100000 +131 1010 5.100000 +131 1039 5.100000 +131 1120 5.100000 +131 1224 5.100000 +131 1306 5.100000 +131 1594 5.100000 +131 1689 5.100000 +131 1694 5.100000 +131 1713 5.100000 +131 1714 5.100000 +131 1781 5.100000 +131 1799 5.100000 +131 1837 5.100000 +131 1838 5.100000 +131 1870 5.100000 +131 1910 5.100000 +131 2011 5.100000 +131 2035 5.100000 +131 2307 5.100000 +131 2320 5.100000 +131 2379 5.100000 +131 2380 5.100000 +131 2472 5.100000 +131 2531 5.100000 +131 2538 5.100000 +131 2580 5.100000 +131 2656 5.100000 +131 2684 5.100000 +131 2697 5.100000 +131 2699 5.100000 +131 2718 5.100000 +131 2736 5.100000 +131 2818 5.100000 +131 2928 5.100000 +131 2959 5.100000 +131 3142 5.100000 +132 68 5.100000 +132 231 5.100000 +132 378 5.100000 +132 400 5.100000 +132 479 5.100000 +132 485 5.100000 +132 645 5.100000 +132 858 5.100000 +132 864 5.100000 +132 1004 5.100000 +132 1067 5.100000 +132 1094 5.100000 +132 1117 5.100000 +132 1128 5.100000 +132 1178 5.100000 +132 1193 5.100000 +132 1277 5.100000 +132 1381 5.100000 +132 1488 5.100000 +132 1725 5.100000 +132 1764 5.100000 +132 1768 5.100000 +132 1780 5.100000 +132 1866 5.100000 +132 1906 5.100000 +132 1941 5.100000 +132 1984 5.100000 +132 2003 5.100000 +132 2015 5.100000 +132 2076 5.100000 +132 2115 5.100000 +132 2266 5.100000 +132 2376 5.100000 +132 2397 5.100000 +132 2421 5.100000 +132 2486 5.100000 +132 2488 5.100000 +132 2664 5.100000 +132 2690 5.100000 +132 2758 5.100000 +132 2813 5.100000 +132 2929 5.100000 +132 3066 5.100000 +132 3123 5.100000 +133 33 5.100000 +133 58 5.100000 +133 59 5.100000 +133 90 5.100000 +133 254 5.100000 +133 282 5.100000 +133 292 5.100000 +133 294 5.100000 +133 342 5.100000 +133 374 5.100000 +133 490 5.100000 +133 540 5.100000 +133 610 5.100000 +133 645 5.100000 +133 647 5.100000 +133 770 5.100000 +133 846 5.100000 +133 991 5.100000 +133 1037 5.100000 +133 1086 5.100000 +133 1125 5.100000 +133 1149 5.100000 +133 1407 5.100000 +133 1412 5.100000 +133 1657 5.100000 +133 1742 5.100000 +133 1771 5.100000 +133 1775 5.100000 +133 1781 5.100000 +133 1805 5.100000 +133 1806 5.100000 +133 1810 5.100000 +133 1863 5.100000 +133 1881 5.100000 +133 1885 5.100000 +133 1923 5.100000 +133 2013 5.100000 +133 2040 5.100000 +133 2165 5.100000 +133 2243 5.100000 +133 2262 5.100000 +133 2297 5.100000 +133 2301 5.100000 +133 2330 5.100000 +133 2419 5.100000 +133 2426 5.100000 +133 2441 5.100000 +133 2465 5.100000 +133 2504 5.100000 +133 2512 5.100000 +133 2555 5.100000 +133 2708 5.100000 +133 2741 5.100000 +133 2759 5.100000 +133 2764 5.100000 +133 2973 5.100000 +133 3062 5.100000 +133 3124 5.100000 +134 12 5.100000 +134 101 5.100000 +134 218 5.100000 +134 305 5.100000 +134 402 5.100000 +134 471 5.100000 +134 517 5.100000 +134 541 5.100000 +134 561 5.100000 +134 570 5.100000 +134 586 5.100000 +134 615 5.100000 +134 677 5.100000 +134 729 5.100000 +134 737 5.100000 +134 745 5.100000 +134 795 5.100000 +134 799 5.100000 +134 832 5.100000 +134 841 5.100000 +134 854 5.100000 +134 860 5.100000 +134 909 5.100000 +134 942 5.100000 +134 947 5.100000 +134 982 5.100000 +134 1138 5.100000 +134 1172 5.100000 +134 1191 5.100000 +134 1195 5.100000 +134 1244 5.100000 +134 1344 5.100000 +134 1363 5.100000 +134 1451 5.100000 +134 1485 5.100000 +134 1513 5.100000 +134 1671 5.100000 +134 1682 5.100000 +134 1703 5.100000 +134 1815 5.100000 +134 1841 5.100000 +134 1897 5.100000 +134 2099 5.100000 +134 2111 5.100000 +134 2123 5.100000 +134 2211 5.100000 +134 2242 5.100000 +134 2265 5.100000 +134 2309 5.100000 +134 2455 5.100000 +134 2478 5.100000 +134 2584 5.100000 +134 2730 5.100000 +134 2810 5.100000 +134 2865 5.100000 +134 2867 5.100000 +134 2886 5.100000 +134 2888 5.100000 +134 2914 5.100000 +134 2926 5.100000 +134 2949 5.100000 +134 2991 5.100000 +134 3009 5.100000 +134 3072 5.100000 +134 3111 5.100000 +134 3117 5.100000 +134 3130 5.100000 +134 3149 5.100000 +134 3170 5.100000 +134 3195 5.100000 +135 2 5.100000 +135 95 5.100000 +135 240 5.100000 +135 242 5.100000 +135 249 5.100000 +135 370 5.100000 +135 378 5.100000 +135 397 5.100000 +135 485 5.100000 +135 503 5.100000 +135 515 5.100000 +135 614 5.100000 +135 835 5.100000 +135 877 5.100000 +135 977 5.100000 +135 1012 5.100000 +135 1041 5.100000 +135 1223 5.100000 +135 1225 5.100000 +135 1248 5.100000 +135 1284 5.100000 +135 1380 5.100000 +135 1387 5.100000 +135 1417 5.100000 +135 1430 5.100000 +135 1497 5.100000 +135 1634 5.100000 +135 1700 5.100000 +135 1716 5.100000 +135 1762 5.100000 +135 1766 5.100000 +135 1803 5.100000 +135 1876 5.100000 +135 2144 5.100000 +135 2157 5.100000 +135 2165 5.100000 +135 2212 5.100000 +135 2223 5.100000 +135 2261 5.100000 +135 2265 5.100000 +135 2272 5.100000 +135 2277 5.100000 +135 2376 5.100000 +135 2506 5.100000 +135 2513 5.100000 +135 2514 5.100000 +135 2547 5.100000 +135 2593 5.100000 +135 2678 5.100000 +135 2778 5.100000 +135 2784 5.100000 +135 2858 5.100000 +135 2864 5.100000 +135 2904 5.100000 +135 2951 5.100000 +135 2952 5.100000 +135 2997 5.100000 +135 3078 5.100000 +135 3110 5.100000 +135 3113 5.100000 +135 3143 5.100000 +135 3152 5.100000 +135 3165 5.100000 +136 4 5.100000 +136 29 5.100000 +136 56 5.100000 +136 115 5.100000 +136 282 5.100000 +136 287 5.100000 +136 288 5.100000 +136 317 5.100000 +136 324 5.100000 +136 429 5.100000 +136 496 5.100000 +136 635 5.100000 +136 740 5.100000 +136 764 5.100000 +136 905 5.100000 +136 923 5.100000 +136 961 5.100000 +136 993 5.100000 +136 1008 5.100000 +136 1185 5.100000 +136 1274 5.100000 +136 1372 5.100000 +136 1407 5.100000 +136 1477 5.100000 +136 1509 5.100000 +136 1511 5.100000 +136 1518 5.100000 +136 1560 5.100000 +136 1588 5.100000 +136 1680 5.100000 +136 1706 5.100000 +136 1728 5.100000 +136 1843 5.100000 +136 1846 5.100000 +136 1955 5.100000 +136 2036 5.100000 +136 2068 5.100000 +136 2120 5.100000 +136 2188 5.100000 +136 2203 5.100000 +136 2211 5.100000 +136 2318 5.100000 +136 2378 5.100000 +136 2413 5.100000 +136 2768 5.100000 +136 2797 5.100000 +136 2872 5.100000 +136 2878 5.100000 +136 2880 5.100000 +136 2930 5.100000 +136 2996 5.100000 +136 2999 5.100000 +136 3033 5.100000 +136 3081 5.100000 +136 3090 5.100000 +137 62 5.100000 +137 73 5.100000 +137 136 5.100000 +137 265 5.100000 +137 311 5.100000 +137 319 5.100000 +137 339 5.100000 +137 360 5.100000 +137 431 5.100000 +137 447 5.100000 +137 483 5.100000 +137 573 5.100000 +137 658 5.100000 +137 676 5.100000 +137 698 5.100000 +137 744 5.100000 +137 775 5.100000 +137 819 5.100000 +137 831 5.100000 +137 891 5.100000 +137 897 5.100000 +137 919 5.100000 +137 948 5.100000 +137 1084 5.100000 +137 1345 5.100000 +137 1492 5.100000 +137 1605 5.100000 +137 1695 5.100000 +137 1750 5.100000 +137 1778 5.100000 +137 1815 5.100000 +137 1923 5.100000 +137 2027 5.100000 +137 2028 5.100000 +137 2062 5.100000 +137 2080 5.100000 +137 2119 5.100000 +137 2199 5.100000 +137 2238 5.100000 +137 2249 5.100000 +137 2334 5.100000 +137 2356 5.100000 +137 2376 5.100000 +137 2510 5.100000 +137 2511 5.100000 +137 2521 5.100000 +137 2524 5.100000 +137 2549 5.100000 +137 2629 5.100000 +137 2708 5.100000 +137 2773 5.100000 +137 2799 5.100000 +137 2847 5.100000 +137 2889 5.100000 +137 2939 5.100000 +137 2955 5.100000 +137 3023 5.100000 +137 3035 5.100000 +137 3077 5.100000 +137 3136 5.100000 +137 3192 5.100000 +137 3197 5.100000 +138 26 5.100000 +138 27 5.100000 +138 161 5.100000 +138 172 5.100000 +138 282 5.100000 +138 329 5.100000 +138 353 5.100000 +138 578 5.100000 +138 665 5.100000 +138 735 5.100000 +138 828 5.100000 +138 837 5.100000 +138 909 5.100000 +138 974 5.100000 +138 1008 5.100000 +138 1040 5.100000 +138 1082 5.100000 +138 1113 5.100000 +138 1119 5.100000 +138 1166 5.100000 +138 1269 5.100000 +138 1331 5.100000 +138 1361 5.100000 +138 1398 5.100000 +138 1420 5.100000 +138 1421 5.100000 +138 1447 5.100000 +138 1502 5.100000 +138 1537 5.100000 +138 1554 5.100000 +138 1706 5.100000 +138 1731 5.100000 +138 1756 5.100000 +138 1794 5.100000 +138 1819 5.100000 +138 1829 5.100000 +138 1992 5.100000 +138 2022 5.100000 +138 2183 5.100000 +138 2192 5.100000 +138 2222 5.100000 +138 2238 5.100000 +138 2279 5.100000 +138 2351 5.100000 +138 2388 5.100000 +138 2395 5.100000 +138 2419 5.100000 +138 2420 5.100000 +138 2444 5.100000 +138 2467 5.100000 +138 2507 5.100000 +138 2605 5.100000 +138 2686 5.100000 +138 2733 5.100000 +138 2738 5.100000 +138 2801 5.100000 +138 2945 5.100000 +138 2962 5.100000 +138 2976 5.100000 +138 2987 5.100000 +138 3023 5.100000 +138 3078 5.100000 +138 3081 5.100000 +138 3104 5.100000 +138 3126 5.100000 +138 3166 5.100000 +139 9 5.100000 +139 10 5.100000 +139 91 5.100000 +139 135 5.100000 +139 140 5.100000 +139 419 5.100000 +139 422 5.100000 +139 449 5.100000 +139 471 5.100000 +139 507 5.100000 +139 550 5.100000 +139 551 5.100000 +139 567 5.100000 +139 643 5.100000 +139 662 5.100000 +139 667 5.100000 +139 719 5.100000 +139 762 5.100000 +139 907 5.100000 +139 982 5.100000 +139 1034 5.100000 +139 1046 5.100000 +139 1048 5.100000 +139 1089 5.100000 +139 1200 5.100000 +139 1230 5.100000 +139 1244 5.100000 +139 1267 5.100000 +139 1272 5.100000 +139 1310 5.100000 +139 1373 5.100000 +139 1376 5.100000 +139 1386 5.100000 +139 1486 5.100000 +139 1570 5.100000 +139 1713 5.100000 +139 1771 5.100000 +139 1779 5.100000 +139 1855 5.100000 +139 1970 5.100000 +139 1988 5.100000 +139 2018 5.100000 +139 2083 5.100000 +139 2102 5.100000 +139 2140 5.100000 +139 2185 5.100000 +139 2204 5.100000 +139 2219 5.100000 +139 2240 5.100000 +139 2271 5.100000 +139 2323 5.100000 +139 2354 5.100000 +139 2360 5.100000 +139 2378 5.100000 +139 2379 5.100000 +139 2401 5.100000 +139 2417 5.100000 +139 2485 5.100000 +139 2489 5.100000 +139 2520 5.100000 +139 2542 5.100000 +139 2554 5.100000 +139 2653 5.100000 +139 2661 5.100000 +139 2705 5.100000 +139 2728 5.100000 +139 2767 5.100000 +139 2788 5.100000 +139 2848 5.100000 +139 2869 5.100000 +139 2918 5.100000 +139 2951 5.100000 +139 2982 5.100000 +139 2988 5.100000 +139 3035 5.100000 +139 3140 5.100000 +139 3173 5.100000 +139 3176 5.100000 +140 21 5.100000 +140 26 5.100000 +140 90 5.100000 +140 99 5.100000 +140 183 5.100000 +140 184 5.100000 +140 274 5.100000 +140 276 5.100000 +140 348 5.100000 +140 386 5.100000 +140 395 5.100000 +140 415 5.100000 +140 440 5.100000 +140 492 5.100000 +140 496 5.100000 +140 640 5.100000 +140 643 5.100000 +140 681 5.100000 +140 686 5.100000 +140 712 5.100000 +140 716 5.100000 +140 729 5.100000 +140 774 5.100000 +140 871 5.100000 +140 873 5.100000 +140 892 5.100000 +140 919 5.100000 +140 945 5.100000 +140 1077 5.100000 +140 1085 5.100000 +140 1147 5.100000 +140 1156 5.100000 +140 1291 5.100000 +140 1300 5.100000 +140 1330 5.100000 +140 1333 5.100000 +140 1397 5.100000 +140 1479 5.100000 +140 1488 5.100000 +140 1507 5.100000 +140 1534 5.100000 +140 1536 5.100000 +140 1598 5.100000 +140 1623 5.100000 +140 1625 5.100000 +140 1628 5.100000 +140 1633 5.100000 +140 1750 5.100000 +140 1877 5.100000 +140 1909 5.100000 +140 2039 5.100000 +140 2063 5.100000 +140 2072 5.100000 +140 2152 5.100000 +140 2158 5.100000 +140 2356 5.100000 +140 2404 5.100000 +140 2419 5.100000 +140 2476 5.100000 +140 2547 5.100000 +140 2570 5.100000 +140 2649 5.100000 +140 2655 5.100000 +140 2741 5.100000 +140 2794 5.100000 +140 2848 5.100000 +140 2904 5.100000 +140 3018 5.100000 +140 3091 5.100000 +140 3161 5.100000 +141 28 5.100000 +141 49 5.100000 +141 78 5.100000 +141 119 5.100000 +141 203 5.100000 +141 217 5.100000 +141 233 5.100000 +141 236 5.100000 +141 326 5.100000 +141 418 5.100000 +141 458 5.100000 +141 470 5.100000 +141 641 5.100000 +141 886 5.100000 +141 978 5.100000 +141 981 5.100000 +141 1001 5.100000 +141 1036 5.100000 +141 1091 5.100000 +141 1123 5.100000 +141 1154 5.100000 +141 1160 5.100000 +141 1428 5.100000 +141 1589 5.100000 +141 1677 5.100000 +141 1824 5.100000 +141 1831 5.100000 +141 1859 5.100000 +141 1916 5.100000 +141 1998 5.100000 +141 2013 5.100000 +141 2086 5.100000 +141 2124 5.100000 +141 2203 5.100000 +141 2238 5.100000 +141 2346 5.100000 +141 2447 5.100000 +141 2477 5.100000 +141 2527 5.100000 +141 2564 5.100000 +141 2609 5.100000 +141 2685 5.100000 +141 2770 5.100000 +141 2904 5.100000 +141 2929 5.100000 +141 2934 5.100000 +141 2949 5.100000 +141 2960 5.100000 +141 2967 5.100000 +141 2968 5.100000 +141 3036 5.100000 +141 3044 5.100000 +141 3047 5.100000 +141 3126 5.100000 +141 3150 5.100000 +141 3171 5.100000 +142 8 5.100000 +142 168 5.100000 +142 309 5.100000 +142 369 5.100000 +142 390 5.100000 +142 547 5.100000 +142 576 5.100000 +142 585 5.100000 +142 600 5.100000 +142 764 5.100000 +142 777 5.100000 +142 896 5.100000 +142 918 5.100000 +142 936 5.100000 +142 972 5.100000 +142 980 5.100000 +142 1002 5.100000 +142 1007 5.100000 +142 1024 5.100000 +142 1065 5.100000 +142 1119 5.100000 +142 1123 5.100000 +142 1205 5.100000 +142 1210 5.100000 +142 1257 5.100000 +142 1296 5.100000 +142 1400 5.100000 +142 1419 5.100000 +142 1506 5.100000 +142 1561 5.100000 +142 1671 5.100000 +142 1713 5.100000 +142 1748 5.100000 +142 1783 5.100000 +142 1934 5.100000 +142 1978 5.100000 +142 2029 5.100000 +142 2067 5.100000 +142 2088 5.100000 +142 2102 5.100000 +142 2224 5.100000 +142 2247 5.100000 +142 2409 5.100000 +142 2414 5.100000 +142 2443 5.100000 +142 2527 5.100000 +142 2608 5.100000 +142 2637 5.100000 +142 2640 5.100000 +142 2659 5.100000 +142 2685 5.100000 +142 2715 5.100000 +142 2941 5.100000 +142 3035 5.100000 +142 3117 5.100000 +142 3171 5.100000 +143 54 5.100000 +143 144 5.100000 +143 188 5.100000 +143 199 5.100000 +143 245 5.100000 +143 269 5.100000 +143 304 5.100000 +143 306 5.100000 +143 339 5.100000 +143 357 5.100000 +143 365 5.100000 +143 544 5.100000 +143 857 5.100000 +143 860 5.100000 +143 898 5.100000 +143 1010 5.100000 +143 1057 5.100000 +143 1078 5.100000 +143 1147 5.100000 +143 1207 5.100000 +143 1210 5.100000 +143 1273 5.100000 +143 1325 5.100000 +143 1351 5.100000 +143 1549 5.100000 +143 1658 5.100000 +143 1681 5.100000 +143 1795 5.100000 +143 1848 5.100000 +143 1867 5.100000 +143 2048 5.100000 +143 2072 5.100000 +143 2088 5.100000 +143 2264 5.100000 +143 2278 5.100000 +143 2281 5.100000 +143 2325 5.100000 +143 2341 5.100000 +143 2391 5.100000 +143 2425 5.100000 +143 2466 5.100000 +143 2532 5.100000 +143 2593 5.100000 +143 2597 5.100000 +143 2622 5.100000 +143 2692 5.100000 +143 2722 5.100000 +143 2730 5.100000 +143 2780 5.100000 +143 2795 5.100000 +143 2821 5.100000 +143 2881 5.100000 +143 2918 5.100000 +143 2936 5.100000 +143 3033 5.100000 +143 3109 5.100000 +143 3117 5.100000 +144 20 5.100000 +144 70 5.100000 +144 76 5.100000 +144 91 5.100000 +144 97 5.100000 +144 225 5.100000 +144 354 5.100000 +144 456 5.100000 +144 476 5.100000 +144 479 5.100000 +144 554 5.100000 +144 598 5.100000 +144 609 5.100000 +144 658 5.100000 +144 674 5.100000 +144 920 5.100000 +144 1086 5.100000 +144 1098 5.100000 +144 1124 5.100000 +144 1159 5.100000 +144 1248 5.100000 +144 1251 5.100000 +144 1280 5.100000 +144 1284 5.100000 +144 1329 5.100000 +144 1492 5.100000 +144 1509 5.100000 +144 1613 5.100000 +144 1623 5.100000 +144 1636 5.100000 +144 1690 5.100000 +144 1787 5.100000 +144 1795 5.100000 +144 1877 5.100000 +144 1909 5.100000 +144 2048 5.100000 +144 2149 5.100000 +144 2159 5.100000 +144 2189 5.100000 +144 2219 5.100000 +144 2283 5.100000 +144 2307 5.100000 +144 2335 5.100000 +144 2372 5.100000 +144 2382 5.100000 +144 2389 5.100000 +144 2466 5.100000 +144 2562 5.100000 +144 2580 5.100000 +144 2604 5.100000 +144 2611 5.100000 +144 2885 5.100000 +144 2927 5.100000 +144 2973 5.100000 +144 3063 5.100000 +144 3089 5.100000 +144 3096 5.100000 +144 3132 5.100000 +144 3154 5.100000 +144 3177 5.100000 +145 10 5.100000 +145 53 5.100000 +145 85 5.100000 +145 112 5.100000 +145 117 5.100000 +145 119 5.100000 +145 200 5.100000 +145 268 5.100000 +145 280 5.100000 +145 286 5.100000 +145 340 5.100000 +145 390 5.100000 +145 391 5.100000 +145 407 5.100000 +145 442 5.100000 +145 455 5.100000 +145 501 5.100000 +145 546 5.100000 +145 632 5.100000 +145 775 5.100000 +145 779 5.100000 +145 787 5.100000 +145 796 5.100000 +145 836 5.100000 +145 841 5.100000 +145 896 5.100000 +145 935 5.100000 +145 950 5.100000 +145 974 5.100000 +145 983 5.100000 +145 1059 5.100000 +145 1062 5.100000 +145 1126 5.100000 +145 1150 5.100000 +145 1158 5.100000 +145 1181 5.100000 +145 1198 5.100000 +145 1217 5.100000 +145 1266 5.100000 +145 1307 5.100000 +145 1439 5.100000 +145 1470 5.100000 +145 1626 5.100000 +145 1677 5.100000 +145 1703 5.100000 +145 1741 5.100000 +145 1816 5.100000 +145 1876 5.100000 +145 2046 5.100000 +145 2108 5.100000 +145 2196 5.100000 +145 2239 5.100000 +145 2333 5.100000 +145 2336 5.100000 +145 2341 5.100000 +145 2344 5.100000 +145 2358 5.100000 +145 2369 5.100000 +145 2377 5.100000 +145 2421 5.100000 +145 2428 5.100000 +145 2463 5.100000 +145 2480 5.100000 +145 2483 5.100000 +145 2556 5.100000 +145 2598 5.100000 +145 2603 5.100000 +145 2608 5.100000 +145 2614 5.100000 +145 2636 5.100000 +145 2653 5.100000 +145 2754 5.100000 +145 2799 5.100000 +145 2818 5.100000 +145 2892 5.100000 +145 2988 5.100000 +145 3042 5.100000 +145 3078 5.100000 +145 3101 5.100000 +145 3137 5.100000 +145 3149 5.100000 +145 3186 5.100000 +146 60 5.100000 +146 128 5.100000 +146 226 5.100000 +146 248 5.100000 +146 266 5.100000 +146 267 5.100000 +146 275 5.100000 +146 302 5.100000 +146 310 5.100000 +146 353 5.100000 +146 432 5.100000 +146 442 5.100000 +146 466 5.100000 +146 469 5.100000 +146 586 5.100000 +146 588 5.100000 +146 678 5.100000 +146 680 5.100000 +146 772 5.100000 +146 801 5.100000 +146 826 5.100000 +146 862 5.100000 +146 881 5.100000 +146 1059 5.100000 +146 1078 5.100000 +146 1118 5.100000 +146 1135 5.100000 +146 1253 5.100000 +146 1261 5.100000 +146 1272 5.100000 +146 1411 5.100000 +146 1426 5.100000 +146 1439 5.100000 +146 1478 5.100000 +146 1491 5.100000 +146 1522 5.100000 +146 1614 5.100000 +146 1626 5.100000 +146 1725 5.100000 +146 1745 5.100000 +146 1877 5.100000 +146 1889 5.100000 +146 1903 5.100000 +146 1990 5.100000 +146 2029 5.100000 +146 2092 5.100000 +146 2123 5.100000 +146 2130 5.100000 +146 2267 5.100000 +146 2306 5.100000 +146 2320 5.100000 +146 2336 5.100000 +146 2638 5.100000 +146 2666 5.100000 +146 2749 5.100000 +146 2890 5.100000 +146 3004 5.100000 +146 3006 5.100000 +146 3169 5.100000 +146 3195 5.100000 +147 128 5.100000 +147 138 5.100000 +147 190 5.100000 +147 200 5.100000 +147 224 5.100000 +147 242 5.100000 +147 255 5.100000 +147 291 5.100000 +147 355 5.100000 +147 361 5.100000 +147 452 5.100000 +147 597 5.100000 +147 638 5.100000 +147 675 5.100000 +147 712 5.100000 +147 720 5.100000 +147 733 5.100000 +147 756 5.100000 +147 757 5.100000 +147 913 5.100000 +147 962 5.100000 +147 1086 5.100000 +147 1089 5.100000 +147 1123 5.100000 +147 1131 5.100000 +147 1153 5.100000 +147 1175 5.100000 +147 1259 5.100000 +147 1354 5.100000 +147 1365 5.100000 +147 1432 5.100000 +147 1452 5.100000 +147 1481 5.100000 +147 1583 5.100000 +147 1619 5.100000 +147 1701 5.100000 +147 1738 5.100000 +147 1760 5.100000 +147 1766 5.100000 +147 1845 5.100000 +147 1948 5.100000 +147 2006 5.100000 +147 2128 5.100000 +147 2234 5.100000 +147 2514 5.100000 +147 2607 5.100000 +147 2612 5.100000 +147 2618 5.100000 +147 2627 5.100000 +147 2659 5.100000 +147 2870 5.100000 +147 3000 5.100000 +147 3037 5.100000 +147 3049 5.100000 +147 3172 5.100000 +147 3182 5.100000 +147 3198 5.100000 +148 5 5.100000 +148 8 5.100000 +148 36 5.100000 +148 85 5.100000 +148 107 5.100000 +148 116 5.100000 +148 139 5.100000 +148 157 5.100000 +148 182 5.100000 +148 307 5.100000 +148 330 5.100000 +148 395 5.100000 +148 539 5.100000 +148 580 5.100000 +148 656 5.100000 +148 748 5.100000 +148 780 5.100000 +148 786 5.100000 +148 803 5.100000 +148 832 5.100000 +148 915 5.100000 +148 1048 5.100000 +148 1054 5.100000 +148 1137 5.100000 +148 1244 5.100000 +148 1248 5.100000 +148 1299 5.100000 +148 1337 5.100000 +148 1465 5.100000 +148 1502 5.100000 +148 1512 5.100000 +148 1589 5.100000 +148 1666 5.100000 +148 1748 5.100000 +148 1954 5.100000 +148 1961 5.100000 +148 2053 5.100000 +148 2071 5.100000 +148 2148 5.100000 +148 2206 5.100000 +148 2295 5.100000 +148 2313 5.100000 +148 2384 5.100000 +148 2434 5.100000 +148 2509 5.100000 +148 2601 5.100000 +148 2630 5.100000 +148 2719 5.100000 +148 2737 5.100000 +148 2780 5.100000 +148 2895 5.100000 +148 2923 5.100000 +148 3046 5.100000 +148 3052 5.100000 +148 3091 5.100000 +148 3096 5.100000 +148 3188 5.100000 +149 53 5.100000 +149 106 5.100000 +149 234 5.100000 +149 237 5.100000 +149 290 5.100000 +149 374 5.100000 +149 492 5.100000 +149 500 5.100000 +149 607 5.100000 +149 656 5.100000 +149 673 5.100000 +149 691 5.100000 +149 753 5.100000 +149 767 5.100000 +149 792 5.100000 +149 819 5.100000 +149 869 5.100000 +149 944 5.100000 +149 1037 5.100000 +149 1051 5.100000 +149 1061 5.100000 +149 1062 5.100000 +149 1071 5.100000 +149 1134 5.100000 +149 1143 5.100000 +149 1178 5.100000 +149 1179 5.100000 +149 1184 5.100000 +149 1227 5.100000 +149 1256 5.100000 +149 1313 5.100000 +149 1324 5.100000 +149 1374 5.100000 +149 1421 5.100000 +149 1539 5.100000 +149 1587 5.100000 +149 1625 5.100000 +149 1657 5.100000 +149 1678 5.100000 +149 1701 5.100000 +149 1706 5.100000 +149 1724 5.100000 +149 1773 5.100000 +149 1810 5.100000 +149 1829 5.100000 +149 1937 5.100000 +149 2137 5.100000 +149 2142 5.100000 +149 2144 5.100000 +149 2236 5.100000 +149 2251 5.100000 +149 2257 5.100000 +149 2349 5.100000 +149 2380 5.100000 +149 2396 5.100000 +149 2399 5.100000 +149 2484 5.100000 +149 2485 5.100000 +149 2501 5.100000 +149 2620 5.100000 +149 2817 5.100000 +149 2830 5.100000 +149 2886 5.100000 +149 2899 5.100000 +149 2946 5.100000 +149 3004 5.100000 +149 3027 5.100000 +149 3032 5.100000 +149 3046 5.100000 +149 3091 5.100000 +149 3151 5.100000 +150 59 5.100000 +150 106 5.100000 +150 131 5.100000 +150 139 5.100000 +150 159 5.100000 +150 276 5.100000 +150 405 5.100000 +150 466 5.100000 +150 477 5.100000 +150 541 5.100000 +150 788 5.100000 +150 866 5.100000 +150 955 5.100000 +150 979 5.100000 +150 1025 5.100000 +150 1065 5.100000 +150 1119 5.100000 +150 1193 5.100000 +150 1272 5.100000 +150 1319 5.100000 +150 1327 5.100000 +150 1402 5.100000 +150 1452 5.100000 +150 1520 5.100000 +150 1603 5.100000 +150 1604 5.100000 +150 1663 5.100000 +150 1737 5.100000 +150 1761 5.100000 +150 1893 5.100000 +150 2028 5.100000 +150 2044 5.100000 +150 2170 5.100000 +150 2224 5.100000 +150 2315 5.100000 +150 2330 5.100000 +150 2334 5.100000 +150 2337 5.100000 +150 2345 5.100000 +150 2393 5.100000 +150 2401 5.100000 +150 2425 5.100000 +150 2487 5.100000 +150 2494 5.100000 +150 2534 5.100000 +150 2535 5.100000 +150 2545 5.100000 +150 2605 5.100000 +150 2612 5.100000 +150 2670 5.100000 +150 2688 5.100000 +150 2711 5.100000 +150 2777 5.100000 +150 2819 5.100000 +150 2925 5.100000 +150 2928 5.100000 +150 2934 5.100000 +150 2996 5.100000 +150 3032 5.100000 +150 3152 5.100000 +150 3186 5.100000 +151 131 5.100000 +151 165 5.100000 +151 208 5.100000 +151 301 5.100000 +151 354 5.100000 +151 380 5.100000 +151 472 5.100000 +151 476 5.100000 +151 664 5.100000 +151 780 5.100000 +151 827 5.100000 +151 831 5.100000 +151 853 5.100000 +151 880 5.100000 +151 907 5.100000 +151 932 5.100000 +151 952 5.100000 +151 1034 5.100000 +151 1092 5.100000 +151 1095 5.100000 +151 1116 5.100000 +151 1243 5.100000 +151 1260 5.100000 +151 1483 5.100000 +151 1495 5.100000 +151 1534 5.100000 +151 1590 5.100000 +151 1726 5.100000 +151 1742 5.100000 +151 1799 5.100000 +151 1865 5.100000 +151 1935 5.100000 +151 1952 5.100000 +151 1953 5.100000 +151 1976 5.100000 +151 1980 5.100000 +151 1995 5.100000 +151 2022 5.100000 +151 2128 5.100000 +151 2143 5.100000 +151 2149 5.100000 +151 2166 5.100000 +151 2212 5.100000 +151 2218 5.100000 +151 2236 5.100000 +151 2294 5.100000 +151 2375 5.100000 +151 2462 5.100000 +151 2542 5.100000 +151 2543 5.100000 +151 2603 5.100000 +151 2676 5.100000 +151 2710 5.100000 +151 2752 5.100000 +151 2757 5.100000 +151 2760 5.100000 +151 2830 5.100000 +151 2917 5.100000 +151 2971 5.100000 +151 3010 5.100000 +151 3097 5.100000 +151 3112 5.100000 +152 4 5.100000 +152 26 5.100000 +152 61 5.100000 +152 127 5.100000 +152 212 5.100000 +152 371 5.100000 +152 405 5.100000 +152 460 5.100000 +152 527 5.100000 +152 635 5.100000 +152 816 5.100000 +152 853 5.100000 +152 904 5.100000 +152 920 5.100000 +152 927 5.100000 +152 937 5.100000 +152 979 5.100000 +152 981 5.100000 +152 1011 5.100000 +152 1020 5.100000 +152 1065 5.100000 +152 1067 5.100000 +152 1075 5.100000 +152 1139 5.100000 +152 1144 5.100000 +152 1167 5.100000 +152 1263 5.100000 +152 1323 5.100000 +152 1340 5.100000 +152 1354 5.100000 +152 1388 5.100000 +152 1499 5.100000 +152 1526 5.100000 +152 1536 5.100000 +152 1575 5.100000 +152 1633 5.100000 +152 1733 5.100000 +152 1743 5.100000 +152 1753 5.100000 +152 1812 5.100000 +152 1829 5.100000 +152 1852 5.100000 +152 1947 5.100000 +152 1987 5.100000 +152 2010 5.100000 +152 2041 5.100000 +152 2044 5.100000 +152 2096 5.100000 +152 2120 5.100000 +152 2193 5.100000 +152 2299 5.100000 +152 2325 5.100000 +152 2379 5.100000 +152 2381 5.100000 +152 2550 5.100000 +152 2618 5.100000 +152 2622 5.100000 +152 2680 5.100000 +152 2873 5.100000 +152 3049 5.100000 +152 3054 5.100000 +152 3068 5.100000 +152 3132 5.100000 +153 13 5.100000 +153 21 5.100000 +153 326 5.100000 +153 559 5.100000 +153 597 5.100000 +153 624 5.100000 +153 682 5.100000 +153 714 5.100000 +153 750 5.100000 +153 822 5.100000 +153 854 5.100000 +153 872 5.100000 +153 971 5.100000 +153 973 5.100000 +153 980 5.100000 +153 1079 5.100000 +153 1135 5.100000 +153 1140 5.100000 +153 1179 5.100000 +153 1182 5.100000 +153 1245 5.100000 +153 1292 5.100000 +153 1347 5.100000 +153 1418 5.100000 +153 1438 5.100000 +153 1474 5.100000 +153 1486 5.100000 +153 1542 5.100000 +153 1544 5.100000 +153 1550 5.100000 +153 1571 5.100000 +153 1642 5.100000 +153 1662 5.100000 +153 1665 5.100000 +153 1713 5.100000 +153 1813 5.100000 +153 1847 5.100000 +153 1887 5.100000 +153 1974 5.100000 +153 2136 5.100000 +153 2170 5.100000 +153 2224 5.100000 +153 2265 5.100000 +153 2267 5.100000 +153 2304 5.100000 +153 2349 5.100000 +153 2379 5.100000 +153 2414 5.100000 +153 2494 5.100000 +153 2561 5.100000 +153 2643 5.100000 +153 2776 5.100000 +153 2824 5.100000 +153 2901 5.100000 +153 2913 5.100000 +153 2945 5.100000 +153 2954 5.100000 +154 4 5.100000 +154 26 5.100000 +154 31 5.100000 +154 38 5.100000 +154 67 5.100000 +154 149 5.100000 +154 181 5.100000 +154 218 5.100000 +154 281 5.100000 +154 306 5.100000 +154 371 5.100000 +154 448 5.100000 +154 505 5.100000 +154 517 5.100000 +154 568 5.100000 +154 583 5.100000 +154 777 5.100000 +154 832 5.100000 +154 865 5.100000 +154 878 5.100000 +154 1025 5.100000 +154 1052 5.100000 +154 1057 5.100000 +154 1171 5.100000 +154 1231 5.100000 +154 1304 5.100000 +154 1325 5.100000 +154 1357 5.100000 +154 1481 5.100000 +154 1502 5.100000 +154 1521 5.100000 +154 1536 5.100000 +154 1734 5.100000 +154 1940 5.100000 +154 1988 5.100000 +154 2061 5.100000 +154 2072 5.100000 +154 2087 5.100000 +154 2237 5.100000 +154 2304 5.100000 +154 2326 5.100000 +154 2354 5.100000 +154 2398 5.100000 +154 2452 5.100000 +154 2513 5.100000 +154 2530 5.100000 +154 2646 5.100000 +154 2678 5.100000 +154 2756 5.100000 +154 2942 5.100000 +154 2943 5.100000 +154 2951 5.100000 +154 3034 5.100000 +154 3046 5.100000 +155 94 5.100000 +155 124 5.100000 +155 138 5.100000 +155 143 5.100000 +155 170 5.100000 +155 286 5.100000 +155 337 5.100000 +155 362 5.100000 +155 396 5.100000 +155 418 5.100000 +155 579 5.100000 +155 605 5.100000 +155 644 5.100000 +155 685 5.100000 +155 706 5.100000 +155 750 5.100000 +155 766 5.100000 +155 768 5.100000 +155 794 5.100000 +155 821 5.100000 +155 849 5.100000 +155 875 5.100000 +155 983 5.100000 +155 1048 5.100000 +155 1145 5.100000 +155 1381 5.100000 +155 1394 5.100000 +155 1404 5.100000 +155 1405 5.100000 +155 1580 5.100000 +155 1670 5.100000 +155 1686 5.100000 +155 1697 5.100000 +155 1703 5.100000 +155 1747 5.100000 +155 1776 5.100000 +155 1848 5.100000 +155 1923 5.100000 +155 1972 5.100000 +155 2026 5.100000 +155 2097 5.100000 +155 2141 5.100000 +155 2147 5.100000 +155 2243 5.100000 +155 2268 5.100000 +155 2281 5.100000 +155 2351 5.100000 +155 2429 5.100000 +155 2519 5.100000 +155 2534 5.100000 +155 2618 5.100000 +155 2670 5.100000 +155 2710 5.100000 +155 2746 5.100000 +155 2778 5.100000 +155 2792 5.100000 +155 2952 5.100000 +155 2971 5.100000 +155 2976 5.100000 +155 2980 5.100000 +155 2994 5.100000 +155 3027 5.100000 +155 3060 5.100000 +155 3082 5.100000 +155 3145 5.100000 +155 3161 5.100000 +155 3200 5.100000 +156 27 5.100000 +156 118 5.100000 +156 156 5.100000 +156 165 5.100000 +156 172 5.100000 +156 272 5.100000 +156 301 5.100000 +156 319 5.100000 +156 322 5.100000 +156 336 5.100000 +156 352 5.100000 +156 441 5.100000 +156 568 5.100000 +156 584 5.100000 +156 625 5.100000 +156 626 5.100000 +156 642 5.100000 +156 693 5.100000 +156 720 5.100000 +156 742 5.100000 +156 854 5.100000 +156 902 5.100000 +156 982 5.100000 +156 1004 5.100000 +156 1043 5.100000 +156 1079 5.100000 +156 1162 5.100000 +156 1167 5.100000 +156 1184 5.100000 +156 1188 5.100000 +156 1346 5.100000 +156 1368 5.100000 +156 1421 5.100000 +156 1469 5.100000 +156 1471 5.100000 +156 1556 5.100000 +156 1566 5.100000 +156 1655 5.100000 +156 1715 5.100000 +156 1782 5.100000 +156 1929 5.100000 +156 1965 5.100000 +156 1973 5.100000 +156 2002 5.100000 +156 2023 5.100000 +156 2187 5.100000 +156 2223 5.100000 +156 2255 5.100000 +156 2258 5.100000 +156 2363 5.100000 +156 2367 5.100000 +156 2377 5.100000 +156 2390 5.100000 +156 2481 5.100000 +156 2539 5.100000 +156 2575 5.100000 +156 2597 5.100000 +156 2633 5.100000 +156 2698 5.100000 +156 2705 5.100000 +156 3014 5.100000 +156 3034 5.100000 +156 3099 5.100000 +157 11 5.100000 +157 23 5.100000 +157 30 5.100000 +157 51 5.100000 +157 125 5.100000 +157 183 5.100000 +157 227 5.100000 +157 230 5.100000 +157 243 5.100000 +157 427 5.100000 +157 605 5.100000 +157 614 5.100000 +157 617 5.100000 +157 628 5.100000 +157 723 5.100000 +157 747 5.100000 +157 798 5.100000 +157 811 5.100000 +157 825 5.100000 +157 827 5.100000 +157 947 5.100000 +157 961 5.100000 +157 981 5.100000 +157 992 5.100000 +157 1018 5.100000 +157 1040 5.100000 +157 1118 5.100000 +157 1119 5.100000 +157 1292 5.100000 +157 1422 5.100000 +157 1530 5.100000 +157 1531 5.100000 +157 1604 5.100000 +157 1630 5.100000 +157 1677 5.100000 +157 1719 5.100000 +157 1869 5.100000 +157 1879 5.100000 +157 1914 5.100000 +157 1989 5.100000 +157 2027 5.100000 +157 2175 5.100000 +157 2177 5.100000 +157 2186 5.100000 +157 2205 5.100000 +157 2244 5.100000 +157 2663 5.100000 +157 2712 5.100000 +157 2722 5.100000 +157 2753 5.100000 +157 2860 5.100000 +157 2980 5.100000 +157 3025 5.100000 +157 3053 5.100000 +157 3062 5.100000 +157 3065 5.100000 +157 3107 5.100000 +157 3154 5.100000 +158 72 5.100000 +158 109 5.100000 +158 114 5.100000 +158 119 5.100000 +158 126 5.100000 +158 170 5.100000 +158 187 5.100000 +158 239 5.100000 +158 299 5.100000 +158 424 5.100000 +158 431 5.100000 +158 460 5.100000 +158 566 5.100000 +158 593 5.100000 +158 771 5.100000 +158 805 5.100000 +158 906 5.100000 +158 924 5.100000 +158 929 5.100000 +158 930 5.100000 +158 944 5.100000 +158 991 5.100000 +158 1033 5.100000 +158 1146 5.100000 +158 1154 5.100000 +158 1326 5.100000 +158 1363 5.100000 +158 1409 5.100000 +158 1433 5.100000 +158 1505 5.100000 +158 1554 5.100000 +158 1661 5.100000 +158 1802 5.100000 +158 1809 5.100000 +158 1854 5.100000 +158 1864 5.100000 +158 1867 5.100000 +158 2014 5.100000 +158 2028 5.100000 +158 2088 5.100000 +158 2098 5.100000 +158 2107 5.100000 +158 2172 5.100000 +158 2215 5.100000 +158 2219 5.100000 +158 2233 5.100000 +158 2270 5.100000 +158 2285 5.100000 +158 2529 5.100000 +158 2569 5.100000 +158 2648 5.100000 +158 2731 5.100000 +158 2782 5.100000 +158 2816 5.100000 +158 2832 5.100000 +158 2955 5.100000 +158 2979 5.100000 +158 3091 5.100000 +158 3112 5.100000 +159 13 5.100000 +159 27 5.100000 +159 51 5.100000 +159 61 5.100000 +159 67 5.100000 +159 96 5.100000 +159 164 5.100000 +159 261 5.100000 +159 442 5.100000 +159 464 5.100000 +159 518 5.100000 +159 591 5.100000 +159 718 5.100000 +159 726 5.100000 +159 764 5.100000 +159 927 5.100000 +159 928 5.100000 +159 979 5.100000 +159 1001 5.100000 +159 1016 5.100000 +159 1088 5.100000 +159 1100 5.100000 +159 1141 5.100000 +159 1161 5.100000 +159 1233 5.100000 +159 1403 5.100000 +159 1411 5.100000 +159 1414 5.100000 +159 1429 5.100000 +159 1432 5.100000 +159 1480 5.100000 +159 1593 5.100000 +159 1617 5.100000 +159 1619 5.100000 +159 1727 5.100000 +159 1807 5.100000 +159 1907 5.100000 +159 1951 5.100000 +159 1980 5.100000 +159 2027 5.100000 +159 2141 5.100000 +159 2150 5.100000 +159 2202 5.100000 +159 2221 5.100000 +159 2273 5.100000 +159 2297 5.100000 +159 2422 5.100000 +159 2425 5.100000 +159 2442 5.100000 +159 2485 5.100000 +159 2508 5.100000 +159 2560 5.100000 +159 2615 5.100000 +159 2671 5.100000 +159 2830 5.100000 +159 2896 5.100000 +159 2997 5.100000 +159 3129 5.100000 +159 3152 5.100000 +160 23 5.100000 +160 24 5.100000 +160 32 5.100000 +160 65 5.100000 +160 99 5.100000 +160 212 5.100000 +160 236 5.100000 +160 271 5.100000 +160 322 5.100000 +160 345 5.100000 +160 359 5.100000 +160 454 5.100000 +160 640 5.100000 +160 658 5.100000 +160 766 5.100000 +160 872 5.100000 +160 905 5.100000 +160 912 5.100000 +160 941 5.100000 +160 1014 5.100000 +160 1019 5.100000 +160 1113 5.100000 +160 1121 5.100000 +160 1149 5.100000 +160 1196 5.100000 +160 1267 5.100000 +160 1281 5.100000 +160 1300 5.100000 +160 1306 5.100000 +160 1349 5.100000 +160 1480 5.100000 +160 1589 5.100000 +160 1606 5.100000 +160 1671 5.100000 +160 1741 5.100000 +160 1754 5.100000 +160 1764 5.100000 +160 1839 5.100000 +160 1852 5.100000 +160 2021 5.100000 +160 2028 5.100000 +160 2062 5.100000 +160 2087 5.100000 +160 2128 5.100000 +160 2131 5.100000 +160 2151 5.100000 +160 2245 5.100000 +160 2256 5.100000 +160 2334 5.100000 +160 2351 5.100000 +160 2559 5.100000 +160 2567 5.100000 +160 2629 5.100000 +160 2686 5.100000 +160 2769 5.100000 +160 2772 5.100000 +160 2792 5.100000 +160 2828 5.100000 +160 2849 5.100000 +160 2918 5.100000 +160 2923 5.100000 +160 2934 5.100000 +160 3014 5.100000 +160 3045 5.100000 +160 3099 5.100000 +160 3122 5.100000 +160 3157 5.100000 +160 3172 5.100000 +160 3183 5.100000 +160 3190 5.100000 +161 49 5.100000 +161 107 5.100000 +161 134 5.100000 +161 207 5.100000 +161 295 5.100000 +161 300 5.100000 +161 320 5.100000 +161 465 5.100000 +161 498 5.100000 +161 536 5.100000 +161 549 5.100000 +161 597 5.100000 +161 602 5.100000 +161 632 5.100000 +161 652 5.100000 +161 659 5.100000 +161 719 5.100000 +161 847 5.100000 +161 902 5.100000 +161 985 5.100000 +161 987 5.100000 +161 1071 5.100000 +161 1192 5.100000 +161 1240 5.100000 +161 1242 5.100000 +161 1420 5.100000 +161 1538 5.100000 +161 1571 5.100000 +161 1592 5.100000 +161 1620 5.100000 +161 1667 5.100000 +161 1746 5.100000 +161 1767 5.100000 +161 1792 5.100000 +161 1793 5.100000 +161 1794 5.100000 +161 1877 5.100000 +161 2037 5.100000 +161 2097 5.100000 +161 2123 5.100000 +161 2137 5.100000 +161 2142 5.100000 +161 2183 5.100000 +161 2246 5.100000 +161 2270 5.100000 +161 2273 5.100000 +161 2429 5.100000 +161 2475 5.100000 +161 2691 5.100000 +161 2730 5.100000 +161 2778 5.100000 +161 2804 5.100000 +161 2811 5.100000 +161 2829 5.100000 +161 2853 5.100000 +161 2869 5.100000 +161 2872 5.100000 +161 2886 5.100000 +161 2895 5.100000 +161 2969 5.100000 +161 3059 5.100000 +161 3066 5.100000 +161 3144 5.100000 +161 3152 5.100000 +162 7 5.100000 +162 11 5.100000 +162 22 5.100000 +162 128 5.100000 +162 213 5.100000 +162 237 5.100000 +162 257 5.100000 +162 275 5.100000 +162 325 5.100000 +162 410 5.100000 +162 415 5.100000 +162 489 5.100000 +162 541 5.100000 +162 547 5.100000 +162 548 5.100000 +162 549 5.100000 +162 574 5.100000 +162 656 5.100000 +162 669 5.100000 +162 671 5.100000 +162 821 5.100000 +162 867 5.100000 +162 872 5.100000 +162 957 5.100000 +162 961 5.100000 +162 1260 5.100000 +162 1317 5.100000 +162 1386 5.100000 +162 1396 5.100000 +162 1428 5.100000 +162 1472 5.100000 +162 1474 5.100000 +162 1484 5.100000 +162 1541 5.100000 +162 1569 5.100000 +162 1661 5.100000 +162 1703 5.100000 +162 1716 5.100000 +162 1733 5.100000 +162 1814 5.100000 +162 1854 5.100000 +162 1876 5.100000 +162 1883 5.100000 +162 1971 5.100000 +162 2016 5.100000 +162 2018 5.100000 +162 2025 5.100000 +162 2089 5.100000 +162 2090 5.100000 +162 2131 5.100000 +162 2139 5.100000 +162 2187 5.100000 +162 2275 5.100000 +162 2344 5.100000 +162 2376 5.100000 +162 2382 5.100000 +162 2429 5.100000 +162 2471 5.100000 +162 2506 5.100000 +162 2513 5.100000 +162 2625 5.100000 +162 2636 5.100000 +162 2737 5.100000 +162 2801 5.100000 +162 2807 5.100000 +162 2958 5.100000 +162 3005 5.100000 +162 3018 5.100000 +162 3053 5.100000 +162 3071 5.100000 +162 3107 5.100000 +163 77 5.100000 +163 96 5.100000 +163 129 5.100000 +163 202 5.100000 +163 227 5.100000 +163 253 5.100000 +163 261 5.100000 +163 499 5.100000 +163 556 5.100000 +163 558 5.100000 +163 571 5.100000 +163 733 5.100000 +163 962 5.100000 +163 996 5.100000 +163 1007 5.100000 +163 1131 5.100000 +163 1144 5.100000 +163 1179 5.100000 +163 1226 5.100000 +163 1357 5.100000 +163 1404 5.100000 +163 1479 5.100000 +163 1486 5.100000 +163 1508 5.100000 +163 1552 5.100000 +163 1593 5.100000 +163 1599 5.100000 +163 1662 5.100000 +163 1671 5.100000 +163 1798 5.100000 +163 1808 5.100000 +163 1836 5.100000 +163 1886 5.100000 +163 1919 5.100000 +163 1979 5.100000 +163 2034 5.100000 +163 2078 5.100000 +163 2123 5.100000 +163 2142 5.100000 +163 2144 5.100000 +163 2212 5.100000 +163 2245 5.100000 +163 2282 5.100000 +163 2295 5.100000 +163 2323 5.100000 +163 2498 5.100000 +163 2562 5.100000 +163 2568 5.100000 +163 2622 5.100000 +163 2662 5.100000 +163 2689 5.100000 +163 2724 5.100000 +163 2784 5.100000 +163 2785 5.100000 +163 2808 5.100000 +163 2900 5.100000 +163 2964 5.100000 +163 3070 5.100000 +163 3140 5.100000 +163 3152 5.100000 +164 47 5.100000 +164 93 5.100000 +164 155 5.100000 +164 232 5.100000 +164 233 5.100000 +164 314 5.100000 +164 348 5.100000 +164 361 5.100000 +164 371 5.100000 +164 395 5.100000 +164 405 5.100000 +164 417 5.100000 +164 471 5.100000 +164 537 5.100000 +164 598 5.100000 +164 628 5.100000 +164 666 5.100000 +164 726 5.100000 +164 786 5.100000 +164 791 5.100000 +164 799 5.100000 +164 828 5.100000 +164 836 5.100000 +164 861 5.100000 +164 879 5.100000 +164 959 5.100000 +164 968 5.100000 +164 1042 5.100000 +164 1046 5.100000 +164 1095 5.100000 +164 1177 5.100000 +164 1195 5.100000 +164 1210 5.100000 +164 1316 5.100000 +164 1343 5.100000 +164 1444 5.100000 +164 1501 5.100000 +164 1549 5.100000 +164 1592 5.100000 +164 1603 5.100000 +164 1623 5.100000 +164 1684 5.100000 +164 1690 5.100000 +164 1719 5.100000 +164 1797 5.100000 +164 1884 5.100000 +164 1931 5.100000 +164 1953 5.100000 +164 2031 5.100000 +164 2037 5.100000 +164 2073 5.100000 +164 2106 5.100000 +164 2210 5.100000 +164 2235 5.100000 +164 2348 5.100000 +164 2350 5.100000 +164 2481 5.100000 +164 2491 5.100000 +164 2494 5.100000 +164 2526 5.100000 +164 2536 5.100000 +164 2634 5.100000 +164 2738 5.100000 +164 2783 5.100000 +164 2847 5.100000 +164 2861 5.100000 +164 2915 5.100000 +164 2953 5.100000 +164 3057 5.100000 +164 3066 5.100000 +164 3067 5.100000 +164 3078 5.100000 +164 3140 5.100000 +164 3167 5.100000 +165 52 5.100000 +165 226 5.100000 +165 336 5.100000 +165 350 5.100000 +165 361 5.100000 +165 365 5.100000 +165 378 5.100000 +165 402 5.100000 +165 429 5.100000 +165 444 5.100000 +165 527 5.100000 +165 678 5.100000 +165 719 5.100000 +165 803 5.100000 +165 900 5.100000 +165 914 5.100000 +165 977 5.100000 +165 1070 5.100000 +165 1104 5.100000 +165 1137 5.100000 +165 1164 5.100000 +165 1292 5.100000 +165 1330 5.100000 +165 1362 5.100000 +165 1601 5.100000 +165 1693 5.100000 +165 1717 5.100000 +165 1755 5.100000 +165 1773 5.100000 +165 1790 5.100000 +165 1809 5.100000 +165 1812 5.100000 +165 1851 5.100000 +165 2114 5.100000 +165 2266 5.100000 +165 2313 5.100000 +165 2359 5.100000 +165 2391 5.100000 +165 2617 5.100000 +165 2719 5.100000 +165 2720 5.100000 +165 2966 5.100000 +165 3037 5.100000 +165 3066 5.100000 +166 9 5.100000 +166 46 5.100000 +166 47 5.100000 +166 54 5.100000 +166 90 5.100000 +166 152 5.100000 +166 166 5.100000 +166 236 5.100000 +166 258 5.100000 +166 290 5.100000 +166 344 5.100000 +166 403 5.100000 +166 436 5.100000 +166 522 5.100000 +166 576 5.100000 +166 589 5.100000 +166 608 5.100000 +166 632 5.100000 +166 709 5.100000 +166 835 5.100000 +166 930 5.100000 +166 939 5.100000 +166 1005 5.100000 +166 1006 5.100000 +166 1050 5.100000 +166 1111 5.100000 +166 1117 5.100000 +166 1165 5.100000 +166 1325 5.100000 +166 1367 5.100000 +166 1381 5.100000 +166 1513 5.100000 +166 1537 5.100000 +166 1567 5.100000 +166 1577 5.100000 +166 1587 5.100000 +166 1685 5.100000 +166 1781 5.100000 +166 1858 5.100000 +166 1995 5.100000 +166 2030 5.100000 +166 2033 5.100000 +166 2055 5.100000 +166 2059 5.100000 +166 2072 5.100000 +166 2155 5.100000 +166 2184 5.100000 +166 2267 5.100000 +166 2284 5.100000 +166 2309 5.100000 +166 2324 5.100000 +166 2351 5.100000 +166 2383 5.100000 +166 2392 5.100000 +166 2443 5.100000 +166 2611 5.100000 +166 2725 5.100000 +166 2874 5.100000 +166 2904 5.100000 +166 2963 5.100000 +166 2997 5.100000 +166 3069 5.100000 +166 3165 5.100000 +166 3190 5.100000 +167 17 5.100000 +167 41 5.100000 +167 53 5.100000 +167 137 5.100000 +167 193 5.100000 +167 219 5.100000 +167 282 5.100000 +167 305 5.100000 +167 323 5.100000 +167 334 5.100000 +167 360 5.100000 +167 367 5.100000 +167 378 5.100000 +167 630 5.100000 +167 631 5.100000 +167 672 5.100000 +167 733 5.100000 +167 756 5.100000 +167 802 5.100000 +167 805 5.100000 +167 848 5.100000 +167 907 5.100000 +167 949 5.100000 +167 965 5.100000 +167 1063 5.100000 +167 1118 5.100000 +167 1148 5.100000 +167 1149 5.100000 +167 1180 5.100000 +167 1315 5.100000 +167 1342 5.100000 +167 1422 5.100000 +167 1436 5.100000 +167 1529 5.100000 +167 1530 5.100000 +167 1570 5.100000 +167 1609 5.100000 +167 1612 5.100000 +167 1664 5.100000 +167 1688 5.100000 +167 1780 5.100000 +167 1839 5.100000 +167 1854 5.100000 +167 1905 5.100000 +167 2111 5.100000 +167 2114 5.100000 +167 2159 5.100000 +167 2163 5.100000 +167 2365 5.100000 +167 2389 5.100000 +167 2415 5.100000 +167 2458 5.100000 +167 2542 5.100000 +167 2674 5.100000 +167 2687 5.100000 +167 2724 5.100000 +167 2726 5.100000 +167 2833 5.100000 +167 2868 5.100000 +167 2878 5.100000 +167 2996 5.100000 +167 3039 5.100000 +167 3148 5.100000 +167 3178 5.100000 +168 10 5.100000 +168 25 5.100000 +168 65 5.100000 +168 119 5.100000 +168 153 5.100000 +168 224 5.100000 +168 237 5.100000 +168 267 5.100000 +168 330 5.100000 +168 334 5.100000 +168 411 5.100000 +168 428 5.100000 +168 454 5.100000 +168 658 5.100000 +168 714 5.100000 +168 726 5.100000 +168 789 5.100000 +168 799 5.100000 +168 865 5.100000 +168 882 5.100000 +168 911 5.100000 +168 931 5.100000 +168 1019 5.100000 +168 1256 5.100000 +168 1350 5.100000 +168 1418 5.100000 +168 1423 5.100000 +168 1504 5.100000 +168 1599 5.100000 +168 1630 5.100000 +168 1850 5.100000 +168 1860 5.100000 +168 1974 5.100000 +168 2021 5.100000 +168 2035 5.100000 +168 2037 5.100000 +168 2052 5.100000 +168 2057 5.100000 +168 2096 5.100000 +168 2115 5.100000 +168 2203 5.100000 +168 2223 5.100000 +168 2354 5.100000 +168 2435 5.100000 +168 2472 5.100000 +168 2534 5.100000 +168 2551 5.100000 +168 2580 5.100000 +168 2659 5.100000 +168 2726 5.100000 +168 2765 5.100000 +168 2776 5.100000 +168 2786 5.100000 +168 2805 5.100000 +168 2839 5.100000 +168 2908 5.100000 +168 2910 5.100000 +168 2918 5.100000 +168 2959 5.100000 +168 3035 5.100000 +168 3116 5.100000 +168 3179 5.100000 +169 9 5.100000 +169 11 5.100000 +169 74 5.100000 +169 98 5.100000 +169 123 5.100000 +169 137 5.100000 +169 284 5.100000 +169 329 5.100000 +169 407 5.100000 +169 437 5.100000 +169 449 5.100000 +169 508 5.100000 +169 570 5.100000 +169 581 5.100000 +169 588 5.100000 +169 680 5.100000 +169 684 5.100000 +169 710 5.100000 +169 746 5.100000 +169 762 5.100000 +169 786 5.100000 +169 831 5.100000 +169 841 5.100000 +169 847 5.100000 +169 854 5.100000 +169 961 5.100000 +169 1033 5.100000 +169 1059 5.100000 +169 1104 5.100000 +169 1200 5.100000 +169 1436 5.100000 +169 1493 5.100000 +169 1502 5.100000 +169 1532 5.100000 +169 1566 5.100000 +169 1576 5.100000 +169 1659 5.100000 +169 1668 5.100000 +169 1799 5.100000 +169 1853 5.100000 +169 1900 5.100000 +169 1926 5.100000 +169 1957 5.100000 +169 1963 5.100000 +169 1991 5.100000 +169 2061 5.100000 +169 2111 5.100000 +169 2116 5.100000 +169 2132 5.100000 +169 2177 5.100000 +169 2240 5.100000 +169 2519 5.100000 +169 2556 5.100000 +169 2594 5.100000 +169 2635 5.100000 +169 2702 5.100000 +169 2735 5.100000 +169 2849 5.100000 +169 2903 5.100000 +169 2960 5.100000 +169 2965 5.100000 +169 3042 5.100000 +170 90 5.100000 +170 143 5.100000 +170 153 5.100000 +170 238 5.100000 +170 248 5.100000 +170 308 5.100000 +170 309 5.100000 +170 431 5.100000 +170 443 5.100000 +170 557 5.100000 +170 565 5.100000 +170 652 5.100000 +170 706 5.100000 +170 714 5.100000 +170 767 5.100000 +170 795 5.100000 +170 904 5.100000 +170 935 5.100000 +170 945 5.100000 +170 993 5.100000 +170 995 5.100000 +170 1093 5.100000 +170 1114 5.100000 +170 1186 5.100000 +170 1229 5.100000 +170 1254 5.100000 +170 1258 5.100000 +170 1400 5.100000 +170 1466 5.100000 +170 1485 5.100000 +170 1488 5.100000 +170 1494 5.100000 +170 1506 5.100000 +170 1508 5.100000 +170 1510 5.100000 +170 1566 5.100000 +170 1569 5.100000 +170 1634 5.100000 +170 1641 5.100000 +170 1765 5.100000 +170 1813 5.100000 +170 1860 5.100000 +170 1877 5.100000 +170 1913 5.100000 +170 1995 5.100000 +170 2042 5.100000 +170 2059 5.100000 +170 2094 5.100000 +170 2151 5.100000 +170 2159 5.100000 +170 2195 5.100000 +170 2238 5.100000 +170 2397 5.100000 +170 2441 5.100000 +170 2451 5.100000 +170 2467 5.100000 +170 2555 5.100000 +170 2574 5.100000 +170 2649 5.100000 +170 2694 5.100000 +170 2757 5.100000 +170 2785 5.100000 +170 2935 5.100000 +170 2972 5.100000 +170 2982 5.100000 +170 2991 5.100000 +170 3043 5.100000 +170 3151 5.100000 +170 3198 5.100000 +171 39 5.100000 +171 125 5.100000 +171 153 5.100000 +171 154 5.100000 +171 212 5.100000 +171 219 5.100000 +171 220 5.100000 +171 246 5.100000 +171 262 5.100000 +171 271 5.100000 +171 307 5.100000 +171 338 5.100000 +171 392 5.100000 +171 435 5.100000 +171 522 5.100000 +171 587 5.100000 +171 611 5.100000 +171 735 5.100000 +171 884 5.100000 +171 885 5.100000 +171 896 5.100000 +171 931 5.100000 +171 951 5.100000 +171 955 5.100000 +171 983 5.100000 +171 1062 5.100000 +171 1145 5.100000 +171 1201 5.100000 +171 1212 5.100000 +171 1213 5.100000 +171 1217 5.100000 +171 1285 5.100000 +171 1287 5.100000 +171 1324 5.100000 +171 1345 5.100000 +171 1385 5.100000 +171 1449 5.100000 +171 1510 5.100000 +171 1564 5.100000 +171 1572 5.100000 +171 1582 5.100000 +171 1602 5.100000 +171 1682 5.100000 +171 1685 5.100000 +171 1731 5.100000 +171 1855 5.100000 +171 1873 5.100000 +171 1901 5.100000 +171 1960 5.100000 +171 2019 5.100000 +171 2081 5.100000 +171 2126 5.100000 +171 2133 5.100000 +171 2271 5.100000 +171 2350 5.100000 +171 2462 5.100000 +171 2515 5.100000 +171 2518 5.100000 +171 2597 5.100000 +171 2668 5.100000 +171 2799 5.100000 +171 2804 5.100000 +171 2808 5.100000 +171 2859 5.100000 +171 2876 5.100000 +171 2885 5.100000 +171 3085 5.100000 +171 3168 5.100000 +171 3171 5.100000 +172 118 5.100000 +172 170 5.100000 +172 214 5.100000 +172 217 5.100000 +172 274 5.100000 +172 414 5.100000 +172 492 5.100000 +172 561 5.100000 +172 573 5.100000 +172 588 5.100000 +172 617 5.100000 +172 689 5.100000 +172 726 5.100000 +172 922 5.100000 +172 943 5.100000 +172 976 5.100000 +172 1055 5.100000 +172 1095 5.100000 +172 1110 5.100000 +172 1118 5.100000 +172 1184 5.100000 +172 1257 5.100000 +172 1338 5.100000 +172 1339 5.100000 +172 1352 5.100000 +172 1374 5.100000 +172 1428 5.100000 +172 1596 5.100000 +172 1624 5.100000 +172 1743 5.100000 +172 1778 5.100000 +172 1887 5.100000 +172 1896 5.100000 +172 1940 5.100000 +172 2128 5.100000 +172 2215 5.100000 +172 2245 5.100000 +172 2287 5.100000 +172 2346 5.100000 +172 2445 5.100000 +172 2509 5.100000 +172 2513 5.100000 +172 2516 5.100000 +172 2566 5.100000 +172 2586 5.100000 +172 2663 5.100000 +172 2672 5.100000 +172 2681 5.100000 +172 2685 5.100000 +172 2758 5.100000 +172 2780 5.100000 +172 2808 5.100000 +172 2842 5.100000 +172 2845 5.100000 +172 2876 5.100000 +172 2902 5.100000 +172 2948 5.100000 +172 2999 5.100000 +172 3122 5.100000 +173 57 5.100000 +173 79 5.100000 +173 126 5.100000 +173 134 5.100000 +173 195 5.100000 +173 223 5.100000 +173 239 5.100000 +173 297 5.100000 +173 381 5.100000 +173 383 5.100000 +173 413 5.100000 +173 438 5.100000 +173 453 5.100000 +173 463 5.100000 +173 475 5.100000 +173 514 5.100000 +173 567 5.100000 +173 670 5.100000 +173 702 5.100000 +173 709 5.100000 +173 755 5.100000 +173 765 5.100000 +173 778 5.100000 +173 824 5.100000 +173 844 5.100000 +173 883 5.100000 +173 900 5.100000 +173 916 5.100000 +173 928 5.100000 +173 976 5.100000 +173 1019 5.100000 +173 1037 5.100000 +173 1148 5.100000 +173 1193 5.100000 +173 1237 5.100000 +173 1254 5.100000 +173 1370 5.100000 +173 1453 5.100000 +173 1519 5.100000 +173 1630 5.100000 +173 1647 5.100000 +173 1770 5.100000 +173 1843 5.100000 +173 1848 5.100000 +173 1857 5.100000 +173 1896 5.100000 +173 1977 5.100000 +173 2045 5.100000 +173 2074 5.100000 +173 2082 5.100000 +173 2115 5.100000 +173 2127 5.100000 +173 2139 5.100000 +173 2227 5.100000 +173 2280 5.100000 +173 2452 5.100000 +173 2547 5.100000 +173 2552 5.100000 +173 2568 5.100000 +173 2589 5.100000 +173 2598 5.100000 +173 2630 5.100000 +173 2672 5.100000 +173 2692 5.100000 +173 2749 5.100000 +173 2752 5.100000 +173 2885 5.100000 +173 2946 5.100000 +174 84 5.100000 +174 135 5.100000 +174 195 5.100000 +174 248 5.100000 +174 315 5.100000 +174 389 5.100000 +174 401 5.100000 +174 497 5.100000 +174 568 5.100000 +174 698 5.100000 +174 795 5.100000 +174 816 5.100000 +174 840 5.100000 +174 841 5.100000 +174 951 5.100000 +174 952 5.100000 +174 979 5.100000 +174 989 5.100000 +174 1028 5.100000 +174 1083 5.100000 +174 1109 5.100000 +174 1137 5.100000 +174 1155 5.100000 +174 1374 5.100000 +174 1402 5.100000 +174 1404 5.100000 +174 1422 5.100000 +174 1434 5.100000 +174 1463 5.100000 +174 1499 5.100000 +174 1518 5.100000 +174 1522 5.100000 +174 1562 5.100000 +174 1607 5.100000 +174 1609 5.100000 +174 1639 5.100000 +174 1698 5.100000 +174 1719 5.100000 +174 1732 5.100000 +174 1743 5.100000 +174 1763 5.100000 +174 1806 5.100000 +174 1880 5.100000 +174 1885 5.100000 +174 1907 5.100000 +174 1935 5.100000 +174 1992 5.100000 +174 2018 5.100000 +174 2069 5.100000 +174 2226 5.100000 +174 2243 5.100000 +174 2282 5.100000 +174 2323 5.100000 +174 2354 5.100000 +174 2418 5.100000 +174 2448 5.100000 +174 2501 5.100000 +174 2558 5.100000 +174 2606 5.100000 +174 2638 5.100000 +174 2695 5.100000 +174 2696 5.100000 +174 2757 5.100000 +174 2842 5.100000 +174 2854 5.100000 +174 2902 5.100000 +174 2917 5.100000 +174 2999 5.100000 +174 3045 5.100000 +174 3070 5.100000 +174 3113 5.100000 +174 3119 5.100000 +174 3159 5.100000 +175 33 5.100000 +175 47 5.100000 +175 53 5.100000 +175 115 5.100000 +175 240 5.100000 +175 260 5.100000 +175 308 5.100000 +175 334 5.100000 +175 416 5.100000 +175 434 5.100000 +175 488 5.100000 +175 574 5.100000 +175 663 5.100000 +175 755 5.100000 +175 759 5.100000 +175 862 5.100000 +175 949 5.100000 +175 980 5.100000 +175 1044 5.100000 +175 1164 5.100000 +175 1210 5.100000 +175 1236 5.100000 +175 1653 5.100000 +175 1693 5.100000 +175 1745 5.100000 +175 1812 5.100000 +175 1867 5.100000 +175 1940 5.100000 +175 2060 5.100000 +175 2082 5.100000 +175 2102 5.100000 +175 2141 5.100000 +175 2236 5.100000 +175 2317 5.100000 +175 2355 5.100000 +175 2414 5.100000 +175 2422 5.100000 +175 2515 5.100000 +175 2524 5.100000 +175 2684 5.100000 +175 2771 5.100000 +175 2824 5.100000 +175 2829 5.100000 +175 2845 5.100000 +175 2852 5.100000 +175 2931 5.100000 +175 2941 5.100000 +175 2980 5.100000 +175 3078 5.100000 +175 3162 5.100000 +175 3193 5.100000 +176 19 5.100000 +176 25 5.100000 +176 86 5.100000 +176 182 5.100000 +176 241 5.100000 +176 258 5.100000 +176 294 5.100000 +176 407 5.100000 +176 422 5.100000 +176 432 5.100000 +176 487 5.100000 +176 492 5.100000 +176 523 5.100000 +176 539 5.100000 +176 558 5.100000 +176 616 5.100000 +176 637 5.100000 +176 685 5.100000 +176 699 5.100000 +176 728 5.100000 +176 741 5.100000 +176 746 5.100000 +176 753 5.100000 +176 794 5.100000 +176 843 5.100000 +176 1004 5.100000 +176 1029 5.100000 +176 1030 5.100000 +176 1060 5.100000 +176 1112 5.100000 +176 1123 5.100000 +176 1230 5.100000 +176 1239 5.100000 +176 1304 5.100000 +176 1321 5.100000 +176 1336 5.100000 +176 1386 5.100000 +176 1434 5.100000 +176 1472 5.100000 +176 1475 5.100000 +176 1504 5.100000 +176 1530 5.100000 +176 1651 5.100000 +176 1657 5.100000 +176 1661 5.100000 +176 1675 5.100000 +176 1722 5.100000 +176 1729 5.100000 +176 1743 5.100000 +176 1822 5.100000 +176 1861 5.100000 +176 1919 5.100000 +176 1936 5.100000 +176 1978 5.100000 +176 2054 5.100000 +176 2101 5.100000 +176 2199 5.100000 +176 2229 5.100000 +176 2349 5.100000 +176 2451 5.100000 +176 2497 5.100000 +176 2821 5.100000 +176 2869 5.100000 +176 2936 5.100000 +176 3005 5.100000 +176 3039 5.100000 +176 3096 5.100000 +176 3106 5.100000 +176 3140 5.100000 +176 3168 5.100000 +177 34 5.100000 +177 60 5.100000 +177 61 5.100000 +177 181 5.100000 +177 284 5.100000 +177 393 5.100000 +177 649 5.100000 +177 675 5.100000 +177 741 5.100000 +177 805 5.100000 +177 833 5.100000 +177 863 5.100000 +177 905 5.100000 +177 949 5.100000 +177 956 5.100000 +177 1064 5.100000 +177 1093 5.100000 +177 1100 5.100000 +177 1119 5.100000 +177 1126 5.100000 +177 1213 5.100000 +177 1259 5.100000 +177 1316 5.100000 +177 1614 5.100000 +177 1616 5.100000 +177 1638 5.100000 +177 1650 5.100000 +177 1655 5.100000 +177 1732 5.100000 +177 1743 5.100000 +177 1749 5.100000 +177 1754 5.100000 +177 1785 5.100000 +177 1797 5.100000 +177 1813 5.100000 +177 1897 5.100000 +177 1905 5.100000 +177 1915 5.100000 +177 1930 5.100000 +177 1941 5.100000 +177 2075 5.100000 +177 2145 5.100000 +177 2264 5.100000 +177 2278 5.100000 +177 2290 5.100000 +177 2293 5.100000 +177 2326 5.100000 +177 2338 5.100000 +177 2388 5.100000 +177 2431 5.100000 +177 2470 5.100000 +177 2565 5.100000 +177 2578 5.100000 +177 2583 5.100000 +177 2596 5.100000 +177 2645 5.100000 +177 2726 5.100000 +177 2774 5.100000 +177 2785 5.100000 +177 2788 5.100000 +177 2810 5.100000 +177 2840 5.100000 +177 2875 5.100000 +177 2970 5.100000 +177 2980 5.100000 +177 3007 5.100000 +177 3044 5.100000 +177 3123 5.100000 +178 12 5.100000 +178 108 5.100000 +178 184 5.100000 +178 209 5.100000 +178 250 5.100000 +178 288 5.100000 +178 513 5.100000 +178 536 5.100000 +178 670 5.100000 +178 740 5.100000 +178 777 5.100000 +178 872 5.100000 +178 882 5.100000 +178 924 5.100000 +178 1068 5.100000 +178 1141 5.100000 +178 1298 5.100000 +178 1353 5.100000 +178 1395 5.100000 +178 1443 5.100000 +178 1465 5.100000 +178 1492 5.100000 +178 1603 5.100000 +178 1650 5.100000 +178 1693 5.100000 +178 1696 5.100000 +178 1730 5.100000 +178 1756 5.100000 +178 1758 5.100000 +178 1780 5.100000 +178 1821 5.100000 +178 1837 5.100000 +178 1897 5.100000 +178 1997 5.100000 +178 2006 5.100000 +178 2085 5.100000 +178 2138 5.100000 +178 2141 5.100000 +178 2142 5.100000 +178 2170 5.100000 +178 2256 5.100000 +178 2331 5.100000 +178 2344 5.100000 +178 2469 5.100000 +178 2482 5.100000 +178 2633 5.100000 +178 2648 5.100000 +178 2706 5.100000 +178 2781 5.100000 +178 2785 5.100000 +178 2806 5.100000 +178 2896 5.100000 +178 2940 5.100000 +178 2942 5.100000 +178 3003 5.100000 +178 3025 5.100000 +178 3059 5.100000 +178 3173 5.100000 +178 3187 5.100000 +179 93 5.100000 +179 106 5.100000 +179 140 5.100000 +179 216 5.100000 +179 224 5.100000 +179 228 5.100000 +179 239 5.100000 +179 265 5.100000 +179 296 5.100000 +179 341 5.100000 +179 365 5.100000 +179 389 5.100000 +179 404 5.100000 +179 444 5.100000 +179 537 5.100000 +179 570 5.100000 +179 620 5.100000 +179 652 5.100000 +179 666 5.100000 +179 692 5.100000 +179 966 5.100000 +179 1015 5.100000 +179 1023 5.100000 +179 1049 5.100000 +179 1076 5.100000 +179 1158 5.100000 +179 1252 5.100000 +179 1284 5.100000 +179 1293 5.100000 +179 1390 5.100000 +179 1476 5.100000 +179 1477 5.100000 +179 1482 5.100000 +179 1571 5.100000 +179 1685 5.100000 +179 1702 5.100000 +179 1733 5.100000 +179 1830 5.100000 +179 1888 5.100000 +179 1895 5.100000 +179 1942 5.100000 +179 1945 5.100000 +179 1988 5.100000 +179 2019 5.100000 +179 2091 5.100000 +179 2100 5.100000 +179 2106 5.100000 +179 2108 5.100000 +179 2258 5.100000 +179 2284 5.100000 +179 2313 5.100000 +179 2514 5.100000 +179 2541 5.100000 +179 2560 5.100000 +179 2694 5.100000 +179 2848 5.100000 +179 2913 5.100000 +179 2914 5.100000 +179 2954 5.100000 +179 3106 5.100000 +179 3111 5.100000 +179 3184 5.100000 +180 11 5.100000 +180 156 5.100000 +180 176 5.100000 +180 275 5.100000 +180 280 5.100000 +180 326 5.100000 +180 337 5.100000 +180 370 5.100000 +180 396 5.100000 +180 475 5.100000 +180 483 5.100000 +180 484 5.100000 +180 674 5.100000 +180 681 5.100000 +180 707 5.100000 +180 741 5.100000 +180 789 5.100000 +180 821 5.100000 +180 862 5.100000 +180 908 5.100000 +180 910 5.100000 +180 1034 5.100000 +180 1124 5.100000 +180 1253 5.100000 +180 1314 5.100000 +180 1373 5.100000 +180 1380 5.100000 +180 1663 5.100000 +180 1756 5.100000 +180 1764 5.100000 +180 1850 5.100000 +180 1870 5.100000 +180 1899 5.100000 +180 2057 5.100000 +180 2068 5.100000 +180 2106 5.100000 +180 2304 5.100000 +180 2428 5.100000 +180 2472 5.100000 +180 2552 5.100000 +180 2607 5.100000 +180 2665 5.100000 +180 2884 5.100000 +180 2923 5.100000 +180 2974 5.100000 +180 2990 5.100000 +180 3027 5.100000 +180 3087 5.100000 +180 3123 5.100000 +180 3185 5.100000 +180 3190 5.100000 +181 10 5.100000 +181 36 5.100000 +181 59 5.100000 +181 64 5.100000 +181 238 5.100000 +181 241 5.100000 +181 306 5.100000 +181 400 5.100000 +181 404 5.100000 +181 422 5.100000 +181 482 5.100000 +181 509 5.100000 +181 515 5.100000 +181 516 5.100000 +181 552 5.100000 +181 593 5.100000 +181 693 5.100000 +181 803 5.100000 +181 805 5.100000 +181 888 5.100000 +181 926 5.100000 +181 969 5.100000 +181 993 5.100000 +181 1089 5.100000 +181 1111 5.100000 +181 1113 5.100000 +181 1261 5.100000 +181 1373 5.100000 +181 1493 5.100000 +181 1636 5.100000 +181 1689 5.100000 +181 1701 5.100000 +181 1724 5.100000 +181 1763 5.100000 +181 1915 5.100000 +181 1934 5.100000 +181 1943 5.100000 +181 1944 5.100000 +181 1986 5.100000 +181 1998 5.100000 +181 2096 5.100000 +181 2193 5.100000 +181 2281 5.100000 +181 2295 5.100000 +181 2443 5.100000 +181 2509 5.100000 +181 2568 5.100000 +181 2580 5.100000 +181 2601 5.100000 +181 2682 5.100000 +181 2683 5.100000 +181 2743 5.100000 +181 2802 5.100000 +181 2874 5.100000 +181 2929 5.100000 +181 2952 5.100000 +181 3049 5.100000 +181 3118 5.100000 +181 3162 5.100000 +182 10 5.100000 +182 83 5.100000 +182 96 5.100000 +182 128 5.100000 +182 385 5.100000 +182 441 5.100000 +182 514 5.100000 +182 528 5.100000 +182 593 5.100000 +182 683 5.100000 +182 835 5.100000 +182 893 5.100000 +182 1105 5.100000 +182 1166 5.100000 +182 1184 5.100000 +182 1187 5.100000 +182 1212 5.100000 +182 1250 5.100000 +182 1443 5.100000 +182 1463 5.100000 +182 1544 5.100000 +182 1595 5.100000 +182 1618 5.100000 +182 1649 5.100000 +182 1753 5.100000 +182 1756 5.100000 +182 1802 5.100000 +182 1803 5.100000 +182 1806 5.100000 +182 1826 5.100000 +182 1860 5.100000 +182 1984 5.100000 +182 1990 5.100000 +182 2074 5.100000 +182 2252 5.100000 +182 2262 5.100000 +182 2318 5.100000 +182 2329 5.100000 +182 2389 5.100000 +182 2440 5.100000 +182 2444 5.100000 +182 2539 5.100000 +182 2565 5.100000 +182 2567 5.100000 +182 2659 5.100000 +182 2952 5.100000 +182 2994 5.100000 +182 3071 5.100000 +182 3087 5.100000 +182 3089 5.100000 +183 119 5.100000 +183 146 5.100000 +183 158 5.100000 +183 164 5.100000 +183 187 5.100000 +183 225 5.100000 +183 278 5.100000 +183 309 5.100000 +183 367 5.100000 +183 376 5.100000 +183 408 5.100000 +183 435 5.100000 +183 458 5.100000 +183 516 5.100000 +183 654 5.100000 +183 726 5.100000 +183 772 5.100000 +183 779 5.100000 +183 927 5.100000 +183 1002 5.100000 +183 1020 5.100000 +183 1040 5.100000 +183 1079 5.100000 +183 1126 5.100000 +183 1260 5.100000 +183 1289 5.100000 +183 1336 5.100000 +183 1371 5.100000 +183 1374 5.100000 +183 1401 5.100000 +183 1469 5.100000 +183 1588 5.100000 +183 1616 5.100000 +183 1684 5.100000 +183 1695 5.100000 +183 1704 5.100000 +183 1741 5.100000 +183 1806 5.100000 +183 1932 5.100000 +183 1987 5.100000 +183 2168 5.100000 +183 2197 5.100000 +183 2239 5.100000 +183 2256 5.100000 +183 2336 5.100000 +183 2373 5.100000 +183 2508 5.100000 +183 2510 5.100000 +183 2692 5.100000 +183 2734 5.100000 +183 2756 5.100000 +183 2803 5.100000 +183 2829 5.100000 +183 2882 5.100000 +183 2915 5.100000 +183 2922 5.100000 +183 2952 5.100000 +183 2984 5.100000 +183 3071 5.100000 +184 75 5.100000 +184 109 5.100000 +184 179 5.100000 +184 218 5.100000 +184 310 5.100000 +184 375 5.100000 +184 435 5.100000 +184 484 5.100000 +184 526 5.100000 +184 532 5.100000 +184 561 5.100000 +184 599 5.100000 +184 703 5.100000 +184 745 5.100000 +184 814 5.100000 +184 873 5.100000 +184 918 5.100000 +184 943 5.100000 +184 964 5.100000 +184 971 5.100000 +184 1013 5.100000 +184 1029 5.100000 +184 1110 5.100000 +184 1116 5.100000 +184 1201 5.100000 +184 1246 5.100000 +184 1260 5.100000 +184 1267 5.100000 +184 1426 5.100000 +184 1444 5.100000 +184 1556 5.100000 +184 1639 5.100000 +184 1791 5.100000 +184 2005 5.100000 +184 2059 5.100000 +184 2071 5.100000 +184 2105 5.100000 +184 2106 5.100000 +184 2258 5.100000 +184 2259 5.100000 +184 2273 5.100000 +184 2277 5.100000 +184 2300 5.100000 +184 2399 5.100000 +184 2425 5.100000 +184 2473 5.100000 +184 2485 5.100000 +184 2501 5.100000 +184 2540 5.100000 +184 2607 5.100000 +184 2669 5.100000 +184 2693 5.100000 +184 2753 5.100000 +184 2767 5.100000 +184 2776 5.100000 +184 2830 5.100000 +184 2894 5.100000 +184 2916 5.100000 +184 2961 5.100000 +184 2984 5.100000 +184 3062 5.100000 +184 3166 5.100000 +185 5 5.100000 +185 8 5.100000 +185 27 5.100000 +185 28 5.100000 +185 55 5.100000 +185 144 5.100000 +185 161 5.100000 +185 170 5.100000 +185 179 5.100000 +185 205 5.100000 +185 238 5.100000 +185 275 5.100000 +185 369 5.100000 +185 499 5.100000 +185 574 5.100000 +185 687 5.100000 +185 806 5.100000 +185 854 5.100000 +185 927 5.100000 +185 950 5.100000 +185 1005 5.100000 +185 1007 5.100000 +185 1031 5.100000 +185 1127 5.100000 +185 1159 5.100000 +185 1167 5.100000 +185 1178 5.100000 +185 1191 5.100000 +185 1231 5.100000 +185 1272 5.100000 +185 1456 5.100000 +185 1461 5.100000 +185 1526 5.100000 +185 1666 5.100000 +185 1740 5.100000 +185 1858 5.100000 +185 1878 5.100000 +185 1942 5.100000 +185 2043 5.100000 +185 2058 5.100000 +185 2108 5.100000 +185 2109 5.100000 +185 2131 5.100000 +185 2177 5.100000 +185 2206 5.100000 +185 2213 5.100000 +185 2283 5.100000 +185 2284 5.100000 +185 2294 5.100000 +185 2330 5.100000 +185 2375 5.100000 +185 2400 5.100000 +185 2411 5.100000 +185 2412 5.100000 +185 2446 5.100000 +185 2491 5.100000 +185 2498 5.100000 +185 2560 5.100000 +185 2561 5.100000 +185 2594 5.100000 +185 2601 5.100000 +185 2698 5.100000 +185 2840 5.100000 +185 2869 5.100000 +185 2897 5.100000 +185 2983 5.100000 +185 3061 5.100000 +185 3107 5.100000 +185 3118 5.100000 +185 3120 5.100000 +185 3198 5.100000 +186 134 5.100000 +186 140 5.100000 +186 220 5.100000 +186 295 5.100000 +186 299 5.100000 +186 303 5.100000 +186 381 5.100000 +186 408 5.100000 +186 415 5.100000 +186 642 5.100000 +186 727 5.100000 +186 741 5.100000 +186 785 5.100000 +186 789 5.100000 +186 818 5.100000 +186 839 5.100000 +186 874 5.100000 +186 911 5.100000 +186 959 5.100000 +186 999 5.100000 +186 1043 5.100000 +186 1125 5.100000 +186 1148 5.100000 +186 1151 5.100000 +186 1165 5.100000 +186 1218 5.100000 +186 1266 5.100000 +186 1293 5.100000 +186 1367 5.100000 +186 1368 5.100000 +186 1377 5.100000 +186 1475 5.100000 +186 1510 5.100000 +186 1520 5.100000 +186 1531 5.100000 +186 1565 5.100000 +186 1568 5.100000 +186 1633 5.100000 +186 1645 5.100000 +186 1649 5.100000 +186 1693 5.100000 +186 1767 5.100000 +186 1866 5.100000 +186 1915 5.100000 +186 1930 5.100000 +186 2150 5.100000 +186 2204 5.100000 +186 2215 5.100000 +186 2276 5.100000 +186 2302 5.100000 +186 2303 5.100000 +186 2364 5.100000 +186 2395 5.100000 +186 2425 5.100000 +186 2471 5.100000 +186 2497 5.100000 +186 2547 5.100000 +186 2664 5.100000 +186 2673 5.100000 +186 2718 5.100000 +186 2729 5.100000 +186 2917 5.100000 +186 2977 5.100000 +186 2990 5.100000 +186 3030 5.100000 +186 3065 5.100000 +187 79 5.100000 +187 99 5.100000 +187 126 5.100000 +187 189 5.100000 +187 191 5.100000 +187 213 5.100000 +187 216 5.100000 +187 239 5.100000 +187 296 5.100000 +187 364 5.100000 +187 383 5.100000 +187 516 5.100000 +187 541 5.100000 +187 596 5.100000 +187 604 5.100000 +187 650 5.100000 +187 689 5.100000 +187 720 5.100000 +187 824 5.100000 +187 858 5.100000 +187 1032 5.100000 +187 1034 5.100000 +187 1091 5.100000 +187 1164 5.100000 +187 1270 5.100000 +187 1295 5.100000 +187 1309 5.100000 +187 1352 5.100000 +187 1354 5.100000 +187 1522 5.100000 +187 1587 5.100000 +187 1639 5.100000 +187 1667 5.100000 +187 1683 5.100000 +187 1777 5.100000 +187 1781 5.100000 +187 1805 5.100000 +187 1813 5.100000 +187 1840 5.100000 +187 1938 5.100000 +187 1971 5.100000 +187 1987 5.100000 +187 1996 5.100000 +187 2020 5.100000 +187 2034 5.100000 +187 2076 5.100000 +187 2111 5.100000 +187 2157 5.100000 +187 2184 5.100000 +187 2203 5.100000 +187 2305 5.100000 +187 2373 5.100000 +187 2522 5.100000 +187 2573 5.100000 +187 2592 5.100000 +187 2642 5.100000 +187 2670 5.100000 +187 2674 5.100000 +187 2711 5.100000 +187 2727 5.100000 +187 2729 5.100000 +187 2739 5.100000 +187 2766 5.100000 +187 2778 5.100000 +187 2824 5.100000 +187 2843 5.100000 +187 2862 5.100000 +187 2927 5.100000 +187 2953 5.100000 +187 3057 5.100000 +187 3059 5.100000 +187 3089 5.100000 +188 127 5.100000 +188 176 5.100000 +188 243 5.100000 +188 265 5.100000 +188 428 5.100000 +188 445 5.100000 +188 493 5.100000 +188 498 5.100000 +188 578 5.100000 +188 580 5.100000 +188 590 5.100000 +188 613 5.100000 +188 820 5.100000 +188 912 5.100000 +188 935 5.100000 +188 987 5.100000 +188 1012 5.100000 +188 1270 5.100000 +188 1298 5.100000 +188 1345 5.100000 +188 1367 5.100000 +188 1422 5.100000 +188 1500 5.100000 +188 1599 5.100000 +188 1672 5.100000 +188 1677 5.100000 +188 1699 5.100000 +188 1738 5.100000 +188 2080 5.100000 +188 2098 5.100000 +188 2138 5.100000 +188 2148 5.100000 +188 2199 5.100000 +188 2263 5.100000 +188 2333 5.100000 +188 2336 5.100000 +188 2419 5.100000 +188 2495 5.100000 +188 2556 5.100000 +188 2580 5.100000 +188 2640 5.100000 +188 2642 5.100000 +188 2737 5.100000 +188 2779 5.100000 +188 2785 5.100000 +188 2845 5.100000 +188 2925 5.100000 +188 3012 5.100000 +188 3042 5.100000 +188 3057 5.100000 +188 3156 5.100000 +189 43 5.100000 +189 85 5.100000 +189 162 5.100000 +189 163 5.100000 +189 186 5.100000 +189 392 5.100000 +189 438 5.100000 +189 511 5.100000 +189 542 5.100000 +189 543 5.100000 +189 581 5.100000 +189 601 5.100000 +189 652 5.100000 +189 673 5.100000 +189 681 5.100000 +189 779 5.100000 +189 794 5.100000 +189 923 5.100000 +189 995 5.100000 +189 996 5.100000 +189 1014 5.100000 +189 1042 5.100000 +189 1059 5.100000 +189 1143 5.100000 +189 1278 5.100000 +189 1367 5.100000 +189 1437 5.100000 +189 1474 5.100000 +189 1507 5.100000 +189 1527 5.100000 +189 1614 5.100000 +189 1634 5.100000 +189 1640 5.100000 +189 1715 5.100000 +189 1717 5.100000 +189 1729 5.100000 +189 1748 5.100000 +189 1755 5.100000 +189 1758 5.100000 +189 1777 5.100000 +189 1781 5.100000 +189 1804 5.100000 +189 1934 5.100000 +189 1990 5.100000 +189 2096 5.100000 +189 2099 5.100000 +189 2135 5.100000 +189 2149 5.100000 +189 2176 5.100000 +189 2247 5.100000 +189 2273 5.100000 +189 2318 5.100000 +189 2338 5.100000 +189 2400 5.100000 +189 2507 5.100000 +189 2536 5.100000 +189 2653 5.100000 +189 2655 5.100000 +189 2691 5.100000 +189 2707 5.100000 +189 2757 5.100000 +189 2853 5.100000 +189 2857 5.100000 +189 2889 5.100000 +189 2924 5.100000 +189 2956 5.100000 +189 2982 5.100000 +189 3009 5.100000 +189 3034 5.100000 +190 83 5.100000 +190 142 5.100000 +190 146 5.100000 +190 231 5.100000 +190 308 5.100000 +190 475 5.100000 +190 489 5.100000 +190 615 5.100000 +190 641 5.100000 +190 674 5.100000 +190 703 5.100000 +190 747 5.100000 +190 758 5.100000 +190 864 5.100000 +190 881 5.100000 +190 941 5.100000 +190 990 5.100000 +190 1026 5.100000 +190 1042 5.100000 +190 1075 5.100000 +190 1086 5.100000 +190 1171 5.100000 +190 1238 5.100000 +190 1246 5.100000 +190 1284 5.100000 +190 1316 5.100000 +190 1320 5.100000 +190 1343 5.100000 +190 1345 5.100000 +190 1386 5.100000 +190 1552 5.100000 +190 1553 5.100000 +190 1554 5.100000 +190 1616 5.100000 +190 1628 5.100000 +190 1684 5.100000 +190 1743 5.100000 +190 1781 5.100000 +190 1791 5.100000 +190 1811 5.100000 +190 1859 5.100000 +190 1892 5.100000 +190 1999 5.100000 +190 2077 5.100000 +190 2161 5.100000 +190 2227 5.100000 +190 2256 5.100000 +190 2278 5.100000 +190 2379 5.100000 +190 2409 5.100000 +190 2482 5.100000 +190 2491 5.100000 +190 2648 5.100000 +190 2824 5.100000 +190 2840 5.100000 +190 2889 5.100000 +190 2981 5.100000 +190 3005 5.100000 +190 3039 5.100000 +191 27 5.100000 +191 92 5.100000 +191 139 5.100000 +191 204 5.100000 +191 222 5.100000 +191 240 5.100000 +191 315 5.100000 +191 331 5.100000 +191 440 5.100000 +191 497 5.100000 +191 593 5.100000 +191 602 5.100000 +191 618 5.100000 +191 688 5.100000 +191 824 5.100000 +191 828 5.100000 +191 871 5.100000 +191 882 5.100000 +191 927 5.100000 +191 929 5.100000 +191 950 5.100000 +191 1021 5.100000 +191 1087 5.100000 +191 1119 5.100000 +191 1301 5.100000 +191 1379 5.100000 +191 1408 5.100000 +191 1425 5.100000 +191 1485 5.100000 +191 1607 5.100000 +191 1655 5.100000 +191 1682 5.100000 +191 1717 5.100000 +191 1757 5.100000 +191 1761 5.100000 +191 1767 5.100000 +191 1795 5.100000 +191 1864 5.100000 +191 1899 5.100000 +191 1939 5.100000 +191 2025 5.100000 +191 2041 5.100000 +191 2046 5.100000 +191 2096 5.100000 +191 2181 5.100000 +191 2215 5.100000 +191 2263 5.100000 +191 2298 5.100000 +191 2320 5.100000 +191 2386 5.100000 +191 2409 5.100000 +191 2431 5.100000 +191 2432 5.100000 +191 2465 5.100000 +191 2516 5.100000 +191 2596 5.100000 +191 2630 5.100000 +191 2698 5.100000 +191 2797 5.100000 +191 2801 5.100000 +191 3058 5.100000 +191 3083 5.100000 +191 3096 5.100000 +191 3099 5.100000 +191 3164 5.100000 +192 2 5.100000 +192 85 5.100000 +192 106 5.100000 +192 137 5.100000 +192 154 5.100000 +192 157 5.100000 +192 167 5.100000 +192 219 5.100000 +192 227 5.100000 +192 309 5.100000 +192 313 5.100000 +192 363 5.100000 +192 387 5.100000 +192 464 5.100000 +192 496 5.100000 +192 580 5.100000 +192 581 5.100000 +192 614 5.100000 +192 745 5.100000 +192 746 5.100000 +192 824 5.100000 +192 834 5.100000 +192 847 5.100000 +192 863 5.100000 +192 1021 5.100000 +192 1052 5.100000 +192 1103 5.100000 +192 1378 5.100000 +192 1411 5.100000 +192 1470 5.100000 +192 1529 5.100000 +192 1555 5.100000 +192 1556 5.100000 +192 1565 5.100000 +192 1632 5.100000 +192 1660 5.100000 +192 1712 5.100000 +192 1749 5.100000 +192 1904 5.100000 +192 1937 5.100000 +192 1945 5.100000 +192 1947 5.100000 +192 2116 5.100000 +192 2184 5.100000 +192 2225 5.100000 +192 2249 5.100000 +192 2281 5.100000 +192 2293 5.100000 +192 2362 5.100000 +192 2394 5.100000 +192 2559 5.100000 +192 2602 5.100000 +192 2613 5.100000 +192 2659 5.100000 +192 2702 5.100000 +192 2753 5.100000 +192 2829 5.100000 +192 2838 5.100000 +192 2862 5.100000 +192 2864 5.100000 +192 2987 5.100000 +192 2999 5.100000 +192 3000 5.100000 +192 3076 5.100000 +192 3090 5.100000 +193 21 5.100000 +193 64 5.100000 +193 76 5.100000 +193 99 5.100000 +193 102 5.100000 +193 105 5.100000 +193 165 5.100000 +193 182 5.100000 +193 185 5.100000 +193 196 5.100000 +193 236 5.100000 +193 328 5.100000 +193 362 5.100000 +193 395 5.100000 +193 444 5.100000 +193 463 5.100000 +193 490 5.100000 +193 610 5.100000 +193 657 5.100000 +193 662 5.100000 +193 727 5.100000 +193 767 5.100000 +193 786 5.100000 +193 795 5.100000 +193 1038 5.100000 +193 1080 5.100000 +193 1268 5.100000 +193 1453 5.100000 +193 1459 5.100000 +193 1469 5.100000 +193 1572 5.100000 +193 1604 5.100000 +193 1616 5.100000 +193 1634 5.100000 +193 1675 5.100000 +193 1696 5.100000 +193 1798 5.100000 +193 1894 5.100000 +193 1920 5.100000 +193 1962 5.100000 +193 2101 5.100000 +193 2110 5.100000 +193 2114 5.100000 +193 2164 5.100000 +193 2189 5.100000 +193 2237 5.100000 +193 2279 5.100000 +193 2282 5.100000 +193 2309 5.100000 +193 2463 5.100000 +193 2593 5.100000 +193 2594 5.100000 +193 2606 5.100000 +193 2658 5.100000 +193 2679 5.100000 +193 2688 5.100000 +193 2748 5.100000 +193 2802 5.100000 +193 2903 5.100000 +193 2927 5.100000 +193 2978 5.100000 +193 2988 5.100000 +193 3028 5.100000 +193 3100 5.100000 +193 3186 5.100000 +193 3198 5.100000 +194 25 5.100000 +194 41 5.100000 +194 45 5.100000 +194 60 5.100000 +194 148 5.100000 +194 174 5.100000 +194 243 5.100000 +194 257 5.100000 +194 350 5.100000 +194 398 5.100000 +194 453 5.100000 +194 492 5.100000 +194 564 5.100000 +194 662 5.100000 +194 699 5.100000 +194 725 5.100000 +194 765 5.100000 +194 767 5.100000 +194 772 5.100000 +194 785 5.100000 +194 909 5.100000 +194 923 5.100000 +194 955 5.100000 +194 1008 5.100000 +194 1015 5.100000 +194 1057 5.100000 +194 1102 5.100000 +194 1124 5.100000 +194 1135 5.100000 +194 1144 5.100000 +194 1147 5.100000 +194 1235 5.100000 +194 1375 5.100000 +194 1406 5.100000 +194 1408 5.100000 +194 1426 5.100000 +194 1551 5.100000 +194 1563 5.100000 +194 1593 5.100000 +194 1627 5.100000 +194 1688 5.100000 +194 1724 5.100000 +194 1725 5.100000 +194 1749 5.100000 +194 1751 5.100000 +194 1767 5.100000 +194 1824 5.100000 +194 1895 5.100000 +194 1914 5.100000 +194 1924 5.100000 +194 1950 5.100000 +194 2027 5.100000 +194 2124 5.100000 +194 2155 5.100000 +194 2213 5.100000 +194 2256 5.100000 +194 2267 5.100000 +194 2288 5.100000 +194 2293 5.100000 +194 2454 5.100000 +194 2618 5.100000 +194 2625 5.100000 +194 2639 5.100000 +194 2657 5.100000 +194 2732 5.100000 +194 2803 5.100000 +194 2807 5.100000 +194 2990 5.100000 +194 3013 5.100000 +194 3073 5.100000 +194 3082 5.100000 +194 3106 5.100000 +195 55 5.100000 +195 70 5.100000 +195 123 5.100000 +195 148 5.100000 +195 182 5.100000 +195 201 5.100000 +195 259 5.100000 +195 323 5.100000 +195 328 5.100000 +195 339 5.100000 +195 340 5.100000 +195 350 5.100000 +195 359 5.100000 +195 377 5.100000 +195 378 5.100000 +195 481 5.100000 +195 507 5.100000 +195 592 5.100000 +195 596 5.100000 +195 627 5.100000 +195 656 5.100000 +195 691 5.100000 +195 742 5.100000 +195 746 5.100000 +195 762 5.100000 +195 770 5.100000 +195 772 5.100000 +195 792 5.100000 +195 823 5.100000 +195 850 5.100000 +195 888 5.100000 +195 908 5.100000 +195 919 5.100000 +195 1011 5.100000 +195 1066 5.100000 +195 1074 5.100000 +195 1101 5.100000 +195 1116 5.100000 +195 1135 5.100000 +195 1169 5.100000 +195 1221 5.100000 +195 1222 5.100000 +195 1373 5.100000 +195 1520 5.100000 +195 1648 5.100000 +195 1736 5.100000 +195 1747 5.100000 +195 1772 5.100000 +195 1774 5.100000 +195 1822 5.100000 +195 1843 5.100000 +195 1963 5.100000 +195 2018 5.100000 +195 2044 5.100000 +195 2093 5.100000 +195 2153 5.100000 +195 2189 5.100000 +195 2224 5.100000 +195 2266 5.100000 +195 2298 5.100000 +195 2405 5.100000 +195 2446 5.100000 +195 2502 5.100000 +195 2634 5.100000 +195 2657 5.100000 +195 2686 5.100000 +195 2851 5.100000 +195 2896 5.100000 +195 2967 5.100000 +195 3052 5.100000 +195 3079 5.100000 +195 3087 5.100000 +195 3141 5.100000 +195 3161 5.100000 +195 3169 5.100000 +195 3170 5.100000 +196 2 5.100000 +196 3 5.100000 +196 10 5.100000 +196 103 5.100000 +196 113 5.100000 +196 171 5.100000 +196 207 5.100000 +196 242 5.100000 +196 361 5.100000 +196 432 5.100000 +196 434 5.100000 +196 488 5.100000 +196 492 5.100000 +196 569 5.100000 +196 581 5.100000 +196 593 5.100000 +196 646 5.100000 +196 653 5.100000 +196 814 5.100000 +196 979 5.100000 +196 1058 5.100000 +196 1219 5.100000 +196 1368 5.100000 +196 1381 5.100000 +196 1391 5.100000 +196 1576 5.100000 +196 1588 5.100000 +196 1636 5.100000 +196 1637 5.100000 +196 1761 5.100000 +196 1799 5.100000 +196 1811 5.100000 +196 1922 5.100000 +196 2028 5.100000 +196 2057 5.100000 +196 2165 5.100000 +196 2223 5.100000 +196 2349 5.100000 +196 2378 5.100000 +196 2383 5.100000 +196 2459 5.100000 +196 2466 5.100000 +196 2468 5.100000 +196 2491 5.100000 +196 2677 5.100000 +196 2689 5.100000 +196 2695 5.100000 +196 2701 5.100000 +196 2718 5.100000 +196 2721 5.100000 +196 2747 5.100000 +196 2751 5.100000 +196 2791 5.100000 +196 2855 5.100000 +196 2915 5.100000 +196 2967 5.100000 +196 2990 5.100000 +196 3051 5.100000 +196 3062 5.100000 +196 3127 5.100000 +196 3145 5.100000 +197 20 5.100000 +197 25 5.100000 +197 36 5.100000 +197 53 5.100000 +197 75 5.100000 +197 85 5.100000 +197 142 5.100000 +197 219 5.100000 +197 288 5.100000 +197 388 5.100000 +197 451 5.100000 +197 511 5.100000 +197 530 5.100000 +197 687 5.100000 +197 704 5.100000 +197 730 5.100000 +197 733 5.100000 +197 740 5.100000 +197 802 5.100000 +197 929 5.100000 +197 971 5.100000 +197 1046 5.100000 +197 1061 5.100000 +197 1078 5.100000 +197 1114 5.100000 +197 1172 5.100000 +197 1173 5.100000 +197 1202 5.100000 +197 1229 5.100000 +197 1294 5.100000 +197 1350 5.100000 +197 1358 5.100000 +197 1386 5.100000 +197 1393 5.100000 +197 1607 5.100000 +197 1608 5.100000 +197 1636 5.100000 +197 1639 5.100000 +197 1681 5.100000 +197 1715 5.100000 +197 1733 5.100000 +197 1819 5.100000 +197 1820 5.100000 +197 1833 5.100000 +197 1924 5.100000 +197 1994 5.100000 +197 2005 5.100000 +197 2035 5.100000 +197 2068 5.100000 +197 2109 5.100000 +197 2172 5.100000 +197 2227 5.100000 +197 2283 5.100000 +197 2290 5.100000 +197 2357 5.100000 +197 2444 5.100000 +197 2490 5.100000 +197 2515 5.100000 +197 2551 5.100000 +197 2615 5.100000 +197 2657 5.100000 +197 2782 5.100000 +197 2833 5.100000 +197 2861 5.100000 +197 2877 5.100000 +197 2887 5.100000 +197 2916 5.100000 +197 2942 5.100000 +197 2982 5.100000 +197 3010 5.100000 +197 3023 5.100000 +197 3029 5.100000 +197 3083 5.100000 +197 3137 5.100000 +197 3180 5.100000 +198 26 5.100000 +198 66 5.100000 +198 171 5.100000 +198 179 5.100000 +198 287 5.100000 +198 288 5.100000 +198 303 5.100000 +198 309 5.100000 +198 397 5.100000 +198 412 5.100000 +198 419 5.100000 +198 491 5.100000 +198 499 5.100000 +198 516 5.100000 +198 521 5.100000 +198 586 5.100000 +198 655 5.100000 +198 674 5.100000 +198 716 5.100000 +198 731 5.100000 +198 751 5.100000 +198 769 5.100000 +198 793 5.100000 +198 845 5.100000 +198 849 5.100000 +198 902 5.100000 +198 953 5.100000 +198 997 5.100000 +198 1134 5.100000 +198 1138 5.100000 +198 1193 5.100000 +198 1249 5.100000 +198 1464 5.100000 +198 1531 5.100000 +198 1568 5.100000 +198 1606 5.100000 +198 1761 5.100000 +198 1796 5.100000 +198 1918 5.100000 +198 1979 5.100000 +198 2029 5.100000 +198 2067 5.100000 +198 2317 5.100000 +198 2338 5.100000 +198 2350 5.100000 +198 2366 5.100000 +198 2406 5.100000 +198 2425 5.100000 +198 2429 5.100000 +198 2523 5.100000 +198 2592 5.100000 +198 2641 5.100000 +198 2656 5.100000 +198 2677 5.100000 +198 2688 5.100000 +198 2707 5.100000 +198 2757 5.100000 +198 2778 5.100000 +198 2878 5.100000 +198 2897 5.100000 +198 2922 5.100000 +198 3066 5.100000 +198 3134 5.100000 +198 3139 5.100000 +198 3159 5.100000 +199 32 5.100000 +199 71 5.100000 +199 78 5.100000 +199 166 5.100000 +199 222 5.100000 +199 225 5.100000 +199 337 5.100000 +199 457 5.100000 +199 484 5.100000 +199 528 5.100000 +199 572 5.100000 +199 585 5.100000 +199 590 5.100000 +199 603 5.100000 +199 634 5.100000 +199 640 5.100000 +199 649 5.100000 +199 659 5.100000 +199 684 5.100000 +199 692 5.100000 +199 726 5.100000 +199 768 5.100000 +199 815 5.100000 +199 944 5.100000 +199 1090 5.100000 +199 1171 5.100000 +199 1275 5.100000 +199 1291 5.100000 +199 1294 5.100000 +199 1349 5.100000 +199 1364 5.100000 +199 1392 5.100000 +199 1408 5.100000 +199 1483 5.100000 +199 1495 5.100000 +199 1549 5.100000 +199 1556 5.100000 +199 1574 5.100000 +199 1643 5.100000 +199 1668 5.100000 +199 1674 5.100000 +199 1695 5.100000 +199 1729 5.100000 +199 1731 5.100000 +199 1740 5.100000 +199 1777 5.100000 +199 1787 5.100000 +199 1798 5.100000 +199 1840 5.100000 +199 2057 5.100000 +199 2132 5.100000 +199 2188 5.100000 +199 2262 5.100000 +199 2354 5.100000 +199 2401 5.100000 +199 2418 5.100000 +199 2443 5.100000 +199 2455 5.100000 +199 2467 5.100000 +199 2497 5.100000 +199 2517 5.100000 +199 2587 5.100000 +199 2596 5.100000 +199 2628 5.100000 +199 2667 5.100000 +199 2760 5.100000 +199 2839 5.100000 +199 2925 5.100000 +199 2966 5.100000 +199 2974 5.100000 +199 3037 5.100000 +199 3166 5.100000 +199 3184 5.100000 +200 46 5.100000 +200 112 5.100000 +200 159 5.100000 +200 187 5.100000 +200 219 5.100000 +200 221 5.100000 +200 306 5.100000 +200 346 5.100000 +200 436 5.100000 +200 573 5.100000 +200 598 5.100000 +200 605 5.100000 +200 622 5.100000 +200 629 5.100000 +200 631 5.100000 +200 786 5.100000 +200 879 5.100000 +200 950 5.100000 +200 975 5.100000 +200 1018 5.100000 +200 1086 5.100000 +200 1151 5.100000 +200 1173 5.100000 +200 1188 5.100000 +200 1259 5.100000 +200 1275 5.100000 +200 1342 5.100000 +200 1352 5.100000 +200 1361 5.100000 +200 1383 5.100000 +200 1451 5.100000 +200 1515 5.100000 +200 1569 5.100000 +200 1741 5.100000 +200 1763 5.100000 +200 1779 5.100000 +200 1908 5.100000 +200 2083 5.100000 +200 2124 5.100000 +200 2131 5.100000 +200 2166 5.100000 +200 2250 5.100000 +200 2254 5.100000 +200 2278 5.100000 +200 2350 5.100000 +200 2433 5.100000 +200 2452 5.100000 +200 2475 5.100000 +200 2654 5.100000 +200 2682 5.100000 +200 2736 5.100000 +200 2745 5.100000 +200 2757 5.100000 +200 2761 5.100000 +200 2779 5.100000 +200 2835 5.100000 +200 2840 5.100000 +200 2868 5.100000 +200 2899 5.100000 +200 2971 5.100000 +200 2985 5.100000 +200 3043 5.100000 +200 3077 5.100000 +200 3115 5.100000 +200 3139 5.100000 +200 3157 5.100000 +200 3167 5.100000 +200 3171 5.100000 +201 72 5.100000 +201 103 5.100000 +201 129 5.100000 +201 295 5.100000 +201 460 5.100000 +201 462 5.100000 +201 568 5.100000 +201 603 5.100000 +201 766 5.100000 +201 770 5.100000 +201 821 5.100000 +201 973 5.100000 +201 986 5.100000 +201 1009 5.100000 +201 1036 5.100000 +201 1053 5.100000 +201 1083 5.100000 +201 1169 5.100000 +201 1173 5.100000 +201 1189 5.100000 +201 1203 5.100000 +201 1259 5.100000 +201 1310 5.100000 +201 1479 5.100000 +201 1544 5.100000 +201 1680 5.100000 +201 1705 5.100000 +201 1838 5.100000 +201 1848 5.100000 +201 1970 5.100000 +201 2057 5.100000 +201 2100 5.100000 +201 2123 5.100000 +201 2154 5.100000 +201 2173 5.100000 +201 2202 5.100000 +201 2205 5.100000 +201 2221 5.100000 +201 2280 5.100000 +201 2285 5.100000 +201 2289 5.100000 +201 2336 5.100000 +201 2349 5.100000 +201 2384 5.100000 +201 2402 5.100000 +201 2414 5.100000 +201 2435 5.100000 +201 2500 5.100000 +201 2753 5.100000 +201 2784 5.100000 +201 2929 5.100000 +201 2940 5.100000 +201 2952 5.100000 +201 2961 5.100000 +201 2963 5.100000 +201 3008 5.100000 +201 3016 5.100000 +201 3073 5.100000 +201 3129 5.100000 +201 3131 5.100000 +201 3172 5.100000 +202 19 5.100000 +202 52 5.100000 +202 53 5.100000 +202 69 5.100000 +202 127 5.100000 +202 129 5.100000 +202 172 5.100000 +202 173 5.100000 +202 217 5.100000 +202 276 5.100000 +202 330 5.100000 +202 365 5.100000 +202 470 5.100000 +202 542 5.100000 +202 593 5.100000 +202 790 5.100000 +202 814 5.100000 +202 858 5.100000 +202 987 5.100000 +202 1061 5.100000 +202 1079 5.100000 +202 1156 5.100000 +202 1167 5.100000 +202 1212 5.100000 +202 1243 5.100000 +202 1248 5.100000 +202 1313 5.100000 +202 1350 5.100000 +202 1367 5.100000 +202 1369 5.100000 +202 1383 5.100000 +202 1386 5.100000 +202 1420 5.100000 +202 1422 5.100000 +202 1450 5.100000 +202 1461 5.100000 +202 1605 5.100000 +202 1606 5.100000 +202 1635 5.100000 +202 1663 5.100000 +202 1701 5.100000 +202 1709 5.100000 +202 1710 5.100000 +202 1721 5.100000 +202 1742 5.100000 +202 1764 5.100000 +202 1884 5.100000 +202 1924 5.100000 +202 1975 5.100000 +202 1986 5.100000 +202 1988 5.100000 +202 1991 5.100000 +202 2129 5.100000 +202 2155 5.100000 +202 2164 5.100000 +202 2186 5.100000 +202 2346 5.100000 +202 2369 5.100000 +202 2400 5.100000 +202 2459 5.100000 +202 2470 5.100000 +202 2578 5.100000 +202 2582 5.100000 +202 2593 5.100000 +202 2596 5.100000 +202 2619 5.100000 +202 2655 5.100000 +202 2671 5.100000 +202 2691 5.100000 +202 2791 5.100000 +202 2845 5.100000 +202 2864 5.100000 +202 2889 5.100000 +202 2945 5.100000 +202 3039 5.100000 +202 3098 5.100000 +203 82 5.100000 +203 95 5.100000 +203 189 5.100000 +203 241 5.100000 +203 296 5.100000 +203 403 5.100000 +203 430 5.100000 +203 579 5.100000 +203 585 5.100000 +203 616 5.100000 +203 630 5.100000 +203 698 5.100000 +203 707 5.100000 +203 760 5.100000 +203 908 5.100000 +203 947 5.100000 +203 995 5.100000 +203 1132 5.100000 +203 1174 5.100000 +203 1175 5.100000 +203 1183 5.100000 +203 1214 5.100000 +203 1302 5.100000 +203 1310 5.100000 +203 1386 5.100000 +203 1495 5.100000 +203 1559 5.100000 +203 1560 5.100000 +203 1562 5.100000 +203 1563 5.100000 +203 1647 5.100000 +203 1701 5.100000 +203 1708 5.100000 +203 1788 5.100000 +203 1814 5.100000 +203 1988 5.100000 +203 1996 5.100000 +203 2060 5.100000 +203 2115 5.100000 +203 2117 5.100000 +203 2178 5.100000 +203 2215 5.100000 +203 2227 5.100000 +203 2229 5.100000 +203 2253 5.100000 +203 2296 5.100000 +203 2308 5.100000 +203 2319 5.100000 +203 2327 5.100000 +203 2390 5.100000 +203 2443 5.100000 +203 2530 5.100000 +203 2543 5.100000 +203 2586 5.100000 +203 2612 5.100000 +203 2627 5.100000 +203 2638 5.100000 +203 2645 5.100000 +203 2648 5.100000 +203 2654 5.100000 +203 2671 5.100000 +203 2675 5.100000 +203 2735 5.100000 +203 2750 5.100000 +203 2785 5.100000 +203 2805 5.100000 +203 2893 5.100000 +203 2926 5.100000 +203 2958 5.100000 +203 2967 5.100000 +203 3042 5.100000 +203 3081 5.100000 +203 3156 5.100000 +204 81 5.100000 +204 90 5.100000 +204 104 5.100000 +204 203 5.100000 +204 207 5.100000 +204 283 5.100000 +204 325 5.100000 +204 440 5.100000 +204 447 5.100000 +204 604 5.100000 +204 634 5.100000 +204 720 5.100000 +204 753 5.100000 +204 787 5.100000 +204 816 5.100000 +204 867 5.100000 +204 875 5.100000 +204 1011 5.100000 +204 1028 5.100000 +204 1128 5.100000 +204 1177 5.100000 +204 1190 5.100000 +204 1191 5.100000 +204 1229 5.100000 +204 1253 5.100000 +204 1277 5.100000 +204 1321 5.100000 +204 1330 5.100000 +204 1423 5.100000 +204 1444 5.100000 +204 1468 5.100000 +204 1504 5.100000 +204 1520 5.100000 +204 1717 5.100000 +204 1728 5.100000 +204 1748 5.100000 +204 1859 5.100000 +204 1960 5.100000 +204 1974 5.100000 +204 1978 5.100000 +204 2049 5.100000 +204 2133 5.100000 +204 2179 5.100000 +204 2200 5.100000 +204 2328 5.100000 +204 2329 5.100000 +204 2338 5.100000 +204 2452 5.100000 +204 2469 5.100000 +204 2526 5.100000 +204 2527 5.100000 +204 2694 5.100000 +204 2705 5.100000 +204 2747 5.100000 +204 2818 5.100000 +204 2823 5.100000 +204 2828 5.100000 +204 2850 5.100000 +204 2862 5.100000 +204 3099 5.100000 +204 3109 5.100000 +204 3171 5.100000 +205 18 5.100000 +205 57 5.100000 +205 89 5.100000 +205 98 5.100000 +205 120 5.100000 +205 164 5.100000 +205 189 5.100000 +205 192 5.100000 +205 259 5.100000 +205 272 5.100000 +205 287 5.100000 +205 361 5.100000 +205 367 5.100000 +205 418 5.100000 +205 430 5.100000 +205 455 5.100000 +205 487 5.100000 +205 518 5.100000 +205 542 5.100000 +205 606 5.100000 +205 609 5.100000 +205 691 5.100000 +205 712 5.100000 +205 779 5.100000 +205 785 5.100000 +205 810 5.100000 +205 822 5.100000 +205 827 5.100000 +205 837 5.100000 +205 840 5.100000 +205 866 5.100000 +205 917 5.100000 +205 1107 5.100000 +205 1221 5.100000 +205 1239 5.100000 +205 1329 5.100000 +205 1373 5.100000 +205 1391 5.100000 +205 1619 5.100000 +205 1682 5.100000 +205 1739 5.100000 +205 1752 5.100000 +205 1831 5.100000 +205 1861 5.100000 +205 1871 5.100000 +205 1892 5.100000 +205 2067 5.100000 +205 2068 5.100000 +205 2085 5.100000 +205 2135 5.100000 +205 2174 5.100000 +205 2222 5.100000 +205 2233 5.100000 +205 2280 5.100000 +205 2293 5.100000 +205 2387 5.100000 +205 2398 5.100000 +205 2450 5.100000 +205 2451 5.100000 +205 2492 5.100000 +205 2529 5.100000 +205 2534 5.100000 +205 2568 5.100000 +205 2598 5.100000 +205 2642 5.100000 +205 2684 5.100000 +205 2707 5.100000 +205 2733 5.100000 +205 2745 5.100000 +205 2748 5.100000 +205 2825 5.100000 +205 2879 5.100000 +205 3072 5.100000 +205 3162 5.100000 +206 52 5.100000 +206 53 5.100000 +206 112 5.100000 +206 136 5.100000 +206 161 5.100000 +206 171 5.100000 +206 292 5.100000 +206 350 5.100000 +206 436 5.100000 +206 509 5.100000 +206 564 5.100000 +206 572 5.100000 +206 599 5.100000 +206 691 5.100000 +206 768 5.100000 +206 803 5.100000 +206 939 5.100000 +206 1005 5.100000 +206 1045 5.100000 +206 1092 5.100000 +206 1102 5.100000 +206 1129 5.100000 +206 1142 5.100000 +206 1152 5.100000 +206 1163 5.100000 +206 1183 5.100000 +206 1248 5.100000 +206 1305 5.100000 +206 1325 5.100000 +206 1327 5.100000 +206 1359 5.100000 +206 1463 5.100000 +206 1547 5.100000 +206 1664 5.100000 +206 1703 5.100000 +206 1706 5.100000 +206 1723 5.100000 +206 1727 5.100000 +206 1895 5.100000 +206 1907 5.100000 +206 1992 5.100000 +206 2008 5.100000 +206 2149 5.100000 +206 2294 5.100000 +206 2310 5.100000 +206 2313 5.100000 +206 2325 5.100000 +206 2354 5.100000 +206 2424 5.100000 +206 2491 5.100000 +206 2508 5.100000 +206 2532 5.100000 +206 2613 5.100000 +206 2629 5.100000 +206 2688 5.100000 +206 2699 5.100000 +206 2734 5.100000 +206 2758 5.100000 +206 2882 5.100000 +206 2914 5.100000 +206 2923 5.100000 +206 2969 5.100000 +206 3033 5.100000 +206 3091 5.100000 +206 3159 5.100000 +207 54 5.100000 +207 233 5.100000 +207 256 5.100000 +207 343 5.100000 +207 360 5.100000 +207 367 5.100000 +207 494 5.100000 +207 583 5.100000 +207 713 5.100000 +207 800 5.100000 +207 843 5.100000 +207 879 5.100000 +207 933 5.100000 +207 987 5.100000 +207 1070 5.100000 +207 1110 5.100000 +207 1121 5.100000 +207 1136 5.100000 +207 1184 5.100000 +207 1194 5.100000 +207 1249 5.100000 +207 1260 5.100000 +207 1429 5.100000 +207 1465 5.100000 +207 1495 5.100000 +207 1509 5.100000 +207 1553 5.100000 +207 1587 5.100000 +207 1614 5.100000 +207 1709 5.100000 +207 1762 5.100000 +207 1794 5.100000 +207 1796 5.100000 +207 1987 5.100000 +207 2110 5.100000 +207 2194 5.100000 +207 2195 5.100000 +207 2295 5.100000 +207 2316 5.100000 +207 2429 5.100000 +207 2436 5.100000 +207 2445 5.100000 +207 2471 5.100000 +207 2505 5.100000 +207 2548 5.100000 +207 2560 5.100000 +207 2605 5.100000 +207 2620 5.100000 +207 2677 5.100000 +207 2696 5.100000 +207 2717 5.100000 +207 2856 5.100000 +207 2884 5.100000 +207 2950 5.100000 +207 2966 5.100000 +207 3138 5.100000 +208 105 5.100000 +208 139 5.100000 +208 150 5.100000 +208 195 5.100000 +208 376 5.100000 +208 384 5.100000 +208 423 5.100000 +208 555 5.100000 +208 574 5.100000 +208 644 5.100000 +208 663 5.100000 +208 782 5.100000 +208 886 5.100000 +208 953 5.100000 +208 1021 5.100000 +208 1046 5.100000 +208 1098 5.100000 +208 1143 5.100000 +208 1180 5.100000 +208 1222 5.100000 +208 1224 5.100000 +208 1314 5.100000 +208 1573 5.100000 +208 1779 5.100000 +208 1968 5.100000 +208 1983 5.100000 +208 2088 5.100000 +208 2122 5.100000 +208 2126 5.100000 +208 2314 5.100000 +208 2356 5.100000 +208 2379 5.100000 +208 2400 5.100000 +208 2541 5.100000 +208 2545 5.100000 +208 2552 5.100000 +208 2651 5.100000 +208 2949 5.100000 +208 2987 5.100000 +208 3043 5.100000 +208 3076 5.100000 +208 3078 5.100000 +209 34 5.100000 +209 45 5.100000 +209 62 5.100000 +209 70 5.100000 +209 80 5.100000 +209 133 5.100000 +209 144 5.100000 +209 151 5.100000 +209 167 5.100000 +209 223 5.100000 +209 239 5.100000 +209 324 5.100000 +209 384 5.100000 +209 385 5.100000 +209 428 5.100000 +209 448 5.100000 +209 472 5.100000 +209 493 5.100000 +209 660 5.100000 +209 695 5.100000 +209 719 5.100000 +209 803 5.100000 +209 944 5.100000 +209 952 5.100000 +209 1135 5.100000 +209 1186 5.100000 +209 1212 5.100000 +209 1250 5.100000 +209 1303 5.100000 +209 1353 5.100000 +209 1359 5.100000 +209 1514 5.100000 +209 1569 5.100000 +209 1577 5.100000 +209 1622 5.100000 +209 1694 5.100000 +209 1696 5.100000 +209 1731 5.100000 +209 1759 5.100000 +209 1860 5.100000 +209 1861 5.100000 +209 1906 5.100000 +209 2051 5.100000 +209 2064 5.100000 +209 2100 5.100000 +209 2102 5.100000 +209 2106 5.100000 +209 2214 5.100000 +209 2226 5.100000 +209 2332 5.100000 +209 2350 5.100000 +209 2372 5.100000 +209 2374 5.100000 +209 2380 5.100000 +209 2395 5.100000 +209 2410 5.100000 +209 2439 5.100000 +209 2458 5.100000 +209 2484 5.100000 +209 2501 5.100000 +209 2645 5.100000 +209 2660 5.100000 +209 2682 5.100000 +209 2727 5.100000 +209 2899 5.100000 +209 2928 5.100000 +209 2932 5.100000 +209 2938 5.100000 +209 2957 5.100000 +209 2969 5.100000 +209 3031 5.100000 +209 3034 5.100000 +209 3040 5.100000 +209 3066 5.100000 +209 3156 5.100000 +210 99 5.100000 +210 110 5.100000 +210 117 5.100000 +210 153 5.100000 +210 267 5.100000 +210 280 5.100000 +210 305 5.100000 +210 494 5.100000 +210 576 5.100000 +210 692 5.100000 +210 778 5.100000 +210 846 5.100000 +210 970 5.100000 +210 980 5.100000 +210 989 5.100000 +210 1190 5.100000 +210 1200 5.100000 +210 1215 5.100000 +210 1248 5.100000 +210 1322 5.100000 +210 1433 5.100000 +210 1536 5.100000 +210 1620 5.100000 +210 1634 5.100000 +210 2085 5.100000 +210 2149 5.100000 +210 2188 5.100000 +210 2224 5.100000 +210 2291 5.100000 +210 2390 5.100000 +210 2448 5.100000 +210 2558 5.100000 +210 2586 5.100000 +210 2605 5.100000 +210 2614 5.100000 +210 2694 5.100000 +210 2700 5.100000 +210 2728 5.100000 +210 2866 5.100000 +210 2872 5.100000 +210 2973 5.100000 +210 3023 5.100000 +210 3053 5.100000 +210 3147 5.100000 +210 3186 5.100000 +210 3191 5.100000 +211 41 5.100000 +211 74 5.100000 +211 105 5.100000 +211 166 5.100000 +211 257 5.100000 +211 283 5.100000 +211 287 5.100000 +211 418 5.100000 +211 429 5.100000 +211 495 5.100000 +211 561 5.100000 +211 583 5.100000 +211 619 5.100000 +211 632 5.100000 +211 650 5.100000 +211 670 5.100000 +211 741 5.100000 +211 755 5.100000 +211 779 5.100000 +211 853 5.100000 +211 946 5.100000 +211 1023 5.100000 +211 1031 5.100000 +211 1043 5.100000 +211 1080 5.100000 +211 1112 5.100000 +211 1127 5.100000 +211 1166 5.100000 +211 1167 5.100000 +211 1186 5.100000 +211 1230 5.100000 +211 1238 5.100000 +211 1294 5.100000 +211 1310 5.100000 +211 1328 5.100000 +211 1351 5.100000 +211 1377 5.100000 +211 1399 5.100000 +211 1400 5.100000 +211 1404 5.100000 +211 1560 5.100000 +211 1611 5.100000 +211 1710 5.100000 +211 1779 5.100000 +211 1854 5.100000 +211 1916 5.100000 +211 2070 5.100000 +211 2207 5.100000 +211 2229 5.100000 +211 2240 5.100000 +211 2284 5.100000 +211 2392 5.100000 +211 2445 5.100000 +211 2463 5.100000 +211 2484 5.100000 +211 2492 5.100000 +211 2498 5.100000 +211 2574 5.100000 +211 2584 5.100000 +211 2591 5.100000 +211 2599 5.100000 +211 2603 5.100000 +211 2610 5.100000 +211 2622 5.100000 +211 2756 5.100000 +211 2761 5.100000 +211 2767 5.100000 +211 2829 5.100000 +211 2859 5.100000 +211 2872 5.100000 +211 3002 5.100000 +211 3032 5.100000 +211 3067 5.100000 +212 23 5.100000 +212 127 5.100000 +212 147 5.100000 +212 155 5.100000 +212 175 5.100000 +212 179 5.100000 +212 260 5.100000 +212 302 5.100000 +212 537 5.100000 +212 597 5.100000 +212 632 5.100000 +212 672 5.100000 +212 679 5.100000 +212 704 5.100000 +212 742 5.100000 +212 765 5.100000 +212 833 5.100000 +212 836 5.100000 +212 919 5.100000 +212 930 5.100000 +212 939 5.100000 +212 1008 5.100000 +212 1110 5.100000 +212 1130 5.100000 +212 1262 5.100000 +212 1331 5.100000 +212 1394 5.100000 +212 1509 5.100000 +212 1515 5.100000 +212 1616 5.100000 +212 1620 5.100000 +212 1691 5.100000 +212 1751 5.100000 +212 1777 5.100000 +212 1791 5.100000 +212 1798 5.100000 +212 1829 5.100000 +212 1831 5.100000 +212 1851 5.100000 +212 1898 5.100000 +212 1912 5.100000 +212 1917 5.100000 +212 1919 5.100000 +212 1925 5.100000 +212 1960 5.100000 +212 2010 5.100000 +212 2081 5.100000 +212 2168 5.100000 +212 2169 5.100000 +212 2213 5.100000 +212 2229 5.100000 +212 2243 5.100000 +212 2321 5.100000 +212 2337 5.100000 +212 2349 5.100000 +212 2356 5.100000 +212 2381 5.100000 +212 2492 5.100000 +212 2660 5.100000 +212 2788 5.100000 +212 2816 5.100000 +212 2825 5.100000 +212 2851 5.100000 +212 2871 5.100000 +212 2900 5.100000 +212 2916 5.100000 +212 2923 5.100000 +212 2975 5.100000 +212 3104 5.100000 +212 3123 5.100000 +212 3181 5.100000 +213 13 5.100000 +213 82 5.100000 +213 171 5.100000 +213 283 5.100000 +213 302 5.100000 +213 313 5.100000 +213 348 5.100000 +213 361 5.100000 +213 370 5.100000 +213 387 5.100000 +213 434 5.100000 +213 478 5.100000 +213 487 5.100000 +213 508 5.100000 +213 549 5.100000 +213 584 5.100000 +213 651 5.100000 +213 654 5.100000 +213 658 5.100000 +213 670 5.100000 +213 671 5.100000 +213 704 5.100000 +213 921 5.100000 +213 973 5.100000 +213 1156 5.100000 +213 1176 5.100000 +213 1296 5.100000 +213 1302 5.100000 +213 1334 5.100000 +213 1382 5.100000 +213 1463 5.100000 +213 1537 5.100000 +213 1560 5.100000 +213 1575 5.100000 +213 1614 5.100000 +213 1683 5.100000 +213 1703 5.100000 +213 1711 5.100000 +213 1861 5.100000 +213 2053 5.100000 +213 2187 5.100000 +213 2194 5.100000 +213 2204 5.100000 +213 2337 5.100000 +213 2426 5.100000 +213 2435 5.100000 +213 2447 5.100000 +213 2462 5.100000 +213 2472 5.100000 +213 2492 5.100000 +213 2509 5.100000 +213 2608 5.100000 +213 2648 5.100000 +213 2654 5.100000 +213 2674 5.100000 +213 2771 5.100000 +213 2781 5.100000 +213 2825 5.100000 +213 2827 5.100000 +213 2841 5.100000 +213 2846 5.100000 +213 2992 5.100000 +213 3013 5.100000 +213 3050 5.100000 +213 3060 5.100000 +213 3068 5.100000 +213 3075 5.100000 +214 115 5.100000 +214 225 5.100000 +214 296 5.100000 +214 314 5.100000 +214 321 5.100000 +214 394 5.100000 +214 442 5.100000 +214 452 5.100000 +214 476 5.100000 +214 552 5.100000 +214 554 5.100000 +214 582 5.100000 +214 619 5.100000 +214 620 5.100000 +214 648 5.100000 +214 736 5.100000 +214 797 5.100000 +214 960 5.100000 +214 1075 5.100000 +214 1105 5.100000 +214 1153 5.100000 +214 1160 5.100000 +214 1193 5.100000 +214 1209 5.100000 +214 1249 5.100000 +214 1313 5.100000 +214 1322 5.100000 +214 1336 5.100000 +214 1512 5.100000 +214 1570 5.100000 +214 1620 5.100000 +214 1660 5.100000 +214 1826 5.100000 +214 1834 5.100000 +214 1891 5.100000 +214 1897 5.100000 +214 1906 5.100000 +214 1940 5.100000 +214 1955 5.100000 +214 1982 5.100000 +214 2002 5.100000 +214 2013 5.100000 +214 2078 5.100000 +214 2080 5.100000 +214 2148 5.100000 +214 2208 5.100000 +214 2218 5.100000 +214 2226 5.100000 +214 2285 5.100000 +214 2297 5.100000 +214 2330 5.100000 +214 2372 5.100000 +214 2450 5.100000 +214 2471 5.100000 +214 2487 5.100000 +214 2561 5.100000 +214 2622 5.100000 +214 2636 5.100000 +214 2704 5.100000 +214 2711 5.100000 +214 2766 5.100000 +214 2820 5.100000 +214 2854 5.100000 +214 2894 5.100000 +214 2935 5.100000 +214 2937 5.100000 +214 3067 5.100000 +215 27 5.100000 +215 68 5.100000 +215 128 5.100000 +215 425 5.100000 +215 474 5.100000 +215 518 5.100000 +215 557 5.100000 +215 579 5.100000 +215 605 5.100000 +215 763 5.100000 +215 1090 5.100000 +215 1158 5.100000 +215 1168 5.100000 +215 1301 5.100000 +215 1444 5.100000 +215 1453 5.100000 +215 1457 5.100000 +215 1458 5.100000 +215 1606 5.100000 +215 1625 5.100000 +215 1735 5.100000 +215 1860 5.100000 +215 1949 5.100000 +215 1959 5.100000 +215 1994 5.100000 +215 2026 5.100000 +215 2050 5.100000 +215 2089 5.100000 +215 2269 5.100000 +215 2285 5.100000 +215 2403 5.100000 +215 2464 5.100000 +215 2488 5.100000 +215 2506 5.100000 +215 2518 5.100000 +215 2599 5.100000 +215 2606 5.100000 +215 2683 5.100000 +215 2712 5.100000 +215 2723 5.100000 +215 2767 5.100000 +215 2770 5.100000 +215 2805 5.100000 +215 2868 5.100000 +215 2869 5.100000 +215 2874 5.100000 +215 2892 5.100000 +215 2896 5.100000 +215 2955 5.100000 +215 3106 5.100000 +215 3165 5.100000 +215 3180 5.100000 +216 72 5.100000 +216 98 5.100000 +216 104 5.100000 +216 219 5.100000 +216 280 5.100000 +216 306 5.100000 +216 317 5.100000 +216 322 5.100000 +216 358 5.100000 +216 388 5.100000 +216 399 5.100000 +216 453 5.100000 +216 537 5.100000 +216 621 5.100000 +216 750 5.100000 +216 762 5.100000 +216 774 5.100000 +216 787 5.100000 +216 874 5.100000 +216 990 5.100000 +216 1020 5.100000 +216 1215 5.100000 +216 1254 5.100000 +216 1265 5.100000 +216 1308 5.100000 +216 1309 5.100000 +216 1332 5.100000 +216 1437 5.100000 +216 1477 5.100000 +216 1656 5.100000 +216 1665 5.100000 +216 1736 5.100000 +216 1868 5.100000 +216 1880 5.100000 +216 1917 5.100000 +216 1952 5.100000 +216 1977 5.100000 +216 2009 5.100000 +216 2018 5.100000 +216 2109 5.100000 +216 2172 5.100000 +216 2226 5.100000 +216 2229 5.100000 +216 2428 5.100000 +216 2453 5.100000 +216 2524 5.100000 +216 2558 5.100000 +216 2571 5.100000 +216 2586 5.100000 +216 2605 5.100000 +216 2635 5.100000 +216 2713 5.100000 +216 2757 5.100000 +216 2826 5.100000 +216 2885 5.100000 +216 2889 5.100000 +216 2902 5.100000 +216 3035 5.100000 +216 3036 5.100000 +216 3068 5.100000 +216 3197 5.100000 +217 9 5.100000 +217 49 5.100000 +217 79 5.100000 +217 187 5.100000 +217 374 5.100000 +217 426 5.100000 +217 500 5.100000 +217 591 5.100000 +217 604 5.100000 +217 626 5.100000 +217 685 5.100000 +217 732 5.100000 +217 840 5.100000 +217 850 5.100000 +217 855 5.100000 +217 856 5.100000 +217 931 5.100000 +217 1122 5.100000 +217 1198 5.100000 +217 1251 5.100000 +217 1335 5.100000 +217 1382 5.100000 +217 1396 5.100000 +217 1537 5.100000 +217 1558 5.100000 +217 1562 5.100000 +217 1603 5.100000 +217 1630 5.100000 +217 1697 5.100000 +217 1702 5.100000 +217 1847 5.100000 +217 1979 5.100000 +217 2006 5.100000 +217 2112 5.100000 +217 2127 5.100000 +217 2283 5.100000 +217 2377 5.100000 +217 2416 5.100000 +217 2438 5.100000 +217 2600 5.100000 +217 2609 5.100000 +217 2882 5.100000 +217 2927 5.100000 +217 2958 5.100000 +217 2966 5.100000 +217 3002 5.100000 +217 3072 5.100000 +217 3100 5.100000 +217 3157 5.100000 +217 3166 5.100000 +217 3181 5.100000 +218 17 5.100000 +218 19 5.100000 +218 68 5.100000 +218 144 5.100000 +218 160 5.100000 +218 189 5.100000 +218 235 5.100000 +218 292 5.100000 +218 402 5.100000 +218 492 5.100000 +218 846 5.100000 +218 860 5.100000 +218 914 5.100000 +218 944 5.100000 +218 961 5.100000 +218 1001 5.100000 +218 1013 5.100000 +218 1090 5.100000 +218 1132 5.100000 +218 1248 5.100000 +218 1277 5.100000 +218 1368 5.100000 +218 1423 5.100000 +218 1519 5.100000 +218 1583 5.100000 +218 1589 5.100000 +218 1688 5.100000 +218 1780 5.100000 +218 1811 5.100000 +218 2005 5.100000 +218 2107 5.100000 +218 2112 5.100000 +218 2129 5.100000 +218 2135 5.100000 +218 2227 5.100000 +218 2236 5.100000 +218 2259 5.100000 +218 2269 5.100000 +218 2307 5.100000 +218 2341 5.100000 +218 2370 5.100000 +218 2530 5.100000 +218 2578 5.100000 +218 2582 5.100000 +218 2591 5.100000 +218 2604 5.100000 +218 2648 5.100000 +218 2684 5.100000 +218 2805 5.100000 +218 2808 5.100000 +218 2861 5.100000 +218 2936 5.100000 +218 3037 5.100000 +218 3116 5.100000 +218 3128 5.100000 +219 16 5.100000 +219 18 5.100000 +219 37 5.100000 +219 64 5.100000 +219 104 5.100000 +219 160 5.100000 +219 202 5.100000 +219 263 5.100000 +219 264 5.100000 +219 292 5.100000 +219 322 5.100000 +219 382 5.100000 +219 427 5.100000 +219 505 5.100000 +219 557 5.100000 +219 661 5.100000 +219 710 5.100000 +219 776 5.100000 +219 790 5.100000 +219 830 5.100000 +219 950 5.100000 +219 980 5.100000 +219 999 5.100000 +219 1057 5.100000 +219 1084 5.100000 +219 1179 5.100000 +219 1431 5.100000 +219 1436 5.100000 +219 1463 5.100000 +219 1464 5.100000 +219 1502 5.100000 +219 1528 5.100000 +219 1548 5.100000 +219 1697 5.100000 +219 1710 5.100000 +219 1821 5.100000 +219 1853 5.100000 +219 1896 5.100000 +219 1905 5.100000 +219 1944 5.100000 +219 2113 5.100000 +219 2202 5.100000 +219 2210 5.100000 +219 2212 5.100000 +219 2305 5.100000 +219 2349 5.100000 +219 2350 5.100000 +219 2375 5.100000 +219 2441 5.100000 +219 2456 5.100000 +219 2470 5.100000 +219 2477 5.100000 +219 2580 5.100000 +219 2642 5.100000 +219 2643 5.100000 +219 2668 5.100000 +219 2689 5.100000 +219 2723 5.100000 +219 2785 5.100000 +219 3140 5.100000 +219 3141 5.100000 +219 3151 5.100000 +220 23 5.100000 +220 92 5.100000 +220 124 5.100000 +220 217 5.100000 +220 280 5.100000 +220 296 5.100000 +220 368 5.100000 +220 452 5.100000 +220 490 5.100000 +220 494 5.100000 +220 586 5.100000 +220 601 5.100000 +220 621 5.100000 +220 624 5.100000 +220 702 5.100000 +220 708 5.100000 +220 889 5.100000 +220 918 5.100000 +220 945 5.100000 +220 1151 5.100000 +220 1152 5.100000 +220 1168 5.100000 +220 1201 5.100000 +220 1454 5.100000 +220 1522 5.100000 +220 1622 5.100000 +220 1629 5.100000 +220 1641 5.100000 +220 1681 5.100000 +220 1696 5.100000 +220 1765 5.100000 +220 1768 5.100000 +220 1803 5.100000 +220 1839 5.100000 +220 1863 5.100000 +220 1918 5.100000 +220 1986 5.100000 +220 2068 5.100000 +220 2079 5.100000 +220 2153 5.100000 +220 2177 5.100000 +220 2220 5.100000 +220 2232 5.100000 +220 2238 5.100000 +220 2247 5.100000 +220 2320 5.100000 +220 2339 5.100000 +220 2396 5.100000 +220 2453 5.100000 +220 2544 5.100000 +220 2562 5.100000 +220 2581 5.100000 +220 2625 5.100000 +220 2633 5.100000 +220 2694 5.100000 +220 2709 5.100000 +220 2734 5.100000 +220 2861 5.100000 +220 3022 5.100000 +220 3036 5.100000 +220 3152 5.100000 +221 104 5.100000 +221 161 5.100000 +221 166 5.100000 +221 231 5.100000 +221 240 5.100000 +221 314 5.100000 +221 357 5.100000 +221 370 5.100000 +221 525 5.100000 +221 592 5.100000 +221 594 5.100000 +221 596 5.100000 +221 611 5.100000 +221 774 5.100000 +221 788 5.100000 +221 907 5.100000 +221 1059 5.100000 +221 1089 5.100000 +221 1346 5.100000 +221 1387 5.100000 +221 1400 5.100000 +221 1415 5.100000 +221 1548 5.100000 +221 1557 5.100000 +221 1627 5.100000 +221 1712 5.100000 +221 1731 5.100000 +221 1747 5.100000 +221 1901 5.100000 +221 1946 5.100000 +221 1949 5.100000 +221 1975 5.100000 +221 2046 5.100000 +221 2058 5.100000 +221 2118 5.100000 +221 2165 5.100000 +221 2214 5.100000 +221 2374 5.100000 +221 2484 5.100000 +221 2549 5.100000 +221 2571 5.100000 +221 2574 5.100000 +221 2589 5.100000 +221 2619 5.100000 +221 2656 5.100000 +221 2690 5.100000 +221 2887 5.100000 +221 2914 5.100000 +221 3022 5.100000 +221 3050 5.100000 +221 3118 5.100000 +221 3141 5.100000 +221 3144 5.100000 +221 3194 5.100000 +222 47 5.100000 +222 71 5.100000 +222 121 5.100000 +222 133 5.100000 +222 141 5.100000 +222 154 5.100000 +222 306 5.100000 +222 363 5.100000 +222 365 5.100000 +222 379 5.100000 +222 397 5.100000 +222 401 5.100000 +222 471 5.100000 +222 539 5.100000 +222 595 5.100000 +222 629 5.100000 +222 704 5.100000 +222 714 5.100000 +222 724 5.100000 +222 739 5.100000 +222 761 5.100000 +222 765 5.100000 +222 793 5.100000 +222 854 5.100000 +222 858 5.100000 +222 889 5.100000 +222 901 5.100000 +222 937 5.100000 +222 959 5.100000 +222 1047 5.100000 +222 1049 5.100000 +222 1131 5.100000 +222 1144 5.100000 +222 1156 5.100000 +222 1158 5.100000 +222 1374 5.100000 +222 1399 5.100000 +222 1455 5.100000 +222 1497 5.100000 +222 1684 5.100000 +222 1717 5.100000 +222 1784 5.100000 +222 1876 5.100000 +222 1896 5.100000 +222 1918 5.100000 +222 1951 5.100000 +222 1956 5.100000 +222 2097 5.100000 +222 2107 5.100000 +222 2123 5.100000 +222 2177 5.100000 +222 2228 5.100000 +222 2290 5.100000 +222 2361 5.100000 +222 2440 5.100000 +222 2460 5.100000 +222 2670 5.100000 +222 2792 5.100000 +222 2840 5.100000 +222 2868 5.100000 +222 2949 5.100000 +222 3021 5.100000 +222 3022 5.100000 +222 3097 5.100000 +222 3185 5.100000 +223 15 5.100000 +223 19 5.100000 +223 56 5.100000 +223 117 5.100000 +223 140 5.100000 +223 206 5.100000 +223 207 5.100000 +223 220 5.100000 +223 277 5.100000 +223 294 5.100000 +223 335 5.100000 +223 437 5.100000 +223 449 5.100000 +223 611 5.100000 +223 707 5.100000 +223 721 5.100000 +223 751 5.100000 +223 787 5.100000 +223 805 5.100000 +223 936 5.100000 +223 995 5.100000 +223 1055 5.100000 +223 1103 5.100000 +223 1147 5.100000 +223 1198 5.100000 +223 1293 5.100000 +223 1363 5.100000 +223 1421 5.100000 +223 1465 5.100000 +223 1476 5.100000 +223 1590 5.100000 +223 1623 5.100000 +223 1694 5.100000 +223 1754 5.100000 +223 1800 5.100000 +223 1806 5.100000 +223 1916 5.100000 +223 1918 5.100000 +223 1995 5.100000 +223 2066 5.100000 +223 2183 5.100000 +223 2233 5.100000 +223 2238 5.100000 +223 2260 5.100000 +223 2678 5.100000 +223 2748 5.100000 +223 2803 5.100000 +223 2998 5.100000 +223 3014 5.100000 +223 3039 5.100000 +223 3078 5.100000 +223 3145 5.100000 +224 81 5.100000 +224 130 5.100000 +224 137 5.100000 +224 141 5.100000 +224 179 5.100000 +224 226 5.100000 +224 255 5.100000 +224 315 5.100000 +224 318 5.100000 +224 383 5.100000 +224 387 5.100000 +224 427 5.100000 +224 436 5.100000 +224 447 5.100000 +224 519 5.100000 +224 588 5.100000 +224 707 5.100000 +224 732 5.100000 +224 761 5.100000 +224 889 5.100000 +224 952 5.100000 +224 977 5.100000 +224 1270 5.100000 +224 1301 5.100000 +224 1342 5.100000 +224 1353 5.100000 +224 1359 5.100000 +224 1422 5.100000 +224 1434 5.100000 +224 1467 5.100000 +224 1553 5.100000 +224 1622 5.100000 +224 1647 5.100000 +224 1669 5.100000 +224 1700 5.100000 +224 1710 5.100000 +224 1780 5.100000 +224 1781 5.100000 +224 1795 5.100000 +224 1799 5.100000 +224 1830 5.100000 +224 1854 5.100000 +224 1867 5.100000 +224 1909 5.100000 +224 1919 5.100000 +224 1957 5.100000 +224 1966 5.100000 +224 2043 5.100000 +224 2056 5.100000 +224 2132 5.100000 +224 2140 5.100000 +224 2275 5.100000 +224 2339 5.100000 +224 2371 5.100000 +224 2402 5.100000 +224 2426 5.100000 +224 2471 5.100000 +224 2590 5.100000 +224 2623 5.100000 +224 2625 5.100000 +224 2637 5.100000 +224 2738 5.100000 +224 2821 5.100000 +224 2834 5.100000 +224 2880 5.100000 +224 2892 5.100000 +224 2898 5.100000 +224 3090 5.100000 +225 21 5.100000 +225 46 5.100000 +225 94 5.100000 +225 119 5.100000 +225 256 5.100000 +225 298 5.100000 +225 304 5.100000 +225 306 5.100000 +225 345 5.100000 +225 401 5.100000 +225 447 5.100000 +225 500 5.100000 +225 523 5.100000 +225 527 5.100000 +225 535 5.100000 +225 606 5.100000 +225 631 5.100000 +225 679 5.100000 +225 801 5.100000 +225 828 5.100000 +225 831 5.100000 +225 859 5.100000 +225 882 5.100000 +225 993 5.100000 +225 1160 5.100000 +225 1176 5.100000 +225 1197 5.100000 +225 1212 5.100000 +225 1273 5.100000 +225 1283 5.100000 +225 1298 5.100000 +225 1306 5.100000 +225 1357 5.100000 +225 1364 5.100000 +225 1403 5.100000 +225 1448 5.100000 +225 1449 5.100000 +225 1642 5.100000 +225 1720 5.100000 +225 1785 5.100000 +225 1819 5.100000 +225 1825 5.100000 +225 1861 5.100000 +225 1928 5.100000 +225 2039 5.100000 +225 2050 5.100000 +225 2065 5.100000 +225 2117 5.100000 +225 2150 5.100000 +225 2160 5.100000 +225 2205 5.100000 +225 2212 5.100000 +225 2214 5.100000 +225 2455 5.100000 +225 2473 5.100000 +225 2533 5.100000 +225 2543 5.100000 +225 2556 5.100000 +225 2633 5.100000 +225 2647 5.100000 +225 2658 5.100000 +225 2661 5.100000 +225 2710 5.100000 +225 2713 5.100000 +225 2727 5.100000 +225 2792 5.100000 +225 2810 5.100000 +225 2812 5.100000 +225 2867 5.100000 +225 2951 5.100000 +225 2955 5.100000 +225 2973 5.100000 +225 2989 5.100000 +225 3141 5.100000 +225 3187 5.100000 +226 42 5.100000 +226 50 5.100000 +226 74 5.100000 +226 239 5.100000 +226 248 5.100000 +226 287 5.100000 +226 314 5.100000 +226 336 5.100000 +226 409 5.100000 +226 441 5.100000 +226 548 5.100000 +226 569 5.100000 +226 598 5.100000 +226 603 5.100000 +226 626 5.100000 +226 630 5.100000 +226 631 5.100000 +226 736 5.100000 +226 853 5.100000 +226 861 5.100000 +226 909 5.100000 +226 1017 5.100000 +226 1050 5.100000 +226 1105 5.100000 +226 1255 5.100000 +226 1272 5.100000 +226 1284 5.100000 +226 1331 5.100000 +226 1343 5.100000 +226 1347 5.100000 +226 1441 5.100000 +226 1492 5.100000 +226 1678 5.100000 +226 1681 5.100000 +226 1682 5.100000 +226 1730 5.100000 +226 1777 5.100000 +226 1807 5.100000 +226 1888 5.100000 +226 1927 5.100000 +226 1956 5.100000 +226 1957 5.100000 +226 1960 5.100000 +226 1975 5.100000 +226 2013 5.100000 +226 2044 5.100000 +226 2071 5.100000 +226 2100 5.100000 +226 2149 5.100000 +226 2209 5.100000 +226 2229 5.100000 +226 2269 5.100000 +226 2347 5.100000 +226 2389 5.100000 +226 2412 5.100000 +226 2413 5.100000 +226 2440 5.100000 +226 2462 5.100000 +226 2500 5.100000 +226 2616 5.100000 +226 2648 5.100000 +226 2672 5.100000 +226 2758 5.100000 +226 2767 5.100000 +226 2775 5.100000 +226 2858 5.100000 +226 2872 5.100000 +226 2889 5.100000 +226 2936 5.100000 +226 3009 5.100000 +226 3066 5.100000 +226 3128 5.100000 +227 76 5.100000 +227 101 5.100000 +227 126 5.100000 +227 146 5.100000 +227 159 5.100000 +227 190 5.100000 +227 235 5.100000 +227 325 5.100000 +227 341 5.100000 +227 396 5.100000 +227 398 5.100000 +227 459 5.100000 +227 465 5.100000 +227 504 5.100000 +227 547 5.100000 +227 680 5.100000 +227 779 5.100000 +227 844 5.100000 +227 849 5.100000 +227 863 5.100000 +227 935 5.100000 +227 959 5.100000 +227 968 5.100000 +227 1011 5.100000 +227 1012 5.100000 +227 1056 5.100000 +227 1057 5.100000 +227 1071 5.100000 +227 1199 5.100000 +227 1212 5.100000 +227 1232 5.100000 +227 1235 5.100000 +227 1268 5.100000 +227 1269 5.100000 +227 1331 5.100000 +227 1354 5.100000 +227 1368 5.100000 +227 1388 5.100000 +227 1400 5.100000 +227 1412 5.100000 +227 1515 5.100000 +227 1568 5.100000 +227 1684 5.100000 +227 1842 5.100000 +227 1886 5.100000 +227 1923 5.100000 +227 1962 5.100000 +227 1992 5.100000 +227 1993 5.100000 +227 2148 5.100000 +227 2153 5.100000 +227 2168 5.100000 +227 2181 5.100000 +227 2260 5.100000 +227 2369 5.100000 +227 2373 5.100000 +227 2390 5.100000 +227 2427 5.100000 +227 2491 5.100000 +227 2498 5.100000 +227 2533 5.100000 +227 2589 5.100000 +227 2631 5.100000 +227 2698 5.100000 +227 2725 5.100000 +227 2853 5.100000 +227 2858 5.100000 +227 2913 5.100000 +227 2973 5.100000 +227 3055 5.100000 +227 3065 5.100000 +227 3136 5.100000 +227 3195 5.100000 +228 12 5.100000 +228 57 5.100000 +228 103 5.100000 +228 135 5.100000 +228 218 5.100000 +228 230 5.100000 +228 316 5.100000 +228 332 5.100000 +228 403 5.100000 +228 444 5.100000 +228 497 5.100000 +228 525 5.100000 +228 534 5.100000 +228 541 5.100000 +228 566 5.100000 +228 683 5.100000 +228 686 5.100000 +228 698 5.100000 +228 724 5.100000 +228 732 5.100000 +228 746 5.100000 +228 765 5.100000 +228 805 5.100000 +228 845 5.100000 +228 863 5.100000 +228 907 5.100000 +228 1047 5.100000 +228 1087 5.100000 +228 1285 5.100000 +228 1347 5.100000 +228 1370 5.100000 +228 1423 5.100000 +228 1504 5.100000 +228 1513 5.100000 +228 1613 5.100000 +228 1615 5.100000 +228 1624 5.100000 +228 1631 5.100000 +228 1632 5.100000 +228 1643 5.100000 +228 1696 5.100000 +228 1698 5.100000 +228 1782 5.100000 +228 1795 5.100000 +228 1796 5.100000 +228 1996 5.100000 +228 2038 5.100000 +228 2040 5.100000 +228 2046 5.100000 +228 2125 5.100000 +228 2164 5.100000 +228 2171 5.100000 +228 2208 5.100000 +228 2263 5.100000 +228 2364 5.100000 +228 2394 5.100000 +228 2406 5.100000 +228 2465 5.100000 +228 2523 5.100000 +228 2533 5.100000 +228 2568 5.100000 +228 2666 5.100000 +228 2828 5.100000 +228 2833 5.100000 +228 2929 5.100000 +228 2936 5.100000 +228 2937 5.100000 +228 2952 5.100000 +228 2991 5.100000 +228 3001 5.100000 +228 3089 5.100000 +229 77 5.100000 +229 166 5.100000 +229 167 5.100000 +229 272 5.100000 +229 330 5.100000 +229 384 5.100000 +229 463 5.100000 +229 527 5.100000 +229 533 5.100000 +229 585 5.100000 +229 605 5.100000 +229 763 5.100000 +229 843 5.100000 +229 848 5.100000 +229 868 5.100000 +229 912 5.100000 +229 922 5.100000 +229 1016 5.100000 +229 1168 5.100000 +229 1175 5.100000 +229 1216 5.100000 +229 1235 5.100000 +229 1276 5.100000 +229 1283 5.100000 +229 1287 5.100000 +229 1383 5.100000 +229 1410 5.100000 +229 1412 5.100000 +229 1499 5.100000 +229 1506 5.100000 +229 1651 5.100000 +229 1749 5.100000 +229 1881 5.100000 +229 1983 5.100000 +229 2145 5.100000 +229 2238 5.100000 +229 2300 5.100000 +229 2346 5.100000 +229 2376 5.100000 +229 2443 5.100000 +229 2454 5.100000 +229 2518 5.100000 +229 2665 5.100000 +229 2750 5.100000 +229 2756 5.100000 +229 2757 5.100000 +229 2833 5.100000 +229 2931 5.100000 +229 2945 5.100000 +229 2950 5.100000 +229 2982 5.100000 +229 3056 5.100000 +229 3107 5.100000 +229 3166 5.100000 +230 62 5.100000 +230 123 5.100000 +230 156 5.100000 +230 176 5.100000 +230 335 5.100000 +230 349 5.100000 +230 363 5.100000 +230 396 5.100000 +230 450 5.100000 +230 594 5.100000 +230 627 5.100000 +230 663 5.100000 +230 671 5.100000 +230 892 5.100000 +230 1048 5.100000 +230 1095 5.100000 +230 1176 5.100000 +230 1190 5.100000 +230 1208 5.100000 +230 1298 5.100000 +230 1371 5.100000 +230 1414 5.100000 +230 1487 5.100000 +230 1498 5.100000 +230 1546 5.100000 +230 1610 5.100000 +230 1617 5.100000 +230 1618 5.100000 +230 1789 5.100000 +230 1888 5.100000 +230 1912 5.100000 +230 1995 5.100000 +230 2002 5.100000 +230 2012 5.100000 +230 2033 5.100000 +230 2209 5.100000 +230 2226 5.100000 +230 2246 5.100000 +230 2254 5.100000 +230 2261 5.100000 +230 2410 5.100000 +230 2434 5.100000 +230 2480 5.100000 +230 2597 5.100000 +230 2606 5.100000 +230 2635 5.100000 +230 2663 5.100000 +230 2718 5.100000 +230 2732 5.100000 +230 2811 5.100000 +230 2819 5.100000 +230 2869 5.100000 +230 2900 5.100000 +230 2943 5.100000 +230 2982 5.100000 +230 3036 5.100000 +230 3142 5.100000 +230 3186 5.100000 +231 61 5.100000 +231 102 5.100000 +231 164 5.100000 +231 168 5.100000 +231 175 5.100000 +231 179 5.100000 +231 187 5.100000 +231 190 5.100000 +231 199 5.100000 +231 417 5.100000 +231 421 5.100000 +231 426 5.100000 +231 442 5.100000 +231 465 5.100000 +231 473 5.100000 +231 534 5.100000 +231 634 5.100000 +231 657 5.100000 +231 881 5.100000 +231 888 5.100000 +231 906 5.100000 +231 930 5.100000 +231 1018 5.100000 +231 1061 5.100000 +231 1080 5.100000 +231 1205 5.100000 +231 1243 5.100000 +231 1273 5.100000 +231 1334 5.100000 +231 1350 5.100000 +231 1402 5.100000 +231 1490 5.100000 +231 1549 5.100000 +231 1574 5.100000 +231 1616 5.100000 +231 1646 5.100000 +231 1665 5.100000 +231 1688 5.100000 +231 1697 5.100000 +231 1714 5.100000 +231 1828 5.100000 +231 1855 5.100000 +231 1884 5.100000 +231 1961 5.100000 +231 2035 5.100000 +231 2041 5.100000 +231 2128 5.100000 +231 2159 5.100000 +231 2249 5.100000 +231 2306 5.100000 +231 2316 5.100000 +231 2336 5.100000 +231 2396 5.100000 +231 2463 5.100000 +231 2492 5.100000 +231 2678 5.100000 +231 2689 5.100000 +231 2701 5.100000 +231 2704 5.100000 +231 2729 5.100000 +231 2766 5.100000 +231 2813 5.100000 +231 2899 5.100000 +231 2982 5.100000 +231 2997 5.100000 +231 3003 5.100000 +231 3018 5.100000 +231 3055 5.100000 +231 3146 5.100000 +231 3165 5.100000 +232 58 5.100000 +232 93 5.100000 +232 160 5.100000 +232 192 5.100000 +232 222 5.100000 +232 289 5.100000 +232 395 5.100000 +232 426 5.100000 +232 428 5.100000 +232 608 5.100000 +232 837 5.100000 +232 844 5.100000 +232 846 5.100000 +232 850 5.100000 +232 882 5.100000 +232 887 5.100000 +232 888 5.100000 +232 973 5.100000 +232 985 5.100000 +232 1087 5.100000 +232 1103 5.100000 +232 1144 5.100000 +232 1209 5.100000 +232 1322 5.100000 +232 1438 5.100000 +232 1461 5.100000 +232 1499 5.100000 +232 1553 5.100000 +232 1599 5.100000 +232 1662 5.100000 +232 1710 5.100000 +232 1756 5.100000 +232 1771 5.100000 +232 1779 5.100000 +232 1813 5.100000 +232 1821 5.100000 +232 1903 5.100000 +232 1909 5.100000 +232 1954 5.100000 +232 1969 5.100000 +232 2039 5.100000 +232 2050 5.100000 +232 2109 5.100000 +232 2122 5.100000 +232 2151 5.100000 +232 2156 5.100000 +232 2160 5.100000 +232 2176 5.100000 +232 2235 5.100000 +232 2386 5.100000 +232 2480 5.100000 +232 2504 5.100000 +232 2668 5.100000 +232 2756 5.100000 +232 2769 5.100000 +232 2868 5.100000 +232 2871 5.100000 +232 2994 5.100000 +232 3081 5.100000 +232 3110 5.100000 +232 3114 5.100000 +232 3170 5.100000 +233 44 5.100000 +233 121 5.100000 +233 254 5.100000 +233 379 5.100000 +233 415 5.100000 +233 429 5.100000 +233 431 5.100000 +233 454 5.100000 +233 461 5.100000 +233 474 5.100000 +233 478 5.100000 +233 508 5.100000 +233 531 5.100000 +233 551 5.100000 +233 560 5.100000 +233 580 5.100000 +233 610 5.100000 +233 690 5.100000 +233 728 5.100000 +233 748 5.100000 +233 751 5.100000 +233 805 5.100000 +233 937 5.100000 +233 1000 5.100000 +233 1050 5.100000 +233 1150 5.100000 +233 1152 5.100000 +233 1219 5.100000 +233 1252 5.100000 +233 1310 5.100000 +233 1460 5.100000 +233 1469 5.100000 +233 1483 5.100000 +233 1519 5.100000 +233 1533 5.100000 +233 1538 5.100000 +233 1563 5.100000 +233 1582 5.100000 +233 1681 5.100000 +233 1747 5.100000 +233 1803 5.100000 +233 1815 5.100000 +233 1867 5.100000 +233 1870 5.100000 +233 1885 5.100000 +233 1934 5.100000 +233 1970 5.100000 +233 1973 5.100000 +233 1998 5.100000 +233 2175 5.100000 +233 2182 5.100000 +233 2252 5.100000 +233 2301 5.100000 +233 2320 5.100000 +233 2323 5.100000 +233 2366 5.100000 +233 2406 5.100000 +233 2447 5.100000 +233 2452 5.100000 +233 2557 5.100000 +233 2597 5.100000 +233 2655 5.100000 +233 2683 5.100000 +233 2702 5.100000 +233 2946 5.100000 +233 3016 5.100000 +233 3081 5.100000 +233 3085 5.100000 +233 3153 5.100000 +234 7 5.100000 +234 59 5.100000 +234 155 5.100000 +234 231 5.100000 +234 377 5.100000 +234 391 5.100000 +234 442 5.100000 +234 561 5.100000 +234 563 5.100000 +234 580 5.100000 +234 591 5.100000 +234 638 5.100000 +234 742 5.100000 +234 886 5.100000 +234 920 5.100000 +234 975 5.100000 +234 995 5.100000 +234 1001 5.100000 +234 1024 5.100000 +234 1051 5.100000 +234 1138 5.100000 +234 1141 5.100000 +234 1247 5.100000 +234 1259 5.100000 +234 1322 5.100000 +234 1333 5.100000 +234 1352 5.100000 +234 1369 5.100000 +234 1376 5.100000 +234 1473 5.100000 +234 1487 5.100000 +234 1499 5.100000 +234 1572 5.100000 +234 1577 5.100000 +234 1583 5.100000 +234 1667 5.100000 +234 1689 5.100000 +234 1729 5.100000 +234 1804 5.100000 +234 1824 5.100000 +234 1878 5.100000 +234 1905 5.100000 +234 1921 5.100000 +234 1978 5.100000 +234 2045 5.100000 +234 2077 5.100000 +234 2124 5.100000 +234 2160 5.100000 +234 2200 5.100000 +234 2287 5.100000 +234 2381 5.100000 +234 2386 5.100000 +234 2414 5.100000 +234 2532 5.100000 +234 2609 5.100000 +234 2616 5.100000 +234 2700 5.100000 +234 2787 5.100000 +234 2827 5.100000 +234 2942 5.100000 +234 2964 5.100000 +234 3031 5.100000 +234 3072 5.100000 +234 3124 5.100000 +234 3131 5.100000 +235 50 5.100000 +235 109 5.100000 +235 112 5.100000 +235 197 5.100000 +235 320 5.100000 +235 357 5.100000 +235 374 5.100000 +235 534 5.100000 +235 585 5.100000 +235 593 5.100000 +235 633 5.100000 +235 643 5.100000 +235 651 5.100000 +235 711 5.100000 +235 723 5.100000 +235 746 5.100000 +235 770 5.100000 +235 781 5.100000 +235 803 5.100000 +235 915 5.100000 +235 997 5.100000 +235 1030 5.100000 +235 1045 5.100000 +235 1051 5.100000 +235 1111 5.100000 +235 1112 5.100000 +235 1171 5.100000 +235 1225 5.100000 +235 1253 5.100000 +235 1264 5.100000 +235 1386 5.100000 +235 1393 5.100000 +235 1547 5.100000 +235 1571 5.100000 +235 1591 5.100000 +235 1660 5.100000 +235 1693 5.100000 +235 1771 5.100000 +235 1856 5.100000 +235 1910 5.100000 +235 1949 5.100000 +235 2071 5.100000 +235 2076 5.100000 +235 2077 5.100000 +235 2080 5.100000 +235 2131 5.100000 +235 2138 5.100000 +235 2166 5.100000 +235 2236 5.100000 +235 2258 5.100000 +235 2284 5.100000 +235 2285 5.100000 +235 2381 5.100000 +235 2432 5.100000 +235 2435 5.100000 +235 2551 5.100000 +235 2565 5.100000 +235 2624 5.100000 +235 2771 5.100000 +235 2781 5.100000 +235 2814 5.100000 +235 2815 5.100000 +235 2818 5.100000 +235 2995 5.100000 +235 3009 5.100000 +235 3015 5.100000 +235 3032 5.100000 +235 3050 5.100000 +235 3143 5.100000 +236 9 5.100000 +236 14 5.100000 +236 194 5.100000 +236 293 5.100000 +236 297 5.100000 +236 331 5.100000 +236 365 5.100000 +236 369 5.100000 +236 392 5.100000 +236 414 5.100000 +236 499 5.100000 +236 569 5.100000 +236 632 5.100000 +236 665 5.100000 +236 669 5.100000 +236 684 5.100000 +236 730 5.100000 +236 790 5.100000 +236 867 5.100000 +236 884 5.100000 +236 971 5.100000 +236 978 5.100000 +236 983 5.100000 +236 1017 5.100000 +236 1038 5.100000 +236 1046 5.100000 +236 1117 5.100000 +236 1130 5.100000 +236 1172 5.100000 +236 1186 5.100000 +236 1202 5.100000 +236 1232 5.100000 +236 1237 5.100000 +236 1363 5.100000 +236 1426 5.100000 +236 1431 5.100000 +236 1452 5.100000 +236 1460 5.100000 +236 1465 5.100000 +236 1499 5.100000 +236 1512 5.100000 +236 1513 5.100000 +236 1569 5.100000 +236 1595 5.100000 +236 1628 5.100000 +236 1661 5.100000 +236 1682 5.100000 +236 1703 5.100000 +236 1800 5.100000 +236 1901 5.100000 +236 1915 5.100000 +236 1927 5.100000 +236 1936 5.100000 +236 1950 5.100000 +236 2004 5.100000 +236 2009 5.100000 +236 2031 5.100000 +236 2032 5.100000 +236 2043 5.100000 +236 2105 5.100000 +236 2116 5.100000 +236 2151 5.100000 +236 2171 5.100000 +236 2172 5.100000 +236 2173 5.100000 +236 2278 5.100000 +236 2373 5.100000 +236 2391 5.100000 +236 2420 5.100000 +236 2670 5.100000 +236 2706 5.100000 +236 2718 5.100000 +236 2727 5.100000 +236 2942 5.100000 +236 2956 5.100000 +236 3030 5.100000 +236 3055 5.100000 +236 3082 5.100000 +236 3118 5.100000 +236 3161 5.100000 +236 3164 5.100000 +237 203 5.100000 +237 215 5.100000 +237 236 5.100000 +237 237 5.100000 +237 242 5.100000 +237 265 5.100000 +237 369 5.100000 +237 386 5.100000 +237 469 5.100000 +237 502 5.100000 +237 709 5.100000 +237 756 5.100000 +237 792 5.100000 +237 838 5.100000 +237 884 5.100000 +237 907 5.100000 +237 1066 5.100000 +237 1117 5.100000 +237 1152 5.100000 +237 1180 5.100000 +237 1221 5.100000 +237 1252 5.100000 +237 1289 5.100000 +237 1451 5.100000 +237 1466 5.100000 +237 1613 5.100000 +237 1649 5.100000 +237 1730 5.100000 +237 1799 5.100000 +237 1808 5.100000 +237 1813 5.100000 +237 1854 5.100000 +237 1902 5.100000 +237 1922 5.100000 +237 1946 5.100000 +237 1973 5.100000 +237 2080 5.100000 +237 2092 5.100000 +237 2165 5.100000 +237 2312 5.100000 +237 2406 5.100000 +237 2418 5.100000 +237 2444 5.100000 +237 2482 5.100000 +237 2501 5.100000 +237 2539 5.100000 +237 2582 5.100000 +237 2617 5.100000 +237 2634 5.100000 +237 2847 5.100000 +237 2884 5.100000 +237 2928 5.100000 +237 2982 5.100000 +237 2995 5.100000 +237 3165 5.100000 +238 92 5.100000 +238 141 5.100000 +238 251 5.100000 +238 273 5.100000 +238 274 5.100000 +238 280 5.100000 +238 359 5.100000 +238 437 5.100000 +238 564 5.100000 +238 602 5.100000 +238 616 5.100000 +238 676 5.100000 +238 711 5.100000 +238 799 5.100000 +238 863 5.100000 +238 886 5.100000 +238 901 5.100000 +238 906 5.100000 +238 1002 5.100000 +238 1059 5.100000 +238 1060 5.100000 +238 1217 5.100000 +238 1224 5.100000 +238 1333 5.100000 +238 1385 5.100000 +238 1448 5.100000 +238 1475 5.100000 +238 1612 5.100000 +238 1701 5.100000 +238 1737 5.100000 +238 1743 5.100000 +238 1859 5.100000 +238 1932 5.100000 +238 1934 5.100000 +238 1966 5.100000 +238 2232 5.100000 +238 2250 5.100000 +238 2313 5.100000 +238 2371 5.100000 +238 2391 5.100000 +238 2412 5.100000 +238 2465 5.100000 +238 2524 5.100000 +238 2530 5.100000 +238 2549 5.100000 +238 2567 5.100000 +238 2614 5.100000 +238 2626 5.100000 +238 2702 5.100000 +238 2733 5.100000 +238 2765 5.100000 +238 2883 5.100000 +238 2995 5.100000 +238 3060 5.100000 +238 3108 5.100000 +238 3113 5.100000 +238 3166 5.100000 +238 3188 5.100000 +239 13 5.100000 +239 29 5.100000 +239 53 5.100000 +239 68 5.100000 +239 225 5.100000 +239 247 5.100000 +239 323 5.100000 +239 376 5.100000 +239 400 5.100000 +239 466 5.100000 +239 538 5.100000 +239 552 5.100000 +239 555 5.100000 +239 593 5.100000 +239 665 5.100000 +239 675 5.100000 +239 700 5.100000 +239 724 5.100000 +239 735 5.100000 +239 748 5.100000 +239 766 5.100000 +239 901 5.100000 +239 913 5.100000 +239 934 5.100000 +239 1045 5.100000 +239 1132 5.100000 +239 1244 5.100000 +239 1255 5.100000 +239 1299 5.100000 +239 1356 5.100000 +239 1379 5.100000 +239 1401 5.100000 +239 1551 5.100000 +239 1625 5.100000 +239 1635 5.100000 +239 1655 5.100000 +239 1834 5.100000 +239 1889 5.100000 +239 1909 5.100000 +239 1924 5.100000 +239 1925 5.100000 +239 2054 5.100000 +239 2085 5.100000 +239 2096 5.100000 +239 2102 5.100000 +239 2209 5.100000 +239 2212 5.100000 +239 2236 5.100000 +239 2268 5.100000 +239 2414 5.100000 +239 2423 5.100000 +239 2425 5.100000 +239 2426 5.100000 +239 2570 5.100000 +239 2719 5.100000 +239 2745 5.100000 +239 2758 5.100000 +239 2774 5.100000 +239 2786 5.100000 +239 2862 5.100000 +239 2891 5.100000 +239 2946 5.100000 +239 2959 5.100000 +239 3105 5.100000 +239 3116 5.100000 +239 3133 5.100000 +239 3135 5.100000 +240 130 5.100000 +240 155 5.100000 +240 223 5.100000 +240 251 5.100000 +240 407 5.100000 +240 668 5.100000 +240 678 5.100000 +240 803 5.100000 +240 882 5.100000 +240 944 5.100000 +240 951 5.100000 +240 998 5.100000 +240 1095 5.100000 +240 1125 5.100000 +240 1132 5.100000 +240 1147 5.100000 +240 1215 5.100000 +240 1224 5.100000 +240 1372 5.100000 +240 1438 5.100000 +240 1495 5.100000 +240 1513 5.100000 +240 1517 5.100000 +240 1592 5.100000 +240 1609 5.100000 +240 1632 5.100000 +240 1715 5.100000 +240 1786 5.100000 +240 1825 5.100000 +240 1839 5.100000 +240 1931 5.100000 +240 1950 5.100000 +240 2075 5.100000 +240 2132 5.100000 +240 2146 5.100000 +240 2159 5.100000 +240 2252 5.100000 +240 2269 5.100000 +240 2288 5.100000 +240 2358 5.100000 +240 2386 5.100000 +240 2428 5.100000 +240 2484 5.100000 +240 2489 5.100000 +240 2556 5.100000 +240 2581 5.100000 +240 2599 5.100000 +240 2613 5.100000 +240 2642 5.100000 +240 2698 5.100000 +240 2747 5.100000 +240 2796 5.100000 +240 2859 5.100000 +240 2899 5.100000 +240 2909 5.100000 +240 2954 5.100000 +240 2968 5.100000 +240 2969 5.100000 +240 2975 5.100000 +240 2996 5.100000 +240 3104 5.100000 +240 3138 5.100000 +241 68 5.100000 +241 80 5.100000 +241 131 5.100000 +241 144 5.100000 +241 152 5.100000 +241 298 5.100000 +241 341 5.100000 +241 397 5.100000 +241 404 5.100000 +241 461 5.100000 +241 465 5.100000 +241 501 5.100000 +241 612 5.100000 +241 630 5.100000 +241 698 5.100000 +241 715 5.100000 +241 846 5.100000 +241 883 5.100000 +241 935 5.100000 +241 964 5.100000 +241 985 5.100000 +241 991 5.100000 +241 1023 5.100000 +241 1026 5.100000 +241 1162 5.100000 +241 1186 5.100000 +241 1307 5.100000 +241 1324 5.100000 +241 1360 5.100000 +241 1384 5.100000 +241 1468 5.100000 +241 1513 5.100000 +241 1533 5.100000 +241 1544 5.100000 +241 1598 5.100000 +241 1662 5.100000 +241 1664 5.100000 +241 1725 5.100000 +241 1741 5.100000 +241 1895 5.100000 +241 1925 5.100000 +241 2004 5.100000 +241 2058 5.100000 +241 2068 5.100000 +241 2141 5.100000 +241 2229 5.100000 +241 2258 5.100000 +241 2345 5.100000 +241 2506 5.100000 +241 2522 5.100000 +241 2537 5.100000 +241 2547 5.100000 +241 2558 5.100000 +241 2707 5.100000 +241 2710 5.100000 +241 2827 5.100000 +241 2840 5.100000 +241 2915 5.100000 +241 2938 5.100000 +241 2944 5.100000 +241 2956 5.100000 +241 2986 5.100000 +241 3020 5.100000 +241 3042 5.100000 +241 3073 5.100000 +241 3165 5.100000 +241 3168 5.100000 +242 18 5.100000 +242 93 5.100000 +242 123 5.100000 +242 214 5.100000 +242 262 5.100000 +242 343 5.100000 +242 357 5.100000 +242 426 5.100000 +242 436 5.100000 +242 537 5.100000 +242 668 5.100000 +242 722 5.100000 +242 767 5.100000 +242 807 5.100000 +242 833 5.100000 +242 834 5.100000 +242 840 5.100000 +242 860 5.100000 +242 925 5.100000 +242 926 5.100000 +242 1005 5.100000 +242 1039 5.100000 +242 1092 5.100000 +242 1096 5.100000 +242 1243 5.100000 +242 1248 5.100000 +242 1301 5.100000 +242 1366 5.100000 +242 1407 5.100000 +242 1409 5.100000 +242 1449 5.100000 +242 1552 5.100000 +242 1590 5.100000 +242 1660 5.100000 +242 1682 5.100000 +242 1721 5.100000 +242 1886 5.100000 +242 1925 5.100000 +242 2002 5.100000 +242 2043 5.100000 +242 2130 5.100000 +242 2163 5.100000 +242 2221 5.100000 +242 2259 5.100000 +242 2324 5.100000 +242 2344 5.100000 +242 2399 5.100000 +242 2486 5.100000 +242 2557 5.100000 +242 2659 5.100000 +242 2727 5.100000 +242 2732 5.100000 +242 2789 5.100000 +242 2874 5.100000 +242 2898 5.100000 +242 2973 5.100000 +242 2974 5.100000 +242 3011 5.100000 +242 3084 5.100000 +242 3162 5.100000 +243 33 5.100000 +243 36 5.100000 +243 62 5.100000 +243 106 5.100000 +243 125 5.100000 +243 374 5.100000 +243 625 5.100000 +243 631 5.100000 +243 683 5.100000 +243 705 5.100000 +243 749 5.100000 +243 793 5.100000 +243 847 5.100000 +243 872 5.100000 +243 1063 5.100000 +243 1065 5.100000 +243 1096 5.100000 +243 1175 5.100000 +243 1268 5.100000 +243 1421 5.100000 +243 1512 5.100000 +243 1514 5.100000 +243 1583 5.100000 +243 1591 5.100000 +243 1647 5.100000 +243 1702 5.100000 +243 1722 5.100000 +243 1880 5.100000 +243 1908 5.100000 +243 1924 5.100000 +243 1927 5.100000 +243 2055 5.100000 +243 2061 5.100000 +243 2134 5.100000 +243 2153 5.100000 +243 2194 5.100000 +243 2267 5.100000 +243 2282 5.100000 +243 2284 5.100000 +243 2293 5.100000 +243 2344 5.100000 +243 2348 5.100000 +243 2406 5.100000 +243 2438 5.100000 +243 2460 5.100000 +243 2462 5.100000 +243 2476 5.100000 +243 2537 5.100000 +243 2555 5.100000 +243 2634 5.100000 +243 2673 5.100000 +243 2689 5.100000 +243 2695 5.100000 +243 2809 5.100000 +243 2816 5.100000 +243 2822 5.100000 +243 2859 5.100000 +243 2961 5.100000 +243 2984 5.100000 +243 2990 5.100000 +243 3010 5.100000 +243 3028 5.100000 +243 3050 5.100000 +243 3058 5.100000 +243 3102 5.100000 +243 3147 5.100000 +244 253 5.100000 +244 292 5.100000 +244 417 5.100000 +244 469 5.100000 +244 482 5.100000 +244 556 5.100000 +244 629 5.100000 +244 679 5.100000 +244 690 5.100000 +244 697 5.100000 +244 700 5.100000 +244 782 5.100000 +244 836 5.100000 +244 841 5.100000 +244 850 5.100000 +244 931 5.100000 +244 1085 5.100000 +244 1103 5.100000 +244 1110 5.100000 +244 1122 5.100000 +244 1140 5.100000 +244 1163 5.100000 +244 1239 5.100000 +244 1372 5.100000 +244 1373 5.100000 +244 1381 5.100000 +244 1435 5.100000 +244 1450 5.100000 +244 1463 5.100000 +244 1499 5.100000 +244 1516 5.100000 +244 1530 5.100000 +244 1624 5.100000 +244 1644 5.100000 +244 1691 5.100000 +244 1774 5.100000 +244 1788 5.100000 +244 1806 5.100000 +244 1922 5.100000 +244 2148 5.100000 +244 2409 5.100000 +244 2411 5.100000 +244 2483 5.100000 +244 2488 5.100000 +244 2495 5.100000 +244 2581 5.100000 +244 2673 5.100000 +244 2698 5.100000 +244 2817 5.100000 +244 2895 5.100000 +244 2933 5.100000 +244 3060 5.100000 +244 3061 5.100000 +244 3182 5.100000 +244 3196 5.100000 +245 89 5.100000 +245 101 5.100000 +245 162 5.100000 +245 179 5.100000 +245 182 5.100000 +245 425 5.100000 +245 476 5.100000 +245 486 5.100000 +245 487 5.100000 +245 509 5.100000 +245 528 5.100000 +245 639 5.100000 +245 861 5.100000 +245 952 5.100000 +245 991 5.100000 +245 1001 5.100000 +245 1150 5.100000 +245 1151 5.100000 +245 1251 5.100000 +245 1386 5.100000 +245 1484 5.100000 +245 1526 5.100000 +245 1580 5.100000 +245 1697 5.100000 +245 1830 5.100000 +245 1876 5.100000 +245 1924 5.100000 +245 2006 5.100000 +245 2012 5.100000 +245 2047 5.100000 +245 2062 5.100000 +245 2177 5.100000 +245 2210 5.100000 +245 2253 5.100000 +245 2413 5.100000 +245 2422 5.100000 +245 2426 5.100000 +245 2431 5.100000 +245 2504 5.100000 +245 2563 5.100000 +245 2590 5.100000 +245 2659 5.100000 +245 2673 5.100000 +245 2676 5.100000 +245 2822 5.100000 +245 2947 5.100000 +245 2980 5.100000 +245 2986 5.100000 +245 3095 5.100000 +246 23 5.100000 +246 70 5.100000 +246 80 5.100000 +246 88 5.100000 +246 161 5.100000 +246 170 5.100000 +246 253 5.100000 +246 294 5.100000 +246 437 5.100000 +246 512 5.100000 +246 608 5.100000 +246 669 5.100000 +246 675 5.100000 +246 703 5.100000 +246 754 5.100000 +246 785 5.100000 +246 792 5.100000 +246 821 5.100000 +246 868 5.100000 +246 945 5.100000 +246 965 5.100000 +246 967 5.100000 +246 983 5.100000 +246 1027 5.100000 +246 1126 5.100000 +246 1165 5.100000 +246 1275 5.100000 +246 1293 5.100000 +246 1334 5.100000 +246 1442 5.100000 +246 1447 5.100000 +246 1502 5.100000 +246 1646 5.100000 +246 1655 5.100000 +246 1667 5.100000 +246 1762 5.100000 +246 1807 5.100000 +246 1932 5.100000 +246 1956 5.100000 +246 2084 5.100000 +246 2134 5.100000 +246 2165 5.100000 +246 2171 5.100000 +246 2245 5.100000 +246 2297 5.100000 +246 2359 5.100000 +246 2409 5.100000 +246 2423 5.100000 +246 2510 5.100000 +246 2558 5.100000 +246 2650 5.100000 +246 2656 5.100000 +246 2716 5.100000 +246 3010 5.100000 +246 3087 5.100000 +247 50 5.100000 +247 152 5.100000 +247 238 5.100000 +247 245 5.100000 +247 327 5.100000 +247 472 5.100000 +247 494 5.100000 +247 511 5.100000 +247 552 5.100000 +247 603 5.100000 +247 605 5.100000 +247 674 5.100000 +247 704 5.100000 +247 745 5.100000 +247 779 5.100000 +247 792 5.100000 +247 890 5.100000 +247 980 5.100000 +247 993 5.100000 +247 1109 5.100000 +247 1242 5.100000 +247 1246 5.100000 +247 1299 5.100000 +247 1318 5.100000 +247 1351 5.100000 +247 1404 5.100000 +247 1428 5.100000 +247 1571 5.100000 +247 1606 5.100000 +247 1663 5.100000 +247 1749 5.100000 +247 1772 5.100000 +247 1844 5.100000 +247 1865 5.100000 +247 1927 5.100000 +247 1968 5.100000 +247 2042 5.100000 +247 2106 5.100000 +247 2207 5.100000 +247 2285 5.100000 +247 2291 5.100000 +247 2295 5.100000 +247 2313 5.100000 +247 2508 5.100000 +247 2589 5.100000 +247 2616 5.100000 +247 2850 5.100000 +247 2976 5.100000 +247 3140 5.100000 +247 3169 5.100000 +247 3174 5.100000 +248 4 5.100000 +248 208 5.100000 +248 249 5.100000 +248 312 5.100000 +248 361 5.100000 +248 364 5.100000 +248 436 5.100000 +248 452 5.100000 +248 477 5.100000 +248 495 5.100000 +248 505 5.100000 +248 621 5.100000 +248 746 5.100000 +248 749 5.100000 +248 840 5.100000 +248 855 5.100000 +248 876 5.100000 +248 888 5.100000 +248 964 5.100000 +248 1029 5.100000 +248 1084 5.100000 +248 1149 5.100000 +248 1150 5.100000 +248 1167 5.100000 +248 1184 5.100000 +248 1214 5.100000 +248 1385 5.100000 +248 1412 5.100000 +248 1491 5.100000 +248 1526 5.100000 +248 1549 5.100000 +248 1561 5.100000 +248 1601 5.100000 +248 1618 5.100000 +248 1668 5.100000 +248 1817 5.100000 +248 1885 5.100000 +248 1910 5.100000 +248 1975 5.100000 +248 2008 5.100000 +248 2062 5.100000 +248 2087 5.100000 +248 2110 5.100000 +248 2140 5.100000 +248 2156 5.100000 +248 2195 5.100000 +248 2200 5.100000 +248 2250 5.100000 +248 2356 5.100000 +248 2431 5.100000 +248 2482 5.100000 +248 2589 5.100000 +248 2600 5.100000 +248 2615 5.100000 +248 2626 5.100000 +248 2686 5.100000 +248 2848 5.100000 +248 2857 5.100000 +248 2954 5.100000 +248 3008 5.100000 +248 3035 5.100000 +248 3043 5.100000 +248 3139 5.100000 +248 3178 5.100000 +248 3183 5.100000 +248 3189 5.100000 +249 64 5.100000 +249 80 5.100000 +249 197 5.100000 +249 209 5.100000 +249 260 5.100000 +249 263 5.100000 +249 323 5.100000 +249 644 5.100000 +249 678 5.100000 +249 699 5.100000 +249 963 5.100000 +249 1131 5.100000 +249 1147 5.100000 +249 1196 5.100000 +249 1269 5.100000 +249 1276 5.100000 +249 1278 5.100000 +249 1279 5.100000 +249 1340 5.100000 +249 1438 5.100000 +249 1477 5.100000 +249 1533 5.100000 +249 1539 5.100000 +249 1557 5.100000 +249 1558 5.100000 +249 1580 5.100000 +249 1589 5.100000 +249 1623 5.100000 +249 1637 5.100000 +249 1652 5.100000 +249 1698 5.100000 +249 1820 5.100000 +249 1903 5.100000 +249 1929 5.100000 +249 1966 5.100000 +249 1995 5.100000 +249 2018 5.100000 +249 2068 5.100000 +249 2079 5.100000 +249 2144 5.100000 +249 2149 5.100000 +249 2191 5.100000 +249 2268 5.100000 +249 2286 5.100000 +249 2431 5.100000 +249 2442 5.100000 +249 2444 5.100000 +249 2469 5.100000 +249 2541 5.100000 +249 2632 5.100000 +249 2653 5.100000 +249 2662 5.100000 +249 2681 5.100000 +249 2745 5.100000 +249 2776 5.100000 +249 2814 5.100000 +249 2888 5.100000 +249 2903 5.100000 +249 2943 5.100000 +249 2997 5.100000 +249 3000 5.100000 +249 3030 5.100000 +249 3071 5.100000 +249 3075 5.100000 +250 9 5.100000 +250 57 5.100000 +250 118 5.100000 +250 196 5.100000 +250 214 5.100000 +250 235 5.100000 +250 239 5.100000 +250 295 5.100000 +250 339 5.100000 +250 355 5.100000 +250 374 5.100000 +250 382 5.100000 +250 387 5.100000 +250 395 5.100000 +250 432 5.100000 +250 489 5.100000 +250 574 5.100000 +250 588 5.100000 +250 600 5.100000 +250 675 5.100000 +250 682 5.100000 +250 798 5.100000 +250 842 5.100000 +250 904 5.100000 +250 944 5.100000 +250 949 5.100000 +250 972 5.100000 +250 979 5.100000 +250 1061 5.100000 +250 1090 5.100000 +250 1107 5.100000 +250 1172 5.100000 +250 1200 5.100000 +250 1242 5.100000 +250 1374 5.100000 +250 1437 5.100000 +250 1524 5.100000 +250 1546 5.100000 +250 1571 5.100000 +250 1645 5.100000 +250 1690 5.100000 +250 1805 5.100000 +250 1858 5.100000 +250 1882 5.100000 +250 1898 5.100000 +250 2036 5.100000 +250 2082 5.100000 +250 2173 5.100000 +250 2178 5.100000 +250 2185 5.100000 +250 2220 5.100000 +250 2234 5.100000 +250 2257 5.100000 +250 2261 5.100000 +250 2298 5.100000 +250 2374 5.100000 +250 2379 5.100000 +250 2417 5.100000 +250 2475 5.100000 +250 2488 5.100000 +250 2498 5.100000 +250 2519 5.100000 +250 2551 5.100000 +250 2691 5.100000 +250 2710 5.100000 +250 2774 5.100000 +250 2786 5.100000 +250 2841 5.100000 +250 2860 5.100000 +250 2948 5.100000 +250 3134 5.100000 +250 3145 5.100000 +251 67 5.100000 +251 80 5.100000 +251 82 5.100000 +251 93 5.100000 +251 113 5.100000 +251 127 5.100000 +251 162 5.100000 +251 170 5.100000 +251 209 5.100000 +251 225 5.100000 +251 288 5.100000 +251 334 5.100000 +251 400 5.100000 +251 405 5.100000 +251 485 5.100000 +251 523 5.100000 +251 576 5.100000 +251 581 5.100000 +251 584 5.100000 +251 616 5.100000 +251 767 5.100000 +251 807 5.100000 +251 828 5.100000 +251 879 5.100000 +251 906 5.100000 +251 912 5.100000 +251 1064 5.100000 +251 1081 5.100000 +251 1087 5.100000 +251 1133 5.100000 +251 1161 5.100000 +251 1165 5.100000 +251 1280 5.100000 +251 1378 5.100000 +251 1403 5.100000 +251 1433 5.100000 +251 1466 5.100000 +251 1468 5.100000 +251 1573 5.100000 +251 1603 5.100000 +251 1616 5.100000 +251 1677 5.100000 +251 1707 5.100000 +251 1759 5.100000 +251 1813 5.100000 +251 1821 5.100000 +251 1923 5.100000 +251 2061 5.100000 +251 2065 5.100000 +251 2067 5.100000 +251 2239 5.100000 +251 2266 5.100000 +251 2333 5.100000 +251 2358 5.100000 +251 2391 5.100000 +251 2421 5.100000 +251 2431 5.100000 +251 2444 5.100000 +251 2519 5.100000 +251 2545 5.100000 +251 2548 5.100000 +251 2549 5.100000 +251 2558 5.100000 +251 2574 5.100000 +251 2581 5.100000 +251 2638 5.100000 +251 2678 5.100000 +251 2755 5.100000 +251 2845 5.100000 +251 3106 5.100000 +251 3160 5.100000 +251 3177 5.100000 +251 3192 5.100000 +252 62 5.100000 +252 150 5.100000 +252 228 5.100000 +252 241 5.100000 +252 312 5.100000 +252 412 5.100000 +252 523 5.100000 +252 627 5.100000 +252 644 5.100000 +252 650 5.100000 +252 699 5.100000 +252 769 5.100000 +252 897 5.100000 +252 937 5.100000 +252 954 5.100000 +252 995 5.100000 +252 1035 5.100000 +252 1101 5.100000 +252 1257 5.100000 +252 1276 5.100000 +252 1338 5.100000 +252 1349 5.100000 +252 1414 5.100000 +252 1415 5.100000 +252 1491 5.100000 +252 1512 5.100000 +252 1547 5.100000 +252 1573 5.100000 +252 1640 5.100000 +252 1669 5.100000 +252 1770 5.100000 +252 1859 5.100000 +252 2056 5.100000 +252 2089 5.100000 +252 2118 5.100000 +252 2119 5.100000 +252 2175 5.100000 +252 2226 5.100000 +252 2276 5.100000 +252 2280 5.100000 +252 2338 5.100000 +252 2378 5.100000 +252 2380 5.100000 +252 2381 5.100000 +252 2421 5.100000 +252 2590 5.100000 +252 2655 5.100000 +252 2707 5.100000 +252 2757 5.100000 +252 2775 5.100000 +252 2808 5.100000 +252 2853 5.100000 +252 2920 5.100000 +252 2948 5.100000 +252 2963 5.100000 +252 3036 5.100000 +252 3078 5.100000 +252 3137 5.100000 +252 3175 5.100000 +252 3198 5.100000 +253 37 5.100000 +253 65 5.100000 +253 113 5.100000 +253 220 5.100000 +253 243 5.100000 +253 374 5.100000 +253 379 5.100000 +253 471 5.100000 +253 481 5.100000 +253 527 5.100000 +253 586 5.100000 +253 650 5.100000 +253 677 5.100000 +253 681 5.100000 +253 853 5.100000 +253 915 5.100000 +253 941 5.100000 +253 948 5.100000 +253 987 5.100000 +253 1017 5.100000 +253 1035 5.100000 +253 1041 5.100000 +253 1056 5.100000 +253 1089 5.100000 +253 1166 5.100000 +253 1171 5.100000 +253 1207 5.100000 +253 1217 5.100000 +253 1228 5.100000 +253 1304 5.100000 +253 1410 5.100000 +253 1505 5.100000 +253 1531 5.100000 +253 1553 5.100000 +253 1573 5.100000 +253 1576 5.100000 +253 1607 5.100000 +253 1753 5.100000 +253 1774 5.100000 +253 1881 5.100000 +253 1924 5.100000 +253 2018 5.100000 +253 2034 5.100000 +253 2106 5.100000 +253 2109 5.100000 +253 2151 5.100000 +253 2169 5.100000 +253 2226 5.100000 +253 2328 5.100000 +253 2373 5.100000 +253 2418 5.100000 +253 2430 5.100000 +253 2535 5.100000 +253 2543 5.100000 +253 2623 5.100000 +253 2636 5.100000 +253 2662 5.100000 +253 2713 5.100000 +253 2806 5.100000 +253 2846 5.100000 +253 2854 5.100000 +253 2994 5.100000 +253 3040 5.100000 +253 3099 5.100000 +253 3173 5.100000 +254 21 5.100000 +254 22 5.100000 +254 40 5.100000 +254 62 5.100000 +254 125 5.100000 +254 166 5.100000 +254 205 5.100000 +254 268 5.100000 +254 295 5.100000 +254 559 5.100000 +254 623 5.100000 +254 630 5.100000 +254 747 5.100000 +254 833 5.100000 +254 843 5.100000 +254 891 5.100000 +254 919 5.100000 +254 924 5.100000 +254 951 5.100000 +254 1056 5.100000 +254 1137 5.100000 +254 1180 5.100000 +254 1197 5.100000 +254 1292 5.100000 +254 1309 5.100000 +254 1398 5.100000 +254 1422 5.100000 +254 1672 5.100000 +254 1712 5.100000 +254 1900 5.100000 +254 2021 5.100000 +254 2115 5.100000 +254 2192 5.100000 +254 2346 5.100000 +254 2384 5.100000 +254 2404 5.100000 +254 2460 5.100000 +254 2633 5.100000 +254 2636 5.100000 +254 2744 5.100000 +254 2839 5.100000 +254 2881 5.100000 +254 3000 5.100000 +254 3125 5.100000 +254 3132 5.100000 +254 3138 5.100000 +254 3183 5.100000 +255 111 5.100000 +255 161 5.100000 +255 179 5.100000 +255 210 5.100000 +255 213 5.100000 +255 223 5.100000 +255 291 5.100000 +255 321 5.100000 +255 374 5.100000 +255 397 5.100000 +255 406 5.100000 +255 410 5.100000 +255 478 5.100000 +255 518 5.100000 +255 540 5.100000 +255 584 5.100000 +255 644 5.100000 +255 652 5.100000 +255 665 5.100000 +255 776 5.100000 +255 847 5.100000 +255 858 5.100000 +255 907 5.100000 +255 930 5.100000 +255 1066 5.100000 +255 1123 5.100000 +255 1143 5.100000 +255 1211 5.100000 +255 1341 5.100000 +255 1345 5.100000 +255 1390 5.100000 +255 1401 5.100000 +255 1578 5.100000 +255 1596 5.100000 +255 1678 5.100000 +255 1712 5.100000 +255 1854 5.100000 +255 1925 5.100000 +255 1934 5.100000 +255 1955 5.100000 +255 1970 5.100000 +255 2134 5.100000 +255 2166 5.100000 +255 2201 5.100000 +255 2228 5.100000 +255 2240 5.100000 +255 2251 5.100000 +255 2296 5.100000 +255 2434 5.100000 +255 2588 5.100000 +255 2590 5.100000 +255 2607 5.100000 +255 2670 5.100000 +255 2742 5.100000 +255 2767 5.100000 +255 2870 5.100000 +255 2920 5.100000 +255 2935 5.100000 +255 2970 5.100000 +255 3066 5.100000 +255 3102 5.100000 +256 72 5.100000 +256 102 5.100000 +256 120 5.100000 +256 216 5.100000 +256 244 5.100000 +256 399 5.100000 +256 406 5.100000 +256 427 5.100000 +256 494 5.100000 +256 495 5.100000 +256 631 5.100000 +256 712 5.100000 +256 724 5.100000 +256 753 5.100000 +256 880 5.100000 +256 947 5.100000 +256 1012 5.100000 +256 1076 5.100000 +256 1079 5.100000 +256 1083 5.100000 +256 1221 5.100000 +256 1294 5.100000 +256 1307 5.100000 +256 1324 5.100000 +256 1382 5.100000 +256 1446 5.100000 +256 1511 5.100000 +256 1569 5.100000 +256 1660 5.100000 +256 1782 5.100000 +256 1811 5.100000 +256 1866 5.100000 +256 1897 5.100000 +256 1905 5.100000 +256 1938 5.100000 +256 1964 5.100000 +256 1978 5.100000 +256 2002 5.100000 +256 2116 5.100000 +256 2117 5.100000 +256 2131 5.100000 +256 2159 5.100000 +256 2180 5.100000 +256 2191 5.100000 +256 2202 5.100000 +256 2203 5.100000 +256 2220 5.100000 +256 2234 5.100000 +256 2275 5.100000 +256 2326 5.100000 +256 2397 5.100000 +256 2473 5.100000 +256 2474 5.100000 +256 2500 5.100000 +256 2619 5.100000 +256 2653 5.100000 +256 2705 5.100000 +256 2781 5.100000 +256 2830 5.100000 +256 2845 5.100000 +256 2867 5.100000 +256 2879 5.100000 +256 2938 5.100000 +256 2944 5.100000 +256 2995 5.100000 +256 2999 5.100000 +256 3006 5.100000 +256 3051 5.100000 +256 3112 5.100000 +256 3122 5.100000 +256 3137 5.100000 +257 14 5.100000 +257 107 5.100000 +257 170 5.100000 +257 171 5.100000 +257 188 5.100000 +257 301 5.100000 +257 444 5.100000 +257 445 5.100000 +257 479 5.100000 +257 490 5.100000 +257 496 5.100000 +257 501 5.100000 +257 602 5.100000 +257 682 5.100000 +257 726 5.100000 +257 728 5.100000 +257 742 5.100000 +257 783 5.100000 +257 817 5.100000 +257 839 5.100000 +257 840 5.100000 +257 865 5.100000 +257 893 5.100000 +257 920 5.100000 +257 936 5.100000 +257 943 5.100000 +257 981 5.100000 +257 1198 5.100000 +257 1267 5.100000 +257 1313 5.100000 +257 1322 5.100000 +257 1389 5.100000 +257 1480 5.100000 +257 1555 5.100000 +257 1568 5.100000 +257 1610 5.100000 +257 1707 5.100000 +257 1739 5.100000 +257 1783 5.100000 +257 1817 5.100000 +257 1929 5.100000 +257 1936 5.100000 +257 1955 5.100000 +257 2018 5.100000 +257 2140 5.100000 +257 2160 5.100000 +257 2241 5.100000 +257 2303 5.100000 +257 2320 5.100000 +257 2322 5.100000 +257 2353 5.100000 +257 2386 5.100000 +257 2475 5.100000 +257 2495 5.100000 +257 2533 5.100000 +257 2558 5.100000 +257 2561 5.100000 +257 2583 5.100000 +257 2628 5.100000 +257 2650 5.100000 +257 2658 5.100000 +257 2682 5.100000 +257 2690 5.100000 +257 2760 5.100000 +257 2850 5.100000 +257 2879 5.100000 +257 2910 5.100000 +257 2942 5.100000 +257 2960 5.100000 +257 2995 5.100000 +257 3003 5.100000 +257 3057 5.100000 +257 3109 5.100000 +257 3173 5.100000 +258 46 5.100000 +258 49 5.100000 +258 63 5.100000 +258 206 5.100000 +258 256 5.100000 +258 430 5.100000 +258 466 5.100000 +258 473 5.100000 +258 522 5.100000 +258 564 5.100000 +258 616 5.100000 +258 665 5.100000 +258 680 5.100000 +258 728 5.100000 +258 737 5.100000 +258 738 5.100000 +258 786 5.100000 +258 790 5.100000 +258 830 5.100000 +258 867 5.100000 +258 871 5.100000 +258 928 5.100000 +258 943 5.100000 +258 1011 5.100000 +258 1028 5.100000 +258 1093 5.100000 +258 1114 5.100000 +258 1158 5.100000 +258 1188 5.100000 +258 1191 5.100000 +258 1247 5.100000 +258 1281 5.100000 +258 1285 5.100000 +258 1317 5.100000 +258 1319 5.100000 +258 1331 5.100000 +258 1569 5.100000 +258 1596 5.100000 +258 1619 5.100000 +258 1635 5.100000 +258 1655 5.100000 +258 1661 5.100000 +258 1768 5.100000 +258 1910 5.100000 +258 1956 5.100000 +258 1980 5.100000 +258 2008 5.100000 +258 2094 5.100000 +258 2104 5.100000 +258 2229 5.100000 +258 2254 5.100000 +258 2300 5.100000 +258 2375 5.100000 +258 2434 5.100000 +258 2493 5.100000 +258 2538 5.100000 +258 2593 5.100000 +258 2650 5.100000 +258 2675 5.100000 +258 2746 5.100000 +258 2770 5.100000 +258 2847 5.100000 +258 2926 5.100000 +258 2933 5.100000 +258 2940 5.100000 +258 2988 5.100000 +258 3150 5.100000 +258 3190 5.100000 +259 60 5.100000 +259 72 5.100000 +259 210 5.100000 +259 234 5.100000 +259 241 5.100000 +259 295 5.100000 +259 321 5.100000 +259 330 5.100000 +259 429 5.100000 +259 458 5.100000 +259 495 5.100000 +259 518 5.100000 +259 680 5.100000 +259 739 5.100000 +259 907 5.100000 +259 924 5.100000 +259 939 5.100000 +259 989 5.100000 +259 1008 5.100000 +259 1051 5.100000 +259 1186 5.100000 +259 1189 5.100000 +259 1204 5.100000 +259 1356 5.100000 +259 1358 5.100000 +259 1418 5.100000 +259 1428 5.100000 +259 1466 5.100000 +259 1484 5.100000 +259 1587 5.100000 +259 1642 5.100000 +259 1658 5.100000 +259 1738 5.100000 +259 1761 5.100000 +259 1765 5.100000 +259 1924 5.100000 +259 1976 5.100000 +259 1977 5.100000 +259 2048 5.100000 +259 2110 5.100000 +259 2130 5.100000 +259 2132 5.100000 +259 2148 5.100000 +259 2182 5.100000 +259 2395 5.100000 +259 2427 5.100000 +259 2433 5.100000 +259 2444 5.100000 +259 2512 5.100000 +259 2592 5.100000 +259 2618 5.100000 +259 2641 5.100000 +259 2809 5.100000 +259 3163 5.100000 +259 3171 5.100000 +259 3178 5.100000 +259 3187 5.100000 +260 50 5.100000 +260 59 5.100000 +260 95 5.100000 +260 124 5.100000 +260 135 5.100000 +260 189 5.100000 +260 211 5.100000 +260 297 5.100000 +260 299 5.100000 +260 344 5.100000 +260 349 5.100000 +260 361 5.100000 +260 500 5.100000 +260 514 5.100000 +260 587 5.100000 +260 605 5.100000 +260 619 5.100000 +260 720 5.100000 +260 851 5.100000 +260 920 5.100000 +260 949 5.100000 +260 987 5.100000 +260 1060 5.100000 +260 1118 5.100000 +260 1190 5.100000 +260 1251 5.100000 +260 1256 5.100000 +260 1294 5.100000 +260 1471 5.100000 +260 1533 5.100000 +260 1587 5.100000 +260 1631 5.100000 +260 1635 5.100000 +260 1652 5.100000 +260 1704 5.100000 +260 1736 5.100000 +260 1811 5.100000 +260 1813 5.100000 +260 1955 5.100000 +260 1959 5.100000 +260 1972 5.100000 +260 2159 5.100000 +260 2207 5.100000 +260 2236 5.100000 +260 2280 5.100000 +260 2323 5.100000 +260 2340 5.100000 +260 2358 5.100000 +260 2517 5.100000 +260 2553 5.100000 +260 2582 5.100000 +260 2693 5.100000 +260 2712 5.100000 +260 2729 5.100000 +260 2739 5.100000 +260 2797 5.100000 +260 2806 5.100000 +260 2817 5.100000 +260 2869 5.100000 +260 2931 5.100000 +260 2955 5.100000 +260 3054 5.100000 +260 3097 5.100000 +260 3131 5.100000 +260 3141 5.100000 +260 3199 5.100000 +261 14 5.100000 +261 81 5.100000 +261 248 5.100000 +261 376 5.100000 +261 417 5.100000 +261 447 5.100000 +261 494 5.100000 +261 518 5.100000 +261 548 5.100000 +261 610 5.100000 +261 626 5.100000 +261 633 5.100000 +261 647 5.100000 +261 695 5.100000 +261 733 5.100000 +261 831 5.100000 +261 875 5.100000 +261 886 5.100000 +261 937 5.100000 +261 1010 5.100000 +261 1049 5.100000 +261 1067 5.100000 +261 1176 5.100000 +261 1264 5.100000 +261 1287 5.100000 +261 1291 5.100000 +261 1317 5.100000 +261 1330 5.100000 +261 1447 5.100000 +261 1485 5.100000 +261 1503 5.100000 +261 1541 5.100000 +261 1550 5.100000 +261 1590 5.100000 +261 1622 5.100000 +261 1719 5.100000 +261 1721 5.100000 +261 1785 5.100000 +261 1896 5.100000 +261 1922 5.100000 +261 1989 5.100000 +261 2089 5.100000 +261 2118 5.100000 +261 2147 5.100000 +261 2151 5.100000 +261 2175 5.100000 +261 2202 5.100000 +261 2232 5.100000 +261 2262 5.100000 +261 2293 5.100000 +261 2303 5.100000 +261 2306 5.100000 +261 2389 5.100000 +261 2450 5.100000 +261 2459 5.100000 +261 2579 5.100000 +261 2613 5.100000 +261 2639 5.100000 +261 2674 5.100000 +261 2720 5.100000 +261 2727 5.100000 +261 2737 5.100000 +261 2784 5.100000 +261 2810 5.100000 +261 2835 5.100000 +261 2850 5.100000 +261 2886 5.100000 +261 2914 5.100000 +261 2993 5.100000 +261 3161 5.100000 +261 3171 5.100000 +261 3185 5.100000 +262 14 5.100000 +262 66 5.100000 +262 152 5.100000 +262 206 5.100000 +262 261 5.100000 +262 291 5.100000 +262 473 5.100000 +262 499 5.100000 +262 545 5.100000 +262 605 5.100000 +262 654 5.100000 +262 802 5.100000 +262 897 5.100000 +262 914 5.100000 +262 1032 5.100000 +262 1083 5.100000 +262 1196 5.100000 +262 1239 5.100000 +262 1269 5.100000 +262 1528 5.100000 +262 1579 5.100000 +262 1598 5.100000 +262 1656 5.100000 +262 1696 5.100000 +262 1759 5.100000 +262 1792 5.100000 +262 1858 5.100000 +262 1893 5.100000 +262 1895 5.100000 +262 1926 5.100000 +262 2054 5.100000 +262 2398 5.100000 +262 2419 5.100000 +262 2425 5.100000 +262 2489 5.100000 +262 2498 5.100000 +262 2602 5.100000 +262 2623 5.100000 +262 2637 5.100000 +262 2653 5.100000 +262 2671 5.100000 +262 2686 5.100000 +262 2730 5.100000 +262 2816 5.100000 +262 2903 5.100000 +262 3008 5.100000 +262 3061 5.100000 +262 3107 5.100000 +262 3172 5.100000 +263 3 5.100000 +263 27 5.100000 +263 29 5.100000 +263 104 5.100000 +263 120 5.100000 +263 227 5.100000 +263 313 5.100000 +263 341 5.100000 +263 482 5.100000 +263 626 5.100000 +263 656 5.100000 +263 797 5.100000 +263 807 5.100000 +263 817 5.100000 +263 952 5.100000 +263 1000 5.100000 +263 1114 5.100000 +263 1120 5.100000 +263 1251 5.100000 +263 1261 5.100000 +263 1312 5.100000 +263 1340 5.100000 +263 1458 5.100000 +263 1473 5.100000 +263 1493 5.100000 +263 1632 5.100000 +263 1677 5.100000 +263 1806 5.100000 +263 1859 5.100000 +263 1943 5.100000 +263 1987 5.100000 +263 1995 5.100000 +263 2030 5.100000 +263 2081 5.100000 +263 2088 5.100000 +263 2191 5.100000 +263 2266 5.100000 +263 2294 5.100000 +263 2321 5.100000 +263 2355 5.100000 +263 2395 5.100000 +263 2443 5.100000 +263 2451 5.100000 +263 2495 5.100000 +263 2533 5.100000 +263 2536 5.100000 +263 2557 5.100000 +263 2586 5.100000 +263 2614 5.100000 +263 2615 5.100000 +263 2619 5.100000 +263 2689 5.100000 +263 2701 5.100000 +263 2864 5.100000 +263 2885 5.100000 +263 2897 5.100000 +263 2920 5.100000 +263 3027 5.100000 +263 3030 5.100000 +263 3038 5.100000 +263 3098 5.100000 +263 3179 5.100000 +264 105 5.100000 +264 138 5.100000 +264 142 5.100000 +264 173 5.100000 +264 185 5.100000 +264 206 5.100000 +264 236 5.100000 +264 475 5.100000 +264 485 5.100000 +264 626 5.100000 +264 660 5.100000 +264 664 5.100000 +264 675 5.100000 +264 727 5.100000 +264 750 5.100000 +264 762 5.100000 +264 786 5.100000 +264 804 5.100000 +264 810 5.100000 +264 883 5.100000 +264 1053 5.100000 +264 1073 5.100000 +264 1112 5.100000 +264 1154 5.100000 +264 1390 5.100000 +264 1406 5.100000 +264 1428 5.100000 +264 1449 5.100000 +264 1587 5.100000 +264 1644 5.100000 +264 1657 5.100000 +264 1691 5.100000 +264 1768 5.100000 +264 1912 5.100000 +264 1963 5.100000 +264 2009 5.100000 +264 2071 5.100000 +264 2141 5.100000 +264 2158 5.100000 +264 2312 5.100000 +264 2411 5.100000 +264 2484 5.100000 +264 2602 5.100000 +264 2616 5.100000 +264 2625 5.100000 +264 2630 5.100000 +264 2650 5.100000 +264 2668 5.100000 +264 2678 5.100000 +264 2680 5.100000 +264 2756 5.100000 +264 2774 5.100000 +264 2790 5.100000 +264 2856 5.100000 +264 2885 5.100000 +264 2916 5.100000 +264 3025 5.100000 +264 3079 5.100000 +264 3105 5.100000 +264 3127 5.100000 +264 3156 5.100000 +264 3170 5.100000 +265 11 5.100000 +265 68 5.100000 +265 73 5.100000 +265 172 5.100000 +265 185 5.100000 +265 213 5.100000 +265 214 5.100000 +265 278 5.100000 +265 375 5.100000 +265 481 5.100000 +265 484 5.100000 +265 546 5.100000 +265 556 5.100000 +265 565 5.100000 +265 630 5.100000 +265 633 5.100000 +265 662 5.100000 +265 674 5.100000 +265 721 5.100000 +265 764 5.100000 +265 788 5.100000 +265 929 5.100000 +265 945 5.100000 +265 964 5.100000 +265 967 5.100000 +265 975 5.100000 +265 985 5.100000 +265 1012 5.100000 +265 1030 5.100000 +265 1188 5.100000 +265 1236 5.100000 +265 1240 5.100000 +265 1259 5.100000 +265 1297 5.100000 +265 1359 5.100000 +265 1397 5.100000 +265 1424 5.100000 +265 1551 5.100000 +265 1728 5.100000 +265 1753 5.100000 +265 1805 5.100000 +265 1838 5.100000 +265 1945 5.100000 +265 1972 5.100000 +265 2065 5.100000 +265 2087 5.100000 +265 2089 5.100000 +265 2116 5.100000 +265 2149 5.100000 +265 2209 5.100000 +265 2214 5.100000 +265 2231 5.100000 +265 2258 5.100000 +265 2372 5.100000 +265 2465 5.100000 +265 2507 5.100000 +265 2523 5.100000 +265 2574 5.100000 +265 2601 5.100000 +265 2627 5.100000 +265 2638 5.100000 +265 2708 5.100000 +265 2709 5.100000 +265 2735 5.100000 +265 2800 5.100000 +265 2971 5.100000 +265 2972 5.100000 +265 3025 5.100000 +265 3069 5.100000 +265 3077 5.100000 +265 3185 5.100000 +265 3194 5.100000 +266 45 5.100000 +266 58 5.100000 +266 65 5.100000 +266 76 5.100000 +266 80 5.100000 +266 175 5.100000 +266 294 5.100000 +266 317 5.100000 +266 366 5.100000 +266 374 5.100000 +266 388 5.100000 +266 398 5.100000 +266 505 5.100000 +266 583 5.100000 +266 622 5.100000 +266 664 5.100000 +266 721 5.100000 +266 858 5.100000 +266 1013 5.100000 +266 1193 5.100000 +266 1304 5.100000 +266 1319 5.100000 +266 1367 5.100000 +266 1393 5.100000 +266 1396 5.100000 +266 1434 5.100000 +266 1436 5.100000 +266 1450 5.100000 +266 1473 5.100000 +266 1494 5.100000 +266 1523 5.100000 +266 1540 5.100000 +266 1611 5.100000 +266 1619 5.100000 +266 1701 5.100000 +266 1824 5.100000 +266 1839 5.100000 +266 1863 5.100000 +266 1869 5.100000 +266 1874 5.100000 +266 1876 5.100000 +266 1893 5.100000 +266 1898 5.100000 +266 1951 5.100000 +266 1963 5.100000 +266 1984 5.100000 +266 1996 5.100000 +266 2026 5.100000 +266 2035 5.100000 +266 2165 5.100000 +266 2191 5.100000 +266 2214 5.100000 +266 2299 5.100000 +266 2402 5.100000 +266 2419 5.100000 +266 2491 5.100000 +266 2581 5.100000 +266 2651 5.100000 +266 2692 5.100000 +266 2695 5.100000 +266 2728 5.100000 +266 2755 5.100000 +266 2769 5.100000 +266 2777 5.100000 +266 2780 5.100000 +266 2786 5.100000 +266 2787 5.100000 +266 2788 5.100000 +266 2799 5.100000 +266 2800 5.100000 +266 2916 5.100000 +266 2944 5.100000 +266 3001 5.100000 +266 3044 5.100000 +266 3075 5.100000 +266 3118 5.100000 +266 3143 5.100000 +266 3180 5.100000 +267 23 5.100000 +267 55 5.100000 +267 70 5.100000 +267 95 5.100000 +267 231 5.100000 +267 289 5.100000 +267 349 5.100000 +267 369 5.100000 +267 372 5.100000 +267 384 5.100000 +267 402 5.100000 +267 416 5.100000 +267 611 5.100000 +267 661 5.100000 +267 668 5.100000 +267 815 5.100000 +267 819 5.100000 +267 864 5.100000 +267 870 5.100000 +267 876 5.100000 +267 1045 5.100000 +267 1090 5.100000 +267 1097 5.100000 +267 1156 5.100000 +267 1271 5.100000 +267 1335 5.100000 +267 1384 5.100000 +267 1389 5.100000 +267 1394 5.100000 +267 1417 5.100000 +267 1449 5.100000 +267 1517 5.100000 +267 1751 5.100000 +267 1808 5.100000 +267 1843 5.100000 +267 1980 5.100000 +267 1989 5.100000 +267 2032 5.100000 +267 2065 5.100000 +267 2086 5.100000 +267 2100 5.100000 +267 2179 5.100000 +267 2195 5.100000 +267 2230 5.100000 +267 2260 5.100000 +267 2270 5.100000 +267 2422 5.100000 +267 2425 5.100000 +267 2438 5.100000 +267 2507 5.100000 +267 2527 5.100000 +267 2545 5.100000 +267 2579 5.100000 +267 2611 5.100000 +267 2719 5.100000 +267 2792 5.100000 +267 2816 5.100000 +267 2942 5.100000 +267 2969 5.100000 +267 2989 5.100000 +267 3057 5.100000 +267 3075 5.100000 +267 3100 5.100000 +268 78 5.100000 +268 133 5.100000 +268 159 5.100000 +268 163 5.100000 +268 176 5.100000 +268 185 5.100000 +268 227 5.100000 +268 282 5.100000 +268 298 5.100000 +268 309 5.100000 +268 355 5.100000 +268 370 5.100000 +268 424 5.100000 +268 439 5.100000 +268 444 5.100000 +268 460 5.100000 +268 471 5.100000 +268 489 5.100000 +268 536 5.100000 +268 539 5.100000 +268 614 5.100000 +268 684 5.100000 +268 732 5.100000 +268 770 5.100000 +268 806 5.100000 +268 914 5.100000 +268 971 5.100000 +268 1025 5.100000 +268 1077 5.100000 +268 1138 5.100000 +268 1140 5.100000 +268 1159 5.100000 +268 1319 5.100000 +268 1330 5.100000 +268 1470 5.100000 +268 1499 5.100000 +268 1669 5.100000 +268 1686 5.100000 +268 1839 5.100000 +268 1875 5.100000 +268 1910 5.100000 +268 1978 5.100000 +268 2020 5.100000 +268 2095 5.100000 +268 2138 5.100000 +268 2179 5.100000 +268 2246 5.100000 +268 2294 5.100000 +268 2295 5.100000 +268 2307 5.100000 +268 2457 5.100000 +268 2480 5.100000 +268 2558 5.100000 +268 2787 5.100000 +268 2893 5.100000 +268 2984 5.100000 +268 2991 5.100000 +268 3017 5.100000 +268 3187 5.100000 +269 10 5.100000 +269 272 5.100000 +269 279 5.100000 +269 318 5.100000 +269 320 5.100000 +269 358 5.100000 +269 368 5.100000 +269 567 5.100000 +269 645 5.100000 +269 665 5.100000 +269 735 5.100000 +269 792 5.100000 +269 883 5.100000 +269 910 5.100000 +269 996 5.100000 +269 997 5.100000 +269 1068 5.100000 +269 1104 5.100000 +269 1107 5.100000 +269 1150 5.100000 +269 1164 5.100000 +269 1188 5.100000 +269 1204 5.100000 +269 1255 5.100000 +269 1266 5.100000 +269 1291 5.100000 +269 1315 5.100000 +269 1349 5.100000 +269 1359 5.100000 +269 1415 5.100000 +269 1427 5.100000 +269 1456 5.100000 +269 1580 5.100000 +269 1594 5.100000 +269 1656 5.100000 +269 1690 5.100000 +269 1699 5.100000 +269 1748 5.100000 +269 1779 5.100000 +269 1812 5.100000 +269 1848 5.100000 +269 1942 5.100000 +269 1966 5.100000 +269 1977 5.100000 +269 1986 5.100000 +269 2076 5.100000 +269 2096 5.100000 +269 2124 5.100000 +269 2130 5.100000 +269 2218 5.100000 +269 2362 5.100000 +269 2416 5.100000 +269 2471 5.100000 +269 2495 5.100000 +269 2514 5.100000 +269 2532 5.100000 +269 2549 5.100000 +269 2773 5.100000 +269 2792 5.100000 +269 2840 5.100000 +269 2938 5.100000 +269 2947 5.100000 +269 2981 5.100000 +269 3025 5.100000 +269 3071 5.100000 +269 3146 5.100000 +269 3149 5.100000 +270 12 5.100000 +270 75 5.100000 +270 108 5.100000 +270 115 5.100000 +270 157 5.100000 +270 186 5.100000 +270 233 5.100000 +270 262 5.100000 +270 266 5.100000 +270 299 5.100000 +270 320 5.100000 +270 380 5.100000 +270 583 5.100000 +270 613 5.100000 +270 630 5.100000 +270 756 5.100000 +270 764 5.100000 +270 838 5.100000 +270 846 5.100000 +270 868 5.100000 +270 1029 5.100000 +270 1046 5.100000 +270 1048 5.100000 +270 1154 5.100000 +270 1171 5.100000 +270 1259 5.100000 +270 1264 5.100000 +270 1348 5.100000 +270 1395 5.100000 +270 1464 5.100000 +270 1632 5.100000 +270 1641 5.100000 +270 1650 5.100000 +270 1795 5.100000 +270 1837 5.100000 +270 1902 5.100000 +270 1918 5.100000 +270 1922 5.100000 +270 1963 5.100000 +270 1999 5.100000 +270 2015 5.100000 +270 2127 5.100000 +270 2139 5.100000 +270 2223 5.100000 +270 2313 5.100000 +270 2330 5.100000 +270 2367 5.100000 +270 2377 5.100000 +270 2413 5.100000 +270 2534 5.100000 +270 2535 5.100000 +270 2558 5.100000 +270 2568 5.100000 +270 2580 5.100000 +270 2592 5.100000 +270 2636 5.100000 +270 2655 5.100000 +270 2684 5.100000 +270 2715 5.100000 +270 2925 5.100000 +270 2998 5.100000 +270 3044 5.100000 +270 3051 5.100000 +270 3183 5.100000 +271 51 5.100000 +271 54 5.100000 +271 60 5.100000 +271 73 5.100000 +271 81 5.100000 +271 90 5.100000 +271 128 5.100000 +271 161 5.100000 +271 220 5.100000 +271 257 5.100000 +271 329 5.100000 +271 390 5.100000 +271 409 5.100000 +271 512 5.100000 +271 526 5.100000 +271 530 5.100000 +271 558 5.100000 +271 601 5.100000 +271 683 5.100000 +271 893 5.100000 +271 954 5.100000 +271 1169 5.100000 +271 1178 5.100000 +271 1185 5.100000 +271 1231 5.100000 +271 1268 5.100000 +271 1312 5.100000 +271 1477 5.100000 +271 1621 5.100000 +271 1645 5.100000 +271 1666 5.100000 +271 1668 5.100000 +271 1670 5.100000 +271 1739 5.100000 +271 2035 5.100000 +271 2080 5.100000 +271 2089 5.100000 +271 2188 5.100000 +271 2229 5.100000 +271 2267 5.100000 +271 2440 5.100000 +271 2580 5.100000 +271 2605 5.100000 +271 2623 5.100000 +271 2629 5.100000 +271 2797 5.100000 +271 2870 5.100000 +271 2908 5.100000 +271 2981 5.100000 +271 3035 5.100000 +271 3105 5.100000 +271 3107 5.100000 +271 3112 5.100000 +271 3125 5.100000 +271 3178 5.100000 +272 89 5.100000 +272 112 5.100000 +272 172 5.100000 +272 176 5.100000 +272 198 5.100000 +272 211 5.100000 +272 252 5.100000 +272 260 5.100000 +272 289 5.100000 +272 371 5.100000 +272 465 5.100000 +272 631 5.100000 +272 661 5.100000 +272 693 5.100000 +272 779 5.100000 +272 822 5.100000 +272 888 5.100000 +272 1012 5.100000 +272 1014 5.100000 +272 1020 5.100000 +272 1028 5.100000 +272 1100 5.100000 +272 1131 5.100000 +272 1197 5.100000 +272 1223 5.100000 +272 1266 5.100000 +272 1328 5.100000 +272 1347 5.100000 +272 1356 5.100000 +272 1509 5.100000 +272 1612 5.100000 +272 1626 5.100000 +272 1676 5.100000 +272 1694 5.100000 +272 1873 5.100000 +272 1890 5.100000 +272 1904 5.100000 +272 1943 5.100000 +272 1990 5.100000 +272 2046 5.100000 +272 2074 5.100000 +272 2094 5.100000 +272 2142 5.100000 +272 2167 5.100000 +272 2190 5.100000 +272 2203 5.100000 +272 2211 5.100000 +272 2309 5.100000 +272 2311 5.100000 +272 2398 5.100000 +272 2491 5.100000 +272 2524 5.100000 +272 2553 5.100000 +272 2953 5.100000 +272 3067 5.100000 +272 3111 5.100000 +272 3151 5.100000 +272 3168 5.100000 +273 13 5.100000 +273 21 5.100000 +273 100 5.100000 +273 141 5.100000 +273 176 5.100000 +273 250 5.100000 +273 304 5.100000 +273 337 5.100000 +273 460 5.100000 +273 503 5.100000 +273 577 5.100000 +273 588 5.100000 +273 604 5.100000 +273 652 5.100000 +273 679 5.100000 +273 713 5.100000 +273 781 5.100000 +273 862 5.100000 +273 952 5.100000 +273 1014 5.100000 +273 1034 5.100000 +273 1290 5.100000 +273 1296 5.100000 +273 1333 5.100000 +273 1530 5.100000 +273 1592 5.100000 +273 1681 5.100000 +273 1747 5.100000 +273 1898 5.100000 +273 1904 5.100000 +273 1914 5.100000 +273 1937 5.100000 +273 1962 5.100000 +273 1990 5.100000 +273 2132 5.100000 +273 2184 5.100000 +273 2185 5.100000 +273 2292 5.100000 +273 2334 5.100000 +273 2369 5.100000 +273 2370 5.100000 +273 2396 5.100000 +273 2439 5.100000 +273 2452 5.100000 +273 2455 5.100000 +273 2553 5.100000 +273 2556 5.100000 +273 2559 5.100000 +273 2580 5.100000 +273 2628 5.100000 +273 2666 5.100000 +273 2732 5.100000 +273 2750 5.100000 +273 2821 5.100000 +273 2883 5.100000 +273 2907 5.100000 +273 2937 5.100000 +273 3092 5.100000 +273 3099 5.100000 +273 3114 5.100000 +273 3152 5.100000 +274 28 5.100000 +274 157 5.100000 +274 225 5.100000 +274 262 5.100000 +274 341 5.100000 +274 355 5.100000 +274 371 5.100000 +274 488 5.100000 +274 513 5.100000 +274 539 5.100000 +274 585 5.100000 +274 635 5.100000 +274 646 5.100000 +274 654 5.100000 +274 687 5.100000 +274 715 5.100000 +274 939 5.100000 +274 1020 5.100000 +274 1083 5.100000 +274 1110 5.100000 +274 1121 5.100000 +274 1173 5.100000 +274 1282 5.100000 +274 1630 5.100000 +274 1646 5.100000 +274 1697 5.100000 +274 1733 5.100000 +274 1785 5.100000 +274 1786 5.100000 +274 1852 5.100000 +274 1863 5.100000 +274 1887 5.100000 +274 1931 5.100000 +274 1967 5.100000 +274 1990 5.100000 +274 2041 5.100000 +274 2048 5.100000 +274 2076 5.100000 +274 2098 5.100000 +274 2119 5.100000 +274 2248 5.100000 +274 2326 5.100000 +274 2345 5.100000 +274 2467 5.100000 +274 2512 5.100000 +274 2575 5.100000 +274 2594 5.100000 +274 2729 5.100000 +274 3024 5.100000 +274 3062 5.100000 +274 3137 5.100000 +274 3172 5.100000 +274 3174 5.100000 +275 20 5.100000 +275 63 5.100000 +275 74 5.100000 +275 138 5.100000 +275 217 5.100000 +275 237 5.100000 +275 278 5.100000 +275 318 5.100000 +275 333 5.100000 +275 356 5.100000 +275 420 5.100000 +275 448 5.100000 +275 451 5.100000 +275 705 5.100000 +275 726 5.100000 +275 728 5.100000 +275 758 5.100000 +275 835 5.100000 +275 880 5.100000 +275 943 5.100000 +275 955 5.100000 +275 1037 5.100000 +275 1155 5.100000 +275 1159 5.100000 +275 1163 5.100000 +275 1176 5.100000 +275 1224 5.100000 +275 1361 5.100000 +275 1380 5.100000 +275 1421 5.100000 +275 1578 5.100000 +275 1614 5.100000 +275 1663 5.100000 +275 1756 5.100000 +275 1801 5.100000 +275 1806 5.100000 +275 1853 5.100000 +275 1899 5.100000 +275 1901 5.100000 +275 1964 5.100000 +275 2001 5.100000 +275 2006 5.100000 +275 2018 5.100000 +275 2174 5.100000 +275 2208 5.100000 +275 2237 5.100000 +275 2292 5.100000 +275 2341 5.100000 +275 2358 5.100000 +275 2362 5.100000 +275 2374 5.100000 +275 2405 5.100000 +275 2512 5.100000 +275 2534 5.100000 +275 2545 5.100000 +275 2598 5.100000 +275 2635 5.100000 +275 2699 5.100000 +275 2769 5.100000 +275 2788 5.100000 +275 2792 5.100000 +275 2801 5.100000 +275 2808 5.100000 +275 2809 5.100000 +275 2893 5.100000 +275 2989 5.100000 +275 3028 5.100000 +275 3059 5.100000 +275 3126 5.100000 +275 3152 5.100000 +275 3174 5.100000 +275 3187 5.100000 +276 5 5.100000 +276 108 5.100000 +276 185 5.100000 +276 191 5.100000 +276 315 5.100000 +276 323 5.100000 +276 333 5.100000 +276 341 5.100000 +276 357 5.100000 +276 598 5.100000 +276 670 5.100000 +276 691 5.100000 +276 722 5.100000 +276 768 5.100000 +276 782 5.100000 +276 815 5.100000 +276 847 5.100000 +276 856 5.100000 +276 860 5.100000 +276 868 5.100000 +276 1068 5.100000 +276 1262 5.100000 +276 1268 5.100000 +276 1270 5.100000 +276 1304 5.100000 +276 1385 5.100000 +276 1431 5.100000 +276 1485 5.100000 +276 1499 5.100000 +276 1516 5.100000 +276 1527 5.100000 +276 1572 5.100000 +276 1631 5.100000 +276 1659 5.100000 +276 1746 5.100000 +276 1757 5.100000 +276 1811 5.100000 +276 1915 5.100000 +276 2098 5.100000 +276 2102 5.100000 +276 2115 5.100000 +276 2116 5.100000 +276 2129 5.100000 +276 2222 5.100000 +276 2243 5.100000 +276 2314 5.100000 +276 2403 5.100000 +276 2413 5.100000 +276 2507 5.100000 +276 2588 5.100000 +276 2793 5.100000 +276 2812 5.100000 +276 2817 5.100000 +276 2821 5.100000 +276 2905 5.100000 +276 2907 5.100000 +276 2932 5.100000 +276 2961 5.100000 +276 2996 5.100000 +276 3046 5.100000 +276 3052 5.100000 +276 3056 5.100000 +276 3111 5.100000 +276 3158 5.100000 +276 3159 5.100000 +276 3171 5.100000 +277 68 5.100000 +277 87 5.100000 +277 155 5.100000 +277 169 5.100000 +277 209 5.100000 +277 218 5.100000 +277 220 5.100000 +277 300 5.100000 +277 307 5.100000 +277 387 5.100000 +277 404 5.100000 +277 442 5.100000 +277 499 5.100000 +277 550 5.100000 +277 602 5.100000 +277 622 5.100000 +277 679 5.100000 +277 716 5.100000 +277 746 5.100000 +277 807 5.100000 +277 879 5.100000 +277 946 5.100000 +277 961 5.100000 +277 1045 5.100000 +277 1189 5.100000 +277 1202 5.100000 +277 1209 5.100000 +277 1215 5.100000 +277 1380 5.100000 +277 1438 5.100000 +277 1491 5.100000 +277 1527 5.100000 +277 1549 5.100000 +277 1600 5.100000 +277 1751 5.100000 +277 1770 5.100000 +277 1818 5.100000 +277 1829 5.100000 +277 1839 5.100000 +277 1883 5.100000 +277 1905 5.100000 +277 1996 5.100000 +277 2010 5.100000 +277 2055 5.100000 +277 2092 5.100000 +277 2140 5.100000 +277 2165 5.100000 +277 2231 5.100000 +277 2233 5.100000 +277 2261 5.100000 +277 2282 5.100000 +277 2307 5.100000 +277 2362 5.100000 +277 2380 5.100000 +277 2440 5.100000 +277 2480 5.100000 +277 2580 5.100000 +277 2740 5.100000 +277 2804 5.100000 +277 2855 5.100000 +277 2906 5.100000 +277 2911 5.100000 +277 2987 5.100000 +277 2994 5.100000 +277 3068 5.100000 +277 3104 5.100000 +277 3172 5.100000 +277 3192 5.100000 +278 49 5.100000 +278 67 5.100000 +278 93 5.100000 +278 100 5.100000 +278 166 5.100000 +278 269 5.100000 +278 448 5.100000 +278 517 5.100000 +278 591 5.100000 +278 660 5.100000 +278 674 5.100000 +278 730 5.100000 +278 793 5.100000 +278 800 5.100000 +278 806 5.100000 +278 825 5.100000 +278 847 5.100000 +278 867 5.100000 +278 982 5.100000 +278 992 5.100000 +278 1059 5.100000 +278 1079 5.100000 +278 1097 5.100000 +278 1179 5.100000 +278 1233 5.100000 +278 1275 5.100000 +278 1282 5.100000 +278 1292 5.100000 +278 1351 5.100000 +278 1373 5.100000 +278 1462 5.100000 +278 1505 5.100000 +278 1516 5.100000 +278 1564 5.100000 +278 1611 5.100000 +278 1624 5.100000 +278 1637 5.100000 +278 1686 5.100000 +278 1691 5.100000 +278 1718 5.100000 +278 1721 5.100000 +278 1737 5.100000 +278 1785 5.100000 +278 1886 5.100000 +278 1930 5.100000 +278 2001 5.100000 +278 2069 5.100000 +278 2122 5.100000 +278 2232 5.100000 +278 2292 5.100000 +278 2373 5.100000 +278 2475 5.100000 +278 2515 5.100000 +278 2533 5.100000 +278 2566 5.100000 +278 2692 5.100000 +278 2768 5.100000 +278 2801 5.100000 +278 2836 5.100000 +278 2892 5.100000 +278 2905 5.100000 +278 2907 5.100000 +278 2942 5.100000 +278 2976 5.100000 +278 3051 5.100000 +278 3085 5.100000 +278 3110 5.100000 +278 3189 5.100000 +279 11 5.100000 +279 58 5.100000 +279 185 5.100000 +279 222 5.100000 +279 292 5.100000 +279 301 5.100000 +279 380 5.100000 +279 437 5.100000 +279 561 5.100000 +279 622 5.100000 +279 651 5.100000 +279 676 5.100000 +279 688 5.100000 +279 712 5.100000 +279 741 5.100000 +279 754 5.100000 +279 830 5.100000 +279 857 5.100000 +279 1019 5.100000 +279 1093 5.100000 +279 1184 5.100000 +279 1200 5.100000 +279 1238 5.100000 +279 1271 5.100000 +279 1386 5.100000 +279 1409 5.100000 +279 1703 5.100000 +279 1784 5.100000 +279 1795 5.100000 +279 1804 5.100000 +279 1812 5.100000 +279 1815 5.100000 +279 1849 5.100000 +279 2024 5.100000 +279 2039 5.100000 +279 2085 5.100000 +279 2206 5.100000 +279 2312 5.100000 +279 2320 5.100000 +279 2333 5.100000 +279 2379 5.100000 +279 2419 5.100000 +279 2480 5.100000 +279 2581 5.100000 +279 2614 5.100000 +279 2644 5.100000 +279 2650 5.100000 +279 2653 5.100000 +279 2711 5.100000 +279 2841 5.100000 +279 2945 5.100000 +279 2960 5.100000 +279 2972 5.100000 +279 3056 5.100000 +280 26 5.100000 +280 90 5.100000 +280 133 5.100000 +280 227 5.100000 +280 238 5.100000 +280 328 5.100000 +280 347 5.100000 +280 423 5.100000 +280 452 5.100000 +280 530 5.100000 +280 566 5.100000 +280 641 5.100000 +280 668 5.100000 +280 695 5.100000 +280 724 5.100000 +280 765 5.100000 +280 792 5.100000 +280 888 5.100000 +280 931 5.100000 +280 1116 5.100000 +280 1183 5.100000 +280 1201 5.100000 +280 1229 5.100000 +280 1249 5.100000 +280 1369 5.100000 +280 1371 5.100000 +280 1378 5.100000 +280 1441 5.100000 +280 1465 5.100000 +280 1528 5.100000 +280 1551 5.100000 +280 1629 5.100000 +280 1630 5.100000 +280 1631 5.100000 +280 1658 5.100000 +280 1709 5.100000 +280 1739 5.100000 +280 1785 5.100000 +280 1792 5.100000 +280 1900 5.100000 +280 1902 5.100000 +280 2035 5.100000 +280 2164 5.100000 +280 2222 5.100000 +280 2223 5.100000 +280 2263 5.100000 +280 2318 5.100000 +280 2537 5.100000 +280 2687 5.100000 +280 2735 5.100000 +280 2781 5.100000 +280 2828 5.100000 +280 2848 5.100000 +280 2880 5.100000 +280 2929 5.100000 +280 2936 5.100000 +280 2971 5.100000 +280 2989 5.100000 +280 3030 5.100000 +280 3158 5.100000 +280 3173 5.100000 +280 3177 5.100000 +280 3184 5.100000 +281 106 5.100000 +281 143 5.100000 +281 210 5.100000 +281 237 5.100000 +281 249 5.100000 +281 313 5.100000 +281 317 5.100000 +281 318 5.100000 +281 325 5.100000 +281 371 5.100000 +281 393 5.100000 +281 415 5.100000 +281 440 5.100000 +281 470 5.100000 +281 473 5.100000 +281 673 5.100000 +281 767 5.100000 +281 814 5.100000 +281 817 5.100000 +281 851 5.100000 +281 877 5.100000 +281 891 5.100000 +281 978 5.100000 +281 1033 5.100000 +281 1054 5.100000 +281 1116 5.100000 +281 1161 5.100000 +281 1181 5.100000 +281 1201 5.100000 +281 1250 5.100000 +281 1278 5.100000 +281 1292 5.100000 +281 1306 5.100000 +281 1379 5.100000 +281 1388 5.100000 +281 1440 5.100000 +281 1442 5.100000 +281 1447 5.100000 +281 1518 5.100000 +281 1564 5.100000 +281 1730 5.100000 +281 1741 5.100000 +281 1762 5.100000 +281 1802 5.100000 +281 1809 5.100000 +281 1811 5.100000 +281 1814 5.100000 +281 1838 5.100000 +281 1874 5.100000 +281 1906 5.100000 +281 2004 5.100000 +281 2058 5.100000 +281 2097 5.100000 +281 2244 5.100000 +281 2267 5.100000 +281 2276 5.100000 +281 2378 5.100000 +281 2407 5.100000 +281 2435 5.100000 +281 2499 5.100000 +281 2560 5.100000 +281 2587 5.100000 +281 2588 5.100000 +281 2697 5.100000 +281 2801 5.100000 +281 2861 5.100000 +281 2987 5.100000 +281 3049 5.100000 +281 3122 5.100000 +281 3136 5.100000 +282 25 5.100000 +282 50 5.100000 +282 126 5.100000 +282 136 5.100000 +282 215 5.100000 +282 312 5.100000 +282 448 5.100000 +282 470 5.100000 +282 533 5.100000 +282 548 5.100000 +282 557 5.100000 +282 607 5.100000 +282 646 5.100000 +282 711 5.100000 +282 764 5.100000 +282 800 5.100000 +282 873 5.100000 +282 891 5.100000 +282 923 5.100000 +282 942 5.100000 +282 975 5.100000 +282 1115 5.100000 +282 1126 5.100000 +282 1188 5.100000 +282 1189 5.100000 +282 1277 5.100000 +282 1291 5.100000 +282 1302 5.100000 +282 1315 5.100000 +282 1326 5.100000 +282 1407 5.100000 +282 1408 5.100000 +282 1420 5.100000 +282 1455 5.100000 +282 1516 5.100000 +282 1531 5.100000 +282 1596 5.100000 +282 1629 5.100000 +282 1654 5.100000 +282 1704 5.100000 +282 1720 5.100000 +282 1780 5.100000 +282 1785 5.100000 +282 1789 5.100000 +282 1826 5.100000 +282 1874 5.100000 +282 1881 5.100000 +282 1892 5.100000 +282 1912 5.100000 +282 1927 5.100000 +282 1963 5.100000 +282 1967 5.100000 +282 2012 5.100000 +282 2019 5.100000 +282 2021 5.100000 +282 2056 5.100000 +282 2120 5.100000 +282 2166 5.100000 +282 2237 5.100000 +282 2239 5.100000 +282 2285 5.100000 +282 2318 5.100000 +282 2388 5.100000 +282 2464 5.100000 +282 2479 5.100000 +282 2592 5.100000 +282 2694 5.100000 +282 2731 5.100000 +282 2819 5.100000 +282 2897 5.100000 +282 2980 5.100000 +282 3100 5.100000 +282 3118 5.100000 +282 3182 5.100000 +283 59 5.100000 +283 114 5.100000 +283 166 5.100000 +283 240 5.100000 +283 265 5.100000 +283 285 5.100000 +283 297 5.100000 +283 306 5.100000 +283 343 5.100000 +283 397 5.100000 +283 415 5.100000 +283 521 5.100000 +283 559 5.100000 +283 628 5.100000 +283 779 5.100000 +283 855 5.100000 +283 858 5.100000 +283 871 5.100000 +283 899 5.100000 +283 971 5.100000 +283 994 5.100000 +283 999 5.100000 +283 1067 5.100000 +283 1138 5.100000 +283 1159 5.100000 +283 1193 5.100000 +283 1213 5.100000 +283 1275 5.100000 +283 1363 5.100000 +283 1387 5.100000 +283 1545 5.100000 +283 1572 5.100000 +283 1611 5.100000 +283 1707 5.100000 +283 1729 5.100000 +283 1737 5.100000 +283 1766 5.100000 +283 1767 5.100000 +283 1788 5.100000 +283 1800 5.100000 +283 1823 5.100000 +283 1891 5.100000 +283 1971 5.100000 +283 2151 5.100000 +283 2299 5.100000 +283 2328 5.100000 +283 2329 5.100000 +283 2333 5.100000 +283 2408 5.100000 +283 2409 5.100000 +283 2418 5.100000 +283 2462 5.100000 +283 2476 5.100000 +283 2557 5.100000 +283 2654 5.100000 +283 2750 5.100000 +283 3034 5.100000 +283 3074 5.100000 +283 3114 5.100000 +283 3144 5.100000 +283 3182 5.100000 +284 49 5.100000 +284 73 5.100000 +284 74 5.100000 +284 80 5.100000 +284 88 5.100000 +284 105 5.100000 +284 174 5.100000 +284 187 5.100000 +284 201 5.100000 +284 229 5.100000 +284 495 5.100000 +284 573 5.100000 +284 619 5.100000 +284 633 5.100000 +284 665 5.100000 +284 750 5.100000 +284 769 5.100000 +284 802 5.100000 +284 840 5.100000 +284 890 5.100000 +284 924 5.100000 +284 952 5.100000 +284 981 5.100000 +284 993 5.100000 +284 1049 5.100000 +284 1323 5.100000 +284 1367 5.100000 +284 1414 5.100000 +284 1442 5.100000 +284 1488 5.100000 +284 1530 5.100000 +284 1541 5.100000 +284 1557 5.100000 +284 1582 5.100000 +284 1609 5.100000 +284 1725 5.100000 +284 1726 5.100000 +284 1766 5.100000 +284 1768 5.100000 +284 1776 5.100000 +284 1890 5.100000 +284 1898 5.100000 +284 1928 5.100000 +284 1930 5.100000 +284 1955 5.100000 +284 1983 5.100000 +284 2089 5.100000 +284 2136 5.100000 +284 2172 5.100000 +284 2193 5.100000 +284 2271 5.100000 +284 2281 5.100000 +284 2305 5.100000 +284 2314 5.100000 +284 2330 5.100000 +284 2408 5.100000 +284 2518 5.100000 +284 2646 5.100000 +284 2796 5.100000 +284 2968 5.100000 +284 3023 5.100000 +284 3030 5.100000 +284 3156 5.100000 +284 3164 5.100000 +284 3169 5.100000 +284 3172 5.100000 +284 3198 5.100000 +285 72 5.100000 +285 73 5.100000 +285 78 5.100000 +285 109 5.100000 +285 133 5.100000 +285 182 5.100000 +285 229 5.100000 +285 316 5.100000 +285 334 5.100000 +285 344 5.100000 +285 359 5.100000 +285 490 5.100000 +285 755 5.100000 +285 803 5.100000 +285 806 5.100000 +285 834 5.100000 +285 887 5.100000 +285 951 5.100000 +285 959 5.100000 +285 1018 5.100000 +285 1022 5.100000 +285 1047 5.100000 +285 1093 5.100000 +285 1129 5.100000 +285 1139 5.100000 +285 1144 5.100000 +285 1150 5.100000 +285 1169 5.100000 +285 1232 5.100000 +285 1261 5.100000 +285 1278 5.100000 +285 1280 5.100000 +285 1302 5.100000 +285 1316 5.100000 +285 1328 5.100000 +285 1432 5.100000 +285 1490 5.100000 +285 1596 5.100000 +285 1606 5.100000 +285 1611 5.100000 +285 1650 5.100000 +285 1724 5.100000 +285 1805 5.100000 +285 1972 5.100000 +285 2051 5.100000 +285 2151 5.100000 +285 2177 5.100000 +285 2281 5.100000 +285 2287 5.100000 +285 2291 5.100000 +285 2527 5.100000 +285 2539 5.100000 +285 2540 5.100000 +285 2567 5.100000 +285 2609 5.100000 +285 2625 5.100000 +285 2647 5.100000 +285 2668 5.100000 +285 2703 5.100000 +285 2749 5.100000 +285 2754 5.100000 +285 2762 5.100000 +285 2830 5.100000 +285 2992 5.100000 +285 3073 5.100000 +285 3118 5.100000 +286 13 5.100000 +286 14 5.100000 +286 90 5.100000 +286 142 5.100000 +286 166 5.100000 +286 177 5.100000 +286 239 5.100000 +286 327 5.100000 +286 364 5.100000 +286 368 5.100000 +286 382 5.100000 +286 392 5.100000 +286 396 5.100000 +286 468 5.100000 +286 538 5.100000 +286 582 5.100000 +286 601 5.100000 +286 632 5.100000 +286 676 5.100000 +286 694 5.100000 +286 716 5.100000 +286 773 5.100000 +286 823 5.100000 +286 831 5.100000 +286 914 5.100000 +286 951 5.100000 +286 1103 5.100000 +286 1259 5.100000 +286 1320 5.100000 +286 1353 5.100000 +286 1369 5.100000 +286 1496 5.100000 +286 1529 5.100000 +286 1684 5.100000 +286 1717 5.100000 +286 1720 5.100000 +286 1762 5.100000 +286 1971 5.100000 +286 1980 5.100000 +286 2123 5.100000 +286 2177 5.100000 +286 2194 5.100000 +286 2206 5.100000 +286 2295 5.100000 +286 2359 5.100000 +286 2365 5.100000 +286 2370 5.100000 +286 2552 5.100000 +286 2592 5.100000 +286 2623 5.100000 +286 2624 5.100000 +286 2671 5.100000 +286 2675 5.100000 +286 2709 5.100000 +286 2751 5.100000 +286 2779 5.100000 +286 2799 5.100000 +286 2914 5.100000 +286 2969 5.100000 +286 3011 5.100000 +286 3048 5.100000 +286 3049 5.100000 +286 3075 5.100000 +286 3156 5.100000 +286 3179 5.100000 +287 73 5.100000 +287 92 5.100000 +287 108 5.100000 +287 148 5.100000 +287 154 5.100000 +287 159 5.100000 +287 190 5.100000 +287 231 5.100000 +287 259 5.100000 +287 322 5.100000 +287 332 5.100000 +287 333 5.100000 +287 376 5.100000 +287 419 5.100000 +287 507 5.100000 +287 640 5.100000 +287 647 5.100000 +287 658 5.100000 +287 679 5.100000 +287 717 5.100000 +287 755 5.100000 +287 769 5.100000 +287 943 5.100000 +287 991 5.100000 +287 1144 5.100000 +287 1199 5.100000 +287 1250 5.100000 +287 1363 5.100000 +287 1377 5.100000 +287 1468 5.100000 +287 1591 5.100000 +287 1642 5.100000 +287 1671 5.100000 +287 1773 5.100000 +287 1810 5.100000 +287 1848 5.100000 +287 1858 5.100000 +287 1863 5.100000 +287 1905 5.100000 +287 2051 5.100000 +287 2087 5.100000 +287 2138 5.100000 +287 2151 5.100000 +287 2163 5.100000 +287 2323 5.100000 +287 2411 5.100000 +287 2420 5.100000 +287 2502 5.100000 +287 2582 5.100000 +287 2664 5.100000 +287 2681 5.100000 +287 2734 5.100000 +287 2753 5.100000 +287 2795 5.100000 +287 2811 5.100000 +287 2865 5.100000 +287 3002 5.100000 +287 3011 5.100000 +287 3040 5.100000 +287 3041 5.100000 +287 3046 5.100000 +287 3058 5.100000 +287 3088 5.100000 +287 3142 5.100000 +288 33 5.100000 +288 54 5.100000 +288 98 5.100000 +288 143 5.100000 +288 147 5.100000 +288 171 5.100000 +288 358 5.100000 +288 363 5.100000 +288 382 5.100000 +288 490 5.100000 +288 561 5.100000 +288 651 5.100000 +288 854 5.100000 +288 873 5.100000 +288 903 5.100000 +288 961 5.100000 +288 1017 5.100000 +288 1031 5.100000 +288 1033 5.100000 +288 1168 5.100000 +288 1172 5.100000 +288 1211 5.100000 +288 1241 5.100000 +288 1297 5.100000 +288 1301 5.100000 +288 1474 5.100000 +288 1491 5.100000 +288 1503 5.100000 +288 1549 5.100000 +288 1569 5.100000 +288 1617 5.100000 +288 1682 5.100000 +288 1718 5.100000 +288 1745 5.100000 +288 1891 5.100000 +288 1900 5.100000 +288 1940 5.100000 +288 1975 5.100000 +288 1988 5.100000 +288 2026 5.100000 +288 2152 5.100000 +288 2170 5.100000 +288 2216 5.100000 +288 2244 5.100000 +288 2419 5.100000 +288 2504 5.100000 +288 2635 5.100000 +288 2726 5.100000 +288 2750 5.100000 +288 2857 5.100000 +288 2993 5.100000 +288 3036 5.100000 +288 3049 5.100000 +289 43 5.100000 +289 53 5.100000 +289 102 5.100000 +289 103 5.100000 +289 163 5.100000 +289 198 5.100000 +289 202 5.100000 +289 241 5.100000 +289 266 5.100000 +289 303 5.100000 +289 426 5.100000 +289 438 5.100000 +289 447 5.100000 +289 535 5.100000 +289 630 5.100000 +289 651 5.100000 +289 696 5.100000 +289 704 5.100000 +289 736 5.100000 +289 754 5.100000 +289 953 5.100000 +289 981 5.100000 +289 991 5.100000 +289 1009 5.100000 +289 1024 5.100000 +289 1035 5.100000 +289 1051 5.100000 +289 1085 5.100000 +289 1228 5.100000 +289 1366 5.100000 +289 1375 5.100000 +289 1532 5.100000 +289 1572 5.100000 +289 1584 5.100000 +289 1586 5.100000 +289 1613 5.100000 +289 1673 5.100000 +289 1678 5.100000 +289 1739 5.100000 +289 1777 5.100000 +289 1782 5.100000 +289 1859 5.100000 +289 2003 5.100000 +289 2063 5.100000 +289 2200 5.100000 +289 2223 5.100000 +289 2284 5.100000 +289 2306 5.100000 +289 2316 5.100000 +289 2360 5.100000 +289 2375 5.100000 +289 2434 5.100000 +289 2493 5.100000 +289 2509 5.100000 +289 2546 5.100000 +289 2597 5.100000 +289 2688 5.100000 +289 2725 5.100000 +289 2819 5.100000 +289 2899 5.100000 +289 2957 5.100000 +289 3021 5.100000 +289 3067 5.100000 +289 3114 5.100000 +289 3129 5.100000 +290 1 5.100000 +290 25 5.100000 +290 44 5.100000 +290 62 5.100000 +290 136 5.100000 +290 159 5.100000 +290 217 5.100000 +290 234 5.100000 +290 311 5.100000 +290 327 5.100000 +290 405 5.100000 +290 416 5.100000 +290 511 5.100000 +290 533 5.100000 +290 644 5.100000 +290 645 5.100000 +290 678 5.100000 +290 793 5.100000 +290 855 5.100000 +290 895 5.100000 +290 899 5.100000 +290 924 5.100000 +290 1006 5.100000 +290 1060 5.100000 +290 1092 5.100000 +290 1131 5.100000 +290 1142 5.100000 +290 1154 5.100000 +290 1201 5.100000 +290 1236 5.100000 +290 1331 5.100000 +290 1536 5.100000 +290 1545 5.100000 +290 1597 5.100000 +290 1614 5.100000 +290 1697 5.100000 +290 1705 5.100000 +290 1780 5.100000 +290 1807 5.100000 +290 1815 5.100000 +290 1858 5.100000 +290 1874 5.100000 +290 1885 5.100000 +290 1893 5.100000 +290 1902 5.100000 +290 1936 5.100000 +290 1963 5.100000 +290 2083 5.100000 +290 2101 5.100000 +290 2124 5.100000 +290 2190 5.100000 +290 2192 5.100000 +290 2256 5.100000 +290 2321 5.100000 +290 2414 5.100000 +290 2582 5.100000 +290 2608 5.100000 +290 2690 5.100000 +290 2697 5.100000 +290 2740 5.100000 +290 2980 5.100000 +290 3020 5.100000 +290 3136 5.100000 +290 3141 5.100000 +291 41 5.100000 +291 78 5.100000 +291 116 5.100000 +291 200 5.100000 +291 211 5.100000 +291 217 5.100000 +291 287 5.100000 +291 296 5.100000 +291 308 5.100000 +291 348 5.100000 +291 456 5.100000 +291 656 5.100000 +291 682 5.100000 +291 698 5.100000 +291 708 5.100000 +291 747 5.100000 +291 794 5.100000 +291 829 5.100000 +291 831 5.100000 +291 840 5.100000 +291 862 5.100000 +291 1024 5.100000 +291 1151 5.100000 +291 1179 5.100000 +291 1196 5.100000 +291 1271 5.100000 +291 1283 5.100000 +291 1616 5.100000 +291 1625 5.100000 +291 1652 5.100000 +291 1696 5.100000 +291 1713 5.100000 +291 1850 5.100000 +291 1931 5.100000 +291 1985 5.100000 +291 2007 5.100000 +291 2030 5.100000 +291 2054 5.100000 +291 2089 5.100000 +291 2178 5.100000 +291 2243 5.100000 +291 2354 5.100000 +291 2395 5.100000 +291 2461 5.100000 +291 2495 5.100000 +291 2523 5.100000 +291 2613 5.100000 +291 2633 5.100000 +291 2676 5.100000 +291 2726 5.100000 +291 2751 5.100000 +291 2767 5.100000 +291 2834 5.100000 +291 2860 5.100000 +291 2871 5.100000 +291 2902 5.100000 +291 2944 5.100000 +291 3020 5.100000 +291 3108 5.100000 +291 3148 5.100000 +291 3151 5.100000 +292 30 5.100000 +292 55 5.100000 +292 116 5.100000 +292 196 5.100000 +292 213 5.100000 +292 236 5.100000 +292 322 5.100000 +292 342 5.100000 +292 363 5.100000 +292 387 5.100000 +292 489 5.100000 +292 504 5.100000 +292 538 5.100000 +292 548 5.100000 +292 725 5.100000 +292 880 5.100000 +292 884 5.100000 +292 942 5.100000 +292 973 5.100000 +292 1012 5.100000 +292 1015 5.100000 +292 1054 5.100000 +292 1105 5.100000 +292 1136 5.100000 +292 1155 5.100000 +292 1254 5.100000 +292 1289 5.100000 +292 1317 5.100000 +292 1389 5.100000 +292 1446 5.100000 +292 1456 5.100000 +292 1470 5.100000 +292 1477 5.100000 +292 1492 5.100000 +292 1499 5.100000 +292 1652 5.100000 +292 1668 5.100000 +292 1702 5.100000 +292 1707 5.100000 +292 1752 5.100000 +292 1800 5.100000 +292 1862 5.100000 +292 1882 5.100000 +292 1939 5.100000 +292 1950 5.100000 +292 1952 5.100000 +292 2084 5.100000 +292 2097 5.100000 +292 2117 5.100000 +292 2166 5.100000 +292 2240 5.100000 +292 2389 5.100000 +292 2400 5.100000 +292 2430 5.100000 +292 2432 5.100000 +292 2481 5.100000 +292 2540 5.100000 +292 2580 5.100000 +292 2615 5.100000 +292 2618 5.100000 +292 2631 5.100000 +292 2655 5.100000 +292 2659 5.100000 +292 2715 5.100000 +292 2727 5.100000 +292 2782 5.100000 +292 2806 5.100000 +292 2830 5.100000 +292 2842 5.100000 +292 2876 5.100000 +292 2900 5.100000 +292 2963 5.100000 +292 3001 5.100000 +292 3024 5.100000 +292 3038 5.100000 +292 3067 5.100000 +292 3080 5.100000 +292 3120 5.100000 +293 10 5.100000 +293 55 5.100000 +293 114 5.100000 +293 146 5.100000 +293 148 5.100000 +293 190 5.100000 +293 262 5.100000 +293 314 5.100000 +293 323 5.100000 +293 364 5.100000 +293 386 5.100000 +293 397 5.100000 +293 407 5.100000 +293 523 5.100000 +293 524 5.100000 +293 585 5.100000 +293 632 5.100000 +293 662 5.100000 +293 667 5.100000 +293 690 5.100000 +293 707 5.100000 +293 710 5.100000 +293 713 5.100000 +293 757 5.100000 +293 791 5.100000 +293 901 5.100000 +293 935 5.100000 +293 1011 5.100000 +293 1035 5.100000 +293 1037 5.100000 +293 1205 5.100000 +293 1214 5.100000 +293 1237 5.100000 +293 1243 5.100000 +293 1246 5.100000 +293 1255 5.100000 +293 1271 5.100000 +293 1288 5.100000 +293 1333 5.100000 +293 1353 5.100000 +293 1451 5.100000 +293 1487 5.100000 +293 1524 5.100000 +293 1620 5.100000 +293 1851 5.100000 +293 1858 5.100000 +293 1866 5.100000 +293 1891 5.100000 +293 1928 5.100000 +293 1936 5.100000 +293 1979 5.100000 +293 2063 5.100000 +293 2167 5.100000 +293 2220 5.100000 +293 2223 5.100000 +293 2390 5.100000 +293 2463 5.100000 +293 2478 5.100000 +293 2479 5.100000 +293 2486 5.100000 +293 2508 5.100000 +293 2680 5.100000 +293 2695 5.100000 +293 2771 5.100000 +293 2816 5.100000 +293 2819 5.100000 +293 2877 5.100000 +293 2889 5.100000 +293 2903 5.100000 +293 2921 5.100000 +293 3036 5.100000 +293 3155 5.100000 +293 3182 5.100000 +294 15 5.100000 +294 33 5.100000 +294 55 5.100000 +294 200 5.100000 +294 219 5.100000 +294 263 5.100000 +294 275 5.100000 +294 584 5.100000 +294 587 5.100000 +294 623 5.100000 +294 661 5.100000 +294 744 5.100000 +294 802 5.100000 +294 829 5.100000 +294 902 5.100000 +294 938 5.100000 +294 988 5.100000 +294 1014 5.100000 +294 1078 5.100000 +294 1117 5.100000 +294 1327 5.100000 +294 1353 5.100000 +294 1511 5.100000 +294 1572 5.100000 +294 1636 5.100000 +294 1791 5.100000 +294 1920 5.100000 +294 1986 5.100000 +294 2006 5.100000 +294 2023 5.100000 +294 2095 5.100000 +294 2117 5.100000 +294 2130 5.100000 +294 2149 5.100000 +294 2173 5.100000 +294 2205 5.100000 +294 2310 5.100000 +294 2341 5.100000 +294 2370 5.100000 +294 2509 5.100000 +294 2606 5.100000 +294 2637 5.100000 +294 2746 5.100000 +294 2748 5.100000 +294 2775 5.100000 +294 2929 5.100000 +294 3019 5.100000 +294 3093 5.100000 +294 3105 5.100000 +294 3186 5.100000 +294 3189 5.100000 +295 175 5.100000 +295 218 5.100000 +295 235 5.100000 +295 263 5.100000 +295 268 5.100000 +295 271 5.100000 +295 345 5.100000 +295 359 5.100000 +295 372 5.100000 +295 437 5.100000 +295 440 5.100000 +295 462 5.100000 +295 505 5.100000 +295 597 5.100000 +295 708 5.100000 +295 746 5.100000 +295 788 5.100000 +295 813 5.100000 +295 835 5.100000 +295 854 5.100000 +295 981 5.100000 +295 1011 5.100000 +295 1023 5.100000 +295 1044 5.100000 +295 1139 5.100000 +295 1154 5.100000 +295 1189 5.100000 +295 1214 5.100000 +295 1224 5.100000 +295 1227 5.100000 +295 1255 5.100000 +295 1368 5.100000 +295 1440 5.100000 +295 1635 5.100000 +295 1638 5.100000 +295 1723 5.100000 +295 1732 5.100000 +295 1822 5.100000 +295 1835 5.100000 +295 1905 5.100000 +295 1936 5.100000 +295 2012 5.100000 +295 2030 5.100000 +295 2081 5.100000 +295 2101 5.100000 +295 2139 5.100000 +295 2173 5.100000 +295 2186 5.100000 +295 2192 5.100000 +295 2209 5.100000 +295 2210 5.100000 +295 2269 5.100000 +295 2279 5.100000 +295 2318 5.100000 +295 2393 5.100000 +295 2434 5.100000 +295 2466 5.100000 +295 2470 5.100000 +295 2475 5.100000 +295 2537 5.100000 +295 2738 5.100000 +295 2750 5.100000 +295 2753 5.100000 +295 2797 5.100000 +295 2837 5.100000 +295 2867 5.100000 +295 2950 5.100000 +295 2956 5.100000 +295 2988 5.100000 +295 3022 5.100000 +295 3166 5.100000 +295 3167 5.100000 +295 3187 5.100000 +296 66 5.100000 +296 74 5.100000 +296 106 5.100000 +296 141 5.100000 +296 219 5.100000 +296 297 5.100000 +296 315 5.100000 +296 476 5.100000 +296 542 5.100000 +296 547 5.100000 +296 591 5.100000 +296 592 5.100000 +296 652 5.100000 +296 720 5.100000 +296 768 5.100000 +296 805 5.100000 +296 818 5.100000 +296 824 5.100000 +296 826 5.100000 +296 945 5.100000 +296 956 5.100000 +296 974 5.100000 +296 984 5.100000 +296 1020 5.100000 +296 1115 5.100000 +296 1144 5.100000 +296 1211 5.100000 +296 1252 5.100000 +296 1255 5.100000 +296 1405 5.100000 +296 1537 5.100000 +296 1543 5.100000 +296 1596 5.100000 +296 1612 5.100000 +296 1647 5.100000 +296 1675 5.100000 +296 1716 5.100000 +296 1743 5.100000 +296 1744 5.100000 +296 1797 5.100000 +296 1819 5.100000 +296 1989 5.100000 +296 2010 5.100000 +296 2031 5.100000 +296 2109 5.100000 +296 2173 5.100000 +296 2188 5.100000 +296 2190 5.100000 +296 2241 5.100000 +296 2249 5.100000 +296 2401 5.100000 +296 2509 5.100000 +296 2511 5.100000 +296 2571 5.100000 +296 2671 5.100000 +296 2702 5.100000 +296 2737 5.100000 +296 2828 5.100000 +296 2872 5.100000 +296 2888 5.100000 +296 2909 5.100000 +296 2934 5.100000 +296 3117 5.100000 +296 3129 5.100000 +296 3166 5.100000 +296 3172 5.100000 +297 17 5.100000 +297 36 5.100000 +297 288 5.100000 +297 308 5.100000 +297 315 5.100000 +297 317 5.100000 +297 323 5.100000 +297 331 5.100000 +297 345 5.100000 +297 363 5.100000 +297 368 5.100000 +297 381 5.100000 +297 402 5.100000 +297 413 5.100000 +297 483 5.100000 +297 496 5.100000 +297 519 5.100000 +297 529 5.100000 +297 532 5.100000 +297 536 5.100000 +297 613 5.100000 +297 728 5.100000 +297 733 5.100000 +297 814 5.100000 +297 845 5.100000 +297 957 5.100000 +297 960 5.100000 +297 998 5.100000 +297 1142 5.100000 +297 1222 5.100000 +297 1247 5.100000 +297 1305 5.100000 +297 1376 5.100000 +297 1386 5.100000 +297 1431 5.100000 +297 1523 5.100000 +297 1593 5.100000 +297 1594 5.100000 +297 1668 5.100000 +297 1717 5.100000 +297 1767 5.100000 +297 1844 5.100000 +297 1893 5.100000 +297 1937 5.100000 +297 1991 5.100000 +297 2003 5.100000 +297 2194 5.100000 +297 2202 5.100000 +297 2225 5.100000 +297 2264 5.100000 +297 2284 5.100000 +297 2287 5.100000 +297 2303 5.100000 +297 2362 5.100000 +297 2385 5.100000 +297 2455 5.100000 +297 2570 5.100000 +297 2592 5.100000 +297 2695 5.100000 +297 2896 5.100000 +297 2921 5.100000 +297 2951 5.100000 +297 3095 5.100000 +297 3105 5.100000 +298 31 5.100000 +298 167 5.100000 +298 216 5.100000 +298 292 5.100000 +298 307 5.100000 +298 326 5.100000 +298 327 5.100000 +298 337 5.100000 +298 386 5.100000 +298 532 5.100000 +298 600 5.100000 +298 698 5.100000 +298 739 5.100000 +298 744 5.100000 +298 799 5.100000 +298 808 5.100000 +298 871 5.100000 +298 887 5.100000 +298 914 5.100000 +298 1102 5.100000 +298 1168 5.100000 +298 1206 5.100000 +298 1313 5.100000 +298 1394 5.100000 +298 1490 5.100000 +298 1610 5.100000 +298 1611 5.100000 +298 1656 5.100000 +298 1704 5.100000 +298 1775 5.100000 +298 1800 5.100000 +298 1845 5.100000 +298 1856 5.100000 +298 2044 5.100000 +298 2105 5.100000 +298 2132 5.100000 +298 2178 5.100000 +298 2182 5.100000 +298 2192 5.100000 +298 2197 5.100000 +298 2308 5.100000 +298 2522 5.100000 +298 2611 5.100000 +298 2620 5.100000 +298 2733 5.100000 +298 2758 5.100000 +298 2773 5.100000 +298 2805 5.100000 +298 2947 5.100000 +298 3027 5.100000 +298 3030 5.100000 +298 3047 5.100000 +298 3067 5.100000 +298 3141 5.100000 +298 3151 5.100000 +298 3196 5.100000 +299 13 5.100000 +299 206 5.100000 +299 231 5.100000 +299 247 5.100000 +299 298 5.100000 +299 332 5.100000 +299 347 5.100000 +299 383 5.100000 +299 468 5.100000 +299 495 5.100000 +299 533 5.100000 +299 549 5.100000 +299 571 5.100000 +299 711 5.100000 +299 716 5.100000 +299 717 5.100000 +299 721 5.100000 +299 765 5.100000 +299 792 5.100000 +299 908 5.100000 +299 1017 5.100000 +299 1145 5.100000 +299 1254 5.100000 +299 1263 5.100000 +299 1282 5.100000 +299 1285 5.100000 +299 1417 5.100000 +299 1418 5.100000 +299 1435 5.100000 +299 1603 5.100000 +299 1643 5.100000 +299 1653 5.100000 +299 1668 5.100000 +299 1699 5.100000 +299 1762 5.100000 +299 1864 5.100000 +299 1866 5.100000 +299 1882 5.100000 +299 1945 5.100000 +299 1978 5.100000 +299 2049 5.100000 +299 2123 5.100000 +299 2219 5.100000 +299 2226 5.100000 +299 2288 5.100000 +299 2315 5.100000 +299 2344 5.100000 +299 2354 5.100000 +299 2393 5.100000 +299 2445 5.100000 +299 2506 5.100000 +299 2573 5.100000 +299 2672 5.100000 +299 2793 5.100000 +299 2795 5.100000 +299 2883 5.100000 +299 2923 5.100000 +299 2936 5.100000 +299 2940 5.100000 +299 3035 5.100000 +299 3069 5.100000 +299 3135 5.100000 +299 3194 5.100000 +300 30 5.100000 +300 142 5.100000 +300 220 5.100000 +300 225 5.100000 +300 405 5.100000 +300 513 5.100000 +300 640 5.100000 +300 695 5.100000 +300 766 5.100000 +300 845 5.100000 +300 885 5.100000 +300 893 5.100000 +300 925 5.100000 +300 996 5.100000 +300 1058 5.100000 +300 1145 5.100000 +300 1147 5.100000 +300 1174 5.100000 +300 1241 5.100000 +300 1256 5.100000 +300 1317 5.100000 +300 1344 5.100000 +300 1417 5.100000 +300 1422 5.100000 +300 1444 5.100000 +300 1451 5.100000 +300 1583 5.100000 +300 1625 5.100000 +300 1640 5.100000 +300 1658 5.100000 +300 1695 5.100000 +300 1756 5.100000 +300 1766 5.100000 +300 1779 5.100000 +300 1830 5.100000 +300 1833 5.100000 +300 1868 5.100000 +300 2029 5.100000 +300 2132 5.100000 +300 2238 5.100000 +300 2306 5.100000 +300 2378 5.100000 +300 2380 5.100000 +300 2403 5.100000 +300 2454 5.100000 +300 2480 5.100000 +300 2562 5.100000 +300 2563 5.100000 +300 2581 5.100000 +300 2828 5.100000 +300 2858 5.100000 +300 2886 5.100000 +300 2893 5.100000 +300 2904 5.100000 +300 2911 5.100000 +300 3016 5.100000 +300 3126 5.100000 +300 3134 5.100000 +300 3179 5.100000 +300 3185 5.100000 +301 220 5.100000 +301 293 5.100000 +301 376 5.100000 +301 377 5.100000 +301 419 5.100000 +301 480 5.100000 +301 534 5.100000 +301 587 5.100000 +301 618 5.100000 +301 634 5.100000 +301 709 5.100000 +301 792 5.100000 +301 793 5.100000 +301 874 5.100000 +301 934 5.100000 +301 1028 5.100000 +301 1029 5.100000 +301 1079 5.100000 +301 1156 5.100000 +301 1182 5.100000 +301 1185 5.100000 +301 1226 5.100000 +301 1351 5.100000 +301 1353 5.100000 +301 1415 5.100000 +301 1458 5.100000 +301 1503 5.100000 +301 1563 5.100000 +301 1586 5.100000 +301 1683 5.100000 +301 1748 5.100000 +301 1927 5.100000 +301 1970 5.100000 +301 2025 5.100000 +301 2049 5.100000 +301 2052 5.100000 +301 2139 5.100000 +301 2146 5.100000 +301 2172 5.100000 +301 2253 5.100000 +301 2265 5.100000 +301 2283 5.100000 +301 2370 5.100000 +301 2397 5.100000 +301 2411 5.100000 +301 2509 5.100000 +301 2645 5.100000 +301 2685 5.100000 +301 2842 5.100000 +301 2971 5.100000 +301 3020 5.100000 +301 3053 5.100000 +301 3087 5.100000 +301 3106 5.100000 +302 10 5.100000 +302 91 5.100000 +302 102 5.100000 +302 167 5.100000 +302 237 5.100000 +302 259 5.100000 +302 276 5.100000 +302 319 5.100000 +302 325 5.100000 +302 432 5.100000 +302 449 5.100000 +302 461 5.100000 +302 550 5.100000 +302 625 5.100000 +302 671 5.100000 +302 731 5.100000 +302 751 5.100000 +302 765 5.100000 +302 787 5.100000 +302 823 5.100000 +302 826 5.100000 +302 903 5.100000 +302 926 5.100000 +302 1030 5.100000 +302 1121 5.100000 +302 1126 5.100000 +302 1215 5.100000 +302 1222 5.100000 +302 1233 5.100000 +302 1302 5.100000 +302 1371 5.100000 +302 1492 5.100000 +302 1520 5.100000 +302 1526 5.100000 +302 1533 5.100000 +302 1546 5.100000 +302 1566 5.100000 +302 1599 5.100000 +302 1607 5.100000 +302 1718 5.100000 +302 1783 5.100000 +302 1894 5.100000 +302 2111 5.100000 +302 2239 5.100000 +302 2245 5.100000 +302 2302 5.100000 +302 2371 5.100000 +302 2418 5.100000 +302 2458 5.100000 +302 2491 5.100000 +302 2557 5.100000 +302 2652 5.100000 +302 2672 5.100000 +302 2714 5.100000 +302 2728 5.100000 +302 2751 5.100000 +302 2775 5.100000 +302 2776 5.100000 +302 2799 5.100000 +302 2856 5.100000 +302 2914 5.100000 +302 3171 5.100000 +302 3176 5.100000 +302 3184 5.100000 +302 3185 5.100000 +303 7 5.100000 +303 19 5.100000 +303 52 5.100000 +303 54 5.100000 +303 60 5.100000 +303 138 5.100000 +303 177 5.100000 +303 225 5.100000 +303 245 5.100000 +303 295 5.100000 +303 354 5.100000 +303 369 5.100000 +303 393 5.100000 +303 408 5.100000 +303 420 5.100000 +303 431 5.100000 +303 602 5.100000 +303 694 5.100000 +303 725 5.100000 +303 747 5.100000 +303 953 5.100000 +303 981 5.100000 +303 1012 5.100000 +303 1015 5.100000 +303 1090 5.100000 +303 1091 5.100000 +303 1104 5.100000 +303 1145 5.100000 +303 1184 5.100000 +303 1241 5.100000 +303 1331 5.100000 +303 1363 5.100000 +303 1383 5.100000 +303 1390 5.100000 +303 1407 5.100000 +303 1596 5.100000 +303 1635 5.100000 +303 1718 5.100000 +303 1728 5.100000 +303 1752 5.100000 +303 1797 5.100000 +303 1835 5.100000 +303 1839 5.100000 +303 1868 5.100000 +303 1886 5.100000 +303 1919 5.100000 +303 1953 5.100000 +303 2046 5.100000 +303 2055 5.100000 +303 2080 5.100000 +303 2108 5.100000 +303 2205 5.100000 +303 2267 5.100000 +303 2434 5.100000 +303 2473 5.100000 +303 2479 5.100000 +303 2613 5.100000 +303 2634 5.100000 +303 2639 5.100000 +303 2793 5.100000 +303 2836 5.100000 +303 2893 5.100000 +303 2908 5.100000 +303 2914 5.100000 +303 2916 5.100000 +303 2986 5.100000 +303 3010 5.100000 +303 3051 5.100000 +303 3163 5.100000 +303 3169 5.100000 +303 3190 5.100000 +303 3198 5.100000 +304 76 5.100000 +304 122 5.100000 +304 216 5.100000 +304 277 5.100000 +304 295 5.100000 +304 317 5.100000 +304 346 5.100000 +304 405 5.100000 +304 542 5.100000 +304 600 5.100000 +304 625 5.100000 +304 754 5.100000 +304 812 5.100000 +304 846 5.100000 +304 899 5.100000 +304 903 5.100000 +304 930 5.100000 +304 960 5.100000 +304 988 5.100000 +304 1046 5.100000 +304 1135 5.100000 +304 1256 5.100000 +304 1302 5.100000 +304 1455 5.100000 +304 1499 5.100000 +304 1528 5.100000 +304 1549 5.100000 +304 1613 5.100000 +304 1686 5.100000 +304 1772 5.100000 +304 1865 5.100000 +304 1937 5.100000 +304 1982 5.100000 +304 2017 5.100000 +304 2063 5.100000 +304 2081 5.100000 +304 2143 5.100000 +304 2157 5.100000 +304 2210 5.100000 +304 2252 5.100000 +304 2267 5.100000 +304 2270 5.100000 +304 2296 5.100000 +304 2361 5.100000 +304 2496 5.100000 +304 2508 5.100000 +304 2515 5.100000 +304 2523 5.100000 +304 2632 5.100000 +304 2638 5.100000 +304 2658 5.100000 +304 2662 5.100000 +304 2691 5.100000 +304 2754 5.100000 +304 2764 5.100000 +304 2840 5.100000 +304 2845 5.100000 +304 2860 5.100000 +304 2870 5.100000 +304 2878 5.100000 +304 2979 5.100000 +304 3054 5.100000 +304 3063 5.100000 +305 129 5.100000 +305 133 5.100000 +305 335 5.100000 +305 372 5.100000 +305 385 5.100000 +305 406 5.100000 +305 460 5.100000 +305 570 5.100000 +305 614 5.100000 +305 676 5.100000 +305 684 5.100000 +305 704 5.100000 +305 706 5.100000 +305 718 5.100000 +305 834 5.100000 +305 874 5.100000 +305 875 5.100000 +305 895 5.100000 +305 899 5.100000 +305 946 5.100000 +305 1054 5.100000 +305 1097 5.100000 +305 1222 5.100000 +305 1297 5.100000 +305 1340 5.100000 +305 1442 5.100000 +305 1461 5.100000 +305 1462 5.100000 +305 1481 5.100000 +305 1492 5.100000 +305 1513 5.100000 +305 1540 5.100000 +305 1696 5.100000 +305 1769 5.100000 +305 1787 5.100000 +305 1893 5.100000 +305 1899 5.100000 +305 1929 5.100000 +305 1931 5.100000 +305 1934 5.100000 +305 1945 5.100000 +305 2018 5.100000 +305 2034 5.100000 +305 2047 5.100000 +305 2193 5.100000 +305 2302 5.100000 +305 2370 5.100000 +305 2379 5.100000 +305 2420 5.100000 +305 2579 5.100000 +305 2678 5.100000 +305 2708 5.100000 +305 2726 5.100000 +305 2737 5.100000 +305 2792 5.100000 +305 2859 5.100000 +305 2921 5.100000 +305 2934 5.100000 +305 2988 5.100000 +305 3008 5.100000 +305 3020 5.100000 +305 3045 5.100000 +305 3197 5.100000 +306 102 5.100000 +306 127 5.100000 +306 217 5.100000 +306 234 5.100000 +306 237 5.100000 +306 395 5.100000 +306 458 5.100000 +306 473 5.100000 +306 483 5.100000 +306 504 5.100000 +306 510 5.100000 +306 642 5.100000 +306 671 5.100000 +306 676 5.100000 +306 807 5.100000 +306 827 5.100000 +306 883 5.100000 +306 926 5.100000 +306 1107 5.100000 +306 1214 5.100000 +306 1279 5.100000 +306 1311 5.100000 +306 1323 5.100000 +306 1341 5.100000 +306 1359 5.100000 +306 1418 5.100000 +306 1549 5.100000 +306 1587 5.100000 +306 1767 5.100000 +306 1775 5.100000 +306 1824 5.100000 +306 1828 5.100000 +306 1896 5.100000 +306 1966 5.100000 +306 1990 5.100000 +306 1992 5.100000 +306 2016 5.100000 +306 2062 5.100000 +306 2105 5.100000 +306 2117 5.100000 +306 2180 5.100000 +306 2272 5.100000 +306 2340 5.100000 +306 2373 5.100000 +306 2400 5.100000 +306 2501 5.100000 +306 2539 5.100000 +306 2604 5.100000 +306 2624 5.100000 +306 2748 5.100000 +306 2831 5.100000 +306 2851 5.100000 +306 2884 5.100000 +306 2914 5.100000 +306 2948 5.100000 +306 3011 5.100000 +306 3032 5.100000 +307 42 5.100000 +307 82 5.100000 +307 87 5.100000 +307 88 5.100000 +307 141 5.100000 +307 176 5.100000 +307 198 5.100000 +307 212 5.100000 +307 296 5.100000 +307 327 5.100000 +307 337 5.100000 +307 417 5.100000 +307 431 5.100000 +307 524 5.100000 +307 607 5.100000 +307 632 5.100000 +307 680 5.100000 +307 782 5.100000 +307 841 5.100000 +307 879 5.100000 +307 950 5.100000 +307 966 5.100000 +307 1160 5.100000 +307 1183 5.100000 +307 1212 5.100000 +307 1233 5.100000 +307 1246 5.100000 +307 1297 5.100000 +307 1314 5.100000 +307 1532 5.100000 +307 1588 5.100000 +307 1643 5.100000 +307 1752 5.100000 +307 1763 5.100000 +307 1827 5.100000 +307 1847 5.100000 +307 1865 5.100000 +307 1950 5.100000 +307 2003 5.100000 +307 2030 5.100000 +307 2049 5.100000 +307 2179 5.100000 +307 2182 5.100000 +307 2243 5.100000 +307 2427 5.100000 +307 2436 5.100000 +307 2494 5.100000 +307 2537 5.100000 +307 2543 5.100000 +307 2558 5.100000 +307 2614 5.100000 +307 2615 5.100000 +307 2668 5.100000 +307 2702 5.100000 +307 2802 5.100000 +307 2928 5.100000 +307 2988 5.100000 +307 3013 5.100000 +307 3070 5.100000 +308 4 5.100000 +308 10 5.100000 +308 129 5.100000 +308 167 5.100000 +308 215 5.100000 +308 228 5.100000 +308 237 5.100000 +308 256 5.100000 +308 394 5.100000 +308 404 5.100000 +308 435 5.100000 +308 468 5.100000 +308 574 5.100000 +308 617 5.100000 +308 650 5.100000 +308 855 5.100000 +308 1078 5.100000 +308 1086 5.100000 +308 1106 5.100000 +308 1135 5.100000 +308 1178 5.100000 +308 1226 5.100000 +308 1260 5.100000 +308 1300 5.100000 +308 1334 5.100000 +308 1335 5.100000 +308 1423 5.100000 +308 1428 5.100000 +308 1447 5.100000 +308 1499 5.100000 +308 1511 5.100000 +308 1555 5.100000 +308 1624 5.100000 +308 1633 5.100000 +308 1694 5.100000 +308 1702 5.100000 +308 1782 5.100000 +308 1783 5.100000 +308 1835 5.100000 +308 1876 5.100000 +308 1942 5.100000 +308 1973 5.100000 +308 2019 5.100000 +308 2078 5.100000 +308 2084 5.100000 +308 2097 5.100000 +308 2130 5.100000 +308 2144 5.100000 +308 2160 5.100000 +308 2235 5.100000 +308 2238 5.100000 +308 2481 5.100000 +308 2497 5.100000 +308 2668 5.100000 +308 2709 5.100000 +308 2743 5.100000 +308 2804 5.100000 +308 2860 5.100000 +308 2917 5.100000 +308 2950 5.100000 +308 3012 5.100000 +308 3118 5.100000 +309 18 5.100000 +309 58 5.100000 +309 168 5.100000 +309 186 5.100000 +309 188 5.100000 +309 232 5.100000 +309 320 5.100000 +309 447 5.100000 +309 471 5.100000 +309 499 5.100000 +309 541 5.100000 +309 557 5.100000 +309 563 5.100000 +309 747 5.100000 +309 810 5.100000 +309 885 5.100000 +309 966 5.100000 +309 1009 5.100000 +309 1023 5.100000 +309 1096 5.100000 +309 1192 5.100000 +309 1255 5.100000 +309 1312 5.100000 +309 1390 5.100000 +309 1396 5.100000 +309 1421 5.100000 +309 1441 5.100000 +309 1444 5.100000 +309 1614 5.100000 +309 1801 5.100000 +309 1876 5.100000 +309 1885 5.100000 +309 1887 5.100000 +309 1934 5.100000 +309 1968 5.100000 +309 1998 5.100000 +309 2092 5.100000 +309 2145 5.100000 +309 2165 5.100000 +309 2214 5.100000 +309 2252 5.100000 +309 2255 5.100000 +309 2293 5.100000 +309 2345 5.100000 +309 2364 5.100000 +309 2424 5.100000 +309 2442 5.100000 +309 2451 5.100000 +309 2560 5.100000 +309 2672 5.100000 +309 2745 5.100000 +309 2762 5.100000 +309 2774 5.100000 +309 2838 5.100000 +309 2961 5.100000 +309 2991 5.100000 +309 3014 5.100000 +309 3015 5.100000 +309 3119 5.100000 +309 3121 5.100000 +309 3136 5.100000 +309 3150 5.100000 +309 3154 5.100000 +309 3185 5.100000 +310 35 5.100000 +310 107 5.100000 +310 146 5.100000 +310 203 5.100000 +310 204 5.100000 +310 223 5.100000 +310 229 5.100000 +310 250 5.100000 +310 274 5.100000 +310 317 5.100000 +310 471 5.100000 +310 521 5.100000 +310 558 5.100000 +310 623 5.100000 +310 641 5.100000 +310 663 5.100000 +310 889 5.100000 +310 930 5.100000 +310 1055 5.100000 +310 1110 5.100000 +310 1139 5.100000 +310 1171 5.100000 +310 1209 5.100000 +310 1243 5.100000 +310 1256 5.100000 +310 1281 5.100000 +310 1336 5.100000 +310 1342 5.100000 +310 1382 5.100000 +310 1397 5.100000 +310 1398 5.100000 +310 1584 5.100000 +310 1619 5.100000 +310 1650 5.100000 +310 1746 5.100000 +310 1764 5.100000 +310 1917 5.100000 +310 2029 5.100000 +310 2045 5.100000 +310 2080 5.100000 +310 2118 5.100000 +310 2131 5.100000 +310 2165 5.100000 +310 2323 5.100000 +310 2376 5.100000 +310 2402 5.100000 +310 2440 5.100000 +310 2453 5.100000 +310 2457 5.100000 +310 2509 5.100000 +310 2561 5.100000 +310 2636 5.100000 +310 2711 5.100000 +310 2774 5.100000 +310 2857 5.100000 +310 2884 5.100000 +310 3030 5.100000 +310 3062 5.100000 +310 3098 5.100000 +310 3159 5.100000 +311 17 5.100000 +311 47 5.100000 +311 99 5.100000 +311 100 5.100000 +311 110 5.100000 +311 121 5.100000 +311 122 5.100000 +311 133 5.100000 +311 151 5.100000 +311 162 5.100000 +311 172 5.100000 +311 190 5.100000 +311 218 5.100000 +311 259 5.100000 +311 290 5.100000 +311 300 5.100000 +311 366 5.100000 +311 382 5.100000 +311 445 5.100000 +311 514 5.100000 +311 536 5.100000 +311 539 5.100000 +311 562 5.100000 +311 651 5.100000 +311 718 5.100000 +311 790 5.100000 +311 796 5.100000 +311 884 5.100000 +311 916 5.100000 +311 938 5.100000 +311 974 5.100000 +311 1026 5.100000 +311 1112 5.100000 +311 1117 5.100000 +311 1143 5.100000 +311 1192 5.100000 +311 1281 5.100000 +311 1378 5.100000 +311 1458 5.100000 +311 1477 5.100000 +311 1534 5.100000 +311 1625 5.100000 +311 1735 5.100000 +311 1824 5.100000 +311 1882 5.100000 +311 1903 5.100000 +311 1972 5.100000 +311 2100 5.100000 +311 2226 5.100000 +311 2315 5.100000 +311 2418 5.100000 +311 2421 5.100000 +311 2426 5.100000 +311 2430 5.100000 +311 2442 5.100000 +311 2557 5.100000 +311 2559 5.100000 +311 2629 5.100000 +311 2631 5.100000 +311 2667 5.100000 +311 2735 5.100000 +311 2749 5.100000 +311 2874 5.100000 +311 2880 5.100000 +311 2889 5.100000 +311 2907 5.100000 +311 2972 5.100000 +311 2983 5.100000 +311 3020 5.100000 +311 3029 5.100000 +311 3132 5.100000 +311 3191 5.100000 +311 3192 5.100000 +312 42 5.100000 +312 81 5.100000 +312 169 5.100000 +312 171 5.100000 +312 184 5.100000 +312 192 5.100000 +312 390 5.100000 +312 584 5.100000 +312 664 5.100000 +312 698 5.100000 +312 712 5.100000 +312 726 5.100000 +312 753 5.100000 +312 775 5.100000 +312 874 5.100000 +312 956 5.100000 +312 987 5.100000 +312 1072 5.100000 +312 1087 5.100000 +312 1105 5.100000 +312 1190 5.100000 +312 1238 5.100000 +312 1260 5.100000 +312 1262 5.100000 +312 1355 5.100000 +312 1403 5.100000 +312 1458 5.100000 +312 1596 5.100000 +312 1672 5.100000 +312 1673 5.100000 +312 1691 5.100000 +312 1711 5.100000 +312 1728 5.100000 +312 1769 5.100000 +312 1833 5.100000 +312 1859 5.100000 +312 1866 5.100000 +312 1897 5.100000 +312 1919 5.100000 +312 1938 5.100000 +312 1950 5.100000 +312 2006 5.100000 +312 2008 5.100000 +312 2035 5.100000 +312 2075 5.100000 +312 2194 5.100000 +312 2225 5.100000 +312 2241 5.100000 +312 2272 5.100000 +312 2390 5.100000 +312 2434 5.100000 +312 2528 5.100000 +312 2612 5.100000 +312 2638 5.100000 +312 2645 5.100000 +312 2683 5.100000 +312 2701 5.100000 +312 2708 5.100000 +312 2830 5.100000 +312 2907 5.100000 +312 2909 5.100000 +312 2994 5.100000 +312 3093 5.100000 +312 3102 5.100000 +312 3127 5.100000 +313 12 5.100000 +313 62 5.100000 +313 102 5.100000 +313 115 5.100000 +313 135 5.100000 +313 143 5.100000 +313 160 5.100000 +313 170 5.100000 +313 200 5.100000 +313 234 5.100000 +313 451 5.100000 +313 682 5.100000 +313 692 5.100000 +313 693 5.100000 +313 714 5.100000 +313 740 5.100000 +313 803 5.100000 +313 1031 5.100000 +313 1048 5.100000 +313 1085 5.100000 +313 1099 5.100000 +313 1150 5.100000 +313 1244 5.100000 +313 1255 5.100000 +313 1267 5.100000 +313 1301 5.100000 +313 1402 5.100000 +313 1425 5.100000 +313 1430 5.100000 +313 1443 5.100000 +313 1492 5.100000 +313 1572 5.100000 +313 1655 5.100000 +313 1707 5.100000 +313 1819 5.100000 +313 1821 5.100000 +313 1837 5.100000 +313 1856 5.100000 +313 1908 5.100000 +313 1912 5.100000 +313 1936 5.100000 +313 1978 5.100000 +313 1988 5.100000 +313 2037 5.100000 +313 2044 5.100000 +313 2235 5.100000 +313 2250 5.100000 +313 2289 5.100000 +313 2445 5.100000 +313 2448 5.100000 +313 2483 5.100000 +313 2554 5.100000 +313 2626 5.100000 +313 2701 5.100000 +313 2734 5.100000 +313 2803 5.100000 +313 2828 5.100000 +313 2846 5.100000 +313 2848 5.100000 +313 2882 5.100000 +313 3021 5.100000 +313 3025 5.100000 +313 3160 5.100000 +313 3172 5.100000 +314 26 5.100000 +314 88 5.100000 +314 205 5.100000 +314 216 5.100000 +314 297 5.100000 +314 350 5.100000 +314 393 5.100000 +314 577 5.100000 +314 597 5.100000 +314 624 5.100000 +314 636 5.100000 +314 875 5.100000 +314 884 5.100000 +314 885 5.100000 +314 921 5.100000 +314 991 5.100000 +314 1068 5.100000 +314 1157 5.100000 +314 1172 5.100000 +314 1209 5.100000 +314 1363 5.100000 +314 1391 5.100000 +314 1395 5.100000 +314 1439 5.100000 +314 1460 5.100000 +314 1502 5.100000 +314 1622 5.100000 +314 1649 5.100000 +314 1657 5.100000 +314 1660 5.100000 +314 1662 5.100000 +314 1729 5.100000 +314 1862 5.100000 +314 2011 5.100000 +314 2018 5.100000 +314 2022 5.100000 +314 2024 5.100000 +314 2122 5.100000 +314 2136 5.100000 +314 2193 5.100000 +314 2415 5.100000 +314 2440 5.100000 +314 2499 5.100000 +314 2523 5.100000 +314 2546 5.100000 +314 2593 5.100000 +314 2703 5.100000 +314 2713 5.100000 +314 2755 5.100000 +314 2756 5.100000 +314 2760 5.100000 +314 2762 5.100000 +314 2831 5.100000 +314 2974 5.100000 +314 3006 5.100000 +314 3020 5.100000 +314 3083 5.100000 +314 3137 5.100000 +315 52 5.100000 +315 100 5.100000 +315 159 5.100000 +315 234 5.100000 +315 278 5.100000 +315 309 5.100000 +315 322 5.100000 +315 389 5.100000 +315 428 5.100000 +315 515 5.100000 +315 526 5.100000 +315 560 5.100000 +315 592 5.100000 +315 622 5.100000 +315 683 5.100000 +315 788 5.100000 +315 800 5.100000 +315 814 5.100000 +315 849 5.100000 +315 948 5.100000 +315 975 5.100000 +315 1049 5.100000 +315 1118 5.100000 +315 1264 5.100000 +315 1270 5.100000 +315 1297 5.100000 +315 1298 5.100000 +315 1314 5.100000 +315 1425 5.100000 +315 1514 5.100000 +315 1572 5.100000 +315 1585 5.100000 +315 1592 5.100000 +315 1705 5.100000 +315 1861 5.100000 +315 1895 5.100000 +315 1980 5.100000 +315 2064 5.100000 +315 2066 5.100000 +315 2173 5.100000 +315 2192 5.100000 +315 2227 5.100000 +315 2253 5.100000 +315 2276 5.100000 +315 2277 5.100000 +315 2432 5.100000 +315 2470 5.100000 +315 2479 5.100000 +315 2627 5.100000 +315 2716 5.100000 +315 2751 5.100000 +315 2756 5.100000 +315 2808 5.100000 +315 2840 5.100000 +315 2852 5.100000 +315 2860 5.100000 +315 2862 5.100000 +315 3107 5.100000 +315 3126 5.100000 +315 3160 5.100000 +316 1 5.100000 +316 11 5.100000 +316 21 5.100000 +316 100 5.100000 +316 104 5.100000 +316 120 5.100000 +316 169 5.100000 +316 366 5.100000 +316 376 5.100000 +316 444 5.100000 +316 508 5.100000 +316 544 5.100000 +316 561 5.100000 +316 606 5.100000 +316 673 5.100000 +316 783 5.100000 +316 794 5.100000 +316 796 5.100000 +316 954 5.100000 +316 975 5.100000 +316 1040 5.100000 +316 1094 5.100000 +316 1104 5.100000 +316 1121 5.100000 +316 1146 5.100000 +316 1168 5.100000 +316 1176 5.100000 +316 1242 5.100000 +316 1358 5.100000 +316 1375 5.100000 +316 1391 5.100000 +316 1443 5.100000 +316 1516 5.100000 +316 1571 5.100000 +316 1589 5.100000 +316 1688 5.100000 +316 1703 5.100000 +316 1724 5.100000 +316 1792 5.100000 +316 1898 5.100000 +316 1901 5.100000 +316 1925 5.100000 +316 1947 5.100000 +316 1973 5.100000 +316 2016 5.100000 +316 2055 5.100000 +316 2122 5.100000 +316 2246 5.100000 +316 2263 5.100000 +316 2329 5.100000 +316 2408 5.100000 +316 2423 5.100000 +316 2469 5.100000 +316 2475 5.100000 +316 2517 5.100000 +316 2522 5.100000 +316 2653 5.100000 +316 2723 5.100000 +316 2730 5.100000 +316 2803 5.100000 +316 2808 5.100000 +316 2813 5.100000 +316 2893 5.100000 +316 2922 5.100000 +316 2943 5.100000 +316 2945 5.100000 +317 93 5.100000 +317 124 5.100000 +317 169 5.100000 +317 171 5.100000 +317 284 5.100000 +317 381 5.100000 +317 439 5.100000 +317 526 5.100000 +317 583 5.100000 +317 609 5.100000 +317 612 5.100000 +317 646 5.100000 +317 651 5.100000 +317 766 5.100000 +317 774 5.100000 +317 825 5.100000 +317 845 5.100000 +317 957 5.100000 +317 992 5.100000 +317 999 5.100000 +317 1088 5.100000 +317 1109 5.100000 +317 1144 5.100000 +317 1166 5.100000 +317 1212 5.100000 +317 1216 5.100000 +317 1259 5.100000 +317 1266 5.100000 +317 1335 5.100000 +317 1386 5.100000 +317 1542 5.100000 +317 1569 5.100000 +317 1607 5.100000 +317 1642 5.100000 +317 1659 5.100000 +317 1692 5.100000 +317 1705 5.100000 +317 1865 5.100000 +317 1895 5.100000 +317 1958 5.100000 +317 1987 5.100000 +317 1994 5.100000 +317 2155 5.100000 +317 2282 5.100000 +317 2340 5.100000 +317 2364 5.100000 +317 2404 5.100000 +317 2415 5.100000 +317 2488 5.100000 +317 2519 5.100000 +317 2616 5.100000 +317 2622 5.100000 +317 2693 5.100000 +317 2923 5.100000 +317 2964 5.100000 +317 3007 5.100000 +317 3073 5.100000 +317 3117 5.100000 +317 3124 5.100000 +317 3128 5.100000 +317 3197 5.100000 +318 37 5.100000 +318 46 5.100000 +318 75 5.100000 +318 78 5.100000 +318 148 5.100000 +318 261 5.100000 +318 291 5.100000 +318 355 5.100000 +318 375 5.100000 +318 419 5.100000 +318 484 5.100000 +318 540 5.100000 +318 550 5.100000 +318 678 5.100000 +318 689 5.100000 +318 731 5.100000 +318 752 5.100000 +318 836 5.100000 +318 884 5.100000 +318 1122 5.100000 +318 1136 5.100000 +318 1236 5.100000 +318 1376 5.100000 +318 1385 5.100000 +318 1386 5.100000 +318 1423 5.100000 +318 1503 5.100000 +318 1517 5.100000 +318 1557 5.100000 +318 1584 5.100000 +318 1598 5.100000 +318 1610 5.100000 +318 1710 5.100000 +318 1728 5.100000 +318 1731 5.100000 +318 1811 5.100000 +318 1972 5.100000 +318 2046 5.100000 +318 2052 5.100000 +318 2114 5.100000 +318 2124 5.100000 +318 2126 5.100000 +318 2147 5.100000 +318 2285 5.100000 +318 2307 5.100000 +318 2338 5.100000 +318 2347 5.100000 +318 2429 5.100000 +318 2440 5.100000 +318 2462 5.100000 +318 2473 5.100000 +318 2522 5.100000 +318 2568 5.100000 +318 2573 5.100000 +318 2616 5.100000 +318 2649 5.100000 +318 2718 5.100000 +318 2769 5.100000 +318 2774 5.100000 +318 2791 5.100000 +318 2842 5.100000 +318 2853 5.100000 +318 2860 5.100000 +318 2870 5.100000 +318 2901 5.100000 +318 3042 5.100000 +318 3084 5.100000 +318 3138 5.100000 +318 3159 5.100000 +318 3171 5.100000 +319 31 5.100000 +319 39 5.100000 +319 67 5.100000 +319 74 5.100000 +319 81 5.100000 +319 109 5.100000 +319 135 5.100000 +319 196 5.100000 +319 233 5.100000 +319 254 5.100000 +319 272 5.100000 +319 278 5.100000 +319 493 5.100000 +319 594 5.100000 +319 595 5.100000 +319 605 5.100000 +319 615 5.100000 +319 639 5.100000 +319 652 5.100000 +319 664 5.100000 +319 727 5.100000 +319 782 5.100000 +319 816 5.100000 +319 824 5.100000 +319 832 5.100000 +319 850 5.100000 +319 925 5.100000 +319 1029 5.100000 +319 1056 5.100000 +319 1234 5.100000 +319 1348 5.100000 +319 1357 5.100000 +319 1395 5.100000 +319 1399 5.100000 +319 1421 5.100000 +319 1612 5.100000 +319 1712 5.100000 +319 1725 5.100000 +319 1752 5.100000 +319 1831 5.100000 +319 1876 5.100000 +319 1972 5.100000 +319 2169 5.100000 +319 2216 5.100000 +319 2250 5.100000 +319 2284 5.100000 +319 2533 5.100000 +319 2805 5.100000 +319 2818 5.100000 +319 2863 5.100000 +319 2899 5.100000 +319 2904 5.100000 +319 2953 5.100000 +319 3041 5.100000 +319 3057 5.100000 +319 3095 5.100000 +319 3099 5.100000 +319 3191 5.100000 +320 23 5.100000 +320 42 5.100000 +320 48 5.100000 +320 161 5.100000 +320 167 5.100000 +320 257 5.100000 +320 274 5.100000 +320 276 5.100000 +320 338 5.100000 +320 436 5.100000 +320 495 5.100000 +320 539 5.100000 +320 557 5.100000 +320 590 5.100000 +320 591 5.100000 +320 601 5.100000 +320 615 5.100000 +320 629 5.100000 +320 632 5.100000 +320 698 5.100000 +320 717 5.100000 +320 731 5.100000 +320 748 5.100000 +320 774 5.100000 +320 777 5.100000 +320 887 5.100000 +320 903 5.100000 +320 908 5.100000 +320 939 5.100000 +320 945 5.100000 +320 999 5.100000 +320 1027 5.100000 +320 1105 5.100000 +320 1153 5.100000 +320 1262 5.100000 +320 1370 5.100000 +320 1404 5.100000 +320 1432 5.100000 +320 1435 5.100000 +320 1471 5.100000 +320 1493 5.100000 +320 1561 5.100000 +320 1563 5.100000 +320 1579 5.100000 +320 1626 5.100000 +320 1688 5.100000 +320 1691 5.100000 +320 1818 5.100000 +320 1823 5.100000 +320 1829 5.100000 +320 1910 5.100000 +320 1970 5.100000 +320 1973 5.100000 +320 2012 5.100000 +320 2021 5.100000 +320 2035 5.100000 +320 2066 5.100000 +320 2101 5.100000 +320 2197 5.100000 +320 2202 5.100000 +320 2211 5.100000 +320 2266 5.100000 +320 2289 5.100000 +320 2313 5.100000 +320 2353 5.100000 +320 2383 5.100000 +320 2455 5.100000 +320 2479 5.100000 +320 2568 5.100000 +320 2576 5.100000 +320 2616 5.100000 +320 2695 5.100000 +320 2766 5.100000 +320 3065 5.100000 +320 3157 5.100000 +320 3184 5.100000 +321 1 5.100000 +321 96 5.100000 +321 132 5.100000 +321 173 5.100000 +321 232 5.100000 +321 296 5.100000 +321 316 5.100000 +321 403 5.100000 +321 409 5.100000 +321 511 5.100000 +321 527 5.100000 +321 531 5.100000 +321 535 5.100000 +321 652 5.100000 +321 678 5.100000 +321 717 5.100000 +321 733 5.100000 +321 969 5.100000 +321 1085 5.100000 +321 1116 5.100000 +321 1188 5.100000 +321 1268 5.100000 +321 1271 5.100000 +321 1306 5.100000 +321 1338 5.100000 +321 1359 5.100000 +321 1402 5.100000 +321 1412 5.100000 +321 1415 5.100000 +321 1428 5.100000 +321 1497 5.100000 +321 1597 5.100000 +321 1648 5.100000 +321 1712 5.100000 +321 1753 5.100000 +321 1756 5.100000 +321 1757 5.100000 +321 1808 5.100000 +321 1821 5.100000 +321 1827 5.100000 +321 1845 5.100000 +321 1892 5.100000 +321 1953 5.100000 +321 2022 5.100000 +321 2147 5.100000 +321 2184 5.100000 +321 2298 5.100000 +321 2331 5.100000 +321 2356 5.100000 +321 2367 5.100000 +321 2370 5.100000 +321 2379 5.100000 +321 2495 5.100000 +321 2517 5.100000 +321 2538 5.100000 +321 2580 5.100000 +321 2734 5.100000 +321 2791 5.100000 +321 2868 5.100000 +321 2996 5.100000 +321 3012 5.100000 +321 3032 5.100000 +321 3050 5.100000 +321 3118 5.100000 +321 3176 5.100000 +321 3181 5.100000 +322 79 5.100000 +322 187 5.100000 +322 239 5.100000 +322 247 5.100000 +322 282 5.100000 +322 356 5.100000 +322 390 5.100000 +322 527 5.100000 +322 598 5.100000 +322 699 5.100000 +322 759 5.100000 +322 777 5.100000 +322 812 5.100000 +322 813 5.100000 +322 861 5.100000 +322 988 5.100000 +322 996 5.100000 +322 1041 5.100000 +322 1058 5.100000 +322 1069 5.100000 +322 1099 5.100000 +322 1166 5.100000 +322 1261 5.100000 +322 1276 5.100000 +322 1305 5.100000 +322 1325 5.100000 +322 1329 5.100000 +322 1420 5.100000 +322 1500 5.100000 +322 1536 5.100000 +322 1579 5.100000 +322 1587 5.100000 +322 1645 5.100000 +322 1690 5.100000 +322 1736 5.100000 +322 1817 5.100000 +322 1861 5.100000 +322 1958 5.100000 +322 1999 5.100000 +322 2032 5.100000 +322 2122 5.100000 +322 2160 5.100000 +322 2202 5.100000 +322 2242 5.100000 +322 2262 5.100000 +322 2334 5.100000 +322 2553 5.100000 +322 2702 5.100000 +322 2759 5.100000 +322 2801 5.100000 +322 2809 5.100000 +322 2883 5.100000 +322 2933 5.100000 +322 2937 5.100000 +322 3066 5.100000 +322 3079 5.100000 +322 3104 5.100000 +323 33 5.100000 +323 50 5.100000 +323 78 5.100000 +323 117 5.100000 +323 119 5.100000 +323 260 5.100000 +323 282 5.100000 +323 335 5.100000 +323 395 5.100000 +323 498 5.100000 +323 516 5.100000 +323 540 5.100000 +323 548 5.100000 +323 630 5.100000 +323 752 5.100000 +323 758 5.100000 +323 776 5.100000 +323 789 5.100000 +323 830 5.100000 +323 875 5.100000 +323 966 5.100000 +323 972 5.100000 +323 1070 5.100000 +323 1090 5.100000 +323 1094 5.100000 +323 1118 5.100000 +323 1131 5.100000 +323 1138 5.100000 +323 1146 5.100000 +323 1193 5.100000 +323 1200 5.100000 +323 1242 5.100000 +323 1286 5.100000 +323 1612 5.100000 +323 1640 5.100000 +323 1703 5.100000 +323 1818 5.100000 +323 1845 5.100000 +323 1868 5.100000 +323 1897 5.100000 +323 1931 5.100000 +323 1969 5.100000 +323 1972 5.100000 +323 1985 5.100000 +323 2064 5.100000 +323 2139 5.100000 +323 2200 5.100000 +323 2221 5.100000 +323 2321 5.100000 +323 2413 5.100000 +323 2472 5.100000 +323 2570 5.100000 +323 2635 5.100000 +323 2660 5.100000 +323 2745 5.100000 +323 2790 5.100000 +323 2791 5.100000 +323 2972 5.100000 +323 3085 5.100000 +324 135 5.100000 +324 187 5.100000 +324 208 5.100000 +324 216 5.100000 +324 314 5.100000 +324 373 5.100000 +324 409 5.100000 +324 535 5.100000 +324 577 5.100000 +324 706 5.100000 +324 733 5.100000 +324 794 5.100000 +324 922 5.100000 +324 929 5.100000 +324 1083 5.100000 +324 1122 5.100000 +324 1133 5.100000 +324 1247 5.100000 +324 1259 5.100000 +324 1329 5.100000 +324 1333 5.100000 +324 1348 5.100000 +324 1413 5.100000 +324 1431 5.100000 +324 1583 5.100000 +324 1625 5.100000 +324 1687 5.100000 +324 1816 5.100000 +324 1847 5.100000 +324 1939 5.100000 +324 2212 5.100000 +324 2241 5.100000 +324 2275 5.100000 +324 2279 5.100000 +324 2284 5.100000 +324 2299 5.100000 +324 2368 5.100000 +324 2392 5.100000 +324 2421 5.100000 +324 2461 5.100000 +324 2493 5.100000 +324 2600 5.100000 +324 2748 5.100000 +324 2752 5.100000 +324 2786 5.100000 +324 2833 5.100000 +324 2857 5.100000 +324 2890 5.100000 +324 2950 5.100000 +324 2966 5.100000 +324 3002 5.100000 +324 3120 5.100000 +324 3131 5.100000 +324 3168 5.100000 +325 22 5.100000 +325 120 5.100000 +325 140 5.100000 +325 227 5.100000 +325 237 5.100000 +325 243 5.100000 +325 346 5.100000 +325 609 5.100000 +325 682 5.100000 +325 740 5.100000 +325 762 5.100000 +325 768 5.100000 +325 853 5.100000 +325 931 5.100000 +325 967 5.100000 +325 1034 5.100000 +325 1038 5.100000 +325 1139 5.100000 +325 1156 5.100000 +325 1226 5.100000 +325 1230 5.100000 +325 1286 5.100000 +325 1298 5.100000 +325 1345 5.100000 +325 1413 5.100000 +325 1556 5.100000 +325 1577 5.100000 +325 1711 5.100000 +325 1721 5.100000 +325 1779 5.100000 +325 1786 5.100000 +325 1809 5.100000 +325 1814 5.100000 +325 2036 5.100000 +325 2058 5.100000 +325 2067 5.100000 +325 2088 5.100000 +325 2110 5.100000 +325 2349 5.100000 +325 2360 5.100000 +325 2425 5.100000 +325 2492 5.100000 +325 2625 5.100000 +325 2691 5.100000 +325 2775 5.100000 +325 2794 5.100000 +325 2872 5.100000 +325 2918 5.100000 +325 2963 5.100000 +325 3039 5.100000 +325 3054 5.100000 +325 3065 5.100000 +325 3105 5.100000 +325 3141 5.100000 +325 3156 5.100000 +325 3166 5.100000 +325 3193 5.100000 +326 9 5.100000 +326 91 5.100000 +326 153 5.100000 +326 208 5.100000 +326 271 5.100000 +326 301 5.100000 +326 308 5.100000 +326 338 5.100000 +326 410 5.100000 +326 421 5.100000 +326 510 5.100000 +326 531 5.100000 +326 536 5.100000 +326 538 5.100000 +326 555 5.100000 +326 592 5.100000 +326 609 5.100000 +326 636 5.100000 +326 638 5.100000 +326 647 5.100000 +326 714 5.100000 +326 716 5.100000 +326 818 5.100000 +326 823 5.100000 +326 837 5.100000 +326 881 5.100000 +326 934 5.100000 +326 956 5.100000 +326 978 5.100000 +326 1000 5.100000 +326 1008 5.100000 +326 1016 5.100000 +326 1102 5.100000 +326 1184 5.100000 +326 1259 5.100000 +326 1406 5.100000 +326 1413 5.100000 +326 1430 5.100000 +326 1458 5.100000 +326 1483 5.100000 +326 1486 5.100000 +326 1537 5.100000 +326 1558 5.100000 +326 1664 5.100000 +326 1766 5.100000 +326 1825 5.100000 +326 1904 5.100000 +326 1907 5.100000 +326 2095 5.100000 +326 2121 5.100000 +326 2127 5.100000 +326 2189 5.100000 +326 2228 5.100000 +326 2244 5.100000 +326 2369 5.100000 +326 2545 5.100000 +326 2633 5.100000 +326 2640 5.100000 +326 2668 5.100000 +326 2719 5.100000 +326 2837 5.100000 +326 2890 5.100000 +326 2906 5.100000 +326 2962 5.100000 +326 2966 5.100000 +326 2969 5.100000 +326 2973 5.100000 +326 3014 5.100000 +326 3112 5.100000 +326 3156 5.100000 +326 3173 5.100000 +326 3187 5.100000 +327 9 5.100000 +327 17 5.100000 +327 29 5.100000 +327 85 5.100000 +327 113 5.100000 +327 230 5.100000 +327 259 5.100000 +327 336 5.100000 +327 355 5.100000 +327 437 5.100000 +327 581 5.100000 +327 601 5.100000 +327 602 5.100000 +327 633 5.100000 +327 684 5.100000 +327 779 5.100000 +327 819 5.100000 +327 823 5.100000 +327 825 5.100000 +327 877 5.100000 +327 943 5.100000 +327 947 5.100000 +327 977 5.100000 +327 1001 5.100000 +327 1007 5.100000 +327 1025 5.100000 +327 1036 5.100000 +327 1061 5.100000 +327 1072 5.100000 +327 1176 5.100000 +327 1181 5.100000 +327 1255 5.100000 +327 1334 5.100000 +327 1376 5.100000 +327 1395 5.100000 +327 1400 5.100000 +327 1495 5.100000 +327 1499 5.100000 +327 1506 5.100000 +327 1684 5.100000 +327 1708 5.100000 +327 1730 5.100000 +327 1836 5.100000 +327 1970 5.100000 +327 2034 5.100000 +327 2064 5.100000 +327 2106 5.100000 +327 2243 5.100000 +327 2307 5.100000 +327 2322 5.100000 +327 2348 5.100000 +327 2419 5.100000 +327 2513 5.100000 +327 2650 5.100000 +327 2659 5.100000 +327 2663 5.100000 +327 2673 5.100000 +327 2675 5.100000 +327 2831 5.100000 +327 2833 5.100000 +327 2841 5.100000 +327 2927 5.100000 +327 2964 5.100000 +327 3019 5.100000 +327 3025 5.100000 +327 3042 5.100000 +327 3051 5.100000 +327 3056 5.100000 +327 3113 5.100000 +327 3163 5.100000 +328 53 5.100000 +328 61 5.100000 +328 63 5.100000 +328 155 5.100000 +328 167 5.100000 +328 198 5.100000 +328 207 5.100000 +328 214 5.100000 +328 242 5.100000 +328 301 5.100000 +328 319 5.100000 +328 389 5.100000 +328 420 5.100000 +328 442 5.100000 +328 500 5.100000 +328 527 5.100000 +328 554 5.100000 +328 559 5.100000 +328 575 5.100000 +328 613 5.100000 +328 620 5.100000 +328 729 5.100000 +328 763 5.100000 +328 777 5.100000 +328 891 5.100000 +328 967 5.100000 +328 969 5.100000 +328 978 5.100000 +328 1003 5.100000 +328 1026 5.100000 +328 1140 5.100000 +328 1165 5.100000 +328 1321 5.100000 +328 1359 5.100000 +328 1473 5.100000 +328 1612 5.100000 +328 1761 5.100000 +328 1841 5.100000 +328 1901 5.100000 +328 2043 5.100000 +328 2056 5.100000 +328 2099 5.100000 +328 2153 5.100000 +328 2211 5.100000 +328 2294 5.100000 +328 2328 5.100000 +328 2351 5.100000 +328 2415 5.100000 +328 2454 5.100000 +328 2493 5.100000 +328 2538 5.100000 +328 2555 5.100000 +328 2557 5.100000 +328 2699 5.100000 +328 2769 5.100000 +328 2866 5.100000 +328 2914 5.100000 +328 2924 5.100000 +328 2976 5.100000 +328 3082 5.100000 +328 3111 5.100000 +328 3124 5.100000 +328 3171 5.100000 +329 79 5.100000 +329 96 5.100000 +329 99 5.100000 +329 114 5.100000 +329 140 5.100000 +329 191 5.100000 +329 278 5.100000 +329 294 5.100000 +329 392 5.100000 +329 423 5.100000 +329 605 5.100000 +329 618 5.100000 +329 655 5.100000 +329 724 5.100000 +329 752 5.100000 +329 758 5.100000 +329 799 5.100000 +329 832 5.100000 +329 849 5.100000 +329 863 5.100000 +329 960 5.100000 +329 1118 5.100000 +329 1135 5.100000 +329 1168 5.100000 +329 1182 5.100000 +329 1202 5.100000 +329 1206 5.100000 +329 1229 5.100000 +329 1231 5.100000 +329 1245 5.100000 +329 1267 5.100000 +329 1269 5.100000 +329 1289 5.100000 +329 1426 5.100000 +329 1439 5.100000 +329 1487 5.100000 +329 1596 5.100000 +329 1661 5.100000 +329 1721 5.100000 +329 1731 5.100000 +329 1837 5.100000 +329 1847 5.100000 +329 1888 5.100000 +329 1904 5.100000 +329 2055 5.100000 +329 2066 5.100000 +329 2073 5.100000 +329 2197 5.100000 +329 2199 5.100000 +329 2205 5.100000 +329 2240 5.100000 +329 2288 5.100000 +329 2386 5.100000 +329 2390 5.100000 +329 2452 5.100000 +329 2507 5.100000 +329 2533 5.100000 +329 2616 5.100000 +329 2788 5.100000 +329 2854 5.100000 +329 2929 5.100000 +329 2993 5.100000 +330 90 5.100000 +330 108 5.100000 +330 173 5.100000 +330 192 5.100000 +330 197 5.100000 +330 208 5.100000 +330 262 5.100000 +330 286 5.100000 +330 335 5.100000 +330 525 5.100000 +330 715 5.100000 +330 742 5.100000 +330 781 5.100000 +330 830 5.100000 +330 926 5.100000 +330 1026 5.100000 +330 1074 5.100000 +330 1107 5.100000 +330 1144 5.100000 +330 1289 5.100000 +330 1310 5.100000 +330 1316 5.100000 +330 1387 5.100000 +330 1407 5.100000 +330 1455 5.100000 +330 1490 5.100000 +330 1506 5.100000 +330 1563 5.100000 +330 1598 5.100000 +330 1637 5.100000 +330 1642 5.100000 +330 1675 5.100000 +330 1720 5.100000 +330 1771 5.100000 +330 1784 5.100000 +330 1803 5.100000 +330 1816 5.100000 +330 1829 5.100000 +330 1852 5.100000 +330 1902 5.100000 +330 1915 5.100000 +330 1999 5.100000 +330 2044 5.100000 +330 2115 5.100000 +330 2207 5.100000 +330 2213 5.100000 +330 2229 5.100000 +330 2273 5.100000 +330 2294 5.100000 +330 2371 5.100000 +330 2405 5.100000 +330 2477 5.100000 +330 2485 5.100000 +330 2582 5.100000 +330 2592 5.100000 +330 2657 5.100000 +330 2658 5.100000 +330 2687 5.100000 +330 2777 5.100000 +330 2807 5.100000 +330 2823 5.100000 +330 2956 5.100000 +330 2993 5.100000 +330 2999 5.100000 +330 3047 5.100000 +330 3120 5.100000 +330 3126 5.100000 +330 3135 5.100000 +330 3184 5.100000 +330 3194 5.100000 +331 39 5.100000 +331 274 5.100000 +331 304 5.100000 +331 315 5.100000 +331 396 5.100000 +331 520 5.100000 +331 614 5.100000 +331 726 5.100000 +331 811 5.100000 +331 812 5.100000 +331 922 5.100000 +331 969 5.100000 +331 974 5.100000 +331 1009 5.100000 +331 1038 5.100000 +331 1105 5.100000 +331 1151 5.100000 +331 1176 5.100000 +331 1223 5.100000 +331 1255 5.100000 +331 1297 5.100000 +331 1302 5.100000 +331 1338 5.100000 +331 1357 5.100000 +331 1407 5.100000 +331 1419 5.100000 +331 1426 5.100000 +331 1512 5.100000 +331 1538 5.100000 +331 1570 5.100000 +331 1589 5.100000 +331 1750 5.100000 +331 1873 5.100000 +331 1911 5.100000 +331 1949 5.100000 +331 1968 5.100000 +331 1999 5.100000 +331 2007 5.100000 +331 2075 5.100000 +331 2084 5.100000 +331 2170 5.100000 +331 2259 5.100000 +331 2370 5.100000 +331 2432 5.100000 +331 2486 5.100000 +331 2538 5.100000 +331 2680 5.100000 +331 2752 5.100000 +331 2774 5.100000 +331 2791 5.100000 +331 2797 5.100000 +331 2798 5.100000 +331 2800 5.100000 +331 2808 5.100000 +331 2894 5.100000 +331 2913 5.100000 +331 2974 5.100000 +331 2979 5.100000 +331 3094 5.100000 +331 3101 5.100000 +331 3106 5.100000 +331 3186 5.100000 +332 44 5.100000 +332 56 5.100000 +332 72 5.100000 +332 193 5.100000 +332 325 5.100000 +332 330 5.100000 +332 582 5.100000 +332 696 5.100000 +332 699 5.100000 +332 727 5.100000 +332 734 5.100000 +332 755 5.100000 +332 780 5.100000 +332 884 5.100000 +332 929 5.100000 +332 1097 5.100000 +332 1156 5.100000 +332 1285 5.100000 +332 1286 5.100000 +332 1342 5.100000 +332 1348 5.100000 +332 1359 5.100000 +332 1368 5.100000 +332 1371 5.100000 +332 1555 5.100000 +332 1594 5.100000 +332 1671 5.100000 +332 1882 5.100000 +332 1933 5.100000 +332 2113 5.100000 +332 2131 5.100000 +332 2175 5.100000 +332 2183 5.100000 +332 2194 5.100000 +332 2406 5.100000 +332 2496 5.100000 +332 2556 5.100000 +332 2695 5.100000 +332 2724 5.100000 +332 2760 5.100000 +332 2789 5.100000 +332 2899 5.100000 +332 2996 5.100000 +332 3061 5.100000 +332 3070 5.100000 +332 3171 5.100000 +333 57 5.100000 +333 106 5.100000 +333 157 5.100000 +333 207 5.100000 +333 216 5.100000 +333 220 5.100000 +333 298 5.100000 +333 299 5.100000 +333 390 5.100000 +333 456 5.100000 +333 481 5.100000 +333 549 5.100000 +333 553 5.100000 +333 592 5.100000 +333 653 5.100000 +333 672 5.100000 +333 704 5.100000 +333 735 5.100000 +333 743 5.100000 +333 769 5.100000 +333 847 5.100000 +333 866 5.100000 +333 968 5.100000 +333 1137 5.100000 +333 1228 5.100000 +333 1385 5.100000 +333 1413 5.100000 +333 1414 5.100000 +333 1503 5.100000 +333 1634 5.100000 +333 1677 5.100000 +333 1781 5.100000 +333 1825 5.100000 +333 1833 5.100000 +333 1865 5.100000 +333 2263 5.100000 +333 2274 5.100000 +333 2284 5.100000 +333 2293 5.100000 +333 2315 5.100000 +333 2418 5.100000 +333 2422 5.100000 +333 2484 5.100000 +333 2535 5.100000 +333 2563 5.100000 +333 2577 5.100000 +333 2583 5.100000 +333 2647 5.100000 +333 2739 5.100000 +333 2750 5.100000 +333 2753 5.100000 +333 2835 5.100000 +333 2847 5.100000 +333 2956 5.100000 +333 2970 5.100000 +333 3032 5.100000 +333 3055 5.100000 +333 3087 5.100000 +333 3096 5.100000 +333 3151 5.100000 +333 3199 5.100000 +334 90 5.100000 +334 129 5.100000 +334 148 5.100000 +334 185 5.100000 +334 220 5.100000 +334 224 5.100000 +334 279 5.100000 +334 319 5.100000 +334 341 5.100000 +334 347 5.100000 +334 528 5.100000 +334 625 5.100000 +334 713 5.100000 +334 756 5.100000 +334 858 5.100000 +334 868 5.100000 +334 979 5.100000 +334 994 5.100000 +334 1072 5.100000 +334 1257 5.100000 +334 1258 5.100000 +334 1270 5.100000 +334 1289 5.100000 +334 1380 5.100000 +334 1445 5.100000 +334 1526 5.100000 +334 1546 5.100000 +334 1563 5.100000 +334 1693 5.100000 +334 1747 5.100000 +334 1843 5.100000 +334 1845 5.100000 +334 1855 5.100000 +334 1888 5.100000 +334 1898 5.100000 +334 2052 5.100000 +334 2058 5.100000 +334 2066 5.100000 +334 2221 5.100000 +334 2223 5.100000 +334 2268 5.100000 +334 2416 5.100000 +334 2504 5.100000 +334 2540 5.100000 +334 2650 5.100000 +334 2715 5.100000 +334 2752 5.100000 +334 2780 5.100000 +334 2845 5.100000 +334 2856 5.100000 +334 2925 5.100000 +334 3010 5.100000 +334 3096 5.100000 +334 3114 5.100000 +334 3116 5.100000 +334 3200 5.100000 +335 72 5.100000 +335 160 5.100000 +335 205 5.100000 +335 261 5.100000 +335 305 5.100000 +335 344 5.100000 +335 350 5.100000 +335 376 5.100000 +335 500 5.100000 +335 669 5.100000 +335 705 5.100000 +335 807 5.100000 +335 824 5.100000 +335 829 5.100000 +335 881 5.100000 +335 932 5.100000 +335 945 5.100000 +335 1023 5.100000 +335 1059 5.100000 +335 1110 5.100000 +335 1151 5.100000 +335 1155 5.100000 +335 1199 5.100000 +335 1252 5.100000 +335 1258 5.100000 +335 1261 5.100000 +335 1269 5.100000 +335 1275 5.100000 +335 1286 5.100000 +335 1347 5.100000 +335 1379 5.100000 +335 1405 5.100000 +335 1458 5.100000 +335 1504 5.100000 +335 1606 5.100000 +335 1681 5.100000 +335 1747 5.100000 +335 1794 5.100000 +335 1815 5.100000 +335 1842 5.100000 +335 1863 5.100000 +335 1869 5.100000 +335 1877 5.100000 +335 1965 5.100000 +335 1988 5.100000 +335 2059 5.100000 +335 2093 5.100000 +335 2148 5.100000 +335 2257 5.100000 +335 2279 5.100000 +335 2291 5.100000 +335 2382 5.100000 +335 2435 5.100000 +335 2491 5.100000 +335 2511 5.100000 +335 2526 5.100000 +335 2527 5.100000 +335 2845 5.100000 +335 2866 5.100000 +335 2928 5.100000 +335 2955 5.100000 +335 3056 5.100000 +335 3076 5.100000 +335 3167 5.100000 +335 3178 5.100000 +336 26 5.100000 +336 81 5.100000 +336 174 5.100000 +336 177 5.100000 +336 182 5.100000 +336 572 5.100000 +336 649 5.100000 +336 735 5.100000 +336 801 5.100000 +336 987 5.100000 +336 1079 5.100000 +336 1122 5.100000 +336 1159 5.100000 +336 1167 5.100000 +336 1192 5.100000 +336 1263 5.100000 +336 1288 5.100000 +336 1336 5.100000 +336 1342 5.100000 +336 1363 5.100000 +336 1401 5.100000 +336 1504 5.100000 +336 1526 5.100000 +336 1557 5.100000 +336 1573 5.100000 +336 1581 5.100000 +336 1598 5.100000 +336 1641 5.100000 +336 1664 5.100000 +336 1689 5.100000 +336 1710 5.100000 +336 1807 5.100000 +336 1815 5.100000 +336 1882 5.100000 +336 1989 5.100000 +336 2033 5.100000 +336 2081 5.100000 +336 2084 5.100000 +336 2217 5.100000 +336 2234 5.100000 +336 2300 5.100000 +336 2350 5.100000 +336 2365 5.100000 +336 2379 5.100000 +336 2413 5.100000 +336 2453 5.100000 +336 2490 5.100000 +336 2539 5.100000 +336 2756 5.100000 +336 2766 5.100000 +336 2800 5.100000 +336 2933 5.100000 +336 2957 5.100000 +336 2971 5.100000 +336 3006 5.100000 +336 3042 5.100000 +336 3096 5.100000 +336 3165 5.100000 +336 3190 5.100000 +337 126 5.100000 +337 146 5.100000 +337 186 5.100000 +337 280 5.100000 +337 322 5.100000 +337 331 5.100000 +337 365 5.100000 +337 383 5.100000 +337 443 5.100000 +337 503 5.100000 +337 985 5.100000 +337 990 5.100000 +337 1086 5.100000 +337 1120 5.100000 +337 1135 5.100000 +337 1158 5.100000 +337 1176 5.100000 +337 1375 5.100000 +337 1376 5.100000 +337 1406 5.100000 +337 1457 5.100000 +337 1516 5.100000 +337 1519 5.100000 +337 1567 5.100000 +337 1601 5.100000 +337 1643 5.100000 +337 1700 5.100000 +337 1798 5.100000 +337 1821 5.100000 +337 1834 5.100000 +337 1861 5.100000 +337 1871 5.100000 +337 1890 5.100000 +337 1898 5.100000 +337 1902 5.100000 +337 1932 5.100000 +337 1977 5.100000 +337 1992 5.100000 +337 2049 5.100000 +337 2159 5.100000 +337 2183 5.100000 +337 2244 5.100000 +337 2307 5.100000 +337 2372 5.100000 +337 2429 5.100000 +337 2464 5.100000 +337 2478 5.100000 +337 2485 5.100000 +337 2512 5.100000 +337 2809 5.100000 +337 2813 5.100000 +337 2868 5.100000 +337 2872 5.100000 +337 2914 5.100000 +337 2923 5.100000 +337 2926 5.100000 +337 2941 5.100000 +337 2981 5.100000 +337 2992 5.100000 +337 3025 5.100000 +337 3035 5.100000 +337 3042 5.100000 +337 3068 5.100000 +337 3151 5.100000 +337 3157 5.100000 +337 3178 5.100000 +338 19 5.100000 +338 38 5.100000 +338 86 5.100000 +338 148 5.100000 +338 320 5.100000 +338 389 5.100000 +338 410 5.100000 +338 433 5.100000 +338 440 5.100000 +338 546 5.100000 +338 584 5.100000 +338 601 5.100000 +338 654 5.100000 +338 700 5.100000 +338 758 5.100000 +338 783 5.100000 +338 833 5.100000 +338 905 5.100000 +338 950 5.100000 +338 974 5.100000 +338 1000 5.100000 +338 1059 5.100000 +338 1065 5.100000 +338 1077 5.100000 +338 1231 5.100000 +338 1310 5.100000 +338 1327 5.100000 +338 1365 5.100000 +338 1393 5.100000 +338 1481 5.100000 +338 1490 5.100000 +338 1527 5.100000 +338 1607 5.100000 +338 1615 5.100000 +338 1652 5.100000 +338 1674 5.100000 +338 1749 5.100000 +338 1860 5.100000 +338 2058 5.100000 +338 2068 5.100000 +338 2082 5.100000 +338 2110 5.100000 +338 2113 5.100000 +338 2127 5.100000 +338 2129 5.100000 +338 2136 5.100000 +338 2210 5.100000 +338 2217 5.100000 +338 2260 5.100000 +338 2329 5.100000 +338 2330 5.100000 +338 2459 5.100000 +338 2509 5.100000 +338 2537 5.100000 +338 2603 5.100000 +338 2631 5.100000 +338 2684 5.100000 +338 2698 5.100000 +338 2746 5.100000 +338 2769 5.100000 +338 2774 5.100000 +338 2813 5.100000 +338 2889 5.100000 +338 2892 5.100000 +338 2901 5.100000 +338 2933 5.100000 +338 2968 5.100000 +338 2970 5.100000 +338 2982 5.100000 +338 3017 5.100000 +338 3056 5.100000 +338 3079 5.100000 +338 3082 5.100000 +338 3109 5.100000 +338 3121 5.100000 +338 3191 5.100000 +339 265 5.100000 +339 283 5.100000 +339 352 5.100000 +339 357 5.100000 +339 372 5.100000 +339 384 5.100000 +339 445 5.100000 +339 464 5.100000 +339 526 5.100000 +339 575 5.100000 +339 705 5.100000 +339 738 5.100000 +339 759 5.100000 +339 839 5.100000 +339 841 5.100000 +339 986 5.100000 +339 991 5.100000 +339 1154 5.100000 +339 1202 5.100000 +339 1273 5.100000 +339 1294 5.100000 +339 1321 5.100000 +339 1394 5.100000 +339 1449 5.100000 +339 1481 5.100000 +339 1490 5.100000 +339 1594 5.100000 +339 1697 5.100000 +339 1706 5.100000 +339 1740 5.100000 +339 1783 5.100000 +339 1880 5.100000 +339 1933 5.100000 +339 1957 5.100000 +339 1983 5.100000 +339 1996 5.100000 +339 2052 5.100000 +339 2095 5.100000 +339 2105 5.100000 +339 2109 5.100000 +339 2139 5.100000 +339 2219 5.100000 +339 2221 5.100000 +339 2296 5.100000 +339 2370 5.100000 +339 2415 5.100000 +339 2449 5.100000 +339 2466 5.100000 +339 2495 5.100000 +339 2508 5.100000 +339 2576 5.100000 +339 2627 5.100000 +339 2670 5.100000 +339 2823 5.100000 +339 2846 5.100000 +339 2982 5.100000 +339 3036 5.100000 +339 3086 5.100000 +339 3125 5.100000 +339 3130 5.100000 +340 6 5.100000 +340 23 5.100000 +340 50 5.100000 +340 80 5.100000 +340 95 5.100000 +340 224 5.100000 +340 340 5.100000 +340 390 5.100000 +340 399 5.100000 +340 559 5.100000 +340 666 5.100000 +340 733 5.100000 +340 745 5.100000 +340 751 5.100000 +340 787 5.100000 +340 798 5.100000 +340 899 5.100000 +340 944 5.100000 +340 1016 5.100000 +340 1070 5.100000 +340 1133 5.100000 +340 1167 5.100000 +340 1181 5.100000 +340 1182 5.100000 +340 1208 5.100000 +340 1227 5.100000 +340 1316 5.100000 +340 1381 5.100000 +340 1398 5.100000 +340 1457 5.100000 +340 1494 5.100000 +340 1511 5.100000 +340 1543 5.100000 +340 1576 5.100000 +340 1685 5.100000 +340 1689 5.100000 +340 1721 5.100000 +340 1765 5.100000 +340 1816 5.100000 +340 1932 5.100000 +340 1961 5.100000 +340 1966 5.100000 +340 1978 5.100000 +340 2043 5.100000 +340 2092 5.100000 +340 2182 5.100000 +340 2230 5.100000 +340 2247 5.100000 +340 2248 5.100000 +340 2493 5.100000 +340 2552 5.100000 +340 2659 5.100000 +340 2703 5.100000 +340 2707 5.100000 +340 2715 5.100000 +340 2796 5.100000 +340 2850 5.100000 +340 2887 5.100000 +340 2901 5.100000 +340 2909 5.100000 +340 2930 5.100000 +340 2957 5.100000 +340 3086 5.100000 +340 3122 5.100000 +340 3143 5.100000 +341 12 5.100000 +341 115 5.100000 +341 135 5.100000 +341 200 5.100000 +341 203 5.100000 +341 216 5.100000 +341 232 5.100000 +341 267 5.100000 +341 407 5.100000 +341 416 5.100000 +341 534 5.100000 +341 548 5.100000 +341 554 5.100000 +341 706 5.100000 +341 726 5.100000 +341 867 5.100000 +341 893 5.100000 +341 902 5.100000 +341 919 5.100000 +341 926 5.100000 +341 1088 5.100000 +341 1121 5.100000 +341 1226 5.100000 +341 1285 5.100000 +341 1306 5.100000 +341 1319 5.100000 +341 1323 5.100000 +341 1365 5.100000 +341 1399 5.100000 +341 1407 5.100000 +341 1521 5.100000 +341 1536 5.100000 +341 1569 5.100000 +341 1697 5.100000 +341 1724 5.100000 +341 1756 5.100000 +341 1901 5.100000 +341 2020 5.100000 +341 2043 5.100000 +341 2224 5.100000 +341 2267 5.100000 +341 2349 5.100000 +341 2368 5.100000 +341 2380 5.100000 +341 2558 5.100000 +341 2634 5.100000 +341 2643 5.100000 +341 2644 5.100000 +341 2649 5.100000 +341 2655 5.100000 +341 2690 5.100000 +341 2701 5.100000 +341 2736 5.100000 +341 2819 5.100000 +341 2823 5.100000 +341 2875 5.100000 +341 2945 5.100000 +341 2979 5.100000 +341 3073 5.100000 +341 3075 5.100000 +341 3142 5.100000 +341 3150 5.100000 +342 70 5.100000 +342 117 5.100000 +342 139 5.100000 +342 161 5.100000 +342 169 5.100000 +342 184 5.100000 +342 238 5.100000 +342 290 5.100000 +342 478 5.100000 +342 493 5.100000 +342 495 5.100000 +342 563 5.100000 +342 680 5.100000 +342 707 5.100000 +342 733 5.100000 +342 745 5.100000 +342 748 5.100000 +342 796 5.100000 +342 812 5.100000 +342 843 5.100000 +342 949 5.100000 +342 1020 5.100000 +342 1097 5.100000 +342 1156 5.100000 +342 1173 5.100000 +342 1212 5.100000 +342 1232 5.100000 +342 1270 5.100000 +342 1475 5.100000 +342 1484 5.100000 +342 1617 5.100000 +342 1621 5.100000 +342 1641 5.100000 +342 1706 5.100000 +342 1717 5.100000 +342 1747 5.100000 +342 1763 5.100000 +342 1784 5.100000 +342 1808 5.100000 +342 1833 5.100000 +342 1912 5.100000 +342 1951 5.100000 +342 2001 5.100000 +342 2016 5.100000 +342 2080 5.100000 +342 2101 5.100000 +342 2103 5.100000 +342 2125 5.100000 +342 2188 5.100000 +342 2221 5.100000 +342 2277 5.100000 +342 2287 5.100000 +342 2368 5.100000 +342 2399 5.100000 +342 2459 5.100000 +342 2529 5.100000 +342 2561 5.100000 +342 2563 5.100000 +342 2599 5.100000 +342 2626 5.100000 +342 2648 5.100000 +342 2675 5.100000 +342 2725 5.100000 +342 2759 5.100000 +342 2845 5.100000 +342 2917 5.100000 +342 2977 5.100000 +342 3010 5.100000 +342 3040 5.100000 +342 3081 5.100000 +342 3168 5.100000 +343 1 5.100000 +343 21 5.100000 +343 153 5.100000 +343 160 5.100000 +343 305 5.100000 +343 346 5.100000 +343 348 5.100000 +343 467 5.100000 +343 503 5.100000 +343 626 5.100000 +343 716 5.100000 +343 863 5.100000 +343 998 5.100000 +343 1074 5.100000 +343 1084 5.100000 +343 1247 5.100000 +343 1308 5.100000 +343 1337 5.100000 +343 1424 5.100000 +343 1437 5.100000 +343 1459 5.100000 +343 1472 5.100000 +343 1497 5.100000 +343 1535 5.100000 +343 1567 5.100000 +343 1595 5.100000 +343 1637 5.100000 +343 1638 5.100000 +343 1724 5.100000 +343 1845 5.100000 +343 1979 5.100000 +343 2005 5.100000 +343 2038 5.100000 +343 2102 5.100000 +343 2111 5.100000 +343 2142 5.100000 +343 2147 5.100000 +343 2192 5.100000 +343 2204 5.100000 +343 2254 5.100000 +343 2268 5.100000 +343 2390 5.100000 +343 2440 5.100000 +343 2445 5.100000 +343 2523 5.100000 +343 2698 5.100000 +343 2856 5.100000 +343 2881 5.100000 +343 2888 5.100000 +343 2918 5.100000 +343 2941 5.100000 +343 2980 5.100000 +343 3116 5.100000 +343 3136 5.100000 +343 3159 5.100000 +344 2 5.100000 +344 12 5.100000 +344 97 5.100000 +344 461 5.100000 +344 487 5.100000 +344 495 5.100000 +344 514 5.100000 +344 565 5.100000 +344 577 5.100000 +344 588 5.100000 +344 665 5.100000 +344 678 5.100000 +344 699 5.100000 +344 731 5.100000 +344 741 5.100000 +344 849 5.100000 +344 897 5.100000 +344 899 5.100000 +344 983 5.100000 +344 1053 5.100000 +344 1119 5.100000 +344 1239 5.100000 +344 1245 5.100000 +344 1324 5.100000 +344 1355 5.100000 +344 1396 5.100000 +344 1471 5.100000 +344 1495 5.100000 +344 1534 5.100000 +344 1559 5.100000 +344 1566 5.100000 +344 1580 5.100000 +344 1616 5.100000 +344 1632 5.100000 +344 1654 5.100000 +344 1736 5.100000 +344 1799 5.100000 +344 1825 5.100000 +344 1833 5.100000 +344 1835 5.100000 +344 1896 5.100000 +344 1904 5.100000 +344 1971 5.100000 +344 2016 5.100000 +344 2044 5.100000 +344 2159 5.100000 +344 2169 5.100000 +344 2282 5.100000 +344 2307 5.100000 +344 2346 5.100000 +344 2493 5.100000 +344 2574 5.100000 +344 2591 5.100000 +344 2596 5.100000 +344 2623 5.100000 +344 2624 5.100000 +344 2690 5.100000 +344 2730 5.100000 +344 2769 5.100000 +344 2793 5.100000 +344 2858 5.100000 +344 2860 5.100000 +344 2877 5.100000 +344 2919 5.100000 +344 2926 5.100000 +344 2929 5.100000 +344 2976 5.100000 +344 3009 5.100000 +344 3016 5.100000 +344 3032 5.100000 +344 3085 5.100000 +344 3089 5.100000 +345 180 5.100000 +345 205 5.100000 +345 257 5.100000 +345 322 5.100000 +345 342 5.100000 +345 403 5.100000 +345 437 5.100000 +345 470 5.100000 +345 672 5.100000 +345 714 5.100000 +345 728 5.100000 +345 760 5.100000 +345 814 5.100000 +345 826 5.100000 +345 833 5.100000 +345 848 5.100000 +345 879 5.100000 +345 880 5.100000 +345 889 5.100000 +345 898 5.100000 +345 1105 5.100000 +345 1114 5.100000 +345 1128 5.100000 +345 1157 5.100000 +345 1183 5.100000 +345 1214 5.100000 +345 1263 5.100000 +345 1287 5.100000 +345 1421 5.100000 +345 1434 5.100000 +345 1489 5.100000 +345 1504 5.100000 +345 1509 5.100000 +345 1574 5.100000 +345 1675 5.100000 +345 1715 5.100000 +345 1772 5.100000 +345 1825 5.100000 +345 1842 5.100000 +345 1844 5.100000 +345 1876 5.100000 +345 1982 5.100000 +345 2137 5.100000 +345 2185 5.100000 +345 2192 5.100000 +345 2194 5.100000 +345 2315 5.100000 +345 2416 5.100000 +345 2478 5.100000 +345 2484 5.100000 +345 2528 5.100000 +345 2606 5.100000 +345 2654 5.100000 +345 2673 5.100000 +345 2797 5.100000 +345 2825 5.100000 +345 2893 5.100000 +345 2898 5.100000 +345 2903 5.100000 +345 2908 5.100000 +345 2922 5.100000 +345 2948 5.100000 +345 2973 5.100000 +345 3043 5.100000 +345 3060 5.100000 +345 3062 5.100000 +345 3082 5.100000 +345 3095 5.100000 +345 3144 5.100000 +345 3150 5.100000 +345 3162 5.100000 +345 3183 5.100000 +346 19 5.100000 +346 73 5.100000 +346 90 5.100000 +346 109 5.100000 +346 193 5.100000 +346 333 5.100000 +346 398 5.100000 +346 556 5.100000 +346 594 5.100000 +346 600 5.100000 +346 653 5.100000 +346 748 5.100000 +346 869 5.100000 +346 882 5.100000 +346 893 5.100000 +346 938 5.100000 +346 957 5.100000 +346 975 5.100000 +346 1003 5.100000 +346 1015 5.100000 +346 1059 5.100000 +346 1166 5.100000 +346 1176 5.100000 +346 1224 5.100000 +346 1307 5.100000 +346 1377 5.100000 +346 1437 5.100000 +346 1526 5.100000 +346 1572 5.100000 +346 1588 5.100000 +346 1602 5.100000 +346 1742 5.100000 +346 1758 5.100000 +346 1770 5.100000 +346 1816 5.100000 +346 1907 5.100000 +346 1925 5.100000 +346 1963 5.100000 +346 1994 5.100000 +346 2067 5.100000 +346 2161 5.100000 +346 2178 5.100000 +346 2189 5.100000 +346 2234 5.100000 +346 2258 5.100000 +346 2349 5.100000 +346 2384 5.100000 +346 2400 5.100000 +346 2497 5.100000 +346 2549 5.100000 +346 2599 5.100000 +346 2692 5.100000 +346 2720 5.100000 +346 2731 5.100000 +346 2884 5.100000 +346 2919 5.100000 +346 2954 5.100000 +346 3058 5.100000 +346 3146 5.100000 +347 47 5.100000 +347 97 5.100000 +347 218 5.100000 +347 409 5.100000 +347 448 5.100000 +347 452 5.100000 +347 486 5.100000 +347 550 5.100000 +347 571 5.100000 +347 620 5.100000 +347 797 5.100000 +347 818 5.100000 +347 865 5.100000 +347 896 5.100000 +347 908 5.100000 +347 921 5.100000 +347 924 5.100000 +347 949 5.100000 +347 1013 5.100000 +347 1025 5.100000 +347 1160 5.100000 +347 1202 5.100000 +347 1221 5.100000 +347 1254 5.100000 +347 1269 5.100000 +347 1286 5.100000 +347 1355 5.100000 +347 1363 5.100000 +347 1433 5.100000 +347 1532 5.100000 +347 1605 5.100000 +347 1617 5.100000 +347 1683 5.100000 +347 1708 5.100000 +347 1779 5.100000 +347 1868 5.100000 +347 1875 5.100000 +347 1887 5.100000 +347 1912 5.100000 +347 1952 5.100000 +347 2004 5.100000 +347 2037 5.100000 +347 2078 5.100000 +347 2090 5.100000 +347 2113 5.100000 +347 2152 5.100000 +347 2190 5.100000 +347 2202 5.100000 +347 2220 5.100000 +347 2267 5.100000 +347 2323 5.100000 +347 2351 5.100000 +347 2363 5.100000 +347 2367 5.100000 +347 2386 5.100000 +347 2443 5.100000 +347 2487 5.100000 +347 2511 5.100000 +347 2539 5.100000 +347 2591 5.100000 +347 2698 5.100000 +347 2731 5.100000 +347 2762 5.100000 +347 2786 5.100000 +347 2832 5.100000 +347 2854 5.100000 +347 2877 5.100000 +347 2931 5.100000 +347 2933 5.100000 +347 2967 5.100000 +347 3009 5.100000 +347 3026 5.100000 +347 3054 5.100000 +347 3062 5.100000 +347 3090 5.100000 +347 3131 5.100000 +348 88 5.100000 +348 92 5.100000 +348 158 5.100000 +348 266 5.100000 +348 329 5.100000 +348 360 5.100000 +348 383 5.100000 +348 386 5.100000 +348 412 5.100000 +348 437 5.100000 +348 475 5.100000 +348 478 5.100000 +348 484 5.100000 +348 560 5.100000 +348 568 5.100000 +348 584 5.100000 +348 624 5.100000 +348 735 5.100000 +348 768 5.100000 +348 862 5.100000 +348 886 5.100000 +348 969 5.100000 +348 996 5.100000 +348 1072 5.100000 +348 1076 5.100000 +348 1099 5.100000 +348 1101 5.100000 +348 1113 5.100000 +348 1128 5.100000 +348 1177 5.100000 +348 1306 5.100000 +348 1363 5.100000 +348 1494 5.100000 +348 1512 5.100000 +348 1631 5.100000 +348 1695 5.100000 +348 1708 5.100000 +348 1783 5.100000 +348 1807 5.100000 +348 1883 5.100000 +348 1936 5.100000 +348 1948 5.100000 +348 2019 5.100000 +348 2045 5.100000 +348 2113 5.100000 +348 2137 5.100000 +348 2186 5.100000 +348 2224 5.100000 +348 2281 5.100000 +348 2375 5.100000 +348 2381 5.100000 +348 2389 5.100000 +348 2412 5.100000 +348 2425 5.100000 +348 2440 5.100000 +348 2473 5.100000 +348 2529 5.100000 +348 2572 5.100000 +348 2744 5.100000 +348 2763 5.100000 +348 3019 5.100000 +348 3030 5.100000 +348 3122 5.100000 +348 3126 5.100000 +348 3142 5.100000 +348 3146 5.100000 +348 3157 5.100000 +349 15 5.100000 +349 49 5.100000 +349 83 5.100000 +349 116 5.100000 +349 160 5.100000 +349 225 5.100000 +349 282 5.100000 +349 288 5.100000 +349 325 5.100000 +349 356 5.100000 +349 417 5.100000 +349 466 5.100000 +349 488 5.100000 +349 497 5.100000 +349 622 5.100000 +349 642 5.100000 +349 715 5.100000 +349 824 5.100000 +349 827 5.100000 +349 863 5.100000 +349 898 5.100000 +349 913 5.100000 +349 1051 5.100000 +349 1177 5.100000 +349 1413 5.100000 +349 1460 5.100000 +349 1511 5.100000 +349 1626 5.100000 +349 1643 5.100000 +349 1690 5.100000 +349 1696 5.100000 +349 1882 5.100000 +349 1928 5.100000 +349 1936 5.100000 +349 1966 5.100000 +349 2090 5.100000 +349 2174 5.100000 +349 2298 5.100000 +349 2314 5.100000 +349 2336 5.100000 +349 2437 5.100000 +349 2447 5.100000 +349 2664 5.100000 +349 2670 5.100000 +349 2695 5.100000 +349 2709 5.100000 +349 2785 5.100000 +349 2810 5.100000 +349 2949 5.100000 +349 3074 5.100000 +349 3166 5.100000 +349 3196 5.100000 +349 3200 5.100000 +350 21 5.100000 +350 22 5.100000 +350 42 5.100000 +350 73 5.100000 +350 92 5.100000 +350 186 5.100000 +350 209 5.100000 +350 220 5.100000 +350 313 5.100000 +350 331 5.100000 +350 335 5.100000 +350 543 5.100000 +350 574 5.100000 +350 580 5.100000 +350 582 5.100000 +350 610 5.100000 +350 611 5.100000 +350 645 5.100000 +350 657 5.100000 +350 752 5.100000 +350 761 5.100000 +350 806 5.100000 +350 896 5.100000 +350 961 5.100000 +350 996 5.100000 +350 1101 5.100000 +350 1171 5.100000 +350 1173 5.100000 +350 1219 5.100000 +350 1287 5.100000 +350 1300 5.100000 +350 1340 5.100000 +350 1373 5.100000 +350 1438 5.100000 +350 1457 5.100000 +350 1484 5.100000 +350 1512 5.100000 +350 1640 5.100000 +350 1704 5.100000 +350 1729 5.100000 +350 1736 5.100000 +350 1795 5.100000 +350 1824 5.100000 +350 1860 5.100000 +350 1872 5.100000 +350 1899 5.100000 +350 1949 5.100000 +350 1951 5.100000 +350 2017 5.100000 +350 2074 5.100000 +350 2148 5.100000 +350 2182 5.100000 +350 2191 5.100000 +350 2346 5.100000 +350 2379 5.100000 +350 2384 5.100000 +350 2499 5.100000 +350 2541 5.100000 +350 2602 5.100000 +350 2623 5.100000 +350 2652 5.100000 +350 2686 5.100000 +350 2696 5.100000 +350 2707 5.100000 +350 2740 5.100000 +350 2752 5.100000 +350 2891 5.100000 +350 2909 5.100000 +350 2920 5.100000 +350 2923 5.100000 +350 3048 5.100000 +350 3106 5.100000 +350 3139 5.100000 +350 3165 5.100000 +350 3197 5.100000 +351 19 5.100000 +351 54 5.100000 +351 139 5.100000 +351 164 5.100000 +351 166 5.100000 +351 200 5.100000 +351 443 5.100000 +351 466 5.100000 +351 500 5.100000 +351 622 5.100000 +351 751 5.100000 +351 783 5.100000 +351 833 5.100000 +351 905 5.100000 +351 909 5.100000 +351 934 5.100000 +351 950 5.100000 +351 978 5.100000 +351 1008 5.100000 +351 1080 5.100000 +351 1161 5.100000 +351 1201 5.100000 +351 1221 5.100000 +351 1327 5.100000 +351 1386 5.100000 +351 1413 5.100000 +351 1419 5.100000 +351 1480 5.100000 +351 1492 5.100000 +351 1502 5.100000 +351 1539 5.100000 +351 1717 5.100000 +351 1735 5.100000 +351 1761 5.100000 +351 1801 5.100000 +351 1878 5.100000 +351 1947 5.100000 +351 1961 5.100000 +351 2015 5.100000 +351 2057 5.100000 +351 2076 5.100000 +351 2094 5.100000 +351 2099 5.100000 +351 2120 5.100000 +351 2210 5.100000 +351 2258 5.100000 +351 2280 5.100000 +351 2336 5.100000 +351 2344 5.100000 +351 2384 5.100000 +351 2416 5.100000 +351 2438 5.100000 +351 2474 5.100000 +351 2505 5.100000 +351 2553 5.100000 +351 2593 5.100000 +351 2636 5.100000 +351 2640 5.100000 +351 2676 5.100000 +351 2939 5.100000 +351 2941 5.100000 +351 2968 5.100000 +351 2976 5.100000 +351 2978 5.100000 +351 3086 5.100000 +351 3116 5.100000 +351 3144 5.100000 +351 3152 5.100000 +351 3158 5.100000 +352 44 5.100000 +352 134 5.100000 +352 135 5.100000 +352 151 5.100000 +352 159 5.100000 +352 187 5.100000 +352 244 5.100000 +352 285 5.100000 +352 313 5.100000 +352 328 5.100000 +352 352 5.100000 +352 367 5.100000 +352 411 5.100000 +352 445 5.100000 +352 473 5.100000 +352 491 5.100000 +352 523 5.100000 +352 575 5.100000 +352 653 5.100000 +352 699 5.100000 +352 873 5.100000 +352 924 5.100000 +352 984 5.100000 +352 1183 5.100000 +352 1319 5.100000 +352 1378 5.100000 +352 1383 5.100000 +352 1386 5.100000 +352 1455 5.100000 +352 1663 5.100000 +352 1733 5.100000 +352 1739 5.100000 +352 1770 5.100000 +352 1806 5.100000 +352 1941 5.100000 +352 2012 5.100000 +352 2064 5.100000 +352 2108 5.100000 +352 2110 5.100000 +352 2204 5.100000 +352 2295 5.100000 +352 2322 5.100000 +352 2332 5.100000 +352 2388 5.100000 +352 2399 5.100000 +352 2422 5.100000 +352 2473 5.100000 +352 2497 5.100000 +352 2633 5.100000 +352 2707 5.100000 +352 2747 5.100000 +352 2858 5.100000 +352 2962 5.100000 +352 2966 5.100000 +352 3033 5.100000 +352 3127 5.100000 +352 3130 5.100000 +352 3144 5.100000 +352 3179 5.100000 +352 3189 5.100000 +353 45 5.100000 +353 56 5.100000 +353 124 5.100000 +353 216 5.100000 +353 218 5.100000 +353 289 5.100000 +353 308 5.100000 +353 348 5.100000 +353 447 5.100000 +353 498 5.100000 +353 665 5.100000 +353 780 5.100000 +353 903 5.100000 +353 916 5.100000 +353 976 5.100000 +353 1023 5.100000 +353 1084 5.100000 +353 1096 5.100000 +353 1097 5.100000 +353 1114 5.100000 +353 1207 5.100000 +353 1226 5.100000 +353 1431 5.100000 +353 1435 5.100000 +353 1460 5.100000 +353 1499 5.100000 +353 1518 5.100000 +353 1521 5.100000 +353 1541 5.100000 +353 1546 5.100000 +353 1686 5.100000 +353 1704 5.100000 +353 1767 5.100000 +353 1773 5.100000 +353 1806 5.100000 +353 1867 5.100000 +353 1917 5.100000 +353 1945 5.100000 +353 1991 5.100000 +353 2071 5.100000 +353 2072 5.100000 +353 2264 5.100000 +353 2305 5.100000 +353 2332 5.100000 +353 2337 5.100000 +353 2458 5.100000 +353 2502 5.100000 +353 2576 5.100000 +353 2681 5.100000 +353 2829 5.100000 +353 3067 5.100000 +353 3069 5.100000 +353 3092 5.100000 +353 3124 5.100000 +353 3167 5.100000 +353 3179 5.100000 +353 3187 5.100000 +354 274 5.100000 +354 282 5.100000 +354 300 5.100000 +354 352 5.100000 +354 456 5.100000 +354 488 5.100000 +354 523 5.100000 +354 554 5.100000 +354 569 5.100000 +354 575 5.100000 +354 592 5.100000 +354 639 5.100000 +354 642 5.100000 +354 695 5.100000 +354 782 5.100000 +354 876 5.100000 +354 1083 5.100000 +354 1203 5.100000 +354 1257 5.100000 +354 1268 5.100000 +354 1308 5.100000 +354 1315 5.100000 +354 1434 5.100000 +354 1462 5.100000 +354 1472 5.100000 +354 1496 5.100000 +354 1540 5.100000 +354 1542 5.100000 +354 1634 5.100000 +354 1729 5.100000 +354 1765 5.100000 +354 1782 5.100000 +354 1804 5.100000 +354 1909 5.100000 +354 2112 5.100000 +354 2118 5.100000 +354 2180 5.100000 +354 2191 5.100000 +354 2253 5.100000 +354 2305 5.100000 +354 2343 5.100000 +354 2474 5.100000 +354 2484 5.100000 +354 2492 5.100000 +354 2530 5.100000 +354 2556 5.100000 +354 2559 5.100000 +354 2591 5.100000 +354 2701 5.100000 +354 2751 5.100000 +354 2899 5.100000 +354 2904 5.100000 +354 2926 5.100000 +354 2942 5.100000 +354 3033 5.100000 +354 3058 5.100000 +354 3111 5.100000 +354 3141 5.100000 +354 3160 5.100000 +354 3187 5.100000 +354 3190 5.100000 +355 1 5.100000 +355 12 5.100000 +355 55 5.100000 +355 209 5.100000 +355 263 5.100000 +355 313 5.100000 +355 384 5.100000 +355 496 5.100000 +355 517 5.100000 +355 520 5.100000 +355 562 5.100000 +355 570 5.100000 +355 698 5.100000 +355 716 5.100000 +355 916 5.100000 +355 941 5.100000 +355 1029 5.100000 +355 1031 5.100000 +355 1048 5.100000 +355 1053 5.100000 +355 1058 5.100000 +355 1116 5.100000 +355 1135 5.100000 +355 1151 5.100000 +355 1167 5.100000 +355 1257 5.100000 +355 1325 5.100000 +355 1368 5.100000 +355 1479 5.100000 +355 1496 5.100000 +355 1550 5.100000 +355 1564 5.100000 +355 1607 5.100000 +355 1635 5.100000 +355 1636 5.100000 +355 1650 5.100000 +355 1656 5.100000 +355 1661 5.100000 +355 1797 5.100000 +355 1801 5.100000 +355 1858 5.100000 +355 1959 5.100000 +355 2026 5.100000 +355 2052 5.100000 +355 2087 5.100000 +355 2119 5.100000 +355 2166 5.100000 +355 2210 5.100000 +355 2215 5.100000 +355 2230 5.100000 +355 2310 5.100000 +355 2363 5.100000 +355 2371 5.100000 +355 2417 5.100000 +355 2544 5.100000 +355 2568 5.100000 +355 2586 5.100000 +355 2635 5.100000 +355 2645 5.100000 +355 2680 5.100000 +355 2733 5.100000 +355 2742 5.100000 +355 2762 5.100000 +355 2830 5.100000 +355 2874 5.100000 +355 3021 5.100000 +355 3122 5.100000 +355 3123 5.100000 +355 3130 5.100000 +356 43 5.100000 +356 75 5.100000 +356 116 5.100000 +356 258 5.100000 +356 381 5.100000 +356 467 5.100000 +356 502 5.100000 +356 518 5.100000 +356 524 5.100000 +356 616 5.100000 +356 708 5.100000 +356 778 5.100000 +356 821 5.100000 +356 935 5.100000 +356 942 5.100000 +356 1002 5.100000 +356 1004 5.100000 +356 1007 5.100000 +356 1019 5.100000 +356 1078 5.100000 +356 1145 5.100000 +356 1186 5.100000 +356 1187 5.100000 +356 1235 5.100000 +356 1263 5.100000 +356 1303 5.100000 +356 1337 5.100000 +356 1355 5.100000 +356 1399 5.100000 +356 1414 5.100000 +356 1493 5.100000 +356 1527 5.100000 +356 1646 5.100000 +356 1657 5.100000 +356 1691 5.100000 +356 1701 5.100000 +356 1863 5.100000 +356 1877 5.100000 +356 1979 5.100000 +356 2020 5.100000 +356 2131 5.100000 +356 2159 5.100000 +356 2167 5.100000 +356 2251 5.100000 +356 2289 5.100000 +356 2326 5.100000 +356 2380 5.100000 +356 2417 5.100000 +356 2505 5.100000 +356 2530 5.100000 +356 2546 5.100000 +356 2666 5.100000 +356 2737 5.100000 +356 2785 5.100000 +356 2816 5.100000 +356 2961 5.100000 +356 3029 5.100000 +356 3054 5.100000 +357 29 5.100000 +357 89 5.100000 +357 242 5.100000 +357 286 5.100000 +357 304 5.100000 +357 364 5.100000 +357 555 5.100000 +357 591 5.100000 +357 614 5.100000 +357 694 5.100000 +357 912 5.100000 +357 967 5.100000 +357 969 5.100000 +357 996 5.100000 +357 1000 5.100000 +357 1003 5.100000 +357 1203 5.100000 +357 1205 5.100000 +357 1250 5.100000 +357 1254 5.100000 +357 1306 5.100000 +357 1337 5.100000 +357 1362 5.100000 +357 1485 5.100000 +357 1510 5.100000 +357 1530 5.100000 +357 1715 5.100000 +357 1728 5.100000 +357 1772 5.100000 +357 1778 5.100000 +357 1849 5.100000 +357 1860 5.100000 +357 1929 5.100000 +357 2099 5.100000 +357 2207 5.100000 +357 2246 5.100000 +357 2306 5.100000 +357 2403 5.100000 +357 2414 5.100000 +357 2429 5.100000 +357 2443 5.100000 +357 2447 5.100000 +357 2465 5.100000 +357 2484 5.100000 +357 2500 5.100000 +357 2579 5.100000 +357 2620 5.100000 +357 2701 5.100000 +357 2713 5.100000 +357 2753 5.100000 +357 2803 5.100000 +357 2824 5.100000 +357 2842 5.100000 +357 2898 5.100000 +357 2915 5.100000 +357 2934 5.100000 +357 3055 5.100000 +357 3067 5.100000 +357 3070 5.100000 +358 20 5.100000 +358 38 5.100000 +358 92 5.100000 +358 221 5.100000 +358 290 5.100000 +358 294 5.100000 +358 399 5.100000 +358 401 5.100000 +358 420 5.100000 +358 468 5.100000 +358 484 5.100000 +358 504 5.100000 +358 561 5.100000 +358 568 5.100000 +358 609 5.100000 +358 639 5.100000 +358 677 5.100000 +358 710 5.100000 +358 755 5.100000 +358 768 5.100000 +358 770 5.100000 +358 806 5.100000 +358 909 5.100000 +358 1175 5.100000 +358 1250 5.100000 +358 1321 5.100000 +358 1334 5.100000 +358 1370 5.100000 +358 1394 5.100000 +358 1437 5.100000 +358 1455 5.100000 +358 1471 5.100000 +358 1524 5.100000 +358 1596 5.100000 +358 1605 5.100000 +358 1634 5.100000 +358 1712 5.100000 +358 1739 5.100000 +358 1740 5.100000 +358 1758 5.100000 +358 1760 5.100000 +358 1821 5.100000 +358 1979 5.100000 +358 1980 5.100000 +358 2031 5.100000 +358 2076 5.100000 +358 2098 5.100000 +358 2115 5.100000 +358 2117 5.100000 +358 2209 5.100000 +358 2245 5.100000 +358 2289 5.100000 +358 2290 5.100000 +358 2297 5.100000 +358 2314 5.100000 +358 2347 5.100000 +358 2365 5.100000 +358 2458 5.100000 +358 2489 5.100000 +358 2514 5.100000 +358 2649 5.100000 +358 2666 5.100000 +358 2694 5.100000 +358 2792 5.100000 +358 2849 5.100000 +358 3016 5.100000 +358 3166 5.100000 +358 3185 5.100000 +359 2 5.100000 +359 37 5.100000 +359 177 5.100000 +359 179 5.100000 +359 203 5.100000 +359 226 5.100000 +359 334 5.100000 +359 397 5.100000 +359 425 5.100000 +359 450 5.100000 +359 493 5.100000 +359 587 5.100000 +359 703 5.100000 +359 807 5.100000 +359 846 5.100000 +359 884 5.100000 +359 933 5.100000 +359 1096 5.100000 +359 1161 5.100000 +359 1207 5.100000 +359 1231 5.100000 +359 1254 5.100000 +359 1260 5.100000 +359 1276 5.100000 +359 1428 5.100000 +359 1553 5.100000 +359 1589 5.100000 +359 1647 5.100000 +359 1697 5.100000 +359 1719 5.100000 +359 1761 5.100000 +359 1809 5.100000 +359 1812 5.100000 +359 1948 5.100000 +359 1970 5.100000 +359 1984 5.100000 +359 1999 5.100000 +359 2005 5.100000 +359 2056 5.100000 +359 2185 5.100000 +359 2275 5.100000 +359 2291 5.100000 +359 2297 5.100000 +359 2351 5.100000 +359 2374 5.100000 +359 2410 5.100000 +359 2452 5.100000 +359 2482 5.100000 +359 2498 5.100000 +359 2530 5.100000 +359 2536 5.100000 +359 2541 5.100000 +359 2566 5.100000 +359 2590 5.100000 +359 2624 5.100000 +359 2635 5.100000 +359 2645 5.100000 +359 2657 5.100000 +359 2702 5.100000 +359 2719 5.100000 +359 2780 5.100000 +359 2791 5.100000 +359 2803 5.100000 +359 2958 5.100000 +359 3170 5.100000 +360 33 5.100000 +360 58 5.100000 +360 74 5.100000 +360 100 5.100000 +360 160 5.100000 +360 188 5.100000 +360 224 5.100000 +360 286 5.100000 +360 309 5.100000 +360 439 5.100000 +360 449 5.100000 +360 452 5.100000 +360 525 5.100000 +360 543 5.100000 +360 660 5.100000 +360 664 5.100000 +360 718 5.100000 +360 747 5.100000 +360 753 5.100000 +360 808 5.100000 +360 815 5.100000 +360 881 5.100000 +360 938 5.100000 +360 1056 5.100000 +360 1060 5.100000 +360 1073 5.100000 +360 1097 5.100000 +360 1101 5.100000 +360 1129 5.100000 +360 1187 5.100000 +360 1269 5.100000 +360 1299 5.100000 +360 1333 5.100000 +360 1334 5.100000 +360 1340 5.100000 +360 1367 5.100000 +360 1418 5.100000 +360 1430 5.100000 +360 1480 5.100000 +360 1509 5.100000 +360 1521 5.100000 +360 1544 5.100000 +360 1614 5.100000 +360 1726 5.100000 +360 1729 5.100000 +360 1766 5.100000 +360 1772 5.100000 +360 1846 5.100000 +360 1895 5.100000 +360 1899 5.100000 +360 1946 5.100000 +360 1947 5.100000 +360 1969 5.100000 +360 1998 5.100000 +360 2027 5.100000 +360 2046 5.100000 +360 2085 5.100000 +360 2100 5.100000 +360 2128 5.100000 +360 2219 5.100000 +360 2224 5.100000 +360 2303 5.100000 +360 2407 5.100000 +360 2524 5.100000 +360 2692 5.100000 +360 2715 5.100000 +360 2830 5.100000 +360 2871 5.100000 +360 2942 5.100000 +360 3008 5.100000 +360 3012 5.100000 +360 3017 5.100000 +360 3039 5.100000 +360 3049 5.100000 +360 3050 5.100000 +360 3095 5.100000 +361 12 5.100000 +361 144 5.100000 +361 230 5.100000 +361 303 5.100000 +361 304 5.100000 +361 352 5.100000 +361 414 5.100000 +361 452 5.100000 +361 468 5.100000 +361 522 5.100000 +361 566 5.100000 +361 655 5.100000 +361 671 5.100000 +361 707 5.100000 +361 740 5.100000 +361 756 5.100000 +361 774 5.100000 +361 855 5.100000 +361 927 5.100000 +361 943 5.100000 +361 962 5.100000 +361 966 5.100000 +361 990 5.100000 +361 1001 5.100000 +361 1084 5.100000 +361 1114 5.100000 +361 1155 5.100000 +361 1165 5.100000 +361 1216 5.100000 +361 1310 5.100000 +361 1327 5.100000 +361 1368 5.100000 +361 1419 5.100000 +361 1437 5.100000 +361 1584 5.100000 +361 1599 5.100000 +361 1626 5.100000 +361 1641 5.100000 +361 1667 5.100000 +361 1702 5.100000 +361 1712 5.100000 +361 1732 5.100000 +361 1754 5.100000 +361 1797 5.100000 +361 1810 5.100000 +361 1925 5.100000 +361 1995 5.100000 +361 1999 5.100000 +361 2162 5.100000 +361 2233 5.100000 +361 2280 5.100000 +361 2336 5.100000 +361 2347 5.100000 +361 2348 5.100000 +361 2464 5.100000 +361 2482 5.100000 +361 2535 5.100000 +361 2590 5.100000 +361 2617 5.100000 +361 2654 5.100000 +361 2666 5.100000 +361 2846 5.100000 +361 2923 5.100000 +361 2925 5.100000 +361 2926 5.100000 +361 2977 5.100000 +361 2994 5.100000 +361 3045 5.100000 +361 3115 5.100000 +361 3135 5.100000 +361 3170 5.100000 +362 1 5.100000 +362 27 5.100000 +362 29 5.100000 +362 57 5.100000 +362 100 5.100000 +362 163 5.100000 +362 210 5.100000 +362 265 5.100000 +362 431 5.100000 +362 432 5.100000 +362 446 5.100000 +362 511 5.100000 +362 560 5.100000 +362 609 5.100000 +362 644 5.100000 +362 733 5.100000 +362 789 5.100000 +362 1087 5.100000 +362 1226 5.100000 +362 1273 5.100000 +362 1276 5.100000 +362 1425 5.100000 +362 1496 5.100000 +362 1497 5.100000 +362 1529 5.100000 +362 1532 5.100000 +362 1566 5.100000 +362 1578 5.100000 +362 1586 5.100000 +362 1603 5.100000 +362 1616 5.100000 +362 1624 5.100000 +362 1873 5.100000 +362 2006 5.100000 +362 2031 5.100000 +362 2104 5.100000 +362 2119 5.100000 +362 2121 5.100000 +362 2124 5.100000 +362 2150 5.100000 +362 2219 5.100000 +362 2233 5.100000 +362 2500 5.100000 +362 2602 5.100000 +362 2623 5.100000 +362 2637 5.100000 +362 2648 5.100000 +362 2669 5.100000 +362 2680 5.100000 +362 2709 5.100000 +362 2711 5.100000 +362 2740 5.100000 +362 2741 5.100000 +362 2742 5.100000 +362 2758 5.100000 +362 2770 5.100000 +362 2886 5.100000 +362 2960 5.100000 +362 2985 5.100000 +362 2997 5.100000 +362 3013 5.100000 +362 3086 5.100000 +362 3120 5.100000 +363 42 5.100000 +363 60 5.100000 +363 131 5.100000 +363 172 5.100000 +363 218 5.100000 +363 256 5.100000 +363 395 5.100000 +363 421 5.100000 +363 553 5.100000 +363 575 5.100000 +363 585 5.100000 +363 611 5.100000 +363 704 5.100000 +363 736 5.100000 +363 757 5.100000 +363 795 5.100000 +363 835 5.100000 +363 837 5.100000 +363 877 5.100000 +363 887 5.100000 +363 948 5.100000 +363 974 5.100000 +363 1071 5.100000 +363 1118 5.100000 +363 1121 5.100000 +363 1220 5.100000 +363 1255 5.100000 +363 1303 5.100000 +363 1445 5.100000 +363 1547 5.100000 +363 1584 5.100000 +363 1672 5.100000 +363 1711 5.100000 +363 1731 5.100000 +363 1747 5.100000 +363 1782 5.100000 +363 1825 5.100000 +363 1831 5.100000 +363 1882 5.100000 +363 1907 5.100000 +363 1923 5.100000 +363 1932 5.100000 +363 1941 5.100000 +363 1970 5.100000 +363 1983 5.100000 +363 2007 5.100000 +363 2018 5.100000 +363 2101 5.100000 +363 2145 5.100000 +363 2171 5.100000 +363 2218 5.100000 +363 2285 5.100000 +363 2372 5.100000 +363 2379 5.100000 +363 2418 5.100000 +363 2469 5.100000 +363 2487 5.100000 +363 2500 5.100000 +363 2503 5.100000 +363 2524 5.100000 +363 2534 5.100000 +363 2567 5.100000 +363 2716 5.100000 +363 2853 5.100000 +363 2894 5.100000 +363 3051 5.100000 +363 3177 5.100000 +364 6 5.100000 +364 18 5.100000 +364 203 5.100000 +364 239 5.100000 +364 335 5.100000 +364 429 5.100000 +364 474 5.100000 +364 503 5.100000 +364 516 5.100000 +364 712 5.100000 +364 743 5.100000 +364 762 5.100000 +364 847 5.100000 +364 850 5.100000 +364 893 5.100000 +364 909 5.100000 +364 925 5.100000 +364 986 5.100000 +364 1014 5.100000 +364 1040 5.100000 +364 1169 5.100000 +364 1180 5.100000 +364 1238 5.100000 +364 1315 5.100000 +364 1317 5.100000 +364 1364 5.100000 +364 1379 5.100000 +364 1628 5.100000 +364 1652 5.100000 +364 1666 5.100000 +364 1709 5.100000 +364 1787 5.100000 +364 1792 5.100000 +364 1796 5.100000 +364 1822 5.100000 +364 1831 5.100000 +364 1867 5.100000 +364 1959 5.100000 +364 1964 5.100000 +364 2040 5.100000 +364 2206 5.100000 +364 2280 5.100000 +364 2321 5.100000 +364 2348 5.100000 +364 2447 5.100000 +364 2494 5.100000 +364 2502 5.100000 +364 2560 5.100000 +364 2635 5.100000 +364 2646 5.100000 +364 2656 5.100000 +364 2764 5.100000 +364 2795 5.100000 +364 2819 5.100000 +364 2832 5.100000 +364 2915 5.100000 +364 2931 5.100000 +364 2962 5.100000 +364 2967 5.100000 +364 2974 5.100000 +364 3164 5.100000 +365 85 5.100000 +365 98 5.100000 +365 121 5.100000 +365 160 5.100000 +365 185 5.100000 +365 190 5.100000 +365 197 5.100000 +365 202 5.100000 +365 248 5.100000 +365 348 5.100000 +365 366 5.100000 +365 387 5.100000 +365 394 5.100000 +365 401 5.100000 +365 449 5.100000 +365 470 5.100000 +365 512 5.100000 +365 549 5.100000 +365 678 5.100000 +365 685 5.100000 +365 747 5.100000 +365 792 5.100000 +365 802 5.100000 +365 847 5.100000 +365 910 5.100000 +365 944 5.100000 +365 1015 5.100000 +365 1170 5.100000 +365 1195 5.100000 +365 1239 5.100000 +365 1359 5.100000 +365 1413 5.100000 +365 1500 5.100000 +365 1533 5.100000 +365 1619 5.100000 +365 1623 5.100000 +365 1643 5.100000 +365 1755 5.100000 +365 1760 5.100000 +365 1768 5.100000 +365 1791 5.100000 +365 1837 5.100000 +365 1923 5.100000 +365 1951 5.100000 +365 1953 5.100000 +365 1992 5.100000 +365 2023 5.100000 +365 2057 5.100000 +365 2096 5.100000 +365 2132 5.100000 +365 2194 5.100000 +365 2205 5.100000 +365 2268 5.100000 +365 2296 5.100000 +365 2371 5.100000 +365 2409 5.100000 +365 2417 5.100000 +365 2475 5.100000 +365 2477 5.100000 +365 2478 5.100000 +365 2499 5.100000 +365 2845 5.100000 +365 2869 5.100000 +365 2947 5.100000 +365 2961 5.100000 +365 3014 5.100000 +365 3060 5.100000 +365 3071 5.100000 +365 3135 5.100000 +365 3180 5.100000 +366 15 5.100000 +366 186 5.100000 +366 195 5.100000 +366 225 5.100000 +366 309 5.100000 +366 347 5.100000 +366 385 5.100000 +366 534 5.100000 +366 560 5.100000 +366 575 5.100000 +366 621 5.100000 +366 641 5.100000 +366 693 5.100000 +366 703 5.100000 +366 752 5.100000 +366 768 5.100000 +366 775 5.100000 +366 789 5.100000 +366 805 5.100000 +366 1048 5.100000 +366 1076 5.100000 +366 1119 5.100000 +366 1162 5.100000 +366 1181 5.100000 +366 1185 5.100000 +366 1297 5.100000 +366 1380 5.100000 +366 1478 5.100000 +366 1599 5.100000 +366 1640 5.100000 +366 1697 5.100000 +366 1774 5.100000 +366 1779 5.100000 +366 1844 5.100000 +366 1845 5.100000 +366 1968 5.100000 +366 1971 5.100000 +366 2002 5.100000 +366 2069 5.100000 +366 2117 5.100000 +366 2190 5.100000 +366 2192 5.100000 +366 2389 5.100000 +366 2413 5.100000 +366 2533 5.100000 +366 2629 5.100000 +366 2688 5.100000 +366 2702 5.100000 +366 2722 5.100000 +366 2744 5.100000 +366 2750 5.100000 +366 2785 5.100000 +366 2797 5.100000 +366 2864 5.100000 +366 2916 5.100000 +366 2945 5.100000 +366 2995 5.100000 +366 3021 5.100000 +366 3024 5.100000 +366 3045 5.100000 +366 3090 5.100000 +366 3107 5.100000 +366 3129 5.100000 +367 33 5.100000 +367 45 5.100000 +367 182 5.100000 +367 275 5.100000 +367 360 5.100000 +367 361 5.100000 +367 397 5.100000 +367 461 5.100000 +367 530 5.100000 +367 565 5.100000 +367 574 5.100000 +367 583 5.100000 +367 618 5.100000 +367 639 5.100000 +367 677 5.100000 +367 861 5.100000 +367 922 5.100000 +367 948 5.100000 +367 976 5.100000 +367 988 5.100000 +367 1056 5.100000 +367 1081 5.100000 +367 1132 5.100000 +367 1133 5.100000 +367 1145 5.100000 +367 1255 5.100000 +367 1258 5.100000 +367 1337 5.100000 +367 1386 5.100000 +367 1420 5.100000 +367 1444 5.100000 +367 1500 5.100000 +367 1504 5.100000 +367 1549 5.100000 +367 1636 5.100000 +367 1686 5.100000 +367 1714 5.100000 +367 1776 5.100000 +367 1796 5.100000 +367 1833 5.100000 +367 1862 5.100000 +367 1868 5.100000 +367 1901 5.100000 +367 1957 5.100000 +367 2001 5.100000 +367 2008 5.100000 +367 2069 5.100000 +367 2198 5.100000 +367 2294 5.100000 +367 2524 5.100000 +367 2551 5.100000 +367 2625 5.100000 +367 2634 5.100000 +367 2665 5.100000 +367 2667 5.100000 +367 2700 5.100000 +367 2707 5.100000 +367 2805 5.100000 +367 2809 5.100000 +367 2843 5.100000 +367 2953 5.100000 +367 2999 5.100000 +367 3070 5.100000 +367 3099 5.100000 +367 3129 5.100000 +368 73 5.100000 +368 104 5.100000 +368 195 5.100000 +368 209 5.100000 +368 251 5.100000 +368 297 5.100000 +368 367 5.100000 +368 493 5.100000 +368 512 5.100000 +368 536 5.100000 +368 547 5.100000 +368 645 5.100000 +368 669 5.100000 +368 678 5.100000 +368 700 5.100000 +368 741 5.100000 +368 787 5.100000 +368 790 5.100000 +368 852 5.100000 +368 906 5.100000 +368 932 5.100000 +368 1019 5.100000 +368 1042 5.100000 +368 1092 5.100000 +368 1149 5.100000 +368 1161 5.100000 +368 1164 5.100000 +368 1421 5.100000 +368 1506 5.100000 +368 1593 5.100000 +368 1606 5.100000 +368 1779 5.100000 +368 1810 5.100000 +368 1901 5.100000 +368 1904 5.100000 +368 1996 5.100000 +368 2136 5.100000 +368 2190 5.100000 +368 2210 5.100000 +368 2223 5.100000 +368 2247 5.100000 +368 2416 5.100000 +368 2422 5.100000 +368 2628 5.100000 +368 2685 5.100000 +368 2765 5.100000 +368 2817 5.100000 +368 2884 5.100000 +368 2889 5.100000 +368 2890 5.100000 +368 2950 5.100000 +368 3024 5.100000 +368 3047 5.100000 +368 3125 5.100000 +368 3177 5.100000 +368 3193 5.100000 +369 35 5.100000 +369 97 5.100000 +369 135 5.100000 +369 141 5.100000 +369 163 5.100000 +369 253 5.100000 +369 258 5.100000 +369 291 5.100000 +369 336 5.100000 +369 380 5.100000 +369 463 5.100000 +369 479 5.100000 +369 517 5.100000 +369 536 5.100000 +369 662 5.100000 +369 702 5.100000 +369 724 5.100000 +369 767 5.100000 +369 772 5.100000 +369 910 5.100000 +369 927 5.100000 +369 935 5.100000 +369 979 5.100000 +369 1023 5.100000 +369 1074 5.100000 +369 1135 5.100000 +369 1183 5.100000 +369 1191 5.100000 +369 1199 5.100000 +369 1203 5.100000 +369 1212 5.100000 +369 1242 5.100000 +369 1330 5.100000 +369 1351 5.100000 +369 1353 5.100000 +369 1380 5.100000 +369 1409 5.100000 +369 1423 5.100000 +369 1428 5.100000 +369 1449 5.100000 +369 1479 5.100000 +369 1529 5.100000 +369 1533 5.100000 +369 1562 5.100000 +369 1615 5.100000 +369 1690 5.100000 +369 1732 5.100000 +369 1740 5.100000 +369 1757 5.100000 +369 1816 5.100000 +369 1871 5.100000 +369 1880 5.100000 +369 1995 5.100000 +369 1996 5.100000 +369 2014 5.100000 +369 2051 5.100000 +369 2072 5.100000 +369 2225 5.100000 +369 2248 5.100000 +369 2300 5.100000 +369 2308 5.100000 +369 2319 5.100000 +369 2381 5.100000 +369 2395 5.100000 +369 2416 5.100000 +369 2506 5.100000 +369 2539 5.100000 +369 2567 5.100000 +369 2770 5.100000 +369 2875 5.100000 +369 2878 5.100000 +369 2938 5.100000 +369 2992 5.100000 +369 3020 5.100000 +369 3038 5.100000 +369 3051 5.100000 +369 3076 5.100000 +369 3088 5.100000 +369 3159 5.100000 +370 40 5.100000 +370 41 5.100000 +370 220 5.100000 +370 264 5.100000 +370 289 5.100000 +370 374 5.100000 +370 407 5.100000 +370 408 5.100000 +370 430 5.100000 +370 510 5.100000 +370 512 5.100000 +370 595 5.100000 +370 698 5.100000 +370 708 5.100000 +370 775 5.100000 +370 783 5.100000 +370 835 5.100000 +370 869 5.100000 +370 902 5.100000 +370 904 5.100000 +370 907 5.100000 +370 926 5.100000 +370 1067 5.100000 +370 1071 5.100000 +370 1160 5.100000 +370 1214 5.100000 +370 1225 5.100000 +370 1336 5.100000 +370 1356 5.100000 +370 1400 5.100000 +370 1446 5.100000 +370 1624 5.100000 +370 1637 5.100000 +370 1727 5.100000 +370 1763 5.100000 +370 1765 5.100000 +370 1780 5.100000 +370 1880 5.100000 +370 1989 5.100000 +370 2067 5.100000 +370 2071 5.100000 +370 2095 5.100000 +370 2123 5.100000 +370 2236 5.100000 +370 2242 5.100000 +370 2261 5.100000 +370 2281 5.100000 +370 2296 5.100000 +370 2301 5.100000 +370 2386 5.100000 +370 2421 5.100000 +370 2422 5.100000 +370 2423 5.100000 +370 2447 5.100000 +370 2506 5.100000 +370 2694 5.100000 +370 2698 5.100000 +370 2702 5.100000 +370 2782 5.100000 +370 2850 5.100000 +370 2877 5.100000 +370 2886 5.100000 +370 2890 5.100000 +370 2932 5.100000 +370 2947 5.100000 +370 3008 5.100000 +370 3022 5.100000 +370 3043 5.100000 +370 3134 5.100000 +371 22 5.100000 +371 36 5.100000 +371 68 5.100000 +371 70 5.100000 +371 92 5.100000 +371 98 5.100000 +371 123 5.100000 +371 256 5.100000 +371 284 5.100000 +371 475 5.100000 +371 526 5.100000 +371 556 5.100000 +371 737 5.100000 +371 771 5.100000 +371 809 5.100000 +371 960 5.100000 +371 992 5.100000 +371 1020 5.100000 +371 1041 5.100000 +371 1065 5.100000 +371 1113 5.100000 +371 1189 5.100000 +371 1256 5.100000 +371 1258 5.100000 +371 1284 5.100000 +371 1337 5.100000 +371 1367 5.100000 +371 1378 5.100000 +371 1445 5.100000 +371 1649 5.100000 +371 1740 5.100000 +371 1796 5.100000 +371 1833 5.100000 +371 1941 5.100000 +371 1957 5.100000 +371 2006 5.100000 +371 2088 5.100000 +371 2105 5.100000 +371 2142 5.100000 +371 2255 5.100000 +371 2381 5.100000 +371 2432 5.100000 +371 2523 5.100000 +371 2545 5.100000 +371 2618 5.100000 +371 2642 5.100000 +371 2657 5.100000 +371 2727 5.100000 +371 2740 5.100000 +371 2762 5.100000 +371 2764 5.100000 +371 2790 5.100000 +371 2826 5.100000 +371 3024 5.100000 +371 3036 5.100000 +371 3040 5.100000 +371 3049 5.100000 +371 3155 5.100000 +371 3178 5.100000 +372 128 5.100000 +372 208 5.100000 +372 210 5.100000 +372 307 5.100000 +372 371 5.100000 +372 385 5.100000 +372 427 5.100000 +372 458 5.100000 +372 472 5.100000 +372 508 5.100000 +372 594 5.100000 +372 604 5.100000 +372 636 5.100000 +372 648 5.100000 +372 688 5.100000 +372 761 5.100000 +372 793 5.100000 +372 813 5.100000 +372 821 5.100000 +372 827 5.100000 +372 894 5.100000 +372 910 5.100000 +372 914 5.100000 +372 926 5.100000 +372 980 5.100000 +372 982 5.100000 +372 1040 5.100000 +372 1274 5.100000 +372 1309 5.100000 +372 1333 5.100000 +372 1342 5.100000 +372 1373 5.100000 +372 1491 5.100000 +372 1520 5.100000 +372 1605 5.100000 +372 1651 5.100000 +372 1707 5.100000 +372 1853 5.100000 +372 1936 5.100000 +372 2004 5.100000 +372 2022 5.100000 +372 2060 5.100000 +372 2186 5.100000 +372 2200 5.100000 +372 2268 5.100000 +372 2315 5.100000 +372 2365 5.100000 +372 2371 5.100000 +372 2414 5.100000 +372 2529 5.100000 +372 2697 5.100000 +372 2773 5.100000 +372 2795 5.100000 +372 2834 5.100000 +372 2835 5.100000 +372 2862 5.100000 +372 2905 5.100000 +372 2918 5.100000 +372 2978 5.100000 +372 3069 5.100000 +372 3126 5.100000 +373 20 5.100000 +373 26 5.100000 +373 164 5.100000 +373 278 5.100000 +373 287 5.100000 +373 290 5.100000 +373 330 5.100000 +373 392 5.100000 +373 404 5.100000 +373 435 5.100000 +373 475 5.100000 +373 590 5.100000 +373 632 5.100000 +373 639 5.100000 +373 785 5.100000 +373 821 5.100000 +373 859 5.100000 +373 940 5.100000 +373 976 5.100000 +373 1063 5.100000 +373 1068 5.100000 +373 1079 5.100000 +373 1150 5.100000 +373 1170 5.100000 +373 1173 5.100000 +373 1176 5.100000 +373 1201 5.100000 +373 1358 5.100000 +373 1456 5.100000 +373 1465 5.100000 +373 1474 5.100000 +373 1486 5.100000 +373 1542 5.100000 +373 1567 5.100000 +373 1627 5.100000 +373 1633 5.100000 +373 1640 5.100000 +373 1651 5.100000 +373 1745 5.100000 +373 1851 5.100000 +373 1881 5.100000 +373 1930 5.100000 +373 1957 5.100000 +373 2002 5.100000 +373 2054 5.100000 +373 2103 5.100000 +373 2118 5.100000 +373 2124 5.100000 +373 2133 5.100000 +373 2220 5.100000 +373 2277 5.100000 +373 2284 5.100000 +373 2347 5.100000 +373 2373 5.100000 +373 2383 5.100000 +373 2397 5.100000 +373 2414 5.100000 +373 2426 5.100000 +373 2433 5.100000 +373 2463 5.100000 +373 2513 5.100000 +373 2551 5.100000 +373 2552 5.100000 +373 2592 5.100000 +373 2611 5.100000 +373 2695 5.100000 +373 2728 5.100000 +373 2823 5.100000 +373 2829 5.100000 +373 2859 5.100000 +373 2868 5.100000 +373 2906 5.100000 +373 3017 5.100000 +373 3069 5.100000 +373 3092 5.100000 +374 16 5.100000 +374 27 5.100000 +374 155 5.100000 +374 158 5.100000 +374 239 5.100000 +374 324 5.100000 +374 397 5.100000 +374 420 5.100000 +374 457 5.100000 +374 466 5.100000 +374 529 5.100000 +374 651 5.100000 +374 684 5.100000 +374 761 5.100000 +374 778 5.100000 +374 783 5.100000 +374 840 5.100000 +374 874 5.100000 +374 879 5.100000 +374 892 5.100000 +374 906 5.100000 +374 961 5.100000 +374 973 5.100000 +374 1012 5.100000 +374 1031 5.100000 +374 1039 5.100000 +374 1061 5.100000 +374 1063 5.100000 +374 1149 5.100000 +374 1154 5.100000 +374 1190 5.100000 +374 1212 5.100000 +374 1215 5.100000 +374 1217 5.100000 +374 1231 5.100000 +374 1255 5.100000 +374 1329 5.100000 +374 1363 5.100000 +374 1530 5.100000 +374 1625 5.100000 +374 1682 5.100000 +374 1742 5.100000 +374 1759 5.100000 +374 1834 5.100000 +374 1838 5.100000 +374 1848 5.100000 +374 1899 5.100000 +374 1950 5.100000 +374 1972 5.100000 +374 2072 5.100000 +374 2159 5.100000 +374 2285 5.100000 +374 2302 5.100000 +374 2443 5.100000 +374 2478 5.100000 +374 2487 5.100000 +374 2509 5.100000 +374 2516 5.100000 +374 2569 5.100000 +374 2580 5.100000 +374 2643 5.100000 +374 2676 5.100000 +374 2736 5.100000 +374 2786 5.100000 +374 2802 5.100000 +374 2923 5.100000 +374 3012 5.100000 +374 3075 5.100000 +374 3113 5.100000 +374 3147 5.100000 +375 69 5.100000 +375 162 5.100000 +375 186 5.100000 +375 195 5.100000 +375 228 5.100000 +375 256 5.100000 +375 289 5.100000 +375 310 5.100000 +375 329 5.100000 +375 376 5.100000 +375 423 5.100000 +375 474 5.100000 +375 637 5.100000 +375 671 5.100000 +375 683 5.100000 +375 707 5.100000 +375 796 5.100000 +375 811 5.100000 +375 823 5.100000 +375 854 5.100000 +375 873 5.100000 +375 1055 5.100000 +375 1086 5.100000 +375 1178 5.100000 +375 1187 5.100000 +375 1211 5.100000 +375 1224 5.100000 +375 1245 5.100000 +375 1331 5.100000 +375 1467 5.100000 +375 1492 5.100000 +375 1552 5.100000 +375 1584 5.100000 +375 1597 5.100000 +375 1682 5.100000 +375 1758 5.100000 +375 1802 5.100000 +375 1809 5.100000 +375 1816 5.100000 +375 1837 5.100000 +375 1913 5.100000 +375 1970 5.100000 +375 2004 5.100000 +375 2013 5.100000 +375 2073 5.100000 +375 2228 5.100000 +375 2240 5.100000 +375 2253 5.100000 +375 2268 5.100000 +375 2351 5.100000 +375 2546 5.100000 +375 2577 5.100000 +375 2634 5.100000 +375 2709 5.100000 +375 2710 5.100000 +375 2741 5.100000 +375 2766 5.100000 +375 2772 5.100000 +375 2800 5.100000 +375 2830 5.100000 +375 2850 5.100000 +375 2853 5.100000 +375 2854 5.100000 +375 2856 5.100000 +375 2859 5.100000 +375 2883 5.100000 +375 2943 5.100000 +375 2975 5.100000 +375 3105 5.100000 +375 3121 5.100000 +376 26 5.100000 +376 32 5.100000 +376 61 5.100000 +376 130 5.100000 +376 143 5.100000 +376 195 5.100000 +376 278 5.100000 +376 304 5.100000 +376 306 5.100000 +376 337 5.100000 +376 358 5.100000 +376 372 5.100000 +376 401 5.100000 +376 429 5.100000 +376 458 5.100000 +376 516 5.100000 +376 564 5.100000 +376 572 5.100000 +376 578 5.100000 +376 591 5.100000 +376 599 5.100000 +376 648 5.100000 +376 668 5.100000 +376 686 5.100000 +376 714 5.100000 +376 745 5.100000 +376 823 5.100000 +376 842 5.100000 +376 876 5.100000 +376 946 5.100000 +376 953 5.100000 +376 1099 5.100000 +376 1109 5.100000 +376 1141 5.100000 +376 1187 5.100000 +376 1190 5.100000 +376 1233 5.100000 +376 1238 5.100000 +376 1344 5.100000 +376 1496 5.100000 +376 1553 5.100000 +376 1605 5.100000 +376 1692 5.100000 +376 1696 5.100000 +376 1716 5.100000 +376 1774 5.100000 +376 1852 5.100000 +376 1925 5.100000 +376 2034 5.100000 +376 2067 5.100000 +376 2070 5.100000 +376 2137 5.100000 +376 2139 5.100000 +376 2200 5.100000 +376 2209 5.100000 +376 2260 5.100000 +376 2401 5.100000 +376 2410 5.100000 +376 2417 5.100000 +376 2428 5.100000 +376 2456 5.100000 +376 2616 5.100000 +376 2852 5.100000 +376 2963 5.100000 +376 3127 5.100000 +377 37 5.100000 +377 47 5.100000 +377 90 5.100000 +377 111 5.100000 +377 118 5.100000 +377 138 5.100000 +377 259 5.100000 +377 383 5.100000 +377 398 5.100000 +377 464 5.100000 +377 505 5.100000 +377 509 5.100000 +377 518 5.100000 +377 519 5.100000 +377 552 5.100000 +377 583 5.100000 +377 585 5.100000 +377 693 5.100000 +377 700 5.100000 +377 711 5.100000 +377 723 5.100000 +377 741 5.100000 +377 783 5.100000 +377 859 5.100000 +377 907 5.100000 +377 954 5.100000 +377 970 5.100000 +377 1000 5.100000 +377 1025 5.100000 +377 1085 5.100000 +377 1094 5.100000 +377 1101 5.100000 +377 1118 5.100000 +377 1120 5.100000 +377 1148 5.100000 +377 1244 5.100000 +377 1325 5.100000 +377 1376 5.100000 +377 1397 5.100000 +377 1430 5.100000 +377 1447 5.100000 +377 1525 5.100000 +377 1529 5.100000 +377 1532 5.100000 +377 1620 5.100000 +377 1675 5.100000 +377 1722 5.100000 +377 1759 5.100000 +377 1773 5.100000 +377 1807 5.100000 +377 1852 5.100000 +377 1862 5.100000 +377 1863 5.100000 +377 1912 5.100000 +377 1914 5.100000 +377 2015 5.100000 +377 2057 5.100000 +377 2099 5.100000 +377 2126 5.100000 +377 2155 5.100000 +377 2168 5.100000 +377 2171 5.100000 +377 2173 5.100000 +377 2274 5.100000 +377 2362 5.100000 +377 2387 5.100000 +377 2612 5.100000 +377 2627 5.100000 +377 2632 5.100000 +377 2690 5.100000 +377 2721 5.100000 +377 2730 5.100000 +377 2753 5.100000 +377 2755 5.100000 +377 2765 5.100000 +377 2794 5.100000 +377 2796 5.100000 +377 2931 5.100000 +377 3003 5.100000 +377 3024 5.100000 +377 3087 5.100000 +378 11 5.100000 +378 52 5.100000 +378 60 5.100000 +378 190 5.100000 +378 198 5.100000 +378 215 5.100000 +378 223 5.100000 +378 281 5.100000 +378 292 5.100000 +378 332 5.100000 +378 352 5.100000 +378 380 5.100000 +378 397 5.100000 +378 459 5.100000 +378 475 5.100000 +378 555 5.100000 +378 634 5.100000 +378 641 5.100000 +378 687 5.100000 +378 760 5.100000 +378 794 5.100000 +378 986 5.100000 +378 1008 5.100000 +378 1022 5.100000 +378 1084 5.100000 +378 1086 5.100000 +378 1109 5.100000 +378 1126 5.100000 +378 1133 5.100000 +378 1144 5.100000 +378 1245 5.100000 +378 1395 5.100000 +378 1419 5.100000 +378 1420 5.100000 +378 1457 5.100000 +378 1544 5.100000 +378 1587 5.100000 +378 1635 5.100000 +378 1661 5.100000 +378 1770 5.100000 +378 1821 5.100000 +378 1840 5.100000 +378 1877 5.100000 +378 2107 5.100000 +378 2167 5.100000 +378 2312 5.100000 +378 2484 5.100000 +378 2537 5.100000 +378 2741 5.100000 +378 2782 5.100000 +378 2870 5.100000 +378 2893 5.100000 +378 2950 5.100000 +378 3093 5.100000 +378 3108 5.100000 +378 3143 5.100000 +378 3153 5.100000 +379 47 5.100000 +379 82 5.100000 +379 125 5.100000 +379 229 5.100000 +379 241 5.100000 +379 350 5.100000 +379 375 5.100000 +379 434 5.100000 +379 488 5.100000 +379 548 5.100000 +379 622 5.100000 +379 627 5.100000 +379 733 5.100000 +379 747 5.100000 +379 779 5.100000 +379 856 5.100000 +379 915 5.100000 +379 935 5.100000 +379 957 5.100000 +379 999 5.100000 +379 1013 5.100000 +379 1024 5.100000 +379 1065 5.100000 +379 1083 5.100000 +379 1243 5.100000 +379 1348 5.100000 +379 1525 5.100000 +379 1538 5.100000 +379 1835 5.100000 +379 1894 5.100000 +379 1899 5.100000 +379 1996 5.100000 +379 2045 5.100000 +379 2048 5.100000 +379 2138 5.100000 +379 2161 5.100000 +379 2216 5.100000 +379 2253 5.100000 +379 2261 5.100000 +379 2271 5.100000 +379 2327 5.100000 +379 2347 5.100000 +379 2444 5.100000 +379 2483 5.100000 +379 2544 5.100000 +379 2662 5.100000 +379 2694 5.100000 +379 2794 5.100000 +379 3106 5.100000 +379 3138 5.100000 +379 3140 5.100000 +380 85 5.100000 +380 121 5.100000 +380 176 5.100000 +380 185 5.100000 +380 187 5.100000 +380 207 5.100000 +380 210 5.100000 +380 340 5.100000 +380 387 5.100000 +380 418 5.100000 +380 471 5.100000 +380 649 5.100000 +380 683 5.100000 +380 685 5.100000 +380 818 5.100000 +380 875 5.100000 +380 919 5.100000 +380 944 5.100000 +380 960 5.100000 +380 1006 5.100000 +380 1073 5.100000 +380 1122 5.100000 +380 1156 5.100000 +380 1170 5.100000 +380 1238 5.100000 +380 1271 5.100000 +380 1319 5.100000 +380 1342 5.100000 +380 1424 5.100000 +380 1429 5.100000 +380 1449 5.100000 +380 1454 5.100000 +380 1463 5.100000 +380 1629 5.100000 +380 1722 5.100000 +380 1958 5.100000 +380 1978 5.100000 +380 2040 5.100000 +380 2090 5.100000 +380 2136 5.100000 +380 2143 5.100000 +380 2151 5.100000 +380 2200 5.100000 +380 2212 5.100000 +380 2238 5.100000 +380 2374 5.100000 +380 2388 5.100000 +380 2513 5.100000 +380 2625 5.100000 +380 2651 5.100000 +380 2687 5.100000 +380 2724 5.100000 +380 2758 5.100000 +380 2783 5.100000 +380 2826 5.100000 +380 2848 5.100000 +380 2943 5.100000 +380 3019 5.100000 +380 3060 5.100000 +380 3104 5.100000 +380 3127 5.100000 +381 27 5.100000 +381 35 5.100000 +381 57 5.100000 +381 72 5.100000 +381 105 5.100000 +381 247 5.100000 +381 267 5.100000 +381 278 5.100000 +381 320 5.100000 +381 348 5.100000 +381 441 5.100000 +381 455 5.100000 +381 481 5.100000 +381 539 5.100000 +381 540 5.100000 +381 586 5.100000 +381 627 5.100000 +381 646 5.100000 +381 700 5.100000 +381 848 5.100000 +381 909 5.100000 +381 926 5.100000 +381 971 5.100000 +381 1006 5.100000 +381 1056 5.100000 +381 1161 5.100000 +381 1181 5.100000 +381 1307 5.100000 +381 1521 5.100000 +381 1686 5.100000 +381 1809 5.100000 +381 1815 5.100000 +381 1830 5.100000 +381 1908 5.100000 +381 1990 5.100000 +381 2058 5.100000 +381 2082 5.100000 +381 2231 5.100000 +381 2446 5.100000 +381 2514 5.100000 +381 2517 5.100000 +381 2620 5.100000 +381 2724 5.100000 +381 2766 5.100000 +381 2768 5.100000 +381 2777 5.100000 +381 2842 5.100000 +381 2848 5.100000 +381 2892 5.100000 +381 2904 5.100000 +381 2962 5.100000 +381 2969 5.100000 +381 2977 5.100000 +381 2993 5.100000 +381 3011 5.100000 +381 3012 5.100000 +381 3022 5.100000 +381 3139 5.100000 +382 165 5.100000 +382 193 5.100000 +382 194 5.100000 +382 200 5.100000 +382 325 5.100000 +382 429 5.100000 +382 432 5.100000 +382 489 5.100000 +382 496 5.100000 +382 619 5.100000 +382 665 5.100000 +382 741 5.100000 +382 993 5.100000 +382 1005 5.100000 +382 1118 5.100000 +382 1180 5.100000 +382 1214 5.100000 +382 1253 5.100000 +382 1270 5.100000 +382 1289 5.100000 +382 1340 5.100000 +382 1376 5.100000 +382 1404 5.100000 +382 1416 5.100000 +382 1478 5.100000 +382 1509 5.100000 +382 1594 5.100000 +382 1602 5.100000 +382 1631 5.100000 +382 1709 5.100000 +382 1821 5.100000 +382 1886 5.100000 +382 1951 5.100000 +382 1979 5.100000 +382 1981 5.100000 +382 2012 5.100000 +382 2016 5.100000 +382 2074 5.100000 +382 2098 5.100000 +382 2136 5.100000 +382 2262 5.100000 +382 2268 5.100000 +382 2290 5.100000 +382 2294 5.100000 +382 2472 5.100000 +382 2501 5.100000 +382 2563 5.100000 +382 2567 5.100000 +382 2572 5.100000 +382 2582 5.100000 +382 2725 5.100000 +382 2737 5.100000 +382 2746 5.100000 +382 2769 5.100000 +382 2863 5.100000 +382 2888 5.100000 +382 2916 5.100000 +382 2935 5.100000 +382 2971 5.100000 +382 2977 5.100000 +382 3012 5.100000 +382 3093 5.100000 +382 3117 5.100000 +383 46 5.100000 +383 59 5.100000 +383 60 5.100000 +383 84 5.100000 +383 103 5.100000 +383 200 5.100000 +383 225 5.100000 +383 281 5.100000 +383 475 5.100000 +383 513 5.100000 +383 531 5.100000 +383 537 5.100000 +383 548 5.100000 +383 575 5.100000 +383 584 5.100000 +383 620 5.100000 +383 624 5.100000 +383 668 5.100000 +383 679 5.100000 +383 700 5.100000 +383 751 5.100000 +383 768 5.100000 +383 867 5.100000 +383 875 5.100000 +383 930 5.100000 +383 971 5.100000 +383 999 5.100000 +383 1030 5.100000 +383 1034 5.100000 +383 1059 5.100000 +383 1115 5.100000 +383 1169 5.100000 +383 1185 5.100000 +383 1270 5.100000 +383 1422 5.100000 +383 1436 5.100000 +383 1640 5.100000 +383 1698 5.100000 +383 1812 5.100000 +383 1821 5.100000 +383 1823 5.100000 +383 1858 5.100000 +383 1899 5.100000 +383 1935 5.100000 +383 1961 5.100000 +383 2085 5.100000 +383 2192 5.100000 +383 2215 5.100000 +383 2222 5.100000 +383 2378 5.100000 +383 2410 5.100000 +383 2489 5.100000 +383 2541 5.100000 +383 2657 5.100000 +383 2718 5.100000 +383 2822 5.100000 +383 2877 5.100000 +383 2880 5.100000 +383 2889 5.100000 +383 2918 5.100000 +383 2933 5.100000 +383 2969 5.100000 +383 3003 5.100000 +383 3053 5.100000 +383 3064 5.100000 +383 3082 5.100000 +383 3097 5.100000 +384 123 5.100000 +384 169 5.100000 +384 220 5.100000 +384 251 5.100000 +384 400 5.100000 +384 402 5.100000 +384 415 5.100000 +384 454 5.100000 +384 539 5.100000 +384 566 5.100000 +384 572 5.100000 +384 582 5.100000 +384 623 5.100000 +384 685 5.100000 +384 687 5.100000 +384 717 5.100000 +384 772 5.100000 +384 776 5.100000 +384 801 5.100000 +384 874 5.100000 +384 945 5.100000 +384 977 5.100000 +384 1011 5.100000 +384 1061 5.100000 +384 1127 5.100000 +384 1136 5.100000 +384 1178 5.100000 +384 1309 5.100000 +384 1340 5.100000 +384 1427 5.100000 +384 1489 5.100000 +384 1514 5.100000 +384 1580 5.100000 +384 1667 5.100000 +384 1680 5.100000 +384 1694 5.100000 +384 1779 5.100000 +384 1904 5.100000 +384 1982 5.100000 +384 2054 5.100000 +384 2166 5.100000 +384 2174 5.100000 +384 2193 5.100000 +384 2213 5.100000 +384 2242 5.100000 +384 2322 5.100000 +384 2392 5.100000 +384 2516 5.100000 +384 2582 5.100000 +384 2606 5.100000 +384 2616 5.100000 +384 2649 5.100000 +384 2695 5.100000 +384 2712 5.100000 +384 2743 5.100000 +384 2823 5.100000 +384 3004 5.100000 +384 3019 5.100000 +384 3091 5.100000 +385 147 5.100000 +385 188 5.100000 +385 237 5.100000 +385 312 5.100000 +385 337 5.100000 +385 342 5.100000 +385 374 5.100000 +385 375 5.100000 +385 395 5.100000 +385 423 5.100000 +385 449 5.100000 +385 475 5.100000 +385 553 5.100000 +385 733 5.100000 +385 762 5.100000 +385 956 5.100000 +385 976 5.100000 +385 1030 5.100000 +385 1037 5.100000 +385 1041 5.100000 +385 1077 5.100000 +385 1245 5.100000 +385 1288 5.100000 +385 1329 5.100000 +385 1348 5.100000 +385 1408 5.100000 +385 1445 5.100000 +385 1485 5.100000 +385 1548 5.100000 +385 1637 5.100000 +385 1658 5.100000 +385 1700 5.100000 +385 1729 5.100000 +385 1770 5.100000 +385 1868 5.100000 +385 1910 5.100000 +385 1952 5.100000 +385 1953 5.100000 +385 2012 5.100000 +385 2051 5.100000 +385 2117 5.100000 +385 2153 5.100000 +385 2177 5.100000 +385 2183 5.100000 +385 2246 5.100000 +385 2304 5.100000 +385 2407 5.100000 +385 2448 5.100000 +385 2468 5.100000 +385 2570 5.100000 +385 2639 5.100000 +385 2682 5.100000 +385 2761 5.100000 +385 2793 5.100000 +385 2820 5.100000 +385 2859 5.100000 +385 2887 5.100000 +385 2894 5.100000 +385 2897 5.100000 +385 2963 5.100000 +385 2971 5.100000 +385 2985 5.100000 +385 2990 5.100000 +385 3058 5.100000 +385 3122 5.100000 +385 3124 5.100000 +385 3167 5.100000 +386 11 5.100000 +386 79 5.100000 +386 116 5.100000 +386 139 5.100000 +386 181 5.100000 +386 323 5.100000 +386 407 5.100000 +386 444 5.100000 +386 463 5.100000 +386 555 5.100000 +386 684 5.100000 +386 747 5.100000 +386 756 5.100000 +386 772 5.100000 +386 892 5.100000 +386 941 5.100000 +386 952 5.100000 +386 1090 5.100000 +386 1200 5.100000 +386 1206 5.100000 +386 1220 5.100000 +386 1254 5.100000 +386 1261 5.100000 +386 1316 5.100000 +386 1339 5.100000 +386 1378 5.100000 +386 1389 5.100000 +386 1492 5.100000 +386 1550 5.100000 +386 1554 5.100000 +386 1629 5.100000 +386 1743 5.100000 +386 1763 5.100000 +386 1838 5.100000 +386 1840 5.100000 +386 1870 5.100000 +386 1970 5.100000 +386 2148 5.100000 +386 2163 5.100000 +386 2211 5.100000 +386 2291 5.100000 +386 2310 5.100000 +386 2333 5.100000 +386 2423 5.100000 +386 2454 5.100000 +386 2495 5.100000 +386 2497 5.100000 +386 2591 5.100000 +386 2664 5.100000 +386 2713 5.100000 +386 2722 5.100000 +386 2835 5.100000 +386 2885 5.100000 +386 2934 5.100000 +386 2982 5.100000 +386 3022 5.100000 +387 14 5.100000 +387 46 5.100000 +387 171 5.100000 +387 283 5.100000 +387 314 5.100000 +387 331 5.100000 +387 422 5.100000 +387 435 5.100000 +387 459 5.100000 +387 466 5.100000 +387 487 5.100000 +387 610 5.100000 +387 783 5.100000 +387 874 5.100000 +387 891 5.100000 +387 932 5.100000 +387 1006 5.100000 +387 1082 5.100000 +387 1164 5.100000 +387 1179 5.100000 +387 1224 5.100000 +387 1275 5.100000 +387 1331 5.100000 +387 1376 5.100000 +387 1411 5.100000 +387 1504 5.100000 +387 1548 5.100000 +387 1640 5.100000 +387 1649 5.100000 +387 1750 5.100000 +387 1848 5.100000 +387 1932 5.100000 +387 1934 5.100000 +387 1937 5.100000 +387 2008 5.100000 +387 2015 5.100000 +387 2036 5.100000 +387 2045 5.100000 +387 2054 5.100000 +387 2176 5.100000 +387 2276 5.100000 +387 2280 5.100000 +387 2308 5.100000 +387 2371 5.100000 +387 2391 5.100000 +387 2521 5.100000 +387 2553 5.100000 +387 2662 5.100000 +387 2776 5.100000 +387 2874 5.100000 +387 2958 5.100000 +387 2994 5.100000 +387 3018 5.100000 +387 3049 5.100000 +387 3059 5.100000 +387 3081 5.100000 +387 3095 5.100000 +388 75 5.100000 +388 79 5.100000 +388 99 5.100000 +388 300 5.100000 +388 303 5.100000 +388 383 5.100000 +388 407 5.100000 +388 441 5.100000 +388 469 5.100000 +388 501 5.100000 +388 564 5.100000 +388 702 5.100000 +388 708 5.100000 +388 720 5.100000 +388 847 5.100000 +388 864 5.100000 +388 903 5.100000 +388 914 5.100000 +388 1027 5.100000 +388 1068 5.100000 +388 1097 5.100000 +388 1107 5.100000 +388 1173 5.100000 +388 1212 5.100000 +388 1235 5.100000 +388 1254 5.100000 +388 1269 5.100000 +388 1280 5.100000 +388 1308 5.100000 +388 1334 5.100000 +388 1420 5.100000 +388 1444 5.100000 +388 1515 5.100000 +388 1653 5.100000 +388 1671 5.100000 +388 1680 5.100000 +388 1703 5.100000 +388 1722 5.100000 +388 1763 5.100000 +388 1790 5.100000 +388 1830 5.100000 +388 1839 5.100000 +388 1881 5.100000 +388 1883 5.100000 +388 2047 5.100000 +388 2333 5.100000 +388 2352 5.100000 +388 2442 5.100000 +388 2450 5.100000 +388 2561 5.100000 +388 2577 5.100000 +388 2632 5.100000 +388 2667 5.100000 +388 2699 5.100000 +388 2802 5.100000 +388 2864 5.100000 +388 2919 5.100000 +388 2921 5.100000 +388 2987 5.100000 +388 3021 5.100000 +388 3052 5.100000 +388 3073 5.100000 +389 15 5.100000 +389 100 5.100000 +389 114 5.100000 +389 226 5.100000 +389 291 5.100000 +389 335 5.100000 +389 446 5.100000 +389 530 5.100000 +389 564 5.100000 +389 581 5.100000 +389 583 5.100000 +389 649 5.100000 +389 686 5.100000 +389 700 5.100000 +389 740 5.100000 +389 779 5.100000 +389 807 5.100000 +389 814 5.100000 +389 818 5.100000 +389 833 5.100000 +389 876 5.100000 +389 913 5.100000 +389 1007 5.100000 +389 1165 5.100000 +389 1200 5.100000 +389 1217 5.100000 +389 1287 5.100000 +389 1353 5.100000 +389 1374 5.100000 +389 1395 5.100000 +389 1439 5.100000 +389 1482 5.100000 +389 1613 5.100000 +389 1617 5.100000 +389 1640 5.100000 +389 1758 5.100000 +389 1764 5.100000 +389 1856 5.100000 +389 1909 5.100000 +389 1917 5.100000 +389 1999 5.100000 +389 2005 5.100000 +389 2057 5.100000 +389 2130 5.100000 +389 2149 5.100000 +389 2198 5.100000 +389 2231 5.100000 +389 2302 5.100000 +389 2590 5.100000 +389 2835 5.100000 +389 2880 5.100000 +389 2969 5.100000 +389 3033 5.100000 +389 3065 5.100000 +390 22 5.100000 +390 38 5.100000 +390 191 5.100000 +390 255 5.100000 +390 265 5.100000 +390 289 5.100000 +390 298 5.100000 +390 322 5.100000 +390 339 5.100000 +390 373 5.100000 +390 382 5.100000 +390 389 5.100000 +390 437 5.100000 +390 443 5.100000 +390 481 5.100000 +390 488 5.100000 +390 512 5.100000 +390 555 5.100000 +390 672 5.100000 +390 865 5.100000 +390 898 5.100000 +390 1154 5.100000 +390 1173 5.100000 +390 1218 5.100000 +390 1226 5.100000 +390 1231 5.100000 +390 1276 5.100000 +390 1308 5.100000 +390 1351 5.100000 +390 1479 5.100000 +390 1492 5.100000 +390 1573 5.100000 +390 1615 5.100000 +390 1673 5.100000 +390 1691 5.100000 +390 1703 5.100000 +390 1827 5.100000 +390 1929 5.100000 +390 2082 5.100000 +390 2127 5.100000 +390 2151 5.100000 +390 2186 5.100000 +390 2216 5.100000 +390 2281 5.100000 +390 2307 5.100000 +390 2414 5.100000 +390 2441 5.100000 +390 2447 5.100000 +390 2480 5.100000 +390 2615 5.100000 +390 2691 5.100000 +390 2711 5.100000 +390 2767 5.100000 +390 2788 5.100000 +390 2804 5.100000 +390 2806 5.100000 +390 2912 5.100000 +390 2953 5.100000 +390 2981 5.100000 +390 3044 5.100000 +390 3151 5.100000 +390 3171 5.100000 +391 57 5.100000 +391 140 5.100000 +391 176 5.100000 +391 272 5.100000 +391 301 5.100000 +391 327 5.100000 +391 357 5.100000 +391 362 5.100000 +391 368 5.100000 +391 467 5.100000 +391 475 5.100000 +391 506 5.100000 +391 588 5.100000 +391 618 5.100000 +391 645 5.100000 +391 704 5.100000 +391 711 5.100000 +391 799 5.100000 +391 843 5.100000 +391 941 5.100000 +391 986 5.100000 +391 1029 5.100000 +391 1043 5.100000 +391 1048 5.100000 +391 1070 5.100000 +391 1174 5.100000 +391 1210 5.100000 +391 1230 5.100000 +391 1283 5.100000 +391 1302 5.100000 +391 1334 5.100000 +391 1367 5.100000 +391 1388 5.100000 +391 1498 5.100000 +391 1504 5.100000 +391 1536 5.100000 +391 1588 5.100000 +391 1594 5.100000 +391 1637 5.100000 +391 1666 5.100000 +391 1687 5.100000 +391 1698 5.100000 +391 1711 5.100000 +391 1785 5.100000 +391 1844 5.100000 +391 1932 5.100000 +391 2008 5.100000 +391 2095 5.100000 +391 2118 5.100000 +391 2243 5.100000 +391 2255 5.100000 +391 2277 5.100000 +391 2313 5.100000 +391 2429 5.100000 +391 2455 5.100000 +391 2472 5.100000 +391 2480 5.100000 +391 2550 5.100000 +391 2648 5.100000 +391 2674 5.100000 +391 2695 5.100000 +391 2706 5.100000 +391 2728 5.100000 +391 2737 5.100000 +391 2822 5.100000 +391 2863 5.100000 +391 2868 5.100000 +391 2879 5.100000 +391 2931 5.100000 +391 3010 5.100000 +391 3013 5.100000 +391 3074 5.100000 +391 3143 5.100000 +391 3158 5.100000 +392 100 5.100000 +392 158 5.100000 +392 172 5.100000 +392 245 5.100000 +392 285 5.100000 +392 407 5.100000 +392 409 5.100000 +392 439 5.100000 +392 484 5.100000 +392 486 5.100000 +392 546 5.100000 +392 571 5.100000 +392 591 5.100000 +392 723 5.100000 +392 801 5.100000 +392 890 5.100000 +392 901 5.100000 +392 1025 5.100000 +392 1062 5.100000 +392 1110 5.100000 +392 1136 5.100000 +392 1469 5.100000 +392 1479 5.100000 +392 1507 5.100000 +392 1522 5.100000 +392 1620 5.100000 +392 1624 5.100000 +392 1628 5.100000 +392 1700 5.100000 +392 1820 5.100000 +392 1982 5.100000 +392 2002 5.100000 +392 2056 5.100000 +392 2198 5.100000 +392 2205 5.100000 +392 2267 5.100000 +392 2285 5.100000 +392 2451 5.100000 +392 2598 5.100000 +392 2740 5.100000 +392 2789 5.100000 +392 2800 5.100000 +392 2801 5.100000 +392 2828 5.100000 +392 3182 5.100000 +393 26 5.100000 +393 105 5.100000 +393 179 5.100000 +393 181 5.100000 +393 380 5.100000 +393 389 5.100000 +393 396 5.100000 +393 587 5.100000 +393 598 5.100000 +393 602 5.100000 +393 609 5.100000 +393 628 5.100000 +393 634 5.100000 +393 641 5.100000 +393 650 5.100000 +393 696 5.100000 +393 708 5.100000 +393 719 5.100000 +393 742 5.100000 +393 744 5.100000 +393 753 5.100000 +393 775 5.100000 +393 795 5.100000 +393 829 5.100000 +393 843 5.100000 +393 858 5.100000 +393 875 5.100000 +393 929 5.100000 +393 947 5.100000 +393 965 5.100000 +393 1106 5.100000 +393 1182 5.100000 +393 1205 5.100000 +393 1337 5.100000 +393 1397 5.100000 +393 1574 5.100000 +393 1590 5.100000 +393 1628 5.100000 +393 1650 5.100000 +393 1733 5.100000 +393 1734 5.100000 +393 1776 5.100000 +393 1819 5.100000 +393 1882 5.100000 +393 1918 5.100000 +393 1987 5.100000 +393 2068 5.100000 +393 2112 5.100000 +393 2220 5.100000 +393 2242 5.100000 +393 2306 5.100000 +393 2404 5.100000 +393 2441 5.100000 +393 2632 5.100000 +393 2690 5.100000 +393 2769 5.100000 +393 2770 5.100000 +393 2790 5.100000 +393 2794 5.100000 +393 2947 5.100000 +393 2950 5.100000 +393 3104 5.100000 +393 3139 5.100000 +393 3199 5.100000 +394 7 5.100000 +394 19 5.100000 +394 43 5.100000 +394 167 5.100000 +394 190 5.100000 +394 262 5.100000 +394 280 5.100000 +394 309 5.100000 +394 361 5.100000 +394 373 5.100000 +394 466 5.100000 +394 541 5.100000 +394 552 5.100000 +394 556 5.100000 +394 594 5.100000 +394 909 5.100000 +394 975 5.100000 +394 984 5.100000 +394 1020 5.100000 +394 1081 5.100000 +394 1109 5.100000 +394 1200 5.100000 +394 1220 5.100000 +394 1242 5.100000 +394 1332 5.100000 +394 1334 5.100000 +394 1385 5.100000 +394 1442 5.100000 +394 1474 5.100000 +394 1663 5.100000 +394 1668 5.100000 +394 1675 5.100000 +394 1757 5.100000 +394 1888 5.100000 +394 1914 5.100000 +394 1923 5.100000 +394 2016 5.100000 +394 2056 5.100000 +394 2120 5.100000 +394 2132 5.100000 +394 2200 5.100000 +394 2221 5.100000 +394 2234 5.100000 +394 2291 5.100000 +394 2295 5.100000 +394 2409 5.100000 +394 2430 5.100000 +394 2449 5.100000 +394 2533 5.100000 +394 2679 5.100000 +394 2680 5.100000 +394 2682 5.100000 +394 2738 5.100000 +394 2759 5.100000 +394 2896 5.100000 +394 2903 5.100000 +394 2937 5.100000 +394 2938 5.100000 +394 3003 5.100000 +394 3160 5.100000 +395 113 5.100000 +395 152 5.100000 +395 206 5.100000 +395 247 5.100000 +395 274 5.100000 +395 339 5.100000 +395 353 5.100000 +395 391 5.100000 +395 479 5.100000 +395 495 5.100000 +395 555 5.100000 +395 589 5.100000 +395 591 5.100000 +395 657 5.100000 +395 671 5.100000 +395 728 5.100000 +395 745 5.100000 +395 804 5.100000 +395 812 5.100000 +395 862 5.100000 +395 884 5.100000 +395 1035 5.100000 +395 1041 5.100000 +395 1059 5.100000 +395 1063 5.100000 +395 1084 5.100000 +395 1095 5.100000 +395 1109 5.100000 +395 1124 5.100000 +395 1127 5.100000 +395 1166 5.100000 +395 1260 5.100000 +395 1278 5.100000 +395 1300 5.100000 +395 1312 5.100000 +395 1378 5.100000 +395 1387 5.100000 +395 1470 5.100000 +395 1475 5.100000 +395 1484 5.100000 +395 1493 5.100000 +395 1502 5.100000 +395 1567 5.100000 +395 1578 5.100000 +395 1605 5.100000 +395 1836 5.100000 +395 1932 5.100000 +395 1988 5.100000 +395 2106 5.100000 +395 2147 5.100000 +395 2154 5.100000 +395 2163 5.100000 +395 2235 5.100000 +395 2303 5.100000 +395 2321 5.100000 +395 2354 5.100000 +395 2379 5.100000 +395 2599 5.100000 +395 2865 5.100000 +395 2908 5.100000 +395 2987 5.100000 +395 2988 5.100000 +395 3070 5.100000 +395 3089 5.100000 +395 3190 5.100000 +396 58 5.100000 +396 312 5.100000 +396 362 5.100000 +396 467 5.100000 +396 531 5.100000 +396 572 5.100000 +396 579 5.100000 +396 593 5.100000 +396 635 5.100000 +396 647 5.100000 +396 670 5.100000 +396 693 5.100000 +396 727 5.100000 +396 782 5.100000 +396 820 5.100000 +396 821 5.100000 +396 828 5.100000 +396 856 5.100000 +396 901 5.100000 +396 938 5.100000 +396 942 5.100000 +396 1006 5.100000 +396 1067 5.100000 +396 1111 5.100000 +396 1130 5.100000 +396 1170 5.100000 +396 1227 5.100000 +396 1254 5.100000 +396 1264 5.100000 +396 1418 5.100000 +396 1472 5.100000 +396 1500 5.100000 +396 1505 5.100000 +396 1571 5.100000 +396 1638 5.100000 +396 1723 5.100000 +396 1739 5.100000 +396 1752 5.100000 +396 1867 5.100000 +396 1886 5.100000 +396 1969 5.100000 +396 2007 5.100000 +396 2139 5.100000 +396 2165 5.100000 +396 2210 5.100000 +396 2238 5.100000 +396 2289 5.100000 +396 2325 5.100000 +396 2355 5.100000 +396 2369 5.100000 +396 2389 5.100000 +396 2444 5.100000 +396 2478 5.100000 +396 2624 5.100000 +396 2717 5.100000 +396 2734 5.100000 +396 2766 5.100000 +396 2790 5.100000 +396 2834 5.100000 +396 2902 5.100000 +396 2911 5.100000 +396 2914 5.100000 +396 2925 5.100000 +396 3039 5.100000 +396 3080 5.100000 +396 3106 5.100000 +396 3115 5.100000 +396 3143 5.100000 +397 7 5.100000 +397 36 5.100000 +397 44 5.100000 +397 117 5.100000 +397 136 5.100000 +397 194 5.100000 +397 318 5.100000 +397 381 5.100000 +397 419 5.100000 +397 445 5.100000 +397 447 5.100000 +397 464 5.100000 +397 496 5.100000 +397 551 5.100000 +397 632 5.100000 +397 654 5.100000 +397 677 5.100000 +397 681 5.100000 +397 741 5.100000 +397 792 5.100000 +397 852 5.100000 +397 880 5.100000 +397 911 5.100000 +397 928 5.100000 +397 1059 5.100000 +397 1075 5.100000 +397 1183 5.100000 +397 1386 5.100000 +397 1443 5.100000 +397 1502 5.100000 +397 1523 5.100000 +397 1551 5.100000 +397 1570 5.100000 +397 1700 5.100000 +397 1747 5.100000 +397 1754 5.100000 +397 1805 5.100000 +397 1808 5.100000 +397 1840 5.100000 +397 1854 5.100000 +397 1887 5.100000 +397 1911 5.100000 +397 2065 5.100000 +397 2102 5.100000 +397 2105 5.100000 +397 2136 5.100000 +397 2196 5.100000 +397 2282 5.100000 +397 2288 5.100000 +397 2303 5.100000 +397 2402 5.100000 +397 2414 5.100000 +397 2506 5.100000 +397 2520 5.100000 +397 2636 5.100000 +397 2735 5.100000 +397 2814 5.100000 +397 2848 5.100000 +397 3010 5.100000 +397 3020 5.100000 +397 3030 5.100000 +397 3121 5.100000 +398 1 5.100000 +398 17 5.100000 +398 47 5.100000 +398 89 5.100000 +398 95 5.100000 +398 156 5.100000 +398 164 5.100000 +398 181 5.100000 +398 232 5.100000 +398 243 5.100000 +398 403 5.100000 +398 478 5.100000 +398 525 5.100000 +398 535 5.100000 +398 563 5.100000 +398 870 5.100000 +398 890 5.100000 +398 900 5.100000 +398 934 5.100000 +398 955 5.100000 +398 987 5.100000 +398 1054 5.100000 +398 1055 5.100000 +398 1147 5.100000 +398 1270 5.100000 +398 1432 5.100000 +398 1466 5.100000 +398 1470 5.100000 +398 1484 5.100000 +398 1528 5.100000 +398 1587 5.100000 +398 1637 5.100000 +398 1799 5.100000 +398 1827 5.100000 +398 1849 5.100000 +398 1863 5.100000 +398 2009 5.100000 +398 2034 5.100000 +398 2048 5.100000 +398 2077 5.100000 +398 2167 5.100000 +398 2404 5.100000 +398 2445 5.100000 +398 2469 5.100000 +398 2471 5.100000 +398 2553 5.100000 +398 2566 5.100000 +398 2604 5.100000 +398 2614 5.100000 +398 2621 5.100000 +398 2662 5.100000 +398 2684 5.100000 +398 2767 5.100000 +398 2878 5.100000 +398 3091 5.100000 +399 93 5.100000 +399 95 5.100000 +399 143 5.100000 +399 229 5.100000 +399 362 5.100000 +399 367 5.100000 +399 458 5.100000 +399 504 5.100000 +399 529 5.100000 +399 587 5.100000 +399 625 5.100000 +399 705 5.100000 +399 706 5.100000 +399 786 5.100000 +399 788 5.100000 +399 822 5.100000 +399 886 5.100000 +399 903 5.100000 +399 918 5.100000 +399 963 5.100000 +399 992 5.100000 +399 1022 5.100000 +399 1035 5.100000 +399 1059 5.100000 +399 1197 5.100000 +399 1316 5.100000 +399 1369 5.100000 +399 1377 5.100000 +399 1433 5.100000 +399 1552 5.100000 +399 1590 5.100000 +399 1644 5.100000 +399 1670 5.100000 +399 1782 5.100000 +399 1793 5.100000 +399 1815 5.100000 +399 1859 5.100000 +399 1997 5.100000 +399 2038 5.100000 +399 2046 5.100000 +399 2202 5.100000 +399 2233 5.100000 +399 2247 5.100000 +399 2404 5.100000 +399 2473 5.100000 +399 2515 5.100000 +399 2540 5.100000 +399 2545 5.100000 +399 2559 5.100000 +399 2560 5.100000 +399 2632 5.100000 +399 2665 5.100000 +399 2716 5.100000 +399 2744 5.100000 +399 2841 5.100000 +399 2863 5.100000 +399 2913 5.100000 +399 2942 5.100000 +399 2966 5.100000 +399 3021 5.100000 +399 3022 5.100000 +399 3057 5.100000 +399 3069 5.100000 +399 3100 5.100000 +399 3135 5.100000 +399 3151 5.100000 +400 3 5.100000 +400 44 5.100000 +400 126 5.100000 +400 214 5.100000 +400 223 5.100000 +400 228 5.100000 +400 241 5.100000 +400 260 5.100000 +400 261 5.100000 +400 364 5.100000 +400 379 5.100000 +400 468 5.100000 +400 477 5.100000 +400 479 5.100000 +400 679 5.100000 +400 689 5.100000 +400 738 5.100000 +400 890 5.100000 +400 958 5.100000 +400 990 5.100000 +400 993 5.100000 +400 1019 5.100000 +400 1084 5.100000 +400 1085 5.100000 +400 1184 5.100000 +400 1225 5.100000 +400 1236 5.100000 +400 1249 5.100000 +400 1479 5.100000 +400 1521 5.100000 +400 1541 5.100000 +400 1665 5.100000 +400 1683 5.100000 +400 1751 5.100000 +400 1761 5.100000 +400 1778 5.100000 +400 1858 5.100000 +400 1881 5.100000 +400 1885 5.100000 +400 1927 5.100000 +400 1949 5.100000 +400 2017 5.100000 +400 2019 5.100000 +400 2029 5.100000 +400 2066 5.100000 +400 2093 5.100000 +400 2098 5.100000 +400 2206 5.100000 +400 2238 5.100000 +400 2396 5.100000 +400 2447 5.100000 +400 2501 5.100000 +400 2508 5.100000 +400 2557 5.100000 +400 2717 5.100000 +400 2800 5.100000 +400 2825 5.100000 +400 2835 5.100000 +400 2863 5.100000 +400 2868 5.100000 +400 2897 5.100000 +400 2960 5.100000 +400 3012 5.100000 +400 3027 5.100000 +400 3048 5.100000 +400 3075 5.100000 +400 3083 5.100000 +400 3086 5.100000 +400 3140 5.100000 +400 3194 5.100000 +401 82 5.100000 +401 113 5.100000 +401 180 5.100000 +401 197 5.100000 +401 291 5.100000 +401 292 5.100000 +401 331 5.100000 +401 341 5.100000 +401 477 5.100000 +401 490 5.100000 +401 524 5.100000 +401 639 5.100000 +401 685 5.100000 +401 716 5.100000 +401 740 5.100000 +401 749 5.100000 +401 761 5.100000 +401 824 5.100000 +401 848 5.100000 +401 974 5.100000 +401 1049 5.100000 +401 1083 5.100000 +401 1336 5.100000 +401 1423 5.100000 +401 1482 5.100000 +401 1515 5.100000 +401 1521 5.100000 +401 1543 5.100000 +401 1578 5.100000 +401 1588 5.100000 +401 1748 5.100000 +401 1853 5.100000 +401 1855 5.100000 +401 1908 5.100000 +401 1924 5.100000 +401 2022 5.100000 +401 2031 5.100000 +401 2160 5.100000 +401 2186 5.100000 +401 2202 5.100000 +401 2207 5.100000 +401 2415 5.100000 +401 2564 5.100000 +401 2580 5.100000 +401 2713 5.100000 +401 2714 5.100000 +401 2735 5.100000 +401 2764 5.100000 +401 2797 5.100000 +401 3018 5.100000 +401 3073 5.100000 +401 3082 5.100000 +402 33 5.100000 +402 99 5.100000 +402 258 5.100000 +402 281 5.100000 +402 349 5.100000 +402 357 5.100000 +402 423 5.100000 +402 511 5.100000 +402 569 5.100000 +402 696 5.100000 +402 700 5.100000 +402 776 5.100000 +402 870 5.100000 +402 914 5.100000 +402 961 5.100000 +402 977 5.100000 +402 1140 5.100000 +402 1174 5.100000 +402 1224 5.100000 +402 1267 5.100000 +402 1459 5.100000 +402 1507 5.100000 +402 1938 5.100000 +402 1942 5.100000 +402 1956 5.100000 +402 2000 5.100000 +402 2100 5.100000 +402 2104 5.100000 +402 2237 5.100000 +402 2285 5.100000 +402 2328 5.100000 +402 2334 5.100000 +402 2382 5.100000 +402 2433 5.100000 +402 2487 5.100000 +402 2504 5.100000 +402 2559 5.100000 +402 2641 5.100000 +402 2873 5.100000 +402 2962 5.100000 +402 3048 5.100000 +402 3091 5.100000 +402 3181 5.100000 +403 71 5.100000 +403 106 5.100000 +403 138 5.100000 +403 164 5.100000 +403 431 5.100000 +403 448 5.100000 +403 499 5.100000 +403 529 5.100000 +403 578 5.100000 +403 622 5.100000 +403 733 5.100000 +403 759 5.100000 +403 777 5.100000 +403 869 5.100000 +403 906 5.100000 +403 1069 5.100000 +403 1119 5.100000 +403 1252 5.100000 +403 1266 5.100000 +403 1369 5.100000 +403 1400 5.100000 +403 1462 5.100000 +403 1543 5.100000 +403 1602 5.100000 +403 1627 5.100000 +403 1681 5.100000 +403 1800 5.100000 +403 1836 5.100000 +403 1837 5.100000 +403 1856 5.100000 +403 1859 5.100000 +403 1947 5.100000 +403 1973 5.100000 +403 2058 5.100000 +403 2123 5.100000 +403 2185 5.100000 +403 2200 5.100000 +403 2230 5.100000 +403 2273 5.100000 +403 2274 5.100000 +403 2332 5.100000 +403 2348 5.100000 +403 2491 5.100000 +403 2577 5.100000 +403 2607 5.100000 +403 2715 5.100000 +403 2724 5.100000 +403 2786 5.100000 +403 2793 5.100000 +403 2824 5.100000 +403 3180 5.100000 +404 25 5.100000 +404 71 5.100000 +404 106 5.100000 +404 125 5.100000 +404 130 5.100000 +404 165 5.100000 +404 244 5.100000 +404 308 5.100000 +404 429 5.100000 +404 466 5.100000 +404 488 5.100000 +404 547 5.100000 +404 553 5.100000 +404 557 5.100000 +404 629 5.100000 +404 645 5.100000 +404 665 5.100000 +404 703 5.100000 +404 751 5.100000 +404 759 5.100000 +404 777 5.100000 +404 822 5.100000 +404 901 5.100000 +404 949 5.100000 +404 960 5.100000 +404 1055 5.100000 +404 1084 5.100000 +404 1205 5.100000 +404 1222 5.100000 +404 1318 5.100000 +404 1320 5.100000 +404 1492 5.100000 +404 1508 5.100000 +404 1557 5.100000 +404 1638 5.100000 +404 1784 5.100000 +404 1817 5.100000 +404 1937 5.100000 +404 2077 5.100000 +404 2128 5.100000 +404 2157 5.100000 +404 2375 5.100000 +404 2387 5.100000 +404 2481 5.100000 +404 2487 5.100000 +404 2536 5.100000 +404 2561 5.100000 +404 2598 5.100000 +404 2613 5.100000 +404 2622 5.100000 +404 2640 5.100000 +404 2668 5.100000 +404 2787 5.100000 +404 2841 5.100000 +404 2902 5.100000 +404 2911 5.100000 +404 2930 5.100000 +404 2966 5.100000 +404 2990 5.100000 +404 2999 5.100000 +404 3015 5.100000 +404 3078 5.100000 +404 3086 5.100000 +404 3118 5.100000 +405 9 5.100000 +405 22 5.100000 +405 53 5.100000 +405 56 5.100000 +405 104 5.100000 +405 192 5.100000 +405 210 5.100000 +405 229 5.100000 +405 234 5.100000 +405 263 5.100000 +405 280 5.100000 +405 347 5.100000 +405 468 5.100000 +405 491 5.100000 +405 518 5.100000 +405 690 5.100000 +405 720 5.100000 +405 751 5.100000 +405 826 5.100000 +405 850 5.100000 +405 889 5.100000 +405 904 5.100000 +405 973 5.100000 +405 1079 5.100000 +405 1123 5.100000 +405 1214 5.100000 +405 1217 5.100000 +405 1252 5.100000 +405 1254 5.100000 +405 1351 5.100000 +405 1353 5.100000 +405 1403 5.100000 +405 1761 5.100000 +405 1762 5.100000 +405 1777 5.100000 +405 2107 5.100000 +405 2120 5.100000 +405 2199 5.100000 +405 2206 5.100000 +405 2215 5.100000 +405 2229 5.100000 +405 2248 5.100000 +405 2372 5.100000 +405 2395 5.100000 +405 2397 5.100000 +405 2416 5.100000 +405 2447 5.100000 +405 2460 5.100000 +405 2466 5.100000 +405 2496 5.100000 +405 2571 5.100000 +405 2637 5.100000 +405 2649 5.100000 +405 2670 5.100000 +405 2739 5.100000 +405 2765 5.100000 +405 2796 5.100000 +405 2820 5.100000 +405 2960 5.100000 +405 3043 5.100000 +405 3118 5.100000 +406 23 5.100000 +406 46 5.100000 +406 81 5.100000 +406 97 5.100000 +406 139 5.100000 +406 206 5.100000 +406 275 5.100000 +406 282 5.100000 +406 339 5.100000 +406 443 5.100000 +406 606 5.100000 +406 633 5.100000 +406 642 5.100000 +406 743 5.100000 +406 853 5.100000 +406 875 5.100000 +406 954 5.100000 +406 962 5.100000 +406 977 5.100000 +406 996 5.100000 +406 1007 5.100000 +406 1187 5.100000 +406 1286 5.100000 +406 1292 5.100000 +406 1321 5.100000 +406 1385 5.100000 +406 1406 5.100000 +406 1471 5.100000 +406 1478 5.100000 +406 1494 5.100000 +406 1506 5.100000 +406 1517 5.100000 +406 1536 5.100000 +406 1615 5.100000 +406 1621 5.100000 +406 1624 5.100000 +406 1628 5.100000 +406 1635 5.100000 +406 1775 5.100000 +406 1794 5.100000 +406 1822 5.100000 +406 1825 5.100000 +406 1835 5.100000 +406 1945 5.100000 +406 2100 5.100000 +406 2111 5.100000 +406 2213 5.100000 +406 2273 5.100000 +406 2374 5.100000 +406 2389 5.100000 +406 2419 5.100000 +406 2455 5.100000 +406 2570 5.100000 +406 2714 5.100000 +406 2754 5.100000 +406 2761 5.100000 +406 2823 5.100000 +406 2842 5.100000 +406 2938 5.100000 +406 3007 5.100000 +406 3137 5.100000 +406 3175 5.100000 +406 3196 5.100000 +407 63 5.100000 +407 76 5.100000 +407 176 5.100000 +407 234 5.100000 +407 246 5.100000 +407 377 5.100000 +407 419 5.100000 +407 423 5.100000 +407 441 5.100000 +407 621 5.100000 +407 638 5.100000 +407 646 5.100000 +407 759 5.100000 +407 764 5.100000 +407 811 5.100000 +407 852 5.100000 +407 863 5.100000 +407 875 5.100000 +407 946 5.100000 +407 1006 5.100000 +407 1221 5.100000 +407 1302 5.100000 +407 1340 5.100000 +407 1345 5.100000 +407 1371 5.100000 +407 1397 5.100000 +407 1400 5.100000 +407 1433 5.100000 +407 1490 5.100000 +407 1559 5.100000 +407 1574 5.100000 +407 1743 5.100000 +407 1775 5.100000 +407 1828 5.100000 +407 1934 5.100000 +407 1942 5.100000 +407 1976 5.100000 +407 2098 5.100000 +407 2103 5.100000 +407 2114 5.100000 +407 2165 5.100000 +407 2168 5.100000 +407 2174 5.100000 +407 2269 5.100000 +407 2314 5.100000 +407 2386 5.100000 +407 2389 5.100000 +407 2434 5.100000 +407 2451 5.100000 +407 2469 5.100000 +407 2549 5.100000 +407 2552 5.100000 +407 2579 5.100000 +407 2601 5.100000 +407 2614 5.100000 +407 2637 5.100000 +407 2708 5.100000 +407 2773 5.100000 +407 2824 5.100000 +407 2869 5.100000 +407 2894 5.100000 +407 2985 5.100000 +407 3002 5.100000 +407 3055 5.100000 +407 3058 5.100000 +407 3063 5.100000 +407 3167 5.100000 +407 3193 5.100000 +408 8 5.100000 +408 19 5.100000 +408 58 5.100000 +408 94 5.100000 +408 97 5.100000 +408 116 5.100000 +408 117 5.100000 +408 125 5.100000 +408 127 5.100000 +408 175 5.100000 +408 246 5.100000 +408 296 5.100000 +408 325 5.100000 +408 344 5.100000 +408 377 5.100000 +408 402 5.100000 +408 440 5.100000 +408 450 5.100000 +408 513 5.100000 +408 537 5.100000 +408 675 5.100000 +408 730 5.100000 +408 748 5.100000 +408 785 5.100000 +408 802 5.100000 +408 808 5.100000 +408 838 5.100000 +408 907 5.100000 +408 910 5.100000 +408 917 5.100000 +408 1052 5.100000 +408 1053 5.100000 +408 1054 5.100000 +408 1087 5.100000 +408 1093 5.100000 +408 1244 5.100000 +408 1309 5.100000 +408 1353 5.100000 +408 1459 5.100000 +408 1500 5.100000 +408 1518 5.100000 +408 1519 5.100000 +408 1521 5.100000 +408 1535 5.100000 +408 1745 5.100000 +408 1762 5.100000 +408 1766 5.100000 +408 1808 5.100000 +408 1814 5.100000 +408 1884 5.100000 +408 1885 5.100000 +408 2011 5.100000 +408 2038 5.100000 +408 2145 5.100000 +408 2232 5.100000 +408 2265 5.100000 +408 2390 5.100000 +408 2392 5.100000 +408 2400 5.100000 +408 2419 5.100000 +408 2494 5.100000 +408 2571 5.100000 +408 2601 5.100000 +408 2629 5.100000 +408 2631 5.100000 +408 2683 5.100000 +408 2725 5.100000 +408 2726 5.100000 +408 2771 5.100000 +408 2799 5.100000 +408 2840 5.100000 +408 2991 5.100000 +408 3034 5.100000 +408 3084 5.100000 +408 3091 5.100000 +408 3115 5.100000 +408 3143 5.100000 +408 3150 5.100000 +408 3176 5.100000 +408 3180 5.100000 +409 39 5.100000 +409 45 5.100000 +409 120 5.100000 +409 133 5.100000 +409 187 5.100000 +409 198 5.100000 +409 209 5.100000 +409 265 5.100000 +409 300 5.100000 +409 356 5.100000 +409 398 5.100000 +409 447 5.100000 +409 500 5.100000 +409 623 5.100000 +409 648 5.100000 +409 687 5.100000 +409 788 5.100000 +409 920 5.100000 +409 953 5.100000 +409 1116 5.100000 +409 1160 5.100000 +409 1165 5.100000 +409 1168 5.100000 +409 1277 5.100000 +409 1282 5.100000 +409 1295 5.100000 +409 1301 5.100000 +409 1349 5.100000 +409 1360 5.100000 +409 1497 5.100000 +409 1504 5.100000 +409 1510 5.100000 +409 1663 5.100000 +409 1665 5.100000 +409 1689 5.100000 +409 1749 5.100000 +409 1783 5.100000 +409 1806 5.100000 +409 1807 5.100000 +409 1865 5.100000 +409 1880 5.100000 +409 2011 5.100000 +409 2071 5.100000 +409 2119 5.100000 +409 2139 5.100000 +409 2155 5.100000 +409 2166 5.100000 +409 2235 5.100000 +409 2294 5.100000 +409 2344 5.100000 +409 2367 5.100000 +409 2389 5.100000 +409 2405 5.100000 +409 2408 5.100000 +409 2415 5.100000 +409 2430 5.100000 +409 2452 5.100000 +409 2542 5.100000 +409 2620 5.100000 +409 2899 5.100000 +409 3038 5.100000 +409 3039 5.100000 +409 3044 5.100000 +409 3187 5.100000 +410 116 5.100000 +410 165 5.100000 +410 259 5.100000 +410 520 5.100000 +410 522 5.100000 +410 618 5.100000 +410 633 5.100000 +410 645 5.100000 +410 698 5.100000 +410 716 5.100000 +410 781 5.100000 +410 842 5.100000 +410 857 5.100000 +410 894 5.100000 +410 973 5.100000 +410 982 5.100000 +410 1005 5.100000 +410 1177 5.100000 +410 1185 5.100000 +410 1247 5.100000 +410 1280 5.100000 +410 1426 5.100000 +410 1450 5.100000 +410 1453 5.100000 +410 1549 5.100000 +410 1652 5.100000 +410 1673 5.100000 +410 1678 5.100000 +410 1693 5.100000 +410 1710 5.100000 +410 1789 5.100000 +410 1940 5.100000 +410 2025 5.100000 +410 2356 5.100000 +410 2404 5.100000 +410 2444 5.100000 +410 2456 5.100000 +410 2471 5.100000 +410 2474 5.100000 +410 2494 5.100000 +410 2585 5.100000 +410 2700 5.100000 +410 2750 5.100000 +410 2779 5.100000 +410 2819 5.100000 +410 2839 5.100000 +410 2847 5.100000 +410 2967 5.100000 +410 3016 5.100000 +410 3102 5.100000 +410 3121 5.100000 +410 3127 5.100000 +410 3141 5.100000 +411 12 5.100000 +411 13 5.100000 +411 20 5.100000 +411 71 5.100000 +411 72 5.100000 +411 80 5.100000 +411 126 5.100000 +411 146 5.100000 +411 157 5.100000 +411 179 5.100000 +411 203 5.100000 +411 251 5.100000 +411 303 5.100000 +411 310 5.100000 +411 362 5.100000 +411 520 5.100000 +411 521 5.100000 +411 589 5.100000 +411 638 5.100000 +411 670 5.100000 +411 677 5.100000 +411 688 5.100000 +411 700 5.100000 +411 819 5.100000 +411 865 5.100000 +411 913 5.100000 +411 960 5.100000 +411 974 5.100000 +411 1113 5.100000 +411 1127 5.100000 +411 1155 5.100000 +411 1232 5.100000 +411 1380 5.100000 +411 1407 5.100000 +411 1459 5.100000 +411 1461 5.100000 +411 1597 5.100000 +411 1643 5.100000 +411 1659 5.100000 +411 1746 5.100000 +411 1863 5.100000 +411 1931 5.100000 +411 1939 5.100000 +411 2086 5.100000 +411 2095 5.100000 +411 2105 5.100000 +411 2156 5.100000 +411 2159 5.100000 +411 2248 5.100000 +411 2302 5.100000 +411 2405 5.100000 +411 2483 5.100000 +411 2578 5.100000 +411 2590 5.100000 +411 2594 5.100000 +411 2621 5.100000 +411 2757 5.100000 +411 3081 5.100000 +411 3110 5.100000 +411 3135 5.100000 +411 3163 5.100000 +412 11 5.100000 +412 116 5.100000 +412 132 5.100000 +412 208 5.100000 +412 250 5.100000 +412 271 5.100000 +412 292 5.100000 +412 320 5.100000 +412 323 5.100000 +412 336 5.100000 +412 507 5.100000 +412 527 5.100000 +412 577 5.100000 +412 698 5.100000 +412 769 5.100000 +412 788 5.100000 +412 804 5.100000 +412 850 5.100000 +412 873 5.100000 +412 959 5.100000 +412 1000 5.100000 +412 1002 5.100000 +412 1004 5.100000 +412 1078 5.100000 +412 1087 5.100000 +412 1112 5.100000 +412 1208 5.100000 +412 1264 5.100000 +412 1273 5.100000 +412 1308 5.100000 +412 1316 5.100000 +412 1491 5.100000 +412 1501 5.100000 +412 1560 5.100000 +412 1561 5.100000 +412 1597 5.100000 +412 1685 5.100000 +412 1708 5.100000 +412 1846 5.100000 +412 1863 5.100000 +412 1872 5.100000 +412 1940 5.100000 +412 1992 5.100000 +412 1993 5.100000 +412 1996 5.100000 +412 2006 5.100000 +412 2044 5.100000 +412 2133 5.100000 +412 2154 5.100000 +412 2205 5.100000 +412 2242 5.100000 +412 2248 5.100000 +412 2326 5.100000 +412 2377 5.100000 +412 2421 5.100000 +412 2514 5.100000 +412 2531 5.100000 +412 2591 5.100000 +412 2867 5.100000 +412 2871 5.100000 +412 2908 5.100000 +412 2950 5.100000 +412 2979 5.100000 +412 3062 5.100000 +412 3126 5.100000 +413 75 5.100000 +413 138 5.100000 +413 177 5.100000 +413 194 5.100000 +413 237 5.100000 +413 267 5.100000 +413 271 5.100000 +413 289 5.100000 +413 357 5.100000 +413 391 5.100000 +413 396 5.100000 +413 399 5.100000 +413 410 5.100000 +413 416 5.100000 +413 425 5.100000 +413 461 5.100000 +413 470 5.100000 +413 543 5.100000 +413 594 5.100000 +413 605 5.100000 +413 668 5.100000 +413 693 5.100000 +413 698 5.100000 +413 716 5.100000 +413 758 5.100000 +413 772 5.100000 +413 833 5.100000 +413 899 5.100000 +413 901 5.100000 +413 942 5.100000 +413 991 5.100000 +413 1010 5.100000 +413 1043 5.100000 +413 1146 5.100000 +413 1147 5.100000 +413 1152 5.100000 +413 1418 5.100000 +413 1467 5.100000 +413 1482 5.100000 +413 1580 5.100000 +413 1594 5.100000 +413 1626 5.100000 +413 1642 5.100000 +413 1661 5.100000 +413 1730 5.100000 +413 1757 5.100000 +413 1771 5.100000 +413 1779 5.100000 +413 1910 5.100000 +413 1944 5.100000 +413 1955 5.100000 +413 1971 5.100000 +413 1994 5.100000 +413 2036 5.100000 +413 2082 5.100000 +413 2113 5.100000 +413 2142 5.100000 +413 2147 5.100000 +413 2310 5.100000 +413 2361 5.100000 +413 2499 5.100000 +413 2511 5.100000 +413 2516 5.100000 +413 2619 5.100000 +413 2637 5.100000 +413 2676 5.100000 +413 2775 5.100000 +413 2819 5.100000 +413 2848 5.100000 +413 2858 5.100000 +413 2966 5.100000 +413 3018 5.100000 +413 3037 5.100000 +413 3144 5.100000 +414 32 5.100000 +414 64 5.100000 +414 126 5.100000 +414 127 5.100000 +414 364 5.100000 +414 395 5.100000 +414 498 5.100000 +414 596 5.100000 +414 622 5.100000 +414 709 5.100000 +414 736 5.100000 +414 754 5.100000 +414 759 5.100000 +414 852 5.100000 +414 865 5.100000 +414 866 5.100000 +414 881 5.100000 +414 985 5.100000 +414 1118 5.100000 +414 1197 5.100000 +414 1217 5.100000 +414 1245 5.100000 +414 1279 5.100000 +414 1285 5.100000 +414 1370 5.100000 +414 1394 5.100000 +414 1440 5.100000 +414 1448 5.100000 +414 1484 5.100000 +414 1493 5.100000 +414 1496 5.100000 +414 1554 5.100000 +414 1649 5.100000 +414 1764 5.100000 +414 1829 5.100000 +414 1858 5.100000 +414 1945 5.100000 +414 1946 5.100000 +414 2065 5.100000 +414 2078 5.100000 +414 2098 5.100000 +414 2154 5.100000 +414 2198 5.100000 +414 2470 5.100000 +414 2529 5.100000 +414 2571 5.100000 +414 2581 5.100000 +414 2618 5.100000 +414 2620 5.100000 +414 2630 5.100000 +414 2657 5.100000 +414 2672 5.100000 +414 2721 5.100000 +414 2749 5.100000 +414 2762 5.100000 +414 2765 5.100000 +414 2802 5.100000 +414 2838 5.100000 +414 2880 5.100000 +414 2944 5.100000 +414 2968 5.100000 +414 2973 5.100000 +414 2975 5.100000 +414 2984 5.100000 +414 2994 5.100000 +414 3006 5.100000 +414 3008 5.100000 +414 3063 5.100000 +414 3068 5.100000 +414 3071 5.100000 +414 3153 5.100000 +414 3171 5.100000 +414 3188 5.100000 +415 4 5.100000 +415 128 5.100000 +415 176 5.100000 +415 198 5.100000 +415 221 5.100000 +415 298 5.100000 +415 466 5.100000 +415 572 5.100000 +415 662 5.100000 +415 694 5.100000 +415 785 5.100000 +415 869 5.100000 +415 907 5.100000 +415 909 5.100000 +415 914 5.100000 +415 1188 5.100000 +415 1197 5.100000 +415 1225 5.100000 +415 1232 5.100000 +415 1248 5.100000 +415 1272 5.100000 +415 1330 5.100000 +415 1375 5.100000 +415 1393 5.100000 +415 1402 5.100000 +415 1454 5.100000 +415 1479 5.100000 +415 1581 5.100000 +415 1585 5.100000 +415 1683 5.100000 +415 1691 5.100000 +415 1749 5.100000 +415 1763 5.100000 +415 1805 5.100000 +415 1841 5.100000 +415 1875 5.100000 +415 1886 5.100000 +415 1910 5.100000 +415 2051 5.100000 +415 2078 5.100000 +415 2304 5.100000 +415 2308 5.100000 +415 2335 5.100000 +415 2358 5.100000 +415 2415 5.100000 +415 2416 5.100000 +415 2431 5.100000 +415 2482 5.100000 +415 2483 5.100000 +415 2598 5.100000 +415 2615 5.100000 +415 2640 5.100000 +415 2663 5.100000 +415 2666 5.100000 +415 2707 5.100000 +415 2732 5.100000 +415 2766 5.100000 +415 2772 5.100000 +415 2803 5.100000 +415 2806 5.100000 +415 2864 5.100000 +415 2926 5.100000 +415 2975 5.100000 +415 2990 5.100000 +415 2996 5.100000 +415 3049 5.100000 +415 3117 5.100000 +415 3133 5.100000 +415 3160 5.100000 +415 3174 5.100000 +415 3184 5.100000 +416 16 5.100000 +416 20 5.100000 +416 28 5.100000 +416 54 5.100000 +416 82 5.100000 +416 130 5.100000 +416 243 5.100000 +416 323 5.100000 +416 334 5.100000 +416 403 5.100000 +416 409 5.100000 +416 434 5.100000 +416 487 5.100000 +416 569 5.100000 +416 570 5.100000 +416 606 5.100000 +416 647 5.100000 +416 726 5.100000 +416 734 5.100000 +416 850 5.100000 +416 882 5.100000 +416 975 5.100000 +416 995 5.100000 +416 1045 5.100000 +416 1049 5.100000 +416 1122 5.100000 +416 1245 5.100000 +416 1265 5.100000 +416 1307 5.100000 +416 1344 5.100000 +416 1366 5.100000 +416 1441 5.100000 +416 1465 5.100000 +416 1516 5.100000 +416 1560 5.100000 +416 1576 5.100000 +416 1601 5.100000 +416 1612 5.100000 +416 1617 5.100000 +416 1786 5.100000 +416 2000 5.100000 +416 2048 5.100000 +416 2064 5.100000 +416 2119 5.100000 +416 2148 5.100000 +416 2160 5.100000 +416 2206 5.100000 +416 2248 5.100000 +416 2257 5.100000 +416 2267 5.100000 +416 2305 5.100000 +416 2309 5.100000 +416 2334 5.100000 +416 2481 5.100000 +416 2509 5.100000 +416 2547 5.100000 +416 2708 5.100000 +416 2726 5.100000 +416 2909 5.100000 +416 3000 5.100000 +416 3050 5.100000 +416 3054 5.100000 +416 3078 5.100000 +416 3083 5.100000 +416 3109 5.100000 +417 39 5.100000 +417 55 5.100000 +417 101 5.100000 +417 212 5.100000 +417 257 5.100000 +417 357 5.100000 +417 358 5.100000 +417 399 5.100000 +417 414 5.100000 +417 421 5.100000 +417 450 5.100000 +417 455 5.100000 +417 518 5.100000 +417 548 5.100000 +417 612 5.100000 +417 622 5.100000 +417 642 5.100000 +417 685 5.100000 +417 709 5.100000 +417 730 5.100000 +417 739 5.100000 +417 765 5.100000 +417 800 5.100000 +417 944 5.100000 +417 972 5.100000 +417 1020 5.100000 +417 1109 5.100000 +417 1132 5.100000 +417 1134 5.100000 +417 1203 5.100000 +417 1299 5.100000 +417 1316 5.100000 +417 1401 5.100000 +417 1458 5.100000 +417 1480 5.100000 +417 1532 5.100000 +417 1665 5.100000 +417 1710 5.100000 +417 1720 5.100000 +417 1735 5.100000 +417 1976 5.100000 +417 2071 5.100000 +417 2072 5.100000 +417 2160 5.100000 +417 2238 5.100000 +417 2469 5.100000 +417 2470 5.100000 +417 2482 5.100000 +417 2498 5.100000 +417 2508 5.100000 +417 2537 5.100000 +417 2553 5.100000 +417 2581 5.100000 +417 2632 5.100000 +417 2669 5.100000 +417 2726 5.100000 +417 2735 5.100000 +417 2864 5.100000 +417 2897 5.100000 +417 2942 5.100000 +417 2965 5.100000 +417 3099 5.100000 +417 3119 5.100000 +417 3122 5.100000 +417 3185 5.100000 +417 3196 5.100000 +418 228 5.100000 +418 282 5.100000 +418 303 5.100000 +418 307 5.100000 +418 310 5.100000 +418 376 5.100000 +418 463 5.100000 +418 632 5.100000 +418 657 5.100000 +418 712 5.100000 +418 795 5.100000 +418 967 5.100000 +418 998 5.100000 +418 1007 5.100000 +418 1154 5.100000 +418 1242 5.100000 +418 1262 5.100000 +418 1278 5.100000 +418 1318 5.100000 +418 1383 5.100000 +418 1430 5.100000 +418 1462 5.100000 +418 1473 5.100000 +418 1492 5.100000 +418 1617 5.100000 +418 1652 5.100000 +418 1763 5.100000 +418 1768 5.100000 +418 2035 5.100000 +418 2096 5.100000 +418 2208 5.100000 +418 2227 5.100000 +418 2369 5.100000 +418 2417 5.100000 +418 2521 5.100000 +418 2588 5.100000 +418 2611 5.100000 +418 2769 5.100000 +418 2795 5.100000 +418 2856 5.100000 +418 2898 5.100000 +418 3161 5.100000 +419 20 5.100000 +419 50 5.100000 +419 67 5.100000 +419 94 5.100000 +419 113 5.100000 +419 142 5.100000 +419 155 5.100000 +419 214 5.100000 +419 235 5.100000 +419 267 5.100000 +419 274 5.100000 +419 340 5.100000 +419 349 5.100000 +419 438 5.100000 +419 445 5.100000 +419 559 5.100000 +419 601 5.100000 +419 649 5.100000 +419 687 5.100000 +419 834 5.100000 +419 842 5.100000 +419 860 5.100000 +419 874 5.100000 +419 881 5.100000 +419 920 5.100000 +419 925 5.100000 +419 951 5.100000 +419 1098 5.100000 +419 1109 5.100000 +419 1121 5.100000 +419 1215 5.100000 +419 1229 5.100000 +419 1278 5.100000 +419 1429 5.100000 +419 1434 5.100000 +419 1455 5.100000 +419 1503 5.100000 +419 1670 5.100000 +419 1750 5.100000 +419 1789 5.100000 +419 2140 5.100000 +419 2249 5.100000 +419 2288 5.100000 +419 2326 5.100000 +419 2333 5.100000 +419 2347 5.100000 +419 2436 5.100000 +419 2586 5.100000 +419 2625 5.100000 +419 2681 5.100000 +419 2710 5.100000 +419 2724 5.100000 +419 2752 5.100000 +419 2797 5.100000 +419 2822 5.100000 +419 2854 5.100000 +419 2899 5.100000 +419 3018 5.100000 +419 3047 5.100000 +419 3108 5.100000 +420 87 5.100000 +420 148 5.100000 +420 233 5.100000 +420 352 5.100000 +420 406 5.100000 +420 455 5.100000 +420 490 5.100000 +420 506 5.100000 +420 526 5.100000 +420 655 5.100000 +420 659 5.100000 +420 824 5.100000 +420 1175 5.100000 +420 1242 5.100000 +420 1289 5.100000 +420 1419 5.100000 +420 1538 5.100000 +420 1539 5.100000 +420 1629 5.100000 +420 1652 5.100000 +420 1708 5.100000 +420 1727 5.100000 +420 1753 5.100000 +420 1803 5.100000 +420 1818 5.100000 +420 1830 5.100000 +420 1833 5.100000 +420 1873 5.100000 +420 2005 5.100000 +420 2018 5.100000 +420 2111 5.100000 +420 2118 5.100000 +420 2144 5.100000 +420 2145 5.100000 +420 2180 5.100000 +420 2211 5.100000 +420 2240 5.100000 +420 2291 5.100000 +420 2297 5.100000 +420 2355 5.100000 +420 2383 5.100000 +420 2415 5.100000 +420 2542 5.100000 +420 2628 5.100000 +420 2647 5.100000 +420 2669 5.100000 +420 2672 5.100000 +420 2675 5.100000 +420 2680 5.100000 +420 2697 5.100000 +420 2800 5.100000 +420 2819 5.100000 +420 2851 5.100000 +420 2859 5.100000 +420 2892 5.100000 +420 2981 5.100000 +420 3170 5.100000 +421 54 5.100000 +421 58 5.100000 +421 125 5.100000 +421 151 5.100000 +421 246 5.100000 +421 300 5.100000 +421 301 5.100000 +421 334 5.100000 +421 351 5.100000 +421 359 5.100000 +421 382 5.100000 +421 401 5.100000 +421 435 5.100000 +421 444 5.100000 +421 451 5.100000 +421 468 5.100000 +421 478 5.100000 +421 486 5.100000 +421 505 5.100000 +421 534 5.100000 +421 550 5.100000 +421 580 5.100000 +421 637 5.100000 +421 714 5.100000 +421 806 5.100000 +421 868 5.100000 +421 877 5.100000 +421 883 5.100000 +421 902 5.100000 +421 953 5.100000 +421 961 5.100000 +421 1084 5.100000 +421 1099 5.100000 +421 1117 5.100000 +421 1138 5.100000 +421 1141 5.100000 +421 1144 5.100000 +421 1180 5.100000 +421 1219 5.100000 +421 1258 5.100000 +421 1273 5.100000 +421 1281 5.100000 +421 1486 5.100000 +421 1528 5.100000 +421 1564 5.100000 +421 1662 5.100000 +421 1664 5.100000 +421 1738 5.100000 +421 1827 5.100000 +421 1902 5.100000 +421 1977 5.100000 +421 1989 5.100000 +421 1993 5.100000 +421 2111 5.100000 +421 2117 5.100000 +421 2142 5.100000 +421 2209 5.100000 +421 2348 5.100000 +421 2439 5.100000 +421 2443 5.100000 +421 2523 5.100000 +421 2632 5.100000 +421 2635 5.100000 +421 2739 5.100000 +421 2753 5.100000 +421 2772 5.100000 +421 2792 5.100000 +421 2798 5.100000 +421 2802 5.100000 +421 2814 5.100000 +421 2823 5.100000 +421 2849 5.100000 +421 2897 5.100000 +421 2992 5.100000 +421 3012 5.100000 +421 3027 5.100000 +421 3063 5.100000 +421 3072 5.100000 +421 3149 5.100000 +421 3182 5.100000 +421 3191 5.100000 +422 53 5.100000 +422 200 5.100000 +422 201 5.100000 +422 426 5.100000 +422 427 5.100000 +422 507 5.100000 +422 510 5.100000 +422 571 5.100000 +422 579 5.100000 +422 614 5.100000 +422 648 5.100000 +422 696 5.100000 +422 697 5.100000 +422 862 5.100000 +422 875 5.100000 +422 925 5.100000 +422 944 5.100000 +422 945 5.100000 +422 978 5.100000 +422 1006 5.100000 +422 1039 5.100000 +422 1042 5.100000 +422 1070 5.100000 +422 1106 5.100000 +422 1127 5.100000 +422 1166 5.100000 +422 1174 5.100000 +422 1211 5.100000 +422 1331 5.100000 +422 1419 5.100000 +422 1466 5.100000 +422 1533 5.100000 +422 1699 5.100000 +422 1911 5.100000 +422 2090 5.100000 +422 2116 5.100000 +422 2201 5.100000 +422 2286 5.100000 +422 2365 5.100000 +422 2392 5.100000 +422 2419 5.100000 +422 2420 5.100000 +422 2466 5.100000 +422 2479 5.100000 +422 2500 5.100000 +422 2501 5.100000 +422 2566 5.100000 +422 2620 5.100000 +422 2621 5.100000 +422 2679 5.100000 +422 2737 5.100000 +422 2769 5.100000 +422 2775 5.100000 +422 2866 5.100000 +422 2875 5.100000 +422 2930 5.100000 +422 2946 5.100000 +422 3033 5.100000 +422 3071 5.100000 +422 3076 5.100000 +422 3100 5.100000 +423 33 5.100000 +423 41 5.100000 +423 103 5.100000 +423 182 5.100000 +423 250 5.100000 +423 253 5.100000 +423 267 5.100000 +423 418 5.100000 +423 512 5.100000 +423 601 5.100000 +423 641 5.100000 +423 650 5.100000 +423 687 5.100000 +423 820 5.100000 +423 933 5.100000 +423 948 5.100000 +423 977 5.100000 +423 1069 5.100000 +423 1090 5.100000 +423 1137 5.100000 +423 1165 5.100000 +423 1212 5.100000 +423 1217 5.100000 +423 1246 5.100000 +423 1270 5.100000 +423 1277 5.100000 +423 1280 5.100000 +423 1408 5.100000 +423 1420 5.100000 +423 1480 5.100000 +423 1491 5.100000 +423 1498 5.100000 +423 1562 5.100000 +423 1612 5.100000 +423 1682 5.100000 +423 1686 5.100000 +423 1859 5.100000 +423 1870 5.100000 +423 1917 5.100000 +423 1988 5.100000 +423 2009 5.100000 +423 2064 5.100000 +423 2065 5.100000 +423 2075 5.100000 +423 2094 5.100000 +423 2134 5.100000 +423 2209 5.100000 +423 2214 5.100000 +423 2268 5.100000 +423 2274 5.100000 +423 2290 5.100000 +423 2376 5.100000 +423 2440 5.100000 +423 2520 5.100000 +423 2536 5.100000 +423 2575 5.100000 +423 2676 5.100000 +423 2721 5.100000 +423 2809 5.100000 +423 2866 5.100000 +423 2906 5.100000 +423 2915 5.100000 +423 2919 5.100000 +423 2984 5.100000 +423 2987 5.100000 +423 2996 5.100000 +423 3031 5.100000 +423 3099 5.100000 +424 18 5.100000 +424 41 5.100000 +424 103 5.100000 +424 109 5.100000 +424 120 5.100000 +424 127 5.100000 +424 137 5.100000 +424 188 5.100000 +424 197 5.100000 +424 327 5.100000 +424 364 5.100000 +424 529 5.100000 +424 589 5.100000 +424 638 5.100000 +424 640 5.100000 +424 713 5.100000 +424 723 5.100000 +424 725 5.100000 +424 739 5.100000 +424 749 5.100000 +424 801 5.100000 +424 817 5.100000 +424 862 5.100000 +424 903 5.100000 +424 929 5.100000 +424 1026 5.100000 +424 1044 5.100000 +424 1045 5.100000 +424 1093 5.100000 +424 1343 5.100000 +424 1378 5.100000 +424 1552 5.100000 +424 1626 5.100000 +424 1682 5.100000 +424 1709 5.100000 +424 1773 5.100000 +424 1861 5.100000 +424 1897 5.100000 +424 1976 5.100000 +424 1979 5.100000 +424 2123 5.100000 +424 2169 5.100000 +424 2219 5.100000 +424 2286 5.100000 +424 2378 5.100000 +424 2405 5.100000 +424 2531 5.100000 +424 2559 5.100000 +424 2589 5.100000 +424 2611 5.100000 +424 2618 5.100000 +424 2620 5.100000 +424 2713 5.100000 +424 2741 5.100000 +424 2742 5.100000 +424 2857 5.100000 +424 2869 5.100000 +424 2988 5.100000 +424 3049 5.100000 +424 3110 5.100000 +424 3175 5.100000 +424 3193 5.100000 +425 43 5.100000 +425 125 5.100000 +425 141 5.100000 +425 150 5.100000 +425 223 5.100000 +425 256 5.100000 +425 385 5.100000 +425 387 5.100000 +425 430 5.100000 +425 548 5.100000 +425 671 5.100000 +425 829 5.100000 +425 879 5.100000 +425 929 5.100000 +425 997 5.100000 +425 1001 5.100000 +425 1021 5.100000 +425 1065 5.100000 +425 1077 5.100000 +425 1122 5.100000 +425 1191 5.100000 +425 1386 5.100000 +425 1394 5.100000 +425 1422 5.100000 +425 1443 5.100000 +425 1470 5.100000 +425 1569 5.100000 +425 1581 5.100000 +425 1592 5.100000 +425 1596 5.100000 +425 1765 5.100000 +425 1776 5.100000 +425 1880 5.100000 +425 1895 5.100000 +425 1940 5.100000 +425 1987 5.100000 +425 2053 5.100000 +425 2081 5.100000 +425 2279 5.100000 +425 2300 5.100000 +425 2399 5.100000 +425 2504 5.100000 +425 2571 5.100000 +425 2588 5.100000 +425 2640 5.100000 +425 2641 5.100000 +425 2657 5.100000 +425 2709 5.100000 +425 2898 5.100000 +425 2960 5.100000 +425 2973 5.100000 +425 2984 5.100000 +425 3033 5.100000 +425 3059 5.100000 +425 3130 5.100000 +425 3158 5.100000 +426 5 5.100000 +426 46 5.100000 +426 51 5.100000 +426 104 5.100000 +426 106 5.100000 +426 151 5.100000 +426 200 5.100000 +426 232 5.100000 +426 245 5.100000 +426 246 5.100000 +426 293 5.100000 +426 330 5.100000 +426 349 5.100000 +426 378 5.100000 +426 517 5.100000 +426 556 5.100000 +426 563 5.100000 +426 568 5.100000 +426 633 5.100000 +426 662 5.100000 +426 686 5.100000 +426 691 5.100000 +426 735 5.100000 +426 768 5.100000 +426 850 5.100000 +426 851 5.100000 +426 860 5.100000 +426 961 5.100000 +426 1208 5.100000 +426 1297 5.100000 +426 1332 5.100000 +426 1368 5.100000 +426 1491 5.100000 +426 1521 5.100000 +426 1534 5.100000 +426 1559 5.100000 +426 1593 5.100000 +426 1613 5.100000 +426 1676 5.100000 +426 1681 5.100000 +426 1754 5.100000 +426 1865 5.100000 +426 1877 5.100000 +426 1976 5.100000 +426 2026 5.100000 +426 2071 5.100000 +426 2108 5.100000 +426 2181 5.100000 +426 2190 5.100000 +426 2260 5.100000 +426 2293 5.100000 +426 2300 5.100000 +426 2301 5.100000 +426 2307 5.100000 +426 2357 5.100000 +426 2379 5.100000 +426 2380 5.100000 +426 2400 5.100000 +426 2424 5.100000 +426 2440 5.100000 +426 2491 5.100000 +426 2568 5.100000 +426 2571 5.100000 +426 2572 5.100000 +426 2708 5.100000 +426 2741 5.100000 +426 2812 5.100000 +426 2830 5.100000 +426 2859 5.100000 +426 2870 5.100000 +426 2947 5.100000 +426 3088 5.100000 +426 3161 5.100000 +427 7 5.100000 +427 258 5.100000 +427 281 5.100000 +427 313 5.100000 +427 342 5.100000 +427 409 5.100000 +427 474 5.100000 +427 523 5.100000 +427 566 5.100000 +427 590 5.100000 +427 677 5.100000 +427 680 5.100000 +427 723 5.100000 +427 725 5.100000 +427 758 5.100000 +427 762 5.100000 +427 954 5.100000 +427 1076 5.100000 +427 1105 5.100000 +427 1161 5.100000 +427 1174 5.100000 +427 1200 5.100000 +427 1226 5.100000 +427 1260 5.100000 +427 1357 5.100000 +427 1368 5.100000 +427 1481 5.100000 +427 1493 5.100000 +427 1590 5.100000 +427 1604 5.100000 +427 1655 5.100000 +427 1717 5.100000 +427 1887 5.100000 +427 1890 5.100000 +427 1922 5.100000 +427 1941 5.100000 +427 2094 5.100000 +427 2140 5.100000 +427 2240 5.100000 +427 2263 5.100000 +427 2357 5.100000 +427 2360 5.100000 +427 2365 5.100000 +427 2369 5.100000 +427 2466 5.100000 +427 2485 5.100000 +427 2634 5.100000 +427 2645 5.100000 +427 2830 5.100000 +427 2832 5.100000 +427 2935 5.100000 +427 2944 5.100000 +427 3072 5.100000 +427 3075 5.100000 +428 22 5.100000 +428 117 5.100000 +428 211 5.100000 +428 292 5.100000 +428 293 5.100000 +428 383 5.100000 +428 388 5.100000 +428 402 5.100000 +428 477 5.100000 +428 568 5.100000 +428 635 5.100000 +428 657 5.100000 +428 674 5.100000 +428 856 5.100000 +428 886 5.100000 +428 930 5.100000 +428 948 5.100000 +428 988 5.100000 +428 1012 5.100000 +428 1060 5.100000 +428 1089 5.100000 +428 1188 5.100000 +428 1222 5.100000 +428 1269 5.100000 +428 1330 5.100000 +428 1418 5.100000 +428 1504 5.100000 +428 1524 5.100000 +428 1594 5.100000 +428 1602 5.100000 +428 1817 5.100000 +428 1828 5.100000 +428 1846 5.100000 +428 1872 5.100000 +428 1911 5.100000 +428 1975 5.100000 +428 2075 5.100000 +428 2086 5.100000 +428 2090 5.100000 +428 2185 5.100000 +428 2217 5.100000 +428 2274 5.100000 +428 2399 5.100000 +428 2402 5.100000 +428 2415 5.100000 +428 2443 5.100000 +428 2448 5.100000 +428 2490 5.100000 +428 2500 5.100000 +428 2565 5.100000 +428 2574 5.100000 +428 2606 5.100000 +428 2634 5.100000 +428 2714 5.100000 +428 2735 5.100000 +428 2834 5.100000 +428 3022 5.100000 +428 3061 5.100000 +428 3081 5.100000 +428 3160 5.100000 +428 3177 5.100000 +429 22 5.100000 +429 38 5.100000 +429 123 5.100000 +429 127 5.100000 +429 170 5.100000 +429 174 5.100000 +429 203 5.100000 +429 350 5.100000 +429 386 5.100000 +429 450 5.100000 +429 495 5.100000 +429 585 5.100000 +429 641 5.100000 +429 672 5.100000 +429 701 5.100000 +429 892 5.100000 +429 894 5.100000 +429 982 5.100000 +429 993 5.100000 +429 1001 5.100000 +429 1074 5.100000 +429 1122 5.100000 +429 1150 5.100000 +429 1237 5.100000 +429 1321 5.100000 +429 1422 5.100000 +429 1436 5.100000 +429 1480 5.100000 +429 1537 5.100000 +429 1539 5.100000 +429 1596 5.100000 +429 1648 5.100000 +429 1751 5.100000 +429 1805 5.100000 +429 1819 5.100000 +429 1859 5.100000 +429 1928 5.100000 +429 1992 5.100000 +429 2012 5.100000 +429 2044 5.100000 +429 2052 5.100000 +429 2088 5.100000 +429 2135 5.100000 +429 2211 5.100000 +429 2238 5.100000 +429 2255 5.100000 +429 2407 5.100000 +429 2417 5.100000 +429 2451 5.100000 +429 2476 5.100000 +429 2563 5.100000 +429 2604 5.100000 +429 2633 5.100000 +429 2636 5.100000 +429 2646 5.100000 +429 2667 5.100000 +429 2723 5.100000 +429 2857 5.100000 +429 2866 5.100000 +429 2873 5.100000 +429 2889 5.100000 +429 2914 5.100000 +429 2962 5.100000 +429 2985 5.100000 +429 3008 5.100000 +429 3200 5.100000 +430 75 5.100000 +430 92 5.100000 +430 141 5.100000 +430 180 5.100000 +430 194 5.100000 +430 218 5.100000 +430 220 5.100000 +430 309 5.100000 +430 371 5.100000 +430 403 5.100000 +430 547 5.100000 +430 631 5.100000 +430 661 5.100000 +430 742 5.100000 +430 801 5.100000 +430 821 5.100000 +430 975 5.100000 +430 978 5.100000 +430 1062 5.100000 +430 1079 5.100000 +430 1120 5.100000 +430 1153 5.100000 +430 1154 5.100000 +430 1157 5.100000 +430 1204 5.100000 +430 1267 5.100000 +430 1343 5.100000 +430 1380 5.100000 +430 1422 5.100000 +430 1453 5.100000 +430 1563 5.100000 +430 1609 5.100000 +430 1629 5.100000 +430 1716 5.100000 +430 1754 5.100000 +430 1774 5.100000 +430 1789 5.100000 +430 1799 5.100000 +430 1845 5.100000 +430 1890 5.100000 +430 1931 5.100000 +430 1945 5.100000 +430 1967 5.100000 +430 2148 5.100000 +430 2151 5.100000 +430 2290 5.100000 +430 2333 5.100000 +430 2341 5.100000 +430 2571 5.100000 +430 2585 5.100000 +430 2605 5.100000 +430 2608 5.100000 +430 2677 5.100000 +430 2757 5.100000 +430 2769 5.100000 +430 2776 5.100000 +430 2812 5.100000 +430 2859 5.100000 +430 2869 5.100000 +430 3053 5.100000 +430 3079 5.100000 +430 3164 5.100000 +431 18 5.100000 +431 71 5.100000 +431 74 5.100000 +431 146 5.100000 +431 188 5.100000 +431 220 5.100000 +431 302 5.100000 +431 312 5.100000 +431 359 5.100000 +431 369 5.100000 +431 480 5.100000 +431 486 5.100000 +431 496 5.100000 +431 507 5.100000 +431 619 5.100000 +431 644 5.100000 +431 751 5.100000 +431 762 5.100000 +431 802 5.100000 +431 887 5.100000 +431 898 5.100000 +431 928 5.100000 +431 971 5.100000 +431 1004 5.100000 +431 1037 5.100000 +431 1049 5.100000 +431 1057 5.100000 +431 1108 5.100000 +431 1136 5.100000 +431 1141 5.100000 +431 1277 5.100000 +431 1313 5.100000 +431 1405 5.100000 +431 1546 5.100000 +431 1555 5.100000 +431 1583 5.100000 +431 1622 5.100000 +431 1787 5.100000 +431 1798 5.100000 +431 1954 5.100000 +431 2005 5.100000 +431 2007 5.100000 +431 2021 5.100000 +431 2094 5.100000 +431 2139 5.100000 +431 2222 5.100000 +431 2223 5.100000 +431 2304 5.100000 +431 2350 5.100000 +431 2437 5.100000 +431 2494 5.100000 +431 2517 5.100000 +431 2519 5.100000 +431 2547 5.100000 +431 2603 5.100000 +431 2659 5.100000 +431 2713 5.100000 +431 2770 5.100000 +431 2824 5.100000 +431 2837 5.100000 +431 2864 5.100000 +431 2920 5.100000 +431 2925 5.100000 +431 3036 5.100000 +431 3053 5.100000 +431 3060 5.100000 +431 3093 5.100000 +431 3102 5.100000 +431 3121 5.100000 +431 3138 5.100000 +432 33 5.100000 +432 58 5.100000 +432 76 5.100000 +432 293 5.100000 +432 308 5.100000 +432 358 5.100000 +432 501 5.100000 +432 532 5.100000 +432 568 5.100000 +432 574 5.100000 +432 591 5.100000 +432 664 5.100000 +432 683 5.100000 +432 697 5.100000 +432 706 5.100000 +432 741 5.100000 +432 760 5.100000 +432 796 5.100000 +432 831 5.100000 +432 855 5.100000 +432 891 5.100000 +432 1049 5.100000 +432 1061 5.100000 +432 1075 5.100000 +432 1185 5.100000 +432 1309 5.100000 +432 1482 5.100000 +432 1522 5.100000 +432 1529 5.100000 +432 1544 5.100000 +432 1821 5.100000 +432 1846 5.100000 +432 1857 5.100000 +432 1919 5.100000 +432 1963 5.100000 +432 2018 5.100000 +432 2090 5.100000 +432 2119 5.100000 +432 2127 5.100000 +432 2141 5.100000 +432 2162 5.100000 +432 2196 5.100000 +432 2208 5.100000 +432 2209 5.100000 +432 2223 5.100000 +432 2242 5.100000 +432 2284 5.100000 +432 2471 5.100000 +432 2487 5.100000 +432 2624 5.100000 +432 2920 5.100000 +432 2927 5.100000 +432 2931 5.100000 +432 2932 5.100000 +432 3090 5.100000 +432 3102 5.100000 +432 3110 5.100000 +432 3137 5.100000 +432 3159 5.100000 +433 13 5.100000 +433 35 5.100000 +433 41 5.100000 +433 67 5.100000 +433 84 5.100000 +433 91 5.100000 +433 158 5.100000 +433 243 5.100000 +433 385 5.100000 +433 407 5.100000 +433 430 5.100000 +433 466 5.100000 +433 523 5.100000 +433 557 5.100000 +433 569 5.100000 +433 632 5.100000 +433 731 5.100000 +433 790 5.100000 +433 793 5.100000 +433 824 5.100000 +433 825 5.100000 +433 1261 5.100000 +433 1300 5.100000 +433 1407 5.100000 +433 1475 5.100000 +433 1546 5.100000 +433 1584 5.100000 +433 1612 5.100000 +433 1619 5.100000 +433 1627 5.100000 +433 1681 5.100000 +433 1779 5.100000 +433 1842 5.100000 +433 1947 5.100000 +433 1971 5.100000 +433 2007 5.100000 +433 2014 5.100000 +433 2030 5.100000 +433 2132 5.100000 +433 2142 5.100000 +433 2313 5.100000 +433 2356 5.100000 +433 2412 5.100000 +433 2443 5.100000 +433 2508 5.100000 +433 2566 5.100000 +433 2569 5.100000 +433 2642 5.100000 +433 2667 5.100000 +433 2733 5.100000 +433 2736 5.100000 +433 2741 5.100000 +433 2847 5.100000 +433 2868 5.100000 +433 2884 5.100000 +433 3048 5.100000 +433 3163 5.100000 +433 3183 5.100000 +434 41 5.100000 +434 58 5.100000 +434 162 5.100000 +434 215 5.100000 +434 233 5.100000 +434 271 5.100000 +434 289 5.100000 +434 380 5.100000 +434 430 5.100000 +434 467 5.100000 +434 522 5.100000 +434 585 5.100000 +434 595 5.100000 +434 632 5.100000 +434 639 5.100000 +434 667 5.100000 +434 689 5.100000 +434 711 5.100000 +434 786 5.100000 +434 788 5.100000 +434 793 5.100000 +434 814 5.100000 +434 823 5.100000 +434 825 5.100000 +434 873 5.100000 +434 885 5.100000 +434 898 5.100000 +434 960 5.100000 +434 1045 5.100000 +434 1100 5.100000 +434 1159 5.100000 +434 1174 5.100000 +434 1201 5.100000 +434 1237 5.100000 +434 1275 5.100000 +434 1309 5.100000 +434 1318 5.100000 +434 1420 5.100000 +434 1488 5.100000 +434 1537 5.100000 +434 1581 5.100000 +434 1602 5.100000 +434 1825 5.100000 +434 1873 5.100000 +434 1923 5.100000 +434 1957 5.100000 +434 1982 5.100000 +434 2062 5.100000 +434 2077 5.100000 +434 2088 5.100000 +434 2117 5.100000 +434 2200 5.100000 +434 2224 5.100000 +434 2229 5.100000 +434 2238 5.100000 +434 2298 5.100000 +434 2311 5.100000 +434 2462 5.100000 +434 2575 5.100000 +434 2707 5.100000 +434 2716 5.100000 +434 2770 5.100000 +434 2825 5.100000 +434 2892 5.100000 +434 2970 5.100000 +434 2995 5.100000 +434 3030 5.100000 +434 3071 5.100000 +434 3098 5.100000 +434 3146 5.100000 +435 5 5.100000 +435 19 5.100000 +435 85 5.100000 +435 147 5.100000 +435 151 5.100000 +435 180 5.100000 +435 202 5.100000 +435 268 5.100000 +435 304 5.100000 +435 322 5.100000 +435 337 5.100000 +435 404 5.100000 +435 408 5.100000 +435 587 5.100000 +435 608 5.100000 +435 812 5.100000 +435 817 5.100000 +435 821 5.100000 +435 918 5.100000 +435 930 5.100000 +435 1014 5.100000 +435 1020 5.100000 +435 1284 5.100000 +435 1380 5.100000 +435 1396 5.100000 +435 1444 5.100000 +435 1488 5.100000 +435 1675 5.100000 +435 1680 5.100000 +435 1741 5.100000 +435 1984 5.100000 +435 2011 5.100000 +435 2034 5.100000 +435 2069 5.100000 +435 2209 5.100000 +435 2255 5.100000 +435 2290 5.100000 +435 2357 5.100000 +435 2419 5.100000 +435 2439 5.100000 +435 2485 5.100000 +435 2539 5.100000 +435 2636 5.100000 +435 2713 5.100000 +435 2735 5.100000 +435 2769 5.100000 +435 2873 5.100000 +435 2887 5.100000 +435 2891 5.100000 +435 2957 5.100000 +435 2961 5.100000 +435 3027 5.100000 +435 3029 5.100000 +435 3082 5.100000 +435 3135 5.100000 +435 3157 5.100000 +436 141 5.100000 +436 209 5.100000 +436 285 5.100000 +436 289 5.100000 +436 302 5.100000 +436 308 5.100000 +436 380 5.100000 +436 385 5.100000 +436 406 5.100000 +436 411 5.100000 +436 423 5.100000 +436 493 5.100000 +436 545 5.100000 +436 585 5.100000 +436 630 5.100000 +436 705 5.100000 +436 729 5.100000 +436 742 5.100000 +436 940 5.100000 +436 982 5.100000 +436 1015 5.100000 +436 1052 5.100000 +436 1097 5.100000 +436 1106 5.100000 +436 1216 5.100000 +436 1317 5.100000 +436 1326 5.100000 +436 1380 5.100000 +436 1532 5.100000 +436 1620 5.100000 +436 1682 5.100000 +436 1693 5.100000 +436 1703 5.100000 +436 1831 5.100000 +436 1853 5.100000 +436 1897 5.100000 +436 1902 5.100000 +436 1910 5.100000 +436 2000 5.100000 +436 2002 5.100000 +436 2058 5.100000 +436 2080 5.100000 +436 2183 5.100000 +436 2254 5.100000 +436 2266 5.100000 +436 2387 5.100000 +436 2397 5.100000 +436 2428 5.100000 +436 2610 5.100000 +436 2655 5.100000 +436 2709 5.100000 +436 2742 5.100000 +436 2746 5.100000 +436 2776 5.100000 +436 2814 5.100000 +436 2877 5.100000 +436 2910 5.100000 +436 2912 5.100000 +436 2947 5.100000 +436 2986 5.100000 +436 3028 5.100000 +436 3034 5.100000 +436 3048 5.100000 +436 3068 5.100000 +436 3083 5.100000 +436 3088 5.100000 +436 3192 5.100000 +437 100 5.100000 +437 164 5.100000 +437 190 5.100000 +437 273 5.100000 +437 277 5.100000 +437 310 5.100000 +437 356 5.100000 +437 401 5.100000 +437 402 5.100000 +437 599 5.100000 +437 626 5.100000 +437 660 5.100000 +437 667 5.100000 +437 677 5.100000 +437 683 5.100000 +437 868 5.100000 +437 886 5.100000 +437 889 5.100000 +437 914 5.100000 +437 995 5.100000 +437 1057 5.100000 +437 1096 5.100000 +437 1138 5.100000 +437 1143 5.100000 +437 1148 5.100000 +437 1156 5.100000 +437 1215 5.100000 +437 1221 5.100000 +437 1263 5.100000 +437 1343 5.100000 +437 1400 5.100000 +437 1608 5.100000 +437 1625 5.100000 +437 1666 5.100000 +437 1768 5.100000 +437 1796 5.100000 +437 1857 5.100000 +437 1861 5.100000 +437 1862 5.100000 +437 1884 5.100000 +437 1924 5.100000 +437 1950 5.100000 +437 1964 5.100000 +437 2032 5.100000 +437 2049 5.100000 +437 2050 5.100000 +437 2054 5.100000 +437 2175 5.100000 +437 2261 5.100000 +437 2262 5.100000 +437 2439 5.100000 +437 2447 5.100000 +437 2477 5.100000 +437 2507 5.100000 +437 2538 5.100000 +437 2639 5.100000 +437 2713 5.100000 +437 2827 5.100000 +437 2843 5.100000 +437 2927 5.100000 +437 2947 5.100000 +437 3015 5.100000 +437 3030 5.100000 +437 3036 5.100000 +437 3063 5.100000 +437 3117 5.100000 +437 3119 5.100000 +438 59 5.100000 +438 107 5.100000 +438 110 5.100000 +438 175 5.100000 +438 276 5.100000 +438 430 5.100000 +438 500 5.100000 +438 514 5.100000 +438 552 5.100000 +438 573 5.100000 +438 643 5.100000 +438 756 5.100000 +438 842 5.100000 +438 848 5.100000 +438 858 5.100000 +438 897 5.100000 +438 1016 5.100000 +438 1032 5.100000 +438 1087 5.100000 +438 1124 5.100000 +438 1229 5.100000 +438 1233 5.100000 +438 1249 5.100000 +438 1270 5.100000 +438 1277 5.100000 +438 1289 5.100000 +438 1324 5.100000 +438 1362 5.100000 +438 1456 5.100000 +438 1507 5.100000 +438 1624 5.100000 +438 1664 5.100000 +438 1690 5.100000 +438 1696 5.100000 +438 1816 5.100000 +438 1856 5.100000 +438 1898 5.100000 +438 1900 5.100000 +438 1944 5.100000 +438 2128 5.100000 +438 2139 5.100000 +438 2214 5.100000 +438 2343 5.100000 +438 2424 5.100000 +438 2457 5.100000 +438 2458 5.100000 +438 2482 5.100000 +438 2568 5.100000 +438 2588 5.100000 +438 2631 5.100000 +438 2646 5.100000 +438 2680 5.100000 +438 2684 5.100000 +438 2696 5.100000 +438 2697 5.100000 +438 2730 5.100000 +438 2741 5.100000 +438 2786 5.100000 +438 2811 5.100000 +438 2849 5.100000 +438 2989 5.100000 +438 2994 5.100000 +438 3006 5.100000 +438 3174 5.100000 +438 3187 5.100000 +439 22 5.100000 +439 104 5.100000 +439 142 5.100000 +439 205 5.100000 +439 250 5.100000 +439 281 5.100000 +439 291 5.100000 +439 309 5.100000 +439 345 5.100000 +439 392 5.100000 +439 425 5.100000 +439 468 5.100000 +439 491 5.100000 +439 502 5.100000 +439 515 5.100000 +439 556 5.100000 +439 594 5.100000 +439 602 5.100000 +439 652 5.100000 +439 731 5.100000 +439 733 5.100000 +439 796 5.100000 +439 834 5.100000 +439 884 5.100000 +439 1059 5.100000 +439 1096 5.100000 +439 1328 5.100000 +439 1383 5.100000 +439 1396 5.100000 +439 1431 5.100000 +439 1467 5.100000 +439 1493 5.100000 +439 1496 5.100000 +439 1513 5.100000 +439 1528 5.100000 +439 1541 5.100000 +439 1573 5.100000 +439 1606 5.100000 +439 1609 5.100000 +439 1616 5.100000 +439 1662 5.100000 +439 1720 5.100000 +439 1884 5.100000 +439 1944 5.100000 +439 1954 5.100000 +439 1975 5.100000 +439 1992 5.100000 +439 2002 5.100000 +439 2055 5.100000 +439 2074 5.100000 +439 2216 5.100000 +439 2242 5.100000 +439 2286 5.100000 +439 2317 5.100000 +439 2369 5.100000 +439 2420 5.100000 +439 2479 5.100000 +439 2540 5.100000 +439 2545 5.100000 +439 2656 5.100000 +439 2719 5.100000 +439 2762 5.100000 +439 3001 5.100000 +439 3004 5.100000 +439 3028 5.100000 +439 3031 5.100000 +439 3042 5.100000 +439 3054 5.100000 +439 3080 5.100000 +439 3102 5.100000 +439 3105 5.100000 +439 3126 5.100000 +439 3162 5.100000 +440 98 5.100000 +440 118 5.100000 +440 233 5.100000 +440 263 5.100000 +440 277 5.100000 +440 354 5.100000 +440 455 5.100000 +440 646 5.100000 +440 731 5.100000 +440 772 5.100000 +440 784 5.100000 +440 877 5.100000 +440 894 5.100000 +440 896 5.100000 +440 917 5.100000 +440 963 5.100000 +440 976 5.100000 +440 1063 5.100000 +440 1097 5.100000 +440 1174 5.100000 +440 1199 5.100000 +440 1238 5.100000 +440 1292 5.100000 +440 1294 5.100000 +440 1354 5.100000 +440 1472 5.100000 +440 1478 5.100000 +440 1543 5.100000 +440 1578 5.100000 +440 1592 5.100000 +440 1594 5.100000 +440 1627 5.100000 +440 1650 5.100000 +440 1680 5.100000 +440 1898 5.100000 +440 2015 5.100000 +440 2080 5.100000 +440 2092 5.100000 +440 2116 5.100000 +440 2121 5.100000 +440 2131 5.100000 +440 2187 5.100000 +440 2221 5.100000 +440 2385 5.100000 +440 2397 5.100000 +440 2435 5.100000 +440 2437 5.100000 +440 2475 5.100000 +440 2503 5.100000 +440 2599 5.100000 +440 2612 5.100000 +440 2631 5.100000 +440 2666 5.100000 +440 2669 5.100000 +440 2762 5.100000 +440 2819 5.100000 +440 2886 5.100000 +440 2993 5.100000 +440 3071 5.100000 +440 3092 5.100000 +440 3154 5.100000 +441 25 5.100000 +441 140 5.100000 +441 154 5.100000 +441 208 5.100000 +441 231 5.100000 +441 239 5.100000 +441 259 5.100000 +441 277 5.100000 +441 289 5.100000 +441 373 5.100000 +441 512 5.100000 +441 566 5.100000 +441 579 5.100000 +441 606 5.100000 +441 640 5.100000 +441 642 5.100000 +441 662 5.100000 +441 745 5.100000 +441 803 5.100000 +441 854 5.100000 +441 908 5.100000 +441 915 5.100000 +441 931 5.100000 +441 983 5.100000 +441 1076 5.100000 +441 1080 5.100000 +441 1108 5.100000 +441 1168 5.100000 +441 1194 5.100000 +441 1211 5.100000 +441 1244 5.100000 +441 1257 5.100000 +441 1313 5.100000 +441 1392 5.100000 +441 1404 5.100000 +441 1522 5.100000 +441 1587 5.100000 +441 1612 5.100000 +441 1629 5.100000 +441 1709 5.100000 +441 1729 5.100000 +441 1753 5.100000 +441 1772 5.100000 +441 1790 5.100000 +441 1852 5.100000 +441 1896 5.100000 +441 1909 5.100000 +441 1930 5.100000 +441 1985 5.100000 +441 2029 5.100000 +441 2072 5.100000 +441 2202 5.100000 +441 2231 5.100000 +441 2304 5.100000 +441 2386 5.100000 +441 2417 5.100000 +441 2423 5.100000 +441 2431 5.100000 +441 2474 5.100000 +441 2484 5.100000 +441 2487 5.100000 +441 2496 5.100000 +441 2517 5.100000 +441 2571 5.100000 +441 2602 5.100000 +441 2642 5.100000 +441 2763 5.100000 +441 2766 5.100000 +441 2828 5.100000 +441 2900 5.100000 +441 2961 5.100000 +441 2973 5.100000 +441 3004 5.100000 +441 3025 5.100000 +441 3042 5.100000 +441 3059 5.100000 +441 3115 5.100000 +441 3151 5.100000 +441 3191 5.100000 +442 1 5.100000 +442 18 5.100000 +442 39 5.100000 +442 55 5.100000 +442 75 5.100000 +442 393 5.100000 +442 409 5.100000 +442 468 5.100000 +442 892 5.100000 +442 914 5.100000 +442 996 5.100000 +442 1015 5.100000 +442 1100 5.100000 +442 1112 5.100000 +442 1130 5.100000 +442 1149 5.100000 +442 1191 5.100000 +442 1324 5.100000 +442 1366 5.100000 +442 1420 5.100000 +442 1454 5.100000 +442 1471 5.100000 +442 1478 5.100000 +442 1498 5.100000 +442 1517 5.100000 +442 1533 5.100000 +442 1589 5.100000 +442 1638 5.100000 +442 1681 5.100000 +442 1684 5.100000 +442 1707 5.100000 +442 1735 5.100000 +442 1815 5.100000 +442 1848 5.100000 +442 1911 5.100000 +442 1964 5.100000 +442 2114 5.100000 +442 2167 5.100000 +442 2192 5.100000 +442 2238 5.100000 +442 2299 5.100000 +442 2381 5.100000 +442 2448 5.100000 +442 2469 5.100000 +442 2612 5.100000 +442 2671 5.100000 +442 2674 5.100000 +442 2678 5.100000 +442 2690 5.100000 +442 2857 5.100000 +442 2871 5.100000 +442 2899 5.100000 +442 2988 5.100000 +442 3004 5.100000 +442 3009 5.100000 +442 3012 5.100000 +442 3024 5.100000 +442 3066 5.100000 +442 3071 5.100000 +442 3121 5.100000 +442 3143 5.100000 +443 10 5.100000 +443 21 5.100000 +443 53 5.100000 +443 92 5.100000 +443 120 5.100000 +443 222 5.100000 +443 244 5.100000 +443 260 5.100000 +443 303 5.100000 +443 347 5.100000 +443 354 5.100000 +443 367 5.100000 +443 408 5.100000 +443 409 5.100000 +443 452 5.100000 +443 467 5.100000 +443 501 5.100000 +443 667 5.100000 +443 681 5.100000 +443 730 5.100000 +443 767 5.100000 +443 792 5.100000 +443 894 5.100000 +443 944 5.100000 +443 1058 5.100000 +443 1068 5.100000 +443 1071 5.100000 +443 1108 5.100000 +443 1163 5.100000 +443 1223 5.100000 +443 1373 5.100000 +443 1417 5.100000 +443 1441 5.100000 +443 1442 5.100000 +443 1461 5.100000 +443 1480 5.100000 +443 1541 5.100000 +443 1576 5.100000 +443 1634 5.100000 +443 1725 5.100000 +443 1753 5.100000 +443 1765 5.100000 +443 1786 5.100000 +443 1894 5.100000 +443 1975 5.100000 +443 1996 5.100000 +443 2083 5.100000 +443 2105 5.100000 +443 2125 5.100000 +443 2138 5.100000 +443 2229 5.100000 +443 2327 5.100000 +443 2336 5.100000 +443 2382 5.100000 +443 2464 5.100000 +443 2499 5.100000 +443 2593 5.100000 +443 2630 5.100000 +443 2667 5.100000 +443 2715 5.100000 +443 2757 5.100000 +443 2927 5.100000 +443 2958 5.100000 +443 3000 5.100000 +443 3081 5.100000 +444 3 5.100000 +444 52 5.100000 +444 53 5.100000 +444 97 5.100000 +444 261 5.100000 +444 270 5.100000 +444 294 5.100000 +444 441 5.100000 +444 543 5.100000 +444 558 5.100000 +444 592 5.100000 +444 755 5.100000 +444 820 5.100000 +444 890 5.100000 +444 984 5.100000 +444 1049 5.100000 +444 1060 5.100000 +444 1189 5.100000 +444 1209 5.100000 +444 1325 5.100000 +444 1422 5.100000 +444 1434 5.100000 +444 1453 5.100000 +444 1467 5.100000 +444 1484 5.100000 +444 1513 5.100000 +444 1535 5.100000 +444 1569 5.100000 +444 1588 5.100000 +444 1612 5.100000 +444 1707 5.100000 +444 1719 5.100000 +444 1724 5.100000 +444 1969 5.100000 +444 1977 5.100000 +444 2002 5.100000 +444 2008 5.100000 +444 2026 5.100000 +444 2088 5.100000 +444 2101 5.100000 +444 2112 5.100000 +444 2125 5.100000 +444 2168 5.100000 +444 2199 5.100000 +444 2212 5.100000 +444 2277 5.100000 +444 2281 5.100000 +444 2375 5.100000 +444 2385 5.100000 +444 2436 5.100000 +444 2465 5.100000 +444 2472 5.100000 +444 2571 5.100000 +444 2618 5.100000 +444 2627 5.100000 +444 2654 5.100000 +444 2689 5.100000 +444 2754 5.100000 +444 2829 5.100000 +444 2910 5.100000 +444 3016 5.100000 +444 3176 5.100000 +444 3180 5.100000 +444 3197 5.100000 +445 34 5.100000 +445 47 5.100000 +445 131 5.100000 +445 305 5.100000 +445 462 5.100000 +445 463 5.100000 +445 556 5.100000 +445 649 5.100000 +445 681 5.100000 +445 689 5.100000 +445 697 5.100000 +445 928 5.100000 +445 940 5.100000 +445 949 5.100000 +445 985 5.100000 +445 1001 5.100000 +445 1069 5.100000 +445 1104 5.100000 +445 1145 5.100000 +445 1215 5.100000 +445 1244 5.100000 +445 1289 5.100000 +445 1317 5.100000 +445 1370 5.100000 +445 1398 5.100000 +445 1438 5.100000 +445 1474 5.100000 +445 1516 5.100000 +445 1559 5.100000 +445 1599 5.100000 +445 1676 5.100000 +445 1829 5.100000 +445 1900 5.100000 +445 1906 5.100000 +445 1937 5.100000 +445 1962 5.100000 +445 1985 5.100000 +445 1998 5.100000 +445 2155 5.100000 +445 2190 5.100000 +445 2256 5.100000 +445 2345 5.100000 +445 2359 5.100000 +445 2399 5.100000 +445 2421 5.100000 +445 2450 5.100000 +445 2517 5.100000 +445 2606 5.100000 +445 2676 5.100000 +445 2701 5.100000 +445 2779 5.100000 +445 2807 5.100000 +445 2860 5.100000 +445 2942 5.100000 +445 2964 5.100000 +445 3028 5.100000 +445 3035 5.100000 +445 3062 5.100000 +445 3142 5.100000 +445 3157 5.100000 +446 150 5.100000 +446 152 5.100000 +446 156 5.100000 +446 269 5.100000 +446 286 5.100000 +446 337 5.100000 +446 339 5.100000 +446 397 5.100000 +446 454 5.100000 +446 471 5.100000 +446 474 5.100000 +446 525 5.100000 +446 538 5.100000 +446 564 5.100000 +446 565 5.100000 +446 579 5.100000 +446 681 5.100000 +446 786 5.100000 +446 851 5.100000 +446 855 5.100000 +446 867 5.100000 +446 868 5.100000 +446 897 5.100000 +446 951 5.100000 +446 990 5.100000 +446 993 5.100000 +446 1043 5.100000 +446 1051 5.100000 +446 1080 5.100000 +446 1085 5.100000 +446 1100 5.100000 +446 1223 5.100000 +446 1257 5.100000 +446 1309 5.100000 +446 1414 5.100000 +446 1459 5.100000 +446 1493 5.100000 +446 1590 5.100000 +446 1679 5.100000 +446 1693 5.100000 +446 1722 5.100000 +446 1765 5.100000 +446 1961 5.100000 +446 1978 5.100000 +446 1991 5.100000 +446 2042 5.100000 +446 2067 5.100000 +446 2091 5.100000 +446 2267 5.100000 +446 2276 5.100000 +446 2280 5.100000 +446 2294 5.100000 +446 2310 5.100000 +446 2357 5.100000 +446 2439 5.100000 +446 2506 5.100000 +446 2528 5.100000 +446 2675 5.100000 +446 2757 5.100000 +446 2770 5.100000 +446 2809 5.100000 +446 2820 5.100000 +446 2861 5.100000 +446 2950 5.100000 +446 2996 5.100000 +446 2997 5.100000 +446 3040 5.100000 +446 3124 5.100000 +447 9 5.100000 +447 41 5.100000 +447 43 5.100000 +447 50 5.100000 +447 111 5.100000 +447 119 5.100000 +447 124 5.100000 +447 134 5.100000 +447 173 5.100000 +447 202 5.100000 +447 226 5.100000 +447 274 5.100000 +447 328 5.100000 +447 334 5.100000 +447 366 5.100000 +447 370 5.100000 +447 379 5.100000 +447 395 5.100000 +447 399 5.100000 +447 445 5.100000 +447 447 5.100000 +447 475 5.100000 +447 587 5.100000 +447 665 5.100000 +447 666 5.100000 +447 734 5.100000 +447 758 5.100000 +447 770 5.100000 +447 980 5.100000 +447 1062 5.100000 +447 1103 5.100000 +447 1134 5.100000 +447 1165 5.100000 +447 1198 5.100000 +447 1225 5.100000 +447 1263 5.100000 +447 1326 5.100000 +447 1357 5.100000 +447 1402 5.100000 +447 1428 5.100000 +447 1435 5.100000 +447 1490 5.100000 +447 1545 5.100000 +447 1563 5.100000 +447 1599 5.100000 +447 1641 5.100000 +447 1661 5.100000 +447 1674 5.100000 +447 1799 5.100000 +447 1901 5.100000 +447 1925 5.100000 +447 1963 5.100000 +447 2047 5.100000 +447 2049 5.100000 +447 2065 5.100000 +447 2161 5.100000 +447 2207 5.100000 +447 2237 5.100000 +447 2327 5.100000 +447 2517 5.100000 +447 2567 5.100000 +447 2636 5.100000 +447 2683 5.100000 +447 2733 5.100000 +447 2769 5.100000 +447 2785 5.100000 +447 2874 5.100000 +447 2879 5.100000 +447 2882 5.100000 +447 3014 5.100000 +447 3017 5.100000 +447 3052 5.100000 +447 3062 5.100000 +447 3073 5.100000 +447 3141 5.100000 +448 44 5.100000 +448 64 5.100000 +448 81 5.100000 +448 130 5.100000 +448 319 5.100000 +448 373 5.100000 +448 540 5.100000 +448 558 5.100000 +448 585 5.100000 +448 678 5.100000 +448 785 5.100000 +448 845 5.100000 +448 849 5.100000 +448 906 5.100000 +448 989 5.100000 +448 1057 5.100000 +448 1059 5.100000 +448 1144 5.100000 +448 1310 5.100000 +448 1429 5.100000 +448 1435 5.100000 +448 1436 5.100000 +448 1494 5.100000 +448 1649 5.100000 +448 1654 5.100000 +448 1715 5.100000 +448 1727 5.100000 +448 1776 5.100000 +448 1816 5.100000 +448 1842 5.100000 +448 1868 5.100000 +448 1910 5.100000 +448 1938 5.100000 +448 1963 5.100000 +448 2010 5.100000 +448 2067 5.100000 +448 2100 5.100000 +448 2199 5.100000 +448 2248 5.100000 +448 2360 5.100000 +448 2396 5.100000 +448 2417 5.100000 +448 2431 5.100000 +448 2489 5.100000 +448 2753 5.100000 +448 2792 5.100000 +448 2820 5.100000 +448 2835 5.100000 +448 2845 5.100000 +448 2847 5.100000 +448 2854 5.100000 +448 2965 5.100000 +448 2990 5.100000 +448 2993 5.100000 +448 3097 5.100000 +448 3103 5.100000 +448 3139 5.100000 +448 3165 5.100000 +449 24 5.100000 +449 59 5.100000 +449 62 5.100000 +449 77 5.100000 +449 164 5.100000 +449 184 5.100000 +449 210 5.100000 +449 299 5.100000 +449 499 5.100000 +449 625 5.100000 +449 677 5.100000 +449 732 5.100000 +449 854 5.100000 +449 859 5.100000 +449 940 5.100000 +449 945 5.100000 +449 963 5.100000 +449 1004 5.100000 +449 1077 5.100000 +449 1116 5.100000 +449 1141 5.100000 +449 1194 5.100000 +449 1202 5.100000 +449 1221 5.100000 +449 1274 5.100000 +449 1392 5.100000 +449 1478 5.100000 +449 1552 5.100000 +449 1553 5.100000 +449 1582 5.100000 +449 1602 5.100000 +449 1605 5.100000 +449 1857 5.100000 +449 1895 5.100000 +449 1900 5.100000 +449 1934 5.100000 +449 1968 5.100000 +449 2012 5.100000 +449 2100 5.100000 +449 2172 5.100000 +449 2222 5.100000 +449 2249 5.100000 +449 2325 5.100000 +449 2366 5.100000 +449 2435 5.100000 +449 2621 5.100000 +449 2624 5.100000 +449 2704 5.100000 +449 2724 5.100000 +449 2795 5.100000 +449 2907 5.100000 +449 2914 5.100000 +449 2935 5.100000 +449 2973 5.100000 +449 3068 5.100000 +449 3085 5.100000 +449 3098 5.100000 +450 43 5.100000 +450 67 5.100000 +450 74 5.100000 +450 110 5.100000 +450 113 5.100000 +450 120 5.100000 +450 122 5.100000 +450 137 5.100000 +450 153 5.100000 +450 171 5.100000 +450 178 5.100000 +450 302 5.100000 +450 322 5.100000 +450 371 5.100000 +450 394 5.100000 +450 411 5.100000 +450 430 5.100000 +450 515 5.100000 +450 518 5.100000 +450 528 5.100000 +450 534 5.100000 +450 594 5.100000 +450 677 5.100000 +450 745 5.100000 +450 774 5.100000 +450 779 5.100000 +450 790 5.100000 +450 814 5.100000 +450 893 5.100000 +450 916 5.100000 +450 980 5.100000 +450 996 5.100000 +450 1070 5.100000 +450 1103 5.100000 +450 1205 5.100000 +450 1248 5.100000 +450 1375 5.100000 +450 1395 5.100000 +450 1452 5.100000 +450 1539 5.100000 +450 1546 5.100000 +450 1605 5.100000 +450 1735 5.100000 +450 1821 5.100000 +450 1864 5.100000 +450 1920 5.100000 +450 1938 5.100000 +450 1942 5.100000 +450 1984 5.100000 +450 1996 5.100000 +450 1997 5.100000 +450 2007 5.100000 +450 2038 5.100000 +450 2078 5.100000 +450 2080 5.100000 +450 2093 5.100000 +450 2101 5.100000 +450 2121 5.100000 +450 2135 5.100000 +450 2150 5.100000 +450 2244 5.100000 +450 2281 5.100000 +450 2294 5.100000 +450 2434 5.100000 +450 2475 5.100000 +450 2498 5.100000 +450 2601 5.100000 +450 2620 5.100000 +450 2660 5.100000 +450 2692 5.100000 +450 2696 5.100000 +450 2722 5.100000 +450 2758 5.100000 +450 2787 5.100000 +450 2902 5.100000 +450 2905 5.100000 +450 3060 5.100000 +450 3099 5.100000 +450 3143 5.100000 +450 3147 5.100000 +450 3160 5.100000 +451 25 5.100000 +451 64 5.100000 +451 144 5.100000 +451 165 5.100000 +451 281 5.100000 +451 322 5.100000 +451 358 5.100000 +451 389 5.100000 +451 396 5.100000 +451 411 5.100000 +451 430 5.100000 +451 460 5.100000 +451 524 5.100000 +451 583 5.100000 +451 659 5.100000 +451 672 5.100000 +451 689 5.100000 +451 701 5.100000 +451 725 5.100000 +451 770 5.100000 +451 849 5.100000 +451 876 5.100000 +451 883 5.100000 +451 898 5.100000 +451 939 5.100000 +451 985 5.100000 +451 1069 5.100000 +451 1117 5.100000 +451 1149 5.100000 +451 1150 5.100000 +451 1188 5.100000 +451 1192 5.100000 +451 1284 5.100000 +451 1353 5.100000 +451 1368 5.100000 +451 1415 5.100000 +451 1631 5.100000 +451 1641 5.100000 +451 1658 5.100000 +451 1761 5.100000 +451 1789 5.100000 +451 1808 5.100000 +451 1825 5.100000 +451 1847 5.100000 +451 1855 5.100000 +451 1919 5.100000 +451 1964 5.100000 +451 1970 5.100000 +451 2031 5.100000 +451 2179 5.100000 +451 2265 5.100000 +451 2274 5.100000 +451 2377 5.100000 +451 2389 5.100000 +451 2433 5.100000 +451 2448 5.100000 +451 2466 5.100000 +451 2474 5.100000 +451 2596 5.100000 +451 2597 5.100000 +451 2599 5.100000 +451 2614 5.100000 +451 2718 5.100000 +451 2782 5.100000 +451 2837 5.100000 +451 2920 5.100000 +451 2930 5.100000 +451 2963 5.100000 +451 3026 5.100000 +451 3137 5.100000 +452 253 5.100000 +452 267 5.100000 +452 337 5.100000 +452 467 5.100000 +452 505 5.100000 +452 538 5.100000 +452 554 5.100000 +452 665 5.100000 +452 670 5.100000 +452 697 5.100000 +452 704 5.100000 +452 766 5.100000 +452 805 5.100000 +452 827 5.100000 +452 830 5.100000 +452 839 5.100000 +452 864 5.100000 +452 933 5.100000 +452 1044 5.100000 +452 1210 5.100000 +452 1249 5.100000 +452 1256 5.100000 +452 1273 5.100000 +452 1346 5.100000 +452 1405 5.100000 +452 1414 5.100000 +452 1417 5.100000 +452 1470 5.100000 +452 1540 5.100000 +452 1601 5.100000 +452 1608 5.100000 +452 1753 5.100000 +452 1768 5.100000 +452 1774 5.100000 +452 1842 5.100000 +452 1935 5.100000 +452 2042 5.100000 +452 2113 5.100000 +452 2189 5.100000 +452 2190 5.100000 +452 2229 5.100000 +452 2241 5.100000 +452 2409 5.100000 +452 2432 5.100000 +452 2439 5.100000 +452 2479 5.100000 +452 2491 5.100000 +452 2536 5.100000 +452 2553 5.100000 +452 2558 5.100000 +452 2598 5.100000 +452 2646 5.100000 +452 2713 5.100000 +452 2750 5.100000 +452 2833 5.100000 +452 2938 5.100000 +452 2961 5.100000 +452 2976 5.100000 +452 2993 5.100000 +452 3013 5.100000 +452 3041 5.100000 +452 3082 5.100000 +452 3115 5.100000 +452 3175 5.100000 +453 13 5.100000 +453 17 5.100000 +453 40 5.100000 +453 108 5.100000 +453 171 5.100000 +453 219 5.100000 +453 299 5.100000 +453 350 5.100000 +453 406 5.100000 +453 460 5.100000 +453 478 5.100000 +453 513 5.100000 +453 550 5.100000 +453 565 5.100000 +453 577 5.100000 +453 725 5.100000 +453 728 5.100000 +453 787 5.100000 +453 837 5.100000 +453 838 5.100000 +453 851 5.100000 +453 871 5.100000 +453 948 5.100000 +453 1031 5.100000 +453 1052 5.100000 +453 1075 5.100000 +453 1153 5.100000 +453 1272 5.100000 +453 1324 5.100000 +453 1360 5.100000 +453 1363 5.100000 +453 1380 5.100000 +453 1513 5.100000 +453 1598 5.100000 +453 1642 5.100000 +453 1687 5.100000 +453 1834 5.100000 +453 1841 5.100000 +453 1958 5.100000 +453 1990 5.100000 +453 2007 5.100000 +453 2010 5.100000 +453 2024 5.100000 +453 2057 5.100000 +453 2066 5.100000 +453 2163 5.100000 +453 2257 5.100000 +453 2298 5.100000 +453 2395 5.100000 +453 2475 5.100000 +453 2477 5.100000 +453 2539 5.100000 +453 2557 5.100000 +453 2570 5.100000 +453 2610 5.100000 +453 2664 5.100000 +453 2672 5.100000 +453 2683 5.100000 +453 2690 5.100000 +453 2764 5.100000 +453 2780 5.100000 +453 2840 5.100000 +453 2872 5.100000 +453 2883 5.100000 +453 2923 5.100000 +453 3023 5.100000 +453 3024 5.100000 +453 3061 5.100000 +453 3129 5.100000 +453 3172 5.100000 +454 84 5.100000 +454 96 5.100000 +454 167 5.100000 +454 181 5.100000 +454 198 5.100000 +454 245 5.100000 +454 398 5.100000 +454 429 5.100000 +454 441 5.100000 +454 450 5.100000 +454 605 5.100000 +454 626 5.100000 +454 681 5.100000 +454 699 5.100000 +454 734 5.100000 +454 788 5.100000 +454 826 5.100000 +454 834 5.100000 +454 849 5.100000 +454 959 5.100000 +454 1109 5.100000 +454 1227 5.100000 +454 1246 5.100000 +454 1267 5.100000 +454 1280 5.100000 +454 1312 5.100000 +454 1431 5.100000 +454 1517 5.100000 +454 1519 5.100000 +454 1529 5.100000 +454 1632 5.100000 +454 1639 5.100000 +454 1642 5.100000 +454 1763 5.100000 +454 1810 5.100000 +454 1838 5.100000 +454 1904 5.100000 +454 1922 5.100000 +454 1958 5.100000 +454 1964 5.100000 +454 1995 5.100000 +454 2008 5.100000 +454 2035 5.100000 +454 2185 5.100000 +454 2259 5.100000 +454 2287 5.100000 +454 2625 5.100000 +454 2635 5.100000 +454 2729 5.100000 +454 2855 5.100000 +454 2886 5.100000 +454 2897 5.100000 +454 2946 5.100000 +454 2947 5.100000 +454 3125 5.100000 +454 3136 5.100000 +455 192 5.100000 +455 202 5.100000 +455 215 5.100000 +455 263 5.100000 +455 326 5.100000 +455 384 5.100000 +455 449 5.100000 +455 535 5.100000 +455 667 5.100000 +455 728 5.100000 +455 731 5.100000 +455 742 5.100000 +455 754 5.100000 +455 815 5.100000 +455 822 5.100000 +455 859 5.100000 +455 963 5.100000 +455 1051 5.100000 +455 1056 5.100000 +455 1110 5.100000 +455 1118 5.100000 +455 1169 5.100000 +455 1256 5.100000 +455 1266 5.100000 +455 1280 5.100000 +455 1310 5.100000 +455 1320 5.100000 +455 1354 5.100000 +455 1361 5.100000 +455 1383 5.100000 +455 1408 5.100000 +455 1413 5.100000 +455 1423 5.100000 +455 1527 5.100000 +455 1563 5.100000 +455 1642 5.100000 +455 1700 5.100000 +455 1777 5.100000 +455 1844 5.100000 +455 1965 5.100000 +455 2016 5.100000 +455 2114 5.100000 +455 2117 5.100000 +455 2250 5.100000 +455 2270 5.100000 +455 2294 5.100000 +455 2320 5.100000 +455 2372 5.100000 +455 2399 5.100000 +455 2402 5.100000 +455 2493 5.100000 +455 2502 5.100000 +455 2529 5.100000 +455 2558 5.100000 +455 2590 5.100000 +455 2606 5.100000 +455 2645 5.100000 +455 2658 5.100000 +455 2766 5.100000 +455 2799 5.100000 +455 2851 5.100000 +455 2930 5.100000 +455 2989 5.100000 +455 3000 5.100000 +455 3115 5.100000 +455 3143 5.100000 +455 3153 5.100000 +455 3162 5.100000 +456 63 5.100000 +456 64 5.100000 +456 75 5.100000 +456 76 5.100000 +456 98 5.100000 +456 147 5.100000 +456 155 5.100000 +456 359 5.100000 +456 394 5.100000 +456 432 5.100000 +456 453 5.100000 +456 483 5.100000 +456 606 5.100000 +456 618 5.100000 +456 711 5.100000 +456 767 5.100000 +456 777 5.100000 +456 784 5.100000 +456 790 5.100000 +456 829 5.100000 +456 860 5.100000 +456 897 5.100000 +456 914 5.100000 +456 938 5.100000 +456 1026 5.100000 +456 1029 5.100000 +456 1036 5.100000 +456 1163 5.100000 +456 1165 5.100000 +456 1183 5.100000 +456 1197 5.100000 +456 1204 5.100000 +456 1215 5.100000 +456 1236 5.100000 +456 1248 5.100000 +456 1398 5.100000 +456 1402 5.100000 +456 1457 5.100000 +456 1582 5.100000 +456 1587 5.100000 +456 1607 5.100000 +456 1608 5.100000 +456 1692 5.100000 +456 1728 5.100000 +456 1801 5.100000 +456 1802 5.100000 +456 1803 5.100000 +456 1807 5.100000 +456 1974 5.100000 +456 1991 5.100000 +456 2111 5.100000 +456 2191 5.100000 +456 2274 5.100000 +456 2378 5.100000 +456 2400 5.100000 +456 2423 5.100000 +456 2506 5.100000 +456 2557 5.100000 +456 2623 5.100000 +456 2629 5.100000 +456 2651 5.100000 +456 2729 5.100000 +456 2759 5.100000 +456 2818 5.100000 +456 2879 5.100000 +456 2909 5.100000 +456 2941 5.100000 +456 3025 5.100000 +456 3096 5.100000 +456 3111 5.100000 +456 3112 5.100000 +456 3143 5.100000 +456 3177 5.100000 +457 56 5.100000 +457 89 5.100000 +457 144 5.100000 +457 262 5.100000 +457 264 5.100000 +457 301 5.100000 +457 394 5.100000 +457 463 5.100000 +457 467 5.100000 +457 517 5.100000 +457 603 5.100000 +457 608 5.100000 +457 641 5.100000 +457 695 5.100000 +457 740 5.100000 +457 781 5.100000 +457 789 5.100000 +457 866 5.100000 +457 887 5.100000 +457 944 5.100000 +457 988 5.100000 +457 1083 5.100000 +457 1088 5.100000 +457 1094 5.100000 +457 1101 5.100000 +457 1141 5.100000 +457 1155 5.100000 +457 1213 5.100000 +457 1301 5.100000 +457 1361 5.100000 +457 1382 5.100000 +457 1389 5.100000 +457 1405 5.100000 +457 1426 5.100000 +457 1447 5.100000 +457 1453 5.100000 +457 1455 5.100000 +457 1560 5.100000 +457 1755 5.100000 +457 1816 5.100000 +457 1925 5.100000 +457 1935 5.100000 +457 1981 5.100000 +457 2123 5.100000 +457 2151 5.100000 +457 2207 5.100000 +457 2220 5.100000 +457 2304 5.100000 +457 2365 5.100000 +457 2396 5.100000 +457 2432 5.100000 +457 2444 5.100000 +457 2498 5.100000 +457 2515 5.100000 +457 2616 5.100000 +457 2625 5.100000 +457 2656 5.100000 +457 2694 5.100000 +457 2772 5.100000 +457 2830 5.100000 +457 2831 5.100000 +457 2850 5.100000 +457 2888 5.100000 +457 2899 5.100000 +457 2910 5.100000 +457 2937 5.100000 +457 3103 5.100000 +457 3104 5.100000 +457 3134 5.100000 +457 3156 5.100000 +457 3177 5.100000 +458 30 5.100000 +458 113 5.100000 +458 162 5.100000 +458 205 5.100000 +458 225 5.100000 +458 242 5.100000 +458 258 5.100000 +458 286 5.100000 +458 323 5.100000 +458 330 5.100000 +458 398 5.100000 +458 402 5.100000 +458 419 5.100000 +458 438 5.100000 +458 559 5.100000 +458 579 5.100000 +458 632 5.100000 +458 690 5.100000 +458 927 5.100000 +458 957 5.100000 +458 969 5.100000 +458 981 5.100000 +458 1082 5.100000 +458 1083 5.100000 +458 1085 5.100000 +458 1185 5.100000 +458 1350 5.100000 +458 1371 5.100000 +458 1384 5.100000 +458 1396 5.100000 +458 1400 5.100000 +458 1536 5.100000 +458 1542 5.100000 +458 1611 5.100000 +458 1664 5.100000 +458 1688 5.100000 +458 1746 5.100000 +458 1874 5.100000 +458 1894 5.100000 +458 2032 5.100000 +458 2058 5.100000 +458 2108 5.100000 +458 2235 5.100000 +458 2240 5.100000 +458 2256 5.100000 +458 2549 5.100000 +458 2622 5.100000 +458 2789 5.100000 +458 2798 5.100000 +458 2834 5.100000 +458 2905 5.100000 +458 2956 5.100000 +458 2979 5.100000 +458 3022 5.100000 +458 3027 5.100000 +458 3029 5.100000 +458 3128 5.100000 +458 3137 5.100000 +458 3154 5.100000 +459 12 5.100000 +459 34 5.100000 +459 86 5.100000 +459 93 5.100000 +459 196 5.100000 +459 329 5.100000 +459 338 5.100000 +459 431 5.100000 +459 446 5.100000 +459 535 5.100000 +459 654 5.100000 +459 730 5.100000 +459 738 5.100000 +459 744 5.100000 +459 792 5.100000 +459 795 5.100000 +459 821 5.100000 +459 831 5.100000 +459 853 5.100000 +459 891 5.100000 +459 920 5.100000 +459 1003 5.100000 +459 1067 5.100000 +459 1082 5.100000 +459 1086 5.100000 +459 1179 5.100000 +459 1218 5.100000 +459 1304 5.100000 +459 1353 5.100000 +459 1454 5.100000 +459 1459 5.100000 +459 1585 5.100000 +459 1625 5.100000 +459 1635 5.100000 +459 1674 5.100000 +459 1688 5.100000 +459 1881 5.100000 +459 1923 5.100000 +459 1991 5.100000 +459 2133 5.100000 +459 2275 5.100000 +459 2313 5.100000 +459 2504 5.100000 +459 2526 5.100000 +459 2543 5.100000 +459 2606 5.100000 +459 2655 5.100000 +459 2675 5.100000 +459 2707 5.100000 +459 2718 5.100000 +459 2733 5.100000 +459 2886 5.100000 +459 2890 5.100000 +459 2974 5.100000 +459 3018 5.100000 +459 3026 5.100000 +459 3046 5.100000 +459 3054 5.100000 +459 3123 5.100000 +459 3141 5.100000 +459 3142 5.100000 +460 35 5.100000 +460 44 5.100000 +460 50 5.100000 +460 64 5.100000 +460 66 5.100000 +460 81 5.100000 +460 148 5.100000 +460 211 5.100000 +460 222 5.100000 +460 314 5.100000 +460 474 5.100000 +460 594 5.100000 +460 638 5.100000 +460 658 5.100000 +460 767 5.100000 +460 846 5.100000 +460 874 5.100000 +460 886 5.100000 +460 955 5.100000 +460 963 5.100000 +460 1075 5.100000 +460 1077 5.100000 +460 1104 5.100000 +460 1122 5.100000 +460 1153 5.100000 +460 1174 5.100000 +460 1226 5.100000 +460 1369 5.100000 +460 1514 5.100000 +460 1525 5.100000 +460 1605 5.100000 +460 1612 5.100000 +460 1637 5.100000 +460 1655 5.100000 +460 1663 5.100000 +460 1667 5.100000 +460 1712 5.100000 +460 1942 5.100000 +460 1947 5.100000 +460 1977 5.100000 +460 1992 5.100000 +460 2031 5.100000 +460 2113 5.100000 +460 2129 5.100000 +460 2177 5.100000 +460 2235 5.100000 +460 2253 5.100000 +460 2380 5.100000 +460 2384 5.100000 +460 2397 5.100000 +460 2472 5.100000 +460 2474 5.100000 +460 2484 5.100000 +460 2492 5.100000 +460 2529 5.100000 +460 2592 5.100000 +460 2717 5.100000 +460 2719 5.100000 +460 2736 5.100000 +460 2747 5.100000 +460 2772 5.100000 +460 2961 5.100000 +460 2986 5.100000 +460 3020 5.100000 +460 3044 5.100000 +460 3066 5.100000 +460 3180 5.100000 +460 3183 5.100000 +460 3196 5.100000 +461 60 5.100000 +461 76 5.100000 +461 84 5.100000 +461 131 5.100000 +461 137 5.100000 +461 140 5.100000 +461 233 5.100000 +461 293 5.100000 +461 323 5.100000 +461 343 5.100000 +461 345 5.100000 +461 367 5.100000 +461 413 5.100000 +461 459 5.100000 +461 630 5.100000 +461 649 5.100000 +461 682 5.100000 +461 718 5.100000 +461 769 5.100000 +461 783 5.100000 +461 801 5.100000 +461 804 5.100000 +461 820 5.100000 +461 834 5.100000 +461 861 5.100000 +461 872 5.100000 +461 882 5.100000 +461 928 5.100000 +461 944 5.100000 +461 981 5.100000 +461 1028 5.100000 +461 1037 5.100000 +461 1054 5.100000 +461 1172 5.100000 +461 1180 5.100000 +461 1212 5.100000 +461 1311 5.100000 +461 1367 5.100000 +461 1456 5.100000 +461 1493 5.100000 +461 1606 5.100000 +461 1677 5.100000 +461 1683 5.100000 +461 1707 5.100000 +461 1733 5.100000 +461 1735 5.100000 +461 1743 5.100000 +461 1880 5.100000 +461 1947 5.100000 +461 1957 5.100000 +461 1975 5.100000 +461 2088 5.100000 +461 2181 5.100000 +461 2194 5.100000 +461 2250 5.100000 +461 2341 5.100000 +461 2373 5.100000 +461 2439 5.100000 +461 2537 5.100000 +461 2545 5.100000 +461 2562 5.100000 +461 2603 5.100000 +461 2611 5.100000 +461 2624 5.100000 +461 2696 5.100000 +461 2749 5.100000 +461 2814 5.100000 +461 2828 5.100000 +461 2852 5.100000 +461 2909 5.100000 +461 2984 5.100000 +461 2987 5.100000 +461 2992 5.100000 +461 3129 5.100000 +461 3141 5.100000 +461 3145 5.100000 +461 3148 5.100000 +461 3155 5.100000 +462 24 5.100000 +462 68 5.100000 +462 264 5.100000 +462 335 5.100000 +462 444 5.100000 +462 490 5.100000 +462 506 5.100000 +462 536 5.100000 +462 587 5.100000 +462 656 5.100000 +462 692 5.100000 +462 722 5.100000 +462 747 5.100000 +462 776 5.100000 +462 890 5.100000 +462 902 5.100000 +462 906 5.100000 +462 957 5.100000 +462 1023 5.100000 +462 1089 5.100000 +462 1157 5.100000 +462 1166 5.100000 +462 1171 5.100000 +462 1202 5.100000 +462 1251 5.100000 +462 1260 5.100000 +462 1289 5.100000 +462 1297 5.100000 +462 1304 5.100000 +462 1443 5.100000 +462 1447 5.100000 +462 1515 5.100000 +462 1596 5.100000 +462 1611 5.100000 +462 1618 5.100000 +462 1661 5.100000 +462 1666 5.100000 +462 1700 5.100000 +462 1724 5.100000 +462 1820 5.100000 +462 1825 5.100000 +462 1913 5.100000 +462 1942 5.100000 +462 2122 5.100000 +462 2163 5.100000 +462 2164 5.100000 +462 2251 5.100000 +462 2450 5.100000 +462 2459 5.100000 +462 2499 5.100000 +462 2535 5.100000 +462 2549 5.100000 +462 2550 5.100000 +462 2607 5.100000 +462 2628 5.100000 +462 2630 5.100000 +462 2657 5.100000 +462 2776 5.100000 +462 2850 5.100000 +462 2855 5.100000 +462 2884 5.100000 +462 2929 5.100000 +462 2940 5.100000 +462 2954 5.100000 +462 2958 5.100000 +462 3074 5.100000 +462 3140 5.100000 +462 3147 5.100000 +462 3160 5.100000 +463 162 5.100000 +463 239 5.100000 +463 364 5.100000 +463 390 5.100000 +463 542 5.100000 +463 562 5.100000 +463 564 5.100000 +463 735 5.100000 +463 757 5.100000 +463 791 5.100000 +463 796 5.100000 +463 904 5.100000 +463 906 5.100000 +463 927 5.100000 +463 943 5.100000 +463 990 5.100000 +463 1054 5.100000 +463 1094 5.100000 +463 1163 5.100000 +463 1174 5.100000 +463 1218 5.100000 +463 1263 5.100000 +463 1350 5.100000 +463 1401 5.100000 +463 1402 5.100000 +463 1420 5.100000 +463 1461 5.100000 +463 1559 5.100000 +463 1578 5.100000 +463 1651 5.100000 +463 1655 5.100000 +463 1672 5.100000 +463 1675 5.100000 +463 1676 5.100000 +463 1726 5.100000 +463 1795 5.100000 +463 1818 5.100000 +463 1913 5.100000 +463 1942 5.100000 +463 2015 5.100000 +463 2028 5.100000 +463 2086 5.100000 +463 2165 5.100000 +463 2214 5.100000 +463 2226 5.100000 +463 2272 5.100000 +463 2310 5.100000 +463 2383 5.100000 +463 2416 5.100000 +463 2417 5.100000 +463 2438 5.100000 +463 2460 5.100000 +463 2469 5.100000 +463 2499 5.100000 +463 2554 5.100000 +463 2589 5.100000 +463 2607 5.100000 +463 2630 5.100000 +463 2647 5.100000 +463 2695 5.100000 +463 2739 5.100000 +463 2778 5.100000 +463 2802 5.100000 +463 2821 5.100000 +463 2822 5.100000 +463 2893 5.100000 +463 2936 5.100000 +463 2970 5.100000 +463 2973 5.100000 +463 3051 5.100000 +463 3070 5.100000 +463 3175 5.100000 +463 3186 5.100000 +463 3187 5.100000 +464 143 5.100000 +464 230 5.100000 +464 251 5.100000 +464 292 5.100000 +464 299 5.100000 +464 341 5.100000 +464 485 5.100000 +464 487 5.100000 +464 518 5.100000 +464 584 5.100000 +464 594 5.100000 +464 614 5.100000 +464 665 5.100000 +464 719 5.100000 +464 731 5.100000 +464 760 5.100000 +464 783 5.100000 +464 797 5.100000 +464 814 5.100000 +464 826 5.100000 +464 879 5.100000 +464 880 5.100000 +464 964 5.100000 +464 1036 5.100000 +464 1104 5.100000 +464 1134 5.100000 +464 1188 5.100000 +464 1301 5.100000 +464 1378 5.100000 +464 1389 5.100000 +464 1426 5.100000 +464 1435 5.100000 +464 1652 5.100000 +464 1745 5.100000 +464 1778 5.100000 +464 1813 5.100000 +464 1868 5.100000 +464 1876 5.100000 +464 1915 5.100000 +464 1969 5.100000 +464 1973 5.100000 +464 2008 5.100000 +464 2085 5.100000 +464 2187 5.100000 +464 2316 5.100000 +464 2324 5.100000 +464 2451 5.100000 +464 2527 5.100000 +464 2540 5.100000 +464 2551 5.100000 +464 2601 5.100000 +464 2688 5.100000 +464 2726 5.100000 +464 2812 5.100000 +464 2827 5.100000 +464 2858 5.100000 +464 2889 5.100000 +464 2940 5.100000 +464 2960 5.100000 +464 2969 5.100000 +464 3069 5.100000 +464 3115 5.100000 +464 3127 5.100000 +465 24 5.100000 +465 45 5.100000 +465 53 5.100000 +465 123 5.100000 +465 233 5.100000 +465 294 5.100000 +465 347 5.100000 +465 499 5.100000 +465 628 5.100000 +465 654 5.100000 +465 911 5.100000 +465 931 5.100000 +465 1015 5.100000 +465 1016 5.100000 +465 1070 5.100000 +465 1292 5.100000 +465 1376 5.100000 +465 1383 5.100000 +465 1404 5.100000 +465 1471 5.100000 +465 1476 5.100000 +465 1513 5.100000 +465 1648 5.100000 +465 1672 5.100000 +465 1703 5.100000 +465 1722 5.100000 +465 1782 5.100000 +465 1816 5.100000 +465 1906 5.100000 +465 1921 5.100000 +465 1929 5.100000 +465 1963 5.100000 +465 1968 5.100000 +465 1988 5.100000 +465 1989 5.100000 +465 1996 5.100000 +465 2009 5.100000 +465 2026 5.100000 +465 2063 5.100000 +465 2080 5.100000 +465 2109 5.100000 +465 2114 5.100000 +465 2141 5.100000 +465 2169 5.100000 +465 2217 5.100000 +465 2328 5.100000 +465 2334 5.100000 +465 2412 5.100000 +465 2462 5.100000 +465 2515 5.100000 +465 2658 5.100000 +465 2666 5.100000 +465 2710 5.100000 +465 2749 5.100000 +465 2804 5.100000 +465 2828 5.100000 +465 2878 5.100000 +465 2902 5.100000 +465 2944 5.100000 +465 3002 5.100000 +465 3014 5.100000 +465 3064 5.100000 +465 3072 5.100000 +465 3073 5.100000 +465 3086 5.100000 +466 51 5.100000 +466 55 5.100000 +466 71 5.100000 +466 89 5.100000 +466 104 5.100000 +466 153 5.100000 +466 155 5.100000 +466 340 5.100000 +466 474 5.100000 +466 500 5.100000 +466 506 5.100000 +466 542 5.100000 +466 548 5.100000 +466 554 5.100000 +466 607 5.100000 +466 641 5.100000 +466 693 5.100000 +466 722 5.100000 +466 770 5.100000 +466 783 5.100000 +466 792 5.100000 +466 822 5.100000 +466 835 5.100000 +466 849 5.100000 +466 895 5.100000 +466 989 5.100000 +466 1097 5.100000 +466 1209 5.100000 +466 1246 5.100000 +466 1292 5.100000 +466 1323 5.100000 +466 1393 5.100000 +466 1512 5.100000 +466 1630 5.100000 +466 1673 5.100000 +466 1679 5.100000 +466 1725 5.100000 +466 1767 5.100000 +466 1784 5.100000 +466 1793 5.100000 +466 1825 5.100000 +466 1858 5.100000 +466 1954 5.100000 +466 1986 5.100000 +466 1994 5.100000 +466 1995 5.100000 +466 2033 5.100000 +466 2045 5.100000 +466 2092 5.100000 +466 2098 5.100000 +466 2225 5.100000 +466 2299 5.100000 +466 2312 5.100000 +466 2497 5.100000 +466 2500 5.100000 +466 2538 5.100000 +466 2627 5.100000 +466 2629 5.100000 +466 2692 5.100000 +466 2707 5.100000 +466 2927 5.100000 +466 2938 5.100000 +466 3043 5.100000 +466 3061 5.100000 +466 3117 5.100000 +466 3133 5.100000 +466 3141 5.100000 +466 3148 5.100000 +466 3192 5.100000 +467 100 5.100000 +467 193 5.100000 +467 197 5.100000 +467 245 5.100000 +467 274 5.100000 +467 284 5.100000 +467 297 5.100000 +467 403 5.100000 +467 710 5.100000 +467 730 5.100000 +467 756 5.100000 +467 771 5.100000 +467 830 5.100000 +467 842 5.100000 +467 854 5.100000 +467 908 5.100000 +467 915 5.100000 +467 918 5.100000 +467 931 5.100000 +467 973 5.100000 +467 1080 5.100000 +467 1083 5.100000 +467 1164 5.100000 +467 1184 5.100000 +467 1233 5.100000 +467 1277 5.100000 +467 1311 5.100000 +467 1354 5.100000 +467 1422 5.100000 +467 1543 5.100000 +467 1576 5.100000 +467 1598 5.100000 +467 1608 5.100000 +467 1644 5.100000 +467 1728 5.100000 +467 1747 5.100000 +467 1804 5.100000 +467 1869 5.100000 +467 1922 5.100000 +467 1929 5.100000 +467 1931 5.100000 +467 1961 5.100000 +467 1976 5.100000 +467 2107 5.100000 +467 2136 5.100000 +467 2158 5.100000 +467 2206 5.100000 +467 2230 5.100000 +467 2232 5.100000 +467 2249 5.100000 +467 2344 5.100000 +467 2485 5.100000 +467 2538 5.100000 +467 2541 5.100000 +467 2634 5.100000 +467 2647 5.100000 +467 2664 5.100000 +467 2714 5.100000 +467 2717 5.100000 +467 2720 5.100000 +467 2849 5.100000 +467 2870 5.100000 +467 2968 5.100000 +467 2984 5.100000 +467 3045 5.100000 +467 3080 5.100000 +467 3100 5.100000 +467 3113 5.100000 +468 85 5.100000 +468 153 5.100000 +468 176 5.100000 +468 228 5.100000 +468 273 5.100000 +468 290 5.100000 +468 341 5.100000 +468 354 5.100000 +468 444 5.100000 +468 483 5.100000 +468 602 5.100000 +468 615 5.100000 +468 682 5.100000 +468 691 5.100000 +468 742 5.100000 +468 838 5.100000 +468 841 5.100000 +468 854 5.100000 +468 894 5.100000 +468 999 5.100000 +468 1000 5.100000 +468 1007 5.100000 +468 1011 5.100000 +468 1065 5.100000 +468 1090 5.100000 +468 1152 5.100000 +468 1159 5.100000 +468 1259 5.100000 +468 1273 5.100000 +468 1278 5.100000 +468 1376 5.100000 +468 1378 5.100000 +468 1419 5.100000 +468 1479 5.100000 +468 1533 5.100000 +468 1539 5.100000 +468 1564 5.100000 +468 1761 5.100000 +468 1809 5.100000 +468 1833 5.100000 +468 1841 5.100000 +468 1843 5.100000 +468 1849 5.100000 +468 1922 5.100000 +468 1932 5.100000 +468 1971 5.100000 +468 1973 5.100000 +468 1997 5.100000 +468 2023 5.100000 +468 2048 5.100000 +468 2051 5.100000 +468 2170 5.100000 +468 2215 5.100000 +468 2230 5.100000 +468 2239 5.100000 +468 2298 5.100000 +468 2335 5.100000 +468 2338 5.100000 +468 2461 5.100000 +468 2466 5.100000 +468 2502 5.100000 +468 2535 5.100000 +468 2558 5.100000 +468 2562 5.100000 +468 2580 5.100000 +468 2587 5.100000 +468 2597 5.100000 +468 2622 5.100000 +468 2630 5.100000 +468 2653 5.100000 +468 2736 5.100000 +468 2750 5.100000 +468 2783 5.100000 +468 2875 5.100000 +468 2939 5.100000 +468 2987 5.100000 +468 2997 5.100000 +468 3020 5.100000 +469 32 5.100000 +469 137 5.100000 +469 165 5.100000 +469 249 5.100000 +469 422 5.100000 +469 428 5.100000 +469 466 5.100000 +469 500 5.100000 +469 502 5.100000 +469 553 5.100000 +469 557 5.100000 +469 587 5.100000 +469 647 5.100000 +469 705 5.100000 +469 721 5.100000 +469 770 5.100000 +469 778 5.100000 +469 907 5.100000 +469 919 5.100000 +469 968 5.100000 +469 988 5.100000 +469 1035 5.100000 +469 1133 5.100000 +469 1145 5.100000 +469 1272 5.100000 +469 1445 5.100000 +469 1449 5.100000 +469 1470 5.100000 +469 1646 5.100000 +469 1652 5.100000 +469 1666 5.100000 +469 1720 5.100000 +469 1760 5.100000 +469 1817 5.100000 +469 2136 5.100000 +469 2204 5.100000 +469 2275 5.100000 +469 2301 5.100000 +469 2402 5.100000 +469 2410 5.100000 +469 2424 5.100000 +469 2429 5.100000 +469 2491 5.100000 +469 2493 5.100000 +469 2516 5.100000 +469 2520 5.100000 +469 2631 5.100000 +469 2643 5.100000 +469 2688 5.100000 +469 2796 5.100000 +469 2813 5.100000 +469 2895 5.100000 +469 2988 5.100000 +469 3011 5.100000 +469 3095 5.100000 +469 3162 5.100000 +470 35 5.100000 +470 54 5.100000 +470 94 5.100000 +470 95 5.100000 +470 135 5.100000 +470 148 5.100000 +470 191 5.100000 +470 345 5.100000 +470 389 5.100000 +470 426 5.100000 +470 518 5.100000 +470 531 5.100000 +470 600 5.100000 +470 691 5.100000 +470 796 5.100000 +470 845 5.100000 +470 883 5.100000 +470 898 5.100000 +470 992 5.100000 +470 1093 5.100000 +470 1169 5.100000 +470 1258 5.100000 +470 1297 5.100000 +470 1558 5.100000 +470 1603 5.100000 +470 1605 5.100000 +470 1649 5.100000 +470 1650 5.100000 +470 1707 5.100000 +470 1753 5.100000 +470 1837 5.100000 +470 1860 5.100000 +470 1861 5.100000 +470 1943 5.100000 +470 1955 5.100000 +470 2135 5.100000 +470 2147 5.100000 +470 2262 5.100000 +470 2265 5.100000 +470 2267 5.100000 +470 2268 5.100000 +470 2345 5.100000 +470 2346 5.100000 +470 2382 5.100000 +470 2413 5.100000 +470 2440 5.100000 +470 2485 5.100000 +470 2589 5.100000 +470 2594 5.100000 +470 2623 5.100000 +470 2636 5.100000 +470 2654 5.100000 +470 2674 5.100000 +470 2709 5.100000 +470 2767 5.100000 +470 2771 5.100000 +470 2821 5.100000 +470 2897 5.100000 +470 3066 5.100000 +470 3081 5.100000 +470 3117 5.100000 +470 3151 5.100000 +470 3186 5.100000 +471 73 5.100000 +471 108 5.100000 +471 142 5.100000 +471 202 5.100000 +471 273 5.100000 +471 284 5.100000 +471 332 5.100000 +471 362 5.100000 +471 377 5.100000 +471 479 5.100000 +471 564 5.100000 +471 598 5.100000 +471 618 5.100000 +471 624 5.100000 +471 640 5.100000 +471 669 5.100000 +471 720 5.100000 +471 966 5.100000 +471 993 5.100000 +471 1029 5.100000 +471 1114 5.100000 +471 1128 5.100000 +471 1155 5.100000 +471 1346 5.100000 +471 1376 5.100000 +471 1379 5.100000 +471 1407 5.100000 +471 1574 5.100000 +471 1596 5.100000 +471 1646 5.100000 +471 1659 5.100000 +471 1724 5.100000 +471 1806 5.100000 +471 1807 5.100000 +471 1858 5.100000 +471 1902 5.100000 +471 1948 5.100000 +471 1950 5.100000 +471 1972 5.100000 +471 1975 5.100000 +471 2006 5.100000 +471 2033 5.100000 +471 2035 5.100000 +471 2148 5.100000 +471 2232 5.100000 +471 2235 5.100000 +471 2296 5.100000 +471 2334 5.100000 +471 2369 5.100000 +471 2410 5.100000 +471 2415 5.100000 +471 2424 5.100000 +471 2456 5.100000 +471 2464 5.100000 +471 2488 5.100000 +471 2534 5.100000 +471 2626 5.100000 +471 2685 5.100000 +471 2720 5.100000 +471 2739 5.100000 +471 2858 5.100000 +471 2952 5.100000 +471 2972 5.100000 +471 3027 5.100000 +471 3078 5.100000 +471 3098 5.100000 +471 3155 5.100000 +471 3160 5.100000 +472 7 5.100000 +472 99 5.100000 +472 111 5.100000 +472 173 5.100000 +472 270 5.100000 +472 274 5.100000 +472 326 5.100000 +472 341 5.100000 +472 349 5.100000 +472 362 5.100000 +472 413 5.100000 +472 428 5.100000 +472 482 5.100000 +472 554 5.100000 +472 557 5.100000 +472 563 5.100000 +472 605 5.100000 +472 608 5.100000 +472 670 5.100000 +472 675 5.100000 +472 677 5.100000 +472 724 5.100000 +472 755 5.100000 +472 764 5.100000 +472 819 5.100000 +472 824 5.100000 +472 836 5.100000 +472 889 5.100000 +472 952 5.100000 +472 985 5.100000 +472 990 5.100000 +472 1022 5.100000 +472 1024 5.100000 +472 1074 5.100000 +472 1185 5.100000 +472 1191 5.100000 +472 1270 5.100000 +472 1285 5.100000 +472 1366 5.100000 +472 1476 5.100000 +472 1512 5.100000 +472 1526 5.100000 +472 1564 5.100000 +472 1585 5.100000 +472 1652 5.100000 +472 1655 5.100000 +472 1660 5.100000 +472 1666 5.100000 +472 1744 5.100000 +472 1782 5.100000 +472 1868 5.100000 +472 1917 5.100000 +472 2006 5.100000 +472 2024 5.100000 +472 2062 5.100000 +472 2094 5.100000 +472 2096 5.100000 +472 2120 5.100000 +472 2201 5.100000 +472 2236 5.100000 +472 2285 5.100000 +472 2366 5.100000 +472 2374 5.100000 +472 2383 5.100000 +472 2502 5.100000 +472 2593 5.100000 +472 2595 5.100000 +472 2852 5.100000 +472 2927 5.100000 +472 2954 5.100000 +472 3073 5.100000 +473 4 5.100000 +473 31 5.100000 +473 36 5.100000 +473 45 5.100000 +473 60 5.100000 +473 63 5.100000 +473 78 5.100000 +473 94 5.100000 +473 184 5.100000 +473 287 5.100000 +473 294 5.100000 +473 296 5.100000 +473 331 5.100000 +473 340 5.100000 +473 342 5.100000 +473 344 5.100000 +473 352 5.100000 +473 415 5.100000 +473 465 5.100000 +473 478 5.100000 +473 569 5.100000 +473 583 5.100000 +473 600 5.100000 +473 668 5.100000 +473 715 5.100000 +473 727 5.100000 +473 735 5.100000 +473 794 5.100000 +473 871 5.100000 +473 981 5.100000 +473 1001 5.100000 +473 1039 5.100000 +473 1071 5.100000 +473 1098 5.100000 +473 1253 5.100000 +473 1267 5.100000 +473 1276 5.100000 +473 1295 5.100000 +473 1315 5.100000 +473 1335 5.100000 +473 1376 5.100000 +473 1497 5.100000 +473 1628 5.100000 +473 1629 5.100000 +473 1655 5.100000 +473 1701 5.100000 +473 1748 5.100000 +473 1782 5.100000 +473 1969 5.100000 +473 2008 5.100000 +473 2023 5.100000 +473 2100 5.100000 +473 2166 5.100000 +473 2297 5.100000 +473 2435 5.100000 +473 2524 5.100000 +473 2575 5.100000 +473 2595 5.100000 +473 2638 5.100000 +473 2658 5.100000 +473 2662 5.100000 +473 2714 5.100000 +473 2727 5.100000 +473 2773 5.100000 +473 2865 5.100000 +473 2895 5.100000 +473 2897 5.100000 +473 2923 5.100000 +473 2927 5.100000 +473 2984 5.100000 +473 3010 5.100000 +473 3169 5.100000 +474 3 5.100000 +474 8 5.100000 +474 44 5.100000 +474 103 5.100000 +474 148 5.100000 +474 180 5.100000 +474 216 5.100000 +474 279 5.100000 +474 321 5.100000 +474 406 5.100000 +474 409 5.100000 +474 693 5.100000 +474 713 5.100000 +474 767 5.100000 +474 819 5.100000 +474 862 5.100000 +474 946 5.100000 +474 962 5.100000 +474 1021 5.100000 +474 1096 5.100000 +474 1204 5.100000 +474 1275 5.100000 +474 1291 5.100000 +474 1354 5.100000 +474 1374 5.100000 +474 1500 5.100000 +474 1558 5.100000 +474 1641 5.100000 +474 1664 5.100000 +474 1823 5.100000 +474 1836 5.100000 +474 1846 5.100000 +474 1876 5.100000 +474 1943 5.100000 +474 2030 5.100000 +474 2188 5.100000 +474 2204 5.100000 +474 2254 5.100000 +474 2270 5.100000 +474 2369 5.100000 +474 2383 5.100000 +474 2401 5.100000 +474 2439 5.100000 +474 2458 5.100000 +474 2470 5.100000 +474 2490 5.100000 +474 2634 5.100000 +474 2708 5.100000 +474 2731 5.100000 +474 2783 5.100000 +474 2905 5.100000 +474 3051 5.100000 +474 3062 5.100000 +474 3073 5.100000 +474 3129 5.100000 +474 3134 5.100000 +475 20 5.100000 +475 34 5.100000 +475 102 5.100000 +475 167 5.100000 +475 169 5.100000 +475 233 5.100000 +475 257 5.100000 +475 307 5.100000 +475 347 5.100000 +475 363 5.100000 +475 388 5.100000 +475 398 5.100000 +475 505 5.100000 +475 573 5.100000 +475 668 5.100000 +475 677 5.100000 +475 737 5.100000 +475 840 5.100000 +475 978 5.100000 +475 1017 5.100000 +475 1059 5.100000 +475 1170 5.100000 +475 1244 5.100000 +475 1288 5.100000 +475 1311 5.100000 +475 1345 5.100000 +475 1358 5.100000 +475 1367 5.100000 +475 1382 5.100000 +475 1386 5.100000 +475 1403 5.100000 +475 1452 5.100000 +475 1574 5.100000 +475 1581 5.100000 +475 1596 5.100000 +475 1618 5.100000 +475 1640 5.100000 +475 1715 5.100000 +475 1716 5.100000 +475 1718 5.100000 +475 1745 5.100000 +475 1803 5.100000 +475 1849 5.100000 +475 1922 5.100000 +475 1957 5.100000 +475 1969 5.100000 +475 2051 5.100000 +475 2122 5.100000 +475 2239 5.100000 +475 2252 5.100000 +475 2339 5.100000 +475 2342 5.100000 +475 2367 5.100000 +475 2540 5.100000 +475 2567 5.100000 +475 2575 5.100000 +475 2581 5.100000 +475 2598 5.100000 +475 2635 5.100000 +475 2643 5.100000 +475 2670 5.100000 +475 2684 5.100000 +475 2727 5.100000 +475 2786 5.100000 +475 2788 5.100000 +475 2799 5.100000 +475 2830 5.100000 +475 2863 5.100000 +475 2868 5.100000 +475 2904 5.100000 +475 2977 5.100000 +475 3067 5.100000 +475 3157 5.100000 +475 3196 5.100000 +475 3200 5.100000 +476 21 5.100000 +476 51 5.100000 +476 99 5.100000 +476 115 5.100000 +476 160 5.100000 +476 209 5.100000 +476 301 5.100000 +476 434 5.100000 +476 451 5.100000 +476 476 5.100000 +476 517 5.100000 +476 536 5.100000 +476 550 5.100000 +476 603 5.100000 +476 617 5.100000 +476 671 5.100000 +476 688 5.100000 +476 742 5.100000 +476 784 5.100000 +476 789 5.100000 +476 831 5.100000 +476 863 5.100000 +476 875 5.100000 +476 928 5.100000 +476 979 5.100000 +476 1048 5.100000 +476 1051 5.100000 +476 1102 5.100000 +476 1121 5.100000 +476 1157 5.100000 +476 1184 5.100000 +476 1406 5.100000 +476 1409 5.100000 +476 1419 5.100000 +476 1471 5.100000 +476 1477 5.100000 +476 1683 5.100000 +476 1690 5.100000 +476 1692 5.100000 +476 1729 5.100000 +476 1806 5.100000 +476 2017 5.100000 +476 2063 5.100000 +476 2146 5.100000 +476 2150 5.100000 +476 2302 5.100000 +476 2324 5.100000 +476 2331 5.100000 +476 2361 5.100000 +476 2394 5.100000 +476 2414 5.100000 +476 2423 5.100000 +476 2667 5.100000 +476 2674 5.100000 +476 2694 5.100000 +476 2718 5.100000 +476 2720 5.100000 +476 2850 5.100000 +476 2873 5.100000 +476 2899 5.100000 +476 2938 5.100000 +476 2967 5.100000 +476 3065 5.100000 +476 3100 5.100000 +477 38 5.100000 +477 74 5.100000 +477 101 5.100000 +477 167 5.100000 +477 193 5.100000 +477 207 5.100000 +477 213 5.100000 +477 227 5.100000 +477 289 5.100000 +477 308 5.100000 +477 370 5.100000 +477 423 5.100000 +477 727 5.100000 +477 770 5.100000 +477 783 5.100000 +477 795 5.100000 +477 888 5.100000 +477 910 5.100000 +477 1028 5.100000 +477 1031 5.100000 +477 1048 5.100000 +477 1088 5.100000 +477 1117 5.100000 +477 1168 5.100000 +477 1303 5.100000 +477 1412 5.100000 +477 1467 5.100000 +477 1470 5.100000 +477 1473 5.100000 +477 1508 5.100000 +477 1600 5.100000 +477 1663 5.100000 +477 1722 5.100000 +477 1769 5.100000 +477 1844 5.100000 +477 2002 5.100000 +477 2021 5.100000 +477 2037 5.100000 +477 2072 5.100000 +477 2083 5.100000 +477 2150 5.100000 +477 2245 5.100000 +477 2267 5.100000 +477 2392 5.100000 +477 2425 5.100000 +477 2430 5.100000 +477 2433 5.100000 +477 2668 5.100000 +477 2767 5.100000 +477 2790 5.100000 +477 2867 5.100000 +477 2879 5.100000 +477 2910 5.100000 +477 2982 5.100000 +477 3036 5.100000 +477 3057 5.100000 +477 3147 5.100000 +477 3158 5.100000 +478 6 5.100000 +478 37 5.100000 +478 40 5.100000 +478 51 5.100000 +478 159 5.100000 +478 201 5.100000 +478 202 5.100000 +478 298 5.100000 +478 371 5.100000 +478 386 5.100000 +478 396 5.100000 +478 431 5.100000 +478 441 5.100000 +478 509 5.100000 +478 702 5.100000 +478 913 5.100000 +478 917 5.100000 +478 934 5.100000 +478 989 5.100000 +478 1176 5.100000 +478 1252 5.100000 +478 1261 5.100000 +478 1274 5.100000 +478 1300 5.100000 +478 1359 5.100000 +478 1375 5.100000 +478 1381 5.100000 +478 1478 5.100000 +478 1540 5.100000 +478 1585 5.100000 +478 1635 5.100000 +478 1738 5.100000 +478 1772 5.100000 +478 1837 5.100000 +478 1862 5.100000 +478 1895 5.100000 +478 1897 5.100000 +478 2006 5.100000 +478 2024 5.100000 +478 2029 5.100000 +478 2163 5.100000 +478 2191 5.100000 +478 2300 5.100000 +478 2363 5.100000 +478 2500 5.100000 +478 2584 5.100000 +478 2625 5.100000 +478 2631 5.100000 +478 2674 5.100000 +478 2701 5.100000 +478 2885 5.100000 +478 2886 5.100000 +478 2933 5.100000 +478 2942 5.100000 +478 2998 5.100000 +478 3008 5.100000 +478 3020 5.100000 +478 3070 5.100000 +478 3088 5.100000 +479 125 5.100000 +479 255 5.100000 +479 259 5.100000 +479 289 5.100000 +479 308 5.100000 +479 338 5.100000 +479 467 5.100000 +479 469 5.100000 +479 510 5.100000 +479 609 5.100000 +479 659 5.100000 +479 698 5.100000 +479 737 5.100000 +479 835 5.100000 +479 857 5.100000 +479 903 5.100000 +479 926 5.100000 +479 953 5.100000 +479 1021 5.100000 +479 1024 5.100000 +479 1055 5.100000 +479 1159 5.100000 +479 1237 5.100000 +479 1273 5.100000 +479 1296 5.100000 +479 1416 5.100000 +479 1553 5.100000 +479 1625 5.100000 +479 1693 5.100000 +479 1787 5.100000 +479 2007 5.100000 +479 2017 5.100000 +479 2035 5.100000 +479 2073 5.100000 +479 2089 5.100000 +479 2090 5.100000 +479 2320 5.100000 +479 2412 5.100000 +479 2428 5.100000 +479 2488 5.100000 +479 2497 5.100000 +479 2531 5.100000 +479 2582 5.100000 +479 2689 5.100000 +479 2768 5.100000 +479 2804 5.100000 +479 2881 5.100000 +479 2950 5.100000 +479 2952 5.100000 +479 3006 5.100000 +479 3042 5.100000 +479 3048 5.100000 +479 3054 5.100000 +479 3083 5.100000 +479 3085 5.100000 +479 3123 5.100000 +479 3125 5.100000 +479 3153 5.100000 +480 57 5.100000 +480 72 5.100000 +480 151 5.100000 +480 155 5.100000 +480 188 5.100000 +480 228 5.100000 +480 237 5.100000 +480 266 5.100000 +480 410 5.100000 +480 508 5.100000 +480 520 5.100000 +480 646 5.100000 +480 647 5.100000 +480 712 5.100000 +480 740 5.100000 +480 744 5.100000 +480 973 5.100000 +480 999 5.100000 +480 1021 5.100000 +480 1064 5.100000 +480 1092 5.100000 +480 1165 5.100000 +480 1214 5.100000 +480 1258 5.100000 +480 1299 5.100000 +480 1449 5.100000 +480 1451 5.100000 +480 1593 5.100000 +480 1631 5.100000 +480 1640 5.100000 +480 1653 5.100000 +480 1657 5.100000 +480 1727 5.100000 +480 1861 5.100000 +480 1880 5.100000 +480 1899 5.100000 +480 1949 5.100000 +480 2050 5.100000 +480 2087 5.100000 +480 2100 5.100000 +480 2158 5.100000 +480 2239 5.100000 +480 2339 5.100000 +480 2360 5.100000 +480 2398 5.100000 +480 2431 5.100000 +480 2456 5.100000 +480 2501 5.100000 +480 2573 5.100000 +480 2616 5.100000 +480 2638 5.100000 +480 2670 5.100000 +480 2682 5.100000 +480 2725 5.100000 +480 2728 5.100000 +480 2885 5.100000 +480 2957 5.100000 +480 3031 5.100000 +480 3038 5.100000 +480 3139 5.100000 +480 3182 5.100000 +481 24 5.100000 +481 77 5.100000 +481 280 5.100000 +481 281 5.100000 +481 329 5.100000 +481 361 5.100000 +481 411 5.100000 +481 438 5.100000 +481 500 5.100000 +481 507 5.100000 +481 692 5.100000 +481 723 5.100000 +481 766 5.100000 +481 796 5.100000 +481 837 5.100000 +481 854 5.100000 +481 874 5.100000 +481 908 5.100000 +481 1008 5.100000 +481 1107 5.100000 +481 1152 5.100000 +481 1286 5.100000 +481 1293 5.100000 +481 1358 5.100000 +481 1371 5.100000 +481 1390 5.100000 +481 1427 5.100000 +481 1439 5.100000 +481 1464 5.100000 +481 1478 5.100000 +481 1506 5.100000 +481 1537 5.100000 +481 1553 5.100000 +481 1600 5.100000 +481 1783 5.100000 +481 1790 5.100000 +481 1793 5.100000 +481 1845 5.100000 +481 1899 5.100000 +481 2057 5.100000 +481 2075 5.100000 +481 2105 5.100000 +481 2130 5.100000 +481 2146 5.100000 +481 2207 5.100000 +481 2222 5.100000 +481 2253 5.100000 +481 2259 5.100000 +481 2278 5.100000 +481 2357 5.100000 +481 2384 5.100000 +481 2389 5.100000 +481 2526 5.100000 +481 2550 5.100000 +481 2594 5.100000 +481 2613 5.100000 +481 2662 5.100000 +481 2760 5.100000 +481 2763 5.100000 +481 2772 5.100000 +481 2808 5.100000 +481 2862 5.100000 +481 2873 5.100000 +481 2893 5.100000 +481 2910 5.100000 +481 2939 5.100000 +481 3037 5.100000 +481 3055 5.100000 +481 3116 5.100000 +481 3148 5.100000 +482 67 5.100000 +482 119 5.100000 +482 149 5.100000 +482 239 5.100000 +482 264 5.100000 +482 298 5.100000 +482 365 5.100000 +482 378 5.100000 +482 394 5.100000 +482 400 5.100000 +482 507 5.100000 +482 519 5.100000 +482 541 5.100000 +482 727 5.100000 +482 735 5.100000 +482 792 5.100000 +482 833 5.100000 +482 916 5.100000 +482 930 5.100000 +482 988 5.100000 +482 1006 5.100000 +482 1018 5.100000 +482 1050 5.100000 +482 1062 5.100000 +482 1164 5.100000 +482 1216 5.100000 +482 1229 5.100000 +482 1299 5.100000 +482 1323 5.100000 +482 1354 5.100000 +482 1450 5.100000 +482 1577 5.100000 +482 1668 5.100000 +482 1716 5.100000 +482 1740 5.100000 +482 1773 5.100000 +482 1789 5.100000 +482 1793 5.100000 +482 1803 5.100000 +482 1834 5.100000 +482 1866 5.100000 +482 1925 5.100000 +482 1946 5.100000 +482 1992 5.100000 +482 2032 5.100000 +482 2059 5.100000 +482 2072 5.100000 +482 2089 5.100000 +482 2113 5.100000 +482 2160 5.100000 +482 2207 5.100000 +482 2309 5.100000 +482 2349 5.100000 +482 2352 5.100000 +482 2389 5.100000 +482 2445 5.100000 +482 2492 5.100000 +482 2498 5.100000 +482 2502 5.100000 +482 2572 5.100000 +482 2652 5.100000 +482 2706 5.100000 +482 2715 5.100000 +482 2794 5.100000 +482 2813 5.100000 +482 2834 5.100000 +482 2902 5.100000 +482 2975 5.100000 +482 3123 5.100000 +482 3151 5.100000 +482 3175 5.100000 +483 175 5.100000 +483 211 5.100000 +483 214 5.100000 +483 230 5.100000 +483 237 5.100000 +483 246 5.100000 +483 426 5.100000 +483 447 5.100000 +483 553 5.100000 +483 657 5.100000 +483 680 5.100000 +483 790 5.100000 +483 798 5.100000 +483 842 5.100000 +483 963 5.100000 +483 971 5.100000 +483 993 5.100000 +483 1106 5.100000 +483 1126 5.100000 +483 1132 5.100000 +483 1162 5.100000 +483 1179 5.100000 +483 1265 5.100000 +483 1327 5.100000 +483 1342 5.100000 +483 1350 5.100000 +483 1389 5.100000 +483 1412 5.100000 +483 1446 5.100000 +483 1505 5.100000 +483 1510 5.100000 +483 1521 5.100000 +483 1548 5.100000 +483 1583 5.100000 +483 1696 5.100000 +483 1789 5.100000 +483 1860 5.100000 +483 1901 5.100000 +483 1907 5.100000 +483 1909 5.100000 +483 2000 5.100000 +483 2015 5.100000 +483 2106 5.100000 +483 2158 5.100000 +483 2216 5.100000 +483 2229 5.100000 +483 2240 5.100000 +483 2245 5.100000 +483 2256 5.100000 +483 2267 5.100000 +483 2307 5.100000 +483 2344 5.100000 +483 2384 5.100000 +483 2401 5.100000 +483 2406 5.100000 +483 2509 5.100000 +483 2599 5.100000 +483 2645 5.100000 +483 2689 5.100000 +483 2758 5.100000 +483 2761 5.100000 +483 2798 5.100000 +483 2827 5.100000 +483 2871 5.100000 +483 2933 5.100000 +483 3051 5.100000 +483 3179 5.100000 +484 1 5.100000 +484 16 5.100000 +484 18 5.100000 +484 29 5.100000 +484 79 5.100000 +484 114 5.100000 +484 118 5.100000 +484 119 5.100000 +484 161 5.100000 +484 187 5.100000 +484 217 5.100000 +484 228 5.100000 +484 250 5.100000 +484 312 5.100000 +484 361 5.100000 +484 370 5.100000 +484 464 5.100000 +484 654 5.100000 +484 662 5.100000 +484 671 5.100000 +484 686 5.100000 +484 718 5.100000 +484 744 5.100000 +484 747 5.100000 +484 802 5.100000 +484 839 5.100000 +484 956 5.100000 +484 959 5.100000 +484 995 5.100000 +484 1000 5.100000 +484 1140 5.100000 +484 1163 5.100000 +484 1195 5.100000 +484 1256 5.100000 +484 1444 5.100000 +484 1459 5.100000 +484 1613 5.100000 +484 1754 5.100000 +484 1769 5.100000 +484 1802 5.100000 +484 1809 5.100000 +484 1817 5.100000 +484 1861 5.100000 +484 1870 5.100000 +484 1872 5.100000 +484 1909 5.100000 +484 1997 5.100000 +484 2133 5.100000 +484 2149 5.100000 +484 2182 5.100000 +484 2240 5.100000 +484 2241 5.100000 +484 2329 5.100000 +484 2404 5.100000 +484 2571 5.100000 +484 2613 5.100000 +484 2634 5.100000 +484 2658 5.100000 +484 2675 5.100000 +484 2728 5.100000 +484 2763 5.100000 +484 2780 5.100000 +484 2795 5.100000 +484 2796 5.100000 +484 2819 5.100000 +484 2827 5.100000 +484 2841 5.100000 +484 2898 5.100000 +484 2954 5.100000 +484 2974 5.100000 +485 76 5.100000 +485 92 5.100000 +485 150 5.100000 +485 164 5.100000 +485 247 5.100000 +485 267 5.100000 +485 277 5.100000 +485 304 5.100000 +485 404 5.100000 +485 455 5.100000 +485 458 5.100000 +485 672 5.100000 +485 701 5.100000 +485 712 5.100000 +485 713 5.100000 +485 739 5.100000 +485 824 5.100000 +485 889 5.100000 +485 1000 5.100000 +485 1013 5.100000 +485 1033 5.100000 +485 1061 5.100000 +485 1206 5.100000 +485 1223 5.100000 +485 1244 5.100000 +485 1424 5.100000 +485 1445 5.100000 +485 1481 5.100000 +485 1527 5.100000 +485 1839 5.100000 +485 1933 5.100000 +485 1947 5.100000 +485 2032 5.100000 +485 2070 5.100000 +485 2141 5.100000 +485 2515 5.100000 +485 2520 5.100000 +485 2562 5.100000 +485 2660 5.100000 +485 2671 5.100000 +485 2692 5.100000 +485 2708 5.100000 +485 2796 5.100000 +485 2857 5.100000 +485 2935 5.100000 +485 3068 5.100000 +485 3074 5.100000 +485 3122 5.100000 +485 3147 5.100000 +485 3160 5.100000 +485 3166 5.100000 +486 93 5.100000 +486 118 5.100000 +486 144 5.100000 +486 310 5.100000 +486 329 5.100000 +486 383 5.100000 +486 391 5.100000 +486 396 5.100000 +486 400 5.100000 +486 424 5.100000 +486 437 5.100000 +486 481 5.100000 +486 519 5.100000 +486 560 5.100000 +486 602 5.100000 +486 626 5.100000 +486 726 5.100000 +486 742 5.100000 +486 777 5.100000 +486 782 5.100000 +486 825 5.100000 +486 866 5.100000 +486 895 5.100000 +486 916 5.100000 +486 924 5.100000 +486 964 5.100000 +486 996 5.100000 +486 1029 5.100000 +486 1030 5.100000 +486 1117 5.100000 +486 1134 5.100000 +486 1188 5.100000 +486 1364 5.100000 +486 1447 5.100000 +486 1500 5.100000 +486 1636 5.100000 +486 1638 5.100000 +486 1651 5.100000 +486 1716 5.100000 +486 1833 5.100000 +486 1857 5.100000 +486 1879 5.100000 +486 1899 5.100000 +486 1927 5.100000 +486 1928 5.100000 +486 1934 5.100000 +486 1938 5.100000 +486 2119 5.100000 +486 2274 5.100000 +486 2317 5.100000 +486 2392 5.100000 +486 2413 5.100000 +486 2423 5.100000 +486 2494 5.100000 +486 2503 5.100000 +486 2538 5.100000 +486 2602 5.100000 +486 2646 5.100000 +486 2723 5.100000 +486 2725 5.100000 +486 2748 5.100000 +486 2764 5.100000 +486 2835 5.100000 +486 2924 5.100000 +486 2929 5.100000 +486 3023 5.100000 +486 3057 5.100000 +486 3154 5.100000 +486 3171 5.100000 +486 3188 5.100000 +487 85 5.100000 +487 98 5.100000 +487 123 5.100000 +487 142 5.100000 +487 199 5.100000 +487 311 5.100000 +487 320 5.100000 +487 333 5.100000 +487 345 5.100000 +487 348 5.100000 +487 401 5.100000 +487 407 5.100000 +487 489 5.100000 +487 510 5.100000 +487 619 5.100000 +487 667 5.100000 +487 719 5.100000 +487 848 5.100000 +487 926 5.100000 +487 969 5.100000 +487 972 5.100000 +487 1024 5.100000 +487 1098 5.100000 +487 1148 5.100000 +487 1405 5.100000 +487 1581 5.100000 +487 1631 5.100000 +487 1659 5.100000 +487 1662 5.100000 +487 1676 5.100000 +487 1687 5.100000 +487 1692 5.100000 +487 1712 5.100000 +487 1730 5.100000 +487 1828 5.100000 +487 2006 5.100000 +487 2031 5.100000 +487 2132 5.100000 +487 2174 5.100000 +487 2211 5.100000 +487 2215 5.100000 +487 2300 5.100000 +487 2348 5.100000 +487 2393 5.100000 +487 2427 5.100000 +487 2519 5.100000 +487 2605 5.100000 +487 2652 5.100000 +487 2718 5.100000 +487 2765 5.100000 +487 2835 5.100000 +487 2971 5.100000 +487 3157 5.100000 +487 3174 5.100000 +488 17 5.100000 +488 31 5.100000 +488 39 5.100000 +488 110 5.100000 +488 114 5.100000 +488 117 5.100000 +488 206 5.100000 +488 381 5.100000 +488 405 5.100000 +488 440 5.100000 +488 461 5.100000 +488 464 5.100000 +488 512 5.100000 +488 523 5.100000 +488 640 5.100000 +488 647 5.100000 +488 698 5.100000 +488 764 5.100000 +488 799 5.100000 +488 849 5.100000 +488 946 5.100000 +488 1005 5.100000 +488 1148 5.100000 +488 1158 5.100000 +488 1185 5.100000 +488 1195 5.100000 +488 1289 5.100000 +488 1349 5.100000 +488 1468 5.100000 +488 1483 5.100000 +488 1557 5.100000 +488 1598 5.100000 +488 1615 5.100000 +488 1628 5.100000 +488 1655 5.100000 +488 1740 5.100000 +488 1752 5.100000 +488 1753 5.100000 +488 1777 5.100000 +488 1864 5.100000 +488 1956 5.100000 +488 1966 5.100000 +488 2006 5.100000 +488 2040 5.100000 +488 2047 5.100000 +488 2084 5.100000 +488 2131 5.100000 +488 2219 5.100000 +488 2225 5.100000 +488 2227 5.100000 +488 2249 5.100000 +488 2302 5.100000 +488 2387 5.100000 +488 2408 5.100000 +488 2409 5.100000 +488 2592 5.100000 +488 2643 5.100000 +488 2744 5.100000 +488 2807 5.100000 +488 2819 5.100000 +488 2824 5.100000 +488 2850 5.100000 +488 2916 5.100000 +488 2964 5.100000 +488 3036 5.100000 +488 3089 5.100000 +488 3149 5.100000 +489 10 5.100000 +489 85 5.100000 +489 147 5.100000 +489 154 5.100000 +489 197 5.100000 +489 300 5.100000 +489 314 5.100000 +489 315 5.100000 +489 533 5.100000 +489 575 5.100000 +489 579 5.100000 +489 658 5.100000 +489 661 5.100000 +489 671 5.100000 +489 764 5.100000 +489 772 5.100000 +489 773 5.100000 +489 830 5.100000 +489 890 5.100000 +489 915 5.100000 +489 952 5.100000 +489 991 5.100000 +489 1033 5.100000 +489 1039 5.100000 +489 1083 5.100000 +489 1086 5.100000 +489 1145 5.100000 +489 1159 5.100000 +489 1219 5.100000 +489 1273 5.100000 +489 1340 5.100000 +489 1348 5.100000 +489 1352 5.100000 +489 1376 5.100000 +489 1393 5.100000 +489 1685 5.100000 +489 1708 5.100000 +489 1765 5.100000 +489 1825 5.100000 +489 1827 5.100000 +489 1839 5.100000 +489 1866 5.100000 +489 1957 5.100000 +489 2039 5.100000 +489 2057 5.100000 +489 2124 5.100000 +489 2368 5.100000 +489 2450 5.100000 +489 2481 5.100000 +489 2510 5.100000 +489 2598 5.100000 +489 2661 5.100000 +489 2706 5.100000 +489 2718 5.100000 +489 2760 5.100000 +489 2816 5.100000 +489 2838 5.100000 +489 2844 5.100000 +489 2891 5.100000 +489 2926 5.100000 +489 2975 5.100000 +489 2995 5.100000 +489 3035 5.100000 +489 3050 5.100000 +489 3088 5.100000 +489 3096 5.100000 +489 3112 5.100000 +489 3179 5.100000 +489 3184 5.100000 +489 3185 5.100000 +490 9 5.100000 +490 44 5.100000 +490 124 5.100000 +490 125 5.100000 +490 144 5.100000 +490 390 5.100000 +490 399 5.100000 +490 403 5.100000 +490 530 5.100000 +490 531 5.100000 +490 592 5.100000 +490 625 5.100000 +490 668 5.100000 +490 669 5.100000 +490 689 5.100000 +490 857 5.100000 +490 873 5.100000 +490 883 5.100000 +490 884 5.100000 +490 1004 5.100000 +490 1072 5.100000 +490 1126 5.100000 +490 1172 5.100000 +490 1239 5.100000 +490 1271 5.100000 +490 1344 5.100000 +490 1434 5.100000 +490 1488 5.100000 +490 1610 5.100000 +490 1672 5.100000 +490 1686 5.100000 +490 1840 5.100000 +490 1868 5.100000 +490 1882 5.100000 +490 1887 5.100000 +490 1924 5.100000 +490 1947 5.100000 +490 1991 5.100000 +490 2014 5.100000 +490 2019 5.100000 +490 2033 5.100000 +490 2069 5.100000 +490 2090 5.100000 +490 2132 5.100000 +490 2146 5.100000 +490 2215 5.100000 +490 2221 5.100000 +490 2281 5.100000 +490 2330 5.100000 +490 2397 5.100000 +490 2460 5.100000 +490 2493 5.100000 +490 2494 5.100000 +490 2526 5.100000 +490 2573 5.100000 +490 2582 5.100000 +490 2583 5.100000 +490 2595 5.100000 +490 2598 5.100000 +490 2629 5.100000 +490 2639 5.100000 +490 2986 5.100000 +490 3010 5.100000 +490 3054 5.100000 +490 3072 5.100000 +490 3156 5.100000 +490 3200 5.100000 +491 95 5.100000 +491 125 5.100000 +491 221 5.100000 +491 238 5.100000 +491 246 5.100000 +491 281 5.100000 +491 290 5.100000 +491 350 5.100000 +491 375 5.100000 +491 393 5.100000 +491 538 5.100000 +491 559 5.100000 +491 630 5.100000 +491 658 5.100000 +491 682 5.100000 +491 751 5.100000 +491 833 5.100000 +491 834 5.100000 +491 836 5.100000 +491 892 5.100000 +491 916 5.100000 +491 945 5.100000 +491 983 5.100000 +491 1025 5.100000 +491 1165 5.100000 +491 1179 5.100000 +491 1196 5.100000 +491 1222 5.100000 +491 1231 5.100000 +491 1233 5.100000 +491 1270 5.100000 +491 1271 5.100000 +491 1315 5.100000 +491 1499 5.100000 +491 1534 5.100000 +491 1552 5.100000 +491 1598 5.100000 +491 1635 5.100000 +491 1639 5.100000 +491 1803 5.100000 +491 1821 5.100000 +491 1825 5.100000 +491 1923 5.100000 +491 1950 5.100000 +491 1963 5.100000 +491 2053 5.100000 +491 2079 5.100000 +491 2284 5.100000 +491 2292 5.100000 +491 2453 5.100000 +491 2523 5.100000 +491 2532 5.100000 +491 2544 5.100000 +491 2612 5.100000 +491 2615 5.100000 +491 2661 5.100000 +491 2669 5.100000 +491 2738 5.100000 +491 2825 5.100000 +491 2890 5.100000 +491 3094 5.100000 +491 3118 5.100000 +491 3136 5.100000 +491 3143 5.100000 +492 38 5.100000 +492 47 5.100000 +492 86 5.100000 +492 262 5.100000 +492 287 5.100000 +492 331 5.100000 +492 536 5.100000 +492 567 5.100000 +492 636 5.100000 +492 647 5.100000 +492 659 5.100000 +492 748 5.100000 +492 777 5.100000 +492 784 5.100000 +492 842 5.100000 +492 898 5.100000 +492 906 5.100000 +492 969 5.100000 +492 970 5.100000 +492 989 5.100000 +492 999 5.100000 +492 1057 5.100000 +492 1147 5.100000 +492 1254 5.100000 +492 1277 5.100000 +492 1335 5.100000 +492 1343 5.100000 +492 1370 5.100000 +492 1379 5.100000 +492 1388 5.100000 +492 1466 5.100000 +492 1533 5.100000 +492 1559 5.100000 +492 1582 5.100000 +492 1620 5.100000 +492 1642 5.100000 +492 1666 5.100000 +492 1720 5.100000 +492 1722 5.100000 +492 1984 5.100000 +492 1994 5.100000 +492 2036 5.100000 +492 2053 5.100000 +492 2055 5.100000 +492 2082 5.100000 +492 2101 5.100000 +492 2163 5.100000 +492 2238 5.100000 +492 2248 5.100000 +492 2261 5.100000 +492 2380 5.100000 +492 2589 5.100000 +492 2666 5.100000 +492 2859 5.100000 +492 2888 5.100000 +492 2926 5.100000 +492 2980 5.100000 +492 3014 5.100000 +492 3023 5.100000 +492 3032 5.100000 +492 3072 5.100000 +492 3125 5.100000 +492 3131 5.100000 +492 3135 5.100000 +492 3144 5.100000 +492 3199 5.100000 +493 36 5.100000 +493 107 5.100000 +493 146 5.100000 +493 241 5.100000 +493 423 5.100000 +493 430 5.100000 +493 523 5.100000 +493 541 5.100000 +493 582 5.100000 +493 615 5.100000 +493 626 5.100000 +493 705 5.100000 +493 926 5.100000 +493 934 5.100000 +493 1099 5.100000 +493 1113 5.100000 +493 1194 5.100000 +493 1268 5.100000 +493 1287 5.100000 +493 1290 5.100000 +493 1317 5.100000 +493 1363 5.100000 +493 1419 5.100000 +493 1439 5.100000 +493 1468 5.100000 +493 1530 5.100000 +493 1565 5.100000 +493 1602 5.100000 +493 1605 5.100000 +493 1610 5.100000 +493 1625 5.100000 +493 1658 5.100000 +493 1738 5.100000 +493 1780 5.100000 +493 1794 5.100000 +493 1804 5.100000 +493 1983 5.100000 +493 2015 5.100000 +493 2131 5.100000 +493 2159 5.100000 +493 2161 5.100000 +493 2197 5.100000 +493 2229 5.100000 +493 2273 5.100000 +493 2291 5.100000 +493 2364 5.100000 +493 2391 5.100000 +493 2515 5.100000 +493 2534 5.100000 +493 2545 5.100000 +493 2577 5.100000 +493 2607 5.100000 +493 2609 5.100000 +493 2612 5.100000 +493 2695 5.100000 +493 2707 5.100000 +493 2719 5.100000 +493 2730 5.100000 +493 2734 5.100000 +493 2768 5.100000 +493 2932 5.100000 +493 2977 5.100000 +493 3037 5.100000 +493 3050 5.100000 +493 3081 5.100000 +493 3142 5.100000 +494 79 5.100000 +494 122 5.100000 +494 142 5.100000 +494 183 5.100000 +494 221 5.100000 +494 294 5.100000 +494 319 5.100000 +494 367 5.100000 +494 383 5.100000 +494 404 5.100000 +494 539 5.100000 +494 597 5.100000 +494 676 5.100000 +494 781 5.100000 +494 815 5.100000 +494 861 5.100000 +494 873 5.100000 +494 912 5.100000 +494 919 5.100000 +494 929 5.100000 +494 965 5.100000 +494 1042 5.100000 +494 1094 5.100000 +494 1101 5.100000 +494 1155 5.100000 +494 1178 5.100000 +494 1183 5.100000 +494 1277 5.100000 +494 1374 5.100000 +494 1428 5.100000 +494 1443 5.100000 +494 1482 5.100000 +494 1512 5.100000 +494 1524 5.100000 +494 1572 5.100000 +494 1743 5.100000 +494 1748 5.100000 +494 1814 5.100000 +494 1819 5.100000 +494 1856 5.100000 +494 1858 5.100000 +494 1884 5.100000 +494 1925 5.100000 +494 2210 5.100000 +494 2262 5.100000 +494 2312 5.100000 +494 2424 5.100000 +494 2442 5.100000 +494 2505 5.100000 +494 2528 5.100000 +494 2595 5.100000 +494 2623 5.100000 +494 2791 5.100000 +494 2804 5.100000 +494 2823 5.100000 +494 2884 5.100000 +494 2935 5.100000 +494 2965 5.100000 +494 2973 5.100000 +494 3013 5.100000 +494 3014 5.100000 +494 3068 5.100000 +494 3179 5.100000 +495 145 5.100000 +495 227 5.100000 +495 289 5.100000 +495 350 5.100000 +495 380 5.100000 +495 383 5.100000 +495 456 5.100000 +495 469 5.100000 +495 501 5.100000 +495 504 5.100000 +495 593 5.100000 +495 620 5.100000 +495 698 5.100000 +495 717 5.100000 +495 720 5.100000 +495 730 5.100000 +495 733 5.100000 +495 819 5.100000 +495 869 5.100000 +495 893 5.100000 +495 915 5.100000 +495 925 5.100000 +495 932 5.100000 +495 989 5.100000 +495 1015 5.100000 +495 1021 5.100000 +495 1031 5.100000 +495 1074 5.100000 +495 1136 5.100000 +495 1372 5.100000 +495 1462 5.100000 +495 1508 5.100000 +495 1525 5.100000 +495 1779 5.100000 +495 1788 5.100000 +495 1837 5.100000 +495 1868 5.100000 +495 1960 5.100000 +495 2012 5.100000 +495 2026 5.100000 +495 2098 5.100000 +495 2114 5.100000 +495 2179 5.100000 +495 2189 5.100000 +495 2262 5.100000 +495 2358 5.100000 +495 2372 5.100000 +495 2375 5.100000 +495 2469 5.100000 +495 2488 5.100000 +495 2509 5.100000 +495 2555 5.100000 +495 2572 5.100000 +495 2666 5.100000 +495 2734 5.100000 +495 2750 5.100000 +495 2752 5.100000 +495 2753 5.100000 +495 2815 5.100000 +495 2871 5.100000 +495 2875 5.100000 +495 2912 5.100000 +495 2955 5.100000 +495 2965 5.100000 +495 3065 5.100000 +495 3165 5.100000 +496 90 5.100000 +496 100 5.100000 +496 102 5.100000 +496 321 5.100000 +496 353 5.100000 +496 367 5.100000 +496 464 5.100000 +496 644 5.100000 +496 776 5.100000 +496 820 5.100000 +496 873 5.100000 +496 903 5.100000 +496 910 5.100000 +496 929 5.100000 +496 963 5.100000 +496 978 5.100000 +496 1022 5.100000 +496 1098 5.100000 +496 1107 5.100000 +496 1111 5.100000 +496 1122 5.100000 +496 1184 5.100000 +496 1225 5.100000 +496 1292 5.100000 +496 1319 5.100000 +496 1348 5.100000 +496 1353 5.100000 +496 1392 5.100000 +496 1416 5.100000 +496 1432 5.100000 +496 1493 5.100000 +496 1682 5.100000 +496 1813 5.100000 +496 1858 5.100000 +496 1932 5.100000 +496 1971 5.100000 +496 1991 5.100000 +496 2076 5.100000 +496 2081 5.100000 +496 2142 5.100000 +496 2218 5.100000 +496 2242 5.100000 +496 2259 5.100000 +496 2478 5.100000 +496 2483 5.100000 +496 2485 5.100000 +496 2490 5.100000 +496 2534 5.100000 +496 2790 5.100000 +496 2887 5.100000 +496 2910 5.100000 +496 2945 5.100000 +496 3008 5.100000 +496 3067 5.100000 +496 3113 5.100000 +496 3116 5.100000 +496 3144 5.100000 +496 3169 5.100000 +496 3170 5.100000 +496 3183 5.100000 +496 3188 5.100000 +497 151 5.100000 +497 265 5.100000 +497 384 5.100000 +497 391 5.100000 +497 436 5.100000 +497 580 5.100000 +497 584 5.100000 +497 656 5.100000 +497 694 5.100000 +497 697 5.100000 +497 699 5.100000 +497 735 5.100000 +497 774 5.100000 +497 919 5.100000 +497 950 5.100000 +497 960 5.100000 +497 989 5.100000 +497 1038 5.100000 +497 1059 5.100000 +497 1108 5.100000 +497 1135 5.100000 +497 1147 5.100000 +497 1184 5.100000 +497 1204 5.100000 +497 1290 5.100000 +497 1368 5.100000 +497 1386 5.100000 +497 1578 5.100000 +497 1720 5.100000 +497 1796 5.100000 +497 1893 5.100000 +497 1946 5.100000 +497 1996 5.100000 +497 2066 5.100000 +497 2123 5.100000 +497 2186 5.100000 +497 2311 5.100000 +497 2325 5.100000 +497 2439 5.100000 +497 2461 5.100000 +497 2498 5.100000 +497 2539 5.100000 +497 2572 5.100000 +497 2591 5.100000 +497 2650 5.100000 +497 2722 5.100000 +497 2858 5.100000 +497 2895 5.100000 +497 2911 5.100000 +497 2968 5.100000 +497 3193 5.100000 +498 88 5.100000 +498 97 5.100000 +498 160 5.100000 +498 165 5.100000 +498 174 5.100000 +498 181 5.100000 +498 199 5.100000 +498 267 5.100000 +498 268 5.100000 +498 341 5.100000 +498 490 5.100000 +498 520 5.100000 +498 592 5.100000 +498 635 5.100000 +498 912 5.100000 +498 932 5.100000 +498 949 5.100000 +498 1001 5.100000 +498 1032 5.100000 +498 1069 5.100000 +498 1236 5.100000 +498 1300 5.100000 +498 1507 5.100000 +498 1597 5.100000 +498 1604 5.100000 +498 1641 5.100000 +498 1713 5.100000 +498 1767 5.100000 +498 1882 5.100000 +498 1913 5.100000 +498 2014 5.100000 +498 2016 5.100000 +498 2046 5.100000 +498 2053 5.100000 +498 2127 5.100000 +498 2223 5.100000 +498 2278 5.100000 +498 2426 5.100000 +498 2535 5.100000 +498 2572 5.100000 +498 2578 5.100000 +498 2579 5.100000 +498 2587 5.100000 +498 2665 5.100000 +498 2708 5.100000 +498 2720 5.100000 +498 2780 5.100000 +498 2787 5.100000 +498 2814 5.100000 +498 2886 5.100000 +498 2956 5.100000 +498 2969 5.100000 +498 2984 5.100000 +498 3032 5.100000 +498 3040 5.100000 +498 3088 5.100000 +498 3163 5.100000 +498 3181 5.100000 +498 3196 5.100000 +499 6 5.100000 +499 28 5.100000 +499 37 5.100000 +499 51 5.100000 +499 82 5.100000 +499 95 5.100000 +499 140 5.100000 +499 207 5.100000 +499 220 5.100000 +499 234 5.100000 +499 269 5.100000 +499 271 5.100000 +499 355 5.100000 +499 363 5.100000 +499 583 5.100000 +499 597 5.100000 +499 618 5.100000 +499 659 5.100000 +499 663 5.100000 +499 666 5.100000 +499 713 5.100000 +499 820 5.100000 +499 941 5.100000 +499 967 5.100000 +499 1039 5.100000 +499 1101 5.100000 +499 1182 5.100000 +499 1253 5.100000 +499 1417 5.100000 +499 1459 5.100000 +499 1519 5.100000 +499 1535 5.100000 +499 1638 5.100000 +499 1709 5.100000 +499 1726 5.100000 +499 1749 5.100000 +499 1777 5.100000 +499 1796 5.100000 +499 1828 5.100000 +499 1885 5.100000 +499 2009 5.100000 +499 2046 5.100000 +499 2076 5.100000 +499 2125 5.100000 +499 2246 5.100000 +499 2362 5.100000 +499 2422 5.100000 +499 2454 5.100000 +499 2490 5.100000 +499 2543 5.100000 +499 2557 5.100000 +499 2558 5.100000 +499 2581 5.100000 +499 2583 5.100000 +499 2616 5.100000 +499 2672 5.100000 +499 2675 5.100000 +499 2726 5.100000 +499 2788 5.100000 +499 2797 5.100000 +499 2849 5.100000 +499 2931 5.100000 +499 2957 5.100000 +499 2994 5.100000 +499 3006 5.100000 +499 3014 5.100000 +499 3196 5.100000 +500 69 5.100000 +500 269 5.100000 +500 348 5.100000 +500 373 5.100000 +500 531 5.100000 +500 585 5.100000 +500 596 5.100000 +500 604 5.100000 +500 681 5.100000 +500 698 5.100000 +500 744 5.100000 +500 756 5.100000 +500 769 5.100000 +500 794 5.100000 +500 798 5.100000 +500 821 5.100000 +500 910 5.100000 +500 982 5.100000 +500 1004 5.100000 +500 1053 5.100000 +500 1116 5.100000 +500 1152 5.100000 +500 1168 5.100000 +500 1211 5.100000 +500 1304 5.100000 +500 1355 5.100000 +500 1408 5.100000 +500 1463 5.100000 +500 1606 5.100000 +500 1613 5.100000 +500 1684 5.100000 +500 1711 5.100000 +500 1869 5.100000 +500 1929 5.100000 +500 2008 5.100000 +500 2024 5.100000 +500 2058 5.100000 +500 2164 5.100000 +500 2219 5.100000 +500 2238 5.100000 +500 2289 5.100000 +500 2359 5.100000 +500 2401 5.100000 +500 2403 5.100000 +500 2515 5.100000 +500 2580 5.100000 +500 2652 5.100000 +500 2813 5.100000 +500 2830 5.100000 +500 2895 5.100000 +500 2966 5.100000 +500 3005 5.100000 +500 3021 5.100000 +500 3044 5.100000 +501 35 5.100000 +501 44 5.100000 +501 68 5.100000 +501 80 5.100000 +501 267 5.100000 +501 314 5.100000 +501 405 5.100000 +501 409 5.100000 +501 426 5.100000 +501 511 5.100000 +501 520 5.100000 +501 547 5.100000 +501 627 5.100000 +501 658 5.100000 +501 753 5.100000 +501 885 5.100000 +501 956 5.100000 +501 1012 5.100000 +501 1228 5.100000 +501 1283 5.100000 +501 1289 5.100000 +501 1392 5.100000 +501 1434 5.100000 +501 1504 5.100000 +501 1554 5.100000 +501 1586 5.100000 +501 1606 5.100000 +501 1627 5.100000 +501 1665 5.100000 +501 1703 5.100000 +501 1708 5.100000 +501 1748 5.100000 +501 1753 5.100000 +501 1764 5.100000 +501 1805 5.100000 +501 1809 5.100000 +501 1815 5.100000 +501 1827 5.100000 +501 1846 5.100000 +501 1852 5.100000 +501 1861 5.100000 +501 1886 5.100000 +501 1914 5.100000 +501 2018 5.100000 +501 2029 5.100000 +501 2076 5.100000 +501 2119 5.100000 +501 2179 5.100000 +501 2196 5.100000 +501 2225 5.100000 +501 2237 5.100000 +501 2259 5.100000 +501 2309 5.100000 +501 2511 5.100000 +501 2526 5.100000 +501 2565 5.100000 +501 2612 5.100000 +501 2706 5.100000 +501 2720 5.100000 +501 2755 5.100000 +501 2756 5.100000 +501 2787 5.100000 +501 2841 5.100000 +501 2879 5.100000 +501 3187 5.100000 +502 7 5.100000 +502 95 5.100000 +502 103 5.100000 +502 108 5.100000 +502 151 5.100000 +502 198 5.100000 +502 348 5.100000 +502 363 5.100000 +502 391 5.100000 +502 400 5.100000 +502 410 5.100000 +502 436 5.100000 +502 481 5.100000 +502 561 5.100000 +502 621 5.100000 +502 667 5.100000 +502 681 5.100000 +502 803 5.100000 +502 836 5.100000 +502 923 5.100000 +502 950 5.100000 +502 979 5.100000 +502 983 5.100000 +502 1012 5.100000 +502 1112 5.100000 +502 1113 5.100000 +502 1161 5.100000 +502 1188 5.100000 +502 1195 5.100000 +502 1348 5.100000 +502 1357 5.100000 +502 1383 5.100000 +502 1391 5.100000 +502 1500 5.100000 +502 1528 5.100000 +502 1603 5.100000 +502 1636 5.100000 +502 1710 5.100000 +502 1713 5.100000 +502 1826 5.100000 +502 1861 5.100000 +502 1872 5.100000 +502 1878 5.100000 +502 1891 5.100000 +502 1899 5.100000 +502 1963 5.100000 +502 1970 5.100000 +502 2073 5.100000 +502 2173 5.100000 +502 2200 5.100000 +502 2243 5.100000 +502 2253 5.100000 +502 2266 5.100000 +502 2280 5.100000 +502 2333 5.100000 +502 2346 5.100000 +502 2393 5.100000 +502 2572 5.100000 +502 2621 5.100000 +502 2626 5.100000 +502 2629 5.100000 +502 2651 5.100000 +502 2762 5.100000 +502 2778 5.100000 +502 2872 5.100000 +502 2921 5.100000 +502 2953 5.100000 +502 3069 5.100000 +502 3143 5.100000 +502 3185 5.100000 +503 25 5.100000 +503 59 5.100000 +503 133 5.100000 +503 149 5.100000 +503 224 5.100000 +503 240 5.100000 +503 340 5.100000 +503 348 5.100000 +503 440 5.100000 +503 477 5.100000 +503 521 5.100000 +503 587 5.100000 +503 650 5.100000 +503 690 5.100000 +503 699 5.100000 +503 762 5.100000 +503 802 5.100000 +503 817 5.100000 +503 824 5.100000 +503 833 5.100000 +503 848 5.100000 +503 880 5.100000 +503 893 5.100000 +503 905 5.100000 +503 1072 5.100000 +503 1105 5.100000 +503 1145 5.100000 +503 1236 5.100000 +503 1263 5.100000 +503 1304 5.100000 +503 1362 5.100000 +503 1375 5.100000 +503 1381 5.100000 +503 1405 5.100000 +503 1447 5.100000 +503 1460 5.100000 +503 1546 5.100000 +503 1560 5.100000 +503 1562 5.100000 +503 1581 5.100000 +503 1589 5.100000 +503 1639 5.100000 +503 1705 5.100000 +503 1783 5.100000 +503 1802 5.100000 +503 1821 5.100000 +503 1880 5.100000 +503 1891 5.100000 +503 2063 5.100000 +503 2129 5.100000 +503 2215 5.100000 +503 2268 5.100000 +503 2272 5.100000 +503 2380 5.100000 +503 2388 5.100000 +503 2482 5.100000 +503 2573 5.100000 +503 2616 5.100000 +503 2649 5.100000 +503 2706 5.100000 +503 2716 5.100000 +503 2738 5.100000 +503 2747 5.100000 +503 2751 5.100000 +503 2801 5.100000 +503 2817 5.100000 +503 2841 5.100000 +503 2943 5.100000 +503 2962 5.100000 +503 3011 5.100000 +503 3064 5.100000 +503 3073 5.100000 +503 3095 5.100000 +503 3119 5.100000 +504 56 5.100000 +504 78 5.100000 +504 95 5.100000 +504 127 5.100000 +504 257 5.100000 +504 276 5.100000 +504 299 5.100000 +504 398 5.100000 +504 422 5.100000 +504 550 5.100000 +504 662 5.100000 +504 709 5.100000 +504 730 5.100000 +504 849 5.100000 +504 867 5.100000 +504 874 5.100000 +504 932 5.100000 +504 1050 5.100000 +504 1062 5.100000 +504 1087 5.100000 +504 1093 5.100000 +504 1104 5.100000 +504 1141 5.100000 +504 1175 5.100000 +504 1176 5.100000 +504 1218 5.100000 +504 1281 5.100000 +504 1298 5.100000 +504 1303 5.100000 +504 1323 5.100000 +504 1345 5.100000 +504 1380 5.100000 +504 1493 5.100000 +504 1502 5.100000 +504 1609 5.100000 +504 1640 5.100000 +504 1641 5.100000 +504 1649 5.100000 +504 1672 5.100000 +504 1685 5.100000 +504 1750 5.100000 +504 1751 5.100000 +504 1773 5.100000 +504 1816 5.100000 +504 1844 5.100000 +504 1873 5.100000 +504 1899 5.100000 +504 1988 5.100000 +504 2033 5.100000 +504 2058 5.100000 +504 2073 5.100000 +504 2118 5.100000 +504 2131 5.100000 +504 2203 5.100000 +504 2277 5.100000 +504 2283 5.100000 +504 2352 5.100000 +504 2539 5.100000 +504 2577 5.100000 +504 2588 5.100000 +504 2596 5.100000 +504 2606 5.100000 +504 2704 5.100000 +504 2757 5.100000 +504 2866 5.100000 +504 2909 5.100000 +504 2961 5.100000 +504 3007 5.100000 +504 3024 5.100000 +504 3064 5.100000 +504 3159 5.100000 +505 75 5.100000 +505 191 5.100000 +505 237 5.100000 +505 248 5.100000 +505 290 5.100000 +505 350 5.100000 +505 358 5.100000 +505 399 5.100000 +505 426 5.100000 +505 469 5.100000 +505 512 5.100000 +505 758 5.100000 +505 958 5.100000 +505 989 5.100000 +505 1103 5.100000 +505 1186 5.100000 +505 1227 5.100000 +505 1243 5.100000 +505 1270 5.100000 +505 1285 5.100000 +505 1289 5.100000 +505 1294 5.100000 +505 1308 5.100000 +505 1389 5.100000 +505 1399 5.100000 +505 1424 5.100000 +505 1429 5.100000 +505 1589 5.100000 +505 1592 5.100000 +505 1703 5.100000 +505 1718 5.100000 +505 1730 5.100000 +505 1731 5.100000 +505 1749 5.100000 +505 1764 5.100000 +505 1830 5.100000 +505 1855 5.100000 +505 1880 5.100000 +505 1888 5.100000 +505 2046 5.100000 +505 2168 5.100000 +505 2245 5.100000 +505 2260 5.100000 +505 2287 5.100000 +505 2321 5.100000 +505 2362 5.100000 +505 2368 5.100000 +505 2401 5.100000 +505 2411 5.100000 +505 2459 5.100000 +505 2483 5.100000 +505 2503 5.100000 +505 2537 5.100000 +505 2600 5.100000 +505 2635 5.100000 +505 2712 5.100000 +505 2728 5.100000 +505 2765 5.100000 +505 2806 5.100000 +505 2858 5.100000 +505 2885 5.100000 +505 2914 5.100000 +505 2948 5.100000 +505 3051 5.100000 +506 7 5.100000 +506 16 5.100000 +506 27 5.100000 +506 87 5.100000 +506 122 5.100000 +506 178 5.100000 +506 219 5.100000 +506 220 5.100000 +506 327 5.100000 +506 330 5.100000 +506 463 5.100000 +506 466 5.100000 +506 591 5.100000 +506 618 5.100000 +506 668 5.100000 +506 803 5.100000 +506 886 5.100000 +506 1093 5.100000 +506 1116 5.100000 +506 1134 5.100000 +506 1196 5.100000 +506 1230 5.100000 +506 1250 5.100000 +506 1253 5.100000 +506 1274 5.100000 +506 1283 5.100000 +506 1374 5.100000 +506 1426 5.100000 +506 1473 5.100000 +506 1510 5.100000 +506 1561 5.100000 +506 1586 5.100000 +506 1687 5.100000 +506 1695 5.100000 +506 1756 5.100000 +506 1891 5.100000 +506 1910 5.100000 +506 1950 5.100000 +506 2059 5.100000 +506 2094 5.100000 +506 2095 5.100000 +506 2116 5.100000 +506 2150 5.100000 +506 2153 5.100000 +506 2169 5.100000 +506 2170 5.100000 +506 2173 5.100000 +506 2180 5.100000 +506 2181 5.100000 +506 2202 5.100000 +506 2229 5.100000 +506 2241 5.100000 +506 2272 5.100000 +506 2306 5.100000 +506 2393 5.100000 +506 2466 5.100000 +506 2625 5.100000 +506 2654 5.100000 +506 2669 5.100000 +506 2836 5.100000 +506 2856 5.100000 +506 2977 5.100000 +506 2999 5.100000 +506 3005 5.100000 +506 3038 5.100000 +506 3136 5.100000 +507 9 5.100000 +507 34 5.100000 +507 50 5.100000 +507 73 5.100000 +507 187 5.100000 +507 295 5.100000 +507 313 5.100000 +507 322 5.100000 +507 348 5.100000 +507 406 5.100000 +507 443 5.100000 +507 457 5.100000 +507 471 5.100000 +507 475 5.100000 +507 517 5.100000 +507 537 5.100000 +507 581 5.100000 +507 614 5.100000 +507 684 5.100000 +507 909 5.100000 +507 910 5.100000 +507 939 5.100000 +507 962 5.100000 +507 1128 5.100000 +507 1248 5.100000 +507 1270 5.100000 +507 1390 5.100000 +507 1469 5.100000 +507 1514 5.100000 +507 1554 5.100000 +507 1778 5.100000 +507 1863 5.100000 +507 1865 5.100000 +507 1877 5.100000 +507 1916 5.100000 +507 1923 5.100000 +507 1965 5.100000 +507 2120 5.100000 +507 2140 5.100000 +507 2237 5.100000 +507 2320 5.100000 +507 2360 5.100000 +507 2407 5.100000 +507 2436 5.100000 +507 2550 5.100000 +507 2597 5.100000 +507 2661 5.100000 +507 2674 5.100000 +507 2866 5.100000 +507 2907 5.100000 +507 2914 5.100000 +507 2928 5.100000 +507 2937 5.100000 +507 2984 5.100000 +507 3078 5.100000 +507 3100 5.100000 +508 1 5.100000 +508 111 5.100000 +508 181 5.100000 +508 207 5.100000 +508 226 5.100000 +508 246 5.100000 +508 257 5.100000 +508 275 5.100000 +508 286 5.100000 +508 294 5.100000 +508 299 5.100000 +508 310 5.100000 +508 352 5.100000 +508 393 5.100000 +508 505 5.100000 +508 736 5.100000 +508 742 5.100000 +508 773 5.100000 +508 779 5.100000 +508 796 5.100000 +508 810 5.100000 +508 813 5.100000 +508 847 5.100000 +508 855 5.100000 +508 856 5.100000 +508 906 5.100000 +508 932 5.100000 +508 967 5.100000 +508 987 5.100000 +508 1176 5.100000 +508 1194 5.100000 +508 1197 5.100000 +508 1206 5.100000 +508 1227 5.100000 +508 1260 5.100000 +508 1261 5.100000 +508 1280 5.100000 +508 1338 5.100000 +508 1369 5.100000 +508 1547 5.100000 +508 1617 5.100000 +508 1675 5.100000 +508 1676 5.100000 +508 1715 5.100000 +508 1755 5.100000 +508 1777 5.100000 +508 1833 5.100000 +508 1861 5.100000 +508 1869 5.100000 +508 1916 5.100000 +508 1952 5.100000 +508 2000 5.100000 +508 2030 5.100000 +508 2064 5.100000 +508 2179 5.100000 +508 2193 5.100000 +508 2268 5.100000 +508 2338 5.100000 +508 2389 5.100000 +508 2423 5.100000 +508 2468 5.100000 +508 2515 5.100000 +508 2516 5.100000 +508 2526 5.100000 +508 2584 5.100000 +508 2703 5.100000 +508 2749 5.100000 +508 2820 5.100000 +508 2842 5.100000 +508 2924 5.100000 +508 2928 5.100000 +508 2964 5.100000 +508 3103 5.100000 +508 3126 5.100000 +508 3157 5.100000 +508 3162 5.100000 +508 3188 5.100000 +509 37 5.100000 +509 128 5.100000 +509 137 5.100000 +509 161 5.100000 +509 163 5.100000 +509 231 5.100000 +509 260 5.100000 +509 362 5.100000 +509 450 5.100000 +509 491 5.100000 +509 576 5.100000 +509 591 5.100000 +509 623 5.100000 +509 648 5.100000 +509 666 5.100000 +509 705 5.100000 +509 792 5.100000 +509 926 5.100000 +509 1057 5.100000 +509 1065 5.100000 +509 1149 5.100000 +509 1181 5.100000 +509 1205 5.100000 +509 1211 5.100000 +509 1231 5.100000 +509 1232 5.100000 +509 1245 5.100000 +509 1362 5.100000 +509 1478 5.100000 +509 1558 5.100000 +509 1597 5.100000 +509 1666 5.100000 +509 1673 5.100000 +509 1692 5.100000 +509 1702 5.100000 +509 1775 5.100000 +509 1785 5.100000 +509 1793 5.100000 +509 1946 5.100000 +509 1993 5.100000 +509 1998 5.100000 +509 2032 5.100000 +509 2079 5.100000 +509 2121 5.100000 +509 2141 5.100000 +509 2199 5.100000 +509 2249 5.100000 +509 2295 5.100000 +509 2322 5.100000 +509 2350 5.100000 +509 2389 5.100000 +509 2390 5.100000 +509 2536 5.100000 +509 2726 5.100000 +509 2775 5.100000 +509 3026 5.100000 +509 3032 5.100000 +509 3069 5.100000 +509 3101 5.100000 +510 5 5.100000 +510 61 5.100000 +510 126 5.100000 +510 166 5.100000 +510 167 5.100000 +510 173 5.100000 +510 231 5.100000 +510 257 5.100000 +510 304 5.100000 +510 346 5.100000 +510 358 5.100000 +510 441 5.100000 +510 575 5.100000 +510 601 5.100000 +510 661 5.100000 +510 769 5.100000 +510 820 5.100000 +510 878 5.100000 +510 895 5.100000 +510 914 5.100000 +510 942 5.100000 +510 1002 5.100000 +510 1047 5.100000 +510 1165 5.100000 +510 1166 5.100000 +510 1252 5.100000 +510 1291 5.100000 +510 1314 5.100000 +510 1340 5.100000 +510 1467 5.100000 +510 1530 5.100000 +510 1601 5.100000 +510 1676 5.100000 +510 1779 5.100000 +510 1834 5.100000 +510 1841 5.100000 +510 1881 5.100000 +510 1904 5.100000 +510 1954 5.100000 +510 1988 5.100000 +510 2004 5.100000 +510 2008 5.100000 +510 2113 5.100000 +510 2208 5.100000 +510 2224 5.100000 +510 2247 5.100000 +510 2266 5.100000 +510 2294 5.100000 +510 2336 5.100000 +510 2401 5.100000 +510 2550 5.100000 +510 2574 5.100000 +510 2575 5.100000 +510 2586 5.100000 +510 2736 5.100000 +510 2780 5.100000 +510 2814 5.100000 +510 2854 5.100000 +510 2855 5.100000 +510 2981 5.100000 +510 2983 5.100000 +510 2995 5.100000 +510 2996 5.100000 +510 3038 5.100000 +511 115 5.100000 +511 121 5.100000 +511 174 5.100000 +511 209 5.100000 +511 238 5.100000 +511 301 5.100000 +511 302 5.100000 +511 314 5.100000 +511 324 5.100000 +511 425 5.100000 +511 504 5.100000 +511 543 5.100000 +511 547 5.100000 +511 584 5.100000 +511 617 5.100000 +511 710 5.100000 +511 717 5.100000 +511 727 5.100000 +511 733 5.100000 +511 745 5.100000 +511 823 5.100000 +511 835 5.100000 +511 849 5.100000 +511 945 5.100000 +511 971 5.100000 +511 1003 5.100000 +511 1030 5.100000 +511 1046 5.100000 +511 1061 5.100000 +511 1079 5.100000 +511 1107 5.100000 +511 1172 5.100000 +511 1207 5.100000 +511 1248 5.100000 +511 1254 5.100000 +511 1283 5.100000 +511 1320 5.100000 +511 1369 5.100000 +511 1375 5.100000 +511 1431 5.100000 +511 1432 5.100000 +511 1563 5.100000 +511 1617 5.100000 +511 1669 5.100000 +511 1702 5.100000 +511 1728 5.100000 +511 1886 5.100000 +511 1922 5.100000 +511 1958 5.100000 +511 2053 5.100000 +511 2178 5.100000 +511 2196 5.100000 +511 2199 5.100000 +511 2217 5.100000 +511 2218 5.100000 +511 2239 5.100000 +511 2295 5.100000 +511 2387 5.100000 +511 2413 5.100000 +511 2526 5.100000 +511 2537 5.100000 +511 2666 5.100000 +511 2713 5.100000 +511 2717 5.100000 +511 2833 5.100000 +511 2877 5.100000 +511 2896 5.100000 +511 2973 5.100000 +511 3004 5.100000 +511 3005 5.100000 +511 3076 5.100000 +511 3089 5.100000 +511 3111 5.100000 +511 3174 5.100000 +511 3187 5.100000 +512 8 5.100000 +512 12 5.100000 +512 58 5.100000 +512 81 5.100000 +512 152 5.100000 +512 174 5.100000 +512 200 5.100000 +512 235 5.100000 +512 248 5.100000 +512 379 5.100000 +512 387 5.100000 +512 416 5.100000 +512 456 5.100000 +512 459 5.100000 +512 500 5.100000 +512 537 5.100000 +512 687 5.100000 +512 800 5.100000 +512 829 5.100000 +512 903 5.100000 +512 973 5.100000 +512 1161 5.100000 +512 1174 5.100000 +512 1241 5.100000 +512 1306 5.100000 +512 1374 5.100000 +512 1385 5.100000 +512 1402 5.100000 +512 1523 5.100000 +512 1527 5.100000 +512 1543 5.100000 +512 1628 5.100000 +512 1726 5.100000 +512 1734 5.100000 +512 1804 5.100000 +512 1830 5.100000 +512 1862 5.100000 +512 1866 5.100000 +512 1945 5.100000 +512 1967 5.100000 +512 2020 5.100000 +512 2075 5.100000 +512 2199 5.100000 +512 2202 5.100000 +512 2216 5.100000 +512 2307 5.100000 +512 2330 5.100000 +512 2353 5.100000 +512 2364 5.100000 +512 2418 5.100000 +512 2465 5.100000 +512 2474 5.100000 +512 2500 5.100000 +512 2510 5.100000 +512 2513 5.100000 +512 2594 5.100000 +512 2640 5.100000 +512 2709 5.100000 +512 2733 5.100000 +512 2751 5.100000 +512 2949 5.100000 +512 2958 5.100000 +512 3008 5.100000 +512 3038 5.100000 +512 3040 5.100000 +512 3061 5.100000 +512 3067 5.100000 +512 3082 5.100000 +512 3133 5.100000 +513 10 5.100000 +513 211 5.100000 +513 218 5.100000 +513 230 5.100000 +513 261 5.100000 +513 271 5.100000 +513 318 5.100000 +513 337 5.100000 +513 353 5.100000 +513 363 5.100000 +513 478 5.100000 +513 506 5.100000 +513 547 5.100000 +513 635 5.100000 +513 685 5.100000 +513 702 5.100000 +513 723 5.100000 +513 731 5.100000 +513 761 5.100000 +513 856 5.100000 +513 877 5.100000 +513 886 5.100000 +513 1067 5.100000 +513 1129 5.100000 +513 1132 5.100000 +513 1203 5.100000 +513 1234 5.100000 +513 1255 5.100000 +513 1287 5.100000 +513 1294 5.100000 +513 1347 5.100000 +513 1403 5.100000 +513 1425 5.100000 +513 1452 5.100000 +513 1457 5.100000 +513 1492 5.100000 +513 1579 5.100000 +513 1582 5.100000 +513 1641 5.100000 +513 1721 5.100000 +513 1743 5.100000 +513 1755 5.100000 +513 1876 5.100000 +513 1904 5.100000 +513 1956 5.100000 +513 2079 5.100000 +513 2155 5.100000 +513 2233 5.100000 +513 2256 5.100000 +513 2337 5.100000 +513 2373 5.100000 +513 2381 5.100000 +513 2412 5.100000 +513 2449 5.100000 +513 2464 5.100000 +513 2535 5.100000 +513 2539 5.100000 +513 2548 5.100000 +513 2625 5.100000 +513 2641 5.100000 +513 2652 5.100000 +513 2656 5.100000 +513 2661 5.100000 +513 2681 5.100000 +513 2687 5.100000 +513 2713 5.100000 +513 2749 5.100000 +513 2753 5.100000 +513 2772 5.100000 +513 2775 5.100000 +513 2842 5.100000 +513 2844 5.100000 +513 2856 5.100000 +513 2957 5.100000 +513 2974 5.100000 +513 2983 5.100000 +513 3011 5.100000 +513 3027 5.100000 +513 3042 5.100000 +513 3051 5.100000 +513 3098 5.100000 +513 3117 5.100000 +513 3130 5.100000 +513 3133 5.100000 +513 3149 5.100000 +514 25 5.100000 +514 54 5.100000 +514 63 5.100000 +514 111 5.100000 +514 150 5.100000 +514 165 5.100000 +514 195 5.100000 +514 213 5.100000 +514 250 5.100000 +514 306 5.100000 +514 365 5.100000 +514 378 5.100000 +514 448 5.100000 +514 469 5.100000 +514 568 5.100000 +514 698 5.100000 +514 716 5.100000 +514 745 5.100000 +514 818 5.100000 +514 834 5.100000 +514 885 5.100000 +514 915 5.100000 +514 916 5.100000 +514 924 5.100000 +514 941 5.100000 +514 997 5.100000 +514 1100 5.100000 +514 1117 5.100000 +514 1168 5.100000 +514 1197 5.100000 +514 1264 5.100000 +514 1311 5.100000 +514 1490 5.100000 +514 1508 5.100000 +514 1605 5.100000 +514 1608 5.100000 +514 1609 5.100000 +514 1613 5.100000 +514 1687 5.100000 +514 1693 5.100000 +514 1739 5.100000 +514 1874 5.100000 +514 1894 5.100000 +514 1931 5.100000 +514 1949 5.100000 +514 1967 5.100000 +514 2053 5.100000 +514 2141 5.100000 +514 2162 5.100000 +514 2206 5.100000 +514 2213 5.100000 +514 2255 5.100000 +514 2298 5.100000 +514 2332 5.100000 +514 2435 5.100000 +514 2437 5.100000 +514 2470 5.100000 +514 2484 5.100000 +514 2502 5.100000 +514 2568 5.100000 +514 2694 5.100000 +514 2722 5.100000 +514 2743 5.100000 +514 2796 5.100000 +514 2831 5.100000 +514 2964 5.100000 +514 2994 5.100000 +514 3018 5.100000 +514 3049 5.100000 +514 3078 5.100000 +514 3100 5.100000 +514 3162 5.100000 +515 56 5.100000 +515 155 5.100000 +515 200 5.100000 +515 291 5.100000 +515 302 5.100000 +515 384 5.100000 +515 385 5.100000 +515 423 5.100000 +515 493 5.100000 +515 505 5.100000 +515 630 5.100000 +515 633 5.100000 +515 653 5.100000 +515 669 5.100000 +515 728 5.100000 +515 779 5.100000 +515 844 5.100000 +515 1031 5.100000 +515 1095 5.100000 +515 1222 5.100000 +515 1322 5.100000 +515 1376 5.100000 +515 1404 5.100000 +515 1422 5.100000 +515 1501 5.100000 +515 1529 5.100000 +515 1610 5.100000 +515 1619 5.100000 +515 1704 5.100000 +515 1709 5.100000 +515 1719 5.100000 +515 1722 5.100000 +515 1841 5.100000 +515 1869 5.100000 +515 1906 5.100000 +515 1923 5.100000 +515 1965 5.100000 +515 2021 5.100000 +515 2192 5.100000 +515 2272 5.100000 +515 2280 5.100000 +515 2312 5.100000 +515 2395 5.100000 +515 2403 5.100000 +515 2500 5.100000 +515 2506 5.100000 +515 2549 5.100000 +515 2573 5.100000 +515 2577 5.100000 +515 2649 5.100000 +515 2869 5.100000 +515 2941 5.100000 +515 2969 5.100000 +515 3037 5.100000 +515 3165 5.100000 +516 57 5.100000 +516 134 5.100000 +516 216 5.100000 +516 243 5.100000 +516 244 5.100000 +516 257 5.100000 +516 342 5.100000 +516 348 5.100000 +516 422 5.100000 +516 454 5.100000 +516 644 5.100000 +516 685 5.100000 +516 796 5.100000 +516 801 5.100000 +516 870 5.100000 +516 879 5.100000 +516 882 5.100000 +516 994 5.100000 +516 1020 5.100000 +516 1024 5.100000 +516 1158 5.100000 +516 1238 5.100000 +516 1251 5.100000 +516 1318 5.100000 +516 1445 5.100000 +516 1469 5.100000 +516 1489 5.100000 +516 1631 5.100000 +516 1744 5.100000 +516 1778 5.100000 +516 1784 5.100000 +516 1840 5.100000 +516 1869 5.100000 +516 1954 5.100000 +516 2052 5.100000 +516 2153 5.100000 +516 2167 5.100000 +516 2220 5.100000 +516 2235 5.100000 +516 2240 5.100000 +516 2264 5.100000 +516 2407 5.100000 +516 2416 5.100000 +516 2527 5.100000 +516 2530 5.100000 +516 2603 5.100000 +516 2622 5.100000 +516 2651 5.100000 +516 2711 5.100000 +516 2721 5.100000 +516 2733 5.100000 +516 2809 5.100000 +516 2924 5.100000 +516 2978 5.100000 +516 3050 5.100000 +516 3071 5.100000 +516 3125 5.100000 +516 3187 5.100000 +517 10 5.100000 +517 109 5.100000 +517 117 5.100000 +517 190 5.100000 +517 377 5.100000 +517 475 5.100000 +517 479 5.100000 +517 531 5.100000 +517 639 5.100000 +517 694 5.100000 +517 800 5.100000 +517 854 5.100000 +517 856 5.100000 +517 926 5.100000 +517 931 5.100000 +517 1050 5.100000 +517 1069 5.100000 +517 1233 5.100000 +517 1254 5.100000 +517 1269 5.100000 +517 1378 5.100000 +517 1418 5.100000 +517 1440 5.100000 +517 1506 5.100000 +517 1512 5.100000 +517 1521 5.100000 +517 1574 5.100000 +517 1594 5.100000 +517 1644 5.100000 +517 1647 5.100000 +517 1658 5.100000 +517 1693 5.100000 +517 1871 5.100000 +517 1894 5.100000 +517 1952 5.100000 +517 1964 5.100000 +517 2015 5.100000 +517 2017 5.100000 +517 2060 5.100000 +517 2134 5.100000 +517 2187 5.100000 +517 2214 5.100000 +517 2339 5.100000 +517 2357 5.100000 +517 2464 5.100000 +517 2486 5.100000 +517 2496 5.100000 +517 2500 5.100000 +517 2515 5.100000 +517 2551 5.100000 +517 2627 5.100000 +517 2688 5.100000 +517 2698 5.100000 +517 2818 5.100000 +517 2853 5.100000 +517 2862 5.100000 +517 3040 5.100000 +517 3085 5.100000 +517 3167 5.100000 +517 3199 5.100000 +518 53 5.100000 +518 76 5.100000 +518 80 5.100000 +518 238 5.100000 +518 267 5.100000 +518 283 5.100000 +518 310 5.100000 +518 330 5.100000 +518 333 5.100000 +518 351 5.100000 +518 371 5.100000 +518 394 5.100000 +518 424 5.100000 +518 427 5.100000 +518 552 5.100000 +518 578 5.100000 +518 581 5.100000 +518 597 5.100000 +518 622 5.100000 +518 628 5.100000 +518 674 5.100000 +518 727 5.100000 +518 735 5.100000 +518 782 5.100000 +518 824 5.100000 +518 858 5.100000 +518 861 5.100000 +518 889 5.100000 +518 1039 5.100000 +518 1061 5.100000 +518 1208 5.100000 +518 1222 5.100000 +518 1295 5.100000 +518 1342 5.100000 +518 1364 5.100000 +518 1430 5.100000 +518 1439 5.100000 +518 1456 5.100000 +518 1536 5.100000 +518 1590 5.100000 +518 1615 5.100000 +518 1637 5.100000 +518 1675 5.100000 +518 1689 5.100000 +518 1725 5.100000 +518 1769 5.100000 +518 1813 5.100000 +518 1814 5.100000 +518 1883 5.100000 +518 1887 5.100000 +518 1916 5.100000 +518 1983 5.100000 +518 2084 5.100000 +518 2177 5.100000 +518 2265 5.100000 +518 2413 5.100000 +518 2444 5.100000 +518 2672 5.100000 +518 2682 5.100000 +518 2697 5.100000 +518 2700 5.100000 +518 2763 5.100000 +518 2861 5.100000 +518 2894 5.100000 +518 2896 5.100000 +518 2943 5.100000 +518 2995 5.100000 +518 3072 5.100000 +518 3154 5.100000 +518 3198 5.100000 +519 20 5.100000 +519 162 5.100000 +519 176 5.100000 +519 281 5.100000 +519 333 5.100000 +519 359 5.100000 +519 362 5.100000 +519 405 5.100000 +519 432 5.100000 +519 545 5.100000 +519 612 5.100000 +519 693 5.100000 +519 891 5.100000 +519 963 5.100000 +519 966 5.100000 +519 1037 5.100000 +519 1076 5.100000 +519 1088 5.100000 +519 1105 5.100000 +519 1210 5.100000 +519 1224 5.100000 +519 1293 5.100000 +519 1315 5.100000 +519 1388 5.100000 +519 1404 5.100000 +519 1470 5.100000 +519 1534 5.100000 +519 1689 5.100000 +519 1696 5.100000 +519 1702 5.100000 +519 1712 5.100000 +519 1718 5.100000 +519 1729 5.100000 +519 1759 5.100000 +519 1886 5.100000 +519 1923 5.100000 +519 1944 5.100000 +519 2031 5.100000 +519 2085 5.100000 +519 2240 5.100000 +519 2258 5.100000 +519 2305 5.100000 +519 2355 5.100000 +519 2450 5.100000 +519 2514 5.100000 +519 2627 5.100000 +519 2631 5.100000 +519 2669 5.100000 +519 2721 5.100000 +519 2749 5.100000 +519 2760 5.100000 +519 2839 5.100000 +519 2871 5.100000 +519 2954 5.100000 +519 2994 5.100000 +519 3009 5.100000 +519 3014 5.100000 +519 3016 5.100000 +519 3123 5.100000 +519 3155 5.100000 +520 45 5.100000 +520 148 5.100000 +520 151 5.100000 +520 266 5.100000 +520 343 5.100000 +520 465 5.100000 +520 475 5.100000 +520 502 5.100000 +520 573 5.100000 +520 589 5.100000 +520 611 5.100000 +520 678 5.100000 +520 746 5.100000 +520 777 5.100000 +520 804 5.100000 +520 821 5.100000 +520 866 5.100000 +520 887 5.100000 +520 936 5.100000 +520 962 5.100000 +520 976 5.100000 +520 1011 5.100000 +520 1034 5.100000 +520 1037 5.100000 +520 1039 5.100000 +520 1092 5.100000 +520 1190 5.100000 +520 1221 5.100000 +520 1315 5.100000 +520 1429 5.100000 +520 1595 5.100000 +520 1627 5.100000 +520 1664 5.100000 +520 1727 5.100000 +520 1806 5.100000 +520 1809 5.100000 +520 1817 5.100000 +520 1847 5.100000 +520 1864 5.100000 +520 1912 5.100000 +520 1919 5.100000 +520 1934 5.100000 +520 1963 5.100000 +520 2107 5.100000 +520 2110 5.100000 +520 2163 5.100000 +520 2233 5.100000 +520 2303 5.100000 +520 2332 5.100000 +520 2339 5.100000 +520 2447 5.100000 +520 2452 5.100000 +520 2539 5.100000 +520 2542 5.100000 +520 2558 5.100000 +520 2560 5.100000 +520 2627 5.100000 +520 2805 5.100000 +520 2863 5.100000 +520 2892 5.100000 +520 2932 5.100000 +520 2945 5.100000 +520 2948 5.100000 +520 2952 5.100000 +520 2988 5.100000 +520 3085 5.100000 +520 3161 5.100000 +521 6 5.100000 +521 12 5.100000 +521 82 5.100000 +521 171 5.100000 +521 263 5.100000 +521 276 5.100000 +521 284 5.100000 +521 352 5.100000 +521 447 5.100000 +521 455 5.100000 +521 475 5.100000 +521 477 5.100000 +521 551 5.100000 +521 803 5.100000 +521 887 5.100000 +521 902 5.100000 +521 915 5.100000 +521 933 5.100000 +521 936 5.100000 +521 957 5.100000 +521 1115 5.100000 +521 1133 5.100000 +521 1203 5.100000 +521 1259 5.100000 +521 1328 5.100000 +521 1341 5.100000 +521 1444 5.100000 +521 1458 5.100000 +521 1463 5.100000 +521 1495 5.100000 +521 1527 5.100000 +521 1650 5.100000 +521 1705 5.100000 +521 1742 5.100000 +521 1761 5.100000 +521 1774 5.100000 +521 1851 5.100000 +521 1866 5.100000 +521 1954 5.100000 +521 1959 5.100000 +521 1969 5.100000 +521 1990 5.100000 +521 2050 5.100000 +521 2086 5.100000 +521 2089 5.100000 +521 2109 5.100000 +521 2136 5.100000 +521 2155 5.100000 +521 2158 5.100000 +521 2412 5.100000 +521 2442 5.100000 +521 2460 5.100000 +521 2512 5.100000 +521 2536 5.100000 +521 2582 5.100000 +521 2664 5.100000 +521 2668 5.100000 +521 2676 5.100000 +521 2707 5.100000 +521 2708 5.100000 +521 2739 5.100000 +521 2783 5.100000 +521 2814 5.100000 +521 2824 5.100000 +521 2886 5.100000 +521 2962 5.100000 +521 3163 5.100000 +522 48 5.100000 +522 169 5.100000 +522 201 5.100000 +522 254 5.100000 +522 284 5.100000 +522 406 5.100000 +522 425 5.100000 +522 488 5.100000 +522 507 5.100000 +522 642 5.100000 +522 669 5.100000 +522 682 5.100000 +522 686 5.100000 +522 820 5.100000 +522 832 5.100000 +522 954 5.100000 +522 986 5.100000 +522 1042 5.100000 +522 1117 5.100000 +522 1148 5.100000 +522 1187 5.100000 +522 1232 5.100000 +522 1251 5.100000 +522 1273 5.100000 +522 1287 5.100000 +522 1294 5.100000 +522 1334 5.100000 +522 1415 5.100000 +522 1450 5.100000 +522 1462 5.100000 +522 1514 5.100000 +522 1575 5.100000 +522 1699 5.100000 +522 1713 5.100000 +522 1796 5.100000 +522 1908 5.100000 +522 1941 5.100000 +522 1946 5.100000 +522 1955 5.100000 +522 2048 5.100000 +522 2114 5.100000 +522 2225 5.100000 +522 2229 5.100000 +522 2249 5.100000 +522 2250 5.100000 +522 2278 5.100000 +522 2418 5.100000 +522 2430 5.100000 +522 2470 5.100000 +522 2675 5.100000 +522 2704 5.100000 +522 2730 5.100000 +522 2737 5.100000 +522 2750 5.100000 +522 2861 5.100000 +522 2865 5.100000 +522 3017 5.100000 +522 3038 5.100000 +522 3047 5.100000 +522 3089 5.100000 +522 3104 5.100000 +522 3106 5.100000 +522 3195 5.100000 +523 94 5.100000 +523 153 5.100000 +523 200 5.100000 +523 209 5.100000 +523 290 5.100000 +523 357 5.100000 +523 450 5.100000 +523 502 5.100000 +523 529 5.100000 +523 593 5.100000 +523 604 5.100000 +523 642 5.100000 +523 656 5.100000 +523 769 5.100000 +523 773 5.100000 +523 794 5.100000 +523 1007 5.100000 +523 1054 5.100000 +523 1123 5.100000 +523 1166 5.100000 +523 1221 5.100000 +523 1249 5.100000 +523 1251 5.100000 +523 1285 5.100000 +523 1298 5.100000 +523 1319 5.100000 +523 1332 5.100000 +523 1429 5.100000 +523 1439 5.100000 +523 1500 5.100000 +523 1522 5.100000 +523 1596 5.100000 +523 1599 5.100000 +523 1698 5.100000 +523 1705 5.100000 +523 1741 5.100000 +523 1762 5.100000 +523 1765 5.100000 +523 1773 5.100000 +523 1799 5.100000 +523 1836 5.100000 +523 1863 5.100000 +523 1933 5.100000 +523 2061 5.100000 +523 2081 5.100000 +523 2135 5.100000 +523 2260 5.100000 +523 2286 5.100000 +523 2335 5.100000 +523 2375 5.100000 +523 2410 5.100000 +523 2447 5.100000 +523 2517 5.100000 +523 2528 5.100000 +523 2543 5.100000 +523 2792 5.100000 +523 2941 5.100000 +523 3000 5.100000 +523 3078 5.100000 +523 3106 5.100000 +523 3155 5.100000 +523 3170 5.100000 +524 52 5.100000 +524 58 5.100000 +524 65 5.100000 +524 216 5.100000 +524 326 5.100000 +524 339 5.100000 +524 459 5.100000 +524 512 5.100000 +524 521 5.100000 +524 524 5.100000 +524 557 5.100000 +524 564 5.100000 +524 590 5.100000 +524 628 5.100000 +524 656 5.100000 +524 733 5.100000 +524 775 5.100000 +524 788 5.100000 +524 798 5.100000 +524 921 5.100000 +524 979 5.100000 +524 984 5.100000 +524 1094 5.100000 +524 1107 5.100000 +524 1147 5.100000 +524 1188 5.100000 +524 1204 5.100000 +524 1294 5.100000 +524 1323 5.100000 +524 1331 5.100000 +524 1415 5.100000 +524 1422 5.100000 +524 1450 5.100000 +524 1485 5.100000 +524 1533 5.100000 +524 1544 5.100000 +524 1571 5.100000 +524 1615 5.100000 +524 1881 5.100000 +524 1888 5.100000 +524 1941 5.100000 +524 1981 5.100000 +524 1992 5.100000 +524 1999 5.100000 +524 2024 5.100000 +524 2040 5.100000 +524 2042 5.100000 +524 2044 5.100000 +524 2078 5.100000 +524 2149 5.100000 +524 2166 5.100000 +524 2211 5.100000 +524 2287 5.100000 +524 2346 5.100000 +524 2370 5.100000 +524 2390 5.100000 +524 2457 5.100000 +524 2521 5.100000 +524 2745 5.100000 +524 2773 5.100000 +524 2783 5.100000 +524 2905 5.100000 +524 2922 5.100000 +524 2935 5.100000 +524 2947 5.100000 +524 2957 5.100000 +524 3004 5.100000 +524 3017 5.100000 +524 3050 5.100000 +524 3163 5.100000 +524 3187 5.100000 +525 28 5.100000 +525 41 5.100000 +525 63 5.100000 +525 112 5.100000 +525 172 5.100000 +525 197 5.100000 +525 290 5.100000 +525 307 5.100000 +525 319 5.100000 +525 373 5.100000 +525 387 5.100000 +525 417 5.100000 +525 436 5.100000 +525 638 5.100000 +525 669 5.100000 +525 688 5.100000 +525 717 5.100000 +525 792 5.100000 +525 852 5.100000 +525 942 5.100000 +525 952 5.100000 +525 1140 5.100000 +525 1198 5.100000 +525 1199 5.100000 +525 1254 5.100000 +525 1264 5.100000 +525 1330 5.100000 +525 1338 5.100000 +525 1396 5.100000 +525 1416 5.100000 +525 1425 5.100000 +525 1480 5.100000 +525 1585 5.100000 +525 1747 5.100000 +525 1823 5.100000 +525 1859 5.100000 +525 1939 5.100000 +525 1959 5.100000 +525 2033 5.100000 +525 2040 5.100000 +525 2093 5.100000 +525 2129 5.100000 +525 2256 5.100000 +525 2283 5.100000 +525 2351 5.100000 +525 2396 5.100000 +525 2402 5.100000 +525 2436 5.100000 +525 2447 5.100000 +525 2466 5.100000 +525 2495 5.100000 +525 2516 5.100000 +525 2562 5.100000 +525 2661 5.100000 +525 2674 5.100000 +525 2687 5.100000 +525 2716 5.100000 +525 2752 5.100000 +525 2757 5.100000 +525 2762 5.100000 +525 2773 5.100000 +525 2779 5.100000 +525 2817 5.100000 +525 2823 5.100000 +525 2830 5.100000 +525 2832 5.100000 +525 2875 5.100000 +525 2888 5.100000 +525 2936 5.100000 +525 3012 5.100000 +525 3021 5.100000 +525 3144 5.100000 +526 34 5.100000 +526 63 5.100000 +526 199 5.100000 +526 230 5.100000 +526 376 5.100000 +526 460 5.100000 +526 529 5.100000 +526 580 5.100000 +526 604 5.100000 +526 606 5.100000 +526 650 5.100000 +526 659 5.100000 +526 661 5.100000 +526 665 5.100000 +526 803 5.100000 +526 804 5.100000 +526 838 5.100000 +526 883 5.100000 +526 1013 5.100000 +526 1185 5.100000 +526 1257 5.100000 +526 1320 5.100000 +526 1459 5.100000 +526 1463 5.100000 +526 1541 5.100000 +526 1569 5.100000 +526 1580 5.100000 +526 1596 5.100000 +526 1706 5.100000 +526 1745 5.100000 +526 1811 5.100000 +526 1837 5.100000 +526 1855 5.100000 +526 1876 5.100000 +526 1930 5.100000 +526 1965 5.100000 +526 1966 5.100000 +526 2007 5.100000 +526 2121 5.100000 +526 2122 5.100000 +526 2195 5.100000 +526 2213 5.100000 +526 2416 5.100000 +526 2430 5.100000 +526 2472 5.100000 +526 2528 5.100000 +526 2601 5.100000 +526 2610 5.100000 +526 2678 5.100000 +526 2797 5.100000 +526 2808 5.100000 +526 2821 5.100000 +526 2873 5.100000 +526 2878 5.100000 +526 2911 5.100000 +526 2944 5.100000 +526 2970 5.100000 +526 3004 5.100000 +526 3056 5.100000 +526 3103 5.100000 +526 3112 5.100000 +526 3180 5.100000 +527 25 5.100000 +527 107 5.100000 +527 154 5.100000 +527 159 5.100000 +527 216 5.100000 +527 219 5.100000 +527 276 5.100000 +527 305 5.100000 +527 346 5.100000 +527 370 5.100000 +527 421 5.100000 +527 450 5.100000 +527 510 5.100000 +527 569 5.100000 +527 572 5.100000 +527 690 5.100000 +527 744 5.100000 +527 760 5.100000 +527 815 5.100000 +527 833 5.100000 +527 850 5.100000 +527 929 5.100000 +527 1024 5.100000 +527 1043 5.100000 +527 1272 5.100000 +527 1364 5.100000 +527 1373 5.100000 +527 1386 5.100000 +527 1490 5.100000 +527 1604 5.100000 +527 1668 5.100000 +527 1689 5.100000 +527 1694 5.100000 +527 1722 5.100000 +527 1860 5.100000 +527 1873 5.100000 +527 1877 5.100000 +527 2094 5.100000 +527 2234 5.100000 +527 2253 5.100000 +527 2366 5.100000 +527 2403 5.100000 +527 2413 5.100000 +527 2425 5.100000 +527 2493 5.100000 +527 2555 5.100000 +527 2696 5.100000 +527 2735 5.100000 +527 2791 5.100000 +527 2829 5.100000 +527 2994 5.100000 +527 3039 5.100000 +527 3066 5.100000 +527 3124 5.100000 +528 6 5.100000 +528 174 5.100000 +528 433 5.100000 +528 444 5.100000 +528 701 5.100000 +528 767 5.100000 +528 792 5.100000 +528 828 5.100000 +528 833 5.100000 +528 838 5.100000 +528 847 5.100000 +528 857 5.100000 +528 936 5.100000 +528 1005 5.100000 +528 1208 5.100000 +528 1242 5.100000 +528 1261 5.100000 +528 1388 5.100000 +528 1392 5.100000 +528 1496 5.100000 +528 1515 5.100000 +528 1550 5.100000 +528 1565 5.100000 +528 1590 5.100000 +528 1593 5.100000 +528 1602 5.100000 +528 1697 5.100000 +528 1741 5.100000 +528 1810 5.100000 +528 1931 5.100000 +528 1967 5.100000 +528 2099 5.100000 +528 2124 5.100000 +528 2219 5.100000 +528 2310 5.100000 +528 2334 5.100000 +528 2381 5.100000 +528 2527 5.100000 +528 2581 5.100000 +528 2680 5.100000 +528 2769 5.100000 +528 2823 5.100000 +528 2855 5.100000 +528 2896 5.100000 +528 2933 5.100000 +528 2983 5.100000 +528 2993 5.100000 +528 3023 5.100000 +528 3030 5.100000 +528 3034 5.100000 +528 3050 5.100000 +528 3084 5.100000 +529 171 5.100000 +529 289 5.100000 +529 297 5.100000 +529 345 5.100000 +529 410 5.100000 +529 440 5.100000 +529 474 5.100000 +529 579 5.100000 +529 606 5.100000 +529 632 5.100000 +529 643 5.100000 +529 716 5.100000 +529 808 5.100000 +529 878 5.100000 +529 892 5.100000 +529 1064 5.100000 +529 1149 5.100000 +529 1302 5.100000 +529 1324 5.100000 +529 1342 5.100000 +529 1404 5.100000 +529 1433 5.100000 +529 1437 5.100000 +529 1459 5.100000 +529 1478 5.100000 +529 1573 5.100000 +529 1895 5.100000 +529 1906 5.100000 +529 2000 5.100000 +529 2023 5.100000 +529 2054 5.100000 +529 2058 5.100000 +529 2118 5.100000 +529 2120 5.100000 +529 2136 5.100000 +529 2177 5.100000 +529 2217 5.100000 +529 2218 5.100000 +529 2258 5.100000 +529 2290 5.100000 +529 2320 5.100000 +529 2405 5.100000 +529 2424 5.100000 +529 2541 5.100000 +529 2597 5.100000 +529 2617 5.100000 +529 2659 5.100000 +529 2703 5.100000 +529 2756 5.100000 +529 2793 5.100000 +529 2826 5.100000 +529 2971 5.100000 +529 3012 5.100000 +529 3119 5.100000 +529 3155 5.100000 +530 34 5.100000 +530 38 5.100000 +530 78 5.100000 +530 96 5.100000 +530 132 5.100000 +530 140 5.100000 +530 186 5.100000 +530 194 5.100000 +530 227 5.100000 +530 315 5.100000 +530 325 5.100000 +530 419 5.100000 +530 458 5.100000 +530 560 5.100000 +530 630 5.100000 +530 641 5.100000 +530 660 5.100000 +530 673 5.100000 +530 704 5.100000 +530 719 5.100000 +530 762 5.100000 +530 807 5.100000 +530 861 5.100000 +530 923 5.100000 +530 1006 5.100000 +530 1048 5.100000 +530 1191 5.100000 +530 1207 5.100000 +530 1291 5.100000 +530 1340 5.100000 +530 1390 5.100000 +530 1456 5.100000 +530 1515 5.100000 +530 1550 5.100000 +530 1561 5.100000 +530 1563 5.100000 +530 1572 5.100000 +530 1591 5.100000 +530 1606 5.100000 +530 1625 5.100000 +530 1660 5.100000 +530 1781 5.100000 +530 1792 5.100000 +530 1818 5.100000 +530 1832 5.100000 +530 1863 5.100000 +530 1891 5.100000 +530 1943 5.100000 +530 1987 5.100000 +530 2019 5.100000 +530 2022 5.100000 +530 2095 5.100000 +530 2143 5.100000 +530 2242 5.100000 +530 2302 5.100000 +530 2431 5.100000 +530 2470 5.100000 +530 2512 5.100000 +530 2625 5.100000 +530 2669 5.100000 +530 2677 5.100000 +530 2779 5.100000 +530 2831 5.100000 +530 2849 5.100000 +530 2861 5.100000 +530 2870 5.100000 +530 2994 5.100000 +530 3091 5.100000 +530 3178 5.100000 +530 3181 5.100000 +531 72 5.100000 +531 206 5.100000 +531 234 5.100000 +531 247 5.100000 +531 280 5.100000 +531 298 5.100000 +531 317 5.100000 +531 359 5.100000 +531 382 5.100000 +531 471 5.100000 +531 473 5.100000 +531 525 5.100000 +531 652 5.100000 +531 755 5.100000 +531 780 5.100000 +531 865 5.100000 +531 960 5.100000 +531 985 5.100000 +531 1027 5.100000 +531 1149 5.100000 +531 1170 5.100000 +531 1207 5.100000 +531 1232 5.100000 +531 1282 5.100000 +531 1305 5.100000 +531 1332 5.100000 +531 1383 5.100000 +531 1413 5.100000 +531 1426 5.100000 +531 1429 5.100000 +531 1484 5.100000 +531 1495 5.100000 +531 1546 5.100000 +531 1549 5.100000 +531 1635 5.100000 +531 1703 5.100000 +531 1781 5.100000 +531 1872 5.100000 +531 1918 5.100000 +531 2018 5.100000 +531 2038 5.100000 +531 2042 5.100000 +531 2071 5.100000 +531 2082 5.100000 +531 2083 5.100000 +531 2124 5.100000 +531 2150 5.100000 +531 2218 5.100000 +531 2225 5.100000 +531 2227 5.100000 +531 2241 5.100000 +531 2256 5.100000 +531 2371 5.100000 +531 2411 5.100000 +531 2445 5.100000 +531 2482 5.100000 +531 2497 5.100000 +531 2498 5.100000 +531 2548 5.100000 +531 2554 5.100000 +531 2579 5.100000 +531 2616 5.100000 +531 2783 5.100000 +531 2825 5.100000 +531 2834 5.100000 +531 2871 5.100000 +531 2905 5.100000 +531 2930 5.100000 +531 3056 5.100000 +531 3115 5.100000 +531 3132 5.100000 +532 45 5.100000 +532 68 5.100000 +532 95 5.100000 +532 149 5.100000 +532 169 5.100000 +532 273 5.100000 +532 351 5.100000 +532 357 5.100000 +532 464 5.100000 +532 494 5.100000 +532 550 5.100000 +532 581 5.100000 +532 590 5.100000 +532 608 5.100000 +532 628 5.100000 +532 654 5.100000 +532 836 5.100000 +532 863 5.100000 +532 885 5.100000 +532 977 5.100000 +532 1147 5.100000 +532 1220 5.100000 +532 1236 5.100000 +532 1352 5.100000 +532 1490 5.100000 +532 1525 5.100000 +532 1574 5.100000 +532 1576 5.100000 +532 1737 5.100000 +532 1749 5.100000 +532 1755 5.100000 +532 1776 5.100000 +532 1821 5.100000 +532 1918 5.100000 +532 2017 5.100000 +532 2027 5.100000 +532 2049 5.100000 +532 2057 5.100000 +532 2073 5.100000 +532 2124 5.100000 +532 2126 5.100000 +532 2131 5.100000 +532 2183 5.100000 +532 2259 5.100000 +532 2283 5.100000 +532 2303 5.100000 +532 2341 5.100000 +532 2364 5.100000 +532 2512 5.100000 +532 2660 5.100000 +532 2670 5.100000 +532 2677 5.100000 +532 2696 5.100000 +532 2745 5.100000 +532 2782 5.100000 +532 2967 5.100000 +532 3120 5.100000 +533 23 5.100000 +533 103 5.100000 +533 108 5.100000 +533 240 5.100000 +533 290 5.100000 +533 354 5.100000 +533 415 5.100000 +533 427 5.100000 +533 429 5.100000 +533 509 5.100000 +533 550 5.100000 +533 694 5.100000 +533 898 5.100000 +533 902 5.100000 +533 906 5.100000 +533 917 5.100000 +533 933 5.100000 +533 943 5.100000 +533 978 5.100000 +533 1012 5.100000 +533 1088 5.100000 +533 1094 5.100000 +533 1133 5.100000 +533 1174 5.100000 +533 1217 5.100000 +533 1220 5.100000 +533 1276 5.100000 +533 1326 5.100000 +533 1343 5.100000 +533 1375 5.100000 +533 1387 5.100000 +533 1431 5.100000 +533 1500 5.100000 +533 1606 5.100000 +533 1697 5.100000 +533 1736 5.100000 +533 1739 5.100000 +533 1801 5.100000 +533 1815 5.100000 +533 1821 5.100000 +533 1845 5.100000 +533 1897 5.100000 +533 1950 5.100000 +533 1952 5.100000 +533 2157 5.100000 +533 2224 5.100000 +533 2226 5.100000 +533 2232 5.100000 +533 2236 5.100000 +533 2259 5.100000 +533 2282 5.100000 +533 2309 5.100000 +533 2332 5.100000 +533 2388 5.100000 +533 2424 5.100000 +533 2446 5.100000 +533 2506 5.100000 +533 2582 5.100000 +533 2593 5.100000 +533 2614 5.100000 +533 2671 5.100000 +533 2705 5.100000 +533 2744 5.100000 +533 2834 5.100000 +533 2876 5.100000 +533 2883 5.100000 +533 2954 5.100000 +533 2995 5.100000 +533 3149 5.100000 +534 104 5.100000 +534 256 5.100000 +534 298 5.100000 +534 342 5.100000 +534 460 5.100000 +534 462 5.100000 +534 480 5.100000 +534 491 5.100000 +534 503 5.100000 +534 535 5.100000 +534 554 5.100000 +534 594 5.100000 +534 615 5.100000 +534 628 5.100000 +534 742 5.100000 +534 755 5.100000 +534 764 5.100000 +534 787 5.100000 +534 906 5.100000 +534 1246 5.100000 +534 1286 5.100000 +534 1327 5.100000 +534 1399 5.100000 +534 1422 5.100000 +534 1439 5.100000 +534 1464 5.100000 +534 1529 5.100000 +534 1582 5.100000 +534 1584 5.100000 +534 1601 5.100000 +534 1655 5.100000 +534 1668 5.100000 +534 1701 5.100000 +534 1712 5.100000 +534 1726 5.100000 +534 1758 5.100000 +534 1773 5.100000 +534 1833 5.100000 +534 1846 5.100000 +534 1852 5.100000 +534 1912 5.100000 +534 1948 5.100000 +534 1949 5.100000 +534 1967 5.100000 +534 2013 5.100000 +534 2119 5.100000 +534 2257 5.100000 +534 2445 5.100000 +534 2479 5.100000 +534 2511 5.100000 +534 2615 5.100000 +534 2820 5.100000 +534 2833 5.100000 +534 2843 5.100000 +534 2886 5.100000 +534 2973 5.100000 +534 3093 5.100000 +534 3101 5.100000 +534 3102 5.100000 +534 3148 5.100000 +535 7 5.100000 +535 217 5.100000 +535 220 5.100000 +535 228 5.100000 +535 232 5.100000 +535 300 5.100000 +535 334 5.100000 +535 443 5.100000 +535 495 5.100000 +535 529 5.100000 +535 677 5.100000 +535 684 5.100000 +535 707 5.100000 +535 1038 5.100000 +535 1096 5.100000 +535 1288 5.100000 +535 1363 5.100000 +535 1377 5.100000 +535 1533 5.100000 +535 1746 5.100000 +535 1764 5.100000 +535 1772 5.100000 +535 1807 5.100000 +535 1828 5.100000 +535 1937 5.100000 +535 1948 5.100000 +535 1970 5.100000 +535 2102 5.100000 +535 2162 5.100000 +535 2196 5.100000 +535 2199 5.100000 +535 2215 5.100000 +535 2278 5.100000 +535 2414 5.100000 +535 2439 5.100000 +535 2567 5.100000 +535 2584 5.100000 +535 2639 5.100000 +535 2662 5.100000 +535 2667 5.100000 +535 2703 5.100000 +535 2720 5.100000 +535 2784 5.100000 +535 2803 5.100000 +535 2895 5.100000 +535 2904 5.100000 +535 2925 5.100000 +535 2985 5.100000 +535 2989 5.100000 +535 3045 5.100000 +535 3101 5.100000 +535 3151 5.100000 +535 3153 5.100000 +535 3178 5.100000 +536 36 5.100000 +536 68 5.100000 +536 99 5.100000 +536 106 5.100000 +536 135 5.100000 +536 187 5.100000 +536 261 5.100000 +536 276 5.100000 +536 284 5.100000 +536 328 5.100000 +536 333 5.100000 +536 335 5.100000 +536 348 5.100000 +536 400 5.100000 +536 428 5.100000 +536 448 5.100000 +536 472 5.100000 +536 571 5.100000 +536 609 5.100000 +536 611 5.100000 +536 706 5.100000 +536 763 5.100000 +536 831 5.100000 +536 932 5.100000 +536 998 5.100000 +536 1000 5.100000 +536 1026 5.100000 +536 1077 5.100000 +536 1087 5.100000 +536 1216 5.100000 +536 1266 5.100000 +536 1287 5.100000 +536 1313 5.100000 +536 1334 5.100000 +536 1340 5.100000 +536 1381 5.100000 +536 1408 5.100000 +536 1585 5.100000 +536 1641 5.100000 +536 1647 5.100000 +536 1714 5.100000 +536 1741 5.100000 +536 1748 5.100000 +536 1773 5.100000 +536 1794 5.100000 +536 1800 5.100000 +536 1836 5.100000 +536 1897 5.100000 +536 2042 5.100000 +536 2118 5.100000 +536 2159 5.100000 +536 2175 5.100000 +536 2213 5.100000 +536 2291 5.100000 +536 2320 5.100000 +536 2559 5.100000 +536 2580 5.100000 +536 2610 5.100000 +536 2611 5.100000 +536 2709 5.100000 +536 2715 5.100000 +536 2740 5.100000 +536 2793 5.100000 +536 2819 5.100000 +536 2964 5.100000 +536 3080 5.100000 +536 3099 5.100000 +537 4 5.100000 +537 6 5.100000 +537 140 5.100000 +537 144 5.100000 +537 147 5.100000 +537 210 5.100000 +537 318 5.100000 +537 376 5.100000 +537 509 5.100000 +537 580 5.100000 +537 614 5.100000 +537 649 5.100000 +537 664 5.100000 +537 758 5.100000 +537 798 5.100000 +537 811 5.100000 +537 853 5.100000 +537 934 5.100000 +537 994 5.100000 +537 1019 5.100000 +537 1164 5.100000 +537 1192 5.100000 +537 1255 5.100000 +537 1377 5.100000 +537 1554 5.100000 +537 1682 5.100000 +537 1696 5.100000 +537 1719 5.100000 +537 1740 5.100000 +537 1936 5.100000 +537 1957 5.100000 +537 1982 5.100000 +537 2028 5.100000 +537 2108 5.100000 +537 2206 5.100000 +537 2364 5.100000 +537 2437 5.100000 +537 2468 5.100000 +537 2512 5.100000 +537 2574 5.100000 +537 2578 5.100000 +537 2723 5.100000 +537 2782 5.100000 +537 2827 5.100000 +537 2956 5.100000 +537 2965 5.100000 +537 3055 5.100000 +538 28 5.100000 +538 56 5.100000 +538 61 5.100000 +538 145 5.100000 +538 325 5.100000 +538 417 5.100000 +538 493 5.100000 +538 506 5.100000 +538 559 5.100000 +538 618 5.100000 +538 706 5.100000 +538 760 5.100000 +538 790 5.100000 +538 795 5.100000 +538 831 5.100000 +538 835 5.100000 +538 838 5.100000 +538 929 5.100000 +538 1110 5.100000 +538 1202 5.100000 +538 1225 5.100000 +538 1238 5.100000 +538 1246 5.100000 +538 1279 5.100000 +538 1406 5.100000 +538 1425 5.100000 +538 1495 5.100000 +538 1790 5.100000 +538 1823 5.100000 +538 1830 5.100000 +538 1919 5.100000 +538 1935 5.100000 +538 1937 5.100000 +538 1948 5.100000 +538 2052 5.100000 +538 2121 5.100000 +538 2382 5.100000 +538 2419 5.100000 +538 2437 5.100000 +538 2440 5.100000 +538 2595 5.100000 +538 2656 5.100000 +538 2657 5.100000 +538 2668 5.100000 +538 2731 5.100000 +538 2775 5.100000 +538 2874 5.100000 +538 2895 5.100000 +538 2897 5.100000 +538 2924 5.100000 +538 2933 5.100000 +538 2975 5.100000 +538 3022 5.100000 +538 3048 5.100000 +538 3057 5.100000 +538 3084 5.100000 +538 3138 5.100000 +538 3191 5.100000 +539 73 5.100000 +539 188 5.100000 +539 227 5.100000 +539 342 5.100000 +539 402 5.100000 +539 475 5.100000 +539 478 5.100000 +539 609 5.100000 +539 616 5.100000 +539 626 5.100000 +539 728 5.100000 +539 773 5.100000 +539 783 5.100000 +539 805 5.100000 +539 808 5.100000 +539 820 5.100000 +539 919 5.100000 +539 934 5.100000 +539 1009 5.100000 +539 1120 5.100000 +539 1142 5.100000 +539 1328 5.100000 +539 1409 5.100000 +539 1429 5.100000 +539 1525 5.100000 +539 1547 5.100000 +539 1583 5.100000 +539 1668 5.100000 +539 1738 5.100000 +539 1748 5.100000 +539 1766 5.100000 +539 1822 5.100000 +539 1831 5.100000 +539 1970 5.100000 +539 1992 5.100000 +539 1994 5.100000 +539 2001 5.100000 +539 2061 5.100000 +539 2066 5.100000 +539 2144 5.100000 +539 2160 5.100000 +539 2303 5.100000 +539 2356 5.100000 +539 2366 5.100000 +539 2394 5.100000 +539 2446 5.100000 +539 2448 5.100000 +539 2491 5.100000 +539 2520 5.100000 +539 2572 5.100000 +539 2638 5.100000 +539 2759 5.100000 +539 2846 5.100000 +539 2915 5.100000 +539 2951 5.100000 +539 3017 5.100000 +539 3068 5.100000 +539 3123 5.100000 +539 3172 5.100000 +539 3189 5.100000 +540 5 5.100000 +540 70 5.100000 +540 104 5.100000 +540 143 5.100000 +540 147 5.100000 +540 180 5.100000 +540 258 5.100000 +540 268 5.100000 +540 452 5.100000 +540 511 5.100000 +540 534 5.100000 +540 577 5.100000 +540 624 5.100000 +540 689 5.100000 +540 706 5.100000 +540 824 5.100000 +540 877 5.100000 +540 914 5.100000 +540 974 5.100000 +540 1027 5.100000 +540 1215 5.100000 +540 1232 5.100000 +540 1316 5.100000 +540 1434 5.100000 +540 1454 5.100000 +540 1479 5.100000 +540 1487 5.100000 +540 1595 5.100000 +540 1616 5.100000 +540 1674 5.100000 +540 1689 5.100000 +540 1713 5.100000 +540 1738 5.100000 +540 1768 5.100000 +540 1791 5.100000 +540 1868 5.100000 +540 1983 5.100000 +540 2008 5.100000 +540 2069 5.100000 +540 2079 5.100000 +540 2081 5.100000 +540 2085 5.100000 +540 2147 5.100000 +540 2159 5.100000 +540 2179 5.100000 +540 2238 5.100000 +540 2326 5.100000 +540 2351 5.100000 +540 2454 5.100000 +540 2497 5.100000 +540 2541 5.100000 +540 2636 5.100000 +540 2663 5.100000 +540 2735 5.100000 +540 2739 5.100000 +540 2821 5.100000 +540 2861 5.100000 +540 3032 5.100000 +540 3062 5.100000 +540 3129 5.100000 +540 3140 5.100000 +540 3172 5.100000 +541 18 5.100000 +541 53 5.100000 +541 130 5.100000 +541 171 5.100000 +541 191 5.100000 +541 233 5.100000 +541 235 5.100000 +541 268 5.100000 +541 271 5.100000 +541 381 5.100000 +541 463 5.100000 +541 514 5.100000 +541 540 5.100000 +541 584 5.100000 +541 649 5.100000 +541 668 5.100000 +541 747 5.100000 +541 765 5.100000 +541 810 5.100000 +541 967 5.100000 +541 968 5.100000 +541 1029 5.100000 +541 1035 5.100000 +541 1057 5.100000 +541 1083 5.100000 +541 1092 5.100000 +541 1099 5.100000 +541 1107 5.100000 +541 1222 5.100000 +541 1359 5.100000 +541 1434 5.100000 +541 1439 5.100000 +541 1480 5.100000 +541 1573 5.100000 +541 1615 5.100000 +541 1727 5.100000 +541 1775 5.100000 +541 1823 5.100000 +541 1836 5.100000 +541 1921 5.100000 +541 2006 5.100000 +541 2013 5.100000 +541 2029 5.100000 +541 2075 5.100000 +541 2117 5.100000 +541 2131 5.100000 +541 2196 5.100000 +541 2205 5.100000 +541 2223 5.100000 +541 2262 5.100000 +541 2299 5.100000 +541 2304 5.100000 +541 2359 5.100000 +541 2543 5.100000 +541 2553 5.100000 +541 2600 5.100000 +541 2612 5.100000 +541 2676 5.100000 +541 2739 5.100000 +541 2788 5.100000 +541 2799 5.100000 +541 2811 5.100000 +541 2826 5.100000 +541 2843 5.100000 +541 2860 5.100000 +541 2870 5.100000 +541 2882 5.100000 +541 2891 5.100000 +541 2960 5.100000 +541 2965 5.100000 +541 2974 5.100000 +541 3045 5.100000 +541 3069 5.100000 +541 3071 5.100000 +541 3079 5.100000 +541 3092 5.100000 +541 3106 5.100000 +541 3168 5.100000 +542 23 5.100000 +542 72 5.100000 +542 105 5.100000 +542 248 5.100000 +542 302 5.100000 +542 313 5.100000 +542 476 5.100000 +542 576 5.100000 +542 582 5.100000 +542 584 5.100000 +542 589 5.100000 +542 600 5.100000 +542 607 5.100000 +542 682 5.100000 +542 685 5.100000 +542 692 5.100000 +542 700 5.100000 +542 798 5.100000 +542 856 5.100000 +542 857 5.100000 +542 899 5.100000 +542 972 5.100000 +542 1004 5.100000 +542 1032 5.100000 +542 1163 5.100000 +542 1179 5.100000 +542 1292 5.100000 +542 1332 5.100000 +542 1353 5.100000 +542 1370 5.100000 +542 1402 5.100000 +542 1412 5.100000 +542 1527 5.100000 +542 1637 5.100000 +542 1728 5.100000 +542 1795 5.100000 +542 1839 5.100000 +542 1846 5.100000 +542 1850 5.100000 +542 1949 5.100000 +542 1964 5.100000 +542 2017 5.100000 +542 2153 5.100000 +542 2168 5.100000 +542 2211 5.100000 +542 2265 5.100000 +542 2300 5.100000 +542 2327 5.100000 +542 2372 5.100000 +542 2443 5.100000 +542 2534 5.100000 +542 2574 5.100000 +542 2621 5.100000 +542 2662 5.100000 +542 2676 5.100000 +542 2683 5.100000 +542 2688 5.100000 +542 2725 5.100000 +542 2771 5.100000 +542 2789 5.100000 +542 2895 5.100000 +542 2913 5.100000 +542 2920 5.100000 +542 2945 5.100000 +542 3031 5.100000 +542 3172 5.100000 +542 3195 5.100000 +543 11 5.100000 +543 12 5.100000 +543 83 5.100000 +543 164 5.100000 +543 256 5.100000 +543 413 5.100000 +543 456 5.100000 +543 463 5.100000 +543 575 5.100000 +543 631 5.100000 +543 658 5.100000 +543 718 5.100000 +543 729 5.100000 +543 828 5.100000 +543 874 5.100000 +543 945 5.100000 +543 965 5.100000 +543 1108 5.100000 +543 1155 5.100000 +543 1217 5.100000 +543 1219 5.100000 +543 1278 5.100000 +543 1321 5.100000 +543 1338 5.100000 +543 1346 5.100000 +543 1516 5.100000 +543 1543 5.100000 +543 1554 5.100000 +543 1674 5.100000 +543 1736 5.100000 +543 1745 5.100000 +543 1812 5.100000 +543 1816 5.100000 +543 1879 5.100000 +543 1885 5.100000 +543 1901 5.100000 +543 1936 5.100000 +543 1957 5.100000 +543 1995 5.100000 +543 2018 5.100000 +543 2096 5.100000 +543 2139 5.100000 +543 2219 5.100000 +543 2304 5.100000 +543 2323 5.100000 +543 2346 5.100000 +543 2376 5.100000 +543 2467 5.100000 +543 2483 5.100000 +543 2500 5.100000 +543 2685 5.100000 +543 2686 5.100000 +543 2813 5.100000 +543 2844 5.100000 +543 2980 5.100000 +543 3001 5.100000 +543 3030 5.100000 +543 3033 5.100000 +543 3120 5.100000 +543 3143 5.100000 +543 3187 5.100000 +544 6 5.100000 +544 25 5.100000 +544 45 5.100000 +544 79 5.100000 +544 116 5.100000 +544 192 5.100000 +544 275 5.100000 +544 354 5.100000 +544 361 5.100000 +544 417 5.100000 +544 430 5.100000 +544 453 5.100000 +544 515 5.100000 +544 633 5.100000 +544 694 5.100000 +544 882 5.100000 +544 885 5.100000 +544 926 5.100000 +544 937 5.100000 +544 952 5.100000 +544 986 5.100000 +544 1043 5.100000 +544 1044 5.100000 +544 1158 5.100000 +544 1193 5.100000 +544 1350 5.100000 +544 1365 5.100000 +544 1472 5.100000 +544 1633 5.100000 +544 1704 5.100000 +544 1723 5.100000 +544 1863 5.100000 +544 1892 5.100000 +544 1952 5.100000 +544 1957 5.100000 +544 2046 5.100000 +544 2071 5.100000 +544 2099 5.100000 +544 2100 5.100000 +544 2161 5.100000 +544 2184 5.100000 +544 2185 5.100000 +544 2225 5.100000 +544 2238 5.100000 +544 2244 5.100000 +544 2266 5.100000 +544 2295 5.100000 +544 2391 5.100000 +544 2468 5.100000 +544 2472 5.100000 +544 2481 5.100000 +544 2497 5.100000 +544 2525 5.100000 +544 2580 5.100000 +544 2584 5.100000 +544 2604 5.100000 +544 2630 5.100000 +544 2693 5.100000 +544 2820 5.100000 +544 2988 5.100000 +544 3062 5.100000 +544 3094 5.100000 +544 3159 5.100000 +544 3177 5.100000 +545 43 5.100000 +545 64 5.100000 +545 70 5.100000 +545 139 5.100000 +545 184 5.100000 +545 341 5.100000 +545 402 5.100000 +545 458 5.100000 +545 468 5.100000 +545 497 5.100000 +545 505 5.100000 +545 506 5.100000 +545 535 5.100000 +545 560 5.100000 +545 630 5.100000 +545 669 5.100000 +545 684 5.100000 +545 775 5.100000 +545 906 5.100000 +545 1094 5.100000 +545 1104 5.100000 +545 1111 5.100000 +545 1120 5.100000 +545 1292 5.100000 +545 1418 5.100000 +545 1428 5.100000 +545 1429 5.100000 +545 1436 5.100000 +545 1517 5.100000 +545 1538 5.100000 +545 1565 5.100000 +545 1575 5.100000 +545 1623 5.100000 +545 1716 5.100000 +545 1830 5.100000 +545 1845 5.100000 +545 1891 5.100000 +545 1910 5.100000 +545 1931 5.100000 +545 1947 5.100000 +545 2025 5.100000 +545 2044 5.100000 +545 2053 5.100000 +545 2081 5.100000 +545 2093 5.100000 +545 2149 5.100000 +545 2183 5.100000 +545 2229 5.100000 +545 2252 5.100000 +545 2293 5.100000 +545 2339 5.100000 +545 2422 5.100000 +545 2497 5.100000 +545 2499 5.100000 +545 2505 5.100000 +545 2537 5.100000 +545 2553 5.100000 +545 2644 5.100000 +545 2699 5.100000 +545 2704 5.100000 +545 2747 5.100000 +545 2847 5.100000 +545 2857 5.100000 +545 3023 5.100000 +545 3119 5.100000 +545 3145 5.100000 +546 96 5.100000 +546 108 5.100000 +546 138 5.100000 +546 189 5.100000 +546 337 5.100000 +546 398 5.100000 +546 401 5.100000 +546 406 5.100000 +546 456 5.100000 +546 551 5.100000 +546 620 5.100000 +546 795 5.100000 +546 826 5.100000 +546 840 5.100000 +546 892 5.100000 +546 1082 5.100000 +546 1096 5.100000 +546 1117 5.100000 +546 1256 5.100000 +546 1342 5.100000 +546 1346 5.100000 +546 1353 5.100000 +546 1457 5.100000 +546 1459 5.100000 +546 1579 5.100000 +546 1624 5.100000 +546 1664 5.100000 +546 1674 5.100000 +546 1710 5.100000 +546 1742 5.100000 +546 1803 5.100000 +546 1952 5.100000 +546 2071 5.100000 +546 2073 5.100000 +546 2079 5.100000 +546 2114 5.100000 +546 2131 5.100000 +546 2146 5.100000 +546 2168 5.100000 +546 2254 5.100000 +546 2291 5.100000 +546 2304 5.100000 +546 2319 5.100000 +546 2410 5.100000 +546 2414 5.100000 +546 2415 5.100000 +546 2447 5.100000 +546 2503 5.100000 +546 2576 5.100000 +546 2587 5.100000 +546 2592 5.100000 +546 2618 5.100000 +546 2783 5.100000 +546 2829 5.100000 +546 2845 5.100000 +546 2917 5.100000 +546 2976 5.100000 +546 3012 5.100000 +546 3069 5.100000 +546 3086 5.100000 +546 3176 5.100000 +546 3184 5.100000 +547 52 5.100000 +547 64 5.100000 +547 67 5.100000 +547 161 5.100000 +547 210 5.100000 +547 313 5.100000 +547 365 5.100000 +547 430 5.100000 +547 434 5.100000 +547 484 5.100000 +547 631 5.100000 +547 667 5.100000 +547 749 5.100000 +547 788 5.100000 +547 812 5.100000 +547 883 5.100000 +547 966 5.100000 +547 1038 5.100000 +547 1048 5.100000 +547 1091 5.100000 +547 1143 5.100000 +547 1176 5.100000 +547 1281 5.100000 +547 1289 5.100000 +547 1395 5.100000 +547 1414 5.100000 +547 1418 5.100000 +547 1446 5.100000 +547 1488 5.100000 +547 1539 5.100000 +547 1556 5.100000 +547 1573 5.100000 +547 1652 5.100000 +547 1663 5.100000 +547 1686 5.100000 +547 1708 5.100000 +547 1739 5.100000 +547 1747 5.100000 +547 1829 5.100000 +547 1841 5.100000 +547 1905 5.100000 +547 1931 5.100000 +547 2019 5.100000 +547 2053 5.100000 +547 2094 5.100000 +547 2155 5.100000 +547 2303 5.100000 +547 2365 5.100000 +547 2446 5.100000 +547 2469 5.100000 +547 2476 5.100000 +547 2508 5.100000 +547 2562 5.100000 +547 2564 5.100000 +547 2581 5.100000 +547 2678 5.100000 +547 2725 5.100000 +547 2806 5.100000 +547 2809 5.100000 +547 3065 5.100000 +547 3097 5.100000 +547 3160 5.100000 +548 67 5.100000 +548 118 5.100000 +548 193 5.100000 +548 300 5.100000 +548 378 5.100000 +548 414 5.100000 +548 493 5.100000 +548 520 5.100000 +548 543 5.100000 +548 574 5.100000 +548 588 5.100000 +548 603 5.100000 +548 736 5.100000 +548 745 5.100000 +548 775 5.100000 +548 921 5.100000 +548 925 5.100000 +548 1020 5.100000 +548 1033 5.100000 +548 1100 5.100000 +548 1145 5.100000 +548 1196 5.100000 +548 1199 5.100000 +548 1212 5.100000 +548 1479 5.100000 +548 1592 5.100000 +548 1679 5.100000 +548 1721 5.100000 +548 1775 5.100000 +548 1834 5.100000 +548 1883 5.100000 +548 1981 5.100000 +548 2005 5.100000 +548 2059 5.100000 +548 2068 5.100000 +548 2119 5.100000 +548 2124 5.100000 +548 2167 5.100000 +548 2306 5.100000 +548 2320 5.100000 +548 2388 5.100000 +548 2441 5.100000 +548 2512 5.100000 +548 2523 5.100000 +548 2674 5.100000 +548 2678 5.100000 +548 2755 5.100000 +548 2786 5.100000 +548 2812 5.100000 +548 2981 5.100000 +548 2996 5.100000 +548 3023 5.100000 +548 3073 5.100000 +548 3082 5.100000 +548 3128 5.100000 +548 3147 5.100000 +548 3183 5.100000 +549 3 5.100000 +549 116 5.100000 +549 293 5.100000 +549 345 5.100000 +549 437 5.100000 +549 452 5.100000 +549 457 5.100000 +549 462 5.100000 +549 468 5.100000 +549 515 5.100000 +549 519 5.100000 +549 524 5.100000 +549 560 5.100000 +549 596 5.100000 +549 614 5.100000 +549 669 5.100000 +549 700 5.100000 +549 736 5.100000 +549 747 5.100000 +549 778 5.100000 +549 824 5.100000 +549 825 5.100000 +549 831 5.100000 +549 834 5.100000 +549 935 5.100000 +549 1021 5.100000 +549 1026 5.100000 +549 1076 5.100000 +549 1136 5.100000 +549 1247 5.100000 +549 1334 5.100000 +549 1358 5.100000 +549 1380 5.100000 +549 1424 5.100000 +549 1463 5.100000 +549 1568 5.100000 +549 1712 5.100000 +549 1882 5.100000 +549 1918 5.100000 +549 1936 5.100000 +549 2001 5.100000 +549 2023 5.100000 +549 2048 5.100000 +549 2052 5.100000 +549 2096 5.100000 +549 2199 5.100000 +549 2235 5.100000 +549 2352 5.100000 +549 2413 5.100000 +549 2460 5.100000 +549 2525 5.100000 +549 2534 5.100000 +549 2546 5.100000 +549 2639 5.100000 +549 2661 5.100000 +549 2763 5.100000 +549 2857 5.100000 +549 2954 5.100000 +549 3043 5.100000 +549 3137 5.100000 +549 3143 5.100000 +550 22 5.100000 +550 25 5.100000 +550 160 5.100000 +550 235 5.100000 +550 365 5.100000 +550 441 5.100000 +550 488 5.100000 +550 560 5.100000 +550 621 5.100000 +550 622 5.100000 +550 648 5.100000 +550 740 5.100000 +550 847 5.100000 +550 884 5.100000 +550 889 5.100000 +550 921 5.100000 +550 936 5.100000 +550 1019 5.100000 +550 1031 5.100000 +550 1068 5.100000 +550 1075 5.100000 +550 1089 5.100000 +550 1145 5.100000 +550 1195 5.100000 +550 1226 5.100000 +550 1316 5.100000 +550 1374 5.100000 +550 1414 5.100000 +550 1425 5.100000 +550 1538 5.100000 +550 1590 5.100000 +550 1611 5.100000 +550 1613 5.100000 +550 1633 5.100000 +550 1703 5.100000 +550 1711 5.100000 +550 1812 5.100000 +550 1839 5.100000 +550 1926 5.100000 +550 1970 5.100000 +550 1994 5.100000 +550 2025 5.100000 +550 2049 5.100000 +550 2063 5.100000 +550 2148 5.100000 +550 2184 5.100000 +550 2195 5.100000 +550 2200 5.100000 +550 2228 5.100000 +550 2262 5.100000 +550 2266 5.100000 +550 2285 5.100000 +550 2306 5.100000 +550 2327 5.100000 +550 2402 5.100000 +550 2431 5.100000 +550 2437 5.100000 +550 2446 5.100000 +550 2471 5.100000 +550 2480 5.100000 +550 2482 5.100000 +550 2505 5.100000 +550 2606 5.100000 +550 2665 5.100000 +550 2678 5.100000 +550 2685 5.100000 +550 2707 5.100000 +550 2850 5.100000 +550 3020 5.100000 +550 3064 5.100000 +550 3071 5.100000 +550 3084 5.100000 +550 3085 5.100000 +550 3142 5.100000 +551 6 5.100000 +551 131 5.100000 +551 156 5.100000 +551 184 5.100000 +551 221 5.100000 +551 242 5.100000 +551 255 5.100000 +551 367 5.100000 +551 471 5.100000 +551 502 5.100000 +551 537 5.100000 +551 587 5.100000 +551 626 5.100000 +551 648 5.100000 +551 741 5.100000 +551 804 5.100000 +551 911 5.100000 +551 974 5.100000 +551 987 5.100000 +551 1029 5.100000 +551 1036 5.100000 +551 1071 5.100000 +551 1152 5.100000 +551 1244 5.100000 +551 1277 5.100000 +551 1301 5.100000 +551 1310 5.100000 +551 1373 5.100000 +551 1386 5.100000 +551 1459 5.100000 +551 1512 5.100000 +551 1531 5.100000 +551 1532 5.100000 +551 1544 5.100000 +551 1557 5.100000 +551 1598 5.100000 +551 1638 5.100000 +551 1669 5.100000 +551 1699 5.100000 +551 1700 5.100000 +551 1701 5.100000 +551 1721 5.100000 +551 1770 5.100000 +551 1779 5.100000 +551 1799 5.100000 +551 1909 5.100000 +551 1949 5.100000 +551 1987 5.100000 +551 2146 5.100000 +551 2232 5.100000 +551 2273 5.100000 +551 2279 5.100000 +551 2369 5.100000 +551 2444 5.100000 +551 2719 5.100000 +551 2782 5.100000 +551 2801 5.100000 +551 2955 5.100000 +551 2972 5.100000 +551 2978 5.100000 +551 2989 5.100000 +551 3007 5.100000 +551 3037 5.100000 +551 3074 5.100000 +551 3124 5.100000 +551 3152 5.100000 +552 10 5.100000 +552 17 5.100000 +552 157 5.100000 +552 232 5.100000 +552 255 5.100000 +552 272 5.100000 +552 612 5.100000 +552 635 5.100000 +552 654 5.100000 +552 670 5.100000 +552 768 5.100000 +552 832 5.100000 +552 844 5.100000 +552 873 5.100000 +552 964 5.100000 +552 1059 5.100000 +552 1122 5.100000 +552 1147 5.100000 +552 1295 5.100000 +552 1296 5.100000 +552 1324 5.100000 +552 1400 5.100000 +552 1453 5.100000 +552 1488 5.100000 +552 1493 5.100000 +552 1503 5.100000 +552 1521 5.100000 +552 1582 5.100000 +552 1600 5.100000 +552 1602 5.100000 +552 1665 5.100000 +552 1716 5.100000 +552 1740 5.100000 +552 1788 5.100000 +552 1889 5.100000 +552 1928 5.100000 +552 2035 5.100000 +552 2121 5.100000 +552 2157 5.100000 +552 2171 5.100000 +552 2341 5.100000 +552 2369 5.100000 +552 2384 5.100000 +552 2443 5.100000 +552 2447 5.100000 +552 2468 5.100000 +552 2524 5.100000 +552 2554 5.100000 +552 2596 5.100000 +552 2651 5.100000 +552 2921 5.100000 +552 2978 5.100000 +552 3085 5.100000 +552 3118 5.100000 +552 3182 5.100000 +552 3185 5.100000 +553 65 5.100000 +553 68 5.100000 +553 76 5.100000 +553 201 5.100000 +553 380 5.100000 +553 443 5.100000 +553 450 5.100000 +553 550 5.100000 +553 590 5.100000 +553 621 5.100000 +553 622 5.100000 +553 653 5.100000 +553 788 5.100000 +553 840 5.100000 +553 908 5.100000 +553 1093 5.100000 +553 1110 5.100000 +553 1200 5.100000 +553 1216 5.100000 +553 1284 5.100000 +553 1307 5.100000 +553 1359 5.100000 +553 1380 5.100000 +553 1384 5.100000 +553 1393 5.100000 +553 1408 5.100000 +553 1460 5.100000 +553 1504 5.100000 +553 1543 5.100000 +553 1574 5.100000 +553 1581 5.100000 +553 1619 5.100000 +553 1623 5.100000 +553 1668 5.100000 +553 1724 5.100000 +553 1729 5.100000 +553 1743 5.100000 +553 1796 5.100000 +553 1842 5.100000 +553 1902 5.100000 +553 1955 5.100000 +553 1957 5.100000 +553 1993 5.100000 +553 2028 5.100000 +553 2087 5.100000 +553 2094 5.100000 +553 2137 5.100000 +553 2154 5.100000 +553 2209 5.100000 +553 2254 5.100000 +553 2361 5.100000 +553 2364 5.100000 +553 2436 5.100000 +553 2474 5.100000 +553 2497 5.100000 +553 2546 5.100000 +553 2564 5.100000 +553 2686 5.100000 +553 2723 5.100000 +553 2742 5.100000 +553 2787 5.100000 +553 2936 5.100000 +553 3018 5.100000 +553 3060 5.100000 +553 3131 5.100000 +553 3163 5.100000 +553 3165 5.100000 +553 3169 5.100000 +554 79 5.100000 +554 103 5.100000 +554 151 5.100000 +554 427 5.100000 +554 567 5.100000 +554 631 5.100000 +554 656 5.100000 +554 680 5.100000 +554 762 5.100000 +554 791 5.100000 +554 820 5.100000 +554 846 5.100000 +554 990 5.100000 +554 1222 5.100000 +554 1240 5.100000 +554 1283 5.100000 +554 1299 5.100000 +554 1362 5.100000 +554 1400 5.100000 +554 1469 5.100000 +554 1487 5.100000 +554 1551 5.100000 +554 1591 5.100000 +554 1636 5.100000 +554 1790 5.100000 +554 1808 5.100000 +554 1840 5.100000 +554 1861 5.100000 +554 1896 5.100000 +554 1962 5.100000 +554 2052 5.100000 +554 2111 5.100000 +554 2127 5.100000 +554 2159 5.100000 +554 2178 5.100000 +554 2185 5.100000 +554 2191 5.100000 +554 2232 5.100000 +554 2236 5.100000 +554 2258 5.100000 +554 2323 5.100000 +554 2326 5.100000 +554 2330 5.100000 +554 2410 5.100000 +554 2434 5.100000 +554 2566 5.100000 +554 2627 5.100000 +554 2633 5.100000 +554 2693 5.100000 +554 2727 5.100000 +554 2754 5.100000 +554 2758 5.100000 +554 2778 5.100000 +554 2784 5.100000 +554 2832 5.100000 +554 2923 5.100000 +554 3033 5.100000 +555 27 5.100000 +555 52 5.100000 +555 59 5.100000 +555 99 5.100000 +555 103 5.100000 +555 245 5.100000 +555 246 5.100000 +555 273 5.100000 +555 307 5.100000 +555 381 5.100000 +555 401 5.100000 +555 432 5.100000 +555 574 5.100000 +555 592 5.100000 +555 616 5.100000 +555 633 5.100000 +555 672 5.100000 +555 695 5.100000 +555 702 5.100000 +555 792 5.100000 +555 985 5.100000 +555 1052 5.100000 +555 1066 5.100000 +555 1125 5.100000 +555 1170 5.100000 +555 1172 5.100000 +555 1195 5.100000 +555 1207 5.100000 +555 1224 5.100000 +555 1284 5.100000 +555 1421 5.100000 +555 1485 5.100000 +555 1569 5.100000 +555 1572 5.100000 +555 1583 5.100000 +555 1590 5.100000 +555 1601 5.100000 +555 1606 5.100000 +555 1664 5.100000 +555 1672 5.100000 +555 1882 5.100000 +555 1926 5.100000 +555 1939 5.100000 +555 2056 5.100000 +555 2070 5.100000 +555 2092 5.100000 +555 2186 5.100000 +555 2207 5.100000 +555 2259 5.100000 +555 2345 5.100000 +555 2405 5.100000 +555 2432 5.100000 +555 2434 5.100000 +555 2464 5.100000 +555 2481 5.100000 +555 2535 5.100000 +555 2542 5.100000 +555 2830 5.100000 +555 2875 5.100000 +555 2916 5.100000 +555 2991 5.100000 +555 3118 5.100000 +555 3175 5.100000 +555 3197 5.100000 +556 16 5.100000 +556 86 5.100000 +556 140 5.100000 +556 178 5.100000 +556 187 5.100000 +556 225 5.100000 +556 311 5.100000 +556 333 5.100000 +556 340 5.100000 +556 385 5.100000 +556 395 5.100000 +556 416 5.100000 +556 418 5.100000 +556 456 5.100000 +556 519 5.100000 +556 522 5.100000 +556 730 5.100000 +556 745 5.100000 +556 817 5.100000 +556 883 5.100000 +556 948 5.100000 +556 1059 5.100000 +556 1148 5.100000 +556 1266 5.100000 +556 1458 5.100000 +556 1480 5.100000 +556 1487 5.100000 +556 1704 5.100000 +556 1724 5.100000 +556 1744 5.100000 +556 1765 5.100000 +556 1771 5.100000 +556 1774 5.100000 +556 1807 5.100000 +556 1810 5.100000 +556 1813 5.100000 +556 1847 5.100000 +556 1884 5.100000 +556 2038 5.100000 +556 2047 5.100000 +556 2066 5.100000 +556 2070 5.100000 +556 2150 5.100000 +556 2156 5.100000 +556 2189 5.100000 +556 2205 5.100000 +556 2353 5.100000 +556 2355 5.100000 +556 2357 5.100000 +556 2366 5.100000 +556 2369 5.100000 +556 2470 5.100000 +556 2573 5.100000 +556 2664 5.100000 +556 2693 5.100000 +556 2717 5.100000 +556 2908 5.100000 +556 2963 5.100000 +556 2968 5.100000 +556 2995 5.100000 +556 3052 5.100000 +556 3098 5.100000 +556 3102 5.100000 +556 3142 5.100000 +556 3163 5.100000 +557 70 5.100000 +557 107 5.100000 +557 126 5.100000 +557 173 5.100000 +557 337 5.100000 +557 390 5.100000 +557 460 5.100000 +557 537 5.100000 +557 563 5.100000 +557 579 5.100000 +557 605 5.100000 +557 635 5.100000 +557 798 5.100000 +557 852 5.100000 +557 899 5.100000 +557 939 5.100000 +557 1015 5.100000 +557 1089 5.100000 +557 1116 5.100000 +557 1149 5.100000 +557 1152 5.100000 +557 1192 5.100000 +557 1202 5.100000 +557 1266 5.100000 +557 1306 5.100000 +557 1323 5.100000 +557 1336 5.100000 +557 1383 5.100000 +557 1404 5.100000 +557 1445 5.100000 +557 1466 5.100000 +557 1507 5.100000 +557 1554 5.100000 +557 1665 5.100000 +557 1700 5.100000 +557 1709 5.100000 +557 1750 5.100000 +557 1774 5.100000 +557 1781 5.100000 +557 1797 5.100000 +557 1811 5.100000 +557 1819 5.100000 +557 1917 5.100000 +557 1937 5.100000 +557 1951 5.100000 +557 1980 5.100000 +557 2034 5.100000 +557 2049 5.100000 +557 2110 5.100000 +557 2152 5.100000 +557 2223 5.100000 +557 2237 5.100000 +557 2238 5.100000 +557 2241 5.100000 +557 2350 5.100000 +557 2370 5.100000 +557 2371 5.100000 +557 2565 5.100000 +557 2615 5.100000 +557 2631 5.100000 +557 2634 5.100000 +557 2639 5.100000 +557 2652 5.100000 +557 2727 5.100000 +557 2771 5.100000 +557 2862 5.100000 +557 2866 5.100000 +557 2873 5.100000 +557 2889 5.100000 +557 3025 5.100000 +557 3036 5.100000 +557 3049 5.100000 +557 3072 5.100000 +557 3103 5.100000 +558 106 5.100000 +558 152 5.100000 +558 312 5.100000 +558 313 5.100000 +558 392 5.100000 +558 474 5.100000 +558 552 5.100000 +558 687 5.100000 +558 754 5.100000 +558 862 5.100000 +558 880 5.100000 +558 897 5.100000 +558 947 5.100000 +558 981 5.100000 +558 994 5.100000 +558 1080 5.100000 +558 1178 5.100000 +558 1184 5.100000 +558 1200 5.100000 +558 1227 5.100000 +558 1346 5.100000 +558 1435 5.100000 +558 1453 5.100000 +558 1540 5.100000 +558 1626 5.100000 +558 1635 5.100000 +558 1671 5.100000 +558 1681 5.100000 +558 1712 5.100000 +558 1745 5.100000 +558 1822 5.100000 +558 1849 5.100000 +558 1922 5.100000 +558 1955 5.100000 +558 2003 5.100000 +558 2072 5.100000 +558 2160 5.100000 +558 2205 5.100000 +558 2442 5.100000 +558 2487 5.100000 +558 2489 5.100000 +558 2703 5.100000 +558 2757 5.100000 +558 2820 5.100000 +558 2977 5.100000 +558 2978 5.100000 +558 3050 5.100000 +558 3066 5.100000 +558 3083 5.100000 +559 68 5.100000 +559 145 5.100000 +559 197 5.100000 +559 227 5.100000 +559 354 5.100000 +559 407 5.100000 +559 503 5.100000 +559 521 5.100000 +559 541 5.100000 +559 576 5.100000 +559 673 5.100000 +559 687 5.100000 +559 754 5.100000 +559 840 5.100000 +559 848 5.100000 +559 893 5.100000 +559 941 5.100000 +559 1065 5.100000 +559 1105 5.100000 +559 1106 5.100000 +559 1124 5.100000 +559 1136 5.100000 +559 1156 5.100000 +559 1289 5.100000 +559 1322 5.100000 +559 1348 5.100000 +559 1371 5.100000 +559 1380 5.100000 +559 1527 5.100000 +559 1532 5.100000 +559 1564 5.100000 +559 1618 5.100000 +559 1627 5.100000 +559 1652 5.100000 +559 1729 5.100000 +559 1736 5.100000 +559 1804 5.100000 +559 1838 5.100000 +559 1881 5.100000 +559 1911 5.100000 +559 1949 5.100000 +559 1951 5.100000 +559 2018 5.100000 +559 2070 5.100000 +559 2086 5.100000 +559 2121 5.100000 +559 2241 5.100000 +559 2245 5.100000 +559 2289 5.100000 +559 2307 5.100000 +559 2351 5.100000 +559 2364 5.100000 +559 2534 5.100000 +559 2543 5.100000 +559 2582 5.100000 +559 2592 5.100000 +559 2601 5.100000 +559 2642 5.100000 +559 2726 5.100000 +559 2727 5.100000 +559 2750 5.100000 +559 2765 5.100000 +559 2797 5.100000 +559 2937 5.100000 +559 2979 5.100000 +559 2985 5.100000 +559 3043 5.100000 +559 3072 5.100000 +559 3073 5.100000 +559 3104 5.100000 +559 3121 5.100000 +560 50 5.100000 +560 197 5.100000 +560 198 5.100000 +560 269 5.100000 +560 307 5.100000 +560 382 5.100000 +560 405 5.100000 +560 449 5.100000 +560 502 5.100000 +560 512 5.100000 +560 592 5.100000 +560 634 5.100000 +560 717 5.100000 +560 732 5.100000 +560 759 5.100000 +560 776 5.100000 +560 789 5.100000 +560 790 5.100000 +560 846 5.100000 +560 905 5.100000 +560 930 5.100000 +560 938 5.100000 +560 1075 5.100000 +560 1174 5.100000 +560 1210 5.100000 +560 1327 5.100000 +560 1530 5.100000 +560 1536 5.100000 +560 1546 5.100000 +560 1573 5.100000 +560 1619 5.100000 +560 1620 5.100000 +560 1639 5.100000 +560 1828 5.100000 +560 1848 5.100000 +560 1857 5.100000 +560 1862 5.100000 +560 2025 5.100000 +560 2046 5.100000 +560 2082 5.100000 +560 2091 5.100000 +560 2146 5.100000 +560 2237 5.100000 +560 2238 5.100000 +560 2262 5.100000 +560 2356 5.100000 +560 2369 5.100000 +560 2401 5.100000 +560 2409 5.100000 +560 2434 5.100000 +560 2484 5.100000 +560 2661 5.100000 +560 2703 5.100000 +560 2705 5.100000 +560 2832 5.100000 +560 2884 5.100000 +560 2979 5.100000 +560 2990 5.100000 +560 3111 5.100000 +560 3196 5.100000 +561 26 5.100000 +561 33 5.100000 +561 117 5.100000 +561 329 5.100000 +561 451 5.100000 +561 491 5.100000 +561 627 5.100000 +561 668 5.100000 +561 701 5.100000 +561 770 5.100000 +561 829 5.100000 +561 848 5.100000 +561 892 5.100000 +561 945 5.100000 +561 954 5.100000 +561 976 5.100000 +561 1129 5.100000 +561 1159 5.100000 +561 1161 5.100000 +561 1169 5.100000 +561 1217 5.100000 +561 1242 5.100000 +561 1349 5.100000 +561 1365 5.100000 +561 1450 5.100000 +561 1459 5.100000 +561 1473 5.100000 +561 1482 5.100000 +561 1630 5.100000 +561 1665 5.100000 +561 1774 5.100000 +561 1781 5.100000 +561 1792 5.100000 +561 1978 5.100000 +561 1983 5.100000 +561 2018 5.100000 +561 2042 5.100000 +561 2091 5.100000 +561 2109 5.100000 +561 2118 5.100000 +561 2139 5.100000 +561 2143 5.100000 +561 2183 5.100000 +561 2226 5.100000 +561 2272 5.100000 +561 2323 5.100000 +561 2342 5.100000 +561 2443 5.100000 +561 2676 5.100000 +561 2698 5.100000 +561 2826 5.100000 +561 2857 5.100000 +561 2863 5.100000 +561 2962 5.100000 +561 3110 5.100000 +561 3196 5.100000 +562 92 5.100000 +562 100 5.100000 +562 102 5.100000 +562 195 5.100000 +562 209 5.100000 +562 210 5.100000 +562 231 5.100000 +562 280 5.100000 +562 339 5.100000 +562 354 5.100000 +562 376 5.100000 +562 424 5.100000 +562 438 5.100000 +562 464 5.100000 +562 520 5.100000 +562 557 5.100000 +562 558 5.100000 +562 598 5.100000 +562 600 5.100000 +562 764 5.100000 +562 768 5.100000 +562 801 5.100000 +562 868 5.100000 +562 882 5.100000 +562 885 5.100000 +562 999 5.100000 +562 1012 5.100000 +562 1054 5.100000 +562 1067 5.100000 +562 1075 5.100000 +562 1082 5.100000 +562 1085 5.100000 +562 1147 5.100000 +562 1220 5.100000 +562 1250 5.100000 +562 1281 5.100000 +562 1299 5.100000 +562 1483 5.100000 +562 1560 5.100000 +562 1699 5.100000 +562 1711 5.100000 +562 1746 5.100000 +562 1782 5.100000 +562 1818 5.100000 +562 1823 5.100000 +562 1828 5.100000 +562 1928 5.100000 +562 1972 5.100000 +562 2056 5.100000 +562 2095 5.100000 +562 2098 5.100000 +562 2142 5.100000 +562 2151 5.100000 +562 2249 5.100000 +562 2310 5.100000 +562 2332 5.100000 +562 2372 5.100000 +562 2458 5.100000 +562 2467 5.100000 +562 2481 5.100000 +562 2634 5.100000 +562 2783 5.100000 +562 2919 5.100000 +562 2924 5.100000 +562 2965 5.100000 +562 2995 5.100000 +562 3113 5.100000 +562 3132 5.100000 +562 3162 5.100000 +562 3195 5.100000 +563 3 5.100000 +563 12 5.100000 +563 18 5.100000 +563 131 5.100000 +563 161 5.100000 +563 206 5.100000 +563 300 5.100000 +563 317 5.100000 +563 330 5.100000 +563 364 5.100000 +563 425 5.100000 +563 562 5.100000 +563 694 5.100000 +563 706 5.100000 +563 835 5.100000 +563 862 5.100000 +563 879 5.100000 +563 902 5.100000 +563 997 5.100000 +563 1024 5.100000 +563 1094 5.100000 +563 1126 5.100000 +563 1177 5.100000 +563 1239 5.100000 +563 1359 5.100000 +563 1364 5.100000 +563 1372 5.100000 +563 1376 5.100000 +563 1401 5.100000 +563 1440 5.100000 +563 1582 5.100000 +563 1596 5.100000 +563 1623 5.100000 +563 1704 5.100000 +563 1747 5.100000 +563 2020 5.100000 +563 2027 5.100000 +563 2205 5.100000 +563 2236 5.100000 +563 2336 5.100000 +563 2368 5.100000 +563 2502 5.100000 +563 2602 5.100000 +563 2626 5.100000 +563 2681 5.100000 +563 2703 5.100000 +563 2741 5.100000 +563 2839 5.100000 +563 2860 5.100000 +563 2936 5.100000 +563 3052 5.100000 +563 3169 5.100000 +563 3171 5.100000 +564 7 5.100000 +564 99 5.100000 +564 135 5.100000 +564 157 5.100000 +564 190 5.100000 +564 202 5.100000 +564 216 5.100000 +564 421 5.100000 +564 443 5.100000 +564 445 5.100000 +564 476 5.100000 +564 607 5.100000 +564 637 5.100000 +564 681 5.100000 +564 784 5.100000 +564 804 5.100000 +564 943 5.100000 +564 1007 5.100000 +564 1144 5.100000 +564 1160 5.100000 +564 1179 5.100000 +564 1253 5.100000 +564 1254 5.100000 +564 1332 5.100000 +564 1386 5.100000 +564 1456 5.100000 +564 1494 5.100000 +564 1565 5.100000 +564 1583 5.100000 +564 1602 5.100000 +564 1617 5.100000 +564 1647 5.100000 +564 1650 5.100000 +564 1688 5.100000 +564 1721 5.100000 +564 1806 5.100000 +564 1811 5.100000 +564 1833 5.100000 +564 1858 5.100000 +564 1864 5.100000 +564 1984 5.100000 +564 2022 5.100000 +564 2045 5.100000 +564 2206 5.100000 +564 2242 5.100000 +564 2271 5.100000 +564 2289 5.100000 +564 2293 5.100000 +564 2383 5.100000 +564 2407 5.100000 +564 2569 5.100000 +564 2639 5.100000 +564 2688 5.100000 +564 2870 5.100000 +564 2894 5.100000 +564 2898 5.100000 +564 2903 5.100000 +564 2948 5.100000 +564 2966 5.100000 +564 2973 5.100000 +564 3020 5.100000 +564 3070 5.100000 +564 3071 5.100000 +564 3172 5.100000 +565 30 5.100000 +565 33 5.100000 +565 114 5.100000 +565 206 5.100000 +565 282 5.100000 +565 306 5.100000 +565 365 5.100000 +565 407 5.100000 +565 436 5.100000 +565 634 5.100000 +565 643 5.100000 +565 678 5.100000 +565 690 5.100000 +565 712 5.100000 +565 791 5.100000 +565 803 5.100000 +565 857 5.100000 +565 896 5.100000 +565 928 5.100000 +565 937 5.100000 +565 984 5.100000 +565 1022 5.100000 +565 1102 5.100000 +565 1148 5.100000 +565 1299 5.100000 +565 1323 5.100000 +565 1359 5.100000 +565 1384 5.100000 +565 1398 5.100000 +565 1439 5.100000 +565 1454 5.100000 +565 1458 5.100000 +565 1474 5.100000 +565 1573 5.100000 +565 1733 5.100000 +565 1748 5.100000 +565 1790 5.100000 +565 1819 5.100000 +565 1851 5.100000 +565 1852 5.100000 +565 1919 5.100000 +565 1934 5.100000 +565 1972 5.100000 +565 1976 5.100000 +565 1997 5.100000 +565 2012 5.100000 +565 2025 5.100000 +565 2115 5.100000 +565 2257 5.100000 +565 2302 5.100000 +565 2312 5.100000 +565 2409 5.100000 +565 2456 5.100000 +565 2608 5.100000 +565 2638 5.100000 +565 2642 5.100000 +565 2643 5.100000 +565 2686 5.100000 +565 2692 5.100000 +565 2693 5.100000 +565 2765 5.100000 +565 2821 5.100000 +565 2914 5.100000 +565 2923 5.100000 +565 2976 5.100000 +565 2986 5.100000 +565 2999 5.100000 +565 3032 5.100000 +565 3065 5.100000 +565 3134 5.100000 +566 93 5.100000 +566 104 5.100000 +566 128 5.100000 +566 146 5.100000 +566 180 5.100000 +566 281 5.100000 +566 299 5.100000 +566 313 5.100000 +566 362 5.100000 +566 372 5.100000 +566 392 5.100000 +566 498 5.100000 +566 538 5.100000 +566 572 5.100000 +566 699 5.100000 +566 716 5.100000 +566 725 5.100000 +566 760 5.100000 +566 763 5.100000 +566 772 5.100000 +566 776 5.100000 +566 876 5.100000 +566 974 5.100000 +566 999 5.100000 +566 1042 5.100000 +566 1076 5.100000 +566 1124 5.100000 +566 1174 5.100000 +566 1191 5.100000 +566 1200 5.100000 +566 1218 5.100000 +566 1234 5.100000 +566 1306 5.100000 +566 1315 5.100000 +566 1322 5.100000 +566 1332 5.100000 +566 1379 5.100000 +566 1401 5.100000 +566 1436 5.100000 +566 1512 5.100000 +566 1574 5.100000 +566 1686 5.100000 +566 1734 5.100000 +566 1834 5.100000 +566 1870 5.100000 +566 1872 5.100000 +566 1965 5.100000 +566 2030 5.100000 +566 2066 5.100000 +566 2109 5.100000 +566 2201 5.100000 +566 2220 5.100000 +566 2363 5.100000 +566 2368 5.100000 +566 2382 5.100000 +566 2383 5.100000 +566 2397 5.100000 +566 2492 5.100000 +566 2567 5.100000 +566 2619 5.100000 +566 2645 5.100000 +566 2703 5.100000 +566 2877 5.100000 +566 2988 5.100000 +566 3040 5.100000 +566 3089 5.100000 +566 3146 5.100000 +567 79 5.100000 +567 177 5.100000 +567 264 5.100000 +567 268 5.100000 +567 331 5.100000 +567 345 5.100000 +567 356 5.100000 +567 429 5.100000 +567 444 5.100000 +567 551 5.100000 +567 554 5.100000 +567 555 5.100000 +567 617 5.100000 +567 639 5.100000 +567 642 5.100000 +567 734 5.100000 +567 859 5.100000 +567 875 5.100000 +567 987 5.100000 +567 1067 5.100000 +567 1076 5.100000 +567 1142 5.100000 +567 1201 5.100000 +567 1362 5.100000 +567 1419 5.100000 +567 1433 5.100000 +567 1449 5.100000 +567 1500 5.100000 +567 1521 5.100000 +567 1536 5.100000 +567 1649 5.100000 +567 1671 5.100000 +567 1751 5.100000 +567 1859 5.100000 +567 1948 5.100000 +567 1952 5.100000 +567 1958 5.100000 +567 2132 5.100000 +567 2277 5.100000 +567 2301 5.100000 +567 2375 5.100000 +567 2458 5.100000 +567 2505 5.100000 +567 2511 5.100000 +567 2523 5.100000 +567 2563 5.100000 +567 2729 5.100000 +567 2875 5.100000 +567 2894 5.100000 +567 2936 5.100000 +567 2937 5.100000 +567 2966 5.100000 +567 2968 5.100000 +567 3076 5.100000 +567 3150 5.100000 +567 3179 5.100000 +567 3190 5.100000 +568 147 5.100000 +568 221 5.100000 +568 223 5.100000 +568 254 5.100000 +568 315 5.100000 +568 390 5.100000 +568 499 5.100000 +568 533 5.100000 +568 690 5.100000 +568 714 5.100000 +568 741 5.100000 +568 868 5.100000 +568 933 5.100000 +568 949 5.100000 +568 974 5.100000 +568 1055 5.100000 +568 1070 5.100000 +568 1092 5.100000 +568 1096 5.100000 +568 1114 5.100000 +568 1155 5.100000 +568 1160 5.100000 +568 1218 5.100000 +568 1235 5.100000 +568 1334 5.100000 +568 1351 5.100000 +568 1428 5.100000 +568 1440 5.100000 +568 1461 5.100000 +568 1463 5.100000 +568 1475 5.100000 +568 1491 5.100000 +568 1514 5.100000 +568 1563 5.100000 +568 1566 5.100000 +568 1570 5.100000 +568 1614 5.100000 +568 1632 5.100000 +568 1654 5.100000 +568 1753 5.100000 +568 1778 5.100000 +568 1786 5.100000 +568 1832 5.100000 +568 1850 5.100000 +568 1864 5.100000 +568 1902 5.100000 +568 1919 5.100000 +568 2047 5.100000 +568 2049 5.100000 +568 2050 5.100000 +568 2051 5.100000 +568 2053 5.100000 +568 2113 5.100000 +568 2116 5.100000 +568 2181 5.100000 +568 2225 5.100000 +568 2300 5.100000 +568 2347 5.100000 +568 2442 5.100000 +568 2480 5.100000 +568 2552 5.100000 +568 2571 5.100000 +568 2637 5.100000 +568 2653 5.100000 +568 2786 5.100000 +568 2818 5.100000 +568 2895 5.100000 +568 2916 5.100000 +568 2998 5.100000 +568 3032 5.100000 +568 3055 5.100000 +568 3060 5.100000 +568 3142 5.100000 +568 3157 5.100000 +569 113 5.100000 +569 178 5.100000 +569 194 5.100000 +569 214 5.100000 +569 245 5.100000 +569 285 5.100000 +569 413 5.100000 +569 421 5.100000 +569 447 5.100000 +569 500 5.100000 +569 554 5.100000 +569 687 5.100000 +569 695 5.100000 +569 701 5.100000 +569 728 5.100000 +569 842 5.100000 +569 859 5.100000 +569 885 5.100000 +569 902 5.100000 +569 961 5.100000 +569 965 5.100000 +569 982 5.100000 +569 997 5.100000 +569 1027 5.100000 +569 1038 5.100000 +569 1109 5.100000 +569 1118 5.100000 +569 1126 5.100000 +569 1146 5.100000 +569 1196 5.100000 +569 1285 5.100000 +569 1288 5.100000 +569 1343 5.100000 +569 1432 5.100000 +569 1462 5.100000 +569 1469 5.100000 +569 1494 5.100000 +569 1521 5.100000 +569 1645 5.100000 +569 1657 5.100000 +569 1681 5.100000 +569 1684 5.100000 +569 1696 5.100000 +569 1703 5.100000 +569 1773 5.100000 +569 1886 5.100000 +569 1958 5.100000 +569 1997 5.100000 +569 2092 5.100000 +569 2097 5.100000 +569 2128 5.100000 +569 2220 5.100000 +569 2270 5.100000 +569 2272 5.100000 +569 2278 5.100000 +569 2338 5.100000 +569 2349 5.100000 +569 2351 5.100000 +569 2355 5.100000 +569 2360 5.100000 +569 2429 5.100000 +569 2468 5.100000 +569 2476 5.100000 +569 2534 5.100000 +569 2618 5.100000 +569 2619 5.100000 +569 2621 5.100000 +569 2623 5.100000 +569 2751 5.100000 +569 2774 5.100000 +569 2781 5.100000 +569 2795 5.100000 +569 2905 5.100000 +569 2945 5.100000 +569 3105 5.100000 +569 3151 5.100000 +569 3158 5.100000 +570 160 5.100000 +570 205 5.100000 +570 212 5.100000 +570 246 5.100000 +570 285 5.100000 +570 355 5.100000 +570 397 5.100000 +570 401 5.100000 +570 459 5.100000 +570 466 5.100000 +570 469 5.100000 +570 494 5.100000 +570 543 5.100000 +570 564 5.100000 +570 622 5.100000 +570 647 5.100000 +570 710 5.100000 +570 767 5.100000 +570 936 5.100000 +570 942 5.100000 +570 963 5.100000 +570 1072 5.100000 +570 1129 5.100000 +570 1190 5.100000 +570 1209 5.100000 +570 1223 5.100000 +570 1278 5.100000 +570 1303 5.100000 +570 1453 5.100000 +570 1494 5.100000 +570 1544 5.100000 +570 1550 5.100000 +570 1650 5.100000 +570 1716 5.100000 +570 1757 5.100000 +570 1810 5.100000 +570 1898 5.100000 +570 1914 5.100000 +570 1993 5.100000 +570 2109 5.100000 +570 2118 5.100000 +570 2123 5.100000 +570 2161 5.100000 +570 2167 5.100000 +570 2179 5.100000 +570 2183 5.100000 +570 2191 5.100000 +570 2203 5.100000 +570 2225 5.100000 +570 2255 5.100000 +570 2332 5.100000 +570 2367 5.100000 +570 2375 5.100000 +570 2444 5.100000 +570 2476 5.100000 +570 2500 5.100000 +570 2531 5.100000 +570 2541 5.100000 +570 2571 5.100000 +570 2626 5.100000 +570 2644 5.100000 +570 2739 5.100000 +570 2771 5.100000 +570 2798 5.100000 +570 2838 5.100000 +570 3042 5.100000 +570 3058 5.100000 +570 3068 5.100000 +570 3092 5.100000 +570 3108 5.100000 +570 3129 5.100000 +570 3160 5.100000 +571 40 5.100000 +571 117 5.100000 +571 175 5.100000 +571 204 5.100000 +571 276 5.100000 +571 282 5.100000 +571 304 5.100000 +571 313 5.100000 +571 477 5.100000 +571 490 5.100000 +571 512 5.100000 +571 723 5.100000 +571 737 5.100000 +571 769 5.100000 +571 779 5.100000 +571 785 5.100000 +571 863 5.100000 +571 876 5.100000 +571 911 5.100000 +571 929 5.100000 +571 945 5.100000 +571 978 5.100000 +571 992 5.100000 +571 1049 5.100000 +571 1158 5.100000 +571 1182 5.100000 +571 1294 5.100000 +571 1325 5.100000 +571 1349 5.100000 +571 1452 5.100000 +571 1497 5.100000 +571 1517 5.100000 +571 1520 5.100000 +571 1604 5.100000 +571 1612 5.100000 +571 1664 5.100000 +571 1692 5.100000 +571 1715 5.100000 +571 1753 5.100000 +571 1812 5.100000 +571 1871 5.100000 +571 1873 5.100000 +571 1902 5.100000 +571 1940 5.100000 +571 2015 5.100000 +571 2229 5.100000 +571 2339 5.100000 +571 2363 5.100000 +571 2388 5.100000 +571 2492 5.100000 +571 2565 5.100000 +571 2652 5.100000 +571 2653 5.100000 +571 2672 5.100000 +571 2690 5.100000 +571 2705 5.100000 +571 2715 5.100000 +571 2731 5.100000 +571 2770 5.100000 +571 2828 5.100000 +571 2872 5.100000 +571 2884 5.100000 +571 2893 5.100000 +571 2912 5.100000 +571 2962 5.100000 +571 2986 5.100000 +571 2995 5.100000 +571 3000 5.100000 +571 3028 5.100000 +571 3186 5.100000 +572 40 5.100000 +572 78 5.100000 +572 130 5.100000 +572 212 5.100000 +572 239 5.100000 +572 282 5.100000 +572 285 5.100000 +572 297 5.100000 +572 358 5.100000 +572 394 5.100000 +572 429 5.100000 +572 432 5.100000 +572 466 5.100000 +572 535 5.100000 +572 560 5.100000 +572 653 5.100000 +572 702 5.100000 +572 728 5.100000 +572 1028 5.100000 +572 1127 5.100000 +572 1224 5.100000 +572 1274 5.100000 +572 1331 5.100000 +572 1388 5.100000 +572 1459 5.100000 +572 1466 5.100000 +572 1501 5.100000 +572 1506 5.100000 +572 1532 5.100000 +572 1599 5.100000 +572 1638 5.100000 +572 1671 5.100000 +572 1695 5.100000 +572 1724 5.100000 +572 1765 5.100000 +572 1864 5.100000 +572 1871 5.100000 +572 1945 5.100000 +572 1961 5.100000 +572 1984 5.100000 +572 2039 5.100000 +572 2041 5.100000 +572 2086 5.100000 +572 2092 5.100000 +572 2115 5.100000 +572 2119 5.100000 +572 2172 5.100000 +572 2176 5.100000 +572 2285 5.100000 +572 2299 5.100000 +572 2361 5.100000 +572 2363 5.100000 +572 2392 5.100000 +572 2414 5.100000 +572 2542 5.100000 +572 2727 5.100000 +572 2729 5.100000 +572 2743 5.100000 +572 2757 5.100000 +572 2792 5.100000 +572 2981 5.100000 +572 3017 5.100000 +572 3054 5.100000 +573 35 5.100000 +573 75 5.100000 +573 142 5.100000 +573 245 5.100000 +573 266 5.100000 +573 277 5.100000 +573 303 5.100000 +573 364 5.100000 +573 563 5.100000 +573 602 5.100000 +573 693 5.100000 +573 830 5.100000 +573 832 5.100000 +573 838 5.100000 +573 842 5.100000 +573 948 5.100000 +573 989 5.100000 +573 1007 5.100000 +573 1081 5.100000 +573 1202 5.100000 +573 1212 5.100000 +573 1232 5.100000 +573 1298 5.100000 +573 1362 5.100000 +573 1400 5.100000 +573 1420 5.100000 +573 1436 5.100000 +573 1470 5.100000 +573 1500 5.100000 +573 1504 5.100000 +573 1556 5.100000 +573 1593 5.100000 +573 1623 5.100000 +573 1680 5.100000 +573 1702 5.100000 +573 1730 5.100000 +573 1759 5.100000 +573 1769 5.100000 +573 1803 5.100000 +573 1869 5.100000 +573 1889 5.100000 +573 1922 5.100000 +573 2033 5.100000 +573 2262 5.100000 +573 2343 5.100000 +573 2348 5.100000 +573 2377 5.100000 +573 2530 5.100000 +573 2567 5.100000 +573 2665 5.100000 +573 2699 5.100000 +573 2717 5.100000 +573 2789 5.100000 +573 2797 5.100000 +573 2907 5.100000 +573 3071 5.100000 +573 3129 5.100000 +573 3162 5.100000 +573 3172 5.100000 +574 5 5.100000 +574 10 5.100000 +574 14 5.100000 +574 26 5.100000 +574 191 5.100000 +574 409 5.100000 +574 552 5.100000 +574 607 5.100000 +574 614 5.100000 +574 623 5.100000 +574 695 5.100000 +574 726 5.100000 +574 798 5.100000 +574 817 5.100000 +574 896 5.100000 +574 982 5.100000 +574 992 5.100000 +574 1002 5.100000 +574 1197 5.100000 +574 1205 5.100000 +574 1336 5.100000 +574 1462 5.100000 +574 1488 5.100000 +574 1489 5.100000 +574 1521 5.100000 +574 1534 5.100000 +574 1549 5.100000 +574 1563 5.100000 +574 1611 5.100000 +574 1656 5.100000 +574 1657 5.100000 +574 1669 5.100000 +574 1693 5.100000 +574 1744 5.100000 +574 1779 5.100000 +574 1831 5.100000 +574 1955 5.100000 +574 1978 5.100000 +574 2110 5.100000 +574 2122 5.100000 +574 2357 5.100000 +574 2362 5.100000 +574 2522 5.100000 +574 2569 5.100000 +574 2592 5.100000 +574 2615 5.100000 +574 2621 5.100000 +574 2662 5.100000 +574 2668 5.100000 +574 2695 5.100000 +574 2766 5.100000 +574 2776 5.100000 +574 2777 5.100000 +574 2796 5.100000 +574 2985 5.100000 +574 3063 5.100000 +575 30 5.100000 +575 69 5.100000 +575 70 5.100000 +575 172 5.100000 +575 189 5.100000 +575 223 5.100000 +575 241 5.100000 +575 262 5.100000 +575 275 5.100000 +575 284 5.100000 +575 493 5.100000 +575 503 5.100000 +575 524 5.100000 +575 612 5.100000 +575 666 5.100000 +575 726 5.100000 +575 731 5.100000 +575 875 5.100000 +575 883 5.100000 +575 957 5.100000 +575 991 5.100000 +575 1068 5.100000 +575 1082 5.100000 +575 1107 5.100000 +575 1257 5.100000 +575 1260 5.100000 +575 1268 5.100000 +575 1321 5.100000 +575 1341 5.100000 +575 1725 5.100000 +575 1803 5.100000 +575 1806 5.100000 +575 1813 5.100000 +575 1892 5.100000 +575 1937 5.100000 +575 1966 5.100000 +575 2012 5.100000 +575 2099 5.100000 +575 2157 5.100000 +575 2325 5.100000 +575 2337 5.100000 +575 2365 5.100000 +575 2387 5.100000 +575 2451 5.100000 +575 2472 5.100000 +575 2565 5.100000 +575 2581 5.100000 +575 2806 5.100000 +575 2861 5.100000 +575 2910 5.100000 +575 3154 5.100000 +575 3190 5.100000 +576 2 5.100000 +576 40 5.100000 +576 69 5.100000 +576 95 5.100000 +576 104 5.100000 +576 110 5.100000 +576 132 5.100000 +576 193 5.100000 +576 205 5.100000 +576 237 5.100000 +576 313 5.100000 +576 331 5.100000 +576 380 5.100000 +576 441 5.100000 +576 517 5.100000 +576 545 5.100000 +576 647 5.100000 +576 658 5.100000 +576 666 5.100000 +576 672 5.100000 +576 685 5.100000 +576 801 5.100000 +576 822 5.100000 +576 841 5.100000 +576 856 5.100000 +576 900 5.100000 +576 920 5.100000 +576 923 5.100000 +576 933 5.100000 +576 941 5.100000 +576 1079 5.100000 +576 1136 5.100000 +576 1139 5.100000 +576 1147 5.100000 +576 1208 5.100000 +576 1227 5.100000 +576 1228 5.100000 +576 1402 5.100000 +576 1405 5.100000 +576 1412 5.100000 +576 1420 5.100000 +576 1459 5.100000 +576 1486 5.100000 +576 1510 5.100000 +576 1516 5.100000 +576 1534 5.100000 +576 1572 5.100000 +576 1599 5.100000 +576 1710 5.100000 +576 1743 5.100000 +576 1766 5.100000 +576 1854 5.100000 +576 1855 5.100000 +576 1964 5.100000 +576 1992 5.100000 +576 2031 5.100000 +576 2039 5.100000 +576 2135 5.100000 +576 2214 5.100000 +576 2233 5.100000 +576 2234 5.100000 +576 2286 5.100000 +576 2464 5.100000 +576 2638 5.100000 +576 2698 5.100000 +576 2815 5.100000 +576 2855 5.100000 +576 2916 5.100000 +576 2919 5.100000 +576 2999 5.100000 +576 3120 5.100000 +576 3124 5.100000 +576 3135 5.100000 +577 4 5.100000 +577 6 5.100000 +577 117 5.100000 +577 118 5.100000 +577 135 5.100000 +577 213 5.100000 +577 307 5.100000 +577 503 5.100000 +577 522 5.100000 +577 523 5.100000 +577 558 5.100000 +577 572 5.100000 +577 621 5.100000 +577 630 5.100000 +577 683 5.100000 +577 735 5.100000 +577 850 5.100000 +577 920 5.100000 +577 997 5.100000 +577 1068 5.100000 +577 1155 5.100000 +577 1195 5.100000 +577 1303 5.100000 +577 1313 5.100000 +577 1331 5.100000 +577 1465 5.100000 +577 1473 5.100000 +577 1518 5.100000 +577 1569 5.100000 +577 1667 5.100000 +577 1679 5.100000 +577 1701 5.100000 +577 1704 5.100000 +577 1769 5.100000 +577 1843 5.100000 +577 1850 5.100000 +577 1958 5.100000 +577 1975 5.100000 +577 1996 5.100000 +577 2008 5.100000 +577 2017 5.100000 +577 2057 5.100000 +577 2100 5.100000 +577 2157 5.100000 +577 2169 5.100000 +577 2178 5.100000 +577 2247 5.100000 +577 2258 5.100000 +577 2335 5.100000 +577 2413 5.100000 +577 2471 5.100000 +577 2799 5.100000 +577 2840 5.100000 +577 2866 5.100000 +577 2911 5.100000 +577 2932 5.100000 +577 2950 5.100000 +577 2959 5.100000 +577 2986 5.100000 +577 3005 5.100000 +577 3010 5.100000 +577 3024 5.100000 +577 3067 5.100000 +577 3100 5.100000 +577 3102 5.100000 +577 3134 5.100000 +578 110 5.100000 +578 213 5.100000 +578 293 5.100000 +578 327 5.100000 +578 339 5.100000 +578 386 5.100000 +578 419 5.100000 +578 473 5.100000 +578 543 5.100000 +578 559 5.100000 +578 574 5.100000 +578 590 5.100000 +578 684 5.100000 +578 740 5.100000 +578 809 5.100000 +578 859 5.100000 +578 944 5.100000 +578 1071 5.100000 +578 1124 5.100000 +578 1250 5.100000 +578 1255 5.100000 +578 1377 5.100000 +578 1402 5.100000 +578 1481 5.100000 +578 1523 5.100000 +578 1534 5.100000 +578 1536 5.100000 +578 1548 5.100000 +578 1638 5.100000 +578 1731 5.100000 +578 1778 5.100000 +578 1787 5.100000 +578 1788 5.100000 +578 1911 5.100000 +578 1920 5.100000 +578 2075 5.100000 +578 2093 5.100000 +578 2094 5.100000 +578 2217 5.100000 +578 2293 5.100000 +578 2408 5.100000 +578 2458 5.100000 +578 2475 5.100000 +578 2491 5.100000 +578 2549 5.100000 +578 2611 5.100000 +578 2723 5.100000 +578 2763 5.100000 +578 2839 5.100000 +578 2893 5.100000 +578 2929 5.100000 +578 2943 5.100000 +578 3011 5.100000 +578 3053 5.100000 +578 3085 5.100000 +578 3131 5.100000 +579 22 5.100000 +579 59 5.100000 +579 65 5.100000 +579 77 5.100000 +579 207 5.100000 +579 218 5.100000 +579 317 5.100000 +579 461 5.100000 +579 466 5.100000 +579 529 5.100000 +579 555 5.100000 +579 623 5.100000 +579 731 5.100000 +579 938 5.100000 +579 963 5.100000 +579 968 5.100000 +579 985 5.100000 +579 1116 5.100000 +579 1138 5.100000 +579 1162 5.100000 +579 1248 5.100000 +579 1270 5.100000 +579 1320 5.100000 +579 1343 5.100000 +579 1427 5.100000 +579 1456 5.100000 +579 1457 5.100000 +579 1465 5.100000 +579 1510 5.100000 +579 1560 5.100000 +579 1568 5.100000 +579 1626 5.100000 +579 1629 5.100000 +579 1706 5.100000 +579 1747 5.100000 +579 1789 5.100000 +579 1859 5.100000 +579 1938 5.100000 +579 1942 5.100000 +579 2168 5.100000 +579 2170 5.100000 +579 2174 5.100000 +579 2296 5.100000 +579 2329 5.100000 +579 2333 5.100000 +579 2368 5.100000 +579 2414 5.100000 +579 2440 5.100000 +579 2485 5.100000 +579 2487 5.100000 +579 2527 5.100000 +579 2646 5.100000 +579 2668 5.100000 +579 2721 5.100000 +579 2789 5.100000 +579 2865 5.100000 +579 2869 5.100000 +579 2920 5.100000 +579 2922 5.100000 +579 2939 5.100000 +579 2956 5.100000 +579 2962 5.100000 +579 2968 5.100000 +579 3029 5.100000 +579 3161 5.100000 +580 87 5.100000 +580 284 5.100000 +580 368 5.100000 +580 401 5.100000 +580 407 5.100000 +580 448 5.100000 +580 521 5.100000 +580 629 5.100000 +580 897 5.100000 +580 1011 5.100000 +580 1025 5.100000 +580 1106 5.100000 +580 1161 5.100000 +580 1253 5.100000 +580 1260 5.100000 +580 1271 5.100000 +580 1278 5.100000 +580 1375 5.100000 +580 1409 5.100000 +580 1426 5.100000 +580 1432 5.100000 +580 1478 5.100000 +580 1620 5.100000 +580 1636 5.100000 +580 1699 5.100000 +580 1711 5.100000 +580 1850 5.100000 +580 1912 5.100000 +580 1946 5.100000 +580 2132 5.100000 +580 2141 5.100000 +580 2147 5.100000 +580 2222 5.100000 +580 2278 5.100000 +580 2307 5.100000 +580 2310 5.100000 +580 2314 5.100000 +580 2325 5.100000 +580 2336 5.100000 +580 2341 5.100000 +580 2584 5.100000 +580 2665 5.100000 +580 2709 5.100000 +580 2754 5.100000 +580 2760 5.100000 +580 2770 5.100000 +580 2791 5.100000 +580 2792 5.100000 +580 2827 5.100000 +580 2830 5.100000 +580 2833 5.100000 +580 2899 5.100000 +580 2953 5.100000 +580 3017 5.100000 +580 3033 5.100000 +580 3048 5.100000 +580 3120 5.100000 +580 3142 5.100000 +580 3198 5.100000 +581 22 5.100000 +581 114 5.100000 +581 252 5.100000 +581 303 5.100000 +581 370 5.100000 +581 380 5.100000 +581 431 5.100000 +581 459 5.100000 +581 553 5.100000 +581 569 5.100000 +581 590 5.100000 +581 599 5.100000 +581 612 5.100000 +581 616 5.100000 +581 679 5.100000 +581 687 5.100000 +581 697 5.100000 +581 745 5.100000 +581 746 5.100000 +581 767 5.100000 +581 805 5.100000 +581 946 5.100000 +581 994 5.100000 +581 1082 5.100000 +581 1126 5.100000 +581 1132 5.100000 +581 1312 5.100000 +581 1350 5.100000 +581 1385 5.100000 +581 1454 5.100000 +581 1465 5.100000 +581 1480 5.100000 +581 1485 5.100000 +581 1493 5.100000 +581 1536 5.100000 +581 1538 5.100000 +581 1575 5.100000 +581 1578 5.100000 +581 1600 5.100000 +581 1671 5.100000 +581 1673 5.100000 +581 1696 5.100000 +581 1742 5.100000 +581 1751 5.100000 +581 1802 5.100000 +581 1824 5.100000 +581 1827 5.100000 +581 1919 5.100000 +581 1921 5.100000 +581 2012 5.100000 +581 2036 5.100000 +581 2045 5.100000 +581 2078 5.100000 +581 2105 5.100000 +581 2220 5.100000 +581 2369 5.100000 +581 2381 5.100000 +581 2412 5.100000 +581 2483 5.100000 +581 2687 5.100000 +581 2719 5.100000 +581 2721 5.100000 +581 2774 5.100000 +581 2838 5.100000 +581 2841 5.100000 +581 2892 5.100000 +581 3000 5.100000 +581 3019 5.100000 +581 3028 5.100000 +581 3029 5.100000 +581 3030 5.100000 +581 3061 5.100000 +581 3087 5.100000 +581 3100 5.100000 +581 3130 5.100000 +581 3137 5.100000 +581 3184 5.100000 +582 43 5.100000 +582 54 5.100000 +582 113 5.100000 +582 151 5.100000 +582 172 5.100000 +582 175 5.100000 +582 237 5.100000 +582 398 5.100000 +582 446 5.100000 +582 584 5.100000 +582 644 5.100000 +582 711 5.100000 +582 722 5.100000 +582 742 5.100000 +582 749 5.100000 +582 859 5.100000 +582 860 5.100000 +582 887 5.100000 +582 895 5.100000 +582 986 5.100000 +582 1189 5.100000 +582 1237 5.100000 +582 1238 5.100000 +582 1241 5.100000 +582 1271 5.100000 +582 1304 5.100000 +582 1347 5.100000 +582 1349 5.100000 +582 1378 5.100000 +582 1393 5.100000 +582 1414 5.100000 +582 1422 5.100000 +582 1453 5.100000 +582 1624 5.100000 +582 1851 5.100000 +582 1885 5.100000 +582 1896 5.100000 +582 2012 5.100000 +582 2055 5.100000 +582 2128 5.100000 +582 2161 5.100000 +582 2177 5.100000 +582 2192 5.100000 +582 2259 5.100000 +582 2380 5.100000 +582 2504 5.100000 +582 2591 5.100000 +582 2666 5.100000 +582 2681 5.100000 +582 2723 5.100000 +582 2734 5.100000 +582 2736 5.100000 +582 2762 5.100000 +582 2770 5.100000 +582 2818 5.100000 +582 2852 5.100000 +582 2864 5.100000 +582 2878 5.100000 +582 2927 5.100000 +582 2979 5.100000 +582 3010 5.100000 +582 3017 5.100000 +582 3020 5.100000 +582 3039 5.100000 +582 3112 5.100000 +582 3121 5.100000 +582 3172 5.100000 +582 3198 5.100000 +583 119 5.100000 +583 201 5.100000 +583 204 5.100000 +583 219 5.100000 +583 251 5.100000 +583 278 5.100000 +583 299 5.100000 +583 301 5.100000 +583 353 5.100000 +583 375 5.100000 +583 576 5.100000 +583 691 5.100000 +583 730 5.100000 +583 769 5.100000 +583 781 5.100000 +583 824 5.100000 +583 843 5.100000 +583 904 5.100000 +583 919 5.100000 +583 968 5.100000 +583 1129 5.100000 +583 1164 5.100000 +583 1206 5.100000 +583 1241 5.100000 +583 1277 5.100000 +583 1301 5.100000 +583 1328 5.100000 +583 1462 5.100000 +583 1532 5.100000 +583 1593 5.100000 +583 1623 5.100000 +583 1651 5.100000 +583 1721 5.100000 +583 1750 5.100000 +583 1766 5.100000 +583 1772 5.100000 +583 1814 5.100000 +583 1845 5.100000 +583 1888 5.100000 +583 1923 5.100000 +583 2051 5.100000 +583 2060 5.100000 +583 2064 5.100000 +583 2079 5.100000 +583 2161 5.100000 +583 2173 5.100000 +583 2205 5.100000 +583 2221 5.100000 +583 2264 5.100000 +583 2297 5.100000 +583 2470 5.100000 +583 2500 5.100000 +583 2580 5.100000 +583 2594 5.100000 +583 2595 5.100000 +583 2606 5.100000 +583 2607 5.100000 +583 2647 5.100000 +583 2711 5.100000 +583 2742 5.100000 +583 2749 5.100000 +583 2809 5.100000 +583 2828 5.100000 +583 2938 5.100000 +583 2941 5.100000 +583 2947 5.100000 +583 2992 5.100000 +583 3007 5.100000 +583 3083 5.100000 +583 3173 5.100000 +584 85 5.100000 +584 148 5.100000 +584 164 5.100000 +584 273 5.100000 +584 289 5.100000 +584 294 5.100000 +584 310 5.100000 +584 433 5.100000 +584 444 5.100000 +584 600 5.100000 +584 606 5.100000 +584 675 5.100000 +584 719 5.100000 +584 729 5.100000 +584 738 5.100000 +584 767 5.100000 +584 854 5.100000 +584 865 5.100000 +584 905 5.100000 +584 984 5.100000 +584 1012 5.100000 +584 1057 5.100000 +584 1059 5.100000 +584 1266 5.100000 +584 1287 5.100000 +584 1357 5.100000 +584 1366 5.100000 +584 1404 5.100000 +584 1500 5.100000 +584 1622 5.100000 +584 1669 5.100000 +584 1671 5.100000 +584 1736 5.100000 +584 1773 5.100000 +584 1815 5.100000 +584 1912 5.100000 +584 1969 5.100000 +584 1991 5.100000 +584 2020 5.100000 +584 2072 5.100000 +584 2136 5.100000 +584 2263 5.100000 +584 2284 5.100000 +584 2306 5.100000 +584 2361 5.100000 +584 2385 5.100000 +584 2553 5.100000 +584 2556 5.100000 +584 2595 5.100000 +584 2625 5.100000 +584 2714 5.100000 +584 2715 5.100000 +584 2779 5.100000 +584 2830 5.100000 +584 2891 5.100000 +584 2910 5.100000 +584 2962 5.100000 +584 2978 5.100000 +584 2992 5.100000 +584 3009 5.100000 +584 3043 5.100000 +584 3115 5.100000 +585 7 5.100000 +585 32 5.100000 +585 61 5.100000 +585 103 5.100000 +585 161 5.100000 +585 165 5.100000 +585 193 5.100000 +585 250 5.100000 +585 267 5.100000 +585 292 5.100000 +585 301 5.100000 +585 343 5.100000 +585 344 5.100000 +585 357 5.100000 +585 371 5.100000 +585 385 5.100000 +585 509 5.100000 +585 535 5.100000 +585 579 5.100000 +585 583 5.100000 +585 586 5.100000 +585 866 5.100000 +585 1083 5.100000 +585 1137 5.100000 +585 1144 5.100000 +585 1163 5.100000 +585 1234 5.100000 +585 1427 5.100000 +585 1428 5.100000 +585 1503 5.100000 +585 1516 5.100000 +585 1563 5.100000 +585 1600 5.100000 +585 1624 5.100000 +585 1856 5.100000 +585 1952 5.100000 +585 2028 5.100000 +585 2194 5.100000 +585 2249 5.100000 +585 2291 5.100000 +585 2304 5.100000 +585 2387 5.100000 +585 2429 5.100000 +585 2480 5.100000 +585 2608 5.100000 +585 2754 5.100000 +585 2934 5.100000 +585 2974 5.100000 +585 3050 5.100000 +585 3081 5.100000 +586 14 5.100000 +586 15 5.100000 +586 32 5.100000 +586 36 5.100000 +586 122 5.100000 +586 134 5.100000 +586 194 5.100000 +586 293 5.100000 +586 328 5.100000 +586 367 5.100000 +586 370 5.100000 +586 401 5.100000 +586 417 5.100000 +586 441 5.100000 +586 446 5.100000 +586 458 5.100000 +586 469 5.100000 +586 470 5.100000 +586 549 5.100000 +586 564 5.100000 +586 670 5.100000 +586 787 5.100000 +586 892 5.100000 +586 895 5.100000 +586 1059 5.100000 +586 1138 5.100000 +586 1147 5.100000 +586 1220 5.100000 +586 1285 5.100000 +586 1322 5.100000 +586 1335 5.100000 +586 1422 5.100000 +586 1467 5.100000 +586 1488 5.100000 +586 1509 5.100000 +586 1537 5.100000 +586 1704 5.100000 +586 1889 5.100000 +586 1893 5.100000 +586 1976 5.100000 +586 1993 5.100000 +586 2042 5.100000 +586 2100 5.100000 +586 2240 5.100000 +586 2380 5.100000 +586 2402 5.100000 +586 2455 5.100000 +586 2648 5.100000 +586 2679 5.100000 +586 2707 5.100000 +586 2758 5.100000 +586 2777 5.100000 +586 2828 5.100000 +586 2835 5.100000 +586 2837 5.100000 +586 2910 5.100000 +586 2963 5.100000 +586 2996 5.100000 +586 3008 5.100000 +586 3084 5.100000 +586 3086 5.100000 +586 3119 5.100000 +587 135 5.100000 +587 288 5.100000 +587 371 5.100000 +587 393 5.100000 +587 405 5.100000 +587 479 5.100000 +587 488 5.100000 +587 503 5.100000 +587 561 5.100000 +587 602 5.100000 +587 604 5.100000 +587 805 5.100000 +587 844 5.100000 +587 883 5.100000 +587 915 5.100000 +587 924 5.100000 +587 960 5.100000 +587 1007 5.100000 +587 1019 5.100000 +587 1080 5.100000 +587 1099 5.100000 +587 1167 5.100000 +587 1270 5.100000 +587 1310 5.100000 +587 1324 5.100000 +587 1329 5.100000 +587 1358 5.100000 +587 1363 5.100000 +587 1374 5.100000 +587 1462 5.100000 +587 1474 5.100000 +587 1538 5.100000 +587 1562 5.100000 +587 1614 5.100000 +587 1715 5.100000 +587 1753 5.100000 +587 1769 5.100000 +587 1780 5.100000 +587 1785 5.100000 +587 1789 5.100000 +587 1823 5.100000 +587 1880 5.100000 +587 1891 5.100000 +587 1901 5.100000 +587 1915 5.100000 +587 1954 5.100000 +587 2010 5.100000 +587 2110 5.100000 +587 2113 5.100000 +587 2150 5.100000 +587 2165 5.100000 +587 2171 5.100000 +587 2174 5.100000 +587 2175 5.100000 +587 2330 5.100000 +587 2420 5.100000 +587 2428 5.100000 +587 2483 5.100000 +587 2487 5.100000 +587 2502 5.100000 +587 2545 5.100000 +587 2554 5.100000 +587 2564 5.100000 +587 2635 5.100000 +587 2675 5.100000 +587 2694 5.100000 +587 2727 5.100000 +587 2761 5.100000 +587 2803 5.100000 +587 2869 5.100000 +587 2875 5.100000 +587 2898 5.100000 +587 2902 5.100000 +587 2922 5.100000 +587 3005 5.100000 +587 3099 5.100000 +587 3133 5.100000 +587 3165 5.100000 +588 7 5.100000 +588 16 5.100000 +588 37 5.100000 +588 47 5.100000 +588 60 5.100000 +588 71 5.100000 +588 155 5.100000 +588 187 5.100000 +588 223 5.100000 +588 265 5.100000 +588 329 5.100000 +588 351 5.100000 +588 429 5.100000 +588 563 5.100000 +588 574 5.100000 +588 722 5.100000 +588 723 5.100000 +588 727 5.100000 +588 740 5.100000 +588 743 5.100000 +588 957 5.100000 +588 969 5.100000 +588 1028 5.100000 +588 1034 5.100000 +588 1037 5.100000 +588 1103 5.100000 +588 1229 5.100000 +588 1245 5.100000 +588 1282 5.100000 +588 1284 5.100000 +588 1291 5.100000 +588 1292 5.100000 +588 1375 5.100000 +588 1376 5.100000 +588 1388 5.100000 +588 1393 5.100000 +588 1410 5.100000 +588 1433 5.100000 +588 1482 5.100000 +588 1494 5.100000 +588 1554 5.100000 +588 1604 5.100000 +588 1645 5.100000 +588 1694 5.100000 +588 1823 5.100000 +588 1916 5.100000 +588 1926 5.100000 +588 1964 5.100000 +588 2013 5.100000 +588 2081 5.100000 +588 2225 5.100000 +588 2318 5.100000 +588 2333 5.100000 +588 2344 5.100000 +588 2401 5.100000 +588 2464 5.100000 +588 2522 5.100000 +588 2593 5.100000 +588 2671 5.100000 +588 2682 5.100000 +588 2739 5.100000 +588 2911 5.100000 +588 2994 5.100000 +588 3023 5.100000 +588 3031 5.100000 +588 3049 5.100000 +588 3066 5.100000 +588 3088 5.100000 +588 3114 5.100000 +588 3180 5.100000 +588 3189 5.100000 +589 68 5.100000 +589 112 5.100000 +589 313 5.100000 +589 334 5.100000 +589 422 5.100000 +589 425 5.100000 +589 516 5.100000 +589 601 5.100000 +589 634 5.100000 +589 675 5.100000 +589 850 5.100000 +589 950 5.100000 +589 1112 5.100000 +589 1142 5.100000 +589 1253 5.100000 +589 1260 5.100000 +589 1287 5.100000 +589 1347 5.100000 +589 1359 5.100000 +589 1361 5.100000 +589 1382 5.100000 +589 1453 5.100000 +589 1462 5.100000 +589 1603 5.100000 +589 1656 5.100000 +589 1675 5.100000 +589 1696 5.100000 +589 1744 5.100000 +589 1765 5.100000 +589 1795 5.100000 +589 1867 5.100000 +589 1877 5.100000 +589 1886 5.100000 +589 1918 5.100000 +589 2020 5.100000 +589 2045 5.100000 +589 2217 5.100000 +589 2358 5.100000 +589 2375 5.100000 +589 2377 5.100000 +589 2406 5.100000 +589 2497 5.100000 +589 2519 5.100000 +589 2527 5.100000 +589 2529 5.100000 +589 2631 5.100000 +589 2729 5.100000 +589 2760 5.100000 +589 2793 5.100000 +589 2800 5.100000 +589 2817 5.100000 +589 2842 5.100000 +589 2844 5.100000 +589 2894 5.100000 +589 2897 5.100000 +589 2930 5.100000 +589 2990 5.100000 +589 3001 5.100000 +589 3002 5.100000 +589 3013 5.100000 +589 3124 5.100000 +589 3146 5.100000 +590 15 5.100000 +590 18 5.100000 +590 395 5.100000 +590 424 5.100000 +590 435 5.100000 +590 552 5.100000 +590 557 5.100000 +590 560 5.100000 +590 600 5.100000 +590 622 5.100000 +590 751 5.100000 +590 812 5.100000 +590 849 5.100000 +590 874 5.100000 +590 1020 5.100000 +590 1053 5.100000 +590 1068 5.100000 +590 1092 5.100000 +590 1140 5.100000 +590 1155 5.100000 +590 1160 5.100000 +590 1261 5.100000 +590 1316 5.100000 +590 1318 5.100000 +590 1356 5.100000 +590 1360 5.100000 +590 1378 5.100000 +590 1404 5.100000 +590 1443 5.100000 +590 1468 5.100000 +590 1596 5.100000 +590 1616 5.100000 +590 1664 5.100000 +590 1784 5.100000 +590 1826 5.100000 +590 1895 5.100000 +590 1904 5.100000 +590 1925 5.100000 +590 2024 5.100000 +590 2140 5.100000 +590 2206 5.100000 +590 2247 5.100000 +590 2333 5.100000 +590 2355 5.100000 +590 2359 5.100000 +590 2376 5.100000 +590 2483 5.100000 +590 2488 5.100000 +590 2510 5.100000 +590 2645 5.100000 +590 2672 5.100000 +590 2675 5.100000 +590 2830 5.100000 +590 2850 5.100000 +590 2964 5.100000 +590 3054 5.100000 +590 3096 5.100000 +591 1 5.100000 +591 6 5.100000 +591 21 5.100000 +591 44 5.100000 +591 46 5.100000 +591 100 5.100000 +591 219 5.100000 +591 224 5.100000 +591 226 5.100000 +591 231 5.100000 +591 279 5.100000 +591 310 5.100000 +591 353 5.100000 +591 408 5.100000 +591 535 5.100000 +591 565 5.100000 +591 654 5.100000 +591 681 5.100000 +591 706 5.100000 +591 726 5.100000 +591 743 5.100000 +591 745 5.100000 +591 832 5.100000 +591 855 5.100000 +591 919 5.100000 +591 926 5.100000 +591 968 5.100000 +591 1114 5.100000 +591 1133 5.100000 +591 1148 5.100000 +591 1161 5.100000 +591 1192 5.100000 +591 1252 5.100000 +591 1307 5.100000 +591 1322 5.100000 +591 1346 5.100000 +591 1348 5.100000 +591 1352 5.100000 +591 1418 5.100000 +591 1485 5.100000 +591 1499 5.100000 +591 1525 5.100000 +591 1548 5.100000 +591 1602 5.100000 +591 1634 5.100000 +591 1661 5.100000 +591 1721 5.100000 +591 1802 5.100000 +591 1814 5.100000 +591 2033 5.100000 +591 2114 5.100000 +591 2187 5.100000 +591 2211 5.100000 +591 2372 5.100000 +591 2391 5.100000 +591 2510 5.100000 +591 2603 5.100000 +591 2638 5.100000 +591 2789 5.100000 +591 2793 5.100000 +591 2854 5.100000 +591 2864 5.100000 +591 2897 5.100000 +591 3040 5.100000 +591 3089 5.100000 +591 3196 5.100000 +592 9 5.100000 +592 91 5.100000 +592 156 5.100000 +592 189 5.100000 +592 226 5.100000 +592 369 5.100000 +592 397 5.100000 +592 474 5.100000 +592 511 5.100000 +592 592 5.100000 +592 644 5.100000 +592 677 5.100000 +592 691 5.100000 +592 759 5.100000 +592 776 5.100000 +592 777 5.100000 +592 901 5.100000 +592 1029 5.100000 +592 1036 5.100000 +592 1115 5.100000 +592 1186 5.100000 +592 1280 5.100000 +592 1345 5.100000 +592 1454 5.100000 +592 1474 5.100000 +592 1540 5.100000 +592 1547 5.100000 +592 1615 5.100000 +592 1653 5.100000 +592 1657 5.100000 +592 1663 5.100000 +592 1735 5.100000 +592 1781 5.100000 +592 1805 5.100000 +592 1855 5.100000 +592 1865 5.100000 +592 1900 5.100000 +592 2006 5.100000 +592 2036 5.100000 +592 2042 5.100000 +592 2046 5.100000 +592 2224 5.100000 +592 2324 5.100000 +592 2325 5.100000 +592 2339 5.100000 +592 2464 5.100000 +592 2543 5.100000 +592 2559 5.100000 +592 2560 5.100000 +592 2607 5.100000 +592 2674 5.100000 +592 2690 5.100000 +592 2720 5.100000 +592 2730 5.100000 +592 2797 5.100000 +592 2826 5.100000 +592 2918 5.100000 +592 2985 5.100000 +592 3072 5.100000 +592 3080 5.100000 +592 3086 5.100000 +592 3133 5.100000 +592 3155 5.100000 +592 3158 5.100000 +592 3200 5.100000 +593 24 5.100000 +593 29 5.100000 +593 53 5.100000 +593 110 5.100000 +593 141 5.100000 +593 145 5.100000 +593 175 5.100000 +593 292 5.100000 +593 323 5.100000 +593 326 5.100000 +593 343 5.100000 +593 393 5.100000 +593 483 5.100000 +593 507 5.100000 +593 590 5.100000 +593 616 5.100000 +593 650 5.100000 +593 665 5.100000 +593 685 5.100000 +593 710 5.100000 +593 817 5.100000 +593 822 5.100000 +593 907 5.100000 +593 1006 5.100000 +593 1146 5.100000 +593 1230 5.100000 +593 1273 5.100000 +593 1290 5.100000 +593 1304 5.100000 +593 1310 5.100000 +593 1338 5.100000 +593 1388 5.100000 +593 1418 5.100000 +593 1427 5.100000 +593 1439 5.100000 +593 1458 5.100000 +593 1492 5.100000 +593 1645 5.100000 +593 1698 5.100000 +593 1714 5.100000 +593 1724 5.100000 +593 1937 5.100000 +593 1943 5.100000 +593 2033 5.100000 +593 2093 5.100000 +593 2115 5.100000 +593 2283 5.100000 +593 2444 5.100000 +593 2469 5.100000 +593 2525 5.100000 +593 2559 5.100000 +593 2563 5.100000 +593 2597 5.100000 +593 2660 5.100000 +593 2666 5.100000 +593 2697 5.100000 +593 2740 5.100000 +593 2775 5.100000 +593 2802 5.100000 +593 2826 5.100000 +593 2908 5.100000 +593 2943 5.100000 +593 2966 5.100000 +593 3083 5.100000 +593 3134 5.100000 +594 35 5.100000 +594 69 5.100000 +594 95 5.100000 +594 112 5.100000 +594 179 5.100000 +594 296 5.100000 +594 423 5.100000 +594 433 5.100000 +594 473 5.100000 +594 500 5.100000 +594 544 5.100000 +594 553 5.100000 +594 565 5.100000 +594 639 5.100000 +594 700 5.100000 +594 839 5.100000 +594 962 5.100000 +594 987 5.100000 +594 1007 5.100000 +594 1014 5.100000 +594 1137 5.100000 +594 1138 5.100000 +594 1150 5.100000 +594 1219 5.100000 +594 1408 5.100000 +594 1432 5.100000 +594 1495 5.100000 +594 1501 5.100000 +594 1549 5.100000 +594 1648 5.100000 +594 1693 5.100000 +594 1714 5.100000 +594 1858 5.100000 +594 1900 5.100000 +594 1951 5.100000 +594 1981 5.100000 +594 2005 5.100000 +594 2099 5.100000 +594 2147 5.100000 +594 2240 5.100000 +594 2271 5.100000 +594 2283 5.100000 +594 2291 5.100000 +594 2307 5.100000 +594 2362 5.100000 +594 2389 5.100000 +594 2464 5.100000 +594 2549 5.100000 +594 2647 5.100000 +594 2671 5.100000 +594 2680 5.100000 +594 2721 5.100000 +594 2740 5.100000 +594 2871 5.100000 +594 2894 5.100000 +594 2899 5.100000 +594 2912 5.100000 +594 2930 5.100000 +594 2974 5.100000 +594 3036 5.100000 +594 3084 5.100000 +594 3097 5.100000 +594 3126 5.100000 +594 3127 5.100000 +594 3131 5.100000 +594 3141 5.100000 +594 3142 5.100000 +594 3151 5.100000 +594 3168 5.100000 +594 3174 5.100000 +595 11 5.100000 +595 72 5.100000 +595 83 5.100000 +595 92 5.100000 +595 120 5.100000 +595 157 5.100000 +595 221 5.100000 +595 295 5.100000 +595 312 5.100000 +595 329 5.100000 +595 345 5.100000 +595 351 5.100000 +595 393 5.100000 +595 436 5.100000 +595 609 5.100000 +595 701 5.100000 +595 739 5.100000 +595 775 5.100000 +595 797 5.100000 +595 837 5.100000 +595 875 5.100000 +595 886 5.100000 +595 904 5.100000 +595 916 5.100000 +595 959 5.100000 +595 1130 5.100000 +595 1177 5.100000 +595 1298 5.100000 +595 1333 5.100000 +595 1343 5.100000 +595 1368 5.100000 +595 1369 5.100000 +595 1473 5.100000 +595 1488 5.100000 +595 1652 5.100000 +595 1668 5.100000 +595 1706 5.100000 +595 1723 5.100000 +595 1815 5.100000 +595 1843 5.100000 +595 1846 5.100000 +595 1862 5.100000 +595 1864 5.100000 +595 1867 5.100000 +595 1937 5.100000 +595 2062 5.100000 +595 2224 5.100000 +595 2443 5.100000 +595 2459 5.100000 +595 2517 5.100000 +595 2693 5.100000 +595 2768 5.100000 +595 2782 5.100000 +595 2837 5.100000 +595 2849 5.100000 +595 2852 5.100000 +595 2909 5.100000 +595 2925 5.100000 +595 2956 5.100000 +595 2985 5.100000 +595 3116 5.100000 +595 3144 5.100000 +595 3169 5.100000 +596 73 5.100000 +596 131 5.100000 +596 176 5.100000 +596 217 5.100000 +596 228 5.100000 +596 260 5.100000 +596 287 5.100000 +596 304 5.100000 +596 342 5.100000 +596 454 5.100000 +596 503 5.100000 +596 523 5.100000 +596 559 5.100000 +596 757 5.100000 +596 806 5.100000 +596 838 5.100000 +596 844 5.100000 +596 881 5.100000 +596 925 5.100000 +596 979 5.100000 +596 1055 5.100000 +596 1094 5.100000 +596 1119 5.100000 +596 1139 5.100000 +596 1160 5.100000 +596 1162 5.100000 +596 1176 5.100000 +596 1193 5.100000 +596 1243 5.100000 +596 1287 5.100000 +596 1295 5.100000 +596 1340 5.100000 +596 1357 5.100000 +596 1394 5.100000 +596 1484 5.100000 +596 1554 5.100000 +596 1587 5.100000 +596 1618 5.100000 +596 1637 5.100000 +596 1668 5.100000 +596 1683 5.100000 +596 1792 5.100000 +596 1800 5.100000 +596 1864 5.100000 +596 1936 5.100000 +596 1967 5.100000 +596 1985 5.100000 +596 2023 5.100000 +596 2105 5.100000 +596 2153 5.100000 +596 2202 5.100000 +596 2204 5.100000 +596 2234 5.100000 +596 2237 5.100000 +596 2256 5.100000 +596 2260 5.100000 +596 2311 5.100000 +596 2333 5.100000 +596 2399 5.100000 +596 2405 5.100000 +596 2542 5.100000 +596 2585 5.100000 +596 2612 5.100000 +596 2620 5.100000 +596 2634 5.100000 +596 2741 5.100000 +596 2755 5.100000 +596 2859 5.100000 +596 2860 5.100000 +596 2968 5.100000 +596 3005 5.100000 +596 3034 5.100000 +596 3054 5.100000 +596 3071 5.100000 +596 3082 5.100000 +596 3178 5.100000 +597 55 5.100000 +597 73 5.100000 +597 136 5.100000 +597 187 5.100000 +597 254 5.100000 +597 305 5.100000 +597 347 5.100000 +597 486 5.100000 +597 573 5.100000 +597 594 5.100000 +597 600 5.100000 +597 606 5.100000 +597 661 5.100000 +597 667 5.100000 +597 716 5.100000 +597 923 5.100000 +597 1013 5.100000 +597 1029 5.100000 +597 1101 5.100000 +597 1116 5.100000 +597 1270 5.100000 +597 1393 5.100000 +597 1475 5.100000 +597 1485 5.100000 +597 1488 5.100000 +597 1564 5.100000 +597 1648 5.100000 +597 1662 5.100000 +597 1712 5.100000 +597 1729 5.100000 +597 1749 5.100000 +597 1774 5.100000 +597 1881 5.100000 +597 1901 5.100000 +597 1999 5.100000 +597 2028 5.100000 +597 2056 5.100000 +597 2062 5.100000 +597 2094 5.100000 +597 2140 5.100000 +597 2198 5.100000 +597 2201 5.100000 +597 2251 5.100000 +597 2294 5.100000 +597 2298 5.100000 +597 2414 5.100000 +597 2418 5.100000 +597 2479 5.100000 +597 2494 5.100000 +597 2630 5.100000 +597 2659 5.100000 +597 2727 5.100000 +597 2783 5.100000 +597 2791 5.100000 +597 2805 5.100000 +597 2806 5.100000 +597 2812 5.100000 +597 2842 5.100000 +597 2856 5.100000 +597 2961 5.100000 +597 3008 5.100000 +598 19 5.100000 +598 20 5.100000 +598 88 5.100000 +598 126 5.100000 +598 200 5.100000 +598 299 5.100000 +598 390 5.100000 +598 391 5.100000 +598 403 5.100000 +598 533 5.100000 +598 544 5.100000 +598 581 5.100000 +598 809 5.100000 +598 836 5.100000 +598 843 5.100000 +598 849 5.100000 +598 852 5.100000 +598 941 5.100000 +598 964 5.100000 +598 1000 5.100000 +598 1036 5.100000 +598 1038 5.100000 +598 1062 5.100000 +598 1136 5.100000 +598 1168 5.100000 +598 1190 5.100000 +598 1232 5.100000 +598 1273 5.100000 +598 1415 5.100000 +598 1446 5.100000 +598 1529 5.100000 +598 1562 5.100000 +598 1580 5.100000 +598 1679 5.100000 +598 1744 5.100000 +598 1776 5.100000 +598 1850 5.100000 +598 1856 5.100000 +598 1859 5.100000 +598 1932 5.100000 +598 2039 5.100000 +598 2053 5.100000 +598 2114 5.100000 +598 2121 5.100000 +598 2189 5.100000 +598 2230 5.100000 +598 2278 5.100000 +598 2342 5.100000 +598 2424 5.100000 +598 2439 5.100000 +598 2507 5.100000 +598 2567 5.100000 +598 2578 5.100000 +598 2621 5.100000 +598 2639 5.100000 +598 2647 5.100000 +598 2661 5.100000 +598 2695 5.100000 +598 2702 5.100000 +598 2818 5.100000 +598 2882 5.100000 +598 2888 5.100000 +598 2895 5.100000 +598 2980 5.100000 +598 2996 5.100000 +598 3005 5.100000 +598 3054 5.100000 +598 3144 5.100000 +598 3173 5.100000 +599 64 5.100000 +599 113 5.100000 +599 181 5.100000 +599 272 5.100000 +599 372 5.100000 +599 383 5.100000 +599 473 5.100000 +599 538 5.100000 +599 540 5.100000 +599 578 5.100000 +599 601 5.100000 +599 686 5.100000 +599 695 5.100000 +599 730 5.100000 +599 941 5.100000 +599 1021 5.100000 +599 1205 5.100000 +599 1343 5.100000 +599 1394 5.100000 +599 1413 5.100000 +599 1491 5.100000 +599 1633 5.100000 +599 1659 5.100000 +599 1671 5.100000 +599 1717 5.100000 +599 1801 5.100000 +599 1846 5.100000 +599 1880 5.100000 +599 1893 5.100000 +599 1928 5.100000 +599 1973 5.100000 +599 1988 5.100000 +599 1999 5.100000 +599 2009 5.100000 +599 2054 5.100000 +599 2064 5.100000 +599 2154 5.100000 +599 2158 5.100000 +599 2161 5.100000 +599 2206 5.100000 +599 2230 5.100000 +599 2239 5.100000 +599 2258 5.100000 +599 2344 5.100000 +599 2394 5.100000 +599 2444 5.100000 +599 2615 5.100000 +599 2619 5.100000 +599 2684 5.100000 +599 2695 5.100000 +599 2716 5.100000 +599 2723 5.100000 +599 2876 5.100000 +599 2903 5.100000 +599 2959 5.100000 +599 3016 5.100000 +599 3054 5.100000 +599 3163 5.100000 +600 27 5.100000 +600 49 5.100000 +600 71 5.100000 +600 119 5.100000 +600 184 5.100000 +600 185 5.100000 +600 213 5.100000 +600 482 5.100000 +600 493 5.100000 +600 529 5.100000 +600 542 5.100000 +600 543 5.100000 +600 624 5.100000 +600 859 5.100000 +600 926 5.100000 +600 981 5.100000 +600 984 5.100000 +600 1078 5.100000 +600 1199 5.100000 +600 1247 5.100000 +600 1249 5.100000 +600 1301 5.100000 +600 1315 5.100000 +600 1420 5.100000 +600 1458 5.100000 +600 1516 5.100000 +600 1518 5.100000 +600 1554 5.100000 +600 1601 5.100000 +600 1649 5.100000 +600 1735 5.100000 +600 1765 5.100000 +600 1792 5.100000 +600 1802 5.100000 +600 1841 5.100000 +600 2027 5.100000 +600 2131 5.100000 +600 2165 5.100000 +600 2186 5.100000 +600 2192 5.100000 +600 2220 5.100000 +600 2274 5.100000 +600 2288 5.100000 +600 2320 5.100000 +600 2327 5.100000 +600 2366 5.100000 +600 2399 5.100000 +600 2455 5.100000 +600 2457 5.100000 +600 2587 5.100000 +600 2618 5.100000 +600 2659 5.100000 +600 2721 5.100000 +600 2752 5.100000 +600 2776 5.100000 +600 2893 5.100000 +600 2925 5.100000 +600 2948 5.100000 +600 2967 5.100000 +600 2980 5.100000 +600 2994 5.100000 +600 3055 5.100000 +600 3072 5.100000 +600 3079 5.100000 +600 3117 5.100000 +601 72 5.100000 +601 88 5.100000 +601 98 5.100000 +601 145 5.100000 +601 191 5.100000 +601 212 5.100000 +601 240 5.100000 +601 328 5.100000 +601 452 5.100000 +601 486 5.100000 +601 596 5.100000 +601 744 5.100000 +601 786 5.100000 +601 835 5.100000 +601 1018 5.100000 +601 1077 5.100000 +601 1111 5.100000 +601 1179 5.100000 +601 1194 5.100000 +601 1252 5.100000 +601 1268 5.100000 +601 1332 5.100000 +601 1364 5.100000 +601 1384 5.100000 +601 1506 5.100000 +601 1544 5.100000 +601 1572 5.100000 +601 1594 5.100000 +601 1621 5.100000 +601 1697 5.100000 +601 1724 5.100000 +601 1739 5.100000 +601 1740 5.100000 +601 1797 5.100000 +601 1804 5.100000 +601 1894 5.100000 +601 1923 5.100000 +601 1977 5.100000 +601 2063 5.100000 +601 2128 5.100000 +601 2190 5.100000 +601 2194 5.100000 +601 2204 5.100000 +601 2264 5.100000 +601 2321 5.100000 +601 2348 5.100000 +601 2354 5.100000 +601 2408 5.100000 +601 2513 5.100000 +601 2534 5.100000 +601 2597 5.100000 +601 2659 5.100000 +601 2671 5.100000 +601 2779 5.100000 +601 2781 5.100000 +601 2786 5.100000 +601 2827 5.100000 +601 2840 5.100000 +601 2908 5.100000 +601 2929 5.100000 +601 3013 5.100000 +601 3027 5.100000 +601 3034 5.100000 +601 3161 5.100000 +602 16 5.100000 +602 23 5.100000 +602 120 5.100000 +602 194 5.100000 +602 240 5.100000 +602 243 5.100000 +602 262 5.100000 +602 296 5.100000 +602 368 5.100000 +602 379 5.100000 +602 383 5.100000 +602 393 5.100000 +602 443 5.100000 +602 473 5.100000 +602 511 5.100000 +602 569 5.100000 +602 604 5.100000 +602 618 5.100000 +602 761 5.100000 +602 923 5.100000 +602 955 5.100000 +602 1022 5.100000 +602 1024 5.100000 +602 1035 5.100000 +602 1038 5.100000 +602 1107 5.100000 +602 1146 5.100000 +602 1281 5.100000 +602 1296 5.100000 +602 1391 5.100000 +602 1426 5.100000 +602 1482 5.100000 +602 1582 5.100000 +602 1658 5.100000 +602 1690 5.100000 +602 1760 5.100000 +602 1803 5.100000 +602 1861 5.100000 +602 1893 5.100000 +602 1894 5.100000 +602 2017 5.100000 +602 2080 5.100000 +602 2413 5.100000 +602 2423 5.100000 +602 2521 5.100000 +602 2739 5.100000 +602 2956 5.100000 +602 3011 5.100000 +602 3017 5.100000 +602 3018 5.100000 +602 3027 5.100000 +602 3069 5.100000 +602 3084 5.100000 +602 3114 5.100000 +602 3154 5.100000 +602 3181 5.100000 +603 6 5.100000 +603 161 5.100000 +603 286 5.100000 +603 309 5.100000 +603 405 5.100000 +603 434 5.100000 +603 491 5.100000 +603 513 5.100000 +603 553 5.100000 +603 579 5.100000 +603 594 5.100000 +603 702 5.100000 +603 874 5.100000 +603 875 5.100000 +603 937 5.100000 +603 1012 5.100000 +603 1087 5.100000 +603 1213 5.100000 +603 1222 5.100000 +603 1240 5.100000 +603 1246 5.100000 +603 1318 5.100000 +603 1330 5.100000 +603 1362 5.100000 +603 1452 5.100000 +603 1490 5.100000 +603 1496 5.100000 +603 1527 5.100000 +603 1538 5.100000 +603 1625 5.100000 +603 1683 5.100000 +603 1688 5.100000 +603 1706 5.100000 +603 1968 5.100000 +603 1987 5.100000 +603 2146 5.100000 +603 2313 5.100000 +603 2443 5.100000 +603 2603 5.100000 +603 2627 5.100000 +603 2637 5.100000 +603 2689 5.100000 +603 2708 5.100000 +603 2751 5.100000 +603 2783 5.100000 +603 2844 5.100000 +603 2972 5.100000 +603 2983 5.100000 +603 3016 5.100000 +603 3026 5.100000 +603 3054 5.100000 +603 3173 5.100000 +603 3191 5.100000 +604 1 5.100000 +604 6 5.100000 +604 69 5.100000 +604 97 5.100000 +604 182 5.100000 +604 217 5.100000 +604 232 5.100000 +604 241 5.100000 +604 327 5.100000 +604 344 5.100000 +604 374 5.100000 +604 411 5.100000 +604 530 5.100000 +604 575 5.100000 +604 648 5.100000 +604 687 5.100000 +604 707 5.100000 +604 731 5.100000 +604 746 5.100000 +604 759 5.100000 +604 798 5.100000 +604 830 5.100000 +604 835 5.100000 +604 838 5.100000 +604 930 5.100000 +604 939 5.100000 +604 973 5.100000 +604 1000 5.100000 +604 1005 5.100000 +604 1100 5.100000 +604 1111 5.100000 +604 1148 5.100000 +604 1159 5.100000 +604 1216 5.100000 +604 1225 5.100000 +604 1242 5.100000 +604 1245 5.100000 +604 1252 5.100000 +604 1258 5.100000 +604 1316 5.100000 +604 1331 5.100000 +604 1377 5.100000 +604 1417 5.100000 +604 1425 5.100000 +604 1452 5.100000 +604 1513 5.100000 +604 1534 5.100000 +604 1585 5.100000 +604 1605 5.100000 +604 1614 5.100000 +604 1636 5.100000 +604 1694 5.100000 +604 1751 5.100000 +604 1773 5.100000 +604 1889 5.100000 +604 1950 5.100000 +604 1989 5.100000 +604 2016 5.100000 +604 2035 5.100000 +604 2036 5.100000 +604 2238 5.100000 +604 2261 5.100000 +604 2274 5.100000 +604 2275 5.100000 +604 2309 5.100000 +604 2338 5.100000 +604 2375 5.100000 +604 2469 5.100000 +604 2512 5.100000 +604 2563 5.100000 +604 2665 5.100000 +604 2821 5.100000 +604 2827 5.100000 +604 2908 5.100000 +604 2990 5.100000 +604 3058 5.100000 +604 3062 5.100000 +604 3073 5.100000 +604 3162 5.100000 +604 3171 5.100000 +604 3185 5.100000 +604 3190 5.100000 +605 56 5.100000 +605 83 5.100000 +605 203 5.100000 +605 242 5.100000 +605 308 5.100000 +605 350 5.100000 +605 362 5.100000 +605 437 5.100000 +605 558 5.100000 +605 603 5.100000 +605 616 5.100000 +605 643 5.100000 +605 734 5.100000 +605 735 5.100000 +605 832 5.100000 +605 839 5.100000 +605 850 5.100000 +605 863 5.100000 +605 893 5.100000 +605 1054 5.100000 +605 1094 5.100000 +605 1104 5.100000 +605 1167 5.100000 +605 1208 5.100000 +605 1230 5.100000 +605 1245 5.100000 +605 1297 5.100000 +605 1308 5.100000 +605 1383 5.100000 +605 1423 5.100000 +605 1432 5.100000 +605 1532 5.100000 +605 1607 5.100000 +605 1627 5.100000 +605 1709 5.100000 +605 1776 5.100000 +605 1793 5.100000 +605 1869 5.100000 +605 1896 5.100000 +605 1959 5.100000 +605 1966 5.100000 +605 2006 5.100000 +605 2114 5.100000 +605 2217 5.100000 +605 2227 5.100000 +605 2262 5.100000 +605 2346 5.100000 +605 2366 5.100000 +605 2449 5.100000 +605 2454 5.100000 +605 2465 5.100000 +605 2472 5.100000 +605 2541 5.100000 +605 2591 5.100000 +605 2603 5.100000 +605 2642 5.100000 +605 2661 5.100000 +605 2670 5.100000 +605 2730 5.100000 +605 2780 5.100000 +605 2781 5.100000 +605 2888 5.100000 +605 2997 5.100000 +605 3043 5.100000 +605 3054 5.100000 +605 3104 5.100000 +605 3190 5.100000 +606 19 5.100000 +606 100 5.100000 +606 107 5.100000 +606 114 5.100000 +606 119 5.100000 +606 134 5.100000 +606 152 5.100000 +606 161 5.100000 +606 172 5.100000 +606 275 5.100000 +606 278 5.100000 +606 368 5.100000 +606 371 5.100000 +606 582 5.100000 +606 633 5.100000 +606 747 5.100000 +606 771 5.100000 +606 884 5.100000 +606 925 5.100000 +606 991 5.100000 +606 1037 5.100000 +606 1077 5.100000 +606 1083 5.100000 +606 1088 5.100000 +606 1201 5.100000 +606 1227 5.100000 +606 1236 5.100000 +606 1294 5.100000 +606 1324 5.100000 +606 1340 5.100000 +606 1355 5.100000 +606 1470 5.100000 +606 1477 5.100000 +606 1556 5.100000 +606 1621 5.100000 +606 1698 5.100000 +606 1745 5.100000 +606 1754 5.100000 +606 1822 5.100000 +606 1893 5.100000 +606 1921 5.100000 +606 1943 5.100000 +606 1954 5.100000 +606 1963 5.100000 +606 1992 5.100000 +606 1998 5.100000 +606 2161 5.100000 +606 2163 5.100000 +606 2177 5.100000 +606 2225 5.100000 +606 2273 5.100000 +606 2279 5.100000 +606 2287 5.100000 +606 2373 5.100000 +606 2468 5.100000 +606 2485 5.100000 +606 2502 5.100000 +606 2562 5.100000 +606 2630 5.100000 +606 2637 5.100000 +606 2651 5.100000 +606 2719 5.100000 +606 2818 5.100000 +606 2833 5.100000 +606 2882 5.100000 +606 2915 5.100000 +606 2918 5.100000 +606 3010 5.100000 +606 3026 5.100000 +606 3040 5.100000 +606 3067 5.100000 +607 2 5.100000 +607 25 5.100000 +607 30 5.100000 +607 31 5.100000 +607 46 5.100000 +607 100 5.100000 +607 245 5.100000 +607 340 5.100000 +607 358 5.100000 +607 373 5.100000 +607 381 5.100000 +607 405 5.100000 +607 424 5.100000 +607 453 5.100000 +607 459 5.100000 +607 598 5.100000 +607 640 5.100000 +607 660 5.100000 +607 717 5.100000 +607 770 5.100000 +607 801 5.100000 +607 935 5.100000 +607 944 5.100000 +607 1062 5.100000 +607 1068 5.100000 +607 1123 5.100000 +607 1168 5.100000 +607 1206 5.100000 +607 1240 5.100000 +607 1352 5.100000 +607 1412 5.100000 +607 1457 5.100000 +607 1464 5.100000 +607 1673 5.100000 +607 1693 5.100000 +607 1712 5.100000 +607 1724 5.100000 +607 1778 5.100000 +607 1822 5.100000 +607 1877 5.100000 +607 1880 5.100000 +607 1941 5.100000 +607 1942 5.100000 +607 1962 5.100000 +607 2009 5.100000 +607 2038 5.100000 +607 2163 5.100000 +607 2218 5.100000 +607 2251 5.100000 +607 2270 5.100000 +607 2277 5.100000 +607 2383 5.100000 +607 2435 5.100000 +607 2478 5.100000 +607 2510 5.100000 +607 2568 5.100000 +607 2611 5.100000 +607 2625 5.100000 +607 2783 5.100000 +607 2847 5.100000 +607 2897 5.100000 +607 2995 5.100000 +607 3028 5.100000 +607 3046 5.100000 +607 3151 5.100000 +607 3165 5.100000 +607 3188 5.100000 +608 5 5.100000 +608 7 5.100000 +608 74 5.100000 +608 159 5.100000 +608 195 5.100000 +608 238 5.100000 +608 245 5.100000 +608 336 5.100000 +608 447 5.100000 +608 469 5.100000 +608 509 5.100000 +608 564 5.100000 +608 627 5.100000 +608 633 5.100000 +608 669 5.100000 +608 677 5.100000 +608 748 5.100000 +608 788 5.100000 +608 803 5.100000 +608 872 5.100000 +608 980 5.100000 +608 1063 5.100000 +608 1102 5.100000 +608 1138 5.100000 +608 1219 5.100000 +608 1367 5.100000 +608 1399 5.100000 +608 1616 5.100000 +608 1714 5.100000 +608 1751 5.100000 +608 1814 5.100000 +608 1904 5.100000 +608 1911 5.100000 +608 1912 5.100000 +608 1919 5.100000 +608 1923 5.100000 +608 1965 5.100000 +608 1979 5.100000 +608 2011 5.100000 +608 2026 5.100000 +608 2178 5.100000 +608 2193 5.100000 +608 2196 5.100000 +608 2228 5.100000 +608 2245 5.100000 +608 2263 5.100000 +608 2423 5.100000 +608 2431 5.100000 +608 2441 5.100000 +608 2487 5.100000 +608 2551 5.100000 +608 2567 5.100000 +608 2602 5.100000 +608 2671 5.100000 +608 2744 5.100000 +608 2755 5.100000 +608 2806 5.100000 +608 2856 5.100000 +608 2983 5.100000 +608 3081 5.100000 +608 3188 5.100000 +609 9 5.100000 +609 108 5.100000 +609 155 5.100000 +609 376 5.100000 +609 412 5.100000 +609 442 5.100000 +609 459 5.100000 +609 460 5.100000 +609 522 5.100000 +609 566 5.100000 +609 597 5.100000 +609 604 5.100000 +609 657 5.100000 +609 662 5.100000 +609 681 5.100000 +609 801 5.100000 +609 847 5.100000 +609 868 5.100000 +609 949 5.100000 +609 962 5.100000 +609 1058 5.100000 +609 1070 5.100000 +609 1120 5.100000 +609 1124 5.100000 +609 1215 5.100000 +609 1221 5.100000 +609 1273 5.100000 +609 1279 5.100000 +609 1407 5.100000 +609 1448 5.100000 +609 1485 5.100000 +609 1508 5.100000 +609 1516 5.100000 +609 1602 5.100000 +609 1836 5.100000 +609 1880 5.100000 +609 1922 5.100000 +609 1996 5.100000 +609 2010 5.100000 +609 2034 5.100000 +609 2045 5.100000 +609 2074 5.100000 +609 2101 5.100000 +609 2108 5.100000 +609 2114 5.100000 +609 2194 5.100000 +609 2195 5.100000 +609 2215 5.100000 +609 2243 5.100000 +609 2307 5.100000 +609 2374 5.100000 +609 2383 5.100000 +609 2410 5.100000 +609 2436 5.100000 +609 2442 5.100000 +609 2454 5.100000 +609 2501 5.100000 +609 2510 5.100000 +609 2552 5.100000 +609 2584 5.100000 +609 2588 5.100000 +609 2614 5.100000 +609 2616 5.100000 +609 2755 5.100000 +609 2762 5.100000 +609 2786 5.100000 +609 2871 5.100000 +609 2949 5.100000 +609 2985 5.100000 +609 3033 5.100000 +609 3042 5.100000 +609 3048 5.100000 +609 3065 5.100000 +609 3178 5.100000 +610 51 5.100000 +610 360 5.100000 +610 509 5.100000 +610 567 5.100000 +610 578 5.100000 +610 614 5.100000 +610 632 5.100000 +610 761 5.100000 +610 767 5.100000 +610 800 5.100000 +610 819 5.100000 +610 859 5.100000 +610 974 5.100000 +610 1177 5.100000 +610 1199 5.100000 +610 1292 5.100000 +610 1337 5.100000 +610 1397 5.100000 +610 1444 5.100000 +610 1466 5.100000 +610 1473 5.100000 +610 1525 5.100000 +610 1572 5.100000 +610 1577 5.100000 +610 1581 5.100000 +610 1587 5.100000 +610 1634 5.100000 +610 1693 5.100000 +610 1774 5.100000 +610 1798 5.100000 +610 1837 5.100000 +610 1869 5.100000 +610 1874 5.100000 +610 1913 5.100000 +610 1943 5.100000 +610 1949 5.100000 +610 1980 5.100000 +610 1996 5.100000 +610 2056 5.100000 +610 2073 5.100000 +610 2074 5.100000 +610 2135 5.100000 +610 2162 5.100000 +610 2216 5.100000 +610 2310 5.100000 +610 2484 5.100000 +610 2492 5.100000 +610 2687 5.100000 +610 2707 5.100000 +610 2770 5.100000 +610 2771 5.100000 +610 2814 5.100000 +610 2959 5.100000 +610 2997 5.100000 +610 3021 5.100000 +610 3104 5.100000 +610 3115 5.100000 +611 48 5.100000 +611 85 5.100000 +611 105 5.100000 +611 114 5.100000 +611 128 5.100000 +611 184 5.100000 +611 212 5.100000 +611 236 5.100000 +611 240 5.100000 +611 335 5.100000 +611 358 5.100000 +611 374 5.100000 +611 392 5.100000 +611 427 5.100000 +611 435 5.100000 +611 485 5.100000 +611 521 5.100000 +611 543 5.100000 +611 608 5.100000 +611 612 5.100000 +611 643 5.100000 +611 684 5.100000 +611 742 5.100000 +611 761 5.100000 +611 762 5.100000 +611 779 5.100000 +611 983 5.100000 +611 1020 5.100000 +611 1030 5.100000 +611 1069 5.100000 +611 1122 5.100000 +611 1181 5.100000 +611 1255 5.100000 +611 1270 5.100000 +611 1351 5.100000 +611 1399 5.100000 +611 1483 5.100000 +611 1523 5.100000 +611 1525 5.100000 +611 1536 5.100000 +611 1582 5.100000 +611 1583 5.100000 +611 1607 5.100000 +611 1634 5.100000 +611 1694 5.100000 +611 1713 5.100000 +611 1776 5.100000 +611 1788 5.100000 +611 1795 5.100000 +611 1811 5.100000 +611 1863 5.100000 +611 1911 5.100000 +611 1937 5.100000 +611 1946 5.100000 +611 2028 5.100000 +611 2072 5.100000 +611 2189 5.100000 +611 2303 5.100000 +611 2349 5.100000 +611 2358 5.100000 +611 2471 5.100000 +611 2585 5.100000 +611 2629 5.100000 +611 2794 5.100000 +611 2805 5.100000 +611 2830 5.100000 +611 2881 5.100000 +611 2961 5.100000 +611 2968 5.100000 +611 3013 5.100000 +611 3073 5.100000 +611 3097 5.100000 +611 3131 5.100000 +612 9 5.100000 +612 54 5.100000 +612 106 5.100000 +612 118 5.100000 +612 121 5.100000 +612 165 5.100000 +612 173 5.100000 +612 176 5.100000 +612 234 5.100000 +612 249 5.100000 +612 281 5.100000 +612 339 5.100000 +612 342 5.100000 +612 352 5.100000 +612 404 5.100000 +612 439 5.100000 +612 475 5.100000 +612 479 5.100000 +612 537 5.100000 +612 561 5.100000 +612 675 5.100000 +612 697 5.100000 +612 740 5.100000 +612 759 5.100000 +612 765 5.100000 +612 838 5.100000 +612 843 5.100000 +612 864 5.100000 +612 894 5.100000 +612 945 5.100000 +612 1022 5.100000 +612 1027 5.100000 +612 1043 5.100000 +612 1081 5.100000 +612 1124 5.100000 +612 1135 5.100000 +612 1200 5.100000 +612 1204 5.100000 +612 1319 5.100000 +612 1333 5.100000 +612 1365 5.100000 +612 1443 5.100000 +612 1468 5.100000 +612 1489 5.100000 +612 1629 5.100000 +612 1644 5.100000 +612 1708 5.100000 +612 1776 5.100000 +612 1779 5.100000 +612 1789 5.100000 +612 1844 5.100000 +612 1900 5.100000 +612 1964 5.100000 +612 1994 5.100000 +612 2053 5.100000 +612 2065 5.100000 +612 2108 5.100000 +612 2109 5.100000 +612 2119 5.100000 +612 2147 5.100000 +612 2214 5.100000 +612 2354 5.100000 +612 2377 5.100000 +612 2419 5.100000 +612 2560 5.100000 +612 2568 5.100000 +612 2581 5.100000 +612 2622 5.100000 +612 2641 5.100000 +612 2651 5.100000 +612 2667 5.100000 +612 2716 5.100000 +612 2737 5.100000 +612 2763 5.100000 +612 2782 5.100000 +612 2834 5.100000 +612 2927 5.100000 +612 2970 5.100000 +612 2973 5.100000 +612 2981 5.100000 +612 3010 5.100000 +612 3092 5.100000 +612 3133 5.100000 +613 1 5.100000 +613 17 5.100000 +613 22 5.100000 +613 86 5.100000 +613 169 5.100000 +613 268 5.100000 +613 283 5.100000 +613 413 5.100000 +613 506 5.100000 +613 617 5.100000 +613 688 5.100000 +613 717 5.100000 +613 762 5.100000 +613 869 5.100000 +613 883 5.100000 +613 896 5.100000 +613 927 5.100000 +613 988 5.100000 +613 1010 5.100000 +613 1102 5.100000 +613 1149 5.100000 +613 1196 5.100000 +613 1219 5.100000 +613 1287 5.100000 +613 1393 5.100000 +613 1417 5.100000 +613 1518 5.100000 +613 1640 5.100000 +613 1663 5.100000 +613 1702 5.100000 +613 1726 5.100000 +613 1734 5.100000 +613 1768 5.100000 +613 1811 5.100000 +613 1919 5.100000 +613 2040 5.100000 +613 2061 5.100000 +613 2141 5.100000 +613 2223 5.100000 +613 2273 5.100000 +613 2312 5.100000 +613 2330 5.100000 +613 2379 5.100000 +613 2416 5.100000 +613 2482 5.100000 +613 2485 5.100000 +613 2514 5.100000 +613 2532 5.100000 +613 2534 5.100000 +613 2591 5.100000 +613 2604 5.100000 +613 2678 5.100000 +613 2818 5.100000 +613 2829 5.100000 +613 2935 5.100000 +613 2936 5.100000 +613 2997 5.100000 +613 3100 5.100000 +614 49 5.100000 +614 108 5.100000 +614 273 5.100000 +614 298 5.100000 +614 412 5.100000 +614 440 5.100000 +614 448 5.100000 +614 534 5.100000 +614 554 5.100000 +614 577 5.100000 +614 612 5.100000 +614 627 5.100000 +614 642 5.100000 +614 670 5.100000 +614 685 5.100000 +614 713 5.100000 +614 761 5.100000 +614 774 5.100000 +614 879 5.100000 +614 922 5.100000 +614 927 5.100000 +614 961 5.100000 +614 1137 5.100000 +614 1166 5.100000 +614 1235 5.100000 +614 1246 5.100000 +614 1251 5.100000 +614 1285 5.100000 +614 1380 5.100000 +614 1394 5.100000 +614 1452 5.100000 +614 1475 5.100000 +614 1497 5.100000 +614 1523 5.100000 +614 1574 5.100000 +614 1737 5.100000 +614 1782 5.100000 +614 1786 5.100000 +614 1802 5.100000 +614 1813 5.100000 +614 1865 5.100000 +614 1884 5.100000 +614 1897 5.100000 +614 1904 5.100000 +614 1970 5.100000 +614 2086 5.100000 +614 2128 5.100000 +614 2297 5.100000 +614 2358 5.100000 +614 2417 5.100000 +614 2431 5.100000 +614 2458 5.100000 +614 2483 5.100000 +614 2491 5.100000 +614 2579 5.100000 +614 2593 5.100000 +614 2615 5.100000 +614 2648 5.100000 +614 2735 5.100000 +614 2830 5.100000 +614 2859 5.100000 +614 2865 5.100000 +614 2896 5.100000 +614 2939 5.100000 +614 2959 5.100000 +614 3019 5.100000 +614 3102 5.100000 +614 3122 5.100000 +614 3137 5.100000 +614 3152 5.100000 +615 15 5.100000 +615 56 5.100000 +615 105 5.100000 +615 129 5.100000 +615 193 5.100000 +615 229 5.100000 +615 244 5.100000 +615 277 5.100000 +615 341 5.100000 +615 389 5.100000 +615 477 5.100000 +615 505 5.100000 +615 592 5.100000 +615 599 5.100000 +615 612 5.100000 +615 781 5.100000 +615 785 5.100000 +615 807 5.100000 +615 812 5.100000 +615 826 5.100000 +615 864 5.100000 +615 873 5.100000 +615 878 5.100000 +615 889 5.100000 +615 933 5.100000 +615 962 5.100000 +615 965 5.100000 +615 987 5.100000 +615 1001 5.100000 +615 1089 5.100000 +615 1154 5.100000 +615 1207 5.100000 +615 1228 5.100000 +615 1395 5.100000 +615 1495 5.100000 +615 1649 5.100000 +615 1734 5.100000 +615 1747 5.100000 +615 1760 5.100000 +615 1855 5.100000 +615 1865 5.100000 +615 1868 5.100000 +615 1883 5.100000 +615 1885 5.100000 +615 1978 5.100000 +615 2094 5.100000 +615 2181 5.100000 +615 2229 5.100000 +615 2271 5.100000 +615 2367 5.100000 +615 2370 5.100000 +615 2377 5.100000 +615 2477 5.100000 +615 2583 5.100000 +615 2605 5.100000 +615 2640 5.100000 +615 2684 5.100000 +615 2689 5.100000 +615 2696 5.100000 +615 2716 5.100000 +615 2738 5.100000 +615 2763 5.100000 +615 2777 5.100000 +615 2883 5.100000 +615 2902 5.100000 +615 2970 5.100000 +615 2973 5.100000 +615 2975 5.100000 +615 2998 5.100000 +615 3026 5.100000 +615 3111 5.100000 +615 3180 5.100000 +616 2 5.100000 +616 40 5.100000 +616 44 5.100000 +616 83 5.100000 +616 137 5.100000 +616 226 5.100000 +616 258 5.100000 +616 311 5.100000 +616 335 5.100000 +616 337 5.100000 +616 344 5.100000 +616 528 5.100000 +616 553 5.100000 +616 555 5.100000 +616 570 5.100000 +616 577 5.100000 +616 649 5.100000 +616 651 5.100000 +616 657 5.100000 +616 663 5.100000 +616 699 5.100000 +616 700 5.100000 +616 714 5.100000 +616 814 5.100000 +616 821 5.100000 +616 858 5.100000 +616 888 5.100000 +616 910 5.100000 +616 964 5.100000 +616 1013 5.100000 +616 1038 5.100000 +616 1080 5.100000 +616 1200 5.100000 +616 1201 5.100000 +616 1302 5.100000 +616 1407 5.100000 +616 1441 5.100000 +616 1492 5.100000 +616 1632 5.100000 +616 1648 5.100000 +616 1817 5.100000 +616 1850 5.100000 +616 1904 5.100000 +616 1944 5.100000 +616 1946 5.100000 +616 1969 5.100000 +616 2004 5.100000 +616 2059 5.100000 +616 2141 5.100000 +616 2163 5.100000 +616 2185 5.100000 +616 2239 5.100000 +616 2297 5.100000 +616 2314 5.100000 +616 2379 5.100000 +616 2436 5.100000 +616 2455 5.100000 +616 2479 5.100000 +616 2505 5.100000 +616 2523 5.100000 +616 2635 5.100000 +616 2660 5.100000 +616 2688 5.100000 +616 2692 5.100000 +616 2693 5.100000 +616 2702 5.100000 +616 2763 5.100000 +616 2868 5.100000 +616 2914 5.100000 +616 2969 5.100000 +616 3018 5.100000 +616 3060 5.100000 +616 3074 5.100000 +616 3130 5.100000 +616 3135 5.100000 +616 3158 5.100000 +616 3177 5.100000 +617 37 5.100000 +617 56 5.100000 +617 109 5.100000 +617 166 5.100000 +617 259 5.100000 +617 262 5.100000 +617 288 5.100000 +617 292 5.100000 +617 364 5.100000 +617 449 5.100000 +617 479 5.100000 +617 511 5.100000 +617 704 5.100000 +617 921 5.100000 +617 951 5.100000 +617 952 5.100000 +617 968 5.100000 +617 1057 5.100000 +617 1061 5.100000 +617 1160 5.100000 +617 1193 5.100000 +617 1238 5.100000 +617 1256 5.100000 +617 1266 5.100000 +617 1283 5.100000 +617 1332 5.100000 +617 1424 5.100000 +617 1538 5.100000 +617 1607 5.100000 +617 1665 5.100000 +617 1736 5.100000 +617 1785 5.100000 +617 1789 5.100000 +617 1797 5.100000 +617 1844 5.100000 +617 1849 5.100000 +617 1887 5.100000 +617 1913 5.100000 +617 2168 5.100000 +617 2236 5.100000 +617 2253 5.100000 +617 2312 5.100000 +617 2333 5.100000 +617 2541 5.100000 +617 2600 5.100000 +617 2614 5.100000 +617 2627 5.100000 +617 2690 5.100000 +617 2767 5.100000 +617 2785 5.100000 +617 2835 5.100000 +617 2920 5.100000 +617 2945 5.100000 +617 2974 5.100000 +617 3145 5.100000 +617 3152 5.100000 +618 6 5.100000 +618 115 5.100000 +618 148 5.100000 +618 211 5.100000 +618 256 5.100000 +618 284 5.100000 +618 292 5.100000 +618 313 5.100000 +618 334 5.100000 +618 357 5.100000 +618 444 5.100000 +618 458 5.100000 +618 515 5.100000 +618 564 5.100000 +618 639 5.100000 +618 670 5.100000 +618 716 5.100000 +618 722 5.100000 +618 843 5.100000 +618 881 5.100000 +618 1095 5.100000 +618 1134 5.100000 +618 1206 5.100000 +618 1222 5.100000 +618 1246 5.100000 +618 1252 5.100000 +618 1274 5.100000 +618 1280 5.100000 +618 1289 5.100000 +618 1550 5.100000 +618 1569 5.100000 +618 1620 5.100000 +618 1628 5.100000 +618 1684 5.100000 +618 1762 5.100000 +618 1916 5.100000 +618 1944 5.100000 +618 1947 5.100000 +618 1967 5.100000 +618 2081 5.100000 +618 2101 5.100000 +618 2111 5.100000 +618 2116 5.100000 +618 2173 5.100000 +618 2211 5.100000 +618 2236 5.100000 +618 2267 5.100000 +618 2268 5.100000 +618 2350 5.100000 +618 2401 5.100000 +618 2418 5.100000 +618 2437 5.100000 +618 2442 5.100000 +618 2443 5.100000 +618 2456 5.100000 +618 2481 5.100000 +618 2733 5.100000 +618 2802 5.100000 +618 2841 5.100000 +618 2950 5.100000 +618 2982 5.100000 +618 3089 5.100000 +618 3167 5.100000 +619 108 5.100000 +619 189 5.100000 +619 198 5.100000 +619 381 5.100000 +619 395 5.100000 +619 535 5.100000 +619 622 5.100000 +619 660 5.100000 +619 670 5.100000 +619 702 5.100000 +619 730 5.100000 +619 752 5.100000 +619 801 5.100000 +619 835 5.100000 +619 863 5.100000 +619 864 5.100000 +619 950 5.100000 +619 989 5.100000 +619 1005 5.100000 +619 1040 5.100000 +619 1061 5.100000 +619 1122 5.100000 +619 1146 5.100000 +619 1240 5.100000 +619 1247 5.100000 +619 1263 5.100000 +619 1279 5.100000 +619 1291 5.100000 +619 1335 5.100000 +619 1347 5.100000 +619 1353 5.100000 +619 1355 5.100000 +619 1360 5.100000 +619 1459 5.100000 +619 1497 5.100000 +619 1539 5.100000 +619 1546 5.100000 +619 1568 5.100000 +619 1612 5.100000 +619 1633 5.100000 +619 1636 5.100000 +619 1660 5.100000 +619 1709 5.100000 +619 1879 5.100000 +619 2023 5.100000 +619 2075 5.100000 +619 2117 5.100000 +619 2158 5.100000 +619 2169 5.100000 +619 2196 5.100000 +619 2325 5.100000 +619 2382 5.100000 +619 2522 5.100000 +619 2556 5.100000 +619 2622 5.100000 +619 2672 5.100000 +619 2747 5.100000 +619 2762 5.100000 +619 2803 5.100000 +619 2905 5.100000 +619 2939 5.100000 +619 3047 5.100000 +619 3095 5.100000 +620 14 5.100000 +620 286 5.100000 +620 297 5.100000 +620 379 5.100000 +620 603 5.100000 +620 681 5.100000 +620 702 5.100000 +620 807 5.100000 +620 966 5.100000 +620 973 5.100000 +620 1017 5.100000 +620 1057 5.100000 +620 1120 5.100000 +620 1204 5.100000 +620 1229 5.100000 +620 1230 5.100000 +620 1270 5.100000 +620 1316 5.100000 +620 1385 5.100000 +620 1410 5.100000 +620 1438 5.100000 +620 1515 5.100000 +620 1709 5.100000 +620 1728 5.100000 +620 1744 5.100000 +620 1793 5.100000 +620 1798 5.100000 +620 1802 5.100000 +620 1808 5.100000 +620 1833 5.100000 +620 1857 5.100000 +620 1880 5.100000 +620 1963 5.100000 +620 1967 5.100000 +620 2006 5.100000 +620 2070 5.100000 +620 2145 5.100000 +620 2382 5.100000 +620 2434 5.100000 +620 2528 5.100000 +620 2606 5.100000 +620 2609 5.100000 +620 2636 5.100000 +620 2661 5.100000 +620 2678 5.100000 +620 2712 5.100000 +620 2753 5.100000 +620 2836 5.100000 +620 2866 5.100000 +620 2919 5.100000 +620 2944 5.100000 +620 2962 5.100000 +620 2964 5.100000 +620 3088 5.100000 +620 3110 5.100000 +620 3116 5.100000 +620 3149 5.100000 +620 3191 5.100000 +621 19 5.100000 +621 124 5.100000 +621 150 5.100000 +621 263 5.100000 +621 278 5.100000 +621 339 5.100000 +621 345 5.100000 +621 360 5.100000 +621 361 5.100000 +621 527 5.100000 +621 528 5.100000 +621 552 5.100000 +621 578 5.100000 +621 628 5.100000 +621 650 5.100000 +621 741 5.100000 +621 778 5.100000 +621 788 5.100000 +621 817 5.100000 +621 857 5.100000 +621 875 5.100000 +621 888 5.100000 +621 991 5.100000 +621 1039 5.100000 +621 1074 5.100000 +621 1138 5.100000 +621 1168 5.100000 +621 1175 5.100000 +621 1334 5.100000 +621 1356 5.100000 +621 1359 5.100000 +621 1368 5.100000 +621 1370 5.100000 +621 1373 5.100000 +621 1418 5.100000 +621 1537 5.100000 +621 1593 5.100000 +621 1782 5.100000 +621 1800 5.100000 +621 1828 5.100000 +621 1829 5.100000 +621 1920 5.100000 +621 1979 5.100000 +621 2026 5.100000 +621 2108 5.100000 +621 2201 5.100000 +621 2205 5.100000 +621 2230 5.100000 +621 2232 5.100000 +621 2258 5.100000 +621 2272 5.100000 +621 2288 5.100000 +621 2343 5.100000 +621 2470 5.100000 +621 2473 5.100000 +621 2532 5.100000 +621 2559 5.100000 +621 2593 5.100000 +621 2657 5.100000 +621 2675 5.100000 +621 2683 5.100000 +621 2759 5.100000 +621 2777 5.100000 +621 2863 5.100000 +621 2880 5.100000 +621 2906 5.100000 +621 2939 5.100000 +621 2943 5.100000 +621 2944 5.100000 +621 2972 5.100000 +621 2978 5.100000 +621 3000 5.100000 +621 3050 5.100000 +621 3053 5.100000 +621 3157 5.100000 +621 3182 5.100000 +622 9 5.100000 +622 11 5.100000 +622 23 5.100000 +622 24 5.100000 +622 29 5.100000 +622 104 5.100000 +622 169 5.100000 +622 255 5.100000 +622 280 5.100000 +622 308 5.100000 +622 406 5.100000 +622 448 5.100000 +622 474 5.100000 +622 543 5.100000 +622 625 5.100000 +622 665 5.100000 +622 790 5.100000 +622 792 5.100000 +622 810 5.100000 +622 817 5.100000 +622 824 5.100000 +622 834 5.100000 +622 860 5.100000 +622 933 5.100000 +622 956 5.100000 +622 974 5.100000 +622 1006 5.100000 +622 1012 5.100000 +622 1042 5.100000 +622 1091 5.100000 +622 1094 5.100000 +622 1105 5.100000 +622 1110 5.100000 +622 1214 5.100000 +622 1283 5.100000 +622 1374 5.100000 +622 1399 5.100000 +622 1471 5.100000 +622 1524 5.100000 +622 1564 5.100000 +622 1584 5.100000 +622 1684 5.100000 +622 1835 5.100000 +622 1906 5.100000 +622 1974 5.100000 +622 2046 5.100000 +622 2059 5.100000 +622 2067 5.100000 +622 2131 5.100000 +622 2267 5.100000 +622 2331 5.100000 +622 2379 5.100000 +622 2397 5.100000 +622 2409 5.100000 +622 2444 5.100000 +622 2504 5.100000 +622 2511 5.100000 +622 2527 5.100000 +622 2608 5.100000 +622 2618 5.100000 +622 2701 5.100000 +622 2773 5.100000 +622 2791 5.100000 +622 2864 5.100000 +622 2912 5.100000 +622 3156 5.100000 +623 28 5.100000 +623 45 5.100000 +623 97 5.100000 +623 131 5.100000 +623 214 5.100000 +623 240 5.100000 +623 320 5.100000 +623 335 5.100000 +623 372 5.100000 +623 380 5.100000 +623 405 5.100000 +623 535 5.100000 +623 588 5.100000 +623 653 5.100000 +623 674 5.100000 +623 684 5.100000 +623 705 5.100000 +623 714 5.100000 +623 716 5.100000 +623 726 5.100000 +623 740 5.100000 +623 817 5.100000 +623 848 5.100000 +623 854 5.100000 +623 895 5.100000 +623 908 5.100000 +623 913 5.100000 +623 998 5.100000 +623 1055 5.100000 +623 1255 5.100000 +623 1294 5.100000 +623 1365 5.100000 +623 1473 5.100000 +623 1496 5.100000 +623 1597 5.100000 +623 1626 5.100000 +623 1696 5.100000 +623 1721 5.100000 +623 1772 5.100000 +623 1848 5.100000 +623 1994 5.100000 +623 2023 5.100000 +623 2065 5.100000 +623 2098 5.100000 +623 2141 5.100000 +623 2146 5.100000 +623 2248 5.100000 +623 2539 5.100000 +623 2541 5.100000 +623 2746 5.100000 +623 2842 5.100000 +623 2883 5.100000 +623 2972 5.100000 +623 3046 5.100000 +623 3087 5.100000 +623 3138 5.100000 +623 3151 5.100000 +624 12 5.100000 +624 103 5.100000 +624 162 5.100000 +624 206 5.100000 +624 216 5.100000 +624 256 5.100000 +624 313 5.100000 +624 324 5.100000 +624 325 5.100000 +624 455 5.100000 +624 490 5.100000 +624 547 5.100000 +624 554 5.100000 +624 587 5.100000 +624 619 5.100000 +624 711 5.100000 +624 772 5.100000 +624 845 5.100000 +624 880 5.100000 +624 935 5.100000 +624 948 5.100000 +624 1077 5.100000 +624 1208 5.100000 +624 1217 5.100000 +624 1279 5.100000 +624 1284 5.100000 +624 1342 5.100000 +624 1439 5.100000 +624 1547 5.100000 +624 1560 5.100000 +624 1575 5.100000 +624 1743 5.100000 +624 1746 5.100000 +624 1771 5.100000 +624 1800 5.100000 +624 1845 5.100000 +624 1874 5.100000 +624 2029 5.100000 +624 2095 5.100000 +624 2143 5.100000 +624 2167 5.100000 +624 2168 5.100000 +624 2196 5.100000 +624 2298 5.100000 +624 2310 5.100000 +624 2367 5.100000 +624 2403 5.100000 +624 2412 5.100000 +624 2469 5.100000 +624 2485 5.100000 +624 2748 5.100000 +624 2789 5.100000 +624 2796 5.100000 +624 2880 5.100000 +624 2884 5.100000 +624 2887 5.100000 +624 2934 5.100000 +624 2935 5.100000 +624 3084 5.100000 +624 3085 5.100000 +624 3126 5.100000 +625 7 5.100000 +625 53 5.100000 +625 340 5.100000 +625 434 5.100000 +625 462 5.100000 +625 513 5.100000 +625 530 5.100000 +625 591 5.100000 +625 610 5.100000 +625 619 5.100000 +625 695 5.100000 +625 739 5.100000 +625 765 5.100000 +625 879 5.100000 +625 937 5.100000 +625 967 5.100000 +625 1135 5.100000 +625 1159 5.100000 +625 1272 5.100000 +625 1275 5.100000 +625 1294 5.100000 +625 1405 5.100000 +625 1412 5.100000 +625 1419 5.100000 +625 1433 5.100000 +625 1435 5.100000 +625 1440 5.100000 +625 1495 5.100000 +625 1598 5.100000 +625 1624 5.100000 +625 1641 5.100000 +625 1659 5.100000 +625 1758 5.100000 +625 1817 5.100000 +625 1860 5.100000 +625 1922 5.100000 +625 1933 5.100000 +625 1959 5.100000 +625 1987 5.100000 +625 2015 5.100000 +625 2113 5.100000 +625 2117 5.100000 +625 2157 5.100000 +625 2159 5.100000 +625 2174 5.100000 +625 2308 5.100000 +625 2324 5.100000 +625 2684 5.100000 +625 2723 5.100000 +625 2744 5.100000 +625 2814 5.100000 +625 2861 5.100000 +625 2867 5.100000 +625 2888 5.100000 +625 2902 5.100000 +625 3068 5.100000 +625 3137 5.100000 +625 3140 5.100000 +626 33 5.100000 +626 179 5.100000 +626 202 5.100000 +626 215 5.100000 +626 221 5.100000 +626 247 5.100000 +626 349 5.100000 +626 361 5.100000 +626 362 5.100000 +626 369 5.100000 +626 391 5.100000 +626 419 5.100000 +626 477 5.100000 +626 504 5.100000 +626 584 5.100000 +626 601 5.100000 +626 617 5.100000 +626 706 5.100000 +626 730 5.100000 +626 867 5.100000 +626 871 5.100000 +626 886 5.100000 +626 975 5.100000 +626 1033 5.100000 +626 1055 5.100000 +626 1098 5.100000 +626 1116 5.100000 +626 1172 5.100000 +626 1294 5.100000 +626 1350 5.100000 +626 1408 5.100000 +626 1422 5.100000 +626 1524 5.100000 +626 1532 5.100000 +626 1613 5.100000 +626 1715 5.100000 +626 1725 5.100000 +626 1768 5.100000 +626 1816 5.100000 +626 1849 5.100000 +626 1925 5.100000 +626 1935 5.100000 +626 2031 5.100000 +626 2061 5.100000 +626 2100 5.100000 +626 2112 5.100000 +626 2162 5.100000 +626 2267 5.100000 +626 2360 5.100000 +626 2423 5.100000 +626 2459 5.100000 +626 2470 5.100000 +626 2504 5.100000 +626 2508 5.100000 +626 2584 5.100000 +626 2713 5.100000 +626 2806 5.100000 +626 2888 5.100000 +626 2976 5.100000 +626 2990 5.100000 +626 3005 5.100000 +626 3053 5.100000 +626 3092 5.100000 +626 3105 5.100000 +626 3113 5.100000 +626 3175 5.100000 +627 196 5.100000 +627 213 5.100000 +627 293 5.100000 +627 395 5.100000 +627 404 5.100000 +627 430 5.100000 +627 456 5.100000 +627 464 5.100000 +627 583 5.100000 +627 658 5.100000 +627 698 5.100000 +627 788 5.100000 +627 791 5.100000 +627 875 5.100000 +627 973 5.100000 +627 992 5.100000 +627 1006 5.100000 +627 1118 5.100000 +627 1139 5.100000 +627 1165 5.100000 +627 1166 5.100000 +627 1218 5.100000 +627 1222 5.100000 +627 1359 5.100000 +627 1397 5.100000 +627 1510 5.100000 +627 1562 5.100000 +627 1574 5.100000 +627 1701 5.100000 +627 1726 5.100000 +627 1761 5.100000 +627 1763 5.100000 +627 1815 5.100000 +627 1849 5.100000 +627 1870 5.100000 +627 1957 5.100000 +627 1987 5.100000 +627 2080 5.100000 +627 2121 5.100000 +627 2220 5.100000 +627 2232 5.100000 +627 2360 5.100000 +627 2398 5.100000 +627 2402 5.100000 +627 2444 5.100000 +627 2572 5.100000 +627 2622 5.100000 +627 2812 5.100000 +627 2935 5.100000 +627 3116 5.100000 +628 93 5.100000 +628 108 5.100000 +628 155 5.100000 +628 161 5.100000 +628 170 5.100000 +628 179 5.100000 +628 225 5.100000 +628 247 5.100000 +628 341 5.100000 +628 373 5.100000 +628 470 5.100000 +628 481 5.100000 +628 500 5.100000 +628 506 5.100000 +628 525 5.100000 +628 533 5.100000 +628 571 5.100000 +628 601 5.100000 +628 623 5.100000 +628 648 5.100000 +628 749 5.100000 +628 773 5.100000 +628 793 5.100000 +628 807 5.100000 +628 834 5.100000 +628 867 5.100000 +628 868 5.100000 +628 897 5.100000 +628 976 5.100000 +628 999 5.100000 +628 1046 5.100000 +628 1058 5.100000 +628 1073 5.100000 +628 1124 5.100000 +628 1143 5.100000 +628 1174 5.100000 +628 1265 5.100000 +628 1403 5.100000 +628 1428 5.100000 +628 1449 5.100000 +628 1513 5.100000 +628 1556 5.100000 +628 1710 5.100000 +628 1802 5.100000 +628 1862 5.100000 +628 1888 5.100000 +628 1920 5.100000 +628 1933 5.100000 +628 1939 5.100000 +628 2103 5.100000 +628 2107 5.100000 +628 2108 5.100000 +628 2125 5.100000 +628 2163 5.100000 +628 2167 5.100000 +628 2316 5.100000 +628 2344 5.100000 +628 2357 5.100000 +628 2391 5.100000 +628 2398 5.100000 +628 2463 5.100000 +628 2469 5.100000 +628 2540 5.100000 +628 2649 5.100000 +628 2694 5.100000 +628 2723 5.100000 +628 2725 5.100000 +628 2750 5.100000 +628 2898 5.100000 +628 2973 5.100000 +629 46 5.100000 +629 49 5.100000 +629 178 5.100000 +629 265 5.100000 +629 404 5.100000 +629 417 5.100000 +629 471 5.100000 +629 489 5.100000 +629 505 5.100000 +629 529 5.100000 +629 697 5.100000 +629 824 5.100000 +629 911 5.100000 +629 916 5.100000 +629 938 5.100000 +629 970 5.100000 +629 975 5.100000 +629 991 5.100000 +629 1196 5.100000 +629 1197 5.100000 +629 1203 5.100000 +629 1252 5.100000 +629 1276 5.100000 +629 1322 5.100000 +629 1346 5.100000 +629 1365 5.100000 +629 1367 5.100000 +629 1381 5.100000 +629 1442 5.100000 +629 1469 5.100000 +629 1498 5.100000 +629 1527 5.100000 +629 1547 5.100000 +629 1589 5.100000 +629 1600 5.100000 +629 1655 5.100000 +629 1707 5.100000 +629 1708 5.100000 +629 1821 5.100000 +629 1842 5.100000 +629 1843 5.100000 +629 1956 5.100000 +629 2034 5.100000 +629 2079 5.100000 +629 2200 5.100000 +629 2311 5.100000 +629 2386 5.100000 +629 2553 5.100000 +629 2562 5.100000 +629 2596 5.100000 +629 2632 5.100000 +629 2691 5.100000 +629 2793 5.100000 +629 2932 5.100000 +629 3000 5.100000 +629 3033 5.100000 +629 3044 5.100000 +630 14 5.100000 +630 61 5.100000 +630 215 5.100000 +630 220 5.100000 +630 239 5.100000 +630 281 5.100000 +630 290 5.100000 +630 339 5.100000 +630 375 5.100000 +630 377 5.100000 +630 433 5.100000 +630 439 5.100000 +630 447 5.100000 +630 499 5.100000 +630 508 5.100000 +630 513 5.100000 +630 566 5.100000 +630 662 5.100000 +630 687 5.100000 +630 734 5.100000 +630 747 5.100000 +630 758 5.100000 +630 783 5.100000 +630 796 5.100000 +630 825 5.100000 +630 846 5.100000 +630 907 5.100000 +630 909 5.100000 +630 955 5.100000 +630 960 5.100000 +630 1024 5.100000 +630 1047 5.100000 +630 1066 5.100000 +630 1136 5.100000 +630 1171 5.100000 +630 1370 5.100000 +630 1392 5.100000 +630 1443 5.100000 +630 1454 5.100000 +630 1460 5.100000 +630 1512 5.100000 +630 1562 5.100000 +630 1569 5.100000 +630 1600 5.100000 +630 1625 5.100000 +630 1654 5.100000 +630 1752 5.100000 +630 1871 5.100000 +630 1876 5.100000 +630 1887 5.100000 +630 1901 5.100000 +630 1961 5.100000 +630 1964 5.100000 +630 2062 5.100000 +630 2160 5.100000 +630 2287 5.100000 +630 2445 5.100000 +630 2452 5.100000 +630 2477 5.100000 +630 2636 5.100000 +630 2782 5.100000 +630 2786 5.100000 +630 2829 5.100000 +630 2871 5.100000 +630 2955 5.100000 +630 2961 5.100000 +630 2974 5.100000 +630 3072 5.100000 +630 3074 5.100000 +630 3111 5.100000 +631 25 5.100000 +631 79 5.100000 +631 127 5.100000 +631 180 5.100000 +631 216 5.100000 +631 295 5.100000 +631 362 5.100000 +631 363 5.100000 +631 436 5.100000 +631 497 5.100000 +631 507 5.100000 +631 513 5.100000 +631 533 5.100000 +631 553 5.100000 +631 554 5.100000 +631 619 5.100000 +631 640 5.100000 +631 713 5.100000 +631 718 5.100000 +631 749 5.100000 +631 763 5.100000 +631 826 5.100000 +631 836 5.100000 +631 872 5.100000 +631 976 5.100000 +631 1002 5.100000 +631 1097 5.100000 +631 1099 5.100000 +631 1151 5.100000 +631 1177 5.100000 +631 1250 5.100000 +631 1279 5.100000 +631 1327 5.100000 +631 1356 5.100000 +631 1361 5.100000 +631 1362 5.100000 +631 1394 5.100000 +631 1426 5.100000 +631 1555 5.100000 +631 1559 5.100000 +631 1734 5.100000 +631 1844 5.100000 +631 1885 5.100000 +631 1887 5.100000 +631 1962 5.100000 +631 1974 5.100000 +631 1979 5.100000 +631 1994 5.100000 +631 2008 5.100000 +631 2050 5.100000 +631 2091 5.100000 +631 2159 5.100000 +631 2176 5.100000 +631 2216 5.100000 +631 2244 5.100000 +631 2266 5.100000 +631 2269 5.100000 +631 2327 5.100000 +631 2344 5.100000 +631 2363 5.100000 +631 2387 5.100000 +631 2414 5.100000 +631 2743 5.100000 +631 2759 5.100000 +631 2773 5.100000 +631 2840 5.100000 +631 2849 5.100000 +631 2865 5.100000 +631 2908 5.100000 +631 3023 5.100000 +631 3054 5.100000 +631 3100 5.100000 +632 30 5.100000 +632 94 5.100000 +632 145 5.100000 +632 157 5.100000 +632 284 5.100000 +632 328 5.100000 +632 335 5.100000 +632 345 5.100000 +632 351 5.100000 +632 367 5.100000 +632 382 5.100000 +632 400 5.100000 +632 491 5.100000 +632 522 5.100000 +632 589 5.100000 +632 645 5.100000 +632 671 5.100000 +632 673 5.100000 +632 676 5.100000 +632 724 5.100000 +632 731 5.100000 +632 825 5.100000 +632 849 5.100000 +632 1016 5.100000 +632 1049 5.100000 +632 1051 5.100000 +632 1061 5.100000 +632 1099 5.100000 +632 1314 5.100000 +632 1363 5.100000 +632 1436 5.100000 +632 1465 5.100000 +632 1511 5.100000 +632 1532 5.100000 +632 1535 5.100000 +632 1546 5.100000 +632 1564 5.100000 +632 1626 5.100000 +632 1694 5.100000 +632 1697 5.100000 +632 1707 5.100000 +632 1710 5.100000 +632 1829 5.100000 +632 1872 5.100000 +632 1968 5.100000 +632 2136 5.100000 +632 2188 5.100000 +632 2206 5.100000 +632 2253 5.100000 +632 2254 5.100000 +632 2392 5.100000 +632 2456 5.100000 +632 2523 5.100000 +632 2634 5.100000 +632 2669 5.100000 +632 2685 5.100000 +632 2718 5.100000 +632 2762 5.100000 +632 2858 5.100000 +632 2952 5.100000 +632 2968 5.100000 +632 3006 5.100000 +632 3161 5.100000 +632 3163 5.100000 +633 47 5.100000 +633 92 5.100000 +633 93 5.100000 +633 154 5.100000 +633 222 5.100000 +633 244 5.100000 +633 292 5.100000 +633 403 5.100000 +633 419 5.100000 +633 425 5.100000 +633 459 5.100000 +633 477 5.100000 +633 490 5.100000 +633 553 5.100000 +633 626 5.100000 +633 635 5.100000 +633 662 5.100000 +633 677 5.100000 +633 678 5.100000 +633 760 5.100000 +633 769 5.100000 +633 799 5.100000 +633 831 5.100000 +633 974 5.100000 +633 1022 5.100000 +633 1025 5.100000 +633 1031 5.100000 +633 1157 5.100000 +633 1187 5.100000 +633 1198 5.100000 +633 1217 5.100000 +633 1259 5.100000 +633 1297 5.100000 +633 1312 5.100000 +633 1425 5.100000 +633 1445 5.100000 +633 1449 5.100000 +633 1542 5.100000 +633 1580 5.100000 +633 1604 5.100000 +633 1695 5.100000 +633 1938 5.100000 +633 1940 5.100000 +633 2202 5.100000 +633 2264 5.100000 +633 2267 5.100000 +633 2332 5.100000 +633 2379 5.100000 +633 2387 5.100000 +633 2436 5.100000 +633 2504 5.100000 +633 2535 5.100000 +633 2546 5.100000 +633 2588 5.100000 +633 2592 5.100000 +633 2653 5.100000 +633 2662 5.100000 +633 2677 5.100000 +633 2714 5.100000 +633 2874 5.100000 +633 2906 5.100000 +633 2914 5.100000 +633 3064 5.100000 +633 3120 5.100000 +633 3144 5.100000 +633 3187 5.100000 +634 52 5.100000 +634 67 5.100000 +634 190 5.100000 +634 194 5.100000 +634 270 5.100000 +634 317 5.100000 +634 408 5.100000 +634 413 5.100000 +634 487 5.100000 +634 548 5.100000 +634 580 5.100000 +634 609 5.100000 +634 662 5.100000 +634 770 5.100000 +634 862 5.100000 +634 877 5.100000 +634 963 5.100000 +634 1011 5.100000 +634 1054 5.100000 +634 1202 5.100000 +634 1312 5.100000 +634 1395 5.100000 +634 1431 5.100000 +634 1452 5.100000 +634 1471 5.100000 +634 1498 5.100000 +634 1678 5.100000 +634 1699 5.100000 +634 1705 5.100000 +634 1749 5.100000 +634 1778 5.100000 +634 1823 5.100000 +634 1851 5.100000 +634 1894 5.100000 +634 1934 5.100000 +634 2036 5.100000 +634 2055 5.100000 +634 2102 5.100000 +634 2113 5.100000 +634 2114 5.100000 +634 2150 5.100000 +634 2153 5.100000 +634 2160 5.100000 +634 2162 5.100000 +634 2478 5.100000 +634 2482 5.100000 +634 2510 5.100000 +634 2534 5.100000 +634 2556 5.100000 +634 2581 5.100000 +634 2770 5.100000 +634 2790 5.100000 +634 2827 5.100000 +634 2846 5.100000 +634 2962 5.100000 +634 3017 5.100000 +634 3025 5.100000 +634 3055 5.100000 +634 3084 5.100000 +634 3128 5.100000 +634 3131 5.100000 +635 17 5.100000 +635 20 5.100000 +635 40 5.100000 +635 43 5.100000 +635 101 5.100000 +635 164 5.100000 +635 263 5.100000 +635 270 5.100000 +635 282 5.100000 +635 388 5.100000 +635 450 5.100000 +635 477 5.100000 +635 510 5.100000 +635 602 5.100000 +635 660 5.100000 +635 788 5.100000 +635 927 5.100000 +635 987 5.100000 +635 1016 5.100000 +635 1053 5.100000 +635 1147 5.100000 +635 1184 5.100000 +635 1201 5.100000 +635 1255 5.100000 +635 1307 5.100000 +635 1378 5.100000 +635 1497 5.100000 +635 1565 5.100000 +635 1584 5.100000 +635 1607 5.100000 +635 1645 5.100000 +635 1650 5.100000 +635 1652 5.100000 +635 1665 5.100000 +635 1705 5.100000 +635 1726 5.100000 +635 1749 5.100000 +635 1752 5.100000 +635 1764 5.100000 +635 1868 5.100000 +635 1898 5.100000 +635 1904 5.100000 +635 1968 5.100000 +635 1977 5.100000 +635 1988 5.100000 +635 2105 5.100000 +635 2288 5.100000 +635 2298 5.100000 +635 2366 5.100000 +635 2370 5.100000 +635 2510 5.100000 +635 2582 5.100000 +635 2600 5.100000 +635 2604 5.100000 +635 2638 5.100000 +635 2669 5.100000 +635 2815 5.100000 +635 2822 5.100000 +635 2854 5.100000 +635 2895 5.100000 +635 2981 5.100000 +635 3024 5.100000 +635 3072 5.100000 +635 3118 5.100000 +635 3128 5.100000 +635 3140 5.100000 +635 3171 5.100000 +635 3184 5.100000 +635 3199 5.100000 +636 98 5.100000 +636 118 5.100000 +636 164 5.100000 +636 210 5.100000 +636 293 5.100000 +636 306 5.100000 +636 314 5.100000 +636 342 5.100000 +636 346 5.100000 +636 368 5.100000 +636 418 5.100000 +636 455 5.100000 +636 461 5.100000 +636 467 5.100000 +636 522 5.100000 +636 529 5.100000 +636 672 5.100000 +636 690 5.100000 +636 702 5.100000 +636 733 5.100000 +636 830 5.100000 +636 853 5.100000 +636 916 5.100000 +636 1075 5.100000 +636 1168 5.100000 +636 1313 5.100000 +636 1436 5.100000 +636 1442 5.100000 +636 1487 5.100000 +636 1509 5.100000 +636 1663 5.100000 +636 1665 5.100000 +636 1725 5.100000 +636 1795 5.100000 +636 1843 5.100000 +636 1922 5.100000 +636 1979 5.100000 +636 2002 5.100000 +636 2047 5.100000 +636 2107 5.100000 +636 2148 5.100000 +636 2150 5.100000 +636 2209 5.100000 +636 2297 5.100000 +636 2315 5.100000 +636 2316 5.100000 +636 2340 5.100000 +636 2462 5.100000 +636 2579 5.100000 +636 2589 5.100000 +636 2623 5.100000 +636 2706 5.100000 +636 2790 5.100000 +636 2807 5.100000 +636 2816 5.100000 +636 2819 5.100000 +636 2825 5.100000 +636 2840 5.100000 +636 2897 5.100000 +636 2903 5.100000 +636 3121 5.100000 +636 3180 5.100000 +637 55 5.100000 +637 58 5.100000 +637 66 5.100000 +637 87 5.100000 +637 159 5.100000 +637 234 5.100000 +637 287 5.100000 +637 302 5.100000 +637 303 5.100000 +637 407 5.100000 +637 457 5.100000 +637 514 5.100000 +637 543 5.100000 +637 617 5.100000 +637 638 5.100000 +637 640 5.100000 +637 762 5.100000 +637 988 5.100000 +637 1087 5.100000 +637 1128 5.100000 +637 1198 5.100000 +637 1199 5.100000 +637 1276 5.100000 +637 1319 5.100000 +637 1392 5.100000 +637 1402 5.100000 +637 1414 5.100000 +637 1476 5.100000 +637 1494 5.100000 +637 1526 5.100000 +637 1536 5.100000 +637 1585 5.100000 +637 1601 5.100000 +637 1639 5.100000 +637 1654 5.100000 +637 1701 5.100000 +637 1702 5.100000 +637 1710 5.100000 +637 1715 5.100000 +637 1810 5.100000 +637 1822 5.100000 +637 1848 5.100000 +637 1860 5.100000 +637 1942 5.100000 +637 2092 5.100000 +637 2132 5.100000 +637 2192 5.100000 +637 2206 5.100000 +637 2273 5.100000 +637 2279 5.100000 +637 2321 5.100000 +637 2370 5.100000 +637 2544 5.100000 +637 2575 5.100000 +637 2623 5.100000 +637 2639 5.100000 +637 2723 5.100000 +637 2809 5.100000 +637 2837 5.100000 +637 2869 5.100000 +637 2908 5.100000 +637 2909 5.100000 +637 2930 5.100000 +637 2935 5.100000 +637 2962 5.100000 +637 3135 5.100000 +637 3164 5.100000 +637 3180 5.100000 +638 64 5.100000 +638 72 5.100000 +638 92 5.100000 +638 104 5.100000 +638 118 5.100000 +638 127 5.100000 +638 154 5.100000 +638 157 5.100000 +638 283 5.100000 +638 402 5.100000 +638 463 5.100000 +638 490 5.100000 +638 525 5.100000 +638 625 5.100000 +638 627 5.100000 +638 631 5.100000 +638 638 5.100000 +638 652 5.100000 +638 710 5.100000 +638 801 5.100000 +638 841 5.100000 +638 845 5.100000 +638 864 5.100000 +638 1017 5.100000 +638 1053 5.100000 +638 1063 5.100000 +638 1071 5.100000 +638 1084 5.100000 +638 1090 5.100000 +638 1193 5.100000 +638 1236 5.100000 +638 1318 5.100000 +638 1357 5.100000 +638 1378 5.100000 +638 1388 5.100000 +638 1403 5.100000 +638 1412 5.100000 +638 1437 5.100000 +638 1503 5.100000 +638 1522 5.100000 +638 1555 5.100000 +638 1588 5.100000 +638 1830 5.100000 +638 1867 5.100000 +638 1959 5.100000 +638 2042 5.100000 +638 2062 5.100000 +638 2177 5.100000 +638 2194 5.100000 +638 2242 5.100000 +638 2264 5.100000 +638 2283 5.100000 +638 2478 5.100000 +638 2583 5.100000 +638 2614 5.100000 +638 2645 5.100000 +638 2685 5.100000 +638 2748 5.100000 +638 2752 5.100000 +638 2868 5.100000 +638 2872 5.100000 +638 2908 5.100000 +638 2966 5.100000 +638 3007 5.100000 +638 3012 5.100000 +638 3074 5.100000 +638 3089 5.100000 +639 90 5.100000 +639 157 5.100000 +639 179 5.100000 +639 188 5.100000 +639 203 5.100000 +639 207 5.100000 +639 230 5.100000 +639 232 5.100000 +639 281 5.100000 +639 338 5.100000 +639 354 5.100000 +639 418 5.100000 +639 436 5.100000 +639 438 5.100000 +639 497 5.100000 +639 511 5.100000 +639 521 5.100000 +639 540 5.100000 +639 579 5.100000 +639 665 5.100000 +639 718 5.100000 +639 743 5.100000 +639 853 5.100000 +639 864 5.100000 +639 888 5.100000 +639 918 5.100000 +639 968 5.100000 +639 1058 5.100000 +639 1181 5.100000 +639 1207 5.100000 +639 1236 5.100000 +639 1254 5.100000 +639 1305 5.100000 +639 1309 5.100000 +639 1326 5.100000 +639 1396 5.100000 +639 1402 5.100000 +639 1407 5.100000 +639 1439 5.100000 +639 1443 5.100000 +639 1452 5.100000 +639 1560 5.100000 +639 1592 5.100000 +639 1692 5.100000 +639 1894 5.100000 +639 1895 5.100000 +639 1955 5.100000 +639 2037 5.100000 +639 2053 5.100000 +639 2085 5.100000 +639 2105 5.100000 +639 2181 5.100000 +639 2192 5.100000 +639 2234 5.100000 +639 2362 5.100000 +639 2403 5.100000 +639 2411 5.100000 +639 2417 5.100000 +639 2425 5.100000 +639 2540 5.100000 +639 2670 5.100000 +639 2671 5.100000 +639 2788 5.100000 +639 2801 5.100000 +639 2828 5.100000 +639 2966 5.100000 +639 2989 5.100000 +639 3013 5.100000 +639 3133 5.100000 +639 3138 5.100000 +639 3166 5.100000 +640 47 5.100000 +640 160 5.100000 +640 200 5.100000 +640 263 5.100000 +640 337 5.100000 +640 349 5.100000 +640 389 5.100000 +640 448 5.100000 +640 472 5.100000 +640 513 5.100000 +640 579 5.100000 +640 741 5.100000 +640 766 5.100000 +640 806 5.100000 +640 809 5.100000 +640 882 5.100000 +640 941 5.100000 +640 1040 5.100000 +640 1044 5.100000 +640 1045 5.100000 +640 1085 5.100000 +640 1103 5.100000 +640 1124 5.100000 +640 1202 5.100000 +640 1216 5.100000 +640 1237 5.100000 +640 1324 5.100000 +640 1355 5.100000 +640 1370 5.100000 +640 1374 5.100000 +640 1468 5.100000 +640 1484 5.100000 +640 1706 5.100000 +640 1779 5.100000 +640 1824 5.100000 +640 1916 5.100000 +640 2002 5.100000 +640 2049 5.100000 +640 2201 5.100000 +640 2280 5.100000 +640 2292 5.100000 +640 2317 5.100000 +640 2328 5.100000 +640 2369 5.100000 +640 2375 5.100000 +640 2385 5.100000 +640 2389 5.100000 +640 2432 5.100000 +640 2454 5.100000 +640 2518 5.100000 +640 2587 5.100000 +640 2654 5.100000 +640 2668 5.100000 +640 2690 5.100000 +640 2763 5.100000 +640 2784 5.100000 +640 2831 5.100000 +640 2841 5.100000 +640 2893 5.100000 +640 2934 5.100000 +640 2942 5.100000 +640 2970 5.100000 +640 2997 5.100000 +640 3000 5.100000 +640 3095 5.100000 +640 3121 5.100000 +641 47 5.100000 +641 53 5.100000 +641 93 5.100000 +641 107 5.100000 +641 118 5.100000 +641 237 5.100000 +641 262 5.100000 +641 263 5.100000 +641 299 5.100000 +641 304 5.100000 +641 388 5.100000 +641 426 5.100000 +641 488 5.100000 +641 502 5.100000 +641 616 5.100000 +641 669 5.100000 +641 689 5.100000 +641 725 5.100000 +641 758 5.100000 +641 786 5.100000 +641 863 5.100000 +641 900 5.100000 +641 929 5.100000 +641 964 5.100000 +641 1046 5.100000 +641 1075 5.100000 +641 1077 5.100000 +641 1137 5.100000 +641 1185 5.100000 +641 1218 5.100000 +641 1246 5.100000 +641 1256 5.100000 +641 1261 5.100000 +641 1265 5.100000 +641 1400 5.100000 +641 1433 5.100000 +641 1630 5.100000 +641 1727 5.100000 +641 1814 5.100000 +641 1833 5.100000 +641 1907 5.100000 +641 1916 5.100000 +641 1932 5.100000 +641 2114 5.100000 +641 2282 5.100000 +641 2593 5.100000 +641 2629 5.100000 +641 2660 5.100000 +641 2953 5.100000 +641 2959 5.100000 +641 2971 5.100000 +641 3013 5.100000 +641 3023 5.100000 +641 3047 5.100000 +641 3137 5.100000 +642 68 5.100000 +642 73 5.100000 +642 86 5.100000 +642 88 5.100000 +642 119 5.100000 +642 145 5.100000 +642 164 5.100000 +642 187 5.100000 +642 406 5.100000 +642 430 5.100000 +642 466 5.100000 +642 531 5.100000 +642 536 5.100000 +642 538 5.100000 +642 555 5.100000 +642 596 5.100000 +642 603 5.100000 +642 691 5.100000 +642 702 5.100000 +642 767 5.100000 +642 846 5.100000 +642 871 5.100000 +642 900 5.100000 +642 932 5.100000 +642 952 5.100000 +642 972 5.100000 +642 977 5.100000 +642 1048 5.100000 +642 1051 5.100000 +642 1059 5.100000 +642 1060 5.100000 +642 1095 5.100000 +642 1205 5.100000 +642 1233 5.100000 +642 1271 5.100000 +642 1291 5.100000 +642 1328 5.100000 +642 1429 5.100000 +642 1439 5.100000 +642 1505 5.100000 +642 1563 5.100000 +642 2059 5.100000 +642 2079 5.100000 +642 2109 5.100000 +642 2126 5.100000 +642 2193 5.100000 +642 2220 5.100000 +642 2252 5.100000 +642 2283 5.100000 +642 2424 5.100000 +642 2495 5.100000 +642 2692 5.100000 +642 2725 5.100000 +642 2763 5.100000 +642 2780 5.100000 +642 2938 5.100000 +642 2958 5.100000 +642 2997 5.100000 +642 3003 5.100000 +642 3033 5.100000 +642 3051 5.100000 +642 3055 5.100000 +642 3061 5.100000 +642 3079 5.100000 +642 3121 5.100000 +642 3127 5.100000 +642 3156 5.100000 +642 3173 5.100000 +642 3194 5.100000 +643 9 5.100000 +643 183 5.100000 +643 212 5.100000 +643 247 5.100000 +643 262 5.100000 +643 307 5.100000 +643 359 5.100000 +643 399 5.100000 +643 434 5.100000 +643 435 5.100000 +643 439 5.100000 +643 480 5.100000 +643 549 5.100000 +643 763 5.100000 +643 880 5.100000 +643 907 5.100000 +643 994 5.100000 +643 1062 5.100000 +643 1065 5.100000 +643 1142 5.100000 +643 1311 5.100000 +643 1340 5.100000 +643 1352 5.100000 +643 1658 5.100000 +643 1664 5.100000 +643 1698 5.100000 +643 1727 5.100000 +643 1734 5.100000 +643 1779 5.100000 +643 1821 5.100000 +643 1857 5.100000 +643 1865 5.100000 +643 1920 5.100000 +643 1984 5.100000 +643 2022 5.100000 +643 2053 5.100000 +643 2082 5.100000 +643 2194 5.100000 +643 2230 5.100000 +643 2334 5.100000 +643 2387 5.100000 +643 2434 5.100000 +643 2500 5.100000 +643 2507 5.100000 +643 2603 5.100000 +643 2690 5.100000 +643 2806 5.100000 +643 2845 5.100000 +643 2866 5.100000 +643 2867 5.100000 +643 2876 5.100000 +643 2935 5.100000 +643 2974 5.100000 +643 2984 5.100000 +643 3133 5.100000 +643 3187 5.100000 +643 3191 5.100000 +644 19 5.100000 +644 100 5.100000 +644 128 5.100000 +644 176 5.100000 +644 208 5.100000 +644 275 5.100000 +644 295 5.100000 +644 404 5.100000 +644 489 5.100000 +644 511 5.100000 +644 519 5.100000 +644 661 5.100000 +644 733 5.100000 +644 770 5.100000 +644 772 5.100000 +644 865 5.100000 +644 869 5.100000 +644 934 5.100000 +644 971 5.100000 +644 1011 5.100000 +644 1019 5.100000 +644 1029 5.100000 +644 1036 5.100000 +644 1060 5.100000 +644 1079 5.100000 +644 1110 5.100000 +644 1164 5.100000 +644 1223 5.100000 +644 1239 5.100000 +644 1271 5.100000 +644 1311 5.100000 +644 1320 5.100000 +644 1340 5.100000 +644 1345 5.100000 +644 1374 5.100000 +644 1382 5.100000 +644 1427 5.100000 +644 1487 5.100000 +644 1642 5.100000 +644 1702 5.100000 +644 1777 5.100000 +644 1802 5.100000 +644 1811 5.100000 +644 1927 5.100000 +644 1939 5.100000 +644 1999 5.100000 +644 2046 5.100000 +644 2075 5.100000 +644 2127 5.100000 +644 2151 5.100000 +644 2157 5.100000 +644 2201 5.100000 +644 2302 5.100000 +644 2360 5.100000 +644 2485 5.100000 +644 2492 5.100000 +644 2539 5.100000 +644 2576 5.100000 +644 2605 5.100000 +644 2629 5.100000 +644 2674 5.100000 +644 2703 5.100000 +644 2737 5.100000 +644 2756 5.100000 +644 2758 5.100000 +644 2796 5.100000 +644 2823 5.100000 +644 2927 5.100000 +644 3100 5.100000 +644 3148 5.100000 +644 3199 5.100000 +645 2 5.100000 +645 9 5.100000 +645 107 5.100000 +645 108 5.100000 +645 120 5.100000 +645 137 5.100000 +645 152 5.100000 +645 156 5.100000 +645 235 5.100000 +645 256 5.100000 +645 388 5.100000 +645 405 5.100000 +645 424 5.100000 +645 466 5.100000 +645 479 5.100000 +645 509 5.100000 +645 539 5.100000 +645 561 5.100000 +645 577 5.100000 +645 583 5.100000 +645 646 5.100000 +645 874 5.100000 +645 928 5.100000 +645 945 5.100000 +645 978 5.100000 +645 1000 5.100000 +645 1006 5.100000 +645 1037 5.100000 +645 1040 5.100000 +645 1154 5.100000 +645 1164 5.100000 +645 1168 5.100000 +645 1486 5.100000 +645 1488 5.100000 +645 1499 5.100000 +645 1505 5.100000 +645 1506 5.100000 +645 1679 5.100000 +645 1768 5.100000 +645 1807 5.100000 +645 1899 5.100000 +645 1908 5.100000 +645 1910 5.100000 +645 1935 5.100000 +645 1942 5.100000 +645 2021 5.100000 +645 2136 5.100000 +645 2211 5.100000 +645 2250 5.100000 +645 2257 5.100000 +645 2316 5.100000 +645 2321 5.100000 +645 2342 5.100000 +645 2399 5.100000 +645 2406 5.100000 +645 2418 5.100000 +645 2467 5.100000 +645 2560 5.100000 +645 2602 5.100000 +645 2646 5.100000 +645 2699 5.100000 +645 2714 5.100000 +645 2756 5.100000 +645 2763 5.100000 +645 2823 5.100000 +645 2850 5.100000 +645 2877 5.100000 +645 2881 5.100000 +645 2954 5.100000 +645 3046 5.100000 +645 3074 5.100000 +645 3088 5.100000 +645 3122 5.100000 +645 3138 5.100000 +645 3149 5.100000 +646 32 5.100000 +646 49 5.100000 +646 87 5.100000 +646 106 5.100000 +646 196 5.100000 +646 226 5.100000 +646 389 5.100000 +646 448 5.100000 +646 473 5.100000 +646 707 5.100000 +646 897 5.100000 +646 1070 5.100000 +646 1076 5.100000 +646 1084 5.100000 +646 1129 5.100000 +646 1130 5.100000 +646 1193 5.100000 +646 1195 5.100000 +646 1211 5.100000 +646 1351 5.100000 +646 1356 5.100000 +646 1424 5.100000 +646 1506 5.100000 +646 1516 5.100000 +646 1523 5.100000 +646 1528 5.100000 +646 1606 5.100000 +646 1755 5.100000 +646 1789 5.100000 +646 1822 5.100000 +646 1828 5.100000 +646 1836 5.100000 +646 1951 5.100000 +646 1980 5.100000 +646 2068 5.100000 +646 2241 5.100000 +646 2255 5.100000 +646 2264 5.100000 +646 2266 5.100000 +646 2307 5.100000 +646 2350 5.100000 +646 2357 5.100000 +646 2381 5.100000 +646 2407 5.100000 +646 2408 5.100000 +646 2841 5.100000 +646 2846 5.100000 +646 2884 5.100000 +646 2938 5.100000 +646 2986 5.100000 +646 3020 5.100000 +646 3116 5.100000 +646 3129 5.100000 +646 3168 5.100000 +646 3180 5.100000 +647 134 5.100000 +647 145 5.100000 +647 213 5.100000 +647 229 5.100000 +647 343 5.100000 +647 433 5.100000 +647 490 5.100000 +647 495 5.100000 +647 523 5.100000 +647 543 5.100000 +647 555 5.100000 +647 571 5.100000 +647 689 5.100000 +647 714 5.100000 +647 757 5.100000 +647 771 5.100000 +647 848 5.100000 +647 874 5.100000 +647 996 5.100000 +647 999 5.100000 +647 1016 5.100000 +647 1053 5.100000 +647 1054 5.100000 +647 1060 5.100000 +647 1067 5.100000 +647 1082 5.100000 +647 1090 5.100000 +647 1167 5.100000 +647 1189 5.100000 +647 1192 5.100000 +647 1242 5.100000 +647 1286 5.100000 +647 1312 5.100000 +647 1319 5.100000 +647 1321 5.100000 +647 1327 5.100000 +647 1365 5.100000 +647 1394 5.100000 +647 1491 5.100000 +647 1588 5.100000 +647 1692 5.100000 +647 1699 5.100000 +647 1717 5.100000 +647 1748 5.100000 +647 1750 5.100000 +647 1789 5.100000 +647 1862 5.100000 +647 1877 5.100000 +647 1913 5.100000 +647 1938 5.100000 +647 1986 5.100000 +647 1999 5.100000 +647 2013 5.100000 +647 2076 5.100000 +647 2128 5.100000 +647 2131 5.100000 +647 2194 5.100000 +647 2246 5.100000 +647 2483 5.100000 +647 2508 5.100000 +647 2533 5.100000 +647 2623 5.100000 +647 2626 5.100000 +647 2656 5.100000 +647 2678 5.100000 +647 2718 5.100000 +647 2792 5.100000 +647 2834 5.100000 +647 2838 5.100000 +647 2917 5.100000 +647 2939 5.100000 +647 3012 5.100000 +647 3029 5.100000 +647 3070 5.100000 +647 3093 5.100000 +647 3183 5.100000 +648 29 5.100000 +648 66 5.100000 +648 72 5.100000 +648 147 5.100000 +648 322 5.100000 +648 376 5.100000 +648 387 5.100000 +648 393 5.100000 +648 452 5.100000 +648 467 5.100000 +648 508 5.100000 +648 549 5.100000 +648 573 5.100000 +648 730 5.100000 +648 802 5.100000 +648 825 5.100000 +648 854 5.100000 +648 891 5.100000 +648 984 5.100000 +648 990 5.100000 +648 1001 5.100000 +648 1010 5.100000 +648 1019 5.100000 +648 1033 5.100000 +648 1044 5.100000 +648 1067 5.100000 +648 1105 5.100000 +648 1160 5.100000 +648 1206 5.100000 +648 1229 5.100000 +648 1307 5.100000 +648 1573 5.100000 +648 1597 5.100000 +648 1656 5.100000 +648 1657 5.100000 +648 1723 5.100000 +648 1749 5.100000 +648 1815 5.100000 +648 1827 5.100000 +648 1855 5.100000 +648 1884 5.100000 +648 1998 5.100000 +648 2083 5.100000 +648 2127 5.100000 +648 2192 5.100000 +648 2227 5.100000 +648 2254 5.100000 +648 2423 5.100000 +648 2431 5.100000 +648 2469 5.100000 +648 2475 5.100000 +648 2500 5.100000 +648 2501 5.100000 +648 2564 5.100000 +648 2592 5.100000 +648 2654 5.100000 +648 2698 5.100000 +648 2700 5.100000 +648 2779 5.100000 +648 2829 5.100000 +648 2839 5.100000 +648 2848 5.100000 +648 2852 5.100000 +648 2990 5.100000 +648 2991 5.100000 +648 3011 5.100000 +648 3068 5.100000 +648 3074 5.100000 +648 3175 5.100000 +649 107 5.100000 +649 215 5.100000 +649 260 5.100000 +649 291 5.100000 +649 345 5.100000 +649 378 5.100000 +649 535 5.100000 +649 558 5.100000 +649 652 5.100000 +649 718 5.100000 +649 805 5.100000 +649 843 5.100000 +649 853 5.100000 +649 1004 5.100000 +649 1023 5.100000 +649 1036 5.100000 +649 1061 5.100000 +649 1086 5.100000 +649 1172 5.100000 +649 1205 5.100000 +649 1332 5.100000 +649 1339 5.100000 +649 1405 5.100000 +649 1444 5.100000 +649 1445 5.100000 +649 1555 5.100000 +649 1626 5.100000 +649 1647 5.100000 +649 1744 5.100000 +649 1780 5.100000 +649 1905 5.100000 +649 2027 5.100000 +649 2050 5.100000 +649 2085 5.100000 +649 2090 5.100000 +649 2144 5.100000 +649 2198 5.100000 +649 2235 5.100000 +649 2495 5.100000 +649 2617 5.100000 +649 2634 5.100000 +649 2665 5.100000 +649 2718 5.100000 +649 2754 5.100000 +649 2760 5.100000 +649 2767 5.100000 +649 2845 5.100000 +649 2895 5.100000 +649 2994 5.100000 +649 2995 5.100000 +649 3003 5.100000 +649 3054 5.100000 +649 3071 5.100000 +649 3160 5.100000 +650 29 5.100000 +650 85 5.100000 +650 229 5.100000 +650 240 5.100000 +650 309 5.100000 +650 402 5.100000 +650 457 5.100000 +650 488 5.100000 +650 503 5.100000 +650 515 5.100000 +650 536 5.100000 +650 568 5.100000 +650 619 5.100000 +650 645 5.100000 +650 664 5.100000 +650 682 5.100000 +650 715 5.100000 +650 799 5.100000 +650 883 5.100000 +650 891 5.100000 +650 967 5.100000 +650 973 5.100000 +650 1030 5.100000 +650 1112 5.100000 +650 1165 5.100000 +650 1240 5.100000 +650 1316 5.100000 +650 1381 5.100000 +650 1382 5.100000 +650 1446 5.100000 +650 1516 5.100000 +650 1613 5.100000 +650 1653 5.100000 +650 1819 5.100000 +650 1840 5.100000 +650 1868 5.100000 +650 1942 5.100000 +650 2018 5.100000 +650 2082 5.100000 +650 2169 5.100000 +650 2267 5.100000 +650 2283 5.100000 +650 2315 5.100000 +650 2317 5.100000 +650 2364 5.100000 +650 2435 5.100000 +650 2462 5.100000 +650 2483 5.100000 +650 2532 5.100000 +650 2577 5.100000 +650 2607 5.100000 +650 2680 5.100000 +650 2725 5.100000 +650 2764 5.100000 +650 2797 5.100000 +650 2798 5.100000 +650 2865 5.100000 +650 2897 5.100000 +650 2994 5.100000 +650 3020 5.100000 +650 3026 5.100000 +650 3047 5.100000 +650 3090 5.100000 +650 3120 5.100000 +651 4 5.100000 +651 67 5.100000 +651 90 5.100000 +651 96 5.100000 +651 118 5.100000 +651 120 5.100000 +651 124 5.100000 +651 135 5.100000 +651 159 5.100000 +651 184 5.100000 +651 187 5.100000 +651 198 5.100000 +651 271 5.100000 +651 343 5.100000 +651 350 5.100000 +651 380 5.100000 +651 390 5.100000 +651 488 5.100000 +651 494 5.100000 +651 507 5.100000 +651 539 5.100000 +651 589 5.100000 +651 683 5.100000 +651 687 5.100000 +651 715 5.100000 +651 759 5.100000 +651 766 5.100000 +651 872 5.100000 +651 890 5.100000 +651 935 5.100000 +651 1016 5.100000 +651 1067 5.100000 +651 1069 5.100000 +651 1124 5.100000 +651 1129 5.100000 +651 1187 5.100000 +651 1327 5.100000 +651 1465 5.100000 +651 1561 5.100000 +651 1595 5.100000 +651 1611 5.100000 +651 1697 5.100000 +651 1704 5.100000 +651 1723 5.100000 +651 1773 5.100000 +651 1810 5.100000 +651 1890 5.100000 +651 1917 5.100000 +651 1929 5.100000 +651 1939 5.100000 +651 1970 5.100000 +651 2021 5.100000 +651 2064 5.100000 +651 2065 5.100000 +651 2112 5.100000 +651 2281 5.100000 +651 2284 5.100000 +651 2468 5.100000 +651 2485 5.100000 +651 2525 5.100000 +651 2541 5.100000 +651 2645 5.100000 +651 2671 5.100000 +651 2715 5.100000 +651 2726 5.100000 +651 2744 5.100000 +651 2836 5.100000 +651 2854 5.100000 +651 2870 5.100000 +651 2894 5.100000 +651 2900 5.100000 +651 2962 5.100000 +651 2963 5.100000 +651 2991 5.100000 +651 3000 5.100000 +651 3014 5.100000 +651 3110 5.100000 +651 3127 5.100000 +652 60 5.100000 +652 132 5.100000 +652 234 5.100000 +652 252 5.100000 +652 322 5.100000 +652 337 5.100000 +652 339 5.100000 +652 341 5.100000 +652 389 5.100000 +652 519 5.100000 +652 559 5.100000 +652 594 5.100000 +652 639 5.100000 +652 645 5.100000 +652 651 5.100000 +652 658 5.100000 +652 847 5.100000 +652 879 5.100000 +652 1030 5.100000 +652 1179 5.100000 +652 1223 5.100000 +652 1313 5.100000 +652 1377 5.100000 +652 1391 5.100000 +652 1444 5.100000 +652 1496 5.100000 +652 1572 5.100000 +652 1654 5.100000 +652 1709 5.100000 +652 1726 5.100000 +652 1799 5.100000 +652 1834 5.100000 +652 1875 5.100000 +652 2138 5.100000 +652 2196 5.100000 +652 2197 5.100000 +652 2266 5.100000 +652 2340 5.100000 +652 2380 5.100000 +652 2430 5.100000 +652 2518 5.100000 +652 2591 5.100000 +652 2626 5.100000 +652 2871 5.100000 +652 2952 5.100000 +652 2968 5.100000 +652 3135 5.100000 +652 3162 5.100000 +653 10 5.100000 +653 30 5.100000 +653 51 5.100000 +653 66 5.100000 +653 118 5.100000 +653 154 5.100000 +653 160 5.100000 +653 249 5.100000 +653 370 5.100000 +653 445 5.100000 +653 464 5.100000 +653 515 5.100000 +653 574 5.100000 +653 637 5.100000 +653 734 5.100000 +653 785 5.100000 +653 819 5.100000 +653 944 5.100000 +653 1007 5.100000 +653 1030 5.100000 +653 1060 5.100000 +653 1140 5.100000 +653 1207 5.100000 +653 1278 5.100000 +653 1279 5.100000 +653 1323 5.100000 +653 1393 5.100000 +653 1396 5.100000 +653 1528 5.100000 +653 1608 5.100000 +653 1686 5.100000 +653 1711 5.100000 +653 1752 5.100000 +653 1849 5.100000 +653 1895 5.100000 +653 2012 5.100000 +653 2014 5.100000 +653 2071 5.100000 +653 2087 5.100000 +653 2110 5.100000 +653 2173 5.100000 +653 2175 5.100000 +653 2185 5.100000 +653 2206 5.100000 +653 2429 5.100000 +653 2497 5.100000 +653 2510 5.100000 +653 2511 5.100000 +653 2514 5.100000 +653 2688 5.100000 +653 2725 5.100000 +653 2758 5.100000 +653 2785 5.100000 +653 2846 5.100000 +653 2858 5.100000 +653 3025 5.100000 +653 3049 5.100000 +653 3073 5.100000 +653 3137 5.100000 +654 8 5.100000 +654 35 5.100000 +654 84 5.100000 +654 121 5.100000 +654 157 5.100000 +654 170 5.100000 +654 257 5.100000 +654 296 5.100000 +654 350 5.100000 +654 393 5.100000 +654 428 5.100000 +654 558 5.100000 +654 656 5.100000 +654 698 5.100000 +654 1029 5.100000 +654 1098 5.100000 +654 1144 5.100000 +654 1242 5.100000 +654 1277 5.100000 +654 1289 5.100000 +654 1358 5.100000 +654 1378 5.100000 +654 1383 5.100000 +654 1386 5.100000 +654 1397 5.100000 +654 1479 5.100000 +654 1543 5.100000 +654 1593 5.100000 +654 1721 5.100000 +654 1741 5.100000 +654 1925 5.100000 +654 1971 5.100000 +654 1992 5.100000 +654 2047 5.100000 +654 2051 5.100000 +654 2076 5.100000 +654 2092 5.100000 +654 2124 5.100000 +654 2125 5.100000 +654 2135 5.100000 +654 2225 5.100000 +654 2275 5.100000 +654 2412 5.100000 +654 2422 5.100000 +654 2433 5.100000 +654 2480 5.100000 +654 2524 5.100000 +654 2550 5.100000 +654 2587 5.100000 +654 2709 5.100000 +654 2725 5.100000 +654 2783 5.100000 +654 2869 5.100000 +654 2952 5.100000 +654 3022 5.100000 +654 3027 5.100000 +654 3112 5.100000 +655 106 5.100000 +655 114 5.100000 +655 164 5.100000 +655 226 5.100000 +655 247 5.100000 +655 295 5.100000 +655 300 5.100000 +655 327 5.100000 +655 337 5.100000 +655 430 5.100000 +655 718 5.100000 +655 744 5.100000 +655 773 5.100000 +655 807 5.100000 +655 813 5.100000 +655 829 5.100000 +655 854 5.100000 +655 933 5.100000 +655 954 5.100000 +655 1018 5.100000 +655 1228 5.100000 +655 1251 5.100000 +655 1310 5.100000 +655 1330 5.100000 +655 1381 5.100000 +655 1388 5.100000 +655 1392 5.100000 +655 1406 5.100000 +655 1438 5.100000 +655 1479 5.100000 +655 1500 5.100000 +655 1516 5.100000 +655 1534 5.100000 +655 1560 5.100000 +655 1605 5.100000 +655 1635 5.100000 +655 1679 5.100000 +655 1762 5.100000 +655 1827 5.100000 +655 1944 5.100000 +655 1958 5.100000 +655 2044 5.100000 +655 2052 5.100000 +655 2145 5.100000 +655 2160 5.100000 +655 2184 5.100000 +655 2198 5.100000 +655 2207 5.100000 +655 2231 5.100000 +655 2304 5.100000 +655 2355 5.100000 +655 2364 5.100000 +655 2411 5.100000 +655 2462 5.100000 +655 2562 5.100000 +655 2621 5.100000 +655 2835 5.100000 +655 2851 5.100000 +655 2877 5.100000 +655 2919 5.100000 +655 3000 5.100000 +655 3020 5.100000 +655 3137 5.100000 +655 3184 5.100000 +656 67 5.100000 +656 192 5.100000 +656 252 5.100000 +656 278 5.100000 +656 346 5.100000 +656 403 5.100000 +656 480 5.100000 +656 502 5.100000 +656 596 5.100000 +656 629 5.100000 +656 648 5.100000 +656 668 5.100000 +656 733 5.100000 +656 744 5.100000 +656 746 5.100000 +656 783 5.100000 +656 832 5.100000 +656 859 5.100000 +656 860 5.100000 +656 872 5.100000 +656 882 5.100000 +656 1094 5.100000 +656 1107 5.100000 +656 1149 5.100000 +656 1153 5.100000 +656 1402 5.100000 +656 1418 5.100000 +656 1475 5.100000 +656 1485 5.100000 +656 1507 5.100000 +656 1523 5.100000 +656 1545 5.100000 +656 1613 5.100000 +656 1619 5.100000 +656 1754 5.100000 +656 1855 5.100000 +656 1968 5.100000 +656 1989 5.100000 +656 2023 5.100000 +656 2034 5.100000 +656 2121 5.100000 +656 2208 5.100000 +656 2223 5.100000 +656 2246 5.100000 +656 2320 5.100000 +656 2373 5.100000 +656 2442 5.100000 +656 2500 5.100000 +656 2550 5.100000 +656 2631 5.100000 +656 2665 5.100000 +656 2767 5.100000 +656 2815 5.100000 +656 2825 5.100000 +656 2849 5.100000 +656 2961 5.100000 +656 2986 5.100000 +656 2991 5.100000 +656 3009 5.100000 +656 3020 5.100000 +656 3084 5.100000 +657 52 5.100000 +657 59 5.100000 +657 61 5.100000 +657 76 5.100000 +657 167 5.100000 +657 273 5.100000 +657 279 5.100000 +657 283 5.100000 +657 418 5.100000 +657 464 5.100000 +657 486 5.100000 +657 574 5.100000 +657 586 5.100000 +657 594 5.100000 +657 647 5.100000 +657 653 5.100000 +657 670 5.100000 +657 831 5.100000 +657 922 5.100000 +657 1138 5.100000 +657 1146 5.100000 +657 1150 5.100000 +657 1206 5.100000 +657 1215 5.100000 +657 1225 5.100000 +657 1239 5.100000 +657 1265 5.100000 +657 1384 5.100000 +657 1501 5.100000 +657 1508 5.100000 +657 1515 5.100000 +657 1547 5.100000 +657 1550 5.100000 +657 1640 5.100000 +657 1724 5.100000 +657 1727 5.100000 +657 1787 5.100000 +657 1870 5.100000 +657 1938 5.100000 +657 1953 5.100000 +657 1990 5.100000 +657 2092 5.100000 +657 2245 5.100000 +657 2290 5.100000 +657 2310 5.100000 +657 2399 5.100000 +657 2409 5.100000 +657 2547 5.100000 +657 2568 5.100000 +657 2578 5.100000 +657 2583 5.100000 +657 2622 5.100000 +657 2660 5.100000 +657 2672 5.100000 +657 2707 5.100000 +657 2778 5.100000 +657 2803 5.100000 +657 2912 5.100000 +657 2941 5.100000 +657 2999 5.100000 +657 3032 5.100000 +657 3096 5.100000 +657 3194 5.100000 +658 19 5.100000 +658 52 5.100000 +658 83 5.100000 +658 88 5.100000 +658 102 5.100000 +658 152 5.100000 +658 233 5.100000 +658 275 5.100000 +658 303 5.100000 +658 382 5.100000 +658 397 5.100000 +658 437 5.100000 +658 478 5.100000 +658 483 5.100000 +658 484 5.100000 +658 494 5.100000 +658 511 5.100000 +658 518 5.100000 +658 636 5.100000 +658 654 5.100000 +658 712 5.100000 +658 737 5.100000 +658 780 5.100000 +658 785 5.100000 +658 867 5.100000 +658 896 5.100000 +658 981 5.100000 +658 996 5.100000 +658 1027 5.100000 +658 1041 5.100000 +658 1049 5.100000 +658 1098 5.100000 +658 1104 5.100000 +658 1107 5.100000 +658 1119 5.100000 +658 1165 5.100000 +658 1202 5.100000 +658 1223 5.100000 +658 1328 5.100000 +658 1330 5.100000 +658 1362 5.100000 +658 1518 5.100000 +658 1572 5.100000 +658 1616 5.100000 +658 1618 5.100000 +658 1625 5.100000 +658 1629 5.100000 +658 1709 5.100000 +658 1743 5.100000 +658 1911 5.100000 +658 1981 5.100000 +658 1982 5.100000 +658 2016 5.100000 +658 2079 5.100000 +658 2080 5.100000 +658 2131 5.100000 +658 2144 5.100000 +658 2152 5.100000 +658 2186 5.100000 +658 2188 5.100000 +658 2198 5.100000 +658 2261 5.100000 +658 2282 5.100000 +658 2285 5.100000 +658 2316 5.100000 +658 2420 5.100000 +658 2451 5.100000 +658 2537 5.100000 +658 2569 5.100000 +658 2620 5.100000 +658 2678 5.100000 +658 2695 5.100000 +658 2754 5.100000 +658 2755 5.100000 +658 2863 5.100000 +658 2865 5.100000 +658 2890 5.100000 +658 2918 5.100000 +658 2925 5.100000 +658 2974 5.100000 +658 2995 5.100000 +658 3047 5.100000 +658 3058 5.100000 +659 19 5.100000 +659 99 5.100000 +659 166 5.100000 +659 167 5.100000 +659 228 5.100000 +659 255 5.100000 +659 262 5.100000 +659 266 5.100000 +659 282 5.100000 +659 296 5.100000 +659 389 5.100000 +659 406 5.100000 +659 436 5.100000 +659 463 5.100000 +659 467 5.100000 +659 519 5.100000 +659 579 5.100000 +659 592 5.100000 +659 689 5.100000 +659 727 5.100000 +659 761 5.100000 +659 794 5.100000 +659 833 5.100000 +659 940 5.100000 +659 1006 5.100000 +659 1008 5.100000 +659 1050 5.100000 +659 1127 5.100000 +659 1178 5.100000 +659 1309 5.100000 +659 1352 5.100000 +659 1375 5.100000 +659 1402 5.100000 +659 1427 5.100000 +659 1441 5.100000 +659 1523 5.100000 +659 1609 5.100000 +659 1619 5.100000 +659 1646 5.100000 +659 1768 5.100000 +659 1789 5.100000 +659 1806 5.100000 +659 1907 5.100000 +659 1996 5.100000 +659 2055 5.100000 +659 2095 5.100000 +659 2160 5.100000 +659 2260 5.100000 +659 2269 5.100000 +659 2273 5.100000 +659 2323 5.100000 +659 2349 5.100000 +659 2384 5.100000 +659 2385 5.100000 +659 2388 5.100000 +659 2408 5.100000 +659 2510 5.100000 +659 2604 5.100000 +659 2678 5.100000 +659 2698 5.100000 +659 2743 5.100000 +659 2746 5.100000 +659 2849 5.100000 +659 2906 5.100000 +659 2927 5.100000 +659 2963 5.100000 +659 2999 5.100000 +659 3066 5.100000 +659 3106 5.100000 +659 3182 5.100000 +660 74 5.100000 +660 110 5.100000 +660 193 5.100000 +660 258 5.100000 +660 265 5.100000 +660 325 5.100000 +660 365 5.100000 +660 376 5.100000 +660 386 5.100000 +660 397 5.100000 +660 510 5.100000 +660 536 5.100000 +660 640 5.100000 +660 745 5.100000 +660 750 5.100000 +660 775 5.100000 +660 811 5.100000 +660 841 5.100000 +660 876 5.100000 +660 916 5.100000 +660 929 5.100000 +660 977 5.100000 +660 1039 5.100000 +660 1097 5.100000 +660 1244 5.100000 +660 1304 5.100000 +660 1350 5.100000 +660 1428 5.100000 +660 1561 5.100000 +660 1698 5.100000 +660 1708 5.100000 +660 1934 5.100000 +660 1949 5.100000 +660 1952 5.100000 +660 2109 5.100000 +660 2182 5.100000 +660 2222 5.100000 +660 2308 5.100000 +660 2326 5.100000 +660 2381 5.100000 +660 2382 5.100000 +660 2467 5.100000 +660 2468 5.100000 +660 2479 5.100000 +660 2536 5.100000 +660 2559 5.100000 +660 2714 5.100000 +660 2722 5.100000 +660 2809 5.100000 +660 2849 5.100000 +660 2900 5.100000 +660 2927 5.100000 +660 2951 5.100000 +660 2988 5.100000 +660 3001 5.100000 +660 3002 5.100000 +660 3072 5.100000 +660 3137 5.100000 +660 3139 5.100000 +660 3194 5.100000 +661 87 5.100000 +661 111 5.100000 +661 330 5.100000 +661 349 5.100000 +661 453 5.100000 +661 506 5.100000 +661 610 5.100000 +661 688 5.100000 +661 716 5.100000 +661 745 5.100000 +661 889 5.100000 +661 1029 5.100000 +661 1167 5.100000 +661 1232 5.100000 +661 1366 5.100000 +661 1485 5.100000 +661 1504 5.100000 +661 1576 5.100000 +661 1609 5.100000 +661 1622 5.100000 +661 1684 5.100000 +661 1824 5.100000 +661 1828 5.100000 +661 1961 5.100000 +661 1964 5.100000 +661 1995 5.100000 +661 2003 5.100000 +661 2030 5.100000 +661 2046 5.100000 +661 2071 5.100000 +661 2096 5.100000 +661 2097 5.100000 +661 2126 5.100000 +661 2137 5.100000 +661 2204 5.100000 +661 2267 5.100000 +661 2306 5.100000 +661 2356 5.100000 +661 2413 5.100000 +661 2433 5.100000 +661 2439 5.100000 +661 2450 5.100000 +661 2505 5.100000 +661 2579 5.100000 +661 2712 5.100000 +661 2806 5.100000 +661 2809 5.100000 +661 2888 5.100000 +661 2916 5.100000 +661 3000 5.100000 +661 3021 5.100000 +661 3043 5.100000 +662 121 5.100000 +662 238 5.100000 +662 260 5.100000 +662 272 5.100000 +662 286 5.100000 +662 345 5.100000 +662 350 5.100000 +662 365 5.100000 +662 369 5.100000 +662 388 5.100000 +662 413 5.100000 +662 496 5.100000 +662 516 5.100000 +662 560 5.100000 +662 598 5.100000 +662 619 5.100000 +662 627 5.100000 +662 701 5.100000 +662 720 5.100000 +662 776 5.100000 +662 796 5.100000 +662 836 5.100000 +662 872 5.100000 +662 887 5.100000 +662 920 5.100000 +662 925 5.100000 +662 980 5.100000 +662 995 5.100000 +662 1004 5.100000 +662 1021 5.100000 +662 1075 5.100000 +662 1336 5.100000 +662 1344 5.100000 +662 1403 5.100000 +662 1454 5.100000 +662 1486 5.100000 +662 1565 5.100000 +662 1617 5.100000 +662 1632 5.100000 +662 1733 5.100000 +662 1800 5.100000 +662 1836 5.100000 +662 1837 5.100000 +662 1912 5.100000 +662 1976 5.100000 +662 2015 5.100000 +662 2190 5.100000 +662 2204 5.100000 +662 2264 5.100000 +662 2268 5.100000 +662 2307 5.100000 +662 2362 5.100000 +662 2406 5.100000 +662 2409 5.100000 +662 2513 5.100000 +662 2571 5.100000 +662 2681 5.100000 +662 2840 5.100000 +662 2851 5.100000 +662 2900 5.100000 +662 2913 5.100000 +662 3083 5.100000 +662 3088 5.100000 +662 3100 5.100000 +662 3102 5.100000 +662 3114 5.100000 +663 28 5.100000 +663 85 5.100000 +663 115 5.100000 +663 167 5.100000 +663 221 5.100000 +663 226 5.100000 +663 371 5.100000 +663 402 5.100000 +663 408 5.100000 +663 433 5.100000 +663 513 5.100000 +663 669 5.100000 +663 759 5.100000 +663 797 5.100000 +663 930 5.100000 +663 939 5.100000 +663 961 5.100000 +663 1004 5.100000 +663 1039 5.100000 +663 1082 5.100000 +663 1096 5.100000 +663 1099 5.100000 +663 1163 5.100000 +663 1230 5.100000 +663 1269 5.100000 +663 1334 5.100000 +663 1338 5.100000 +663 1350 5.100000 +663 1355 5.100000 +663 1411 5.100000 +663 1413 5.100000 +663 1481 5.100000 +663 1522 5.100000 +663 1614 5.100000 +663 1642 5.100000 +663 1755 5.100000 +663 1848 5.100000 +663 1944 5.100000 +663 2006 5.100000 +663 2014 5.100000 +663 2079 5.100000 +663 2117 5.100000 +663 2257 5.100000 +663 2337 5.100000 +663 2343 5.100000 +663 2365 5.100000 +663 2611 5.100000 +663 2657 5.100000 +663 2698 5.100000 +663 2717 5.100000 +663 2821 5.100000 +663 2843 5.100000 +663 2851 5.100000 +663 2856 5.100000 +663 2866 5.100000 +663 2913 5.100000 +663 2921 5.100000 +663 2937 5.100000 +663 2960 5.100000 +663 2964 5.100000 +663 2984 5.100000 +663 3002 5.100000 +663 3046 5.100000 +663 3050 5.100000 +663 3055 5.100000 +663 3059 5.100000 +663 3160 5.100000 +663 3179 5.100000 +664 44 5.100000 +664 142 5.100000 +664 147 5.100000 +664 190 5.100000 +664 454 5.100000 +664 461 5.100000 +664 528 5.100000 +664 580 5.100000 +664 687 5.100000 +664 709 5.100000 +664 717 5.100000 +664 725 5.100000 +664 738 5.100000 +664 826 5.100000 +664 873 5.100000 +664 966 5.100000 +664 1020 5.100000 +664 1038 5.100000 +664 1118 5.100000 +664 1194 5.100000 +664 1201 5.100000 +664 1306 5.100000 +664 1358 5.100000 +664 1378 5.100000 +664 1406 5.100000 +664 1417 5.100000 +664 1441 5.100000 +664 1480 5.100000 +664 1547 5.100000 +664 1610 5.100000 +664 1649 5.100000 +664 1713 5.100000 +664 1771 5.100000 +664 1828 5.100000 +664 1838 5.100000 +664 1983 5.100000 +664 2038 5.100000 +664 2054 5.100000 +664 2084 5.100000 +664 2126 5.100000 +664 2143 5.100000 +664 2279 5.100000 +664 2285 5.100000 +664 2307 5.100000 +664 2386 5.100000 +664 2401 5.100000 +664 2412 5.100000 +664 2492 5.100000 +664 2493 5.100000 +664 2548 5.100000 +664 2592 5.100000 +664 2623 5.100000 +664 2674 5.100000 +664 2686 5.100000 +664 2700 5.100000 +664 2727 5.100000 +664 2748 5.100000 +664 2768 5.100000 +664 2826 5.100000 +664 2982 5.100000 +664 3010 5.100000 +664 3042 5.100000 +664 3185 5.100000 +665 72 5.100000 +665 90 5.100000 +665 104 5.100000 +665 120 5.100000 +665 146 5.100000 +665 155 5.100000 +665 178 5.100000 +665 196 5.100000 +665 213 5.100000 +665 251 5.100000 +665 308 5.100000 +665 460 5.100000 +665 462 5.100000 +665 487 5.100000 +665 530 5.100000 +665 542 5.100000 +665 565 5.100000 +665 658 5.100000 +665 661 5.100000 +665 678 5.100000 +665 686 5.100000 +665 705 5.100000 +665 723 5.100000 +665 758 5.100000 +665 764 5.100000 +665 782 5.100000 +665 787 5.100000 +665 940 5.100000 +665 1011 5.100000 +665 1164 5.100000 +665 1253 5.100000 +665 1316 5.100000 +665 1319 5.100000 +665 1342 5.100000 +665 1463 5.100000 +665 1800 5.100000 +665 1908 5.100000 +665 1914 5.100000 +665 1979 5.100000 +665 2003 5.100000 +665 2032 5.100000 +665 2033 5.100000 +665 2095 5.100000 +665 2121 5.100000 +665 2232 5.100000 +665 2235 5.100000 +665 2368 5.100000 +665 2454 5.100000 +665 2487 5.100000 +665 2519 5.100000 +665 2538 5.100000 +665 2572 5.100000 +665 2583 5.100000 +665 2622 5.100000 +665 2630 5.100000 +665 2729 5.100000 +665 2762 5.100000 +665 2817 5.100000 +665 2834 5.100000 +665 2865 5.100000 +665 3006 5.100000 +665 3033 5.100000 +665 3039 5.100000 +665 3167 5.100000 +666 69 5.100000 +666 118 5.100000 +666 206 5.100000 +666 232 5.100000 +666 306 5.100000 +666 365 5.100000 +666 381 5.100000 +666 530 5.100000 +666 588 5.100000 +666 634 5.100000 +666 680 5.100000 +666 686 5.100000 +666 939 5.100000 +666 953 5.100000 +666 964 5.100000 +666 1115 5.100000 +666 1118 5.100000 +666 1165 5.100000 +666 1166 5.100000 +666 1437 5.100000 +666 1447 5.100000 +666 1448 5.100000 +666 1519 5.100000 +666 1610 5.100000 +666 1626 5.100000 +666 1661 5.100000 +666 1815 5.100000 +666 1821 5.100000 +666 1824 5.100000 +666 1876 5.100000 +666 1879 5.100000 +666 1894 5.100000 +666 2080 5.100000 +666 2103 5.100000 +666 2122 5.100000 +666 2242 5.100000 +666 2245 5.100000 +666 2251 5.100000 +666 2359 5.100000 +666 2387 5.100000 +666 2497 5.100000 +666 2579 5.100000 +666 2634 5.100000 +666 2733 5.100000 +666 2787 5.100000 +666 2823 5.100000 +666 2890 5.100000 +666 2979 5.100000 +666 3060 5.100000 +666 3065 5.100000 +666 3100 5.100000 +666 3168 5.100000 +666 3196 5.100000 +667 6 5.100000 +667 53 5.100000 +667 110 5.100000 +667 132 5.100000 +667 188 5.100000 +667 231 5.100000 +667 264 5.100000 +667 308 5.100000 +667 342 5.100000 +667 477 5.100000 +667 521 5.100000 +667 527 5.100000 +667 563 5.100000 +667 567 5.100000 +667 593 5.100000 +667 667 5.100000 +667 725 5.100000 +667 781 5.100000 +667 795 5.100000 +667 822 5.100000 +667 875 5.100000 +667 1039 5.100000 +667 1045 5.100000 +667 1069 5.100000 +667 1117 5.100000 +667 1145 5.100000 +667 1153 5.100000 +667 1156 5.100000 +667 1252 5.100000 +667 1271 5.100000 +667 1306 5.100000 +667 1338 5.100000 +667 1343 5.100000 +667 1371 5.100000 +667 1402 5.100000 +667 1427 5.100000 +667 1450 5.100000 +667 1485 5.100000 +667 1508 5.100000 +667 1535 5.100000 +667 1539 5.100000 +667 1548 5.100000 +667 1685 5.100000 +667 1692 5.100000 +667 1747 5.100000 +667 1761 5.100000 +667 1779 5.100000 +667 1800 5.100000 +667 1840 5.100000 +667 1844 5.100000 +667 1869 5.100000 +667 1885 5.100000 +667 1902 5.100000 +667 1906 5.100000 +667 1914 5.100000 +667 1932 5.100000 +667 1942 5.100000 +667 1982 5.100000 +667 1997 5.100000 +667 2099 5.100000 +667 2142 5.100000 +667 2218 5.100000 +667 2270 5.100000 +667 2452 5.100000 +667 2479 5.100000 +667 2484 5.100000 +667 2488 5.100000 +667 2505 5.100000 +667 2569 5.100000 +667 2615 5.100000 +667 2626 5.100000 +667 2656 5.100000 +667 2837 5.100000 +667 2850 5.100000 +667 2921 5.100000 +667 2929 5.100000 +667 2965 5.100000 +667 3062 5.100000 +667 3065 5.100000 +667 3098 5.100000 +667 3145 5.100000 +668 80 5.100000 +668 137 5.100000 +668 144 5.100000 +668 192 5.100000 +668 224 5.100000 +668 290 5.100000 +668 368 5.100000 +668 486 5.100000 +668 490 5.100000 +668 678 5.100000 +668 704 5.100000 +668 711 5.100000 +668 717 5.100000 +668 723 5.100000 +668 810 5.100000 +668 859 5.100000 +668 920 5.100000 +668 930 5.100000 +668 1184 5.100000 +668 1222 5.100000 +668 1267 5.100000 +668 1357 5.100000 +668 1365 5.100000 +668 1480 5.100000 +668 1548 5.100000 +668 1573 5.100000 +668 1580 5.100000 +668 1631 5.100000 +668 1711 5.100000 +668 1715 5.100000 +668 1719 5.100000 +668 1759 5.100000 +668 1816 5.100000 +668 1862 5.100000 +668 1874 5.100000 +668 1939 5.100000 +668 1945 5.100000 +668 2071 5.100000 +668 2099 5.100000 +668 2141 5.100000 +668 2157 5.100000 +668 2213 5.100000 +668 2310 5.100000 +668 2351 5.100000 +668 2370 5.100000 +668 2454 5.100000 +668 2575 5.100000 +668 2586 5.100000 +668 2701 5.100000 +668 2839 5.100000 +668 2868 5.100000 +668 2932 5.100000 +668 2963 5.100000 +668 3005 5.100000 +668 3148 5.100000 +669 39 5.100000 +669 44 5.100000 +669 46 5.100000 +669 61 5.100000 +669 115 5.100000 +669 175 5.100000 +669 218 5.100000 +669 296 5.100000 +669 304 5.100000 +669 330 5.100000 +669 505 5.100000 +669 559 5.100000 +669 605 5.100000 +669 648 5.100000 +669 649 5.100000 +669 652 5.100000 +669 737 5.100000 +669 754 5.100000 +669 762 5.100000 +669 790 5.100000 +669 797 5.100000 +669 867 5.100000 +669 901 5.100000 +669 949 5.100000 +669 958 5.100000 +669 962 5.100000 +669 1005 5.100000 +669 1037 5.100000 +669 1061 5.100000 +669 1098 5.100000 +669 1166 5.100000 +669 1206 5.100000 +669 1209 5.100000 +669 1245 5.100000 +669 1250 5.100000 +669 1331 5.100000 +669 1333 5.100000 +669 1344 5.100000 +669 1359 5.100000 +669 1364 5.100000 +669 1365 5.100000 +669 1384 5.100000 +669 1388 5.100000 +669 1394 5.100000 +669 1460 5.100000 +669 1551 5.100000 +669 1559 5.100000 +669 1598 5.100000 +669 1670 5.100000 +669 1762 5.100000 +669 1874 5.100000 +669 1932 5.100000 +669 2077 5.100000 +669 2090 5.100000 +669 2102 5.100000 +669 2159 5.100000 +669 2160 5.100000 +669 2192 5.100000 +669 2295 5.100000 +669 2454 5.100000 +669 2499 5.100000 +669 2502 5.100000 +669 2580 5.100000 +669 2632 5.100000 +669 2634 5.100000 +669 2669 5.100000 +669 2671 5.100000 +669 2705 5.100000 +669 2720 5.100000 +669 2748 5.100000 +669 2796 5.100000 +669 2868 5.100000 +669 2941 5.100000 +669 2983 5.100000 +669 3040 5.100000 +669 3084 5.100000 +670 10 5.100000 +670 37 5.100000 +670 217 5.100000 +670 259 5.100000 +670 366 5.100000 +670 375 5.100000 +670 414 5.100000 +670 431 5.100000 +670 435 5.100000 +670 475 5.100000 +670 581 5.100000 +670 612 5.100000 +670 649 5.100000 +670 693 5.100000 +670 729 5.100000 +670 735 5.100000 +670 817 5.100000 +670 849 5.100000 +670 899 5.100000 +670 902 5.100000 +670 918 5.100000 +670 1045 5.100000 +670 1105 5.100000 +670 1155 5.100000 +670 1172 5.100000 +670 1252 5.100000 +670 1308 5.100000 +670 1345 5.100000 +670 1360 5.100000 +670 1362 5.100000 +670 1393 5.100000 +670 1423 5.100000 +670 1462 5.100000 +670 1483 5.100000 +670 1570 5.100000 +670 1609 5.100000 +670 1623 5.100000 +670 1679 5.100000 +670 1696 5.100000 +670 1703 5.100000 +670 1801 5.100000 +670 1832 5.100000 +670 1983 5.100000 +670 2023 5.100000 +670 2115 5.100000 +670 2148 5.100000 +670 2222 5.100000 +670 2278 5.100000 +670 2300 5.100000 +670 2365 5.100000 +670 2460 5.100000 +670 2494 5.100000 +670 2501 5.100000 +670 2586 5.100000 +670 2640 5.100000 +670 2730 5.100000 +670 2734 5.100000 +670 2740 5.100000 +670 2767 5.100000 +670 2795 5.100000 +670 2815 5.100000 +670 3049 5.100000 +670 3072 5.100000 +670 3131 5.100000 +670 3163 5.100000 +670 3181 5.100000 +670 3189 5.100000 +671 24 5.100000 +671 116 5.100000 +671 173 5.100000 +671 182 5.100000 +671 251 5.100000 +671 297 5.100000 +671 475 5.100000 +671 584 5.100000 +671 585 5.100000 +671 631 5.100000 +671 713 5.100000 +671 763 5.100000 +671 816 5.100000 +671 840 5.100000 +671 850 5.100000 +671 922 5.100000 +671 1046 5.100000 +671 1082 5.100000 +671 1109 5.100000 +671 1239 5.100000 +671 1243 5.100000 +671 1497 5.100000 +671 1549 5.100000 +671 1594 5.100000 +671 1609 5.100000 +671 1616 5.100000 +671 1710 5.100000 +671 1758 5.100000 +671 1760 5.100000 +671 1829 5.100000 +671 1842 5.100000 +671 1879 5.100000 +671 1911 5.100000 +671 1945 5.100000 +671 1959 5.100000 +671 1969 5.100000 +671 1997 5.100000 +671 2041 5.100000 +671 2056 5.100000 +671 2069 5.100000 +671 2094 5.100000 +671 2127 5.100000 +671 2183 5.100000 +671 2214 5.100000 +671 2406 5.100000 +671 2542 5.100000 +671 2578 5.100000 +671 2600 5.100000 +671 2604 5.100000 +671 2630 5.100000 +671 2643 5.100000 +671 2653 5.100000 +671 2665 5.100000 +671 2748 5.100000 +671 2766 5.100000 +671 2808 5.100000 +671 2850 5.100000 +671 2866 5.100000 +671 2932 5.100000 +671 2959 5.100000 +671 2992 5.100000 +671 3007 5.100000 +671 3058 5.100000 +671 3077 5.100000 +671 3108 5.100000 +671 3152 5.100000 +672 128 5.100000 +672 150 5.100000 +672 310 5.100000 +672 398 5.100000 +672 474 5.100000 +672 484 5.100000 +672 562 5.100000 +672 630 5.100000 +672 677 5.100000 +672 689 5.100000 +672 701 5.100000 +672 788 5.100000 +672 976 5.100000 +672 1102 5.100000 +672 1103 5.100000 +672 1149 5.100000 +672 1154 5.100000 +672 1156 5.100000 +672 1192 5.100000 +672 1265 5.100000 +672 1296 5.100000 +672 1443 5.100000 +672 1535 5.100000 +672 1545 5.100000 +672 1600 5.100000 +672 1614 5.100000 +672 1716 5.100000 +672 1774 5.100000 +672 1824 5.100000 +672 1926 5.100000 +672 1942 5.100000 +672 1970 5.100000 +672 2027 5.100000 +672 2073 5.100000 +672 2327 5.100000 +672 2375 5.100000 +672 2380 5.100000 +672 2394 5.100000 +672 2411 5.100000 +672 2413 5.100000 +672 2472 5.100000 +672 2509 5.100000 +672 2560 5.100000 +672 2648 5.100000 +672 2663 5.100000 +672 2701 5.100000 +672 2796 5.100000 +672 2817 5.100000 +672 2899 5.100000 +672 2943 5.100000 +672 2956 5.100000 +672 3034 5.100000 +672 3100 5.100000 +672 3132 5.100000 +672 3158 5.100000 +672 3163 5.100000 +673 44 5.100000 +673 104 5.100000 +673 107 5.100000 +673 114 5.100000 +673 177 5.100000 +673 208 5.100000 +673 287 5.100000 +673 376 5.100000 +673 402 5.100000 +673 410 5.100000 +673 443 5.100000 +673 524 5.100000 +673 646 5.100000 +673 661 5.100000 +673 679 5.100000 +673 710 5.100000 +673 736 5.100000 +673 738 5.100000 +673 826 5.100000 +673 829 5.100000 +673 849 5.100000 +673 955 5.100000 +673 1011 5.100000 +673 1021 5.100000 +673 1099 5.100000 +673 1124 5.100000 +673 1131 5.100000 +673 1136 5.100000 +673 1141 5.100000 +673 1197 5.100000 +673 1203 5.100000 +673 1239 5.100000 +673 1255 5.100000 +673 1346 5.100000 +673 1348 5.100000 +673 1377 5.100000 +673 1403 5.100000 +673 1455 5.100000 +673 1488 5.100000 +673 1489 5.100000 +673 1510 5.100000 +673 1523 5.100000 +673 1570 5.100000 +673 1583 5.100000 +673 1666 5.100000 +673 1692 5.100000 +673 1701 5.100000 +673 1717 5.100000 +673 1748 5.100000 +673 1834 5.100000 +673 1927 5.100000 +673 1952 5.100000 +673 1986 5.100000 +673 2021 5.100000 +673 2068 5.100000 +673 2117 5.100000 +673 2143 5.100000 +673 2188 5.100000 +673 2244 5.100000 +673 2273 5.100000 +673 2277 5.100000 +673 2318 5.100000 +673 2340 5.100000 +673 2417 5.100000 +673 2479 5.100000 +673 2592 5.100000 +673 2599 5.100000 +673 2675 5.100000 +673 2695 5.100000 +673 2809 5.100000 +673 2810 5.100000 +673 2945 5.100000 +673 2966 5.100000 +673 2996 5.100000 +673 3006 5.100000 +673 3013 5.100000 +673 3083 5.100000 +673 3089 5.100000 +673 3090 5.100000 +673 3163 5.100000 +674 6 5.100000 +674 58 5.100000 +674 74 5.100000 +674 119 5.100000 +674 126 5.100000 +674 214 5.100000 +674 222 5.100000 +674 242 5.100000 +674 314 5.100000 +674 336 5.100000 +674 345 5.100000 +674 411 5.100000 +674 488 5.100000 +674 492 5.100000 +674 501 5.100000 +674 584 5.100000 +674 621 5.100000 +674 698 5.100000 +674 802 5.100000 +674 1122 5.100000 +674 1141 5.100000 +674 1199 5.100000 +674 1206 5.100000 +674 1223 5.100000 +674 1230 5.100000 +674 1247 5.100000 +674 1292 5.100000 +674 1311 5.100000 +674 1374 5.100000 +674 1377 5.100000 +674 1400 5.100000 +674 1422 5.100000 +674 1503 5.100000 +674 1625 5.100000 +674 1639 5.100000 +674 1718 5.100000 +674 1947 5.100000 +674 2007 5.100000 +674 2089 5.100000 +674 2110 5.100000 +674 2153 5.100000 +674 2190 5.100000 +674 2200 5.100000 +674 2214 5.100000 +674 2286 5.100000 +674 2487 5.100000 +674 2537 5.100000 +674 2658 5.100000 +674 2660 5.100000 +674 2690 5.100000 +674 2693 5.100000 +674 2729 5.100000 +674 2852 5.100000 +674 2868 5.100000 +674 2896 5.100000 +674 2898 5.100000 +674 3064 5.100000 +674 3076 5.100000 +675 24 5.100000 +675 132 5.100000 +675 221 5.100000 +675 282 5.100000 +675 385 5.100000 +675 405 5.100000 +675 409 5.100000 +675 448 5.100000 +675 558 5.100000 +675 577 5.100000 +675 627 5.100000 +675 665 5.100000 +675 696 5.100000 +675 729 5.100000 +675 758 5.100000 +675 803 5.100000 +675 858 5.100000 +675 866 5.100000 +675 881 5.100000 +675 895 5.100000 +675 906 5.100000 +675 943 5.100000 +675 975 5.100000 +675 976 5.100000 +675 1044 5.100000 +675 1115 5.100000 +675 1164 5.100000 +675 1259 5.100000 +675 1296 5.100000 +675 1332 5.100000 +675 1439 5.100000 +675 1583 5.100000 +675 1697 5.100000 +675 1705 5.100000 +675 1747 5.100000 +675 1764 5.100000 +675 1789 5.100000 +675 1819 5.100000 +675 1849 5.100000 +675 1852 5.100000 +675 2010 5.100000 +675 2031 5.100000 +675 2044 5.100000 +675 2047 5.100000 +675 2107 5.100000 +675 2112 5.100000 +675 2189 5.100000 +675 2211 5.100000 +675 2216 5.100000 +675 2418 5.100000 +675 2479 5.100000 +675 2480 5.100000 +675 2491 5.100000 +675 2519 5.100000 +675 2545 5.100000 +675 2623 5.100000 +675 2656 5.100000 +675 2671 5.100000 +675 2806 5.100000 +675 2823 5.100000 +675 2958 5.100000 +676 20 5.100000 +676 68 5.100000 +676 81 5.100000 +676 204 5.100000 +676 209 5.100000 +676 255 5.100000 +676 314 5.100000 +676 334 5.100000 +676 343 5.100000 +676 425 5.100000 +676 542 5.100000 +676 555 5.100000 +676 580 5.100000 +676 634 5.100000 +676 656 5.100000 +676 710 5.100000 +676 754 5.100000 +676 803 5.100000 +676 812 5.100000 +676 868 5.100000 +676 879 5.100000 +676 928 5.100000 +676 1064 5.100000 +676 1083 5.100000 +676 1130 5.100000 +676 1140 5.100000 +676 1182 5.100000 +676 1244 5.100000 +676 1251 5.100000 +676 1350 5.100000 +676 1352 5.100000 +676 1451 5.100000 +676 1600 5.100000 +676 1712 5.100000 +676 1778 5.100000 +676 1789 5.100000 +676 1825 5.100000 +676 1833 5.100000 +676 1896 5.100000 +676 1930 5.100000 +676 1977 5.100000 +676 2058 5.100000 +676 2071 5.100000 +676 2087 5.100000 +676 2111 5.100000 +676 2291 5.100000 +676 2350 5.100000 +676 2428 5.100000 +676 2530 5.100000 +676 2562 5.100000 +676 2569 5.100000 +676 2603 5.100000 +676 2714 5.100000 +676 2718 5.100000 +676 2794 5.100000 +676 2812 5.100000 +676 2904 5.100000 +676 2912 5.100000 +676 2985 5.100000 +676 3064 5.100000 +676 3141 5.100000 +676 3158 5.100000 +676 3182 5.100000 +677 160 5.100000 +677 161 5.100000 +677 205 5.100000 +677 305 5.100000 +677 366 5.100000 +677 371 5.100000 +677 376 5.100000 +677 414 5.100000 +677 438 5.100000 +677 458 5.100000 +677 500 5.100000 +677 534 5.100000 +677 549 5.100000 +677 588 5.100000 +677 612 5.100000 +677 631 5.100000 +677 672 5.100000 +677 685 5.100000 +677 743 5.100000 +677 782 5.100000 +677 792 5.100000 +677 823 5.100000 +677 834 5.100000 +677 836 5.100000 +677 867 5.100000 +677 1024 5.100000 +677 1066 5.100000 +677 1081 5.100000 +677 1149 5.100000 +677 1155 5.100000 +677 1161 5.100000 +677 1205 5.100000 +677 1216 5.100000 +677 1241 5.100000 +677 1278 5.100000 +677 1298 5.100000 +677 1369 5.100000 +677 1379 5.100000 +677 1395 5.100000 +677 1398 5.100000 +677 1457 5.100000 +677 1708 5.100000 +677 1709 5.100000 +677 1748 5.100000 +677 1840 5.100000 +677 1869 5.100000 +677 1886 5.100000 +677 2006 5.100000 +677 2057 5.100000 +677 2137 5.100000 +677 2204 5.100000 +677 2227 5.100000 +677 2373 5.100000 +677 2397 5.100000 +677 2420 5.100000 +677 2447 5.100000 +677 2491 5.100000 +677 2532 5.100000 +677 2667 5.100000 +677 2798 5.100000 +677 2822 5.100000 +677 2863 5.100000 +677 2889 5.100000 +677 2918 5.100000 +677 3012 5.100000 +677 3023 5.100000 +677 3088 5.100000 +677 3107 5.100000 +677 3123 5.100000 +677 3154 5.100000 +677 3172 5.100000 +678 42 5.100000 +678 103 5.100000 +678 187 5.100000 +678 208 5.100000 +678 378 5.100000 +678 445 5.100000 +678 516 5.100000 +678 639 5.100000 +678 708 5.100000 +678 743 5.100000 +678 756 5.100000 +678 911 5.100000 +678 988 5.100000 +678 1054 5.100000 +678 1058 5.100000 +678 1060 5.100000 +678 1070 5.100000 +678 1144 5.100000 +678 1158 5.100000 +678 1204 5.100000 +678 1281 5.100000 +678 1375 5.100000 +678 1442 5.100000 +678 1449 5.100000 +678 1450 5.100000 +678 1468 5.100000 +678 1478 5.100000 +678 1543 5.100000 +678 1556 5.100000 +678 1566 5.100000 +678 1595 5.100000 +678 1638 5.100000 +678 1661 5.100000 +678 1677 5.100000 +678 1685 5.100000 +678 1687 5.100000 +678 1726 5.100000 +678 1730 5.100000 +678 1784 5.100000 +678 1820 5.100000 +678 1859 5.100000 +678 1957 5.100000 +678 1965 5.100000 +678 2272 5.100000 +678 2363 5.100000 +678 2385 5.100000 +678 2392 5.100000 +678 2395 5.100000 +678 2397 5.100000 +678 2448 5.100000 +678 2451 5.100000 +678 2466 5.100000 +678 2479 5.100000 +678 2515 5.100000 +678 2535 5.100000 +678 2543 5.100000 +678 2572 5.100000 +678 2601 5.100000 +678 2707 5.100000 +678 2710 5.100000 +678 2721 5.100000 +678 2729 5.100000 +678 2745 5.100000 +678 2750 5.100000 +678 2760 5.100000 +678 2810 5.100000 +678 2843 5.100000 +678 2930 5.100000 +678 3057 5.100000 +678 3063 5.100000 +678 3095 5.100000 +678 3129 5.100000 +678 3131 5.100000 +679 3 5.100000 +679 38 5.100000 +679 120 5.100000 +679 153 5.100000 +679 156 5.100000 +679 163 5.100000 +679 206 5.100000 +679 307 5.100000 +679 480 5.100000 +679 619 5.100000 +679 661 5.100000 +679 670 5.100000 +679 742 5.100000 +679 819 5.100000 +679 853 5.100000 +679 857 5.100000 +679 991 5.100000 +679 1007 5.100000 +679 1040 5.100000 +679 1179 5.100000 +679 1180 5.100000 +679 1220 5.100000 +679 1247 5.100000 +679 1366 5.100000 +679 1432 5.100000 +679 1564 5.100000 +679 1618 5.100000 +679 1669 5.100000 +679 1715 5.100000 +679 1861 5.100000 +679 1880 5.100000 +679 1887 5.100000 +679 1961 5.100000 +679 1992 5.100000 +679 2058 5.100000 +679 2065 5.100000 +679 2095 5.100000 +679 2105 5.100000 +679 2208 5.100000 +679 2252 5.100000 +679 2295 5.100000 +679 2339 5.100000 +679 2460 5.100000 +679 2499 5.100000 +679 2542 5.100000 +679 2663 5.100000 +679 2675 5.100000 +679 2683 5.100000 +679 2788 5.100000 +679 2789 5.100000 +679 2865 5.100000 +679 2868 5.100000 +679 2982 5.100000 +679 3017 5.100000 +679 3038 5.100000 +679 3056 5.100000 +679 3153 5.100000 +679 3176 5.100000 +680 60 5.100000 +680 122 5.100000 +680 123 5.100000 +680 129 5.100000 +680 236 5.100000 +680 372 5.100000 +680 513 5.100000 +680 533 5.100000 +680 567 5.100000 +680 636 5.100000 +680 697 5.100000 +680 841 5.100000 +680 972 5.100000 +680 1016 5.100000 +680 1021 5.100000 +680 1133 5.100000 +680 1319 5.100000 +680 1377 5.100000 +680 1421 5.100000 +680 1449 5.100000 +680 1475 5.100000 +680 1488 5.100000 +680 1576 5.100000 +680 1583 5.100000 +680 1735 5.100000 +680 1740 5.100000 +680 1784 5.100000 +680 1826 5.100000 +680 1881 5.100000 +680 1917 5.100000 +680 1932 5.100000 +680 2015 5.100000 +680 2075 5.100000 +680 2097 5.100000 +680 2182 5.100000 +680 2192 5.100000 +680 2224 5.100000 +680 2249 5.100000 +680 2286 5.100000 +680 2313 5.100000 +680 2378 5.100000 +680 2411 5.100000 +680 2464 5.100000 +680 2465 5.100000 +680 2501 5.100000 +680 2533 5.100000 +680 2535 5.100000 +680 2536 5.100000 +680 2603 5.100000 +680 2713 5.100000 +680 2780 5.100000 +680 2840 5.100000 +680 2861 5.100000 +680 2914 5.100000 +680 2932 5.100000 +680 3024 5.100000 +680 3059 5.100000 +680 3127 5.100000 +680 3160 5.100000 +681 26 5.100000 +681 53 5.100000 +681 96 5.100000 +681 115 5.100000 +681 121 5.100000 +681 148 5.100000 +681 200 5.100000 +681 259 5.100000 +681 270 5.100000 +681 384 5.100000 +681 480 5.100000 +681 513 5.100000 +681 516 5.100000 +681 519 5.100000 +681 563 5.100000 +681 567 5.100000 +681 579 5.100000 +681 612 5.100000 +681 658 5.100000 +681 710 5.100000 +681 780 5.100000 +681 790 5.100000 +681 837 5.100000 +681 854 5.100000 +681 898 5.100000 +681 916 5.100000 +681 977 5.100000 +681 989 5.100000 +681 1043 5.100000 +681 1118 5.100000 +681 1123 5.100000 +681 1136 5.100000 +681 1196 5.100000 +681 1305 5.100000 +681 1323 5.100000 +681 1451 5.100000 +681 1500 5.100000 +681 1764 5.100000 +681 1793 5.100000 +681 1857 5.100000 +681 1866 5.100000 +681 1872 5.100000 +681 1943 5.100000 +681 2016 5.100000 +681 2032 5.100000 +681 2081 5.100000 +681 2111 5.100000 +681 2296 5.100000 +681 2322 5.100000 +681 2384 5.100000 +681 2397 5.100000 +681 2460 5.100000 +681 2466 5.100000 +681 2472 5.100000 +681 2502 5.100000 +681 2538 5.100000 +681 2717 5.100000 +681 2762 5.100000 +681 2807 5.100000 +681 2926 5.100000 +681 2942 5.100000 +681 2964 5.100000 +681 2970 5.100000 +681 3018 5.100000 +681 3084 5.100000 +681 3116 5.100000 +682 15 5.100000 +682 101 5.100000 +682 168 5.100000 +682 176 5.100000 +682 202 5.100000 +682 243 5.100000 +682 251 5.100000 +682 302 5.100000 +682 311 5.100000 +682 329 5.100000 +682 440 5.100000 +682 450 5.100000 +682 488 5.100000 +682 552 5.100000 +682 599 5.100000 +682 626 5.100000 +682 627 5.100000 +682 645 5.100000 +682 687 5.100000 +682 733 5.100000 +682 749 5.100000 +682 829 5.100000 +682 849 5.100000 +682 927 5.100000 +682 1007 5.100000 +682 1023 5.100000 +682 1028 5.100000 +682 1048 5.100000 +682 1182 5.100000 +682 1233 5.100000 +682 1244 5.100000 +682 1320 5.100000 +682 1372 5.100000 +682 1374 5.100000 +682 1376 5.100000 +682 1499 5.100000 +682 1534 5.100000 +682 1791 5.100000 +682 1794 5.100000 +682 1850 5.100000 +682 1854 5.100000 +682 1906 5.100000 +682 1914 5.100000 +682 1916 5.100000 +682 1982 5.100000 +682 2254 5.100000 +682 2396 5.100000 +682 2458 5.100000 +682 2537 5.100000 +682 2674 5.100000 +682 2691 5.100000 +682 2738 5.100000 +682 2754 5.100000 +682 2788 5.100000 +682 2796 5.100000 +682 2858 5.100000 +682 2908 5.100000 +682 3002 5.100000 +682 3029 5.100000 +682 3054 5.100000 +682 3081 5.100000 +682 3106 5.100000 +682 3138 5.100000 +683 32 5.100000 +683 33 5.100000 +683 40 5.100000 +683 109 5.100000 +683 125 5.100000 +683 140 5.100000 +683 280 5.100000 +683 402 5.100000 +683 449 5.100000 +683 473 5.100000 +683 491 5.100000 +683 600 5.100000 +683 772 5.100000 +683 777 5.100000 +683 844 5.100000 +683 882 5.100000 +683 901 5.100000 +683 963 5.100000 +683 1014 5.100000 +683 1049 5.100000 +683 1230 5.100000 +683 1236 5.100000 +683 1248 5.100000 +683 1282 5.100000 +683 1297 5.100000 +683 1300 5.100000 +683 1378 5.100000 +683 1407 5.100000 +683 1441 5.100000 +683 1444 5.100000 +683 1516 5.100000 +683 1543 5.100000 +683 1596 5.100000 +683 1707 5.100000 +683 1716 5.100000 +683 1728 5.100000 +683 1732 5.100000 +683 1921 5.100000 +683 1930 5.100000 +683 1933 5.100000 +683 1959 5.100000 +683 2073 5.100000 +683 2074 5.100000 +683 2076 5.100000 +683 2105 5.100000 +683 2158 5.100000 +683 2193 5.100000 +683 2260 5.100000 +683 2287 5.100000 +683 2366 5.100000 +683 2579 5.100000 +683 2679 5.100000 +683 2724 5.100000 +683 3173 5.100000 +683 3174 5.100000 +683 3192 5.100000 +684 12 5.100000 +684 179 5.100000 +684 355 5.100000 +684 358 5.100000 +684 429 5.100000 +684 463 5.100000 +684 544 5.100000 +684 548 5.100000 +684 712 5.100000 +684 719 5.100000 +684 738 5.100000 +684 759 5.100000 +684 773 5.100000 +684 801 5.100000 +684 897 5.100000 +684 911 5.100000 +684 980 5.100000 +684 1168 5.100000 +684 1299 5.100000 +684 1335 5.100000 +684 1461 5.100000 +684 1630 5.100000 +684 1652 5.100000 +684 1671 5.100000 +684 1685 5.100000 +684 1715 5.100000 +684 1716 5.100000 +684 1717 5.100000 +684 1727 5.100000 +684 1812 5.100000 +684 1823 5.100000 +684 1901 5.100000 +684 1902 5.100000 +684 1966 5.100000 +684 2001 5.100000 +684 2024 5.100000 +684 2065 5.100000 +684 2129 5.100000 +684 2216 5.100000 +684 2243 5.100000 +684 2293 5.100000 +684 2410 5.100000 +684 2436 5.100000 +684 2556 5.100000 +684 2596 5.100000 +684 2760 5.100000 +684 2883 5.100000 +684 3004 5.100000 +684 3010 5.100000 +684 3134 5.100000 +685 13 5.100000 +685 33 5.100000 +685 54 5.100000 +685 71 5.100000 +685 126 5.100000 +685 128 5.100000 +685 161 5.100000 +685 173 5.100000 +685 186 5.100000 +685 192 5.100000 +685 224 5.100000 +685 231 5.100000 +685 239 5.100000 +685 247 5.100000 +685 270 5.100000 +685 313 5.100000 +685 314 5.100000 +685 336 5.100000 +685 350 5.100000 +685 555 5.100000 +685 697 5.100000 +685 731 5.100000 +685 794 5.100000 +685 803 5.100000 +685 882 5.100000 +685 1036 5.100000 +685 1190 5.100000 +685 1196 5.100000 +685 1229 5.100000 +685 1338 5.100000 +685 1363 5.100000 +685 1373 5.100000 +685 1394 5.100000 +685 1411 5.100000 +685 1439 5.100000 +685 1473 5.100000 +685 1482 5.100000 +685 1555 5.100000 +685 1594 5.100000 +685 1602 5.100000 +685 1603 5.100000 +685 1637 5.100000 +685 1738 5.100000 +685 1813 5.100000 +685 1861 5.100000 +685 1864 5.100000 +685 1866 5.100000 +685 1886 5.100000 +685 1889 5.100000 +685 1900 5.100000 +685 1918 5.100000 +685 1962 5.100000 +685 1977 5.100000 +685 1999 5.100000 +685 2023 5.100000 +685 2044 5.100000 +685 2065 5.100000 +685 2178 5.100000 +685 2261 5.100000 +685 2268 5.100000 +685 2285 5.100000 +685 2324 5.100000 +685 2352 5.100000 +685 2449 5.100000 +685 2494 5.100000 +685 2515 5.100000 +685 2523 5.100000 +685 2632 5.100000 +685 2656 5.100000 +685 2722 5.100000 +685 2759 5.100000 +685 2793 5.100000 +685 2897 5.100000 +685 2938 5.100000 +685 3197 5.100000 +686 26 5.100000 +686 31 5.100000 +686 101 5.100000 +686 104 5.100000 +686 281 5.100000 +686 315 5.100000 +686 330 5.100000 +686 514 5.100000 +686 528 5.100000 +686 663 5.100000 +686 713 5.100000 +686 734 5.100000 +686 740 5.100000 +686 754 5.100000 +686 758 5.100000 +686 759 5.100000 +686 818 5.100000 +686 859 5.100000 +686 870 5.100000 +686 876 5.100000 +686 884 5.100000 +686 889 5.100000 +686 988 5.100000 +686 1124 5.100000 +686 1155 5.100000 +686 1203 5.100000 +686 1212 5.100000 +686 1288 5.100000 +686 1295 5.100000 +686 1452 5.100000 +686 1523 5.100000 +686 1584 5.100000 +686 1625 5.100000 +686 1733 5.100000 +686 1828 5.100000 +686 1849 5.100000 +686 1875 5.100000 +686 1925 5.100000 +686 1948 5.100000 +686 2014 5.100000 +686 2207 5.100000 +686 2366 5.100000 +686 2371 5.100000 +686 2372 5.100000 +686 2386 5.100000 +686 2454 5.100000 +686 2517 5.100000 +686 2632 5.100000 +686 2688 5.100000 +686 2728 5.100000 +686 2843 5.100000 +686 2869 5.100000 +686 3043 5.100000 +686 3107 5.100000 +686 3146 5.100000 +686 3176 5.100000 +686 3194 5.100000 +687 79 5.100000 +687 90 5.100000 +687 115 5.100000 +687 118 5.100000 +687 171 5.100000 +687 180 5.100000 +687 235 5.100000 +687 252 5.100000 +687 299 5.100000 +687 367 5.100000 +687 377 5.100000 +687 438 5.100000 +687 484 5.100000 +687 567 5.100000 +687 623 5.100000 +687 688 5.100000 +687 741 5.100000 +687 750 5.100000 +687 787 5.100000 +687 797 5.100000 +687 803 5.100000 +687 857 5.100000 +687 877 5.100000 +687 959 5.100000 +687 981 5.100000 +687 996 5.100000 +687 1023 5.100000 +687 1051 5.100000 +687 1103 5.100000 +687 1228 5.100000 +687 1268 5.100000 +687 1312 5.100000 +687 1334 5.100000 +687 1409 5.100000 +687 1410 5.100000 +687 1472 5.100000 +687 1496 5.100000 +687 1497 5.100000 +687 1500 5.100000 +687 1522 5.100000 +687 1526 5.100000 +687 1540 5.100000 +687 1549 5.100000 +687 1553 5.100000 +687 1567 5.100000 +687 1584 5.100000 +687 1620 5.100000 +687 1785 5.100000 +687 1796 5.100000 +687 1816 5.100000 +687 1851 5.100000 +687 1885 5.100000 +687 1896 5.100000 +687 1922 5.100000 +687 2002 5.100000 +687 2003 5.100000 +687 2034 5.100000 +687 2077 5.100000 +687 2145 5.100000 +687 2233 5.100000 +687 2277 5.100000 +687 2432 5.100000 +687 2500 5.100000 +687 2518 5.100000 +687 2604 5.100000 +687 2617 5.100000 +687 2753 5.100000 +687 2762 5.100000 +687 2799 5.100000 +687 2822 5.100000 +687 2862 5.100000 +687 2925 5.100000 +687 2934 5.100000 +687 3014 5.100000 +687 3034 5.100000 +687 3049 5.100000 +687 3077 5.100000 +687 3112 5.100000 +687 3130 5.100000 +687 3190 5.100000 +688 93 5.100000 +688 305 5.100000 +688 388 5.100000 +688 394 5.100000 +688 400 5.100000 +688 449 5.100000 +688 561 5.100000 +688 577 5.100000 +688 866 5.100000 +688 903 5.100000 +688 955 5.100000 +688 997 5.100000 +688 1036 5.100000 +688 1074 5.100000 +688 1083 5.100000 +688 1123 5.100000 +688 1135 5.100000 +688 1137 5.100000 +688 1161 5.100000 +688 1165 5.100000 +688 1239 5.100000 +688 1252 5.100000 +688 1346 5.100000 +688 1354 5.100000 +688 1462 5.100000 +688 1515 5.100000 +688 1575 5.100000 +688 1642 5.100000 +688 1655 5.100000 +688 1729 5.100000 +688 1737 5.100000 +688 1770 5.100000 +688 1830 5.100000 +688 1908 5.100000 +688 1912 5.100000 +688 1952 5.100000 +688 2015 5.100000 +688 2022 5.100000 +688 2025 5.100000 +688 2110 5.100000 +688 2150 5.100000 +688 2194 5.100000 +688 2221 5.100000 +688 2319 5.100000 +688 2491 5.100000 +688 2536 5.100000 +688 2567 5.100000 +688 2575 5.100000 +688 2598 5.100000 +688 2677 5.100000 +688 2733 5.100000 +688 2768 5.100000 +688 2838 5.100000 +688 2878 5.100000 +688 2909 5.100000 +688 2920 5.100000 +688 2935 5.100000 +688 2941 5.100000 +688 3046 5.100000 +688 3082 5.100000 +688 3128 5.100000 +688 3145 5.100000 +688 3166 5.100000 +689 26 5.100000 +689 51 5.100000 +689 62 5.100000 +689 66 5.100000 +689 106 5.100000 +689 134 5.100000 +689 141 5.100000 +689 147 5.100000 +689 247 5.100000 +689 272 5.100000 +689 328 5.100000 +689 383 5.100000 +689 422 5.100000 +689 454 5.100000 +689 546 5.100000 +689 555 5.100000 +689 558 5.100000 +689 559 5.100000 +689 613 5.100000 +689 616 5.100000 +689 636 5.100000 +689 654 5.100000 +689 669 5.100000 +689 727 5.100000 +689 792 5.100000 +689 910 5.100000 +689 963 5.100000 +689 994 5.100000 +689 1056 5.100000 +689 1066 5.100000 +689 1156 5.100000 +689 1163 5.100000 +689 1411 5.100000 +689 1412 5.100000 +689 1494 5.100000 +689 1520 5.100000 +689 1571 5.100000 +689 1595 5.100000 +689 1735 5.100000 +689 1779 5.100000 +689 1887 5.100000 +689 1888 5.100000 +689 1928 5.100000 +689 2046 5.100000 +689 2171 5.100000 +689 2210 5.100000 +689 2332 5.100000 +689 2435 5.100000 +689 2447 5.100000 +689 2465 5.100000 +689 2475 5.100000 +689 2511 5.100000 +689 2567 5.100000 +689 2584 5.100000 +689 2621 5.100000 +689 2644 5.100000 +689 2749 5.100000 +689 2876 5.100000 +689 2930 5.100000 +689 2933 5.100000 +689 2991 5.100000 +689 3015 5.100000 +689 3037 5.100000 +689 3098 5.100000 +689 3109 5.100000 +689 3112 5.100000 +689 3137 5.100000 +689 3180 5.100000 +690 73 5.100000 +690 190 5.100000 +690 192 5.100000 +690 204 5.100000 +690 392 5.100000 +690 424 5.100000 +690 548 5.100000 +690 733 5.100000 +690 809 5.100000 +690 812 5.100000 +690 883 5.100000 +690 897 5.100000 +690 908 5.100000 +690 1016 5.100000 +690 1073 5.100000 +690 1094 5.100000 +690 1113 5.100000 +690 1140 5.100000 +690 1163 5.100000 +690 1176 5.100000 +690 1182 5.100000 +690 1223 5.100000 +690 1225 5.100000 +690 1232 5.100000 +690 1304 5.100000 +690 1322 5.100000 +690 1331 5.100000 +690 1372 5.100000 +690 1406 5.100000 +690 1482 5.100000 +690 1667 5.100000 +690 1686 5.100000 +690 1710 5.100000 +690 1792 5.100000 +690 1818 5.100000 +690 1826 5.100000 +690 1892 5.100000 +690 1894 5.100000 +690 1942 5.100000 +690 2050 5.100000 +690 2127 5.100000 +690 2151 5.100000 +690 2193 5.100000 +690 2214 5.100000 +690 2269 5.100000 +690 2278 5.100000 +690 2333 5.100000 +690 2341 5.100000 +690 2356 5.100000 +690 2419 5.100000 +690 2426 5.100000 +690 2432 5.100000 +690 2444 5.100000 +690 2516 5.100000 +690 2627 5.100000 +690 2674 5.100000 +690 2695 5.100000 +690 2698 5.100000 +690 2706 5.100000 +690 2711 5.100000 +690 2721 5.100000 +690 2748 5.100000 +690 2757 5.100000 +690 2810 5.100000 +690 2811 5.100000 +690 2928 5.100000 +690 2967 5.100000 +690 2988 5.100000 +690 3000 5.100000 +690 3006 5.100000 +690 3007 5.100000 +690 3056 5.100000 +690 3090 5.100000 +690 3098 5.100000 +690 3171 5.100000 +690 3182 5.100000 +691 4 5.100000 +691 17 5.100000 +691 33 5.100000 +691 35 5.100000 +691 146 5.100000 +691 256 5.100000 +691 493 5.100000 +691 525 5.100000 +691 537 5.100000 +691 604 5.100000 +691 731 5.100000 +691 901 5.100000 +691 971 5.100000 +691 985 5.100000 +691 987 5.100000 +691 1025 5.100000 +691 1044 5.100000 +691 1056 5.100000 +691 1264 5.100000 +691 1276 5.100000 +691 1320 5.100000 +691 1465 5.100000 +691 1542 5.100000 +691 1625 5.100000 +691 1711 5.100000 +691 1736 5.100000 +691 1748 5.100000 +691 1906 5.100000 +691 1988 5.100000 +691 2048 5.100000 +691 2054 5.100000 +691 2082 5.100000 +691 2123 5.100000 +691 2133 5.100000 +691 2176 5.100000 +691 2243 5.100000 +691 2304 5.100000 +691 2317 5.100000 +691 2347 5.100000 +691 2397 5.100000 +691 2480 5.100000 +691 2582 5.100000 +691 2645 5.100000 +691 2670 5.100000 +691 2700 5.100000 +691 2769 5.100000 +691 2803 5.100000 +691 2809 5.100000 +691 2848 5.100000 +691 2861 5.100000 +691 2964 5.100000 +691 2966 5.100000 +691 3068 5.100000 +691 3086 5.100000 +691 3091 5.100000 +691 3127 5.100000 +691 3168 5.100000 +692 102 5.100000 +692 135 5.100000 +692 139 5.100000 +692 284 5.100000 +692 298 5.100000 +692 317 5.100000 +692 342 5.100000 +692 364 5.100000 +692 443 5.100000 +692 469 5.100000 +692 512 5.100000 +692 615 5.100000 +692 641 5.100000 +692 650 5.100000 +692 661 5.100000 +692 701 5.100000 +692 856 5.100000 +692 952 5.100000 +692 1078 5.100000 +692 1095 5.100000 +692 1108 5.100000 +692 1127 5.100000 +692 1172 5.100000 +692 1239 5.100000 +692 1476 5.100000 +692 1502 5.100000 +692 1524 5.100000 +692 1544 5.100000 +692 1560 5.100000 +692 1561 5.100000 +692 1570 5.100000 +692 1588 5.100000 +692 1608 5.100000 +692 1641 5.100000 +692 1744 5.100000 +692 1836 5.100000 +692 1984 5.100000 +692 2043 5.100000 +692 2047 5.100000 +692 2076 5.100000 +692 2180 5.100000 +692 2255 5.100000 +692 2264 5.100000 +692 2297 5.100000 +692 2310 5.100000 +692 2369 5.100000 +692 2374 5.100000 +692 2384 5.100000 +692 2439 5.100000 +692 2467 5.100000 +692 2508 5.100000 +692 2612 5.100000 +692 2651 5.100000 +692 2676 5.100000 +692 2714 5.100000 +692 2770 5.100000 +692 2848 5.100000 +692 2903 5.100000 +692 2953 5.100000 +692 2976 5.100000 +692 2996 5.100000 +692 3098 5.100000 +692 3127 5.100000 +692 3134 5.100000 +693 53 5.100000 +693 93 5.100000 +693 154 5.100000 +693 194 5.100000 +693 197 5.100000 +693 210 5.100000 +693 219 5.100000 +693 248 5.100000 +693 255 5.100000 +693 262 5.100000 +693 296 5.100000 +693 318 5.100000 +693 358 5.100000 +693 371 5.100000 +693 372 5.100000 +693 402 5.100000 +693 403 5.100000 +693 502 5.100000 +693 525 5.100000 +693 552 5.100000 +693 616 5.100000 +693 771 5.100000 +693 804 5.100000 +693 853 5.100000 +693 949 5.100000 +693 963 5.100000 +693 998 5.100000 +693 1248 5.100000 +693 1281 5.100000 +693 1298 5.100000 +693 1333 5.100000 +693 1349 5.100000 +693 1365 5.100000 +693 1386 5.100000 +693 1387 5.100000 +693 1420 5.100000 +693 1465 5.100000 +693 1500 5.100000 +693 1510 5.100000 +693 1560 5.100000 +693 1607 5.100000 +693 1847 5.100000 +693 1849 5.100000 +693 1918 5.100000 +693 1949 5.100000 +693 1991 5.100000 +693 2057 5.100000 +693 2060 5.100000 +693 2111 5.100000 +693 2164 5.100000 +693 2204 5.100000 +693 2321 5.100000 +693 2351 5.100000 +693 2387 5.100000 +693 2388 5.100000 +693 2400 5.100000 +693 2446 5.100000 +693 2492 5.100000 +693 2638 5.100000 +693 2744 5.100000 +693 2777 5.100000 +693 2818 5.100000 +693 2997 5.100000 +693 3071 5.100000 +693 3091 5.100000 +693 3103 5.100000 +693 3128 5.100000 +693 3136 5.100000 +693 3138 5.100000 +693 3179 5.100000 +693 3185 5.100000 +694 13 5.100000 +694 113 5.100000 +694 124 5.100000 +694 140 5.100000 +694 196 5.100000 +694 398 5.100000 +694 499 5.100000 +694 526 5.100000 +694 534 5.100000 +694 580 5.100000 +694 624 5.100000 +694 645 5.100000 +694 667 5.100000 +694 737 5.100000 +694 804 5.100000 +694 822 5.100000 +694 851 5.100000 +694 871 5.100000 +694 900 5.100000 +694 957 5.100000 +694 1009 5.100000 +694 1024 5.100000 +694 1094 5.100000 +694 1139 5.100000 +694 1164 5.100000 +694 1184 5.100000 +694 1199 5.100000 +694 1260 5.100000 +694 1466 5.100000 +694 1479 5.100000 +694 1484 5.100000 +694 1493 5.100000 +694 1592 5.100000 +694 1598 5.100000 +694 1619 5.100000 +694 1678 5.100000 +694 1763 5.100000 +694 1770 5.100000 +694 1772 5.100000 +694 1878 5.100000 +694 1975 5.100000 +694 2070 5.100000 +694 2152 5.100000 +694 2171 5.100000 +694 2183 5.100000 +694 2193 5.100000 +694 2223 5.100000 +694 2247 5.100000 +694 2266 5.100000 +694 2431 5.100000 +694 2447 5.100000 +694 2622 5.100000 +694 2699 5.100000 +694 2747 5.100000 +694 2779 5.100000 +694 2782 5.100000 +694 2895 5.100000 +694 2934 5.100000 +694 2952 5.100000 +694 3067 5.100000 +694 3147 5.100000 +694 3167 5.100000 +695 9 5.100000 +695 47 5.100000 +695 106 5.100000 +695 136 5.100000 +695 193 5.100000 +695 250 5.100000 +695 277 5.100000 +695 419 5.100000 +695 462 5.100000 +695 535 5.100000 +695 581 5.100000 +695 688 5.100000 +695 703 5.100000 +695 763 5.100000 +695 825 5.100000 +695 873 5.100000 +695 1075 5.100000 +695 1098 5.100000 +695 1146 5.100000 +695 1316 5.100000 +695 1340 5.100000 +695 1407 5.100000 +695 1414 5.100000 +695 1484 5.100000 +695 1503 5.100000 +695 1622 5.100000 +695 1665 5.100000 +695 1680 5.100000 +695 1769 5.100000 +695 1787 5.100000 +695 1791 5.100000 +695 1797 5.100000 +695 1932 5.100000 +695 1942 5.100000 +695 1950 5.100000 +695 1973 5.100000 +695 2208 5.100000 +695 2212 5.100000 +695 2226 5.100000 +695 2298 5.100000 +695 2311 5.100000 +695 2327 5.100000 +695 2377 5.100000 +695 2407 5.100000 +695 2465 5.100000 +695 2491 5.100000 +695 2593 5.100000 +695 2625 5.100000 +695 2711 5.100000 +695 2792 5.100000 +695 2808 5.100000 +695 2936 5.100000 +695 2979 5.100000 +695 3123 5.100000 +696 41 5.100000 +696 47 5.100000 +696 65 5.100000 +696 69 5.100000 +696 75 5.100000 +696 87 5.100000 +696 122 5.100000 +696 144 5.100000 +696 235 5.100000 +696 265 5.100000 +696 356 5.100000 +696 466 5.100000 +696 498 5.100000 +696 552 5.100000 +696 739 5.100000 +696 780 5.100000 +696 815 5.100000 +696 832 5.100000 +696 849 5.100000 +696 855 5.100000 +696 865 5.100000 +696 901 5.100000 +696 930 5.100000 +696 1067 5.100000 +696 1091 5.100000 +696 1141 5.100000 +696 1210 5.100000 +696 1225 5.100000 +696 1279 5.100000 +696 1354 5.100000 +696 1423 5.100000 +696 1429 5.100000 +696 1469 5.100000 +696 1602 5.100000 +696 1610 5.100000 +696 1644 5.100000 +696 1658 5.100000 +696 1674 5.100000 +696 1791 5.100000 +696 1826 5.100000 +696 1913 5.100000 +696 1934 5.100000 +696 1937 5.100000 +696 1971 5.100000 +696 1975 5.100000 +696 1989 5.100000 +696 2044 5.100000 +696 2102 5.100000 +696 2113 5.100000 +696 2118 5.100000 +696 2170 5.100000 +696 2249 5.100000 +696 2257 5.100000 +696 2282 5.100000 +696 2285 5.100000 +696 2287 5.100000 +696 2318 5.100000 +696 2347 5.100000 +696 2376 5.100000 +696 2392 5.100000 +696 2487 5.100000 +696 2489 5.100000 +696 2524 5.100000 +696 2535 5.100000 +696 2549 5.100000 +696 2582 5.100000 +696 2655 5.100000 +696 2699 5.100000 +696 2760 5.100000 +696 2770 5.100000 +696 2775 5.100000 +696 2818 5.100000 +696 2853 5.100000 +696 2869 5.100000 +696 2901 5.100000 +696 2918 5.100000 +696 3037 5.100000 +696 3143 5.100000 +697 103 5.100000 +697 135 5.100000 +697 145 5.100000 +697 162 5.100000 +697 231 5.100000 +697 273 5.100000 +697 514 5.100000 +697 531 5.100000 +697 599 5.100000 +697 704 5.100000 +697 722 5.100000 +697 768 5.100000 +697 834 5.100000 +697 910 5.100000 +697 918 5.100000 +697 923 5.100000 +697 936 5.100000 +697 949 5.100000 +697 979 5.100000 +697 1018 5.100000 +697 1026 5.100000 +697 1077 5.100000 +697 1109 5.100000 +697 1210 5.100000 +697 1235 5.100000 +697 1252 5.100000 +697 1380 5.100000 +697 1443 5.100000 +697 1483 5.100000 +697 1517 5.100000 +697 1532 5.100000 +697 1570 5.100000 +697 1578 5.100000 +697 1588 5.100000 +697 1639 5.100000 +697 1649 5.100000 +697 1766 5.100000 +697 1828 5.100000 +697 1858 5.100000 +697 1937 5.100000 +697 2190 5.100000 +697 2210 5.100000 +697 2401 5.100000 +697 2416 5.100000 +697 2425 5.100000 +697 2494 5.100000 +697 2500 5.100000 +697 2555 5.100000 +697 2556 5.100000 +697 2567 5.100000 +697 2568 5.100000 +697 2626 5.100000 +697 2645 5.100000 +697 2661 5.100000 +697 2840 5.100000 +697 2857 5.100000 +697 2887 5.100000 +697 2942 5.100000 +697 3033 5.100000 +697 3092 5.100000 +697 3134 5.100000 +697 3194 5.100000 +698 70 5.100000 +698 79 5.100000 +698 118 5.100000 +698 137 5.100000 +698 197 5.100000 +698 286 5.100000 +698 302 5.100000 +698 336 5.100000 +698 346 5.100000 +698 384 5.100000 +698 456 5.100000 +698 477 5.100000 +698 502 5.100000 +698 509 5.100000 +698 610 5.100000 +698 678 5.100000 +698 760 5.100000 +698 781 5.100000 +698 782 5.100000 +698 838 5.100000 +698 892 5.100000 +698 945 5.100000 +698 1111 5.100000 +698 1116 5.100000 +698 1235 5.100000 +698 1265 5.100000 +698 1299 5.100000 +698 1308 5.100000 +698 1461 5.100000 +698 1514 5.100000 +698 1523 5.100000 +698 1596 5.100000 +698 1762 5.100000 +698 1776 5.100000 +698 1779 5.100000 +698 1854 5.100000 +698 1856 5.100000 +698 1868 5.100000 +698 1894 5.100000 +698 1929 5.100000 +698 2008 5.100000 +698 2096 5.100000 +698 2179 5.100000 +698 2210 5.100000 +698 2380 5.100000 +698 2409 5.100000 +698 2564 5.100000 +698 2626 5.100000 +698 2768 5.100000 +698 2774 5.100000 +698 2799 5.100000 +698 2896 5.100000 +698 2929 5.100000 +698 2977 5.100000 +698 2983 5.100000 +698 3061 5.100000 +698 3088 5.100000 +699 103 5.100000 +699 126 5.100000 +699 128 5.100000 +699 269 5.100000 +699 279 5.100000 +699 338 5.100000 +699 427 5.100000 +699 605 5.100000 +699 707 5.100000 +699 735 5.100000 +699 847 5.100000 +699 863 5.100000 +699 869 5.100000 +699 870 5.100000 +699 885 5.100000 +699 899 5.100000 +699 912 5.100000 +699 934 5.100000 +699 1007 5.100000 +699 1024 5.100000 +699 1065 5.100000 +699 1073 5.100000 +699 1255 5.100000 +699 1308 5.100000 +699 1392 5.100000 +699 1406 5.100000 +699 1456 5.100000 +699 1591 5.100000 +699 1626 5.100000 +699 1656 5.100000 +699 1659 5.100000 +699 1672 5.100000 +699 1777 5.100000 +699 1798 5.100000 +699 2056 5.100000 +699 2065 5.100000 +699 2074 5.100000 +699 2100 5.100000 +699 2118 5.100000 +699 2148 5.100000 +699 2152 5.100000 +699 2225 5.100000 +699 2267 5.100000 +699 2281 5.100000 +699 2283 5.100000 +699 2326 5.100000 +699 2358 5.100000 +699 2422 5.100000 +699 2426 5.100000 +699 2433 5.100000 +699 2466 5.100000 +699 2623 5.100000 +699 2632 5.100000 +699 2762 5.100000 +699 2771 5.100000 +699 2802 5.100000 +699 2816 5.100000 +699 2821 5.100000 +699 2876 5.100000 +699 2959 5.100000 +699 2980 5.100000 +699 3070 5.100000 +699 3125 5.100000 +699 3194 5.100000 +700 116 5.100000 +700 143 5.100000 +700 149 5.100000 +700 350 5.100000 +700 359 5.100000 +700 458 5.100000 +700 460 5.100000 +700 695 5.100000 +700 769 5.100000 +700 781 5.100000 +700 796 5.100000 +700 935 5.100000 +700 1041 5.100000 +700 1042 5.100000 +700 1069 5.100000 +700 1084 5.100000 +700 1249 5.100000 +700 1257 5.100000 +700 1309 5.100000 +700 1361 5.100000 +700 1442 5.100000 +700 1471 5.100000 +700 1583 5.100000 +700 1671 5.100000 +700 1746 5.100000 +700 1842 5.100000 +700 1873 5.100000 +700 1979 5.100000 +700 2022 5.100000 +700 2160 5.100000 +700 2186 5.100000 +700 2197 5.100000 +700 2236 5.100000 +700 2335 5.100000 +700 2384 5.100000 +700 2410 5.100000 +700 2425 5.100000 +700 2440 5.100000 +700 2512 5.100000 +700 2548 5.100000 +700 2579 5.100000 +700 2587 5.100000 +700 2604 5.100000 +700 2651 5.100000 +700 2673 5.100000 +700 2738 5.100000 +700 2784 5.100000 +700 2831 5.100000 +700 2848 5.100000 +700 2900 5.100000 +700 2944 5.100000 +700 2960 5.100000 +700 2999 5.100000 +700 3001 5.100000 +700 3004 5.100000 +700 3025 5.100000 +700 3028 5.100000 +700 3129 5.100000 +700 3171 5.100000 +700 3180 5.100000 +700 3182 5.100000 +701 18 5.100000 +701 19 5.100000 +701 48 5.100000 +701 257 5.100000 +701 320 5.100000 +701 422 5.100000 +701 442 5.100000 +701 595 5.100000 +701 672 5.100000 +701 686 5.100000 +701 755 5.100000 +701 785 5.100000 +701 847 5.100000 +701 861 5.100000 +701 1032 5.100000 +701 1033 5.100000 +701 1038 5.100000 +701 1075 5.100000 +701 1110 5.100000 +701 1114 5.100000 +701 1267 5.100000 +701 1403 5.100000 +701 1495 5.100000 +701 1611 5.100000 +701 1635 5.100000 +701 1653 5.100000 +701 1673 5.100000 +701 1675 5.100000 +701 1709 5.100000 +701 1712 5.100000 +701 1862 5.100000 +701 1934 5.100000 +701 2004 5.100000 +701 2046 5.100000 +701 2167 5.100000 +701 2376 5.100000 +701 2499 5.100000 +701 2510 5.100000 +701 2622 5.100000 +701 2704 5.100000 +701 2803 5.100000 +701 2904 5.100000 +701 2905 5.100000 +701 3017 5.100000 +701 3080 5.100000 +701 3085 5.100000 +701 3098 5.100000 +701 3105 5.100000 +701 3135 5.100000 +701 3156 5.100000 +701 3180 5.100000 +701 3193 5.100000 +702 28 5.100000 +702 67 5.100000 +702 87 5.100000 +702 187 5.100000 +702 374 5.100000 +702 386 5.100000 +702 498 5.100000 +702 535 5.100000 +702 669 5.100000 +702 677 5.100000 +702 691 5.100000 +702 703 5.100000 +702 720 5.100000 +702 763 5.100000 +702 765 5.100000 +702 807 5.100000 +702 982 5.100000 +702 1069 5.100000 +702 1121 5.100000 +702 1166 5.100000 +702 1183 5.100000 +702 1192 5.100000 +702 1261 5.100000 +702 1288 5.100000 +702 1295 5.100000 +702 1425 5.100000 +702 1457 5.100000 +702 1538 5.100000 +702 1563 5.100000 +702 1576 5.100000 +702 1590 5.100000 +702 1616 5.100000 +702 1645 5.100000 +702 1664 5.100000 +702 1726 5.100000 +702 1743 5.100000 +702 1751 5.100000 +702 1760 5.100000 +702 1763 5.100000 +702 1789 5.100000 +702 1880 5.100000 +702 1913 5.100000 +702 1956 5.100000 +702 2082 5.100000 +702 2097 5.100000 +702 2116 5.100000 +702 2144 5.100000 +702 2169 5.100000 +702 2172 5.100000 +702 2227 5.100000 +702 2369 5.100000 +702 2407 5.100000 +702 2414 5.100000 +702 2473 5.100000 +702 2510 5.100000 +702 2538 5.100000 +702 2568 5.100000 +702 2672 5.100000 +702 2795 5.100000 +702 2854 5.100000 +702 2878 5.100000 +702 2896 5.100000 +702 3089 5.100000 +702 3097 5.100000 +702 3111 5.100000 +702 3125 5.100000 +703 46 5.100000 +703 141 5.100000 +703 211 5.100000 +703 245 5.100000 +703 287 5.100000 +703 294 5.100000 +703 312 5.100000 +703 316 5.100000 +703 375 5.100000 +703 426 5.100000 +703 521 5.100000 +703 528 5.100000 +703 649 5.100000 +703 675 5.100000 +703 692 5.100000 +703 778 5.100000 +703 788 5.100000 +703 792 5.100000 +703 887 5.100000 +703 1010 5.100000 +703 1056 5.100000 +703 1161 5.100000 +703 1303 5.100000 +703 1308 5.100000 +703 1363 5.100000 +703 1405 5.100000 +703 1538 5.100000 +703 1544 5.100000 +703 1647 5.100000 +703 1671 5.100000 +703 1691 5.100000 +703 1721 5.100000 +703 1797 5.100000 +703 1864 5.100000 +703 1896 5.100000 +703 2074 5.100000 +703 2153 5.100000 +703 2252 5.100000 +703 2350 5.100000 +703 2371 5.100000 +703 2379 5.100000 +703 2391 5.100000 +703 2398 5.100000 +703 2430 5.100000 +703 2515 5.100000 +703 2553 5.100000 +703 2661 5.100000 +703 2697 5.100000 +703 2709 5.100000 +703 2752 5.100000 +703 2778 5.100000 +703 2888 5.100000 +703 2889 5.100000 +703 2977 5.100000 +703 2986 5.100000 +703 3027 5.100000 +703 3040 5.100000 +703 3043 5.100000 +703 3135 5.100000 +704 32 5.100000 +704 345 5.100000 +704 351 5.100000 +704 386 5.100000 +704 409 5.100000 +704 410 5.100000 +704 478 5.100000 +704 569 5.100000 +704 654 5.100000 +704 670 5.100000 +704 688 5.100000 +704 765 5.100000 +704 815 5.100000 +704 962 5.100000 +704 1046 5.100000 +704 1116 5.100000 +704 1150 5.100000 +704 1310 5.100000 +704 1331 5.100000 +704 1374 5.100000 +704 1391 5.100000 +704 1419 5.100000 +704 1469 5.100000 +704 1542 5.100000 +704 1606 5.100000 +704 1747 5.100000 +704 1753 5.100000 +704 1833 5.100000 +704 1911 5.100000 +704 2027 5.100000 +704 2146 5.100000 +704 2151 5.100000 +704 2223 5.100000 +704 2246 5.100000 +704 2263 5.100000 +704 2340 5.100000 +704 2465 5.100000 +704 2565 5.100000 +704 2589 5.100000 +704 2632 5.100000 +704 2654 5.100000 +704 2681 5.100000 +704 2692 5.100000 +704 2757 5.100000 +704 2809 5.100000 +704 3091 5.100000 +704 3094 5.100000 +704 3183 5.100000 +705 22 5.100000 +705 63 5.100000 +705 71 5.100000 +705 141 5.100000 +705 235 5.100000 +705 239 5.100000 +705 244 5.100000 +705 255 5.100000 +705 362 5.100000 +705 404 5.100000 +705 454 5.100000 +705 590 5.100000 +705 729 5.100000 +705 783 5.100000 +705 839 5.100000 +705 898 5.100000 +705 1065 5.100000 +705 1095 5.100000 +705 1201 5.100000 +705 1308 5.100000 +705 1312 5.100000 +705 1344 5.100000 +705 1397 5.100000 +705 1429 5.100000 +705 1497 5.100000 +705 1550 5.100000 +705 1616 5.100000 +705 1638 5.100000 +705 1780 5.100000 +705 1842 5.100000 +705 1844 5.100000 +705 1923 5.100000 +705 2001 5.100000 +705 2088 5.100000 +705 2105 5.100000 +705 2168 5.100000 +705 2175 5.100000 +705 2176 5.100000 +705 2209 5.100000 +705 2378 5.100000 +705 2385 5.100000 +705 2467 5.100000 +705 2484 5.100000 +705 2541 5.100000 +705 2564 5.100000 +705 2570 5.100000 +705 2614 5.100000 +705 2669 5.100000 +705 2769 5.100000 +705 2838 5.100000 +705 2871 5.100000 +705 2923 5.100000 +705 2933 5.100000 +705 2960 5.100000 +705 3039 5.100000 +705 3068 5.100000 +705 3094 5.100000 +706 28 5.100000 +706 46 5.100000 +706 169 5.100000 +706 259 5.100000 +706 277 5.100000 +706 357 5.100000 +706 386 5.100000 +706 490 5.100000 +706 503 5.100000 +706 575 5.100000 +706 582 5.100000 +706 626 5.100000 +706 650 5.100000 +706 665 5.100000 +706 696 5.100000 +706 735 5.100000 +706 771 5.100000 +706 847 5.100000 +706 863 5.100000 +706 955 5.100000 +706 1028 5.100000 +706 1061 5.100000 +706 1091 5.100000 +706 1177 5.100000 +706 1247 5.100000 +706 1288 5.100000 +706 1337 5.100000 +706 1345 5.100000 +706 1357 5.100000 +706 1358 5.100000 +706 1367 5.100000 +706 1382 5.100000 +706 1402 5.100000 +706 1471 5.100000 +706 1497 5.100000 +706 1519 5.100000 +706 1526 5.100000 +706 1574 5.100000 +706 1579 5.100000 +706 1611 5.100000 +706 1885 5.100000 +706 1936 5.100000 +706 1954 5.100000 +706 1963 5.100000 +706 2022 5.100000 +706 2123 5.100000 +706 2144 5.100000 +706 2174 5.100000 +706 2181 5.100000 +706 2197 5.100000 +706 2230 5.100000 +706 2293 5.100000 +706 2384 5.100000 +706 2410 5.100000 +706 2412 5.100000 +706 2552 5.100000 +706 2557 5.100000 +706 2567 5.100000 +706 2620 5.100000 +706 2662 5.100000 +706 2679 5.100000 +706 2681 5.100000 +706 2753 5.100000 +706 2775 5.100000 +706 2798 5.100000 +706 2825 5.100000 +706 2834 5.100000 +706 2895 5.100000 +706 2972 5.100000 +706 3001 5.100000 +706 3020 5.100000 +706 3148 5.100000 +706 3178 5.100000 +706 3194 5.100000 +707 18 5.100000 +707 19 5.100000 +707 157 5.100000 +707 215 5.100000 +707 410 5.100000 +707 487 5.100000 +707 498 5.100000 +707 579 5.100000 +707 601 5.100000 +707 604 5.100000 +707 630 5.100000 +707 652 5.100000 +707 846 5.100000 +707 891 5.100000 +707 949 5.100000 +707 957 5.100000 +707 989 5.100000 +707 998 5.100000 +707 1000 5.100000 +707 1069 5.100000 +707 1096 5.100000 +707 1195 5.100000 +707 1240 5.100000 +707 1381 5.100000 +707 1407 5.100000 +707 1432 5.100000 +707 1459 5.100000 +707 1470 5.100000 +707 1483 5.100000 +707 1660 5.100000 +707 1685 5.100000 +707 1706 5.100000 +707 1724 5.100000 +707 1737 5.100000 +707 1764 5.100000 +707 1844 5.100000 +707 1871 5.100000 +707 1896 5.100000 +707 2051 5.100000 +707 2091 5.100000 +707 2139 5.100000 +707 2162 5.100000 +707 2249 5.100000 +707 2290 5.100000 +707 2419 5.100000 +707 2429 5.100000 +707 2482 5.100000 +707 2504 5.100000 +707 2548 5.100000 +707 2591 5.100000 +707 2639 5.100000 +707 2653 5.100000 +707 2691 5.100000 +707 2745 5.100000 +707 2777 5.100000 +707 2781 5.100000 +707 2786 5.100000 +707 2792 5.100000 +707 2883 5.100000 +707 2902 5.100000 +707 2966 5.100000 +707 2990 5.100000 +707 3000 5.100000 +707 3029 5.100000 +707 3077 5.100000 +707 3135 5.100000 +707 3186 5.100000 +708 15 5.100000 +708 99 5.100000 +708 146 5.100000 +708 303 5.100000 +708 367 5.100000 +708 380 5.100000 +708 389 5.100000 +708 454 5.100000 +708 495 5.100000 +708 506 5.100000 +708 528 5.100000 +708 596 5.100000 +708 615 5.100000 +708 695 5.100000 +708 733 5.100000 +708 851 5.100000 +708 922 5.100000 +708 977 5.100000 +708 1066 5.100000 +708 1073 5.100000 +708 1075 5.100000 +708 1096 5.100000 +708 1109 5.100000 +708 1154 5.100000 +708 1227 5.100000 +708 1342 5.100000 +708 1349 5.100000 +708 1366 5.100000 +708 1397 5.100000 +708 1435 5.100000 +708 1520 5.100000 +708 1569 5.100000 +708 1572 5.100000 +708 1609 5.100000 +708 1647 5.100000 +708 1660 5.100000 +708 1773 5.100000 +708 1819 5.100000 +708 1856 5.100000 +708 1945 5.100000 +708 1961 5.100000 +708 1977 5.100000 +708 2015 5.100000 +708 2016 5.100000 +708 2029 5.100000 +708 2043 5.100000 +708 2091 5.100000 +708 2201 5.100000 +708 2267 5.100000 +708 2296 5.100000 +708 2423 5.100000 +708 2464 5.100000 +708 2602 5.100000 +708 2605 5.100000 +708 2685 5.100000 +708 2690 5.100000 +708 2708 5.100000 +708 2733 5.100000 +708 2876 5.100000 +708 2892 5.100000 +708 2909 5.100000 +708 2935 5.100000 +708 3009 5.100000 +708 3015 5.100000 +708 3125 5.100000 +708 3159 5.100000 +708 3164 5.100000 +708 3182 5.100000 +708 3197 5.100000 +709 13 5.100000 +709 224 5.100000 +709 297 5.100000 +709 298 5.100000 +709 303 5.100000 +709 347 5.100000 +709 452 5.100000 +709 462 5.100000 +709 475 5.100000 +709 540 5.100000 +709 550 5.100000 +709 651 5.100000 +709 675 5.100000 +709 682 5.100000 +709 716 5.100000 +709 735 5.100000 +709 763 5.100000 +709 799 5.100000 +709 838 5.100000 +709 871 5.100000 +709 889 5.100000 +709 893 5.100000 +709 909 5.100000 +709 922 5.100000 +709 930 5.100000 +709 952 5.100000 +709 1026 5.100000 +709 1106 5.100000 +709 1194 5.100000 +709 1216 5.100000 +709 1314 5.100000 +709 1367 5.100000 +709 1369 5.100000 +709 1381 5.100000 +709 1452 5.100000 +709 1503 5.100000 +709 1507 5.100000 +709 1543 5.100000 +709 1565 5.100000 +709 1634 5.100000 +709 1644 5.100000 +709 1709 5.100000 +709 1777 5.100000 +709 1827 5.100000 +709 1839 5.100000 +709 1857 5.100000 +709 1868 5.100000 +709 2099 5.100000 +709 2108 5.100000 +709 2112 5.100000 +709 2156 5.100000 +709 2169 5.100000 +709 2252 5.100000 +709 2317 5.100000 +709 2352 5.100000 +709 2404 5.100000 +709 2443 5.100000 +709 2570 5.100000 +709 2573 5.100000 +709 2656 5.100000 +709 2686 5.100000 +709 2970 5.100000 +709 2979 5.100000 +709 3048 5.100000 +709 3077 5.100000 +710 3 5.100000 +710 138 5.100000 +710 148 5.100000 +710 390 5.100000 +710 573 5.100000 +710 582 5.100000 +710 674 5.100000 +710 755 5.100000 +710 826 5.100000 +710 827 5.100000 +710 834 5.100000 +710 860 5.100000 +710 921 5.100000 +710 945 5.100000 +710 957 5.100000 +710 1069 5.100000 +710 1086 5.100000 +710 1239 5.100000 +710 1254 5.100000 +710 1333 5.100000 +710 1397 5.100000 +710 1503 5.100000 +710 1611 5.100000 +710 1668 5.100000 +710 1729 5.100000 +710 1758 5.100000 +710 1759 5.100000 +710 1806 5.100000 +710 1836 5.100000 +710 1985 5.100000 +710 1995 5.100000 +710 2099 5.100000 +710 2102 5.100000 +710 2152 5.100000 +710 2162 5.100000 +710 2203 5.100000 +710 2205 5.100000 +710 2255 5.100000 +710 2292 5.100000 +710 2403 5.100000 +710 2407 5.100000 +710 2440 5.100000 +710 2449 5.100000 +710 2458 5.100000 +710 2486 5.100000 +710 2487 5.100000 +710 2495 5.100000 +710 2645 5.100000 +710 2658 5.100000 +710 2702 5.100000 +710 2731 5.100000 +710 2804 5.100000 +710 2822 5.100000 +710 2843 5.100000 +710 2883 5.100000 +710 2980 5.100000 +710 3063 5.100000 +710 3069 5.100000 +710 3112 5.100000 +710 3116 5.100000 +710 3192 5.100000 +711 53 5.100000 +711 54 5.100000 +711 94 5.100000 +711 102 5.100000 +711 187 5.100000 +711 244 5.100000 +711 273 5.100000 +711 327 5.100000 +711 328 5.100000 +711 348 5.100000 +711 388 5.100000 +711 459 5.100000 +711 468 5.100000 +711 472 5.100000 +711 498 5.100000 +711 556 5.100000 +711 558 5.100000 +711 575 5.100000 +711 618 5.100000 +711 655 5.100000 +711 684 5.100000 +711 700 5.100000 +711 705 5.100000 +711 742 5.100000 +711 748 5.100000 +711 773 5.100000 +711 840 5.100000 +711 842 5.100000 +711 907 5.100000 +711 988 5.100000 +711 1006 5.100000 +711 1029 5.100000 +711 1041 5.100000 +711 1111 5.100000 +711 1151 5.100000 +711 1216 5.100000 +711 1226 5.100000 +711 1301 5.100000 +711 1408 5.100000 +711 1444 5.100000 +711 1445 5.100000 +711 1478 5.100000 +711 1495 5.100000 +711 1503 5.100000 +711 1576 5.100000 +711 1663 5.100000 +711 1724 5.100000 +711 1845 5.100000 +711 1888 5.100000 +711 1910 5.100000 +711 1975 5.100000 +711 1978 5.100000 +711 1987 5.100000 +711 2014 5.100000 +711 2027 5.100000 +711 2038 5.100000 +711 2046 5.100000 +711 2060 5.100000 +711 2110 5.100000 +711 2151 5.100000 +711 2197 5.100000 +711 2226 5.100000 +711 2339 5.100000 +711 2553 5.100000 +711 2637 5.100000 +711 2670 5.100000 +711 2717 5.100000 +711 2777 5.100000 +711 2884 5.100000 +711 2907 5.100000 +711 2939 5.100000 +711 2950 5.100000 +711 3016 5.100000 +711 3111 5.100000 +712 19 5.100000 +712 87 5.100000 +712 186 5.100000 +712 227 5.100000 +712 239 5.100000 +712 258 5.100000 +712 286 5.100000 +712 354 5.100000 +712 383 5.100000 +712 419 5.100000 +712 443 5.100000 +712 446 5.100000 +712 551 5.100000 +712 568 5.100000 +712 585 5.100000 +712 621 5.100000 +712 642 5.100000 +712 654 5.100000 +712 678 5.100000 +712 826 5.100000 +712 868 5.100000 +712 883 5.100000 +712 884 5.100000 +712 918 5.100000 +712 991 5.100000 +712 995 5.100000 +712 1069 5.100000 +712 1168 5.100000 +712 1189 5.100000 +712 1191 5.100000 +712 1203 5.100000 +712 1204 5.100000 +712 1242 5.100000 +712 1362 5.100000 +712 1363 5.100000 +712 1509 5.100000 +712 1563 5.100000 +712 1603 5.100000 +712 1607 5.100000 +712 1632 5.100000 +712 1753 5.100000 +712 1834 5.100000 +712 1862 5.100000 +712 1900 5.100000 +712 2064 5.100000 +712 2068 5.100000 +712 2110 5.100000 +712 2171 5.100000 +712 2198 5.100000 +712 2217 5.100000 +712 2250 5.100000 +712 2291 5.100000 +712 2296 5.100000 +712 2337 5.100000 +712 2419 5.100000 +712 2452 5.100000 +712 2471 5.100000 +712 2550 5.100000 +712 2558 5.100000 +712 2599 5.100000 +712 2749 5.100000 +712 2789 5.100000 +712 2936 5.100000 +712 2975 5.100000 +712 2999 5.100000 +712 3123 5.100000 +712 3150 5.100000 +713 7 5.100000 +713 20 5.100000 +713 353 5.100000 +713 404 5.100000 +713 434 5.100000 +713 446 5.100000 +713 461 5.100000 +713 495 5.100000 +713 682 5.100000 +713 760 5.100000 +713 799 5.100000 +713 811 5.100000 +713 944 5.100000 +713 949 5.100000 +713 999 5.100000 +713 1053 5.100000 +713 1080 5.100000 +713 1086 5.100000 +713 1114 5.100000 +713 1116 5.100000 +713 1140 5.100000 +713 1180 5.100000 +713 1182 5.100000 +713 1189 5.100000 +713 1227 5.100000 +713 1307 5.100000 +713 1314 5.100000 +713 1337 5.100000 +713 1351 5.100000 +713 1440 5.100000 +713 1454 5.100000 +713 1474 5.100000 +713 1476 5.100000 +713 1551 5.100000 +713 1562 5.100000 +713 1670 5.100000 +713 1694 5.100000 +713 1791 5.100000 +713 1839 5.100000 +713 1847 5.100000 +713 1859 5.100000 +713 1927 5.100000 +713 1968 5.100000 +713 2056 5.100000 +713 2093 5.100000 +713 2135 5.100000 +713 2176 5.100000 +713 2181 5.100000 +713 2217 5.100000 +713 2245 5.100000 +713 2271 5.100000 +713 2386 5.100000 +713 2470 5.100000 +713 2480 5.100000 +713 2500 5.100000 +713 2517 5.100000 +713 2554 5.100000 +713 2563 5.100000 +713 2602 5.100000 +713 2637 5.100000 +713 2696 5.100000 +713 2700 5.100000 +713 2765 5.100000 +713 2811 5.100000 +713 2846 5.100000 +713 3006 5.100000 +713 3013 5.100000 +713 3059 5.100000 +713 3197 5.100000 +714 1 5.100000 +714 37 5.100000 +714 90 5.100000 +714 154 5.100000 +714 157 5.100000 +714 249 5.100000 +714 273 5.100000 +714 279 5.100000 +714 299 5.100000 +714 312 5.100000 +714 335 5.100000 +714 494 5.100000 +714 514 5.100000 +714 565 5.100000 +714 597 5.100000 +714 720 5.100000 +714 794 5.100000 +714 847 5.100000 +714 870 5.100000 +714 1038 5.100000 +714 1223 5.100000 +714 1225 5.100000 +714 1299 5.100000 +714 1307 5.100000 +714 1352 5.100000 +714 1404 5.100000 +714 1406 5.100000 +714 1411 5.100000 +714 1515 5.100000 +714 1541 5.100000 +714 1565 5.100000 +714 1692 5.100000 +714 1777 5.100000 +714 1848 5.100000 +714 1898 5.100000 +714 1911 5.100000 +714 1951 5.100000 +714 1960 5.100000 +714 2090 5.100000 +714 2163 5.100000 +714 2182 5.100000 +714 2282 5.100000 +714 2440 5.100000 +714 2485 5.100000 +714 2581 5.100000 +714 2598 5.100000 +714 2615 5.100000 +714 2622 5.100000 +714 2639 5.100000 +714 2666 5.100000 +714 2796 5.100000 +714 2902 5.100000 +714 2929 5.100000 +714 3008 5.100000 +714 3013 5.100000 +714 3036 5.100000 +714 3059 5.100000 +714 3078 5.100000 +714 3089 5.100000 +714 3094 5.100000 +714 3123 5.100000 +714 3141 5.100000 +714 3164 5.100000 +715 52 5.100000 +715 98 5.100000 +715 174 5.100000 +715 397 5.100000 +715 442 5.100000 +715 500 5.100000 +715 502 5.100000 +715 596 5.100000 +715 638 5.100000 +715 660 5.100000 +715 672 5.100000 +715 734 5.100000 +715 825 5.100000 +715 837 5.100000 +715 874 5.100000 +715 877 5.100000 +715 879 5.100000 +715 966 5.100000 +715 968 5.100000 +715 989 5.100000 +715 1012 5.100000 +715 1040 5.100000 +715 1071 5.100000 +715 1093 5.100000 +715 1114 5.100000 +715 1129 5.100000 +715 1135 5.100000 +715 1239 5.100000 +715 1269 5.100000 +715 1296 5.100000 +715 1404 5.100000 +715 1439 5.100000 +715 1458 5.100000 +715 1498 5.100000 +715 1529 5.100000 +715 1554 5.100000 +715 1587 5.100000 +715 1656 5.100000 +715 1713 5.100000 +715 1761 5.100000 +715 1767 5.100000 +715 1775 5.100000 +715 1796 5.100000 +715 2020 5.100000 +715 2077 5.100000 +715 2120 5.100000 +715 2170 5.100000 +715 2201 5.100000 +715 2243 5.100000 +715 2298 5.100000 +715 2311 5.100000 +715 2323 5.100000 +715 2324 5.100000 +715 2373 5.100000 +715 2381 5.100000 +715 2520 5.100000 +715 2522 5.100000 +715 2546 5.100000 +715 2614 5.100000 +715 2626 5.100000 +715 2628 5.100000 +715 2675 5.100000 +715 2745 5.100000 +715 2800 5.100000 +715 2834 5.100000 +715 2848 5.100000 +715 2938 5.100000 +715 2950 5.100000 +715 2962 5.100000 +715 3038 5.100000 +715 3077 5.100000 +715 3103 5.100000 +715 3104 5.100000 +715 3135 5.100000 +715 3138 5.100000 +715 3149 5.100000 +715 3181 5.100000 +716 37 5.100000 +716 193 5.100000 +716 220 5.100000 +716 289 5.100000 +716 372 5.100000 +716 382 5.100000 +716 471 5.100000 +716 490 5.100000 +716 600 5.100000 +716 603 5.100000 +716 612 5.100000 +716 764 5.100000 +716 791 5.100000 +716 937 5.100000 +716 973 5.100000 +716 1062 5.100000 +716 1076 5.100000 +716 1200 5.100000 +716 1206 5.100000 +716 1228 5.100000 +716 1292 5.100000 +716 1381 5.100000 +716 1406 5.100000 +716 1409 5.100000 +716 1429 5.100000 +716 1475 5.100000 +716 1509 5.100000 +716 1530 5.100000 +716 1545 5.100000 +716 1827 5.100000 +716 1846 5.100000 +716 1882 5.100000 +716 1926 5.100000 +716 1980 5.100000 +716 1998 5.100000 +716 2026 5.100000 +716 2064 5.100000 +716 2082 5.100000 +716 2083 5.100000 +716 2171 5.100000 +716 2229 5.100000 +716 2234 5.100000 +716 2238 5.100000 +716 2337 5.100000 +716 2394 5.100000 +716 2426 5.100000 +716 2587 5.100000 +716 2592 5.100000 +716 2636 5.100000 +716 2654 5.100000 +716 2750 5.100000 +716 2806 5.100000 +716 2841 5.100000 +716 2876 5.100000 +716 2881 5.100000 +716 2934 5.100000 +716 2990 5.100000 +716 3101 5.100000 +717 27 5.100000 +717 38 5.100000 +717 42 5.100000 +717 55 5.100000 +717 60 5.100000 +717 65 5.100000 +717 154 5.100000 +717 206 5.100000 +717 310 5.100000 +717 335 5.100000 +717 341 5.100000 +717 362 5.100000 +717 388 5.100000 +717 484 5.100000 +717 629 5.100000 +717 644 5.100000 +717 693 5.100000 +717 708 5.100000 +717 713 5.100000 +717 784 5.100000 +717 907 5.100000 +717 947 5.100000 +717 1003 5.100000 +717 1025 5.100000 +717 1229 5.100000 +717 1257 5.100000 +717 1357 5.100000 +717 1443 5.100000 +717 1569 5.100000 +717 1601 5.100000 +717 1687 5.100000 +717 1714 5.100000 +717 1744 5.100000 +717 1763 5.100000 +717 1767 5.100000 +717 1908 5.100000 +717 1912 5.100000 +717 1926 5.100000 +717 1929 5.100000 +717 1944 5.100000 +717 1966 5.100000 +717 1970 5.100000 +717 2029 5.100000 +717 2052 5.100000 +717 2152 5.100000 +717 2227 5.100000 +717 2334 5.100000 +717 2336 5.100000 +717 2368 5.100000 +717 2372 5.100000 +717 2392 5.100000 +717 2395 5.100000 +717 2400 5.100000 +717 2435 5.100000 +717 2438 5.100000 +717 2448 5.100000 +717 2484 5.100000 +717 2531 5.100000 +717 2591 5.100000 +717 2596 5.100000 +717 2612 5.100000 +717 2624 5.100000 +717 2724 5.100000 +717 2745 5.100000 +717 2777 5.100000 +717 2795 5.100000 +717 2813 5.100000 +717 2846 5.100000 +717 2873 5.100000 +717 2984 5.100000 +717 3004 5.100000 +717 3149 5.100000 +717 3186 5.100000 +717 3191 5.100000 +718 27 5.100000 +718 35 5.100000 +718 55 5.100000 +718 66 5.100000 +718 82 5.100000 +718 85 5.100000 +718 100 5.100000 +718 180 5.100000 +718 217 5.100000 +718 354 5.100000 +718 366 5.100000 +718 379 5.100000 +718 384 5.100000 +718 462 5.100000 +718 581 5.100000 +718 611 5.100000 +718 630 5.100000 +718 644 5.100000 +718 712 5.100000 +718 751 5.100000 +718 893 5.100000 +718 1013 5.100000 +718 1029 5.100000 +718 1084 5.100000 +718 1234 5.100000 +718 1252 5.100000 +718 1269 5.100000 +718 1351 5.100000 +718 1391 5.100000 +718 1429 5.100000 +718 1595 5.100000 +718 1650 5.100000 +718 1701 5.100000 +718 1739 5.100000 +718 1751 5.100000 +718 1801 5.100000 +718 1807 5.100000 +718 1961 5.100000 +718 1992 5.100000 +718 2003 5.100000 +718 2017 5.100000 +718 2053 5.100000 +718 2190 5.100000 +718 2243 5.100000 +718 2253 5.100000 +718 2357 5.100000 +718 2362 5.100000 +718 2390 5.100000 +718 2498 5.100000 +718 2539 5.100000 +718 2569 5.100000 +718 2602 5.100000 +718 2674 5.100000 +718 2708 5.100000 +718 2751 5.100000 +718 2786 5.100000 +718 2828 5.100000 +718 2857 5.100000 +718 2871 5.100000 +718 2984 5.100000 +718 2999 5.100000 +718 3072 5.100000 +718 3147 5.100000 +718 3159 5.100000 +718 3179 5.100000 +719 4 5.100000 +719 27 5.100000 +719 77 5.100000 +719 92 5.100000 +719 294 5.100000 +719 298 5.100000 +719 344 5.100000 +719 505 5.100000 +719 515 5.100000 +719 593 5.100000 +719 611 5.100000 +719 613 5.100000 +719 617 5.100000 +719 674 5.100000 +719 682 5.100000 +719 691 5.100000 +719 729 5.100000 +719 760 5.100000 +719 766 5.100000 +719 862 5.100000 +719 987 5.100000 +719 1093 5.100000 +719 1196 5.100000 +719 1242 5.100000 +719 1261 5.100000 +719 1330 5.100000 +719 1351 5.100000 +719 1410 5.100000 +719 1484 5.100000 +719 1609 5.100000 +719 1657 5.100000 +719 1863 5.100000 +719 1871 5.100000 +719 1915 5.100000 +719 1980 5.100000 +719 2112 5.100000 +719 2146 5.100000 +719 2207 5.100000 +719 2309 5.100000 +719 2320 5.100000 +719 2412 5.100000 +719 2435 5.100000 +719 2492 5.100000 +719 2518 5.100000 +719 2538 5.100000 +719 2596 5.100000 +719 2619 5.100000 +719 2717 5.100000 +719 2733 5.100000 +719 2866 5.100000 +719 2924 5.100000 +719 2942 5.100000 +719 2972 5.100000 +719 2979 5.100000 +719 3024 5.100000 +719 3054 5.100000 +719 3083 5.100000 +719 3134 5.100000 +719 3160 5.100000 +720 94 5.100000 +720 115 5.100000 +720 215 5.100000 +720 229 5.100000 +720 243 5.100000 +720 262 5.100000 +720 324 5.100000 +720 326 5.100000 +720 412 5.100000 +720 419 5.100000 +720 445 5.100000 +720 504 5.100000 +720 567 5.100000 +720 577 5.100000 +720 581 5.100000 +720 614 5.100000 +720 661 5.100000 +720 667 5.100000 +720 792 5.100000 +720 818 5.100000 +720 971 5.100000 +720 989 5.100000 +720 1028 5.100000 +720 1067 5.100000 +720 1071 5.100000 +720 1091 5.100000 +720 1106 5.100000 +720 1162 5.100000 +720 1177 5.100000 +720 1182 5.100000 +720 1309 5.100000 +720 1340 5.100000 +720 1408 5.100000 +720 1412 5.100000 +720 1480 5.100000 +720 1551 5.100000 +720 1644 5.100000 +720 1667 5.100000 +720 1677 5.100000 +720 1954 5.100000 +720 2040 5.100000 +720 2042 5.100000 +720 2095 5.100000 +720 2227 5.100000 +720 2285 5.100000 +720 2290 5.100000 +720 2447 5.100000 +720 2495 5.100000 +720 2563 5.100000 +720 2598 5.100000 +720 2642 5.100000 +720 2660 5.100000 +720 2684 5.100000 +720 2700 5.100000 +720 2723 5.100000 +720 2783 5.100000 +720 2808 5.100000 +720 2840 5.100000 +720 2879 5.100000 +720 2890 5.100000 +720 2919 5.100000 +720 3019 5.100000 +720 3071 5.100000 +720 3118 5.100000 +720 3131 5.100000 +720 3147 5.100000 +720 3193 5.100000 +720 3195 5.100000 +721 7 5.100000 +721 10 5.100000 +721 29 5.100000 +721 36 5.100000 +721 135 5.100000 +721 182 5.100000 +721 209 5.100000 +721 220 5.100000 +721 338 5.100000 +721 422 5.100000 +721 467 5.100000 +721 486 5.100000 +721 497 5.100000 +721 528 5.100000 +721 543 5.100000 +721 635 5.100000 +721 644 5.100000 +721 669 5.100000 +721 746 5.100000 +721 780 5.100000 +721 795 5.100000 +721 838 5.100000 +721 876 5.100000 +721 900 5.100000 +721 906 5.100000 +721 967 5.100000 +721 1055 5.100000 +721 1058 5.100000 +721 1150 5.100000 +721 1166 5.100000 +721 1246 5.100000 +721 1247 5.100000 +721 1463 5.100000 +721 1545 5.100000 +721 1547 5.100000 +721 1568 5.100000 +721 1664 5.100000 +721 1708 5.100000 +721 2008 5.100000 +721 2061 5.100000 +721 2088 5.100000 +721 2124 5.100000 +721 2200 5.100000 +721 2252 5.100000 +721 2293 5.100000 +721 2325 5.100000 +721 2334 5.100000 +721 2396 5.100000 +721 2485 5.100000 +721 2533 5.100000 +721 2566 5.100000 +721 2581 5.100000 +721 2596 5.100000 +721 2613 5.100000 +721 2823 5.100000 +721 2877 5.100000 +721 2928 5.100000 +721 2986 5.100000 +721 3085 5.100000 +721 3099 5.100000 +721 3136 5.100000 +721 3155 5.100000 +721 3162 5.100000 +721 3172 5.100000 +722 42 5.100000 +722 60 5.100000 +722 75 5.100000 +722 79 5.100000 +722 127 5.100000 +722 139 5.100000 +722 203 5.100000 +722 237 5.100000 +722 294 5.100000 +722 295 5.100000 +722 457 5.100000 +722 458 5.100000 +722 461 5.100000 +722 477 5.100000 +722 554 5.100000 +722 668 5.100000 +722 679 5.100000 +722 722 5.100000 +722 781 5.100000 +722 876 5.100000 +722 963 5.100000 +722 966 5.100000 +722 979 5.100000 +722 1108 5.100000 +722 1110 5.100000 +722 1174 5.100000 +722 1177 5.100000 +722 1198 5.100000 +722 1210 5.100000 +722 1241 5.100000 +722 1352 5.100000 +722 1382 5.100000 +722 1410 5.100000 +722 1416 5.100000 +722 1457 5.100000 +722 1563 5.100000 +722 1614 5.100000 +722 1630 5.100000 +722 1633 5.100000 +722 1668 5.100000 +722 1698 5.100000 +722 1705 5.100000 +722 1712 5.100000 +722 1721 5.100000 +722 1748 5.100000 +722 1778 5.100000 +722 1782 5.100000 +722 1801 5.100000 +722 1804 5.100000 +722 1830 5.100000 +722 1864 5.100000 +722 1907 5.100000 +722 1909 5.100000 +722 1958 5.100000 +722 1990 5.100000 +722 2019 5.100000 +722 2052 5.100000 +722 2087 5.100000 +722 2288 5.100000 +722 2299 5.100000 +722 2430 5.100000 +722 2441 5.100000 +722 2461 5.100000 +722 2468 5.100000 +722 2518 5.100000 +722 2535 5.100000 +722 2549 5.100000 +722 2560 5.100000 +722 2570 5.100000 +722 2579 5.100000 +722 2590 5.100000 +722 2689 5.100000 +722 2705 5.100000 +722 2729 5.100000 +722 2741 5.100000 +722 2786 5.100000 +722 2819 5.100000 +722 2851 5.100000 +722 2909 5.100000 +722 3009 5.100000 +722 3092 5.100000 +722 3094 5.100000 +722 3113 5.100000 +722 3148 5.100000 +722 3151 5.100000 +722 3188 5.100000 +723 13 5.100000 +723 16 5.100000 +723 51 5.100000 +723 55 5.100000 +723 85 5.100000 +723 88 5.100000 +723 215 5.100000 +723 263 5.100000 +723 337 5.100000 +723 384 5.100000 +723 531 5.100000 +723 540 5.100000 +723 574 5.100000 +723 583 5.100000 +723 588 5.100000 +723 597 5.100000 +723 652 5.100000 +723 744 5.100000 +723 768 5.100000 +723 784 5.100000 +723 890 5.100000 +723 900 5.100000 +723 912 5.100000 +723 921 5.100000 +723 962 5.100000 +723 989 5.100000 +723 999 5.100000 +723 1002 5.100000 +723 1007 5.100000 +723 1072 5.100000 +723 1108 5.100000 +723 1117 5.100000 +723 1139 5.100000 +723 1201 5.100000 +723 1236 5.100000 +723 1244 5.100000 +723 1257 5.100000 +723 1273 5.100000 +723 1558 5.100000 +723 1565 5.100000 +723 1601 5.100000 +723 1755 5.100000 +723 1779 5.100000 +723 1870 5.100000 +723 1979 5.100000 +723 2085 5.100000 +723 2191 5.100000 +723 2203 5.100000 +723 2226 5.100000 +723 2307 5.100000 +723 2316 5.100000 +723 2377 5.100000 +723 2454 5.100000 +723 2470 5.100000 +723 2474 5.100000 +723 2489 5.100000 +723 2491 5.100000 +723 2584 5.100000 +723 2595 5.100000 +723 2618 5.100000 +723 2640 5.100000 +723 2651 5.100000 +723 2742 5.100000 +723 2771 5.100000 +723 2827 5.100000 +723 2838 5.100000 +723 2982 5.100000 +723 3003 5.100000 +723 3047 5.100000 +723 3062 5.100000 +723 3083 5.100000 +723 3150 5.100000 +723 3155 5.100000 +723 3163 5.100000 +723 3189 5.100000 +724 34 5.100000 +724 126 5.100000 +724 185 5.100000 +724 277 5.100000 +724 381 5.100000 +724 511 5.100000 +724 583 5.100000 +724 668 5.100000 +724 675 5.100000 +724 682 5.100000 +724 684 5.100000 +724 700 5.100000 +724 790 5.100000 +724 797 5.100000 +724 826 5.100000 +724 853 5.100000 +724 984 5.100000 +724 1015 5.100000 +724 1036 5.100000 +724 1064 5.100000 +724 1093 5.100000 +724 1209 5.100000 +724 1233 5.100000 +724 1263 5.100000 +724 1399 5.100000 +724 1415 5.100000 +724 1416 5.100000 +724 1432 5.100000 +724 1436 5.100000 +724 1462 5.100000 +724 1494 5.100000 +724 1497 5.100000 +724 1503 5.100000 +724 1622 5.100000 +724 1636 5.100000 +724 1695 5.100000 +724 1893 5.100000 +724 1911 5.100000 +724 2020 5.100000 +724 2089 5.100000 +724 2106 5.100000 +724 2183 5.100000 +724 2196 5.100000 +724 2221 5.100000 +724 2243 5.100000 +724 2267 5.100000 +724 2299 5.100000 +724 2312 5.100000 +724 2327 5.100000 +724 2347 5.100000 +724 2384 5.100000 +724 2388 5.100000 +724 2393 5.100000 +724 2423 5.100000 +724 2485 5.100000 +724 2544 5.100000 +724 2616 5.100000 +724 2672 5.100000 +724 2693 5.100000 +724 2694 5.100000 +724 2708 5.100000 +724 2712 5.100000 +724 2723 5.100000 +724 2999 5.100000 +724 3024 5.100000 +724 3148 5.100000 +724 3177 5.100000 +724 3200 5.100000 +725 73 5.100000 +725 126 5.100000 +725 129 5.100000 +725 135 5.100000 +725 171 5.100000 +725 184 5.100000 +725 255 5.100000 +725 281 5.100000 +725 314 5.100000 +725 448 5.100000 +725 463 5.100000 +725 782 5.100000 +725 791 5.100000 +725 844 5.100000 +725 875 5.100000 +725 917 5.100000 +725 925 5.100000 +725 950 5.100000 +725 962 5.100000 +725 969 5.100000 +725 976 5.100000 +725 1035 5.100000 +725 1046 5.100000 +725 1089 5.100000 +725 1093 5.100000 +725 1220 5.100000 +725 1334 5.100000 +725 1335 5.100000 +725 1365 5.100000 +725 1373 5.100000 +725 1376 5.100000 +725 1497 5.100000 +725 1517 5.100000 +725 1532 5.100000 +725 1541 5.100000 +725 1568 5.100000 +725 1588 5.100000 +725 1593 5.100000 +725 1659 5.100000 +725 1662 5.100000 +725 1697 5.100000 +725 1703 5.100000 +725 1779 5.100000 +725 1804 5.100000 +725 1831 5.100000 +725 1836 5.100000 +725 1912 5.100000 +725 2003 5.100000 +725 2100 5.100000 +725 2251 5.100000 +725 2294 5.100000 +725 2304 5.100000 +725 2392 5.100000 +725 2402 5.100000 +725 2429 5.100000 +725 2450 5.100000 +725 2453 5.100000 +725 2489 5.100000 +725 2517 5.100000 +725 2537 5.100000 +725 2661 5.100000 +725 2678 5.100000 +725 2715 5.100000 +725 2773 5.100000 +725 2778 5.100000 +725 2832 5.100000 +725 2840 5.100000 +725 2883 5.100000 +725 3037 5.100000 +725 3133 5.100000 +725 3166 5.100000 +725 3196 5.100000 +726 16 5.100000 +726 99 5.100000 +726 180 5.100000 +726 215 5.100000 +726 236 5.100000 +726 304 5.100000 +726 318 5.100000 +726 336 5.100000 +726 367 5.100000 +726 369 5.100000 +726 370 5.100000 +726 372 5.100000 +726 415 5.100000 +726 498 5.100000 +726 503 5.100000 +726 538 5.100000 +726 586 5.100000 +726 596 5.100000 +726 604 5.100000 +726 630 5.100000 +726 711 5.100000 +726 795 5.100000 +726 805 5.100000 +726 812 5.100000 +726 821 5.100000 +726 868 5.100000 +726 1016 5.100000 +726 1051 5.100000 +726 1093 5.100000 +726 1182 5.100000 +726 1289 5.100000 +726 1551 5.100000 +726 1588 5.100000 +726 1705 5.100000 +726 1747 5.100000 +726 1769 5.100000 +726 1781 5.100000 +726 1783 5.100000 +726 1787 5.100000 +726 1833 5.100000 +726 1866 5.100000 +726 1895 5.100000 +726 1956 5.100000 +726 1958 5.100000 +726 1979 5.100000 +726 1992 5.100000 +726 2026 5.100000 +726 2077 5.100000 +726 2089 5.100000 +726 2095 5.100000 +726 2221 5.100000 +726 2228 5.100000 +726 2276 5.100000 +726 2280 5.100000 +726 2312 5.100000 +726 2319 5.100000 +726 2332 5.100000 +726 2356 5.100000 +726 2409 5.100000 +726 2458 5.100000 +726 2492 5.100000 +726 2551 5.100000 +726 2595 5.100000 +726 2607 5.100000 +726 2622 5.100000 +726 2707 5.100000 +726 2730 5.100000 +726 2739 5.100000 +726 2748 5.100000 +726 2795 5.100000 +726 2891 5.100000 +726 3086 5.100000 +726 3087 5.100000 +726 3165 5.100000 +726 3175 5.100000 +727 21 5.100000 +727 50 5.100000 +727 101 5.100000 +727 105 5.100000 +727 171 5.100000 +727 299 5.100000 +727 310 5.100000 +727 350 5.100000 +727 469 5.100000 +727 601 5.100000 +727 642 5.100000 +727 702 5.100000 +727 796 5.100000 +727 860 5.100000 +727 889 5.100000 +727 899 5.100000 +727 950 5.100000 +727 1041 5.100000 +727 1082 5.100000 +727 1088 5.100000 +727 1107 5.100000 +727 1261 5.100000 +727 1274 5.100000 +727 1396 5.100000 +727 1440 5.100000 +727 1508 5.100000 +727 1513 5.100000 +727 1603 5.100000 +727 1639 5.100000 +727 1670 5.100000 +727 1705 5.100000 +727 1720 5.100000 +727 1774 5.100000 +727 1779 5.100000 +727 1865 5.100000 +727 1943 5.100000 +727 2063 5.100000 +727 2108 5.100000 +727 2134 5.100000 +727 2164 5.100000 +727 2186 5.100000 +727 2219 5.100000 +727 2394 5.100000 +727 2495 5.100000 +727 2547 5.100000 +727 2631 5.100000 +727 2669 5.100000 +727 2778 5.100000 +727 2820 5.100000 +727 2877 5.100000 +727 2884 5.100000 +727 2957 5.100000 +727 2959 5.100000 +727 2987 5.100000 +727 2991 5.100000 +727 3002 5.100000 +727 3021 5.100000 +727 3023 5.100000 +727 3026 5.100000 +727 3091 5.100000 +727 3108 5.100000 +727 3129 5.100000 +727 3176 5.100000 +728 66 5.100000 +728 111 5.100000 +728 117 5.100000 +728 121 5.100000 +728 252 5.100000 +728 273 5.100000 +728 309 5.100000 +728 348 5.100000 +728 429 5.100000 +728 460 5.100000 +728 465 5.100000 +728 474 5.100000 +728 487 5.100000 +728 651 5.100000 +728 767 5.100000 +728 801 5.100000 +728 824 5.100000 +728 982 5.100000 +728 1009 5.100000 +728 1343 5.100000 +728 1424 5.100000 +728 1427 5.100000 +728 1449 5.100000 +728 1456 5.100000 +728 1466 5.100000 +728 1521 5.100000 +728 1524 5.100000 +728 1552 5.100000 +728 1794 5.100000 +728 1806 5.100000 +728 1808 5.100000 +728 1871 5.100000 +728 1883 5.100000 +728 1956 5.100000 +728 2051 5.100000 +728 2120 5.100000 +728 2241 5.100000 +728 2302 5.100000 +728 2315 5.100000 +728 2358 5.100000 +728 2440 5.100000 +728 2468 5.100000 +728 2488 5.100000 +728 2496 5.100000 +728 2523 5.100000 +728 2653 5.100000 +728 2676 5.100000 +728 2997 5.100000 +728 3120 5.100000 +728 3125 5.100000 +728 3146 5.100000 +729 124 5.100000 +729 164 5.100000 +729 193 5.100000 +729 209 5.100000 +729 213 5.100000 +729 218 5.100000 +729 253 5.100000 +729 322 5.100000 +729 347 5.100000 +729 380 5.100000 +729 384 5.100000 +729 403 5.100000 +729 412 5.100000 +729 541 5.100000 +729 567 5.100000 +729 634 5.100000 +729 689 5.100000 +729 695 5.100000 +729 703 5.100000 +729 717 5.100000 +729 722 5.100000 +729 784 5.100000 +729 811 5.100000 +729 817 5.100000 +729 907 5.100000 +729 1100 5.100000 +729 1158 5.100000 +729 1159 5.100000 +729 1295 5.100000 +729 1398 5.100000 +729 1418 5.100000 +729 1422 5.100000 +729 1427 5.100000 +729 1734 5.100000 +729 1807 5.100000 +729 1984 5.100000 +729 2024 5.100000 +729 2053 5.100000 +729 2072 5.100000 +729 2121 5.100000 +729 2209 5.100000 +729 2266 5.100000 +729 2341 5.100000 +729 2514 5.100000 +729 2604 5.100000 +729 2623 5.100000 +729 2633 5.100000 +729 2653 5.100000 +729 2663 5.100000 +729 2679 5.100000 +729 2694 5.100000 +729 2718 5.100000 +729 2777 5.100000 +729 2845 5.100000 +729 2846 5.100000 +729 2906 5.100000 +729 2972 5.100000 +729 3028 5.100000 +729 3035 5.100000 +729 3058 5.100000 +729 3092 5.100000 +729 3153 5.100000 +729 3192 5.100000 +730 9 5.100000 +730 79 5.100000 +730 102 5.100000 +730 121 5.100000 +730 138 5.100000 +730 141 5.100000 +730 161 5.100000 +730 211 5.100000 +730 215 5.100000 +730 238 5.100000 +730 246 5.100000 +730 319 5.100000 +730 376 5.100000 +730 405 5.100000 +730 442 5.100000 +730 447 5.100000 +730 451 5.100000 +730 456 5.100000 +730 459 5.100000 +730 487 5.100000 +730 590 5.100000 +730 622 5.100000 +730 658 5.100000 +730 786 5.100000 +730 805 5.100000 +730 848 5.100000 +730 851 5.100000 +730 852 5.100000 +730 948 5.100000 +730 981 5.100000 +730 983 5.100000 +730 1041 5.100000 +730 1048 5.100000 +730 1083 5.100000 +730 1101 5.100000 +730 1163 5.100000 +730 1181 5.100000 +730 1189 5.100000 +730 1200 5.100000 +730 1224 5.100000 +730 1439 5.100000 +730 1509 5.100000 +730 1540 5.100000 +730 1562 5.100000 +730 1601 5.100000 +730 1654 5.100000 +730 1700 5.100000 +730 1706 5.100000 +730 1711 5.100000 +730 1874 5.100000 +730 1884 5.100000 +730 1918 5.100000 +730 2028 5.100000 +730 2078 5.100000 +730 2156 5.100000 +730 2214 5.100000 +730 2287 5.100000 +730 2327 5.100000 +730 2357 5.100000 +730 2432 5.100000 +730 2471 5.100000 +730 2475 5.100000 +730 2598 5.100000 +730 2657 5.100000 +730 2661 5.100000 +730 2664 5.100000 +730 2761 5.100000 +730 2888 5.100000 +730 2978 5.100000 +730 2983 5.100000 +730 2998 5.100000 +730 3031 5.100000 +730 3073 5.100000 +730 3118 5.100000 +730 3150 5.100000 +731 4 5.100000 +731 37 5.100000 +731 73 5.100000 +731 102 5.100000 +731 116 5.100000 +731 177 5.100000 +731 185 5.100000 +731 274 5.100000 +731 349 5.100000 +731 525 5.100000 +731 579 5.100000 +731 704 5.100000 +731 718 5.100000 +731 730 5.100000 +731 742 5.100000 +731 760 5.100000 +731 871 5.100000 +731 873 5.100000 +731 921 5.100000 +731 1052 5.100000 +731 1057 5.100000 +731 1093 5.100000 +731 1145 5.100000 +731 1200 5.100000 +731 1272 5.100000 +731 1297 5.100000 +731 1467 5.100000 +731 1471 5.100000 +731 1528 5.100000 +731 1538 5.100000 +731 1541 5.100000 +731 1565 5.100000 +731 1658 5.100000 +731 1721 5.100000 +731 1750 5.100000 +731 1842 5.100000 +731 1874 5.100000 +731 1900 5.100000 +731 1902 5.100000 +731 1962 5.100000 +731 1991 5.100000 +731 1998 5.100000 +731 2206 5.100000 +731 2343 5.100000 +731 2452 5.100000 +731 2461 5.100000 +731 2609 5.100000 +731 2610 5.100000 +731 2620 5.100000 +731 2735 5.100000 +731 2743 5.100000 +731 2766 5.100000 +731 2854 5.100000 +731 3036 5.100000 +731 3060 5.100000 +731 3075 5.100000 +731 3121 5.100000 +732 108 5.100000 +732 308 5.100000 +732 339 5.100000 +732 395 5.100000 +732 414 5.100000 +732 418 5.100000 +732 442 5.100000 +732 445 5.100000 +732 467 5.100000 +732 470 5.100000 +732 649 5.100000 +732 717 5.100000 +732 797 5.100000 +732 893 5.100000 +732 942 5.100000 +732 970 5.100000 +732 1121 5.100000 +732 1168 5.100000 +732 1183 5.100000 +732 1238 5.100000 +732 1353 5.100000 +732 1396 5.100000 +732 1430 5.100000 +732 1532 5.100000 +732 1641 5.100000 +732 1701 5.100000 +732 1773 5.100000 +732 2032 5.100000 +732 2040 5.100000 +732 2125 5.100000 +732 2305 5.100000 +732 2344 5.100000 +732 2389 5.100000 +732 2505 5.100000 +732 2671 5.100000 +732 2679 5.100000 +732 2784 5.100000 +732 2817 5.100000 +732 2919 5.100000 +732 2925 5.100000 +732 2926 5.100000 +732 2976 5.100000 +732 3036 5.100000 +732 3085 5.100000 +732 3102 5.100000 +732 3131 5.100000 +733 70 5.100000 +733 112 5.100000 +733 132 5.100000 +733 177 5.100000 +733 181 5.100000 +733 246 5.100000 +733 259 5.100000 +733 272 5.100000 +733 383 5.100000 +733 435 5.100000 +733 441 5.100000 +733 445 5.100000 +733 447 5.100000 +733 688 5.100000 +733 737 5.100000 +733 746 5.100000 +733 793 5.100000 +733 813 5.100000 +733 912 5.100000 +733 914 5.100000 +733 933 5.100000 +733 985 5.100000 +733 1084 5.100000 +733 1096 5.100000 +733 1140 5.100000 +733 1161 5.100000 +733 1178 5.100000 +733 1305 5.100000 +733 1317 5.100000 +733 1377 5.100000 +733 1441 5.100000 +733 1474 5.100000 +733 1493 5.100000 +733 1506 5.100000 +733 1613 5.100000 +733 1634 5.100000 +733 1636 5.100000 +733 1637 5.100000 +733 1682 5.100000 +733 1684 5.100000 +733 1736 5.100000 +733 1762 5.100000 +733 1786 5.100000 +733 1840 5.100000 +733 1963 5.100000 +733 1966 5.100000 +733 2004 5.100000 +733 2059 5.100000 +733 2082 5.100000 +733 2136 5.100000 +733 2190 5.100000 +733 2226 5.100000 +733 2343 5.100000 +733 2403 5.100000 +733 2442 5.100000 +733 2446 5.100000 +733 2630 5.100000 +733 2660 5.100000 +733 2668 5.100000 +733 2684 5.100000 +733 2731 5.100000 +733 2828 5.100000 +733 2904 5.100000 +733 2970 5.100000 +733 3108 5.100000 +733 3170 5.100000 +733 3179 5.100000 +734 105 5.100000 +734 137 5.100000 +734 196 5.100000 +734 270 5.100000 +734 271 5.100000 +734 288 5.100000 +734 347 5.100000 +734 440 5.100000 +734 447 5.100000 +734 484 5.100000 +734 526 5.100000 +734 647 5.100000 +734 649 5.100000 +734 868 5.100000 +734 889 5.100000 +734 918 5.100000 +734 921 5.100000 +734 1014 5.100000 +734 1033 5.100000 +734 1115 5.100000 +734 1146 5.100000 +734 1149 5.100000 +734 1162 5.100000 +734 1165 5.100000 +734 1314 5.100000 +734 1328 5.100000 +734 1330 5.100000 +734 1358 5.100000 +734 1458 5.100000 +734 1466 5.100000 +734 1498 5.100000 +734 1509 5.100000 +734 1583 5.100000 +734 1652 5.100000 +734 1674 5.100000 +734 1701 5.100000 +734 1754 5.100000 +734 1822 5.100000 +734 1833 5.100000 +734 1861 5.100000 +734 2130 5.100000 +734 2237 5.100000 +734 2263 5.100000 +734 2353 5.100000 +734 2393 5.100000 +734 2568 5.100000 +734 2572 5.100000 +734 2587 5.100000 +734 2613 5.100000 +734 2682 5.100000 +734 2711 5.100000 +734 2820 5.100000 +734 2935 5.100000 +734 3030 5.100000 +734 3184 5.100000 +735 1 5.100000 +735 27 5.100000 +735 35 5.100000 +735 77 5.100000 +735 91 5.100000 +735 105 5.100000 +735 123 5.100000 +735 258 5.100000 +735 265 5.100000 +735 285 5.100000 +735 290 5.100000 +735 415 5.100000 +735 572 5.100000 +735 594 5.100000 +735 658 5.100000 +735 669 5.100000 +735 773 5.100000 +735 1043 5.100000 +735 1195 5.100000 +735 1207 5.100000 +735 1272 5.100000 +735 1287 5.100000 +735 1348 5.100000 +735 1386 5.100000 +735 1472 5.100000 +735 1479 5.100000 +735 1502 5.100000 +735 1549 5.100000 +735 1582 5.100000 +735 1586 5.100000 +735 1679 5.100000 +735 1751 5.100000 +735 1755 5.100000 +735 1819 5.100000 +735 1829 5.100000 +735 1900 5.100000 +735 1924 5.100000 +735 1953 5.100000 +735 1997 5.100000 +735 2016 5.100000 +735 2035 5.100000 +735 2137 5.100000 +735 2211 5.100000 +735 2241 5.100000 +735 2290 5.100000 +735 2319 5.100000 +735 2514 5.100000 +735 2634 5.100000 +735 2639 5.100000 +735 2677 5.100000 +735 2769 5.100000 +735 2829 5.100000 +735 2840 5.100000 +735 2877 5.100000 +735 2984 5.100000 +735 2990 5.100000 +735 3079 5.100000 +735 3106 5.100000 +735 3123 5.100000 +736 125 5.100000 +736 174 5.100000 +736 384 5.100000 +736 444 5.100000 +736 460 5.100000 +736 507 5.100000 +736 511 5.100000 +736 659 5.100000 +736 670 5.100000 +736 701 5.100000 +736 713 5.100000 +736 748 5.100000 +736 797 5.100000 +736 808 5.100000 +736 859 5.100000 +736 878 5.100000 +736 901 5.100000 +736 911 5.100000 +736 913 5.100000 +736 952 5.100000 +736 1010 5.100000 +736 1066 5.100000 +736 1156 5.100000 +736 1184 5.100000 +736 1207 5.100000 +736 1249 5.100000 +736 1305 5.100000 +736 1339 5.100000 +736 1357 5.100000 +736 1368 5.100000 +736 1380 5.100000 +736 1391 5.100000 +736 1439 5.100000 +736 1485 5.100000 +736 1542 5.100000 +736 1579 5.100000 +736 1658 5.100000 +736 1688 5.100000 +736 1777 5.100000 +736 1787 5.100000 +736 1807 5.100000 +736 1863 5.100000 +736 1873 5.100000 +736 1987 5.100000 +736 2020 5.100000 +736 2025 5.100000 +736 2087 5.100000 +736 2122 5.100000 +736 2130 5.100000 +736 2137 5.100000 +736 2155 5.100000 +736 2160 5.100000 +736 2366 5.100000 +736 2377 5.100000 +736 2390 5.100000 +736 2414 5.100000 +736 2422 5.100000 +736 2430 5.100000 +736 2449 5.100000 +736 2556 5.100000 +736 2569 5.100000 +736 2583 5.100000 +736 2634 5.100000 +736 2668 5.100000 +736 2676 5.100000 +736 2768 5.100000 +736 2772 5.100000 +736 2810 5.100000 +736 2852 5.100000 +736 2866 5.100000 +736 2870 5.100000 +736 2913 5.100000 +736 2958 5.100000 +736 2996 5.100000 +736 3017 5.100000 +736 3055 5.100000 +736 3088 5.100000 +736 3115 5.100000 +736 3176 5.100000 +736 3194 5.100000 +737 106 5.100000 +737 148 5.100000 +737 171 5.100000 +737 184 5.100000 +737 446 5.100000 +737 612 5.100000 +737 730 5.100000 +737 775 5.100000 +737 860 5.100000 +737 994 5.100000 +737 1010 5.100000 +737 1033 5.100000 +737 1094 5.100000 +737 1201 5.100000 +737 1330 5.100000 +737 1342 5.100000 +737 1425 5.100000 +737 1426 5.100000 +737 1554 5.100000 +737 1656 5.100000 +737 1672 5.100000 +737 1819 5.100000 +737 1824 5.100000 +737 1885 5.100000 +737 1888 5.100000 +737 1944 5.100000 +737 1984 5.100000 +737 2145 5.100000 +737 2154 5.100000 +737 2188 5.100000 +737 2193 5.100000 +737 2206 5.100000 +737 2258 5.100000 +737 2272 5.100000 +737 2368 5.100000 +737 2456 5.100000 +737 2513 5.100000 +737 2574 5.100000 +737 2585 5.100000 +737 2592 5.100000 +737 2618 5.100000 +737 2640 5.100000 +737 2642 5.100000 +737 2654 5.100000 +737 2722 5.100000 +737 2759 5.100000 +737 2796 5.100000 +737 2832 5.100000 +737 2964 5.100000 +737 3033 5.100000 +737 3085 5.100000 +737 3119 5.100000 +737 3134 5.100000 +737 3135 5.100000 +737 3158 5.100000 +737 3173 5.100000 +738 76 5.100000 +738 149 5.100000 +738 185 5.100000 +738 189 5.100000 +738 200 5.100000 +738 229 5.100000 +738 250 5.100000 +738 278 5.100000 +738 323 5.100000 +738 358 5.100000 +738 411 5.100000 +738 454 5.100000 +738 478 5.100000 +738 615 5.100000 +738 626 5.100000 +738 700 5.100000 +738 736 5.100000 +738 763 5.100000 +738 810 5.100000 +738 855 5.100000 +738 882 5.100000 +738 903 5.100000 +738 968 5.100000 +738 1046 5.100000 +738 1092 5.100000 +738 1111 5.100000 +738 1113 5.100000 +738 1215 5.100000 +738 1220 5.100000 +738 1317 5.100000 +738 1365 5.100000 +738 1370 5.100000 +738 1382 5.100000 +738 1543 5.100000 +738 1662 5.100000 +738 1709 5.100000 +738 1876 5.100000 +738 1894 5.100000 +738 1898 5.100000 +738 1909 5.100000 +738 1948 5.100000 +738 1984 5.100000 +738 2075 5.100000 +738 2173 5.100000 +738 2199 5.100000 +738 2208 5.100000 +738 2272 5.100000 +738 2398 5.100000 +738 2446 5.100000 +738 2487 5.100000 +738 2677 5.100000 +738 2704 5.100000 +738 2726 5.100000 +738 2743 5.100000 +738 2847 5.100000 +738 2849 5.100000 +738 2895 5.100000 +738 2941 5.100000 +738 2981 5.100000 +738 3009 5.100000 +738 3029 5.100000 +738 3050 5.100000 +739 5 5.100000 +739 19 5.100000 +739 72 5.100000 +739 143 5.100000 +739 154 5.100000 +739 223 5.100000 +739 227 5.100000 +739 243 5.100000 +739 263 5.100000 +739 325 5.100000 +739 331 5.100000 +739 342 5.100000 +739 346 5.100000 +739 359 5.100000 +739 432 5.100000 +739 449 5.100000 +739 494 5.100000 +739 543 5.100000 +739 554 5.100000 +739 621 5.100000 +739 648 5.100000 +739 664 5.100000 +739 673 5.100000 +739 687 5.100000 +739 803 5.100000 +739 887 5.100000 +739 1022 5.100000 +739 1039 5.100000 +739 1065 5.100000 +739 1101 5.100000 +739 1146 5.100000 +739 1168 5.100000 +739 1178 5.100000 +739 1188 5.100000 +739 1327 5.100000 +739 1361 5.100000 +739 1377 5.100000 +739 1443 5.100000 +739 1476 5.100000 +739 1507 5.100000 +739 1672 5.100000 +739 1675 5.100000 +739 1751 5.100000 +739 1787 5.100000 +739 1802 5.100000 +739 1811 5.100000 +739 1845 5.100000 +739 1855 5.100000 +739 1858 5.100000 +739 1874 5.100000 +739 1877 5.100000 +739 1885 5.100000 +739 1903 5.100000 +739 1922 5.100000 +739 2000 5.100000 +739 2031 5.100000 +739 2116 5.100000 +739 2268 5.100000 +739 2294 5.100000 +739 2450 5.100000 +739 2513 5.100000 +739 2574 5.100000 +739 2655 5.100000 +739 2772 5.100000 +739 2809 5.100000 +739 2875 5.100000 +739 2950 5.100000 +739 2969 5.100000 +739 3130 5.100000 +740 6 5.100000 +740 33 5.100000 +740 51 5.100000 +740 107 5.100000 +740 181 5.100000 +740 182 5.100000 +740 275 5.100000 +740 415 5.100000 +740 514 5.100000 +740 543 5.100000 +740 551 5.100000 +740 557 5.100000 +740 562 5.100000 +740 601 5.100000 +740 642 5.100000 +740 646 5.100000 +740 690 5.100000 +740 718 5.100000 +740 762 5.100000 +740 846 5.100000 +740 854 5.100000 +740 867 5.100000 +740 882 5.100000 +740 891 5.100000 +740 921 5.100000 +740 1013 5.100000 +740 1031 5.100000 +740 1139 5.100000 +740 1177 5.100000 +740 1197 5.100000 +740 1258 5.100000 +740 1447 5.100000 +740 1453 5.100000 +740 1471 5.100000 +740 1475 5.100000 +740 1486 5.100000 +740 1512 5.100000 +740 1520 5.100000 +740 1561 5.100000 +740 1591 5.100000 +740 1676 5.100000 +740 1680 5.100000 +740 1686 5.100000 +740 1828 5.100000 +740 1887 5.100000 +740 1959 5.100000 +740 1999 5.100000 +740 2003 5.100000 +740 2035 5.100000 +740 2067 5.100000 +740 2075 5.100000 +740 2102 5.100000 +740 2279 5.100000 +740 2356 5.100000 +740 2438 5.100000 +740 2495 5.100000 +740 2544 5.100000 +740 2546 5.100000 +740 2657 5.100000 +740 2719 5.100000 +740 2760 5.100000 +740 2792 5.100000 +740 2862 5.100000 +740 2876 5.100000 +740 2970 5.100000 +740 3038 5.100000 +740 3097 5.100000 +740 3125 5.100000 +740 3165 5.100000 +741 92 5.100000 +741 191 5.100000 +741 238 5.100000 +741 306 5.100000 +741 359 5.100000 +741 620 5.100000 +741 646 5.100000 +741 652 5.100000 +741 692 5.100000 +741 716 5.100000 +741 745 5.100000 +741 760 5.100000 +741 786 5.100000 +741 841 5.100000 +741 856 5.100000 +741 860 5.100000 +741 909 5.100000 +741 962 5.100000 +741 993 5.100000 +741 1172 5.100000 +741 1212 5.100000 +741 1241 5.100000 +741 1244 5.100000 +741 1574 5.100000 +741 1609 5.100000 +741 1690 5.100000 +741 1702 5.100000 +741 1721 5.100000 +741 1744 5.100000 +741 1753 5.100000 +741 1755 5.100000 +741 1806 5.100000 +741 2003 5.100000 +741 2019 5.100000 +741 2234 5.100000 +741 2264 5.100000 +741 2265 5.100000 +741 2303 5.100000 +741 2580 5.100000 +741 2766 5.100000 +741 2910 5.100000 +741 2953 5.100000 +741 3024 5.100000 +741 3034 5.100000 +741 3054 5.100000 +741 3086 5.100000 +741 3149 5.100000 +742 17 5.100000 +742 29 5.100000 +742 59 5.100000 +742 116 5.100000 +742 144 5.100000 +742 165 5.100000 +742 192 5.100000 +742 195 5.100000 +742 203 5.100000 +742 304 5.100000 +742 385 5.100000 +742 452 5.100000 +742 464 5.100000 +742 489 5.100000 +742 508 5.100000 +742 537 5.100000 +742 564 5.100000 +742 629 5.100000 +742 710 5.100000 +742 845 5.100000 +742 863 5.100000 +742 897 5.100000 +742 904 5.100000 +742 929 5.100000 +742 932 5.100000 +742 951 5.100000 +742 1063 5.100000 +742 1221 5.100000 +742 1245 5.100000 +742 1257 5.100000 +742 1292 5.100000 +742 1372 5.100000 +742 1446 5.100000 +742 1470 5.100000 +742 1489 5.100000 +742 1578 5.100000 +742 1611 5.100000 +742 1651 5.100000 +742 1683 5.100000 +742 1688 5.100000 +742 1792 5.100000 +742 1852 5.100000 +742 1982 5.100000 +742 2044 5.100000 +742 2052 5.100000 +742 2103 5.100000 +742 2123 5.100000 +742 2138 5.100000 +742 2152 5.100000 +742 2213 5.100000 +742 2285 5.100000 +742 2373 5.100000 +742 2437 5.100000 +742 2445 5.100000 +742 2548 5.100000 +742 2760 5.100000 +742 2802 5.100000 +742 2833 5.100000 +742 2990 5.100000 +742 3001 5.100000 +742 3177 5.100000 +742 3184 5.100000 +743 78 5.100000 +743 82 5.100000 +743 87 5.100000 +743 108 5.100000 +743 127 5.100000 +743 136 5.100000 +743 177 5.100000 +743 267 5.100000 +743 471 5.100000 +743 565 5.100000 +743 569 5.100000 +743 641 5.100000 +743 659 5.100000 +743 717 5.100000 +743 718 5.100000 +743 726 5.100000 +743 734 5.100000 +743 822 5.100000 +743 849 5.100000 +743 1048 5.100000 +743 1064 5.100000 +743 1082 5.100000 +743 1090 5.100000 +743 1145 5.100000 +743 1157 5.100000 +743 1255 5.100000 +743 1322 5.100000 +743 1363 5.100000 +743 1374 5.100000 +743 1512 5.100000 +743 1519 5.100000 +743 1529 5.100000 +743 1531 5.100000 +743 1576 5.100000 +743 1578 5.100000 +743 1603 5.100000 +743 1632 5.100000 +743 1714 5.100000 +743 1795 5.100000 +743 1885 5.100000 +743 1919 5.100000 +743 1952 5.100000 +743 1987 5.100000 +743 2026 5.100000 +743 2030 5.100000 +743 2039 5.100000 +743 2111 5.100000 +743 2200 5.100000 +743 2253 5.100000 +743 2261 5.100000 +743 2269 5.100000 +743 2282 5.100000 +743 2347 5.100000 +743 2349 5.100000 +743 2362 5.100000 +743 2373 5.100000 +743 2419 5.100000 +743 2431 5.100000 +743 2616 5.100000 +743 2646 5.100000 +743 2654 5.100000 +743 2658 5.100000 +743 2785 5.100000 +743 2864 5.100000 +743 2877 5.100000 +743 2980 5.100000 +743 3054 5.100000 +744 13 5.100000 +744 14 5.100000 +744 29 5.100000 +744 49 5.100000 +744 119 5.100000 +744 163 5.100000 +744 247 5.100000 +744 353 5.100000 +744 378 5.100000 +744 382 5.100000 +744 631 5.100000 +744 705 5.100000 +744 758 5.100000 +744 805 5.100000 +744 856 5.100000 +744 899 5.100000 +744 906 5.100000 +744 942 5.100000 +744 966 5.100000 +744 969 5.100000 +744 1016 5.100000 +744 1035 5.100000 +744 1049 5.100000 +744 1143 5.100000 +744 1147 5.100000 +744 1149 5.100000 +744 1166 5.100000 +744 1174 5.100000 +744 1269 5.100000 +744 1325 5.100000 +744 1368 5.100000 +744 1433 5.100000 +744 1492 5.100000 +744 1538 5.100000 +744 1625 5.100000 +744 1663 5.100000 +744 1688 5.100000 +744 1902 5.100000 +744 1907 5.100000 +744 2068 5.100000 +744 2090 5.100000 +744 2184 5.100000 +744 2188 5.100000 +744 2229 5.100000 +744 2247 5.100000 +744 2258 5.100000 +744 2347 5.100000 +744 2358 5.100000 +744 2462 5.100000 +744 2517 5.100000 +744 2551 5.100000 +744 2578 5.100000 +744 2646 5.100000 +744 2667 5.100000 +744 2761 5.100000 +744 2801 5.100000 +744 2914 5.100000 +744 2962 5.100000 +744 3057 5.100000 +744 3083 5.100000 +744 3100 5.100000 +744 3156 5.100000 +744 3160 5.100000 +745 76 5.100000 +745 96 5.100000 +745 135 5.100000 +745 229 5.100000 +745 241 5.100000 +745 301 5.100000 +745 444 5.100000 +745 455 5.100000 +745 476 5.100000 +745 547 5.100000 +745 566 5.100000 +745 627 5.100000 +745 687 5.100000 +745 688 5.100000 +745 761 5.100000 +745 826 5.100000 +745 1020 5.100000 +745 1027 5.100000 +745 1135 5.100000 +745 1165 5.100000 +745 1227 5.100000 +745 1238 5.100000 +745 1248 5.100000 +745 1320 5.100000 +745 1337 5.100000 +745 1361 5.100000 +745 1377 5.100000 +745 1414 5.100000 +745 1441 5.100000 +745 1450 5.100000 +745 1453 5.100000 +745 1467 5.100000 +745 1478 5.100000 +745 1481 5.100000 +745 1492 5.100000 +745 1584 5.100000 +745 1625 5.100000 +745 1628 5.100000 +745 1666 5.100000 +745 1827 5.100000 +745 1874 5.100000 +745 1893 5.100000 +745 1920 5.100000 +745 1929 5.100000 +745 1943 5.100000 +745 1955 5.100000 +745 2073 5.100000 +745 2102 5.100000 +745 2120 5.100000 +745 2152 5.100000 +745 2248 5.100000 +745 2329 5.100000 +745 2400 5.100000 +745 2427 5.100000 +745 2469 5.100000 +745 2475 5.100000 +745 2481 5.100000 +745 2498 5.100000 +745 2515 5.100000 +745 2523 5.100000 +745 2577 5.100000 +745 2608 5.100000 +745 2625 5.100000 +745 2690 5.100000 +745 2749 5.100000 +745 2778 5.100000 +745 2783 5.100000 +745 2840 5.100000 +745 2983 5.100000 +745 3003 5.100000 +745 3013 5.100000 +745 3034 5.100000 +745 3086 5.100000 +745 3135 5.100000 +745 3152 5.100000 +745 3182 5.100000 +746 97 5.100000 +746 134 5.100000 +746 239 5.100000 +746 266 5.100000 +746 300 5.100000 +746 322 5.100000 +746 323 5.100000 +746 376 5.100000 +746 384 5.100000 +746 472 5.100000 +746 508 5.100000 +746 547 5.100000 +746 548 5.100000 +746 585 5.100000 +746 590 5.100000 +746 665 5.100000 +746 690 5.100000 +746 782 5.100000 +746 807 5.100000 +746 904 5.100000 +746 923 5.100000 +746 941 5.100000 +746 955 5.100000 +746 983 5.100000 +746 1003 5.100000 +746 1122 5.100000 +746 1204 5.100000 +746 1230 5.100000 +746 1237 5.100000 +746 1326 5.100000 +746 1471 5.100000 +746 1543 5.100000 +746 1555 5.100000 +746 1565 5.100000 +746 1767 5.100000 +746 1814 5.100000 +746 1852 5.100000 +746 1947 5.100000 +746 1952 5.100000 +746 1980 5.100000 +746 2063 5.100000 +746 2119 5.100000 +746 2200 5.100000 +746 2212 5.100000 +746 2225 5.100000 +746 2335 5.100000 +746 2404 5.100000 +746 2473 5.100000 +746 2504 5.100000 +746 2538 5.100000 +746 2584 5.100000 +746 2617 5.100000 +746 2635 5.100000 +746 2639 5.100000 +746 2665 5.100000 +746 2705 5.100000 +746 2849 5.100000 +746 2913 5.100000 +746 2916 5.100000 +746 3001 5.100000 +746 3017 5.100000 +746 3082 5.100000 +746 3096 5.100000 +746 3175 5.100000 +747 15 5.100000 +747 25 5.100000 +747 27 5.100000 +747 79 5.100000 +747 134 5.100000 +747 139 5.100000 +747 157 5.100000 +747 307 5.100000 +747 315 5.100000 +747 463 5.100000 +747 468 5.100000 +747 517 5.100000 +747 550 5.100000 +747 590 5.100000 +747 601 5.100000 +747 722 5.100000 +747 749 5.100000 +747 755 5.100000 +747 804 5.100000 +747 937 5.100000 +747 938 5.100000 +747 1034 5.100000 +747 1089 5.100000 +747 1114 5.100000 +747 1146 5.100000 +747 1172 5.100000 +747 1287 5.100000 +747 1383 5.100000 +747 1395 5.100000 +747 1465 5.100000 +747 1506 5.100000 +747 1510 5.100000 +747 1537 5.100000 +747 1538 5.100000 +747 1551 5.100000 +747 1653 5.100000 +747 1664 5.100000 +747 1699 5.100000 +747 1854 5.100000 +747 1879 5.100000 +747 1938 5.100000 +747 1943 5.100000 +747 1989 5.100000 +747 1994 5.100000 +747 2082 5.100000 +747 2197 5.100000 +747 2217 5.100000 +747 2266 5.100000 +747 2500 5.100000 +747 2508 5.100000 +747 2520 5.100000 +747 2542 5.100000 +747 2599 5.100000 +747 2698 5.100000 +747 2714 5.100000 +747 2860 5.100000 +747 2940 5.100000 +747 2968 5.100000 +747 2992 5.100000 +747 3149 5.100000 +747 3195 5.100000 +748 76 5.100000 +748 99 5.100000 +748 310 5.100000 +748 364 5.100000 +748 445 5.100000 +748 609 5.100000 +748 805 5.100000 +748 942 5.100000 +748 987 5.100000 +748 989 5.100000 +748 1164 5.100000 +748 1311 5.100000 +748 1430 5.100000 +748 1462 5.100000 +748 1492 5.100000 +748 1567 5.100000 +748 1594 5.100000 +748 1654 5.100000 +748 1787 5.100000 +748 1811 5.100000 +748 1847 5.100000 +748 1880 5.100000 +748 1903 5.100000 +748 1918 5.100000 +748 2009 5.100000 +748 2091 5.100000 +748 2210 5.100000 +748 2255 5.100000 +748 2266 5.100000 +748 2272 5.100000 +748 2292 5.100000 +748 2306 5.100000 +748 2312 5.100000 +748 2342 5.100000 +748 2357 5.100000 +748 2378 5.100000 +748 2438 5.100000 +748 2543 5.100000 +748 2564 5.100000 +748 2676 5.100000 +748 2690 5.100000 +748 2753 5.100000 +748 2769 5.100000 +748 2778 5.100000 +748 2788 5.100000 +748 2799 5.100000 +748 2919 5.100000 +748 2967 5.100000 +748 2981 5.100000 +748 3030 5.100000 +748 3040 5.100000 +748 3071 5.100000 +748 3178 5.100000 +749 7 5.100000 +749 16 5.100000 +749 240 5.100000 +749 302 5.100000 +749 335 5.100000 +749 421 5.100000 +749 515 5.100000 +749 533 5.100000 +749 589 5.100000 +749 614 5.100000 +749 632 5.100000 +749 682 5.100000 +749 699 5.100000 +749 703 5.100000 +749 723 5.100000 +749 752 5.100000 +749 762 5.100000 +749 782 5.100000 +749 881 5.100000 +749 896 5.100000 +749 1012 5.100000 +749 1090 5.100000 +749 1245 5.100000 +749 1254 5.100000 +749 1281 5.100000 +749 1334 5.100000 +749 1374 5.100000 +749 1495 5.100000 +749 1526 5.100000 +749 1664 5.100000 +749 1715 5.100000 +749 1792 5.100000 +749 1941 5.100000 +749 1969 5.100000 +749 2024 5.100000 +749 2209 5.100000 +749 2214 5.100000 +749 2219 5.100000 +749 2276 5.100000 +749 2287 5.100000 +749 2313 5.100000 +749 2339 5.100000 +749 2469 5.100000 +749 2478 5.100000 +749 2487 5.100000 +749 2507 5.100000 +749 2546 5.100000 +749 2581 5.100000 +749 2623 5.100000 +749 2627 5.100000 +749 2702 5.100000 +749 2764 5.100000 +749 2843 5.100000 +749 2871 5.100000 +749 2951 5.100000 +749 3032 5.100000 +749 3033 5.100000 +749 3056 5.100000 +749 3182 5.100000 +749 3199 5.100000 +750 23 5.100000 +750 46 5.100000 +750 123 5.100000 +750 175 5.100000 +750 304 5.100000 +750 308 5.100000 +750 355 5.100000 +750 407 5.100000 +750 491 5.100000 +750 508 5.100000 +750 567 5.100000 +750 627 5.100000 +750 654 5.100000 +750 802 5.100000 +750 830 5.100000 +750 972 5.100000 +750 983 5.100000 +750 1002 5.100000 +750 1027 5.100000 +750 1052 5.100000 +750 1107 5.100000 +750 1140 5.100000 +750 1149 5.100000 +750 1217 5.100000 +750 1265 5.100000 +750 1321 5.100000 +750 1376 5.100000 +750 1384 5.100000 +750 1398 5.100000 +750 1455 5.100000 +750 1511 5.100000 +750 1594 5.100000 +750 1637 5.100000 +750 1671 5.100000 +750 1698 5.100000 +750 1745 5.100000 +750 1753 5.100000 +750 1783 5.100000 +750 1856 5.100000 +750 2063 5.100000 +750 2080 5.100000 +750 2091 5.100000 +750 2135 5.100000 +750 2192 5.100000 +750 2369 5.100000 +750 2410 5.100000 +750 2415 5.100000 +750 2428 5.100000 +750 2471 5.100000 +750 2474 5.100000 +750 2557 5.100000 +750 2569 5.100000 +750 2658 5.100000 +750 2727 5.100000 +750 2761 5.100000 +750 2804 5.100000 +750 2884 5.100000 +750 2943 5.100000 +750 2979 5.100000 +750 3006 5.100000 +750 3017 5.100000 +750 3083 5.100000 +750 3084 5.100000 +750 3092 5.100000 +750 3154 5.100000 +750 3179 5.100000 +750 3197 5.100000 +751 24 5.100000 +751 43 5.100000 +751 56 5.100000 +751 102 5.100000 +751 119 5.100000 +751 125 5.100000 +751 139 5.100000 +751 165 5.100000 +751 172 5.100000 +751 173 5.100000 +751 287 5.100000 +751 453 5.100000 +751 517 5.100000 +751 602 5.100000 +751 703 5.100000 +751 831 5.100000 +751 965 5.100000 +751 1073 5.100000 +751 1138 5.100000 +751 1200 5.100000 +751 1333 5.100000 +751 1365 5.100000 +751 1366 5.100000 +751 1434 5.100000 +751 1565 5.100000 +751 1595 5.100000 +751 1615 5.100000 +751 1619 5.100000 +751 1651 5.100000 +751 1741 5.100000 +751 1780 5.100000 +751 1847 5.100000 +751 1860 5.100000 +751 1871 5.100000 +751 1888 5.100000 +751 1915 5.100000 +751 1916 5.100000 +751 1979 5.100000 +751 2118 5.100000 +751 2288 5.100000 +751 2342 5.100000 +751 2534 5.100000 +751 2689 5.100000 +751 2704 5.100000 +751 2716 5.100000 +751 2794 5.100000 +751 2795 5.100000 +751 2800 5.100000 +751 2847 5.100000 +751 2858 5.100000 +751 2868 5.100000 +751 2971 5.100000 +751 3043 5.100000 +751 3102 5.100000 +752 116 5.100000 +752 208 5.100000 +752 218 5.100000 +752 237 5.100000 +752 373 5.100000 +752 399 5.100000 +752 417 5.100000 +752 515 5.100000 +752 528 5.100000 +752 530 5.100000 +752 572 5.100000 +752 688 5.100000 +752 732 5.100000 +752 739 5.100000 +752 819 5.100000 +752 938 5.100000 +752 981 5.100000 +752 1017 5.100000 +752 1237 5.100000 +752 1250 5.100000 +752 1296 5.100000 +752 1405 5.100000 +752 1464 5.100000 +752 1474 5.100000 +752 1502 5.100000 +752 1560 5.100000 +752 1563 5.100000 +752 1648 5.100000 +752 1690 5.100000 +752 1710 5.100000 +752 1756 5.100000 +752 1766 5.100000 +752 1940 5.100000 +752 1962 5.100000 +752 2037 5.100000 +752 2079 5.100000 +752 2094 5.100000 +752 2120 5.100000 +752 2160 5.100000 +752 2166 5.100000 +752 2200 5.100000 +752 2241 5.100000 +752 2249 5.100000 +752 2266 5.100000 +752 2296 5.100000 +752 2429 5.100000 +752 2466 5.100000 +752 2521 5.100000 +752 2534 5.100000 +752 2561 5.100000 +752 2638 5.100000 +752 2675 5.100000 +752 2759 5.100000 +752 2793 5.100000 +752 2802 5.100000 +752 2888 5.100000 +752 2989 5.100000 +752 3052 5.100000 +752 3111 5.100000 +752 3116 5.100000 +752 3131 5.100000 +752 3142 5.100000 +752 3154 5.100000 +752 3183 5.100000 +753 36 5.100000 +753 133 5.100000 +753 180 5.100000 +753 261 5.100000 +753 324 5.100000 +753 336 5.100000 +753 388 5.100000 +753 412 5.100000 +753 480 5.100000 +753 607 5.100000 +753 642 5.100000 +753 643 5.100000 +753 647 5.100000 +753 676 5.100000 +753 720 5.100000 +753 819 5.100000 +753 932 5.100000 +753 1085 5.100000 +753 1118 5.100000 +753 1121 5.100000 +753 1150 5.100000 +753 1155 5.100000 +753 1216 5.100000 +753 1289 5.100000 +753 1290 5.100000 +753 1322 5.100000 +753 1352 5.100000 +753 1386 5.100000 +753 1499 5.100000 +753 1556 5.100000 +753 1610 5.100000 +753 1648 5.100000 +753 1805 5.100000 +753 1866 5.100000 +753 1984 5.100000 +753 1994 5.100000 +753 2095 5.100000 +753 2172 5.100000 +753 2267 5.100000 +753 2305 5.100000 +753 2319 5.100000 +753 2347 5.100000 +753 2434 5.100000 +753 2474 5.100000 +753 2504 5.100000 +753 2540 5.100000 +753 2576 5.100000 +753 2583 5.100000 +753 2595 5.100000 +753 2698 5.100000 +753 2759 5.100000 +753 2797 5.100000 +753 2859 5.100000 +753 2931 5.100000 +753 2942 5.100000 +753 3013 5.100000 +753 3053 5.100000 +753 3108 5.100000 +753 3129 5.100000 +753 3141 5.100000 +753 3144 5.100000 +753 3158 5.100000 +753 3163 5.100000 +753 3193 5.100000 +754 145 5.100000 +754 238 5.100000 +754 353 5.100000 +754 363 5.100000 +754 373 5.100000 +754 396 5.100000 +754 500 5.100000 +754 516 5.100000 +754 524 5.100000 +754 587 5.100000 +754 653 5.100000 +754 687 5.100000 +754 690 5.100000 +754 716 5.100000 +754 790 5.100000 +754 896 5.100000 +754 1020 5.100000 +754 1070 5.100000 +754 1079 5.100000 +754 1235 5.100000 +754 1239 5.100000 +754 1458 5.100000 +754 1542 5.100000 +754 1549 5.100000 +754 1565 5.100000 +754 1647 5.100000 +754 1681 5.100000 +754 1710 5.100000 +754 1716 5.100000 +754 1771 5.100000 +754 1780 5.100000 +754 1798 5.100000 +754 1817 5.100000 +754 1839 5.100000 +754 1867 5.100000 +754 1882 5.100000 +754 1918 5.100000 +754 1929 5.100000 +754 1948 5.100000 +754 1979 5.100000 +754 2015 5.100000 +754 2035 5.100000 +754 2050 5.100000 +754 2119 5.100000 +754 2159 5.100000 +754 2194 5.100000 +754 2205 5.100000 +754 2217 5.100000 +754 2239 5.100000 +754 2269 5.100000 +754 2305 5.100000 +754 2313 5.100000 +754 2449 5.100000 +754 2459 5.100000 +754 2471 5.100000 +754 2509 5.100000 +754 2560 5.100000 +754 2592 5.100000 +754 2608 5.100000 +754 2725 5.100000 +754 2735 5.100000 +754 2749 5.100000 +754 2844 5.100000 +754 2977 5.100000 +754 3097 5.100000 +754 3105 5.100000 +754 3157 5.100000 +755 20 5.100000 +755 29 5.100000 +755 87 5.100000 +755 206 5.100000 +755 395 5.100000 +755 404 5.100000 +755 462 5.100000 +755 482 5.100000 +755 492 5.100000 +755 569 5.100000 +755 571 5.100000 +755 644 5.100000 +755 671 5.100000 +755 729 5.100000 +755 750 5.100000 +755 798 5.100000 +755 837 5.100000 +755 906 5.100000 +755 931 5.100000 +755 970 5.100000 +755 977 5.100000 +755 1019 5.100000 +755 1034 5.100000 +755 1109 5.100000 +755 1132 5.100000 +755 1171 5.100000 +755 1177 5.100000 +755 1210 5.100000 +755 1260 5.100000 +755 1303 5.100000 +755 1344 5.100000 +755 1385 5.100000 +755 1484 5.100000 +755 1573 5.100000 +755 1619 5.100000 +755 1691 5.100000 +755 1696 5.100000 +755 1699 5.100000 +755 1722 5.100000 +755 1741 5.100000 +755 1863 5.100000 +755 1984 5.100000 +755 2056 5.100000 +755 2087 5.100000 +755 2116 5.100000 +755 2124 5.100000 +755 2126 5.100000 +755 2214 5.100000 +755 2309 5.100000 +755 2325 5.100000 +755 2355 5.100000 +755 2467 5.100000 +755 2538 5.100000 +755 2703 5.100000 +755 2735 5.100000 +755 2826 5.100000 +755 2881 5.100000 +755 3036 5.100000 +755 3053 5.100000 +755 3088 5.100000 +755 3120 5.100000 +756 35 5.100000 +756 402 5.100000 +756 441 5.100000 +756 530 5.100000 +756 624 5.100000 +756 660 5.100000 +756 678 5.100000 +756 722 5.100000 +756 751 5.100000 +756 942 5.100000 +756 1080 5.100000 +756 1131 5.100000 +756 1170 5.100000 +756 1201 5.100000 +756 1204 5.100000 +756 1231 5.100000 +756 1256 5.100000 +756 1337 5.100000 +756 1371 5.100000 +756 1385 5.100000 +756 1444 5.100000 +756 1449 5.100000 +756 1484 5.100000 +756 1528 5.100000 +756 1559 5.100000 +756 1560 5.100000 +756 1570 5.100000 +756 1589 5.100000 +756 1731 5.100000 +756 1736 5.100000 +756 1876 5.100000 +756 1928 5.100000 +756 1943 5.100000 +756 1962 5.100000 +756 1997 5.100000 +756 2013 5.100000 +756 2027 5.100000 +756 2168 5.100000 +756 2253 5.100000 +756 2295 5.100000 +756 2422 5.100000 +756 2433 5.100000 +756 2435 5.100000 +756 2458 5.100000 +756 2633 5.100000 +756 2640 5.100000 +756 2683 5.100000 +756 2699 5.100000 +756 2727 5.100000 +756 2848 5.100000 +756 2858 5.100000 +756 2968 5.100000 +756 3014 5.100000 +756 3098 5.100000 +756 3136 5.100000 +756 3183 5.100000 +756 3196 5.100000 +757 20 5.100000 +757 38 5.100000 +757 130 5.100000 +757 149 5.100000 +757 165 5.100000 +757 214 5.100000 +757 252 5.100000 +757 270 5.100000 +757 306 5.100000 +757 307 5.100000 +757 324 5.100000 +757 426 5.100000 +757 456 5.100000 +757 469 5.100000 +757 478 5.100000 +757 550 5.100000 +757 567 5.100000 +757 633 5.100000 +757 642 5.100000 +757 708 5.100000 +757 974 5.100000 +757 1011 5.100000 +757 1019 5.100000 +757 1090 5.100000 +757 1203 5.100000 +757 1241 5.100000 +757 1297 5.100000 +757 1535 5.100000 +757 1569 5.100000 +757 1630 5.100000 +757 1846 5.100000 +757 1853 5.100000 +757 1998 5.100000 +757 2014 5.100000 +757 2045 5.100000 +757 2219 5.100000 +757 2223 5.100000 +757 2239 5.100000 +757 2243 5.100000 +757 2245 5.100000 +757 2364 5.100000 +757 2401 5.100000 +757 2429 5.100000 +757 2431 5.100000 +757 2459 5.100000 +757 2518 5.100000 +757 2567 5.100000 +757 2656 5.100000 +757 2795 5.100000 +757 2839 5.100000 +757 2860 5.100000 +757 3074 5.100000 +757 3125 5.100000 +757 3157 5.100000 +757 3175 5.100000 +758 105 5.100000 +758 147 5.100000 +758 226 5.100000 +758 303 5.100000 +758 341 5.100000 +758 365 5.100000 +758 374 5.100000 +758 401 5.100000 +758 418 5.100000 +758 572 5.100000 +758 587 5.100000 +758 597 5.100000 +758 644 5.100000 +758 746 5.100000 +758 762 5.100000 +758 799 5.100000 +758 873 5.100000 +758 883 5.100000 +758 987 5.100000 +758 1001 5.100000 +758 1050 5.100000 +758 1066 5.100000 +758 1094 5.100000 +758 1100 5.100000 +758 1264 5.100000 +758 1431 5.100000 +758 1436 5.100000 +758 1442 5.100000 +758 1450 5.100000 +758 1452 5.100000 +758 1482 5.100000 +758 1506 5.100000 +758 1563 5.100000 +758 1622 5.100000 +758 1676 5.100000 +758 1733 5.100000 +758 1837 5.100000 +758 1879 5.100000 +758 1882 5.100000 +758 1912 5.100000 +758 2052 5.100000 +758 2173 5.100000 +758 2214 5.100000 +758 2226 5.100000 +758 2310 5.100000 +758 2387 5.100000 +758 2524 5.100000 +758 2544 5.100000 +758 2623 5.100000 +758 2664 5.100000 +758 2676 5.100000 +758 2741 5.100000 +758 2756 5.100000 +758 2764 5.100000 +758 2765 5.100000 +758 2857 5.100000 +758 2861 5.100000 +758 2923 5.100000 +758 2925 5.100000 +758 2941 5.100000 +758 3004 5.100000 +758 3020 5.100000 +759 4 5.100000 +759 27 5.100000 +759 84 5.100000 +759 132 5.100000 +759 134 5.100000 +759 160 5.100000 +759 195 5.100000 +759 221 5.100000 +759 358 5.100000 +759 393 5.100000 +759 439 5.100000 +759 444 5.100000 +759 648 5.100000 +759 715 5.100000 +759 730 5.100000 +759 759 5.100000 +759 795 5.100000 +759 817 5.100000 +759 834 5.100000 +759 862 5.100000 +759 917 5.100000 +759 927 5.100000 +759 984 5.100000 +759 1033 5.100000 +759 1080 5.100000 +759 1179 5.100000 +759 1186 5.100000 +759 1200 5.100000 +759 1254 5.100000 +759 1267 5.100000 +759 1289 5.100000 +759 1300 5.100000 +759 1340 5.100000 +759 1461 5.100000 +759 1467 5.100000 +759 1493 5.100000 +759 1496 5.100000 +759 1522 5.100000 +759 1602 5.100000 +759 1672 5.100000 +759 1787 5.100000 +759 1800 5.100000 +759 1806 5.100000 +759 1821 5.100000 +759 1849 5.100000 +759 1899 5.100000 +759 1958 5.100000 +759 1975 5.100000 +759 2017 5.100000 +759 2018 5.100000 +759 2022 5.100000 +759 2039 5.100000 +759 2052 5.100000 +759 2056 5.100000 +759 2095 5.100000 +759 2144 5.100000 +759 2189 5.100000 +759 2288 5.100000 +759 2294 5.100000 +759 2358 5.100000 +759 2437 5.100000 +759 2548 5.100000 +759 2679 5.100000 +759 2748 5.100000 +759 2754 5.100000 +759 3015 5.100000 +760 17 5.100000 +760 41 5.100000 +760 59 5.100000 +760 78 5.100000 +760 119 5.100000 +760 210 5.100000 +760 225 5.100000 +760 237 5.100000 +760 269 5.100000 +760 284 5.100000 +760 335 5.100000 +760 378 5.100000 +760 397 5.100000 +760 400 5.100000 +760 434 5.100000 +760 526 5.100000 +760 564 5.100000 +760 674 5.100000 +760 681 5.100000 +760 694 5.100000 +760 786 5.100000 +760 808 5.100000 +760 864 5.100000 +760 867 5.100000 +760 872 5.100000 +760 877 5.100000 +760 894 5.100000 +760 914 5.100000 +760 944 5.100000 +760 990 5.100000 +760 993 5.100000 +760 1053 5.100000 +760 1065 5.100000 +760 1081 5.100000 +760 1098 5.100000 +760 1109 5.100000 +760 1152 5.100000 +760 1199 5.100000 +760 1228 5.100000 +760 1503 5.100000 +760 1511 5.100000 +760 1544 5.100000 +760 1555 5.100000 +760 1588 5.100000 +760 1616 5.100000 +760 1711 5.100000 +760 1722 5.100000 +760 1746 5.100000 +760 1838 5.100000 +760 1847 5.100000 +760 1907 5.100000 +760 1941 5.100000 +760 2001 5.100000 +760 2005 5.100000 +760 2071 5.100000 +760 2317 5.100000 +760 2373 5.100000 +760 2376 5.100000 +760 2400 5.100000 +760 2421 5.100000 +760 2443 5.100000 +760 2553 5.100000 +760 2621 5.100000 +760 2623 5.100000 +760 2725 5.100000 +760 2745 5.100000 +760 2772 5.100000 +760 2781 5.100000 +760 2909 5.100000 +760 2928 5.100000 +760 2967 5.100000 +760 2990 5.100000 +760 3040 5.100000 +760 3057 5.100000 +760 3119 5.100000 +761 48 5.100000 +761 181 5.100000 +761 183 5.100000 +761 209 5.100000 +761 265 5.100000 +761 315 5.100000 +761 507 5.100000 +761 556 5.100000 +761 563 5.100000 +761 571 5.100000 +761 608 5.100000 +761 614 5.100000 +761 650 5.100000 +761 811 5.100000 +761 1073 5.100000 +761 1135 5.100000 +761 1140 5.100000 +761 1148 5.100000 +761 1157 5.100000 +761 1201 5.100000 +761 1226 5.100000 +761 1244 5.100000 +761 1259 5.100000 +761 1288 5.100000 +761 1366 5.100000 +761 1382 5.100000 +761 1441 5.100000 +761 1481 5.100000 +761 1488 5.100000 +761 1498 5.100000 +761 1513 5.100000 +761 1560 5.100000 +761 1670 5.100000 +761 1796 5.100000 +761 1832 5.100000 +761 1904 5.100000 +761 1938 5.100000 +761 1963 5.100000 +761 2089 5.100000 +761 2293 5.100000 +761 2364 5.100000 +761 2435 5.100000 +761 2464 5.100000 +761 2481 5.100000 +761 2493 5.100000 +761 2512 5.100000 +761 2620 5.100000 +761 2693 5.100000 +761 2703 5.100000 +761 2871 5.100000 +761 2908 5.100000 +761 2966 5.100000 +761 3018 5.100000 +761 3044 5.100000 +761 3072 5.100000 +761 3134 5.100000 +762 17 5.100000 +762 27 5.100000 +762 33 5.100000 +762 48 5.100000 +762 76 5.100000 +762 80 5.100000 +762 101 5.100000 +762 106 5.100000 +762 181 5.100000 +762 343 5.100000 +762 349 5.100000 +762 370 5.100000 +762 415 5.100000 +762 449 5.100000 +762 458 5.100000 +762 479 5.100000 +762 558 5.100000 +762 587 5.100000 +762 680 5.100000 +762 692 5.100000 +762 730 5.100000 +762 742 5.100000 +762 749 5.100000 +762 816 5.100000 +762 820 5.100000 +762 821 5.100000 +762 852 5.100000 +762 854 5.100000 +762 897 5.100000 +762 898 5.100000 +762 911 5.100000 +762 932 5.100000 +762 949 5.100000 +762 998 5.100000 +762 1002 5.100000 +762 1057 5.100000 +762 1110 5.100000 +762 1343 5.100000 +762 1344 5.100000 +762 1382 5.100000 +762 1399 5.100000 +762 1408 5.100000 +762 1472 5.100000 +762 1480 5.100000 +762 1493 5.100000 +762 1581 5.100000 +762 1652 5.100000 +762 1663 5.100000 +762 1703 5.100000 +762 1712 5.100000 +762 1714 5.100000 +762 1774 5.100000 +762 1782 5.100000 +762 1800 5.100000 +762 1867 5.100000 +762 1908 5.100000 +762 1992 5.100000 +762 1998 5.100000 +762 2033 5.100000 +762 2067 5.100000 +762 2109 5.100000 +762 2151 5.100000 +762 2192 5.100000 +762 2200 5.100000 +762 2387 5.100000 +762 2420 5.100000 +762 2436 5.100000 +762 2483 5.100000 +762 2502 5.100000 +762 2560 5.100000 +762 2598 5.100000 +762 2678 5.100000 +762 2702 5.100000 +762 2732 5.100000 +762 2736 5.100000 +762 2743 5.100000 +762 2766 5.100000 +762 2922 5.100000 +762 2943 5.100000 +762 2961 5.100000 +762 3004 5.100000 +762 3006 5.100000 +762 3034 5.100000 +762 3047 5.100000 +762 3076 5.100000 +762 3111 5.100000 +762 3184 5.100000 +763 42 5.100000 +763 77 5.100000 +763 208 5.100000 +763 212 5.100000 +763 247 5.100000 +763 258 5.100000 +763 268 5.100000 +763 311 5.100000 +763 371 5.100000 +763 428 5.100000 +763 441 5.100000 +763 467 5.100000 +763 485 5.100000 +763 546 5.100000 +763 556 5.100000 +763 570 5.100000 +763 597 5.100000 +763 641 5.100000 +763 687 5.100000 +763 788 5.100000 +763 830 5.100000 +763 843 5.100000 +763 860 5.100000 +763 915 5.100000 +763 922 5.100000 +763 955 5.100000 +763 985 5.100000 +763 1008 5.100000 +763 1149 5.100000 +763 1266 5.100000 +763 1293 5.100000 +763 1307 5.100000 +763 1345 5.100000 +763 1353 5.100000 +763 1380 5.100000 +763 1416 5.100000 +763 1430 5.100000 +763 1478 5.100000 +763 1505 5.100000 +763 1528 5.100000 +763 1535 5.100000 +763 1593 5.100000 +763 1636 5.100000 +763 1813 5.100000 +763 1861 5.100000 +763 1989 5.100000 +763 2111 5.100000 +763 2113 5.100000 +763 2146 5.100000 +763 2167 5.100000 +763 2176 5.100000 +763 2333 5.100000 +763 2369 5.100000 +763 2428 5.100000 +763 2485 5.100000 +763 2512 5.100000 +763 2523 5.100000 +763 2565 5.100000 +763 2574 5.100000 +763 2631 5.100000 +763 2652 5.100000 +763 2685 5.100000 +763 2714 5.100000 +763 2716 5.100000 +763 2734 5.100000 +763 2743 5.100000 +763 2772 5.100000 +763 2850 5.100000 +763 2895 5.100000 +763 2917 5.100000 +763 2928 5.100000 +763 3027 5.100000 +763 3084 5.100000 +763 3161 5.100000 +763 3193 5.100000 +764 10 5.100000 +764 38 5.100000 +764 69 5.100000 +764 199 5.100000 +764 242 5.100000 +764 245 5.100000 +764 249 5.100000 +764 384 5.100000 +764 439 5.100000 +764 618 5.100000 +764 754 5.100000 +764 815 5.100000 +764 924 5.100000 +764 984 5.100000 +764 1087 5.100000 +764 1089 5.100000 +764 1131 5.100000 +764 1172 5.100000 +764 1271 5.100000 +764 1357 5.100000 +764 1454 5.100000 +764 1557 5.100000 +764 1597 5.100000 +764 1834 5.100000 +764 1942 5.100000 +764 1968 5.100000 +764 1991 5.100000 +764 2077 5.100000 +764 2093 5.100000 +764 2102 5.100000 +764 2137 5.100000 +764 2257 5.100000 +764 2268 5.100000 +764 2358 5.100000 +764 2413 5.100000 +764 2569 5.100000 +764 2575 5.100000 +764 2611 5.100000 +764 2754 5.100000 +764 2857 5.100000 +764 2914 5.100000 +764 2969 5.100000 +764 3049 5.100000 +764 3115 5.100000 +764 3133 5.100000 +764 3145 5.100000 +764 3147 5.100000 +764 3187 5.100000 +765 115 5.100000 +765 120 5.100000 +765 145 5.100000 +765 163 5.100000 +765 221 5.100000 +765 239 5.100000 +765 267 5.100000 +765 315 5.100000 +765 493 5.100000 +765 511 5.100000 +765 633 5.100000 +765 676 5.100000 +765 677 5.100000 +765 693 5.100000 +765 724 5.100000 +765 745 5.100000 +765 950 5.100000 +765 1072 5.100000 +765 1089 5.100000 +765 1097 5.100000 +765 1104 5.100000 +765 1198 5.100000 +765 1227 5.100000 +765 1234 5.100000 +765 1242 5.100000 +765 1244 5.100000 +765 1347 5.100000 +765 1387 5.100000 +765 1460 5.100000 +765 1484 5.100000 +765 1508 5.100000 +765 1531 5.100000 +765 1612 5.100000 +765 1636 5.100000 +765 1699 5.100000 +765 1859 5.100000 +765 1893 5.100000 +765 1907 5.100000 +765 1927 5.100000 +765 1937 5.100000 +765 2047 5.100000 +765 2067 5.100000 +765 2193 5.100000 +765 2208 5.100000 +765 2311 5.100000 +765 2335 5.100000 +765 2375 5.100000 +765 2411 5.100000 +765 2434 5.100000 +765 2533 5.100000 +765 2659 5.100000 +765 2734 5.100000 +765 2803 5.100000 +765 2863 5.100000 +765 2911 5.100000 +765 2923 5.100000 +765 2952 5.100000 +765 2964 5.100000 +765 3036 5.100000 +765 3095 5.100000 +765 3119 5.100000 +765 3138 5.100000 +765 3148 5.100000 +766 100 5.100000 +766 189 5.100000 +766 241 5.100000 +766 283 5.100000 +766 285 5.100000 +766 309 5.100000 +766 317 5.100000 +766 403 5.100000 +766 444 5.100000 +766 472 5.100000 +766 544 5.100000 +766 568 5.100000 +766 641 5.100000 +766 660 5.100000 +766 663 5.100000 +766 722 5.100000 +766 879 5.100000 +766 898 5.100000 +766 1163 5.100000 +766 1171 5.100000 +766 1191 5.100000 +766 1284 5.100000 +766 1304 5.100000 +766 1321 5.100000 +766 1369 5.100000 +766 1373 5.100000 +766 1413 5.100000 +766 1506 5.100000 +766 1520 5.100000 +766 1568 5.100000 +766 1583 5.100000 +766 1632 5.100000 +766 1650 5.100000 +766 1701 5.100000 +766 1885 5.100000 +766 1914 5.100000 +766 2041 5.100000 +766 2210 5.100000 +766 2351 5.100000 +766 2464 5.100000 +766 2474 5.100000 +766 2509 5.100000 +766 2607 5.100000 +766 2624 5.100000 +766 2630 5.100000 +766 2807 5.100000 +766 2808 5.100000 +766 2838 5.100000 +766 2901 5.100000 +766 2970 5.100000 +766 3127 5.100000 +766 3133 5.100000 +767 15 5.100000 +767 25 5.100000 +767 68 5.100000 +767 73 5.100000 +767 152 5.100000 +767 162 5.100000 +767 281 5.100000 +767 345 5.100000 +767 349 5.100000 +767 384 5.100000 +767 432 5.100000 +767 439 5.100000 +767 503 5.100000 +767 544 5.100000 +767 546 5.100000 +767 581 5.100000 +767 595 5.100000 +767 797 5.100000 +767 820 5.100000 +767 826 5.100000 +767 836 5.100000 +767 954 5.100000 +767 1055 5.100000 +767 1107 5.100000 +767 1124 5.100000 +767 1192 5.100000 +767 1217 5.100000 +767 1315 5.100000 +767 1365 5.100000 +767 1370 5.100000 +767 1373 5.100000 +767 1404 5.100000 +767 1477 5.100000 +767 1484 5.100000 +767 1534 5.100000 +767 1538 5.100000 +767 1648 5.100000 +767 1649 5.100000 +767 1679 5.100000 +767 1719 5.100000 +767 1782 5.100000 +767 1788 5.100000 +767 1811 5.100000 +767 1817 5.100000 +767 1993 5.100000 +767 2004 5.100000 +767 2105 5.100000 +767 2145 5.100000 +767 2199 5.100000 +767 2210 5.100000 +767 2260 5.100000 +767 2292 5.100000 +767 2310 5.100000 +767 2396 5.100000 +767 2497 5.100000 +767 2690 5.100000 +767 2698 5.100000 +767 2712 5.100000 +767 2821 5.100000 +767 2878 5.100000 +767 2905 5.100000 +767 2908 5.100000 +767 2911 5.100000 +767 2920 5.100000 +767 2967 5.100000 +767 3007 5.100000 +767 3090 5.100000 +767 3108 5.100000 +767 3110 5.100000 +767 3120 5.100000 +767 3192 5.100000 +768 17 5.100000 +768 78 5.100000 +768 108 5.100000 +768 166 5.100000 +768 174 5.100000 +768 181 5.100000 +768 293 5.100000 +768 325 5.100000 +768 338 5.100000 +768 650 5.100000 +768 802 5.100000 +768 843 5.100000 +768 917 5.100000 +768 962 5.100000 +768 1119 5.100000 +768 1214 5.100000 +768 1218 5.100000 +768 1225 5.100000 +768 1253 5.100000 +768 1295 5.100000 +768 1304 5.100000 +768 1402 5.100000 +768 1517 5.100000 +768 1524 5.100000 +768 1556 5.100000 +768 1579 5.100000 +768 1652 5.100000 +768 1718 5.100000 +768 1723 5.100000 +768 1746 5.100000 +768 1833 5.100000 +768 1851 5.100000 +768 1852 5.100000 +768 2008 5.100000 +768 2012 5.100000 +768 2025 5.100000 +768 2096 5.100000 +768 2106 5.100000 +768 2133 5.100000 +768 2193 5.100000 +768 2242 5.100000 +768 2253 5.100000 +768 2264 5.100000 +768 2368 5.100000 +768 2380 5.100000 +768 2389 5.100000 +768 2444 5.100000 +768 2452 5.100000 +768 2508 5.100000 +768 2530 5.100000 +768 2639 5.100000 +768 2762 5.100000 +768 2883 5.100000 +768 2973 5.100000 +768 2979 5.100000 +768 2987 5.100000 +768 3012 5.100000 +768 3018 5.100000 +768 3074 5.100000 +768 3116 5.100000 +768 3138 5.100000 +768 3189 5.100000 +769 4 5.100000 +769 59 5.100000 +769 68 5.100000 +769 78 5.100000 +769 111 5.100000 +769 129 5.100000 +769 257 5.100000 +769 350 5.100000 +769 367 5.100000 +769 478 5.100000 +769 502 5.100000 +769 544 5.100000 +769 551 5.100000 +769 600 5.100000 +769 643 5.100000 +769 808 5.100000 +769 835 5.100000 +769 945 5.100000 +769 982 5.100000 +769 1037 5.100000 +769 1242 5.100000 +769 1279 5.100000 +769 1366 5.100000 +769 1380 5.100000 +769 1426 5.100000 +769 1495 5.100000 +769 1497 5.100000 +769 1593 5.100000 +769 1634 5.100000 +769 1662 5.100000 +769 1675 5.100000 +769 1765 5.100000 +769 1777 5.100000 +769 1813 5.100000 +769 1893 5.100000 +769 2060 5.100000 +769 2113 5.100000 +769 2178 5.100000 +769 2180 5.100000 +769 2198 5.100000 +769 2237 5.100000 +769 2290 5.100000 +769 2298 5.100000 +769 2626 5.100000 +769 2704 5.100000 +769 2743 5.100000 +769 2766 5.100000 +769 2809 5.100000 +769 2813 5.100000 +769 2826 5.100000 +769 2851 5.100000 +769 2889 5.100000 +769 2915 5.100000 +769 2961 5.100000 +769 2995 5.100000 +769 3078 5.100000 +769 3123 5.100000 +769 3199 5.100000 +770 81 5.100000 +770 144 5.100000 +770 204 5.100000 +770 374 5.100000 +770 394 5.100000 +770 454 5.100000 +770 466 5.100000 +770 498 5.100000 +770 520 5.100000 +770 540 5.100000 +770 556 5.100000 +770 672 5.100000 +770 676 5.100000 +770 706 5.100000 +770 717 5.100000 +770 772 5.100000 +770 786 5.100000 +770 862 5.100000 +770 879 5.100000 +770 889 5.100000 +770 1000 5.100000 +770 1087 5.100000 +770 1103 5.100000 +770 1166 5.100000 +770 1206 5.100000 +770 1265 5.100000 +770 1273 5.100000 +770 1284 5.100000 +770 1316 5.100000 +770 1365 5.100000 +770 1370 5.100000 +770 1546 5.100000 +770 1634 5.100000 +770 1767 5.100000 +770 1795 5.100000 +770 1881 5.100000 +770 1925 5.100000 +770 1927 5.100000 +770 1967 5.100000 +770 2049 5.100000 +770 2057 5.100000 +770 2075 5.100000 +770 2079 5.100000 +770 2164 5.100000 +770 2250 5.100000 +770 2255 5.100000 +770 2335 5.100000 +770 2357 5.100000 +770 2399 5.100000 +770 2419 5.100000 +770 2424 5.100000 +770 2433 5.100000 +770 2451 5.100000 +770 2506 5.100000 +770 2562 5.100000 +770 2581 5.100000 +770 2600 5.100000 +770 2619 5.100000 +770 2640 5.100000 +770 2648 5.100000 +770 2698 5.100000 +770 2711 5.100000 +770 2762 5.100000 +770 2769 5.100000 +770 2837 5.100000 +770 2864 5.100000 +770 2896 5.100000 +770 2950 5.100000 +770 2951 5.100000 +770 2990 5.100000 +770 3041 5.100000 +770 3129 5.100000 +771 2 5.100000 +771 156 5.100000 +771 228 5.100000 +771 244 5.100000 +771 314 5.100000 +771 416 5.100000 +771 426 5.100000 +771 453 5.100000 +771 529 5.100000 +771 594 5.100000 +771 605 5.100000 +771 814 5.100000 +771 950 5.100000 +771 1027 5.100000 +771 1048 5.100000 +771 1066 5.100000 +771 1114 5.100000 +771 1129 5.100000 +771 1259 5.100000 +771 1272 5.100000 +771 1475 5.100000 +771 1510 5.100000 +771 1555 5.100000 +771 1566 5.100000 +771 1577 5.100000 +771 1587 5.100000 +771 1644 5.100000 +771 1659 5.100000 +771 1685 5.100000 +771 1768 5.100000 +771 1907 5.100000 +771 1922 5.100000 +771 1947 5.100000 +771 1951 5.100000 +771 1975 5.100000 +771 1991 5.100000 +771 1994 5.100000 +771 1995 5.100000 +771 2030 5.100000 +771 2031 5.100000 +771 2034 5.100000 +771 2073 5.100000 +771 2084 5.100000 +771 2088 5.100000 +771 2168 5.100000 +771 2196 5.100000 +771 2235 5.100000 +771 2316 5.100000 +771 2337 5.100000 +771 2345 5.100000 +771 2370 5.100000 +771 2426 5.100000 +771 2456 5.100000 +771 2494 5.100000 +771 2544 5.100000 +771 2585 5.100000 +771 2642 5.100000 +771 2645 5.100000 +771 2720 5.100000 +771 2792 5.100000 +771 2805 5.100000 +771 2807 5.100000 +771 2861 5.100000 +771 2950 5.100000 +771 3046 5.100000 +771 3142 5.100000 +771 3156 5.100000 +772 10 5.100000 +772 45 5.100000 +772 110 5.100000 +772 182 5.100000 +772 218 5.100000 +772 223 5.100000 +772 280 5.100000 +772 323 5.100000 +772 342 5.100000 +772 414 5.100000 +772 422 5.100000 +772 445 5.100000 +772 469 5.100000 +772 477 5.100000 +772 479 5.100000 +772 504 5.100000 +772 624 5.100000 +772 791 5.100000 +772 817 5.100000 +772 893 5.100000 +772 895 5.100000 +772 911 5.100000 +772 912 5.100000 +772 956 5.100000 +772 959 5.100000 +772 961 5.100000 +772 1140 5.100000 +772 1180 5.100000 +772 1284 5.100000 +772 1481 5.100000 +772 1537 5.100000 +772 1590 5.100000 +772 1609 5.100000 +772 1617 5.100000 +772 1698 5.100000 +772 1739 5.100000 +772 1801 5.100000 +772 1809 5.100000 +772 1839 5.100000 +772 2048 5.100000 +772 2184 5.100000 +772 2254 5.100000 +772 2676 5.100000 +772 2682 5.100000 +772 2836 5.100000 +772 2896 5.100000 +772 2921 5.100000 +772 2935 5.100000 +772 2958 5.100000 +772 2980 5.100000 +772 3020 5.100000 +772 3122 5.100000 +772 3195 5.100000 +773 53 5.100000 +773 77 5.100000 +773 147 5.100000 +773 164 5.100000 +773 170 5.100000 +773 230 5.100000 +773 231 5.100000 +773 248 5.100000 +773 295 5.100000 +773 342 5.100000 +773 355 5.100000 +773 390 5.100000 +773 396 5.100000 +773 410 5.100000 +773 493 5.100000 +773 578 5.100000 +773 582 5.100000 +773 584 5.100000 +773 598 5.100000 +773 848 5.100000 +773 925 5.100000 +773 940 5.100000 +773 1120 5.100000 +773 1182 5.100000 +773 1186 5.100000 +773 1193 5.100000 +773 1221 5.100000 +773 1349 5.100000 +773 1371 5.100000 +773 1407 5.100000 +773 1419 5.100000 +773 1440 5.100000 +773 1507 5.100000 +773 1567 5.100000 +773 1684 5.100000 +773 1741 5.100000 +773 1764 5.100000 +773 1784 5.100000 +773 1905 5.100000 +773 2020 5.100000 +773 2023 5.100000 +773 2136 5.100000 +773 2170 5.100000 +773 2255 5.100000 +773 2316 5.100000 +773 2377 5.100000 +773 2504 5.100000 +773 2613 5.100000 +773 2624 5.100000 +773 2679 5.100000 +773 2749 5.100000 +773 2826 5.100000 +773 2860 5.100000 +773 2922 5.100000 +773 2923 5.100000 +773 2980 5.100000 +773 2982 5.100000 +773 3020 5.100000 +773 3065 5.100000 +773 3066 5.100000 +773 3067 5.100000 +773 3130 5.100000 +773 3140 5.100000 +773 3175 5.100000 +774 35 5.100000 +774 53 5.100000 +774 239 5.100000 +774 252 5.100000 +774 282 5.100000 +774 309 5.100000 +774 321 5.100000 +774 357 5.100000 +774 430 5.100000 +774 437 5.100000 +774 496 5.100000 +774 671 5.100000 +774 741 5.100000 +774 814 5.100000 +774 872 5.100000 +774 1057 5.100000 +774 1062 5.100000 +774 1135 5.100000 +774 1185 5.100000 +774 1188 5.100000 +774 1446 5.100000 +774 1448 5.100000 +774 1508 5.100000 +774 1518 5.100000 +774 1564 5.100000 +774 1643 5.100000 +774 1647 5.100000 +774 1677 5.100000 +774 1729 5.100000 +774 1735 5.100000 +774 1760 5.100000 +774 1873 5.100000 +774 1896 5.100000 +774 1919 5.100000 +774 2047 5.100000 +774 2080 5.100000 +774 2092 5.100000 +774 2130 5.100000 +774 2231 5.100000 +774 2267 5.100000 +774 2273 5.100000 +774 2304 5.100000 +774 2483 5.100000 +774 2496 5.100000 +774 2515 5.100000 +774 2539 5.100000 +774 2547 5.100000 +774 2598 5.100000 +774 2603 5.100000 +774 2614 5.100000 +774 2772 5.100000 +774 2920 5.100000 +774 2940 5.100000 +774 2942 5.100000 +774 2947 5.100000 +774 3022 5.100000 +774 3057 5.100000 +774 3060 5.100000 +774 3088 5.100000 +774 3090 5.100000 +775 10 5.100000 +775 56 5.100000 +775 70 5.100000 +775 217 5.100000 +775 223 5.100000 +775 360 5.100000 +775 374 5.100000 +775 398 5.100000 +775 411 5.100000 +775 438 5.100000 +775 638 5.100000 +775 668 5.100000 +775 686 5.100000 +775 789 5.100000 +775 853 5.100000 +775 1055 5.100000 +775 1082 5.100000 +775 1105 5.100000 +775 1112 5.100000 +775 1161 5.100000 +775 1220 5.100000 +775 1276 5.100000 +775 1291 5.100000 +775 1330 5.100000 +775 1446 5.100000 +775 1471 5.100000 +775 1526 5.100000 +775 1589 5.100000 +775 1598 5.100000 +775 1665 5.100000 +775 1742 5.100000 +775 1791 5.100000 +775 1803 5.100000 +775 1832 5.100000 +775 1870 5.100000 +775 1888 5.100000 +775 1889 5.100000 +775 2059 5.100000 +775 2168 5.100000 +775 2174 5.100000 +775 2209 5.100000 +775 2219 5.100000 +775 2222 5.100000 +775 2259 5.100000 +775 2269 5.100000 +775 2300 5.100000 +775 2365 5.100000 +775 2507 5.100000 +775 2587 5.100000 +775 2639 5.100000 +775 2672 5.100000 +775 2696 5.100000 +775 2697 5.100000 +775 2750 5.100000 +775 2758 5.100000 +775 2809 5.100000 +775 2823 5.100000 +775 2824 5.100000 +775 2831 5.100000 +775 2837 5.100000 +775 2915 5.100000 +775 2991 5.100000 +775 3017 5.100000 +775 3093 5.100000 +775 3100 5.100000 +775 3193 5.100000 +776 20 5.100000 +776 24 5.100000 +776 55 5.100000 +776 85 5.100000 +776 118 5.100000 +776 162 5.100000 +776 174 5.100000 +776 203 5.100000 +776 219 5.100000 +776 247 5.100000 +776 263 5.100000 +776 273 5.100000 +776 306 5.100000 +776 378 5.100000 +776 451 5.100000 +776 532 5.100000 +776 562 5.100000 +776 608 5.100000 +776 609 5.100000 +776 617 5.100000 +776 690 5.100000 +776 822 5.100000 +776 824 5.100000 +776 944 5.100000 +776 980 5.100000 +776 982 5.100000 +776 985 5.100000 +776 1104 5.100000 +776 1160 5.100000 +776 1212 5.100000 +776 1237 5.100000 +776 1428 5.100000 +776 1479 5.100000 +776 1484 5.100000 +776 1604 5.100000 +776 1709 5.100000 +776 1810 5.100000 +776 1830 5.100000 +776 1861 5.100000 +776 1880 5.100000 +776 1889 5.100000 +776 1890 5.100000 +776 2023 5.100000 +776 2080 5.100000 +776 2087 5.100000 +776 2160 5.100000 +776 2327 5.100000 +776 2357 5.100000 +776 2438 5.100000 +776 2443 5.100000 +776 2444 5.100000 +776 2461 5.100000 +776 2520 5.100000 +776 2660 5.100000 +776 2672 5.100000 +776 2678 5.100000 +776 2728 5.100000 +776 2790 5.100000 +776 2801 5.100000 +776 2826 5.100000 +776 2874 5.100000 +776 2877 5.100000 +776 3037 5.100000 +776 3047 5.100000 +776 3062 5.100000 +776 3158 5.100000 +776 3168 5.100000 +777 47 5.100000 +777 73 5.100000 +777 82 5.100000 +777 146 5.100000 +777 154 5.100000 +777 184 5.100000 +777 207 5.100000 +777 307 5.100000 +777 357 5.100000 +777 369 5.100000 +777 464 5.100000 +777 476 5.100000 +777 485 5.100000 +777 519 5.100000 +777 614 5.100000 +777 642 5.100000 +777 696 5.100000 +777 748 5.100000 +777 758 5.100000 +777 768 5.100000 +777 792 5.100000 +777 822 5.100000 +777 898 5.100000 +777 1029 5.100000 +777 1043 5.100000 +777 1163 5.100000 +777 1205 5.100000 +777 1429 5.100000 +777 1459 5.100000 +777 1562 5.100000 +777 1640 5.100000 +777 1715 5.100000 +777 1747 5.100000 +777 1774 5.100000 +777 1860 5.100000 +777 1878 5.100000 +777 1887 5.100000 +777 1985 5.100000 +777 2010 5.100000 +777 2049 5.100000 +777 2083 5.100000 +777 2242 5.100000 +777 2275 5.100000 +777 2311 5.100000 +777 2400 5.100000 +777 2444 5.100000 +777 2465 5.100000 +777 2550 5.100000 +777 2551 5.100000 +777 2552 5.100000 +777 2641 5.100000 +777 2697 5.100000 +777 2707 5.100000 +777 2773 5.100000 +777 2785 5.100000 +777 2786 5.100000 +777 2790 5.100000 +777 2800 5.100000 +777 2914 5.100000 +777 3099 5.100000 +777 3179 5.100000 +778 70 5.100000 +778 115 5.100000 +778 178 5.100000 +778 183 5.100000 +778 218 5.100000 +778 225 5.100000 +778 233 5.100000 +778 444 5.100000 +778 464 5.100000 +778 552 5.100000 +778 568 5.100000 +778 640 5.100000 +778 670 5.100000 +778 727 5.100000 +778 801 5.100000 +778 833 5.100000 +778 855 5.100000 +778 872 5.100000 +778 1133 5.100000 +778 1196 5.100000 +778 1308 5.100000 +778 1315 5.100000 +778 1344 5.100000 +778 1567 5.100000 +778 1633 5.100000 +778 1648 5.100000 +778 1698 5.100000 +778 1804 5.100000 +778 1888 5.100000 +778 1925 5.100000 +778 1987 5.100000 +778 2001 5.100000 +778 2022 5.100000 +778 2225 5.100000 +778 2235 5.100000 +778 2299 5.100000 +778 2388 5.100000 +778 2398 5.100000 +778 2454 5.100000 +778 2466 5.100000 +778 2497 5.100000 +778 2556 5.100000 +778 2588 5.100000 +778 2604 5.100000 +778 2711 5.100000 +778 2806 5.100000 +778 2860 5.100000 +778 2862 5.100000 +778 2884 5.100000 +778 2897 5.100000 +778 2915 5.100000 +778 2947 5.100000 +778 2959 5.100000 +778 2998 5.100000 +778 3095 5.100000 +778 3124 5.100000 +778 3132 5.100000 +778 3136 5.100000 +779 22 5.100000 +779 50 5.100000 +779 146 5.100000 +779 223 5.100000 +779 309 5.100000 +779 368 5.100000 +779 370 5.100000 +779 399 5.100000 +779 409 5.100000 +779 431 5.100000 +779 473 5.100000 +779 498 5.100000 +779 511 5.100000 +779 546 5.100000 +779 573 5.100000 +779 574 5.100000 +779 617 5.100000 +779 627 5.100000 +779 687 5.100000 +779 713 5.100000 +779 796 5.100000 +779 807 5.100000 +779 818 5.100000 +779 830 5.100000 +779 845 5.100000 +779 858 5.100000 +779 862 5.100000 +779 963 5.100000 +779 1152 5.100000 +779 1172 5.100000 +779 1336 5.100000 +779 1351 5.100000 +779 1429 5.100000 +779 1455 5.100000 +779 1539 5.100000 +779 1557 5.100000 +779 1652 5.100000 +779 1755 5.100000 +779 1772 5.100000 +779 1780 5.100000 +779 1792 5.100000 +779 1834 5.100000 +779 1861 5.100000 +779 1903 5.100000 +779 1947 5.100000 +779 1975 5.100000 +779 1983 5.100000 +779 2011 5.100000 +779 2017 5.100000 +779 2031 5.100000 +779 2082 5.100000 +779 2111 5.100000 +779 2125 5.100000 +779 2159 5.100000 +779 2175 5.100000 +779 2176 5.100000 +779 2229 5.100000 +779 2285 5.100000 +779 2305 5.100000 +779 2322 5.100000 +779 2365 5.100000 +779 2400 5.100000 +779 2494 5.100000 +779 2518 5.100000 +779 2691 5.100000 +779 2718 5.100000 +779 2849 5.100000 +779 2869 5.100000 +779 2958 5.100000 +779 3018 5.100000 +779 3108 5.100000 +779 3199 5.100000 +780 55 5.100000 +780 56 5.100000 +780 162 5.100000 +780 248 5.100000 +780 303 5.100000 +780 334 5.100000 +780 336 5.100000 +780 411 5.100000 +780 438 5.100000 +780 463 5.100000 +780 470 5.100000 +780 592 5.100000 +780 642 5.100000 +780 671 5.100000 +780 685 5.100000 +780 707 5.100000 +780 763 5.100000 +780 851 5.100000 +780 1078 5.100000 +780 1106 5.100000 +780 1125 5.100000 +780 1158 5.100000 +780 1195 5.100000 +780 1313 5.100000 +780 1322 5.100000 +780 1547 5.100000 +780 1670 5.100000 +780 1789 5.100000 +780 1812 5.100000 +780 1826 5.100000 +780 1903 5.100000 +780 1978 5.100000 +780 1992 5.100000 +780 2060 5.100000 +780 2148 5.100000 +780 2173 5.100000 +780 2250 5.100000 +780 2260 5.100000 +780 2323 5.100000 +780 2365 5.100000 +780 2539 5.100000 +780 2561 5.100000 +780 2609 5.100000 +780 2707 5.100000 +780 2739 5.100000 +780 2794 5.100000 +780 2820 5.100000 +780 2856 5.100000 +780 2857 5.100000 +780 2893 5.100000 +780 2910 5.100000 +780 2949 5.100000 +780 3066 5.100000 +780 3095 5.100000 +781 132 5.100000 +781 148 5.100000 +781 167 5.100000 +781 175 5.100000 +781 272 5.100000 +781 274 5.100000 +781 305 5.100000 +781 312 5.100000 +781 325 5.100000 +781 361 5.100000 +781 426 5.100000 +781 467 5.100000 +781 470 5.100000 +781 506 5.100000 +781 552 5.100000 +781 605 5.100000 +781 645 5.100000 +781 717 5.100000 +781 772 5.100000 +781 863 5.100000 +781 904 5.100000 +781 1004 5.100000 +781 1006 5.100000 +781 1011 5.100000 +781 1020 5.100000 +781 1035 5.100000 +781 1039 5.100000 +781 1041 5.100000 +781 1084 5.100000 +781 1105 5.100000 +781 1127 5.100000 +781 1136 5.100000 +781 1176 5.100000 +781 1205 5.100000 +781 1218 5.100000 +781 1235 5.100000 +781 1236 5.100000 +781 1345 5.100000 +781 1365 5.100000 +781 1468 5.100000 +781 1516 5.100000 +781 1547 5.100000 +781 1564 5.100000 +781 1605 5.100000 +781 1655 5.100000 +781 1668 5.100000 +781 1708 5.100000 +781 1802 5.100000 +781 1832 5.100000 +781 2008 5.100000 +781 2081 5.100000 +781 2155 5.100000 +781 2198 5.100000 +781 2253 5.100000 +781 2254 5.100000 +781 2312 5.100000 +781 2380 5.100000 +781 2437 5.100000 +781 2444 5.100000 +781 2473 5.100000 +781 2476 5.100000 +781 2537 5.100000 +781 2579 5.100000 +781 2672 5.100000 +781 2704 5.100000 +781 2761 5.100000 +781 2766 5.100000 +781 2913 5.100000 +781 2956 5.100000 +781 3011 5.100000 +781 3036 5.100000 +781 3073 5.100000 +781 3170 5.100000 +782 21 5.100000 +782 34 5.100000 +782 35 5.100000 +782 105 5.100000 +782 107 5.100000 +782 326 5.100000 +782 531 5.100000 +782 569 5.100000 +782 586 5.100000 +782 631 5.100000 +782 650 5.100000 +782 720 5.100000 +782 752 5.100000 +782 781 5.100000 +782 804 5.100000 +782 808 5.100000 +782 822 5.100000 +782 841 5.100000 +782 883 5.100000 +782 1028 5.100000 +782 1138 5.100000 +782 1156 5.100000 +782 1248 5.100000 +782 1255 5.100000 +782 1384 5.100000 +782 1387 5.100000 +782 1475 5.100000 +782 1500 5.100000 +782 1504 5.100000 +782 1779 5.100000 +782 1781 5.100000 +782 1813 5.100000 +782 1838 5.100000 +782 1844 5.100000 +782 1896 5.100000 +782 1925 5.100000 +782 2004 5.100000 +782 2070 5.100000 +782 2090 5.100000 +782 2116 5.100000 +782 2127 5.100000 +782 2202 5.100000 +782 2241 5.100000 +782 2245 5.100000 +782 2319 5.100000 +782 2365 5.100000 +782 2550 5.100000 +782 2610 5.100000 +782 2613 5.100000 +782 2627 5.100000 +782 2675 5.100000 +782 2712 5.100000 +782 2723 5.100000 +782 2825 5.100000 +782 2882 5.100000 +782 2887 5.100000 +782 2900 5.100000 +782 2926 5.100000 +782 2936 5.100000 +782 2945 5.100000 +782 2983 5.100000 +782 2990 5.100000 +782 3008 5.100000 +782 3089 5.100000 +782 3090 5.100000 +782 3154 5.100000 +783 36 5.100000 +783 230 5.100000 +783 255 5.100000 +783 278 5.100000 +783 300 5.100000 +783 344 5.100000 +783 391 5.100000 +783 420 5.100000 +783 457 5.100000 +783 476 5.100000 +783 484 5.100000 +783 496 5.100000 +783 577 5.100000 +783 684 5.100000 +783 692 5.100000 +783 784 5.100000 +783 820 5.100000 +783 847 5.100000 +783 909 5.100000 +783 922 5.100000 +783 1000 5.100000 +783 1007 5.100000 +783 1029 5.100000 +783 1033 5.100000 +783 1129 5.100000 +783 1253 5.100000 +783 1311 5.100000 +783 1379 5.100000 +783 1434 5.100000 +783 1447 5.100000 +783 1591 5.100000 +783 1597 5.100000 +783 1606 5.100000 +783 1658 5.100000 +783 1695 5.100000 +783 1717 5.100000 +783 1732 5.100000 +783 1733 5.100000 +783 1781 5.100000 +783 1816 5.100000 +783 1831 5.100000 +783 1868 5.100000 +783 1909 5.100000 +783 1937 5.100000 +783 1939 5.100000 +783 2019 5.100000 +783 2087 5.100000 +783 2160 5.100000 +783 2235 5.100000 +783 2243 5.100000 +783 2263 5.100000 +783 2280 5.100000 +783 2315 5.100000 +783 2320 5.100000 +783 2330 5.100000 +783 2355 5.100000 +783 2457 5.100000 +783 2471 5.100000 +783 2703 5.100000 +783 2742 5.100000 +783 2754 5.100000 +783 2815 5.100000 +783 2829 5.100000 +783 2840 5.100000 +783 2861 5.100000 +783 2963 5.100000 +783 3088 5.100000 +783 3097 5.100000 +783 3134 5.100000 +784 14 5.100000 +784 131 5.100000 +784 240 5.100000 +784 267 5.100000 +784 333 5.100000 +784 415 5.100000 +784 525 5.100000 +784 710 5.100000 +784 736 5.100000 +784 751 5.100000 +784 758 5.100000 +784 787 5.100000 +784 791 5.100000 +784 924 5.100000 +784 992 5.100000 +784 1048 5.100000 +784 1092 5.100000 +784 1105 5.100000 +784 1157 5.100000 +784 1181 5.100000 +784 1240 5.100000 +784 1244 5.100000 +784 1261 5.100000 +784 1284 5.100000 +784 1304 5.100000 +784 1312 5.100000 +784 1331 5.100000 +784 1367 5.100000 +784 1582 5.100000 +784 1843 5.100000 +784 1962 5.100000 +784 2002 5.100000 +784 2066 5.100000 +784 2081 5.100000 +784 2132 5.100000 +784 2318 5.100000 +784 2327 5.100000 +784 2334 5.100000 +784 2375 5.100000 +784 2392 5.100000 +784 2398 5.100000 +784 2441 5.100000 +784 2516 5.100000 +784 2540 5.100000 +784 2566 5.100000 +784 2640 5.100000 +784 2647 5.100000 +784 2729 5.100000 +784 2775 5.100000 +784 2821 5.100000 +784 2837 5.100000 +784 3012 5.100000 +784 3032 5.100000 +784 3042 5.100000 +784 3063 5.100000 +784 3101 5.100000 +784 3107 5.100000 +784 3160 5.100000 +784 3174 5.100000 +785 131 5.100000 +785 134 5.100000 +785 225 5.100000 +785 240 5.100000 +785 266 5.100000 +785 381 5.100000 +785 390 5.100000 +785 498 5.100000 +785 628 5.100000 +785 696 5.100000 +785 731 5.100000 +785 780 5.100000 +785 816 5.100000 +785 859 5.100000 +785 861 5.100000 +785 903 5.100000 +785 937 5.100000 +785 942 5.100000 +785 1062 5.100000 +785 1157 5.100000 +785 1227 5.100000 +785 1238 5.100000 +785 1239 5.100000 +785 1250 5.100000 +785 1306 5.100000 +785 1392 5.100000 +785 1395 5.100000 +785 1568 5.100000 +785 1579 5.100000 +785 1674 5.100000 +785 1984 5.100000 +785 2046 5.100000 +785 2061 5.100000 +785 2078 5.100000 +785 2102 5.100000 +785 2178 5.100000 +785 2203 5.100000 +785 2313 5.100000 +785 2330 5.100000 +785 2411 5.100000 +785 2462 5.100000 +785 2603 5.100000 +785 2608 5.100000 +785 2624 5.100000 +785 2696 5.100000 +785 2772 5.100000 +785 2811 5.100000 +785 2858 5.100000 +785 2948 5.100000 +785 2974 5.100000 +785 3052 5.100000 +785 3137 5.100000 +785 3166 5.100000 +785 3185 5.100000 +786 9 5.100000 +786 75 5.100000 +786 81 5.100000 +786 172 5.100000 +786 264 5.100000 +786 287 5.100000 +786 339 5.100000 +786 387 5.100000 +786 460 5.100000 +786 550 5.100000 +786 633 5.100000 +786 727 5.100000 +786 799 5.100000 +786 829 5.100000 +786 840 5.100000 +786 988 5.100000 +786 999 5.100000 +786 1001 5.100000 +786 1039 5.100000 +786 1112 5.100000 +786 1180 5.100000 +786 1193 5.100000 +786 1217 5.100000 +786 1226 5.100000 +786 1265 5.100000 +786 1366 5.100000 +786 1471 5.100000 +786 1530 5.100000 +786 1546 5.100000 +786 1550 5.100000 +786 1557 5.100000 +786 1579 5.100000 +786 1640 5.100000 +786 1665 5.100000 +786 1669 5.100000 +786 1748 5.100000 +786 1753 5.100000 +786 1814 5.100000 +786 1818 5.100000 +786 1882 5.100000 +786 1919 5.100000 +786 1974 5.100000 +786 2004 5.100000 +786 2015 5.100000 +786 2075 5.100000 +786 2103 5.100000 +786 2261 5.100000 +786 2270 5.100000 +786 2390 5.100000 +786 2534 5.100000 +786 2654 5.100000 +786 2656 5.100000 +786 2668 5.100000 +786 2725 5.100000 +786 2789 5.100000 +786 2855 5.100000 +786 2893 5.100000 +786 2991 5.100000 +786 3059 5.100000 +786 3083 5.100000 +786 3140 5.100000 +786 3175 5.100000 +786 3179 5.100000 +786 3182 5.100000 +787 3 5.100000 +787 23 5.100000 +787 26 5.100000 +787 116 5.100000 +787 129 5.100000 +787 131 5.100000 +787 147 5.100000 +787 160 5.100000 +787 231 5.100000 +787 236 5.100000 +787 255 5.100000 +787 378 5.100000 +787 403 5.100000 +787 408 5.100000 +787 420 5.100000 +787 424 5.100000 +787 543 5.100000 +787 617 5.100000 +787 622 5.100000 +787 681 5.100000 +787 686 5.100000 +787 719 5.100000 +787 738 5.100000 +787 788 5.100000 +787 1058 5.100000 +787 1227 5.100000 +787 1238 5.100000 +787 1240 5.100000 +787 1283 5.100000 +787 1387 5.100000 +787 1418 5.100000 +787 1466 5.100000 +787 1501 5.100000 +787 1546 5.100000 +787 1552 5.100000 +787 1589 5.100000 +787 1642 5.100000 +787 1674 5.100000 +787 1688 5.100000 +787 1770 5.100000 +787 1832 5.100000 +787 1878 5.100000 +787 1949 5.100000 +787 1979 5.100000 +787 1988 5.100000 +787 2034 5.100000 +787 2144 5.100000 +787 2251 5.100000 +787 2296 5.100000 +787 2419 5.100000 +787 2443 5.100000 +787 2469 5.100000 +787 2655 5.100000 +787 2736 5.100000 +787 2759 5.100000 +787 2862 5.100000 +787 2962 5.100000 +787 2990 5.100000 +787 3147 5.100000 +787 3173 5.100000 +788 32 5.100000 +788 34 5.100000 +788 43 5.100000 +788 119 5.100000 +788 145 5.100000 +788 154 5.100000 +788 191 5.100000 +788 219 5.100000 +788 266 5.100000 +788 355 5.100000 +788 380 5.100000 +788 405 5.100000 +788 565 5.100000 +788 578 5.100000 +788 585 5.100000 +788 608 5.100000 +788 640 5.100000 +788 643 5.100000 +788 677 5.100000 +788 685 5.100000 +788 768 5.100000 +788 860 5.100000 +788 878 5.100000 +788 948 5.100000 +788 962 5.100000 +788 982 5.100000 +788 1041 5.100000 +788 1082 5.100000 +788 1089 5.100000 +788 1093 5.100000 +788 1112 5.100000 +788 1115 5.100000 +788 1159 5.100000 +788 1206 5.100000 +788 1230 5.100000 +788 1232 5.100000 +788 1374 5.100000 +788 1426 5.100000 +788 1494 5.100000 +788 1538 5.100000 +788 1601 5.100000 +788 1620 5.100000 +788 1636 5.100000 +788 1744 5.100000 +788 1789 5.100000 +788 1791 5.100000 +788 1826 5.100000 +788 1854 5.100000 +788 1897 5.100000 +788 1907 5.100000 +788 1909 5.100000 +788 1932 5.100000 +788 1999 5.100000 +788 2051 5.100000 +788 2200 5.100000 +788 2201 5.100000 +788 2215 5.100000 +788 2226 5.100000 +788 2262 5.100000 +788 2263 5.100000 +788 2306 5.100000 +788 2325 5.100000 +788 2341 5.100000 +788 2400 5.100000 +788 2602 5.100000 +788 2643 5.100000 +788 2651 5.100000 +788 2658 5.100000 +788 2694 5.100000 +788 2704 5.100000 +788 2762 5.100000 +788 2787 5.100000 +788 2848 5.100000 +788 2860 5.100000 +788 2890 5.100000 +788 2957 5.100000 +788 2996 5.100000 +788 3139 5.100000 +788 3155 5.100000 +788 3188 5.100000 +788 3192 5.100000 +788 3195 5.100000 +789 91 5.100000 +789 203 5.100000 +789 206 5.100000 +789 234 5.100000 +789 275 5.100000 +789 307 5.100000 +789 400 5.100000 +789 554 5.100000 +789 626 5.100000 +789 697 5.100000 +789 706 5.100000 +789 801 5.100000 +789 823 5.100000 +789 891 5.100000 +789 914 5.100000 +789 940 5.100000 +789 999 5.100000 +789 1042 5.100000 +789 1074 5.100000 +789 1092 5.100000 +789 1197 5.100000 +789 1218 5.100000 +789 1222 5.100000 +789 1231 5.100000 +789 1234 5.100000 +789 1295 5.100000 +789 1297 5.100000 +789 1462 5.100000 +789 1546 5.100000 +789 1609 5.100000 +789 1893 5.100000 +789 1897 5.100000 +789 1925 5.100000 +789 1978 5.100000 +789 2023 5.100000 +789 2044 5.100000 +789 2059 5.100000 +789 2086 5.100000 +789 2230 5.100000 +789 2411 5.100000 +789 2426 5.100000 +789 2471 5.100000 +789 2480 5.100000 +789 2481 5.100000 +789 2528 5.100000 +789 2529 5.100000 +789 2551 5.100000 +789 2608 5.100000 +789 2670 5.100000 +789 2680 5.100000 +789 2740 5.100000 +789 2752 5.100000 +789 2793 5.100000 +789 2819 5.100000 +789 2863 5.100000 +789 2961 5.100000 +789 2975 5.100000 +789 3009 5.100000 +789 3010 5.100000 +789 3047 5.100000 +789 3054 5.100000 +789 3189 5.100000 +790 5 5.100000 +790 67 5.100000 +790 85 5.100000 +790 185 5.100000 +790 190 5.100000 +790 205 5.100000 +790 237 5.100000 +790 256 5.100000 +790 360 5.100000 +790 401 5.100000 +790 434 5.100000 +790 531 5.100000 +790 557 5.100000 +790 606 5.100000 +790 706 5.100000 +790 748 5.100000 +790 886 5.100000 +790 966 5.100000 +790 1024 5.100000 +790 1035 5.100000 +790 1037 5.100000 +790 1065 5.100000 +790 1158 5.100000 +790 1182 5.100000 +790 1202 5.100000 +790 1239 5.100000 +790 1365 5.100000 +790 1610 5.100000 +790 1618 5.100000 +790 1635 5.100000 +790 1681 5.100000 +790 1807 5.100000 +790 1841 5.100000 +790 1863 5.100000 +790 1867 5.100000 +790 1920 5.100000 +790 1935 5.100000 +790 1954 5.100000 +790 1988 5.100000 +790 2007 5.100000 +790 2021 5.100000 +790 2046 5.100000 +790 2052 5.100000 +790 2064 5.100000 +790 2084 5.100000 +790 2097 5.100000 +790 2131 5.100000 +790 2177 5.100000 +790 2355 5.100000 +790 2433 5.100000 +790 2442 5.100000 +790 2460 5.100000 +790 2488 5.100000 +790 2491 5.100000 +790 2497 5.100000 +790 2691 5.100000 +790 2694 5.100000 +790 2739 5.100000 +790 2753 5.100000 +790 2766 5.100000 +790 2774 5.100000 +790 2800 5.100000 +790 2899 5.100000 +790 3001 5.100000 +790 3004 5.100000 +790 3069 5.100000 +790 3119 5.100000 +790 3122 5.100000 +790 3126 5.100000 +790 3176 5.100000 +791 129 5.100000 +791 175 5.100000 +791 178 5.100000 +791 223 5.100000 +791 269 5.100000 +791 273 5.100000 +791 289 5.100000 +791 337 5.100000 +791 354 5.100000 +791 401 5.100000 +791 440 5.100000 +791 466 5.100000 +791 564 5.100000 +791 593 5.100000 +791 613 5.100000 +791 763 5.100000 +791 780 5.100000 +791 822 5.100000 +791 879 5.100000 +791 978 5.100000 +791 1075 5.100000 +791 1088 5.100000 +791 1175 5.100000 +791 1176 5.100000 +791 1323 5.100000 +791 1346 5.100000 +791 1358 5.100000 +791 1409 5.100000 +791 1435 5.100000 +791 1480 5.100000 +791 1495 5.100000 +791 1501 5.100000 +791 1676 5.100000 +791 1693 5.100000 +791 1774 5.100000 +791 1820 5.100000 +791 1871 5.100000 +791 1902 5.100000 +791 1925 5.100000 +791 1927 5.100000 +791 2076 5.100000 +791 2110 5.100000 +791 2121 5.100000 +791 2133 5.100000 +791 2204 5.100000 +791 2310 5.100000 +791 2314 5.100000 +791 2338 5.100000 +791 2352 5.100000 +791 2392 5.100000 +791 2431 5.100000 +791 2530 5.100000 +791 2574 5.100000 +791 2631 5.100000 +791 2637 5.100000 +791 2645 5.100000 +791 2647 5.100000 +791 2829 5.100000 +791 2898 5.100000 +791 2967 5.100000 +791 3044 5.100000 +791 3085 5.100000 +791 3129 5.100000 +792 11 5.100000 +792 36 5.100000 +792 43 5.100000 +792 84 5.100000 +792 154 5.100000 +792 176 5.100000 +792 189 5.100000 +792 192 5.100000 +792 205 5.100000 +792 210 5.100000 +792 267 5.100000 +792 311 5.100000 +792 314 5.100000 +792 323 5.100000 +792 383 5.100000 +792 516 5.100000 +792 520 5.100000 +792 549 5.100000 +792 552 5.100000 +792 557 5.100000 +792 609 5.100000 +792 630 5.100000 +792 793 5.100000 +792 864 5.100000 +792 945 5.100000 +792 1007 5.100000 +792 1035 5.100000 +792 1205 5.100000 +792 1298 5.100000 +792 1304 5.100000 +792 1407 5.100000 +792 1477 5.100000 +792 1525 5.100000 +792 1540 5.100000 +792 1569 5.100000 +792 1591 5.100000 +792 1595 5.100000 +792 1603 5.100000 +792 1834 5.100000 +792 1863 5.100000 +792 1885 5.100000 +792 1889 5.100000 +792 1933 5.100000 +792 1939 5.100000 +792 1959 5.100000 +792 2138 5.100000 +792 2284 5.100000 +792 2317 5.100000 +792 2383 5.100000 +792 2497 5.100000 +792 2543 5.100000 +792 2646 5.100000 +792 2652 5.100000 +792 2666 5.100000 +792 2726 5.100000 +792 2768 5.100000 +792 2776 5.100000 +792 2788 5.100000 +792 2876 5.100000 +792 3055 5.100000 +792 3087 5.100000 +792 3127 5.100000 +792 3142 5.100000 +792 3161 5.100000 +792 3176 5.100000 +792 3192 5.100000 +793 41 5.100000 +793 128 5.100000 +793 171 5.100000 +793 220 5.100000 +793 236 5.100000 +793 289 5.100000 +793 292 5.100000 +793 319 5.100000 +793 406 5.100000 +793 413 5.100000 +793 486 5.100000 +793 564 5.100000 +793 583 5.100000 +793 682 5.100000 +793 738 5.100000 +793 756 5.100000 +793 794 5.100000 +793 817 5.100000 +793 895 5.100000 +793 998 5.100000 +793 1085 5.100000 +793 1147 5.100000 +793 1213 5.100000 +793 1223 5.100000 +793 1240 5.100000 +793 1323 5.100000 +793 1357 5.100000 +793 1451 5.100000 +793 1495 5.100000 +793 1528 5.100000 +793 1539 5.100000 +793 1742 5.100000 +793 1817 5.100000 +793 1899 5.100000 +793 1910 5.100000 +793 1928 5.100000 +793 1973 5.100000 +793 1974 5.100000 +793 2083 5.100000 +793 2095 5.100000 +793 2185 5.100000 +793 2250 5.100000 +793 2261 5.100000 +793 2262 5.100000 +793 2351 5.100000 +793 2453 5.100000 +793 2483 5.100000 +793 2509 5.100000 +793 2622 5.100000 +793 2641 5.100000 +793 2692 5.100000 +793 2796 5.100000 +793 2837 5.100000 +793 2893 5.100000 +793 3008 5.100000 +793 3029 5.100000 +793 3057 5.100000 +794 16 5.100000 +794 99 5.100000 +794 126 5.100000 +794 203 5.100000 +794 252 5.100000 +794 298 5.100000 +794 312 5.100000 +794 401 5.100000 +794 440 5.100000 +794 467 5.100000 +794 496 5.100000 +794 618 5.100000 +794 643 5.100000 +794 695 5.100000 +794 707 5.100000 +794 762 5.100000 +794 782 5.100000 +794 810 5.100000 +794 868 5.100000 +794 917 5.100000 +794 924 5.100000 +794 961 5.100000 +794 1043 5.100000 +794 1138 5.100000 +794 1143 5.100000 +794 1205 5.100000 +794 1243 5.100000 +794 1339 5.100000 +794 1348 5.100000 +794 1375 5.100000 +794 1430 5.100000 +794 1438 5.100000 +794 1451 5.100000 +794 1583 5.100000 +794 1597 5.100000 +794 1647 5.100000 +794 1700 5.100000 +794 1863 5.100000 +794 1942 5.100000 +794 2034 5.100000 +794 2062 5.100000 +794 2081 5.100000 +794 2093 5.100000 +794 2106 5.100000 +794 2125 5.100000 +794 2156 5.100000 +794 2166 5.100000 +794 2180 5.100000 +794 2182 5.100000 +794 2213 5.100000 +794 2221 5.100000 +794 2227 5.100000 +794 2489 5.100000 +794 2491 5.100000 +794 2507 5.100000 +794 2588 5.100000 +794 2594 5.100000 +794 2666 5.100000 +794 2700 5.100000 +794 2712 5.100000 +794 2850 5.100000 +794 2892 5.100000 +794 2981 5.100000 +794 2991 5.100000 +794 3026 5.100000 +794 3030 5.100000 +794 3047 5.100000 +794 3091 5.100000 +794 3148 5.100000 +795 48 5.100000 +795 99 5.100000 +795 214 5.100000 +795 217 5.100000 +795 227 5.100000 +795 250 5.100000 +795 310 5.100000 +795 381 5.100000 +795 408 5.100000 +795 473 5.100000 +795 504 5.100000 +795 541 5.100000 +795 542 5.100000 +795 544 5.100000 +795 598 5.100000 +795 611 5.100000 +795 699 5.100000 +795 915 5.100000 +795 1078 5.100000 +795 1113 5.100000 +795 1211 5.100000 +795 1232 5.100000 +795 1233 5.100000 +795 1250 5.100000 +795 1259 5.100000 +795 1289 5.100000 +795 1319 5.100000 +795 1330 5.100000 +795 1366 5.100000 +795 1402 5.100000 +795 1425 5.100000 +795 1497 5.100000 +795 1529 5.100000 +795 1560 5.100000 +795 1564 5.100000 +795 1580 5.100000 +795 1605 5.100000 +795 1631 5.100000 +795 1663 5.100000 +795 1713 5.100000 +795 1716 5.100000 +795 1756 5.100000 +795 1781 5.100000 +795 1823 5.100000 +795 1984 5.100000 +795 1986 5.100000 +795 2021 5.100000 +795 2027 5.100000 +795 2151 5.100000 +795 2196 5.100000 +795 2274 5.100000 +795 2288 5.100000 +795 2320 5.100000 +795 2328 5.100000 +795 2474 5.100000 +795 2627 5.100000 +795 2642 5.100000 +795 2669 5.100000 +795 2705 5.100000 +795 2825 5.100000 +795 2882 5.100000 +795 2971 5.100000 +795 3014 5.100000 +795 3015 5.100000 +795 3074 5.100000 +795 3128 5.100000 +795 3140 5.100000 +795 3162 5.100000 +795 3174 5.100000 +796 5 5.100000 +796 20 5.100000 +796 40 5.100000 +796 137 5.100000 +796 159 5.100000 +796 223 5.100000 +796 240 5.100000 +796 289 5.100000 +796 322 5.100000 +796 364 5.100000 +796 376 5.100000 +796 447 5.100000 +796 500 5.100000 +796 550 5.100000 +796 612 5.100000 +796 686 5.100000 +796 830 5.100000 +796 833 5.100000 +796 1142 5.100000 +796 1188 5.100000 +796 1216 5.100000 +796 1227 5.100000 +796 1277 5.100000 +796 1284 5.100000 +796 1346 5.100000 +796 1382 5.100000 +796 1385 5.100000 +796 1471 5.100000 +796 1495 5.100000 +796 1501 5.100000 +796 1516 5.100000 +796 1542 5.100000 +796 1577 5.100000 +796 1610 5.100000 +796 1649 5.100000 +796 1668 5.100000 +796 1679 5.100000 +796 1681 5.100000 +796 1770 5.100000 +796 1811 5.100000 +796 1846 5.100000 +796 1849 5.100000 +796 1871 5.100000 +796 1876 5.100000 +796 1926 5.100000 +796 1946 5.100000 +796 1965 5.100000 +796 2016 5.100000 +796 2039 5.100000 +796 2058 5.100000 +796 2139 5.100000 +796 2228 5.100000 +796 2253 5.100000 +796 2269 5.100000 +796 2292 5.100000 +796 2387 5.100000 +796 2425 5.100000 +796 2469 5.100000 +796 2526 5.100000 +796 2667 5.100000 +796 2704 5.100000 +796 2748 5.100000 +796 2757 5.100000 +796 2793 5.100000 +796 2832 5.100000 +796 2834 5.100000 +796 2865 5.100000 +796 2941 5.100000 +796 2963 5.100000 +796 2999 5.100000 +796 3017 5.100000 +796 3037 5.100000 +796 3059 5.100000 +796 3094 5.100000 +796 3104 5.100000 +796 3116 5.100000 +796 3164 5.100000 +796 3172 5.100000 +797 115 5.100000 +797 174 5.100000 +797 224 5.100000 +797 253 5.100000 +797 291 5.100000 +797 341 5.100000 +797 496 5.100000 +797 524 5.100000 +797 531 5.100000 +797 547 5.100000 +797 589 5.100000 +797 784 5.100000 +797 809 5.100000 +797 814 5.100000 +797 920 5.100000 +797 989 5.100000 +797 1010 5.100000 +797 1015 5.100000 +797 1114 5.100000 +797 1119 5.100000 +797 1154 5.100000 +797 1198 5.100000 +797 1293 5.100000 +797 1312 5.100000 +797 1324 5.100000 +797 1338 5.100000 +797 1387 5.100000 +797 1395 5.100000 +797 1407 5.100000 +797 1420 5.100000 +797 1441 5.100000 +797 1473 5.100000 +797 1496 5.100000 +797 1504 5.100000 +797 1516 5.100000 +797 1536 5.100000 +797 1624 5.100000 +797 1628 5.100000 +797 1651 5.100000 +797 1772 5.100000 +797 1777 5.100000 +797 1814 5.100000 +797 1822 5.100000 +797 1839 5.100000 +797 1955 5.100000 +797 2055 5.100000 +797 2068 5.100000 +797 2079 5.100000 +797 2110 5.100000 +797 2111 5.100000 +797 2143 5.100000 +797 2218 5.100000 +797 2291 5.100000 +797 2319 5.100000 +797 2359 5.100000 +797 2378 5.100000 +797 2434 5.100000 +797 2458 5.100000 +797 2580 5.100000 +797 2581 5.100000 +797 2583 5.100000 +797 2586 5.100000 +797 2588 5.100000 +797 2594 5.100000 +797 2662 5.100000 +797 2673 5.100000 +797 2781 5.100000 +797 2859 5.100000 +797 2862 5.100000 +797 2876 5.100000 +797 2906 5.100000 +797 2948 5.100000 +797 2988 5.100000 +797 3019 5.100000 +797 3151 5.100000 +797 3162 5.100000 +798 126 5.100000 +798 202 5.100000 +798 208 5.100000 +798 331 5.100000 +798 433 5.100000 +798 434 5.100000 +798 488 5.100000 +798 490 5.100000 +798 516 5.100000 +798 564 5.100000 +798 587 5.100000 +798 605 5.100000 +798 606 5.100000 +798 640 5.100000 +798 718 5.100000 +798 764 5.100000 +798 813 5.100000 +798 1021 5.100000 +798 1033 5.100000 +798 1163 5.100000 +798 1390 5.100000 +798 1410 5.100000 +798 1560 5.100000 +798 1588 5.100000 +798 1654 5.100000 +798 1692 5.100000 +798 1703 5.100000 +798 1735 5.100000 +798 1872 5.100000 +798 1886 5.100000 +798 1977 5.100000 +798 2048 5.100000 +798 2067 5.100000 +798 2086 5.100000 +798 2104 5.100000 +798 2206 5.100000 +798 2277 5.100000 +798 2322 5.100000 +798 2372 5.100000 +798 2480 5.100000 +798 2487 5.100000 +798 2591 5.100000 +798 2593 5.100000 +798 2626 5.100000 +798 2694 5.100000 +798 2696 5.100000 +798 2737 5.100000 +798 2833 5.100000 +798 2870 5.100000 +798 2907 5.100000 +798 2969 5.100000 +798 2978 5.100000 +798 2985 5.100000 +798 3051 5.100000 +798 3091 5.100000 +798 3122 5.100000 +798 3130 5.100000 +798 3148 5.100000 +798 3172 5.100000 +798 3187 5.100000 +799 24 5.100000 +799 47 5.100000 +799 186 5.100000 +799 259 5.100000 +799 299 5.100000 +799 312 5.100000 +799 360 5.100000 +799 400 5.100000 +799 457 5.100000 +799 479 5.100000 +799 503 5.100000 +799 527 5.100000 +799 535 5.100000 +799 539 5.100000 +799 550 5.100000 +799 649 5.100000 +799 786 5.100000 +799 806 5.100000 +799 864 5.100000 +799 896 5.100000 +799 938 5.100000 +799 977 5.100000 +799 1034 5.100000 +799 1035 5.100000 +799 1052 5.100000 +799 1057 5.100000 +799 1067 5.100000 +799 1113 5.100000 +799 1169 5.100000 +799 1264 5.100000 +799 1286 5.100000 +799 1312 5.100000 +799 1390 5.100000 +799 1396 5.100000 +799 1439 5.100000 +799 1498 5.100000 +799 1608 5.100000 +799 1653 5.100000 +799 1665 5.100000 +799 1708 5.100000 +799 1757 5.100000 +799 1824 5.100000 +799 1851 5.100000 +799 1927 5.100000 +799 1934 5.100000 +799 1961 5.100000 +799 1965 5.100000 +799 2096 5.100000 +799 2102 5.100000 +799 2163 5.100000 +799 2209 5.100000 +799 2230 5.100000 +799 2259 5.100000 +799 2297 5.100000 +799 2365 5.100000 +799 2391 5.100000 +799 2439 5.100000 +799 2462 5.100000 +799 2477 5.100000 +799 2506 5.100000 +799 2558 5.100000 +799 2636 5.100000 +799 2651 5.100000 +799 2665 5.100000 +799 2727 5.100000 +799 2811 5.100000 +799 2897 5.100000 +799 2905 5.100000 +799 2943 5.100000 +799 2975 5.100000 +799 3032 5.100000 +799 3152 5.100000 +800 38 5.100000 +800 116 5.100000 +800 128 5.100000 +800 195 5.100000 +800 204 5.100000 +800 292 5.100000 +800 397 5.100000 +800 412 5.100000 +800 442 5.100000 +800 511 5.100000 +800 588 5.100000 +800 591 5.100000 +800 594 5.100000 +800 597 5.100000 +800 790 5.100000 +800 797 5.100000 +800 812 5.100000 +800 1000 5.100000 +800 1083 5.100000 +800 1281 5.100000 +800 1393 5.100000 +800 1486 5.100000 +800 1516 5.100000 +800 1560 5.100000 +800 1586 5.100000 +800 1619 5.100000 +800 1652 5.100000 +800 1667 5.100000 +800 1700 5.100000 +800 1701 5.100000 +800 1797 5.100000 +800 1837 5.100000 +800 1901 5.100000 +800 1903 5.100000 +800 1910 5.100000 +800 1932 5.100000 +800 1986 5.100000 +800 2069 5.100000 +800 2076 5.100000 +800 2079 5.100000 +800 2080 5.100000 +800 2112 5.100000 +800 2271 5.100000 +800 2296 5.100000 +800 2312 5.100000 +800 2343 5.100000 +800 2372 5.100000 +800 2385 5.100000 +800 2412 5.100000 +800 2424 5.100000 +800 2449 5.100000 +800 2462 5.100000 +800 2463 5.100000 +800 2519 5.100000 +800 2578 5.100000 +800 2642 5.100000 +800 2656 5.100000 +800 2682 5.100000 +800 2729 5.100000 +800 2754 5.100000 +800 2792 5.100000 +800 2874 5.100000 +800 2900 5.100000 +800 2919 5.100000 +800 2959 5.100000 +800 3001 5.100000 +800 3011 5.100000 +800 3014 5.100000 +800 3043 5.100000 +800 3073 5.100000 +800 3115 5.100000 +800 3159 5.100000 diff --git a/tests/coba_test/pynn.ii.wmat b/tests/coba_test/pynn.ii.wmat new file mode 100644 index 00000000..11040251 --- /dev/null +++ b/tests/coba_test/pynn.ii.wmat @@ -0,0 +1,12794 @@ +%%MatrixMarket matrix coordinate real general +% Auryn weight matrix. Has to be kept in row major order for load operation. +% Connection name: SparseConnection +% Locked range: 1 +% +800 800 12794 +1 59 5.100000 +1 74 5.100000 +1 190 5.100000 +1 230 5.100000 +1 244 5.100000 +1 303 5.100000 +1 333 5.100000 +1 487 5.100000 +1 557 5.100000 +1 574 5.100000 +1 586 5.100000 +1 638 5.100000 +1 667 5.100000 +1 686 5.100000 +1 712 5.100000 +1 744 5.100000 +1 756 5.100000 +1 792 5.100000 +2 41 5.100000 +2 129 5.100000 +2 162 5.100000 +2 181 5.100000 +2 193 5.100000 +2 222 5.100000 +2 363 5.100000 +2 500 5.100000 +2 506 5.100000 +2 513 5.100000 +2 583 5.100000 +2 589 5.100000 +2 613 5.100000 +2 659 5.100000 +2 732 5.100000 +2 799 5.100000 +3 60 5.100000 +3 131 5.100000 +3 140 5.100000 +3 215 5.100000 +3 229 5.100000 +3 253 5.100000 +3 290 5.100000 +3 296 5.100000 +3 299 5.100000 +3 304 5.100000 +3 367 5.100000 +3 403 5.100000 +3 540 5.100000 +3 576 5.100000 +3 613 5.100000 +3 617 5.100000 +3 684 5.100000 +3 689 5.100000 +3 737 5.100000 +3 795 5.100000 +4 7 5.100000 +4 79 5.100000 +4 153 5.100000 +4 167 5.100000 +4 290 5.100000 +4 330 5.100000 +4 346 5.100000 +4 393 5.100000 +4 406 5.100000 +4 446 5.100000 +4 463 5.100000 +4 521 5.100000 +4 557 5.100000 +4 714 5.100000 +4 753 5.100000 +5 155 5.100000 +5 158 5.100000 +5 341 5.100000 +5 434 5.100000 +5 471 5.100000 +5 479 5.100000 +5 534 5.100000 +5 536 5.100000 +5 556 5.100000 +5 641 5.100000 +5 649 5.100000 +6 6 5.100000 +6 77 5.100000 +6 96 5.100000 +6 199 5.100000 +6 228 5.100000 +6 272 5.100000 +6 440 5.100000 +6 483 5.100000 +6 630 5.100000 +6 642 5.100000 +6 686 5.100000 +6 781 5.100000 +6 785 5.100000 +7 43 5.100000 +7 53 5.100000 +7 92 5.100000 +7 133 5.100000 +7 227 5.100000 +7 259 5.100000 +7 304 5.100000 +7 315 5.100000 +7 326 5.100000 +7 332 5.100000 +7 344 5.100000 +7 363 5.100000 +7 437 5.100000 +7 484 5.100000 +7 547 5.100000 +7 589 5.100000 +7 590 5.100000 +7 633 5.100000 +7 684 5.100000 +7 731 5.100000 +7 756 5.100000 +7 772 5.100000 +8 54 5.100000 +8 124 5.100000 +8 155 5.100000 +8 236 5.100000 +8 254 5.100000 +8 286 5.100000 +8 294 5.100000 +8 324 5.100000 +8 353 5.100000 +8 357 5.100000 +8 377 5.100000 +8 383 5.100000 +8 514 5.100000 +8 544 5.100000 +8 615 5.100000 +8 627 5.100000 +8 665 5.100000 +8 676 5.100000 +8 709 5.100000 +8 762 5.100000 +8 774 5.100000 +9 12 5.100000 +9 16 5.100000 +9 25 5.100000 +9 68 5.100000 +9 74 5.100000 +9 191 5.100000 +9 223 5.100000 +9 259 5.100000 +9 339 5.100000 +9 355 5.100000 +9 377 5.100000 +9 433 5.100000 +9 605 5.100000 +9 655 5.100000 +9 698 5.100000 +9 783 5.100000 +10 8 5.100000 +10 25 5.100000 +10 46 5.100000 +10 113 5.100000 +10 154 5.100000 +10 194 5.100000 +10 247 5.100000 +10 300 5.100000 +10 340 5.100000 +10 348 5.100000 +10 353 5.100000 +10 416 5.100000 +10 458 5.100000 +10 585 5.100000 +10 678 5.100000 +10 799 5.100000 +11 6 5.100000 +11 127 5.100000 +11 422 5.100000 +11 475 5.100000 +11 593 5.100000 +11 723 5.100000 +11 751 5.100000 +12 10 5.100000 +12 24 5.100000 +12 35 5.100000 +12 67 5.100000 +12 68 5.100000 +12 87 5.100000 +12 114 5.100000 +12 206 5.100000 +12 261 5.100000 +12 320 5.100000 +12 321 5.100000 +12 356 5.100000 +12 377 5.100000 +12 396 5.100000 +12 430 5.100000 +12 504 5.100000 +12 568 5.100000 +12 607 5.100000 +12 639 5.100000 +12 665 5.100000 +12 700 5.100000 +12 716 5.100000 +12 721 5.100000 +12 761 5.100000 +12 770 5.100000 +12 778 5.100000 +13 25 5.100000 +13 108 5.100000 +13 190 5.100000 +13 235 5.100000 +13 286 5.100000 +13 288 5.100000 +13 334 5.100000 +13 432 5.100000 +13 551 5.100000 +13 654 5.100000 +13 663 5.100000 +13 691 5.100000 +13 744 5.100000 +14 33 5.100000 +14 42 5.100000 +14 110 5.100000 +14 207 5.100000 +14 209 5.100000 +14 288 5.100000 +14 317 5.100000 +14 333 5.100000 +14 378 5.100000 +14 393 5.100000 +14 530 5.100000 +14 571 5.100000 +14 572 5.100000 +14 587 5.100000 +14 617 5.100000 +14 690 5.100000 +14 710 5.100000 +14 747 5.100000 +14 794 5.100000 +15 159 5.100000 +15 232 5.100000 +15 254 5.100000 +15 264 5.100000 +15 320 5.100000 +15 336 5.100000 +15 417 5.100000 +15 540 5.100000 +15 580 5.100000 +15 632 5.100000 +15 740 5.100000 +15 742 5.100000 +15 768 5.100000 +16 52 5.100000 +16 105 5.100000 +16 286 5.100000 +16 465 5.100000 +16 492 5.100000 +16 523 5.100000 +16 734 5.100000 +16 771 5.100000 +17 85 5.100000 +17 136 5.100000 +17 169 5.100000 +17 226 5.100000 +17 280 5.100000 +17 335 5.100000 +17 433 5.100000 +17 436 5.100000 +17 453 5.100000 +17 629 5.100000 +17 722 5.100000 +17 773 5.100000 +18 24 5.100000 +18 64 5.100000 +18 170 5.100000 +18 174 5.100000 +18 186 5.100000 +18 213 5.100000 +18 253 5.100000 +18 279 5.100000 +18 305 5.100000 +18 312 5.100000 +18 364 5.100000 +18 435 5.100000 +18 566 5.100000 +18 569 5.100000 +18 618 5.100000 +18 630 5.100000 +18 651 5.100000 +18 678 5.100000 +18 689 5.100000 +18 746 5.100000 +18 763 5.100000 +18 773 5.100000 +18 800 5.100000 +19 126 5.100000 +19 155 5.100000 +19 169 5.100000 +19 252 5.100000 +19 262 5.100000 +19 365 5.100000 +19 388 5.100000 +19 398 5.100000 +19 407 5.100000 +19 434 5.100000 +19 646 5.100000 +19 767 5.100000 +20 16 5.100000 +20 109 5.100000 +20 158 5.100000 +20 255 5.100000 +20 277 5.100000 +20 374 5.100000 +20 483 5.100000 +20 565 5.100000 +20 766 5.100000 +21 99 5.100000 +21 112 5.100000 +21 176 5.100000 +21 210 5.100000 +21 211 5.100000 +21 252 5.100000 +21 276 5.100000 +21 308 5.100000 +21 429 5.100000 +21 533 5.100000 +21 737 5.100000 +21 741 5.100000 +21 765 5.100000 +22 48 5.100000 +22 88 5.100000 +22 114 5.100000 +22 126 5.100000 +22 132 5.100000 +22 387 5.100000 +22 399 5.100000 +22 413 5.100000 +22 450 5.100000 +22 492 5.100000 +22 509 5.100000 +22 517 5.100000 +22 568 5.100000 +22 599 5.100000 +22 611 5.100000 +22 618 5.100000 +22 713 5.100000 +22 770 5.100000 +22 777 5.100000 +23 49 5.100000 +23 100 5.100000 +23 121 5.100000 +23 137 5.100000 +23 165 5.100000 +23 193 5.100000 +23 291 5.100000 +23 348 5.100000 +23 418 5.100000 +23 456 5.100000 +23 536 5.100000 +23 558 5.100000 +23 654 5.100000 +23 722 5.100000 +23 747 5.100000 +24 15 5.100000 +24 18 5.100000 +24 67 5.100000 +24 78 5.100000 +24 101 5.100000 +24 113 5.100000 +24 117 5.100000 +24 253 5.100000 +24 334 5.100000 +24 381 5.100000 +24 398 5.100000 +24 452 5.100000 +24 483 5.100000 +24 487 5.100000 +24 535 5.100000 +24 622 5.100000 +24 678 5.100000 +24 689 5.100000 +25 46 5.100000 +25 334 5.100000 +25 387 5.100000 +25 502 5.100000 +25 631 5.100000 +25 639 5.100000 +25 701 5.100000 +25 715 5.100000 +25 768 5.100000 +26 12 5.100000 +26 16 5.100000 +26 51 5.100000 +26 89 5.100000 +26 102 5.100000 +26 218 5.100000 +26 274 5.100000 +26 356 5.100000 +26 418 5.100000 +26 451 5.100000 +26 476 5.100000 +26 528 5.100000 +26 561 5.100000 +26 591 5.100000 +26 597 5.100000 +26 649 5.100000 +26 650 5.100000 +26 711 5.100000 +27 40 5.100000 +27 104 5.100000 +27 237 5.100000 +27 241 5.100000 +27 262 5.100000 +27 265 5.100000 +27 281 5.100000 +27 355 5.100000 +27 527 5.100000 +27 552 5.100000 +27 717 5.100000 +27 718 5.100000 +27 728 5.100000 +27 781 5.100000 +28 5 5.100000 +28 54 5.100000 +28 76 5.100000 +28 118 5.100000 +28 183 5.100000 +28 189 5.100000 +28 224 5.100000 +28 225 5.100000 +28 248 5.100000 +28 265 5.100000 +28 302 5.100000 +28 444 5.100000 +28 479 5.100000 +28 554 5.100000 +28 574 5.100000 +28 588 5.100000 +28 635 5.100000 +28 695 5.100000 +28 726 5.100000 +28 745 5.100000 +29 9 5.100000 +29 72 5.100000 +29 135 5.100000 +29 156 5.100000 +29 227 5.100000 +29 299 5.100000 +29 323 5.100000 +29 352 5.100000 +29 360 5.100000 +29 441 5.100000 +29 474 5.100000 +29 505 5.100000 +29 533 5.100000 +29 539 5.100000 +29 588 5.100000 +29 602 5.100000 +29 603 5.100000 +29 631 5.100000 +29 702 5.100000 +30 150 5.100000 +30 162 5.100000 +30 192 5.100000 +30 244 5.100000 +30 245 5.100000 +30 282 5.100000 +30 333 5.100000 +30 386 5.100000 +30 414 5.100000 +30 418 5.100000 +30 537 5.100000 +30 630 5.100000 +30 689 5.100000 +30 710 5.100000 +30 765 5.100000 +31 91 5.100000 +31 156 5.100000 +31 182 5.100000 +31 243 5.100000 +31 344 5.100000 +31 382 5.100000 +31 395 5.100000 +31 430 5.100000 +31 437 5.100000 +31 439 5.100000 +31 472 5.100000 +31 495 5.100000 +31 508 5.100000 +31 599 5.100000 +31 677 5.100000 +31 689 5.100000 +31 752 5.100000 +31 794 5.100000 +31 798 5.100000 +32 40 5.100000 +32 74 5.100000 +32 111 5.100000 +32 121 5.100000 +32 159 5.100000 +32 189 5.100000 +32 270 5.100000 +32 361 5.100000 +32 362 5.100000 +32 454 5.100000 +32 506 5.100000 +32 595 5.100000 +32 609 5.100000 +32 645 5.100000 +32 691 5.100000 +32 692 5.100000 +32 695 5.100000 +32 789 5.100000 +32 792 5.100000 +33 4 5.100000 +33 48 5.100000 +33 185 5.100000 +33 197 5.100000 +33 275 5.100000 +33 282 5.100000 +33 286 5.100000 +33 313 5.100000 +33 316 5.100000 +33 402 5.100000 +33 404 5.100000 +33 445 5.100000 +33 454 5.100000 +33 565 5.100000 +33 580 5.100000 +33 581 5.100000 +33 615 5.100000 +33 616 5.100000 +33 679 5.100000 +33 740 5.100000 +33 795 5.100000 +33 799 5.100000 +34 31 5.100000 +34 64 5.100000 +34 89 5.100000 +34 131 5.100000 +34 178 5.100000 +34 206 5.100000 +34 245 5.100000 +34 261 5.100000 +34 271 5.100000 +34 318 5.100000 +34 346 5.100000 +34 371 5.100000 +34 394 5.100000 +34 407 5.100000 +34 486 5.100000 +34 492 5.100000 +34 610 5.100000 +34 694 5.100000 +34 776 5.100000 +35 39 5.100000 +35 54 5.100000 +35 157 5.100000 +35 185 5.100000 +35 237 5.100000 +35 296 5.100000 +35 362 5.100000 +35 375 5.100000 +35 446 5.100000 +35 458 5.100000 +35 530 5.100000 +35 536 5.100000 +35 547 5.100000 +35 626 5.100000 +35 642 5.100000 +35 729 5.100000 +35 736 5.100000 +35 763 5.100000 +35 767 5.100000 +35 781 5.100000 +36 65 5.100000 +36 105 5.100000 +36 142 5.100000 +36 146 5.100000 +36 156 5.100000 +36 178 5.100000 +36 203 5.100000 +36 206 5.100000 +36 211 5.100000 +36 249 5.100000 +36 277 5.100000 +36 282 5.100000 +36 303 5.100000 +36 354 5.100000 +36 378 5.100000 +36 388 5.100000 +36 559 5.100000 +36 577 5.100000 +36 600 5.100000 +36 646 5.100000 +36 722 5.100000 +36 734 5.100000 +37 37 5.100000 +37 69 5.100000 +37 85 5.100000 +37 168 5.100000 +37 233 5.100000 +37 234 5.100000 +37 260 5.100000 +37 278 5.100000 +37 343 5.100000 +37 413 5.100000 +37 448 5.100000 +37 479 5.100000 +37 600 5.100000 +37 609 5.100000 +37 650 5.100000 +37 666 5.100000 +37 758 5.100000 +37 767 5.100000 +38 39 5.100000 +38 60 5.100000 +38 82 5.100000 +38 97 5.100000 +38 128 5.100000 +38 203 5.100000 +38 217 5.100000 +38 258 5.100000 +38 318 5.100000 +38 327 5.100000 +38 344 5.100000 +38 369 5.100000 +38 410 5.100000 +38 421 5.100000 +38 469 5.100000 +38 480 5.100000 +38 562 5.100000 +38 603 5.100000 +38 662 5.100000 +38 711 5.100000 +39 26 5.100000 +39 41 5.100000 +39 141 5.100000 +39 193 5.100000 +39 253 5.100000 +39 310 5.100000 +39 357 5.100000 +39 613 5.100000 +39 642 5.100000 +39 655 5.100000 +39 799 5.100000 +40 49 5.100000 +40 52 5.100000 +40 63 5.100000 +40 94 5.100000 +40 96 5.100000 +40 127 5.100000 +40 139 5.100000 +40 220 5.100000 +40 221 5.100000 +40 236 5.100000 +40 261 5.100000 +40 325 5.100000 +40 341 5.100000 +40 358 5.100000 +40 379 5.100000 +40 406 5.100000 +40 538 5.100000 +40 693 5.100000 +40 694 5.100000 +41 22 5.100000 +41 25 5.100000 +41 36 5.100000 +41 120 5.100000 +41 151 5.100000 +41 157 5.100000 +41 168 5.100000 +41 187 5.100000 +41 216 5.100000 +41 224 5.100000 +41 234 5.100000 +41 257 5.100000 +41 318 5.100000 +41 346 5.100000 +41 369 5.100000 +41 371 5.100000 +41 404 5.100000 +41 432 5.100000 +41 447 5.100000 +41 466 5.100000 +41 474 5.100000 +41 497 5.100000 +41 674 5.100000 +41 742 5.100000 +42 64 5.100000 +42 616 5.100000 +42 620 5.100000 +42 684 5.100000 +42 777 5.100000 +43 123 5.100000 +43 230 5.100000 +43 299 5.100000 +43 309 5.100000 +43 475 5.100000 +43 562 5.100000 +43 775 5.100000 +43 783 5.100000 +44 24 5.100000 +44 48 5.100000 +44 54 5.100000 +44 81 5.100000 +44 101 5.100000 +44 182 5.100000 +44 352 5.100000 +44 368 5.100000 +44 380 5.100000 +44 388 5.100000 +44 420 5.100000 +44 438 5.100000 +44 442 5.100000 +44 455 5.100000 +44 494 5.100000 +44 537 5.100000 +44 681 5.100000 +44 712 5.100000 +44 779 5.100000 +45 195 5.100000 +45 233 5.100000 +45 267 5.100000 +45 279 5.100000 +45 312 5.100000 +45 363 5.100000 +45 586 5.100000 +45 589 5.100000 +45 612 5.100000 +45 696 5.100000 +46 127 5.100000 +46 130 5.100000 +46 205 5.100000 +46 228 5.100000 +46 247 5.100000 +46 279 5.100000 +46 318 5.100000 +46 367 5.100000 +46 400 5.100000 +46 405 5.100000 +46 425 5.100000 +46 451 5.100000 +46 611 5.100000 +46 639 5.100000 +46 759 5.100000 +46 790 5.100000 +47 19 5.100000 +47 27 5.100000 +47 32 5.100000 +47 39 5.100000 +47 65 5.100000 +47 144 5.100000 +47 158 5.100000 +47 272 5.100000 +47 354 5.100000 +47 387 5.100000 +47 462 5.100000 +47 471 5.100000 +47 479 5.100000 +47 567 5.100000 +47 572 5.100000 +47 580 5.100000 +47 599 5.100000 +47 746 5.100000 +48 52 5.100000 +48 200 5.100000 +48 265 5.100000 +48 325 5.100000 +48 374 5.100000 +48 379 5.100000 +48 427 5.100000 +48 434 5.100000 +48 657 5.100000 +48 703 5.100000 +48 776 5.100000 +49 13 5.100000 +49 80 5.100000 +49 88 5.100000 +49 279 5.100000 +49 456 5.100000 +49 492 5.100000 +49 544 5.100000 +49 727 5.100000 +50 184 5.100000 +50 193 5.100000 +50 257 5.100000 +50 296 5.100000 +50 367 5.100000 +50 425 5.100000 +50 489 5.100000 +50 504 5.100000 +50 546 5.100000 +50 589 5.100000 +50 590 5.100000 +50 643 5.100000 +50 651 5.100000 +50 722 5.100000 +51 13 5.100000 +51 65 5.100000 +51 205 5.100000 +51 211 5.100000 +51 230 5.100000 +51 270 5.100000 +51 362 5.100000 +51 386 5.100000 +51 417 5.100000 +51 452 5.100000 +51 522 5.100000 +51 656 5.100000 +51 667 5.100000 +51 668 5.100000 +51 697 5.100000 +51 743 5.100000 +51 756 5.100000 +52 43 5.100000 +52 68 5.100000 +52 76 5.100000 +52 79 5.100000 +52 190 5.100000 +52 202 5.100000 +52 291 5.100000 +52 321 5.100000 +52 372 5.100000 +52 399 5.100000 +52 459 5.100000 +52 513 5.100000 +52 601 5.100000 +52 620 5.100000 +52 637 5.100000 +52 694 5.100000 +52 736 5.100000 +52 792 5.100000 +53 11 5.100000 +53 47 5.100000 +53 69 5.100000 +53 149 5.100000 +53 168 5.100000 +53 177 5.100000 +53 204 5.100000 +53 253 5.100000 +53 293 5.100000 +53 342 5.100000 +53 343 5.100000 +53 382 5.100000 +53 518 5.100000 +53 525 5.100000 +53 563 5.100000 +53 585 5.100000 +53 674 5.100000 +53 722 5.100000 +53 752 5.100000 +53 766 5.100000 +54 26 5.100000 +54 70 5.100000 +54 92 5.100000 +54 122 5.100000 +54 129 5.100000 +54 228 5.100000 +54 242 5.100000 +54 303 5.100000 +54 319 5.100000 +54 360 5.100000 +54 454 5.100000 +54 484 5.100000 +54 514 5.100000 +54 520 5.100000 +54 651 5.100000 +54 737 5.100000 +55 9 5.100000 +55 32 5.100000 +55 46 5.100000 +55 75 5.100000 +55 94 5.100000 +55 238 5.100000 +55 251 5.100000 +55 260 5.100000 +55 264 5.100000 +55 424 5.100000 +55 467 5.100000 +55 489 5.100000 +55 579 5.100000 +55 665 5.100000 +55 728 5.100000 +56 33 5.100000 +56 78 5.100000 +56 82 5.100000 +56 86 5.100000 +56 182 5.100000 +56 295 5.100000 +56 305 5.100000 +56 319 5.100000 +56 466 5.100000 +56 537 5.100000 +56 601 5.100000 +56 614 5.100000 +56 659 5.100000 +56 665 5.100000 +56 671 5.100000 +56 793 5.100000 +57 28 5.100000 +57 41 5.100000 +57 184 5.100000 +57 236 5.100000 +57 283 5.100000 +57 302 5.100000 +57 317 5.100000 +57 330 5.100000 +57 345 5.100000 +57 349 5.100000 +57 393 5.100000 +57 413 5.100000 +57 424 5.100000 +57 498 5.100000 +57 521 5.100000 +57 530 5.100000 +57 579 5.100000 +57 639 5.100000 +57 669 5.100000 +57 764 5.100000 +57 775 5.100000 +58 11 5.100000 +58 24 5.100000 +58 36 5.100000 +58 42 5.100000 +58 139 5.100000 +58 143 5.100000 +58 156 5.100000 +58 187 5.100000 +58 200 5.100000 +58 288 5.100000 +58 329 5.100000 +58 332 5.100000 +58 362 5.100000 +58 428 5.100000 +58 448 5.100000 +58 491 5.100000 +58 502 5.100000 +58 558 5.100000 +58 585 5.100000 +58 627 5.100000 +58 648 5.100000 +58 704 5.100000 +58 738 5.100000 +58 768 5.100000 +59 19 5.100000 +59 80 5.100000 +59 103 5.100000 +59 124 5.100000 +59 137 5.100000 +59 147 5.100000 +59 162 5.100000 +59 227 5.100000 +59 263 5.100000 +59 308 5.100000 +59 340 5.100000 +59 506 5.100000 +59 583 5.100000 +59 610 5.100000 +59 617 5.100000 +59 644 5.100000 +59 676 5.100000 +59 728 5.100000 +60 58 5.100000 +60 140 5.100000 +60 202 5.100000 +60 225 5.100000 +60 247 5.100000 +60 359 5.100000 +60 386 5.100000 +60 387 5.100000 +60 404 5.100000 +60 405 5.100000 +60 431 5.100000 +60 437 5.100000 +60 491 5.100000 +60 500 5.100000 +60 504 5.100000 +60 528 5.100000 +60 753 5.100000 +60 799 5.100000 +61 7 5.100000 +61 29 5.100000 +61 77 5.100000 +61 214 5.100000 +61 253 5.100000 +61 323 5.100000 +61 362 5.100000 +61 447 5.100000 +61 472 5.100000 +61 485 5.100000 +61 564 5.100000 +61 681 5.100000 +61 724 5.100000 +61 735 5.100000 +61 782 5.100000 +62 53 5.100000 +62 81 5.100000 +62 101 5.100000 +62 210 5.100000 +62 241 5.100000 +62 288 5.100000 +62 299 5.100000 +62 365 5.100000 +62 408 5.100000 +62 558 5.100000 +62 605 5.100000 +62 714 5.100000 +62 781 5.100000 +63 9 5.100000 +63 33 5.100000 +63 230 5.100000 +63 266 5.100000 +63 294 5.100000 +63 337 5.100000 +63 426 5.100000 +63 513 5.100000 +63 517 5.100000 +63 660 5.100000 +63 670 5.100000 +63 675 5.100000 +63 686 5.100000 +63 789 5.100000 +63 793 5.100000 +64 5 5.100000 +64 39 5.100000 +64 45 5.100000 +64 88 5.100000 +64 102 5.100000 +64 155 5.100000 +64 169 5.100000 +64 186 5.100000 +64 191 5.100000 +64 208 5.100000 +64 238 5.100000 +64 248 5.100000 +64 287 5.100000 +64 412 5.100000 +64 467 5.100000 +64 495 5.100000 +64 512 5.100000 +64 530 5.100000 +64 534 5.100000 +64 600 5.100000 +64 624 5.100000 +64 650 5.100000 +64 652 5.100000 +64 698 5.100000 +64 730 5.100000 +64 738 5.100000 +64 762 5.100000 +64 766 5.100000 +65 54 5.100000 +65 57 5.100000 +65 96 5.100000 +65 220 5.100000 +65 247 5.100000 +65 319 5.100000 +65 354 5.100000 +65 380 5.100000 +65 404 5.100000 +65 421 5.100000 +65 428 5.100000 +65 445 5.100000 +65 447 5.100000 +65 483 5.100000 +65 557 5.100000 +65 594 5.100000 +65 596 5.100000 +65 698 5.100000 +65 762 5.100000 +65 784 5.100000 +66 49 5.100000 +66 53 5.100000 +66 62 5.100000 +66 106 5.100000 +66 144 5.100000 +66 145 5.100000 +66 147 5.100000 +66 155 5.100000 +66 185 5.100000 +66 187 5.100000 +66 190 5.100000 +66 225 5.100000 +66 342 5.100000 +66 348 5.100000 +66 467 5.100000 +66 533 5.100000 +66 739 5.100000 +66 789 5.100000 +67 33 5.100000 +67 168 5.100000 +67 329 5.100000 +67 361 5.100000 +67 467 5.100000 +67 496 5.100000 +67 498 5.100000 +67 503 5.100000 +67 589 5.100000 +67 659 5.100000 +67 716 5.100000 +67 758 5.100000 +67 791 5.100000 +67 796 5.100000 +68 86 5.100000 +68 96 5.100000 +68 112 5.100000 +68 147 5.100000 +68 211 5.100000 +68 235 5.100000 +68 307 5.100000 +68 358 5.100000 +68 363 5.100000 +68 407 5.100000 +68 522 5.100000 +68 572 5.100000 +68 606 5.100000 +68 619 5.100000 +68 738 5.100000 +68 788 5.100000 +69 44 5.100000 +69 69 5.100000 +69 113 5.100000 +69 169 5.100000 +69 202 5.100000 +69 211 5.100000 +69 241 5.100000 +69 469 5.100000 +69 492 5.100000 +69 666 5.100000 +69 668 5.100000 +69 687 5.100000 +69 731 5.100000 +69 747 5.100000 +69 758 5.100000 +70 234 5.100000 +70 253 5.100000 +70 257 5.100000 +70 305 5.100000 +70 337 5.100000 +70 404 5.100000 +70 497 5.100000 +70 510 5.100000 +70 597 5.100000 +70 681 5.100000 +70 684 5.100000 +71 3 5.100000 +71 126 5.100000 +71 381 5.100000 +71 385 5.100000 +71 441 5.100000 +71 541 5.100000 +71 617 5.100000 +71 630 5.100000 +72 36 5.100000 +72 41 5.100000 +72 187 5.100000 +72 196 5.100000 +72 264 5.100000 +72 321 5.100000 +72 346 5.100000 +72 385 5.100000 +72 440 5.100000 +72 544 5.100000 +72 588 5.100000 +72 596 5.100000 +72 650 5.100000 +72 697 5.100000 +72 714 5.100000 +72 745 5.100000 +72 795 5.100000 +73 40 5.100000 +73 124 5.100000 +73 138 5.100000 +73 152 5.100000 +73 173 5.100000 +73 189 5.100000 +73 194 5.100000 +73 215 5.100000 +73 294 5.100000 +73 314 5.100000 +73 356 5.100000 +73 410 5.100000 +73 532 5.100000 +73 536 5.100000 +73 656 5.100000 +73 773 5.100000 +74 10 5.100000 +74 166 5.100000 +74 481 5.100000 +74 487 5.100000 +74 501 5.100000 +74 502 5.100000 +74 554 5.100000 +74 614 5.100000 +74 694 5.100000 +74 755 5.100000 +75 31 5.100000 +75 79 5.100000 +75 101 5.100000 +75 149 5.100000 +75 154 5.100000 +75 216 5.100000 +75 242 5.100000 +75 279 5.100000 +75 409 5.100000 +75 412 5.100000 +75 446 5.100000 +75 491 5.100000 +75 513 5.100000 +75 609 5.100000 +75 771 5.100000 +76 21 5.100000 +76 44 5.100000 +76 75 5.100000 +76 86 5.100000 +76 133 5.100000 +76 145 5.100000 +76 162 5.100000 +76 228 5.100000 +76 280 5.100000 +76 350 5.100000 +76 380 5.100000 +76 415 5.100000 +76 452 5.100000 +76 525 5.100000 +76 546 5.100000 +76 648 5.100000 +76 681 5.100000 +76 720 5.100000 +76 733 5.100000 +76 786 5.100000 +77 76 5.100000 +77 94 5.100000 +77 138 5.100000 +77 181 5.100000 +77 230 5.100000 +77 412 5.100000 +77 515 5.100000 +77 516 5.100000 +77 717 5.100000 +77 725 5.100000 +77 768 5.100000 +77 786 5.100000 +78 1 5.100000 +78 43 5.100000 +78 48 5.100000 +78 66 5.100000 +78 95 5.100000 +78 119 5.100000 +78 129 5.100000 +78 295 5.100000 +78 347 5.100000 +78 358 5.100000 +78 361 5.100000 +78 370 5.100000 +78 465 5.100000 +78 568 5.100000 +78 577 5.100000 +78 615 5.100000 +78 617 5.100000 +78 669 5.100000 +78 713 5.100000 +79 29 5.100000 +79 40 5.100000 +79 42 5.100000 +79 52 5.100000 +79 76 5.100000 +79 136 5.100000 +79 253 5.100000 +79 320 5.100000 +79 321 5.100000 +79 326 5.100000 +79 377 5.100000 +79 431 5.100000 +79 477 5.100000 +79 553 5.100000 +79 586 5.100000 +79 626 5.100000 +79 641 5.100000 +80 23 5.100000 +80 51 5.100000 +80 107 5.100000 +80 126 5.100000 +80 206 5.100000 +80 249 5.100000 +80 273 5.100000 +80 389 5.100000 +80 396 5.100000 +80 429 5.100000 +80 486 5.100000 +80 522 5.100000 +80 564 5.100000 +80 647 5.100000 +81 161 5.100000 +81 413 5.100000 +81 513 5.100000 +81 592 5.100000 +81 739 5.100000 +82 46 5.100000 +82 58 5.100000 +82 63 5.100000 +82 120 5.100000 +82 123 5.100000 +82 136 5.100000 +82 226 5.100000 +82 253 5.100000 +82 328 5.100000 +82 339 5.100000 +82 368 5.100000 +82 467 5.100000 +82 586 5.100000 +82 617 5.100000 +82 758 5.100000 +83 9 5.100000 +83 15 5.100000 +83 125 5.100000 +83 164 5.100000 +83 170 5.100000 +83 323 5.100000 +83 330 5.100000 +83 389 5.100000 +83 514 5.100000 +83 587 5.100000 +83 640 5.100000 +83 653 5.100000 +83 710 5.100000 +83 746 5.100000 +83 748 5.100000 +83 779 5.100000 +83 782 5.100000 +84 7 5.100000 +84 112 5.100000 +84 214 5.100000 +84 297 5.100000 +84 433 5.100000 +84 452 5.100000 +84 471 5.100000 +84 539 5.100000 +84 654 5.100000 +84 722 5.100000 +84 792 5.100000 +85 20 5.100000 +85 86 5.100000 +85 168 5.100000 +85 195 5.100000 +85 215 5.100000 +85 273 5.100000 +85 344 5.100000 +85 428 5.100000 +85 636 5.100000 +85 673 5.100000 +85 688 5.100000 +85 727 5.100000 +85 743 5.100000 +85 760 5.100000 +86 109 5.100000 +86 225 5.100000 +86 243 5.100000 +86 297 5.100000 +86 389 5.100000 +86 405 5.100000 +86 510 5.100000 +86 564 5.100000 +86 570 5.100000 +86 576 5.100000 +86 601 5.100000 +86 608 5.100000 +86 616 5.100000 +86 739 5.100000 +87 67 5.100000 +87 134 5.100000 +87 155 5.100000 +87 161 5.100000 +87 175 5.100000 +87 237 5.100000 +87 242 5.100000 +87 354 5.100000 +87 682 5.100000 +87 739 5.100000 +87 782 5.100000 +87 789 5.100000 +88 70 5.100000 +88 103 5.100000 +88 142 5.100000 +88 318 5.100000 +88 396 5.100000 +88 440 5.100000 +88 454 5.100000 +88 481 5.100000 +88 488 5.100000 +88 504 5.100000 +88 507 5.100000 +88 572 5.100000 +88 632 5.100000 +88 642 5.100000 +88 648 5.100000 +88 761 5.100000 +89 78 5.100000 +89 152 5.100000 +89 193 5.100000 +89 222 5.100000 +89 254 5.100000 +89 259 5.100000 +89 276 5.100000 +89 485 5.100000 +89 587 5.100000 +89 618 5.100000 +89 630 5.100000 +89 765 5.100000 +90 67 5.100000 +90 97 5.100000 +90 99 5.100000 +90 127 5.100000 +90 201 5.100000 +90 249 5.100000 +90 326 5.100000 +90 352 5.100000 +90 393 5.100000 +90 411 5.100000 +90 515 5.100000 +90 732 5.100000 +91 29 5.100000 +91 52 5.100000 +91 74 5.100000 +91 126 5.100000 +91 164 5.100000 +91 260 5.100000 +91 332 5.100000 +91 356 5.100000 +91 404 5.100000 +91 430 5.100000 +91 442 5.100000 +91 490 5.100000 +91 561 5.100000 +91 587 5.100000 +91 611 5.100000 +91 653 5.100000 +91 661 5.100000 +91 671 5.100000 +91 740 5.100000 +92 139 5.100000 +92 167 5.100000 +92 300 5.100000 +92 391 5.100000 +92 425 5.100000 +92 451 5.100000 +92 704 5.100000 +92 708 5.100000 +92 740 5.100000 +92 782 5.100000 +93 21 5.100000 +93 24 5.100000 +93 51 5.100000 +93 131 5.100000 +93 146 5.100000 +93 149 5.100000 +93 213 5.100000 +93 233 5.100000 +93 249 5.100000 +93 318 5.100000 +93 367 5.100000 +93 373 5.100000 +93 604 5.100000 +93 644 5.100000 +93 667 5.100000 +93 678 5.100000 +94 67 5.100000 +94 94 5.100000 +94 331 5.100000 +94 332 5.100000 +94 349 5.100000 +94 369 5.100000 +94 418 5.100000 +94 448 5.100000 +94 459 5.100000 +94 577 5.100000 +94 593 5.100000 +94 637 5.100000 +94 662 5.100000 +94 797 5.100000 +95 8 5.100000 +95 130 5.100000 +95 138 5.100000 +95 189 5.100000 +95 217 5.100000 +95 222 5.100000 +95 269 5.100000 +95 387 5.100000 +95 528 5.100000 +95 584 5.100000 +95 595 5.100000 +95 613 5.100000 +95 691 5.100000 +95 764 5.100000 +96 70 5.100000 +96 81 5.100000 +96 85 5.100000 +96 99 5.100000 +96 120 5.100000 +96 261 5.100000 +96 300 5.100000 +96 344 5.100000 +96 419 5.100000 +96 474 5.100000 +96 491 5.100000 +96 522 5.100000 +96 689 5.100000 +96 706 5.100000 +96 733 5.100000 +97 5 5.100000 +97 68 5.100000 +97 139 5.100000 +97 142 5.100000 +97 222 5.100000 +97 274 5.100000 +97 277 5.100000 +97 369 5.100000 +97 451 5.100000 +97 626 5.100000 +97 643 5.100000 +97 695 5.100000 +97 744 5.100000 +97 767 5.100000 +97 770 5.100000 +98 4 5.100000 +98 12 5.100000 +98 106 5.100000 +98 119 5.100000 +98 186 5.100000 +98 192 5.100000 +98 245 5.100000 +98 274 5.100000 +98 294 5.100000 +98 414 5.100000 +98 514 5.100000 +98 733 5.100000 +98 743 5.100000 +98 746 5.100000 +99 99 5.100000 +99 100 5.100000 +99 104 5.100000 +99 147 5.100000 +99 148 5.100000 +99 195 5.100000 +99 200 5.100000 +99 227 5.100000 +99 402 5.100000 +99 407 5.100000 +99 414 5.100000 +99 424 5.100000 +99 518 5.100000 +99 670 5.100000 +99 786 5.100000 +100 4 5.100000 +100 73 5.100000 +100 88 5.100000 +100 177 5.100000 +100 362 5.100000 +100 407 5.100000 +100 423 5.100000 +100 438 5.100000 +100 488 5.100000 +100 537 5.100000 +100 577 5.100000 +100 592 5.100000 +100 597 5.100000 +100 637 5.100000 +100 753 5.100000 +101 8 5.100000 +101 9 5.100000 +101 39 5.100000 +101 43 5.100000 +101 183 5.100000 +101 185 5.100000 +101 187 5.100000 +101 231 5.100000 +101 263 5.100000 +101 281 5.100000 +101 316 5.100000 +101 403 5.100000 +101 446 5.100000 +101 454 5.100000 +101 459 5.100000 +101 510 5.100000 +101 534 5.100000 +101 730 5.100000 +101 745 5.100000 +102 40 5.100000 +102 75 5.100000 +102 76 5.100000 +102 97 5.100000 +102 330 5.100000 +102 450 5.100000 +102 476 5.100000 +102 483 5.100000 +102 525 5.100000 +102 537 5.100000 +102 579 5.100000 +102 598 5.100000 +102 693 5.100000 +102 735 5.100000 +102 760 5.100000 +103 48 5.100000 +103 78 5.100000 +103 168 5.100000 +103 172 5.100000 +103 195 5.100000 +103 253 5.100000 +103 280 5.100000 +103 283 5.100000 +103 297 5.100000 +103 326 5.100000 +103 351 5.100000 +103 355 5.100000 +103 385 5.100000 +103 422 5.100000 +103 466 5.100000 +103 489 5.100000 +103 556 5.100000 +103 560 5.100000 +103 688 5.100000 +103 744 5.100000 +103 752 5.100000 +104 61 5.100000 +104 71 5.100000 +104 115 5.100000 +104 123 5.100000 +104 134 5.100000 +104 136 5.100000 +104 275 5.100000 +104 412 5.100000 +104 428 5.100000 +104 486 5.100000 +104 493 5.100000 +104 515 5.100000 +104 551 5.100000 +104 552 5.100000 +104 574 5.100000 +104 614 5.100000 +104 640 5.100000 +104 667 5.100000 +104 714 5.100000 +104 715 5.100000 +104 728 5.100000 +104 748 5.100000 +104 781 5.100000 +105 52 5.100000 +105 121 5.100000 +105 150 5.100000 +105 262 5.100000 +105 267 5.100000 +105 352 5.100000 +105 542 5.100000 +105 544 5.100000 +105 670 5.100000 +105 726 5.100000 +105 737 5.100000 +105 776 5.100000 +106 41 5.100000 +106 56 5.100000 +106 60 5.100000 +106 65 5.100000 +106 195 5.100000 +106 289 5.100000 +106 308 5.100000 +106 382 5.100000 +106 458 5.100000 +106 502 5.100000 +106 506 5.100000 +106 510 5.100000 +106 526 5.100000 +106 542 5.100000 +106 558 5.100000 +106 762 5.100000 +106 771 5.100000 +107 62 5.100000 +107 109 5.100000 +107 245 5.100000 +107 340 5.100000 +107 343 5.100000 +107 466 5.100000 +107 489 5.100000 +107 537 5.100000 +107 564 5.100000 +107 632 5.100000 +107 718 5.100000 +107 734 5.100000 +107 743 5.100000 +108 54 5.100000 +108 147 5.100000 +108 201 5.100000 +108 209 5.100000 +108 252 5.100000 +108 316 5.100000 +108 419 5.100000 +108 449 5.100000 +108 494 5.100000 +108 526 5.100000 +108 590 5.100000 +108 603 5.100000 +108 609 5.100000 +108 629 5.100000 +108 699 5.100000 +108 720 5.100000 +108 769 5.100000 +108 784 5.100000 +109 5 5.100000 +109 11 5.100000 +109 43 5.100000 +109 55 5.100000 +109 113 5.100000 +109 119 5.100000 +109 127 5.100000 +109 153 5.100000 +109 229 5.100000 +109 363 5.100000 +109 464 5.100000 +109 554 5.100000 +109 585 5.100000 +109 591 5.100000 +109 618 5.100000 +109 620 5.100000 +109 637 5.100000 +109 794 5.100000 +110 14 5.100000 +110 76 5.100000 +110 80 5.100000 +110 123 5.100000 +110 127 5.100000 +110 133 5.100000 +110 409 5.100000 +110 475 5.100000 +110 477 5.100000 +110 495 5.100000 +110 596 5.100000 +110 637 5.100000 +110 651 5.100000 +110 656 5.100000 +110 738 5.100000 +110 774 5.100000 +111 26 5.100000 +111 45 5.100000 +111 63 5.100000 +111 314 5.100000 +111 318 5.100000 +111 346 5.100000 +111 375 5.100000 +111 383 5.100000 +111 424 5.100000 +111 478 5.100000 +111 538 5.100000 +111 583 5.100000 +111 619 5.100000 +111 760 5.100000 +111 785 5.100000 +111 788 5.100000 +112 129 5.100000 +112 215 5.100000 +112 353 5.100000 +112 385 5.100000 +112 518 5.100000 +112 534 5.100000 +112 663 5.100000 +112 759 5.100000 +112 760 5.100000 +113 35 5.100000 +113 60 5.100000 +113 65 5.100000 +113 212 5.100000 +113 234 5.100000 +113 248 5.100000 +113 283 5.100000 +113 299 5.100000 +113 345 5.100000 +113 422 5.100000 +113 482 5.100000 +113 588 5.100000 +113 688 5.100000 +113 751 5.100000 +113 769 5.100000 +114 20 5.100000 +114 21 5.100000 +114 25 5.100000 +114 52 5.100000 +114 61 5.100000 +114 105 5.100000 +114 146 5.100000 +114 162 5.100000 +114 195 5.100000 +114 276 5.100000 +114 282 5.100000 +114 297 5.100000 +114 362 5.100000 +114 396 5.100000 +114 400 5.100000 +114 474 5.100000 +114 563 5.100000 +114 694 5.100000 +114 742 5.100000 +115 93 5.100000 +115 144 5.100000 +115 159 5.100000 +115 182 5.100000 +115 234 5.100000 +115 347 5.100000 +115 391 5.100000 +115 539 5.100000 +115 616 5.100000 +115 654 5.100000 +115 702 5.100000 +115 744 5.100000 +115 793 5.100000 +116 27 5.100000 +116 48 5.100000 +116 59 5.100000 +116 94 5.100000 +116 153 5.100000 +116 156 5.100000 +116 454 5.100000 +116 468 5.100000 +116 566 5.100000 +116 576 5.100000 +116 582 5.100000 +116 662 5.100000 +116 737 5.100000 +116 789 5.100000 +117 13 5.100000 +117 73 5.100000 +117 121 5.100000 +117 176 5.100000 +117 202 5.100000 +117 284 5.100000 +117 386 5.100000 +117 456 5.100000 +117 467 5.100000 +117 473 5.100000 +117 489 5.100000 +117 617 5.100000 +117 692 5.100000 +117 781 5.100000 +118 19 5.100000 +118 112 5.100000 +118 197 5.100000 +118 321 5.100000 +118 326 5.100000 +118 368 5.100000 +118 389 5.100000 +118 475 5.100000 +118 499 5.100000 +118 539 5.100000 +118 544 5.100000 +118 553 5.100000 +118 597 5.100000 +118 598 5.100000 +118 715 5.100000 +119 18 5.100000 +119 58 5.100000 +119 62 5.100000 +119 110 5.100000 +119 221 5.100000 +119 240 5.100000 +119 242 5.100000 +119 282 5.100000 +119 301 5.100000 +119 304 5.100000 +119 350 5.100000 +119 374 5.100000 +119 452 5.100000 +119 582 5.100000 +119 606 5.100000 +119 608 5.100000 +119 732 5.100000 +119 773 5.100000 +120 42 5.100000 +120 101 5.100000 +120 118 5.100000 +120 218 5.100000 +120 230 5.100000 +120 312 5.100000 +120 514 5.100000 +120 560 5.100000 +120 571 5.100000 +120 706 5.100000 +120 712 5.100000 +120 760 5.100000 +120 768 5.100000 +121 31 5.100000 +121 58 5.100000 +121 65 5.100000 +121 180 5.100000 +121 204 5.100000 +121 319 5.100000 +121 344 5.100000 +121 382 5.100000 +121 391 5.100000 +121 421 5.100000 +121 442 5.100000 +121 489 5.100000 +121 510 5.100000 +121 560 5.100000 +121 562 5.100000 +121 649 5.100000 +121 660 5.100000 +121 713 5.100000 +121 743 5.100000 +122 77 5.100000 +122 108 5.100000 +122 120 5.100000 +122 203 5.100000 +122 204 5.100000 +122 321 5.100000 +122 334 5.100000 +122 363 5.100000 +122 364 5.100000 +122 380 5.100000 +122 482 5.100000 +122 486 5.100000 +122 539 5.100000 +122 600 5.100000 +122 645 5.100000 +122 717 5.100000 +122 762 5.100000 +122 793 5.100000 +123 41 5.100000 +123 45 5.100000 +123 74 5.100000 +123 81 5.100000 +123 120 5.100000 +123 160 5.100000 +123 246 5.100000 +123 300 5.100000 +123 335 5.100000 +123 491 5.100000 +123 514 5.100000 +123 526 5.100000 +123 604 5.100000 +123 605 5.100000 +123 639 5.100000 +123 680 5.100000 +124 119 5.100000 +124 197 5.100000 +124 251 5.100000 +124 259 5.100000 +124 261 5.100000 +124 277 5.100000 +124 301 5.100000 +124 640 5.100000 +124 705 5.100000 +125 72 5.100000 +125 83 5.100000 +125 172 5.100000 +125 195 5.100000 +125 244 5.100000 +125 249 5.100000 +125 251 5.100000 +125 282 5.100000 +125 335 5.100000 +125 349 5.100000 +125 511 5.100000 +125 581 5.100000 +125 600 5.100000 +125 608 5.100000 +125 644 5.100000 +125 691 5.100000 +125 726 5.100000 +125 773 5.100000 +126 9 5.100000 +126 116 5.100000 +126 123 5.100000 +126 245 5.100000 +126 261 5.100000 +126 276 5.100000 +126 316 5.100000 +126 323 5.100000 +126 386 5.100000 +126 424 5.100000 +126 456 5.100000 +126 497 5.100000 +126 535 5.100000 +126 565 5.100000 +126 607 5.100000 +126 635 5.100000 +126 672 5.100000 +126 675 5.100000 +126 710 5.100000 +126 789 5.100000 +127 153 5.100000 +127 295 5.100000 +127 377 5.100000 +127 451 5.100000 +127 482 5.100000 +127 567 5.100000 +127 609 5.100000 +127 699 5.100000 +127 711 5.100000 +127 715 5.100000 +127 746 5.100000 +127 774 5.100000 +128 21 5.100000 +128 28 5.100000 +128 29 5.100000 +128 44 5.100000 +128 248 5.100000 +128 336 5.100000 +128 429 5.100000 +128 576 5.100000 +128 590 5.100000 +128 653 5.100000 +128 667 5.100000 +128 691 5.100000 +128 727 5.100000 +128 765 5.100000 +129 51 5.100000 +129 70 5.100000 +129 89 5.100000 +129 242 5.100000 +129 276 5.100000 +129 283 5.100000 +129 299 5.100000 +129 452 5.100000 +129 533 5.100000 +129 552 5.100000 +129 629 5.100000 +129 726 5.100000 +129 759 5.100000 +129 796 5.100000 +130 45 5.100000 +130 53 5.100000 +130 219 5.100000 +130 228 5.100000 +130 270 5.100000 +130 284 5.100000 +130 444 5.100000 +130 468 5.100000 +130 535 5.100000 +130 637 5.100000 +130 663 5.100000 +130 707 5.100000 +130 735 5.100000 +131 4 5.100000 +131 14 5.100000 +131 86 5.100000 +131 91 5.100000 +131 125 5.100000 +131 178 5.100000 +131 183 5.100000 +131 228 5.100000 +131 296 5.100000 +131 440 5.100000 +131 470 5.100000 +131 587 5.100000 +131 698 5.100000 +131 731 5.100000 +131 739 5.100000 +131 747 5.100000 +131 759 5.100000 +132 28 5.100000 +132 107 5.100000 +132 115 5.100000 +132 160 5.100000 +132 331 5.100000 +132 577 5.100000 +132 605 5.100000 +132 651 5.100000 +132 749 5.100000 +133 20 5.100000 +133 156 5.100000 +133 211 5.100000 +133 218 5.100000 +133 284 5.100000 +133 315 5.100000 +133 372 5.100000 +133 397 5.100000 +133 431 5.100000 +133 471 5.100000 +133 664 5.100000 +133 714 5.100000 +133 726 5.100000 +133 794 5.100000 +134 4 5.100000 +134 26 5.100000 +134 210 5.100000 +134 236 5.100000 +134 294 5.100000 +134 396 5.100000 +134 429 5.100000 +134 441 5.100000 +134 458 5.100000 +134 471 5.100000 +134 549 5.100000 +134 609 5.100000 +134 626 5.100000 +134 754 5.100000 +135 20 5.100000 +135 28 5.100000 +135 103 5.100000 +135 120 5.100000 +135 146 5.100000 +135 148 5.100000 +135 208 5.100000 +135 297 5.100000 +135 405 5.100000 +135 470 5.100000 +135 507 5.100000 +135 524 5.100000 +135 558 5.100000 +135 565 5.100000 +135 571 5.100000 +135 636 5.100000 +136 3 5.100000 +136 71 5.100000 +136 102 5.100000 +136 104 5.100000 +136 172 5.100000 +136 243 5.100000 +136 299 5.100000 +136 302 5.100000 +136 368 5.100000 +136 402 5.100000 +136 418 5.100000 +136 453 5.100000 +136 548 5.100000 +136 569 5.100000 +136 636 5.100000 +136 669 5.100000 +136 688 5.100000 +136 773 5.100000 +136 778 5.100000 +137 19 5.100000 +137 54 5.100000 +137 61 5.100000 +137 72 5.100000 +137 201 5.100000 +137 299 5.100000 +137 332 5.100000 +137 372 5.100000 +137 383 5.100000 +137 444 5.100000 +137 476 5.100000 +137 522 5.100000 +137 535 5.100000 +137 621 5.100000 +137 622 5.100000 +137 650 5.100000 +137 670 5.100000 +137 681 5.100000 +137 786 5.100000 +138 29 5.100000 +138 44 5.100000 +138 87 5.100000 +138 158 5.100000 +138 220 5.100000 +138 264 5.100000 +138 291 5.100000 +138 418 5.100000 +138 481 5.100000 +138 483 5.100000 +138 592 5.100000 +138 604 5.100000 +138 609 5.100000 +138 615 5.100000 +138 623 5.100000 +138 624 5.100000 +138 745 5.100000 +138 774 5.100000 +139 18 5.100000 +139 47 5.100000 +139 72 5.100000 +139 94 5.100000 +139 96 5.100000 +139 104 5.100000 +139 154 5.100000 +139 180 5.100000 +139 288 5.100000 +139 338 5.100000 +139 375 5.100000 +139 396 5.100000 +139 401 5.100000 +139 465 5.100000 +139 495 5.100000 +139 580 5.100000 +139 666 5.100000 +139 683 5.100000 +139 708 5.100000 +139 709 5.100000 +139 728 5.100000 +139 798 5.100000 +140 47 5.100000 +140 107 5.100000 +140 149 5.100000 +140 177 5.100000 +140 180 5.100000 +140 264 5.100000 +140 282 5.100000 +140 294 5.100000 +140 298 5.100000 +140 395 5.100000 +140 470 5.100000 +140 751 5.100000 +140 787 5.100000 +141 8 5.100000 +141 59 5.100000 +141 116 5.100000 +141 216 5.100000 +141 219 5.100000 +141 236 5.100000 +141 243 5.100000 +141 261 5.100000 +141 280 5.100000 +141 306 5.100000 +141 360 5.100000 +141 386 5.100000 +141 652 5.100000 +142 7 5.100000 +142 33 5.100000 +142 116 5.100000 +142 155 5.100000 +142 180 5.100000 +142 287 5.100000 +142 328 5.100000 +142 384 5.100000 +142 453 5.100000 +142 527 5.100000 +142 592 5.100000 +142 648 5.100000 +142 669 5.100000 +142 670 5.100000 +142 683 5.100000 +143 6 5.100000 +143 23 5.100000 +143 26 5.100000 +143 85 5.100000 +143 108 5.100000 +143 144 5.100000 +143 348 5.100000 +143 423 5.100000 +143 542 5.100000 +143 550 5.100000 +143 612 5.100000 +143 617 5.100000 +143 630 5.100000 +143 656 5.100000 +143 695 5.100000 +143 766 5.100000 +144 12 5.100000 +144 14 5.100000 +144 170 5.100000 +144 239 5.100000 +144 350 5.100000 +144 444 5.100000 +144 454 5.100000 +144 511 5.100000 +144 542 5.100000 +144 565 5.100000 +144 593 5.100000 +144 636 5.100000 +144 646 5.100000 +144 659 5.100000 +144 678 5.100000 +144 766 5.100000 +145 46 5.100000 +145 66 5.100000 +145 128 5.100000 +145 229 5.100000 +145 271 5.100000 +145 314 5.100000 +145 459 5.100000 +145 586 5.100000 +145 627 5.100000 +145 628 5.100000 +145 640 5.100000 +145 648 5.100000 +145 661 5.100000 +145 700 5.100000 +145 710 5.100000 +145 722 5.100000 +145 752 5.100000 +146 35 5.100000 +146 137 5.100000 +146 138 5.100000 +146 212 5.100000 +146 323 5.100000 +146 331 5.100000 +146 359 5.100000 +146 367 5.100000 +146 399 5.100000 +146 439 5.100000 +146 558 5.100000 +146 656 5.100000 +146 676 5.100000 +146 731 5.100000 +146 762 5.100000 +147 38 5.100000 +147 53 5.100000 +147 96 5.100000 +147 139 5.100000 +147 153 5.100000 +147 244 5.100000 +147 248 5.100000 +147 259 5.100000 +147 268 5.100000 +147 274 5.100000 +147 282 5.100000 +147 291 5.100000 +147 350 5.100000 +147 356 5.100000 +147 388 5.100000 +147 424 5.100000 +147 427 5.100000 +147 501 5.100000 +147 520 5.100000 +147 578 5.100000 +148 98 5.100000 +148 110 5.100000 +148 194 5.100000 +148 271 5.100000 +148 280 5.100000 +148 306 5.100000 +148 381 5.100000 +148 409 5.100000 +148 530 5.100000 +148 579 5.100000 +148 618 5.100000 +148 678 5.100000 +148 753 5.100000 +148 765 5.100000 +149 33 5.100000 +149 43 5.100000 +149 150 5.100000 +149 151 5.100000 +149 153 5.100000 +149 203 5.100000 +149 274 5.100000 +149 301 5.100000 +149 433 5.100000 +149 442 5.100000 +149 457 5.100000 +149 501 5.100000 +149 598 5.100000 +149 606 5.100000 +149 612 5.100000 +149 614 5.100000 +149 701 5.100000 +149 728 5.100000 +149 781 5.100000 +150 59 5.100000 +150 310 5.100000 +150 347 5.100000 +150 367 5.100000 +150 421 5.100000 +150 429 5.100000 +150 447 5.100000 +150 472 5.100000 +150 496 5.100000 +150 568 5.100000 +150 573 5.100000 +150 576 5.100000 +150 584 5.100000 +150 594 5.100000 +150 612 5.100000 +150 633 5.100000 +150 694 5.100000 +150 771 5.100000 +151 14 5.100000 +151 111 5.100000 +151 121 5.100000 +151 268 5.100000 +151 289 5.100000 +151 301 5.100000 +151 319 5.100000 +151 321 5.100000 +151 360 5.100000 +151 470 5.100000 +151 577 5.100000 +151 624 5.100000 +151 626 5.100000 +151 713 5.100000 +151 729 5.100000 +151 741 5.100000 +151 752 5.100000 +151 776 5.100000 +151 777 5.100000 +152 31 5.100000 +152 90 5.100000 +152 96 5.100000 +152 234 5.100000 +152 249 5.100000 +152 274 5.100000 +152 316 5.100000 +152 334 5.100000 +152 389 5.100000 +152 452 5.100000 +152 495 5.100000 +152 533 5.100000 +152 568 5.100000 +152 699 5.100000 +152 791 5.100000 +153 34 5.100000 +153 52 5.100000 +153 153 5.100000 +153 169 5.100000 +153 224 5.100000 +153 293 5.100000 +153 347 5.100000 +153 349 5.100000 +153 355 5.100000 +153 452 5.100000 +153 474 5.100000 +153 527 5.100000 +153 542 5.100000 +153 584 5.100000 +153 630 5.100000 +153 717 5.100000 +153 767 5.100000 +154 34 5.100000 +154 58 5.100000 +154 134 5.100000 +154 189 5.100000 +154 272 5.100000 +154 336 5.100000 +154 356 5.100000 +154 544 5.100000 +154 550 5.100000 +154 603 5.100000 +154 605 5.100000 +154 650 5.100000 +154 680 5.100000 +155 113 5.100000 +155 310 5.100000 +155 388 5.100000 +155 392 5.100000 +155 404 5.100000 +155 425 5.100000 +155 482 5.100000 +155 554 5.100000 +155 560 5.100000 +155 646 5.100000 +155 758 5.100000 +155 775 5.100000 +155 777 5.100000 +156 52 5.100000 +156 65 5.100000 +156 257 5.100000 +156 262 5.100000 +156 338 5.100000 +156 394 5.100000 +156 396 5.100000 +156 460 5.100000 +156 499 5.100000 +156 543 5.100000 +156 580 5.100000 +156 626 5.100000 +156 788 5.100000 +157 23 5.100000 +157 69 5.100000 +157 181 5.100000 +157 187 5.100000 +157 188 5.100000 +157 205 5.100000 +157 217 5.100000 +157 240 5.100000 +157 283 5.100000 +157 292 5.100000 +157 328 5.100000 +157 338 5.100000 +157 354 5.100000 +157 369 5.100000 +157 542 5.100000 +157 646 5.100000 +157 762 5.100000 +158 97 5.100000 +158 390 5.100000 +158 393 5.100000 +158 430 5.100000 +158 492 5.100000 +158 549 5.100000 +158 589 5.100000 +158 678 5.100000 +158 758 5.100000 +158 768 5.100000 +158 782 5.100000 +159 7 5.100000 +159 13 5.100000 +159 217 5.100000 +159 222 5.100000 +159 228 5.100000 +159 271 5.100000 +159 282 5.100000 +159 287 5.100000 +159 362 5.100000 +159 395 5.100000 +159 531 5.100000 +159 559 5.100000 +159 652 5.100000 +159 704 5.100000 +159 767 5.100000 +160 56 5.100000 +160 82 5.100000 +160 112 5.100000 +160 123 5.100000 +160 151 5.100000 +160 155 5.100000 +160 159 5.100000 +160 208 5.100000 +160 239 5.100000 +160 273 5.100000 +160 322 5.100000 +160 369 5.100000 +160 544 5.100000 +160 564 5.100000 +160 616 5.100000 +160 686 5.100000 +161 38 5.100000 +161 40 5.100000 +161 64 5.100000 +161 126 5.100000 +161 137 5.100000 +161 150 5.100000 +161 155 5.100000 +161 168 5.100000 +161 282 5.100000 +161 294 5.100000 +161 335 5.100000 +161 339 5.100000 +161 455 5.100000 +161 472 5.100000 +161 533 5.100000 +161 616 5.100000 +161 762 5.100000 +161 776 5.100000 +162 52 5.100000 +162 87 5.100000 +162 126 5.100000 +162 287 5.100000 +162 296 5.100000 +162 361 5.100000 +162 406 5.100000 +162 413 5.100000 +162 428 5.100000 +162 457 5.100000 +162 461 5.100000 +162 484 5.100000 +162 490 5.100000 +162 508 5.100000 +162 622 5.100000 +162 661 5.100000 +162 780 5.100000 +162 789 5.100000 +162 792 5.100000 +163 23 5.100000 +163 68 5.100000 +163 89 5.100000 +163 102 5.100000 +163 123 5.100000 +163 136 5.100000 +163 160 5.100000 +163 189 5.100000 +163 301 5.100000 +163 426 5.100000 +163 511 5.100000 +163 572 5.100000 +163 618 5.100000 +163 678 5.100000 +163 685 5.100000 +163 689 5.100000 +163 703 5.100000 +164 19 5.100000 +164 93 5.100000 +164 137 5.100000 +164 148 5.100000 +164 203 5.100000 +164 267 5.100000 +164 277 5.100000 +164 283 5.100000 +164 361 5.100000 +164 365 5.100000 +164 420 5.100000 +164 422 5.100000 +164 481 5.100000 +164 483 5.100000 +164 487 5.100000 +164 498 5.100000 +164 568 5.100000 +164 571 5.100000 +164 625 5.100000 +164 639 5.100000 +164 720 5.100000 +165 51 5.100000 +165 64 5.100000 +165 151 5.100000 +165 276 5.100000 +165 314 5.100000 +165 332 5.100000 +165 415 5.100000 +165 484 5.100000 +165 541 5.100000 +165 592 5.100000 +165 600 5.100000 +165 611 5.100000 +165 648 5.100000 +165 671 5.100000 +165 718 5.100000 +165 757 5.100000 +166 31 5.100000 +166 33 5.100000 +166 79 5.100000 +166 92 5.100000 +166 95 5.100000 +166 120 5.100000 +166 126 5.100000 +166 166 5.100000 +166 175 5.100000 +166 192 5.100000 +166 196 5.100000 +166 218 5.100000 +166 240 5.100000 +166 251 5.100000 +166 267 5.100000 +166 301 5.100000 +166 309 5.100000 +166 333 5.100000 +166 341 5.100000 +166 461 5.100000 +166 482 5.100000 +166 513 5.100000 +166 529 5.100000 +166 665 5.100000 +166 722 5.100000 +166 735 5.100000 +167 15 5.100000 +167 49 5.100000 +167 95 5.100000 +167 149 5.100000 +167 227 5.100000 +167 228 5.100000 +167 320 5.100000 +167 369 5.100000 +167 441 5.100000 +167 643 5.100000 +167 649 5.100000 +167 660 5.100000 +167 705 5.100000 +167 723 5.100000 +168 57 5.100000 +168 74 5.100000 +168 123 5.100000 +168 146 5.100000 +168 163 5.100000 +168 167 5.100000 +168 278 5.100000 +168 316 5.100000 +168 386 5.100000 +168 388 5.100000 +168 431 5.100000 +168 487 5.100000 +168 505 5.100000 +168 513 5.100000 +168 618 5.100000 +168 631 5.100000 +169 4 5.100000 +169 24 5.100000 +169 109 5.100000 +169 173 5.100000 +169 268 5.100000 +169 283 5.100000 +169 378 5.100000 +169 399 5.100000 +169 424 5.100000 +169 439 5.100000 +169 456 5.100000 +169 572 5.100000 +169 578 5.100000 +169 616 5.100000 +169 754 5.100000 +169 764 5.100000 +170 94 5.100000 +170 140 5.100000 +170 165 5.100000 +170 232 5.100000 +170 273 5.100000 +170 288 5.100000 +170 551 5.100000 +170 627 5.100000 +170 630 5.100000 +170 633 5.100000 +170 638 5.100000 +170 643 5.100000 +170 668 5.100000 +170 723 5.100000 +170 734 5.100000 +171 101 5.100000 +171 273 5.100000 +171 301 5.100000 +171 369 5.100000 +171 426 5.100000 +171 489 5.100000 +171 498 5.100000 +171 502 5.100000 +171 562 5.100000 +171 586 5.100000 +171 654 5.100000 +171 741 5.100000 +172 67 5.100000 +172 82 5.100000 +172 115 5.100000 +172 177 5.100000 +172 229 5.100000 +172 315 5.100000 +172 367 5.100000 +172 379 5.100000 +172 499 5.100000 +172 567 5.100000 +172 595 5.100000 +172 732 5.100000 +173 276 5.100000 +173 377 5.100000 +173 422 5.100000 +173 508 5.100000 +173 575 5.100000 +173 603 5.100000 +173 737 5.100000 +173 747 5.100000 +174 21 5.100000 +174 24 5.100000 +174 47 5.100000 +174 147 5.100000 +174 184 5.100000 +174 241 5.100000 +174 245 5.100000 +174 327 5.100000 +174 344 5.100000 +174 362 5.100000 +174 398 5.100000 +174 408 5.100000 +174 439 5.100000 +174 633 5.100000 +174 722 5.100000 +174 723 5.100000 +174 759 5.100000 +175 19 5.100000 +175 62 5.100000 +175 66 5.100000 +175 86 5.100000 +175 117 5.100000 +175 237 5.100000 +175 252 5.100000 +175 334 5.100000 +175 378 5.100000 +175 401 5.100000 +175 497 5.100000 +175 548 5.100000 +175 567 5.100000 +175 654 5.100000 +175 681 5.100000 +175 692 5.100000 +175 723 5.100000 +175 763 5.100000 +176 6 5.100000 +176 17 5.100000 +176 131 5.100000 +176 151 5.100000 +176 159 5.100000 +176 238 5.100000 +176 582 5.100000 +176 634 5.100000 +176 678 5.100000 +176 719 5.100000 +176 724 5.100000 +176 770 5.100000 +176 782 5.100000 +176 783 5.100000 +177 54 5.100000 +177 66 5.100000 +177 117 5.100000 +177 229 5.100000 +177 264 5.100000 +177 274 5.100000 +177 311 5.100000 +177 374 5.100000 +177 424 5.100000 +177 438 5.100000 +177 452 5.100000 +177 455 5.100000 +177 468 5.100000 +177 473 5.100000 +177 554 5.100000 +177 578 5.100000 +177 596 5.100000 +177 644 5.100000 +177 669 5.100000 +177 686 5.100000 +177 759 5.100000 +178 43 5.100000 +178 73 5.100000 +178 208 5.100000 +178 212 5.100000 +178 221 5.100000 +178 228 5.100000 +178 272 5.100000 +178 321 5.100000 +178 326 5.100000 +178 392 5.100000 +178 423 5.100000 +178 529 5.100000 +178 558 5.100000 +178 570 5.100000 +178 615 5.100000 +178 728 5.100000 +178 764 5.100000 +178 766 5.100000 +179 67 5.100000 +179 89 5.100000 +179 94 5.100000 +179 102 5.100000 +179 213 5.100000 +179 267 5.100000 +179 281 5.100000 +179 400 5.100000 +179 489 5.100000 +179 589 5.100000 +179 592 5.100000 +179 601 5.100000 +179 753 5.100000 +180 45 5.100000 +180 80 5.100000 +180 138 5.100000 +180 253 5.100000 +180 283 5.100000 +180 323 5.100000 +180 465 5.100000 +180 638 5.100000 +180 663 5.100000 +180 664 5.100000 +180 706 5.100000 +180 708 5.100000 +181 5 5.100000 +181 218 5.100000 +181 234 5.100000 +181 351 5.100000 +181 379 5.100000 +181 412 5.100000 +181 448 5.100000 +181 453 5.100000 +181 487 5.100000 +181 544 5.100000 +181 558 5.100000 +181 569 5.100000 +181 654 5.100000 +181 756 5.100000 +181 764 5.100000 +182 10 5.100000 +182 16 5.100000 +182 103 5.100000 +182 105 5.100000 +182 115 5.100000 +182 122 5.100000 +182 236 5.100000 +182 248 5.100000 +182 268 5.100000 +182 350 5.100000 +182 367 5.100000 +182 438 5.100000 +182 602 5.100000 +182 636 5.100000 +182 683 5.100000 +182 698 5.100000 +182 717 5.100000 +182 729 5.100000 +183 2 5.100000 +183 5 5.100000 +183 11 5.100000 +183 46 5.100000 +183 170 5.100000 +183 195 5.100000 +183 224 5.100000 +183 238 5.100000 +183 257 5.100000 +183 262 5.100000 +183 384 5.100000 +183 511 5.100000 +183 524 5.100000 +183 654 5.100000 +183 714 5.100000 +184 1 5.100000 +184 60 5.100000 +184 176 5.100000 +184 192 5.100000 +184 209 5.100000 +184 302 5.100000 +184 320 5.100000 +184 452 5.100000 +184 453 5.100000 +184 499 5.100000 +184 516 5.100000 +184 567 5.100000 +184 621 5.100000 +184 746 5.100000 +184 760 5.100000 +185 16 5.100000 +185 27 5.100000 +185 41 5.100000 +185 81 5.100000 +185 98 5.100000 +185 189 5.100000 +185 194 5.100000 +185 380 5.100000 +185 384 5.100000 +185 402 5.100000 +185 447 5.100000 +185 507 5.100000 +185 525 5.100000 +185 627 5.100000 +185 641 5.100000 +185 649 5.100000 +185 704 5.100000 +185 711 5.100000 +185 759 5.100000 +186 29 5.100000 +186 108 5.100000 +186 116 5.100000 +186 145 5.100000 +186 162 5.100000 +186 175 5.100000 +186 235 5.100000 +186 325 5.100000 +186 422 5.100000 +186 437 5.100000 +186 452 5.100000 +186 475 5.100000 +186 501 5.100000 +186 641 5.100000 +186 710 5.100000 +186 783 5.100000 +187 26 5.100000 +187 43 5.100000 +187 183 5.100000 +187 185 5.100000 +187 187 5.100000 +187 225 5.100000 +187 282 5.100000 +187 318 5.100000 +187 324 5.100000 +187 348 5.100000 +187 396 5.100000 +187 413 5.100000 +187 464 5.100000 +187 502 5.100000 +187 623 5.100000 +187 662 5.100000 +187 716 5.100000 +187 732 5.100000 +188 23 5.100000 +188 33 5.100000 +188 40 5.100000 +188 112 5.100000 +188 163 5.100000 +188 209 5.100000 +188 309 5.100000 +188 434 5.100000 +188 538 5.100000 +188 588 5.100000 +188 590 5.100000 +188 604 5.100000 +188 684 5.100000 +188 771 5.100000 +189 88 5.100000 +189 192 5.100000 +189 244 5.100000 +189 266 5.100000 +189 272 5.100000 +189 295 5.100000 +189 326 5.100000 +189 333 5.100000 +189 475 5.100000 +189 487 5.100000 +189 513 5.100000 +189 526 5.100000 +189 614 5.100000 +189 629 5.100000 +189 641 5.100000 +189 656 5.100000 +189 679 5.100000 +189 711 5.100000 +189 718 5.100000 +189 743 5.100000 +190 47 5.100000 +190 68 5.100000 +190 69 5.100000 +190 83 5.100000 +190 94 5.100000 +190 175 5.100000 +190 198 5.100000 +190 223 5.100000 +190 366 5.100000 +190 410 5.100000 +190 411 5.100000 +190 492 5.100000 +190 502 5.100000 +190 538 5.100000 +190 592 5.100000 +190 638 5.100000 +190 733 5.100000 +191 39 5.100000 +191 57 5.100000 +191 80 5.100000 +191 185 5.100000 +191 198 5.100000 +191 209 5.100000 +191 217 5.100000 +191 249 5.100000 +191 363 5.100000 +191 457 5.100000 +191 641 5.100000 +191 690 5.100000 +192 32 5.100000 +192 44 5.100000 +192 99 5.100000 +192 117 5.100000 +192 168 5.100000 +192 293 5.100000 +192 312 5.100000 +192 324 5.100000 +192 334 5.100000 +192 421 5.100000 +192 431 5.100000 +192 438 5.100000 +192 475 5.100000 +192 497 5.100000 +192 521 5.100000 +192 526 5.100000 +192 585 5.100000 +192 600 5.100000 +192 619 5.100000 +192 669 5.100000 +192 697 5.100000 +192 733 5.100000 +193 59 5.100000 +193 82 5.100000 +193 168 5.100000 +193 194 5.100000 +193 233 5.100000 +193 320 5.100000 +193 337 5.100000 +193 349 5.100000 +193 442 5.100000 +193 491 5.100000 +193 505 5.100000 +193 576 5.100000 +193 662 5.100000 +193 744 5.100000 +193 774 5.100000 +194 130 5.100000 +194 167 5.100000 +194 284 5.100000 +194 300 5.100000 +194 329 5.100000 +194 337 5.100000 +194 380 5.100000 +194 397 5.100000 +194 403 5.100000 +194 431 5.100000 +194 433 5.100000 +194 444 5.100000 +194 451 5.100000 +194 452 5.100000 +194 453 5.100000 +194 494 5.100000 +194 538 5.100000 +194 580 5.100000 +194 754 5.100000 +194 771 5.100000 +195 183 5.100000 +195 220 5.100000 +195 222 5.100000 +195 240 5.100000 +195 269 5.100000 +195 296 5.100000 +195 412 5.100000 +195 439 5.100000 +195 586 5.100000 +195 596 5.100000 +195 606 5.100000 +195 647 5.100000 +195 767 5.100000 +196 6 5.100000 +196 15 5.100000 +196 56 5.100000 +196 97 5.100000 +196 102 5.100000 +196 169 5.100000 +196 185 5.100000 +196 215 5.100000 +196 309 5.100000 +196 441 5.100000 +196 464 5.100000 +196 503 5.100000 +196 591 5.100000 +196 656 5.100000 +196 670 5.100000 +196 789 5.100000 +197 25 5.100000 +197 50 5.100000 +197 135 5.100000 +197 147 5.100000 +197 212 5.100000 +197 310 5.100000 +197 365 5.100000 +197 394 5.100000 +197 445 5.100000 +197 456 5.100000 +197 466 5.100000 +197 525 5.100000 +197 635 5.100000 +197 686 5.100000 +197 705 5.100000 +197 783 5.100000 +198 2 5.100000 +198 29 5.100000 +198 85 5.100000 +198 100 5.100000 +198 121 5.100000 +198 161 5.100000 +198 315 5.100000 +198 341 5.100000 +198 347 5.100000 +198 519 5.100000 +198 531 5.100000 +198 618 5.100000 +198 629 5.100000 +198 662 5.100000 +198 672 5.100000 +199 27 5.100000 +199 52 5.100000 +199 65 5.100000 +199 136 5.100000 +199 138 5.100000 +199 150 5.100000 +199 219 5.100000 +199 228 5.100000 +199 302 5.100000 +199 356 5.100000 +199 412 5.100000 +199 421 5.100000 +199 438 5.100000 +199 458 5.100000 +199 472 5.100000 +199 657 5.100000 +199 718 5.100000 +199 727 5.100000 +200 52 5.100000 +200 265 5.100000 +200 285 5.100000 +200 349 5.100000 +200 352 5.100000 +200 373 5.100000 +200 379 5.100000 +200 391 5.100000 +200 479 5.100000 +200 487 5.100000 +200 493 5.100000 +200 514 5.100000 +200 539 5.100000 +200 574 5.100000 +200 647 5.100000 +200 658 5.100000 +200 714 5.100000 +200 718 5.100000 +200 745 5.100000 +200 747 5.100000 +201 63 5.100000 +201 173 5.100000 +201 225 5.100000 +201 257 5.100000 +201 319 5.100000 +201 336 5.100000 +201 344 5.100000 +201 390 5.100000 +201 465 5.100000 +201 576 5.100000 +201 588 5.100000 +201 746 5.100000 +201 759 5.100000 +201 797 5.100000 +202 37 5.100000 +202 46 5.100000 +202 48 5.100000 +202 70 5.100000 +202 161 5.100000 +202 332 5.100000 +202 360 5.100000 +202 373 5.100000 +202 446 5.100000 +202 631 5.100000 +202 672 5.100000 +202 700 5.100000 +202 735 5.100000 +203 30 5.100000 +203 50 5.100000 +203 70 5.100000 +203 173 5.100000 +203 186 5.100000 +203 220 5.100000 +203 238 5.100000 +203 315 5.100000 +203 321 5.100000 +203 323 5.100000 +203 349 5.100000 +203 369 5.100000 +203 401 5.100000 +203 421 5.100000 +203 476 5.100000 +203 478 5.100000 +203 542 5.100000 +203 550 5.100000 +203 647 5.100000 +203 656 5.100000 +203 706 5.100000 +204 70 5.100000 +204 278 5.100000 +204 294 5.100000 +204 315 5.100000 +204 327 5.100000 +204 364 5.100000 +204 523 5.100000 +204 524 5.100000 +204 525 5.100000 +204 543 5.100000 +204 572 5.100000 +204 592 5.100000 +204 630 5.100000 +204 729 5.100000 +204 766 5.100000 +205 52 5.100000 +205 104 5.100000 +205 244 5.100000 +205 299 5.100000 +205 345 5.100000 +205 394 5.100000 +205 455 5.100000 +205 502 5.100000 +205 510 5.100000 +205 549 5.100000 +205 555 5.100000 +205 591 5.100000 +205 597 5.100000 +205 602 5.100000 +205 688 5.100000 +205 734 5.100000 +206 27 5.100000 +206 107 5.100000 +206 115 5.100000 +206 239 5.100000 +206 257 5.100000 +206 291 5.100000 +206 308 5.100000 +206 507 5.100000 +206 520 5.100000 +206 621 5.100000 +206 713 5.100000 +206 733 5.100000 +207 80 5.100000 +207 137 5.100000 +207 151 5.100000 +207 193 5.100000 +207 253 5.100000 +207 268 5.100000 +207 281 5.100000 +207 418 5.100000 +207 466 5.100000 +207 590 5.100000 +207 631 5.100000 +207 645 5.100000 +207 663 5.100000 +207 679 5.100000 +207 719 5.100000 +207 784 5.100000 +208 67 5.100000 +208 92 5.100000 +208 114 5.100000 +208 151 5.100000 +208 153 5.100000 +208 211 5.100000 +208 236 5.100000 +208 266 5.100000 +208 279 5.100000 +208 312 5.100000 +208 317 5.100000 +208 381 5.100000 +208 471 5.100000 +208 536 5.100000 +208 540 5.100000 +208 636 5.100000 +208 675 5.100000 +209 76 5.100000 +209 197 5.100000 +209 232 5.100000 +209 277 5.100000 +209 294 5.100000 +209 319 5.100000 +209 372 5.100000 +209 403 5.100000 +209 499 5.100000 +209 526 5.100000 +209 572 5.100000 +209 580 5.100000 +209 595 5.100000 +209 615 5.100000 +209 686 5.100000 +209 709 5.100000 +209 724 5.100000 +209 770 5.100000 +210 57 5.100000 +210 73 5.100000 +210 137 5.100000 +210 183 5.100000 +210 184 5.100000 +210 192 5.100000 +210 208 5.100000 +210 252 5.100000 +210 256 5.100000 +210 300 5.100000 +210 334 5.100000 +210 475 5.100000 +210 501 5.100000 +210 590 5.100000 +210 676 5.100000 +210 720 5.100000 +210 741 5.100000 +211 50 5.100000 +211 79 5.100000 +211 115 5.100000 +211 143 5.100000 +211 174 5.100000 +211 223 5.100000 +211 322 5.100000 +211 347 5.100000 +211 442 5.100000 +211 690 5.100000 +211 733 5.100000 +211 751 5.100000 +211 757 5.100000 +212 61 5.100000 +212 86 5.100000 +212 130 5.100000 +212 131 5.100000 +212 239 5.100000 +212 244 5.100000 +212 284 5.100000 +212 469 5.100000 +212 487 5.100000 +212 504 5.100000 +212 611 5.100000 +212 617 5.100000 +212 679 5.100000 +212 778 5.100000 +213 47 5.100000 +213 48 5.100000 +213 62 5.100000 +213 77 5.100000 +213 95 5.100000 +213 154 5.100000 +213 161 5.100000 +213 184 5.100000 +213 186 5.100000 +213 231 5.100000 +213 252 5.100000 +213 271 5.100000 +213 294 5.100000 +213 342 5.100000 +213 343 5.100000 +213 512 5.100000 +213 614 5.100000 +213 761 5.100000 +214 7 5.100000 +214 13 5.100000 +214 51 5.100000 +214 118 5.100000 +214 165 5.100000 +214 194 5.100000 +214 242 5.100000 +214 307 5.100000 +214 317 5.100000 +214 369 5.100000 +214 486 5.100000 +214 539 5.100000 +214 623 5.100000 +214 711 5.100000 +214 731 5.100000 +214 781 5.100000 +215 53 5.100000 +215 55 5.100000 +215 166 5.100000 +215 209 5.100000 +215 276 5.100000 +215 328 5.100000 +215 344 5.100000 +215 351 5.100000 +215 399 5.100000 +215 515 5.100000 +215 528 5.100000 +215 713 5.100000 +216 6 5.100000 +216 8 5.100000 +216 45 5.100000 +216 60 5.100000 +216 81 5.100000 +216 274 5.100000 +216 286 5.100000 +216 334 5.100000 +216 342 5.100000 +216 373 5.100000 +216 392 5.100000 +216 396 5.100000 +216 438 5.100000 +216 575 5.100000 +216 597 5.100000 +216 602 5.100000 +216 718 5.100000 +216 768 5.100000 +217 19 5.100000 +217 144 5.100000 +217 211 5.100000 +217 238 5.100000 +217 419 5.100000 +217 527 5.100000 +217 564 5.100000 +217 577 5.100000 +217 647 5.100000 +217 679 5.100000 +217 703 5.100000 +217 736 5.100000 +217 759 5.100000 +217 782 5.100000 +217 784 5.100000 +218 37 5.100000 +218 71 5.100000 +218 114 5.100000 +218 120 5.100000 +218 188 5.100000 +218 221 5.100000 +218 274 5.100000 +218 275 5.100000 +218 276 5.100000 +218 308 5.100000 +218 354 5.100000 +218 375 5.100000 +218 377 5.100000 +218 418 5.100000 +218 449 5.100000 +218 462 5.100000 +218 502 5.100000 +218 521 5.100000 +218 614 5.100000 +218 632 5.100000 +218 634 5.100000 +218 716 5.100000 +219 26 5.100000 +219 58 5.100000 +219 101 5.100000 +219 194 5.100000 +219 267 5.100000 +219 431 5.100000 +219 458 5.100000 +219 467 5.100000 +219 488 5.100000 +219 581 5.100000 +219 655 5.100000 +219 711 5.100000 +220 4 5.100000 +220 92 5.100000 +220 128 5.100000 +220 139 5.100000 +220 143 5.100000 +220 210 5.100000 +220 300 5.100000 +220 331 5.100000 +220 335 5.100000 +220 358 5.100000 +220 365 5.100000 +220 370 5.100000 +220 422 5.100000 +220 428 5.100000 +220 477 5.100000 +220 495 5.100000 +220 572 5.100000 +220 629 5.100000 +220 639 5.100000 +220 768 5.100000 +220 782 5.100000 +221 37 5.100000 +221 42 5.100000 +221 115 5.100000 +221 164 5.100000 +221 207 5.100000 +221 215 5.100000 +221 288 5.100000 +221 343 5.100000 +221 376 5.100000 +221 401 5.100000 +221 465 5.100000 +221 552 5.100000 +221 723 5.100000 +221 749 5.100000 +221 785 5.100000 +222 2 5.100000 +222 48 5.100000 +222 76 5.100000 +222 87 5.100000 +222 126 5.100000 +222 131 5.100000 +222 236 5.100000 +222 255 5.100000 +222 308 5.100000 +222 392 5.100000 +222 437 5.100000 +222 439 5.100000 +222 480 5.100000 +222 553 5.100000 +222 606 5.100000 +222 672 5.100000 +223 12 5.100000 +223 191 5.100000 +223 292 5.100000 +223 293 5.100000 +223 307 5.100000 +223 309 5.100000 +223 328 5.100000 +223 433 5.100000 +223 456 5.100000 +223 486 5.100000 +223 603 5.100000 +223 612 5.100000 +223 666 5.100000 +223 689 5.100000 +223 710 5.100000 +223 769 5.100000 +223 776 5.100000 +223 795 5.100000 +224 9 5.100000 +224 107 5.100000 +224 147 5.100000 +224 276 5.100000 +224 320 5.100000 +224 324 5.100000 +224 369 5.100000 +224 404 5.100000 +224 455 5.100000 +224 466 5.100000 +224 701 5.100000 +224 735 5.100000 +224 769 5.100000 +224 790 5.100000 +225 46 5.100000 +225 110 5.100000 +225 199 5.100000 +225 229 5.100000 +225 349 5.100000 +225 362 5.100000 +225 367 5.100000 +225 448 5.100000 +225 534 5.100000 +225 537 5.100000 +225 645 5.100000 +225 687 5.100000 +225 703 5.100000 +226 88 5.100000 +226 254 5.100000 +226 311 5.100000 +226 344 5.100000 +226 368 5.100000 +226 410 5.100000 +226 430 5.100000 +226 461 5.100000 +226 639 5.100000 +226 696 5.100000 +226 725 5.100000 +226 758 5.100000 +226 771 5.100000 +227 78 5.100000 +227 89 5.100000 +227 150 5.100000 +227 208 5.100000 +227 272 5.100000 +227 309 5.100000 +227 367 5.100000 +227 382 5.100000 +227 395 5.100000 +227 501 5.100000 +227 523 5.100000 +227 567 5.100000 +227 604 5.100000 +227 650 5.100000 +227 659 5.100000 +227 671 5.100000 +227 733 5.100000 +227 739 5.100000 +227 796 5.100000 +228 13 5.100000 +228 156 5.100000 +228 173 5.100000 +228 192 5.100000 +228 274 5.100000 +228 368 5.100000 +228 375 5.100000 +228 386 5.100000 +228 499 5.100000 +228 619 5.100000 +228 686 5.100000 +228 690 5.100000 +228 758 5.100000 +229 24 5.100000 +229 97 5.100000 +229 107 5.100000 +229 116 5.100000 +229 253 5.100000 +229 263 5.100000 +229 341 5.100000 +229 346 5.100000 +229 378 5.100000 +229 411 5.100000 +229 473 5.100000 +229 491 5.100000 +229 500 5.100000 +229 560 5.100000 +229 564 5.100000 +229 571 5.100000 +229 583 5.100000 +229 773 5.100000 +230 18 5.100000 +230 82 5.100000 +230 97 5.100000 +230 162 5.100000 +230 280 5.100000 +230 287 5.100000 +230 293 5.100000 +230 308 5.100000 +230 411 5.100000 +230 421 5.100000 +230 674 5.100000 +230 800 5.100000 +231 98 5.100000 +231 122 5.100000 +231 195 5.100000 +231 234 5.100000 +231 263 5.100000 +231 396 5.100000 +231 406 5.100000 +231 437 5.100000 +231 499 5.100000 +231 537 5.100000 +231 568 5.100000 +231 596 5.100000 +231 611 5.100000 +231 623 5.100000 +231 663 5.100000 +231 690 5.100000 +231 693 5.100000 +231 697 5.100000 +231 766 5.100000 +231 794 5.100000 +232 31 5.100000 +232 256 5.100000 +232 321 5.100000 +232 351 5.100000 +232 364 5.100000 +232 389 5.100000 +232 447 5.100000 +232 453 5.100000 +232 463 5.100000 +232 507 5.100000 +232 525 5.100000 +232 713 5.100000 +232 725 5.100000 +233 121 5.100000 +233 132 5.100000 +233 135 5.100000 +233 234 5.100000 +233 271 5.100000 +233 325 5.100000 +233 396 5.100000 +233 443 5.100000 +233 508 5.100000 +233 521 5.100000 +233 571 5.100000 +234 115 5.100000 +234 128 5.100000 +234 175 5.100000 +234 243 5.100000 +234 263 5.100000 +234 301 5.100000 +234 330 5.100000 +234 362 5.100000 +234 415 5.100000 +234 482 5.100000 +234 550 5.100000 +234 665 5.100000 +234 668 5.100000 +234 783 5.100000 +235 48 5.100000 +235 56 5.100000 +235 80 5.100000 +235 91 5.100000 +235 94 5.100000 +235 208 5.100000 +235 266 5.100000 +235 328 5.100000 +235 603 5.100000 +235 750 5.100000 +236 10 5.100000 +236 27 5.100000 +236 233 5.100000 +236 249 5.100000 +236 260 5.100000 +236 295 5.100000 +236 330 5.100000 +236 358 5.100000 +236 463 5.100000 +236 494 5.100000 +236 503 5.100000 +236 593 5.100000 +236 709 5.100000 +236 750 5.100000 +236 761 5.100000 +237 29 5.100000 +237 32 5.100000 +237 77 5.100000 +237 240 5.100000 +237 315 5.100000 +237 384 5.100000 +237 433 5.100000 +237 477 5.100000 +237 549 5.100000 +237 578 5.100000 +237 579 5.100000 +237 672 5.100000 +237 709 5.100000 +237 793 5.100000 +238 73 5.100000 +238 195 5.100000 +238 196 5.100000 +238 204 5.100000 +238 291 5.100000 +238 313 5.100000 +238 329 5.100000 +238 348 5.100000 +238 404 5.100000 +238 410 5.100000 +238 430 5.100000 +238 467 5.100000 +238 630 5.100000 +238 696 5.100000 +239 34 5.100000 +239 93 5.100000 +239 142 5.100000 +239 143 5.100000 +239 266 5.100000 +239 373 5.100000 +239 432 5.100000 +239 447 5.100000 +239 466 5.100000 +239 577 5.100000 +239 607 5.100000 +239 613 5.100000 +239 800 5.100000 +240 13 5.100000 +240 41 5.100000 +240 97 5.100000 +240 183 5.100000 +240 195 5.100000 +240 287 5.100000 +240 290 5.100000 +240 436 5.100000 +240 479 5.100000 +240 485 5.100000 +240 550 5.100000 +240 569 5.100000 +240 614 5.100000 +240 626 5.100000 +240 701 5.100000 +240 707 5.100000 +241 58 5.100000 +241 73 5.100000 +241 126 5.100000 +241 178 5.100000 +241 190 5.100000 +241 279 5.100000 +241 324 5.100000 +241 343 5.100000 +241 385 5.100000 +241 399 5.100000 +241 436 5.100000 +241 548 5.100000 +241 578 5.100000 +241 642 5.100000 +241 660 5.100000 +241 772 5.100000 +242 18 5.100000 +242 39 5.100000 +242 53 5.100000 +242 96 5.100000 +242 104 5.100000 +242 181 5.100000 +242 234 5.100000 +242 269 5.100000 +242 303 5.100000 +242 505 5.100000 +242 641 5.100000 +242 780 5.100000 +243 168 5.100000 +243 257 5.100000 +243 270 5.100000 +243 300 5.100000 +243 315 5.100000 +243 321 5.100000 +243 416 5.100000 +243 421 5.100000 +243 553 5.100000 +243 565 5.100000 +243 687 5.100000 +243 691 5.100000 +243 738 5.100000 +244 8 5.100000 +244 22 5.100000 +244 47 5.100000 +244 112 5.100000 +244 115 5.100000 +244 170 5.100000 +244 226 5.100000 +244 229 5.100000 +244 346 5.100000 +244 448 5.100000 +244 452 5.100000 +244 503 5.100000 +244 528 5.100000 +244 548 5.100000 +244 682 5.100000 +245 22 5.100000 +245 50 5.100000 +245 117 5.100000 +245 129 5.100000 +245 301 5.100000 +245 319 5.100000 +245 343 5.100000 +245 456 5.100000 +245 485 5.100000 +245 540 5.100000 +246 91 5.100000 +246 112 5.100000 +246 153 5.100000 +246 261 5.100000 +246 269 5.100000 +246 283 5.100000 +246 306 5.100000 +246 351 5.100000 +246 530 5.100000 +246 534 5.100000 +246 606 5.100000 +246 759 5.100000 +246 760 5.100000 +246 779 5.100000 +246 788 5.100000 +247 10 5.100000 +247 35 5.100000 +247 109 5.100000 +247 212 5.100000 +247 258 5.100000 +247 261 5.100000 +247 347 5.100000 +247 366 5.100000 +247 408 5.100000 +247 412 5.100000 +247 448 5.100000 +247 509 5.100000 +247 533 5.100000 +247 550 5.100000 +247 613 5.100000 +247 669 5.100000 +247 715 5.100000 +247 763 5.100000 +247 800 5.100000 +248 73 5.100000 +248 144 5.100000 +248 165 5.100000 +248 184 5.100000 +248 271 5.100000 +248 309 5.100000 +248 330 5.100000 +248 487 5.100000 +248 523 5.100000 +248 564 5.100000 +248 677 5.100000 +248 695 5.100000 +248 754 5.100000 +248 797 5.100000 +249 226 5.100000 +249 232 5.100000 +249 294 5.100000 +249 373 5.100000 +249 406 5.100000 +249 407 5.100000 +249 449 5.100000 +249 578 5.100000 +249 587 5.100000 +249 621 5.100000 +249 666 5.100000 +249 695 5.100000 +249 774 5.100000 +249 780 5.100000 +249 781 5.100000 +250 1 5.100000 +250 41 5.100000 +250 94 5.100000 +250 201 5.100000 +250 204 5.100000 +250 216 5.100000 +250 243 5.100000 +250 281 5.100000 +250 283 5.100000 +250 399 5.100000 +250 462 5.100000 +250 487 5.100000 +250 557 5.100000 +250 574 5.100000 +250 587 5.100000 +250 607 5.100000 +250 651 5.100000 +250 657 5.100000 +250 772 5.100000 +251 12 5.100000 +251 40 5.100000 +251 79 5.100000 +251 140 5.100000 +251 158 5.100000 +251 197 5.100000 +251 223 5.100000 +251 297 5.100000 +251 386 5.100000 +251 480 5.100000 +251 499 5.100000 +251 515 5.100000 +251 547 5.100000 +251 575 5.100000 +251 687 5.100000 +251 697 5.100000 +251 756 5.100000 +251 774 5.100000 +252 10 5.100000 +252 35 5.100000 +252 45 5.100000 +252 169 5.100000 +252 365 5.100000 +252 413 5.100000 +252 438 5.100000 +252 501 5.100000 +252 525 5.100000 +252 770 5.100000 +253 40 5.100000 +253 70 5.100000 +253 95 5.100000 +253 163 5.100000 +253 271 5.100000 +253 326 5.100000 +253 353 5.100000 +253 418 5.100000 +253 471 5.100000 +253 537 5.100000 +253 564 5.100000 +253 591 5.100000 +253 642 5.100000 +253 690 5.100000 +253 799 5.100000 +254 21 5.100000 +254 80 5.100000 +254 90 5.100000 +254 108 5.100000 +254 167 5.100000 +254 186 5.100000 +254 212 5.100000 +254 378 5.100000 +254 402 5.100000 +254 442 5.100000 +254 549 5.100000 +254 596 5.100000 +254 598 5.100000 +254 600 5.100000 +254 642 5.100000 +254 793 5.100000 +255 14 5.100000 +255 26 5.100000 +255 179 5.100000 +255 213 5.100000 +255 302 5.100000 +255 314 5.100000 +255 394 5.100000 +255 455 5.100000 +255 483 5.100000 +255 549 5.100000 +255 573 5.100000 +255 578 5.100000 +255 738 5.100000 +255 787 5.100000 +256 52 5.100000 +256 146 5.100000 +256 196 5.100000 +256 213 5.100000 +256 257 5.100000 +256 280 5.100000 +256 297 5.100000 +256 346 5.100000 +256 366 5.100000 +256 415 5.100000 +256 501 5.100000 +256 511 5.100000 +256 525 5.100000 +256 612 5.100000 +256 625 5.100000 +256 666 5.100000 +256 671 5.100000 +256 784 5.100000 +257 190 5.100000 +257 221 5.100000 +257 252 5.100000 +257 269 5.100000 +257 347 5.100000 +257 364 5.100000 +257 552 5.100000 +258 46 5.100000 +258 49 5.100000 +258 51 5.100000 +258 92 5.100000 +258 137 5.100000 +258 248 5.100000 +258 258 5.100000 +258 278 5.100000 +258 392 5.100000 +258 411 5.100000 +258 422 5.100000 +258 463 5.100000 +258 512 5.100000 +258 516 5.100000 +258 565 5.100000 +258 580 5.100000 +258 638 5.100000 +258 713 5.100000 +259 3 5.100000 +259 136 5.100000 +259 196 5.100000 +259 208 5.100000 +259 323 5.100000 +259 352 5.100000 +259 399 5.100000 +259 495 5.100000 +259 611 5.100000 +259 618 5.100000 +259 626 5.100000 +259 643 5.100000 +259 652 5.100000 +259 676 5.100000 +259 751 5.100000 +259 752 5.100000 +259 775 5.100000 +259 776 5.100000 +260 52 5.100000 +260 65 5.100000 +260 103 5.100000 +260 121 5.100000 +260 153 5.100000 +260 184 5.100000 +260 237 5.100000 +260 251 5.100000 +260 322 5.100000 +260 338 5.100000 +260 437 5.100000 +260 662 5.100000 +260 678 5.100000 +261 18 5.100000 +261 171 5.100000 +261 247 5.100000 +261 248 5.100000 +261 291 5.100000 +261 349 5.100000 +261 476 5.100000 +261 567 5.100000 +261 605 5.100000 +261 644 5.100000 +262 14 5.100000 +262 170 5.100000 +262 198 5.100000 +262 304 5.100000 +262 361 5.100000 +262 413 5.100000 +262 463 5.100000 +262 467 5.100000 +262 480 5.100000 +262 489 5.100000 +262 533 5.100000 +262 578 5.100000 +262 636 5.100000 +262 669 5.100000 +262 675 5.100000 +262 718 5.100000 +262 731 5.100000 +263 84 5.100000 +263 241 5.100000 +263 247 5.100000 +263 324 5.100000 +263 327 5.100000 +263 402 5.100000 +263 486 5.100000 +263 525 5.100000 +263 542 5.100000 +263 584 5.100000 +263 612 5.100000 +263 661 5.100000 +263 667 5.100000 +263 756 5.100000 +263 768 5.100000 +264 36 5.100000 +264 46 5.100000 +264 125 5.100000 +264 126 5.100000 +264 164 5.100000 +264 253 5.100000 +264 343 5.100000 +264 445 5.100000 +264 489 5.100000 +264 558 5.100000 +264 623 5.100000 +264 726 5.100000 +264 744 5.100000 +265 9 5.100000 +265 41 5.100000 +265 76 5.100000 +265 175 5.100000 +265 200 5.100000 +265 418 5.100000 +265 482 5.100000 +265 520 5.100000 +265 533 5.100000 +265 534 5.100000 +265 541 5.100000 +265 555 5.100000 +265 668 5.100000 +266 40 5.100000 +266 47 5.100000 +266 117 5.100000 +266 133 5.100000 +266 175 5.100000 +266 184 5.100000 +266 340 5.100000 +266 355 5.100000 +266 382 5.100000 +266 400 5.100000 +266 505 5.100000 +266 524 5.100000 +266 533 5.100000 +266 554 5.100000 +266 565 5.100000 +266 599 5.100000 +266 614 5.100000 +266 618 5.100000 +266 665 5.100000 +266 666 5.100000 +266 741 5.100000 +266 748 5.100000 +266 773 5.100000 +266 793 5.100000 +267 9 5.100000 +267 87 5.100000 +267 88 5.100000 +267 104 5.100000 +267 159 5.100000 +267 280 5.100000 +267 306 5.100000 +267 355 5.100000 +267 397 5.100000 +267 416 5.100000 +267 467 5.100000 +267 469 5.100000 +267 482 5.100000 +267 554 5.100000 +267 563 5.100000 +267 571 5.100000 +267 592 5.100000 +267 648 5.100000 +267 711 5.100000 +267 733 5.100000 +267 746 5.100000 +267 780 5.100000 +268 22 5.100000 +268 74 5.100000 +268 88 5.100000 +268 170 5.100000 +268 293 5.100000 +268 437 5.100000 +268 441 5.100000 +268 544 5.100000 +268 564 5.100000 +268 590 5.100000 +268 592 5.100000 +268 621 5.100000 +268 711 5.100000 +268 756 5.100000 +268 763 5.100000 +269 65 5.100000 +269 101 5.100000 +269 239 5.100000 +269 274 5.100000 +269 310 5.100000 +269 333 5.100000 +269 368 5.100000 +269 370 5.100000 +269 374 5.100000 +269 397 5.100000 +269 526 5.100000 +269 527 5.100000 +269 601 5.100000 +269 618 5.100000 +269 637 5.100000 +269 693 5.100000 +269 698 5.100000 +269 709 5.100000 +269 756 5.100000 +270 7 5.100000 +270 15 5.100000 +270 20 5.100000 +270 98 5.100000 +270 249 5.100000 +270 456 5.100000 +270 476 5.100000 +270 490 5.100000 +270 568 5.100000 +270 571 5.100000 +270 640 5.100000 +270 785 5.100000 +271 150 5.100000 +271 224 5.100000 +271 232 5.100000 +271 357 5.100000 +271 394 5.100000 +271 477 5.100000 +271 631 5.100000 +271 723 5.100000 +271 797 5.100000 +272 7 5.100000 +272 43 5.100000 +272 69 5.100000 +272 244 5.100000 +272 315 5.100000 +272 374 5.100000 +272 482 5.100000 +272 674 5.100000 +272 700 5.100000 +272 705 5.100000 +272 787 5.100000 +273 3 5.100000 +273 37 5.100000 +273 122 5.100000 +273 182 5.100000 +273 224 5.100000 +273 246 5.100000 +273 299 5.100000 +273 336 5.100000 +273 378 5.100000 +273 439 5.100000 +273 612 5.100000 +273 628 5.100000 +273 654 5.100000 +273 658 5.100000 +273 712 5.100000 +273 735 5.100000 +274 113 5.100000 +274 116 5.100000 +274 158 5.100000 +274 186 5.100000 +274 355 5.100000 +274 363 5.100000 +274 387 5.100000 +274 409 5.100000 +274 410 5.100000 +274 455 5.100000 +274 463 5.100000 +274 526 5.100000 +274 601 5.100000 +274 717 5.100000 +274 772 5.100000 +274 785 5.100000 +274 786 5.100000 +275 13 5.100000 +275 21 5.100000 +275 99 5.100000 +275 210 5.100000 +275 248 5.100000 +275 311 5.100000 +275 464 5.100000 +275 664 5.100000 +275 680 5.100000 +275 705 5.100000 +275 723 5.100000 +276 68 5.100000 +276 101 5.100000 +276 115 5.100000 +276 160 5.100000 +276 180 5.100000 +276 215 5.100000 +276 221 5.100000 +276 231 5.100000 +276 318 5.100000 +276 349 5.100000 +276 385 5.100000 +276 422 5.100000 +276 486 5.100000 +276 545 5.100000 +276 561 5.100000 +276 589 5.100000 +276 627 5.100000 +276 647 5.100000 +276 663 5.100000 +276 754 5.100000 +276 760 5.100000 +277 7 5.100000 +277 108 5.100000 +277 175 5.100000 +277 273 5.100000 +277 345 5.100000 +277 347 5.100000 +277 403 5.100000 +277 465 5.100000 +277 595 5.100000 +277 642 5.100000 +277 734 5.100000 +277 757 5.100000 +277 775 5.100000 +277 787 5.100000 +278 174 5.100000 +278 203 5.100000 +278 252 5.100000 +278 307 5.100000 +278 325 5.100000 +278 379 5.100000 +278 437 5.100000 +278 489 5.100000 +278 564 5.100000 +278 611 5.100000 +278 626 5.100000 +278 638 5.100000 +278 696 5.100000 +278 720 5.100000 +278 743 5.100000 +279 144 5.100000 +279 200 5.100000 +279 209 5.100000 +279 226 5.100000 +279 275 5.100000 +279 388 5.100000 +279 407 5.100000 +279 525 5.100000 +279 657 5.100000 +279 674 5.100000 +279 731 5.100000 +279 762 5.100000 +279 775 5.100000 +280 18 5.100000 +280 20 5.100000 +280 43 5.100000 +280 61 5.100000 +280 285 5.100000 +280 334 5.100000 +280 496 5.100000 +280 649 5.100000 +280 657 5.100000 +281 18 5.100000 +281 28 5.100000 +281 116 5.100000 +281 118 5.100000 +281 176 5.100000 +281 227 5.100000 +281 237 5.100000 +281 244 5.100000 +281 343 5.100000 +281 505 5.100000 +281 510 5.100000 +281 515 5.100000 +281 529 5.100000 +281 603 5.100000 +281 610 5.100000 +281 624 5.100000 +281 682 5.100000 +281 713 5.100000 +281 740 5.100000 +281 747 5.100000 +281 760 5.100000 +282 164 5.100000 +282 169 5.100000 +282 207 5.100000 +282 218 5.100000 +282 219 5.100000 +282 251 5.100000 +282 307 5.100000 +282 372 5.100000 +282 478 5.100000 +282 548 5.100000 +282 648 5.100000 +282 727 5.100000 +282 742 5.100000 +283 9 5.100000 +283 80 5.100000 +283 84 5.100000 +283 93 5.100000 +283 223 5.100000 +283 228 5.100000 +283 256 5.100000 +283 261 5.100000 +283 313 5.100000 +283 470 5.100000 +283 554 5.100000 +283 576 5.100000 +283 621 5.100000 +283 628 5.100000 +283 641 5.100000 +283 760 5.100000 +284 21 5.100000 +284 49 5.100000 +284 59 5.100000 +284 74 5.100000 +284 98 5.100000 +284 126 5.100000 +284 264 5.100000 +284 316 5.100000 +284 396 5.100000 +284 424 5.100000 +284 436 5.100000 +284 447 5.100000 +284 486 5.100000 +284 509 5.100000 +284 585 5.100000 +284 598 5.100000 +284 668 5.100000 +284 673 5.100000 +285 123 5.100000 +285 171 5.100000 +285 185 5.100000 +285 215 5.100000 +285 293 5.100000 +285 297 5.100000 +285 381 5.100000 +285 566 5.100000 +285 623 5.100000 +285 710 5.100000 +285 723 5.100000 +285 753 5.100000 +285 765 5.100000 +286 43 5.100000 +286 71 5.100000 +286 75 5.100000 +286 91 5.100000 +286 169 5.100000 +286 212 5.100000 +286 230 5.100000 +286 289 5.100000 +286 349 5.100000 +286 357 5.100000 +286 373 5.100000 +286 443 5.100000 +286 449 5.100000 +286 488 5.100000 +286 636 5.100000 +286 637 5.100000 +286 660 5.100000 +286 673 5.100000 +286 732 5.100000 +287 42 5.100000 +287 97 5.100000 +287 235 5.100000 +287 272 5.100000 +287 346 5.100000 +287 401 5.100000 +287 411 5.100000 +287 449 5.100000 +287 528 5.100000 +287 565 5.100000 +287 570 5.100000 +287 662 5.100000 +287 755 5.100000 +287 780 5.100000 +288 27 5.100000 +288 100 5.100000 +288 121 5.100000 +288 159 5.100000 +288 215 5.100000 +288 220 5.100000 +288 275 5.100000 +288 289 5.100000 +288 536 5.100000 +288 541 5.100000 +288 562 5.100000 +288 596 5.100000 +288 612 5.100000 +288 688 5.100000 +288 709 5.100000 +288 740 5.100000 +289 83 5.100000 +289 88 5.100000 +289 111 5.100000 +289 150 5.100000 +289 241 5.100000 +289 284 5.100000 +289 420 5.100000 +289 451 5.100000 +289 460 5.100000 +289 730 5.100000 +289 773 5.100000 +289 796 5.100000 +289 798 5.100000 +290 49 5.100000 +290 105 5.100000 +290 108 5.100000 +290 121 5.100000 +290 172 5.100000 +290 173 5.100000 +290 271 5.100000 +290 296 5.100000 +290 406 5.100000 +290 453 5.100000 +290 497 5.100000 +290 582 5.100000 +290 598 5.100000 +290 676 5.100000 +290 697 5.100000 +290 703 5.100000 +290 709 5.100000 +290 732 5.100000 +290 769 5.100000 +291 7 5.100000 +291 13 5.100000 +291 154 5.100000 +291 195 5.100000 +291 249 5.100000 +291 318 5.100000 +291 333 5.100000 +291 343 5.100000 +291 346 5.100000 +291 365 5.100000 +291 452 5.100000 +291 472 5.100000 +291 487 5.100000 +291 529 5.100000 +291 559 5.100000 +291 616 5.100000 +291 623 5.100000 +291 626 5.100000 +291 706 5.100000 +291 790 5.100000 +291 791 5.100000 +291 792 5.100000 +292 37 5.100000 +292 50 5.100000 +292 136 5.100000 +292 205 5.100000 +292 216 5.100000 +292 352 5.100000 +292 373 5.100000 +292 534 5.100000 +292 571 5.100000 +292 638 5.100000 +292 746 5.100000 +292 750 5.100000 +292 781 5.100000 +293 63 5.100000 +293 92 5.100000 +293 124 5.100000 +293 137 5.100000 +293 244 5.100000 +293 289 5.100000 +293 335 5.100000 +293 361 5.100000 +293 409 5.100000 +293 456 5.100000 +293 660 5.100000 +293 661 5.100000 +293 663 5.100000 +293 671 5.100000 +293 672 5.100000 +294 21 5.100000 +294 31 5.100000 +294 52 5.100000 +294 66 5.100000 +294 150 5.100000 +294 278 5.100000 +294 293 5.100000 +294 412 5.100000 +294 570 5.100000 +294 711 5.100000 +295 3 5.100000 +295 5 5.100000 +295 24 5.100000 +295 27 5.100000 +295 117 5.100000 +295 238 5.100000 +295 254 5.100000 +295 310 5.100000 +295 328 5.100000 +295 337 5.100000 +295 418 5.100000 +295 432 5.100000 +295 471 5.100000 +295 491 5.100000 +295 537 5.100000 +295 577 5.100000 +295 607 5.100000 +295 616 5.100000 +295 631 5.100000 +295 791 5.100000 +295 793 5.100000 +296 66 5.100000 +296 84 5.100000 +296 137 5.100000 +296 192 5.100000 +296 262 5.100000 +296 312 5.100000 +296 364 5.100000 +296 375 5.100000 +296 403 5.100000 +296 431 5.100000 +296 510 5.100000 +296 567 5.100000 +296 574 5.100000 +296 713 5.100000 +296 766 5.100000 +297 13 5.100000 +297 18 5.100000 +297 172 5.100000 +297 242 5.100000 +297 319 5.100000 +297 428 5.100000 +297 485 5.100000 +297 508 5.100000 +297 514 5.100000 +297 651 5.100000 +297 697 5.100000 +297 786 5.100000 +298 54 5.100000 +298 115 5.100000 +298 169 5.100000 +298 332 5.100000 +298 384 5.100000 +298 388 5.100000 +298 420 5.100000 +298 426 5.100000 +298 585 5.100000 +298 588 5.100000 +298 618 5.100000 +298 695 5.100000 +298 705 5.100000 +298 741 5.100000 +299 105 5.100000 +299 125 5.100000 +299 175 5.100000 +299 178 5.100000 +299 188 5.100000 +299 209 5.100000 +299 225 5.100000 +299 255 5.100000 +299 260 5.100000 +299 286 5.100000 +299 347 5.100000 +299 460 5.100000 +299 537 5.100000 +299 540 5.100000 +299 549 5.100000 +299 682 5.100000 +299 723 5.100000 +299 735 5.100000 +300 89 5.100000 +300 92 5.100000 +300 120 5.100000 +300 160 5.100000 +300 161 5.100000 +300 225 5.100000 +300 239 5.100000 +300 248 5.100000 +300 269 5.100000 +300 371 5.100000 +300 410 5.100000 +300 437 5.100000 +300 534 5.100000 +300 560 5.100000 +300 604 5.100000 +300 738 5.100000 +300 778 5.100000 +300 789 5.100000 +301 39 5.100000 +301 98 5.100000 +301 219 5.100000 +301 330 5.100000 +301 363 5.100000 +301 390 5.100000 +301 597 5.100000 +302 12 5.100000 +302 17 5.100000 +302 90 5.100000 +302 93 5.100000 +302 139 5.100000 +302 140 5.100000 +302 164 5.100000 +302 229 5.100000 +302 266 5.100000 +302 362 5.100000 +302 365 5.100000 +302 428 5.100000 +302 451 5.100000 +302 623 5.100000 +302 633 5.100000 +302 668 5.100000 +302 716 5.100000 +302 723 5.100000 +302 729 5.100000 +302 737 5.100000 +302 752 5.100000 +302 755 5.100000 +303 4 5.100000 +303 86 5.100000 +303 187 5.100000 +303 225 5.100000 +303 226 5.100000 +303 472 5.100000 +303 504 5.100000 +303 569 5.100000 +303 581 5.100000 +303 612 5.100000 +303 639 5.100000 +303 650 5.100000 +303 704 5.100000 +303 733 5.100000 +304 57 5.100000 +304 258 5.100000 +304 285 5.100000 +304 324 5.100000 +304 452 5.100000 +304 469 5.100000 +304 525 5.100000 +304 589 5.100000 +304 599 5.100000 +304 706 5.100000 +304 735 5.100000 +304 796 5.100000 +305 19 5.100000 +305 65 5.100000 +305 172 5.100000 +305 246 5.100000 +305 382 5.100000 +305 426 5.100000 +305 453 5.100000 +305 662 5.100000 +305 665 5.100000 +305 686 5.100000 +306 47 5.100000 +306 154 5.100000 +306 157 5.100000 +306 233 5.100000 +306 342 5.100000 +306 382 5.100000 +306 408 5.100000 +306 428 5.100000 +306 465 5.100000 +306 512 5.100000 +306 558 5.100000 +306 571 5.100000 +306 647 5.100000 +306 651 5.100000 +306 699 5.100000 +306 705 5.100000 +306 763 5.100000 +306 766 5.100000 +306 782 5.100000 +307 69 5.100000 +307 75 5.100000 +307 102 5.100000 +307 171 5.100000 +307 189 5.100000 +307 218 5.100000 +307 251 5.100000 +307 273 5.100000 +307 325 5.100000 +307 391 5.100000 +307 440 5.100000 +307 444 5.100000 +307 457 5.100000 +307 560 5.100000 +307 691 5.100000 +307 759 5.100000 +308 221 5.100000 +308 266 5.100000 +308 311 5.100000 +308 440 5.100000 +308 462 5.100000 +308 523 5.100000 +308 532 5.100000 +308 552 5.100000 +308 636 5.100000 +308 703 5.100000 +308 759 5.100000 +308 792 5.100000 +309 2 5.100000 +309 50 5.100000 +309 64 5.100000 +309 65 5.100000 +309 135 5.100000 +309 208 5.100000 +309 216 5.100000 +309 316 5.100000 +309 431 5.100000 +309 439 5.100000 +309 524 5.100000 +309 628 5.100000 +309 629 5.100000 +309 640 5.100000 +309 664 5.100000 +309 666 5.100000 +309 687 5.100000 +309 766 5.100000 +310 44 5.100000 +310 56 5.100000 +310 64 5.100000 +310 97 5.100000 +310 148 5.100000 +310 161 5.100000 +310 179 5.100000 +310 190 5.100000 +310 210 5.100000 +310 332 5.100000 +310 460 5.100000 +310 517 5.100000 +310 654 5.100000 +310 693 5.100000 +310 708 5.100000 +311 83 5.100000 +311 163 5.100000 +311 352 5.100000 +311 381 5.100000 +311 494 5.100000 +311 500 5.100000 +311 507 5.100000 +311 575 5.100000 +311 604 5.100000 +311 612 5.100000 +311 645 5.100000 +311 665 5.100000 +311 673 5.100000 +311 685 5.100000 +312 16 5.100000 +312 151 5.100000 +312 184 5.100000 +312 289 5.100000 +312 343 5.100000 +312 385 5.100000 +312 490 5.100000 +312 495 5.100000 +312 532 5.100000 +312 621 5.100000 +312 736 5.100000 +313 8 5.100000 +313 10 5.100000 +313 66 5.100000 +313 69 5.100000 +313 95 5.100000 +313 108 5.100000 +313 138 5.100000 +313 157 5.100000 +313 237 5.100000 +313 272 5.100000 +313 279 5.100000 +313 317 5.100000 +313 416 5.100000 +313 459 5.100000 +313 648 5.100000 +313 723 5.100000 +313 737 5.100000 +313 765 5.100000 +313 792 5.100000 +314 98 5.100000 +314 172 5.100000 +314 245 5.100000 +314 267 5.100000 +314 308 5.100000 +314 333 5.100000 +314 336 5.100000 +314 445 5.100000 +314 473 5.100000 +314 481 5.100000 +314 501 5.100000 +314 533 5.100000 +314 538 5.100000 +314 547 5.100000 +314 611 5.100000 +314 692 5.100000 +314 759 5.100000 +314 780 5.100000 +315 36 5.100000 +315 59 5.100000 +315 85 5.100000 +315 107 5.100000 +315 118 5.100000 +315 129 5.100000 +315 219 5.100000 +315 346 5.100000 +315 368 5.100000 +315 640 5.100000 +315 727 5.100000 +316 11 5.100000 +316 17 5.100000 +316 43 5.100000 +316 162 5.100000 +316 220 5.100000 +316 313 5.100000 +316 366 5.100000 +316 404 5.100000 +316 423 5.100000 +316 425 5.100000 +316 490 5.100000 +316 587 5.100000 +316 659 5.100000 +316 660 5.100000 +317 237 5.100000 +317 478 5.100000 +317 515 5.100000 +317 521 5.100000 +317 534 5.100000 +317 552 5.100000 +317 685 5.100000 +318 30 5.100000 +318 66 5.100000 +318 245 5.100000 +318 267 5.100000 +318 296 5.100000 +318 313 5.100000 +318 328 5.100000 +318 339 5.100000 +318 476 5.100000 +318 569 5.100000 +318 610 5.100000 +318 617 5.100000 +318 707 5.100000 +318 753 5.100000 +319 92 5.100000 +319 132 5.100000 +319 190 5.100000 +319 199 5.100000 +319 265 5.100000 +319 275 5.100000 +319 325 5.100000 +319 390 5.100000 +319 462 5.100000 +319 501 5.100000 +319 507 5.100000 +319 521 5.100000 +319 650 5.100000 +319 764 5.100000 +319 782 5.100000 +320 108 5.100000 +320 121 5.100000 +320 213 5.100000 +320 293 5.100000 +320 331 5.100000 +320 367 5.100000 +320 392 5.100000 +320 402 5.100000 +320 409 5.100000 +320 413 5.100000 +320 424 5.100000 +320 431 5.100000 +320 507 5.100000 +320 525 5.100000 +320 629 5.100000 +320 637 5.100000 +320 698 5.100000 +321 38 5.100000 +321 221 5.100000 +321 244 5.100000 +321 341 5.100000 +321 381 5.100000 +321 489 5.100000 +321 498 5.100000 +321 501 5.100000 +321 527 5.100000 +321 586 5.100000 +321 625 5.100000 +321 727 5.100000 +322 14 5.100000 +322 21 5.100000 +322 46 5.100000 +322 125 5.100000 +322 142 5.100000 +322 144 5.100000 +322 167 5.100000 +322 193 5.100000 +322 267 5.100000 +322 348 5.100000 +322 416 5.100000 +322 420 5.100000 +322 427 5.100000 +322 435 5.100000 +322 457 5.100000 +322 465 5.100000 +322 498 5.100000 +322 563 5.100000 +322 625 5.100000 +322 656 5.100000 +322 682 5.100000 +323 54 5.100000 +323 99 5.100000 +323 106 5.100000 +323 119 5.100000 +323 288 5.100000 +323 300 5.100000 +323 441 5.100000 +323 535 5.100000 +323 636 5.100000 +323 665 5.100000 +323 704 5.100000 +323 751 5.100000 +324 1 5.100000 +324 20 5.100000 +324 90 5.100000 +324 134 5.100000 +324 203 5.100000 +324 236 5.100000 +324 297 5.100000 +324 553 5.100000 +324 579 5.100000 +324 624 5.100000 +324 702 5.100000 +324 752 5.100000 +324 764 5.100000 +324 775 5.100000 +325 11 5.100000 +325 75 5.100000 +325 127 5.100000 +325 136 5.100000 +325 220 5.100000 +325 262 5.100000 +325 317 5.100000 +325 328 5.100000 +325 352 5.100000 +325 390 5.100000 +325 409 5.100000 +325 414 5.100000 +325 438 5.100000 +325 470 5.100000 +325 473 5.100000 +325 515 5.100000 +325 619 5.100000 +325 665 5.100000 +325 673 5.100000 +325 690 5.100000 +325 760 5.100000 +325 769 5.100000 +325 774 5.100000 +326 50 5.100000 +326 139 5.100000 +326 182 5.100000 +326 186 5.100000 +326 211 5.100000 +326 235 5.100000 +326 277 5.100000 +326 284 5.100000 +326 384 5.100000 +326 473 5.100000 +326 489 5.100000 +326 519 5.100000 +326 528 5.100000 +326 552 5.100000 +326 653 5.100000 +326 721 5.100000 +326 730 5.100000 +327 24 5.100000 +327 107 5.100000 +327 126 5.100000 +327 182 5.100000 +327 329 5.100000 +327 457 5.100000 +327 503 5.100000 +327 557 5.100000 +327 567 5.100000 +327 633 5.100000 +327 692 5.100000 +327 699 5.100000 +327 743 5.100000 +327 769 5.100000 +327 789 5.100000 +328 52 5.100000 +328 108 5.100000 +328 177 5.100000 +328 195 5.100000 +328 219 5.100000 +328 251 5.100000 +328 507 5.100000 +328 555 5.100000 +328 649 5.100000 +328 739 5.100000 +329 84 5.100000 +329 134 5.100000 +329 143 5.100000 +329 327 5.100000 +329 361 5.100000 +329 496 5.100000 +329 532 5.100000 +329 544 5.100000 +329 614 5.100000 +329 658 5.100000 +329 685 5.100000 +329 687 5.100000 +329 723 5.100000 +329 746 5.100000 +329 796 5.100000 +330 4 5.100000 +330 193 5.100000 +330 278 5.100000 +330 356 5.100000 +330 393 5.100000 +330 474 5.100000 +330 494 5.100000 +330 535 5.100000 +330 597 5.100000 +331 127 5.100000 +331 135 5.100000 +331 162 5.100000 +331 185 5.100000 +331 188 5.100000 +331 233 5.100000 +331 243 5.100000 +331 321 5.100000 +331 327 5.100000 +331 333 5.100000 +331 373 5.100000 +331 374 5.100000 +331 419 5.100000 +331 467 5.100000 +331 522 5.100000 +331 561 5.100000 +331 583 5.100000 +331 615 5.100000 +331 671 5.100000 +332 148 5.100000 +332 241 5.100000 +332 245 5.100000 +332 262 5.100000 +332 280 5.100000 +332 281 5.100000 +332 286 5.100000 +332 349 5.100000 +332 362 5.100000 +332 410 5.100000 +332 475 5.100000 +332 578 5.100000 +332 630 5.100000 +332 652 5.100000 +332 668 5.100000 +332 703 5.100000 +332 748 5.100000 +332 795 5.100000 +333 233 5.100000 +333 325 5.100000 +333 401 5.100000 +333 452 5.100000 +333 560 5.100000 +333 571 5.100000 +333 576 5.100000 +333 645 5.100000 +333 692 5.100000 +333 782 5.100000 +333 789 5.100000 +334 7 5.100000 +334 29 5.100000 +334 58 5.100000 +334 100 5.100000 +334 133 5.100000 +334 217 5.100000 +334 234 5.100000 +334 245 5.100000 +334 306 5.100000 +334 319 5.100000 +334 339 5.100000 +334 400 5.100000 +334 414 5.100000 +334 424 5.100000 +334 524 5.100000 +334 669 5.100000 +334 694 5.100000 +335 66 5.100000 +335 80 5.100000 +335 161 5.100000 +335 169 5.100000 +335 213 5.100000 +335 218 5.100000 +335 295 5.100000 +335 374 5.100000 +335 387 5.100000 +335 442 5.100000 +335 443 5.100000 +335 466 5.100000 +335 479 5.100000 +335 536 5.100000 +335 540 5.100000 +335 571 5.100000 +335 581 5.100000 +335 648 5.100000 +335 659 5.100000 +335 703 5.100000 +335 765 5.100000 +336 71 5.100000 +336 131 5.100000 +336 216 5.100000 +336 244 5.100000 +336 312 5.100000 +336 319 5.100000 +336 427 5.100000 +336 446 5.100000 +336 514 5.100000 +336 638 5.100000 +336 683 5.100000 +336 685 5.100000 +336 686 5.100000 +336 691 5.100000 +336 721 5.100000 +336 751 5.100000 +337 41 5.100000 +337 81 5.100000 +337 349 5.100000 +337 356 5.100000 +337 442 5.100000 +337 450 5.100000 +337 463 5.100000 +337 467 5.100000 +337 487 5.100000 +337 522 5.100000 +337 581 5.100000 +337 609 5.100000 +337 702 5.100000 +337 745 5.100000 +337 774 5.100000 +338 14 5.100000 +338 80 5.100000 +338 143 5.100000 +338 205 5.100000 +338 216 5.100000 +338 338 5.100000 +338 351 5.100000 +338 371 5.100000 +338 401 5.100000 +338 450 5.100000 +338 515 5.100000 +338 549 5.100000 +338 633 5.100000 +338 710 5.100000 +339 17 5.100000 +339 151 5.100000 +339 169 5.100000 +339 221 5.100000 +339 250 5.100000 +339 279 5.100000 +339 289 5.100000 +339 320 5.100000 +339 359 5.100000 +339 433 5.100000 +339 440 5.100000 +339 477 5.100000 +339 564 5.100000 +339 567 5.100000 +339 644 5.100000 +339 659 5.100000 +339 715 5.100000 +339 717 5.100000 +339 721 5.100000 +339 735 5.100000 +339 751 5.100000 +340 52 5.100000 +340 81 5.100000 +340 117 5.100000 +340 126 5.100000 +340 235 5.100000 +340 241 5.100000 +340 251 5.100000 +340 380 5.100000 +340 396 5.100000 +340 449 5.100000 +340 466 5.100000 +340 483 5.100000 +340 542 5.100000 +340 601 5.100000 +340 659 5.100000 +340 692 5.100000 +340 720 5.100000 +340 721 5.100000 +340 734 5.100000 +340 773 5.100000 +341 88 5.100000 +341 90 5.100000 +341 307 5.100000 +341 341 5.100000 +341 462 5.100000 +341 479 5.100000 +341 500 5.100000 +341 517 5.100000 +341 549 5.100000 +341 558 5.100000 +341 576 5.100000 +341 664 5.100000 +341 696 5.100000 +341 718 5.100000 +341 782 5.100000 +342 27 5.100000 +342 51 5.100000 +342 61 5.100000 +342 98 5.100000 +342 218 5.100000 +342 255 5.100000 +342 267 5.100000 +342 373 5.100000 +342 391 5.100000 +342 397 5.100000 +342 456 5.100000 +342 580 5.100000 +342 594 5.100000 +342 712 5.100000 +342 749 5.100000 +342 758 5.100000 +343 15 5.100000 +343 23 5.100000 +343 127 5.100000 +343 158 5.100000 +343 159 5.100000 +343 185 5.100000 +343 196 5.100000 +343 280 5.100000 +343 321 5.100000 +343 447 5.100000 +343 519 5.100000 +343 630 5.100000 +343 635 5.100000 +343 661 5.100000 +343 677 5.100000 +343 679 5.100000 +343 706 5.100000 +343 725 5.100000 +343 736 5.100000 +343 745 5.100000 +344 238 5.100000 +344 260 5.100000 +344 501 5.100000 +344 503 5.100000 +344 544 5.100000 +344 562 5.100000 +344 602 5.100000 +344 639 5.100000 +344 699 5.100000 +344 713 5.100000 +344 722 5.100000 +344 793 5.100000 +345 119 5.100000 +345 121 5.100000 +345 245 5.100000 +345 356 5.100000 +345 390 5.100000 +345 458 5.100000 +345 477 5.100000 +345 478 5.100000 +345 566 5.100000 +345 644 5.100000 +345 771 5.100000 +346 47 5.100000 +346 95 5.100000 +346 163 5.100000 +346 189 5.100000 +346 240 5.100000 +346 246 5.100000 +346 307 5.100000 +346 408 5.100000 +346 423 5.100000 +346 466 5.100000 +346 489 5.100000 +346 516 5.100000 +346 634 5.100000 +346 652 5.100000 +346 750 5.100000 +347 30 5.100000 +347 86 5.100000 +347 117 5.100000 +347 183 5.100000 +347 241 5.100000 +347 273 5.100000 +347 323 5.100000 +347 368 5.100000 +347 374 5.100000 +347 435 5.100000 +347 475 5.100000 +347 544 5.100000 +347 621 5.100000 +347 660 5.100000 +347 671 5.100000 +347 683 5.100000 +347 741 5.100000 +347 754 5.100000 +348 152 5.100000 +348 167 5.100000 +348 227 5.100000 +348 242 5.100000 +348 254 5.100000 +348 259 5.100000 +348 266 5.100000 +348 278 5.100000 +348 359 5.100000 +348 380 5.100000 +348 406 5.100000 +348 453 5.100000 +348 463 5.100000 +348 472 5.100000 +348 544 5.100000 +348 604 5.100000 +348 709 5.100000 +348 781 5.100000 +349 25 5.100000 +349 134 5.100000 +349 164 5.100000 +349 251 5.100000 +349 290 5.100000 +349 367 5.100000 +349 370 5.100000 +349 384 5.100000 +349 394 5.100000 +349 397 5.100000 +349 541 5.100000 +349 628 5.100000 +349 663 5.100000 +350 20 5.100000 +350 56 5.100000 +350 86 5.100000 +350 105 5.100000 +350 114 5.100000 +350 127 5.100000 +350 244 5.100000 +350 286 5.100000 +350 295 5.100000 +350 402 5.100000 +350 516 5.100000 +350 566 5.100000 +350 642 5.100000 +350 657 5.100000 +351 10 5.100000 +351 60 5.100000 +351 69 5.100000 +351 81 5.100000 +351 85 5.100000 +351 303 5.100000 +351 378 5.100000 +351 419 5.100000 +351 546 5.100000 +351 584 5.100000 +351 604 5.100000 +351 633 5.100000 +351 636 5.100000 +351 721 5.100000 +351 732 5.100000 +352 9 5.100000 +352 68 5.100000 +352 77 5.100000 +352 115 5.100000 +352 221 5.100000 +352 274 5.100000 +352 307 5.100000 +352 339 5.100000 +352 403 5.100000 +352 411 5.100000 +352 460 5.100000 +352 483 5.100000 +352 487 5.100000 +352 559 5.100000 +352 642 5.100000 +352 650 5.100000 +352 661 5.100000 +352 668 5.100000 +352 695 5.100000 +352 713 5.100000 +352 746 5.100000 +353 1 5.100000 +353 9 5.100000 +353 67 5.100000 +353 137 5.100000 +353 170 5.100000 +353 172 5.100000 +353 213 5.100000 +353 245 5.100000 +353 311 5.100000 +353 325 5.100000 +353 366 5.100000 +353 490 5.100000 +353 609 5.100000 +353 706 5.100000 +353 710 5.100000 +353 768 5.100000 +353 771 5.100000 +354 66 5.100000 +354 95 5.100000 +354 123 5.100000 +354 138 5.100000 +354 158 5.100000 +354 164 5.100000 +354 201 5.100000 +354 215 5.100000 +354 407 5.100000 +354 411 5.100000 +354 445 5.100000 +354 467 5.100000 +354 574 5.100000 +354 672 5.100000 +354 695 5.100000 +354 773 5.100000 +355 109 5.100000 +355 141 5.100000 +355 193 5.100000 +355 196 5.100000 +355 241 5.100000 +355 312 5.100000 +355 322 5.100000 +355 363 5.100000 +355 532 5.100000 +355 554 5.100000 +355 603 5.100000 +355 665 5.100000 +355 668 5.100000 +355 735 5.100000 +356 67 5.100000 +356 138 5.100000 +356 186 5.100000 +356 257 5.100000 +356 260 5.100000 +356 261 5.100000 +356 287 5.100000 +356 342 5.100000 +356 410 5.100000 +356 510 5.100000 +356 553 5.100000 +356 575 5.100000 +356 635 5.100000 +356 692 5.100000 +357 38 5.100000 +357 58 5.100000 +357 77 5.100000 +357 202 5.100000 +357 313 5.100000 +357 409 5.100000 +357 423 5.100000 +357 477 5.100000 +357 500 5.100000 +357 600 5.100000 +357 646 5.100000 +357 717 5.100000 +357 794 5.100000 +358 130 5.100000 +358 161 5.100000 +358 171 5.100000 +358 223 5.100000 +358 332 5.100000 +358 381 5.100000 +358 409 5.100000 +358 469 5.100000 +358 515 5.100000 +358 527 5.100000 +358 567 5.100000 +358 597 5.100000 +358 654 5.100000 +358 671 5.100000 +358 700 5.100000 +358 734 5.100000 +358 785 5.100000 +359 117 5.100000 +359 260 5.100000 +359 285 5.100000 +359 384 5.100000 +359 423 5.100000 +359 441 5.100000 +359 603 5.100000 +359 650 5.100000 +359 658 5.100000 +359 744 5.100000 +359 797 5.100000 +360 48 5.100000 +360 104 5.100000 +360 171 5.100000 +360 244 5.100000 +360 255 5.100000 +360 333 5.100000 +360 343 5.100000 +360 397 5.100000 +360 405 5.100000 +360 414 5.100000 +360 442 5.100000 +360 462 5.100000 +360 538 5.100000 +360 574 5.100000 +360 627 5.100000 +360 634 5.100000 +360 699 5.100000 +360 767 5.100000 +360 772 5.100000 +360 788 5.100000 +361 16 5.100000 +361 26 5.100000 +361 33 5.100000 +361 116 5.100000 +361 171 5.100000 +361 237 5.100000 +361 282 5.100000 +361 428 5.100000 +361 435 5.100000 +361 516 5.100000 +361 589 5.100000 +361 650 5.100000 +361 671 5.100000 +361 776 5.100000 +362 28 5.100000 +362 138 5.100000 +362 162 5.100000 +362 184 5.100000 +362 206 5.100000 +362 412 5.100000 +362 431 5.100000 +362 461 5.100000 +362 478 5.100000 +362 696 5.100000 +362 733 5.100000 +362 746 5.100000 +362 755 5.100000 +362 779 5.100000 +363 98 5.100000 +363 105 5.100000 +363 114 5.100000 +363 120 5.100000 +363 129 5.100000 +363 206 5.100000 +363 227 5.100000 +363 266 5.100000 +363 297 5.100000 +363 339 5.100000 +363 354 5.100000 +363 388 5.100000 +363 392 5.100000 +363 410 5.100000 +363 578 5.100000 +363 670 5.100000 +363 708 5.100000 +363 725 5.100000 +363 726 5.100000 +363 756 5.100000 +363 776 5.100000 +364 25 5.100000 +364 31 5.100000 +364 55 5.100000 +364 168 5.100000 +364 244 5.100000 +364 249 5.100000 +364 282 5.100000 +364 547 5.100000 +364 564 5.100000 +364 594 5.100000 +364 601 5.100000 +364 613 5.100000 +364 712 5.100000 +364 720 5.100000 +364 766 5.100000 +364 784 5.100000 +365 15 5.100000 +365 55 5.100000 +365 80 5.100000 +365 93 5.100000 +365 128 5.100000 +365 182 5.100000 +365 200 5.100000 +365 321 5.100000 +365 352 5.100000 +365 373 5.100000 +365 487 5.100000 +365 647 5.100000 +365 680 5.100000 +365 689 5.100000 +365 755 5.100000 +366 214 5.100000 +366 288 5.100000 +366 363 5.100000 +366 370 5.100000 +366 399 5.100000 +366 448 5.100000 +366 469 5.100000 +366 498 5.100000 +366 553 5.100000 +366 759 5.100000 +366 785 5.100000 +367 17 5.100000 +367 49 5.100000 +367 56 5.100000 +367 90 5.100000 +367 173 5.100000 +367 219 5.100000 +367 223 5.100000 +367 267 5.100000 +367 280 5.100000 +367 325 5.100000 +367 335 5.100000 +367 371 5.100000 +367 438 5.100000 +367 519 5.100000 +367 607 5.100000 +367 646 5.100000 +367 687 5.100000 +367 753 5.100000 +367 777 5.100000 +368 9 5.100000 +368 98 5.100000 +368 111 5.100000 +368 145 5.100000 +368 176 5.100000 +368 229 5.100000 +368 255 5.100000 +368 285 5.100000 +368 326 5.100000 +368 327 5.100000 +368 368 5.100000 +368 387 5.100000 +368 498 5.100000 +368 565 5.100000 +368 590 5.100000 +368 651 5.100000 +368 662 5.100000 +368 674 5.100000 +368 750 5.100000 +368 779 5.100000 +369 21 5.100000 +369 102 5.100000 +369 110 5.100000 +369 178 5.100000 +369 219 5.100000 +369 378 5.100000 +369 382 5.100000 +369 407 5.100000 +369 426 5.100000 +369 462 5.100000 +370 36 5.100000 +370 54 5.100000 +370 214 5.100000 +370 233 5.100000 +370 312 5.100000 +370 331 5.100000 +370 343 5.100000 +370 386 5.100000 +370 398 5.100000 +370 433 5.100000 +370 446 5.100000 +370 488 5.100000 +370 523 5.100000 +370 559 5.100000 +370 616 5.100000 +370 619 5.100000 +370 663 5.100000 +370 697 5.100000 +370 745 5.100000 +370 772 5.100000 +370 776 5.100000 +371 52 5.100000 +371 67 5.100000 +371 110 5.100000 +371 211 5.100000 +371 247 5.100000 +371 264 5.100000 +371 303 5.100000 +371 308 5.100000 +371 361 5.100000 +371 382 5.100000 +371 428 5.100000 +371 506 5.100000 +371 524 5.100000 +371 570 5.100000 +371 598 5.100000 +371 616 5.100000 +371 648 5.100000 +371 651 5.100000 +371 752 5.100000 +371 792 5.100000 +372 89 5.100000 +372 102 5.100000 +372 128 5.100000 +372 140 5.100000 +372 207 5.100000 +372 333 5.100000 +372 378 5.100000 +372 455 5.100000 +372 530 5.100000 +372 534 5.100000 +372 635 5.100000 +372 703 5.100000 +372 711 5.100000 +373 151 5.100000 +373 186 5.100000 +373 189 5.100000 +373 193 5.100000 +373 226 5.100000 +373 264 5.100000 +373 275 5.100000 +373 318 5.100000 +373 339 5.100000 +373 356 5.100000 +373 416 5.100000 +373 482 5.100000 +373 600 5.100000 +373 615 5.100000 +373 618 5.100000 +373 673 5.100000 +373 696 5.100000 +373 710 5.100000 +374 52 5.100000 +374 79 5.100000 +374 138 5.100000 +374 188 5.100000 +374 223 5.100000 +374 256 5.100000 +374 268 5.100000 +374 288 5.100000 +374 398 5.100000 +374 409 5.100000 +374 429 5.100000 +374 501 5.100000 +374 532 5.100000 +374 550 5.100000 +374 556 5.100000 +374 580 5.100000 +374 718 5.100000 +374 722 5.100000 +374 731 5.100000 +374 737 5.100000 +374 759 5.100000 +375 7 5.100000 +375 165 5.100000 +375 360 5.100000 +375 389 5.100000 +375 646 5.100000 +375 653 5.100000 +375 755 5.100000 +376 3 5.100000 +376 61 5.100000 +376 140 5.100000 +376 209 5.100000 +376 269 5.100000 +376 380 5.100000 +376 407 5.100000 +376 462 5.100000 +376 578 5.100000 +376 596 5.100000 +376 608 5.100000 +376 650 5.100000 +376 661 5.100000 +376 690 5.100000 +376 703 5.100000 +376 735 5.100000 +376 796 5.100000 +377 61 5.100000 +377 75 5.100000 +377 215 5.100000 +377 230 5.100000 +377 270 5.100000 +377 301 5.100000 +377 490 5.100000 +377 514 5.100000 +377 516 5.100000 +377 713 5.100000 +377 729 5.100000 +377 799 5.100000 +378 108 5.100000 +378 127 5.100000 +378 149 5.100000 +378 164 5.100000 +378 265 5.100000 +378 407 5.100000 +378 410 5.100000 +378 433 5.100000 +378 454 5.100000 +378 480 5.100000 +378 596 5.100000 +378 599 5.100000 +378 602 5.100000 +378 694 5.100000 +378 698 5.100000 +378 770 5.100000 +379 46 5.100000 +379 118 5.100000 +379 143 5.100000 +379 194 5.100000 +379 210 5.100000 +379 258 5.100000 +379 275 5.100000 +379 300 5.100000 +379 333 5.100000 +379 473 5.100000 +379 482 5.100000 +379 511 5.100000 +379 539 5.100000 +379 564 5.100000 +379 586 5.100000 +379 590 5.100000 +379 597 5.100000 +379 605 5.100000 +379 610 5.100000 +379 688 5.100000 +379 709 5.100000 +379 715 5.100000 +379 722 5.100000 +379 740 5.100000 +379 782 5.100000 +379 793 5.100000 +380 8 5.100000 +380 127 5.100000 +380 283 5.100000 +380 319 5.100000 +380 330 5.100000 +380 432 5.100000 +380 439 5.100000 +380 451 5.100000 +380 679 5.100000 +380 698 5.100000 +380 711 5.100000 +380 754 5.100000 +381 25 5.100000 +381 119 5.100000 +381 175 5.100000 +381 207 5.100000 +381 276 5.100000 +381 317 5.100000 +381 392 5.100000 +381 423 5.100000 +381 438 5.100000 +381 649 5.100000 +381 693 5.100000 +381 778 5.100000 +381 787 5.100000 +381 796 5.100000 +381 798 5.100000 +382 13 5.100000 +382 33 5.100000 +382 83 5.100000 +382 88 5.100000 +382 149 5.100000 +382 164 5.100000 +382 186 5.100000 +382 193 5.100000 +382 231 5.100000 +382 325 5.100000 +382 363 5.100000 +382 473 5.100000 +382 495 5.100000 +382 607 5.100000 +382 661 5.100000 +382 714 5.100000 +383 13 5.100000 +383 25 5.100000 +383 30 5.100000 +383 35 5.100000 +383 121 5.100000 +383 207 5.100000 +383 291 5.100000 +383 359 5.100000 +383 366 5.100000 +383 442 5.100000 +383 465 5.100000 +383 485 5.100000 +383 486 5.100000 +383 490 5.100000 +383 556 5.100000 +383 577 5.100000 +383 585 5.100000 +383 604 5.100000 +383 617 5.100000 +384 76 5.100000 +384 338 5.100000 +384 341 5.100000 +384 367 5.100000 +384 412 5.100000 +384 474 5.100000 +384 510 5.100000 +384 526 5.100000 +384 594 5.100000 +384 629 5.100000 +384 642 5.100000 +384 647 5.100000 +384 719 5.100000 +384 781 5.100000 +385 140 5.100000 +385 204 5.100000 +385 317 5.100000 +385 323 5.100000 +385 399 5.100000 +385 401 5.100000 +385 420 5.100000 +385 442 5.100000 +385 534 5.100000 +385 537 5.100000 +385 621 5.100000 +385 694 5.100000 +386 62 5.100000 +386 82 5.100000 +386 98 5.100000 +386 172 5.100000 +386 247 5.100000 +386 255 5.100000 +386 294 5.100000 +386 318 5.100000 +386 335 5.100000 +386 351 5.100000 +386 407 5.100000 +386 470 5.100000 +386 505 5.100000 +386 635 5.100000 +386 661 5.100000 +387 54 5.100000 +387 159 5.100000 +387 213 5.100000 +387 241 5.100000 +387 362 5.100000 +387 371 5.100000 +387 378 5.100000 +387 397 5.100000 +387 460 5.100000 +387 466 5.100000 +387 523 5.100000 +387 632 5.100000 +387 740 5.100000 +387 772 5.100000 +388 13 5.100000 +388 49 5.100000 +388 56 5.100000 +388 93 5.100000 +388 121 5.100000 +388 235 5.100000 +388 258 5.100000 +388 332 5.100000 +388 390 5.100000 +388 426 5.100000 +388 432 5.100000 +388 453 5.100000 +388 460 5.100000 +388 480 5.100000 +388 539 5.100000 +388 620 5.100000 +389 27 5.100000 +389 162 5.100000 +389 166 5.100000 +389 170 5.100000 +389 207 5.100000 +389 241 5.100000 +389 346 5.100000 +389 418 5.100000 +389 439 5.100000 +389 497 5.100000 +389 554 5.100000 +389 569 5.100000 +389 584 5.100000 +389 624 5.100000 +389 706 5.100000 +389 721 5.100000 +389 727 5.100000 +389 744 5.100000 +389 752 5.100000 +389 753 5.100000 +389 780 5.100000 +390 9 5.100000 +390 129 5.100000 +390 151 5.100000 +390 199 5.100000 +390 239 5.100000 +390 293 5.100000 +390 295 5.100000 +390 327 5.100000 +390 350 5.100000 +390 358 5.100000 +390 398 5.100000 +390 401 5.100000 +390 485 5.100000 +390 510 5.100000 +390 521 5.100000 +390 572 5.100000 +390 604 5.100000 +390 703 5.100000 +390 708 5.100000 +390 761 5.100000 +391 44 5.100000 +391 52 5.100000 +391 97 5.100000 +391 102 5.100000 +391 106 5.100000 +391 223 5.100000 +391 265 5.100000 +391 289 5.100000 +391 345 5.100000 +391 347 5.100000 +391 430 5.100000 +391 500 5.100000 +391 524 5.100000 +391 546 5.100000 +391 585 5.100000 +391 626 5.100000 +391 692 5.100000 +391 705 5.100000 +391 746 5.100000 +391 751 5.100000 +392 4 5.100000 +392 11 5.100000 +392 31 5.100000 +392 85 5.100000 +392 93 5.100000 +392 95 5.100000 +392 173 5.100000 +392 176 5.100000 +392 214 5.100000 +392 229 5.100000 +392 330 5.100000 +392 341 5.100000 +392 375 5.100000 +392 392 5.100000 +392 416 5.100000 +392 424 5.100000 +392 448 5.100000 +392 590 5.100000 +392 679 5.100000 +392 720 5.100000 +392 740 5.100000 +392 743 5.100000 +392 765 5.100000 +393 3 5.100000 +393 13 5.100000 +393 19 5.100000 +393 51 5.100000 +393 247 5.100000 +393 317 5.100000 +393 342 5.100000 +393 381 5.100000 +393 506 5.100000 +393 522 5.100000 +393 552 5.100000 +393 553 5.100000 +393 714 5.100000 +393 747 5.100000 +394 24 5.100000 +394 113 5.100000 +394 139 5.100000 +394 173 5.100000 +394 185 5.100000 +394 223 5.100000 +394 294 5.100000 +394 321 5.100000 +394 337 5.100000 +394 339 5.100000 +394 362 5.100000 +394 367 5.100000 +394 436 5.100000 +394 441 5.100000 +394 465 5.100000 +394 503 5.100000 +394 511 5.100000 +394 685 5.100000 +394 697 5.100000 +394 706 5.100000 +394 770 5.100000 +394 779 5.100000 +395 60 5.100000 +395 198 5.100000 +395 351 5.100000 +395 359 5.100000 +395 379 5.100000 +395 398 5.100000 +395 448 5.100000 +395 514 5.100000 +395 517 5.100000 +395 525 5.100000 +395 566 5.100000 +395 578 5.100000 +395 598 5.100000 +395 603 5.100000 +395 661 5.100000 +395 668 5.100000 +395 714 5.100000 +395 723 5.100000 +395 746 5.100000 +395 761 5.100000 +396 3 5.100000 +396 52 5.100000 +396 252 5.100000 +396 329 5.100000 +396 355 5.100000 +396 357 5.100000 +396 373 5.100000 +396 408 5.100000 +396 412 5.100000 +396 429 5.100000 +396 468 5.100000 +396 481 5.100000 +396 522 5.100000 +396 549 5.100000 +396 792 5.100000 +397 9 5.100000 +397 83 5.100000 +397 161 5.100000 +397 315 5.100000 +397 319 5.100000 +397 328 5.100000 +397 351 5.100000 +397 352 5.100000 +397 371 5.100000 +397 416 5.100000 +397 494 5.100000 +397 530 5.100000 +397 561 5.100000 +397 586 5.100000 +397 673 5.100000 +398 37 5.100000 +398 157 5.100000 +398 238 5.100000 +398 334 5.100000 +398 376 5.100000 +398 420 5.100000 +398 576 5.100000 +398 596 5.100000 +398 611 5.100000 +398 640 5.100000 +398 771 5.100000 +399 139 5.100000 +399 169 5.100000 +399 249 5.100000 +399 318 5.100000 +399 406 5.100000 +399 415 5.100000 +399 511 5.100000 +399 538 5.100000 +399 665 5.100000 +399 686 5.100000 +399 783 5.100000 +399 785 5.100000 +399 792 5.100000 +400 61 5.100000 +400 95 5.100000 +400 123 5.100000 +400 137 5.100000 +400 195 5.100000 +400 220 5.100000 +400 273 5.100000 +400 317 5.100000 +400 338 5.100000 +400 363 5.100000 +400 384 5.100000 +400 389 5.100000 +400 420 5.100000 +400 446 5.100000 +400 485 5.100000 +400 585 5.100000 +400 743 5.100000 +400 768 5.100000 +400 796 5.100000 +401 1 5.100000 +401 34 5.100000 +401 148 5.100000 +401 219 5.100000 +401 228 5.100000 +401 268 5.100000 +401 304 5.100000 +401 306 5.100000 +401 429 5.100000 +401 496 5.100000 +401 511 5.100000 +401 521 5.100000 +401 532 5.100000 +401 541 5.100000 +401 546 5.100000 +401 601 5.100000 +401 726 5.100000 +401 759 5.100000 +401 781 5.100000 +402 20 5.100000 +402 61 5.100000 +402 115 5.100000 +402 174 5.100000 +402 203 5.100000 +402 217 5.100000 +402 330 5.100000 +402 421 5.100000 +402 451 5.100000 +402 499 5.100000 +402 501 5.100000 +402 563 5.100000 +402 685 5.100000 +402 737 5.100000 +402 787 5.100000 +403 68 5.100000 +403 263 5.100000 +403 281 5.100000 +403 359 5.100000 +403 385 5.100000 +403 400 5.100000 +403 403 5.100000 +403 461 5.100000 +403 544 5.100000 +403 595 5.100000 +403 714 5.100000 +403 732 5.100000 +403 734 5.100000 +403 744 5.100000 +403 759 5.100000 +403 771 5.100000 +403 777 5.100000 +403 798 5.100000 +404 78 5.100000 +404 170 5.100000 +404 254 5.100000 +404 327 5.100000 +404 336 5.100000 +404 367 5.100000 +404 387 5.100000 +404 468 5.100000 +404 485 5.100000 +404 512 5.100000 +404 570 5.100000 +404 604 5.100000 +404 624 5.100000 +404 631 5.100000 +404 692 5.100000 +404 740 5.100000 +404 752 5.100000 +404 769 5.100000 +405 30 5.100000 +405 127 5.100000 +405 148 5.100000 +405 190 5.100000 +405 233 5.100000 +405 280 5.100000 +405 290 5.100000 +405 457 5.100000 +405 482 5.100000 +405 550 5.100000 +405 590 5.100000 +405 678 5.100000 +405 747 5.100000 +405 762 5.100000 +405 779 5.100000 +405 792 5.100000 +406 8 5.100000 +406 45 5.100000 +406 54 5.100000 +406 173 5.100000 +406 215 5.100000 +406 394 5.100000 +406 413 5.100000 +406 420 5.100000 +406 502 5.100000 +406 662 5.100000 +406 717 5.100000 +406 725 5.100000 +406 748 5.100000 +406 760 5.100000 +407 12 5.100000 +407 107 5.100000 +407 108 5.100000 +407 125 5.100000 +407 177 5.100000 +407 272 5.100000 +407 286 5.100000 +407 310 5.100000 +407 323 5.100000 +407 348 5.100000 +407 359 5.100000 +407 372 5.100000 +407 408 5.100000 +407 444 5.100000 +407 456 5.100000 +407 525 5.100000 +407 539 5.100000 +407 584 5.100000 +407 621 5.100000 +407 630 5.100000 +407 763 5.100000 +407 789 5.100000 +408 15 5.100000 +408 39 5.100000 +408 115 5.100000 +408 154 5.100000 +408 208 5.100000 +408 216 5.100000 +408 285 5.100000 +408 309 5.100000 +408 333 5.100000 +408 400 5.100000 +408 486 5.100000 +408 715 5.100000 +409 47 5.100000 +409 252 5.100000 +409 346 5.100000 +409 350 5.100000 +409 386 5.100000 +409 456 5.100000 +409 485 5.100000 +409 497 5.100000 +409 588 5.100000 +409 616 5.100000 +409 643 5.100000 +409 670 5.100000 +409 727 5.100000 +409 766 5.100000 +410 30 5.100000 +410 63 5.100000 +410 78 5.100000 +410 103 5.100000 +410 120 5.100000 +410 197 5.100000 +410 331 5.100000 +410 337 5.100000 +410 403 5.100000 +410 421 5.100000 +410 462 5.100000 +410 498 5.100000 +410 558 5.100000 +410 598 5.100000 +410 601 5.100000 +410 670 5.100000 +410 785 5.100000 +411 134 5.100000 +411 174 5.100000 +411 262 5.100000 +411 381 5.100000 +411 397 5.100000 +411 403 5.100000 +411 432 5.100000 +411 434 5.100000 +411 447 5.100000 +411 462 5.100000 +411 469 5.100000 +411 628 5.100000 +411 703 5.100000 +411 710 5.100000 +411 717 5.100000 +412 118 5.100000 +412 200 5.100000 +412 220 5.100000 +412 288 5.100000 +412 336 5.100000 +412 337 5.100000 +412 354 5.100000 +412 366 5.100000 +412 382 5.100000 +412 503 5.100000 +412 561 5.100000 +412 637 5.100000 +412 646 5.100000 +412 740 5.100000 +413 4 5.100000 +413 71 5.100000 +413 190 5.100000 +413 193 5.100000 +413 266 5.100000 +413 288 5.100000 +413 309 5.100000 +413 377 5.100000 +413 465 5.100000 +413 627 5.100000 +413 749 5.100000 +413 761 5.100000 +414 15 5.100000 +414 104 5.100000 +414 155 5.100000 +414 409 5.100000 +414 418 5.100000 +414 441 5.100000 +414 540 5.100000 +414 580 5.100000 +414 752 5.100000 +414 799 5.100000 +415 2 5.100000 +415 38 5.100000 +415 90 5.100000 +415 122 5.100000 +415 163 5.100000 +415 205 5.100000 +415 218 5.100000 +415 245 5.100000 +415 274 5.100000 +415 300 5.100000 +415 307 5.100000 +415 314 5.100000 +415 364 5.100000 +415 367 5.100000 +415 556 5.100000 +415 586 5.100000 +415 643 5.100000 +415 656 5.100000 +415 675 5.100000 +415 698 5.100000 +415 772 5.100000 +416 106 5.100000 +416 111 5.100000 +416 154 5.100000 +416 171 5.100000 +416 270 5.100000 +416 316 5.100000 +416 329 5.100000 +416 435 5.100000 +416 466 5.100000 +416 467 5.100000 +416 552 5.100000 +416 573 5.100000 +416 767 5.100000 +416 774 5.100000 +417 18 5.100000 +417 178 5.100000 +417 266 5.100000 +417 298 5.100000 +417 313 5.100000 +417 324 5.100000 +417 351 5.100000 +417 368 5.100000 +417 438 5.100000 +417 444 5.100000 +417 500 5.100000 +417 518 5.100000 +417 535 5.100000 +417 536 5.100000 +417 565 5.100000 +417 610 5.100000 +417 620 5.100000 +417 621 5.100000 +417 643 5.100000 +417 679 5.100000 +417 759 5.100000 +418 130 5.100000 +418 264 5.100000 +418 279 5.100000 +418 353 5.100000 +418 482 5.100000 +418 577 5.100000 +418 625 5.100000 +418 679 5.100000 +418 694 5.100000 +418 723 5.100000 +419 13 5.100000 +419 25 5.100000 +419 88 5.100000 +419 127 5.100000 +419 140 5.100000 +419 160 5.100000 +419 227 5.100000 +419 229 5.100000 +419 273 5.100000 +419 312 5.100000 +419 317 5.100000 +419 337 5.100000 +419 470 5.100000 +419 472 5.100000 +419 480 5.100000 +419 542 5.100000 +419 565 5.100000 +419 570 5.100000 +419 685 5.100000 +419 736 5.100000 +419 743 5.100000 +419 779 5.100000 +420 11 5.100000 +420 61 5.100000 +420 172 5.100000 +420 240 5.100000 +420 263 5.100000 +420 281 5.100000 +420 294 5.100000 +420 343 5.100000 +420 349 5.100000 +420 386 5.100000 +420 401 5.100000 +420 415 5.100000 +420 440 5.100000 +420 488 5.100000 +420 578 5.100000 +420 599 5.100000 +420 662 5.100000 +420 695 5.100000 +420 790 5.100000 +420 793 5.100000 +421 36 5.100000 +421 68 5.100000 +421 91 5.100000 +421 120 5.100000 +421 131 5.100000 +421 202 5.100000 +421 241 5.100000 +421 263 5.100000 +421 279 5.100000 +421 373 5.100000 +421 395 5.100000 +421 404 5.100000 +421 408 5.100000 +421 411 5.100000 +421 478 5.100000 +421 500 5.100000 +421 686 5.100000 +421 773 5.100000 +422 3 5.100000 +422 122 5.100000 +422 137 5.100000 +422 157 5.100000 +422 193 5.100000 +422 217 5.100000 +422 239 5.100000 +422 287 5.100000 +422 291 5.100000 +422 399 5.100000 +422 525 5.100000 +422 599 5.100000 +422 661 5.100000 +422 707 5.100000 +422 736 5.100000 +422 755 5.100000 +423 35 5.100000 +423 62 5.100000 +423 163 5.100000 +423 181 5.100000 +423 325 5.100000 +423 346 5.100000 +423 367 5.100000 +423 482 5.100000 +423 483 5.100000 +423 501 5.100000 +423 601 5.100000 +423 620 5.100000 +423 697 5.100000 +424 84 5.100000 +424 92 5.100000 +424 93 5.100000 +424 111 5.100000 +424 114 5.100000 +424 117 5.100000 +424 132 5.100000 +424 164 5.100000 +424 170 5.100000 +424 222 5.100000 +424 369 5.100000 +424 427 5.100000 +424 461 5.100000 +424 487 5.100000 +424 508 5.100000 +424 616 5.100000 +424 634 5.100000 +424 672 5.100000 +424 682 5.100000 +424 705 5.100000 +425 87 5.100000 +425 145 5.100000 +425 190 5.100000 +425 352 5.100000 +425 383 5.100000 +425 403 5.100000 +425 423 5.100000 +425 527 5.100000 +425 665 5.100000 +425 737 5.100000 +425 757 5.100000 +426 15 5.100000 +426 26 5.100000 +426 41 5.100000 +426 141 5.100000 +426 143 5.100000 +426 183 5.100000 +426 215 5.100000 +426 240 5.100000 +426 356 5.100000 +426 413 5.100000 +426 561 5.100000 +426 667 5.100000 +426 709 5.100000 +426 729 5.100000 +426 764 5.100000 +426 777 5.100000 +426 799 5.100000 +427 51 5.100000 +427 130 5.100000 +427 164 5.100000 +427 256 5.100000 +427 268 5.100000 +427 290 5.100000 +427 400 5.100000 +427 521 5.100000 +427 617 5.100000 +427 690 5.100000 +427 717 5.100000 +427 756 5.100000 +427 777 5.100000 +428 56 5.100000 +428 61 5.100000 +428 80 5.100000 +428 94 5.100000 +428 113 5.100000 +428 131 5.100000 +428 235 5.100000 +428 293 5.100000 +428 434 5.100000 +428 504 5.100000 +428 642 5.100000 +428 666 5.100000 +428 740 5.100000 +428 786 5.100000 +429 85 5.100000 +429 171 5.100000 +429 188 5.100000 +429 218 5.100000 +429 315 5.100000 +429 328 5.100000 +429 334 5.100000 +429 564 5.100000 +429 581 5.100000 +429 629 5.100000 +429 771 5.100000 +430 56 5.100000 +430 170 5.100000 +430 171 5.100000 +430 179 5.100000 +430 495 5.100000 +430 591 5.100000 +430 595 5.100000 +430 613 5.100000 +430 734 5.100000 +430 765 5.100000 +430 781 5.100000 +431 50 5.100000 +431 84 5.100000 +431 98 5.100000 +431 134 5.100000 +431 251 5.100000 +431 352 5.100000 +431 360 5.100000 +431 378 5.100000 +431 469 5.100000 +431 471 5.100000 +431 475 5.100000 +431 495 5.100000 +431 571 5.100000 +431 729 5.100000 +431 751 5.100000 +432 10 5.100000 +432 24 5.100000 +432 52 5.100000 +432 116 5.100000 +432 122 5.100000 +432 230 5.100000 +432 369 5.100000 +432 426 5.100000 +432 459 5.100000 +432 533 5.100000 +432 688 5.100000 +432 707 5.100000 +433 7 5.100000 +433 19 5.100000 +433 171 5.100000 +433 191 5.100000 +433 243 5.100000 +433 281 5.100000 +433 313 5.100000 +433 316 5.100000 +433 385 5.100000 +433 386 5.100000 +433 395 5.100000 +433 487 5.100000 +433 495 5.100000 +433 689 5.100000 +433 693 5.100000 +433 772 5.100000 +434 103 5.100000 +434 106 5.100000 +434 126 5.100000 +434 159 5.100000 +434 176 5.100000 +434 181 5.100000 +434 183 5.100000 +434 229 5.100000 +434 262 5.100000 +434 280 5.100000 +434 287 5.100000 +434 343 5.100000 +434 423 5.100000 +434 497 5.100000 +434 538 5.100000 +434 585 5.100000 +434 611 5.100000 +434 643 5.100000 +434 660 5.100000 +434 776 5.100000 +435 9 5.100000 +435 72 5.100000 +435 78 5.100000 +435 92 5.100000 +435 179 5.100000 +435 347 5.100000 +435 352 5.100000 +435 396 5.100000 +435 487 5.100000 +435 617 5.100000 +435 749 5.100000 +435 791 5.100000 +436 28 5.100000 +436 78 5.100000 +436 140 5.100000 +436 177 5.100000 +436 276 5.100000 +436 326 5.100000 +436 378 5.100000 +436 385 5.100000 +436 433 5.100000 +436 481 5.100000 +436 616 5.100000 +436 621 5.100000 +436 627 5.100000 +436 653 5.100000 +436 665 5.100000 +436 720 5.100000 +436 726 5.100000 +436 747 5.100000 +436 762 5.100000 +437 129 5.100000 +437 142 5.100000 +437 208 5.100000 +437 235 5.100000 +437 284 5.100000 +437 320 5.100000 +437 359 5.100000 +437 427 5.100000 +437 528 5.100000 +437 575 5.100000 +437 603 5.100000 +437 629 5.100000 +437 664 5.100000 +437 673 5.100000 +437 698 5.100000 +437 736 5.100000 +437 752 5.100000 +438 1 5.100000 +438 86 5.100000 +438 149 5.100000 +438 175 5.100000 +438 402 5.100000 +438 414 5.100000 +438 481 5.100000 +438 514 5.100000 +438 580 5.100000 +438 599 5.100000 +438 621 5.100000 +438 649 5.100000 +438 755 5.100000 +439 2 5.100000 +439 12 5.100000 +439 120 5.100000 +439 154 5.100000 +439 182 5.100000 +439 254 5.100000 +439 364 5.100000 +439 378 5.100000 +439 386 5.100000 +439 411 5.100000 +439 432 5.100000 +439 458 5.100000 +439 471 5.100000 +439 559 5.100000 +439 575 5.100000 +439 586 5.100000 +439 594 5.100000 +439 638 5.100000 +439 646 5.100000 +439 653 5.100000 +439 707 5.100000 +439 792 5.100000 +440 47 5.100000 +440 79 5.100000 +440 84 5.100000 +440 88 5.100000 +440 105 5.100000 +440 110 5.100000 +440 157 5.100000 +440 175 5.100000 +440 192 5.100000 +440 401 5.100000 +440 430 5.100000 +440 543 5.100000 +440 667 5.100000 +440 716 5.100000 +441 32 5.100000 +441 80 5.100000 +441 208 5.100000 +441 239 5.100000 +441 345 5.100000 +441 400 5.100000 +441 522 5.100000 +441 542 5.100000 +441 549 5.100000 +441 573 5.100000 +441 584 5.100000 +441 712 5.100000 +441 728 5.100000 +441 744 5.100000 +441 798 5.100000 +442 181 5.100000 +442 236 5.100000 +442 245 5.100000 +442 292 5.100000 +442 349 5.100000 +442 382 5.100000 +442 383 5.100000 +442 390 5.100000 +442 395 5.100000 +442 435 5.100000 +442 498 5.100000 +442 509 5.100000 +442 600 5.100000 +442 607 5.100000 +442 636 5.100000 +442 644 5.100000 +442 703 5.100000 +443 19 5.100000 +443 24 5.100000 +443 77 5.100000 +443 170 5.100000 +443 342 5.100000 +443 393 5.100000 +443 402 5.100000 +443 443 5.100000 +443 492 5.100000 +443 562 5.100000 +443 599 5.100000 +443 633 5.100000 +444 47 5.100000 +444 59 5.100000 +444 98 5.100000 +444 258 5.100000 +444 438 5.100000 +444 461 5.100000 +444 487 5.100000 +444 490 5.100000 +444 562 5.100000 +444 592 5.100000 +444 596 5.100000 +444 633 5.100000 +444 672 5.100000 +444 686 5.100000 +444 709 5.100000 +444 712 5.100000 +444 730 5.100000 +444 755 5.100000 +445 18 5.100000 +445 28 5.100000 +445 60 5.100000 +445 85 5.100000 +445 101 5.100000 +445 117 5.100000 +445 128 5.100000 +445 154 5.100000 +445 187 5.100000 +445 211 5.100000 +445 311 5.100000 +445 374 5.100000 +445 401 5.100000 +445 416 5.100000 +445 463 5.100000 +445 477 5.100000 +445 507 5.100000 +445 519 5.100000 +445 536 5.100000 +445 614 5.100000 +445 637 5.100000 +445 650 5.100000 +445 666 5.100000 +445 682 5.100000 +445 739 5.100000 +445 748 5.100000 +446 61 5.100000 +446 184 5.100000 +446 185 5.100000 +446 220 5.100000 +446 223 5.100000 +446 258 5.100000 +446 283 5.100000 +446 302 5.100000 +446 350 5.100000 +446 437 5.100000 +446 470 5.100000 +446 480 5.100000 +446 533 5.100000 +446 636 5.100000 +446 651 5.100000 +446 766 5.100000 +447 3 5.100000 +447 46 5.100000 +447 146 5.100000 +447 180 5.100000 +447 202 5.100000 +447 342 5.100000 +447 446 5.100000 +447 495 5.100000 +447 496 5.100000 +447 567 5.100000 +447 607 5.100000 +447 616 5.100000 +447 651 5.100000 +447 658 5.100000 +447 675 5.100000 +447 683 5.100000 +447 732 5.100000 +448 49 5.100000 +448 114 5.100000 +448 127 5.100000 +448 342 5.100000 +448 401 5.100000 +448 403 5.100000 +448 420 5.100000 +448 466 5.100000 +448 471 5.100000 +448 520 5.100000 +448 593 5.100000 +448 613 5.100000 +448 624 5.100000 +448 738 5.100000 +448 743 5.100000 +449 41 5.100000 +449 159 5.100000 +449 177 5.100000 +449 196 5.100000 +449 239 5.100000 +449 338 5.100000 +449 344 5.100000 +449 371 5.100000 +449 372 5.100000 +449 419 5.100000 +449 428 5.100000 +449 429 5.100000 +449 446 5.100000 +449 467 5.100000 +449 618 5.100000 +449 642 5.100000 +449 778 5.100000 +450 18 5.100000 +450 90 5.100000 +450 110 5.100000 +450 213 5.100000 +450 241 5.100000 +450 285 5.100000 +450 345 5.100000 +450 385 5.100000 +450 448 5.100000 +450 449 5.100000 +450 491 5.100000 +450 500 5.100000 +450 505 5.100000 +450 550 5.100000 +450 609 5.100000 +450 717 5.100000 +450 733 5.100000 +451 3 5.100000 +451 123 5.100000 +451 134 5.100000 +451 152 5.100000 +451 215 5.100000 +451 231 5.100000 +451 316 5.100000 +451 407 5.100000 +451 412 5.100000 +451 477 5.100000 +451 482 5.100000 +451 529 5.100000 +451 602 5.100000 +451 613 5.100000 +451 660 5.100000 +451 679 5.100000 +451 738 5.100000 +451 789 5.100000 +452 36 5.100000 +452 125 5.100000 +452 130 5.100000 +452 158 5.100000 +452 173 5.100000 +452 192 5.100000 +452 193 5.100000 +452 208 5.100000 +452 256 5.100000 +452 262 5.100000 +452 455 5.100000 +452 475 5.100000 +452 482 5.100000 +452 487 5.100000 +452 662 5.100000 +452 688 5.100000 +452 692 5.100000 +452 733 5.100000 +453 17 5.100000 +453 20 5.100000 +453 71 5.100000 +453 218 5.100000 +453 226 5.100000 +453 264 5.100000 +453 277 5.100000 +453 333 5.100000 +453 334 5.100000 +453 376 5.100000 +453 410 5.100000 +453 428 5.100000 +453 448 5.100000 +453 483 5.100000 +453 490 5.100000 +453 511 5.100000 +453 560 5.100000 +453 684 5.100000 +453 730 5.100000 +453 764 5.100000 +453 792 5.100000 +454 24 5.100000 +454 104 5.100000 +454 141 5.100000 +454 196 5.100000 +454 242 5.100000 +454 269 5.100000 +454 327 5.100000 +454 399 5.100000 +454 445 5.100000 +454 459 5.100000 +454 467 5.100000 +454 493 5.100000 +454 546 5.100000 +454 606 5.100000 +454 706 5.100000 +455 53 5.100000 +455 115 5.100000 +455 152 5.100000 +455 266 5.100000 +455 270 5.100000 +455 276 5.100000 +455 358 5.100000 +455 451 5.100000 +455 591 5.100000 +455 603 5.100000 +455 634 5.100000 +455 698 5.100000 +455 767 5.100000 +456 1 5.100000 +456 20 5.100000 +456 29 5.100000 +456 174 5.100000 +456 246 5.100000 +456 250 5.100000 +456 277 5.100000 +456 295 5.100000 +456 370 5.100000 +456 384 5.100000 +456 403 5.100000 +456 455 5.100000 +456 510 5.100000 +456 568 5.100000 +456 577 5.100000 +456 590 5.100000 +456 607 5.100000 +456 609 5.100000 +456 616 5.100000 +456 663 5.100000 +456 778 5.100000 +457 22 5.100000 +457 84 5.100000 +457 169 5.100000 +457 322 5.100000 +457 372 5.100000 +457 438 5.100000 +457 491 5.100000 +457 515 5.100000 +457 581 5.100000 +458 60 5.100000 +458 190 5.100000 +458 199 5.100000 +458 219 5.100000 +458 228 5.100000 +458 301 5.100000 +458 308 5.100000 +458 317 5.100000 +458 368 5.100000 +458 569 5.100000 +459 45 5.100000 +459 83 5.100000 +459 90 5.100000 +459 97 5.100000 +459 101 5.100000 +459 117 5.100000 +459 143 5.100000 +459 194 5.100000 +459 209 5.100000 +459 273 5.100000 +459 333 5.100000 +459 357 5.100000 +459 371 5.100000 +459 435 5.100000 +459 460 5.100000 +459 494 5.100000 +459 501 5.100000 +459 503 5.100000 +459 589 5.100000 +459 597 5.100000 +459 603 5.100000 +459 705 5.100000 +459 784 5.100000 +460 38 5.100000 +460 55 5.100000 +460 97 5.100000 +460 102 5.100000 +460 111 5.100000 +460 203 5.100000 +460 210 5.100000 +460 250 5.100000 +460 258 5.100000 +460 282 5.100000 +460 295 5.100000 +460 339 5.100000 +460 421 5.100000 +460 449 5.100000 +460 462 5.100000 +460 475 5.100000 +460 539 5.100000 +460 561 5.100000 +460 762 5.100000 +461 9 5.100000 +461 51 5.100000 +461 91 5.100000 +461 215 5.100000 +461 237 5.100000 +461 239 5.100000 +461 345 5.100000 +461 386 5.100000 +461 409 5.100000 +461 419 5.100000 +461 455 5.100000 +461 475 5.100000 +461 484 5.100000 +461 495 5.100000 +461 536 5.100000 +461 538 5.100000 +461 540 5.100000 +461 543 5.100000 +461 580 5.100000 +461 601 5.100000 +461 641 5.100000 +462 38 5.100000 +462 78 5.100000 +462 129 5.100000 +462 194 5.100000 +462 248 5.100000 +462 341 5.100000 +462 445 5.100000 +462 452 5.100000 +462 496 5.100000 +462 535 5.100000 +462 684 5.100000 +462 789 5.100000 +462 790 5.100000 +462 797 5.100000 +463 202 5.100000 +463 240 5.100000 +463 249 5.100000 +463 320 5.100000 +463 329 5.100000 +463 359 5.100000 +463 619 5.100000 +463 649 5.100000 +463 725 5.100000 +463 761 5.100000 +464 5 5.100000 +464 72 5.100000 +464 126 5.100000 +464 133 5.100000 +464 145 5.100000 +464 275 5.100000 +464 286 5.100000 +464 303 5.100000 +464 356 5.100000 +464 375 5.100000 +464 420 5.100000 +464 444 5.100000 +464 446 5.100000 +464 572 5.100000 +464 632 5.100000 +464 636 5.100000 +464 640 5.100000 +464 691 5.100000 +464 727 5.100000 +464 728 5.100000 +464 797 5.100000 +465 96 5.100000 +465 186 5.100000 +465 198 5.100000 +465 233 5.100000 +465 282 5.100000 +465 344 5.100000 +465 351 5.100000 +465 386 5.100000 +465 408 5.100000 +465 432 5.100000 +465 438 5.100000 +465 514 5.100000 +465 568 5.100000 +465 581 5.100000 +465 592 5.100000 +465 630 5.100000 +465 735 5.100000 +465 784 5.100000 +466 96 5.100000 +466 177 5.100000 +466 215 5.100000 +466 321 5.100000 +466 372 5.100000 +466 525 5.100000 +466 533 5.100000 +466 562 5.100000 +466 696 5.100000 +466 703 5.100000 +466 735 5.100000 +466 742 5.100000 +467 16 5.100000 +467 45 5.100000 +467 174 5.100000 +467 213 5.100000 +467 229 5.100000 +467 230 5.100000 +467 281 5.100000 +467 375 5.100000 +467 429 5.100000 +467 534 5.100000 +467 620 5.100000 +467 720 5.100000 +467 748 5.100000 +467 781 5.100000 +467 797 5.100000 +468 37 5.100000 +468 46 5.100000 +468 57 5.100000 +468 145 5.100000 +468 180 5.100000 +468 289 5.100000 +468 328 5.100000 +468 454 5.100000 +468 507 5.100000 +468 530 5.100000 +468 552 5.100000 +468 607 5.100000 +468 655 5.100000 +468 753 5.100000 +469 30 5.100000 +469 111 5.100000 +469 130 5.100000 +469 199 5.100000 +469 250 5.100000 +469 286 5.100000 +469 395 5.100000 +469 556 5.100000 +469 649 5.100000 +469 668 5.100000 +469 730 5.100000 +469 792 5.100000 +470 38 5.100000 +470 61 5.100000 +470 68 5.100000 +470 140 5.100000 +470 160 5.100000 +470 161 5.100000 +470 201 5.100000 +470 262 5.100000 +470 390 5.100000 +470 420 5.100000 +470 436 5.100000 +470 437 5.100000 +470 458 5.100000 +470 472 5.100000 +470 475 5.100000 +470 513 5.100000 +470 592 5.100000 +470 629 5.100000 +470 671 5.100000 +470 715 5.100000 +470 782 5.100000 +471 101 5.100000 +471 155 5.100000 +471 178 5.100000 +471 196 5.100000 +471 246 5.100000 +471 360 5.100000 +471 408 5.100000 +471 458 5.100000 +471 463 5.100000 +471 491 5.100000 +471 642 5.100000 +471 716 5.100000 +472 17 5.100000 +472 137 5.100000 +472 154 5.100000 +472 289 5.100000 +472 335 5.100000 +472 387 5.100000 +472 519 5.100000 +472 545 5.100000 +472 571 5.100000 +472 604 5.100000 +472 638 5.100000 +472 738 5.100000 +472 772 5.100000 +473 19 5.100000 +473 31 5.100000 +473 44 5.100000 +473 54 5.100000 +473 112 5.100000 +473 117 5.100000 +473 202 5.100000 +473 218 5.100000 +473 264 5.100000 +473 365 5.100000 +473 435 5.100000 +473 499 5.100000 +473 503 5.100000 +473 523 5.100000 +473 632 5.100000 +473 643 5.100000 +473 711 5.100000 +473 735 5.100000 +473 792 5.100000 +474 8 5.100000 +474 10 5.100000 +474 88 5.100000 +474 96 5.100000 +474 106 5.100000 +474 107 5.100000 +474 122 5.100000 +474 172 5.100000 +474 204 5.100000 +474 258 5.100000 +474 289 5.100000 +474 307 5.100000 +474 345 5.100000 +474 353 5.100000 +474 370 5.100000 +474 388 5.100000 +474 402 5.100000 +474 419 5.100000 +474 423 5.100000 +474 492 5.100000 +474 509 5.100000 +474 514 5.100000 +474 695 5.100000 +474 778 5.100000 +475 29 5.100000 +475 39 5.100000 +475 86 5.100000 +475 239 5.100000 +475 283 5.100000 +475 298 5.100000 +475 331 5.100000 +475 352 5.100000 +475 395 5.100000 +475 419 5.100000 +475 460 5.100000 +475 531 5.100000 +475 536 5.100000 +475 537 5.100000 +475 614 5.100000 +475 662 5.100000 +475 774 5.100000 +476 8 5.100000 +476 35 5.100000 +476 74 5.100000 +476 79 5.100000 +476 84 5.100000 +476 93 5.100000 +476 213 5.100000 +476 379 5.100000 +476 401 5.100000 +476 426 5.100000 +476 457 5.100000 +476 463 5.100000 +476 470 5.100000 +476 500 5.100000 +476 550 5.100000 +476 640 5.100000 +476 659 5.100000 +476 693 5.100000 +476 707 5.100000 +476 799 5.100000 +477 74 5.100000 +477 99 5.100000 +477 140 5.100000 +477 192 5.100000 +477 216 5.100000 +477 244 5.100000 +477 252 5.100000 +477 291 5.100000 +477 303 5.100000 +477 400 5.100000 +477 483 5.100000 +477 492 5.100000 +477 607 5.100000 +477 634 5.100000 +477 674 5.100000 +477 704 5.100000 +477 725 5.100000 +477 789 5.100000 +478 106 5.100000 +478 126 5.100000 +478 197 5.100000 +478 199 5.100000 +478 222 5.100000 +478 241 5.100000 +478 335 5.100000 +478 363 5.100000 +478 438 5.100000 +478 442 5.100000 +478 447 5.100000 +478 490 5.100000 +478 549 5.100000 +478 563 5.100000 +478 646 5.100000 +478 775 5.100000 +479 88 5.100000 +479 133 5.100000 +479 153 5.100000 +479 180 5.100000 +479 264 5.100000 +479 363 5.100000 +479 432 5.100000 +479 608 5.100000 +479 641 5.100000 +479 653 5.100000 +479 676 5.100000 +479 712 5.100000 +479 742 5.100000 +479 748 5.100000 +480 37 5.100000 +480 130 5.100000 +480 225 5.100000 +480 262 5.100000 +480 266 5.100000 +480 327 5.100000 +480 375 5.100000 +480 451 5.100000 +480 464 5.100000 +480 561 5.100000 +480 562 5.100000 +480 636 5.100000 +480 674 5.100000 +480 711 5.100000 +480 723 5.100000 +480 778 5.100000 +481 10 5.100000 +481 50 5.100000 +481 83 5.100000 +481 120 5.100000 +481 182 5.100000 +481 219 5.100000 +481 342 5.100000 +481 349 5.100000 +481 369 5.100000 +481 586 5.100000 +481 703 5.100000 +481 749 5.100000 +481 786 5.100000 +481 790 5.100000 +482 14 5.100000 +482 134 5.100000 +482 143 5.100000 +482 162 5.100000 +482 177 5.100000 +482 276 5.100000 +482 384 5.100000 +482 396 5.100000 +482 453 5.100000 +482 493 5.100000 +482 578 5.100000 +482 696 5.100000 +482 704 5.100000 +482 710 5.100000 +482 722 5.100000 +482 730 5.100000 +482 760 5.100000 +482 770 5.100000 +483 88 5.100000 +483 90 5.100000 +483 190 5.100000 +483 227 5.100000 +483 295 5.100000 +483 299 5.100000 +483 343 5.100000 +483 520 5.100000 +483 728 5.100000 +483 780 5.100000 +484 153 5.100000 +484 358 5.100000 +484 377 5.100000 +484 381 5.100000 +484 405 5.100000 +484 448 5.100000 +484 580 5.100000 +484 597 5.100000 +484 601 5.100000 +484 627 5.100000 +484 652 5.100000 +484 775 5.100000 +485 72 5.100000 +485 92 5.100000 +485 110 5.100000 +485 332 5.100000 +485 593 5.100000 +485 611 5.100000 +485 660 5.100000 +485 690 5.100000 +485 713 5.100000 +485 715 5.100000 +485 719 5.100000 +485 720 5.100000 +485 737 5.100000 +486 9 5.100000 +486 16 5.100000 +486 187 5.100000 +486 197 5.100000 +486 257 5.100000 +486 263 5.100000 +486 264 5.100000 +486 266 5.100000 +486 349 5.100000 +486 376 5.100000 +486 583 5.100000 +486 748 5.100000 +487 23 5.100000 +487 49 5.100000 +487 71 5.100000 +487 104 5.100000 +487 235 5.100000 +487 238 5.100000 +487 339 5.100000 +487 342 5.100000 +487 353 5.100000 +487 378 5.100000 +487 428 5.100000 +487 466 5.100000 +487 515 5.100000 +487 520 5.100000 +487 531 5.100000 +487 534 5.100000 +487 571 5.100000 +487 581 5.100000 +487 633 5.100000 +487 659 5.100000 +487 663 5.100000 +487 728 5.100000 +487 729 5.100000 +487 742 5.100000 +488 13 5.100000 +488 37 5.100000 +488 93 5.100000 +488 108 5.100000 +488 160 5.100000 +488 214 5.100000 +488 247 5.100000 +488 281 5.100000 +488 319 5.100000 +488 332 5.100000 +488 378 5.100000 +488 432 5.100000 +488 473 5.100000 +488 534 5.100000 +488 554 5.100000 +488 581 5.100000 +488 694 5.100000 +488 701 5.100000 +488 747 5.100000 +488 789 5.100000 +489 24 5.100000 +489 49 5.100000 +489 91 5.100000 +489 261 5.100000 +489 344 5.100000 +489 348 5.100000 +489 428 5.100000 +489 464 5.100000 +489 512 5.100000 +489 518 5.100000 +489 589 5.100000 +489 800 5.100000 +490 70 5.100000 +490 72 5.100000 +490 74 5.100000 +490 94 5.100000 +490 121 5.100000 +490 136 5.100000 +490 203 5.100000 +490 266 5.100000 +490 279 5.100000 +490 311 5.100000 +490 317 5.100000 +490 319 5.100000 +490 322 5.100000 +490 454 5.100000 +490 476 5.100000 +490 532 5.100000 +490 578 5.100000 +490 604 5.100000 +490 628 5.100000 +490 679 5.100000 +490 697 5.100000 +490 742 5.100000 +490 746 5.100000 +491 36 5.100000 +491 65 5.100000 +491 68 5.100000 +491 79 5.100000 +491 99 5.100000 +491 133 5.100000 +491 167 5.100000 +491 180 5.100000 +491 201 5.100000 +491 233 5.100000 +491 280 5.100000 +491 290 5.100000 +491 327 5.100000 +491 370 5.100000 +491 584 5.100000 +491 620 5.100000 +491 646 5.100000 +491 653 5.100000 +491 688 5.100000 +491 769 5.100000 +491 793 5.100000 +492 33 5.100000 +492 40 5.100000 +492 48 5.100000 +492 80 5.100000 +492 95 5.100000 +492 162 5.100000 +492 434 5.100000 +492 441 5.100000 +492 621 5.100000 +492 653 5.100000 +492 701 5.100000 +493 41 5.100000 +493 46 5.100000 +493 61 5.100000 +493 73 5.100000 +493 80 5.100000 +493 141 5.100000 +493 165 5.100000 +493 186 5.100000 +493 241 5.100000 +493 317 5.100000 +493 332 5.100000 +493 547 5.100000 +493 608 5.100000 +493 696 5.100000 +493 756 5.100000 +494 41 5.100000 +494 45 5.100000 +494 83 5.100000 +494 107 5.100000 +494 150 5.100000 +494 199 5.100000 +494 224 5.100000 +494 256 5.100000 +494 303 5.100000 +494 311 5.100000 +494 365 5.100000 +494 479 5.100000 +494 503 5.100000 +494 560 5.100000 +494 564 5.100000 +494 566 5.100000 +494 629 5.100000 +494 642 5.100000 +494 649 5.100000 +494 690 5.100000 +494 727 5.100000 +494 750 5.100000 +494 757 5.100000 +494 762 5.100000 +494 764 5.100000 +494 780 5.100000 +494 792 5.100000 +495 49 5.100000 +495 115 5.100000 +495 156 5.100000 +495 171 5.100000 +495 192 5.100000 +495 237 5.100000 +495 258 5.100000 +495 797 5.100000 +496 21 5.100000 +496 24 5.100000 +496 29 5.100000 +496 31 5.100000 +496 172 5.100000 +496 219 5.100000 +496 239 5.100000 +496 338 5.100000 +496 367 5.100000 +496 386 5.100000 +496 453 5.100000 +496 583 5.100000 +496 604 5.100000 +497 74 5.100000 +497 80 5.100000 +497 103 5.100000 +497 137 5.100000 +497 237 5.100000 +497 240 5.100000 +497 327 5.100000 +497 376 5.100000 +497 421 5.100000 +497 529 5.100000 +497 581 5.100000 +497 596 5.100000 +497 640 5.100000 +497 727 5.100000 +497 799 5.100000 +498 28 5.100000 +498 45 5.100000 +498 66 5.100000 +498 74 5.100000 +498 87 5.100000 +498 98 5.100000 +498 127 5.100000 +498 164 5.100000 +498 173 5.100000 +498 228 5.100000 +498 257 5.100000 +498 271 5.100000 +498 295 5.100000 +498 407 5.100000 +498 424 5.100000 +498 455 5.100000 +498 480 5.100000 +498 487 5.100000 +498 488 5.100000 +498 526 5.100000 +498 634 5.100000 +498 762 5.100000 +498 776 5.100000 +499 46 5.100000 +499 64 5.100000 +499 126 5.100000 +499 158 5.100000 +499 170 5.100000 +499 172 5.100000 +499 190 5.100000 +499 193 5.100000 +499 353 5.100000 +499 366 5.100000 +499 430 5.100000 +499 499 5.100000 +499 538 5.100000 +499 539 5.100000 +499 548 5.100000 +499 571 5.100000 +499 625 5.100000 +499 642 5.100000 +499 653 5.100000 +499 766 5.100000 +500 55 5.100000 +500 121 5.100000 +500 134 5.100000 +500 156 5.100000 +500 158 5.100000 +500 160 5.100000 +500 165 5.100000 +500 202 5.100000 +500 207 5.100000 +500 302 5.100000 +500 340 5.100000 +500 359 5.100000 +500 395 5.100000 +500 406 5.100000 +500 582 5.100000 +500 605 5.100000 +500 703 5.100000 +500 764 5.100000 +500 773 5.100000 +500 783 5.100000 +501 130 5.100000 +501 190 5.100000 +501 223 5.100000 +501 298 5.100000 +501 303 5.100000 +501 316 5.100000 +501 388 5.100000 +501 392 5.100000 +501 417 5.100000 +501 424 5.100000 +501 445 5.100000 +501 548 5.100000 +501 549 5.100000 +501 618 5.100000 +501 661 5.100000 +501 666 5.100000 +502 81 5.100000 +502 112 5.100000 +502 144 5.100000 +502 191 5.100000 +502 222 5.100000 +502 256 5.100000 +502 295 5.100000 +502 332 5.100000 +502 363 5.100000 +502 416 5.100000 +502 562 5.100000 +502 588 5.100000 +502 649 5.100000 +502 694 5.100000 +502 699 5.100000 +502 756 5.100000 +503 154 5.100000 +503 218 5.100000 +503 250 5.100000 +503 290 5.100000 +503 308 5.100000 +503 319 5.100000 +503 328 5.100000 +503 354 5.100000 +503 396 5.100000 +503 462 5.100000 +503 614 5.100000 +503 635 5.100000 +503 697 5.100000 +503 766 5.100000 +503 771 5.100000 +504 47 5.100000 +504 76 5.100000 +504 144 5.100000 +504 150 5.100000 +504 231 5.100000 +504 239 5.100000 +504 318 5.100000 +504 325 5.100000 +504 339 5.100000 +504 416 5.100000 +504 489 5.100000 +504 521 5.100000 +504 614 5.100000 +504 625 5.100000 +504 639 5.100000 +504 650 5.100000 +505 1 5.100000 +505 40 5.100000 +505 131 5.100000 +505 139 5.100000 +505 152 5.100000 +505 180 5.100000 +505 184 5.100000 +505 207 5.100000 +505 215 5.100000 +505 222 5.100000 +505 335 5.100000 +505 383 5.100000 +505 386 5.100000 +505 549 5.100000 +505 594 5.100000 +505 685 5.100000 +505 700 5.100000 +505 736 5.100000 +505 782 5.100000 +506 2 5.100000 +506 24 5.100000 +506 153 5.100000 +506 235 5.100000 +506 258 5.100000 +506 358 5.100000 +506 423 5.100000 +506 433 5.100000 +506 522 5.100000 +506 561 5.100000 +506 612 5.100000 +506 633 5.100000 +506 717 5.100000 +507 22 5.100000 +507 45 5.100000 +507 92 5.100000 +507 254 5.100000 +507 360 5.100000 +507 362 5.100000 +507 491 5.100000 +507 547 5.100000 +507 564 5.100000 +507 590 5.100000 +507 638 5.100000 +507 707 5.100000 +507 715 5.100000 +507 760 5.100000 +507 788 5.100000 +508 11 5.100000 +508 80 5.100000 +508 153 5.100000 +508 162 5.100000 +508 173 5.100000 +508 282 5.100000 +508 306 5.100000 +508 313 5.100000 +508 320 5.100000 +508 350 5.100000 +508 364 5.100000 +508 373 5.100000 +508 411 5.100000 +508 427 5.100000 +508 492 5.100000 +508 510 5.100000 +508 626 5.100000 +508 784 5.100000 +509 88 5.100000 +509 128 5.100000 +509 210 5.100000 +509 226 5.100000 +509 290 5.100000 +509 299 5.100000 +509 324 5.100000 +509 331 5.100000 +509 392 5.100000 +509 428 5.100000 +509 537 5.100000 +509 552 5.100000 +509 605 5.100000 +509 637 5.100000 +509 662 5.100000 +509 691 5.100000 +509 775 5.100000 +510 40 5.100000 +510 78 5.100000 +510 85 5.100000 +510 149 5.100000 +510 288 5.100000 +510 333 5.100000 +510 508 5.100000 +510 584 5.100000 +510 614 5.100000 +510 616 5.100000 +510 622 5.100000 +510 704 5.100000 +510 790 5.100000 +511 43 5.100000 +511 59 5.100000 +511 66 5.100000 +511 136 5.100000 +511 196 5.100000 +511 199 5.100000 +511 276 5.100000 +511 284 5.100000 +511 297 5.100000 +511 313 5.100000 +511 330 5.100000 +511 488 5.100000 +511 502 5.100000 +511 514 5.100000 +511 520 5.100000 +511 555 5.100000 +511 583 5.100000 +511 696 5.100000 +511 697 5.100000 +511 785 5.100000 +512 53 5.100000 +512 115 5.100000 +512 151 5.100000 +512 300 5.100000 +512 371 5.100000 +512 440 5.100000 +512 477 5.100000 +512 487 5.100000 +512 527 5.100000 +512 530 5.100000 +512 610 5.100000 +512 621 5.100000 +512 771 5.100000 +513 47 5.100000 +513 69 5.100000 +513 119 5.100000 +513 144 5.100000 +513 173 5.100000 +513 191 5.100000 +513 246 5.100000 +513 264 5.100000 +513 304 5.100000 +513 308 5.100000 +513 388 5.100000 +513 464 5.100000 +513 575 5.100000 +513 586 5.100000 +513 600 5.100000 +513 623 5.100000 +513 735 5.100000 +514 200 5.100000 +514 276 5.100000 +514 339 5.100000 +514 476 5.100000 +514 495 5.100000 +514 618 5.100000 +514 650 5.100000 +515 44 5.100000 +515 69 5.100000 +515 210 5.100000 +515 256 5.100000 +515 282 5.100000 +515 399 5.100000 +515 410 5.100000 +515 472 5.100000 +515 478 5.100000 +515 494 5.100000 +515 542 5.100000 +515 548 5.100000 +515 564 5.100000 +515 617 5.100000 +515 706 5.100000 +515 717 5.100000 +515 718 5.100000 +515 734 5.100000 +515 794 5.100000 +516 140 5.100000 +516 142 5.100000 +516 146 5.100000 +516 161 5.100000 +516 185 5.100000 +516 215 5.100000 +516 340 5.100000 +516 428 5.100000 +516 555 5.100000 +516 663 5.100000 +516 726 5.100000 +516 751 5.100000 +516 754 5.100000 +516 796 5.100000 +517 162 5.100000 +517 271 5.100000 +517 411 5.100000 +517 539 5.100000 +517 585 5.100000 +517 594 5.100000 +517 625 5.100000 +517 789 5.100000 +518 35 5.100000 +518 48 5.100000 +518 73 5.100000 +518 129 5.100000 +518 221 5.100000 +518 398 5.100000 +518 511 5.100000 +518 556 5.100000 +518 596 5.100000 +518 600 5.100000 +518 653 5.100000 +518 656 5.100000 +518 702 5.100000 +518 718 5.100000 +519 11 5.100000 +519 68 5.100000 +519 72 5.100000 +519 150 5.100000 +519 214 5.100000 +519 220 5.100000 +519 249 5.100000 +519 262 5.100000 +519 310 5.100000 +519 353 5.100000 +519 369 5.100000 +519 384 5.100000 +519 484 5.100000 +519 515 5.100000 +519 534 5.100000 +519 564 5.100000 +519 677 5.100000 +519 730 5.100000 +519 741 5.100000 +519 793 5.100000 +520 18 5.100000 +520 60 5.100000 +520 132 5.100000 +520 175 5.100000 +520 239 5.100000 +520 280 5.100000 +520 351 5.100000 +520 418 5.100000 +520 495 5.100000 +520 512 5.100000 +520 540 5.100000 +520 632 5.100000 +520 694 5.100000 +520 719 5.100000 +521 18 5.100000 +521 82 5.100000 +521 113 5.100000 +521 140 5.100000 +521 141 5.100000 +521 159 5.100000 +521 220 5.100000 +521 372 5.100000 +521 377 5.100000 +521 450 5.100000 +521 467 5.100000 +521 470 5.100000 +521 519 5.100000 +521 542 5.100000 +521 573 5.100000 +521 722 5.100000 +522 104 5.100000 +522 128 5.100000 +522 252 5.100000 +522 285 5.100000 +522 287 5.100000 +522 303 5.100000 +522 381 5.100000 +522 456 5.100000 +522 501 5.100000 +522 542 5.100000 +522 628 5.100000 +522 650 5.100000 +522 694 5.100000 +523 39 5.100000 +523 109 5.100000 +523 151 5.100000 +523 232 5.100000 +523 491 5.100000 +523 537 5.100000 +523 592 5.100000 +523 602 5.100000 +523 696 5.100000 +524 63 5.100000 +524 117 5.100000 +524 143 5.100000 +524 249 5.100000 +524 283 5.100000 +524 348 5.100000 +524 456 5.100000 +524 490 5.100000 +524 603 5.100000 +524 718 5.100000 +524 727 5.100000 +525 125 5.100000 +525 159 5.100000 +525 211 5.100000 +525 246 5.100000 +525 253 5.100000 +525 262 5.100000 +525 324 5.100000 +525 358 5.100000 +525 366 5.100000 +525 412 5.100000 +525 481 5.100000 +525 557 5.100000 +525 573 5.100000 +525 590 5.100000 +525 591 5.100000 +525 644 5.100000 +525 770 5.100000 +525 791 5.100000 +526 157 5.100000 +526 269 5.100000 +526 306 5.100000 +526 350 5.100000 +526 385 5.100000 +526 439 5.100000 +526 454 5.100000 +526 464 5.100000 +526 473 5.100000 +526 493 5.100000 +526 552 5.100000 +526 645 5.100000 +526 700 5.100000 +526 758 5.100000 +526 789 5.100000 +526 791 5.100000 +527 74 5.100000 +527 121 5.100000 +527 159 5.100000 +527 237 5.100000 +527 268 5.100000 +527 298 5.100000 +527 424 5.100000 +527 442 5.100000 +527 458 5.100000 +527 501 5.100000 +527 532 5.100000 +527 558 5.100000 +527 646 5.100000 +527 662 5.100000 +527 743 5.100000 +527 778 5.100000 +528 2 5.100000 +528 163 5.100000 +528 284 5.100000 +528 292 5.100000 +528 312 5.100000 +528 440 5.100000 +528 454 5.100000 +528 573 5.100000 +528 584 5.100000 +528 625 5.100000 +528 665 5.100000 +528 674 5.100000 +528 682 5.100000 +528 713 5.100000 +528 762 5.100000 +529 68 5.100000 +529 176 5.100000 +529 237 5.100000 +529 370 5.100000 +529 441 5.100000 +529 453 5.100000 +529 464 5.100000 +529 468 5.100000 +529 487 5.100000 +529 535 5.100000 +529 560 5.100000 +529 691 5.100000 +529 695 5.100000 +529 768 5.100000 +530 21 5.100000 +530 59 5.100000 +530 61 5.100000 +530 187 5.100000 +530 199 5.100000 +530 232 5.100000 +530 254 5.100000 +530 269 5.100000 +530 315 5.100000 +530 361 5.100000 +530 378 5.100000 +530 722 5.100000 +530 767 5.100000 +530 797 5.100000 +531 35 5.100000 +531 70 5.100000 +531 118 5.100000 +531 243 5.100000 +531 371 5.100000 +531 449 5.100000 +531 503 5.100000 +531 616 5.100000 +531 649 5.100000 +531 670 5.100000 +531 744 5.100000 +532 33 5.100000 +532 39 5.100000 +532 96 5.100000 +532 106 5.100000 +532 219 5.100000 +532 251 5.100000 +532 260 5.100000 +532 351 5.100000 +532 358 5.100000 +532 388 5.100000 +532 463 5.100000 +532 499 5.100000 +532 524 5.100000 +532 534 5.100000 +532 581 5.100000 +532 618 5.100000 +532 685 5.100000 +532 727 5.100000 +532 773 5.100000 +532 781 5.100000 +533 117 5.100000 +533 208 5.100000 +533 209 5.100000 +533 226 5.100000 +533 337 5.100000 +533 338 5.100000 +533 423 5.100000 +533 441 5.100000 +533 501 5.100000 +533 548 5.100000 +533 666 5.100000 +533 673 5.100000 +533 677 5.100000 +533 773 5.100000 +533 798 5.100000 +534 32 5.100000 +534 124 5.100000 +534 164 5.100000 +534 180 5.100000 +534 189 5.100000 +534 319 5.100000 +534 348 5.100000 +534 405 5.100000 +534 634 5.100000 +534 754 5.100000 +535 2 5.100000 +535 3 5.100000 +535 14 5.100000 +535 125 5.100000 +535 369 5.100000 +535 387 5.100000 +535 444 5.100000 +535 452 5.100000 +535 462 5.100000 +535 497 5.100000 +535 619 5.100000 +535 702 5.100000 +535 721 5.100000 +535 782 5.100000 +536 17 5.100000 +536 79 5.100000 +536 80 5.100000 +536 135 5.100000 +536 143 5.100000 +536 223 5.100000 +536 284 5.100000 +536 317 5.100000 +536 321 5.100000 +536 341 5.100000 +536 359 5.100000 +536 389 5.100000 +536 390 5.100000 +536 403 5.100000 +536 444 5.100000 +536 445 5.100000 +536 479 5.100000 +536 498 5.100000 +536 500 5.100000 +536 538 5.100000 +536 559 5.100000 +536 621 5.100000 +536 647 5.100000 +536 711 5.100000 +536 749 5.100000 +536 759 5.100000 +536 800 5.100000 +537 64 5.100000 +537 96 5.100000 +537 102 5.100000 +537 142 5.100000 +537 152 5.100000 +537 176 5.100000 +537 196 5.100000 +537 212 5.100000 +537 220 5.100000 +537 292 5.100000 +537 330 5.100000 +537 404 5.100000 +537 412 5.100000 +537 416 5.100000 +537 475 5.100000 +537 497 5.100000 +537 551 5.100000 +537 574 5.100000 +537 665 5.100000 +537 743 5.100000 +538 51 5.100000 +538 123 5.100000 +538 127 5.100000 +538 153 5.100000 +538 191 5.100000 +538 211 5.100000 +538 314 5.100000 +538 379 5.100000 +538 397 5.100000 +538 450 5.100000 +538 558 5.100000 +538 584 5.100000 +538 616 5.100000 +538 644 5.100000 +538 697 5.100000 +538 711 5.100000 +538 737 5.100000 +538 749 5.100000 +538 754 5.100000 +538 798 5.100000 +539 43 5.100000 +539 142 5.100000 +539 147 5.100000 +539 193 5.100000 +539 203 5.100000 +539 211 5.100000 +539 280 5.100000 +539 283 5.100000 +539 318 5.100000 +539 385 5.100000 +539 437 5.100000 +539 465 5.100000 +539 494 5.100000 +539 562 5.100000 +539 582 5.100000 +539 607 5.100000 +539 675 5.100000 +539 746 5.100000 +540 10 5.100000 +540 60 5.100000 +540 100 5.100000 +540 144 5.100000 +540 160 5.100000 +540 166 5.100000 +540 282 5.100000 +540 293 5.100000 +540 312 5.100000 +540 361 5.100000 +540 374 5.100000 +540 385 5.100000 +540 548 5.100000 +540 693 5.100000 +540 735 5.100000 +541 28 5.100000 +541 70 5.100000 +541 140 5.100000 +541 155 5.100000 +541 226 5.100000 +541 245 5.100000 +541 279 5.100000 +541 298 5.100000 +541 358 5.100000 +541 373 5.100000 +541 463 5.100000 +541 482 5.100000 +541 516 5.100000 +541 522 5.100000 +541 570 5.100000 +541 579 5.100000 +541 603 5.100000 +541 615 5.100000 +541 621 5.100000 +541 756 5.100000 +541 794 5.100000 +542 5 5.100000 +542 264 5.100000 +542 348 5.100000 +542 356 5.100000 +542 479 5.100000 +542 525 5.100000 +542 591 5.100000 +542 595 5.100000 +542 685 5.100000 +543 53 5.100000 +543 81 5.100000 +543 103 5.100000 +543 213 5.100000 +543 340 5.100000 +543 375 5.100000 +543 405 5.100000 +543 473 5.100000 +543 552 5.100000 +543 560 5.100000 +543 657 5.100000 +543 768 5.100000 +543 786 5.100000 +544 78 5.100000 +544 106 5.100000 +544 116 5.100000 +544 132 5.100000 +544 135 5.100000 +544 140 5.100000 +544 148 5.100000 +544 161 5.100000 +544 173 5.100000 +544 183 5.100000 +544 224 5.100000 +544 253 5.100000 +544 326 5.100000 +544 435 5.100000 +544 436 5.100000 +544 457 5.100000 +544 473 5.100000 +544 510 5.100000 +544 544 5.100000 +544 559 5.100000 +544 642 5.100000 +544 741 5.100000 +545 25 5.100000 +545 30 5.100000 +545 118 5.100000 +545 209 5.100000 +545 230 5.100000 +545 305 5.100000 +545 328 5.100000 +545 411 5.100000 +545 489 5.100000 +545 508 5.100000 +545 535 5.100000 +545 565 5.100000 +545 593 5.100000 +545 662 5.100000 +545 667 5.100000 +545 677 5.100000 +545 681 5.100000 +545 735 5.100000 +545 738 5.100000 +546 24 5.100000 +546 142 5.100000 +546 170 5.100000 +546 195 5.100000 +546 203 5.100000 +546 235 5.100000 +546 312 5.100000 +546 368 5.100000 +546 488 5.100000 +546 540 5.100000 +546 602 5.100000 +546 650 5.100000 +546 663 5.100000 +546 768 5.100000 +546 772 5.100000 +547 31 5.100000 +547 57 5.100000 +547 167 5.100000 +547 229 5.100000 +547 250 5.100000 +547 256 5.100000 +547 376 5.100000 +547 429 5.100000 +547 444 5.100000 +547 512 5.100000 +547 576 5.100000 +547 626 5.100000 +548 2 5.100000 +548 19 5.100000 +548 32 5.100000 +548 37 5.100000 +548 230 5.100000 +548 363 5.100000 +548 390 5.100000 +548 456 5.100000 +548 493 5.100000 +548 539 5.100000 +548 560 5.100000 +548 612 5.100000 +548 614 5.100000 +548 684 5.100000 +548 700 5.100000 +548 773 5.100000 +549 79 5.100000 +549 108 5.100000 +549 136 5.100000 +549 137 5.100000 +549 163 5.100000 +549 229 5.100000 +549 243 5.100000 +549 374 5.100000 +549 382 5.100000 +549 414 5.100000 +549 461 5.100000 +549 549 5.100000 +549 636 5.100000 +549 692 5.100000 +549 764 5.100000 +549 791 5.100000 +550 129 5.100000 +550 166 5.100000 +550 272 5.100000 +550 349 5.100000 +550 355 5.100000 +550 364 5.100000 +550 386 5.100000 +550 428 5.100000 +550 429 5.100000 +550 446 5.100000 +550 502 5.100000 +550 517 5.100000 +550 534 5.100000 +550 542 5.100000 +550 665 5.100000 +550 674 5.100000 +550 773 5.100000 +551 42 5.100000 +551 82 5.100000 +551 173 5.100000 +551 222 5.100000 +551 252 5.100000 +551 305 5.100000 +551 309 5.100000 +551 336 5.100000 +551 368 5.100000 +551 388 5.100000 +551 431 5.100000 +551 479 5.100000 +551 514 5.100000 +551 567 5.100000 +551 588 5.100000 +551 642 5.100000 +551 709 5.100000 +551 715 5.100000 +551 723 5.100000 +551 767 5.100000 +551 780 5.100000 +551 788 5.100000 +551 792 5.100000 +552 82 5.100000 +552 90 5.100000 +552 319 5.100000 +552 401 5.100000 +552 492 5.100000 +552 514 5.100000 +552 529 5.100000 +552 592 5.100000 +552 625 5.100000 +552 646 5.100000 +552 722 5.100000 +553 21 5.100000 +553 39 5.100000 +553 90 5.100000 +553 160 5.100000 +553 190 5.100000 +553 299 5.100000 +553 314 5.100000 +553 392 5.100000 +553 449 5.100000 +553 506 5.100000 +553 573 5.100000 +553 606 5.100000 +553 721 5.100000 +553 734 5.100000 +554 3 5.100000 +554 37 5.100000 +554 88 5.100000 +554 124 5.100000 +554 151 5.100000 +554 216 5.100000 +554 229 5.100000 +554 267 5.100000 +554 310 5.100000 +554 571 5.100000 +554 610 5.100000 +554 731 5.100000 +555 14 5.100000 +555 22 5.100000 +555 131 5.100000 +555 140 5.100000 +555 175 5.100000 +555 290 5.100000 +555 309 5.100000 +555 316 5.100000 +555 418 5.100000 +555 442 5.100000 +555 452 5.100000 +555 488 5.100000 +555 512 5.100000 +555 572 5.100000 +555 649 5.100000 +555 658 5.100000 +555 662 5.100000 +555 678 5.100000 +555 692 5.100000 +555 704 5.100000 +555 709 5.100000 +555 738 5.100000 +555 758 5.100000 +555 781 5.100000 +555 790 5.100000 +556 56 5.100000 +556 96 5.100000 +556 97 5.100000 +556 106 5.100000 +556 110 5.100000 +556 273 5.100000 +556 292 5.100000 +556 299 5.100000 +556 318 5.100000 +556 484 5.100000 +556 501 5.100000 +556 709 5.100000 +556 756 5.100000 +556 763 5.100000 +556 790 5.100000 +557 1 5.100000 +557 20 5.100000 +557 45 5.100000 +557 51 5.100000 +557 56 5.100000 +557 113 5.100000 +557 213 5.100000 +557 255 5.100000 +557 313 5.100000 +557 329 5.100000 +557 407 5.100000 +557 532 5.100000 +557 573 5.100000 +557 580 5.100000 +557 586 5.100000 +557 715 5.100000 +557 797 5.100000 +558 23 5.100000 +558 84 5.100000 +558 87 5.100000 +558 96 5.100000 +558 108 5.100000 +558 159 5.100000 +558 175 5.100000 +558 257 5.100000 +558 337 5.100000 +558 402 5.100000 +558 410 5.100000 +558 442 5.100000 +558 484 5.100000 +558 505 5.100000 +558 540 5.100000 +558 546 5.100000 +558 558 5.100000 +558 629 5.100000 +558 641 5.100000 +558 643 5.100000 +558 644 5.100000 +558 707 5.100000 +558 713 5.100000 +558 730 5.100000 +558 745 5.100000 +559 38 5.100000 +559 70 5.100000 +559 120 5.100000 +559 203 5.100000 +559 207 5.100000 +559 244 5.100000 +559 333 5.100000 +559 346 5.100000 +559 379 5.100000 +559 431 5.100000 +559 444 5.100000 +559 502 5.100000 +559 515 5.100000 +559 559 5.100000 +559 560 5.100000 +559 692 5.100000 +559 777 5.100000 +560 23 5.100000 +560 106 5.100000 +560 217 5.100000 +560 245 5.100000 +560 257 5.100000 +560 259 5.100000 +560 277 5.100000 +560 317 5.100000 +560 352 5.100000 +560 362 5.100000 +560 365 5.100000 +560 438 5.100000 +560 520 5.100000 +560 537 5.100000 +560 560 5.100000 +560 586 5.100000 +560 601 5.100000 +560 617 5.100000 +560 666 5.100000 +560 690 5.100000 +560 726 5.100000 +560 755 5.100000 +560 762 5.100000 +561 130 5.100000 +561 140 5.100000 +561 175 5.100000 +561 215 5.100000 +561 256 5.100000 +561 323 5.100000 +561 338 5.100000 +561 352 5.100000 +561 357 5.100000 +561 414 5.100000 +561 447 5.100000 +561 462 5.100000 +561 466 5.100000 +561 506 5.100000 +561 520 5.100000 +561 528 5.100000 +561 564 5.100000 +561 565 5.100000 +561 570 5.100000 +561 603 5.100000 +561 606 5.100000 +561 696 5.100000 +561 752 5.100000 +561 798 5.100000 +562 56 5.100000 +562 105 5.100000 +562 122 5.100000 +562 150 5.100000 +562 180 5.100000 +562 204 5.100000 +562 274 5.100000 +562 369 5.100000 +562 419 5.100000 +562 426 5.100000 +562 435 5.100000 +562 485 5.100000 +562 581 5.100000 +562 643 5.100000 +562 663 5.100000 +562 684 5.100000 +562 695 5.100000 +562 783 5.100000 +562 797 5.100000 +563 33 5.100000 +563 46 5.100000 +563 85 5.100000 +563 175 5.100000 +563 235 5.100000 +563 302 5.100000 +563 309 5.100000 +563 338 5.100000 +563 343 5.100000 +563 383 5.100000 +563 410 5.100000 +563 418 5.100000 +563 435 5.100000 +563 549 5.100000 +563 651 5.100000 +563 656 5.100000 +563 781 5.100000 +564 5 5.100000 +564 36 5.100000 +564 70 5.100000 +564 119 5.100000 +564 131 5.100000 +564 194 5.100000 +564 202 5.100000 +564 218 5.100000 +564 372 5.100000 +564 413 5.100000 +564 519 5.100000 +564 547 5.100000 +564 578 5.100000 +564 632 5.100000 +564 763 5.100000 +564 792 5.100000 +565 18 5.100000 +565 31 5.100000 +565 109 5.100000 +565 140 5.100000 +565 142 5.100000 +565 205 5.100000 +565 280 5.100000 +565 298 5.100000 +565 374 5.100000 +565 443 5.100000 +565 512 5.100000 +565 630 5.100000 +565 632 5.100000 +566 22 5.100000 +566 120 5.100000 +566 128 5.100000 +566 138 5.100000 +566 165 5.100000 +566 259 5.100000 +566 303 5.100000 +566 340 5.100000 +566 379 5.100000 +566 381 5.100000 +566 397 5.100000 +566 565 5.100000 +566 617 5.100000 +566 712 5.100000 +566 737 5.100000 +566 769 5.100000 +566 773 5.100000 +566 783 5.100000 +567 14 5.100000 +567 154 5.100000 +567 172 5.100000 +567 203 5.100000 +567 204 5.100000 +567 239 5.100000 +567 315 5.100000 +567 318 5.100000 +567 365 5.100000 +567 394 5.100000 +567 403 5.100000 +567 406 5.100000 +567 541 5.100000 +567 565 5.100000 +567 587 5.100000 +567 595 5.100000 +567 678 5.100000 +567 714 5.100000 +567 730 5.100000 +567 742 5.100000 +567 748 5.100000 +567 776 5.100000 +567 779 5.100000 +567 795 5.100000 +568 10 5.100000 +568 66 5.100000 +568 70 5.100000 +568 95 5.100000 +568 163 5.100000 +568 165 5.100000 +568 194 5.100000 +568 249 5.100000 +568 254 5.100000 +568 407 5.100000 +568 472 5.100000 +568 514 5.100000 +568 530 5.100000 +568 586 5.100000 +568 593 5.100000 +568 743 5.100000 +568 751 5.100000 +569 127 5.100000 +569 229 5.100000 +569 278 5.100000 +569 280 5.100000 +569 295 5.100000 +569 396 5.100000 +569 451 5.100000 +569 472 5.100000 +569 499 5.100000 +569 507 5.100000 +569 533 5.100000 +569 544 5.100000 +569 569 5.100000 +569 584 5.100000 +569 600 5.100000 +569 663 5.100000 +569 670 5.100000 +569 739 5.100000 +569 751 5.100000 +570 14 5.100000 +570 45 5.100000 +570 90 5.100000 +570 155 5.100000 +570 180 5.100000 +570 207 5.100000 +570 209 5.100000 +570 227 5.100000 +570 269 5.100000 +570 282 5.100000 +570 285 5.100000 +570 362 5.100000 +570 428 5.100000 +570 469 5.100000 +570 485 5.100000 +570 508 5.100000 +570 534 5.100000 +570 561 5.100000 +570 564 5.100000 +570 724 5.100000 +570 765 5.100000 +571 101 5.100000 +571 175 5.100000 +571 191 5.100000 +571 224 5.100000 +571 228 5.100000 +571 257 5.100000 +571 302 5.100000 +571 327 5.100000 +571 362 5.100000 +571 380 5.100000 +571 395 5.100000 +571 432 5.100000 +571 459 5.100000 +571 469 5.100000 +571 484 5.100000 +571 575 5.100000 +571 612 5.100000 +571 689 5.100000 +572 37 5.100000 +572 95 5.100000 +572 139 5.100000 +572 195 5.100000 +572 221 5.100000 +572 286 5.100000 +572 329 5.100000 +572 342 5.100000 +572 418 5.100000 +572 447 5.100000 +572 500 5.100000 +572 591 5.100000 +572 600 5.100000 +572 615 5.100000 +572 666 5.100000 +572 667 5.100000 +572 714 5.100000 +572 738 5.100000 +572 770 5.100000 +572 783 5.100000 +573 58 5.100000 +573 67 5.100000 +573 152 5.100000 +573 179 5.100000 +573 262 5.100000 +573 321 5.100000 +573 322 5.100000 +573 353 5.100000 +573 445 5.100000 +573 603 5.100000 +573 638 5.100000 +573 641 5.100000 +573 669 5.100000 +573 711 5.100000 +573 746 5.100000 +573 749 5.100000 +573 791 5.100000 +574 63 5.100000 +574 83 5.100000 +574 136 5.100000 +574 236 5.100000 +574 278 5.100000 +574 332 5.100000 +574 336 5.100000 +574 340 5.100000 +574 351 5.100000 +574 426 5.100000 +574 434 5.100000 +574 437 5.100000 +574 451 5.100000 +574 463 5.100000 +574 538 5.100000 +574 553 5.100000 +574 673 5.100000 +574 727 5.100000 +574 748 5.100000 +575 246 5.100000 +575 273 5.100000 +575 280 5.100000 +575 301 5.100000 +575 310 5.100000 +575 548 5.100000 +575 586 5.100000 +575 630 5.100000 +575 685 5.100000 +576 21 5.100000 +576 56 5.100000 +576 82 5.100000 +576 100 5.100000 +576 107 5.100000 +576 150 5.100000 +576 162 5.100000 +576 219 5.100000 +576 225 5.100000 +576 236 5.100000 +576 563 5.100000 +576 659 5.100000 +576 683 5.100000 +576 722 5.100000 +576 724 5.100000 +576 745 5.100000 +576 773 5.100000 +577 92 5.100000 +577 136 5.100000 +577 147 5.100000 +577 157 5.100000 +577 166 5.100000 +577 203 5.100000 +577 242 5.100000 +577 294 5.100000 +577 328 5.100000 +577 340 5.100000 +577 430 5.100000 +577 512 5.100000 +577 577 5.100000 +578 39 5.100000 +578 56 5.100000 +578 67 5.100000 +578 114 5.100000 +578 230 5.100000 +578 292 5.100000 +578 326 5.100000 +578 385 5.100000 +578 409 5.100000 +578 419 5.100000 +578 486 5.100000 +578 677 5.100000 +578 684 5.100000 +578 685 5.100000 +578 746 5.100000 +579 118 5.100000 +579 245 5.100000 +579 376 5.100000 +579 378 5.100000 +579 393 5.100000 +579 428 5.100000 +579 479 5.100000 +579 536 5.100000 +579 550 5.100000 +579 579 5.100000 +579 581 5.100000 +579 650 5.100000 +579 725 5.100000 +579 788 5.100000 +579 797 5.100000 +580 11 5.100000 +580 34 5.100000 +580 155 5.100000 +580 171 5.100000 +580 185 5.100000 +580 188 5.100000 +580 254 5.100000 +580 449 5.100000 +580 497 5.100000 +580 673 5.100000 +580 704 5.100000 +580 729 5.100000 +580 732 5.100000 +580 746 5.100000 +580 780 5.100000 +580 781 5.100000 +581 13 5.100000 +581 142 5.100000 +581 182 5.100000 +581 204 5.100000 +581 273 5.100000 +581 330 5.100000 +581 336 5.100000 +581 365 5.100000 +581 442 5.100000 +581 465 5.100000 +581 525 5.100000 +581 568 5.100000 +581 584 5.100000 +581 625 5.100000 +581 635 5.100000 +581 649 5.100000 +581 718 5.100000 +581 749 5.100000 +582 16 5.100000 +582 52 5.100000 +582 111 5.100000 +582 118 5.100000 +582 159 5.100000 +582 193 5.100000 +582 201 5.100000 +582 263 5.100000 +582 379 5.100000 +582 494 5.100000 +582 505 5.100000 +582 535 5.100000 +582 537 5.100000 +582 566 5.100000 +582 572 5.100000 +582 652 5.100000 +582 724 5.100000 +582 752 5.100000 +583 195 5.100000 +583 213 5.100000 +583 260 5.100000 +583 286 5.100000 +583 324 5.100000 +583 331 5.100000 +583 364 5.100000 +583 405 5.100000 +583 427 5.100000 +583 462 5.100000 +583 467 5.100000 +583 469 5.100000 +583 495 5.100000 +583 534 5.100000 +583 591 5.100000 +583 622 5.100000 +583 635 5.100000 +583 719 5.100000 +583 778 5.100000 +583 797 5.100000 +584 24 5.100000 +584 56 5.100000 +584 68 5.100000 +584 155 5.100000 +584 214 5.100000 +584 334 5.100000 +584 374 5.100000 +584 409 5.100000 +584 436 5.100000 +584 438 5.100000 +584 462 5.100000 +584 490 5.100000 +584 492 5.100000 +584 506 5.100000 +584 542 5.100000 +584 606 5.100000 +584 700 5.100000 +584 800 5.100000 +585 26 5.100000 +585 34 5.100000 +585 141 5.100000 +585 159 5.100000 +585 280 5.100000 +585 301 5.100000 +585 306 5.100000 +585 398 5.100000 +585 420 5.100000 +585 433 5.100000 +585 457 5.100000 +585 470 5.100000 +585 541 5.100000 +585 543 5.100000 +585 696 5.100000 +585 713 5.100000 +585 717 5.100000 +585 756 5.100000 +585 763 5.100000 +586 144 5.100000 +586 215 5.100000 +586 237 5.100000 +586 349 5.100000 +586 378 5.100000 +586 464 5.100000 +586 471 5.100000 +586 576 5.100000 +586 588 5.100000 +586 716 5.100000 +587 2 5.100000 +587 350 5.100000 +587 366 5.100000 +587 514 5.100000 +587 628 5.100000 +587 629 5.100000 +587 677 5.100000 +587 701 5.100000 +587 724 5.100000 +587 742 5.100000 +587 750 5.100000 +587 766 5.100000 +588 72 5.100000 +588 137 5.100000 +588 199 5.100000 +588 206 5.100000 +588 233 5.100000 +588 342 5.100000 +588 366 5.100000 +588 378 5.100000 +588 398 5.100000 +588 431 5.100000 +588 540 5.100000 +588 589 5.100000 +588 646 5.100000 +588 648 5.100000 +588 667 5.100000 +588 734 5.100000 +589 100 5.100000 +589 169 5.100000 +589 295 5.100000 +589 345 5.100000 +589 349 5.100000 +589 370 5.100000 +589 374 5.100000 +589 457 5.100000 +589 459 5.100000 +589 570 5.100000 +589 588 5.100000 +589 639 5.100000 +589 665 5.100000 +589 710 5.100000 +590 89 5.100000 +590 124 5.100000 +590 138 5.100000 +590 151 5.100000 +590 163 5.100000 +590 219 5.100000 +590 318 5.100000 +590 327 5.100000 +590 338 5.100000 +590 405 5.100000 +590 445 5.100000 +590 451 5.100000 +590 460 5.100000 +590 621 5.100000 +590 658 5.100000 +591 38 5.100000 +591 58 5.100000 +591 102 5.100000 +591 221 5.100000 +591 257 5.100000 +591 275 5.100000 +591 397 5.100000 +591 398 5.100000 +591 408 5.100000 +591 415 5.100000 +591 438 5.100000 +591 495 5.100000 +591 553 5.100000 +591 647 5.100000 +592 86 5.100000 +592 96 5.100000 +592 319 5.100000 +592 435 5.100000 +592 443 5.100000 +592 470 5.100000 +592 485 5.100000 +592 550 5.100000 +592 618 5.100000 +592 624 5.100000 +592 710 5.100000 +592 724 5.100000 +592 728 5.100000 +592 730 5.100000 +592 769 5.100000 +593 30 5.100000 +593 55 5.100000 +593 150 5.100000 +593 166 5.100000 +593 209 5.100000 +593 230 5.100000 +593 235 5.100000 +593 239 5.100000 +593 275 5.100000 +593 311 5.100000 +593 317 5.100000 +593 354 5.100000 +593 394 5.100000 +593 420 5.100000 +593 520 5.100000 +593 524 5.100000 +593 615 5.100000 +593 616 5.100000 +593 742 5.100000 +594 400 5.100000 +594 430 5.100000 +594 516 5.100000 +594 533 5.100000 +594 540 5.100000 +594 693 5.100000 +594 791 5.100000 +595 25 5.100000 +595 64 5.100000 +595 69 5.100000 +595 80 5.100000 +595 387 5.100000 +595 539 5.100000 +595 540 5.100000 +595 547 5.100000 +595 570 5.100000 +595 612 5.100000 +595 648 5.100000 +595 652 5.100000 +595 691 5.100000 +595 775 5.100000 +596 29 5.100000 +596 43 5.100000 +596 95 5.100000 +596 195 5.100000 +596 236 5.100000 +596 247 5.100000 +596 255 5.100000 +596 257 5.100000 +596 297 5.100000 +596 300 5.100000 +596 346 5.100000 +596 412 5.100000 +596 419 5.100000 +596 453 5.100000 +596 734 5.100000 +596 782 5.100000 +596 793 5.100000 +596 796 5.100000 +597 1 5.100000 +597 63 5.100000 +597 64 5.100000 +597 129 5.100000 +597 138 5.100000 +597 177 5.100000 +597 210 5.100000 +597 237 5.100000 +597 392 5.100000 +597 400 5.100000 +597 432 5.100000 +597 436 5.100000 +597 510 5.100000 +597 518 5.100000 +597 535 5.100000 +597 599 5.100000 +597 600 5.100000 +597 680 5.100000 +597 796 5.100000 +598 58 5.100000 +598 74 5.100000 +598 93 5.100000 +598 370 5.100000 +598 436 5.100000 +598 541 5.100000 +598 549 5.100000 +598 576 5.100000 +598 604 5.100000 +598 608 5.100000 +598 610 5.100000 +598 696 5.100000 +598 704 5.100000 +598 730 5.100000 +598 733 5.100000 +598 777 5.100000 +599 22 5.100000 +599 172 5.100000 +599 248 5.100000 +599 259 5.100000 +599 302 5.100000 +599 344 5.100000 +599 397 5.100000 +599 401 5.100000 +599 610 5.100000 +599 734 5.100000 +600 44 5.100000 +600 115 5.100000 +600 188 5.100000 +600 208 5.100000 +600 278 5.100000 +600 291 5.100000 +600 307 5.100000 +600 329 5.100000 +600 339 5.100000 +600 359 5.100000 +600 472 5.100000 +600 607 5.100000 +600 734 5.100000 +601 29 5.100000 +601 39 5.100000 +601 48 5.100000 +601 50 5.100000 +601 183 5.100000 +601 246 5.100000 +601 279 5.100000 +601 492 5.100000 +601 522 5.100000 +601 546 5.100000 +601 548 5.100000 +601 642 5.100000 +601 671 5.100000 +601 720 5.100000 +601 760 5.100000 +601 770 5.100000 +602 53 5.100000 +602 121 5.100000 +602 188 5.100000 +602 192 5.100000 +602 290 5.100000 +602 308 5.100000 +602 336 5.100000 +602 362 5.100000 +602 438 5.100000 +602 525 5.100000 +602 565 5.100000 +602 574 5.100000 +602 598 5.100000 +602 635 5.100000 +602 646 5.100000 +602 650 5.100000 +602 733 5.100000 +602 771 5.100000 +602 778 5.100000 +603 67 5.100000 +603 141 5.100000 +603 283 5.100000 +603 345 5.100000 +603 387 5.100000 +603 495 5.100000 +603 574 5.100000 +603 632 5.100000 +603 646 5.100000 +603 658 5.100000 +603 691 5.100000 +603 692 5.100000 +603 721 5.100000 +603 724 5.100000 +603 767 5.100000 +603 797 5.100000 +604 2 5.100000 +604 12 5.100000 +604 29 5.100000 +604 59 5.100000 +604 110 5.100000 +604 112 5.100000 +604 138 5.100000 +604 184 5.100000 +604 185 5.100000 +604 281 5.100000 +604 296 5.100000 +604 341 5.100000 +604 349 5.100000 +604 355 5.100000 +604 357 5.100000 +604 473 5.100000 +604 511 5.100000 +604 523 5.100000 +604 602 5.100000 +604 690 5.100000 +604 711 5.100000 +604 738 5.100000 +604 741 5.100000 +605 18 5.100000 +605 19 5.100000 +605 90 5.100000 +605 117 5.100000 +605 130 5.100000 +605 151 5.100000 +605 202 5.100000 +605 237 5.100000 +605 259 5.100000 +605 328 5.100000 +605 348 5.100000 +605 417 5.100000 +605 604 5.100000 +605 620 5.100000 +605 682 5.100000 +605 712 5.100000 +605 762 5.100000 +605 786 5.100000 +606 6 5.100000 +606 45 5.100000 +606 79 5.100000 +606 118 5.100000 +606 138 5.100000 +606 164 5.100000 +606 199 5.100000 +606 217 5.100000 +606 221 5.100000 +606 277 5.100000 +606 287 5.100000 +606 299 5.100000 +606 333 5.100000 +606 335 5.100000 +606 452 5.100000 +606 506 5.100000 +606 517 5.100000 +606 611 5.100000 +606 657 5.100000 +606 759 5.100000 +607 32 5.100000 +607 200 5.100000 +607 208 5.100000 +607 245 5.100000 +607 251 5.100000 +607 253 5.100000 +607 388 5.100000 +607 406 5.100000 +607 474 5.100000 +607 607 5.100000 +607 663 5.100000 +607 682 5.100000 +607 757 5.100000 +607 781 5.100000 +608 16 5.100000 +608 83 5.100000 +608 93 5.100000 +608 117 5.100000 +608 123 5.100000 +608 197 5.100000 +608 201 5.100000 +608 213 5.100000 +608 315 5.100000 +608 370 5.100000 +608 436 5.100000 +608 505 5.100000 +608 661 5.100000 +608 662 5.100000 +608 670 5.100000 +608 742 5.100000 +608 780 5.100000 +608 796 5.100000 +609 31 5.100000 +609 49 5.100000 +609 72 5.100000 +609 81 5.100000 +609 82 5.100000 +609 116 5.100000 +609 233 5.100000 +609 272 5.100000 +609 358 5.100000 +609 476 5.100000 +609 540 5.100000 +609 672 5.100000 +609 703 5.100000 +609 714 5.100000 +610 55 5.100000 +610 85 5.100000 +610 120 5.100000 +610 219 5.100000 +610 274 5.100000 +610 300 5.100000 +610 318 5.100000 +610 406 5.100000 +610 471 5.100000 +610 475 5.100000 +610 489 5.100000 +610 526 5.100000 +610 544 5.100000 +610 583 5.100000 +610 584 5.100000 +610 688 5.100000 +610 750 5.100000 +610 794 5.100000 +611 7 5.100000 +611 91 5.100000 +611 94 5.100000 +611 113 5.100000 +611 165 5.100000 +611 190 5.100000 +611 195 5.100000 +611 231 5.100000 +611 246 5.100000 +611 351 5.100000 +611 358 5.100000 +611 560 5.100000 +611 667 5.100000 +611 799 5.100000 +612 72 5.100000 +612 218 5.100000 +612 241 5.100000 +612 362 5.100000 +612 369 5.100000 +612 427 5.100000 +612 575 5.100000 +612 636 5.100000 +612 643 5.100000 +612 766 5.100000 +612 787 5.100000 +613 95 5.100000 +613 100 5.100000 +613 164 5.100000 +613 188 5.100000 +613 229 5.100000 +613 243 5.100000 +613 260 5.100000 +613 265 5.100000 +613 310 5.100000 +613 374 5.100000 +613 504 5.100000 +613 522 5.100000 +613 534 5.100000 +613 539 5.100000 +613 667 5.100000 +613 721 5.100000 +613 743 5.100000 +613 757 5.100000 +613 796 5.100000 +614 54 5.100000 +614 102 5.100000 +614 133 5.100000 +614 245 5.100000 +614 343 5.100000 +614 384 5.100000 +614 402 5.100000 +614 431 5.100000 +614 492 5.100000 +614 497 5.100000 +614 520 5.100000 +614 665 5.100000 +614 668 5.100000 +615 25 5.100000 +615 76 5.100000 +615 115 5.100000 +615 154 5.100000 +615 162 5.100000 +615 223 5.100000 +615 237 5.100000 +615 264 5.100000 +615 294 5.100000 +615 298 5.100000 +615 318 5.100000 +615 375 5.100000 +615 391 5.100000 +615 423 5.100000 +615 484 5.100000 +615 557 5.100000 +615 602 5.100000 +615 614 5.100000 +615 656 5.100000 +615 748 5.100000 +616 100 5.100000 +616 126 5.100000 +616 256 5.100000 +616 334 5.100000 +616 390 5.100000 +616 465 5.100000 +616 478 5.100000 +616 479 5.100000 +616 488 5.100000 +616 527 5.100000 +616 592 5.100000 +616 636 5.100000 +616 777 5.100000 +617 24 5.100000 +617 35 5.100000 +617 213 5.100000 +617 423 5.100000 +617 464 5.100000 +617 541 5.100000 +617 585 5.100000 +617 599 5.100000 +617 626 5.100000 +617 638 5.100000 +617 644 5.100000 +617 655 5.100000 +617 716 5.100000 +617 754 5.100000 +618 20 5.100000 +618 144 5.100000 +618 148 5.100000 +618 179 5.100000 +618 210 5.100000 +618 249 5.100000 +618 354 5.100000 +618 388 5.100000 +618 393 5.100000 +618 418 5.100000 +618 460 5.100000 +618 480 5.100000 +618 782 5.100000 +619 23 5.100000 +619 43 5.100000 +619 46 5.100000 +619 90 5.100000 +619 157 5.100000 +619 177 5.100000 +619 213 5.100000 +619 362 5.100000 +619 406 5.100000 +619 433 5.100000 +619 444 5.100000 +619 451 5.100000 +619 571 5.100000 +619 703 5.100000 +620 147 5.100000 +620 246 5.100000 +620 253 5.100000 +620 273 5.100000 +620 341 5.100000 +620 413 5.100000 +620 414 5.100000 +620 444 5.100000 +620 448 5.100000 +620 450 5.100000 +620 504 5.100000 +620 540 5.100000 +620 597 5.100000 +620 687 5.100000 +620 696 5.100000 +620 750 5.100000 +620 800 5.100000 +621 113 5.100000 +621 116 5.100000 +621 118 5.100000 +621 140 5.100000 +621 172 5.100000 +621 296 5.100000 +621 322 5.100000 +621 400 5.100000 +621 405 5.100000 +621 444 5.100000 +621 581 5.100000 +621 652 5.100000 +621 691 5.100000 +621 719 5.100000 +621 744 5.100000 +621 768 5.100000 +622 71 5.100000 +622 134 5.100000 +622 175 5.100000 +622 207 5.100000 +622 211 5.100000 +622 236 5.100000 +622 243 5.100000 +622 306 5.100000 +622 330 5.100000 +622 422 5.100000 +622 464 5.100000 +622 508 5.100000 +622 552 5.100000 +622 580 5.100000 +622 678 5.100000 +622 715 5.100000 +622 745 5.100000 +622 785 5.100000 +623 11 5.100000 +623 15 5.100000 +623 44 5.100000 +623 58 5.100000 +623 59 5.100000 +623 62 5.100000 +623 84 5.100000 +623 116 5.100000 +623 196 5.100000 +623 229 5.100000 +623 343 5.100000 +623 366 5.100000 +623 403 5.100000 +623 520 5.100000 +623 638 5.100000 +623 670 5.100000 +623 684 5.100000 +623 700 5.100000 +623 732 5.100000 +623 784 5.100000 +624 71 5.100000 +624 106 5.100000 +624 115 5.100000 +624 162 5.100000 +624 234 5.100000 +624 246 5.100000 +624 381 5.100000 +624 485 5.100000 +624 605 5.100000 +624 609 5.100000 +624 660 5.100000 +624 669 5.100000 +624 676 5.100000 +624 763 5.100000 +625 46 5.100000 +625 117 5.100000 +625 239 5.100000 +625 298 5.100000 +625 310 5.100000 +625 315 5.100000 +625 392 5.100000 +625 460 5.100000 +625 480 5.100000 +625 505 5.100000 +625 506 5.100000 +625 549 5.100000 +625 560 5.100000 +625 573 5.100000 +625 606 5.100000 +625 664 5.100000 +625 703 5.100000 +625 748 5.100000 +625 750 5.100000 +625 754 5.100000 +626 128 5.100000 +626 238 5.100000 +626 302 5.100000 +626 374 5.100000 +626 419 5.100000 +626 467 5.100000 +626 572 5.100000 +626 594 5.100000 +626 611 5.100000 +626 651 5.100000 +626 659 5.100000 +626 742 5.100000 +627 8 5.100000 +627 26 5.100000 +627 31 5.100000 +627 126 5.100000 +627 136 5.100000 +627 150 5.100000 +627 160 5.100000 +627 175 5.100000 +627 182 5.100000 +627 424 5.100000 +627 522 5.100000 +627 540 5.100000 +627 622 5.100000 +627 721 5.100000 +627 742 5.100000 +627 778 5.100000 +628 14 5.100000 +628 38 5.100000 +628 39 5.100000 +628 48 5.100000 +628 66 5.100000 +628 108 5.100000 +628 113 5.100000 +628 153 5.100000 +628 189 5.100000 +628 237 5.100000 +628 310 5.100000 +628 390 5.100000 +628 451 5.100000 +628 465 5.100000 +628 480 5.100000 +628 504 5.100000 +628 663 5.100000 +628 675 5.100000 +628 717 5.100000 +628 733 5.100000 +628 753 5.100000 +629 2 5.100000 +629 36 5.100000 +629 83 5.100000 +629 161 5.100000 +629 202 5.100000 +629 236 5.100000 +629 295 5.100000 +629 351 5.100000 +629 406 5.100000 +629 473 5.100000 +629 499 5.100000 +629 540 5.100000 +629 566 5.100000 +629 611 5.100000 +629 700 5.100000 +629 707 5.100000 +629 708 5.100000 +630 1 5.100000 +630 55 5.100000 +630 69 5.100000 +630 122 5.100000 +630 131 5.100000 +630 153 5.100000 +630 233 5.100000 +630 237 5.100000 +630 368 5.100000 +630 378 5.100000 +630 423 5.100000 +630 439 5.100000 +630 541 5.100000 +630 584 5.100000 +631 25 5.100000 +631 51 5.100000 +631 129 5.100000 +631 211 5.100000 +631 214 5.100000 +631 372 5.100000 +631 427 5.100000 +631 763 5.100000 +631 768 5.100000 +632 17 5.100000 +632 61 5.100000 +632 145 5.100000 +632 195 5.100000 +632 248 5.100000 +632 253 5.100000 +632 275 5.100000 +632 299 5.100000 +632 374 5.100000 +632 430 5.100000 +632 459 5.100000 +632 461 5.100000 +632 497 5.100000 +632 509 5.100000 +632 566 5.100000 +632 600 5.100000 +632 635 5.100000 +632 666 5.100000 +632 672 5.100000 +632 763 5.100000 +632 799 5.100000 +633 107 5.100000 +633 113 5.100000 +633 121 5.100000 +633 122 5.100000 +633 129 5.100000 +633 170 5.100000 +633 210 5.100000 +633 227 5.100000 +633 285 5.100000 +633 306 5.100000 +633 391 5.100000 +633 462 5.100000 +633 500 5.100000 +633 533 5.100000 +633 564 5.100000 +633 584 5.100000 +633 761 5.100000 +634 42 5.100000 +634 74 5.100000 +634 181 5.100000 +634 215 5.100000 +634 247 5.100000 +634 251 5.100000 +634 319 5.100000 +634 323 5.100000 +634 469 5.100000 +634 516 5.100000 +634 531 5.100000 +634 583 5.100000 +634 729 5.100000 +634 793 5.100000 +635 99 5.100000 +635 128 5.100000 +635 143 5.100000 +635 242 5.100000 +635 328 5.100000 +635 355 5.100000 +635 357 5.100000 +635 402 5.100000 +635 467 5.100000 +635 489 5.100000 +635 591 5.100000 +635 632 5.100000 +635 640 5.100000 +635 670 5.100000 +635 730 5.100000 +635 788 5.100000 +635 798 5.100000 +636 24 5.100000 +636 41 5.100000 +636 53 5.100000 +636 218 5.100000 +636 225 5.100000 +636 297 5.100000 +636 335 5.100000 +636 414 5.100000 +636 457 5.100000 +636 497 5.100000 +636 501 5.100000 +636 539 5.100000 +636 542 5.100000 +636 773 5.100000 +637 7 5.100000 +637 12 5.100000 +637 73 5.100000 +637 107 5.100000 +637 125 5.100000 +637 156 5.100000 +637 211 5.100000 +637 288 5.100000 +637 326 5.100000 +637 349 5.100000 +637 366 5.100000 +637 372 5.100000 +637 444 5.100000 +637 547 5.100000 +637 558 5.100000 +637 598 5.100000 +637 617 5.100000 +637 622 5.100000 +637 672 5.100000 +637 708 5.100000 +637 728 5.100000 +638 9 5.100000 +638 16 5.100000 +638 32 5.100000 +638 39 5.100000 +638 54 5.100000 +638 80 5.100000 +638 99 5.100000 +638 205 5.100000 +638 301 5.100000 +638 309 5.100000 +638 472 5.100000 +638 617 5.100000 +638 709 5.100000 +638 736 5.100000 +638 756 5.100000 +638 780 5.100000 +639 40 5.100000 +639 146 5.100000 +639 170 5.100000 +639 206 5.100000 +639 279 5.100000 +639 322 5.100000 +639 336 5.100000 +639 364 5.100000 +639 498 5.100000 +639 510 5.100000 +639 630 5.100000 +639 642 5.100000 +640 17 5.100000 +640 58 5.100000 +640 62 5.100000 +640 65 5.100000 +640 104 5.100000 +640 109 5.100000 +640 160 5.100000 +640 184 5.100000 +640 294 5.100000 +640 372 5.100000 +640 387 5.100000 +640 389 5.100000 +640 479 5.100000 +640 549 5.100000 +640 556 5.100000 +640 622 5.100000 +640 668 5.100000 +640 731 5.100000 +641 174 5.100000 +641 196 5.100000 +641 253 5.100000 +641 280 5.100000 +641 319 5.100000 +641 358 5.100000 +641 385 5.100000 +641 390 5.100000 +641 487 5.100000 +641 595 5.100000 +641 640 5.100000 +641 654 5.100000 +641 655 5.100000 +641 662 5.100000 +641 669 5.100000 +641 720 5.100000 +641 731 5.100000 +641 736 5.100000 +641 751 5.100000 +642 71 5.100000 +642 76 5.100000 +642 89 5.100000 +642 106 5.100000 +642 139 5.100000 +642 140 5.100000 +642 168 5.100000 +642 182 5.100000 +642 245 5.100000 +642 258 5.100000 +642 267 5.100000 +642 275 5.100000 +642 310 5.100000 +642 384 5.100000 +642 451 5.100000 +642 470 5.100000 +642 498 5.100000 +642 570 5.100000 +642 581 5.100000 +642 638 5.100000 +643 6 5.100000 +643 60 5.100000 +643 68 5.100000 +643 79 5.100000 +643 167 5.100000 +643 181 5.100000 +643 216 5.100000 +643 309 5.100000 +643 315 5.100000 +643 334 5.100000 +643 374 5.100000 +643 375 5.100000 +643 421 5.100000 +643 470 5.100000 +643 486 5.100000 +643 487 5.100000 +643 528 5.100000 +643 532 5.100000 +643 536 5.100000 +643 633 5.100000 +643 635 5.100000 +643 640 5.100000 +643 654 5.100000 +643 711 5.100000 +644 19 5.100000 +644 66 5.100000 +644 127 5.100000 +644 150 5.100000 +644 213 5.100000 +644 216 5.100000 +644 254 5.100000 +644 292 5.100000 +644 308 5.100000 +644 466 5.100000 +644 483 5.100000 +644 585 5.100000 +644 590 5.100000 +644 609 5.100000 +644 699 5.100000 +644 710 5.100000 +644 717 5.100000 +644 792 5.100000 +645 16 5.100000 +645 102 5.100000 +645 107 5.100000 +645 110 5.100000 +645 126 5.100000 +645 133 5.100000 +645 153 5.100000 +645 175 5.100000 +645 189 5.100000 +645 222 5.100000 +645 235 5.100000 +645 257 5.100000 +645 281 5.100000 +645 296 5.100000 +645 299 5.100000 +645 348 5.100000 +645 360 5.100000 +645 455 5.100000 +645 535 5.100000 +645 553 5.100000 +645 601 5.100000 +645 695 5.100000 +645 696 5.100000 +645 715 5.100000 +645 717 5.100000 +646 95 5.100000 +646 137 5.100000 +646 191 5.100000 +646 205 5.100000 +646 213 5.100000 +646 214 5.100000 +646 330 5.100000 +646 335 5.100000 +646 425 5.100000 +646 498 5.100000 +646 548 5.100000 +646 663 5.100000 +646 697 5.100000 +647 39 5.100000 +647 93 5.100000 +647 104 5.100000 +647 198 5.100000 +647 210 5.100000 +647 215 5.100000 +647 320 5.100000 +647 334 5.100000 +647 339 5.100000 +647 566 5.100000 +647 594 5.100000 +647 657 5.100000 +647 694 5.100000 +648 173 5.100000 +648 187 5.100000 +648 216 5.100000 +648 340 5.100000 +648 365 5.100000 +648 366 5.100000 +648 397 5.100000 +648 409 5.100000 +648 435 5.100000 +648 486 5.100000 +648 568 5.100000 +648 587 5.100000 +648 639 5.100000 +648 750 5.100000 +648 795 5.100000 +649 21 5.100000 +649 54 5.100000 +649 60 5.100000 +649 77 5.100000 +649 136 5.100000 +649 255 5.100000 +649 308 5.100000 +649 352 5.100000 +649 406 5.100000 +649 428 5.100000 +649 463 5.100000 +649 529 5.100000 +649 583 5.100000 +649 618 5.100000 +649 671 5.100000 +649 684 5.100000 +649 685 5.100000 +649 712 5.100000 +649 753 5.100000 +650 16 5.100000 +650 29 5.100000 +650 58 5.100000 +650 141 5.100000 +650 202 5.100000 +650 213 5.100000 +650 481 5.100000 +650 532 5.100000 +650 571 5.100000 +650 601 5.100000 +650 741 5.100000 +650 752 5.100000 +650 778 5.100000 +651 7 5.100000 +651 18 5.100000 +651 24 5.100000 +651 144 5.100000 +651 171 5.100000 +651 174 5.100000 +651 353 5.100000 +651 414 5.100000 +651 488 5.100000 +651 582 5.100000 +651 602 5.100000 +651 637 5.100000 +651 712 5.100000 +651 762 5.100000 +652 97 5.100000 +652 115 5.100000 +652 133 5.100000 +652 144 5.100000 +652 176 5.100000 +652 341 5.100000 +652 357 5.100000 +652 438 5.100000 +652 443 5.100000 +652 529 5.100000 +652 603 5.100000 +652 610 5.100000 +652 667 5.100000 +652 697 5.100000 +652 721 5.100000 +652 740 5.100000 +652 752 5.100000 +652 762 5.100000 +652 764 5.100000 +652 780 5.100000 +653 5 5.100000 +653 25 5.100000 +653 120 5.100000 +653 132 5.100000 +653 134 5.100000 +653 180 5.100000 +653 189 5.100000 +653 209 5.100000 +653 239 5.100000 +653 249 5.100000 +653 278 5.100000 +653 306 5.100000 +653 318 5.100000 +653 339 5.100000 +653 481 5.100000 +653 530 5.100000 +653 545 5.100000 +653 763 5.100000 +654 19 5.100000 +654 108 5.100000 +654 167 5.100000 +654 183 5.100000 +654 206 5.100000 +654 303 5.100000 +654 346 5.100000 +654 379 5.100000 +654 411 5.100000 +654 462 5.100000 +654 487 5.100000 +654 521 5.100000 +654 552 5.100000 +654 557 5.100000 +654 619 5.100000 +654 667 5.100000 +654 683 5.100000 +654 701 5.100000 +654 784 5.100000 +654 799 5.100000 +655 9 5.100000 +655 55 5.100000 +655 101 5.100000 +655 157 5.100000 +655 188 5.100000 +655 204 5.100000 +655 250 5.100000 +655 349 5.100000 +655 352 5.100000 +655 366 5.100000 +655 367 5.100000 +655 420 5.100000 +655 426 5.100000 +655 446 5.100000 +655 524 5.100000 +655 583 5.100000 +655 585 5.100000 +655 709 5.100000 +656 13 5.100000 +656 35 5.100000 +656 52 5.100000 +656 126 5.100000 +656 139 5.100000 +656 191 5.100000 +656 253 5.100000 +656 262 5.100000 +656 265 5.100000 +656 274 5.100000 +656 300 5.100000 +656 490 5.100000 +656 576 5.100000 +656 596 5.100000 +656 624 5.100000 +656 640 5.100000 +656 710 5.100000 +656 719 5.100000 +656 769 5.100000 +656 776 5.100000 +656 778 5.100000 +657 33 5.100000 +657 35 5.100000 +657 43 5.100000 +657 54 5.100000 +657 150 5.100000 +657 261 5.100000 +657 397 5.100000 +657 502 5.100000 +657 586 5.100000 +657 623 5.100000 +657 798 5.100000 +658 4 5.100000 +658 123 5.100000 +658 133 5.100000 +658 300 5.100000 +658 317 5.100000 +658 401 5.100000 +658 415 5.100000 +658 438 5.100000 +658 457 5.100000 +658 503 5.100000 +658 528 5.100000 +658 535 5.100000 +658 603 5.100000 +658 647 5.100000 +658 657 5.100000 +658 689 5.100000 +658 793 5.100000 +659 46 5.100000 +659 184 5.100000 +659 243 5.100000 +659 276 5.100000 +659 391 5.100000 +659 517 5.100000 +659 634 5.100000 +659 667 5.100000 +659 729 5.100000 +659 761 5.100000 +660 13 5.100000 +660 18 5.100000 +660 26 5.100000 +660 51 5.100000 +660 67 5.100000 +660 228 5.100000 +660 263 5.100000 +660 313 5.100000 +660 326 5.100000 +660 402 5.100000 +660 403 5.100000 +660 417 5.100000 +660 421 5.100000 +660 436 5.100000 +660 444 5.100000 +660 456 5.100000 +660 480 5.100000 +660 554 5.100000 +660 569 5.100000 +660 581 5.100000 +660 708 5.100000 +660 756 5.100000 +660 759 5.100000 +660 798 5.100000 +661 104 5.100000 +661 206 5.100000 +661 242 5.100000 +661 273 5.100000 +661 277 5.100000 +661 378 5.100000 +661 381 5.100000 +661 410 5.100000 +661 417 5.100000 +661 506 5.100000 +661 516 5.100000 +661 625 5.100000 +661 642 5.100000 +661 673 5.100000 +662 53 5.100000 +662 55 5.100000 +662 83 5.100000 +662 104 5.100000 +662 127 5.100000 +662 184 5.100000 +662 223 5.100000 +662 248 5.100000 +662 285 5.100000 +662 292 5.100000 +662 294 5.100000 +662 301 5.100000 +662 342 5.100000 +662 351 5.100000 +662 371 5.100000 +662 457 5.100000 +662 465 5.100000 +662 505 5.100000 +662 515 5.100000 +662 532 5.100000 +662 651 5.100000 +662 675 5.100000 +662 684 5.100000 +662 706 5.100000 +663 220 5.100000 +663 236 5.100000 +663 334 5.100000 +663 344 5.100000 +663 441 5.100000 +663 474 5.100000 +663 529 5.100000 +663 535 5.100000 +663 555 5.100000 +663 573 5.100000 +663 665 5.100000 +663 666 5.100000 +663 693 5.100000 +663 728 5.100000 +664 16 5.100000 +664 93 5.100000 +664 102 5.100000 +664 275 5.100000 +664 296 5.100000 +664 299 5.100000 +664 389 5.100000 +664 429 5.100000 +664 451 5.100000 +664 453 5.100000 +664 600 5.100000 +664 622 5.100000 +664 722 5.100000 +664 755 5.100000 +664 764 5.100000 +664 780 5.100000 +664 788 5.100000 +665 2 5.100000 +665 19 5.100000 +665 174 5.100000 +665 254 5.100000 +665 260 5.100000 +665 269 5.100000 +665 322 5.100000 +665 329 5.100000 +665 360 5.100000 +665 371 5.100000 +665 408 5.100000 +665 476 5.100000 +665 481 5.100000 +665 537 5.100000 +665 554 5.100000 +665 570 5.100000 +665 624 5.100000 +665 689 5.100000 +665 715 5.100000 +665 716 5.100000 +665 762 5.100000 +666 29 5.100000 +666 55 5.100000 +666 96 5.100000 +666 174 5.100000 +666 185 5.100000 +666 191 5.100000 +666 201 5.100000 +666 217 5.100000 +666 228 5.100000 +666 232 5.100000 +666 504 5.100000 +666 558 5.100000 +666 562 5.100000 +666 583 5.100000 +666 589 5.100000 +666 663 5.100000 +666 703 5.100000 +666 737 5.100000 +667 93 5.100000 +667 100 5.100000 +667 124 5.100000 +667 165 5.100000 +667 168 5.100000 +667 183 5.100000 +667 189 5.100000 +667 202 5.100000 +667 276 5.100000 +667 391 5.100000 +667 432 5.100000 +667 445 5.100000 +667 477 5.100000 +667 569 5.100000 +667 737 5.100000 +667 744 5.100000 +667 747 5.100000 +667 760 5.100000 +667 781 5.100000 +668 36 5.100000 +668 39 5.100000 +668 189 5.100000 +668 210 5.100000 +668 253 5.100000 +668 254 5.100000 +668 356 5.100000 +668 411 5.100000 +668 487 5.100000 +668 519 5.100000 +668 542 5.100000 +668 551 5.100000 +668 644 5.100000 +668 650 5.100000 +668 660 5.100000 +669 18 5.100000 +669 22 5.100000 +669 53 5.100000 +669 74 5.100000 +669 121 5.100000 +669 168 5.100000 +669 182 5.100000 +669 287 5.100000 +669 370 5.100000 +669 559 5.100000 +669 667 5.100000 +669 688 5.100000 +669 710 5.100000 +669 720 5.100000 +669 750 5.100000 +670 191 5.100000 +670 198 5.100000 +670 249 5.100000 +670 308 5.100000 +670 351 5.100000 +670 365 5.100000 +670 388 5.100000 +670 407 5.100000 +670 427 5.100000 +670 486 5.100000 +670 611 5.100000 +670 756 5.100000 +670 799 5.100000 +671 209 5.100000 +671 222 5.100000 +671 326 5.100000 +671 373 5.100000 +671 405 5.100000 +671 449 5.100000 +671 470 5.100000 +671 478 5.100000 +671 548 5.100000 +671 581 5.100000 +671 624 5.100000 +672 36 5.100000 +672 46 5.100000 +672 131 5.100000 +672 153 5.100000 +672 347 5.100000 +672 353 5.100000 +672 538 5.100000 +672 545 5.100000 +672 546 5.100000 +672 553 5.100000 +672 564 5.100000 +672 591 5.100000 +672 701 5.100000 +672 759 5.100000 +672 773 5.100000 +673 54 5.100000 +673 154 5.100000 +673 157 5.100000 +673 168 5.100000 +673 196 5.100000 +673 292 5.100000 +673 352 5.100000 +673 387 5.100000 +673 392 5.100000 +673 462 5.100000 +673 474 5.100000 +673 541 5.100000 +673 596 5.100000 +673 651 5.100000 +674 63 5.100000 +674 191 5.100000 +674 261 5.100000 +674 289 5.100000 +674 326 5.100000 +674 343 5.100000 +674 349 5.100000 +674 427 5.100000 +674 461 5.100000 +674 665 5.100000 +674 673 5.100000 +674 698 5.100000 +674 746 5.100000 +674 749 5.100000 +675 41 5.100000 +675 92 5.100000 +675 93 5.100000 +675 122 5.100000 +675 167 5.100000 +675 183 5.100000 +675 194 5.100000 +675 240 5.100000 +675 267 5.100000 +675 268 5.100000 +675 316 5.100000 +675 321 5.100000 +675 341 5.100000 +675 361 5.100000 +675 454 5.100000 +675 543 5.100000 +675 568 5.100000 +675 574 5.100000 +675 594 5.100000 +675 631 5.100000 +675 683 5.100000 +675 715 5.100000 +675 750 5.100000 +675 777 5.100000 +676 10 5.100000 +676 15 5.100000 +676 68 5.100000 +676 79 5.100000 +676 83 5.100000 +676 195 5.100000 +676 206 5.100000 +676 245 5.100000 +676 253 5.100000 +676 305 5.100000 +676 308 5.100000 +676 322 5.100000 +676 328 5.100000 +676 338 5.100000 +676 339 5.100000 +676 361 5.100000 +676 421 5.100000 +676 423 5.100000 +676 440 5.100000 +676 530 5.100000 +676 561 5.100000 +676 598 5.100000 +676 605 5.100000 +676 614 5.100000 +676 714 5.100000 +676 733 5.100000 +676 778 5.100000 +677 63 5.100000 +677 70 5.100000 +677 111 5.100000 +677 221 5.100000 +677 226 5.100000 +677 247 5.100000 +677 335 5.100000 +677 376 5.100000 +677 471 5.100000 +677 533 5.100000 +677 537 5.100000 +677 680 5.100000 +677 685 5.100000 +677 732 5.100000 +677 736 5.100000 +677 743 5.100000 +677 761 5.100000 +678 19 5.100000 +678 95 5.100000 +678 126 5.100000 +678 216 5.100000 +678 224 5.100000 +678 248 5.100000 +678 278 5.100000 +678 313 5.100000 +678 344 5.100000 +678 389 5.100000 +678 714 5.100000 +679 16 5.100000 +679 73 5.100000 +679 74 5.100000 +679 191 5.100000 +679 231 5.100000 +679 306 5.100000 +679 324 5.100000 +679 394 5.100000 +679 477 5.100000 +679 547 5.100000 +679 687 5.100000 +679 689 5.100000 +679 691 5.100000 +679 705 5.100000 +679 708 5.100000 +679 778 5.100000 +679 781 5.100000 +680 98 5.100000 +680 122 5.100000 +680 148 5.100000 +680 192 5.100000 +680 217 5.100000 +680 257 5.100000 +680 297 5.100000 +680 448 5.100000 +680 459 5.100000 +680 656 5.100000 +680 674 5.100000 +680 696 5.100000 +680 755 5.100000 +681 48 5.100000 +681 108 5.100000 +681 148 5.100000 +681 166 5.100000 +681 169 5.100000 +681 229 5.100000 +681 343 5.100000 +681 369 5.100000 +681 425 5.100000 +681 474 5.100000 +681 506 5.100000 +681 552 5.100000 +681 677 5.100000 +681 682 5.100000 +681 713 5.100000 +681 738 5.100000 +682 198 5.100000 +682 221 5.100000 +682 415 5.100000 +682 464 5.100000 +682 501 5.100000 +682 578 5.100000 +682 631 5.100000 +682 763 5.100000 +683 114 5.100000 +683 144 5.100000 +683 283 5.100000 +683 508 5.100000 +683 592 5.100000 +683 657 5.100000 +683 705 5.100000 +683 777 5.100000 +684 143 5.100000 +684 227 5.100000 +684 308 5.100000 +684 350 5.100000 +684 413 5.100000 +684 427 5.100000 +684 438 5.100000 +684 490 5.100000 +684 565 5.100000 +684 614 5.100000 +684 781 5.100000 +685 30 5.100000 +685 56 5.100000 +685 156 5.100000 +685 179 5.100000 +685 208 5.100000 +685 278 5.100000 +685 330 5.100000 +685 417 5.100000 +685 540 5.100000 +685 607 5.100000 +685 643 5.100000 +685 648 5.100000 +685 728 5.100000 +685 756 5.100000 +686 24 5.100000 +686 39 5.100000 +686 43 5.100000 +686 100 5.100000 +686 202 5.100000 +686 263 5.100000 +686 278 5.100000 +686 329 5.100000 +686 341 5.100000 +686 395 5.100000 +686 520 5.100000 +686 523 5.100000 +686 530 5.100000 +686 559 5.100000 +686 573 5.100000 +686 654 5.100000 +686 722 5.100000 +687 16 5.100000 +687 170 5.100000 +687 258 5.100000 +687 358 5.100000 +687 376 5.100000 +687 383 5.100000 +687 467 5.100000 +687 473 5.100000 +687 506 5.100000 +687 574 5.100000 +687 645 5.100000 +687 677 5.100000 +687 723 5.100000 +688 172 5.100000 +688 241 5.100000 +688 263 5.100000 +688 284 5.100000 +688 318 5.100000 +688 365 5.100000 +688 455 5.100000 +688 496 5.100000 +688 528 5.100000 +688 546 5.100000 +688 550 5.100000 +688 559 5.100000 +688 574 5.100000 +688 596 5.100000 +688 684 5.100000 +689 56 5.100000 +689 61 5.100000 +689 187 5.100000 +689 257 5.100000 +689 435 5.100000 +689 503 5.100000 +689 534 5.100000 +689 593 5.100000 +689 704 5.100000 +690 74 5.100000 +690 178 5.100000 +690 186 5.100000 +690 226 5.100000 +690 267 5.100000 +690 273 5.100000 +690 288 5.100000 +690 307 5.100000 +690 528 5.100000 +690 535 5.100000 +690 550 5.100000 +690 629 5.100000 +690 676 5.100000 +690 687 5.100000 +691 5 5.100000 +691 8 5.100000 +691 9 5.100000 +691 95 5.100000 +691 102 5.100000 +691 137 5.100000 +691 214 5.100000 +691 266 5.100000 +691 377 5.100000 +691 432 5.100000 +691 558 5.100000 +691 681 5.100000 +691 709 5.100000 +691 770 5.100000 +692 59 5.100000 +692 157 5.100000 +692 350 5.100000 +692 351 5.100000 +692 369 5.100000 +692 442 5.100000 +692 541 5.100000 +692 555 5.100000 +692 585 5.100000 +692 631 5.100000 +692 664 5.100000 +692 668 5.100000 +692 680 5.100000 +692 690 5.100000 +692 735 5.100000 +692 744 5.100000 +692 757 5.100000 +693 55 5.100000 +693 87 5.100000 +693 97 5.100000 +693 140 5.100000 +693 199 5.100000 +693 218 5.100000 +693 286 5.100000 +693 326 5.100000 +693 352 5.100000 +693 399 5.100000 +693 409 5.100000 +693 426 5.100000 +693 443 5.100000 +693 516 5.100000 +693 533 5.100000 +693 597 5.100000 +693 599 5.100000 +693 800 5.100000 +694 21 5.100000 +694 50 5.100000 +694 139 5.100000 +694 210 5.100000 +694 258 5.100000 +694 283 5.100000 +694 359 5.100000 +694 398 5.100000 +694 430 5.100000 +694 541 5.100000 +694 567 5.100000 +694 572 5.100000 +694 681 5.100000 +694 693 5.100000 +694 708 5.100000 +695 50 5.100000 +695 60 5.100000 +695 106 5.100000 +695 128 5.100000 +695 142 5.100000 +695 236 5.100000 +695 315 5.100000 +695 415 5.100000 +695 454 5.100000 +695 456 5.100000 +695 534 5.100000 +695 540 5.100000 +695 688 5.100000 +696 1 5.100000 +696 12 5.100000 +696 186 5.100000 +696 228 5.100000 +696 238 5.100000 +696 299 5.100000 +696 380 5.100000 +696 429 5.100000 +696 431 5.100000 +696 485 5.100000 +696 571 5.100000 +696 643 5.100000 +696 659 5.100000 +696 726 5.100000 +696 741 5.100000 +696 794 5.100000 +697 16 5.100000 +697 20 5.100000 +697 21 5.100000 +697 104 5.100000 +697 161 5.100000 +697 174 5.100000 +697 247 5.100000 +697 260 5.100000 +697 343 5.100000 +697 350 5.100000 +697 370 5.100000 +697 453 5.100000 +697 500 5.100000 +697 567 5.100000 +697 583 5.100000 +697 692 5.100000 +697 754 5.100000 +697 781 5.100000 +697 783 5.100000 +697 787 5.100000 +697 798 5.100000 +698 68 5.100000 +698 70 5.100000 +698 120 5.100000 +698 180 5.100000 +698 199 5.100000 +698 203 5.100000 +698 211 5.100000 +698 232 5.100000 +698 262 5.100000 +698 277 5.100000 +698 280 5.100000 +698 318 5.100000 +698 436 5.100000 +698 446 5.100000 +698 464 5.100000 +698 476 5.100000 +698 565 5.100000 +698 569 5.100000 +698 601 5.100000 +698 608 5.100000 +698 691 5.100000 +698 716 5.100000 +698 737 5.100000 +698 760 5.100000 +698 762 5.100000 +698 763 5.100000 +699 4 5.100000 +699 20 5.100000 +699 26 5.100000 +699 84 5.100000 +699 153 5.100000 +699 362 5.100000 +699 401 5.100000 +699 404 5.100000 +699 406 5.100000 +699 409 5.100000 +699 434 5.100000 +699 453 5.100000 +699 556 5.100000 +699 577 5.100000 +699 595 5.100000 +699 673 5.100000 +699 785 5.100000 +700 43 5.100000 +700 71 5.100000 +700 86 5.100000 +700 87 5.100000 +700 120 5.100000 +700 142 5.100000 +700 143 5.100000 +700 188 5.100000 +700 297 5.100000 +700 362 5.100000 +700 388 5.100000 +700 445 5.100000 +700 534 5.100000 +700 630 5.100000 +700 665 5.100000 +700 677 5.100000 +700 795 5.100000 +701 4 5.100000 +701 36 5.100000 +701 132 5.100000 +701 152 5.100000 +701 233 5.100000 +701 249 5.100000 +701 305 5.100000 +701 340 5.100000 +701 482 5.100000 +701 557 5.100000 +701 592 5.100000 +701 642 5.100000 +701 650 5.100000 +701 663 5.100000 +702 21 5.100000 +702 22 5.100000 +702 87 5.100000 +702 164 5.100000 +702 206 5.100000 +702 243 5.100000 +702 268 5.100000 +702 285 5.100000 +702 290 5.100000 +702 544 5.100000 +702 615 5.100000 +702 660 5.100000 +702 665 5.100000 +702 698 5.100000 +702 703 5.100000 +702 741 5.100000 +702 769 5.100000 +703 21 5.100000 +703 23 5.100000 +703 48 5.100000 +703 59 5.100000 +703 84 5.100000 +703 86 5.100000 +703 134 5.100000 +703 136 5.100000 +703 228 5.100000 +703 279 5.100000 +703 311 5.100000 +703 351 5.100000 +703 380 5.100000 +703 560 5.100000 +703 579 5.100000 +703 604 5.100000 +703 652 5.100000 +703 668 5.100000 +703 764 5.100000 +704 4 5.100000 +704 38 5.100000 +704 41 5.100000 +704 51 5.100000 +704 140 5.100000 +704 153 5.100000 +704 180 5.100000 +704 250 5.100000 +704 287 5.100000 +704 460 5.100000 +704 532 5.100000 +704 552 5.100000 +704 562 5.100000 +704 636 5.100000 +704 638 5.100000 +704 647 5.100000 +704 668 5.100000 +704 757 5.100000 +704 775 5.100000 +704 792 5.100000 +705 88 5.100000 +705 182 5.100000 +705 203 5.100000 +705 242 5.100000 +705 324 5.100000 +705 382 5.100000 +705 386 5.100000 +705 402 5.100000 +705 496 5.100000 +705 499 5.100000 +705 502 5.100000 +705 696 5.100000 +705 762 5.100000 +706 55 5.100000 +706 73 5.100000 +706 182 5.100000 +706 198 5.100000 +706 234 5.100000 +706 236 5.100000 +706 333 5.100000 +706 335 5.100000 +706 379 5.100000 +706 399 5.100000 +706 409 5.100000 +706 453 5.100000 +706 512 5.100000 +706 586 5.100000 +706 659 5.100000 +706 664 5.100000 +706 681 5.100000 +707 5 5.100000 +707 54 5.100000 +707 256 5.100000 +707 376 5.100000 +707 382 5.100000 +707 470 5.100000 +707 485 5.100000 +707 610 5.100000 +708 1 5.100000 +708 7 5.100000 +708 112 5.100000 +708 129 5.100000 +708 185 5.100000 +708 227 5.100000 +708 304 5.100000 +708 346 5.100000 +708 347 5.100000 +708 418 5.100000 +708 489 5.100000 +708 503 5.100000 +708 509 5.100000 +708 659 5.100000 +708 663 5.100000 +708 680 5.100000 +708 681 5.100000 +708 723 5.100000 +708 775 5.100000 +708 776 5.100000 +708 785 5.100000 +709 64 5.100000 +709 74 5.100000 +709 273 5.100000 +709 302 5.100000 +709 311 5.100000 +709 323 5.100000 +709 325 5.100000 +709 375 5.100000 +709 396 5.100000 +709 402 5.100000 +709 420 5.100000 +709 463 5.100000 +709 482 5.100000 +709 541 5.100000 +709 548 5.100000 +709 575 5.100000 +709 701 5.100000 +710 7 5.100000 +710 24 5.100000 +710 50 5.100000 +710 116 5.100000 +710 133 5.100000 +710 151 5.100000 +710 175 5.100000 +710 373 5.100000 +710 382 5.100000 +710 442 5.100000 +710 545 5.100000 +710 581 5.100000 +710 692 5.100000 +710 718 5.100000 +711 3 5.100000 +711 8 5.100000 +711 24 5.100000 +711 87 5.100000 +711 263 5.100000 +711 306 5.100000 +711 314 5.100000 +711 374 5.100000 +711 444 5.100000 +711 469 5.100000 +711 472 5.100000 +711 520 5.100000 +711 522 5.100000 +711 529 5.100000 +711 556 5.100000 +711 679 5.100000 +711 686 5.100000 +711 710 5.100000 +711 775 5.100000 +712 30 5.100000 +712 157 5.100000 +712 160 5.100000 +712 169 5.100000 +712 225 5.100000 +712 270 5.100000 +712 300 5.100000 +712 310 5.100000 +712 343 5.100000 +712 489 5.100000 +712 490 5.100000 +712 551 5.100000 +712 589 5.100000 +712 591 5.100000 +712 616 5.100000 +712 660 5.100000 +712 665 5.100000 +712 739 5.100000 +713 59 5.100000 +713 127 5.100000 +713 141 5.100000 +713 252 5.100000 +713 329 5.100000 +713 358 5.100000 +713 420 5.100000 +713 450 5.100000 +713 455 5.100000 +713 471 5.100000 +713 581 5.100000 +713 670 5.100000 +713 707 5.100000 +713 715 5.100000 +713 740 5.100000 +714 41 5.100000 +714 43 5.100000 +714 194 5.100000 +714 303 5.100000 +714 315 5.100000 +714 355 5.100000 +714 360 5.100000 +714 384 5.100000 +714 531 5.100000 +714 673 5.100000 +714 677 5.100000 +715 265 5.100000 +715 285 5.100000 +715 296 5.100000 +715 318 5.100000 +715 440 5.100000 +715 442 5.100000 +715 459 5.100000 +715 470 5.100000 +715 490 5.100000 +715 529 5.100000 +715 561 5.100000 +715 581 5.100000 +715 590 5.100000 +715 677 5.100000 +715 690 5.100000 +715 769 5.100000 +716 21 5.100000 +716 80 5.100000 +716 90 5.100000 +716 99 5.100000 +716 114 5.100000 +716 134 5.100000 +716 150 5.100000 +716 154 5.100000 +716 198 5.100000 +716 229 5.100000 +716 349 5.100000 +716 473 5.100000 +716 519 5.100000 +716 564 5.100000 +716 567 5.100000 +716 577 5.100000 +716 595 5.100000 +716 625 5.100000 +716 626 5.100000 +716 637 5.100000 +716 779 5.100000 +716 781 5.100000 +717 7 5.100000 +717 10 5.100000 +717 95 5.100000 +717 109 5.100000 +717 145 5.100000 +717 209 5.100000 +717 227 5.100000 +717 344 5.100000 +717 353 5.100000 +717 417 5.100000 +717 421 5.100000 +717 463 5.100000 +717 518 5.100000 +717 557 5.100000 +717 598 5.100000 +717 635 5.100000 +717 650 5.100000 +717 711 5.100000 +717 794 5.100000 +717 800 5.100000 +718 87 5.100000 +718 135 5.100000 +718 169 5.100000 +718 237 5.100000 +718 253 5.100000 +718 374 5.100000 +718 435 5.100000 +718 489 5.100000 +718 795 5.100000 +719 53 5.100000 +719 82 5.100000 +719 182 5.100000 +719 185 5.100000 +719 209 5.100000 +719 216 5.100000 +719 245 5.100000 +719 271 5.100000 +719 288 5.100000 +719 403 5.100000 +719 425 5.100000 +719 427 5.100000 +719 433 5.100000 +719 454 5.100000 +719 488 5.100000 +719 633 5.100000 +719 665 5.100000 +719 769 5.100000 +720 3 5.100000 +720 97 5.100000 +720 105 5.100000 +720 132 5.100000 +720 144 5.100000 +720 156 5.100000 +720 272 5.100000 +720 433 5.100000 +720 472 5.100000 +720 615 5.100000 +720 649 5.100000 +720 787 5.100000 +721 3 5.100000 +721 12 5.100000 +721 27 5.100000 +721 29 5.100000 +721 37 5.100000 +721 83 5.100000 +721 152 5.100000 +721 229 5.100000 +721 236 5.100000 +721 242 5.100000 +721 277 5.100000 +721 305 5.100000 +721 360 5.100000 +721 369 5.100000 +721 399 5.100000 +721 424 5.100000 +721 446 5.100000 +721 472 5.100000 +721 479 5.100000 +721 489 5.100000 +721 496 5.100000 +721 499 5.100000 +721 590 5.100000 +721 646 5.100000 +721 659 5.100000 +721 674 5.100000 +721 679 5.100000 +721 698 5.100000 +721 774 5.100000 +721 779 5.100000 +721 799 5.100000 +722 66 5.100000 +722 140 5.100000 +722 186 5.100000 +722 188 5.100000 +722 206 5.100000 +722 248 5.100000 +722 260 5.100000 +722 262 5.100000 +722 288 5.100000 +722 342 5.100000 +722 347 5.100000 +722 407 5.100000 +722 433 5.100000 +722 439 5.100000 +722 471 5.100000 +722 483 5.100000 +722 512 5.100000 +722 534 5.100000 +722 689 5.100000 +722 793 5.100000 +723 23 5.100000 +723 25 5.100000 +723 72 5.100000 +723 110 5.100000 +723 255 5.100000 +723 306 5.100000 +723 330 5.100000 +723 375 5.100000 +723 391 5.100000 +723 452 5.100000 +723 614 5.100000 +723 628 5.100000 +723 701 5.100000 +723 721 5.100000 +723 743 5.100000 +724 52 5.100000 +724 70 5.100000 +724 100 5.100000 +724 167 5.100000 +724 244 5.100000 +724 310 5.100000 +724 312 5.100000 +724 336 5.100000 +724 393 5.100000 +724 490 5.100000 +724 553 5.100000 +724 585 5.100000 +724 611 5.100000 +724 620 5.100000 +724 629 5.100000 +724 693 5.100000 +724 733 5.100000 +724 775 5.100000 +725 51 5.100000 +725 140 5.100000 +725 159 5.100000 +725 162 5.100000 +725 218 5.100000 +725 221 5.100000 +725 243 5.100000 +725 282 5.100000 +725 287 5.100000 +725 345 5.100000 +725 417 5.100000 +725 483 5.100000 +725 564 5.100000 +725 617 5.100000 +725 623 5.100000 +725 624 5.100000 +725 658 5.100000 +725 716 5.100000 +726 140 5.100000 +726 212 5.100000 +726 282 5.100000 +726 301 5.100000 +726 325 5.100000 +726 445 5.100000 +726 457 5.100000 +726 531 5.100000 +726 592 5.100000 +726 718 5.100000 +726 744 5.100000 +726 753 5.100000 +727 15 5.100000 +727 59 5.100000 +727 151 5.100000 +727 201 5.100000 +727 211 5.100000 +727 221 5.100000 +727 311 5.100000 +727 323 5.100000 +727 332 5.100000 +727 339 5.100000 +727 379 5.100000 +727 420 5.100000 +727 501 5.100000 +727 585 5.100000 +727 589 5.100000 +727 669 5.100000 +727 672 5.100000 +728 80 5.100000 +728 147 5.100000 +728 188 5.100000 +728 258 5.100000 +728 272 5.100000 +728 354 5.100000 +728 355 5.100000 +728 368 5.100000 +728 378 5.100000 +728 398 5.100000 +728 417 5.100000 +728 471 5.100000 +728 537 5.100000 +728 572 5.100000 +728 611 5.100000 +728 642 5.100000 +728 781 5.100000 +729 39 5.100000 +729 82 5.100000 +729 134 5.100000 +729 135 5.100000 +729 146 5.100000 +729 156 5.100000 +729 187 5.100000 +729 215 5.100000 +729 277 5.100000 +729 288 5.100000 +729 294 5.100000 +729 338 5.100000 +729 375 5.100000 +729 401 5.100000 +729 498 5.100000 +729 520 5.100000 +729 540 5.100000 +729 544 5.100000 +729 567 5.100000 +729 581 5.100000 +729 601 5.100000 +729 771 5.100000 +729 772 5.100000 +730 96 5.100000 +730 105 5.100000 +730 110 5.100000 +730 116 5.100000 +730 131 5.100000 +730 278 5.100000 +730 447 5.100000 +730 462 5.100000 +730 473 5.100000 +730 523 5.100000 +730 552 5.100000 +730 634 5.100000 +730 647 5.100000 +730 682 5.100000 +730 687 5.100000 +730 769 5.100000 +731 11 5.100000 +731 26 5.100000 +731 98 5.100000 +731 112 5.100000 +731 152 5.100000 +731 246 5.100000 +731 258 5.100000 +731 259 5.100000 +731 299 5.100000 +731 348 5.100000 +731 408 5.100000 +731 412 5.100000 +731 443 5.100000 +731 452 5.100000 +731 455 5.100000 +731 499 5.100000 +731 519 5.100000 +731 534 5.100000 +731 547 5.100000 +731 609 5.100000 +731 629 5.100000 +731 664 5.100000 +731 673 5.100000 +732 20 5.100000 +732 26 5.100000 +732 36 5.100000 +732 57 5.100000 +732 91 5.100000 +732 201 5.100000 +732 257 5.100000 +732 299 5.100000 +732 306 5.100000 +732 323 5.100000 +732 342 5.100000 +732 386 5.100000 +732 403 5.100000 +732 492 5.100000 +732 607 5.100000 +732 643 5.100000 +732 678 5.100000 +733 70 5.100000 +733 116 5.100000 +733 199 5.100000 +733 315 5.100000 +733 323 5.100000 +733 348 5.100000 +733 407 5.100000 +733 447 5.100000 +733 486 5.100000 +733 537 5.100000 +733 550 5.100000 +733 568 5.100000 +733 582 5.100000 +733 601 5.100000 +733 621 5.100000 +733 624 5.100000 +733 648 5.100000 +733 676 5.100000 +734 15 5.100000 +734 50 5.100000 +734 61 5.100000 +734 81 5.100000 +734 113 5.100000 +734 151 5.100000 +734 250 5.100000 +734 344 5.100000 +734 354 5.100000 +734 466 5.100000 +734 493 5.100000 +734 508 5.100000 +734 555 5.100000 +734 656 5.100000 +734 665 5.100000 +734 666 5.100000 +734 688 5.100000 +734 707 5.100000 +734 712 5.100000 +734 737 5.100000 +734 777 5.100000 +734 798 5.100000 +735 2 5.100000 +735 64 5.100000 +735 81 5.100000 +735 96 5.100000 +735 143 5.100000 +735 182 5.100000 +735 193 5.100000 +735 206 5.100000 +735 257 5.100000 +735 285 5.100000 +735 291 5.100000 +735 296 5.100000 +735 333 5.100000 +735 423 5.100000 +735 451 5.100000 +735 530 5.100000 +735 587 5.100000 +735 621 5.100000 +735 649 5.100000 +735 689 5.100000 +735 779 5.100000 +735 789 5.100000 +736 7 5.100000 +736 112 5.100000 +736 129 5.100000 +736 185 5.100000 +736 206 5.100000 +736 405 5.100000 +736 561 5.100000 +736 569 5.100000 +736 574 5.100000 +736 593 5.100000 +736 660 5.100000 +736 688 5.100000 +736 710 5.100000 +736 731 5.100000 +736 745 5.100000 +737 22 5.100000 +737 34 5.100000 +737 56 5.100000 +737 78 5.100000 +737 109 5.100000 +737 167 5.100000 +737 294 5.100000 +737 320 5.100000 +737 346 5.100000 +737 382 5.100000 +737 390 5.100000 +737 393 5.100000 +737 448 5.100000 +737 471 5.100000 +737 472 5.100000 +737 476 5.100000 +737 484 5.100000 +737 502 5.100000 +737 503 5.100000 +737 565 5.100000 +737 617 5.100000 +737 648 5.100000 +737 673 5.100000 +737 770 5.100000 +738 3 5.100000 +738 136 5.100000 +738 145 5.100000 +738 155 5.100000 +738 162 5.100000 +738 353 5.100000 +738 362 5.100000 +738 472 5.100000 +738 482 5.100000 +738 544 5.100000 +738 572 5.100000 +738 671 5.100000 +738 676 5.100000 +738 697 5.100000 +738 706 5.100000 +738 729 5.100000 +739 75 5.100000 +739 104 5.100000 +739 210 5.100000 +739 212 5.100000 +739 224 5.100000 +739 343 5.100000 +739 360 5.100000 +739 465 5.100000 +739 483 5.100000 +739 551 5.100000 +739 739 5.100000 +740 13 5.100000 +740 91 5.100000 +740 147 5.100000 +740 152 5.100000 +740 157 5.100000 +740 176 5.100000 +740 198 5.100000 +740 200 5.100000 +740 266 5.100000 +740 280 5.100000 +740 300 5.100000 +740 303 5.100000 +740 430 5.100000 +740 509 5.100000 +740 571 5.100000 +740 681 5.100000 +740 682 5.100000 +740 770 5.100000 +740 781 5.100000 +740 791 5.100000 +741 61 5.100000 +741 147 5.100000 +741 238 5.100000 +741 324 5.100000 +741 332 5.100000 +741 434 5.100000 +741 457 5.100000 +741 458 5.100000 +741 465 5.100000 +741 535 5.100000 +741 582 5.100000 +741 657 5.100000 +741 690 5.100000 +741 714 5.100000 +741 729 5.100000 +741 772 5.100000 +741 783 5.100000 +742 77 5.100000 +742 121 5.100000 +742 192 5.100000 +742 202 5.100000 +742 276 5.100000 +742 332 5.100000 +742 394 5.100000 +742 509 5.100000 +742 638 5.100000 +742 684 5.100000 +742 786 5.100000 +743 25 5.100000 +743 95 5.100000 +743 132 5.100000 +743 141 5.100000 +743 153 5.100000 +743 183 5.100000 +743 200 5.100000 +743 369 5.100000 +743 385 5.100000 +743 497 5.100000 +743 513 5.100000 +743 580 5.100000 +743 613 5.100000 +743 638 5.100000 +743 653 5.100000 +743 727 5.100000 +743 735 5.100000 +743 747 5.100000 +743 792 5.100000 +744 33 5.100000 +744 118 5.100000 +744 138 5.100000 +744 162 5.100000 +744 166 5.100000 +744 189 5.100000 +744 223 5.100000 +744 352 5.100000 +744 442 5.100000 +744 553 5.100000 +744 674 5.100000 +744 683 5.100000 +744 744 5.100000 +745 68 5.100000 +745 184 5.100000 +745 207 5.100000 +745 211 5.100000 +745 299 5.100000 +745 324 5.100000 +745 367 5.100000 +745 440 5.100000 +745 479 5.100000 +745 508 5.100000 +745 540 5.100000 +745 610 5.100000 +745 618 5.100000 +745 625 5.100000 +745 751 5.100000 +745 776 5.100000 +746 26 5.100000 +746 47 5.100000 +746 54 5.100000 +746 108 5.100000 +746 155 5.100000 +746 206 5.100000 +746 338 5.100000 +746 344 5.100000 +746 351 5.100000 +746 372 5.100000 +746 391 5.100000 +746 459 5.100000 +746 478 5.100000 +746 545 5.100000 +746 735 5.100000 +747 2 5.100000 +747 28 5.100000 +747 75 5.100000 +747 80 5.100000 +747 141 5.100000 +747 163 5.100000 +747 292 5.100000 +747 320 5.100000 +747 454 5.100000 +747 468 5.100000 +747 472 5.100000 +747 539 5.100000 +747 547 5.100000 +747 574 5.100000 +747 610 5.100000 +747 749 5.100000 +747 798 5.100000 +748 94 5.100000 +748 142 5.100000 +748 160 5.100000 +748 235 5.100000 +748 259 5.100000 +748 371 5.100000 +748 400 5.100000 +748 408 5.100000 +748 616 5.100000 +748 619 5.100000 +748 705 5.100000 +748 745 5.100000 +748 780 5.100000 +749 1 5.100000 +749 55 5.100000 +749 227 5.100000 +749 286 5.100000 +749 371 5.100000 +749 389 5.100000 +749 427 5.100000 +749 487 5.100000 +749 620 5.100000 +749 636 5.100000 +749 658 5.100000 +749 684 5.100000 +749 743 5.100000 +749 762 5.100000 +749 767 5.100000 +750 157 5.100000 +750 167 5.100000 +750 170 5.100000 +750 212 5.100000 +750 308 5.100000 +750 310 5.100000 +750 451 5.100000 +750 558 5.100000 +750 566 5.100000 +750 610 5.100000 +750 711 5.100000 +750 720 5.100000 +751 4 5.100000 +751 19 5.100000 +751 36 5.100000 +751 78 5.100000 +751 100 5.100000 +751 143 5.100000 +751 237 5.100000 +751 251 5.100000 +751 253 5.100000 +751 279 5.100000 +751 314 5.100000 +751 360 5.100000 +751 412 5.100000 +751 496 5.100000 +751 509 5.100000 +751 556 5.100000 +751 612 5.100000 +752 17 5.100000 +752 114 5.100000 +752 176 5.100000 +752 193 5.100000 +752 319 5.100000 +752 403 5.100000 +752 411 5.100000 +752 537 5.100000 +752 553 5.100000 +752 564 5.100000 +752 609 5.100000 +752 691 5.100000 +752 709 5.100000 +752 736 5.100000 +752 795 5.100000 +753 93 5.100000 +753 115 5.100000 +753 117 5.100000 +753 143 5.100000 +753 181 5.100000 +753 285 5.100000 +753 301 5.100000 +753 401 5.100000 +753 405 5.100000 +753 409 5.100000 +753 455 5.100000 +753 456 5.100000 +753 497 5.100000 +753 502 5.100000 +753 527 5.100000 +753 748 5.100000 +753 780 5.100000 +753 789 5.100000 +754 75 5.100000 +754 78 5.100000 +754 89 5.100000 +754 160 5.100000 +754 176 5.100000 +754 204 5.100000 +754 336 5.100000 +754 393 5.100000 +754 418 5.100000 +754 426 5.100000 +754 433 5.100000 +754 523 5.100000 +754 544 5.100000 +754 555 5.100000 +754 591 5.100000 +754 651 5.100000 +754 750 5.100000 +755 9 5.100000 +755 37 5.100000 +755 39 5.100000 +755 120 5.100000 +755 168 5.100000 +755 176 5.100000 +755 287 5.100000 +755 302 5.100000 +755 340 5.100000 +755 345 5.100000 +755 366 5.100000 +755 409 5.100000 +755 656 5.100000 +755 678 5.100000 +755 726 5.100000 +756 14 5.100000 +756 63 5.100000 +756 112 5.100000 +756 120 5.100000 +756 150 5.100000 +756 159 5.100000 +756 205 5.100000 +756 233 5.100000 +756 246 5.100000 +756 279 5.100000 +756 302 5.100000 +756 304 5.100000 +756 321 5.100000 +756 367 5.100000 +756 474 5.100000 +756 521 5.100000 +756 552 5.100000 +756 618 5.100000 +756 643 5.100000 +756 645 5.100000 +756 651 5.100000 +756 684 5.100000 +756 762 5.100000 +757 58 5.100000 +757 97 5.100000 +757 143 5.100000 +757 144 5.100000 +757 159 5.100000 +757 505 5.100000 +757 523 5.100000 +757 528 5.100000 +757 529 5.100000 +757 555 5.100000 +757 590 5.100000 +757 635 5.100000 +757 649 5.100000 +757 739 5.100000 +758 35 5.100000 +758 38 5.100000 +758 170 5.100000 +758 194 5.100000 +758 257 5.100000 +758 333 5.100000 +758 395 5.100000 +758 469 5.100000 +758 473 5.100000 +758 475 5.100000 +758 541 5.100000 +758 553 5.100000 +758 624 5.100000 +758 689 5.100000 +758 765 5.100000 +759 166 5.100000 +759 188 5.100000 +759 297 5.100000 +759 310 5.100000 +759 311 5.100000 +759 326 5.100000 +759 330 5.100000 +759 331 5.100000 +759 340 5.100000 +759 433 5.100000 +759 508 5.100000 +759 525 5.100000 +759 533 5.100000 +759 553 5.100000 +759 677 5.100000 +759 719 5.100000 +759 755 5.100000 +759 775 5.100000 +760 65 5.100000 +760 76 5.100000 +760 83 5.100000 +760 113 5.100000 +760 126 5.100000 +760 144 5.100000 +760 225 5.100000 +760 298 5.100000 +760 399 5.100000 +760 491 5.100000 +760 563 5.100000 +760 595 5.100000 +760 630 5.100000 +760 717 5.100000 +761 14 5.100000 +761 38 5.100000 +761 85 5.100000 +761 102 5.100000 +761 139 5.100000 +761 146 5.100000 +761 150 5.100000 +761 275 5.100000 +761 298 5.100000 +761 304 5.100000 +761 315 5.100000 +761 323 5.100000 +761 338 5.100000 +761 373 5.100000 +761 379 5.100000 +761 623 5.100000 +761 673 5.100000 +761 696 5.100000 +761 731 5.100000 +761 773 5.100000 +761 788 5.100000 +762 114 5.100000 +762 119 5.100000 +762 351 5.100000 +762 526 5.100000 +762 531 5.100000 +762 536 5.100000 +762 594 5.100000 +762 606 5.100000 +762 654 5.100000 +762 673 5.100000 +762 744 5.100000 +762 745 5.100000 +762 782 5.100000 +763 66 5.100000 +763 126 5.100000 +763 147 5.100000 +763 149 5.100000 +763 208 5.100000 +763 242 5.100000 +763 261 5.100000 +763 282 5.100000 +763 311 5.100000 +763 405 5.100000 +763 451 5.100000 +763 479 5.100000 +763 485 5.100000 +763 539 5.100000 +763 577 5.100000 +763 579 5.100000 +763 705 5.100000 +763 721 5.100000 +763 753 5.100000 +763 763 5.100000 +763 781 5.100000 +764 71 5.100000 +764 81 5.100000 +764 92 5.100000 +764 194 5.100000 +764 297 5.100000 +764 317 5.100000 +764 364 5.100000 +764 373 5.100000 +764 412 5.100000 +764 418 5.100000 +764 456 5.100000 +764 484 5.100000 +764 485 5.100000 +764 616 5.100000 +764 621 5.100000 +764 712 5.100000 +764 750 5.100000 +764 789 5.100000 +765 9 5.100000 +765 73 5.100000 +765 166 5.100000 +765 232 5.100000 +765 318 5.100000 +765 349 5.100000 +765 354 5.100000 +765 359 5.100000 +765 404 5.100000 +765 442 5.100000 +765 562 5.100000 +765 585 5.100000 +765 719 5.100000 +765 760 5.100000 +765 796 5.100000 +766 33 5.100000 +766 34 5.100000 +766 43 5.100000 +766 59 5.100000 +766 86 5.100000 +766 103 5.100000 +766 211 5.100000 +766 219 5.100000 +766 255 5.100000 +766 330 5.100000 +766 414 5.100000 +766 438 5.100000 +766 551 5.100000 +766 700 5.100000 +767 55 5.100000 +767 72 5.100000 +767 314 5.100000 +767 372 5.100000 +767 393 5.100000 +767 488 5.100000 +767 514 5.100000 +767 603 5.100000 +767 611 5.100000 +767 623 5.100000 +767 634 5.100000 +767 641 5.100000 +767 685 5.100000 +767 761 5.100000 +767 773 5.100000 +768 25 5.100000 +768 150 5.100000 +768 197 5.100000 +768 234 5.100000 +768 335 5.100000 +768 411 5.100000 +768 573 5.100000 +768 645 5.100000 +768 653 5.100000 +768 665 5.100000 +768 690 5.100000 +768 727 5.100000 +768 765 5.100000 +769 35 5.100000 +769 51 5.100000 +769 69 5.100000 +769 112 5.100000 +769 177 5.100000 +769 251 5.100000 +769 332 5.100000 +769 354 5.100000 +769 422 5.100000 +769 573 5.100000 +769 577 5.100000 +769 617 5.100000 +769 734 5.100000 +769 775 5.100000 +769 788 5.100000 +770 27 5.100000 +770 35 5.100000 +770 60 5.100000 +770 85 5.100000 +770 88 5.100000 +770 108 5.100000 +770 132 5.100000 +770 135 5.100000 +770 138 5.100000 +770 155 5.100000 +770 299 5.100000 +770 327 5.100000 +770 349 5.100000 +770 354 5.100000 +770 486 5.100000 +770 494 5.100000 +770 501 5.100000 +770 573 5.100000 +770 734 5.100000 +770 736 5.100000 +770 788 5.100000 +771 45 5.100000 +771 87 5.100000 +771 209 5.100000 +771 257 5.100000 +771 266 5.100000 +771 320 5.100000 +771 367 5.100000 +771 443 5.100000 +771 512 5.100000 +771 517 5.100000 +771 530 5.100000 +771 535 5.100000 +771 542 5.100000 +771 561 5.100000 +771 589 5.100000 +771 599 5.100000 +771 621 5.100000 +771 634 5.100000 +771 772 5.100000 +771 783 5.100000 +772 1 5.100000 +772 250 5.100000 +772 267 5.100000 +772 311 5.100000 +772 353 5.100000 +772 399 5.100000 +772 442 5.100000 +772 465 5.100000 +772 615 5.100000 +772 644 5.100000 +772 659 5.100000 +772 727 5.100000 +773 35 5.100000 +773 271 5.100000 +773 311 5.100000 +773 325 5.100000 +773 380 5.100000 +773 526 5.100000 +773 536 5.100000 +773 553 5.100000 +773 675 5.100000 +773 715 5.100000 +773 735 5.100000 +773 736 5.100000 +773 769 5.100000 +773 777 5.100000 +773 783 5.100000 +773 789 5.100000 +774 38 5.100000 +774 43 5.100000 +774 68 5.100000 +774 142 5.100000 +774 165 5.100000 +774 226 5.100000 +774 231 5.100000 +774 275 5.100000 +774 289 5.100000 +774 388 5.100000 +774 392 5.100000 +774 504 5.100000 +774 741 5.100000 +775 27 5.100000 +775 47 5.100000 +775 67 5.100000 +775 126 5.100000 +775 188 5.100000 +775 206 5.100000 +775 265 5.100000 +775 304 5.100000 +775 323 5.100000 +775 591 5.100000 +775 592 5.100000 +775 600 5.100000 +775 630 5.100000 +775 662 5.100000 +775 748 5.100000 +775 760 5.100000 +775 768 5.100000 +776 139 5.100000 +776 165 5.100000 +776 195 5.100000 +776 222 5.100000 +776 269 5.100000 +776 301 5.100000 +776 344 5.100000 +776 491 5.100000 +776 598 5.100000 +776 643 5.100000 +776 722 5.100000 +776 800 5.100000 +777 17 5.100000 +777 34 5.100000 +777 94 5.100000 +777 120 5.100000 +777 124 5.100000 +777 148 5.100000 +777 312 5.100000 +777 397 5.100000 +777 407 5.100000 +777 412 5.100000 +777 531 5.100000 +777 546 5.100000 +777 556 5.100000 +777 560 5.100000 +777 627 5.100000 +777 629 5.100000 +777 681 5.100000 +777 722 5.100000 +778 192 5.100000 +778 259 5.100000 +778 281 5.100000 +778 321 5.100000 +778 355 5.100000 +778 484 5.100000 +778 572 5.100000 +778 665 5.100000 +779 130 5.100000 +779 151 5.100000 +779 159 5.100000 +779 200 5.100000 +779 395 5.100000 +779 411 5.100000 +779 417 5.100000 +779 423 5.100000 +779 444 5.100000 +779 467 5.100000 +779 513 5.100000 +779 547 5.100000 +779 620 5.100000 +779 646 5.100000 +779 662 5.100000 +779 696 5.100000 +779 702 5.100000 +779 723 5.100000 +780 69 5.100000 +780 104 5.100000 +780 114 5.100000 +780 251 5.100000 +780 273 5.100000 +780 303 5.100000 +780 307 5.100000 +780 419 5.100000 +780 492 5.100000 +780 510 5.100000 +780 551 5.100000 +780 609 5.100000 +780 640 5.100000 +780 682 5.100000 +780 725 5.100000 +780 732 5.100000 +781 25 5.100000 +781 115 5.100000 +781 126 5.100000 +781 180 5.100000 +781 284 5.100000 +781 285 5.100000 +781 546 5.100000 +781 587 5.100000 +781 684 5.100000 +781 751 5.100000 +782 62 5.100000 +782 113 5.100000 +782 140 5.100000 +782 183 5.100000 +782 309 5.100000 +782 346 5.100000 +782 399 5.100000 +782 408 5.100000 +782 434 5.100000 +782 438 5.100000 +782 498 5.100000 +782 519 5.100000 +782 557 5.100000 +782 616 5.100000 +782 686 5.100000 +782 725 5.100000 +782 759 5.100000 +783 6 5.100000 +783 28 5.100000 +783 29 5.100000 +783 177 5.100000 +783 208 5.100000 +783 274 5.100000 +783 288 5.100000 +783 337 5.100000 +783 355 5.100000 +783 374 5.100000 +783 496 5.100000 +783 507 5.100000 +783 548 5.100000 +783 620 5.100000 +783 669 5.100000 +783 686 5.100000 +783 709 5.100000 +783 715 5.100000 +783 718 5.100000 +784 29 5.100000 +784 82 5.100000 +784 254 5.100000 +784 342 5.100000 +784 438 5.100000 +784 562 5.100000 +784 649 5.100000 +784 729 5.100000 +785 137 5.100000 +785 151 5.100000 +785 187 5.100000 +785 197 5.100000 +785 198 5.100000 +785 414 5.100000 +785 491 5.100000 +785 566 5.100000 +785 589 5.100000 +785 629 5.100000 +785 738 5.100000 +785 787 5.100000 +785 789 5.100000 +786 105 5.100000 +786 130 5.100000 +786 219 5.100000 +786 247 5.100000 +786 296 5.100000 +786 336 5.100000 +786 356 5.100000 +786 364 5.100000 +786 380 5.100000 +786 453 5.100000 +786 461 5.100000 +786 476 5.100000 +786 519 5.100000 +786 539 5.100000 +786 571 5.100000 +786 658 5.100000 +786 663 5.100000 +786 672 5.100000 +786 761 5.100000 +786 775 5.100000 +786 791 5.100000 +787 42 5.100000 +787 110 5.100000 +787 137 5.100000 +787 229 5.100000 +787 295 5.100000 +787 316 5.100000 +787 466 5.100000 +787 471 5.100000 +787 519 5.100000 +787 656 5.100000 +787 663 5.100000 +787 670 5.100000 +787 681 5.100000 +787 799 5.100000 +788 17 5.100000 +788 107 5.100000 +788 207 5.100000 +788 350 5.100000 +788 422 5.100000 +788 436 5.100000 +788 437 5.100000 +788 510 5.100000 +788 569 5.100000 +788 584 5.100000 +788 726 5.100000 +788 750 5.100000 +788 761 5.100000 +788 796 5.100000 +789 32 5.100000 +789 62 5.100000 +789 90 5.100000 +789 101 5.100000 +789 119 5.100000 +789 130 5.100000 +789 140 5.100000 +789 184 5.100000 +789 186 5.100000 +789 196 5.100000 +789 256 5.100000 +789 335 5.100000 +789 350 5.100000 +789 355 5.100000 +789 366 5.100000 +789 440 5.100000 +789 444 5.100000 +789 508 5.100000 +789 565 5.100000 +789 586 5.100000 +789 587 5.100000 +789 589 5.100000 +789 603 5.100000 +789 607 5.100000 +789 629 5.100000 +789 665 5.100000 +789 793 5.100000 +790 9 5.100000 +790 69 5.100000 +790 101 5.100000 +790 109 5.100000 +790 196 5.100000 +790 341 5.100000 +790 345 5.100000 +790 374 5.100000 +790 422 5.100000 +790 441 5.100000 +790 463 5.100000 +790 467 5.100000 +790 545 5.100000 +790 561 5.100000 +790 571 5.100000 +790 575 5.100000 +790 604 5.100000 +790 631 5.100000 +790 657 5.100000 +791 3 5.100000 +791 8 5.100000 +791 86 5.100000 +791 110 5.100000 +791 327 5.100000 +791 355 5.100000 +791 410 5.100000 +791 482 5.100000 +791 502 5.100000 +791 508 5.100000 +791 532 5.100000 +791 538 5.100000 +791 613 5.100000 +791 652 5.100000 +791 683 5.100000 +791 689 5.100000 +791 693 5.100000 +791 696 5.100000 +791 700 5.100000 +791 732 5.100000 +791 733 5.100000 +791 790 5.100000 +792 20 5.100000 +792 81 5.100000 +792 120 5.100000 +792 128 5.100000 +792 184 5.100000 +792 275 5.100000 +792 309 5.100000 +792 368 5.100000 +792 471 5.100000 +792 491 5.100000 +792 527 5.100000 +792 565 5.100000 +792 590 5.100000 +792 677 5.100000 +792 701 5.100000 +792 702 5.100000 +792 738 5.100000 +792 743 5.100000 +792 765 5.100000 +792 785 5.100000 +793 15 5.100000 +793 99 5.100000 +793 111 5.100000 +793 145 5.100000 +793 154 5.100000 +793 165 5.100000 +793 192 5.100000 +793 202 5.100000 +793 236 5.100000 +793 259 5.100000 +793 386 5.100000 +793 492 5.100000 +793 615 5.100000 +793 664 5.100000 +793 789 5.100000 +793 800 5.100000 +794 9 5.100000 +794 58 5.100000 +794 126 5.100000 +794 218 5.100000 +794 227 5.100000 +794 253 5.100000 +794 255 5.100000 +794 320 5.100000 +794 337 5.100000 +794 374 5.100000 +794 392 5.100000 +794 519 5.100000 +794 524 5.100000 +794 584 5.100000 +794 586 5.100000 +794 654 5.100000 +794 693 5.100000 +794 704 5.100000 +794 759 5.100000 +795 3 5.100000 +795 86 5.100000 +795 104 5.100000 +795 136 5.100000 +795 176 5.100000 +795 228 5.100000 +795 469 5.100000 +795 483 5.100000 +795 504 5.100000 +795 582 5.100000 +795 672 5.100000 +795 678 5.100000 +795 714 5.100000 +795 720 5.100000 +795 763 5.100000 +796 81 5.100000 +796 104 5.100000 +796 122 5.100000 +796 209 5.100000 +796 231 5.100000 +796 245 5.100000 +796 269 5.100000 +796 306 5.100000 +796 322 5.100000 +796 341 5.100000 +796 357 5.100000 +796 364 5.100000 +796 403 5.100000 +796 425 5.100000 +796 487 5.100000 +796 513 5.100000 +796 516 5.100000 +796 746 5.100000 +796 753 5.100000 +796 776 5.100000 +797 20 5.100000 +797 207 5.100000 +797 246 5.100000 +797 391 5.100000 +797 459 5.100000 +797 462 5.100000 +797 510 5.100000 +797 542 5.100000 +797 685 5.100000 +798 19 5.100000 +798 45 5.100000 +798 67 5.100000 +798 71 5.100000 +798 74 5.100000 +798 79 5.100000 +798 140 5.100000 +798 165 5.100000 +798 170 5.100000 +798 216 5.100000 +798 273 5.100000 +798 389 5.100000 +798 424 5.100000 +798 478 5.100000 +798 542 5.100000 +798 569 5.100000 +798 605 5.100000 +798 680 5.100000 +798 711 5.100000 +798 750 5.100000 +798 786 5.100000 +798 791 5.100000 +798 798 5.100000 +799 87 5.100000 +799 110 5.100000 +799 163 5.100000 +799 225 5.100000 +799 270 5.100000 +799 317 5.100000 +799 351 5.100000 +799 486 5.100000 +799 555 5.100000 +799 684 5.100000 +799 725 5.100000 +799 738 5.100000 +799 791 5.100000 +800 18 5.100000 +800 57 5.100000 +800 62 5.100000 +800 67 5.100000 +800 184 5.100000 +800 212 5.100000 +800 267 5.100000 +800 292 5.100000 +800 402 5.100000 +800 437 5.100000 +800 449 5.100000 +800 470 5.100000 +800 551 5.100000 +800 595 5.100000 +800 611 5.100000 +800 702 5.100000 +800 723 5.100000 +800 750 5.100000 diff --git a/tests/coba_test/run_coba_parallel_test.sh b/tests/coba_test/run_coba_parallel_test.sh new file mode 100755 index 00000000..a5d7227d --- /dev/null +++ b/tests/coba_test/run_coba_parallel_test.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +BUILDDIR="../../build/release" + +# Compile code +make -C $BUILDDIR + +# Benchmark parameters +SIMTIME=10 +REVISION=`git log --pretty=oneline -1 | cut -d " " -f 1` +TESTNAME=`basename "$0"` + +# Vogels-Abbott benchmark, single core +TMPDIR=`mktemp -d` +WMATLOADSTRING="--fee pynn.ee.wmat --fei pynn.ei.wmat --fie pynn.ie.wmat --fii pynn.ii.wmat" +# because the order of spikes on file in multicore is not the same as in single core we only +# spikes from one rank into our comparison +FILTERSPIKES="awk '{ if ($2%2==0) print }'" +mpirun -n 2 $BUILDDIR/examples/sim_coba_binmon $WMATLOADSTRING --simtime $SIMTIME --dir $TMPDIR +$CMD_BENCHMARK1 +aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | tee multicpu.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt +rm -r $TMPDIR + + +# Writ result to file +diff coba_checksums.txt coba_checksums.ref +RETURNVALUE=$? + +echo "$REVISION $TESTNAME $RETURNVALUE" >> test_results.dat + +if [ $? -ne 0 ] +then echo "The checksums for the $TESTNAME are different!" +fi + +exit $RETURNVALUE diff --git a/tests/coba_test/run_coba_test.sh b/tests/coba_test/run_coba_test.sh new file mode 100755 index 00000000..0a9d5dd1 --- /dev/null +++ b/tests/coba_test/run_coba_test.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +BUILDDIR="../../build/release" + +# Compile code +make -C $BUILDDIR + +# Benchmark parameters +SIMTIME=10 +REVISION=`git log --pretty=oneline -1 | cut -d " " -f 1` +TESTNAME=`basename "$0"` + +# Vogels-Abbott benchmark, single core +TMPDIR=`mktemp -d` +WMATLOADSTRING="--fee pynn.ee.wmat --fei pynn.ei.wmat --fie pynn.ie.wmat --fii pynn.ii.wmat" +# because the order of spikes on file in multicore is not the same as in single core we only +# spikes from one rank into our comparison +$BUILDDIR/examples/sim_coba_binmon $WMATLOADSTRING --simtime $SIMTIME --dir $TMPDIR +$CMD_BENCHMARK1 +aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | tee singlecpu.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt +rm -r $TMPDIR + + +# Writ result to file +diff coba_checksums.txt coba_checksums.ref +RETURNVALUE=$? + +echo "$REVISION $TESTNAME $RETURNVALUE" >> test_results.dat + +if [ $? -ne 0 ] +then echo "The checksums for the $TESTNAME are different!" +fi + +exit $RETURNVALUE diff --git a/tests/run_coba_test.sh b/tests/run_coba_test.sh deleted file mode 100755 index bcba2f78..00000000 --- a/tests/run_coba_test.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -BUILDDIR="../build/release" - -# Compile code -$BUILDDIR/bootstrap.sh - -# Benchmark parameters -SIMTIME=10 -REVISION=`git log --pretty=oneline -1 | cut -d " " -f 1` - -# Vogels-Abbott benchmark, single core -TMPDIR=`mktemp -d` -$BUILDDIR/examples/sim_coba_benchmark --simtime $SIMTIME --dir $TMPDIR -$CMD_BENCHMARK1 -md5sum $TMPDIR/*.ras | cut -d " " -f 1 > coba_checksums.txt -rm -r $TMPDIR - - -# Writ result to file -diff coba_checksums.txt coba_checksums.ref -RETURNVALUE=$? - -echo "$REVISION coba-test $RETURNVALUE" >> test_results.dat - -if [ $? -ne 0 ] -then echo "The checksums for the coba-test are different!" -fi - -exit $RETURNVALUE From d47e3e7f772e9a79f45878fd11ff1d65465d7e9d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 10:09:52 +0200 Subject: [PATCH 156/460] Fixes test routines --- tests/coba_test/run_coba_parallel_test.sh | 3 ++- tests/coba_test/run_coba_test.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/coba_test/run_coba_parallel_test.sh b/tests/coba_test/run_coba_parallel_test.sh index a5d7227d..098b27df 100755 --- a/tests/coba_test/run_coba_parallel_test.sh +++ b/tests/coba_test/run_coba_parallel_test.sh @@ -1,6 +1,7 @@ #!/bin/bash BUILDDIR="../../build/release" +TOOLDIR="$BUILDDIR/tools" # Compile code make -C $BUILDDIR @@ -18,7 +19,7 @@ WMATLOADSTRING="--fee pynn.ee.wmat --fei pynn.ei.wmat --fie pynn.ie.wmat --fii p FILTERSPIKES="awk '{ if ($2%2==0) print }'" mpirun -n 2 $BUILDDIR/examples/sim_coba_binmon $WMATLOADSTRING --simtime $SIMTIME --dir $TMPDIR $CMD_BENCHMARK1 -aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | tee multicpu.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt +$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | tee multicpu.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt rm -r $TMPDIR diff --git a/tests/coba_test/run_coba_test.sh b/tests/coba_test/run_coba_test.sh index 0a9d5dd1..680d9000 100755 --- a/tests/coba_test/run_coba_test.sh +++ b/tests/coba_test/run_coba_test.sh @@ -1,6 +1,7 @@ #!/bin/bash BUILDDIR="../../build/release" +TOOLDIR="$BUILDDIR/tools" # Compile code make -C $BUILDDIR @@ -17,7 +18,7 @@ WMATLOADSTRING="--fee pynn.ee.wmat --fei pynn.ei.wmat --fie pynn.ie.wmat --fii p # spikes from one rank into our comparison $BUILDDIR/examples/sim_coba_binmon $WMATLOADSTRING --simtime $SIMTIME --dir $TMPDIR $CMD_BENCHMARK1 -aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | tee singlecpu.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt +$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | tee singlecpu.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt rm -r $TMPDIR From ab9b2fe6cef2a0737a1989a0f7055059648c20e1 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 10:11:56 +0200 Subject: [PATCH 157/460] Updates make call in test routines --- tests/coba_test/run_coba_parallel_test.sh | 2 +- tests/coba_test/run_coba_test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/coba_test/run_coba_parallel_test.sh b/tests/coba_test/run_coba_parallel_test.sh index 098b27df..7a12fa42 100755 --- a/tests/coba_test/run_coba_parallel_test.sh +++ b/tests/coba_test/run_coba_parallel_test.sh @@ -4,7 +4,7 @@ BUILDDIR="../../build/release" TOOLDIR="$BUILDDIR/tools" # Compile code -make -C $BUILDDIR +make -C $BUILDDIR sim_coba_binmon # Benchmark parameters SIMTIME=10 diff --git a/tests/coba_test/run_coba_test.sh b/tests/coba_test/run_coba_test.sh index 680d9000..73ee23c5 100755 --- a/tests/coba_test/run_coba_test.sh +++ b/tests/coba_test/run_coba_test.sh @@ -4,7 +4,7 @@ BUILDDIR="../../build/release" TOOLDIR="$BUILDDIR/tools" # Compile code -make -C $BUILDDIR +make -C $BUILDDIR sim_coba_binmon # Benchmark parameters SIMTIME=10 From 2086218c04cac6c0d330b6368e51f5234de854b6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 10:12:22 +0200 Subject: [PATCH 158/460] Adds test routine to travis script --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 44eeefaa..81f56f9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ install: - sudo apt-get install -y -qq libboost-all-dev openmpi-bin libopenmpi-dev - sudo apt-get install -y -qq cmake script: - - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make + - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make && cd tests && ./run_tests.sh notifications: email: From 608bf4540a75af4945cd2a931dd0ac8a856e50d9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 01:19:34 -0700 Subject: [PATCH 159/460] Virtualizes multiple member functions of AurynVector --- src/AurynVector.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index c8d28b0e..f9b78283 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -51,7 +51,7 @@ namespace auryn { /*! \brief Checks if argument is larger than size and throws and exception if so * * Check only enabled if NDEBUG is not defined.*/ - void check_size(NeuronID x) + virtual void check_size(NeuronID x) { #ifndef NDEBUG if ( x >= size ) { @@ -63,7 +63,7 @@ namespace auryn { /*! \brief Checks if vector size matches to this instance * * Check only enabled if NDEBUG is not defined.*/ - void check_size(AurynVector * v) + virtual void check_size(AurynVector * v) { #ifndef NDEBUG if ( v->size != size ) { @@ -92,7 +92,7 @@ namespace auryn { } /*! \brief Set all elements to value v. */ - void set_all(T v) + virtual void set_all(T v) { for ( NeuronID i = 0 ; i < size ; ++i ) { data[i] = v; @@ -100,13 +100,13 @@ namespace auryn { } /*! \brief Set all elements to zero. */ - void set_zero() + virtual void set_zero() { set_all(0.0); } /*! \brief Scales all vector elements by a. */ - void scale(AurynFloat a) + virtual void scale(AurynFloat a) { for ( NeuronID i = 0 ; i < size ; ++i ) { data[i] *= a; @@ -114,7 +114,7 @@ namespace auryn { } /*! \brief Adds constant c to each vector element */ - void add(AurynFloat c) + virtual void add(AurynFloat c) { for ( NeuronID i = 0 ; i < size ; ++i ) { data[i] += c; @@ -122,7 +122,7 @@ namespace auryn { } /*! \brief Adds the value c to specific vector element i */ - void add_specific(NeuronID i, AurynFloat c) + virtual void add_specific(NeuronID i, AurynFloat c) { check_size(i); data[i] += c; @@ -131,7 +131,7 @@ namespace auryn { /*! \brief Adds a vector v to the vector * * No checking of the dimensions match! */ - void add(AurynVector * v) + virtual void add(AurynVector * v) { check_size(v); for ( NeuronID i = 0 ; i < size ; ++i ) { @@ -140,13 +140,13 @@ namespace auryn { } /*! \brief Subtract constant c to each vector element */ - void sub(AurynFloat c) + virtual void sub(AurynFloat c) { add(-c); } /*! \brief Elementwise subtraction */ - void sub(AurynVector * v) + virtual void sub(AurynVector * v) { check_size(v); for ( NeuronID i = 0 ; i < size ; ++i ) { @@ -155,7 +155,7 @@ namespace auryn { } /*! \brief Multiply all vector elements by constant */ - void mul(AurynFloat a) + virtual void mul(AurynFloat a) { scale(a); } @@ -163,7 +163,7 @@ namespace auryn { /*! \brief Element-wise vector multiply * * */ - void mul(AurynVector * v) + virtual void mul(AurynVector * v) { check_size(v); for ( NeuronID i = 0 ; i < size ; ++i ) { @@ -174,7 +174,7 @@ namespace auryn { /*! \brief Copies vector v * * */ - void copy(AurynVector * v) + virtual void copy(AurynVector * v) { check_size(v); for ( NeuronID i = 0 ; i < size ; ++i ) { @@ -189,7 +189,7 @@ namespace auryn { * \param a The scaling factor for the additional vector * \param x The additional vector to add * */ - void saxpy(AurynFloat a, AurynVector * x) + virtual void saxpy(AurynFloat a, AurynVector * x) { check_size(x); for ( NeuronID i = 0 ; i < size ; ++i ) { From 9734bc358eb7b075234a0282dc989df6240eedf4 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 10:25:43 +0200 Subject: [PATCH 160/460] Fixes problem in new travis file --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 81f56f9a..a836335a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ install: - sudo apt-get install -y -qq libboost-all-dev openmpi-bin libopenmpi-dev - sudo apt-get install -y -qq cmake script: - - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make && cd tests && ./run_tests.sh + - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make && cd ../../tests && ./run_tests.sh notifications: email: From 34c9e21d899eec00cf7257b483fc28dc4c0bb30c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 10:33:58 +0200 Subject: [PATCH 161/460] Forgot to add test script --- tests/run_tests.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 tests/run_tests.sh diff --git a/tests/run_tests.sh b/tests/run_tests.sh new file mode 100755 index 00000000..5374b43f --- /dev/null +++ b/tests/run_tests.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +# Run COBA tests +cd coba_test +./run_coba_test.sh && ./run_coba_parallel_test.sh From 1815a2a044559a29351caa32a8a48915c822b992 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 10:45:55 +0200 Subject: [PATCH 162/460] Adds debug output to test script to debug travis --- tests/coba_test/run_coba_parallel_test.sh | 2 +- tests/coba_test/run_coba_test.sh | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/coba_test/run_coba_parallel_test.sh b/tests/coba_test/run_coba_parallel_test.sh index 7a12fa42..e8a09594 100755 --- a/tests/coba_test/run_coba_parallel_test.sh +++ b/tests/coba_test/run_coba_parallel_test.sh @@ -19,7 +19,7 @@ WMATLOADSTRING="--fee pynn.ee.wmat --fei pynn.ei.wmat --fie pynn.ie.wmat --fii p FILTERSPIKES="awk '{ if ($2%2==0) print }'" mpirun -n 2 $BUILDDIR/examples/sim_coba_binmon $WMATLOADSTRING --simtime $SIMTIME --dir $TMPDIR $CMD_BENCHMARK1 -$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | tee multicpu.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt +$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | md5sum | cut -d " " -f 1 > coba_checksums.txt rm -r $TMPDIR diff --git a/tests/coba_test/run_coba_test.sh b/tests/coba_test/run_coba_test.sh index 73ee23c5..f18e7886 100755 --- a/tests/coba_test/run_coba_test.sh +++ b/tests/coba_test/run_coba_test.sh @@ -17,12 +17,15 @@ WMATLOADSTRING="--fee pynn.ee.wmat --fei pynn.ei.wmat --fie pynn.ie.wmat --fii p # because the order of spikes on file in multicore is not the same as in single core we only # spikes from one rank into our comparison $BUILDDIR/examples/sim_coba_binmon $WMATLOADSTRING --simtime $SIMTIME --dir $TMPDIR -$CMD_BENCHMARK1 -$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | tee singlecpu.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt +echo "Decoding spikes ..." +$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' > spikes.ras +echo "Computing checksum ..." +cat spikes.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt rm -r $TMPDIR # Writ result to file +echo "Comparing checksum to reference ..." diff coba_checksums.txt coba_checksums.ref RETURNVALUE=$? From bc415030a4fbefd6f1f2ad74b53ff81037a9e41a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 10:58:34 +0200 Subject: [PATCH 163/460] Updates hashing code in test routines --- tests/coba_test/coba_checksums.ref | 2 +- tests/coba_test/run_coba_parallel_test.sh | 3 +-- tests/coba_test/run_coba_test.sh | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/coba_test/coba_checksums.ref b/tests/coba_test/coba_checksums.ref index 751093ea..9b2fb1db 100644 --- a/tests/coba_test/coba_checksums.ref +++ b/tests/coba_test/coba_checksums.ref @@ -1 +1 @@ -ca36effd39c29ee2569667726fa6663d +ca36effd39c29ee2569667726fa6663d - diff --git a/tests/coba_test/run_coba_parallel_test.sh b/tests/coba_test/run_coba_parallel_test.sh index e8a09594..db3cf335 100755 --- a/tests/coba_test/run_coba_parallel_test.sh +++ b/tests/coba_test/run_coba_parallel_test.sh @@ -18,8 +18,7 @@ WMATLOADSTRING="--fee pynn.ee.wmat --fei pynn.ei.wmat --fie pynn.ie.wmat --fii p # spikes from one rank into our comparison FILTERSPIKES="awk '{ if ($2%2==0) print }'" mpirun -n 2 $BUILDDIR/examples/sim_coba_binmon $WMATLOADSTRING --simtime $SIMTIME --dir $TMPDIR -$CMD_BENCHMARK1 -$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | md5sum | cut -d " " -f 1 > coba_checksums.txt +$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | md5sum > coba_checksums.txt rm -r $TMPDIR diff --git a/tests/coba_test/run_coba_test.sh b/tests/coba_test/run_coba_test.sh index f18e7886..75842785 100755 --- a/tests/coba_test/run_coba_test.sh +++ b/tests/coba_test/run_coba_test.sh @@ -20,7 +20,7 @@ $BUILDDIR/examples/sim_coba_binmon $WMATLOADSTRING --simtime $SIMTIME --dir $TMP echo "Decoding spikes ..." $TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' > spikes.ras echo "Computing checksum ..." -cat spikes.ras | md5sum | cut -d " " -f 1 > coba_checksums.txt +cat spikes.ras | md5sum > coba_checksums.txt rm -r $TMPDIR From 7108b42d9a2f80e88bc62df11a1c29dac5b54ab9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 11:07:04 +0200 Subject: [PATCH 164/460] Updates test routines to avoid fast-math compiled code --- tests/coba_test/run_coba_parallel_test.sh | 2 +- tests/coba_test/run_coba_test.sh | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/coba_test/run_coba_parallel_test.sh b/tests/coba_test/run_coba_parallel_test.sh index db3cf335..1b000d92 100755 --- a/tests/coba_test/run_coba_parallel_test.sh +++ b/tests/coba_test/run_coba_parallel_test.sh @@ -1,6 +1,6 @@ #!/bin/bash -BUILDDIR="../../build/release" +BUILDDIR="../../build/debug" # We use debug to avoid problems from fast-math TOOLDIR="$BUILDDIR/tools" # Compile code diff --git a/tests/coba_test/run_coba_test.sh b/tests/coba_test/run_coba_test.sh index 75842785..0e628dd3 100755 --- a/tests/coba_test/run_coba_test.sh +++ b/tests/coba_test/run_coba_test.sh @@ -1,6 +1,6 @@ #!/bin/bash -BUILDDIR="../../build/release" +BUILDDIR="../../build/debug" TOOLDIR="$BUILDDIR/tools" # Compile code @@ -17,10 +17,8 @@ WMATLOADSTRING="--fee pynn.ee.wmat --fei pynn.ei.wmat --fie pynn.ie.wmat --fii p # because the order of spikes on file in multicore is not the same as in single core we only # spikes from one rank into our comparison $BUILDDIR/examples/sim_coba_binmon $WMATLOADSTRING --simtime $SIMTIME --dir $TMPDIR -echo "Decoding spikes ..." -$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' > spikes.ras echo "Computing checksum ..." -cat spikes.ras | md5sum > coba_checksums.txt +$TOOLDIR/aube -i $TMPDIR/coba.*.e.spk | awk '{ if ($2%2==0) print }' | md5sum > coba_checksums.txt rm -r $TMPDIR From e68662a6ddbccac451af501287d017ecdb409180 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 11:12:30 +0200 Subject: [PATCH 165/460] Removes test routines from travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a836335a..585bd938 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ install: - sudo apt-get install -y -qq libboost-all-dev openmpi-bin libopenmpi-dev - sudo apt-get install -y -qq cmake script: - - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make && cd ../../tests && ./run_tests.sh + - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make notifications: email: From 9b6b80df7c6584f2b8aff630eacbe306e5dad526 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 02:21:19 -0700 Subject: [PATCH 166/460] Adds build code for debug build --- tests/coba_test/run_coba_parallel_test.sh | 5 ++++- tests/coba_test/run_coba_test.sh | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/tests/coba_test/run_coba_parallel_test.sh b/tests/coba_test/run_coba_parallel_test.sh index 1b000d92..686587fb 100755 --- a/tests/coba_test/run_coba_parallel_test.sh +++ b/tests/coba_test/run_coba_parallel_test.sh @@ -4,7 +4,10 @@ BUILDDIR="../../build/debug" # We use debug to avoid problems from fast-math TOOLDIR="$BUILDDIR/tools" # Compile code -make -C $BUILDDIR sim_coba_binmon +CURDIR=`pwd` +cd $BUILDDIR && ./bootstrap.sh +cd $CURDIR +make -C $BUILDDIR # Benchmark parameters SIMTIME=10 diff --git a/tests/coba_test/run_coba_test.sh b/tests/coba_test/run_coba_test.sh index 0e628dd3..5ab092f3 100755 --- a/tests/coba_test/run_coba_test.sh +++ b/tests/coba_test/run_coba_test.sh @@ -4,7 +4,10 @@ BUILDDIR="../../build/debug" TOOLDIR="$BUILDDIR/tools" # Compile code -make -C $BUILDDIR sim_coba_binmon +CURDIR=`pwd` +cd $BUILDDIR && ./bootstrap.sh +cd $CURDIR +make -C $BUILDDIR # Benchmark parameters SIMTIME=10 From b016934583393ffcca84607cc8a78d28c15f8531 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 6 May 2016 11:33:51 +0200 Subject: [PATCH 167/460] Adds the test again --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 585bd938..a836335a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ install: - sudo apt-get install -y -qq libboost-all-dev openmpi-bin libopenmpi-dev - sudo apt-get install -y -qq cmake script: - - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make + - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make && cd ../../tests && ./run_tests.sh notifications: email: From 65856db0de09aca90dd7e9b82ff38b63ef892ebb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 9 May 2016 13:31:45 -0700 Subject: [PATCH 168/460] Adds plot benchmark script --- build/release/plot_benchmark_results.gnu | 35 ++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 build/release/plot_benchmark_results.gnu diff --git a/build/release/plot_benchmark_results.gnu b/build/release/plot_benchmark_results.gnu new file mode 100644 index 00000000..ae6241e9 --- /dev/null +++ b/build/release/plot_benchmark_results.gnu @@ -0,0 +1,35 @@ +#!/usr/bin/gnuplot + +set out 'benchmark_results.pdf' +set term pdf size 7.0, 2.4 + +unset key + +set border 3 +set xtics nomirror out +set ytics nomirror out +set xtics rotate # by -45 + +set boxwidth 0.8 + +set xrange [-0.5:] + + +revname(x) = sprintf("%s",x[1:6]) + +set multiplot layout 1,3 + +set label 1 at screen 0.001, screen 0.1 'Commit:' left +set title 'Vogels \& Abbott benchmark' +set ylabel 'Time (s)' +plot 'benchmark_results.dat' using 0:3:4:xticlabels(revname(strcol(2))) w boxerror lc -1 + +unset ylabel +unset label 1 + + +set title 'Zenke et al. benchmark, single' +plot 'benchmark_results.dat' using 0:5:6:xticlabels(revname(strcol(2))) w boxerror lc -1 +set title 'Zenke et al. benchmark, parallel' +plot 'benchmark_results.dat' using 0:7:8:xticlabels(revname(strcol(2))) w boxerror lc -1 +unset multiplot From 3c04aa1bfd830617cff7ffe5b6e2b23b91875efa Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 9 May 2016 19:02:12 -0700 Subject: [PATCH 169/460] Switches to histogram style in plot_benchmark_results.gnu --- build/release/plot_benchmark_results.gnu | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/build/release/plot_benchmark_results.gnu b/build/release/plot_benchmark_results.gnu index ae6241e9..ec0d905c 100644 --- a/build/release/plot_benchmark_results.gnu +++ b/build/release/plot_benchmark_results.gnu @@ -12,7 +12,12 @@ set xtics rotate # by -45 set boxwidth 0.8 -set xrange [-0.5:] + + +set boxwidth 1.0 +set style histogram errorbars gap 1.0 lw 1 +set style data histograms +# set style fill solid border -1 revname(x) = sprintf("%s",x[1:6]) @@ -22,14 +27,14 @@ set multiplot layout 1,3 set label 1 at screen 0.001, screen 0.1 'Commit:' left set title 'Vogels \& Abbott benchmark' set ylabel 'Time (s)' -plot 'benchmark_results.dat' using 0:3:4:xticlabels(revname(strcol(2))) w boxerror lc -1 +plot 'benchmark_results.dat' using 3:4:xticlabels(revname(strcol(2))) lc -1 unset ylabel unset label 1 set title 'Zenke et al. benchmark, single' -plot 'benchmark_results.dat' using 0:5:6:xticlabels(revname(strcol(2))) w boxerror lc -1 +plot 'benchmark_results.dat' using 5:6:xticlabels(revname(strcol(2))) lc -1 set title 'Zenke et al. benchmark, parallel' -plot 'benchmark_results.dat' using 0:7:8:xticlabels(revname(strcol(2))) w boxerror lc -1 +plot 'benchmark_results.dat' using 7:8:xticlabels(revname(strcol(2))) lc -1 unset multiplot From 03d4545d5cc2920ccfdde1a3c15430a7b13b6ecf Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 11 May 2016 09:40:24 -0700 Subject: [PATCH 170/460] Adds destructor to AurynVectorFloat --- src/AurynVector.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/AurynVector.h b/src/AurynVector.h index c9382ad0..c0338e1e 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -258,6 +258,11 @@ namespace auryn { /*! \brief Default constructor */ AurynVectorFloat(NeuronID n); + /*! \brief Default destructor */ + ~AurynVectorFloat() + { + }; + void scale(float a); void saxpy(float a, AurynVectorFloat * x); void clip(float min, float max); From df9ecca50c74859f274617f149d0a9e947f66b6b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 11 May 2016 15:05:37 -0700 Subject: [PATCH 171/460] Makes destructor virtual in AurynVector --- src/AurynVector.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index c0338e1e..1d3e2b98 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -93,7 +93,7 @@ namespace auryn { } /*! \brief Default destructor */ - ~AurynVector() + virtual ~AurynVector() { delete data; } @@ -243,6 +243,14 @@ namespace auryn { data[i] = max; } } + + /*! \brief Print vector elements to std out for debugging */ + void print() { + for ( NeuronID i = 0 ; i < size ; ++i ) { + std::cout << get(i) << " "; + } + std::cout << std::endl; + } }; /*! \brief Derived AurynVectorFloat class for performance computation From 42bf6e09c335f571712bc6005ad1fec7a5a5572e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 11 May 2016 15:06:45 -0700 Subject: [PATCH 172/460] Adds flush to file function to Monitor --- src/Monitor.cpp | 5 +++++ src/Monitor.h | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/Monitor.cpp b/src/Monitor.cpp index fad115a8..4625c1b7 100644 --- a/src/Monitor.cpp +++ b/src/Monitor.cpp @@ -68,6 +68,11 @@ void Monitor::free() outfile.close(); } +void Monitor::flush() +{ + outfile.flush(); +} + void Monitor::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) { diff --git a/src/Monitor.h b/src/Monitor.h index 8a6c43e5..9a4ddfb7 100644 --- a/src/Monitor.h +++ b/src/Monitor.h @@ -73,6 +73,9 @@ namespace auryn { /*! \brief Standard active switch */ bool active; + /*! \brief Flush to file */ + void flush(); + /*! \brief Standard constructor */ Monitor(); /*! \brief Standard constructor with file name*/ From 1f71e665933ec13169f0655138c1b88cd42a8d49 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 11 May 2016 16:31:21 -0700 Subject: [PATCH 173/460] Fixes bug in EulerTrace This bug was unfortunately introduced with the new StateVector. --- src/EulerTrace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index c64163b1..827e528c 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -102,7 +102,7 @@ void EulerTrace::evolve() void EulerTrace::follow() { - state->copy( temp ); + temp->copy( state ); auryn_vector_float_saxpy( -1., target_ptr, temp ); auryn_vector_float_saxpy( -dt/tau, temp, state ); } From a9192425828c1e361708757b0e910e495ef8a3ad Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 13 May 2016 15:48:54 -0700 Subject: [PATCH 174/460] Adds getter for number of z-states in ComplexMatrix --- src/ComplexMatrix.h | 42 +++++++++++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 15 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 2b841a15..220beef0 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -195,41 +195,47 @@ class ComplexMatrix AurynLong get_data_index(const T * ptr); /* Methods concerning synaptic state vectors. */ + + /*!\brief Sets number of synaptic states (z-value) */ void set_num_synapse_states(StateID zsize); - /*! Gets pointer for the first element of a given synaptic state vector */ + + /*!\brief Returns number of synaptic states (z-value) */ + StateID get_num_synapse_states(); + + /*! \brief Gets pointer for the first element of a given synaptic state vector */ T * get_state_begin(StateID z=0); - /*! Gets pointer for the element behind the last of a given synaptic state vector */ + /*! \brief Gets pointer for the element behind the last of a given synaptic state vector */ T * get_state_end(StateID z=0); - /*! Sets all values in state x to value. */ + /*! \brief Sets all values in state x to value. */ void state_set_all(T * x, T value); - /*! Computes a*x + y and stores result in y */ + /*! \brief Computes a*x + y and stores result in y */ void state_saxpy(T a, T * x, T * y); - /*! Multiplies x and y and stores result in y */ + /*! \brief Multiplies x and y and stores result in y */ void state_mul(T * x, T * y); - /*! Adds x and y and stores result in y */ + /*! \brief Adds x and y and stores result in y */ void state_add(T * x, T * y); - /*! Computes x-y and stores result in y */ + /*! \brief Computes x-y and stores result in y */ void state_sub(T * x, T * y); - /*! Computes x-y and stores result in res */ + /*! \brief Computes x-y and stores result in res */ void state_sub(T * x, T * y, T * res); - /*! Scale state x by a. */ + /*! \brief Scale state x by a. */ void state_scale(T a, T * x); - /*! Adds constant a to all values in x */ + /*! \brief Adds constant a to all values in x */ void state_add_const(T a, T * x); - /*! Clips state values to interval [a,b] */ + /*! \brief Clips state values to interval [a,b] */ void state_clip(T * x, T a, T b); - /*! Get data pointer for that state */ + /*! \brief Get data pointer for that state */ T * state_get_data_ptr(T * x, NeuronID i); T get_value(AurynLong data_index); void add_value(AurynLong data_index, T value); NeuronID get_colind(AurynLong data_index); bool set(NeuronID i, NeuronID j, T value); - /*! Sets all non-zero elements to value */ + /*! \brief Sets all non-zero elements to value */ void set_all(T value); - /*! Sets all non-zero elements in row i to value */ + /*! \brief Sets all non-zero elements in row i to value */ void set_row(NeuronID i, T value); - /*! Scales all non-zero elements in row i to value */ + /*! \brief Scales all non-zero elements in row i to value */ void scale_row(NeuronID i, T value); /*! Scales all non-zero elements */ void scale_all(T value); @@ -506,6 +512,12 @@ void ComplexMatrix::set_num_synapse_states(StateID zsize) resize_buffer(statesize); } +template +StateID ComplexMatrix::get_num_synapse_states() +{ + return z_values; +} + template T * ComplexMatrix::get_state_begin(NeuronID z) { From fb4c07c806ce2eaf089fc226c43557d4979d5e8f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 16 May 2016 14:27:27 -0700 Subject: [PATCH 175/460] Adds logstrings --- src/System.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index 94af2850..1cd62f08 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -737,7 +737,9 @@ void System::load_network_state(std::string basename) std::stringstream oss; oss << "Loading connection " - << i ; + << i + << ": " + << connections[i]->get_name(); auryn::logger->msg(oss.str(),VERBOSE); ia >> *(connections[i]); @@ -749,7 +751,9 @@ void System::load_network_state(std::string basename) std::stringstream oss; oss << "Loading group " - << i ; + << i + << ": " + << spiking_groups[i]->get_name(); auryn::logger->msg(oss.str(),VERBOSE); ia >> *(spiking_groups[i]); From be91e960668a0e364e52b51781d76b3d77c650d5 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 16 May 2016 14:27:47 -0700 Subject: [PATCH 176/460] Small change to load netstate in SpikingGroup --- src/SpikingGroup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 1ecac885..2fd874f1 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -613,7 +613,7 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector std::string key; ar & key; - AurynStateVector * vect = get_state_vector(key); + AurynStateVector * vect = find_state_vector(key); ar & *vect; } From 86c9fa59405ef333ec2dfd32af673bee0d8287a8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 16 May 2016 14:28:06 -0700 Subject: [PATCH 177/460] Adds debugging output with CLI switch to aube --- tools/aube.cpp | 63 ++++++++++++++++++++++++++++---------------------- 1 file changed, 35 insertions(+), 28 deletions(-) diff --git a/tools/aube.cpp b/tools/aube.cpp index d6ef9bd7..bdadd697 100644 --- a/tools/aube.cpp +++ b/tools/aube.cpp @@ -55,12 +55,12 @@ AurynLong find_frame( std::ifstream * file, AurynTime target ) } -void read_header( std::ifstream * input, double& dt, double& last_time, std::string filename ) +void read_header( std::ifstream * input, double& dt, AurynLong num_events, double& last_time, std::string filename ) { // get length of the file SpikeEvent_type spike_data; input->seekg (0, input->end); - AurynLong num_events = input->tellg()/sizeof(SpikeEvent_type)-1; + num_events = input->tellg()/sizeof(SpikeEvent_type)-1; // read first entry to infer dt input->seekg (0, input->beg); @@ -103,12 +103,14 @@ int main(int ac, char* av[]) NeuronID maxid = std::numeric_limits::max(); // one more decimal than neede to show values are not rounded int decimal_places = -std::log(dt)/std::log(10)+2; + bool debug_output = false; try { po::options_description desc("Allowed options"); desc.add_options() ("help,h", "produce help message") ("version,v", "show version information") + ("debug,d", "show verbose debug output") ("inputs,i", po::value< std::vector >()->multitoken(), "input files") ("output,o", po::value(), "output file (output to stout if not given)") ("from,f", po::value(), "'from time' in seconds") @@ -134,6 +136,10 @@ int main(int ac, char* av[]) return EXIT_SUCCESS; } + if (vm.count("debug")) { + debug_output = true; + } + if (vm.count("inputs")) { input_filenames = vm["inputs"].as< std::vector >(); } @@ -166,12 +172,8 @@ int main(int ac, char* av[]) std::cerr << "Exception of unknown type!\n"; } - - - -#ifdef DEBUG - std::cout << "# Number of input files " << input_filenames.size() << std::endl; -#endif // DEBUG + if ( debug_output ) + std::cout << "# Number of input files " << input_filenames.size() << std::endl; double last_time = 0.0; double dt = 0.0; @@ -191,9 +193,14 @@ int main(int ac, char* av[]) exit(EXIT_FAILURE); } - double tmp_last_time; - double tmp_dt; - read_header( tmp, tmp_dt, tmp_last_time, input_filenames[i] ); + double tmp_last_time = 0; + double tmp_dt = 0; + AurynLong tmp_num_events = 0; + read_header( tmp, tmp_dt, tmp_num_events, tmp_last_time, input_filenames[i] ); + + if ( debug_output ) { + std::cerr << "# Last frame in file " << i << ": " << tmp_num_events << std::endl; + } if ( dt == 0 ) { dt = tmp_dt; @@ -229,14 +236,14 @@ int main(int ac, char* av[]) AurynTime to_auryn_time = to_time/dt; -#ifdef DEBUG - std::cerr << "# Timestep: " << dt << std::endl; - std::cerr << "# Maxid: " << maxid << std::endl; - std::cerr << "# Sizeof SpikeEvent struct: " << sizeof(SpikeEvent_type) << std::endl; - std::cerr << "# Time of last event in files: " << last_time << std::endl; - std::cerr << "# From time: " << from_time << std::endl; - std::cerr << "# To time: " << to_time << std::endl; -#endif // DEBUG + if ( debug_output ) { + std::cerr << "# Timestep: " << dt << std::endl; + std::cerr << "# Maxid: " << maxid << std::endl; + std::cerr << "# Sizeof SpikeEvent struct: " << sizeof(SpikeEvent_type) << std::endl; + std::cerr << "# Time of last event in files: " << last_time << std::endl; + std::cerr << "# From time: " << from_time << std::endl; + std::cerr << "# To time: " << to_time << std::endl; + } // set all streams to respetive start frame @@ -247,11 +254,11 @@ int main(int ac, char* av[]) // prepare input stream inputs[i]->seekg (start_frame*sizeof(SpikeEvent_type), inputs[i]->beg); inputs[i]->clear(); -#ifdef DEBUG - std::cerr << "# Start frame stream " - << i << ": " - << start_frame << std::endl; -#endif // DEBUG + if ( debug_output ) { + std::cerr << "# Start frame stream " + << i << ": " + << start_frame << std::endl; + } } @@ -291,10 +298,10 @@ int main(int ac, char* av[]) time_reference = mintime; if ( time_reference >= to_auryn_time || eofs ) break; -#ifdef DEBUG - std::cout << "# current_stream " << current_stream << std::endl; - std::cout << "# time_reference " << time_reference << std::endl; -#endif // DEBUG + if ( debug_output && false ) { + std::cout << "# current_stream " << current_stream << std::endl; + std::cout << "# time_reference " << time_reference << std::endl; + } // output from next_stream while ( frames[current_stream].time <= time_reference && !inputs[current_stream]->eof() ) { From cfd3f872f602e916db0e3b31dfd879de64e19181 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 18 May 2016 22:35:50 -0700 Subject: [PATCH 178/460] Changes access rights for member of StimulusGroup --- build/release/plot_benchmark_results.gnu | 1 + src/StimulusGroup.h | 48 ++++++++++++------------ 2 files changed, 26 insertions(+), 23 deletions(-) diff --git a/build/release/plot_benchmark_results.gnu b/build/release/plot_benchmark_results.gnu index ec0d905c..73a28577 100644 --- a/build/release/plot_benchmark_results.gnu +++ b/build/release/plot_benchmark_results.gnu @@ -19,6 +19,7 @@ set style histogram errorbars gap 1.0 lw 1 set style data histograms # set style fill solid border -1 +# set yrange [0:] revname(x) = sprintf("%s",x[1:6]) diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index 6bd14667..e2b74256 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -65,7 +65,6 @@ class StimulusGroup : public SpikingGroup protected: AurynTime * ttl; - std::vector stimuli; AurynFloat * activity; /*! Stimulus order */ @@ -122,63 +121,66 @@ class StimulusGroup : public SpikingGroup AurynFloat curscale; public: - /*! This is by how much the pattern gamma value is multiplied. The resulting value gives the x-times baseline activation */ + /*! \brief Vector containing all the stimuli. */ + std::vector stimuli; + + /*! \brief This is by how much the pattern gamma value is multiplied. The resulting value gives the x-times baseline activation */ AurynFloat scale; - /*! Switches to more efficient algorithm which ignores the gamma value */ + /*! \brief Switches to more efficient algorithm which ignores the gamma value */ bool binary_patterns; - /*! Enables a finite refractory time specified in AurynTime (only works for non-binary-pattern mode. */ + /*! \brief Enables a finite refractory time specified in AurynTime (only works for non-binary-pattern mode. */ AurynTime refractory_period; - /*! Determines if the Group is active or bypassed upon evolution. */ + /*! \brief Determines if the Group is active or bypassed upon evolution. */ bool active; - /*! Determines if the Group is using random activation intervals */ + /*! \brief Determines if the Group is using random activation intervals */ bool randomintervals; - /*! Determines if the Group is using random activation intensities */ + /*! \brief Determines if the Group is using random activation intensities */ bool randomintensities; - /*! Play random Poisson noise with this rate on all channels + /*! \brief Play random Poisson noise with this rate on all channels * when no stim is active. */ AurynDouble background_rate; - /*! Switch for background firing during stimulus. */ + /*! \brief Switch for background firing during stimulus. */ bool background_during_stimulus; - /*! Default constructor */ + /*! \brief Default constructor */ StimulusGroup(NeuronID n, string filename, string stimfile, StimulusGroupModeType stimulusmode=RANDOM, AurynFloat baserate=0.0 ); - /*! Constructor without stimfile. Patterns can be loaded afterwards using the load_patterns method. */ + /*! \brief Constructor without stimfile. Patterns can be loaded afterwards using the load_patterns method. */ StimulusGroup(NeuronID n, string stimfile, StimulusGroupModeType stimulusmode=RANDOM, AurynFloat baserate=0.0 ); virtual ~StimulusGroup(); - /*! Standard virtual evolve function */ + /*! \brief Standard virtual evolve function */ virtual void evolve(); - /*! Sets the baserate that is the rate at 1 activity */ + /*! \brief Sets the baserate that is the rate at 1 activity */ void set_baserate(AurynFloat baserate); void set_maxrate(AurynFloat baserate); // TODO remove deprecated - /*! Sets the stimulation mode. Can be any of StimulusGroupModeType (MANUAL,RANDOM,SEQUENTIAL,SEQUENTIAL_REV). */ + /*! \brief Sets the stimulation mode. Can be any of StimulusGroupModeType (MANUAL,RANDOM,SEQUENTIAL,SEQUENTIAL_REV). */ void set_stimulation_mode(StimulusGroupModeType mode); - /*! Sets sets the activity of all units */ + /*! \brief Sets sets the activity of all units */ void set_all( AurynFloat val=0.0 ); - /*! Seeds the random number generator for all stimulus groups of the simulation. */ + /*! \brief Seeds the random number generator for all stimulus groups of the simulation. */ void seed( int rndseed ); - /*! Gets the activity of unit i */ + /*! \brief Gets the activity of unit i */ AurynFloat get_activity(NeuronID i); - /*! Loads stimulus patterns from a designated file given */ + /*! \brief Loads stimulus patterns from a designated file given */ void load_patterns( string filename ); - /*! Set mean quiet interval between consecutive stimuli */ + /*! \brief Set mean quiet interval between consecutive stimuli */ void set_mean_off_period(AurynFloat period); - /*! Set mean on period */ + /*! \brief Set mean on period */ void set_mean_on_period(AurynFloat period); void set_pattern_activity( unsigned int i ); @@ -187,11 +189,11 @@ class StimulusGroup : public SpikingGroup void set_next_action_time(double time); - /*! Setter for pattern probability distribution */ + /*! \brief Setter for pattern probability distribution */ void set_distribution ( std::vector probs ); - /*! Getter for pattern probability distribution */ + /*! \brief Getter for pattern probability distribution */ std::vector get_distribution ( ); - /*! Getter for pattern i of the probability distribution */ + /*! \brief Getter for pattern i of the probability distribution */ double get_distribution ( int i ); /*! \brief returns the last action (stim on/off) time in units of AurynTime */ From e060700edfec61df8be0654452ae417249e9432d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 20 May 2016 23:33:12 -0700 Subject: [PATCH 179/460] Changes debugging output --- src/SpikingGroup.cpp | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 2fd874f1..907c6505 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -579,7 +579,9 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const ar & size & axonaldelay; ar & *delay; - auryn::logger->msg("SpikingGroup:: serializing state vectors",VERBOSE); + std::stringstream oss; + oss << get_log_name() << " serializing " << state_vectors.size() << " state vectors"; + auryn::logger->msg(oss.str(),VERBOSE); for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { @@ -588,15 +590,21 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const ar & *(iter->second); } - auryn::logger->msg("SpikingGroup:: serializing pre traces",VERBOSE); + oss.str(""); + oss << get_log_name() << " serializing " << pretraces.size() << " pre traces"; + auryn::logger->msg(oss.str(),VERBOSE); for ( NeuronID i = 0 ; i < pretraces.size() ; ++i ) ar & *(pretraces[i]); - auryn::logger->msg("SpikingGroup:: serializing post traces",VERBOSE); + oss.str(""); + oss << get_log_name() << " serializing " << posttraces.size() << " post traces"; + auryn::logger->msg(oss.str(),VERBOSE); for ( NeuronID i = 0 ; i < posttraces.size() ; ++i ) ar & *(posttraces[i]); - auryn::logger->msg("NeuronGroup:: serializing state traces",VERBOSE); + oss.str(""); + oss << get_log_name() << " serializing " << post_state_traces.size() << " post_state traces"; + auryn::logger->msg(oss.str(),VERBOSE); for ( NeuronID i = 0 ; i < post_state_traces.size() ; ++i ) ar & *(post_state_traces[i]); } @@ -606,7 +614,9 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const ar & size & axonaldelay ; ar & *delay; - auryn::logger->msg("SpikingGroup:: reading state vectors",VERBOSE); + std::stringstream oss; + oss << get_log_name() << " reading " << state_vectors.size() << " state vectors"; + auryn::logger->msg(oss.str(),VERBOSE); for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { @@ -617,15 +627,21 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const ar & *vect; } - auryn::logger->msg("SpikingGroup:: reading pre traces",VERBOSE); + oss.str(""); + oss << get_log_name() << " reading " << pretraces.size() << " pre traces"; + auryn::logger->msg(oss.str(),VERBOSE); for ( NeuronID i = 0 ; i < pretraces.size() ; ++i ) ar & *(pretraces[i]); - auryn::logger->msg("SpikingGroup:: reading post traces",VERBOSE); + oss.str(""); + oss << get_log_name() << " reading " << posttraces.size() << " post traces"; + auryn::logger->msg(oss.str(),VERBOSE); for ( NeuronID i = 0 ; i < posttraces.size() ; ++i ) ar & *(posttraces[i]); - auryn::logger->msg("NeuronGroup:: loading post state traces",VERBOSE); + oss.str(""); + oss << get_log_name() << " reading " << post_state_traces.size() << " post_state_traces"; + auryn::logger->msg(oss.str(),VERBOSE); for ( NeuronID i = 0 ; i < post_state_traces.size() ; ++i ) ar & *(post_state_traces[i]); } From 962f70b8bd975c4fa630192a52c336fc48c50d38 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 20 May 2016 23:43:31 -0700 Subject: [PATCH 180/460] Changes function type in AurynVector --- src/AurynVector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 1d3e2b98..a4b2077c 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -58,7 +58,7 @@ namespace auryn { /*! \brief Checks if argument is larger than size and throws and exception if so * * Check only enabled if NDEBUG is not defined.*/ - virtual void check_size(NeuronID x) + void check_size(NeuronID x) { #ifndef NDEBUG if ( x >= size ) { @@ -70,7 +70,7 @@ namespace auryn { /*! \brief Checks if vector size matches to this instance * * Check only enabled if NDEBUG is not defined.*/ - virtual void check_size(AurynVector * v) + void check_size(AurynVector * v) { #ifndef NDEBUG if ( v->size != size ) { From f326c7869304bf6f465f5778688b0760092b2de5 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 21 May 2016 14:33:08 -0700 Subject: [PATCH 181/460] Adds a very simple CubaIFGroup The groups has exponential current-synapses with identical time course for exc and inh synpases. It is meant to serve as a more instructive example than SIFGroup which is removed with this commit. --- src/CubaIFGroup.cpp | 86 ++++++++++++------- src/CubaIFGroup.h | 70 +++++++++------ src/SIFGroup.cpp | 202 -------------------------------------------- src/SIFGroup.h | 96 --------------------- src/auryn.h | 1 - 5 files changed, 101 insertions(+), 354 deletions(-) delete mode 100644 src/SIFGroup.cpp delete mode 100644 src/SIFGroup.h diff --git a/src/CubaIFGroup.cpp b/src/CubaIFGroup.cpp index 5d53ec02..4103cbcb 100644 --- a/src/CubaIFGroup.cpp +++ b/src/CubaIFGroup.cpp @@ -36,24 +36,30 @@ CubaIFGroup::CubaIFGroup(NeuronID size) : NeuronGroup(size) void CubaIFGroup::calculate_scale_constants() { scale_mem = dt/tau_mem; + scale_syn = exp(-dt/tau_syn); } void CubaIFGroup::init() { e_rest = -60e-3; - e_rev = -80e-3; thr = -50e-3; - tau_mem = 20e-3; + tau_syn = 5e-3; + r_mem = 1e8; + c_mem = 200e-12; + tau_mem = r_mem*c_mem; set_refractory_period(5e-3); calculate_scale_constants(); - ref = auryn_vector_ushort_alloc (get_vector_size()); bg_current = get_state_vector("bg_current"); + syn_current = get_state_vector("syn_current"); + ref = new AurynVector< unsigned short > (get_vector_size()); - t_bg_cur = bg_current->ptr(); - t_mem = mem->ptr(); - t_ref = ref->ptr(); + t_bg_cur = bg_current->ptr( ); + t_syn_cur = syn_current->ptr( ); + + t_mem = mem->ptr( ); + t_ref = ref->ptr( ); clear(); @@ -63,9 +69,11 @@ void CubaIFGroup::clear() { clear_spikes(); for (NeuronID i = 0; i < get_rank_size(); i++) { - mem->set( i, e_rest); - ref->set( i, 0); - bg_current->set( i, 0.); + auryn_vector_float_set (mem, i, e_rest); + auryn_vector_ushort_set (ref, i, 0); + auryn_vector_float_set (g_ampa, i, 0.); + auryn_vector_float_set (g_gaba, i, 0.); + auryn_vector_float_set (bg_current, i, 0.); } } @@ -81,11 +89,9 @@ CubaIFGroup::~CubaIFGroup() void CubaIFGroup::evolve() { - for (NeuronID i = 0 ; i < get_rank_size() ; ++i ) { if (t_ref[i]==0) { - const AurynFloat dg_mem = ( (e_rest-t_mem[i]) - + t_bg_cur[i] ); + const AurynFloat dg_mem = ( (e_rest-t_mem[i]) + t_bg_cur[i] + t_syn_cur[i] ); t_mem[i] += dg_mem*scale_mem; if (t_mem[i]>thr) { @@ -100,16 +106,7 @@ void CubaIFGroup::evolve() } -} - -void CubaIFGroup::set_bg_current(NeuronID i, AurynFloat current) { - if ( localrank(i) ) - auryn_vector_float_set ( bg_current , global2rank(i) , current ) ; -} - -void CubaIFGroup::set_all_bg_currents( AurynFloat current ) { - for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) - auryn_vector_float_set ( bg_current, i, current ) ; + syn_current->scale(scale_syn); } void CubaIFGroup::set_tau_mem(AurynFloat taum) @@ -118,34 +115,63 @@ void CubaIFGroup::set_tau_mem(AurynFloat taum) calculate_scale_constants(); } -AurynFloat CubaIFGroup::get_bg_current(NeuronID i) { - if ( localrank(i) ) - return auryn_vector_float_get ( bg_current , global2rank(i) ) ; - else - return 0; +void CubaIFGroup::set_r_mem(AurynFloat rm) +{ + r_mem = rm; + tau_mem = r_mem*c_mem; + calculate_scale_constants(); +} + +void CubaIFGroup::set_c_mem(AurynFloat cm) +{ + c_mem = cm; + tau_mem = r_mem*c_mem; + calculate_scale_constants(); } std::string CubaIFGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << mem->get(i) << " " << ref->get( i) << "\n"; + oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " + << ref->get(i) << " " + << bg_current->get(i) <<"\n"; return oss.str(); } void CubaIFGroup::load_input_line(NeuronID i, const char * buf) { - float vmem; + float vmem,vampa,vgaba,vbgcur; NeuronID vref; - sscanf (buf,"%f %u",&vmem,&vref); + sscanf (buf,"%f %f %f %u %f",&vmem,&vampa,&vgaba,&vref,&vbgcur); if ( localrank(i) ) { NeuronID trans = global2rank(i); mem->set(trans,vmem); + g_ampa->set(trans,vampa); + g_gaba->set(trans,vgaba); ref->set(trans, vref); + bg_current->set(trans, vbgcur); } } +void CubaIFGroup::set_tau_syn(AurynFloat tau) +{ + tau_syn = tau; + calculate_scale_constants(); +} void CubaIFGroup::set_refractory_period(AurynDouble t) { refractory_time = (unsigned short) (t/dt); } + +void CubaIFGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) +{ + SpikingGroup::virtual_serialize(ar,version); + ar & *ref; +} + +void CubaIFGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) +{ + SpikingGroup::virtual_serialize(ar,version); + ar & *ref; +} diff --git a/src/CubaIFGroup.h b/src/CubaIFGroup.h index 6d31087b..4584f156 100644 --- a/src/CubaIFGroup.h +++ b/src/CubaIFGroup.h @@ -31,28 +31,29 @@ #include "NeuronGroup.h" #include "System.h" - - namespace auryn { -/*! \brief Current based neuron model with absolute refractoriness - * as used in Vogels and Abbott 2005. +/*! \brief Simple LIF neuron model with absolute refractoriness and current based synapses + * + * This model is simular to the one used in Vogels and Abbott 2005, with exponential currents and + * does not make a distinction between the timecourse of exc and inh synases. + * + * To give input to these neurons use set_transmitter("syn_current") as a transmitter target. * - * Although state vectors for AMPA, GABA and NMDA are defined in - * NeuronGroup, this model does not actively integrate these states - * and thus should be used in cases in which simple Integrate and Fire - * dynamics with current-based synapses are needed. */ class CubaIFGroup : public NeuronGroup { private: - auryn_vector_float * bg_current; - auryn_vector_ushort * ref; + unsigned short refractory_time; - AurynFloat e_rest,e_rev,thr,tau_mem; + + AurynFloat e_rest,thr,tau_mem, r_mem, c_mem; + AurynFloat tau_syn; + AurynFloat scale_syn; AurynFloat scale_mem; AurynFloat * t_bg_cur; + AurynFloat * t_syn_cur; AurynFloat * t_mem; unsigned short * t_ref; @@ -60,29 +61,48 @@ class CubaIFGroup : public NeuronGroup void calculate_scale_constants(); inline void integrate_state(); inline void check_thresholds(); - virtual std::string get_output_line(NeuronID i); + virtual string get_output_line(NeuronID i); virtual void load_input_line(NeuronID i, const char * buf); + + void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); + void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); public: - /*! The default constructor of this NeuronGroup */ - CubaIFGroup(NeuronID size); - virtual ~CubaIFGroup(); + /*! \brief Vector holding neuronspecific background currents */ + AurynStateVector * bg_current; - /*! Controls the constant current input (per default set so zero) to neuron i */ - void set_bg_current(NeuronID i, AurynFloat current); + /*! \brief Vector holding neuronspecific synaptic currents */ + AurynStateVector * syn_current; - /*! Sets the constant current for all units to the same value. */ - void set_all_bg_currents( AurynFloat current ); + /*! \brief Vector holding neuronspecific state of refractory period */ + AurynVector * ref; - /*! Setter for refractory time [s] */ + /*! \brief The default constructor of this NeuronGroup */ + CubaIFGroup(NeuronID size); + + /*! \brief The default destructor */ + virtual ~CubaIFGroup(); + + /*! \brief Setter for refractory time [s] */ void set_refractory_period(AurynDouble t); - /*! Gets the current background current value for neuron i */ - AurynFloat get_bg_current(NeuronID i); - /*! Sets the membrane time constant (default 20ms) */ + /*! \brief Sets the membrane time constant (default 20ms) */ void set_tau_mem(AurynFloat taum); - /*! Resets all neurons to defined and identical initial state. */ + + /*! \brief Sets the membrane resistance (default 100 M-ohm) */ + void set_r_mem(AurynFloat rm); + + /*! \brief Sets the membrane capacitance (default 200pF) */ + void set_c_mem(AurynFloat cm); + + /*! \brief Sets the exponential time constant for current based synapses */ + void set_tau_syn(AurynFloat tau); + + /*! \brief Resets all neurons to defined and identical initial state. */ void clear(); - /*! The evolve method internally used by System. */ + + /*! \brief Integrates the NeuronGroup state + * + * The evolve method internally used by System. */ void evolve(); }; diff --git a/src/SIFGroup.cpp b/src/SIFGroup.cpp deleted file mode 100644 index d05e8503..00000000 --- a/src/SIFGroup.cpp +++ /dev/null @@ -1,202 +0,0 @@ -/* -* Copyright 2015 Neftci Emre and Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -*/ - -#include "SIFGroup.h" - -using namespace auryn; - -SIFGroup::SIFGroup(NeuronID size) : NeuronGroup(size) -{ - auryn::sys->register_spiking_group(this); - if ( evolve_locally() ) init(); -} - -void SIFGroup::calculate_scale_constants() -{ - scale_mem = dt/tau_mem; - scale_cursyn = exp(-dt/tau_cursyn); - scale_ampa = exp(-dt/tau_ampa); - scale_gaba = exp(-dt/tau_gaba); -} - -void SIFGroup::init() -{ - e_rest = 0e-3; - e_rev = -80e-3; - thr = .1; - tau_ampa = 4e-3; - tau_gaba = 4e-3; - tau_cursyn = 4e-3; - tau_mem = 1e-3; - set_refractory_period(4e-3); - - calculate_scale_constants(); - - ref = auryn_vector_ushort_alloc (get_vector_size()); - g_cursyn = get_state_vector("g_cursyn"); - bg_current = get_state_vector("bg_current"); - inj_current = get_state_vector("inj_current"); - - t_g_ampa = auryn_vector_float_ptr ( g_ampa , 0 ); - t_g_gaba = auryn_vector_float_ptr ( g_gaba , 0 ); - t_g_cursyn = auryn_vector_float_ptr ( g_cursyn , 0 ); - t_bg_cur = auryn_vector_float_ptr ( bg_current , 0 ); - t_inj_cur = auryn_vector_float_ptr ( inj_current , 0 ); - t_mem = auryn_vector_float_ptr ( mem , 0 ); - t_ref = auryn_vector_ushort_ptr ( ref , 0 ); - - clear(); - -} - -void SIFGroup::clear() -{ - clear_spikes(); - for (NeuronID i = 0; i < get_rank_size(); i++) { - auryn_vector_ushort_set (ref, i, 0); - auryn_vector_float_set (mem, i, e_rest); - auryn_vector_float_set (g_ampa, i, 0.); - auryn_vector_float_set (g_gaba, i, 0.); - auryn_vector_float_set (g_cursyn, i, 0.); - auryn_vector_float_set (bg_current, i, 0.); - auryn_vector_float_set (inj_current, i, 0.); - } -} - - -SIFGroup::~SIFGroup() -{ - if ( !evolve_locally() ) return; - - auryn_vector_ushort_free (ref); -} - - -void SIFGroup::evolve() -{ - - - for (NeuronID i = 0 ; i < get_rank_size() ; ++i ) { - if (t_ref[i]==0) { - const AurynFloat dg_mem = ( - + (e_rest-t_mem[i]) - - t_g_ampa[i] * t_mem[i] - - t_g_gaba[i] * (t_mem[i]-e_rev) - + t_g_cursyn[i] - + t_inj_cur[i] - + t_bg_cur[i] ); - t_mem[i] += dg_mem*scale_mem; - - if (t_mem[i]>thr) { - push_spike(i); - t_mem[i] = e_rest ; - t_ref[i] += refractory_time ; - } - } else { - t_ref[i]-- ; - t_mem[i] = e_rest ; - } - - } - - auryn_vector_float_scale(scale_ampa,g_ampa); - auryn_vector_float_scale(scale_gaba,g_gaba); - auryn_vector_float_scale(scale_cursyn,g_cursyn); -} - -void SIFGroup::set_bg_current(NeuronID i, AurynFloat current) { - if ( localrank(i) ) - auryn_vector_float_set ( bg_current , global2rank(i) , current ) ; -} - -void SIFGroup::set_tau_mem(AurynFloat taum) -{ - tau_mem = taum; - calculate_scale_constants(); -} - -AurynFloat SIFGroup::get_bg_current(NeuronID i) { - if ( localrank(i) ) - return auryn_vector_float_get ( bg_current , global2rank(i) ) ; - else - return 0; -} - -std::string SIFGroup::get_output_line(NeuronID i) -{ - std::stringstream oss; - oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " << ref->get(i) << "\n"; - return oss.str(); -} - -void SIFGroup::load_input_line(NeuronID i, const char * buf) -{ - float vmem,vampa,vgaba; - NeuronID vref; - sscanf (buf,"%f %f %f %u",&vmem,&vampa,&vgaba,&vref); - if ( localrank(i) ) { - NeuronID trans = global2rank(i); - mem->set(trans,vmem); - g_ampa->set(trans,vampa); - g_gaba->set(trans,vgaba); - ref->set( trans, vref); - } -} - -void SIFGroup::set_tau_ampa(AurynFloat taum) -{ - tau_ampa = taum; - calculate_scale_constants(); -} - -AurynFloat SIFGroup::get_tau_ampa() -{ - return tau_ampa; -} - -void SIFGroup::set_tau_gaba(AurynFloat taum) -{ - tau_gaba = taum; - calculate_scale_constants(); -} - -AurynFloat SIFGroup::get_tau_gaba() -{ - return tau_gaba; -} - -void SIFGroup::set_refractory_period(AurynDouble t) -{ - double tmp = (unsigned short) (t/dt) - 1; - if (tmp<0) tmp = 0; - refractory_time = tmp; -} - -void SIFGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) -{ - SpikingGroup::virtual_serialize(ar,version); - ar & *ref; -} - -void SIFGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) -{ - SpikingGroup::virtual_serialize(ar,version); - ar & *ref; -} diff --git a/src/SIFGroup.h b/src/SIFGroup.h deleted file mode 100644 index b80a06e1..00000000 --- a/src/SIFGroup.h +++ /dev/null @@ -1,96 +0,0 @@ -/* -* Copyright 2015 Neftci Emre and Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -*/ - -#ifndef SIFGROUP_H_ -#define SIFGROUP_H_ - -#include "auryn_definitions.h" -#include "AurynVector.h" -#include "NeuronGroup.h" -#include "System.h" - -namespace auryn { - -/*! \brief Conductance based neuron model with absolute refractoriness used for Neural Sampling - */ -class SIFGroup : public NeuronGroup -{ -private: - auryn_vector_float * bg_current; - auryn_vector_float * inj_current; - auryn_vector_ushort * ref; - unsigned short refractory_time; - AurynFloat e_rest,e_rev,thr,tau_mem; - AurynFloat tau_ampa,tau_gaba,tau_cursyn; - AurynFloat scale_ampa, scale_gaba, scale_mem, scale_cursyn; - - AurynFloat * t_g_cursyn; - AurynFloat * t_g_ampa; - AurynFloat * t_g_gaba; - AurynFloat * t_bg_cur; - AurynFloat * t_inj_cur; - AurynFloat * t_mem; - unsigned short * t_ref; - - void init(); - void calculate_scale_constants(); - inline void integrate_state(); - inline void check_thresholds(); - virtual string get_output_line(NeuronID i); - virtual void load_input_line(NeuronID i, const char * buf); - - void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); - void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); -public: - /*! Stores the CURSYN states of each point neuron.*/ - AurynStateVector * g_cursyn __attribute__((aligned(16))); - - /*! The default constructor of this NeuronGroup */ - SIFGroup(NeuronID size); - virtual ~SIFGroup(); - - /*! Controls the constant current input (per default set so zero) to neuron i */ - void set_bg_current(NeuronID i, AurynFloat current); - - /*! Setter for refractory time [s] */ - void set_refractory_period(AurynDouble t); - - /*! Gets the current background current value for neuron i */ - AurynFloat get_bg_current(NeuronID i); - /*! Sets the membrane time constant (default 20ms) */ - void set_tau_mem(AurynFloat taum); - /*! Sets the exponential time constant for the AMPA channel (default 5ms) */ - void set_tau_ampa(AurynFloat tau); - /*! Gets the exponential time constant for the AMPA channel */ - AurynFloat get_tau_ampa(); - /*! Sets the exponential time constant for the GABA channel (default 10ms) */ - void set_tau_gaba(AurynFloat tau); - /*! Gets the exponential time constant for the GABA channel */ - AurynFloat get_tau_gaba(); - /*! Resets all neurons to defined and identical initial state. */ - void clear(); - /*! The evolve method internally used by System. */ - void evolve(); -}; - -} - -#endif /*SIFGROUP_H_*/ - diff --git a/src/auryn.h b/src/auryn.h index 7c231f68..780bff14 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -72,7 +72,6 @@ #include "AdExGroup.h" #include "CubaIFGroup.h" #include "TIFGroup.h" -#include "SIFGroup.h" #include "SpikingGroup.h" #include "NeuronGroup.h" #include "PoissonGroup.h" From 7b8eea37376ce5aa9b09cd4c8e93e7925453169f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 22 May 2016 12:11:59 -0700 Subject: [PATCH 182/460] Adds IafPscExpGroup and restores previous CubaIFGroup --- src/CubaIFGroup.cpp | 86 +++++++------------- src/CubaIFGroup.h | 70 ++++++---------- src/IafPscExpGroup.cpp | 177 +++++++++++++++++++++++++++++++++++++++++ src/IafPscExpGroup.h | 112 ++++++++++++++++++++++++++ src/auryn.h | 3 +- 5 files changed, 346 insertions(+), 102 deletions(-) create mode 100644 src/IafPscExpGroup.cpp create mode 100644 src/IafPscExpGroup.h diff --git a/src/CubaIFGroup.cpp b/src/CubaIFGroup.cpp index 4103cbcb..5d53ec02 100644 --- a/src/CubaIFGroup.cpp +++ b/src/CubaIFGroup.cpp @@ -36,30 +36,24 @@ CubaIFGroup::CubaIFGroup(NeuronID size) : NeuronGroup(size) void CubaIFGroup::calculate_scale_constants() { scale_mem = dt/tau_mem; - scale_syn = exp(-dt/tau_syn); } void CubaIFGroup::init() { e_rest = -60e-3; + e_rev = -80e-3; thr = -50e-3; - tau_syn = 5e-3; - r_mem = 1e8; - c_mem = 200e-12; - tau_mem = r_mem*c_mem; + tau_mem = 20e-3; set_refractory_period(5e-3); calculate_scale_constants(); + ref = auryn_vector_ushort_alloc (get_vector_size()); bg_current = get_state_vector("bg_current"); - syn_current = get_state_vector("syn_current"); - ref = new AurynVector< unsigned short > (get_vector_size()); - t_bg_cur = bg_current->ptr( ); - t_syn_cur = syn_current->ptr( ); - - t_mem = mem->ptr( ); - t_ref = ref->ptr( ); + t_bg_cur = bg_current->ptr(); + t_mem = mem->ptr(); + t_ref = ref->ptr(); clear(); @@ -69,11 +63,9 @@ void CubaIFGroup::clear() { clear_spikes(); for (NeuronID i = 0; i < get_rank_size(); i++) { - auryn_vector_float_set (mem, i, e_rest); - auryn_vector_ushort_set (ref, i, 0); - auryn_vector_float_set (g_ampa, i, 0.); - auryn_vector_float_set (g_gaba, i, 0.); - auryn_vector_float_set (bg_current, i, 0.); + mem->set( i, e_rest); + ref->set( i, 0); + bg_current->set( i, 0.); } } @@ -89,9 +81,11 @@ CubaIFGroup::~CubaIFGroup() void CubaIFGroup::evolve() { + for (NeuronID i = 0 ; i < get_rank_size() ; ++i ) { if (t_ref[i]==0) { - const AurynFloat dg_mem = ( (e_rest-t_mem[i]) + t_bg_cur[i] + t_syn_cur[i] ); + const AurynFloat dg_mem = ( (e_rest-t_mem[i]) + + t_bg_cur[i] ); t_mem[i] += dg_mem*scale_mem; if (t_mem[i]>thr) { @@ -106,72 +100,52 @@ void CubaIFGroup::evolve() } - syn_current->scale(scale_syn); } -void CubaIFGroup::set_tau_mem(AurynFloat taum) -{ - tau_mem = taum; - calculate_scale_constants(); +void CubaIFGroup::set_bg_current(NeuronID i, AurynFloat current) { + if ( localrank(i) ) + auryn_vector_float_set ( bg_current , global2rank(i) , current ) ; } -void CubaIFGroup::set_r_mem(AurynFloat rm) -{ - r_mem = rm; - tau_mem = r_mem*c_mem; - calculate_scale_constants(); +void CubaIFGroup::set_all_bg_currents( AurynFloat current ) { + for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) + auryn_vector_float_set ( bg_current, i, current ) ; } -void CubaIFGroup::set_c_mem(AurynFloat cm) +void CubaIFGroup::set_tau_mem(AurynFloat taum) { - c_mem = cm; - tau_mem = r_mem*c_mem; + tau_mem = taum; calculate_scale_constants(); } +AurynFloat CubaIFGroup::get_bg_current(NeuronID i) { + if ( localrank(i) ) + return auryn_vector_float_get ( bg_current , global2rank(i) ) ; + else + return 0; +} + std::string CubaIFGroup::get_output_line(NeuronID i) { std::stringstream oss; - oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " - << ref->get(i) << " " - << bg_current->get(i) <<"\n"; + oss << mem->get(i) << " " << ref->get( i) << "\n"; return oss.str(); } void CubaIFGroup::load_input_line(NeuronID i, const char * buf) { - float vmem,vampa,vgaba,vbgcur; + float vmem; NeuronID vref; - sscanf (buf,"%f %f %f %u %f",&vmem,&vampa,&vgaba,&vref,&vbgcur); + sscanf (buf,"%f %u",&vmem,&vref); if ( localrank(i) ) { NeuronID trans = global2rank(i); mem->set(trans,vmem); - g_ampa->set(trans,vampa); - g_gaba->set(trans,vgaba); ref->set(trans, vref); - bg_current->set(trans, vbgcur); } } -void CubaIFGroup::set_tau_syn(AurynFloat tau) -{ - tau_syn = tau; - calculate_scale_constants(); -} void CubaIFGroup::set_refractory_period(AurynDouble t) { refractory_time = (unsigned short) (t/dt); } - -void CubaIFGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) -{ - SpikingGroup::virtual_serialize(ar,version); - ar & *ref; -} - -void CubaIFGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) -{ - SpikingGroup::virtual_serialize(ar,version); - ar & *ref; -} diff --git a/src/CubaIFGroup.h b/src/CubaIFGroup.h index 4584f156..6d31087b 100644 --- a/src/CubaIFGroup.h +++ b/src/CubaIFGroup.h @@ -31,29 +31,28 @@ #include "NeuronGroup.h" #include "System.h" + + namespace auryn { -/*! \brief Simple LIF neuron model with absolute refractoriness and current based synapses - * - * This model is simular to the one used in Vogels and Abbott 2005, with exponential currents and - * does not make a distinction between the timecourse of exc and inh synases. - * - * To give input to these neurons use set_transmitter("syn_current") as a transmitter target. +/*! \brief Current based neuron model with absolute refractoriness + * as used in Vogels and Abbott 2005. * + * Although state vectors for AMPA, GABA and NMDA are defined in + * NeuronGroup, this model does not actively integrate these states + * and thus should be used in cases in which simple Integrate and Fire + * dynamics with current-based synapses are needed. */ class CubaIFGroup : public NeuronGroup { private: - + auryn_vector_float * bg_current; + auryn_vector_ushort * ref; unsigned short refractory_time; - - AurynFloat e_rest,thr,tau_mem, r_mem, c_mem; - AurynFloat tau_syn; - AurynFloat scale_syn; + AurynFloat e_rest,e_rev,thr,tau_mem; AurynFloat scale_mem; AurynFloat * t_bg_cur; - AurynFloat * t_syn_cur; AurynFloat * t_mem; unsigned short * t_ref; @@ -61,48 +60,29 @@ class CubaIFGroup : public NeuronGroup void calculate_scale_constants(); inline void integrate_state(); inline void check_thresholds(); - virtual string get_output_line(NeuronID i); + virtual std::string get_output_line(NeuronID i); virtual void load_input_line(NeuronID i, const char * buf); - - void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); - void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); public: - /*! \brief Vector holding neuronspecific background currents */ - AurynStateVector * bg_current; - - /*! \brief Vector holding neuronspecific synaptic currents */ - AurynStateVector * syn_current; - - /*! \brief Vector holding neuronspecific state of refractory period */ - AurynVector * ref; - - /*! \brief The default constructor of this NeuronGroup */ + /*! The default constructor of this NeuronGroup */ CubaIFGroup(NeuronID size); - - /*! \brief The default destructor */ virtual ~CubaIFGroup(); - /*! \brief Setter for refractory time [s] */ - void set_refractory_period(AurynDouble t); - - /*! \brief Sets the membrane time constant (default 20ms) */ - void set_tau_mem(AurynFloat taum); + /*! Controls the constant current input (per default set so zero) to neuron i */ + void set_bg_current(NeuronID i, AurynFloat current); - /*! \brief Sets the membrane resistance (default 100 M-ohm) */ - void set_r_mem(AurynFloat rm); + /*! Sets the constant current for all units to the same value. */ + void set_all_bg_currents( AurynFloat current ); - /*! \brief Sets the membrane capacitance (default 200pF) */ - void set_c_mem(AurynFloat cm); - - /*! \brief Sets the exponential time constant for current based synapses */ - void set_tau_syn(AurynFloat tau); + /*! Setter for refractory time [s] */ + void set_refractory_period(AurynDouble t); - /*! \brief Resets all neurons to defined and identical initial state. */ + /*! Gets the current background current value for neuron i */ + AurynFloat get_bg_current(NeuronID i); + /*! Sets the membrane time constant (default 20ms) */ + void set_tau_mem(AurynFloat taum); + /*! Resets all neurons to defined and identical initial state. */ void clear(); - - /*! \brief Integrates the NeuronGroup state - * - * The evolve method internally used by System. */ + /*! The evolve method internally used by System. */ void evolve(); }; diff --git a/src/IafPscExpGroup.cpp b/src/IafPscExpGroup.cpp new file mode 100644 index 00000000..43328829 --- /dev/null +++ b/src/IafPscExpGroup.cpp @@ -0,0 +1,177 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "IafPscExpGroup.h" + +using namespace auryn; + +IafPscExpGroup::IafPscExpGroup(NeuronID size) : NeuronGroup(size) +{ + auryn::sys->register_spiking_group(this); + if ( evolve_locally() ) init(); +} + +void IafPscExpGroup::calculate_scale_constants() +{ + scale_mem = dt/tau_mem; + scale_syn = exp(-dt/tau_syn); +} + +void IafPscExpGroup::init() +{ + e_rest = -60e-3; + thr = -50e-3; + tau_syn = 5e-3; + r_mem = 1e8; + c_mem = 200e-12; + tau_mem = r_mem*c_mem; + set_refractory_period(5e-3); + + calculate_scale_constants(); + + bg_current = get_state_vector("bg_current"); + syn_current = get_state_vector("syn_current"); + ref = new AurynVector< unsigned short > (get_vector_size()); + + t_bg_cur = bg_current->ptr( ); + t_syn_cur = syn_current->ptr( ); + + t_mem = mem->ptr( ); + t_ref = ref->ptr( ); + + clear(); + +} + +void IafPscExpGroup::clear() +{ + clear_spikes(); + for (NeuronID i = 0; i < get_rank_size(); i++) { + auryn_vector_float_set (mem, i, e_rest); + auryn_vector_ushort_set (ref, i, 0); + auryn_vector_float_set (g_ampa, i, 0.); + auryn_vector_float_set (g_gaba, i, 0.); + auryn_vector_float_set (bg_current, i, 0.); + } +} + + +IafPscExpGroup::~IafPscExpGroup() +{ + if ( !evolve_locally() ) return; + + auryn_vector_ushort_free (ref); +} + + +void IafPscExpGroup::evolve() +{ + + for (NeuronID i = 0 ; i < get_rank_size() ; ++i ) { + if (t_ref[i]==0) { + const AurynFloat dg_mem = ( (e_rest-t_mem[i]) + t_bg_cur[i] + t_syn_cur[i] ); + t_mem[i] += dg_mem*scale_mem; + + if (t_mem[i]>thr) { + push_spike(i); + t_mem[i] = e_rest ; + t_ref[i] += refractory_time ; + } + } else { + t_ref[i]-- ; + t_mem[i] = e_rest ; + } + + } + + syn_current->scale(scale_syn); +} + +void IafPscExpGroup::set_tau_mem(AurynFloat taum) +{ + tau_mem = taum; + calculate_scale_constants(); +} + +void IafPscExpGroup::set_r_mem(AurynFloat rm) +{ + r_mem = rm; + tau_mem = r_mem*c_mem; + calculate_scale_constants(); +} + +void IafPscExpGroup::set_c_mem(AurynFloat cm) +{ + c_mem = cm; + tau_mem = r_mem*c_mem; + calculate_scale_constants(); +} + +std::string IafPscExpGroup::get_output_line(NeuronID i) +{ + std::stringstream oss; + oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " + << ref->get(i) << " " + << bg_current->get(i) <<"\n"; + return oss.str(); +} + +void IafPscExpGroup::load_input_line(NeuronID i, const char * buf) +{ + float vmem,vampa,vgaba,vbgcur; + NeuronID vref; + sscanf (buf,"%f %f %f %u %f",&vmem,&vampa,&vgaba,&vref,&vbgcur); + if ( localrank(i) ) { + NeuronID trans = global2rank(i); + mem->set(trans,vmem); + g_ampa->set(trans,vampa); + g_gaba->set(trans,vgaba); + ref->set(trans, vref); + bg_current->set(trans, vbgcur); + } +} + +void IafPscExpGroup::set_tau_syn(AurynFloat tau) +{ + tau_syn = tau; + calculate_scale_constants(); +} + +void IafPscExpGroup::set_refractory_period(AurynDouble t) +{ + refractory_time = (unsigned short) (t/dt); +} + +void IafPscExpGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) +{ + SpikingGroup::virtual_serialize(ar,version); + ar & *ref; +} + +void IafPscExpGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) +{ + SpikingGroup::virtual_serialize(ar,version); + ar & *ref; +} diff --git a/src/IafPscExpGroup.h b/src/IafPscExpGroup.h new file mode 100644 index 00000000..361258d9 --- /dev/null +++ b/src/IafPscExpGroup.h @@ -0,0 +1,112 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef IAFPSCEXPGROUP_H_ +#define IAFPSCEXPGROUP_H_ + +#include "auryn_definitions.h" +#include "AurynVector.h" +#include "NeuronGroup.h" +#include "System.h" + +namespace auryn { + +/*! \brief Simple LIF neuron model with absolute refractoriness and current based synapses + * + * This model is simular to the one used in Vogels and Abbott 2005, with exponential currents and + * does not make a distinction between the timecourse of exc and inh synases. + * + * To give input to these neurons use set_transmitter("syn_current") as a transmitter target. + * + */ +class IafPscExpGroup : public NeuronGroup +{ +private: + + unsigned short refractory_time; + + AurynFloat e_rest,thr,tau_mem, r_mem, c_mem; + AurynFloat tau_syn; + AurynFloat scale_syn; + AurynFloat scale_mem; + + AurynFloat * t_bg_cur; + AurynFloat * t_syn_cur; + AurynFloat * t_mem; + unsigned short * t_ref; + + void init(); + void calculate_scale_constants(); + inline void integrate_state(); + inline void check_thresholds(); + virtual string get_output_line(NeuronID i); + virtual void load_input_line(NeuronID i, const char * buf); + + void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); + void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); +public: + /*! \brief Vector holding neuronspecific background currents */ + AurynStateVector * bg_current; + + /*! \brief Vector holding neuronspecific synaptic currents */ + AurynStateVector * syn_current; + + /*! \brief Vector holding neuronspecific state of refractory period */ + AurynVector * ref; + + /*! \brief The default constructor of this NeuronGroup */ + IafPscExpGroup(NeuronID size); + + /*! \brief The default destructor */ + virtual ~IafPscExpGroup(); + + /*! \brief Setter for refractory time [s] */ + void set_refractory_period(AurynDouble t); + + /*! \brief Sets the membrane time constant (default 20ms) */ + void set_tau_mem(AurynFloat taum); + + /*! \brief Sets the membrane resistance (default 100 M-ohm) */ + void set_r_mem(AurynFloat rm); + + /*! \brief Sets the membrane capacitance (default 200pF) */ + void set_c_mem(AurynFloat cm); + + /*! \brief Sets the exponential time constant for current based synapses */ + void set_tau_syn(AurynFloat tau); + + /*! \brief Resets all neurons to defined and identical initial state. */ + void clear(); + + /*! \brief Integrates the NeuronGroup state + * + * The evolve method internally used by System. */ + void evolve(); +}; + +} + +#endif /*IAFPSCEXPGROUP_H_*/ + diff --git a/src/auryn.h b/src/auryn.h index 780bff14..f1da2c16 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -66,12 +66,13 @@ // Spiking and Neuron group definitions #include "AIF2Group.h" -#include "IafPscDeltaGroup.h" #include "IFGroup.h" #include "AIFGroup.h" #include "AdExGroup.h" #include "CubaIFGroup.h" #include "TIFGroup.h" +#include "IafPscDeltaGroup.h" +#include "IafPscExpGroup.h" #include "SpikingGroup.h" #include "NeuronGroup.h" #include "PoissonGroup.h" From 29b232571a10c2029915328580c898d95dcf589f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 23 May 2016 10:06:10 -0700 Subject: [PATCH 183/460] Changes src and dst to public in Connection --- src/Connection.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Connection.h b/src/Connection.h index 0cf98ca9..f1f9fa58 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -80,8 +80,6 @@ class Connection ar & m_rows & n_cols & connection_name; } - SpikingGroup * src; - NeuronGroup * dst; TransmitterType trans; AurynFloat * target; @@ -97,6 +95,12 @@ class Connection void init(TransmitterType transmitter=GLUT); public: + /*! \brief Pointer to the source group of this connection */ + SpikingGroup * src; + + /*! \brief Pointer to the destination group of this connection */ + NeuronGroup * dst; + Connection(); Connection(NeuronID rows, NeuronID cols); Connection(SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter=GLUT, std::string name="Connection"); From 672e622c770e8c9741b54b78aba884d1cc4f96d8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 23 May 2016 10:07:23 -0700 Subject: [PATCH 184/460] Adds new output function debug to Logger --- src/Logger.cpp | 5 +++++ src/Logger.h | 1 + 2 files changed, 6 insertions(+) diff --git a/src/Logger.cpp b/src/Logger.cpp index bd6ca824..408a8d91 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -119,6 +119,11 @@ void Logger::error( std::string text ) } void Logger::verbose( std::string text, bool global, int line, std::string srcfile ) +{ + debug(text, global, line, srcfile ); +} + +void Logger::debug( std::string text, bool global, int line, std::string srcfile ) { msg(text, VERBOSE, global, line, srcfile ); } diff --git a/src/Logger.h b/src/Logger.h index f19a4d81..a30ab119 100644 --- a/src/Logger.h +++ b/src/Logger.h @@ -63,6 +63,7 @@ class Logger void warning ( std::string text ); void error ( std::string text ); void verbose ( std::string text, bool global=false, int line=-1, std::string srcfile="" ); + void debug ( std::string text, bool global=false, int line=-1, std::string srcfile="" ); void parameter( std::string name, double value ); void parameter( std::string name, int value ); void parameter( std::string name, std::string value ); From a5f18163cf4deb904649661530aa9b4d08df1c9e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 23 May 2016 10:12:13 -0700 Subject: [PATCH 185/460] Adds log level info --- src/Logger.cpp | 5 +++++ src/Logger.h | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Logger.cpp b/src/Logger.cpp index 408a8d91..092576f0 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -104,6 +104,11 @@ void Logger::msg( std::string text, LogMessageType type, bool global, int line, void Logger::info( std::string text ) +{ + msg(text, INFO); +} + +void Logger::notification( std::string text ) { msg(text, NOTIFICATION); } diff --git a/src/Logger.h b/src/Logger.h index a30ab119..27c01159 100644 --- a/src/Logger.h +++ b/src/Logger.h @@ -37,7 +37,7 @@ namespace auryn { /*! Enum type for significance level of a given message send to the logger */ -enum LogMessageType { EVERYTHING, VERBOSE, NOTIFICATION, SETTINGS, PROGRESS, WARNING, ERROR, NONE }; +enum LogMessageType { EVERYTHING, VERBOSE, INFO, NOTIFICATION, SETTINGS, PROGRESS, WARNING, ERROR, NONE }; /*! \brief A generic logger class that logs to screen and a log-file. * @@ -64,6 +64,7 @@ class Logger void error ( std::string text ); void verbose ( std::string text, bool global=false, int line=-1, std::string srcfile="" ); void debug ( std::string text, bool global=false, int line=-1, std::string srcfile="" ); + void notification ( std::string text ); void parameter( std::string name, double value ); void parameter( std::string name, int value ); void parameter( std::string name, std::string value ); From a022878aac7aa96155530482332024eef8a7b061 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 25 May 2016 09:29:12 -0700 Subject: [PATCH 186/460] Minor edits to EulerTrace --- src/EulerTrace.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index 827e528c..9e5b1c87 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -61,13 +61,12 @@ void EulerTrace::set_timeconstant(AurynFloat timeconstant) void EulerTrace::set(NeuronID i , AurynFloat value) { - state->set( i, value); + state->set( i, value); } void EulerTrace::set_all(AurynFloat value) { - for (NeuronID i = 0 ; i < size ; ++i ) - set(i,value); + state->set_all(value); } void EulerTrace::add(AurynVectorFloat * values) From ce54378fa812702566491618944f7e7e5371eb0b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 25 May 2016 09:30:02 -0700 Subject: [PATCH 187/460] Adds logger output to StateMonitor --- src/StateMonitor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index 3924b4ba..f8587bbf 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -128,4 +128,5 @@ void StateMonitor::record_for(AurynDouble time) auryn::logger->msg("Warning: Negative stop times not supported -- ingoring.",WARNING); } else t_stop = auryn::sys->get_clock() + time/dt; + auryn::logger->debug("Set record for times for monitor."); } From 97e78b14a839a58b1c8dada9530ca13aaca93673 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 25 May 2016 10:06:10 -0700 Subject: [PATCH 188/460] Adds functionality that to state traces One can now declare a state trace given a state pointer instead of just the name. Still need to add some checking that the pointer is valid. This is a TODO. --- src/SpikingGroup.cpp | 24 +++++++++++++++--------- src/SpikingGroup.h | 15 ++++++++++++++- 2 files changed, 29 insertions(+), 10 deletions(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 907c6505..277fdf86 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -174,7 +174,7 @@ void SpikingGroup::free() std::stringstream oss; oss << get_log_name() << ":: Freeing state trace " - << post_state_traces_state_names[i] + << post_state_traces_states[i] << " at " << i; auryn::logger->msg(oss.str() ,VERBOSE); @@ -372,22 +372,22 @@ DEFAULT_TRACE_MODEL * SpikingGroup::get_post_trace( AurynFloat x ) return tmp; } -EulerTrace * SpikingGroup::get_post_state_trace( std::string state_name, AurynFloat tau, AurynFloat b ) +EulerTrace * SpikingGroup::get_post_state_trace( AurynStateVector * state, AurynFloat tau, AurynFloat b ) { // first let's check if a state with that name exists - if ( find_state_vector( state_name ) == NULL ) { - auryn::logger->msg("A state vector with this name "+state_name+" does not exist", ERROR); + if ( state == NULL ) { + auryn::logger->msg("A state vector was not found at this pointer reference.", ERROR); throw AurynStateVectorException(); } // good to go for ( NeuronID i = 0 ; i < post_state_traces.size() ; i++ ) { if ( post_state_traces[i]->get_tau() == tau && post_state_traces_spike_biases[i] == b - && post_state_traces_state_names[i] == state_name ) { + && post_state_traces_states[i] == state ) { std::stringstream oss; oss << get_log_name() - << ":: Sharing post state trace for " - << state_name + << ":: Sharing post state trace for ptr reference " + << state // TODO replace by name reverse lookup << " with " << tau << "s timeconstant." ; @@ -400,13 +400,19 @@ EulerTrace * SpikingGroup::get_post_state_trace( std::string state_name, AurynFl // it and do the book keeping auryn::logger->msg("Creating new post state trace",VERBOSE); EulerTrace * tmp = new EulerTrace(get_post_size(),tau); - tmp->set_target(get_state_vector(state_name)); + tmp->set_target(state); post_state_traces.push_back(tmp); post_state_traces_spike_biases.push_back(b); - post_state_traces_state_names.push_back(state_name); + post_state_traces_states.push_back(state); return tmp; } +EulerTrace * SpikingGroup::get_post_state_trace( std::string state_name, AurynFloat tau, AurynFloat b ) +{ + AurynStateVector * state = find_state_vector( state_name ); + return get_post_state_trace(state, tau, b); +} + void SpikingGroup::evolve_traces() { diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 9e24f076..8fc14ad0 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -99,7 +99,7 @@ class SpikingGroup /*! Post state traces */ std::vector post_state_traces; std::vector post_state_traces_spike_biases; - std::vector post_state_traces_state_names; + std::vector post_state_traces_states; /*! Identifying name for object */ std::string group_name; @@ -233,6 +233,7 @@ class SpikingGroup * * This trace is an cotinuously integrated EulerTrace which uses the follow * function on the mem state vector. + * @param state_name A string stating the neurons state name * @param tau The time constant of the trace. * @param b The optional parameter b allows to specify a spike triggered contribution * which will be added instantaneously to the trace upon each @@ -240,6 +241,18 @@ class SpikingGroup * */ EulerTrace * get_post_state_trace( std::string state_name="mem", AurynFloat tau=10e-3, AurynFloat b=0.0 ); + /*! \brief Returns a post trace of a neuronal state variable specifcied by pointer + * + * This trace is an cotinuously integrated EulerTrace which uses the follow + * function on the mem state vector. + * @param state A pointer to the relevant state vector + * @param tau The time constant of the trace. + * @param b The optional parameter b allows to specify a spike triggered contribution + * which will be added instantaneously to the trace upon each + * postsynaptic spike. + * */ + EulerTrace * get_post_state_trace( AurynStateVector * state, AurynFloat tau=10e-3, AurynFloat b=0.0 ); + /*! Sets axonal delay for this SpikingGroup */ void set_delay( int d ); From 5196563969cb744cb3ab747710cf13f5d3fcfcdf Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 25 May 2016 11:17:09 -0700 Subject: [PATCH 189/460] Docstring --- src/ComplexMatrix.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 220beef0..f396e7df 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -158,7 +158,10 @@ class ComplexMatrix * \param value to insert * \throw AurynMatrixBufferException */ void push_back(NeuronID i, NeuronID j, T value); + + /*! \brief Copies complex matrix mat */ void copy(ComplexMatrix * mat); + void set_data(AurynLong i, T value); void scale_data(AurynLong i, T value); /*! Gets the matching data entry for a given index i and state z*/ From eecfa98b1054736d9a47812cf46aefdab8fc0adc Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 25 May 2016 13:25:00 -0700 Subject: [PATCH 190/460] Adds debugging active warning to log --- src/System.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/System.cpp b/src/System.cpp index 1cd62f08..43506469 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -62,6 +62,11 @@ void System::init() { << std::numeric_limits::max()/MINDELAY << " cells."; auryn::logger->msg(oss.str(),VERBOSE); +#ifndef NDEBUG + oss.str(""); + oss << "Warning debugging support is compiled and will impair performance."; + auryn::logger->warning(oss.str()); +#endif oss.str(""); if(__builtin_cpu_supports("avx2")) { From 97a91d17ac93841fcea0ffebf2355861a44287cd Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 25 May 2016 13:46:57 -0700 Subject: [PATCH 191/460] Adds a reference to a target state vector but leaves everything else untouched because it cost me a day when I started playing with it and put bugs in ... --- src/Connection.cpp | 20 +++++++++++++------- src/Connection.h | 9 ++++++++- 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/src/Connection.cpp b/src/Connection.cpp index 6cf09db2..627ce094 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -107,21 +107,21 @@ void Connection::set_transmitter(TransmitterType transmitter) if ( dst->evolve_locally() ) { switch ( transmitter ) { case GABA: - set_transmitter(dst->get_state_vector("g_gaba")->data); + set_transmitter(dst->get_state_vector("g_gaba")); break; case MEM: - set_transmitter(dst->get_state_vector("mem")->data); + set_transmitter(dst->get_state_vector("mem")); break; case CURSYN: - set_transmitter(dst->get_state_vector("g_cursyn")->data); + set_transmitter(dst->get_state_vector("g_cursyn")); break; case NMDA: - set_transmitter(dst->get_state_vector("g_nmda")->data); + set_transmitter(dst->get_state_vector("g_nmda")); break; case GLUT: case AMPA: default: - set_transmitter(dst->get_state_vector("g_ampa")->data); + set_transmitter(dst->get_state_vector("g_ampa")); } } else set_transmitter((AurynWeight *)NULL); } @@ -136,9 +136,15 @@ void Connection::set_transmitter(AurynWeight * ptr) target = ptr; } -void Connection::set_transmitter(auryn_vector_float * ptr) +void Connection::set_transmitter(AurynStateVector * ptr) { - target = ptr->data; + target_state_vector = ptr; + set_transmitter(ptr->data); +} + +AurynStateVector * Connection::get_target_vector() +{ + return target_state_vector; } NeuronID Connection::get_m_rows() diff --git a/src/Connection.h b/src/Connection.h index f1f9fa58..e7e7c94d 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -81,6 +81,10 @@ class Connection } TransmitterType trans; + + AurynStateVector * target_state_vector; + + /*! \brief a more direct reference on the first element of the target_state_vector */ AurynFloat * target; /*! \brief Number of spike attributes to expect with each spike transmitted through this connection. @@ -122,6 +126,9 @@ class Connection /*! \brief Returns a string which is the combination of file and connection name for logging. */ std::string get_log_name(); + /*! \brief Returns target state vector if one is defined */ + AurynStateVector * get_target_vector(); + /*! \brief Get number of rows (presynaptic) in connection. * * Note that Matrices in Auryn have to be thought of as multiplied from the left. The number of rows thus @@ -144,7 +151,7 @@ class Connection void set_transmitter(AurynWeight * ptr); /*! \brief Sets target state of this connection directly via a StateVector */ - void set_transmitter(auryn_vector_float * ptr); + void set_transmitter(AurynStateVector * ptr); /*! \brief Sets target state of this connection as one of Auryn's default transmitter types */ void set_transmitter(TransmitterType transmitter); From c0896a7a42edb0fbac6fcdfd1283ee88ab4dd340 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 25 May 2016 15:22:28 -0700 Subject: [PATCH 192/460] Updates docstring --- src/Connection.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Connection.h b/src/Connection.h index e7e7c94d..cfdec844 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -84,7 +84,11 @@ class Connection AurynStateVector * target_state_vector; - /*! \brief a more direct reference on the first element of the target_state_vector */ + /*! \brief A more direct reference on the first element of the target_state_vector + * + * The logic of connection is that when the simulation starts *target points to the first element of an array + * with AurynWeight type which has the post_size of the target group. Each presynaptic spike will then trigger + * addition the values stored as weights in some weight matrix to that group. */ AurynFloat * target; /*! \brief Number of spike attributes to expect with each spike transmitted through this connection. From f70c328c960d6476549c26b168a1297d827b1e29 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 25 May 2016 15:22:57 -0700 Subject: [PATCH 193/460] Adds flush to file for monitors to System --- src/StateMonitor.h | 2 +- src/System.cpp | 6 ++++++ src/System.h | 6 ++++++ src/VoltageMonitor.h | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/StateMonitor.h b/src/StateMonitor.h index 04bb5533..26d44df8 100644 --- a/src/StateMonitor.h +++ b/src/StateMonitor.h @@ -37,7 +37,7 @@ namespace auryn { /*! \brief Records from an arbitray state vector of one unit from the source SpikingGroup to a file.*/ -class StateMonitor : protected Monitor +class StateMonitor : public Monitor { protected: /*! \brief The source SpikingGroup to record from */ diff --git a/src/System.cpp b/src/System.cpp index 43506469..e796cfe5 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -820,6 +820,12 @@ AurynDouble System::get_last_elapsed_time() return last_elapsed_time; } +void System::flush_monitors() +{ + for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) + monitors[i]->flush(); +} + #ifdef CODE_COLLECT_SYNC_TIMING_STATS AurynDouble System::get_relative_sync_time() { diff --git a/src/System.h b/src/System.h index 465e4d9a..f0028912 100644 --- a/src/System.h +++ b/src/System.h @@ -185,6 +185,12 @@ namespace auryn { void save_network_state_text(std::string basename); + /*! \brief Flush monitors + * + * Write monitor data buffers to file. */ + void flush_monitors(); + + /*! Registers an instance of SpikingGroup to the spiking_groups vector. */ void register_spiking_group(SpikingGroup * spiking_group); diff --git a/src/VoltageMonitor.h b/src/VoltageMonitor.h index 4f587c3d..e258c115 100644 --- a/src/VoltageMonitor.h +++ b/src/VoltageMonitor.h @@ -45,7 +45,7 @@ namespace auryn { * VOLTAGEMONITOR_PASTED_SPIKE_HEIGHT by reading out the the current spikes. For * performance it is adviced to use the StateMonitor which does not do any * spike pasting. */ -class VoltageMonitor : protected Monitor +class VoltageMonitor : public Monitor { private: /*! Global neuron id to record from */ From ada7f84db133bc2368f485cc5113ec46cbdd43b4 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 25 May 2016 15:33:49 -0700 Subject: [PATCH 194/460] Changes access rights in SpikeMonitor --- src/SpikeMonitor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SpikeMonitor.h b/src/SpikeMonitor.h index 71b07820..1f5b0b67 100644 --- a/src/SpikeMonitor.h +++ b/src/SpikeMonitor.h @@ -49,7 +49,7 @@ namespace auryn { * maninly for debugging). * */ -class SpikeMonitor : Monitor +class SpikeMonitor : public Monitor { private: NeuronID n_from; From 381d6ca6b44fe963c0805089fed70e5e98fc5b0e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 26 May 2016 08:58:59 -0700 Subject: [PATCH 195/460] Adds a function to StimulusGroup which can be used by groups inheriting from it. --- src/StimulusGroup.cpp | 9 +++++++-- src/StimulusGroup.h | 16 ++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/src/StimulusGroup.cpp b/src/StimulusGroup.cpp index f077d658..e629df58 100644 --- a/src/StimulusGroup.cpp +++ b/src/StimulusGroup.cpp @@ -455,7 +455,7 @@ void StimulusGroup::set_pattern_activity(unsigned int i) } } -void StimulusGroup::set_pattern_activity(unsigned int i,AurynFloat setrate) +void StimulusGroup::set_pattern_activity(unsigned int i, AurynFloat setrate) { type_pattern current = stimuli[i]; type_pattern::iterator iter; @@ -468,12 +468,17 @@ void StimulusGroup::set_pattern_activity(unsigned int i,AurynFloat setrate) void StimulusGroup::set_active_pattern(unsigned int i) +{ + set_active_pattern(i, background_rate); +} + +void StimulusGroup::set_active_pattern(unsigned int i, AurynFloat default_value) { std::stringstream oss; oss << "StimulusGroup:: Setting active pattern " << i ; auryn::logger->msg(oss.str(),VERBOSE); - set_all( background_rate ); + set_all( default_value ); if ( i < stimuli.size() ) { set_pattern_activity(i); } diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index e2b74256..88b15ac6 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -183,10 +183,26 @@ class StimulusGroup : public SpikingGroup /*! \brief Set mean on period */ void set_mean_on_period(AurynFloat period); + /*! \brief Function that loops over the stimulus/pattern vector and sets the activity verctor to the gamma values given with the pattern. */ void set_pattern_activity( unsigned int i ); + + /*! \brief Function that loops over the stimulus/pattern vector and sets the activity verctor to the given value. */ void set_pattern_activity( unsigned int i, AurynFloat setval ); + + /*! \brief This function is called internally and sets the activity level to a given active stimulus + * + * @param i the index of the pattern to set the activity to + */ void set_active_pattern( unsigned int i ); + /*! \brief This function is called internally and sets the activity level to a given active stimulus + * + * @param i The index of the pattern to set the activity to + * @param default_value The value to assign to the activity values which are not specified in the pattern file. + * Typically this corresponds to some background value. + */ + void set_active_pattern( unsigned int i, AurynFloat default_value); + void set_next_action_time(double time); /*! \brief Setter for pattern probability distribution */ From d9f416492c4628eea9d6b191dfe9afe3cf9c5e1f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 26 May 2016 20:54:45 -0700 Subject: [PATCH 196/460] Preps Connection.h for removal of target pointer --- src/Connection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Connection.h b/src/Connection.h index cfdec844..32cb2c25 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -263,7 +263,7 @@ BOOST_SERIALIZATION_ASSUME_ABSTRACT(Connection) inline void Connection::transmit(NeuronID id, AurynWeight amount) { NeuronID localid = dst->global2rank(id); - target[localid]+=amount; + target_state_vector->data[localid]+=amount; } } From da6c2145556ce1b1839e963c9d441cd021134504 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 30 May 2016 19:12:43 -0700 Subject: [PATCH 197/460] Fixes instructions in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b52ffa7..b79aba91 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ To download and compile the examples try: ``` sudo apt-get install cmake git build-essential libboost-all-dev git clone https://github.com/fzenke/auryn.git && cd auryn/build/release -./bootstrap +./bootstrap.sh ``` Documentation & Installation/Use From 3da8201c741430f781071ea574bfdb7f0593d855 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 2 Jun 2016 11:38:24 -0700 Subject: [PATCH 198/460] Updates doxygen strings in System --- src/System.h | 84 +++++++++++++++++++++++++++++++++------------------- 1 file changed, 53 insertions(+), 31 deletions(-) diff --git a/src/System.h b/src/System.h index f0028912..a00d5224 100644 --- a/src/System.h +++ b/src/System.h @@ -116,38 +116,48 @@ namespace auryn { /*! Calls all monitors. */ bool monitor(bool checking); + /*! Implements integration and spike propagation of a single integration step. */ + void step(); + + /*! Initialializes the recvs for all the MPI sync */ + void sync_prepare(); + + void init(); + void free(); + public: - /*! Switch to turn output to quiet mode (no progress bar). */ + /*! \brief Switch to turn output to quiet mode (no progress bar). */ bool quiet; + /*! \brief The progressbar update interval in timesteps of dt. */ unsigned int progressbar_update_interval; + /*! \brief Switch to turn output to quiet mode (no progress bar). */ System(); System(mpi::communicator * communicator); - void init(); + + /*! \brief Sets the simulation name. */ void set_simulation_name(std::string name); - virtual ~System(); - void free(); - /*! Implements integration and spike propagation of a single integration step. */ - void step(); + virtual ~System(); - /*! Initialializes the recvs for all the MPI sync */ - void sync_prepare(); - /*! Return formatted version string. */ + /*! \brief Return formatted version string. */ string get_version_string(); - /*! Sets the SpikingGroup ID used to display the rate estimate in the - * progressbar (this typically is reflected by the order in + /*! \brief Sets the SpikingGroup ID used to display the rate estimate in the + * progressbar + * + * This typically is reflected by the order in * which you define the SpikingGroup and NeuronGroup classes. It starts - * numbering from 0.). */ + * numbering from 0, but you can also get the ID from a SpikingGroup via the get_uid() + * function. */ void set_online_rate_monitor_id( unsigned int id=0 ); - /*! Sets the timeconstant to compute the online rate average for the status bar. */ + /*! \brief Sets the timeconstant to compute the online rate average for the status bar. */ void set_online_rate_monitor_tau( AurynDouble tau=100e-3 ); - /*! Returns last elapsed time. */ + /*! \brief Returns last elapsed time. */ double get_last_elapsed_time(); /*! \brief Saves network state to a netstate file @@ -162,13 +172,13 @@ namespace auryn { * that point with a changed parameter set (e.g. a new stimulus set or * similar). * - * \param Prefix (including directory path) of the netstate file without extension + * \param basename (including directory path) of the netstate file without extension */ void save_network_state(std::string basename); /*! \brief Loads network state from a netstate file * - * \param Basename (directory and prefix of file) of the netstate file without extension + * \param basename (directory and prefix of file) of the netstate file without extension */ void load_network_state(std::string basename); @@ -191,48 +201,60 @@ namespace auryn { void flush_monitors(); - /*! Registers an instance of SpikingGroup to the spiking_groups vector. */ + /*! \brief Registers an instance of SpikingGroup to the spiking_groups vector. + * + * Called internally by constructor of SpikingGroup. */ void register_spiking_group(SpikingGroup * spiking_group); - /*! Registers an instance of Connection to the connections vector. */ + /*! \brief Registers an instance of Connection to the connections vector. + * + * Called internally by constructor of Connection. */ void register_connection(Connection * connection); - /*! Registers an instance of Monitor to the monitors vector. */ + /*! \brief Registers an instance of Monitor to the monitors vector. + * + * Called internally by constructor of Monitor. */ void register_monitor(Monitor * monitor); - /*! Registers an instance of Checker to the checkers vector. + /*! \brief Registers an instance of Checker to the checkers vector. * - * Note: The first checker that is registered is by default used by System for the rate output in the progress bar.*/ + * Note: The first checker that is registered is by default used by System for the rate output in the progress bar. + * Called internally by constructor of Monitor. */ void register_checker(Checker * checker); - /*! Run simulation for a given time. - * \param simulation_time time to run the simulation - * \param checking true if checkers can break the run (e.g. if a frequency get's to high and the network explodes) */ + /*! \brief Runs a simulation for a given amount of time. + * + * \param simulation_time time to run the simulation in seconds. + * \param checking true if checkers can break the run (e.g. if a frequency get's to high and the network explodes) + * */ bool run(AurynFloat simulation_time, bool checking=true); - /*! This and interface to run a single progress bar, but cut it in different chunks to turn on + /*! \brief Runs simulation for a given amount of time + * + * Exposes the interface to the progressbar params. Can be used to run a single progress bar, + * but cut it in different chunks to turn on * and off stuff in the simulation without perturbing the output. interval_start and end define * the total duration of the simulation (this is used to build the progress bar, while chung_time * is the actual time that is simulated for each call.*/ bool run_chunk(AurynFloat chunk_time, AurynFloat interval_start, AurynFloat interval_end, bool checking=true); - /*! Get the current system time in [s] */ + /*! \brief Gets the current system time in [s] */ AurynDouble get_time(); - /*! Get the current clock value in AurynTime */ + /*! \brief Gets the current clock value in AurynTime */ AurynTime get_clock(); - /*! Get a pointer to the current clock. */ + /*! \brief Gets a pointer to the current clock. */ AurynTime * get_clock_ptr(); - /*! Get total number of registered neurons */ + /*! \brief Get total number of registered neurons */ AurynLong get_total_neurons(); - /*! Get total effective load */ + /*! \brief Get total effective load */ AurynDouble get_total_effective_load(); - /*! Get total number of registered synapses */ + /*! \brief Get total number of registered synapses */ AurynLong get_total_synapses(); /*! \brief Format output file name From 7212983071bb7f946059df6a6f115a7705fcf41c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 2 Jun 2016 11:57:33 -0700 Subject: [PATCH 199/460] Updates doxystrings in SpikingGroup.h --- src/SpikingGroup.h | 115 ++++++++++++++++++++++++++++++++++----------- 1 file changed, 88 insertions(+), 27 deletions(-) diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 8fc14ad0..ae4071f4 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -90,38 +90,44 @@ class SpikingGroup int axonaldelay; protected: - /*! Pretraces */ + /*! \brief Pretraces */ std::vector pretraces; - /*! Posttraces */ + /*! \brief Posttraces */ std::vector posttraces; - /*! Post state traces */ + /*! \brief Post state traces */ std::vector post_state_traces; std::vector post_state_traces_spike_biases; std::vector post_state_traces_states; - /*! Identifying name for object */ + /*! \brief Identifying name for object */ std::string group_name; - /*! Stores the size of the group */ + /*! \brief Stores the size of the group */ NeuronID size; - /*! Stores the size of the group on this rank */ + /*! \brief Stores the size of the group on this rank */ NeuronID rank_size; - /*! SpikeContainers to store spikes produced during one step of evolve. */ + /*! \brief SpikeContainers to store spikes produced during one step of evolve. */ SpikeContainer * spikes; AttributeContainer * attribs; /*! Stores the length of output delay */ static AurynTime * clock_ptr; - /* Functions related to loading and storing the state from files */ virtual void load_input_line(NeuronID i, const char * buf); + virtual std::string get_output_line(NeuronID i); + /*! \brief Implementatinon of serialize function for writing. */ virtual void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); + + /*! \brief Implementatinon of serialize function for reading. */ virtual void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); + + /*! \brief Frees potentially allocated memory */ + void free(); public: SpikeDelay * delay; @@ -145,7 +151,7 @@ class SpikingGroup /*! \brief Creates a new or returns an existing state vector by name. */ AurynStateVector * get_state_vector(std::string key); - /*! Randomizes the content of a state vector with Gaussian random numbers. Seeding is MPI save. */ + /*! \brief Randomizes the content of a state vector with Gaussian random numbers. Seeding is MPI save. */ void randomize_state_vector_gauss(std::string state_vector_name, AurynState mean, AurynState sigma, int seed=12239); /*! \brief Default constructor */ @@ -178,53 +184,96 @@ class SpikingGroup void inc_num_spike_attributes(int x); int get_num_spike_attributes(); - /*! Frees potentially allocated memory */ - void free(); + /*! \brief Virtual pure evolve function which needs to be implemented by derived classes + * + * The evolve function is called during simulations in every timestep by the System class. + * It updates the internal state of the spiking group and pushes spikes which + * are generated in this timestep to the axonal output delay (SpikeDelay). + */ virtual void evolve() = 0; + + /*! \brief Conditional evolve functino which is called by System + * + * This function invoces evolve if the present group has work to be done on the current rank. + * Thus the call of evolve is made conditional on the fact if there is work to be done for this + * group on the present rank. This is only important for MPI parallel simulations. + */ void conditional_evolve(); + + /*! \brief Returns locked rank for SpikingGroups which are not distributed across all ranks */ unsigned int get_locked_rank(); + + /*! \brief Returns locked range of ranks for SpikingGroups which are not distributed across all ranks */ unsigned int get_locked_range(); + + /*! \brief Returns pointer to a spike container that contains spikes which arrive in this timestep from all neurons in this group. + * + * In paralell simulations the SpikeContainer returned is at this point in time guaranteed to contain spikes from all ranks. */ SpikeContainer * get_spikes(); - /*! Supplies pointer to SpikeContainer of spikes generated during the last evolve() step. */ + + /*! \brief Returns pointer to SpikeContainer of spikes generated during the last evolve() step. */ SpikeContainer * get_spikes_immediate(); - /*! Supplies pointer to Attributecontainer for usage in propagating Connection objects. Same as get_spikes_immediate(), however might be overwritten to contain Spikes that have been delayed. */ + + /*! \brief Returns pointer to Attributecontainer for usage in propagating Connection objects. Same as get_spikes_immediate(), however might be overwritten to contain Spikes that have been delayed. */ AttributeContainer * get_attributes(); - /*! Supplies pointer to Attributecontainer of spikes generated during the last evolve() step. */ + + /*! \brief Returns pointer to Attributecontainer of spikes generated during the last evolve() step. */ AttributeContainer * get_attributes_immediate(); - /*! Returns the size of the group. */ + + /*! \brief Returns the size of the group. */ NeuronID get_size(); + + /*! \brief Returns the size of the group. + * + * It's the size that should be used when a presynaptic trace is defined on this grou, hence the name. */ NeuronID get_pre_size(); - /*! Determines rank size and stores it in local variable. */ + + /*! \brief Determines rank size and stores it in local variable. */ NeuronID calculate_rank_size(int rank = -1); - /*! Returns the size of the rank. */ + + /*! \brief Returns the size on this rank. */ NeuronID get_rank_size(); + + /*! \brief Returns the size on this rank. + * + * It's the size that should be used when a postsynaptic trace is defined on this group, hence the name. */ NeuronID get_post_size(); - /*! Returns the effective load of the group. */ + + /*! \brief Returns the effective load of the group. */ AurynDouble get_effective_load(); void set_clock_ptr(AurynTime * clock); - /*! Returns true if this group is hosted at a single CPU. */ + + /*! \brief Returns true if this group is hosted at a single CPU. */ bool evolve_locally(); - /*! Get the unique ID of the class */ + /*! \brief Get the unique ID of the class */ NeuronID get_uid(); - /*! Returns a pre trace with time constant x + /*! \brief Returns a pre trace with time constant x + * * Checks first if an instance of a trace exists and returns it - * otherwise creates a new instance first */ + * otherwise creates a new instance first. */ PRE_TRACE_MODEL * get_pre_trace( AurynFloat x ); - /*! Returns a post trace with time constant x + /*! \brief Returns a post trace with time constant x + * * Checks first if an instance of a trace exists and returns it - * otherwise creates a new instance first */ + * otherwise creates a new instance first. */ DEFAULT_TRACE_MODEL * get_post_trace( AurynFloat x ); + /*! \brief Pushes a spike into the axonal SpikeDelay buffer */ void push_spike(NeuronID spike); + /*! \brief Pushes a spike attribute into the axonal SpikeDelay buffer + * + * This is for instance used to implement short-term plasticity in which each presynaptic spike is associated + * with a certain currently available amount of presynaptic neurotransmitter. Spike attributes are float values + * which can be attaced to a spike to convey this information. */ void push_attribute(AurynFloat attrib); - /*! Clear all spikes stored in the delays which is useful to reset a network during runtime */ + /*! \brief Clears all spikes stored in the delays which is useful to reset a network during runtime */ void clear_spikes(); @@ -253,18 +302,30 @@ class SpikingGroup * */ EulerTrace * get_post_state_trace( AurynStateVector * state, AurynFloat tau=10e-3, AurynFloat b=0.0 ); - /*! Sets axonal delay for this SpikingGroup */ + /*! \brief Sets axonal delay for this SpikingGroup + * + * Note the delay needs to be larger er equal to the MINDELAY defined in auryn_definitions.h */ void set_delay( int d ); + /*! \brief Writes current states of SpikingGroup to human-readible textfile if implemented in derived class */ virtual bool write_to_file(const char * filename); + + /*! \brief Reads current states of SpikingGroup to human-readible textfile if implemented in derived class */ virtual bool load_from_file(const char * filename); + /*! \brief Returns size (num of neurons) on the current rank */ NeuronID ranksize(); + + /*! \brief Converts global NeuronID within the SpikingGroup to the local NeuronID on this rank. */ NeuronID global2rank(NeuronID i); + + /*! \brief Converts local NeuronID within on this rank to global NeuronID . */ NeuronID rank2global(NeuronID i); + + /*! \brief Checks if the global NeuronID i is housed on this rank. */ bool localrank(NeuronID i); - /*! Rank size but rounded up to multiples of 4 for SSE compatibility */ + /*! \brief Rank size but rounded up to multiples of 4 (or potentially some other and larger number in future versions) for SSE compatibility */ NeuronID get_vector_size(); #ifdef CODE_GATHER_STATS_WAITALL_TIME From d973da9e48491da3bcce62b505fdbfcfd5e0eb69 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 2 Jun 2016 12:10:18 -0700 Subject: [PATCH 200/460] Updates doxystrings in header files --- src/Logger.h | 2 +- src/auryn_definitions.h | 30 ++++++++++++++++++++++-------- 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/src/Logger.h b/src/Logger.h index 27c01159..1caa1732 100644 --- a/src/Logger.h +++ b/src/Logger.h @@ -36,7 +36,7 @@ #define CERRLEVEL WARNING namespace auryn { -/*! Enum type for significance level of a given message send to the logger */ +/*! \brief Enum type for significance level of a given message send to the Logger */ enum LogMessageType { EVERYTHING, VERBOSE, INFO, NOTIFICATION, SETTINGS, PROGRESS, WARNING, ERROR, NONE }; /*! \brief A generic logger class that logs to screen and a log-file. diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 3d2f1e5a..7574600a 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -123,10 +123,11 @@ namespace mpi = boost::mpi; namespace auryn { - /*! System wide integration time step */ + + /*! \brief Simulator wide integration time step */ const double dt = 1.0e-4; - /*! Specifies the different transmitter types + /*! \brief Specifies the different transmitter types * that Auryn knows. */ enum TransmitterType { GLUT, //!< Standard Glutamatergic (excitatory) transmission. @@ -137,6 +138,7 @@ namespace auryn { CURSYN //!< Current based synapse with dynamics. }; + /*! \brief Specifies stimulus order used in StimulusGroup */ enum StimulusGroupModeType { MANUAL, RANDOM, SEQUENTIAL, SEQUENTIAL_REV, STIMFILE }; @@ -155,38 +157,43 @@ namespace auryn { - + /*! \brief Struct that defines a pair of neurons in SparseConnection */ struct neuron_pair { NeuronID i,j; } ; + /*! \brief Struct used to define neuronal assembly patterns in SparseConnection */ struct pattern_member { NeuronID i; AurynDouble gamma; } ; + typedef std::vector type_pattern; - /*! Determines memory alignment (adapted from ATLAS library) + /*! \brief Determines memory alignment (adapted from ATLAS library) + * @param N max return value @param *vp Pointer to be aligned @param inc size of element, in bytes @param align required alignment, in bytes */ int auryn_AlignOffset (const int N, const void *vp, const int inc, const int align); - /*! Rounds vector size to multiple of four to allow using the SSE optimizations. */ + /*! \brief Rounds vector size to multiple of four to allow using the SSE optimizations. */ NeuronID calculate_vector_size(NeuronID i); - /*! Auryn spike event for binary monitors */ + /*! \brief Auryn spike event for binary monitors */ struct SpikeEvent_type { AurynTime time; NeuronID neuronID; }; - /*! Tag for header in binary encoded spike monitor files. The first digits are 28796 for Auryn in + /*! \brief Tag for header in binary encoded spike monitor files. + * + * The first digits are 28796 for Auryn in * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn * version */ const NeuronID tag_binary_spike_monitor = 287960000+100*AURYNVERSION+10*AURYNSUBVERSION+1*AURYNREVISION; @@ -308,13 +315,20 @@ namespace auryn { class AurynVectorFloat; // Forward declaration - /*! \brief Defines AurynStateVector type + /*! \brief Defines AurynStateVector type as synonymous to AurynVectorFloat * + * Auryn state vectors are used to implement vectorized code for SpikingGroup and NeuronGroup. + * An AurynStateVector in a SpikingGroup typically has the local rank size of that group and + * each neuronal state variable corresponds to a state vector that houses this state for all neurons on that rank. + * AurynStateVectors are defined as AurynVectorFloat. * This typically needs to change when AurynState or AurynFloat types are changed. */ typedef AurynVectorFloat AurynStateVector; // Legacy state vector types + /*! \brief Legacy definition of AurynStateVector */ typedef AurynStateVector auryn_vector_float; //!< Default legacy Auryn state vector type + + /*! \brief Legacy definition of AurynVector */ typedef AurynVector auryn_vector_ushort; //!< Default legacy Auryn ushort vector type From c7c11c6251274dbb97575f53c0cb43c6e02c1d98 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 2 Jun 2016 12:13:37 -0700 Subject: [PATCH 201/460] Adds doxystring --- src/DelayedSpikeMonitor.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/DelayedSpikeMonitor.h b/src/DelayedSpikeMonitor.h index dd825365..037b5d18 100644 --- a/src/DelayedSpikeMonitor.h +++ b/src/DelayedSpikeMonitor.h @@ -38,8 +38,13 @@ namespace auryn { /*! \brief SpikeMonitor that reads the delayed spikes as they are * received by a postsynaptic neuron. * - * This monitor has mainly testing pruposes since it records all - * the spikes on each node (which effectively multiplies spikes. + * Usually SpikeMonitor writes spikes to file for the rank that it runs on. i.e. each rank + * writes is own spk file which then need to be merged. This monitor writes all spikes from + * all ranks to files on all ranks. The spikes writen by this monitor are delayed by the + * axonal delay (because they need to be communicated from all ranks to all ranks first). + * The main role of this monitor is to test SyncBuffer and Auryn's spike synchornization. + * It records all + * the spikes on each node (which effectively multiplies spikes). */ class DelayedSpikeMonitor : Monitor { From 4bc6b800eab517fca21cf81de1ae7f558e75935d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 2 Jun 2016 12:14:39 -0700 Subject: [PATCH 202/460] Updates doxystring --- src/LinearTrace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LinearTrace.h b/src/LinearTrace.h index 83ed3593..b9cb2667 100644 --- a/src/LinearTrace.h +++ b/src/LinearTrace.h @@ -35,7 +35,7 @@ namespace auryn { /*! \brief Exponential synaptic trace which exactly solves in an event-based manner. * * Since this trace is normally slower than brut-force computing all traces - * with forward Euler, it is disabled by default. + * with forward Euler (EulerTrace), it is disabled by default. */ class LinearTrace From 9346acc4f085a26ae4ae43504075416456302ed8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 2 Jun 2016 12:18:10 -0700 Subject: [PATCH 203/460] Removes GabaMonitor because it is superseded by StateMonitor --- src/GabaMonitor.cpp | 59 --------------------------------------------- src/GabaMonitor.h | 56 ------------------------------------------ src/auryn.h | 1 - 3 files changed, 116 deletions(-) delete mode 100644 src/GabaMonitor.cpp delete mode 100644 src/GabaMonitor.h diff --git a/src/GabaMonitor.cpp b/src/GabaMonitor.cpp deleted file mode 100644 index 1027372d..00000000 --- a/src/GabaMonitor.cpp +++ /dev/null @@ -1,59 +0,0 @@ -/* -* Copyright 2014-2016 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include "GabaMonitor.h" - -using namespace auryn; - -GabaMonitor::GabaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) : Monitor(filename) -{ - init(source,id,filename,stepsize); -} - -GabaMonitor::~GabaMonitor() -{ -} - -void GabaMonitor::init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize) -{ - auryn::sys->register_monitor(this); - - src = source; - ssize = stepsize; - if ( ssize < 1 ) ssize = 1; - - g_gaba = src->get_state_vector("g_gaba"); - - nid = id; - outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); -} - -void GabaMonitor::propagate() -{ - if (auryn::sys->get_clock()%ssize==0) { - outfile << dt*(auryn::sys->get_clock()) << " " << g_gaba->get(nid) << "\n"; - } - -} diff --git a/src/GabaMonitor.h b/src/GabaMonitor.h deleted file mode 100644 index 2afed45f..00000000 --- a/src/GabaMonitor.h +++ /dev/null @@ -1,56 +0,0 @@ -/* -* Copyright 2014-2016 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#ifndef GABAMONITOR_H_ -#define GABAMONITOR_H_ - -#include "auryn_definitions.h" -#include "AurynVector.h" -#include "Monitor.h" -#include "System.h" -#include "Connection.h" -#include -#include - - -/*! \brief Records the GABA conductance from one specific unit from the source group. */ -namespace auryn { - class GabaMonitor : protected Monitor - { - protected: - NeuronGroup * src; - AurynStateVector * g_gaba; - NeuronID nid; - AurynTime ssize; - void init(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize); - - public: - GabaMonitor(NeuronGroup * source, NeuronID id, std::string filename, AurynTime stepsize=1); - virtual ~GabaMonitor(); - void propagate(); - }; -} - -#endif /*GABAMONITOR_H_*/ diff --git a/src/auryn.h b/src/auryn.h index f1da2c16..1160037c 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -93,7 +93,6 @@ // Monitor and stimulator definitions #include "Monitor.h" -#include "GabaMonitor.h" #include "VoltageMonitor.h" #include "SpikeMonitor.h" #include "BinarySpikeMonitor.h" From 688505bace2b2ebb2231627e338d865432b683bb Mon Sep 17 00:00:00 2001 From: Lorric Ziegler Date: Sun, 5 Jun 2016 11:44:48 +0200 Subject: [PATCH 204/460] added z support to set/scale_data, fixed get_data in ComplexMatrix --- src/ComplexMatrix.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index f396e7df..ea23090e 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -162,8 +162,8 @@ class ComplexMatrix /*! \brief Copies complex matrix mat */ void copy(ComplexMatrix * mat); - void set_data(AurynLong i, T value); - void scale_data(AurynLong i, T value); + void set_data(AurynLong i, T value, StateID z=0); + void scale_data(AurynLong i, T value, StateID z=0); /*! Gets the matching data entry for a given index i and state z*/ T get_data(AurynLong i, StateID z=0); /*! Gets the matching data ptr for a given index i and state z*/ @@ -303,24 +303,22 @@ T * ComplexMatrix::get_data_ptr(const NeuronID * ind_ptr, const StateID z) template T ComplexMatrix::get_data(const NeuronID * ind_ptr, StateID z) { - return *(get_data_ptr(ind_ptr)); + return *(get_data_ptr(ind_ptr,z)); } -//FIXME the following functions still need to have added z value support template -void ComplexMatrix::set_data(AurynLong i, T value) +void ComplexMatrix::set_data(AurynLong i, T value, StateID z) { if (i -void ComplexMatrix::scale_data(AurynLong i, T value) +void ComplexMatrix::scale_data(AurynLong i, T value, StateID z) { if (i Date: Sun, 5 Jun 2016 09:24:43 -0700 Subject: [PATCH 205/460] Updates doxystrings --- src/SyncBuffer.cpp | 2 +- src/SyncBuffer.h | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 552b2488..a53f8414 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -56,7 +56,7 @@ void SyncBuffer::init() deltaT = 0.0; #endif - // add a size check here + // TODO add a size check here // sizeof(NeuronID) // sizeof(AurynFloat); } diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index af0a7bcc..5651ec66 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -56,7 +56,7 @@ namespace auryn { NeuronID maxSendSum2; NeuronID syncCount; - /*! The send buffer size that all ranks agree upon */ + /*! \brief The send buffer size that all ranks agree upon */ NeuronID max_send_size; mpi::communicator * mpicom; @@ -68,7 +68,7 @@ namespace auryn { NeuronID count[MINDELAY]; // needed to decode attributes - /*! vector with offset values to allow to pop more than one delay */ + /*! \brief vector with offset values to allow to pop more than one delay */ std::vector pop_offsets; void reset_send_buffer(); @@ -78,14 +78,19 @@ namespace auryn { public: + /*! \brief The default contructor. */ SyncBuffer( mpi::communicator * com ); + /*! \brief Synchronize spikes and additional information across ranks. */ void sync(); + /*! \brief Pushes a spike delay with all its spikes to the SyncBuffer. */ void push(SpikeDelay * delay, NeuronID size); + + /*! \brief Rerieves a spike delay with all its spikes from the SyncBuffer. */ void pop(SpikeDelay * delay, NeuronID size); - /*! Return max_send_size value which determines the size of the MPI AllGather operation. */ + /*! \brief Return max_send_size value which determines the size of the MPI AllGather operation. */ int get_max_send_buffer_size(); #ifdef CODE_COLLECT_SYNC_TIMING_STATS From 71462c84409c6083be78b063fc4a99d4424a831d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 5 Jun 2016 11:47:11 -0700 Subject: [PATCH 206/460] Initial commit for spike delta based SyncBuffer --- src/SyncBuffer.cpp | 116 +++++++++++++++++++++++++++++---------------- src/SyncBuffer.h | 17 +++++-- src/System.cpp | 1 + 3 files changed, 88 insertions(+), 46 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index a53f8414..a7efefa0 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -33,11 +33,20 @@ SyncBuffer::SyncBuffer( mpi::communicator * com ) init(); } +SyncBuffer::~SyncBuffer( ) +{ + delete pop_carry_offsets; +} + void SyncBuffer::init() { - for ( NeuronID i = 0 ; i < mpicom->size() ; ++i ) - pop_offsets.push_back(1); + pop_offsets = new NeuronID[mpicom->size()]; + pop_carry_offsets = new NeuronID[ mpicom->size() ]; + for ( NeuronID i = 0 ; i < mpicom->size() ; ++i ) { + pop_offsets[i] = 0; + pop_carry_offsets[i] = 0; + } overflow_value = -1; @@ -51,6 +60,7 @@ void SyncBuffer::init() reset_send_buffer(); + #ifdef CODE_COLLECT_SYNC_TIMING_STATS measurement_start = MPI_Wtime(); deltaT = 0.0; @@ -61,27 +71,36 @@ void SyncBuffer::init() // sizeof(AurynFloat); } -void SyncBuffer::push(SpikeDelay * delay, NeuronID size) +void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) { - // loop over circular different delay bins + AurynLong unrolled_last_pos = carry_offset; + // circular loop over different delay bins for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { SpikeContainer * sc = delay->get_spikes(i); + const NeuronID slice = i-1; - // NeuronID s = (NeuronID) (sc->size()); - // send_buf[0] += s; - - count[i-1] = 0; + count[slice] = 0; + // loop over all spikes in current delay slice for (SpikeContainer::const_iterator spike = sc->begin() ; spike != sc->end() ; ++spike ) { - NeuronID compressed = *spike + groupPushOffset1 + (i-1)*size; - send_buf.push_back(compressed); - count[i-1]++; + // compute unrolled position in current delay + AurynLong unrolled_pos = *spike + slice*size; + // compute vertical unrolled difference from last spike + NeuronID spike_offset = unrolled_pos - unrolled_last_pos; + // memorize current position in slice + unrolled_last_pos = unrolled_pos; + // TODO add overflow managment + // std::cout << "push_back " << spike_offset << std::endl; + send_buf.push_back(spike_offset); + count[slice]++; } - - send_buf[0] += delay->get_spikes(i)->size(); // send the total number of spikes } + // set save carry_offset + AurynLong unrolled_pos = MINDELAY*size; + carry_offset = unrolled_pos-unrolled_last_pos; + // transmit get_num_attributes() attributes for count spikes for all time slices if ( delay->get_num_attributes() ) { for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { @@ -99,40 +118,56 @@ void SyncBuffer::push(SpikeDelay * delay, NeuronID size) } } } +} - groupPushOffset1 += size*MINDELAY; + +void SyncBuffer::null_terminate_send_buffer() +{ + send_buf.push_back(carry_offset); } -void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) +void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) { + // clear all receiving buffers in the relevant time range for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { + // TODO consider passing the current rank, because in principle it should not require the sync delay->get_spikes(i)->clear(); delay->get_attributes(i)->clear(); } - + // loop over different rank input segments in recv_buf for (int r = 0 ; r < mpicom->size() ; ++r ) { - NeuronID numberOfSpikes = recv_buf[r*max_send_size]; // total data + AurynLong unrolled_last_pos = pop_carry_offsets[r]; + + // reset time slice spike counts + for ( int i = 0 ; i < MINDELAY ; ++i ) count[i] = 0; + + //read current difference element from buffer and interpret as unrolled NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike + AurynLong unrolled_spike = *iter + unrolled_last_pos; + unrolled_last_pos = unrolled_spike; - NeuronID temp = (*iter - groupPopOffset); - NeuronID spike = temp%size; // spike (if it exists) in current group - int t = temp/size; // timeslice in MINDELAY if we are out this might be the next group + while ( unrolled_last_pos < MINDELAY*size ) { // spike belongs to current group + // spike lies in this group so lets push it to the right buffer + const int slice = unrolled_spike/size; + const NeuronID spike = unrolled_spike%size; + + // std::cout << "pop r:" << r << " slice: " << slice << " spike:" << spike << std::endl; - for ( int i = 0 ; i < MINDELAY ; ++i ) count[i] = 0; - // while we are in the current group && have not read all entries - while ( t < MINDELAY && numberOfSpikes ) { - delay->get_spikes(t+1)->push_back(spike); - iter++; - numberOfSpikes--; - count[t]++; // store spike counts for each time-slice - - temp = (*iter - groupPopOffset); - spike = temp%size; - t = temp/size; + delay->get_spikes(slice+1)->push_back(spike); // TODO remember why we needed the plus one again + count[slice]++; // store spike counts for each time-slice to decode the spike arguments correctly + + // advance iterator + iter++; + unrolled_spike = *iter + unrolled_last_pos; + unrolled_last_pos = unrolled_spike; } + unrolled_spike -= MINDELAY*size; + // TODO store carry information and offsets + pop_carry_offsets[r] = unrolled_spike; + // extract a total of count*get_num_attributes() attributes if ( delay->get_num_attributes() ) { @@ -155,12 +190,9 @@ void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) } } } - - recv_buf[r*max_send_size] = numberOfSpikes; // save remaining entries pop_offsets[r] = iter - &recv_buf[r*max_send_size]; // save offset in recv_buf section } - groupPopOffset += size*MINDELAY; #ifdef DEBUG if ( mpicom->rank() == 0 ) { @@ -254,11 +286,8 @@ void SyncBuffer::sync() // reset NeuronID largest_message = 0; - for (std::vector::iterator iter = pop_offsets.begin() ; - iter != pop_offsets.end() ; - ++iter ) { - largest_message = std::max(*iter,largest_message); - *iter = 1; + for ( int i = 0 ; i < mpicom->size() ; ++i ) { + largest_message = std::max(pop_offsets[i],largest_message); } maxSendSum += largest_message; maxSendSum2 += largest_message*largest_message; @@ -273,8 +302,13 @@ void SyncBuffer::reset_send_buffer() { send_buf.clear(); send_buf.push_back(0); // initial size first entry - groupPushOffset1 = 0; - groupPopOffset = 0; + + // reset carry offsets for push and pop functions + carry_offset = 0; + for ( int i = 0 ; i < mpicom->size() ; ++i ) { + pop_offsets[i] = 0; + pop_carry_offsets[i] = 0; + } } int SyncBuffer::get_max_send_buffer_size() diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 5651ec66..5428eaf7 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -63,13 +63,14 @@ namespace auryn { NeuronID overflow_value; - NeuronID groupPushOffset1; - NeuronID groupPopOffset; + NeuronID carry_offset; + + NeuronID * pop_carry_offsets; NeuronID count[MINDELAY]; // needed to decode attributes /*! \brief vector with offset values to allow to pop more than one delay */ - std::vector pop_offsets; + NeuronID * pop_offsets; void reset_send_buffer(); @@ -81,14 +82,20 @@ namespace auryn { /*! \brief The default contructor. */ SyncBuffer( mpi::communicator * com ); + /*! \brief The default destructor. */ + virtual ~SyncBuffer( ); + /*! \brief Synchronize spikes and additional information across ranks. */ void sync(); /*! \brief Pushes a spike delay with all its spikes to the SyncBuffer. */ - void push(SpikeDelay * delay, NeuronID size); + void push(SpikeDelay * delay, const NeuronID size); + + /*! \brief Terminate send buffer. */ + void null_terminate_send_buffer(); /*! \brief Rerieves a spike delay with all its spikes from the SyncBuffer. */ - void pop(SpikeDelay * delay, NeuronID size); + void pop(SpikeDelay * delay, const NeuronID size); /*! \brief Return max_send_size value which determines the size of the MPI AllGather operation. */ int get_max_send_buffer_size(); diff --git a/src/System.cpp b/src/System.cpp index e796cfe5..becf331b 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -231,6 +231,7 @@ void System::sync() std::vector::const_iterator iter; for ( iter = spiking_groups.begin() ; iter != spiking_groups.end() ; ++iter ) syncbuffer->push((*iter)->delay,(*iter)->get_size()); + syncbuffer->null_terminate_send_buffer(); // // use this to artificially worsening the sync // struct timespec tim, tim2; From 02ce88f6cb8bf8279c9bf5cf043e0fcfac531a7d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 5 Jun 2016 13:45:01 -0700 Subject: [PATCH 207/460] Version compiles now, but still introduces spurious spikes --- src/SyncBuffer.cpp | 61 ++++++++++++++++++++++++++++------------------ 1 file changed, 37 insertions(+), 24 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index a7efefa0..68fc6193 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -35,6 +35,7 @@ SyncBuffer::SyncBuffer( mpi::communicator * com ) SyncBuffer::~SyncBuffer( ) { + delete pop_offsets; delete pop_carry_offsets; } @@ -73,39 +74,41 @@ void SyncBuffer::init() void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) { - AurynLong unrolled_last_pos = carry_offset; + AurynLong unrolled_last_pos = 0; // circular loop over different delay bins for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { SpikeContainer * sc = delay->get_spikes(i); const NeuronID slice = i-1; count[slice] = 0; - // loop over all spikes in current delay slice + // loop over all spikes in current delay time slice for (SpikeContainer::const_iterator spike = sc->begin() ; spike != sc->end() ; ++spike ) { // compute unrolled position in current delay AurynLong unrolled_pos = *spike + slice*size; // compute vertical unrolled difference from last spike - NeuronID spike_offset = unrolled_pos - unrolled_last_pos; + NeuronID spike_delta = unrolled_pos + carry_offset - unrolled_last_pos ; // memorize current position in slice unrolled_last_pos = unrolled_pos; + // discard carry_offset since its only added to the first spike_delta + carry_offset = 0; // TODO add overflow managment - // std::cout << "push_back " << spike_offset << std::endl; - send_buf.push_back(spike_offset); + // std::cout << " spike " << *spike << " push_back " << spike_delta << std::endl; + send_buf.push_back(spike_delta); count[slice]++; } } - // set save carry_offset - AurynLong unrolled_pos = MINDELAY*size; - carry_offset = unrolled_pos-unrolled_last_pos; + // set save carry_offset which is the remaining difference from the present group + // plus because there might be more than one group without a spike ... + carry_offset += MINDELAY*size-unrolled_last_pos; // transmit get_num_attributes() attributes for count spikes for all time slices if ( delay->get_num_attributes() ) { - for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { + for (int i = 1 ; i < MINDELAY+1 ; ++i ) { AttributeContainer * ac = delay->get_attributes(i); - for ( NeuronID k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes + for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes for ( NeuronID s = 0 ; s < count[i-1] ; ++s ) { // loop over spikes send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[i-1]*k)))); // #ifdef DEBUG @@ -123,6 +126,8 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) void SyncBuffer::null_terminate_send_buffer() { + // puts a "delta spike" just behind the last unrolled delay of the last group + // std::cout << " term " << carry_offset << std::endl; send_buf.push_back(carry_offset); } @@ -137,43 +142,51 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // loop over different rank input segments in recv_buf for (int r = 0 ; r < mpicom->size() ; ++r ) { - AurynLong unrolled_last_pos = pop_carry_offsets[r]; + AurynLong unrolled_last_pos = 0; // reset time slice spike counts for ( int i = 0 ; i < MINDELAY ; ++i ) count[i] = 0; //read current difference element from buffer and interpret as unrolled NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike - AurynLong unrolled_spike = *iter + unrolled_last_pos; + AurynLong unrolled_spike = *iter -pop_carry_offsets[r]; unrolled_last_pos = unrolled_spike; - while ( unrolled_last_pos < MINDELAY*size ) { // spike belongs to current group + // std::cout << "iter " << *iter << " unrolled " << unrolled_spike << std::endl; - // spike lies in this group so lets push it to the right buffer + if ( unrolled_spike >= MINDELAY*size ) { // spike falls beyond all time slices of this group + // increase carry by group size and carry on + pop_carry_offsets[r] += MINDELAY*size; + // std::cout << "spike not for this group" << std::endl; + } + + while ( unrolled_spike < MINDELAY*size ) { // one or more spikes belong to current group + + // decode spike positon on time slice grid const int slice = unrolled_spike/size; const NeuronID spike = unrolled_spike%size; // std::cout << "pop r:" << r << " slice: " << slice << " spike:" << spike << std::endl; delay->get_spikes(slice+1)->push_back(spike); // TODO remember why we needed the plus one again - count[slice]++; // store spike counts for each time-slice to decode the spike arguments correctly + + // store spike counts for each time-slice to decode the spike arguments correctly + count[slice]++; // advance iterator iter++; unrolled_spike = *iter + unrolled_last_pos; unrolled_last_pos = unrolled_spike; - } - - unrolled_spike -= MINDELAY*size; - // TODO store carry information and offsets - pop_carry_offsets[r] = unrolled_spike; + // set carry bit in case this spike puts us beyond the end and we leave the loop + pop_carry_offsets[r] = MINDELAY*size-unrolled_spike; + } // extract a total of count*get_num_attributes() attributes if ( delay->get_num_attributes() ) { for ( NeuronID slice = 0 ; slice < MINDELAY ; ++slice ) { AttributeContainer * ac = delay->get_attributes(slice+1); - for ( NeuronID k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes + for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes for ( NeuronID s = 0 ; s < count[slice] ; ++s ) { // loop over spikes AurynFloat * attrib; attrib = (AurynFloat*)(iter); @@ -229,17 +242,18 @@ void SyncBuffer::sync() syncCount = 0; } - int ierr; + int ierr = 0; #ifdef CODE_COLLECT_SYNC_TIMING_STATS double T1, T2; T1 = MPI_Wtime(); /* start time */ #endif if ( send_buf.size() <= max_send_size ) { + // std::cout << " sb size " << send_buf.size() << std::endl; ierr = MPI_Allgather(send_buf.data(), send_buf.size(), MPI_UNSIGNED, recv_buf.data(), max_send_size, MPI_UNSIGNED, *mpicom); } else { - // Create a overflow package + // Create an overflow package NeuronID * overflow_data = new NeuronID[2]; overflow_data[0] = -1; overflow_data[1] = send_buf.size(); @@ -301,7 +315,6 @@ void SyncBuffer::sync() void SyncBuffer::reset_send_buffer() { send_buf.clear(); - send_buf.push_back(0); // initial size first entry // reset carry offsets for push and pop functions carry_offset = 0; From ab409ef05af70acac28538f3dad4a8d5ccefb218 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 5 Jun 2016 15:00:12 -0700 Subject: [PATCH 208/460] Small changes in SyncBuffer --- src/SyncBuffer.cpp | 47 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 37 insertions(+), 10 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 68fc6193..e7909d46 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -44,7 +44,7 @@ void SyncBuffer::init() pop_offsets = new NeuronID[mpicom->size()]; pop_carry_offsets = new NeuronID[ mpicom->size() ]; - for ( NeuronID i = 0 ; i < mpicom->size() ; ++i ) { + for ( int i = 0 ; i < mpicom->size() ; ++i ) { pop_offsets[i] = 0; pop_carry_offsets[i] = 0; } @@ -74,11 +74,15 @@ void SyncBuffer::init() void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) { + // DEBUG + std::cout << "Rank " << mpicom->rank() << "push\n"; + delay->print(); + AurynLong unrolled_last_pos = 0; + bool at_least_one_spike = false; // circular loop over different delay bins - for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { - SpikeContainer * sc = delay->get_spikes(i); - const NeuronID slice = i-1; + for (int slice = 0 ; slice < MINDELAY ; ++slice ) { + SpikeContainer * sc = delay->get_spikes(slice+1); count[slice] = 0; // loop over all spikes in current delay time slice @@ -93,16 +97,23 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) unrolled_last_pos = unrolled_pos; // discard carry_offset since its only added to the first spike_delta carry_offset = 0; + // TODO add overflow managment + // std::cout << " spike " << *spike << " push_back " << spike_delta << std::endl; send_buf.push_back(spike_delta); count[slice]++; + + at_least_one_spike = true; } } // set save carry_offset which is the remaining difference from the present group // plus because there might be more than one group without a spike ... - carry_offset += MINDELAY*size-unrolled_last_pos; + if ( at_least_one_spike ) + carry_offset = MINDELAY*size-unrolled_last_pos; + else + carry_offset += MINDELAY*size; // transmit get_num_attributes() attributes for count spikes for all time slices if ( delay->get_num_attributes() ) { @@ -133,9 +144,11 @@ void SyncBuffer::null_terminate_send_buffer() void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) { + // TODO consider passing the current rank, because in principle it should not require the sync + + // clear all receiving buffers in the relevant time range for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { - // TODO consider passing the current rank, because in principle it should not require the sync delay->get_spikes(i)->clear(); delay->get_attributes(i)->clear(); } @@ -144,11 +157,12 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) for (int r = 0 ; r < mpicom->size() ; ++r ) { AurynLong unrolled_last_pos = 0; - // reset time slice spike counts + // reset time slice spike counts to extract correct number of attributes later for ( int i = 0 ; i < MINDELAY ; ++i ) count[i] = 0; //read current difference element from buffer and interpret as unrolled NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike + AurynLong unrolled_spike = *iter -pop_carry_offsets[r]; unrolled_last_pos = unrolled_spike; @@ -157,7 +171,6 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) if ( unrolled_spike >= MINDELAY*size ) { // spike falls beyond all time slices of this group // increase carry by group size and carry on pop_carry_offsets[r] += MINDELAY*size; - // std::cout << "spike not for this group" << std::endl; } while ( unrolled_spike < MINDELAY*size ) { // one or more spikes belong to current group @@ -168,14 +181,15 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // std::cout << "pop r:" << r << " slice: " << slice << " spike:" << spike << std::endl; - delay->get_spikes(slice+1)->push_back(spike); // TODO remember why we needed the plus one again + // push spike to appropriate time slice + delay->get_spikes(slice+1)->push_back(spike); // store spike counts for each time-slice to decode the spike arguments correctly count[slice]++; // advance iterator iter++; - unrolled_spike = *iter + unrolled_last_pos; + unrolled_spike = *iter + unrolled_last_pos; // because we stored differences we need to add unrolled_last_pos = unrolled_spike; // set carry bit in case this spike puts us beyond the end and we leave the loop @@ -206,6 +220,13 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) pop_offsets[r] = iter - &recv_buf[r*max_send_size]; // save offset in recv_buf section } + for( int i = 0; i < mpicom->size(); ++i ) { + MPI_Barrier( *mpicom ); + if ( i == mpicom->rank() ) { + std::cout << "Rank " << mpicom->rank() << "pop " << "\n"; + delay->print(); + } + } #ifdef DEBUG if ( mpicom->rank() == 0 ) { @@ -262,6 +283,12 @@ void SyncBuffer::sync() delete overflow_data; } + // error handling + if ( ierr ) { + std::cerr << "Error during MPI_Allgather." << std::endl; + // TODO add an exceptoin to actually breka the run here + } + #ifdef CODE_COLLECT_SYNC_TIMING_STATS T2 = MPI_Wtime(); /* end time */ deltaT += (T2-T1); From 9f755b4f31e9f392ae7f1683ca0e8f47ec8a488e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 5 Jun 2016 15:00:24 -0700 Subject: [PATCH 209/460] Adds print function to SpikeDelay --- src/SpikeDelay.cpp | 13 +++++++++++++ src/SpikeDelay.h | 3 +++ 2 files changed, 16 insertions(+) diff --git a/src/SpikeDelay.cpp b/src/SpikeDelay.cpp index f4f6f398..a1f99d66 100644 --- a/src/SpikeDelay.cpp +++ b/src/SpikeDelay.cpp @@ -121,3 +121,16 @@ void SpikeDelay::inc_num_attributes( int x ) { numSpikeAttributes += x; } + + +void SpikeDelay::print() +{ + for ( int i = 0 ; i < ndelay ; ++i ) { + std::cout << "slice " << i << ": "; + SpikeContainer * spikes = get_spikes(i); + for ( NeuronID k = 0 ; k < spikes->size() ; ++k ) { + std::cout << spikes->at(k) << " "; + } + std::cout << std::endl; + } +} diff --git a/src/SpikeDelay.h b/src/SpikeDelay.h index 6525f79b..bbbd63b9 100644 --- a/src/SpikeDelay.h +++ b/src/SpikeDelay.h @@ -125,6 +125,9 @@ class SpikeDelay /*! \brief Like get_spikes_immediate but returns the spike attributes. */ AttributeContainer * get_attributes_immediate(); + /*! \brief Print delay contents for debugging . */ + void print(); + /*! Clears all containers in delay. */ void clear(); }; From 3987f11fccc2f8177b116e505eaf7ed194d20c58 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 5 Jun 2016 23:32:39 -0700 Subject: [PATCH 210/460] Fixes bug in SyncBuffer implementation --- src/SyncBuffer.cpp | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index e7909d46..ef6009cc 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -75,8 +75,8 @@ void SyncBuffer::init() void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) { // DEBUG - std::cout << "Rank " << mpicom->rank() << "push\n"; - delay->print(); + // std::cout << "Rank " << mpicom->rank() << "push\n"; + // delay->print(); AurynLong unrolled_last_pos = 0; bool at_least_one_spike = false; @@ -155,8 +155,6 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // loop over different rank input segments in recv_buf for (int r = 0 ; r < mpicom->size() ; ++r ) { - AurynLong unrolled_last_pos = 0; - // reset time slice spike counts to extract correct number of attributes later for ( int i = 0 ; i < MINDELAY ; ++i ) count[i] = 0; @@ -164,13 +162,13 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike AurynLong unrolled_spike = *iter -pop_carry_offsets[r]; - unrolled_last_pos = unrolled_spike; // std::cout << "iter " << *iter << " unrolled " << unrolled_spike << std::endl; if ( unrolled_spike >= MINDELAY*size ) { // spike falls beyond all time slices of this group // increase carry by group size and carry on pop_carry_offsets[r] += MINDELAY*size; + continue; } while ( unrolled_spike < MINDELAY*size ) { // one or more spikes belong to current group @@ -187,13 +185,12 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // store spike counts for each time-slice to decode the spike arguments correctly count[slice]++; - // advance iterator - iter++; - unrolled_spike = *iter + unrolled_last_pos; // because we stored differences we need to add - unrolled_last_pos = unrolled_spike; - // set carry bit in case this spike puts us beyond the end and we leave the loop pop_carry_offsets[r] = MINDELAY*size-unrolled_spike; + + // advance iterator + iter++; + unrolled_spike += *iter; // because we stored differences we need to add } // extract a total of count*get_num_attributes() attributes @@ -220,13 +217,13 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) pop_offsets[r] = iter - &recv_buf[r*max_send_size]; // save offset in recv_buf section } - for( int i = 0; i < mpicom->size(); ++i ) { - MPI_Barrier( *mpicom ); - if ( i == mpicom->rank() ) { - std::cout << "Rank " << mpicom->rank() << "pop " << "\n"; - delay->print(); - } - } + // for( int i = 0; i < mpicom->size(); ++i ) { + // MPI_Barrier( *mpicom ); + // if ( i == mpicom->rank() ) { + // std::cout << "Rank " << mpicom->rank() << "pop " << "\n"; + // delay->print(); + // } + // } #ifdef DEBUG if ( mpicom->rank() == 0 ) { From 1b654d039b11f42b41062f6def85bd25db8bc4a1 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 5 Jun 2016 23:33:07 -0700 Subject: [PATCH 211/460] Improves print function in SpikeDelay.cpp --- src/SpikeDelay.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/SpikeDelay.cpp b/src/SpikeDelay.cpp index a1f99d66..fa3b50cf 100644 --- a/src/SpikeDelay.cpp +++ b/src/SpikeDelay.cpp @@ -126,11 +126,13 @@ void SpikeDelay::inc_num_attributes( int x ) void SpikeDelay::print() { for ( int i = 0 ; i < ndelay ; ++i ) { - std::cout << "slice " << i << ": "; SpikeContainer * spikes = get_spikes(i); - for ( NeuronID k = 0 ; k < spikes->size() ; ++k ) { - std::cout << spikes->at(k) << " "; + if ( spikes->size() ) { + std::cout << "slice " << i << ": "; + for ( NeuronID k = 0 ; k < spikes->size() ; ++k ) { + std::cout << spikes->at(k) << " "; + } + std::cout << std::endl; } - std::cout << std::endl; } } From 093a3c835f7bb160be4f4902f3a7be57117d747e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 5 Jun 2016 23:34:31 -0700 Subject: [PATCH 212/460] Changes logger output in System.h --- src/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.cpp b/src/System.cpp index becf331b..3bf69275 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -59,7 +59,7 @@ void System::init() { oss.str(""); oss << "Current NeuronID and sync are good for simulations up to " - << std::numeric_limits::max()/MINDELAY << " cells."; + << std::numeric_limits::max()-1 << " cells."; auryn::logger->msg(oss.str(),VERBOSE); #ifndef NDEBUG From 192a7574918bfdd1468525b51a2323f997baf132 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 5 Jun 2016 23:54:23 -0700 Subject: [PATCH 213/460] Adds overflow managements for very large deltas in SyncBuffer --- src/SyncBuffer.cpp | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index ef6009cc..ccd1bd6c 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -67,9 +67,6 @@ void SyncBuffer::init() deltaT = 0.0; #endif - // TODO add a size check here - // sizeof(NeuronID) - // sizeof(AurynFloat); } void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) @@ -92,13 +89,17 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // compute unrolled position in current delay AurynLong unrolled_pos = *spike + slice*size; // compute vertical unrolled difference from last spike - NeuronID spike_delta = unrolled_pos + carry_offset - unrolled_last_pos ; + AurynLong spike_delta = unrolled_pos + carry_offset - unrolled_last_pos ; // memorize current position in slice unrolled_last_pos = unrolled_pos; // discard carry_offset since its only added to the first spike_delta carry_offset = 0; - // TODO add overflow managment + // overflow managment should only ever kick in very very large neuron groups + while ( spike_delta >= std::numeric_limits::max() ) { + send_buf.push_back(std::numeric_limits::max()); + spike_delta -= std::numeric_limits::max(); + } // std::cout << " spike " << *spike << " push_back " << spike_delta << std::endl; send_buf.push_back(spike_delta); @@ -115,19 +116,13 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) else carry_offset += MINDELAY*size; - // transmit get_num_attributes() attributes for count spikes for all time slices + // transmit attributes for count spikes for all time slices of this group if ( delay->get_num_attributes() ) { for (int i = 1 ; i < MINDELAY+1 ; ++i ) { AttributeContainer * ac = delay->get_attributes(i); for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes for ( NeuronID s = 0 ; s < count[i-1] ; ++s ) { // loop over spikes send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[i-1]*k)))); -// #ifdef DEBUG -// if ( mpicom->rank() == 0 ) -// std::cout << " pushing attr " -// << i << " " << k << " " << s << " " -// << ac->at(s+count[i-1]*k) << std::endl; -// #endif // DEBUG } } } @@ -145,7 +140,6 @@ void SyncBuffer::null_terminate_send_buffer() void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) { // TODO consider passing the current rank, because in principle it should not require the sync - // clear all receiving buffers in the relevant time range for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { @@ -161,7 +155,17 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) //read current difference element from buffer and interpret as unrolled NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike - AurynLong unrolled_spike = *iter -pop_carry_offsets[r]; + AurynLong unrolled_spike = *iter; + + // handle overflow packages if there are any + // TODO test overflow mechanism + while ( *iter == std::numeric_limits::max() ) { + iter++; + unrolled_spike += *iter; + } + + // subtract carry offset + unrolled_spike -= pop_carry_offsets[r]; // std::cout << "iter " << *iter << " unrolled " << unrolled_spike << std::endl; @@ -283,7 +287,7 @@ void SyncBuffer::sync() // error handling if ( ierr ) { std::cerr << "Error during MPI_Allgather." << std::endl; - // TODO add an exceptoin to actually breka the run here + // TODO add an exceptoin to actually break the run here } #ifdef CODE_COLLECT_SYNC_TIMING_STATS From dbbb220e362f536fefd628b003f1412f8d5ce01f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 5 Jun 2016 23:55:03 -0700 Subject: [PATCH 214/460] Adds check for bytesize of NeuronID and AurynFloat --- src/System.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/System.cpp b/src/System.cpp index 3bf69275..c48ff367 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -62,6 +62,12 @@ void System::init() { << std::numeric_limits::max()-1 << " cells."; auryn::logger->msg(oss.str(),VERBOSE); + if ( sizeof(NeuronID) != sizeof(AurynFloat) ) { + oss.str(""); + oss << " NeuronID and AurynFloat have different byte sizes which is not supported by SyncBuffer."; + auryn::logger->msg(oss.str(),ERROR); + } + #ifndef NDEBUG oss.str(""); oss << "Warning debugging support is compiled and will impair performance."; From 773606cb34cae93420ff2b64236e19b95edae086 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 00:07:12 -0700 Subject: [PATCH 215/460] Fixes bug in SpikeMonitor --- src/SpikeMonitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SpikeMonitor.cpp b/src/SpikeMonitor.cpp index 6805b411..73217a66 100644 --- a/src/SpikeMonitor.cpp +++ b/src/SpikeMonitor.cpp @@ -83,7 +83,7 @@ void SpikeMonitor::propagate() if ( *it < n_to && (*it%n_every==0) ) { // using the good old stdio.h for formatting seems a bit faster char buffer[255]; - int n = sprintf(buffer,"%f %i\n",auryn::sys->get_time(), *it); + int n = sprintf(buffer,"%f %u\n",auryn::sys->get_time(), *it); outfile.write(buffer,n); } } From f2cac04559ed6ae64bdfa9a6d39b2a18e393b32c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 00:17:29 -0700 Subject: [PATCH 216/460] Adds log messages for size of datatypes to System --- src/SyncBuffer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index ccd1bd6c..01538569 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -95,10 +95,11 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // discard carry_offset since its only added to the first spike_delta carry_offset = 0; - // overflow managment should only ever kick in very very large neuron groups + // overflow managment should only ever kick in for very very large neuron groups while ( spike_delta >= std::numeric_limits::max() ) { send_buf.push_back(std::numeric_limits::max()); spike_delta -= std::numeric_limits::max(); + std::cout << " adding overflow package" << std::endl; } // std::cout << " spike " << *spike << " push_back " << spike_delta << std::endl; From f8a3ae8f93549c14d9f94c5726f8b4499f8c2273 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 01:03:49 -0700 Subject: [PATCH 217/460] Adds overflow mechanism to SyncBuffer --- src/SyncBuffer.cpp | 43 ++++++++++++++++++++++++++----------------- src/SyncBuffer.h | 4 ++-- 2 files changed, 28 insertions(+), 19 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 01538569..b2d23e39 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -43,7 +43,7 @@ void SyncBuffer::init() { pop_offsets = new NeuronID[mpicom->size()]; - pop_carry_offsets = new NeuronID[ mpicom->size() ]; + pop_carry_offsets = new long[ mpicom->size() ]; for ( int i = 0 ; i < mpicom->size() ; ++i ) { pop_offsets[i] = 0; pop_carry_offsets[i] = 0; @@ -75,7 +75,9 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // std::cout << "Rank " << mpicom->rank() << "push\n"; // delay->print(); - AurynLong unrolled_last_pos = 0; + const long grid_size = (long)size*MINDELAY; + + long unrolled_last_pos = 0; bool at_least_one_spike = false; // circular loop over different delay bins for (int slice = 0 ; slice < MINDELAY ; ++slice ) { @@ -87,9 +89,9 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) spike != sc->end() ; ++spike ) { // compute unrolled position in current delay - AurynLong unrolled_pos = *spike + slice*size; + long unrolled_pos = (long)(*spike) + (long)size*slice; // compute vertical unrolled difference from last spike - AurynLong spike_delta = unrolled_pos + carry_offset - unrolled_last_pos ; + long spike_delta = unrolled_pos - unrolled_last_pos + carry_offset; // memorize current position in slice unrolled_last_pos = unrolled_pos; // discard carry_offset since its only added to the first spike_delta @@ -97,9 +99,12 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // overflow managment should only ever kick in for very very large neuron groups while ( spike_delta >= std::numeric_limits::max() ) { - send_buf.push_back(std::numeric_limits::max()); + send_buf.push_back( std::numeric_limits::max() ); spike_delta -= std::numeric_limits::max(); - std::cout << " adding overflow package" << std::endl; + std::cout << *spike << " " << unrolled_pos << " " + << unrolled_last_pos << " " + << carry_offset << " " + << spike_delta << " adding overflow package" << std::endl; } // std::cout << " spike " << *spike << " push_back " << spike_delta << std::endl; @@ -112,10 +117,11 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // set save carry_offset which is the remaining difference from the present group // plus because there might be more than one group without a spike ... - if ( at_least_one_spike ) - carry_offset = MINDELAY*size-unrolled_last_pos; - else - carry_offset += MINDELAY*size; + if ( at_least_one_spike ) { + carry_offset = grid_size-unrolled_last_pos; + } else { + carry_offset += grid_size; + } // transmit attributes for count spikes for all time slices of this group if ( delay->get_num_attributes() ) { @@ -141,6 +147,8 @@ void SyncBuffer::null_terminate_send_buffer() void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) { // TODO consider passing the current rank, because in principle it should not require the sync + + const long grid_size = (long)size*MINDELAY; // clear all receiving buffers in the relevant time range for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { @@ -156,10 +164,11 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) //read current difference element from buffer and interpret as unrolled NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike - AurynLong unrolled_spike = *iter; + // store pointer value + long unrolled_spike = *iter; - // handle overflow packages if there are any - // TODO test overflow mechanism + // add overflow packages if there are any + // TODO fix still broken overflow mechanism while ( *iter == std::numeric_limits::max() ) { iter++; unrolled_spike += *iter; @@ -170,13 +179,13 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // std::cout << "iter " << *iter << " unrolled " << unrolled_spike << std::endl; - if ( unrolled_spike >= MINDELAY*size ) { // spike falls beyond all time slices of this group + if ( unrolled_spike >= grid_size ) { // spike falls beyond all time slices of this group // increase carry by group size and carry on - pop_carry_offsets[r] += MINDELAY*size; + pop_carry_offsets[r] += grid_size; continue; } - while ( unrolled_spike < MINDELAY*size ) { // one or more spikes belong to current group + while ( unrolled_spike < grid_size ) { // one or more spikes belong to current group // decode spike positon on time slice grid const int slice = unrolled_spike/size; @@ -191,7 +200,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) count[slice]++; // set carry bit in case this spike puts us beyond the end and we leave the loop - pop_carry_offsets[r] = MINDELAY*size-unrolled_spike; + pop_carry_offsets[r] = grid_size-unrolled_spike; // advance iterator iter++; diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 5428eaf7..baed72a3 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -63,9 +63,9 @@ namespace auryn { NeuronID overflow_value; - NeuronID carry_offset; + long carry_offset; - NeuronID * pop_carry_offsets; + long * pop_carry_offsets; NeuronID count[MINDELAY]; // needed to decode attributes From 528874871cd1da6c1d90a24ebe698da823f6d913 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 01:04:11 -0700 Subject: [PATCH 218/460] Adds logger output to System --- src/System.cpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/System.cpp b/src/System.cpp index c48ff367..7d3bb1e3 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -57,11 +57,22 @@ void System::init() { << "( " << std::numeric_limits::max()*dt/3600 << "h )"; auryn::logger->msg(oss.str(),VERBOSE); + oss.str(""); + oss << "NeuronID type has size of " + << sizeof(NeuronID) << " bytes."; + auryn::logger->msg(oss.str(),VERBOSE); + + oss.str(""); + oss << "AurynLong type has size of " + << sizeof(AurynLong) << " bytes."; + auryn::logger->msg(oss.str(),VERBOSE); + oss.str(""); oss << "Current NeuronID and sync are good for simulations up to " << std::numeric_limits::max()-1 << " cells."; auryn::logger->msg(oss.str(),VERBOSE); + if ( sizeof(NeuronID) != sizeof(AurynFloat) ) { oss.str(""); oss << " NeuronID and AurynFloat have different byte sizes which is not supported by SyncBuffer."; @@ -70,7 +81,7 @@ void System::init() { #ifndef NDEBUG oss.str(""); - oss << "Warning debugging support is compiled and will impair performance."; + oss << "Warning Auryn was compiled with debugging features which will impair performance."; auryn::logger->warning(oss.str()); #endif From 4ccc9dce9632e1ced36f38ad6c1753f5aac000e3 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 10:06:13 -0700 Subject: [PATCH 219/460] Makes Delta datatype in SyncBuffer configurable --- src/SyncBuffer.cpp | 14 +++++++------- src/SyncBuffer.h | 5 +++-- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index b2d23e39..f0f22c23 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -43,7 +43,7 @@ void SyncBuffer::init() { pop_offsets = new NeuronID[mpicom->size()]; - pop_carry_offsets = new long[ mpicom->size() ]; + pop_carry_offsets = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; for ( int i = 0 ; i < mpicom->size() ; ++i ) { pop_offsets[i] = 0; pop_carry_offsets[i] = 0; @@ -75,9 +75,9 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // std::cout << "Rank " << mpicom->rank() << "push\n"; // delay->print(); - const long grid_size = (long)size*MINDELAY; + const SYNCBUFFER_DELTA_DATATYPE grid_size = (SYNCBUFFER_DELTA_DATATYPE)size*MINDELAY; - long unrolled_last_pos = 0; + SYNCBUFFER_DELTA_DATATYPE unrolled_last_pos = 0; bool at_least_one_spike = false; // circular loop over different delay bins for (int slice = 0 ; slice < MINDELAY ; ++slice ) { @@ -89,9 +89,9 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) spike != sc->end() ; ++spike ) { // compute unrolled position in current delay - long unrolled_pos = (long)(*spike) + (long)size*slice; + SYNCBUFFER_DELTA_DATATYPE unrolled_pos = (SYNCBUFFER_DELTA_DATATYPE)(*spike) + (SYNCBUFFER_DELTA_DATATYPE)size*slice; // compute vertical unrolled difference from last spike - long spike_delta = unrolled_pos - unrolled_last_pos + carry_offset; + SYNCBUFFER_DELTA_DATATYPE spike_delta = unrolled_pos - unrolled_last_pos + carry_offset; // memorize current position in slice unrolled_last_pos = unrolled_pos; // discard carry_offset since its only added to the first spike_delta @@ -148,7 +148,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) { // TODO consider passing the current rank, because in principle it should not require the sync - const long grid_size = (long)size*MINDELAY; + const SYNCBUFFER_DELTA_DATATYPE grid_size = (SYNCBUFFER_DELTA_DATATYPE)size*MINDELAY; // clear all receiving buffers in the relevant time range for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { @@ -165,7 +165,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike // store pointer value - long unrolled_spike = *iter; + SYNCBUFFER_DELTA_DATATYPE unrolled_spike = *iter; // add overflow packages if there are any // TODO fix still broken overflow mechanism diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index baed72a3..39064ef6 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -28,6 +28,7 @@ #define SYNCBUFFER_SIZE_MARGIN_MULTIPLIER 3 //!< Safety margin for receive buffer size -- a value of 3 should make overflows rare in AI state #define SYNCBUFFER_SIZE_HIST_LEN 512 //!< Accumulate history over this number of timesteps before updating the sendbuffer size in the absence of overflows +#define SYNCBUFFER_DELTA_DATATYPE long //!< Datatype used for delta computation should be a signed "long" for large nets with sparse activity otherwise int #include "auryn_definitions.h" #include "AurynVector.h" @@ -63,9 +64,9 @@ namespace auryn { NeuronID overflow_value; - long carry_offset; + SYNCBUFFER_DELTA_DATATYPE carry_offset; - long * pop_carry_offsets; + SYNCBUFFER_DELTA_DATATYPE * pop_carry_offsets; NeuronID count[MINDELAY]; // needed to decode attributes From 6d12a297b8f975daea7f6374751e60df58373340 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 11:55:14 -0700 Subject: [PATCH 220/460] Fixes overflow management in SyncBuffer --- src/SyncBuffer.cpp | 82 +++++++++++++++++++++++++--------------------- src/SyncBuffer.h | 5 +++ 2 files changed, 49 insertions(+), 38 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index f0f22c23..75061dea 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -27,6 +27,7 @@ using namespace auryn; + SyncBuffer::SyncBuffer( mpi::communicator * com ) { mpicom = com; @@ -51,6 +52,10 @@ void SyncBuffer::init() overflow_value = -1; + /* Maximum delta size. We make this one smaller than max to avoid problems + * if the datatype is the same as NeuronID and then the max corresponds + * to the overflow value in send buffer ... */ + max_delta_size = std::numeric_limits::max()-1; maxSendSum = 0; maxSendSum2 = 0; @@ -97,18 +102,16 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // discard carry_offset since its only added to the first spike_delta carry_offset = 0; - // overflow managment should only ever kick in for very very large neuron groups - while ( spike_delta >= std::numeric_limits::max() ) { - send_buf.push_back( std::numeric_limits::max() ); - spike_delta -= std::numeric_limits::max(); - std::cout << *spike << " " << unrolled_pos << " " - << unrolled_last_pos << " " - << carry_offset << " " - << spike_delta << " adding overflow package" << std::endl; + // overflow managment -- should only ever kick in for very very large SpikingGroups and very very sparse activity + while ( spike_delta >= max_delta_size ) { + send_buf.push_back( max_delta_size ); + spike_delta -= max_delta_size; } - - // std::cout << " spike " << *spike << " push_back " << spike_delta << std::endl; + + // storing the spike delta (or its remainder) to buffer send_buf.push_back(spike_delta); + + // increase slice count count[slice]++; at_least_one_spike = true; @@ -144,6 +147,22 @@ void SyncBuffer::null_terminate_send_buffer() send_buf.push_back(carry_offset); } +NeuronID * SyncBuffer::read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_DELTA_DATATYPE & delta) +{ + delta = 0; + + // add overflow packages if there are any + while ( *iter == max_delta_size ) { + delta += *iter; + iter++; + } + + // adds element which is not an overflow pacakge + delta += *iter; + + return iter; +} + void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) { // TODO consider passing the current rank, because in principle it should not require the sync @@ -156,6 +175,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) delay->get_attributes(i)->clear(); } + SYNCBUFFER_DELTA_DATATYPE last_unrolled_spike = 0; // loop over different rank input segments in recv_buf for (int r = 0 ; r < mpicom->size() ; ++r ) { // reset time slice spike counts to extract correct number of attributes later @@ -164,19 +184,19 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) //read current difference element from buffer and interpret as unrolled NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike - // store pointer value - SYNCBUFFER_DELTA_DATATYPE unrolled_spike = *iter; + // init delta spike value + SYNCBUFFER_DELTA_DATATYPE spike_delta = 0; - // add overflow packages if there are any - // TODO fix still broken overflow mechanism - while ( *iter == std::numeric_limits::max() ) { - iter++; - unrolled_spike += *iter; - } + // read delta spike value from buffer and update iterator + iter = read_delta_spike_from_buffer(iter, spike_delta); + + // add delta spike value to last unrollen spike value + SYNCBUFFER_DELTA_DATATYPE unrolled_spike = last_unrolled_spike+spike_delta; // subtract carry offset unrolled_spike -= pop_carry_offsets[r]; + // std::cout << "iter " << *iter << " unrolled " << unrolled_spike << std::endl; if ( unrolled_spike >= grid_size ) { // spike falls beyond all time slices of this group @@ -185,14 +205,14 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) continue; } + last_unrolled_spike = unrolled_spike; + while ( unrolled_spike < grid_size ) { // one or more spikes belong to current group // decode spike positon on time slice grid const int slice = unrolled_spike/size; const NeuronID spike = unrolled_spike%size; - // std::cout << "pop r:" << r << " slice: " << slice << " spike:" << spike << std::endl; - // push spike to appropriate time slice delay->get_spikes(slice+1)->push_back(spike); @@ -202,9 +222,10 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // set carry bit in case this spike puts us beyond the end and we leave the loop pop_carry_offsets[r] = grid_size-unrolled_spike; - // advance iterator + // advance iterator and read new value from buffer iter++; - unrolled_spike += *iter; // because we stored differences we need to add + iter = read_delta_spike_from_buffer(iter, spike_delta); + unrolled_spike += spike_delta; // because we stored differences we need to add here } // extract a total of count*get_num_attributes() attributes @@ -217,13 +238,6 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) attrib = (AurynFloat*)(iter); iter++; ac->push_back(*attrib); -// #ifdef DEBUG -// if ( mpicom->rank() == 0 ) -// std::cout << " reading attr " -// << " " << slice << " " -// << k << " " << s << std::setprecision(5) -// << " " << *attrib << std::endl; -// #endif // DEBUG } } } @@ -231,14 +245,6 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) pop_offsets[r] = iter - &recv_buf[r*max_send_size]; // save offset in recv_buf section } - // for( int i = 0; i < mpicom->size(); ++i ) { - // MPI_Barrier( *mpicom ); - // if ( i == mpicom->rank() ) { - // std::cout << "Rank " << mpicom->rank() << "pop " << "\n"; - // delay->print(); - // } - // } - #ifdef DEBUG if ( mpicom->rank() == 0 ) { for ( NeuronID slice = 0 ; slice < MINDELAY ; ++slice ) { @@ -297,7 +303,7 @@ void SyncBuffer::sync() // error handling if ( ierr ) { std::cerr << "Error during MPI_Allgather." << std::endl; - // TODO add an exceptoin to actually break the run here + // TODO add an exception to actually break the run here } #ifdef CODE_COLLECT_SYNC_TIMING_STATS diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 39064ef6..90b487a4 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -52,6 +52,9 @@ namespace auryn { std::vector send_buf; std::vector recv_buf; + SYNCBUFFER_DELTA_DATATYPE max_delta_size; + + // NeuronID size_history[SYNCBUFFER_SIZE_HIST_LEN]; NeuronID maxSendSum; NeuronID maxSendSum2; @@ -83,6 +86,8 @@ namespace auryn { /*! \brief The default contructor. */ SyncBuffer( mpi::communicator * com ); + NeuronID * read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_DELTA_DATATYPE & delta); + /*! \brief The default destructor. */ virtual ~SyncBuffer( ); From 79d74b35476cb68a2af0f776db190b85aeaf4687 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 13:38:58 -0700 Subject: [PATCH 221/460] More robust implementation of pop in SyncBuffer --- src/SyncBuffer.cpp | 79 +++++++++++++++++++++++----------------------- src/SyncBuffer.h | 3 +- 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 75061dea..0794c754 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -37,17 +37,20 @@ SyncBuffer::SyncBuffer( mpi::communicator * com ) SyncBuffer::~SyncBuffer( ) { delete pop_offsets; - delete pop_carry_offsets; + delete pop_delta_spikes; + delete last_spike_pos; } void SyncBuffer::init() { pop_offsets = new NeuronID[mpicom->size()]; - pop_carry_offsets = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; + pop_delta_spikes = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; + last_spike_pos = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; for ( int i = 0 ; i < mpicom->size() ; ++i ) { pop_offsets[i] = 0; - pop_carry_offsets[i] = 0; + pop_delta_spikes[i] = 0; + last_spike_pos[i] = 0; } overflow_value = -1; @@ -160,6 +163,7 @@ NeuronID * SyncBuffer::read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_ // adds element which is not an overflow pacakge delta += *iter; + iter++; return iter; } @@ -175,57 +179,52 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) delay->get_attributes(i)->clear(); } - SYNCBUFFER_DELTA_DATATYPE last_unrolled_spike = 0; // loop over different rank input segments in recv_buf for (int r = 0 ; r < mpicom->size() ; ++r ) { + last_spike_pos[r] = 0; + // reset time slice spike counts to extract correct number of attributes later - for ( int i = 0 ; i < MINDELAY ; ++i ) count[i] = 0; + for ( int i = 0 ; i < MINDELAY ; ++i ) + count[i] = 0; //read current difference element from buffer and interpret as unrolled NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike - // init delta spike value - SYNCBUFFER_DELTA_DATATYPE spike_delta = 0; - - // read delta spike value from buffer and update iterator - iter = read_delta_spike_from_buffer(iter, spike_delta); - - // add delta spike value to last unrollen spike value - SYNCBUFFER_DELTA_DATATYPE unrolled_spike = last_unrolled_spike+spike_delta; - - // subtract carry offset - unrolled_spike -= pop_carry_offsets[r]; - + while ( true ) { - // std::cout << "iter " << *iter << " unrolled " << unrolled_spike << std::endl; + // std::cout << "have " << pop_delta_spikes[r] << std::endl; - if ( unrolled_spike >= grid_size ) { // spike falls beyond all time slices of this group - // increase carry by group size and carry on - pop_carry_offsets[r] += grid_size; - continue; - } + if ( pop_delta_spikes[r] == 0 ) { + // read delta spike value from buffer and update iterator + iter = read_delta_spike_from_buffer(iter, pop_delta_spikes[r]); + // std::cout << "delta " << pop_delta_spikes[r] << std::endl; + } - last_unrolled_spike = unrolled_spike; + SYNCBUFFER_DELTA_DATATYPE unrolled_spike = last_spike_pos[r] + pop_delta_spikes[r]; + if ( unrolled_spike < grid_size ) { - while ( unrolled_spike < grid_size ) { // one or more spikes belong to current group + // decode spike positon on time slice grid + const int slice = unrolled_spike/size; + const NeuronID spike = unrolled_spike%size; + + // push spike to appropriate time slice + delay->get_spikes(slice+1)->push_back(spike); + // std::cout << "slice " << slice << " spike " << spike << std::endl; - // decode spike positon on time slice grid - const int slice = unrolled_spike/size; - const NeuronID spike = unrolled_spike%size; - - // push spike to appropriate time slice - delay->get_spikes(slice+1)->push_back(spike); + // save last position + last_spike_pos[r] = unrolled_spike; - // store spike counts for each time-slice to decode the spike arguments correctly - count[slice]++; + pop_delta_spikes[r] = 0; - // set carry bit in case this spike puts us beyond the end and we leave the loop - pop_carry_offsets[r] = grid_size-unrolled_spike; + // store spike counts for each time-slice to decode the spike arguments correctly + count[slice]++; - // advance iterator and read new value from buffer - iter++; - iter = read_delta_spike_from_buffer(iter, spike_delta); - unrolled_spike += spike_delta; // because we stored differences we need to add here + // advance iterator and read new value from buffer + } else { + pop_delta_spikes[r] -= (grid_size-last_spike_pos[r]); + // std::cout << "keep " << pop_delta_spikes[r] << std::endl; + break; + } } // extract a total of count*get_num_attributes() attributes @@ -364,7 +363,7 @@ void SyncBuffer::reset_send_buffer() carry_offset = 0; for ( int i = 0 ; i < mpicom->size() ; ++i ) { pop_offsets[i] = 0; - pop_carry_offsets[i] = 0; + pop_delta_spikes[i] = 0; } } diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 90b487a4..9203679e 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -69,7 +69,8 @@ namespace auryn { SYNCBUFFER_DELTA_DATATYPE carry_offset; - SYNCBUFFER_DELTA_DATATYPE * pop_carry_offsets; + SYNCBUFFER_DELTA_DATATYPE * pop_delta_spikes; + SYNCBUFFER_DELTA_DATATYPE * last_spike_pos; NeuronID count[MINDELAY]; // needed to decode attributes From b3b8fc85192f42553850a6198e56c67807b02d8c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 15:08:05 -0700 Subject: [PATCH 222/460] Small changes --- src/SyncBuffer.cpp | 10 ++++++++-- src/SyncBuffer.h | 3 +-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 0794c754..7ea46fd7 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -53,7 +53,7 @@ void SyncBuffer::init() last_spike_pos[i] = 0; } - overflow_value = -1; + overflow_value = std::numeric_limits::max(); /* Maximum delta size. We make this one smaller than max to avoid problems * if the datatype is the same as NeuronID and then the max corresponds @@ -193,7 +193,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) while ( true ) { // std::cout << "have " << pop_delta_spikes[r] << std::endl; - + if ( pop_delta_spikes[r] == 0 ) { // read delta spike value from buffer and update iterator iter = read_delta_spike_from_buffer(iter, pop_delta_spikes[r]); @@ -244,6 +244,12 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) pop_offsets[r] = iter - &recv_buf[r*max_send_size]; // save offset in recv_buf section } + // TEST TODO comment after testing + for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { + SpikeContainer * myvector = delay->get_spikes(i); + std::sort (myvector->begin(), myvector->end()); + } + #ifdef DEBUG if ( mpicom->rank() == 0 ) { for ( NeuronID slice = 0 ; slice < MINDELAY ; ++slice ) { diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 9203679e..0d4fba08 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -31,11 +31,10 @@ #define SYNCBUFFER_DELTA_DATATYPE long //!< Datatype used for delta computation should be a signed "long" for large nets with sparse activity otherwise int #include "auryn_definitions.h" -#include "AurynVector.h" #include "SpikeDelay.h" #include +#include #include -#include #include From 988d429a521a401c537d2dc2f8ccc22be106cfff Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 15:21:00 -0700 Subject: [PATCH 223/460] Rollback to original SyncBuffer The new feature now in feature-syncbuffer branch still has problems and seems to swallow some spikes ... still needs fixing, thus reverting. --- src/SyncBuffer.cpp | 230 +++++++++++++-------------------------------- src/SyncBuffer.h | 27 ++---- src/System.cpp | 2 +- 3 files changed, 75 insertions(+), 184 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 7ea46fd7..a53f8414 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -27,38 +27,20 @@ using namespace auryn; - SyncBuffer::SyncBuffer( mpi::communicator * com ) { mpicom = com; init(); } -SyncBuffer::~SyncBuffer( ) -{ - delete pop_offsets; - delete pop_delta_spikes; - delete last_spike_pos; -} - void SyncBuffer::init() { - pop_offsets = new NeuronID[mpicom->size()]; - pop_delta_spikes = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; - last_spike_pos = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; - for ( int i = 0 ; i < mpicom->size() ; ++i ) { - pop_offsets[i] = 0; - pop_delta_spikes[i] = 0; - last_spike_pos[i] = 0; - } + for ( NeuronID i = 0 ; i < mpicom->size() ; ++i ) + pop_offsets.push_back(1); - overflow_value = std::numeric_limits::max(); + overflow_value = -1; - /* Maximum delta size. We make this one smaller than max to avoid problems - * if the datatype is the same as NeuronID and then the max corresponds - * to the overflow value in send buffer ... */ - max_delta_size = std::numeric_limits::max()-1; maxSendSum = 0; maxSendSum2 = 0; @@ -69,186 +51,116 @@ void SyncBuffer::init() reset_send_buffer(); - #ifdef CODE_COLLECT_SYNC_TIMING_STATS measurement_start = MPI_Wtime(); deltaT = 0.0; #endif + // TODO add a size check here + // sizeof(NeuronID) + // sizeof(AurynFloat); } -void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) +void SyncBuffer::push(SpikeDelay * delay, NeuronID size) { - // DEBUG - // std::cout << "Rank " << mpicom->rank() << "push\n"; - // delay->print(); - - const SYNCBUFFER_DELTA_DATATYPE grid_size = (SYNCBUFFER_DELTA_DATATYPE)size*MINDELAY; - - SYNCBUFFER_DELTA_DATATYPE unrolled_last_pos = 0; - bool at_least_one_spike = false; - // circular loop over different delay bins - for (int slice = 0 ; slice < MINDELAY ; ++slice ) { - SpikeContainer * sc = delay->get_spikes(slice+1); - - count[slice] = 0; - // loop over all spikes in current delay time slice + // loop over circular different delay bins + for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { + SpikeContainer * sc = delay->get_spikes(i); + + // NeuronID s = (NeuronID) (sc->size()); + // send_buf[0] += s; + + count[i-1] = 0; for (SpikeContainer::const_iterator spike = sc->begin() ; spike != sc->end() ; ++spike ) { - // compute unrolled position in current delay - SYNCBUFFER_DELTA_DATATYPE unrolled_pos = (SYNCBUFFER_DELTA_DATATYPE)(*spike) + (SYNCBUFFER_DELTA_DATATYPE)size*slice; - // compute vertical unrolled difference from last spike - SYNCBUFFER_DELTA_DATATYPE spike_delta = unrolled_pos - unrolled_last_pos + carry_offset; - // memorize current position in slice - unrolled_last_pos = unrolled_pos; - // discard carry_offset since its only added to the first spike_delta - carry_offset = 0; - - // overflow managment -- should only ever kick in for very very large SpikingGroups and very very sparse activity - while ( spike_delta >= max_delta_size ) { - send_buf.push_back( max_delta_size ); - spike_delta -= max_delta_size; - } - - // storing the spike delta (or its remainder) to buffer - send_buf.push_back(spike_delta); - - // increase slice count - count[slice]++; - - at_least_one_spike = true; + NeuronID compressed = *spike + groupPushOffset1 + (i-1)*size; + send_buf.push_back(compressed); + count[i-1]++; } - } - // set save carry_offset which is the remaining difference from the present group - // plus because there might be more than one group without a spike ... - if ( at_least_one_spike ) { - carry_offset = grid_size-unrolled_last_pos; - } else { - carry_offset += grid_size; + send_buf[0] += delay->get_spikes(i)->size(); // send the total number of spikes } - // transmit attributes for count spikes for all time slices of this group + // transmit get_num_attributes() attributes for count spikes for all time slices if ( delay->get_num_attributes() ) { - for (int i = 1 ; i < MINDELAY+1 ; ++i ) { + for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { AttributeContainer * ac = delay->get_attributes(i); - for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes + for ( NeuronID k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes for ( NeuronID s = 0 ; s < count[i-1] ; ++s ) { // loop over spikes send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[i-1]*k)))); +// #ifdef DEBUG +// if ( mpicom->rank() == 0 ) +// std::cout << " pushing attr " +// << i << " " << k << " " << s << " " +// << ac->at(s+count[i-1]*k) << std::endl; +// #endif // DEBUG } } } } -} - -void SyncBuffer::null_terminate_send_buffer() -{ - // puts a "delta spike" just behind the last unrolled delay of the last group - // std::cout << " term " << carry_offset << std::endl; - send_buf.push_back(carry_offset); + groupPushOffset1 += size*MINDELAY; } -NeuronID * SyncBuffer::read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_DELTA_DATATYPE & delta) +void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) { - delta = 0; - - // add overflow packages if there are any - while ( *iter == max_delta_size ) { - delta += *iter; - iter++; - } - - // adds element which is not an overflow pacakge - delta += *iter; - - iter++; - return iter; -} - -void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) -{ - // TODO consider passing the current rank, because in principle it should not require the sync - - const SYNCBUFFER_DELTA_DATATYPE grid_size = (SYNCBUFFER_DELTA_DATATYPE)size*MINDELAY; - - // clear all receiving buffers in the relevant time range for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { delay->get_spikes(i)->clear(); delay->get_attributes(i)->clear(); } - // loop over different rank input segments in recv_buf - for (int r = 0 ; r < mpicom->size() ; ++r ) { - last_spike_pos[r] = 0; - - // reset time slice spike counts to extract correct number of attributes later - for ( int i = 0 ; i < MINDELAY ; ++i ) - count[i] = 0; - //read current difference element from buffer and interpret as unrolled + for (int r = 0 ; r < mpicom->size() ; ++r ) { + NeuronID numberOfSpikes = recv_buf[r*max_send_size]; // total data NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike - while ( true ) { - - // std::cout << "have " << pop_delta_spikes[r] << std::endl; - - if ( pop_delta_spikes[r] == 0 ) { - // read delta spike value from buffer and update iterator - iter = read_delta_spike_from_buffer(iter, pop_delta_spikes[r]); - // std::cout << "delta " << pop_delta_spikes[r] << std::endl; - } - - SYNCBUFFER_DELTA_DATATYPE unrolled_spike = last_spike_pos[r] + pop_delta_spikes[r]; - if ( unrolled_spike < grid_size ) { - - // decode spike positon on time slice grid - const int slice = unrolled_spike/size; - const NeuronID spike = unrolled_spike%size; - - // push spike to appropriate time slice - delay->get_spikes(slice+1)->push_back(spike); - // std::cout << "slice " << slice << " spike " << spike << std::endl; + NeuronID temp = (*iter - groupPopOffset); + NeuronID spike = temp%size; // spike (if it exists) in current group + int t = temp/size; // timeslice in MINDELAY if we are out this might be the next group - // save last position - last_spike_pos[r] = unrolled_spike; - pop_delta_spikes[r] = 0; + for ( int i = 0 ; i < MINDELAY ; ++i ) count[i] = 0; + // while we are in the current group && have not read all entries + while ( t < MINDELAY && numberOfSpikes ) { + delay->get_spikes(t+1)->push_back(spike); + iter++; + numberOfSpikes--; + count[t]++; // store spike counts for each time-slice - // store spike counts for each time-slice to decode the spike arguments correctly - count[slice]++; - - // advance iterator and read new value from buffer - } else { - pop_delta_spikes[r] -= (grid_size-last_spike_pos[r]); - // std::cout << "keep " << pop_delta_spikes[r] << std::endl; - break; - } + temp = (*iter - groupPopOffset); + spike = temp%size; + t = temp/size; } + // extract a total of count*get_num_attributes() attributes if ( delay->get_num_attributes() ) { for ( NeuronID slice = 0 ; slice < MINDELAY ; ++slice ) { AttributeContainer * ac = delay->get_attributes(slice+1); - for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes + for ( NeuronID k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes for ( NeuronID s = 0 ; s < count[slice] ; ++s ) { // loop over spikes AurynFloat * attrib; attrib = (AurynFloat*)(iter); iter++; ac->push_back(*attrib); +// #ifdef DEBUG +// if ( mpicom->rank() == 0 ) +// std::cout << " reading attr " +// << " " << slice << " " +// << k << " " << s << std::setprecision(5) +// << " " << *attrib << std::endl; +// #endif // DEBUG } } } } + + recv_buf[r*max_send_size] = numberOfSpikes; // save remaining entries pop_offsets[r] = iter - &recv_buf[r*max_send_size]; // save offset in recv_buf section } - // TEST TODO comment after testing - for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { - SpikeContainer * myvector = delay->get_spikes(i); - std::sort (myvector->begin(), myvector->end()); - } + groupPopOffset += size*MINDELAY; #ifdef DEBUG if ( mpicom->rank() == 0 ) { @@ -285,18 +197,17 @@ void SyncBuffer::sync() syncCount = 0; } - int ierr = 0; + int ierr; #ifdef CODE_COLLECT_SYNC_TIMING_STATS double T1, T2; T1 = MPI_Wtime(); /* start time */ #endif if ( send_buf.size() <= max_send_size ) { - // std::cout << " sb size " << send_buf.size() << std::endl; ierr = MPI_Allgather(send_buf.data(), send_buf.size(), MPI_UNSIGNED, recv_buf.data(), max_send_size, MPI_UNSIGNED, *mpicom); } else { - // Create an overflow package + // Create a overflow package NeuronID * overflow_data = new NeuronID[2]; overflow_data[0] = -1; overflow_data[1] = send_buf.size(); @@ -305,12 +216,6 @@ void SyncBuffer::sync() delete overflow_data; } - // error handling - if ( ierr ) { - std::cerr << "Error during MPI_Allgather." << std::endl; - // TODO add an exception to actually break the run here - } - #ifdef CODE_COLLECT_SYNC_TIMING_STATS T2 = MPI_Wtime(); /* end time */ deltaT += (T2-T1); @@ -349,8 +254,11 @@ void SyncBuffer::sync() // reset NeuronID largest_message = 0; - for ( int i = 0 ; i < mpicom->size() ; ++i ) { - largest_message = std::max(pop_offsets[i],largest_message); + for (std::vector::iterator iter = pop_offsets.begin() ; + iter != pop_offsets.end() ; + ++iter ) { + largest_message = std::max(*iter,largest_message); + *iter = 1; } maxSendSum += largest_message; maxSendSum2 += largest_message*largest_message; @@ -364,13 +272,9 @@ void SyncBuffer::sync() void SyncBuffer::reset_send_buffer() { send_buf.clear(); - - // reset carry offsets for push and pop functions - carry_offset = 0; - for ( int i = 0 ; i < mpicom->size() ; ++i ) { - pop_offsets[i] = 0; - pop_delta_spikes[i] = 0; - } + send_buf.push_back(0); // initial size first entry + groupPushOffset1 = 0; + groupPopOffset = 0; } int SyncBuffer::get_max_send_buffer_size() diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 0d4fba08..5651ec66 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -28,13 +28,13 @@ #define SYNCBUFFER_SIZE_MARGIN_MULTIPLIER 3 //!< Safety margin for receive buffer size -- a value of 3 should make overflows rare in AI state #define SYNCBUFFER_SIZE_HIST_LEN 512 //!< Accumulate history over this number of timesteps before updating the sendbuffer size in the absence of overflows -#define SYNCBUFFER_DELTA_DATATYPE long //!< Datatype used for delta computation should be a signed "long" for large nets with sparse activity otherwise int #include "auryn_definitions.h" +#include "AurynVector.h" #include "SpikeDelay.h" #include -#include #include +#include #include @@ -51,9 +51,6 @@ namespace auryn { std::vector send_buf; std::vector recv_buf; - SYNCBUFFER_DELTA_DATATYPE max_delta_size; - - // NeuronID size_history[SYNCBUFFER_SIZE_HIST_LEN]; NeuronID maxSendSum; NeuronID maxSendSum2; @@ -66,15 +63,13 @@ namespace auryn { NeuronID overflow_value; - SYNCBUFFER_DELTA_DATATYPE carry_offset; - - SYNCBUFFER_DELTA_DATATYPE * pop_delta_spikes; - SYNCBUFFER_DELTA_DATATYPE * last_spike_pos; + NeuronID groupPushOffset1; + NeuronID groupPopOffset; NeuronID count[MINDELAY]; // needed to decode attributes /*! \brief vector with offset values to allow to pop more than one delay */ - NeuronID * pop_offsets; + std::vector pop_offsets; void reset_send_buffer(); @@ -86,22 +81,14 @@ namespace auryn { /*! \brief The default contructor. */ SyncBuffer( mpi::communicator * com ); - NeuronID * read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_DELTA_DATATYPE & delta); - - /*! \brief The default destructor. */ - virtual ~SyncBuffer( ); - /*! \brief Synchronize spikes and additional information across ranks. */ void sync(); /*! \brief Pushes a spike delay with all its spikes to the SyncBuffer. */ - void push(SpikeDelay * delay, const NeuronID size); - - /*! \brief Terminate send buffer. */ - void null_terminate_send_buffer(); + void push(SpikeDelay * delay, NeuronID size); /*! \brief Rerieves a spike delay with all its spikes from the SyncBuffer. */ - void pop(SpikeDelay * delay, const NeuronID size); + void pop(SpikeDelay * delay, NeuronID size); /*! \brief Return max_send_size value which determines the size of the MPI AllGather operation. */ int get_max_send_buffer_size(); diff --git a/src/System.cpp b/src/System.cpp index 7d3bb1e3..c5bace8d 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -248,7 +248,7 @@ void System::sync() std::vector::const_iterator iter; for ( iter = spiking_groups.begin() ; iter != spiking_groups.end() ; ++iter ) syncbuffer->push((*iter)->delay,(*iter)->get_size()); - syncbuffer->null_terminate_send_buffer(); + // syncbuffer->null_terminate_send_buffer(); // // use this to artificially worsening the sync // struct timespec tim, tim2; From 190cfd82ebd351b3d8e2c5b886d0662f45b3ca27 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 16:51:21 -0700 Subject: [PATCH 224/460] Solves problems of leaking spikes in SyncBuffer --- src/SyncBuffer.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 7ea46fd7..d12e6b81 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -49,7 +49,7 @@ void SyncBuffer::init() last_spike_pos = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; for ( int i = 0 ; i < mpicom->size() ; ++i ) { pop_offsets[i] = 0; - pop_delta_spikes[i] = 0; + pop_delta_spikes[i] = -1; last_spike_pos[i] = 0; } @@ -181,6 +181,8 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // loop over different rank input segments in recv_buf for (int r = 0 ; r < mpicom->size() ; ++r ) { + + // when we enter this function we know this is a new group last_spike_pos[r] = 0; // reset time slice spike counts to extract correct number of attributes later @@ -194,7 +196,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // std::cout << "have " << pop_delta_spikes[r] << std::endl; - if ( pop_delta_spikes[r] == 0 ) { + if ( pop_delta_spikes[r] < 0 ) { // read delta spike value from buffer and update iterator iter = read_delta_spike_from_buffer(iter, pop_delta_spikes[r]); // std::cout << "delta " << pop_delta_spikes[r] << std::endl; @@ -214,7 +216,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // save last position last_spike_pos[r] = unrolled_spike; - pop_delta_spikes[r] = 0; + pop_delta_spikes[r] = -1; // store spike counts for each time-slice to decode the spike arguments correctly count[slice]++; @@ -369,7 +371,7 @@ void SyncBuffer::reset_send_buffer() carry_offset = 0; for ( int i = 0 ; i < mpicom->size() ; ++i ) { pop_offsets[i] = 0; - pop_delta_spikes[i] = 0; + pop_delta_spikes[i] = -1; } } From 76fa112ddf7422b016afc471e58554562def16e7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 20:34:17 -0700 Subject: [PATCH 225/460] Revert "Rollback to original SyncBuffer" This reverts commit 988d429a521a401c537d2dc2f8ccc22be106cfff. I am now ready to merge the feature-syncbuffer thus reverting rollback. --- src/SyncBuffer.cpp | 230 ++++++++++++++++++++++++++++++++------------- src/SyncBuffer.h | 27 ++++-- src/System.cpp | 2 +- 3 files changed, 184 insertions(+), 75 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index a53f8414..7ea46fd7 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -27,20 +27,38 @@ using namespace auryn; + SyncBuffer::SyncBuffer( mpi::communicator * com ) { mpicom = com; init(); } +SyncBuffer::~SyncBuffer( ) +{ + delete pop_offsets; + delete pop_delta_spikes; + delete last_spike_pos; +} + void SyncBuffer::init() { - for ( NeuronID i = 0 ; i < mpicom->size() ; ++i ) - pop_offsets.push_back(1); + pop_offsets = new NeuronID[mpicom->size()]; + pop_delta_spikes = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; + last_spike_pos = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; + for ( int i = 0 ; i < mpicom->size() ; ++i ) { + pop_offsets[i] = 0; + pop_delta_spikes[i] = 0; + last_spike_pos[i] = 0; + } - overflow_value = -1; + overflow_value = std::numeric_limits::max(); + /* Maximum delta size. We make this one smaller than max to avoid problems + * if the datatype is the same as NeuronID and then the max corresponds + * to the overflow value in send buffer ... */ + max_delta_size = std::numeric_limits::max()-1; maxSendSum = 0; maxSendSum2 = 0; @@ -51,116 +69,186 @@ void SyncBuffer::init() reset_send_buffer(); + #ifdef CODE_COLLECT_SYNC_TIMING_STATS measurement_start = MPI_Wtime(); deltaT = 0.0; #endif - // TODO add a size check here - // sizeof(NeuronID) - // sizeof(AurynFloat); } -void SyncBuffer::push(SpikeDelay * delay, NeuronID size) +void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) { - // loop over circular different delay bins - for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { - SpikeContainer * sc = delay->get_spikes(i); - - // NeuronID s = (NeuronID) (sc->size()); - // send_buf[0] += s; - - count[i-1] = 0; + // DEBUG + // std::cout << "Rank " << mpicom->rank() << "push\n"; + // delay->print(); + + const SYNCBUFFER_DELTA_DATATYPE grid_size = (SYNCBUFFER_DELTA_DATATYPE)size*MINDELAY; + + SYNCBUFFER_DELTA_DATATYPE unrolled_last_pos = 0; + bool at_least_one_spike = false; + // circular loop over different delay bins + for (int slice = 0 ; slice < MINDELAY ; ++slice ) { + SpikeContainer * sc = delay->get_spikes(slice+1); + + count[slice] = 0; + // loop over all spikes in current delay time slice for (SpikeContainer::const_iterator spike = sc->begin() ; spike != sc->end() ; ++spike ) { - NeuronID compressed = *spike + groupPushOffset1 + (i-1)*size; - send_buf.push_back(compressed); - count[i-1]++; + // compute unrolled position in current delay + SYNCBUFFER_DELTA_DATATYPE unrolled_pos = (SYNCBUFFER_DELTA_DATATYPE)(*spike) + (SYNCBUFFER_DELTA_DATATYPE)size*slice; + // compute vertical unrolled difference from last spike + SYNCBUFFER_DELTA_DATATYPE spike_delta = unrolled_pos - unrolled_last_pos + carry_offset; + // memorize current position in slice + unrolled_last_pos = unrolled_pos; + // discard carry_offset since its only added to the first spike_delta + carry_offset = 0; + + // overflow managment -- should only ever kick in for very very large SpikingGroups and very very sparse activity + while ( spike_delta >= max_delta_size ) { + send_buf.push_back( max_delta_size ); + spike_delta -= max_delta_size; + } + + // storing the spike delta (or its remainder) to buffer + send_buf.push_back(spike_delta); + + // increase slice count + count[slice]++; + + at_least_one_spike = true; } + } - send_buf[0] += delay->get_spikes(i)->size(); // send the total number of spikes + // set save carry_offset which is the remaining difference from the present group + // plus because there might be more than one group without a spike ... + if ( at_least_one_spike ) { + carry_offset = grid_size-unrolled_last_pos; + } else { + carry_offset += grid_size; } - // transmit get_num_attributes() attributes for count spikes for all time slices + // transmit attributes for count spikes for all time slices of this group if ( delay->get_num_attributes() ) { - for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { + for (int i = 1 ; i < MINDELAY+1 ; ++i ) { AttributeContainer * ac = delay->get_attributes(i); - for ( NeuronID k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes + for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes for ( NeuronID s = 0 ; s < count[i-1] ; ++s ) { // loop over spikes send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[i-1]*k)))); -// #ifdef DEBUG -// if ( mpicom->rank() == 0 ) -// std::cout << " pushing attr " -// << i << " " << k << " " << s << " " -// << ac->at(s+count[i-1]*k) << std::endl; -// #endif // DEBUG } } } } +} - groupPushOffset1 += size*MINDELAY; + +void SyncBuffer::null_terminate_send_buffer() +{ + // puts a "delta spike" just behind the last unrolled delay of the last group + // std::cout << " term " << carry_offset << std::endl; + send_buf.push_back(carry_offset); } -void SyncBuffer::pop(SpikeDelay * delay, NeuronID size) +NeuronID * SyncBuffer::read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_DELTA_DATATYPE & delta) { + delta = 0; + + // add overflow packages if there are any + while ( *iter == max_delta_size ) { + delta += *iter; + iter++; + } + + // adds element which is not an overflow pacakge + delta += *iter; + + iter++; + return iter; +} + +void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) +{ + // TODO consider passing the current rank, because in principle it should not require the sync + + const SYNCBUFFER_DELTA_DATATYPE grid_size = (SYNCBUFFER_DELTA_DATATYPE)size*MINDELAY; + + // clear all receiving buffers in the relevant time range for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { delay->get_spikes(i)->clear(); delay->get_attributes(i)->clear(); } - + // loop over different rank input segments in recv_buf for (int r = 0 ; r < mpicom->size() ; ++r ) { - NeuronID numberOfSpikes = recv_buf[r*max_send_size]; // total data + last_spike_pos[r] = 0; + + // reset time slice spike counts to extract correct number of attributes later + for ( int i = 0 ; i < MINDELAY ; ++i ) + count[i] = 0; + + //read current difference element from buffer and interpret as unrolled NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike - NeuronID temp = (*iter - groupPopOffset); - NeuronID spike = temp%size; // spike (if it exists) in current group - int t = temp/size; // timeslice in MINDELAY if we are out this might be the next group + while ( true ) { + // std::cout << "have " << pop_delta_spikes[r] << std::endl; + + if ( pop_delta_spikes[r] == 0 ) { + // read delta spike value from buffer and update iterator + iter = read_delta_spike_from_buffer(iter, pop_delta_spikes[r]); + // std::cout << "delta " << pop_delta_spikes[r] << std::endl; + } - for ( int i = 0 ; i < MINDELAY ; ++i ) count[i] = 0; - // while we are in the current group && have not read all entries - while ( t < MINDELAY && numberOfSpikes ) { - delay->get_spikes(t+1)->push_back(spike); - iter++; - numberOfSpikes--; - count[t]++; // store spike counts for each time-slice + SYNCBUFFER_DELTA_DATATYPE unrolled_spike = last_spike_pos[r] + pop_delta_spikes[r]; + if ( unrolled_spike < grid_size ) { - temp = (*iter - groupPopOffset); - spike = temp%size; - t = temp/size; - } + // decode spike positon on time slice grid + const int slice = unrolled_spike/size; + const NeuronID spike = unrolled_spike%size; + + // push spike to appropriate time slice + delay->get_spikes(slice+1)->push_back(spike); + // std::cout << "slice " << slice << " spike " << spike << std::endl; + + // save last position + last_spike_pos[r] = unrolled_spike; + + pop_delta_spikes[r] = 0; + // store spike counts for each time-slice to decode the spike arguments correctly + count[slice]++; + + // advance iterator and read new value from buffer + } else { + pop_delta_spikes[r] -= (grid_size-last_spike_pos[r]); + // std::cout << "keep " << pop_delta_spikes[r] << std::endl; + break; + } + } // extract a total of count*get_num_attributes() attributes if ( delay->get_num_attributes() ) { for ( NeuronID slice = 0 ; slice < MINDELAY ; ++slice ) { AttributeContainer * ac = delay->get_attributes(slice+1); - for ( NeuronID k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes + for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes for ( NeuronID s = 0 ; s < count[slice] ; ++s ) { // loop over spikes AurynFloat * attrib; attrib = (AurynFloat*)(iter); iter++; ac->push_back(*attrib); -// #ifdef DEBUG -// if ( mpicom->rank() == 0 ) -// std::cout << " reading attr " -// << " " << slice << " " -// << k << " " << s << std::setprecision(5) -// << " " << *attrib << std::endl; -// #endif // DEBUG } } } } - - recv_buf[r*max_send_size] = numberOfSpikes; // save remaining entries pop_offsets[r] = iter - &recv_buf[r*max_send_size]; // save offset in recv_buf section } - groupPopOffset += size*MINDELAY; + // TEST TODO comment after testing + for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { + SpikeContainer * myvector = delay->get_spikes(i); + std::sort (myvector->begin(), myvector->end()); + } #ifdef DEBUG if ( mpicom->rank() == 0 ) { @@ -197,17 +285,18 @@ void SyncBuffer::sync() syncCount = 0; } - int ierr; + int ierr = 0; #ifdef CODE_COLLECT_SYNC_TIMING_STATS double T1, T2; T1 = MPI_Wtime(); /* start time */ #endif if ( send_buf.size() <= max_send_size ) { + // std::cout << " sb size " << send_buf.size() << std::endl; ierr = MPI_Allgather(send_buf.data(), send_buf.size(), MPI_UNSIGNED, recv_buf.data(), max_send_size, MPI_UNSIGNED, *mpicom); } else { - // Create a overflow package + // Create an overflow package NeuronID * overflow_data = new NeuronID[2]; overflow_data[0] = -1; overflow_data[1] = send_buf.size(); @@ -216,6 +305,12 @@ void SyncBuffer::sync() delete overflow_data; } + // error handling + if ( ierr ) { + std::cerr << "Error during MPI_Allgather." << std::endl; + // TODO add an exception to actually break the run here + } + #ifdef CODE_COLLECT_SYNC_TIMING_STATS T2 = MPI_Wtime(); /* end time */ deltaT += (T2-T1); @@ -254,11 +349,8 @@ void SyncBuffer::sync() // reset NeuronID largest_message = 0; - for (std::vector::iterator iter = pop_offsets.begin() ; - iter != pop_offsets.end() ; - ++iter ) { - largest_message = std::max(*iter,largest_message); - *iter = 1; + for ( int i = 0 ; i < mpicom->size() ; ++i ) { + largest_message = std::max(pop_offsets[i],largest_message); } maxSendSum += largest_message; maxSendSum2 += largest_message*largest_message; @@ -272,9 +364,13 @@ void SyncBuffer::sync() void SyncBuffer::reset_send_buffer() { send_buf.clear(); - send_buf.push_back(0); // initial size first entry - groupPushOffset1 = 0; - groupPopOffset = 0; + + // reset carry offsets for push and pop functions + carry_offset = 0; + for ( int i = 0 ; i < mpicom->size() ; ++i ) { + pop_offsets[i] = 0; + pop_delta_spikes[i] = 0; + } } int SyncBuffer::get_max_send_buffer_size() diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 5651ec66..0d4fba08 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -28,13 +28,13 @@ #define SYNCBUFFER_SIZE_MARGIN_MULTIPLIER 3 //!< Safety margin for receive buffer size -- a value of 3 should make overflows rare in AI state #define SYNCBUFFER_SIZE_HIST_LEN 512 //!< Accumulate history over this number of timesteps before updating the sendbuffer size in the absence of overflows +#define SYNCBUFFER_DELTA_DATATYPE long //!< Datatype used for delta computation should be a signed "long" for large nets with sparse activity otherwise int #include "auryn_definitions.h" -#include "AurynVector.h" #include "SpikeDelay.h" #include +#include #include -#include #include @@ -51,6 +51,9 @@ namespace auryn { std::vector send_buf; std::vector recv_buf; + SYNCBUFFER_DELTA_DATATYPE max_delta_size; + + // NeuronID size_history[SYNCBUFFER_SIZE_HIST_LEN]; NeuronID maxSendSum; NeuronID maxSendSum2; @@ -63,13 +66,15 @@ namespace auryn { NeuronID overflow_value; - NeuronID groupPushOffset1; - NeuronID groupPopOffset; + SYNCBUFFER_DELTA_DATATYPE carry_offset; + + SYNCBUFFER_DELTA_DATATYPE * pop_delta_spikes; + SYNCBUFFER_DELTA_DATATYPE * last_spike_pos; NeuronID count[MINDELAY]; // needed to decode attributes /*! \brief vector with offset values to allow to pop more than one delay */ - std::vector pop_offsets; + NeuronID * pop_offsets; void reset_send_buffer(); @@ -81,14 +86,22 @@ namespace auryn { /*! \brief The default contructor. */ SyncBuffer( mpi::communicator * com ); + NeuronID * read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_DELTA_DATATYPE & delta); + + /*! \brief The default destructor. */ + virtual ~SyncBuffer( ); + /*! \brief Synchronize spikes and additional information across ranks. */ void sync(); /*! \brief Pushes a spike delay with all its spikes to the SyncBuffer. */ - void push(SpikeDelay * delay, NeuronID size); + void push(SpikeDelay * delay, const NeuronID size); + + /*! \brief Terminate send buffer. */ + void null_terminate_send_buffer(); /*! \brief Rerieves a spike delay with all its spikes from the SyncBuffer. */ - void pop(SpikeDelay * delay, NeuronID size); + void pop(SpikeDelay * delay, const NeuronID size); /*! \brief Return max_send_size value which determines the size of the MPI AllGather operation. */ int get_max_send_buffer_size(); diff --git a/src/System.cpp b/src/System.cpp index c5bace8d..7d3bb1e3 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -248,7 +248,7 @@ void System::sync() std::vector::const_iterator iter; for ( iter = spiking_groups.begin() ; iter != spiking_groups.end() ; ++iter ) syncbuffer->push((*iter)->delay,(*iter)->get_size()); - // syncbuffer->null_terminate_send_buffer(); + syncbuffer->null_terminate_send_buffer(); // // use this to artificially worsening the sync // struct timespec tim, tim2; From da033ac9af1ce179783ddb75310bd4091b94945b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 20:45:57 -0700 Subject: [PATCH 226/460] Comments out sort function in SyncBuffer --- src/SyncBuffer.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index d12e6b81..fd3fe3b2 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -246,11 +246,11 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) pop_offsets[r] = iter - &recv_buf[r*max_send_size]; // save offset in recv_buf section } - // TEST TODO comment after testing - for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { - SpikeContainer * myvector = delay->get_spikes(i); - std::sort (myvector->begin(), myvector->end()); - } + // // TEST TODO comment after testing + // for (NeuronID i = 1 ; i < MINDELAY+1 ; ++i ) { + // SpikeContainer * myvector = delay->get_spikes(i); + // std::sort (myvector->begin(), myvector->end()); + // } #ifdef DEBUG if ( mpicom->rank() == 0 ) { From 6d0ea8095806c8b97b8305f4afeadd9bdbed4ca3 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 20:47:34 -0700 Subject: [PATCH 227/460] Updates test scripts --- tests/coba_test/run_coba_parallel_test.sh | 3 ++- tests/coba_test/run_coba_test.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/coba_test/run_coba_parallel_test.sh b/tests/coba_test/run_coba_parallel_test.sh index 686587fb..1a4b2627 100755 --- a/tests/coba_test/run_coba_parallel_test.sh +++ b/tests/coba_test/run_coba_parallel_test.sh @@ -33,6 +33,7 @@ echo "$REVISION $TESTNAME $RETURNVALUE" >> test_results.dat if [ $? -ne 0 ] then echo "The checksums for the $TESTNAME are different!" +exit $RETURNVALUE fi -exit $RETURNVALUE +echo "Test finished successfully" diff --git a/tests/coba_test/run_coba_test.sh b/tests/coba_test/run_coba_test.sh index 5ab092f3..79ab80dc 100755 --- a/tests/coba_test/run_coba_test.sh +++ b/tests/coba_test/run_coba_test.sh @@ -34,6 +34,7 @@ echo "$REVISION $TESTNAME $RETURNVALUE" >> test_results.dat if [ $? -ne 0 ] then echo "The checksums for the $TESTNAME are different!" +exit $RETURNVALUE fi -exit $RETURNVALUE +echo "Test finished successfully" From 350c9384e507137c4e168f1f55b84a7a6fea6813 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 21:55:38 -0700 Subject: [PATCH 228/460] Changes privacy of function in SyncBuffer --- src/SyncBuffer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 0d4fba08..30d83df1 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -81,13 +81,13 @@ namespace auryn { void init(); void free(); + NeuronID * read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_DELTA_DATATYPE & delta); + public: /*! \brief The default contructor. */ SyncBuffer( mpi::communicator * com ); - NeuronID * read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_DELTA_DATATYPE & delta); - /*! \brief The default destructor. */ virtual ~SyncBuffer( ); From 7844862c643ba1d38335163066ce774abf765bb9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 6 Jun 2016 22:43:00 -0700 Subject: [PATCH 229/460] Experimentall changes delta data type to int --- src/SyncBuffer.cpp | 2 +- src/SyncBuffer.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index fd3fe3b2..287cc343 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -58,7 +58,7 @@ void SyncBuffer::init() /* Maximum delta size. We make this one smaller than max to avoid problems * if the datatype is the same as NeuronID and then the max corresponds * to the overflow value in send buffer ... */ - max_delta_size = std::numeric_limits::max()-1; + max_delta_size = std::numeric_limits::max()-1; maxSendSum = 0; maxSendSum2 = 0; diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 30d83df1..4dbfeaf7 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -28,7 +28,7 @@ #define SYNCBUFFER_SIZE_MARGIN_MULTIPLIER 3 //!< Safety margin for receive buffer size -- a value of 3 should make overflows rare in AI state #define SYNCBUFFER_SIZE_HIST_LEN 512 //!< Accumulate history over this number of timesteps before updating the sendbuffer size in the absence of overflows -#define SYNCBUFFER_DELTA_DATATYPE long //!< Datatype used for delta computation should be a signed "long" for large nets with sparse activity otherwise int +#define SYNCBUFFER_DELTA_DATATYPE int //!< Datatype used for delta computation should be a signed "long" for large nets with sparse activity otherwise int #include "auryn_definitions.h" #include "SpikeDelay.h" From 0da138b314b1c01cde5d10ce38fbdc899f0f1f27 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 7 Jun 2016 00:45:08 -0700 Subject: [PATCH 230/460] Uses non-negative delta values in SyncBuffer now --- src/SyncBuffer.cpp | 29 +++++++++++++++++------------ src/SyncBuffer.h | 7 +++++-- 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 287cc343..e65660f6 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -44,21 +44,26 @@ SyncBuffer::~SyncBuffer( ) void SyncBuffer::init() { + /* Overflow value for syncbuffer */ + overflow_value = std::numeric_limits::max(); + + /* Maximum delta size. We make this one smaller than max to avoid problems + * if the datatype is the same as NeuronID and then the max corresponds + * to the overflow value in send buffer ... */ + max_delta_size = std::numeric_limits::max()-1; + + /* Overflow value for delta value. Should be different from the ones above. */ + undefined_delta_size = std::numeric_limits::max()-2; + pop_offsets = new NeuronID[mpicom->size()]; pop_delta_spikes = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; last_spike_pos = new SYNCBUFFER_DELTA_DATATYPE[ mpicom->size() ]; for ( int i = 0 ; i < mpicom->size() ; ++i ) { pop_offsets[i] = 0; - pop_delta_spikes[i] = -1; + pop_delta_spikes[i] = undefined_delta_size; last_spike_pos[i] = 0; } - overflow_value = std::numeric_limits::max(); - - /* Maximum delta size. We make this one smaller than max to avoid problems - * if the datatype is the same as NeuronID and then the max corresponds - * to the overflow value in send buffer ... */ - max_delta_size = std::numeric_limits::max()-1; maxSendSum = 0; maxSendSum2 = 0; @@ -99,7 +104,7 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // compute unrolled position in current delay SYNCBUFFER_DELTA_DATATYPE unrolled_pos = (SYNCBUFFER_DELTA_DATATYPE)(*spike) + (SYNCBUFFER_DELTA_DATATYPE)size*slice; // compute vertical unrolled difference from last spike - SYNCBUFFER_DELTA_DATATYPE spike_delta = unrolled_pos - unrolled_last_pos + carry_offset; + SYNCBUFFER_DELTA_DATATYPE spike_delta = unrolled_pos + carry_offset - unrolled_last_pos; // memorize current position in slice unrolled_last_pos = unrolled_pos; // discard carry_offset since its only added to the first spike_delta @@ -196,7 +201,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // std::cout << "have " << pop_delta_spikes[r] << std::endl; - if ( pop_delta_spikes[r] < 0 ) { + if ( pop_delta_spikes[r] == undefined_delta_size ) { // read delta spike value from buffer and update iterator iter = read_delta_spike_from_buffer(iter, pop_delta_spikes[r]); // std::cout << "delta " << pop_delta_spikes[r] << std::endl; @@ -216,7 +221,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // save last position last_spike_pos[r] = unrolled_spike; - pop_delta_spikes[r] = -1; + pop_delta_spikes[r] = undefined_delta_size; // store spike counts for each time-slice to decode the spike arguments correctly count[slice]++; @@ -300,7 +305,7 @@ void SyncBuffer::sync() } else { // Create an overflow package NeuronID * overflow_data = new NeuronID[2]; - overflow_data[0] = -1; + overflow_data[0] = overflow_value; overflow_data[1] = send_buf.size(); ierr = MPI_Allgather(overflow_data, 2, MPI_UNSIGNED, recv_buf.data(), max_send_size, MPI_UNSIGNED, *mpicom); @@ -371,7 +376,7 @@ void SyncBuffer::reset_send_buffer() carry_offset = 0; for ( int i = 0 ; i < mpicom->size() ; ++i ) { pop_offsets[i] = 0; - pop_delta_spikes[i] = -1; + pop_delta_spikes[i] = undefined_delta_size; } } diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 4dbfeaf7..63217beb 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -28,7 +28,7 @@ #define SYNCBUFFER_SIZE_MARGIN_MULTIPLIER 3 //!< Safety margin for receive buffer size -- a value of 3 should make overflows rare in AI state #define SYNCBUFFER_SIZE_HIST_LEN 512 //!< Accumulate history over this number of timesteps before updating the sendbuffer size in the absence of overflows -#define SYNCBUFFER_DELTA_DATATYPE int //!< Datatype used for delta computation should be a signed "long" for large nets with sparse activity otherwise int +#define SYNCBUFFER_DELTA_DATATYPE NeuronID //!< Datatype used for delta computation should be a "long" for large nets with sparse activity otherwise NeuronID #include "auryn_definitions.h" #include "SpikeDelay.h" @@ -51,7 +51,11 @@ namespace auryn { std::vector send_buf; std::vector recv_buf; + + NeuronID overflow_value; + SYNCBUFFER_DELTA_DATATYPE max_delta_size; + SYNCBUFFER_DELTA_DATATYPE undefined_delta_size; // NeuronID size_history[SYNCBUFFER_SIZE_HIST_LEN]; @@ -64,7 +68,6 @@ namespace auryn { mpi::communicator * mpicom; - NeuronID overflow_value; SYNCBUFFER_DELTA_DATATYPE carry_offset; From a0d463f550d439fd781102adab71dc3aece53e27 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 7 Jun 2016 10:27:48 -0700 Subject: [PATCH 231/460] Adds warning about SyncBuffer delta datatype in SpikingGroup --- src/SpikingGroup.cpp | 14 ++++++++++++++ src/SyncBuffer.h | 7 ++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 277fdf86..7e5b5585 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -96,6 +96,20 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) set_delay(MINDELAY+1); evolve_locally_bool = evolve_locally_bool && ( get_rank_size() > 0 ); + + // some safety checks + + // Issue a warning for large neuron groups to check SyncBuffer delta datatype + if ( 1.0*size*MINDELAY > 0.8*std::numeric_limits::max() ) { + oss.str(); + oss << get_log_name() + << ":: Auryn detected that you are using at least one large SpikingGroup. " + << "Please ensure that SyncBuffer is compiled with a delta datatype of sufficient size. " + << "It currently uses SYNCBUFFER_DELTA_DATATYPE. " + << "Failure to do so might create uncought overflows in SyncBuffer which might lead to " + << "undefined behavior in parallel simulations."; + auryn::logger->warning(oss.str()); + } } void SpikingGroup::lock_range( double rank_fraction ) diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 63217beb..d358f469 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -28,7 +28,12 @@ #define SYNCBUFFER_SIZE_MARGIN_MULTIPLIER 3 //!< Safety margin for receive buffer size -- a value of 3 should make overflows rare in AI state #define SYNCBUFFER_SIZE_HIST_LEN 512 //!< Accumulate history over this number of timesteps before updating the sendbuffer size in the absence of overflows -#define SYNCBUFFER_DELTA_DATATYPE NeuronID //!< Datatype used for delta computation should be a "long" for large nets with sparse activity otherwise NeuronID + +/*! \brief Datatype used for delta computation should be a "long" for large nets with sparse activity otherwise NeuronID + * + * To strictly guarnatee flawless function this datatype needs to be larger than max(NeuronID)*MINDELAY to avoid an overflow and undefined + * behavior. */ +#define SYNCBUFFER_DELTA_DATATYPE NeuronID #include "auryn_definitions.h" #include "SpikeDelay.h" From 3e7d9e9de0057afe0ba7439d0fafb9bf2ef29a5d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 7 Jun 2016 10:30:09 -0700 Subject: [PATCH 232/460] Changes order of logger output in System --- src/System.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index 7d3bb1e3..03f5aea3 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -51,12 +51,6 @@ void System::init() { oss << " ( compiled " << __DATE__ << " " << __TIME__ << " )"; auryn::logger->msg(oss.str(),NOTIFICATION); - oss.str(""); - oss << "Current AurynTime good for simulations up to " - << std::numeric_limits::max()*dt << "s " - << "( " << std::numeric_limits::max()*dt/3600 << "h )"; - auryn::logger->msg(oss.str(),VERBOSE); - oss.str(""); oss << "NeuronID type has size of " << sizeof(NeuronID) << " bytes."; @@ -72,6 +66,12 @@ void System::init() { << std::numeric_limits::max()-1 << " cells."; auryn::logger->msg(oss.str(),VERBOSE); + oss.str(""); + oss << "Current AurynTime good for simulations up to " + << std::numeric_limits::max()*dt << "s " + << "( " << std::numeric_limits::max()*dt/3600 << "h )"; + auryn::logger->msg(oss.str(),VERBOSE); + if ( sizeof(NeuronID) != sizeof(AurynFloat) ) { oss.str(""); From 3ba02fb078fea7b31f05c30f0d1706c7f2789109 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 7 Jun 2016 10:31:18 -0700 Subject: [PATCH 233/460] Changes bug in log output System --- src/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.cpp b/src/System.cpp index 03f5aea3..3ee5d848 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -126,7 +126,7 @@ System::System(mpi::communicator * communicator) std::stringstream oss; - if ( mpicom->size() > 0 ) { + if ( mpicom->size() > 1 ) { oss << "MPI run rank " << mpicom->rank() << " out of " << mpicom->size() << " ranks total."; From 53c1eb0733829b6622aff8e074a0de19ffa40fcb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 7 Jun 2016 13:38:31 -0700 Subject: [PATCH 234/460] Simplifications to SyncBuffer --- src/SyncBuffer.cpp | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index e65660f6..25d2932f 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -91,7 +91,6 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) const SYNCBUFFER_DELTA_DATATYPE grid_size = (SYNCBUFFER_DELTA_DATATYPE)size*MINDELAY; SYNCBUFFER_DELTA_DATATYPE unrolled_last_pos = 0; - bool at_least_one_spike = false; // circular loop over different delay bins for (int slice = 0 ; slice < MINDELAY ; ++slice ) { SpikeContainer * sc = delay->get_spikes(slice+1); @@ -121,26 +120,20 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // increase slice count count[slice]++; - - at_least_one_spike = true; } } // set save carry_offset which is the remaining difference from the present group // plus because there might be more than one group without a spike ... - if ( at_least_one_spike ) { - carry_offset = grid_size-unrolled_last_pos; - } else { - carry_offset += grid_size; - } + carry_offset += grid_size-unrolled_last_pos; // transmit attributes for count spikes for all time slices of this group if ( delay->get_num_attributes() ) { - for (int i = 1 ; i < MINDELAY+1 ; ++i ) { - AttributeContainer * ac = delay->get_attributes(i); + for (int slice = 0 ; slice < MINDELAY ; ++slice ) { + AttributeContainer * ac = delay->get_attributes(slice+1); for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes - for ( NeuronID s = 0 ; s < count[i-1] ; ++s ) { // loop over spikes - send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[i-1]*k)))); + for ( NeuronID s = 0 ; s < count[slice] ; ++s ) { // loop over spikes + send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[slice]*k)))); } } } From bd262d3cb63e6b337f50590f5f99fbd12792a60f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 7 Jun 2016 14:30:33 -0700 Subject: [PATCH 235/460] Fixes spike attribute transmission in new delta SyncBuffer --- src/SyncBuffer.cpp | 99 ++++++++++++++++++++++------------------------ src/SyncBuffer.h | 3 ++ 2 files changed, 50 insertions(+), 52 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 25d2932f..4661e2ef 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -94,50 +94,47 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) // circular loop over different delay bins for (int slice = 0 ; slice < MINDELAY ; ++slice ) { SpikeContainer * sc = delay->get_spikes(slice+1); + AttributeContainer * ac = delay->get_attributes(slice+1); count[slice] = 0; // loop over all spikes in current delay time slice - for (SpikeContainer::const_iterator spike = sc->begin() ; - spike != sc->end() ; - ++spike ) { - // compute unrolled position in current delay - SYNCBUFFER_DELTA_DATATYPE unrolled_pos = (SYNCBUFFER_DELTA_DATATYPE)(*spike) + (SYNCBUFFER_DELTA_DATATYPE)size*slice; - // compute vertical unrolled difference from last spike - SYNCBUFFER_DELTA_DATATYPE spike_delta = unrolled_pos + carry_offset - unrolled_last_pos; - // memorize current position in slice - unrolled_last_pos = unrolled_pos; - // discard carry_offset since its only added to the first spike_delta - carry_offset = 0; - - // overflow managment -- should only ever kick in for very very large SpikingGroups and very very sparse activity - while ( spike_delta >= max_delta_size ) { - send_buf.push_back( max_delta_size ); - spike_delta -= max_delta_size; - } - - // storing the spike delta (or its remainder) to buffer - send_buf.push_back(spike_delta); + for (int i = 0 ; + i < sc->size() ; + ++i ) { + NeuronID spike = sc->at(i); + // compute unrolled position in current delay + SYNCBUFFER_DELTA_DATATYPE unrolled_pos = (SYNCBUFFER_DELTA_DATATYPE)(spike) + (SYNCBUFFER_DELTA_DATATYPE)size*slice; + // compute vertical unrolled difference from last spike + SYNCBUFFER_DELTA_DATATYPE spike_delta = unrolled_pos + carry_offset - unrolled_last_pos; + // memorize current position in slice + unrolled_last_pos = unrolled_pos; + // discard carry_offset since its only added to the first spike_delta + carry_offset = 0; + + // overflow managment -- should only ever kick in for very very large SpikingGroups and very very sparse activity + while ( spike_delta >= max_delta_size ) { + send_buf.push_back( max_delta_size ); + spike_delta -= max_delta_size; + } + + // storing the spike delta (or its remainder) to buffer + send_buf.push_back(spike_delta); - // increase slice count - count[slice]++; + // append spike attributes here in buffer + for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes + NeuronID cast_attrib = *(NeuronID*)(&(ac->at(i*delay->get_num_attributes()+k))); + send_buf.push_back(cast_attrib); + // std::cout << "store " << std::scientific << ac->at(i*delay->get_num_attributes()+k) << " int " << cast_attrib << std::endl; + } + + // increase slice count + count[slice]++; } } // set save carry_offset which is the remaining difference from the present group // plus because there might be more than one group without a spike ... carry_offset += grid_size-unrolled_last_pos; - - // transmit attributes for count spikes for all time slices of this group - if ( delay->get_num_attributes() ) { - for (int slice = 0 ; slice < MINDELAY ; ++slice ) { - AttributeContainer * ac = delay->get_attributes(slice+1); - for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes - for ( NeuronID s = 0 ; s < count[slice] ; ++s ) { // loop over spikes - send_buf.push_back(*(NeuronID*)(&(ac->at(s+count[slice]*k)))); - } - } - } - } } @@ -165,6 +162,13 @@ NeuronID * SyncBuffer::read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_ return iter; } +NeuronID * SyncBuffer::read_attribute_from_buffer(NeuronID * iter, AurynFloat & attrib) +{ + attrib = *((AurynFloat*)(iter)); + iter++; + return iter; +} + void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) { // TODO consider passing the current rank, because in principle it should not require the sync @@ -183,7 +187,7 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // when we enter this function we know this is a new group last_spike_pos[r] = 0; - // reset time slice spike counts to extract correct number of attributes later + // reset time slice spike counts to extract correct number of attributes per slice later for ( int i = 0 ; i < MINDELAY ; ++i ) count[i] = 0; @@ -197,7 +201,6 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) if ( pop_delta_spikes[r] == undefined_delta_size ) { // read delta spike value from buffer and update iterator iter = read_delta_spike_from_buffer(iter, pop_delta_spikes[r]); - // std::cout << "delta " << pop_delta_spikes[r] << std::endl; } SYNCBUFFER_DELTA_DATATYPE unrolled_spike = last_spike_pos[r] + pop_delta_spikes[r]; @@ -213,9 +216,16 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // save last position last_spike_pos[r] = unrolled_spike; - pop_delta_spikes[r] = undefined_delta_size; + // now that we know where the spike belongs we read the spike attributes from the buffer + for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes + AurynFloat attrib; + iter = read_attribute_from_buffer(iter, attrib); + delay->get_attributes(slice+1)->push_back(attrib); + // std::cout << "read " << std::scientific << attrib << std::endl; + } + // store spike counts for each time-slice to decode the spike arguments correctly count[slice]++; @@ -226,21 +236,6 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) break; } } - - // extract a total of count*get_num_attributes() attributes - if ( delay->get_num_attributes() ) { - for ( NeuronID slice = 0 ; slice < MINDELAY ; ++slice ) { - AttributeContainer * ac = delay->get_attributes(slice+1); - for ( int k = 0 ; k < delay->get_num_attributes() ; ++k ) { // loop over attributes - for ( NeuronID s = 0 ; s < count[slice] ; ++s ) { // loop over spikes - AurynFloat * attrib; - attrib = (AurynFloat*)(iter); - iter++; - ac->push_back(*attrib); - } - } - } - } pop_offsets[r] = iter - &recv_buf[r*max_send_size]; // save offset in recv_buf section } diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index d358f469..066439ba 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -89,8 +89,11 @@ namespace auryn { void init(); void free(); + /*! \brief Reads the next spike delta */ NeuronID * read_delta_spike_from_buffer(NeuronID * iter, SYNCBUFFER_DELTA_DATATYPE & delta); + /*! \brief Reads a single spike attribute */ + NeuronID * read_attribute_from_buffer(NeuronID * iter, AurynFloat & attrib); public: /*! \brief The default contructor. */ From 64b79aee1d5e7a26ea5905ddb8b2ef924feaf554 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 7 Jun 2016 14:31:42 -0700 Subject: [PATCH 236/460] Removes obsolte count array from SyncBuffer --- src/SyncBuffer.cpp | 12 ------------ src/SyncBuffer.h | 2 -- 2 files changed, 14 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 4661e2ef..5ea4d7dd 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -96,7 +96,6 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) SpikeContainer * sc = delay->get_spikes(slice+1); AttributeContainer * ac = delay->get_attributes(slice+1); - count[slice] = 0; // loop over all spikes in current delay time slice for (int i = 0 ; i < sc->size() ; @@ -126,9 +125,6 @@ void SyncBuffer::push(SpikeDelay * delay, const NeuronID size) send_buf.push_back(cast_attrib); // std::cout << "store " << std::scientific << ac->at(i*delay->get_num_attributes()+k) << " int " << cast_attrib << std::endl; } - - // increase slice count - count[slice]++; } } @@ -187,10 +183,6 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // when we enter this function we know this is a new group last_spike_pos[r] = 0; - // reset time slice spike counts to extract correct number of attributes per slice later - for ( int i = 0 ; i < MINDELAY ; ++i ) - count[i] = 0; - //read current difference element from buffer and interpret as unrolled NeuronID * iter = &recv_buf[r*max_send_size+pop_offsets[r]]; // first spike @@ -226,10 +218,6 @@ void SyncBuffer::pop(SpikeDelay * delay, const NeuronID size) // std::cout << "read " << std::scientific << attrib << std::endl; } - // store spike counts for each time-slice to decode the spike arguments correctly - count[slice]++; - - // advance iterator and read new value from buffer } else { pop_delta_spikes[r] -= (grid_size-last_spike_pos[r]); // std::cout << "keep " << pop_delta_spikes[r] << std::endl; diff --git a/src/SyncBuffer.h b/src/SyncBuffer.h index 066439ba..9a3b13e4 100644 --- a/src/SyncBuffer.h +++ b/src/SyncBuffer.h @@ -79,8 +79,6 @@ namespace auryn { SYNCBUFFER_DELTA_DATATYPE * pop_delta_spikes; SYNCBUFFER_DELTA_DATATYPE * last_spike_pos; - NeuronID count[MINDELAY]; // needed to decode attributes - /*! \brief vector with offset values to allow to pop more than one delay */ NeuronID * pop_offsets; From 4cfddf64b316b14867dafd6c7c334bb227dd0bcf Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 9 Jun 2016 10:56:30 -0700 Subject: [PATCH 237/460] Changes variable init in StateMonitor for robustness --- src/StateMonitor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index f8587bbf..bbc3d9b1 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -61,6 +61,7 @@ StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string src = NULL; nid = id; target_variable = state->data+nid; + lastval = *target_variable; } StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval) @@ -73,6 +74,7 @@ StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename src = NULL; nid = id; target_variable = trace->get_state_ptr()->data+nid; + lastval = *target_variable; } void StateMonitor::init(std::string filename, AurynDouble sampling_interval) From 9b9d6c21b4933a53d7af5fc17d8836b4581beb22 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 9 Jun 2016 10:58:08 -0700 Subject: [PATCH 238/460] Changes variable init in EulerTrace --- src/EulerTrace.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index 9e5b1c87..7df180f6 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -83,8 +83,9 @@ void EulerTrace::add(NeuronID i, AurynFloat value) void EulerTrace::set_target( AurynVectorFloat * target ) { if ( target != NULL ) { + target_ptr = target ; + state->copy(target); } - target_ptr = target ; } void EulerTrace::set_target( EulerTrace * target ) From 906823848b19ccf3257975a27c048d7cdfaa6507 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 9 Jun 2016 10:58:26 -0700 Subject: [PATCH 239/460] Adds TODO comment --- src/StimulusGroup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StimulusGroup.cpp b/src/StimulusGroup.cpp index e629df58..ab9e3938 100644 --- a/src/StimulusGroup.cpp +++ b/src/StimulusGroup.cpp @@ -53,7 +53,7 @@ void StimulusGroup::init(StimulusGroupModeType stimulusmode, std::string stimfil mean_on_period = 0.2 ; randomintensities = false; - scale = 2.0; + scale = 2.0; // TODO does this need to be initialized at 2 ? curscale = scale; background_during_stimulus = false; From 3c02c25ddd01d632ad1aa9fd9e7ab39878de83a3 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 9 Jun 2016 10:58:46 -0700 Subject: [PATCH 240/460] Adds a pushback function for SpikeContainers --- src/SpikeDelay.cpp | 7 +++++++ src/SpikeDelay.h | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/src/SpikeDelay.cpp b/src/SpikeDelay.cpp index fa3b50cf..c47e3884 100644 --- a/src/SpikeDelay.cpp +++ b/src/SpikeDelay.cpp @@ -112,6 +112,13 @@ void SpikeDelay::push_back( NeuronID i ) get_spikes_immediate()->push_back(i); } +void SpikeDelay::push_back( SpikeContainer * sc ) +{ + for ( NeuronID i = 0 ; i < sc->size() ; ++i ) { + push_back(sc->at(i)); + } +} + int SpikeDelay::get_num_attributes( ) { return numSpikeAttributes; diff --git a/src/SpikeDelay.h b/src/SpikeDelay.h index bbbd63b9..51efe941 100644 --- a/src/SpikeDelay.h +++ b/src/SpikeDelay.h @@ -101,6 +101,11 @@ class SpikeDelay * This pushes into get_spikes_immediate() */ void push_back(NeuronID i); + /*! \brief Pushes all elemens from given SpikeContainer into the delay + * + * This pushes into get_spikes_immediate() */ + void push_back( SpikeContainer * sc ); + /*! \brief Returns the number of spike attributes per spike. * * Spike attributes are used to implement short-term plasticity or similar mechanisms efficiently.*/ From 7ffe5f6b1e3f512d4d5a783c7399c329d4c061a6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 9 Jun 2016 11:32:59 -0700 Subject: [PATCH 241/460] Reverts changes to StateMonitor --- src/StateMonitor.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index bbc3d9b1..f8587bbf 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -61,7 +61,6 @@ StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string src = NULL; nid = id; target_variable = state->data+nid; - lastval = *target_variable; } StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval) @@ -74,7 +73,6 @@ StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename src = NULL; nid = id; target_variable = trace->get_state_ptr()->data+nid; - lastval = *target_variable; } void StateMonitor::init(std::string filename, AurynDouble sampling_interval) From 7425cbeaabbe55cfa7744c708d48fea72087d364 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 9 Jun 2016 11:33:25 -0700 Subject: [PATCH 242/460] Changes free order in System --- src/System.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index 3ee5d848..8d887406 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -149,14 +149,14 @@ System::~System() void System::free() { - for ( unsigned int i = 0 ; i < spiking_groups.size() ; ++i ) - delete spiking_groups[i]; - for ( unsigned int i = 0 ; i < connections.size() ; ++i ) - delete connections[i]; - for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) - delete monitors[i]; for ( unsigned int i = 0 ; i < checkers.size() ; ++i ) delete checkers[i]; + for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) + delete monitors[i]; + for ( unsigned int i = 0 ; i < connections.size() ; ++i ) + delete connections[i]; + for ( unsigned int i = 0 ; i < spiking_groups.size() ; ++i ) + delete spiking_groups[i]; spiking_groups.clear(); connections.clear(); From f028d0d2324013b4cd8708d55b0ece429f1ef5d1 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 9 Jun 2016 11:52:40 -0700 Subject: [PATCH 243/460] Adds a get_total_elapsed_time function --- src/System.cpp | 10 ++++++++++ src/System.h | 8 +++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/System.cpp b/src/System.cpp index 8d887406..ff831333 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -39,6 +39,8 @@ void System::init() { online_rate_monitor_state = 0.0; last_elapsed_time = -1.0; + // remember starting time + time(&t_sys_start); progressbar_update_interval = PROGRESSBAR_DEFAULT_UPDATE_INTERVAL; @@ -838,6 +840,14 @@ AurynDouble System::get_last_elapsed_time() return last_elapsed_time; } +AurynDouble System::get_total_elapsed_time() +{ + time_t t_now ; + time(&t_now); + double elapsed = difftime(t_now,t_sys_start); + return elapsed; +} + void System::flush_monitors() { for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) diff --git a/src/System.h b/src/System.h index a00d5224..df06add1 100644 --- a/src/System.h +++ b/src/System.h @@ -78,6 +78,9 @@ namespace auryn { /*! Store elapsed time for last call of run */ double last_elapsed_time; + /*! Store staring time of program */ + time_t t_sys_start; + int online_rate_monitor_id; double online_rate_monitor_tau; double online_rate_monitor_mul; @@ -157,9 +160,12 @@ namespace auryn { /*! \brief Sets the timeconstant to compute the online rate average for the status bar. */ void set_online_rate_monitor_tau( AurynDouble tau=100e-3 ); - /*! \brief Returns last elapsed time. */ + /*! \brief Returns last elapsed time in seconds. */ double get_last_elapsed_time(); + /*! \brief Returns total elapsed time in seconds. */ + double get_total_elapsed_time(); + /*! \brief Saves network state to a netstate file * * This function saves the network state to one serialized file. The network From 708fdf4afede51ea4b73ebb6670533682055cceb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 13 Jun 2016 21:11:34 -0700 Subject: [PATCH 244/460] Adds square function to AurynVector --- src/AurynVector.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/AurynVector.h b/src/AurynVector.h index a4b2077c..a14b5575 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -228,6 +228,14 @@ namespace auryn { data[i] = value; } + /*! \brief Squares each element */ + void sqr() + { + for ( NeuronID i = 0 ; i < size ; ++i ) { + data[i] = data[i]*data[i]; + } + } + /*! \brief Clips all vector elements to the range min max * * \param min Minimum value From 4b78ca56ff784f56a48ab525bc42b1b78337e633 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 13 Jun 2016 21:12:05 -0700 Subject: [PATCH 245/460] Changes initialization to StateMonitor --- src/StateMonitor.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index f8587bbf..934e2951 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -61,6 +61,7 @@ StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string src = NULL; nid = id; target_variable = state->data+nid; + lastval = *target_variable; } StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval) @@ -73,6 +74,7 @@ StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename src = NULL; nid = id; target_variable = trace->get_state_ptr()->data+nid; + lastval = *target_variable; } void StateMonitor::init(std::string filename, AurynDouble sampling_interval) @@ -91,13 +93,20 @@ void StateMonitor::init(std::string filename, AurynDouble sampling_interval) StateMonitor::~StateMonitor() { + AurynState value = *target_variable; + AurynState deriv = value-lastval; + if ( enable_compression && deriv==lastder ) { //terminate output with last value + char buffer[255]; + int n = sprintf(buffer,"%f %f\n",auryn::sys->get_time(), *target_variable); + outfile.write(buffer,n); + } } void StateMonitor::propagate() { if ( auryn::sys->get_clock() < t_stop && auryn::sys->get_clock()%ssize==0 ) { char buffer[255]; - if ( enable_compression ) { + if ( enable_compression && auryn::sys->get_clock()>0 ) { AurynState value = *target_variable; AurynState deriv = value-lastval; From e0466e52e3431da5b5e1e739a13cd6b9e74692b5 Mon Sep 17 00:00:00 2001 From: Lorric Ziegler Date: Wed, 15 Jun 2016 00:06:37 +0200 Subject: [PATCH 246/460] merged selected patches from dev_zynapse branch --- src/LinearTrace.cpp | 16 +++++++--------- src/WeightMonitor.cpp | 10 +++++----- src/WeightMonitor.h | 6 +++--- src/WeightStatsMonitor.cpp | 10 ++++++---- src/WeightStatsMonitor.h | 6 +++--- 5 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/LinearTrace.cpp b/src/LinearTrace.cpp index 460adba7..c698ede6 100644 --- a/src/LinearTrace.cpp +++ b/src/LinearTrace.cpp @@ -27,14 +27,14 @@ using namespace auryn; -void LinearTrace::init(NeuronID n, AurynFloat timeconstant,AurynTime * clk) +void LinearTrace::init(NeuronID n, AurynFloat timeconstant, AurynTime * clk) { size = n; tau = timeconstant; tau_auryntime = (AurynTime) (timeconstant/dt); zerointerval = 5*tau_auryntime; - zerotime_auryntime = zerointerval; + zerotime_auryntime = 0; // clock = auryn::sys->get_clock_ptr(); clock = clk; @@ -102,35 +102,33 @@ AurynFloat LinearTrace::get_tau() inline void LinearTrace::update(NeuronID i) { int timediff = *clock - timestamp[i]; - if ( timediff >= 0 ) + if ( timediff >= zerointerval ) state[i] = 0.0; else { - // state[i] *= exp( - (AurynDouble) (timediff+zerointerval)/tau_auryntime); - state[i] *= explut[(timediff+zerointerval)]; // reading from our LUT + // state[i] *= exp( - (AurynDouble) (timediff)/tau_auryntime); + state[i] *= explut[timediff]; // reading from our LUT } + timestamp[i] = *clock; } void LinearTrace::inc(NeuronID i) { - if ( *clock > timestamp[i] ) { // meaning the last spike has faded away + if ( *clock > timestamp[i]+zerointerval ) { // meaning the last spike has faded away state[i] = 1.0; } else { update(i); state[i] += 1.0; } - timestamp[i] = zerotime_auryntime; } AurynFloat LinearTrace::get(NeuronID i) { // if ( timestamp[i] == zerotime_auryntime ) return state[i]; update(i); - timestamp[i] = zerotime_auryntime; return state[i]; } void LinearTrace::evolve() { - zerotime_auryntime = *clock+1+zerointerval; } diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 0ac98b0f..3c18ab6b 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -38,7 +38,7 @@ WeightMonitor::WeightMonitor(SparseConnection * source, ForwardMatrix * m, std:: set_mat(m); } -WeightMonitor::WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, std::string filename, AurynDouble interval, RecordingMode mode ) : Monitor(filename) +WeightMonitor::WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, std::string filename, AurynDouble interval, RecordingMode mode, NeuronID z ) : Monitor(filename) { init(source,i,j,filename,interval/dt); @@ -50,10 +50,10 @@ WeightMonitor::WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, switch (recordingmode) { case DATARANGE : for (AurynLong c = elem_i ; c < elem_j ; ++c) - add_to_list(c) ; + add_to_list(c,z) ; break; case SINGLE : - add_to_list(i,j); + add_to_list(i,j,z); break; } } @@ -88,9 +88,9 @@ void WeightMonitor::init(SparseConnection * source, NeuronID i, NeuronID j, std: elem_j = 0; } -void WeightMonitor::add_to_list(AurynLong data_index) +void WeightMonitor::add_to_list(AurynLong data_index, NeuronID z) { - element_list->push_back( data_index ); + element_list->push_back( data_index + z*mat->get_statesize() ); } void WeightMonitor::add_to_list(AurynWeight * ptr) diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index a911649c..358a89dc 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -88,20 +88,20 @@ class WeightMonitor : protected Monitor public: WeightMonitor(SparseConnection * source, string filename, AurynDouble interval=1); WeightMonitor(SparseConnection * source, ForwardMatrix * m, string filename, AurynDouble interval=1); - WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynDouble interval=1, RecordingMode mode = SINGLE); + WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynDouble interval=1, RecordingMode mode = SINGLE, NeuronID z = 0); virtual ~WeightMonitor(); void propagate(); void set_mat(ForwardMatrix * m); /*! Adds a single element to the recording list which is identified by its data index. */ - void add_to_list( AurynLong index ); + void add_to_list( AurynLong index, NeuronID z = 0 ); /*! Adds a single element to the recording list which is identified by a pointer. */ void add_to_list( AurynWeight * ptr ); /*! \brief Adds a single element identified matrix coordinates (row,col,z) to the recording list. */ - void add_to_list( NeuronID i, NeuronID j, NeuronID z=0 ); + void add_to_list( NeuronID i, NeuronID j, NeuronID z ); /*! Adds a list vector vec the the recording list. Such a list * can for instance be generated by a SparseConnection with the get_block diff --git a/src/WeightStatsMonitor.cpp b/src/WeightStatsMonitor.cpp index 92e2a0c6..f852a4ff 100644 --- a/src/WeightStatsMonitor.cpp +++ b/src/WeightStatsMonitor.cpp @@ -27,16 +27,16 @@ using namespace auryn; -WeightStatsMonitor::WeightStatsMonitor(Connection * source, std::string filename, AurynDouble binsize) : Monitor(filename) +WeightStatsMonitor::WeightStatsMonitor(Connection * source, std::string filename, AurynDouble binsize, NeuronID z) : Monitor(filename) { - init(source,filename,binsize/dt); + init(source,filename,binsize/dt,z); } WeightStatsMonitor::~WeightStatsMonitor() { } -void WeightStatsMonitor::init(Connection * source, std::string filename,AurynTime stepsize) +void WeightStatsMonitor::init(Connection * source, std::string filename,AurynTime stepsize,NeuronID z) { if ( !source->get_destination()->evolve_locally() ) return; @@ -47,13 +47,15 @@ void WeightStatsMonitor::init(Connection * source, std::string filename,AurynTim if ( ssize < 1 ) ssize = 1; outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); + + z_ind = z; } void WeightStatsMonitor::propagate() { if (auryn::sys->get_clock()%ssize==0) { AurynDouble mean,std; - src->stats(mean,std); + src->stats(mean,std,z_ind); outfile << (auryn::sys->get_time()) << " " << mean << " " << std << std::endl; } diff --git a/src/WeightStatsMonitor.h b/src/WeightStatsMonitor.h index ddd10250..cc46998b 100644 --- a/src/WeightStatsMonitor.h +++ b/src/WeightStatsMonitor.h @@ -44,11 +44,11 @@ class WeightStatsMonitor : protected Monitor protected: Connection * src; AurynTime ssize; - NeuronID data_size_limit; - void init(Connection * source, string filename, AurynTime stepsize); + NeuronID z_ind; + void init(Connection * source, string filename, AurynTime stepsize, NeuronID z); public: - WeightStatsMonitor(Connection * source, string filename, AurynDouble binsize=1.0); + WeightStatsMonitor(Connection * source, string filename, AurynDouble binsize=1.0, NeuronID z=0); virtual ~WeightStatsMonitor(); void propagate(); }; From 83f3c565dd16db55028aea94cb3f6c68d82fec02 Mon Sep 17 00:00:00 2001 From: Lorric Ziegler Date: Wed, 15 Jun 2016 00:23:54 +0200 Subject: [PATCH 247/460] added empty stats method in connection.h --- src/Connection.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Connection.h b/src/Connection.h index 32cb2c25..dbda0ae0 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -209,6 +209,7 @@ class Connection /*! \brief Computes mean synaptic weight and std dev of all weights in this connection. */ virtual void stats(AurynDouble &mean, AurynDouble &std) = 0; + virtual void stats(AurynDouble &mean, AurynDouble &std, NeuronID zid) {}; /*! \brief Implements save to file functionality. Also called in save_network_state from System class. */ virtual bool write_to_file(std::string filename) = 0; From 5d0d8583e27a9b66b81aae43e5544b298a11badd Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 14 Jun 2016 16:34:38 -0700 Subject: [PATCH 248/460] Adds doxystrings and adds TODOs --- src/ComplexMatrix.h | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index ea23090e..b5024742 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -162,8 +162,20 @@ class ComplexMatrix /*! \brief Copies complex matrix mat */ void copy(ComplexMatrix * mat); + + /* \brief Sets element identified by the data index to value */ + void set_element(AurynLong data_index, T value, StateID z=0); + + /* Deprecated: TODO Remove this function */ void set_data(AurynLong i, T value, StateID z=0); + + + /* \brief Scales element identified by the data index by value */ + void scale_element(AurynLong data_index, T value, StateID z=0); + + /* Deprecated: TODO Remove this function */ void scale_data(AurynLong i, T value, StateID z=0); + /*! Gets the matching data entry for a given index i and state z*/ T get_data(AurynLong i, StateID z=0); /*! Gets the matching data ptr for a given index i and state z*/ @@ -306,21 +318,32 @@ T ComplexMatrix::get_data(const NeuronID * ind_ptr, StateID z) return *(get_data_ptr(ind_ptr,z)); } +template +void ComplexMatrix::set_element(AurynLong data_index, T value, StateID z) +{ + if (data_index void ComplexMatrix::set_data(AurynLong i, T value, StateID z) { - if (i -void ComplexMatrix::scale_data(AurynLong i, T value, StateID z) +void ComplexMatrix::scale_element(AurynLong data_index, T value, StateID z) { - if (i +void ComplexMatrix::scale_data(AurynLong i, T value, StateID z) +{ + scale_element(i, value, z); +} template void ComplexMatrix::clear() From f331ba15c5caa61115e8071dc73608da70cba231 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 14 Jun 2016 16:35:06 -0700 Subject: [PATCH 249/460] Makes stats virtual pure and adds z to param list --- src/Connection.h | 3 +-- src/IdentityConnection.cpp | 2 +- src/IdentityConnection.h | 5 ++++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Connection.h b/src/Connection.h index dbda0ae0..517dcb61 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -208,8 +208,7 @@ class Connection virtual AurynDouble sum() = 0; /*! \brief Computes mean synaptic weight and std dev of all weights in this connection. */ - virtual void stats(AurynDouble &mean, AurynDouble &std) = 0; - virtual void stats(AurynDouble &mean, AurynDouble &std, NeuronID zid) {}; + virtual void stats(AurynDouble &mean, AurynDouble &std, StateID zid = 0) = 0; /*! \brief Implements save to file functionality. Also called in save_network_state from System class. */ virtual bool write_to_file(std::string filename) = 0; diff --git a/src/IdentityConnection.cpp b/src/IdentityConnection.cpp index f218464a..6f34dcf4 100644 --- a/src/IdentityConnection.cpp +++ b/src/IdentityConnection.cpp @@ -122,7 +122,7 @@ AurynLong IdentityConnection::get_nonzero() return std::min(src->get_pre_size(),dst->get_post_size()); } -void IdentityConnection::stats(AurynDouble &mean, AurynDouble &std) +void IdentityConnection::stats(AurynDouble &mean, AurynDouble &std, StateID z) { mean = connection_weight; std = 0; diff --git a/src/IdentityConnection.h b/src/IdentityConnection.h index 26f8445c..8b40a0e0 100644 --- a/src/IdentityConnection.h +++ b/src/IdentityConnection.h @@ -76,7 +76,10 @@ class IdentityConnection : public Connection virtual void propagate(); virtual AurynDouble sum(); - virtual void stats(AurynDouble &mean, AurynDouble &std); + /*! \brief Return stats for connection. + * + * Note that IdentityConnection does not support complex matrix states yet */ + virtual void stats(AurynDouble &mean, AurynDouble &std, StateID zid = 0); virtual bool write_to_file(string filename); virtual bool load_from_file(string filename); virtual AurynFloat mean(); From 878374bf98d5cf9b5b1f5820ce8486aed55e111b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 14 Jun 2016 16:35:35 -0700 Subject: [PATCH 250/460] Renames overloaded function from WeightMonitor Changes the name of one of the add_to_list functions to avoid clashes with functions which have the same signature. --- src/WeightMonitor.cpp | 6 +++--- src/WeightMonitor.h | 11 ++++++----- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 3c18ab6b..75f9f9ff 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -88,7 +88,7 @@ void WeightMonitor::init(SparseConnection * source, NeuronID i, NeuronID j, std: elem_j = 0; } -void WeightMonitor::add_to_list(AurynLong data_index, NeuronID z) +void WeightMonitor::add_to_list_by_data_index(AurynLong data_index, StateID z) { element_list->push_back( data_index + z*mat->get_statesize() ); } @@ -100,10 +100,10 @@ void WeightMonitor::add_to_list(AurynWeight * ptr) } } -void WeightMonitor::add_to_list(NeuronID i, NeuronID j, NeuronID z) +void WeightMonitor::add_to_list(NeuronID i, NeuronID j, StateID z) { if ( mat->exists(i, j, z) ) { - add_to_list( mat->get_data_index(i, j, z) ); + add_to_list_by_data_index( mat->get_data_index(i, j), z ); } else { std::stringstream oss; oss << "WeightMonitor:: Tried adding element " diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index 358a89dc..ad505252 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -95,17 +95,18 @@ class WeightMonitor : protected Monitor void set_mat(ForwardMatrix * m); /*! Adds a single element to the recording list which is identified by its data index. */ - void add_to_list( AurynLong index, NeuronID z = 0 ); + void add_to_list_by_data_index( AurynLong index, StateID z = 0 ); /*! Adds a single element to the recording list which is identified by a pointer. */ void add_to_list( AurynWeight * ptr ); /*! \brief Adds a single element identified matrix coordinates (row,col,z) to the recording list. */ - void add_to_list( NeuronID i, NeuronID j, NeuronID z ); + void add_to_list( NeuronID i, NeuronID j, StateID z = 0 ); - /*! Adds a list vector vec the the recording list. Such a list - * can for instance be generated by a SparseConnection with the get_block - * function. + /*! \brief Adds a list vector vec the the recording list. + * + * Such a list can for instance be generated by a SparseConnection with the + * get_block function. */ void add_to_list( std::vector vec , string label = ""); From 9939d148d566c9f33c2863c76ac453c17d6e65b6 Mon Sep 17 00:00:00 2001 From: Lorric Ziegler Date: Wed, 15 Jun 2016 08:51:16 +0200 Subject: [PATCH 251/460] fixed a bug in WeightMonitor related to z support --- src/WeightMonitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 75f9f9ff..3d0d0728 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -50,7 +50,7 @@ WeightMonitor::WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, switch (recordingmode) { case DATARANGE : for (AurynLong c = elem_i ; c < elem_j ; ++c) - add_to_list(c,z) ; + add_to_list_by_data_index(c,z) ; break; case SINGLE : add_to_list(i,j,z); From 875c84162bf9e0b4ae603643230ead8f67437f8c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 10:30:52 -0700 Subject: [PATCH 252/460] Makes AurynVector template more general Makes the index data type also template parameter. --- src/AurynVector.h | 42 ++++++++++++++++++++--------------------- src/auryn_definitions.h | 4 ++-- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index a14b5575..1bef9113 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -42,7 +42,7 @@ namespace auryn { * we add AVX support to the code. If you use get_vector_size functions from SpikingGroup this will automatically * be taken care of... * */ - template + template class AurynVector { private: friend class boost::serialization::access; @@ -50,7 +50,7 @@ namespace auryn { void serialize(Archive & ar, const unsigned int version) { ar & size; - for ( NeuronID i = 0 ; i < size ; ++i ) + for ( IndexType i = 0 ; i < size ; ++i ) ar & data[i]; } @@ -58,7 +58,7 @@ namespace auryn { /*! \brief Checks if argument is larger than size and throws and exception if so * * Check only enabled if NDEBUG is not defined.*/ - void check_size(NeuronID x) + void check_size(IndexType x) { #ifndef NDEBUG if ( x >= size ) { @@ -81,11 +81,11 @@ namespace auryn { public: // We keep these params public for legacy compatibility reasons - NeuronID size; + IndexType size; T * data __attribute__((aligned(16))); /*! \brief Default constructor */ - AurynVector(NeuronID n) + AurynVector(IndexType n) { size = n; data = new T [n]; @@ -101,7 +101,7 @@ namespace auryn { /*! \brief Set all elements to value v. */ virtual void set_all(T v) { - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { data[i] = v; } } @@ -115,7 +115,7 @@ namespace auryn { /*! \brief Scales all vector elements by a. */ virtual void scale(AurynFloat a) { - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { data[i] *= a; } } @@ -123,13 +123,13 @@ namespace auryn { /*! \brief Adds constant c to each vector element */ virtual void add(AurynFloat c) { - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { data[i] += c; } } /*! \brief Adds the value c to specific vector element i */ - virtual void add_specific(NeuronID i, AurynFloat c) + virtual void add_specific(IndexType i, AurynFloat c) { check_size(i); data[i] += c; @@ -141,7 +141,7 @@ namespace auryn { virtual void add(AurynVector * v) { check_size(v); - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { data[i] += v->data[i]; } } @@ -156,7 +156,7 @@ namespace auryn { virtual void sub(AurynVector * v) { check_size(v); - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { data[i] -= v->data[i]; } } @@ -173,7 +173,7 @@ namespace auryn { virtual void mul(AurynVector * v) { check_size(v); - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { data[i] *= v->data[i]; } } @@ -184,7 +184,7 @@ namespace auryn { virtual void copy(AurynVector * v) { check_size(v); - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { data[i] = v->data[i]; } } @@ -199,13 +199,13 @@ namespace auryn { virtual void saxpy(AurynFloat a, AurynVector * x) { check_size(x); - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { data[i] += a * x->data[i]; } } /*! \brief Gets element i from vector */ - T get(NeuronID i) + T get(IndexType i) { check_size(i); return data[i]; @@ -215,14 +215,14 @@ namespace auryn { * * When no argument is given the function returns the first element of * data array of the vector. */ - T * ptr(NeuronID i = 0) + T * ptr(IndexType i = 0) { check_size(i); return data+i; } /*! \brief Sets element i in vector to value */ - void set(NeuronID i, T value) + void set(IndexType i, T value) { check_size(i); data[i] = value; @@ -231,7 +231,7 @@ namespace auryn { /*! \brief Squares each element */ void sqr() { - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { data[i] = data[i]*data[i]; } } @@ -243,7 +243,7 @@ namespace auryn { */ void clip(T min, T max) { - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { if ( data[i] < min ) { data[i] = min; } else @@ -254,7 +254,7 @@ namespace auryn { /*! \brief Print vector elements to std out for debugging */ void print() { - for ( NeuronID i = 0 ; i < size ; ++i ) { + for ( IndexType i = 0 ; i < size ; ++i ) { std::cout << get(i) << " "; } std::cout << std::endl; @@ -267,7 +267,7 @@ namespace auryn { * some of the functions defined in the template with SIMD intrinsics * for higher performance. */ - class AurynVectorFloat : public AurynVector + class AurynVectorFloat : public AurynVector { public: diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 7574600a..181d4d44 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -310,7 +310,7 @@ namespace auryn { // forward declartion of template class which is implemented in AurynVector.h - template + template class AurynVector; class AurynVectorFloat; // Forward declaration @@ -329,7 +329,7 @@ namespace auryn { typedef AurynStateVector auryn_vector_float; //!< Default legacy Auryn state vector type /*! \brief Legacy definition of AurynVector */ - typedef AurynVector auryn_vector_ushort; //!< Default legacy Auryn ushort vector type + typedef AurynVector auryn_vector_ushort; //!< Default legacy Auryn ushort vector type // Legacy float vector functions From 0d35cdf486f89bd16bc9b78b52528fc71fb9ae90 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 10:40:02 -0700 Subject: [PATCH 253/460] Adds SIMD size check to AurynVector template --- src/AurynVector.cpp | 11 ++++++++++- src/auryn_definitions.h | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 6da3ae30..693c1c77 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -48,7 +48,16 @@ inline void sse_store( float * i, __m128 d ) AurynVectorFloat::AurynVectorFloat(NeuronID n) : AurynVector(n) { - +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + // check that size is a multiple of SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS + // which is typically 4 for float and SSE + if ( n%SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) { + std::cerr << "Trying to initilize AurynVectorFloat with explicit SIMD enabled, " + " but vector size is not multiple of SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS." + << std::endl; + throw AurynVectorDimensionalityException(); + } +#endif /* CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY */ } void AurynVectorFloat::scale(float a) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 181d4d44..6b9d6373 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -294,7 +294,7 @@ namespace auryn { { virtual const char* what() const throw() { - return "Dimensions do not match or trying to read beyond vector size." + return "Dimensions do not match or trying to read beyond vector size. " "Are the vectors zero padded to a multiples of four dimension?"; } }; From e5b9ef930055ebfefbbb7513c8c9e3ff5f450a24 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 10:31:51 -0700 Subject: [PATCH 254/460] Adds statevectors vector to ComplexMatrix.h --- src/ComplexMatrix.h | 68 ++++++++++++++++++++++++++++++------------- src/WeightMonitor.cpp | 2 +- 2 files changed, 48 insertions(+), 22 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index b5024742..319a0b48 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -53,7 +53,7 @@ class ComplexMatrix { ar & m_rows; ar & n_cols; - ar & z_values; + ar & n_z_values; ar & current_row; ar & current_col; ar & statesize; @@ -69,7 +69,7 @@ class ComplexMatrix ar & colinds[i]; } // data - for (StateID z = 0; z < z_values ; ++z ) { + for (StateID z = 0; z < n_z_values ; ++z ) { for (AurynLong i = 0 ; i < n_nonzero ; ++i) { ar & elementdata[i+z*statesize]; } @@ -80,7 +80,7 @@ class ComplexMatrix { ar & m_rows; ar & n_cols; - ar & z_values; + ar & n_z_values; ar & current_row; ar & current_col; ar & statesize; @@ -100,7 +100,7 @@ class ComplexMatrix ar & colinds[i]; } // data - for (StateID z = 0; z < z_values ; ++z ) { + for (StateID z = 0; z < n_z_values ; ++z ) { for (AurynLong i = 0 ; i < n_nonzero ; ++i) { ar & elementdata[i+z*statesize]; } @@ -111,21 +111,31 @@ class ComplexMatrix /*! Dimensions of matrix */ NeuronID m_rows,n_cols; /*! z-dimension of matrix */ - NeuronID z_values; + NeuronID n_z_values; /*! Current row and col for filling. Should be in the last corner before use. */ NeuronID current_row, current_col; /*! The number of actual nonzero elements. */ AurynLong n_nonzero; /*! The size of data reserved and therefore the maximum number of non-zero elements. */ AurynLong statesize; + protected: /*! Array that holds the begin addresses of column indices */ NeuronID ** rowptrs; + /*! Array that holds the column indices of non-zero elements */ NeuronID * colinds; - /*! Array that holds the data values of the non-zero elements */ + + /*! Vector that holds pointers to the state vectors storing the synaptic states. */ + std::vector< T* > statevectors; + + /*! Pointer to the first state vector */ T * elementdata; + + /*! Returns a synaptic state vector. */ + T * get_synaptic_state_vector(); + /*! Default initializiation called by the constructor. */ void init(NeuronID m, NeuronID n, AurynLong size, NeuronID z ); void free(); @@ -217,6 +227,9 @@ class ComplexMatrix /*!\brief Returns number of synaptic states (z-value) */ StateID get_num_synapse_states(); + /*!\brief Returns number of synaptic states (z-value) */ + StateID get_num_z_values(); + /*! \brief Gets pointer for the first element of a given synaptic state vector */ T * get_state_begin(StateID z=0); /*! \brief Gets pointer for the element behind the last of a given synaptic state vector */ @@ -277,7 +290,6 @@ class ComplexMatrix AurynLong get_row_end_index(NeuronID i); NeuronID get_m_rows(); NeuronID get_n_cols(); - NeuronID get_z_values(); NeuronID ** get_rowptrs(); T * get_data_begin(const StateID z=0); /*! \brief Returns the data value corresponding to the element behind the last nonzero element. */ @@ -355,18 +367,28 @@ void ComplexMatrix::clear() rowptrs[1] = colinds; } +template +T * ComplexMatrix::get_synaptic_state_vector() +{ + T * vec = new T [get_memsize()]; + return vec; +} + template void ComplexMatrix::init(NeuronID m, NeuronID n, AurynLong size, NeuronID z) { m_rows = m; n_cols = n; statesize = size; // assumed maximum number of connections - z_values = z; + n_z_values = z; rowptrs = new NeuronID * [m_rows+1]; colinds = new NeuronID [get_datasize()]; - elementdata = new T [get_memsize()]; + for ( StateID i = 0 ; i < get_num_synapse_states() ; ++i ) { + T * vec = get_synaptic_state_vector(); + statevectors.push_back(vec); + } clear(); } @@ -397,7 +419,7 @@ template void ComplexMatrix::resize_buffer_and_clear(AurynLong size) { free(); - init(m_rows, n_cols, size, z_values ); + init(m_rows, n_cols, size, n_z_values ); } template @@ -416,7 +438,7 @@ ComplexMatrix::ComplexMatrix() template ComplexMatrix::ComplexMatrix(ComplexMatrix * mat) { - init(mat->get_m_rows(), mat->get_n_cols(), mat->get_nonzero(), mat->get_z_values() ); + init(mat->get_m_rows(), mat->get_n_cols(), mat->get_nonzero(), mat->get_num_z_values() ); copy(mat); } @@ -431,7 +453,10 @@ void ComplexMatrix::free() { delete [] rowptrs; delete [] colinds; - delete [] elementdata; + for ( StateID i = 0 ; i < get_num_synapse_states() ; ++i ) { + T * elementdata = statevectors[i]; + delete [] elementdata; + } } template @@ -494,7 +519,7 @@ AurynLong ComplexMatrix::get_statesize() template AurynLong ComplexMatrix::get_memsize() { - return statesize*z_values; + return statesize*n_z_values; } template @@ -523,7 +548,7 @@ T ComplexMatrix::get(NeuronID i, NeuronID j, NeuronID z) template bool ComplexMatrix::exists(NeuronID i, NeuronID j, NeuronID z) { - if ( get_ptr(i,j) == NULL || z >= get_z_values() ) + if ( get_ptr(i,j) == NULL || z >= get_num_z_values() ) return false; else return true; @@ -532,14 +557,20 @@ bool ComplexMatrix::exists(NeuronID i, NeuronID j, NeuronID z) template void ComplexMatrix::set_num_synapse_states(StateID zsize) { - z_values = zsize; + n_z_values = zsize; resize_buffer(statesize); } template StateID ComplexMatrix::get_num_synapse_states() { - return z_values; + return n_z_values; +} + +template +NeuronID ComplexMatrix::get_num_z_values() +{ + return get_num_synapse_states(); } template @@ -783,11 +814,6 @@ NeuronID ComplexMatrix::get_n_cols() return n_cols; } -template -NeuronID ComplexMatrix::get_z_values() -{ - return z_values; -} template void ComplexMatrix::print() diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 3d0d0728..8037a2e5 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -142,7 +142,7 @@ void WeightMonitor::add_to_list( std::vector vec, std::string labe void WeightMonitor::add_equally_spaced(NeuronID number, NeuronID z) { - if ( z >= mat->get_z_values() ) { + if ( z >= mat->get_num_z_values() ) { auryn::logger->msg("WeightMonitor:: z too large. Trying to monitor complex " "synaptic values which do not exist." ,ERROR); From 0906abd9a266d67bdac4bdb2efd030bbdf62e15f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 11:34:17 -0700 Subject: [PATCH 255/460] Completely replaces core of ComplexMatrix Before all synaptic state data was stored in a single large array. Now we keep one array for each state. The pointers to these arrays are stored in "statevectors" which is a vector type. --- src/ComplexMatrix.h | 247 +++++++++++++++++++++++++------------------- 1 file changed, 140 insertions(+), 107 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 319a0b48..a6d287c7 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -71,7 +71,7 @@ class ComplexMatrix // data for (StateID z = 0; z < n_z_values ; ++z ) { for (AurynLong i = 0 ; i < n_nonzero ; ++i) { - ar & elementdata[i+z*statesize]; + ar & statevectors[z][i]; } } } @@ -87,7 +87,7 @@ class ComplexMatrix ar & n_nonzero; // allocate necessary memory - resize_buffer(statesize); + resize_buffers(statesize); // rowpointers -- translate in elements per row for ( NeuronID i = 0 ; i < m_rows+1 ; ++i ) { @@ -102,41 +102,43 @@ class ComplexMatrix // data for (StateID z = 0; z < n_z_values ; ++z ) { for (AurynLong i = 0 ; i < n_nonzero ; ++i) { - ar & elementdata[i+z*statesize]; + ar & statevectors[z][i]; } } } BOOST_SERIALIZATION_SPLIT_MEMBER() - /*! Dimensions of matrix */ + /*! \brief Dimensions of matrix */ NeuronID m_rows,n_cols; - /*! z-dimension of matrix */ + /*! \brief z-dimension of matrix */ NeuronID n_z_values; - /*! Current row and col for filling. Should be in the last corner before use. */ + /*! \brief Current row and col for filling. Should be in the last corner before use. */ NeuronID current_row, current_col; - /*! The number of actual nonzero elements. */ + /*! \brief The number of actual nonzero elements. */ AurynLong n_nonzero; - /*! The size of data reserved and therefore the maximum number of non-zero elements. */ + /*! \brief The size of data reserved and therefore the maximum number of non-zero elements. */ AurynLong statesize; protected: - /*! Array that holds the begin addresses of column indices */ + /*! \brief Array that holds the begin addresses of column indices */ NeuronID ** rowptrs; - /*! Array that holds the column indices of non-zero elements */ + /*! \brief Array that holds the column indices of non-zero elements */ NeuronID * colinds; - /*! Vector that holds pointers to the state vectors storing the synaptic states. */ + /*! \brief Vector that holds pointers to the state vectors storing the synaptic states. */ std::vector< T* > statevectors; - /*! Pointer to the first state vector */ - T * elementdata; + /*! \brief Returns a synaptic state vector. */ + T * alloc_synaptic_state_vector(); + /*! \brief Returns synaptic state vector with given z index. */ + T * get_synaptic_state_vector(StateID z=0); - /*! Returns a synaptic state vector. */ - T * get_synaptic_state_vector(); + /*! \brief Matches size of statevectors to number of synaptic states. */ + void prepare_state_vectors(); - /*! Default initializiation called by the constructor. */ + /*! \brief Default initializiation called by the constructor. */ void init(NeuronID m, NeuronID n, AurynLong size, NeuronID z ); void free(); @@ -148,18 +150,23 @@ class ComplexMatrix void clear(); - /*! Resize buffer + /*! \brief Resizes one state vector and copies existing data + * */ + T * resize_state_vector(T * old, AurynLong oldsize, AurynLong newsize); + + /*! \brief Resize buffer + * * Allocates a new buffer of size and copies the * old buffers before freeing the memory */ - void resize_buffer(AurynLong size); + void resize_buffers(AurynLong size); - /*! Resizes buffer and clears the matrix. This saves + /*! \brief Resizes buffer and clears the matrix. This saves * to copy all the data. */ void resize_buffer_and_clear(AurynLong size); - /*! Prunes the reserved memory such that datasize=get_nonzero() + /*! \brief Prunes the reserved memory such that datasize=get_nonzero() * Note that this is an expensive operation because it uses - * resize_buffer(size) and it should be used sparsely. */ + * resize_buffers(size) and it should be used sparsely. */ void prune(); /*! Add non-zero element in row/col order. @@ -189,29 +196,28 @@ class ComplexMatrix /*! Gets the matching data entry for a given index i and state z*/ T get_data(AurynLong i, StateID z=0); /*! Gets the matching data ptr for a given index i and state z*/ - T * get_data_ptr(AurynLong i, StateID z=0); + T * get_data_ptr(AurynLong data_index, StateID z=0); /*! Gets the matching data ptr for a given index pointer and state z*/ T * get_data_ptr(const NeuronID * ind_ptr, StateID z=0); /*! Gets the matching data value for a given index pointer and state z*/ T get_data(const NeuronID * ind_ptr, StateID z=0); void fill_zeros(); AurynDouble get_fill_level(); + T get(NeuronID i, NeuronID j, NeuronID z=0); /*! \brief Returns true if the matrix element exists. */ - bool exists(NeuronID i, NeuronID j, NeuronID z=0); + bool exists(NeuronID i, NeuronID j, StateID z=0); - /*! Returns the pointer to a particular element */ - T * get_ptr(NeuronID i, NeuronID j); + /*! \brief Returns the pointer to a particular element */ + T * get_ptr(NeuronID i, NeuronID j, StateID z=0); - /*! Returns the pointer to a particular element */ - T * get_ptr(NeuronID i, NeuronID j, NeuronID z); - /*! Returns the pointer to a particular element given + /*! \brief Returns the pointer to a particular element given * its position in the data array. */ T * get_ptr(AurynLong data_index); /*! Returns data index to a particular element specifed by i and j */ - AurynLong get_data_index(NeuronID i, NeuronID j, NeuronID z=0); + AurynLong get_data_index(NeuronID i, NeuronID j); /*! \brief Returns data index to a particular element specifed by an index pointer */ AurynLong get_data_index(const NeuronID * ind_ptr); @@ -225,7 +231,7 @@ class ComplexMatrix void set_num_synapse_states(StateID zsize); /*!\brief Returns number of synaptic states (z-value) */ - StateID get_num_synapse_states(); + StateID get_num_synaptic_states(); /*!\brief Returns number of synaptic states (z-value) */ StateID get_num_z_values(); @@ -255,7 +261,7 @@ class ComplexMatrix /*! \brief Get data pointer for that state */ T * state_get_data_ptr(T * x, NeuronID i); - T get_value(AurynLong data_index); + void add_value(AurynLong data_index, T value); NeuronID get_colind(AurynLong data_index); bool set(NeuronID i, NeuronID j, T value); @@ -265,22 +271,22 @@ class ComplexMatrix void set_row(NeuronID i, T value); /*! \brief Scales all non-zero elements in row i to value */ void scale_row(NeuronID i, T value); - /*! Scales all non-zero elements */ + /*! \brief Scales all non-zero elements */ void scale_all(T value); - /*! Sets all non-zero elements in col j to value. Due to ordering this is slow and the use of this functions is discouraged. */ + /*! \brief Sets all non-zero elements in col j to value. Due to ordering this is slow and the use of this functions is discouraged. */ void set_col(NeuronID j, T value); - /*! Scales all non-zero elements in col j to value. Due to ordering this is slow and the use of this functions is discouraged. */ + /*! \brief Scales all non-zero elements in col j to value. Due to ordering this is slow and the use of this functions is discouraged. */ void scale_col(NeuronID j, T value); double sum_col(NeuronID j); - /*! Returns datasize: number of possible entries */ + /*! \brief Returns datasize: number of possible entries */ AurynLong get_datasize(); - /*! Same as datasize : number of possible entries */ + /*! \brief Same as datasize : number of possible entries */ AurynLong get_statesize(); - /*! Returns statesize multiplied by number of states */ + /*! \brief Returns statesize multiplied by number of states */ AurynLong get_memsize(); - /*! Returns number of non-zero elements */ + /*! \brief Returns number of non-zero elements */ AurynLong get_nonzero(); - /*! stdout dump of all elements -- for testing only. */ + /*! \brief stdout dump of all elements -- for testing only. */ void print(); double mean(); NeuronID * get_ind_begin(); @@ -291,37 +297,38 @@ class ComplexMatrix NeuronID get_m_rows(); NeuronID get_n_cols(); NeuronID ** get_rowptrs(); + /*! \brief Returns pointer to data value corresponding to the first element. */ T * get_data_begin(const StateID z=0); - /*! \brief Returns the data value corresponding to the element behind the last nonzero element. */ + /*! \brief Returns pointer to data value corresponding to the element behind the last nonzero element. */ T * get_data_end(const StateID z=0); - /*! Returns the data value to an item that is i-th in the colindex array */ - T get_value(NeuronID i); - /*! Returns the data value to an item that for pointer r pointing to the respective element in the index array */ + /*! \brief Returns the data value to an item that is i-th in the colindex array */ + T get_value(AurynLong data_index); + /*! \brief Returns the data value to an item that for pointer r pointing to the respective element in the index array */ T get_value(NeuronID * r); - /*! Returns pointer to the the data value to an item that is i-th in the colindex array */ + /*! \brief Returns pointer to the the data value to an item that is i-th in the colindex array */ T * get_value_ptr(NeuronID i); - /*! Returns the pointer to the data value to an item that for pointer r pointing to the respective element in the index array */ + /*! \brief Returns the pointer to the data value to an item that for pointer r pointing to the respective element in the index array */ T * get_value_ptr(NeuronID * r); NeuronID get_data_offset(NeuronID * r); }; template -T * ComplexMatrix::get_data_ptr(const AurynLong i, const StateID z) +T * ComplexMatrix::get_data_ptr(const AurynLong data_index, const StateID z) { - return elementdata+z*get_datasize()+i; + return statevectors[z]+data_index; } template T ComplexMatrix::get_data(const AurynLong i, const StateID z) { - return elementdata[z*get_datasize()+i]; + return *get_data_ptr(i,z); } template T * ComplexMatrix::get_data_ptr(const NeuronID * ind_ptr, const StateID z) { size_t ptr_offset = ind_ptr-get_ind_begin(); - return elementdata+z*get_datasize()+ptr_offset; + return statevectors[z]+ptr_offset; } template @@ -334,7 +341,7 @@ template void ComplexMatrix::set_element(AurynLong data_index, T value, StateID z) { if (data_index void ComplexMatrix::scale_element(AurynLong data_index, T value, StateID z) { if (data_index @@ -368,12 +375,36 @@ void ComplexMatrix::clear() } template -T * ComplexMatrix::get_synaptic_state_vector() +T * ComplexMatrix::alloc_synaptic_state_vector() { T * vec = new T [get_memsize()]; return vec; } +template +T * ComplexMatrix::get_synaptic_state_vector(StateID z) +{ + return statevectors[z]; +} + +template +void ComplexMatrix::prepare_state_vectors() +{ + if ( get_num_synaptic_states() < statevectors.size() ) { + // add synaptic state vectors until we have enough + for ( StateID i = statevectors.size() ; i < get_num_synaptic_states() ; ++i ) { + T * vec = alloc_synaptic_state_vector(); + statevectors.push_back(vec); + } + } else { + // remove state vectors from the end until we have the right amount + while ( statevectors.size() > get_num_synaptic_states() ) { + delete [] *(statevectors.end()); + statevectors.pop_back(); + } + } +} + template void ComplexMatrix::init(NeuronID m, NeuronID n, AurynLong size, NeuronID z) { @@ -385,16 +416,23 @@ void ComplexMatrix::init(NeuronID m, NeuronID n, AurynLong size, NeuronID z) rowptrs = new NeuronID * [m_rows+1]; colinds = new NeuronID [get_datasize()]; - for ( StateID i = 0 ; i < get_num_synapse_states() ; ++i ) { - T * vec = get_synaptic_state_vector(); - statevectors.push_back(vec); - } + prepare_state_vectors(); clear(); } template -void ComplexMatrix::resize_buffer(AurynLong size) +T * ComplexMatrix::resize_state_vector(T * old, AurynLong oldsize, AurynLong newsize) { + T * new_elementdata = new T [newsize]; + std::copy(old, old+get_datasize(), new_elementdata); + delete [] old; + return new_elementdata; +} + +template +void ComplexMatrix::resize_buffers(AurynLong size) +{ + AurynLong oldsize = get_statesize(); statesize = size; NeuronID * new_colinds = new NeuronID [get_datasize()]; @@ -409,10 +447,11 @@ void ComplexMatrix::resize_buffer(AurynLong size) delete [] colinds; colinds = new_colinds; - T * new_elementdata = new T [get_memsize()]; - std::copy(elementdata, elementdata+get_datasize(), new_elementdata); - delete [] elementdata; - elementdata = new_elementdata; + for ( StateID i = 0 ; i < get_num_synaptic_states() ; ++i ) { + T * nvec = resize_state_vector(statevectors[i], oldsize, size); + statevectors[i] = nvec; + } + } template @@ -426,7 +465,7 @@ template void ComplexMatrix::prune() { if ( get_datasize() > get_nonzero() ) - resize_buffer(get_nonzero()); + resize_buffers(get_nonzero()); } template @@ -453,9 +492,9 @@ void ComplexMatrix::free() { delete [] rowptrs; delete [] colinds; - for ( StateID i = 0 ; i < get_num_synapse_states() ; ++i ) { - T * elementdata = statevectors[i]; - delete [] elementdata; + for ( StateID i = 0 ; i < get_num_synaptic_states() ; ++i ) { + T * vec = statevectors[i]; + delete [] vec; } } @@ -491,10 +530,11 @@ void ComplexMatrix::push_back(NeuronID i, NeuronID j, T value) current_row++; } current_col = j; + T * data_z0 = get_synaptic_state_vector(0); if (i >= current_row && j >= current_col) { if ( n_nonzero >= get_datasize() ) throw AurynMatrixBufferException(); *(rowptrs[i+1]) = j; // write last j to end of index array - elementdata[rowptrs[i+1]-colinds] = value; // write value to end of data array + data_z0[rowptrs[i+1]-colinds] = value; // write value to end of data array ++rowptrs[i+1]; //increment end by one rowptrs[m_rows] = rowptrs[i+1]; // last (m_row+1) marks end of last row n_nonzero++; @@ -539,12 +579,6 @@ void ComplexMatrix::fill_zeros() } -template -T ComplexMatrix::get(NeuronID i, NeuronID j, NeuronID z) -{ - return *get_ptr(i,j,z); -} - template bool ComplexMatrix::exists(NeuronID i, NeuronID j, NeuronID z) { @@ -558,11 +592,12 @@ template void ComplexMatrix::set_num_synapse_states(StateID zsize) { n_z_values = zsize; - resize_buffer(statesize); + prepare_state_vectors(); + resize_buffers(statesize); } template -StateID ComplexMatrix::get_num_synapse_states() +StateID ComplexMatrix::get_num_synaptic_states() { return n_z_values; } @@ -570,33 +605,29 @@ StateID ComplexMatrix::get_num_synapse_states() template NeuronID ComplexMatrix::get_num_z_values() { - return get_num_synapse_states(); + return get_num_synaptic_states(); } template -T * ComplexMatrix::get_state_begin(NeuronID z) +T * ComplexMatrix::get_state_begin(StateID z) { - return get_ptr(get_datasize()*z); + return statevectors[z]; } template -T * ComplexMatrix::get_state_end(NeuronID z) +T * ComplexMatrix::get_state_end(StateID z) { - return get_ptr(get_datasize()*(z+1)); + return get_state_begin(z)+get_datasize(); } -template -T * ComplexMatrix::get_ptr(NeuronID i, NeuronID j, NeuronID z) -{ - return get_ptr(i,j)+get_datasize()*z; -} template -T * ComplexMatrix::get_ptr(NeuronID i, NeuronID j) +AurynLong ComplexMatrix::get_data_index(NeuronID i, NeuronID j) { + const AurynLong error_value = -1; // check bounds - if ( !(i < m_rows && j < n_cols) ) return NULL; + if ( !(i < m_rows && j < n_cols) ) return error_value; // perform binary search NeuronID * lo = rowptrs[i]; @@ -617,21 +648,16 @@ T * ComplexMatrix::get_ptr(NeuronID i, NeuronID j) std::cout << "found element at data array position " << (lo-colinds) << std::endl; #endif // DEBUG - return elementdata+(lo-colinds); + return (lo-colinds); } #ifdef DEBUG std::cout << "element not found" << std::endl; #endif // DEBUG - return NULL; + return error_value; } -template -AurynLong ComplexMatrix::get_data_index(NeuronID i, NeuronID j, NeuronID z) -{ - return get_data_index( get_ptr(i,j) ) + z*statesize ; -} template AurynLong ComplexMatrix::get_data_index(const NeuronID * ind_ptr) @@ -645,22 +671,35 @@ AurynLong ComplexMatrix::get_data_index(const T * ptr) return ptr - get_data_begin(); } +template +T * ComplexMatrix::get_ptr(NeuronID i, NeuronID j, StateID z) +{ + return statevectors[z]+get_data_index(i,j); +} + +template +T ComplexMatrix::get(NeuronID i, NeuronID j, StateID z) +{ + return *(statevectors[z]+get_data_index(i,j)); +} + template T * ComplexMatrix::get_ptr(AurynLong data_index) { - return &elementdata[data_index]; + T * data_z0 = get_synaptic_state_vector(0); + return &data_z0[data_index]; } template T ComplexMatrix::get_value(AurynLong data_index) { - return elementdata[data_index]; + return *get_ptr(data_index); } template void ComplexMatrix::add_value(AurynLong data_index, T value) { - elementdata[data_index] += value; + *get_ptr(data_index) += value; } template @@ -689,7 +728,7 @@ void ComplexMatrix::scale_row(NeuronID i, T value) for (NeuronID * c = rowbegin ; c <= rowend ; ++c) { - elementdata[c-colinds] *= value; + *get_ptr(c-colinds) *= value; } } @@ -708,7 +747,7 @@ void ComplexMatrix::set_row(NeuronID i, T value) for (NeuronID * c = rowbegin ; c <= rowend ; ++c) { - elementdata[c-colinds] = value; + *get_ptr(c-colinds) = value; } } @@ -820,8 +859,8 @@ void ComplexMatrix::print() { for (NeuronID i = 0 ; i < m_rows ; ++i) { for (NeuronID * r = get_row_begin(i) ; r != get_row_end(i) ; ++r ) { - std::cout << i << " " << *r << " " << elementdata[r-colinds] << "\n"; - // FIXME not dumping the other states yet + std::cout << i << " " << *r << " " << *get_ptr(r-colinds) << "\n"; + // TODO not dumping the other states yet } } } @@ -831,7 +870,7 @@ double ComplexMatrix::mean() { double sum = 0; for (NeuronID i = 0 ; i < get_nonzero() ; ++i) { - sum += elementdata[i]; + sum += *get_ptr(i); } return sum/get_nonzero(); } @@ -915,12 +954,6 @@ T * ComplexMatrix::state_get_data_ptr(T * x, NeuronID i) return x+i; } -template -T ComplexMatrix::get_value(NeuronID i) -{ - return get_data_begin()[i]; -} - template T ComplexMatrix::get_value(NeuronID * r) { From 6d89adfcd04ec7cb3eb7f4c25fb3b3fba028231c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 12:37:49 -0700 Subject: [PATCH 256/460] Fixes serveral bugs in ComplexMatrix --- src/ComplexMatrix.h | 76 ++++++++++++++++++++++++++++----------------- 1 file changed, 47 insertions(+), 29 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index a6d287c7..3a51a8a1 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -47,6 +47,7 @@ template class ComplexMatrix { private: + friend class boost::serialization::access; template void save(Archive & ar, const unsigned int version) const @@ -108,6 +109,9 @@ class ComplexMatrix } BOOST_SERIALIZATION_SPLIT_MEMBER() + + AurynLong data_index_error_value; + /*! \brief Dimensions of matrix */ NeuronID m_rows,n_cols; /*! \brief z-dimension of matrix */ @@ -218,10 +222,8 @@ class ComplexMatrix /*! Returns data index to a particular element specifed by i and j */ AurynLong get_data_index(NeuronID i, NeuronID j); - /*! \brief Returns data index to a particular element specifed by an index pointer */ AurynLong get_data_index(const NeuronID * ind_ptr); - /*! \brief Returns data index to a particular element specifed by a data pointer */ AurynLong get_data_index(const T * ptr); @@ -229,12 +231,12 @@ class ComplexMatrix /*!\brief Sets number of synaptic states (z-value) */ void set_num_synapse_states(StateID zsize); - /*!\brief Returns number of synaptic states (z-value) */ StateID get_num_synaptic_states(); - /*!\brief Returns number of synaptic states (z-value) */ StateID get_num_z_values(); + /*!\brief Synonymous to get_num_synaptic_states */ + StateID get_num_synapse_states(); /*! \brief Gets pointer for the first element of a given synaptic state vector */ T * get_state_begin(StateID z=0); @@ -377,7 +379,7 @@ void ComplexMatrix::clear() template T * ComplexMatrix::alloc_synaptic_state_vector() { - T * vec = new T [get_memsize()]; + T * vec = new T [get_statesize()]; return vec; } @@ -390,18 +392,17 @@ T * ComplexMatrix::get_synaptic_state_vector(StateID z) template void ComplexMatrix::prepare_state_vectors() { - if ( get_num_synaptic_states() < statevectors.size() ) { - // add synaptic state vectors until we have enough - for ( StateID i = statevectors.size() ; i < get_num_synaptic_states() ; ++i ) { - T * vec = alloc_synaptic_state_vector(); - statevectors.push_back(vec); - } - } else { - // remove state vectors from the end until we have the right amount - while ( statevectors.size() > get_num_synaptic_states() ) { - delete [] *(statevectors.end()); - statevectors.pop_back(); - } + // add synaptic state vectors until we have enough + while ( statevectors.size() < get_num_synaptic_states() ) { + T * vec = alloc_synaptic_state_vector(); + statevectors.push_back(vec); + } + + // remove state vectors from the end until we have the right amount + // if the above code ran this will not run + while ( statevectors.size() > get_num_synaptic_states() ) { + delete [] *(statevectors.end()); + statevectors.pop_back(); } } @@ -412,6 +413,8 @@ void ComplexMatrix::init(NeuronID m, NeuronID n, AurynLong size, NeuronID z) n_cols = n; statesize = size; // assumed maximum number of connections n_z_values = z; + + data_index_error_value = std::numeric_limits::max(); rowptrs = new NeuronID * [m_rows+1]; @@ -424,7 +427,8 @@ template T * ComplexMatrix::resize_state_vector(T * old, AurynLong oldsize, AurynLong newsize) { T * new_elementdata = new T [newsize]; - std::copy(old, old+get_datasize(), new_elementdata); + AurynLong element_count = std::min(newsize,oldsize); + std::copy(old, old+element_count, new_elementdata); delete [] old; return new_elementdata; } @@ -433,6 +437,7 @@ template void ComplexMatrix::resize_buffers(AurynLong size) { AurynLong oldsize = get_statesize(); + if ( oldsize == size ) return; statesize = size; NeuronID * new_colinds = new NeuronID [get_datasize()]; @@ -506,11 +511,11 @@ void ComplexMatrix::copy(ComplexMatrix * mat) clear(); - for ( NeuronID i = 0 ; i < mat->get_m_rows() ; ++i ) { - for ( NeuronID * r = mat->get_row_begin(i) ; r != mat->get_row_end(i) ; ++r ) { - push_back(i,*r,mat->get_value(r)); - } - } + // for ( NeuronID i = 0 ; i < mat->get_m_rows() ; ++i ) { + // for ( NeuronID * r = mat->get_row_begin(i) ; r != mat->get_row_end(i) ; ++r ) { + // push_back(i,*r,mat->get_value(r)); + // } + // } } template @@ -582,7 +587,7 @@ void ComplexMatrix::fill_zeros() template bool ComplexMatrix::exists(NeuronID i, NeuronID j, NeuronID z) { - if ( get_ptr(i,j) == NULL || z >= get_num_z_values() ) + if ( get_data_index(i,j) == data_index_error_value || z >= get_num_synaptic_states() ) return false; else return true; @@ -608,6 +613,12 @@ NeuronID ComplexMatrix::get_num_z_values() return get_num_synaptic_states(); } +template +NeuronID ComplexMatrix::get_num_synapse_states() +{ + return get_num_synaptic_states(); +} + template T * ComplexMatrix::get_state_begin(StateID z) { @@ -625,9 +636,8 @@ T * ComplexMatrix::get_state_end(StateID z) template AurynLong ComplexMatrix::get_data_index(NeuronID i, NeuronID j) { - const AurynLong error_value = -1; // check bounds - if ( !(i < m_rows && j < n_cols) ) return error_value; + if ( !(i < m_rows && j < n_cols) ) return data_index_error_value; // perform binary search NeuronID * lo = rowptrs[i]; @@ -655,7 +665,7 @@ AurynLong ComplexMatrix::get_data_index(NeuronID i, NeuronID j) std::cout << "element not found" << std::endl; #endif // DEBUG - return error_value; + return data_index_error_value; } @@ -674,13 +684,21 @@ AurynLong ComplexMatrix::get_data_index(const T * ptr) template T * ComplexMatrix::get_ptr(NeuronID i, NeuronID j, StateID z) { - return statevectors[z]+get_data_index(i,j); + AurynLong data_index = get_data_index(i,j); + if ( data_index != data_index_error_value ) + return statevectors[z]+data_index; + else + return NULL; } template T ComplexMatrix::get(NeuronID i, NeuronID j, StateID z) { - return *(statevectors[z]+get_data_index(i,j)); + AurynLong data_index = get_data_index(i,j); + if ( data_index != data_index_error_value ) + return *(statevectors[z]+get_data_index(i,j)); + else + return 0; } template From f5b5a61a3c7c59fbd9875cc4b11471247af75833 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 12:51:39 -0700 Subject: [PATCH 257/460] Implements copy function for states --- src/ComplexMatrix.h | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 3a51a8a1..d7371c7d 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -130,9 +130,6 @@ class ComplexMatrix /*! \brief Array that holds the column indices of non-zero elements */ NeuronID * colinds; - /*! \brief Vector that holds pointers to the state vectors storing the synaptic states. */ - std::vector< T* > statevectors; - /*! \brief Returns a synaptic state vector. */ T * alloc_synaptic_state_vector(); @@ -147,6 +144,9 @@ class ComplexMatrix void free(); public: + /*! \brief Vector that holds pointers to the state vectors storing the synaptic states. */ + std::vector< T* > statevectors; + ComplexMatrix(); ComplexMatrix(ComplexMatrix * mat); ComplexMatrix(NeuronID rows, NeuronID cols, AurynLong size=256, NeuronID values=1 ); @@ -208,6 +208,7 @@ class ComplexMatrix void fill_zeros(); AurynDouble get_fill_level(); + /*! \brief Value of synaptic state variable i,j,z returns zero if the element is zero or does not exist. */ T get(NeuronID i, NeuronID j, NeuronID z=0); /*! \brief Returns true if the matrix element exists. */ @@ -511,11 +512,17 @@ void ComplexMatrix::copy(ComplexMatrix * mat) clear(); - // for ( NeuronID i = 0 ; i < mat->get_m_rows() ; ++i ) { - // for ( NeuronID * r = mat->get_row_begin(i) ; r != mat->get_row_end(i) ; ++r ) { - // push_back(i,*r,mat->get_value(r)); - // } - // } + // copy sparse strcture and first state + for ( NeuronID i = 0 ; i < mat->get_m_rows() ; ++i ) { + for ( NeuronID * r = mat->get_row_begin(i) ; r != mat->get_row_end(i) ; ++r ) { + push_back(i,*r,mat->get_value(r)); + } + } + + // copy the other states + for ( StateID z = 1 ; z < get_num_synaptic_states() ; ++z ) { + std::copy(mat->statevectors[z], mat->statevectors[z]+mat->get_state_size(), statevectors[z]); + } } template @@ -705,7 +712,7 @@ template T * ComplexMatrix::get_ptr(AurynLong data_index) { T * data_z0 = get_synaptic_state_vector(0); - return &data_z0[data_index]; + return data_z0+data_index; } template From b2810705ba6ce4c159e47ed9e30e57c8ba21224b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 13:35:29 -0700 Subject: [PATCH 258/460] Implements ComplexMatrix with AurynStateVectors --- src/AurynVector.cpp | 11 ++++--- src/AurynVector.h | 10 +++++++ src/ComplexMatrix.h | 71 +++++++++++++++++++++++++-------------------- 3 files changed, 57 insertions(+), 35 deletions(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 693c1c77..115b2e95 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -52,10 +52,13 @@ AurynVectorFloat::AurynVectorFloat(NeuronID n) : AurynVector(n) // check that size is a multiple of SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS // which is typically 4 for float and SSE if ( n%SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) { - std::cerr << "Trying to initilize AurynVectorFloat with explicit SIMD enabled, " - " but vector size is not multiple of SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS." - << std::endl; - throw AurynVectorDimensionalityException(); + // std::cerr << "Trying to initilize AurynVectorFloat with explicit SIMD enabled, " + // " but vector size is not multiple of SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS." + // << std::endl; + // throw AurynVectorDimensionalityException(); + NeuronID div = n/SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; // rounds down + NeuronID new_size = (div+1)*SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; // is multiple of SIMD... + resize(new_size); } #endif /* CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY */ } diff --git a/src/AurynVector.h b/src/AurynVector.h index 1bef9113..b20b0733 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -98,6 +98,16 @@ namespace auryn { delete data; } + /*! \brief resize data array to new_size */ + void resize(IndexType new_size) + { + if ( size != new_size ) { + delete [] data; + data = new T [new_size]; + set_zero(); + } + } + /*! \brief Set all elements to value v. */ virtual void set_all(T v) { diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index d7371c7d..d1bd8abc 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -43,6 +43,8 @@ namespace auryn { * only be inserted row by row starting from "left to right". This scheme * enables related data fields to reside in memory next to each other. */ + + template class ComplexMatrix { @@ -71,9 +73,7 @@ class ComplexMatrix } // data for (StateID z = 0; z < n_z_values ; ++z ) { - for (AurynLong i = 0 ; i < n_nonzero ; ++i) { - ar & statevectors[z][i]; - } + ar & *(statevectors[z]); } } template @@ -102,9 +102,7 @@ class ComplexMatrix } // data for (StateID z = 0; z < n_z_values ; ++z ) { - for (AurynLong i = 0 ; i < n_nonzero ; ++i) { - ar & statevectors[z][i]; - } + ar & *(statevectors[z]); } } BOOST_SERIALIZATION_SPLIT_MEMBER() @@ -131,10 +129,13 @@ class ComplexMatrix NeuronID * colinds; /*! \brief Returns a synaptic state vector. */ - T * alloc_synaptic_state_vector(); + AurynVector * alloc_synaptic_state_vector(); + + /*! \brief Returns pointer to statevector which is an AurynVector of specified synaptic state */ + AurynVector * get_synaptic_state_vector(StateID z=0); - /*! \brief Returns synaptic state vector with given z index. */ - T * get_synaptic_state_vector(StateID z=0); + /*! \brief Sames as get_synaptic_state_vector(StateID z) */ + AurynVector * get_state_vector(StateID z=0); /*! \brief Matches size of statevectors to number of synaptic states. */ void prepare_state_vectors(); @@ -145,7 +146,7 @@ class ComplexMatrix public: /*! \brief Vector that holds pointers to the state vectors storing the synaptic states. */ - std::vector< T* > statevectors; + std::vector< AurynVector * > statevectors; ComplexMatrix(); ComplexMatrix(ComplexMatrix * mat); @@ -156,7 +157,7 @@ class ComplexMatrix /*! \brief Resizes one state vector and copies existing data * */ - T * resize_state_vector(T * old, AurynLong oldsize, AurynLong newsize); + AurynVector * resize_state_vector(AurynVector * old, AurynLong oldsize, AurynLong newsize); /*! \brief Resize buffer * @@ -318,7 +319,7 @@ class ComplexMatrix template T * ComplexMatrix::get_data_ptr(const AurynLong data_index, const StateID z) { - return statevectors[z]+data_index; + return statevectors[z]->data+data_index; } template @@ -331,7 +332,7 @@ template T * ComplexMatrix::get_data_ptr(const NeuronID * ind_ptr, const StateID z) { size_t ptr_offset = ind_ptr-get_ind_begin(); - return statevectors[z]+ptr_offset; + return statevectors[z]->data+ptr_offset; } template @@ -344,7 +345,7 @@ template void ComplexMatrix::set_element(AurynLong data_index, T value, StateID z) { if (data_indexdata[data_index] = value; } @@ -358,7 +359,7 @@ template void ComplexMatrix::scale_element(AurynLong data_index, T value, StateID z) { if (data_indexdata[data_index] *= value; } template @@ -378,14 +379,14 @@ void ComplexMatrix::clear() } template -T * ComplexMatrix::alloc_synaptic_state_vector() +AurynVector * ComplexMatrix::alloc_synaptic_state_vector() { - T * vec = new T [get_statesize()]; + T * vec = new AurynVector(get_statesize()); return vec; } template -T * ComplexMatrix::get_synaptic_state_vector(StateID z) +AurynVector * ComplexMatrix::get_synaptic_state_vector(StateID z) { return statevectors[z]; } @@ -395,7 +396,7 @@ void ComplexMatrix::prepare_state_vectors() { // add synaptic state vectors until we have enough while ( statevectors.size() < get_num_synaptic_states() ) { - T * vec = alloc_synaptic_state_vector(); + AurynVector * vec = new AurynVector(get_statesize()); statevectors.push_back(vec); } @@ -412,6 +413,7 @@ void ComplexMatrix::init(NeuronID m, NeuronID n, AurynLong size, NeuronID z) { m_rows = m; n_cols = n; + statesize = size; // assumed maximum number of connections n_z_values = z; @@ -425,11 +427,11 @@ void ComplexMatrix::init(NeuronID m, NeuronID n, AurynLong size, NeuronID z) } template -T * ComplexMatrix::resize_state_vector(T * old, AurynLong oldsize, AurynLong newsize) +AurynVector * ComplexMatrix::resize_state_vector(AurynVector * old, AurynLong oldsize, AurynLong newsize) { - T * new_elementdata = new T [newsize]; + AurynVector * new_elementdata = new AurynVector(newsize); AurynLong element_count = std::min(newsize,oldsize); - std::copy(old, old+element_count, new_elementdata); + std::copy(old->data, old->data+element_count, new_elementdata->data); delete [] old; return new_elementdata; } @@ -454,7 +456,7 @@ void ComplexMatrix::resize_buffers(AurynLong size) colinds = new_colinds; for ( StateID i = 0 ; i < get_num_synaptic_states() ; ++i ) { - T * nvec = resize_state_vector(statevectors[i], oldsize, size); + AurynVector * nvec = resize_state_vector(statevectors[i], oldsize, size); statevectors[i] = nvec; } @@ -498,9 +500,10 @@ void ComplexMatrix::free() { delete [] rowptrs; delete [] colinds; - for ( StateID i = 0 ; i < get_num_synaptic_states() ; ++i ) { - T * vec = statevectors[i]; - delete [] vec; + while ( statevectors.size() ) { + AurynVector * vec = statevectors[0]; + delete vec; + statevectors.pop_back(); } } @@ -542,7 +545,7 @@ void ComplexMatrix::push_back(NeuronID i, NeuronID j, T value) current_row++; } current_col = j; - T * data_z0 = get_synaptic_state_vector(0); + T * data_z0 = get_synaptic_state_vector(0)->data; if (i >= current_row && j >= current_col) { if ( n_nonzero >= get_datasize() ) throw AurynMatrixBufferException(); *(rowptrs[i+1]) = j; // write last j to end of index array @@ -626,10 +629,16 @@ NeuronID ComplexMatrix::get_num_synapse_states() return get_num_synaptic_states(); } +template +AurynVector * ComplexMatrix::get_state_vector(StateID z) +{ + return get_synaptic_state_vector(z); +} + template T * ComplexMatrix::get_state_begin(StateID z) { - return statevectors[z]; + return statevectors[z]->data; } @@ -693,7 +702,7 @@ T * ComplexMatrix::get_ptr(NeuronID i, NeuronID j, StateID z) { AurynLong data_index = get_data_index(i,j); if ( data_index != data_index_error_value ) - return statevectors[z]+data_index; + return statevectors[z]->data+data_index; else return NULL; } @@ -703,7 +712,7 @@ T ComplexMatrix::get(NeuronID i, NeuronID j, StateID z) { AurynLong data_index = get_data_index(i,j); if ( data_index != data_index_error_value ) - return *(statevectors[z]+get_data_index(i,j)); + return *(statevectors[z]->data+get_data_index(i,j)); else return 0; } @@ -711,7 +720,7 @@ T ComplexMatrix::get(NeuronID i, NeuronID j, StateID z) template T * ComplexMatrix::get_ptr(AurynLong data_index) { - T * data_z0 = get_synaptic_state_vector(0); + T * data_z0 = get_synaptic_state_vector(0)->data; return data_z0+data_index; } From 9037be1a800f69f5be0c0a17db3ae40524f2d48e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 13:51:19 -0700 Subject: [PATCH 259/460] Adds type def for AurynSynStateVector --- src/auryn_definitions.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 6b9d6373..703808b0 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -324,6 +324,9 @@ namespace auryn { * This typically needs to change when AurynState or AurynFloat types are changed. */ typedef AurynVectorFloat AurynStateVector; + /*! \brief Defines AurynSynStateVector for synaptic states */ + typedef AurynVector AurynSynStateVector; + // Legacy state vector types /*! \brief Legacy definition of AurynStateVector */ typedef AurynStateVector auryn_vector_float; //!< Default legacy Auryn state vector type From a0dbee8e141e0ddb851a589bfe8e31f0cbd1ccd5 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 14:07:41 -0700 Subject: [PATCH 260/460] Uses state vector copy function in ComplexMatrix --- src/ComplexMatrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index d1bd8abc..4be8ff1a 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -524,7 +524,7 @@ void ComplexMatrix::copy(ComplexMatrix * mat) // copy the other states for ( StateID z = 1 ; z < get_num_synaptic_states() ; ++z ) { - std::copy(mat->statevectors[z], mat->statevectors[z]+mat->get_state_size(), statevectors[z]); + statevectors[z]->copy(mat->statevectors[z]); } } From f4b03f95e4cee0b9879dddee84f35428f9d23cca Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 14:21:23 -0700 Subject: [PATCH 261/460] Fixes bug in destructor of ComplexMatrix --- src/ComplexMatrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 4be8ff1a..153d8061 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -501,7 +501,7 @@ void ComplexMatrix::free() delete [] rowptrs; delete [] colinds; while ( statevectors.size() ) { - AurynVector * vec = statevectors[0]; + AurynVector * vec = statevectors.back(); delete vec; statevectors.pop_back(); } From fafecaa319902fd792c31e08a627b10e4d99be7b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 15:12:45 -0700 Subject: [PATCH 262/460] Adds shorter fn (filename) function to System Also adapts the sim_epsp example to show the use of it. --- examples/sim_epsp.cpp | 30 +++++++++++++----------------- src/System.cpp | 10 ++++++++++ src/System.h | 17 +++++++++++++++-- 3 files changed, 38 insertions(+), 19 deletions(-) diff --git a/examples/sim_epsp.cpp b/examples/sim_epsp.cpp index e966c994..1cd1c22c 100644 --- a/examples/sim_epsp.cpp +++ b/examples/sim_epsp.cpp @@ -32,7 +32,7 @@ int main(int ac, char* av[]) int errcode = 0; char strbuf [255]; - string outputfile = "out_epsp"; + string simname = "out_epsp"; string tmpstr; AurynWeight w = 1.0; @@ -54,29 +54,25 @@ int main(int ac, char* av[]) } sys = new System(&world); + sys->set_simulation_name(simname); // END Global definitions - + + // define input group PoissonGroup * poisson = new PoissonGroup(N,1.); + + // define receiving group IFGroup * neuron = new IFGroup(1); + // define connection IdentityConnection * con = new IdentityConnection(poisson,neuron,w,GLUT); - tmpstr = outputfile; - tmpstr += ".ras"; - SpikeMonitor * smon = new SpikeMonitor( neuron, tmpstr.c_str() ); - - tmpstr = outputfile; - tmpstr += ".mem"; - VoltageMonitor * vmon = new VoltageMonitor( neuron, 0, tmpstr.c_str(), 1e-3 ); - - tmpstr = outputfile; - tmpstr += ".ampa"; - StateMonitor * amon = new StateMonitor( neuron, 0, "g_ampa", tmpstr.c_str() ); - - tmpstr = outputfile; - tmpstr += ".nmda"; - StateMonitor * nmon = new StateMonitor( neuron, 0, "g_nmda", tmpstr.c_str() ); + // define monitors + SpikeMonitor * smon = new SpikeMonitor( neuron, sys->fn("ras") ); + VoltageMonitor * vmon = new VoltageMonitor( neuron, 0, sys->fn("mem"), 1e-3 ); + StateMonitor * amon = new StateMonitor( neuron, 0, "g_ampa", sys->fn("ampa") ); + StateMonitor * nmon = new StateMonitor( neuron, 0, "g_nmda", sys->fn("nmda") ); + // run simulation logger->msg("Running ...",PROGRESS); sys->run(10); diff --git a/src/System.cpp b/src/System.cpp index ff831333..a00f1c5d 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -561,6 +561,11 @@ void System::set_simulation_name(std::string name) simulation_name = name; } +std::string System::get_simulation_name() +{ + return simulation_name; +} + void System::set_output_dir(std::string path) { outputdir = path; @@ -575,6 +580,11 @@ string System::fn(std::string name, std::string extension) return oss.str(); } +string System::fn(std::string extension) +{ + return fn(get_simulation_name(), extension); +} + void System::save_network_state(std::string basename) { auryn::logger->msg("Saving network state", NOTIFICATION); diff --git a/src/System.h b/src/System.h index df06add1..9a3ec3e2 100644 --- a/src/System.h +++ b/src/System.h @@ -142,6 +142,12 @@ namespace auryn { /*! \brief Sets the simulation name. */ void set_simulation_name(std::string name); + /*! \brief Returns the simulation name. */ + std::string get_simulation_name(); + + /*! \brief Set output dir for fn function */ + void set_output_dir(std::string path); + virtual ~System(); @@ -263,6 +269,15 @@ namespace auryn { /*! \brief Get total number of registered synapses */ AurynLong get_total_synapses(); + /*! \brief Format output file name + * + * Formats output files according to the following convention: + * /.. where is taken + * from System->get_name() + * and returns it as a c string; + * */ + string fn(std::string extension); + /*! \brief Format output file name * * Formats output files according to the following convention: @@ -271,8 +286,6 @@ namespace auryn { * */ string fn(std::string name, std::string extension); - /*! \brief Set output dir for fn function */ - void set_output_dir(std::string path); /*! \brief Returns global mpi communicator */ mpi::communicator * get_com(); From c4b53f3818d6ec0db8cc1e53cb3d29934016fa75 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 19:39:07 -0700 Subject: [PATCH 263/460] Adds AllToAllConnection --- src/AllToAllConnection.cpp | 133 +++++++++++++++++++++++++++++++++++++ src/AllToAllConnection.h | 95 ++++++++++++++++++++++++++ src/auryn.h | 1 + 3 files changed, 229 insertions(+) create mode 100644 src/AllToAllConnection.cpp create mode 100644 src/AllToAllConnection.h diff --git a/src/AllToAllConnection.cpp b/src/AllToAllConnection.cpp new file mode 100644 index 00000000..525fca65 --- /dev/null +++ b/src/AllToAllConnection.cpp @@ -0,0 +1,133 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "AllToAllConnection.h" + +using namespace auryn; + +AllToAllConnection::AllToAllConnection( + SpikingGroup * source, + NeuronGroup * destination, + AurynWeight weight, + TransmitterType transmitter, + std::string name) +: Connection(source,destination,transmitter,name) +{ + init(weight); +} + + +AllToAllConnection::~AllToAllConnection() +{ + free(); +} + +void AllToAllConnection::init(AurynWeight weight) +{ + if ( dst->evolve_locally() == true ) + auryn::sys->register_connection(this); + + connection_weight = weight; +} + +void AllToAllConnection::free() +{ +} + +void AllToAllConnection::finalize() +{ +} + +void AllToAllConnection::propagate() +{ + SpikeContainer::const_iterator spikes_end = src->get_spikes()->end(); + for (SpikeContainer::const_iterator spike = src->get_spikes()->begin() ; + spike != spikes_end ; ++spike ) { + target_state_vector->add( connection_weight ); + } +} + +AurynWeight AllToAllConnection::get_data(NeuronID i) +{ + return 0; +} + +void AllToAllConnection::set_data(NeuronID i, AurynWeight value) +{ + connection_weight = value; +} + +AurynWeight AllToAllConnection::get(NeuronID i, NeuronID j) +{ + return connection_weight; +} + +AurynWeight * AllToAllConnection::get_ptr(NeuronID i, NeuronID j) +{ + return &connection_weight; +} + +void AllToAllConnection::set(NeuronID i, NeuronID j, AurynWeight value) +{ + connection_weight = value; +} + +void AllToAllConnection::stats(AurynDouble &mean, AurynDouble &std, StateID z) +{ + mean = connection_weight; + std = 0; +} + +bool AllToAllConnection::write_to_file(std::string filename) +{ + return true; // TODO fake but what else ? +} + +bool AllToAllConnection::load_from_file(std::string filename) +{ + return true; // TODO fake but what else ? +} + +AurynLong AllToAllConnection::get_nonzero() +{ + return 1; +} + + +std::vector AllToAllConnection::get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col) +{ + std::vector clist; + for ( NeuronID i = lo_row ; i < hi_row ; ++i ) { + for ( NeuronID j = lo_col ; j < hi_col ; ++j ) { + if ( i == j ) { + neuron_pair a; + a.i = i; + a.j = j; + clist.push_back( a ); + } + } + } + return clist; +} diff --git a/src/AllToAllConnection.h b/src/AllToAllConnection.h new file mode 100644 index 00000000..6d6e53b5 --- /dev/null +++ b/src/AllToAllConnection.h @@ -0,0 +1,95 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef ALLTOALLCONNECTION_H_ +#define ALLTOALLCONNECTION_H_ + +#include "auryn_definitions.h" +#include "AurynVector.h" +#include "Connection.h" +#include "System.h" + +#include +#include +#include + +#include +#include +#include +#include +#include + +namespace auryn { + +/*! \brief Provides a unity matrix like connectivity */ +class AllToAllConnection : public Connection +{ +private: + SpikeContainer * spikes; + void init(AurynWeight weight); + AurynWeight connection_weight; + NeuronID lo_src,hi_src,lo_dst,hi_dst; + +protected: + void free(); + + +public: + AllToAllConnection(); + AllToAllConnection( + SpikingGroup * source, + NeuronGroup * destination, + AurynWeight weight = 1.0, + TransmitterType transmitter = GLUT, + string name = "Default AllToAllConnection" + ); + virtual ~AllToAllConnection(); + + virtual AurynWeight get(NeuronID i, NeuronID j); + virtual AurynWeight * get_ptr(NeuronID i, NeuronID j); + virtual AurynWeight get_data(NeuronID i); + virtual AurynLong get_nonzero(); + + virtual void set_data(NeuronID i, AurynWeight value); + virtual void set(NeuronID i, NeuronID j, AurynWeight value); + void finalize(); + + virtual void propagate(); + + /*! \brief Return stats for connection. + * + * Note that AllToAllConnection does not support complex matrix states yet */ + virtual void stats(AurynDouble &mean, AurynDouble &std, StateID zid = 0); + virtual bool write_to_file(string filename); + virtual bool load_from_file(string filename); + + /*! \brief Returns a vector of ConnectionsID of a block specified by the arguments */ + std::vector get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col); + +}; + +} + +#endif /*ALLTOALLCONNECTION_H_*/ diff --git a/src/auryn.h b/src/auryn.h index 1160037c..5883272f 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -63,6 +63,7 @@ #include "TripletDecayConnection.h" #include "TripletScalingConnection.h" #include "IdentityConnection.h" +#include "AllToAllConnection.h" // Spiking and Neuron group definitions #include "AIF2Group.h" From 698904b28dabc8c6010532f850095b595e6a32e6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 19:39:56 -0700 Subject: [PATCH 264/460] Removes two deprecated virtual pure functions --- src/Connection.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Connection.h b/src/Connection.h index 517dcb61..89e13fe5 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -204,9 +204,6 @@ class Connection * Calls propagate only if the postsynaptic NeuronGroup exists on the local rank. */ void conditional_propagate(); - /*! \brief Computes the sum of all weights in the connection. */ - virtual AurynDouble sum() = 0; - /*! \brief Computes mean synaptic weight and std dev of all weights in this connection. */ virtual void stats(AurynDouble &mean, AurynDouble &std, StateID zid = 0) = 0; @@ -228,10 +225,6 @@ class Connection /*! \brief Same as transmit but first checks if the target neuron exists and avoids segfaults that way (but it's also slower). */ void safe_transmit(NeuronID id, AurynWeight amount); - /*! Returns a vector of ConnectionsID of a block specified by the arguments. */ - virtual std::vector get_block(NeuronID lo_row, NeuronID lo_col, NeuronID hi_row, NeuronID hi_col) = 0; - - /*! \brief Supplies pointer to SpikeContainer of all presynaptic spikes. * * This includes spikes from this group from all other nodes. From 797d1fb8be03b83d00821820bbce1c6cc0dcf1e4 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 19:40:06 -0700 Subject: [PATCH 265/460] Adapts code to new base class --- src/WeightSumMonitor.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/WeightSumMonitor.cpp b/src/WeightSumMonitor.cpp index 570306ad..5af8fe27 100644 --- a/src/WeightSumMonitor.cpp +++ b/src/WeightSumMonitor.cpp @@ -52,7 +52,9 @@ void WeightSumMonitor::init(Connection * source, std::string filename,AurynTime void WeightSumMonitor::propagate() { if (auryn::sys->get_clock()%ssize==0) { - AurynDouble weightsum = src->sum(); + AurynDouble weightsum; + AurynDouble weightstd; + src->stats(weightsum, weightstd); outfile << (auryn::sys->get_time()) << " " << weightsum << std::endl; } From 76a9e59f17809d40f331fe138dc23611b1b30d4b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 15 Jun 2016 19:42:28 -0700 Subject: [PATCH 266/460] API change in Connection Renames several set_transmitter functions to more correct set_target or set_receptor functions. --- src/Connection.cpp | 37 ++++++++++++++++++++++++------------- src/Connection.h | 16 ++++++++++++++-- 2 files changed, 38 insertions(+), 15 deletions(-) diff --git a/src/Connection.cpp b/src/Connection.cpp index 627ce094..f4ed3077 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -107,39 +107,50 @@ void Connection::set_transmitter(TransmitterType transmitter) if ( dst->evolve_locally() ) { switch ( transmitter ) { case GABA: - set_transmitter(dst->get_state_vector("g_gaba")); + set_target(dst->get_state_vector("g_gaba")); break; case MEM: - set_transmitter(dst->get_state_vector("mem")); + set_target(dst->get_state_vector("mem")); break; case CURSYN: - set_transmitter(dst->get_state_vector("g_cursyn")); + set_target(dst->get_state_vector("g_cursyn")); break; case NMDA: - set_transmitter(dst->get_state_vector("g_nmda")); + set_target(dst->get_state_vector("g_nmda")); break; case GLUT: case AMPA: default: - set_transmitter(dst->get_state_vector("g_ampa")); + set_target(dst->get_state_vector("g_ampa")); } - } else set_transmitter((AurynWeight *)NULL); + } else set_target((AurynWeight *)NULL); } -void Connection::set_transmitter(string state_name) -{ - set_transmitter(dst->get_state_vector(state_name)); -} -void Connection::set_transmitter(AurynWeight * ptr) +void Connection::set_target(AurynWeight * ptr) { target = ptr; } -void Connection::set_transmitter(AurynStateVector * ptr) +void Connection::set_target(AurynStateVector * ptr) { target_state_vector = ptr; - set_transmitter(ptr->data); + set_target(ptr->data); +} + +void Connection::set_receptor(AurynStateVector * ptr) +{ + set_target(ptr); +} + +void Connection::set_receptor(string state_name) +{ + set_receptor(dst->get_state_vector(state_name)); +} + +void Connection::set_transmitter(string state_name) +{ + set_receptor(state_name); } AurynStateVector * Connection::get_target_vector() diff --git a/src/Connection.h b/src/Connection.h index 517dcb61..cbcd0fda 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -152,15 +152,27 @@ class Connection TransmitterType get_transmitter(); /*! \brief Sets target state of this connection directly via a pointer */ - void set_transmitter(AurynWeight * ptr); + void set_target(AurynWeight * ptr); /*! \brief Sets target state of this connection directly via a StateVector */ + void set_target(AurynStateVector * ptr); + + /*! \brief Same as set_target */ + void set_receptor(AurynStateVector * ptr); + + /*! \brief Same as set_target */ void set_transmitter(AurynStateVector * ptr); - /*! \brief Sets target state of this connection as one of Auryn's default transmitter types */ + /*! \brief Sets target state of this connection for a given receptor as one of Auryn's default transmitter types + * + * The most common transmitter types are GLUT and GABA. The postsynaptic NeuronGroup needs to make use of the g_ampa or g_gaba state + * vectors (AurynStateVector) for this to work. */ void set_transmitter(TransmitterType transmitter); /*! \brief Sets target state of this connection directly the name of a state vector */ + void set_receptor(string state_name); + + /*! \brief Same as set_receptor, but DEPRECATED */ void set_transmitter(string state_name); /*! \brief Sets source SpikingGroup of this connection. */ From ba9919f0bd34728558a7fd037e5e49af17b9720d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 16 Jun 2016 10:34:44 -0700 Subject: [PATCH 267/460] Adds doxystring --- src/ComplexMatrix.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 153d8061..99f40bf6 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -42,6 +42,32 @@ namespace auryn { * spikes. Memory has to be reserved when the class is defined and elements can * only be inserted row by row starting from "left to right". This scheme * enables related data fields to reside in memory next to each other. + * + * ComplexMatrix generalizes SimpleMatrix to a rank 3 tensor in which each synaptic + * connection can have more than one value (third tensor mode -- corresponding + * to a synaptic state). This allows to efficiently implement state based complex + * synaptic models which have their own internal dynamics. + * + * Instead of storing all synaptic data values in one long array the synaptic state + * values are stored in multiple state vectors which can be manipulated efficiently + * in a vector based manner. + * + * For instance, suppose w holds your instance of ComplexMatris in which you have + * set_num_synapse_states(3) which makes it a connectivity matrix which reserves three + * state variables of type AurynWeight per synaptic connection. Now, decaying all elements + * of, say, state 3 by a factor "foo" is as simple as w->get_state_vector(2)->scale(foo). + * Adding two of the states for all synapses becomes + * w->get_state_vector(2)->add(w->get_state_vector(3)). + * + * Because these expressions become quickly rather lenghty it is nice to declare shortcuts + * in your plastic Connection class such as: + * AurynSynStateVector * w_val = w->get_state_vector(0); + * AurynSynStateVector * tagging_val = w->get_state_vector(1); + * AurynSynStateVector * scaffold_val = w->get_state_vector(2); + * + * You can now work with these as you are used with AurynVector or AurynStateVector instances + * w_val->saxpy(foo,tagging_val) + * */ From 04252365144de1078b48d8a670c5be828a7612f8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 16 Jun 2016 16:43:48 -0700 Subject: [PATCH 268/460] Small changes to DuplexConnection --- src/DuplexConnection.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/DuplexConnection.cpp b/src/DuplexConnection.cpp index 80799c7f..7c66d299 100644 --- a/src/DuplexConnection.cpp +++ b/src/DuplexConnection.cpp @@ -41,10 +41,6 @@ void DuplexConnection::finalize() // finalize at this level is called only for r oss << "DuplexConnection: Finalizing ..."; auryn::logger->msg(oss.str(),VERBOSE); - bkw->clear(); - if ( bkw->get_nonzero() > w->get_nonzero() ) { - bkw->resize_buffer_and_clear(w->get_nonzero()); - } compute_reverse_matrix(); } @@ -108,6 +104,7 @@ void DuplexConnection::compute_reverse_matrix( int z ) { if ( fwd->get_nonzero() <= bkw->get_datasize() ) { + auryn::logger->msg("Clearing reverse matrix..." ,VERBOSE); bkw->clear(); } else { auryn::logger->msg("Bkw buffer too small reallocating..." ,VERBOSE); From 25fa748a1771cc6d10f1533342e89f7ebceebf65 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 16 Jun 2016 16:44:06 -0700 Subject: [PATCH 269/460] Changes access level in StructuredPoissonGroup --- src/StructuredPoissonGroup.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/StructuredPoissonGroup.h b/src/StructuredPoissonGroup.h index 8a5006b1..ff0e0569 100644 --- a/src/StructuredPoissonGroup.h +++ b/src/StructuredPoissonGroup.h @@ -61,14 +61,15 @@ class StructuredPoissonGroup : public PoissonGroup std::ofstream tiserfile; AurynTime next_event; - bool stimulus_active; - int current_stimulus; - void init ( AurynFloat duration, AurynFloat mean_interval, NeuronID no , string outputfile ); public: + + bool stimulus_active; + int current_stimulus; int seedoffset; + StructuredPoissonGroup(NeuronID n, AurynFloat duration, AurynFloat interval, NeuronID stimuli = 1, AurynDouble rate=5. , string tiserfile = "stimulus.dat" ); virtual ~StructuredPoissonGroup(); From 2d3731164858c7084f3cc05840ce2fb7cd3016cd Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 17 Jun 2016 10:19:41 -0700 Subject: [PATCH 270/460] Adds more arithmetic instructions to AurynVector --- src/AurynVector.h | 52 ++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 49 insertions(+), 3 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index b20b0733..13d40593 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -130,6 +130,27 @@ namespace auryn { } } + + /*! \brief Takes each element to the n-th power. + * + * \param n the exponent */ + virtual void pow(unsigned int n) + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = std::pow(data[i],n); + } + } + + /*! \brief Takes the square root of each element + * + * */ + virtual void sqrt() + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = std::sqrt(data[i]); + } + } + /*! \brief Adds constant c to each vector element */ virtual void add(AurynFloat c) { @@ -238,11 +259,33 @@ namespace auryn { data[i] = value; } - /*! \brief Squares each element */ - void sqr() + /*! \brief Squares each element + * + * */ + virtual void sqr() + { + this->mul(this); + } + + /*! \brief Rectifies all elements + */ + void rect() { for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] = data[i]*data[i]; + if ( data[i] < 0.0 ) { + data[i] = 0.0; + } + } + } + + /*! \brief Negatively rectifies all elements + */ + void neg_rect() + { + for ( IndexType i = 0 ; i < size ; ++i ) { + if ( data[i] > 0.0 ) { + data[i] = 0.0; + } } } @@ -296,6 +339,9 @@ namespace auryn { void add(AurynVectorFloat * v); + // TODO add pow function with intrinsics _mm_pow_ps + + void mul(float a) { scale(a); }; void mul(AurynVectorFloat * v); From 8e1a69d4a95244a187d2b78368b38fdbc5bd7fc0 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 17 Jun 2016 10:20:36 -0700 Subject: [PATCH 271/460] Changes access for members of StimulusGroup --- src/StimulusGroup.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index 88b15ac6..3cc772c2 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -87,9 +87,6 @@ class StimulusGroup : public SpikingGroup static boost::uniform_01 order_die; - /*! current stimulus index */ - unsigned int cur_stim_index ; - bool stimulus_active; /*! \brief next stimulus time requiring change in rates */ AurynTime next_action_time ; @@ -121,6 +118,17 @@ class StimulusGroup : public SpikingGroup AurynFloat curscale; public: + /*! \brief Current stimulus index + * + * Do not write this variable. */ + int cur_stim_index ; + + /*! \brief Current stimulus active + * + * Only read this state. */ + bool stimulus_active; + + /*! \brief Vector containing all the stimuli. */ std::vector stimuli; From 1d390434d6577250055bae61abce8c9fe721434f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 17 Jun 2016 12:48:43 -0700 Subject: [PATCH 272/460] Adds set_target function to Connection --- src/Connection.cpp | 6 ++++++ src/Connection.h | 3 +++ 2 files changed, 9 insertions(+) diff --git a/src/Connection.cpp b/src/Connection.cpp index f4ed3077..383a239c 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -148,6 +148,12 @@ void Connection::set_receptor(string state_name) set_receptor(dst->get_state_vector(state_name)); } +void Connection::set_target(string state_name) +{ + set_receptor(state_name); +} + + void Connection::set_transmitter(string state_name) { set_receptor(state_name); diff --git a/src/Connection.h b/src/Connection.h index c86342a3..601722ec 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -172,6 +172,9 @@ class Connection /*! \brief Sets target state of this connection directly the name of a state vector */ void set_receptor(string state_name); + /*! \brief Same as set_receptor */ + void set_target(string state_name); + /*! \brief Same as set_receptor, but DEPRECATED */ void set_transmitter(string state_name); From 0d0e54a99ab15db845a968f8e3ab638c7a6951b9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 11:44:33 -0700 Subject: [PATCH 273/460] Silences progressbar in "fast" sim_coba_benchmark --- examples/sim_coba_benchmark.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/sim_coba_benchmark.cpp b/examples/sim_coba_benchmark.cpp index 7182887e..3f870208 100644 --- a/examples/sim_coba_benchmark.cpp +++ b/examples/sim_coba_benchmark.cpp @@ -127,6 +127,8 @@ int main(int ac,char *av[]) { logger = new Logger(logfile.str(),world.rank()); sys = new System(&world); + + if ( fast ) sys->quiet = true; // END Global stuff logger->msg("Setting up neuron groups ...",PROGRESS,true); From 733aacaf7999c0c0f452c3f6647172add8b89850 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 11:59:24 -0700 Subject: [PATCH 274/460] Performance optimizations --- src/AurynVector.h | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 13d40593..40506395 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -109,7 +109,7 @@ namespace auryn { } /*! \brief Set all elements to value v. */ - virtual void set_all(T v) + void set_all(T v) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] = v; @@ -117,13 +117,13 @@ namespace auryn { } /*! \brief Set all elements to zero. */ - virtual void set_zero() + void set_zero() { set_all(0.0); } /*! \brief Scales all vector elements by a. */ - virtual void scale(AurynFloat a) + void scale(AurynFloat a) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] *= a; @@ -134,7 +134,7 @@ namespace auryn { /*! \brief Takes each element to the n-th power. * * \param n the exponent */ - virtual void pow(unsigned int n) + void pow(unsigned int n) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] = std::pow(data[i],n); @@ -144,7 +144,7 @@ namespace auryn { /*! \brief Takes the square root of each element * * */ - virtual void sqrt() + void sqrt() { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] = std::sqrt(data[i]); @@ -152,7 +152,7 @@ namespace auryn { } /*! \brief Adds constant c to each vector element */ - virtual void add(AurynFloat c) + void add(AurynFloat c) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] += c; @@ -160,7 +160,7 @@ namespace auryn { } /*! \brief Adds the value c to specific vector element i */ - virtual void add_specific(IndexType i, AurynFloat c) + void add_specific(IndexType i, AurynFloat c) { check_size(i); data[i] += c; @@ -169,7 +169,7 @@ namespace auryn { /*! \brief Adds a vector v to the vector * * No checking of the dimensions match! */ - virtual void add(AurynVector * v) + void add(AurynVector * v) { check_size(v); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -178,13 +178,13 @@ namespace auryn { } /*! \brief Subtract constant c to each vector element */ - virtual void sub(AurynFloat c) + void sub(AurynFloat c) { add(-c); } /*! \brief Elementwise subtraction */ - virtual void sub(AurynVector * v) + void sub(AurynVector * v) { check_size(v); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -193,7 +193,7 @@ namespace auryn { } /*! \brief Multiply all vector elements by constant */ - virtual void mul(AurynFloat a) + void mul(AurynFloat a) { scale(a); } @@ -201,7 +201,7 @@ namespace auryn { /*! \brief Element-wise vector multiply * * */ - virtual void mul(AurynVector * v) + void mul(AurynVector * v) { check_size(v); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -212,12 +212,14 @@ namespace auryn { /*! \brief Copies vector v * * */ - virtual void copy(AurynVector * v) + void copy(AurynVector * v) { check_size(v); - for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] = v->data[i]; - } + // for ( IndexType i = 0 ; i < size ; ++i ) { + // data[i] = v->data[i]; + // } + std::copy(v->data, v->data+v->size, data); + // std::memcpy(data, v->data, v->size*sizeof(T)); } @@ -227,7 +229,7 @@ namespace auryn { * \param a The scaling factor for the additional vector * \param x The additional vector to add * */ - virtual void saxpy(AurynFloat a, AurynVector * x) + void saxpy(AurynFloat a, AurynVector * x) { check_size(x); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -262,7 +264,7 @@ namespace auryn { /*! \brief Squares each element * * */ - virtual void sqr() + void sqr() { this->mul(this); } From 450727276024c4ded914efcb6214add2f5f6a8c9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 12:24:21 -0700 Subject: [PATCH 275/460] Adds profiling build --- build/profiling/bootstrap.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 build/profiling/bootstrap.sh diff --git a/build/profiling/bootstrap.sh b/build/profiling/bootstrap.sh new file mode 100755 index 00000000..09b0219a --- /dev/null +++ b/build/profiling/bootstrap.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cmake ../../ -DCMAKE_CXX_FLAGS=-pg -DCMAKE_BUILD_TYPE=Release && make + From 736d0f8191c45e1d59f29173b1e8a342425173dc Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 12:38:09 -0700 Subject: [PATCH 276/460] Performance optimizations in AurynVector --- src/AurynVector.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 40506395..7fa4edfb 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -123,7 +123,7 @@ namespace auryn { } /*! \brief Scales all vector elements by a. */ - void scale(AurynFloat a) + void scale(const AurynFloat a) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] *= a; @@ -134,7 +134,7 @@ namespace auryn { /*! \brief Takes each element to the n-th power. * * \param n the exponent */ - void pow(unsigned int n) + void pow(const unsigned int n) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] = std::pow(data[i],n); @@ -152,7 +152,7 @@ namespace auryn { } /*! \brief Adds constant c to each vector element */ - void add(AurynFloat c) + void add(const AurynFloat c) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] += c; @@ -160,7 +160,7 @@ namespace auryn { } /*! \brief Adds the value c to specific vector element i */ - void add_specific(IndexType i, AurynFloat c) + void add_specific(const IndexType i, const AurynFloat c) { check_size(i); data[i] += c; @@ -178,7 +178,7 @@ namespace auryn { } /*! \brief Subtract constant c to each vector element */ - void sub(AurynFloat c) + void sub(const AurynFloat c) { add(-c); } @@ -193,7 +193,7 @@ namespace auryn { } /*! \brief Multiply all vector elements by constant */ - void mul(AurynFloat a) + void mul(const AurynFloat a) { scale(a); } @@ -229,7 +229,7 @@ namespace auryn { * \param a The scaling factor for the additional vector * \param x The additional vector to add * */ - void saxpy(AurynFloat a, AurynVector * x) + void saxpy(const AurynFloat a, AurynVector * x) { check_size(x); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -334,17 +334,17 @@ namespace auryn { { }; - void scale(float a); - void saxpy(float a, AurynVectorFloat * x); - void clip(float min, float max); - void add(float c); + void scale(const float a); + void saxpy(const float a, AurynVectorFloat * x); + void clip(const float min, const float max); + void add(const float c); void add(AurynVectorFloat * v); // TODO add pow function with intrinsics _mm_pow_ps - void mul(float a) { scale(a); }; + void mul(const float a) { scale(a); }; void mul(AurynVectorFloat * v); }; From c56fa367f61eeb433322628da4a7c848e5ddf9ef Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 12:38:39 -0700 Subject: [PATCH 277/460] Performance optimizations in Connection --- src/Connection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Connection.h b/src/Connection.h index 601722ec..02f5aebc 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -270,7 +270,7 @@ BOOST_SERIALIZATION_ASSUME_ABSTRACT(Connection) inline void Connection::transmit(NeuronID id, AurynWeight amount) { - NeuronID localid = dst->global2rank(id); + const NeuronID localid = dst->global2rank(id); target_state_vector->data[localid]+=amount; } } From 0644d7e961f8a0f3491ddaff74b658a4997ab5d7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 12:38:54 -0700 Subject: [PATCH 278/460] Performance optimizations in SparseConnection --- src/SparseConnection.cpp | 10 ---------- src/SparseConnection.h | 8 ++++++-- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 8d2c756f..249b96d0 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -193,21 +193,11 @@ void SparseConnection::set_min_weight(AurynWeight minimum_weight) wmin = minimum_weight; } -AurynWeight SparseConnection::get_min_weight() -{ - return wmin; -} - void SparseConnection::set_max_weight(AurynWeight maximum_weight) { wmax = maximum_weight; } -AurynWeight SparseConnection::get_max_weight() -{ - return wmax; -} - void SparseConnection::random_data(AurynWeight mean, AurynWeight sigma) { std::stringstream oss; diff --git a/src/SparseConnection.h b/src/SparseConnection.h index 2f44fdfb..6ef7d527 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -356,13 +356,17 @@ class SparseConnection : public Connection virtual void set_min_weight(AurynWeight minimum_weight); /*! \brief Gets minimum weight (for plastic connections). */ - AurynWeight get_min_weight(); + AurynWeight get_min_weight() { + return wmin; + }; /*! \brief Sets maximum weight (for plastic connections). */ virtual void set_max_weight(AurynWeight maximum_weight); /*! \brief Gets maximum weight (for plastic connections). */ - AurynWeight get_max_weight(); + AurynWeight get_max_weight() { + return wmax; + }; /*! \brief Returns a vector of ConnectionsID of a block specified by the arguments */ std::vector get_block(NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col); From f85bfd55c2e2faca4bda6944973ca0fea978169f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 12:52:32 -0700 Subject: [PATCH 279/460] Performance optimizations in ComplexMatrix --- src/ComplexMatrix.h | 79 +++++++++++++++++++++++++++------------------ 1 file changed, 48 insertions(+), 31 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 99f40bf6..ed3d82b4 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -205,7 +205,7 @@ class ComplexMatrix * \param j col index where to insert element * \param value to insert * \throw AurynMatrixBufferException */ - void push_back(NeuronID i, NeuronID j, T value); + void push_back(const NeuronID i, const NeuronID j, const T value); /*! \brief Copies complex matrix mat */ void copy(ComplexMatrix * mat); @@ -226,30 +226,44 @@ class ComplexMatrix /*! Gets the matching data entry for a given index i and state z*/ T get_data(AurynLong i, StateID z=0); - /*! Gets the matching data ptr for a given index i and state z*/ - T * get_data_ptr(AurynLong data_index, StateID z=0); - /*! Gets the matching data ptr for a given index pointer and state z*/ - T * get_data_ptr(const NeuronID * ind_ptr, StateID z=0); - /*! Gets the matching data value for a given index pointer and state z*/ + + /*! \brief Gets the matching data ptr for a given index i and state z*/ + T * get_data_ptr(const AurynLong data_index, const StateID z=0); + /*! \brief Gets the matching data ptr for a given index pointer and state z*/ + T * get_data_ptr(const NeuronID * ind_ptr, const StateID z=0); + + /*! \brief Gets the matching data value for a given index pointer and state z*/ T get_data(const NeuronID * ind_ptr, StateID z=0); + + /*! \brief Pads non-existing elements for the remaining elements to a matrix + * + * This function has to be called after filling the matrix with elements e.g. random sparse + * and before using it in a simulation. It is typically called by the finalize function in + * SparseConnection. */ void fill_zeros(); + + + /*! \brief Returns the fill level of the matrix element buffer + * + * A fill level of 1.0 corresponds to the sparse matrix element buffer + * being full.*/ AurynDouble get_fill_level(); /*! \brief Value of synaptic state variable i,j,z returns zero if the element is zero or does not exist. */ - T get(NeuronID i, NeuronID j, NeuronID z=0); + T get(const NeuronID i, const NeuronID j, const NeuronID z=0); /*! \brief Returns true if the matrix element exists. */ - bool exists(NeuronID i, NeuronID j, StateID z=0); + bool exists(const NeuronID i, const NeuronID j, const StateID z=0); /*! \brief Returns the pointer to a particular element */ - T * get_ptr(NeuronID i, NeuronID j, StateID z=0); + T * get_ptr(const NeuronID i, const NeuronID j, const StateID z=0); /*! \brief Returns the pointer to a particular element given * its position in the data array. */ - T * get_ptr(AurynLong data_index); + T * get_ptr(const AurynLong data_index); /*! Returns data index to a particular element specifed by i and j */ - AurynLong get_data_index(NeuronID i, NeuronID j); + AurynLong get_data_index(const NeuronID i, const NeuronID j); /*! \brief Returns data index to a particular element specifed by an index pointer */ AurynLong get_data_index(const NeuronID * ind_ptr); /*! \brief Returns data index to a particular element specifed by a data pointer */ @@ -258,7 +272,7 @@ class ComplexMatrix /* Methods concerning synaptic state vectors. */ /*!\brief Sets number of synaptic states (z-value) */ - void set_num_synapse_states(StateID zsize); + void set_num_synapse_states(const StateID zsize); /*!\brief Returns number of synaptic states (z-value) */ StateID get_num_synaptic_states(); /*!\brief Returns number of synaptic states (z-value) */ @@ -267,13 +281,13 @@ class ComplexMatrix StateID get_num_synapse_states(); /*! \brief Gets pointer for the first element of a given synaptic state vector */ - T * get_state_begin(StateID z=0); + T * get_state_begin(const StateID z=0); /*! \brief Gets pointer for the element behind the last of a given synaptic state vector */ - T * get_state_end(StateID z=0); + T * get_state_end(const StateID z=0); /*! \brief Sets all values in state x to value. */ - void state_set_all(T * x, T value); + void state_set_all(T * x, const T value); /*! \brief Computes a*x + y and stores result in y */ - void state_saxpy(T a, T * x, T * y); + void state_saxpy(const T a, T * x, T * y); /*! \brief Multiplies x and y and stores result in y */ void state_mul(T * x, T * y); /*! \brief Adds x and y and stores result in y */ @@ -283,31 +297,32 @@ class ComplexMatrix /*! \brief Computes x-y and stores result in res */ void state_sub(T * x, T * y, T * res); /*! \brief Scale state x by a. */ - void state_scale(T a, T * x); + void state_scale(const T a, T * x); /*! \brief Adds constant a to all values in x */ - void state_add_const(T a, T * x); + void state_add_const(const T a, T * x); /*! \brief Clips state values to interval [a,b] */ - void state_clip(T * x, T a, T b); + void state_clip(T * x, const T a, const T b); /*! \brief Get data pointer for that state */ T * state_get_data_ptr(T * x, NeuronID i); - void add_value(AurynLong data_index, T value); - NeuronID get_colind(AurynLong data_index); - bool set(NeuronID i, NeuronID j, T value); + void add_value(const AurynLong data_index, T value); + NeuronID get_colind(const AurynLong data_index); + + bool set(const NeuronID i, const NeuronID j, T value); /*! \brief Sets all non-zero elements to value */ - void set_all(T value); + void set_all(const T value); /*! \brief Sets all non-zero elements in row i to value */ - void set_row(NeuronID i, T value); + void set_row(const NeuronID i, const T value); /*! \brief Scales all non-zero elements in row i to value */ - void scale_row(NeuronID i, T value); + void scale_row(const NeuronID i, const T value); /*! \brief Scales all non-zero elements */ - void scale_all(T value); + void scale_all(const T value); /*! \brief Sets all non-zero elements in col j to value. Due to ordering this is slow and the use of this functions is discouraged. */ - void set_col(NeuronID j, T value); + void set_col(const NeuronID j, const T value); /*! \brief Scales all non-zero elements in col j to value. Due to ordering this is slow and the use of this functions is discouraged. */ - void scale_col(NeuronID j, T value); - double sum_col(NeuronID j); + void scale_col(const NeuronID j, const T value); + double sum_col(const NeuronID j); /*! \brief Returns datasize: number of possible entries */ AurynLong get_datasize(); /*! \brief Same as datasize : number of possible entries */ @@ -318,7 +333,9 @@ class ComplexMatrix AurynLong get_nonzero(); /*! \brief stdout dump of all elements -- for testing only. */ void print(); + /*! \brief Return mean value of elements for the first complex state (z=0). */ double mean(); + NeuronID * get_ind_begin(); NeuronID * get_row_begin(NeuronID i); AurynLong get_row_begin_index(NeuronID i); @@ -332,11 +349,11 @@ class ComplexMatrix /*! \brief Returns pointer to data value corresponding to the element behind the last nonzero element. */ T * get_data_end(const StateID z=0); /*! \brief Returns the data value to an item that is i-th in the colindex array */ - T get_value(AurynLong data_index); + T get_value(const AurynLong data_index); /*! \brief Returns the data value to an item that for pointer r pointing to the respective element in the index array */ T get_value(NeuronID * r); /*! \brief Returns pointer to the the data value to an item that is i-th in the colindex array */ - T * get_value_ptr(NeuronID i); + T * get_value_ptr(const NeuronID i); /*! \brief Returns the pointer to the data value to an item that for pointer r pointing to the respective element in the index array */ T * get_value_ptr(NeuronID * r); NeuronID get_data_offset(NeuronID * r); From 75b66300e528e6a155c1c5e5bfabf35a9df8cf87 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 13:51:04 -0700 Subject: [PATCH 280/460] Cleans up code --- src/AurynVector.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 7fa4edfb..d12f26d6 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -215,11 +215,7 @@ namespace auryn { void copy(AurynVector * v) { check_size(v); - // for ( IndexType i = 0 ; i < size ; ++i ) { - // data[i] = v->data[i]; - // } std::copy(v->data, v->data+v->size, data); - // std::memcpy(data, v->data, v->size*sizeof(T)); } From 4fbbd36310a684fe30a3818db35883c04ef94e0f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 13:55:24 -0700 Subject: [PATCH 281/460] Adds copy constructor --- src/AurynVector.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/AurynVector.h b/src/AurynVector.h index d12f26d6..25abd11f 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -92,6 +92,17 @@ namespace auryn { set_zero(); // let's give it a defined initial value } + /*! \brief Copy constructor + * + * Constructs vector as a copy of argument vector. */ + AurynVector(AurynVector * vec) + { + size = vec->size; + data = new T [size]; + copy(vec); + } + + /*! \brief Default destructor */ virtual ~AurynVector() { From 930648932c77d80e2774461c5f292f6857806d02 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 14:11:30 -0700 Subject: [PATCH 282/460] Unifies legacy codebase with AurynVector --- src/auryn_definitions.cpp | 195 ++++---------------------------------- src/auryn_definitions.h | 12 +-- 2 files changed, 23 insertions(+), 184 deletions(-) diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index 7bc56ab9..b21f5173 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -73,205 +73,46 @@ inline void sse_store( float * i, __m128 d ) void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = a->data[0:a->size:1] * b->data[0:b->size:1]; - #else - float * bd = b->data; - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( i ); - __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_mul_ps(chunk_a, chunk_b); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] *= b->data[i]; - } -#endif + a->mul(b); } void auryn_vector_float_add_constant( auryn_vector_float * a, const float b ) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = b + a->data[0:a->size:1]; - #else - const __m128 scalar = _mm_set1_ps(b); - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - // _mm_prefetch((i + SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS), _MM_HINT_NTA); - __m128 chunk = sse_load( i ); - __m128 result = _mm_add_ps(chunk, scalar); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] += b; - } -#endif + a->add(b); } -void auryn_vector_float_scale( const float a, const auryn_vector_float * b ) +void auryn_vector_float_scale( const float a, auryn_vector_float * b ) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - b->data[0:b->size:1] = a * b->data[0:b->size:1]; - #else - const __m128 scalar = _mm_set1_ps(a); - for ( float * i = b->data ; i != b->data+b->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( i ); - __m128 result = _mm_mul_ps(chunk, scalar); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < b->size ; ++i ) { - b->data[i] *= a; - } -#endif /* CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY */ + b->scale(a); } -void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ) +void auryn_vector_float_saxpy( const float a, auryn_vector_float * x, auryn_vector_float * y ) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - y->data[0:y->size:1] = a * x->data[0:x->size:1] + y->data[0:y->size:1]; - #else - float * xp = x->data; - const __m128 alpha = _mm_set1_ps(a); - for ( float * i = y->data ; i < y->data+y->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( xp ); xp += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_mul_ps( alpha, chunk ); - - chunk = sse_load( i ); - result = _mm_add_ps( result, chunk ); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < y->size ; ++i ) { - y->data[i] += a * x->data[i]; - } -#endif + y->saxpy(a,x); } void auryn_vector_float_add( auryn_vector_float * a, auryn_vector_float * b) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = a->data[0:a->size:1] + b->data[0:b->size:1]; - #else - float * bd = b->data; - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( i ); - __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_add_ps(chunk_a, chunk_b); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] += b->data[i]; - } -#endif + a->add(b); } void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - a->data[0:a->size:1] = a->data[0:a->size:1] - b->data[0:b->size:1]; - #else - float * bd = b->data; - for ( float * i = a->data ; i != a->data+a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( i ); - __m128 chunk_b = sse_load( bd ); bd+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; - __m128 result = _mm_sub_ps(chunk_a, chunk_b); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - a->data[i] -= b->data[i]; - } -#endif + a->sub(b); } void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - for ( NeuronID i = 0 ; i < a->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk_a = sse_load( a->data+i ); - __m128 chunk_b = sse_load( b->data+i ); - __m128 result = _mm_sub_ps(chunk_a, chunk_b); - sse_store( r->data+i, result ); - } -#else - for ( NeuronID i = 0 ; i < a->size ; ++i ) { - r->data[i] = a->data[i] - b->data[i]; - } -#endif + r->copy(a); + r->sub(b); } void auryn_vector_float_clip( auryn_vector_float * v, const float a, const float b ) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - for ( NeuronID i = 0 ; i < v->size ; ++i ) { - if ( v->data[i] < a ) { - v->data[i] = a; - } else - if ( v->data[i] > b ) - v->data[i] = b; - } - #else - const __m128 lo = _mm_set1_ps(a); - const __m128 hi = _mm_set1_ps(b); - for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( i ); - __m128 result = _mm_min_ps(chunk, hi); - result = _mm_max_ps(result, lo); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - for ( NeuronID i = 0 ; i < v->size ; ++i ) { - if ( v->data[i] < a ) { - v->data[i] = a; - } else - if ( v->data[i] > b ) - v->data[i] = b; - } -#endif + v->clip(a, b); } void auryn_vector_float_clip( auryn_vector_float * v, const float a ) { -#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY - #ifdef CODE_ACTIVATE_CILK_INSTRUCTIONS - auryn_vector_float_clip( v, a, 1e16 ); - #else - const __m128 lo = _mm_set1_ps(a); - const __m128 hi = _mm_set1_ps(0.); - for ( float * i = v->data ; i != v->data+v->size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) - { - __m128 chunk = sse_load( i ); - __m128 result = _mm_min_ps(chunk, hi); - result = _mm_max_ps(result, lo); - sse_store( i, result ); - } - #endif /* CODE_ACTIVATE_CILK_INSTRUCTIONS */ -#else - auryn_vector_float_clip( v, a, 1e16 ); -#endif + v->clip(a,0.0); } auryn_vector_float * auryn_vector_float_alloc( const NeuronID n ) { @@ -290,11 +131,11 @@ void auryn_vector_float_set_zero ( auryn_vector_float * v ) { v->set_zero(); } -AurynFloat auryn_vector_float_get ( const auryn_vector_float * v, const NeuronID i ) { +AurynFloat auryn_vector_float_get ( auryn_vector_float * v, const NeuronID i ) { return v->data[i]; } -AurynFloat * auryn_vector_float_ptr ( const auryn_vector_float * v, const NeuronID i ) { +AurynFloat * auryn_vector_float_ptr ( auryn_vector_float * v, const NeuronID i ) { return v->data+i; } @@ -303,9 +144,7 @@ void auryn_vector_float_set ( auryn_vector_float * v, const NeuronID i, AurynFlo } void auryn_vector_float_copy ( auryn_vector_float * src, auryn_vector_float * dst ) { - // TODO make this a fast memcpy - for ( NeuronID i = 0 ; i < dst->size ; ++i ) - dst->data[i] = src->data[i]; + dst->copy(src); } @@ -325,11 +164,11 @@ void auryn_vector_ushort_set_zero ( auryn_vector_ushort * v ) { v->set_zero(); } -unsigned short auryn_vector_ushort_get ( const auryn_vector_ushort * v, const NeuronID i ) { +unsigned short auryn_vector_ushort_get ( auryn_vector_ushort * v, const NeuronID i ) { return v->data[i]; } -unsigned short * auryn_vector_ushort_ptr ( const auryn_vector_ushort * v, const NeuronID i ) { +unsigned short * auryn_vector_ushort_ptr ( auryn_vector_ushort * v, const NeuronID i ) { return v->data+i; } diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 703808b0..04b8525c 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -357,13 +357,13 @@ namespace auryn { void auryn_vector_float_copy (auryn_vector_float * src, auryn_vector_float * dst ); /*! Auryn vector getter */ - AurynFloat auryn_vector_float_get (const auryn_vector_float * v, const NeuronID i); + AurynFloat auryn_vector_float_get (auryn_vector_float * v, const NeuronID i); /*! Auryn vector setter */ void auryn_vector_float_set (auryn_vector_float * v, const NeuronID i, AurynFloat x); /*! Auryn vector gets pointer to designed element. */ - AurynFloat * auryn_vector_float_ptr (const auryn_vector_float * v, const NeuronID i); + AurynFloat * auryn_vector_float_ptr (auryn_vector_float * v, const NeuronID i); /*! Internal version of auryn_vector_float_mul of gsl operations */ void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b); @@ -376,9 +376,9 @@ namespace auryn { /*! Computes y := a*x+y * * Internal SAXPY version */ - void auryn_vector_float_saxpy( const float a, const auryn_vector_float * x, const auryn_vector_float * y ); + void auryn_vector_float_saxpy( const float a, auryn_vector_float * x, auryn_vector_float * y ); /*! Internal version to scale a vector with a constant b */ - void auryn_vector_float_scale(const float a, const auryn_vector_float * b ); + void auryn_vector_float_scale(const float a, auryn_vector_float * b ); /*! Internal version to clip all the elements of a vector between [a:b] */ void auryn_vector_float_clip(auryn_vector_float * v, const float a , const float b ); @@ -416,11 +416,11 @@ namespace auryn { * performed for performance reasons. */ void auryn_vector_ushort_copy (auryn_vector_ushort * src, auryn_vector_ushort * dst ); /*! Auryn vector getter */ - unsigned short auryn_vector_ushort_get (const auryn_vector_ushort * v, const NeuronID i); + unsigned short auryn_vector_ushort_get (auryn_vector_ushort * v, const NeuronID i); /*! Auryn vector setter */ void auryn_vector_ushort_set (auryn_vector_ushort * v, const NeuronID i, unsigned short x); /*! Auryn vector gets pointer to designed element. */ - unsigned short * auryn_vector_ushort_ptr (const auryn_vector_ushort * v, const NeuronID i); + unsigned short * auryn_vector_ushort_ptr (auryn_vector_ushort * v, const NeuronID i); } // namespace From 533dce99b5017401207978745f097418312d9d59 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 15:59:01 -0700 Subject: [PATCH 283/460] Cleans up code --- src/IFGroup.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index b26a2fd4..14cf8699 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -86,34 +86,23 @@ IFGroup::~IFGroup() void IFGroup::integrate_linear_nmda_synapses() { // decay of ampa and gaba channel, i.e. multiply by exp(-dt/tau) - // auryn_vector_float_scale(scale_ampa,g_ampa); g_ampa->scale(scale_ampa); - // auryn_vector_float_scale(scale_gaba,g_gaba); g_gaba->scale(scale_gaba); // compute dg_nmda = (g_ampa-g_nmda)*dt/tau_nmda and add to g_nmda AurynFloat mul_nmda = dt/tau_nmda; - // auryn_vector_float_saxpy(mul_nmda,g_ampa,g_nmda); - // auryn_vector_float_saxpy(-mul_nmda,g_nmda,g_nmda); g_nmda->saxpy(mul_nmda, g_ampa); g_nmda->saxpy(-mul_nmda, g_nmda); // excitatory - // auryn_vector_float_copy(g_ampa,t_exc); - // auryn_vector_float_scale(-A_ampa,t_exc); t_exc->copy(g_ampa); t_exc->scale(-A_ampa); - // auryn_vector_float_saxpy(-A_nmda,g_nmda,t_exc); t_exc->saxpy(-A_nmda,g_nmda); - // auryn_vector_float_mul(t_exc,mem); t_exc->mul(mem); // inhibitory - // auryn_vector_float_copy(mem,t_inh); t_inh->copy(mem); - // auryn_vector_float_add_constant(t_inh,-e_rev); t_inh->add(-e_rev); - // auryn_vector_float_mul(t_inh,g_gaba); t_inh->mul(g_gaba); } @@ -124,7 +113,6 @@ void IFGroup::integrate_linear_nmda_synapses() void IFGroup::integrate_membrane() { // moving threshold - // auryn_vector_float_scale(scale_thr,thr); thr->scale(scale_thr); // leak @@ -140,7 +128,6 @@ void IFGroup::integrate_membrane() void IFGroup::check_thresholds() { - // auryn_vector_float_clip( mem, e_rev ); mem->clip( e_rev, 0.0 ); AurynState * thr_ptr = thr->data; From 29aaea1775b6192c69aa7c7c9396ddbc08b12b35 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 15:59:45 -0700 Subject: [PATCH 284/460] Inlines get_data_ptr functions --- src/ComplexMatrix.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index ed3d82b4..be7ee3ba 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -360,19 +360,19 @@ class ComplexMatrix }; template -T * ComplexMatrix::get_data_ptr(const AurynLong data_index, const StateID z) +inline T * ComplexMatrix::get_data_ptr(const AurynLong data_index, const StateID z) { return statevectors[z]->data+data_index; } template -T ComplexMatrix::get_data(const AurynLong i, const StateID z) +inline T ComplexMatrix::get_data(const AurynLong i, const StateID z) { return *get_data_ptr(i,z); } template -T * ComplexMatrix::get_data_ptr(const NeuronID * ind_ptr, const StateID z) +inline T * ComplexMatrix::get_data_ptr(const NeuronID * ind_ptr, const StateID z) { size_t ptr_offset = ind_ptr-get_ind_begin(); return statevectors[z]->data+ptr_offset; From abfe9323d21ae0c99a92580378a47e74c939bf13 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 16:00:19 -0700 Subject: [PATCH 285/460] Adds some comments and TODO tags --- src/SimpleMatrix.h | 40 ++++++++++++++++++++++++++++------------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/src/SimpleMatrix.h b/src/SimpleMatrix.h index d97326bf..1f55c2a6 100644 --- a/src/SimpleMatrix.h +++ b/src/SimpleMatrix.h @@ -113,7 +113,7 @@ class SimpleMatrix /*! Resize buffer * Allocates a new buffer of size and copies the * old buffers before freeing the memory */ - void resize_buffer(AurynLong size); + void resize_buffer(AurynLong newsize); /*! Resizes buffer and clears the matrix. This saves * to copy all the data. */ @@ -129,14 +129,14 @@ class SimpleMatrix * \param j col index where to insert element * \param value to insert * \throw AurynMatrixBufferException */ - void push_back(NeuronID i, NeuronID j, T value); + void push_back(const NeuronID i, const NeuronID j, const T value); void copy(SimpleMatrix * mat); void set_data(AurynLong i, T value); void scale_data(AurynLong i, T value); /*! Gets the matching data ptr for a given index i*/ - T * get_data_ptr(AurynLong i); + T * get_data_ptr(const AurynLong i); /*! Gets the matching data entry for a given index i*/ - T get_data(AurynLong i); + T get_data(const AurynLong i); /*! Gets the matching data ptr for a given index pointer */ T * get_data_ptr(const NeuronID * ind_ptr); /*! Gets the matching data value for a given index pointer */ @@ -256,12 +256,17 @@ void SimpleMatrix::init(NeuronID m, NeuronID n, AurynLong size) } template -void SimpleMatrix::resize_buffer(AurynLong size) +void SimpleMatrix::resize_buffer(AurynLong newsize) { - datasize = size; + AurynLong oldsize = datasize; + AurynLong copysize = std::min(oldsize,newsize); + + std::cout << " copy colinds " << std::endl; - NeuronID * new_colinds = new NeuronID [datasize]; - std::copy(colinds, colinds+get_nonzero(), new_colinds); + NeuronID * new_colinds = new NeuronID [newsize]; + std::copy(colinds, colinds+copysize, new_colinds); + + std::cout << " update rowptrs " << std::endl; // update rowpointers ptrdiff_t offset = new_colinds-colinds; @@ -269,20 +274,31 @@ void SimpleMatrix::resize_buffer(AurynLong size) rowptrs[i] += offset; } + std::cout << " delete old colinds " << std::endl; + // FIXME I get regular crashes in this line: + // invalid pointer: 0x0000000001d954c0 *** delete [] colinds; + + std::cout << " replace colinds " << std::endl; colinds = new_colinds; - T * new_coldata = new T [datasize]; - std::copy(coldata, coldata+get_nonzero(), new_coldata); + std::cout << " create new data array " << std::endl; + T * new_coldata = new T [newsize]; + std::copy(coldata, coldata+copysize, new_coldata); delete [] coldata; coldata = new_coldata; + + datasize = newsize; + std::cout << " done " << std::endl; } template void SimpleMatrix::resize_buffer_and_clear(AurynLong size) { - free(); - init(m_rows, n_cols, size); + // free(); + // init(m_rows, n_cols, size); + resize_buffer(size); + clear(); } template From f90eab5ab4788e265154a51fe36643a81eafb38b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 16:21:51 -0700 Subject: [PATCH 286/460] Cleans up code --- src/auryn_definitions.cpp | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index b21f5173..18a8b5cd 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -53,24 +53,6 @@ NeuronID calculate_vector_size(NeuronID i) } -inline __m128 sse_load( float * i ) -{ -#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS - return _mm_load_ps( i ); -#else - return _mm_loadu_ps( i ); -#endif -} - -inline void sse_store( float * i, __m128 d ) -{ -#ifdef CODE_ALIGNED_SIMD_INSTRUCTIONS - _mm_store_ps( i, d ); -#else - _mm_storeu_ps( i, d ); -#endif -} - void auryn_vector_float_mul( auryn_vector_float * a, auryn_vector_float * b) { a->mul(b); From 104a6eb8561df738dc1473ff7db9c61cc8f730bb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 16:57:42 -0700 Subject: [PATCH 287/460] Adds sum and diff functions to AurynVector --- src/AurynVector.cpp | 60 +++++++++++++++++++++++++++++++++++++++++++++ src/AurynVector.h | 51 +++++++++++++++++++++++++++++++++++++- 2 files changed, 110 insertions(+), 1 deletion(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 115b2e95..dfd09629 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -214,3 +214,63 @@ void AurynVectorFloat::add(AurynVectorFloat * v) } #endif } + +void AurynVectorFloat::sum(AurynVectorFloat * a, AurynVectorFloat * b) +{ + check_size(a); + check_size(b); +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + float * ea = a->data; + float * eb = b->data; + for ( float * i = data ; i != data+size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( ea ); ea+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 chunk_b = sse_load( eb ); eb+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_add_ps(chunk_a, chunk_b); + sse_store( i, result ); + } +#else + AurynVector::sum(a,b); +#endif +} + +void AurynVectorFloat::sum(AurynVectorFloat * a, const float b) +{ + check_size(a); +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + float * ea = a->data; + const __m128 scalar = _mm_set1_ps(b); + for ( float * i = data ; i != data+size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( ea ); ea+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_add_ps(chunk_a, scalar); + sse_store( i, result ); + } +#else + AurynVector::sum(a,b); +#endif +} + +void AurynVectorFloat::diff(AurynVectorFloat * a, AurynVectorFloat * b) +{ + check_size(a); + check_size(b); +#ifdef CODE_USE_SIMD_INSTRUCTIONS_EXPLICITLY + float * ea = a->data; + float * eb = b->data; + for ( float * i = data ; i != data+size ; i += SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS ) + { + __m128 chunk_a = sse_load( ea ); ea+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 chunk_b = sse_load( eb ); eb+=SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; + __m128 result = _mm_sub_ps(chunk_a, chunk_b); + sse_store( i, result ); + } +#else + AurynVector::diff(a,b); +#endif +} + +void AurynVectorFloat::diff(AurynVectorFloat * a, const float b) +{ + sum(a,-b); +} diff --git a/src/AurynVector.h b/src/AurynVector.h index 25abd11f..64d8fa4e 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -220,13 +220,58 @@ namespace auryn { } } + /*! \brief Computes the sum a+b and stores the result in this instance + * + * */ + void sum(AurynVector * a, AurynVector * b) + { + check_size(a); + check_size(b); + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = a->data[i]+b->data[i]; + } + } + + /*! \brief Computes the sum a+b and stores the result in this instance + * + * */ + void sum(AurynVector * a, const AurynState b) + { + check_size(a); + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = a->data[i]+b; + } + } + + /*! \brief Computes the difference a-b and stores the result in this instance + * + * */ + void diff(AurynVector * a, AurynVector * b) + { + check_size(a); + check_size(b); + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = a->data[i]-b->data[i]; + } + } + + /*! \brief Computes the difference a-b and stores the result in this instance + * + * */ + void diff(AurynVector * a, const AurynState b) + { + sum(a,-b); + } + + /*! \brief Copies vector v * * */ void copy(AurynVector * v) { check_size(v); - std::copy(v->data, v->data+v->size, data); + // std::copy(v->data, v->data+v->size, data); + std::memcpy(data, v->data, size*sizeof(T)); } @@ -346,6 +391,10 @@ namespace auryn { void clip(const float min, const float max); void add(const float c); void add(AurynVectorFloat * v); + void sum(AurynVectorFloat * a, AurynVectorFloat * b); + void sum(AurynVectorFloat * a, const AurynState b); + void diff(AurynVectorFloat * a, AurynVectorFloat * b); + void diff(AurynVectorFloat * a, const AurynState b); // TODO add pow function with intrinsics _mm_pow_ps From 791a7a90d42bc7a36e4998ab54fc6f70ff9a1e2d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 16:57:55 -0700 Subject: [PATCH 288/460] Uses diff function in IFGroup now --- src/IFGroup.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index 14cf8699..c38d79c2 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -90,7 +90,7 @@ void IFGroup::integrate_linear_nmda_synapses() g_gaba->scale(scale_gaba); // compute dg_nmda = (g_ampa-g_nmda)*dt/tau_nmda and add to g_nmda - AurynFloat mul_nmda = dt/tau_nmda; + const AurynFloat mul_nmda = dt/tau_nmda; g_nmda->saxpy(mul_nmda, g_ampa); g_nmda->saxpy(-mul_nmda, g_nmda); @@ -101,8 +101,9 @@ void IFGroup::integrate_linear_nmda_synapses() t_exc->mul(mem); // inhibitory - t_inh->copy(mem); - t_inh->add(-e_rev); + // t_inh->copy(mem); + // t_inh->add(-e_rev); + t_inh->diff(mem,e_rev); t_inh->mul(g_gaba); } @@ -116,8 +117,9 @@ void IFGroup::integrate_membrane() thr->scale(scale_thr); // leak - t_leak->copy(mem); - t_leak->add(-e_rest); + // t_leak->copy(mem); + // t_leak->add(-e_rest); + t_leak->diff(mem,e_rest); // membrane dynamics AurynFloat mul_tau_mem = dt/tau_mem; From 338cca4af263bc3698bd25f027b5d927be4fac59 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 17:13:15 -0700 Subject: [PATCH 289/460] Changes memcpy to std::copy in AurynVector --- src/AurynVector.cpp | 1 + src/AurynVector.h | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index dfd09629..091562e0 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -274,3 +274,4 @@ void AurynVectorFloat::diff(AurynVectorFloat * a, const float b) { sum(a,-b); } + diff --git a/src/AurynVector.h b/src/AurynVector.h index 64d8fa4e..7c20c6bf 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -270,8 +270,7 @@ namespace auryn { void copy(AurynVector * v) { check_size(v); - // std::copy(v->data, v->data+v->size, data); - std::memcpy(data, v->data, size*sizeof(T)); + std::copy(v->data, v->data+v->size, data); } From 1ba10239e44015f479e308ba424997c81ef29a6e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 17:25:17 -0700 Subject: [PATCH 290/460] Adds diff function in legacy code --- src/auryn_definitions.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index 18a8b5cd..7703fd85 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -85,8 +85,7 @@ void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b) void auryn_vector_float_sub( auryn_vector_float * a, auryn_vector_float * b, auryn_vector_float * r) { - r->copy(a); - r->sub(b); + r->diff(a,b); } void auryn_vector_float_clip( auryn_vector_float * v, const float a, const float b ) { From 3c92c1755536afa90f3958dbdf851b10aee9dead Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 17:25:36 -0700 Subject: [PATCH 291/460] Inlines a bunch of functionx --- src/TripletConnection.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/TripletConnection.cpp b/src/TripletConnection.cpp index 139a0214..a384f558 100644 --- a/src/TripletConnection.cpp +++ b/src/TripletConnection.cpp @@ -131,13 +131,13 @@ void TripletConnection::set_hom_trace(AurynFloat freq) } -AurynWeight TripletConnection::get_hom(NeuronID i) +inline AurynWeight TripletConnection::get_hom(NeuronID i) { return pow(tr_post_hom->get(i),2); } -AurynWeight TripletConnection::dw_pre(NeuronID post) +inline AurynWeight TripletConnection::dw_pre(NeuronID post) { // translate post id to local id on rank: translated_spike NeuronID translated_spike = dst->global2rank(post); @@ -145,7 +145,7 @@ AurynWeight TripletConnection::dw_pre(NeuronID post) return dw; } -AurynWeight TripletConnection::dw_post(NeuronID pre, NeuronID post) +inline AurynWeight TripletConnection::dw_post(NeuronID pre, NeuronID post) { // at this point post was already translated to a local id in // the propagate_backward function below. From db70a3650f253292a5ef862fd6e6d787f04bb03e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 18:03:50 -0700 Subject: [PATCH 292/460] Cleans up code IFGroup --- src/IFGroup.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index c38d79c2..ace04dc3 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -101,8 +101,6 @@ void IFGroup::integrate_linear_nmda_synapses() t_exc->mul(mem); // inhibitory - // t_inh->copy(mem); - // t_inh->add(-e_rev); t_inh->diff(mem,e_rev); t_inh->mul(g_gaba); } @@ -117,8 +115,6 @@ void IFGroup::integrate_membrane() thr->scale(scale_thr); // leak - // t_leak->copy(mem); - // t_leak->add(-e_rest); t_leak->diff(mem,e_rest); // membrane dynamics From ceb5afd63b4bb12f6e2a832e0a61e2b82dffac0b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 18:35:57 -0700 Subject: [PATCH 293/460] Adds discretization error correction to variance --- build/release/run_benchmark.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/release/run_benchmark.sh b/build/release/run_benchmark.sh index e2a1cbab..a05194be 100755 --- a/build/release/run_benchmark.sh +++ b/build/release/run_benchmark.sh @@ -3,6 +3,7 @@ # Compile code make clean ./bootstrap.sh +sleep 2 # Benchmark parameters SIMTIME=100 @@ -23,7 +24,7 @@ function fun_benchmark() done awk '{ for (i=1;i<=NF;i++) { sum[i] += 1.0*$i; sum2[i] += 1.0*$i*$i; } } \ - END { for (i=1;i<=NF;i++) { mean = 1.*sum[i]/NR; var = 1.*sum2[i]/NR-mean*mean; std = sqrt(var); \ + END { for (i=1;i<=NF;i++) { mean = 1.*sum[i]/NR; var = 1.*sum2[i]/NR-mean*mean; std = sqrt(var + 1.0/12); \ printf "%f %f\t",mean,std } printf "\n" }' $TMPDIR/times.dat > $TMPDIR/result.dat FUNCTION_RESULT=`cat $TMPDIR/result.dat` From 25b5a74704b4a31f9c10fb590a7b856f11c0286f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 21:30:58 -0700 Subject: [PATCH 294/460] Removes inlining in template function Since its a template the compiler can efficiently decide on inlining. --- src/ComplexMatrix.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index be7ee3ba..ed3d82b4 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -360,19 +360,19 @@ class ComplexMatrix }; template -inline T * ComplexMatrix::get_data_ptr(const AurynLong data_index, const StateID z) +T * ComplexMatrix::get_data_ptr(const AurynLong data_index, const StateID z) { return statevectors[z]->data+data_index; } template -inline T ComplexMatrix::get_data(const AurynLong i, const StateID z) +T ComplexMatrix::get_data(const AurynLong i, const StateID z) { return *get_data_ptr(i,z); } template -inline T * ComplexMatrix::get_data_ptr(const NeuronID * ind_ptr, const StateID z) +T * ComplexMatrix::get_data_ptr(const NeuronID * ind_ptr, const StateID z) { size_t ptr_offset = ind_ptr-get_ind_begin(); return statevectors[z]->data+ptr_offset; From 99e7e48f198d92b336325dc0947607caeea15403 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 22:38:25 -0700 Subject: [PATCH 295/460] Changes memory alignment in AurynVector Preps for AVX implementations Conflicts: src/NeuronGroup.h --- src/AurynVector.h | 18 +++++++++++------- src/NeuronGroup.h | 10 +++++----- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 7c20c6bf..e75c587d 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -79,16 +79,20 @@ namespace auryn { #endif } + T * allocate(const IndexType n) { + T * ptr = (T*)aligned_alloc(sizeof(T)*SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS,n*sizeof(T)); + return ptr; + }; + public: - // We keep these params public for legacy compatibility reasons IndexType size; - T * data __attribute__((aligned(16))); + T * data; /*! \brief Default constructor */ AurynVector(IndexType n) { size = n; - data = new T [n]; + data = allocate(size); set_zero(); // let's give it a defined initial value } @@ -98,7 +102,7 @@ namespace auryn { AurynVector(AurynVector * vec) { size = vec->size; - data = new T [size]; + data = allocate(size); copy(vec); } @@ -106,15 +110,15 @@ namespace auryn { /*! \brief Default destructor */ virtual ~AurynVector() { - delete data; + free(data); } /*! \brief resize data array to new_size */ void resize(IndexType new_size) { if ( size != new_size ) { - delete [] data; - data = new T [new_size]; + free(data); + data = allocate(size); set_zero(); } } diff --git a/src/NeuronGroup.h b/src/NeuronGroup.h index aafb7e13..1b1e6653 100644 --- a/src/NeuronGroup.h +++ b/src/NeuronGroup.h @@ -62,18 +62,18 @@ class NeuronGroup : public SpikingGroup public: /*! Stores the membrane potentials. */ - AurynStateVector * mem __attribute__((aligned(16))); + AurynStateVector * mem ; /*! Stores the AMPA conductances of each point neuron. */ - AurynStateVector * g_ampa __attribute__((aligned(16))); + AurynStateVector * g_ampa ; /*! Stores the GABA conductances of each point neuron. */ - AurynStateVector * g_gaba __attribute__((aligned(16))); + AurynStateVector * g_gaba ; /*! Stores the NMDA conductances of each point neuron. */ - AurynStateVector * g_nmda __attribute__((aligned(16))); + AurynStateVector * g_nmda ; /*! Stores threshold terms for moving thresholds. * * TODO Remove and move to downstream. */ - AurynStateVector * thr __attribute__((aligned(16))); + AurynStateVector * thr ; /*! Default constructor */ NeuronGroup(NeuronID n, double loadmultiplier = 1. , NeuronID total = 0 ); From b4512124953dcf9adea5cb2b6a45a13161807436 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 22:38:25 -0700 Subject: [PATCH 296/460] Changes memory alignment in AurynVector Preps for AVX implementations Conflicts: src/NeuronGroup.h --- src/AurynVector.h | 18 +++++++++++------- src/NeuronGroup.h | 10 +++++----- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 7c20c6bf..e75c587d 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -79,16 +79,20 @@ namespace auryn { #endif } + T * allocate(const IndexType n) { + T * ptr = (T*)aligned_alloc(sizeof(T)*SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS,n*sizeof(T)); + return ptr; + }; + public: - // We keep these params public for legacy compatibility reasons IndexType size; - T * data __attribute__((aligned(16))); + T * data; /*! \brief Default constructor */ AurynVector(IndexType n) { size = n; - data = new T [n]; + data = allocate(size); set_zero(); // let's give it a defined initial value } @@ -98,7 +102,7 @@ namespace auryn { AurynVector(AurynVector * vec) { size = vec->size; - data = new T [size]; + data = allocate(size); copy(vec); } @@ -106,15 +110,15 @@ namespace auryn { /*! \brief Default destructor */ virtual ~AurynVector() { - delete data; + free(data); } /*! \brief resize data array to new_size */ void resize(IndexType new_size) { if ( size != new_size ) { - delete [] data; - data = new T [new_size]; + free(data); + data = allocate(size); set_zero(); } } diff --git a/src/NeuronGroup.h b/src/NeuronGroup.h index aafb7e13..1b1e6653 100644 --- a/src/NeuronGroup.h +++ b/src/NeuronGroup.h @@ -62,18 +62,18 @@ class NeuronGroup : public SpikingGroup public: /*! Stores the membrane potentials. */ - AurynStateVector * mem __attribute__((aligned(16))); + AurynStateVector * mem ; /*! Stores the AMPA conductances of each point neuron. */ - AurynStateVector * g_ampa __attribute__((aligned(16))); + AurynStateVector * g_ampa ; /*! Stores the GABA conductances of each point neuron. */ - AurynStateVector * g_gaba __attribute__((aligned(16))); + AurynStateVector * g_gaba ; /*! Stores the NMDA conductances of each point neuron. */ - AurynStateVector * g_nmda __attribute__((aligned(16))); + AurynStateVector * g_nmda ; /*! Stores threshold terms for moving thresholds. * * TODO Remove and move to downstream. */ - AurynStateVector * thr __attribute__((aligned(16))); + AurynStateVector * thr ; /*! Default constructor */ NeuronGroup(NeuronID n, double loadmultiplier = 1. , NeuronID total = 0 ); From c85e1c3e92f3104ba038a4d4fb42711077aae8d2 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 20 Jun 2016 09:34:15 -0700 Subject: [PATCH 297/460] Doxystring --- src/AurynVector.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AurynVector.h b/src/AurynVector.h index e75c587d..bd732f7c 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -79,6 +79,7 @@ namespace auryn { #endif } + /*! \brief Implements aligned memory allocation */ T * allocate(const IndexType n) { T * ptr = (T*)aligned_alloc(sizeof(T)*SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS,n*sizeof(T)); return ptr; From 08e74b700c1b608525073752a4096aad126aa2eb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 19 Jun 2016 21:30:58 -0700 Subject: [PATCH 298/460] Removes inlining in template function Since its a template the compiler can efficiently decide on inlining. --- src/ComplexMatrix.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index be7ee3ba..ed3d82b4 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -360,19 +360,19 @@ class ComplexMatrix }; template -inline T * ComplexMatrix::get_data_ptr(const AurynLong data_index, const StateID z) +T * ComplexMatrix::get_data_ptr(const AurynLong data_index, const StateID z) { return statevectors[z]->data+data_index; } template -inline T ComplexMatrix::get_data(const AurynLong i, const StateID z) +T ComplexMatrix::get_data(const AurynLong i, const StateID z) { return *get_data_ptr(i,z); } template -inline T * ComplexMatrix::get_data_ptr(const NeuronID * ind_ptr, const StateID z) +T * ComplexMatrix::get_data_ptr(const NeuronID * ind_ptr, const StateID z) { size_t ptr_offset = ind_ptr-get_ind_begin(); return statevectors[z]->data+ptr_offset; From bd36903b48d71fc4933fed48aedf7262b587329e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 20 Jun 2016 13:29:02 -0700 Subject: [PATCH 299/460] Changes to access rights in ComplexMatrix --- src/ComplexMatrix.h | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index ed3d82b4..2430f0f4 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -157,12 +157,6 @@ class ComplexMatrix /*! \brief Returns a synaptic state vector. */ AurynVector * alloc_synaptic_state_vector(); - /*! \brief Returns pointer to statevector which is an AurynVector of specified synaptic state */ - AurynVector * get_synaptic_state_vector(StateID z=0); - - /*! \brief Sames as get_synaptic_state_vector(StateID z) */ - AurynVector * get_state_vector(StateID z=0); - /*! \brief Matches size of statevectors to number of synaptic states. */ void prepare_state_vectors(); @@ -174,13 +168,27 @@ class ComplexMatrix /*! \brief Vector that holds pointers to the state vectors storing the synaptic states. */ std::vector< AurynVector * > statevectors; + /*! \brief Empty constructor */ ComplexMatrix(); + + /*! \brief Copy constructor */ ComplexMatrix(ComplexMatrix * mat); + + /*! \brief Default constructor */ ComplexMatrix(NeuronID rows, NeuronID cols, AurynLong size=256, NeuronID values=1 ); + + /*! \brief Default destructor */ virtual ~ComplexMatrix(); + /*! \brief Clears matrix */ void clear(); + /*! \brief Returns pointer to statevector which is an AurynVector of specified synaptic state */ + AurynVector * get_synaptic_state_vector(StateID z=0); + + /*! \brief Sames as get_synaptic_state_vector(StateID z) */ + AurynVector * get_state_vector(StateID z=0); + /*! \brief Resizes one state vector and copies existing data * */ AurynVector * resize_state_vector(AurynVector * old, AurynLong oldsize, AurynLong newsize); @@ -271,6 +279,8 @@ class ComplexMatrix /* Methods concerning synaptic state vectors. */ + /*!\brief Sets number of synaptic states (z-value) */ + void set_num_synaptic_states(const StateID zsize); /*!\brief Sets number of synaptic states (z-value) */ void set_num_synapse_states(const StateID zsize); /*!\brief Returns number of synaptic states (z-value) */ @@ -647,13 +657,19 @@ bool ComplexMatrix::exists(NeuronID i, NeuronID j, NeuronID z) } template -void ComplexMatrix::set_num_synapse_states(StateID zsize) +void ComplexMatrix::set_num_synaptic_states(StateID zsize) { n_z_values = zsize; prepare_state_vectors(); resize_buffers(statesize); } +template +void ComplexMatrix::set_num_synapse_states(StateID zsize) +{ + set_num_synaptic_states(zsize); +} + template StateID ComplexMatrix::get_num_synaptic_states() { From fa89e47e7059da1fab8e4826a7759518222b3bb5 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 20 Jun 2016 17:21:56 -0700 Subject: [PATCH 300/460] Adds basic statistics functions to AurynVector --- src/AurynVector.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/src/AurynVector.h b/src/AurynVector.h index bd732f7c..9018d1bd 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -363,6 +363,44 @@ namespace auryn { } } + /*! \brief Computes the variance of the vector elements + * + */ + double var() + { + double sum = 0.0; + double sum2 = 0.0; + for ( IndexType i = 0 ; i < size ; ++i ) { + T elem = get(i); + sum += elem; + sum2 += elem*elem; + } + double mean = sum/size; + double var = sum2/size-mean*mean; + return var; + } + + + /*! \brief Computes the standard deviation of all elements + * + */ + double std() + { + return std::sqrt(var()); + } + + /*! \brief Computes the mean of the vector elements + * + */ + double mean() + { + double sum = 0.0; + for ( IndexType i = 0 ; i < size ; ++i ) { + sum += get(i); + } + return sum/size; + } + /*! \brief Print vector elements to std out for debugging */ void print() { for ( IndexType i = 0 ; i < size ; ++i ) { From 681932ffb4c9cedf207c292cc635642bead4b9ca Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 20 Jun 2016 17:22:16 -0700 Subject: [PATCH 301/460] Adds get_element function to ComplexMAtrix --- src/ComplexMatrix.h | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 2430f0f4..1add97ed 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -266,9 +266,13 @@ class ComplexMatrix /*! \brief Returns the pointer to a particular element */ T * get_ptr(const NeuronID i, const NeuronID j, const StateID z=0); - /*! \brief Returns the pointer to a particular element given + /*! \brief Same as get_data_ptr. Returns the pointer to a particular element given * its position in the data array. */ - T * get_ptr(const AurynLong data_index); + T * get_ptr(const AurynLong data_index, const StateID z=0); + + /*! \brief Returns a particular element given + * its position in the data array. */ + T get_element(const AurynLong data_index, const StateID z); /*! Returns data index to a particular element specifed by i and j */ AurynLong get_data_index(const NeuronID i, const NeuronID j); @@ -394,6 +398,12 @@ T ComplexMatrix::get_data(const NeuronID * ind_ptr, StateID z) return *(get_data_ptr(ind_ptr,z)); } +template +T ComplexMatrix::get_element(const AurynLong data_index, const StateID z) +{ + return *get_data_ptr(data_index); +} + template void ComplexMatrix::set_element(AurynLong data_index, T value, StateID z) { @@ -777,12 +787,12 @@ T ComplexMatrix::get(NeuronID i, NeuronID j, StateID z) } template -T * ComplexMatrix::get_ptr(AurynLong data_index) +T * ComplexMatrix::get_ptr(const AurynLong data_index, const StateID z) { - T * data_z0 = get_synaptic_state_vector(0)->data; - return data_z0+data_index; + return get_data_ptr(data_index, z); } + template T ComplexMatrix::get_value(AurynLong data_index) { From 5a83bb177409a24586fad1400001d52dc97db275 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 20 Jun 2016 17:22:41 -0700 Subject: [PATCH 302/460] Adds additional fn (filename) function to System --- src/System.cpp | 11 +++++++++++ src/System.h | 9 +++++++++ 2 files changed, 20 insertions(+) diff --git a/src/System.cpp b/src/System.cpp index a00f1c5d..5aa112e2 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -580,6 +580,17 @@ string System::fn(std::string name, std::string extension) return oss.str(); } +string System::fn(std::string name, NeuronID index, std::string extension) +{ + std::stringstream oss; + oss << outputdir << "/" + << name + << index + << "." << mpicom->rank() + << "." << extension; + return oss.str(); +} + string System::fn(std::string extension) { return fn(get_simulation_name(), extension); diff --git a/src/System.h b/src/System.h index 9a3ec3e2..e42de9e7 100644 --- a/src/System.h +++ b/src/System.h @@ -278,6 +278,7 @@ namespace auryn { * */ string fn(std::string extension); + /*! \brief Format output file name * * Formats output files according to the following convention: @@ -286,6 +287,14 @@ namespace auryn { * */ string fn(std::string name, std::string extension); + /*! \brief Format output file name + * + * Formats output files according to the following convention: + * /.. + * and returns it as a c string; + * */ + string fn(std::string name, NeuronID index, std::string extension); + /*! \brief Returns global mpi communicator */ mpi::communicator * get_com(); From 94b6ac153c2cb5961f5f94084c7e1332dc30cb9a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 20 Jun 2016 18:32:18 -0700 Subject: [PATCH 303/460] Adds corrections to variance function --- src/AurynVector.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 9018d1bd..96f2d145 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -363,20 +363,21 @@ namespace auryn { } } - /*! \brief Computes the variance of the vector elements + /*! \brief Computes the variance of the vector elements * + * Uses Bessel's correction to calculate an unbiased estimate of the population variance which + * requires n > 1 otherwise the output is not defined. */ double var() { double sum = 0.0; double sum2 = 0.0; for ( IndexType i = 0 ; i < size ; ++i ) { - T elem = get(i); - sum += elem; - sum2 += elem*elem; + double elem = get(i); + sum += elem; + sum2 += std::pow(elem,2); } - double mean = sum/size; - double var = sum2/size-mean*mean; + double var = (sum2-(sum*sum)/size)/(size-1); return var; } From 4ad29bdf0e5b73611a527f18e93d5ef4aa5f253c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:03:27 -0700 Subject: [PATCH 304/460] Adds template function to Logger --- src/Logger.cpp | 23 ----------------------- src/Logger.h | 14 ++++++++++---- 2 files changed, 10 insertions(+), 27 deletions(-) diff --git a/src/Logger.cpp b/src/Logger.cpp index 092576f0..34070689 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -133,29 +133,6 @@ void Logger::debug( std::string text, bool global, int line, std::string srcfile msg(text, VERBOSE, global, line, srcfile ); } - -void Logger::parameter(std::string name, double value) -{ - std::stringstream oss; - oss << std::scientific << " Parameter " << name << "=" << value; - msg(oss.str(),SETTINGS,true); -} - -void Logger::parameter(std::string name, int value) -{ - std::stringstream oss; - oss << std::scientific << "Setting " << name << "=" << value; - msg(oss.str(),SETTINGS,true); -} - -void Logger::parameter(std::string name, std::string value) -{ - std::stringstream oss; - oss.precision(9); - oss << std::scientific << "Setting " << name << "=" << value; - msg(oss.str(),SETTINGS,true); -} - void Logger::set_rank(int rank) { local_rank = rank; diff --git a/src/Logger.h b/src/Logger.h index 1caa1732..339effdf 100644 --- a/src/Logger.h +++ b/src/Logger.h @@ -58,6 +58,8 @@ class Logger public: Logger(std::string filename, int rank, LogMessageType console = PROGRESS, LogMessageType file = NOTIFICATION ); + virtual ~Logger(); + void msg( std::string text, LogMessageType type=NOTIFICATION, bool global=false, int line=-1, std::string srcfile="" ); void info ( std::string text ); void warning ( std::string text ); @@ -65,11 +67,15 @@ class Logger void verbose ( std::string text, bool global=false, int line=-1, std::string srcfile="" ); void debug ( std::string text, bool global=false, int line=-1, std::string srcfile="" ); void notification ( std::string text ); - void parameter( std::string name, double value ); - void parameter( std::string name, int value ); - void parameter( std::string name, std::string value ); void set_rank(int rank); - virtual ~Logger(); + + template + void parameter(std::string name, T value) + { + std::stringstream oss; + oss << std::scientific << " Parameter " << name << "=" << value; + msg(oss.str(),SETTINGS,true); + } }; } From c7854a400e8294ca9e3597bd677f2b98bb0202dd Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:09:01 -0700 Subject: [PATCH 305/460] Corrects data type --- src/ComplexMatrix.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 1add97ed..8cbeba1c 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -175,7 +175,7 @@ class ComplexMatrix ComplexMatrix(ComplexMatrix * mat); /*! \brief Default constructor */ - ComplexMatrix(NeuronID rows, NeuronID cols, AurynLong size=256, NeuronID values=1 ); + ComplexMatrix(NeuronID rows, NeuronID cols, AurynLong size=256, StateID n_values=1 ); /*! \brief Default destructor */ virtual ~ComplexMatrix(); @@ -553,9 +553,9 @@ ComplexMatrix::ComplexMatrix(ComplexMatrix * mat) } template -ComplexMatrix::ComplexMatrix(NeuronID rows, NeuronID cols, AurynLong statesize, NeuronID values ) +ComplexMatrix::ComplexMatrix(NeuronID rows, NeuronID cols, AurynLong statesize, StateID n_values ) { - init(rows, cols, statesize, values); + init(rows, cols, statesize, n_values); } template From fdfd137728b50b5a7eab8f1ef51d6fe00c0c4b06 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:17:50 -0700 Subject: [PATCH 306/460] Adds getters for traces to Connection class --- src/Connection.cpp | 16 ++++++++++++++++ src/Connection.h | 10 ++++++++++ 2 files changed, 26 insertions(+) diff --git a/src/Connection.cpp b/src/Connection.cpp index 383a239c..65e491d1 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -246,6 +246,22 @@ AurynFloat Connection::get_spike_attribute(const NeuronID spike_array_pos, const return src->get_attributes()->at(stackpos); } +DEFAULT_TRACE_MODEL * Connection::get_pre_trace(const AurynDouble tau) +{ + return src->get_pre_trace(tau); +} + +DEFAULT_TRACE_MODEL * Connection::get_post_trace(const AurynDouble tau) +{ + return dst->get_post_trace(tau); +} + +DEFAULT_TRACE_MODEL * Connection::get_post_state_trace(const string state_name, const AurynDouble tau, const AurynDouble jump_size) +{ + return dst->get_post_state_trace(state_name, tau, jump_size); +} + + void Connection::evolve() { diff --git a/src/Connection.h b/src/Connection.h index 02f5aebc..3d32c74a 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -219,6 +219,16 @@ class Connection * Calls propagate only if the postsynaptic NeuronGroup exists on the local rank. */ void conditional_propagate(); + + /*! \brief Returns a pointer to a presynaptic trace object */ + DEFAULT_TRACE_MODEL * get_pre_trace(const AurynDouble tau); + + /*! \brief Returns a pointer to a postsynaptic trace object */ + DEFAULT_TRACE_MODEL * get_post_trace(const AurynDouble tau); + + /*! \brief Returns a pointer to a postsynaptic state trace object */ + DEFAULT_TRACE_MODEL * get_post_state_trace(const string state_name, const AurynDouble tau, const AurynDouble jump_size=0.0); + /*! \brief Computes mean synaptic weight and std dev of all weights in this connection. */ virtual void stats(AurynDouble &mean, AurynDouble &std, StateID zid = 0) = 0; From dfb26c9632cf6ed2b299146781f4a6c6f685e772 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:18:14 -0700 Subject: [PATCH 307/460] Changes Exception string --- src/auryn_definitions.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/auryn_definitions.cpp b/src/auryn_definitions.cpp index 7703fd85..40b30563 100644 --- a/src/auryn_definitions.cpp +++ b/src/auryn_definitions.cpp @@ -49,7 +49,9 @@ NeuronID calculate_vector_size(NeuronID i) { if ( i%SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS==0 ) return i; - return i+(SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS-i%SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS); + NeuronID div = i/SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; // rounds down + NeuronID new_size = (div+1)*SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS; // is multiple of SIMD... + return new_size; } From 9c45165369959f21edecdbf3bf2ac47a444fa704 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:18:32 -0700 Subject: [PATCH 308/460] Changes calculate_vector_size implementation in auryn_definitions --- src/auryn_definitions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 04b8525c..8a77a8c3 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -253,7 +253,7 @@ namespace auryn { { virtual const char* what() const throw() { - return "Memory not aligned to 16bytes."; + return "Memory not aligned or problem allocating aligned memory."; } }; From 2fb747aaecf600467d09a301b1010a13f736bc41 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:18:56 -0700 Subject: [PATCH 309/460] Changes to allocation function in AurynVector --- src/AurynVector.h | 48 ++++++++++++++++++++++++++++++++++------------- 1 file changed, 35 insertions(+), 13 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 96f2d145..eca6bdac 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -80,10 +80,21 @@ namespace auryn { } /*! \brief Implements aligned memory allocation */ - T * allocate(const IndexType n) { - T * ptr = (T*)aligned_alloc(sizeof(T)*SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS,n*sizeof(T)); - return ptr; - }; + void allocate(const NeuronID n) { + T * ptr = (T*)aligned_alloc(sizeof(T)*SIMD_NUM_OF_PARALLEL_FLOAT_OPERATIONS,sizeof(T)*n); + if ( ptr == NULL ) { + // TODO implement proper exception handling + throw AurynMemoryAlignmentException(); + } + data = ptr; + size = n; + set_zero(); + } + + void freebuf() { + free(data); + } + protected: public: IndexType size; @@ -92,9 +103,7 @@ namespace auryn { /*! \brief Default constructor */ AurynVector(IndexType n) { - size = n; - data = allocate(size); - set_zero(); // let's give it a defined initial value + allocate(n); } /*! \brief Copy constructor @@ -102,8 +111,7 @@ namespace auryn { * Constructs vector as a copy of argument vector. */ AurynVector(AurynVector * vec) { - size = vec->size; - data = allocate(size); + allocate(vec->size); copy(vec); } @@ -111,17 +119,17 @@ namespace auryn { /*! \brief Default destructor */ virtual ~AurynVector() { - free(data); + freebuf(); } /*! \brief resize data array to new_size */ void resize(IndexType new_size) { if ( size != new_size ) { - free(data); - data = allocate(size); - set_zero(); + freebuf(); + allocate(new_size); } + set_zero(); } /*! \brief Set all elements to value v. */ @@ -402,6 +410,18 @@ namespace auryn { return sum/size; } + /*! \brief Computes number of nonzero elements + * + */ + IndexType nonzero() + { + IndexType sum = 0; + for ( IndexType i = 0 ; i < size ; ++i ) { + if ( get(i) != 0 ) ++sum; + } + return sum; + } + /*! \brief Print vector elements to std out for debugging */ void print() { for ( IndexType i = 0 ; i < size ; ++i ) { @@ -419,6 +439,7 @@ namespace auryn { */ class AurynVectorFloat : public AurynVector { + private: public: /*! \brief Default constructor */ @@ -429,6 +450,7 @@ namespace auryn { { }; + void scale(const float a); void saxpy(const float a, AurynVectorFloat * x); void clip(const float min, const float max); From 20e3f127b0e462b481fb8321c1a5584cbe7062f6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:19:19 -0700 Subject: [PATCH 310/460] Implements Bessel's approxmation in stats --- src/SparseConnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 249b96d0..938f26c3 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -593,7 +593,7 @@ void SparseConnection::stats(AurynDouble &mean, AurynDouble &std, NeuronID zid) } mean = sum/count; - std = sqrt(sum2/count-mean*mean); + std = sqrt((sum2-sum*sum/count)/(count-1)); } AurynDouble SparseConnection::sum() From 7b5f7883491da3984ccc9aeaf624878b10ee6282 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:19:49 -0700 Subject: [PATCH 311/460] Changes to verbose log strings --- src/SpikingGroup.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 7e5b5585..72e46ca2 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -360,7 +360,9 @@ PRE_TRACE_MODEL * SpikingGroup::get_pre_trace( AurynFloat x ) } } + auryn::logger->msg("Initializing pre trace instance",VERBOSE); #ifndef PRE_TRACE_MODEL_LINTRACE + std::cout << " pre size " << get_pre_size() << std::endl; DEFAULT_TRACE_MODEL * tmp = new DEFAULT_TRACE_MODEL(get_pre_size(),x); #else PRE_TRACE_MODEL * tmp = new PRE_TRACE_MODEL(get_pre_size(),x,clock_ptr); @@ -381,6 +383,7 @@ DEFAULT_TRACE_MODEL * SpikingGroup::get_post_trace( AurynFloat x ) } + auryn::logger->msg("Initializing post trace instance",VERBOSE); DEFAULT_TRACE_MODEL * tmp = new DEFAULT_TRACE_MODEL(get_post_size(),x); posttraces.push_back(tmp); return tmp; @@ -412,7 +415,7 @@ EulerTrace * SpikingGroup::get_post_state_trace( AurynStateVector * state, Auryn // trace does not exist yet, so we are creating // it and do the book keeping - auryn::logger->msg("Creating new post state trace",VERBOSE); + auryn::logger->msg("Initializing post trace instance",VERBOSE); EulerTrace * tmp = new EulerTrace(get_post_size(),tau); tmp->set_target(state); post_state_traces.push_back(tmp); From 8f49a1983e0147ba7a80a8ea4e498d372a58d8a7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:20:04 -0700 Subject: [PATCH 312/460] Adds zero init to activity vector --- src/StimulusGroup.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/StimulusGroup.cpp b/src/StimulusGroup.cpp index ab9e3938..2ed1315c 100644 --- a/src/StimulusGroup.cpp +++ b/src/StimulusGroup.cpp @@ -39,6 +39,7 @@ void StimulusGroup::init(StimulusGroupModeType stimulusmode, std::string stimfil refractory_period = 1; // initialize with a default of one timestep (avoids two spikes in same time bin) activity = new AurynFloat [get_rank_size()]; + for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) activity[i] = 0.0; set_baserate(baserate); seed(2351301); From 1966caf6363b0d51ddccf3914587d6c8a447859f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:25:39 -0700 Subject: [PATCH 313/460] Adds debug code to EulerTrace --- src/EulerTrace.cpp | 9 +++++++++ src/EulerTrace.h | 6 ++++++ 2 files changed, 15 insertions(+) diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index 7df180f6..8e30da67 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -123,9 +123,18 @@ void EulerTrace::inc(NeuronID i) state->data[i]++; } +void EulerTrace::check_size(NeuronID x) +{ +#ifndef NDEBUG + if ( x >= size ) { + throw AurynVectorDimensionalityException(); + } +#endif +} AurynFloat EulerTrace::normalized_get(NeuronID i) { + check_size(i); return state->get( i ) / tau ; } diff --git a/src/EulerTrace.h b/src/EulerTrace.h index b1920438..fb7ff497 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -69,6 +69,11 @@ class EulerTrace void init(NeuronID n, AurynFloat timeconstant); void free(); + /*! \brief Checks if argument is larger than size and throws and exception if so + * + * Check only enabled if NDEBUG is not defined.*/ + void check_size(NeuronID x); + public: /*! Default constructor */ EulerTrace(NeuronID n, AurynFloat timeconstant); @@ -128,6 +133,7 @@ class EulerTrace inline AurynFloat EulerTrace::get(NeuronID i) { + check_size(i); return state->data[i]; } From 0826c5fd7893219a8d8a90b5bb5dae1173e64532 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 21 Jun 2016 14:33:09 -0700 Subject: [PATCH 314/460] Adds range check to EulerTrace for DEBUG --- src/EulerTrace.cpp | 8 -------- src/EulerTrace.h | 9 ++++++++- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index 8e30da67..8af5c9b8 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -123,14 +123,6 @@ void EulerTrace::inc(NeuronID i) state->data[i]++; } -void EulerTrace::check_size(NeuronID x) -{ -#ifndef NDEBUG - if ( x >= size ) { - throw AurynVectorDimensionalityException(); - } -#endif -} AurynFloat EulerTrace::normalized_get(NeuronID i) { diff --git a/src/EulerTrace.h b/src/EulerTrace.h index fb7ff497..c1026f14 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -72,7 +72,14 @@ class EulerTrace /*! \brief Checks if argument is larger than size and throws and exception if so * * Check only enabled if NDEBUG is not defined.*/ - void check_size(NeuronID x); + void check_size(NeuronID x) + { +#ifndef NDEBUG + if ( x >= size ) { + throw AurynVectorDimensionalityException(); + } +#endif + }; public: /*! Default constructor */ From 4e7859a4b81f40814255ca4fa2893fff283784be Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Fri, 24 Jun 2016 14:09:01 -0700 Subject: [PATCH 315/460] Removes cout from SpikingGroup --- src/SpikingGroup.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 72e46ca2..8e3e7f83 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -362,7 +362,6 @@ PRE_TRACE_MODEL * SpikingGroup::get_pre_trace( AurynFloat x ) auryn::logger->msg("Initializing pre trace instance",VERBOSE); #ifndef PRE_TRACE_MODEL_LINTRACE - std::cout << " pre size " << get_pre_size() << std::endl; DEFAULT_TRACE_MODEL * tmp = new DEFAULT_TRACE_MODEL(get_pre_size(),x); #else PRE_TRACE_MODEL * tmp = new PRE_TRACE_MODEL(get_pre_size(),x,clock_ptr); From 33afea9c223028b7dc5d6d08263a50e82989e1d8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 27 Jun 2016 09:45:46 -0700 Subject: [PATCH 316/460] Makes several template functions virtual --- src/AurynVector.h | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index eca6bdac..5db9e237 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -147,13 +147,20 @@ namespace auryn { } /*! \brief Scales all vector elements by a. */ - void scale(const AurynFloat a) + virtual void scale(const AurynFloat a) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] *= a; } } + /*! \brief Scales all vector elements by a. TODO */ + void follow(AurynVector * v, const float rate) + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] += rate*(v->data[i]-data[i]); + } + } /*! \brief Takes each element to the n-th power. * @@ -176,7 +183,7 @@ namespace auryn { } /*! \brief Adds constant c to each vector element */ - void add(const AurynFloat c) + virtual void add(const AurynFloat c) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] += c; @@ -293,7 +300,7 @@ namespace auryn { * \param a The scaling factor for the additional vector * \param x The additional vector to add * */ - void saxpy(const AurynFloat a, AurynVector * x) + virtual void saxpy(const AurynFloat a, AurynVector * x) { check_size(x); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -360,7 +367,7 @@ namespace auryn { * \param min Minimum value * \param max Maximum value */ - void clip(T min, T max) + virtual void clip(T min, T max) { for ( IndexType i = 0 ; i < size ; ++i ) { if ( data[i] < min ) { From c9c821ed775ec57fb65527b958202f0836b506bd Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 27 Jun 2016 09:46:09 -0700 Subject: [PATCH 317/460] Adds z parameter to set_all method --- src/ComplexMatrix.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 8cbeba1c..4ec681c8 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -325,7 +325,7 @@ class ComplexMatrix bool set(const NeuronID i, const NeuronID j, T value); /*! \brief Sets all non-zero elements to value */ - void set_all(const T value); + void set_all(const T value, const StateID z=0); /*! \brief Sets all non-zero elements in row i to value */ void set_row(const NeuronID i, const T value); /*! \brief Scales all non-zero elements in row i to value */ @@ -855,10 +855,9 @@ void ComplexMatrix::set_row(NeuronID i, T value) } template -void ComplexMatrix::set_all(T value) +void ComplexMatrix::set_all(T value, StateID z) { - for ( AurynLong i = 0 ; i < n_nonzero ; ++i ) - set_data( i , value ); + get_state_vector(z)->set_all(value); } template From a1130de863f25ab569d2e953e17eff87c033a924 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 27 Jun 2016 15:42:41 -0700 Subject: [PATCH 318/460] Changes default binsize in population rate monitor --- src/PopulationRateMonitor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PopulationRateMonitor.h b/src/PopulationRateMonitor.h index 185d1fd8..41087ee3 100644 --- a/src/PopulationRateMonitor.h +++ b/src/PopulationRateMonitor.h @@ -66,7 +66,7 @@ class PopulationRateMonitor : protected Monitor @param[source] The source spiking group. @param[filename] The filename to write to (should be different for each rank.) @param[binsize] The binsize used for counting in seconds.*/ - PopulationRateMonitor(SpikingGroup * source, string filename, AurynDouble binsize=1e-3); + PopulationRateMonitor(SpikingGroup * source, string filename, AurynDouble binsize=1.0); /*! Default Destructor */ virtual ~PopulationRateMonitor(); /*! Implementation of necessary propagate() function. */ From 5ace1586618f8596261e54f19c2125dc4514c844 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 27 Jun 2016 17:50:57 -0700 Subject: [PATCH 319/460] Changes default recording interval in WeightMonitor --- src/WeightMonitor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index ad505252..dacd2aac 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -86,9 +86,9 @@ class WeightMonitor : protected Monitor std::vector * load_patfile( string filename, int maxpat ); public: - WeightMonitor(SparseConnection * source, string filename, AurynDouble interval=1); - WeightMonitor(SparseConnection * source, ForwardMatrix * m, string filename, AurynDouble interval=1); - WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynDouble interval=1, RecordingMode mode = SINGLE, NeuronID z = 0); + WeightMonitor(SparseConnection * source, string filename, AurynDouble interval=10.0); + WeightMonitor(SparseConnection * source, ForwardMatrix * m, string filename, AurynDouble interval=10.0); + WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynDouble interval=10.0, RecordingMode mode = SINGLE, NeuronID z = 0); virtual ~WeightMonitor(); void propagate(); From e13719cf012b4a78665e89571667ab38a4419e6a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 28 Jun 2016 20:59:24 -0700 Subject: [PATCH 320/460] Adds Logger shortcut function --- src/Logger.cpp | 4 ++++ src/Logger.h | 1 + 2 files changed, 5 insertions(+) diff --git a/src/Logger.cpp b/src/Logger.cpp index 34070689..8f12ba4b 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -102,6 +102,10 @@ void Logger::msg( std::string text, LogMessageType type, bool global, int line, last_message = text; } +void Logger::progress( std::string text ) +{ + msg(text, PROGRESS, true); +} void Logger::info( std::string text ) { diff --git a/src/Logger.h b/src/Logger.h index 339effdf..b419fb00 100644 --- a/src/Logger.h +++ b/src/Logger.h @@ -62,6 +62,7 @@ class Logger void msg( std::string text, LogMessageType type=NOTIFICATION, bool global=false, int line=-1, std::string srcfile="" ); void info ( std::string text ); + void progress( std::string text ); void warning ( std::string text ); void error ( std::string text ); void verbose ( std::string text, bool global=false, int line=-1, std::string srcfile="" ); From ddbeb4d3d8b30357488b0009d5bb35c5ba1639ff Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 29 Jun 2016 09:30:33 -0700 Subject: [PATCH 321/460] Adds exception to ComplexMatrix --- src/ComplexMatrix.h | 6 ++++++ src/auryn_definitions.h | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 4ec681c8..a0ebe917 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -105,6 +105,8 @@ class ComplexMatrix template void load(Archive & ar, const unsigned int version) { + const StateID cur_num_syn_states = get_num_synaptic_states(); + ar & m_rows; ar & n_cols; ar & n_z_values; @@ -113,6 +115,10 @@ class ComplexMatrix ar & statesize; ar & n_nonzero; + if ( n_z_values != cur_num_syn_states ) { // check if we have the some number of tensor modes + throw AurynMatrixComplexStateException(); + } + // allocate necessary memory resize_buffers(statesize); diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 8a77a8c3..098e5d1a 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -224,6 +224,14 @@ namespace auryn { } }; + class AurynMatrixComplexStateException: public std::exception + { + virtual const char* what() const throw() + { + return "Trying to access non existing complex synaptic states."; + } + }; + class AurynMatrixBufferException: public std::exception { virtual const char* what() const throw() From 11504c189b8f39b8c28a5621ab0a79f6f783ea3f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 30 Jun 2016 11:36:48 -0700 Subject: [PATCH 322/460] Adds experimental support for state variables in SpikingGroup State variables are SpikingGroup properties that can be set by the user. Unlike state vectors they are group wide variables and not neuron specific variables. This commit adds the function get_state_variable(str) which returns a pointer to a group variable. Load and save procedures of this haven't been tested yet. --- src/SpikingGroup.cpp | 18 ++++++++++++++++++ src/SpikingGroup.h | 6 ++++++ 2 files changed, 24 insertions(+) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 8e3e7f83..133b42f5 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -612,6 +612,10 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const ar & *(iter->second); } + oss.str(""); + oss << get_log_name() << " serializing " << state_variables.size() << " state variables"; + ar & state_variables; + oss.str(""); oss << get_log_name() << " serializing " << pretraces.size() << " pre traces"; auryn::logger->msg(oss.str(),VERBOSE); @@ -649,6 +653,10 @@ void SpikingGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const ar & *vect; } + oss.str(""); + oss << get_log_name() << " reading " << state_variables.size() << " state variables"; + ar & state_variables; + oss.str(""); oss << get_log_name() << " reading " << pretraces.size() << " pre traces"; auryn::logger->msg(oss.str(),VERBOSE); @@ -841,3 +849,13 @@ int SpikingGroup::get_num_spike_attributes() { return delay->get_num_attributes(); } + + +AurynState * SpikingGroup::get_state_variable(std::string key) +{ + if ( state_variables.find(key) == state_variables.end() ) { + state_variables[key] = 0.0; + } + return &(state_variables.find(key)->second); +} + diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index ae4071f4..ae9a16e1 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -135,6 +135,9 @@ class SpikingGroup /*! Can hold single neuron vectors such as target rates or STP states etc */ std::map state_vectors; + /*! Holds group-wide state variables such as population target rates or global protein levels etc */ + std::map state_variables; + /*! \brief Returns existing state vector by name. * * If the state_vector does not exist the function returns NULL. */ @@ -151,6 +154,9 @@ class SpikingGroup /*! \brief Creates a new or returns an existing state vector by name. */ AurynStateVector * get_state_vector(std::string key); + /*! \brief Creates a new group-wide state variable or returns an existing group-wide variable by name then returns a pointer to it. */ + AurynState * get_state_variable(std::string key); + /*! \brief Randomizes the content of a state vector with Gaussian random numbers. Seeding is MPI save. */ void randomize_state_vector_gauss(std::string state_vector_name, AurynState mean, AurynState sigma, int seed=12239); From 9144699837b48427932adffa13345444985df854 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 10:41:14 -0700 Subject: [PATCH 323/460] Updates some Doxystrings --- src/AurynVector.h | 32 ++++++++++++++++++++++---------- src/ComplexMatrix.h | 6 +++++- 2 files changed, 27 insertions(+), 11 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 5db9e237..1d56b7d3 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -243,7 +243,7 @@ namespace auryn { /*! \brief Computes the sum a+b and stores the result in this instance * * */ - void sum(AurynVector * a, AurynVector * b) + virtual void sum(AurynVector * a, AurynVector * b) { check_size(a); check_size(b); @@ -255,7 +255,7 @@ namespace auryn { /*! \brief Computes the sum a+b and stores the result in this instance * * */ - void sum(AurynVector * a, const AurynState b) + virtual void sum(AurynVector * a, const AurynState b) { check_size(a); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -266,7 +266,7 @@ namespace auryn { /*! \brief Computes the difference a-b and stores the result in this instance * * */ - void diff(AurynVector * a, AurynVector * b) + virtual void diff(AurynVector * a, AurynVector * b) { check_size(a); check_size(b); @@ -278,7 +278,7 @@ namespace auryn { /*! \brief Computes the difference a-b and stores the result in this instance * * */ - void diff(AurynVector * a, const AurynState b) + virtual void diff(AurynVector * a, const AurynState b) { sum(a,-b); } @@ -378,10 +378,13 @@ namespace auryn { } } - /*! \brief Computes the variance of the vector elements + /*! \brief Computes the variance of the vector elements on this rank * * Uses Bessel's correction to calculate an unbiased estimate of the population variance which * requires n > 1 otherwise the output is not defined. + * + * Warning: Note that AurynVector can only compute the mean of all the subset of + * elements stored on thank it runs on. */ double var() { @@ -397,16 +400,20 @@ namespace auryn { } - /*! \brief Computes the standard deviation of all elements + /*! \brief Computes the standard deviation of all elements on this rank * + * Warning: Note that AurynVector can only compute the mean of all the subset of + * elements stored on thank it runs on. */ double std() { return std::sqrt(var()); } - /*! \brief Computes the mean of the vector elements + /*! \brief Computes the mean of the vector elements on this rank * + * Warning: Note that AurynVector can only compute the mean of all the subset of + * elements stored on thank it runs on. */ double mean() { @@ -417,8 +424,10 @@ namespace auryn { return sum/size; } - /*! \brief Computes number of nonzero elements + /*! \brief Computes number of nonzero elements on this rank * + * Warning: Note that AurynVector can only compute the mean of all the subset of + * elements stored on thank it runs on. */ IndexType nonzero() { @@ -429,7 +438,7 @@ namespace auryn { return sum; } - /*! \brief Print vector elements to std out for debugging */ + /*! \brief Print vector elements jo std out for debugging */ void print() { for ( IndexType i = 0 ; i < size ; ++i ) { std::cout << get(i) << " "; @@ -438,9 +447,12 @@ namespace auryn { } }; + + + /*! \brief Derived AurynVectorFloat class for performance computation * - * This class inherits the template AurynVector and overwrites + * This class inherits the template AurynVector and overwrites * some of the functions defined in the template with SIMD intrinsics * for higher performance. */ diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index a0ebe917..56c3a58f 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -353,7 +353,11 @@ class ComplexMatrix AurynLong get_nonzero(); /*! \brief stdout dump of all elements -- for testing only. */ void print(); - /*! \brief Return mean value of elements for the first complex state (z=0). */ + + /*! \brief Return mean value of elements for the first complex state (z=0). + * + * Warning: Note that ComplexMatrix can only compute the mean of all the subset of + * elements stored on thank it runs on. */ double mean(); NeuronID * get_ind_begin(); From 36b988c52b474af6be396c32dfbed1d2f93d76fc Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 18:11:00 -0700 Subject: [PATCH 324/460] Rename multiple types in AurynVector --- src/AurynVector.h | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 5db9e237..3e1ce66c 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -147,7 +147,7 @@ namespace auryn { } /*! \brief Scales all vector elements by a. */ - virtual void scale(const AurynFloat a) + virtual void scale(const T a) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] *= a; @@ -183,7 +183,7 @@ namespace auryn { } /*! \brief Adds constant c to each vector element */ - virtual void add(const AurynFloat c) + virtual void add(const T c) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] += c; @@ -191,12 +191,19 @@ namespace auryn { } /*! \brief Adds the value c to specific vector element i */ - void add_specific(const IndexType i, const AurynFloat c) + void add_specific(const IndexType i, const T c) { check_size(i); data[i] += c; } + /*! \brief Multiply to specific vector element with data index i with the constant c*/ + void mul_specific(const IndexType i, const T c) + { + check_size(i); + data[i] *= c; + } + /*! \brief Adds a vector v to the vector * * No checking of the dimensions match! */ @@ -209,7 +216,7 @@ namespace auryn { } /*! \brief Subtract constant c to each vector element */ - void sub(const AurynFloat c) + void sub(const T c) { add(-c); } @@ -224,7 +231,7 @@ namespace auryn { } /*! \brief Multiply all vector elements by constant */ - void mul(const AurynFloat a) + void mul(const T a) { scale(a); } @@ -300,7 +307,7 @@ namespace auryn { * \param a The scaling factor for the additional vector * \param x The additional vector to add * */ - virtual void saxpy(const AurynFloat a, AurynVector * x) + virtual void saxpy(const T a, AurynVector * x) { check_size(x); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -409,14 +416,23 @@ namespace auryn { * */ double mean() + { + return element_sum()/size; + } + + /*! \brief Computes the sum of the vector elements + * + */ + double element_sum() { double sum = 0.0; for ( IndexType i = 0 ; i < size ; ++i ) { sum += get(i); } - return sum/size; + return sum; } + /*! \brief Computes number of nonzero elements * */ From 8be68e2e5bc6dd8571d8343fc2e7d2817d0f5f2f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 17:47:49 -0700 Subject: [PATCH 325/460] Update README.md --- README.md | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b79aba91..c736721d 100644 --- a/README.md +++ b/README.md @@ -37,18 +37,26 @@ in development versions to compile. Citing Auryn ------------ -If you find Auryn useful and you use it or parts of it in one of your -publications please cite: +If you find Auryn useful and you use it, please cite: Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations of spiking neural networks using general-purpose computers. Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +url: http://journal.frontiersin.org/Journal/10.3389/fninf.2014.00076/abstract --- Friedemann Zenke, Mar 13 2015 - - - +Bibtex: +``` +@article{zenke_limits_2014, + title = {Limits to high-speed simulations of spiking neural networks using general-purpose computers}, + author = {Zenke, Friedemann and Gerstner, Wulfram}, + journal = {Front Neuroinform}, + year = {2014}, + volume = {8}, + url = {http://journal.frontiersin.org/Journal/10.3389/fninf.2014.00076/abstract}, + doi = {10.3389/fninf.2014.00076} +} +``` Copyright 2014-2016 Friedemann Zenke. From 06d038d9b2cc7ef49306559f98fbeaddb4f62991 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 18:28:11 -0700 Subject: [PATCH 326/460] Make functions non-virtual --- src/AurynVector.h | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 1d56b7d3..72f50dad 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -94,6 +94,7 @@ namespace auryn { void freebuf() { free(data); } + protected: public: @@ -147,7 +148,7 @@ namespace auryn { } /*! \brief Scales all vector elements by a. */ - virtual void scale(const AurynFloat a) + void scale(const AurynFloat a) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] *= a; @@ -183,7 +184,7 @@ namespace auryn { } /*! \brief Adds constant c to each vector element */ - virtual void add(const AurynFloat c) + void add(const AurynFloat c) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] += c; @@ -243,7 +244,7 @@ namespace auryn { /*! \brief Computes the sum a+b and stores the result in this instance * * */ - virtual void sum(AurynVector * a, AurynVector * b) + void sum(AurynVector * a, AurynVector * b) { check_size(a); check_size(b); @@ -255,7 +256,7 @@ namespace auryn { /*! \brief Computes the sum a+b and stores the result in this instance * * */ - virtual void sum(AurynVector * a, const AurynState b) + void sum(AurynVector * a, const AurynState b) { check_size(a); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -266,7 +267,7 @@ namespace auryn { /*! \brief Computes the difference a-b and stores the result in this instance * * */ - virtual void diff(AurynVector * a, AurynVector * b) + void diff(AurynVector * a, AurynVector * b) { check_size(a); check_size(b); @@ -278,7 +279,7 @@ namespace auryn { /*! \brief Computes the difference a-b and stores the result in this instance * * */ - virtual void diff(AurynVector * a, const AurynState b) + void diff(AurynVector * a, const AurynState b) { sum(a,-b); } @@ -300,7 +301,7 @@ namespace auryn { * \param a The scaling factor for the additional vector * \param x The additional vector to add * */ - virtual void saxpy(const AurynFloat a, AurynVector * x) + void saxpy(const AurynFloat a, AurynVector * x) { check_size(x); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -367,7 +368,7 @@ namespace auryn { * \param min Minimum value * \param max Maximum value */ - virtual void clip(T min, T max) + void clip(T min, T max) { for ( IndexType i = 0 ; i < size ; ++i ) { if ( data[i] < min ) { From 37e26816ad34c5b739504c398b3dd8b7679430ab Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 18:34:27 -0700 Subject: [PATCH 327/460] Change types in AurynVector --- src/AurynVector.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index a3c59387..65db153c 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -263,7 +263,7 @@ namespace auryn { /*! \brief Computes the sum a+b and stores the result in this instance * * */ - void sum(AurynVector * a, const AurynState b) + void sum(AurynVector * a, const T b) { check_size(a); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -286,7 +286,7 @@ namespace auryn { /*! \brief Computes the difference a-b and stores the result in this instance * * */ - void diff(AurynVector * a, const AurynState b) + void diff(AurynVector * a, const T b) { sum(a,-b); } @@ -492,9 +492,9 @@ namespace auryn { void add(const float c); void add(AurynVectorFloat * v); void sum(AurynVectorFloat * a, AurynVectorFloat * b); - void sum(AurynVectorFloat * a, const AurynState b); + void sum(AurynVectorFloat * a, const float b); void diff(AurynVectorFloat * a, AurynVectorFloat * b); - void diff(AurynVectorFloat * a, const AurynState b); + void diff(AurynVectorFloat * a, const float b); // TODO add pow function with intrinsics _mm_pow_ps From eab715748f1ad5caaf23a0919a18fb3d3b188f68 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 19:27:35 -0700 Subject: [PATCH 328/460] Adds auryn_version_info.h and script to generate Generate auryn_version_info.h with mk_version_info.sh Also changes version number to const types --- src/System.cpp | 32 +++++++++++-------------- src/System.h | 2 ++ src/auryn_definitions.h | 16 +++---------- src/auryn_version_info.cpp | 3 +++ src/auryn_version_info.h | 29 +++++++++++++++++++++++ src/mk_version_info.sh | 48 ++++++++++++++++++++++++++++++++++++++ 6 files changed, 99 insertions(+), 31 deletions(-) create mode 100644 src/auryn_version_info.cpp create mode 100644 src/auryn_version_info.h create mode 100755 src/mk_version_info.sh diff --git a/src/System.cpp b/src/System.cpp index 5aa112e2..c99ad76f 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -48,9 +48,12 @@ void System::init() { std::stringstream oss; oss << "Auryn version " - << get_version_string(); + << get_version_string() + << " ( compiled " << __DATE__ << " " << __TIME__ << " )"; + auryn::logger->msg(oss.str(),NOTIFICATION); - oss << " ( compiled " << __DATE__ << " " << __TIME__ << " )"; + oss << "Git repository revision " + << auryn_git_describe; auryn::logger->msg(oss.str(),NOTIFICATION); oss.str(""); @@ -100,18 +103,16 @@ void System::init() { string System::get_version_string() { std::stringstream oss; - oss << AURYNVERSION + oss << auryn_version << "." - << AURYNSUBVERSION; + << auryn_subversion; - if ( AURYNREVISION ) { + if ( auryn_revision_number ) { oss << "." - << AURYNREVISION; + << auryn_revision_number; } -#ifdef AURYNVERSIONSUFFIX - oss << AURYNVERSIONSUFFIX; -#endif + oss << auryn_revision_suffix; return oss.str(); } @@ -614,16 +615,11 @@ void System::save_network_state(std::string basename) std::ofstream ofs(netstate_filename.c_str()); boost::archive::binary_oarchive oa(ofs); - /* Translate version values to const values */ - const int auryn_version = AURYNVERSION; - const int auryn_subversion = AURYNSUBVERSION; - const int auryn_revision = AURYNREVISION; - auryn::logger->msg("Saving version information ...",VERBOSE); // save simulator version information oa << auryn_version; oa << auryn_subversion; - oa << auryn_revision; + oa << auryn_revision_number; auryn::logger->msg("Saving communicator information ...",VERBOSE); // save communicator information @@ -750,11 +746,11 @@ void System::load_network_state(std::string basename) bool pass_version = true; int tmp_version; ia >> tmp_version; - pass_version = pass_version && AURYNVERSION==tmp_version; + pass_version = pass_version && auryn_version==tmp_version; ia >> tmp_version; - pass_version = pass_version && AURYNSUBVERSION==tmp_version; + pass_version = pass_version && auryn_subversion==tmp_version; ia >> tmp_version; - pass_version = pass_version && AURYNREVISION==tmp_version; + pass_version = pass_version && auryn_revision_number==tmp_version; if ( !pass_version ) { auryn::logger->msg("WARNING: Version check failed! Current Auryn version " diff --git a/src/System.h b/src/System.h index e42de9e7..94d95d02 100644 --- a/src/System.h +++ b/src/System.h @@ -27,6 +27,7 @@ #define SYSTEM_H_ #include "auryn_definitions.h" +#include "auryn_version_info.h" #include "AurynVector.h" #include "SpikingGroup.h" #include "Connection.h" @@ -34,6 +35,7 @@ #include "Checker.h" #include "SyncBuffer.h" + #include #include diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index 098e5d1a..ab4552b5 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -58,15 +58,11 @@ #include #include "Logger.h" +#include "auryn_version_info.h" + namespace mpi = boost::mpi; -/*! The current Auryn version/revision number. - * Should be all ints. */ -#define AURYNVERSION 0 -#define AURYNSUBVERSION 8 -#define AURYNREVISION 0 -#define AURYNVERSIONSUFFIX "-dev" /*! Toggle between memory alignment for @@ -172,6 +168,7 @@ namespace auryn { + /*! \brief Determines memory alignment (adapted from ATLAS library) * @param N max return value @@ -191,13 +188,6 @@ namespace auryn { NeuronID neuronID; }; - /*! \brief Tag for header in binary encoded spike monitor files. - * - * The first digits are 28796 for Auryn in - * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn - * version */ - const NeuronID tag_binary_spike_monitor = 287960000+100*AURYNVERSION+10*AURYNSUBVERSION+1*AURYNREVISION; - const NeuronID tag_binary_state_monitor = 287961000+100*AURYNVERSION+10*AURYNSUBVERSION+1*AURYNREVISION; // Exceptions class AurynOpenFileException: public std::exception diff --git a/src/auryn_version_info.cpp b/src/auryn_version_info.cpp new file mode 100644 index 00000000..165b2162 --- /dev/null +++ b/src/auryn_version_info.cpp @@ -0,0 +1,3 @@ +// This file was intentionally left empty and exists only for the sake of Makefile wildcards +#include "auryn_version_info.h" + diff --git a/src/auryn_version_info.h b/src/auryn_version_info.h new file mode 100644 index 00000000..77132aa1 --- /dev/null +++ b/src/auryn_version_info.h @@ -0,0 +1,29 @@ +#define AURYN_VERSION_INFO_H_ +#ifndef AURYN_VERSION_INFO_H_ + +namespace auryn { + +/*! The current Auryn version/revision number. + * Should be all ints. */ +const int auryn_version=0; +const int auryn_subversion=8; +const int auryn_revision_number=0; + +/*! The current Auryn revision suffix. */ +const char auryn_revision_suffix[] = "-dev-57cd2fb"; + +/*! The current Auryn revision string from git describe */ +const char auryn_git_describe[] = "v0.8.0-dev-1-g57cd2fb"; + +/*! \brief Tag for header in binary encoded spike monitor files. + * + * The first digits are 28796 for Auryn in + * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn + * version */ +const NeuronID tag_binary_spike_monitor = 287960000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; +const NeuronID tag_binary_state_monitor = 287961000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; + +} + +#endif /*AURYN_VERSION_INFO_H__*/ + diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh new file mode 100755 index 00000000..b0338f7b --- /dev/null +++ b/src/mk_version_info.sh @@ -0,0 +1,48 @@ +#!/bin/sh + +# Script generates auryn_revision.h according to the following values + +AURYNVERSION=0 +AURYNSUBVERSION=8 +AURYNREVISIONNUMBER=0 +AURYNREVISIONSUFFIX="-dev" + + +# Do not edit below + +HASH=`git log --pretty=format:'%h' -n 1` +AURYNREVISIONSUFFIXANDHASH="$AURYNREVISIONSUFFIX-$HASH" + +GITDESCRIBE=`git describe` + +cat < auryn_version_info.h +#define AURYN_VERSION_INFO_H_ +#ifndef AURYN_VERSION_INFO_H_ + +namespace auryn { + +/*! The current Auryn version/revision number. + * Should be all ints. */ +const int auryn_version=$AURYNVERSION; +const int auryn_subversion=$AURYNSUBVERSION; +const int auryn_revision_number=$AURYNREVISIONNUMBER; + +/*! The current Auryn revision suffix. */ +const char auryn_revision_suffix[] = "$AURYNREVISIONSUFFIXANDHASH"; + +/*! The current Auryn revision string from git describe */ +const char auryn_git_describe[] = "$GITDESCRIBE"; + +/*! \\brief Tag for header in binary encoded spike monitor files. + * + * The first digits are 28796 for Auryn in + * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn + * version */ +const NeuronID tag_binary_spike_monitor = 287960000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; +const NeuronID tag_binary_state_monitor = 287961000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; + +} + +#endif /*AURYN_VERSION_INFO_H__*/ + +EOF From 6dd1657caa060a5eb231dcfb6a4297d944782031 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 20:50:54 -0700 Subject: [PATCH 329/460] Commits changes --- src/auryn_version_info.cpp | 24 +++++++++++++++++++++++- src/auryn_version_info.h | 29 ++++++++++------------------- 2 files changed, 33 insertions(+), 20 deletions(-) diff --git a/src/auryn_version_info.cpp b/src/auryn_version_info.cpp index 165b2162..743eb661 100644 --- a/src/auryn_version_info.cpp +++ b/src/auryn_version_info.cpp @@ -1,3 +1,25 @@ -// This file was intentionally left empty and exists only for the sake of Makefile wildcards #include "auryn_version_info.h" +#include "auryn_definitions.h" + +namespace auryn { + +/*! The current Auryn version/revision number. */ +static const int auryn_version=0; +static const int auryn_subversion=8; +static const int auryn_revision_number=0; + +/*! The current Auryn revision suffix. */ +const char auryn_revision_suffix[] = "-dev-eab7157"; + +/*! The current Auryn revision string from git describe */ +const char auryn_git_describe[] = "v0.8.0-dev-1-geab7157"; + +/*! \brief Tag for header in binary encoded spike monitor files. + * + * The first digits are 28796 for Auryn in + * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn + * version */ +static const NeuronID tag_binary_spike_monitor = 287960000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; +static const NeuronID tag_binary_state_monitor = 287961000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; +} diff --git a/src/auryn_version_info.h b/src/auryn_version_info.h index 77132aa1..26f0dda6 100644 --- a/src/auryn_version_info.h +++ b/src/auryn_version_info.h @@ -1,27 +1,18 @@ #define AURYN_VERSION_INFO_H_ #ifndef AURYN_VERSION_INFO_H_ -namespace auryn { - -/*! The current Auryn version/revision number. - * Should be all ints. */ -const int auryn_version=0; -const int auryn_subversion=8; -const int auryn_revision_number=0; +#include +#include "auryn_definitions.h" -/*! The current Auryn revision suffix. */ -const char auryn_revision_suffix[] = "-dev-57cd2fb"; - -/*! The current Auryn revision string from git describe */ -const char auryn_git_describe[] = "v0.8.0-dev-1-g57cd2fb"; +namespace auryn { -/*! \brief Tag for header in binary encoded spike monitor files. - * - * The first digits are 28796 for Auryn in - * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn - * version */ -const NeuronID tag_binary_spike_monitor = 287960000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; -const NeuronID tag_binary_state_monitor = 287961000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; +extern static const int auryn_version; +extern static const int auryn_subversion; +extern static const int auryn_revision_number; +extern const char auryn_revision_suffix[]; +extern const char auryn_git_describe[]; +extern static const NeuronID tag_binary_spike_monitor; +extern static const NeuronID tag_binary_state_monitor; } From f8ff8b02a6aa9b54266c87396fe39234a3d99418 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 20:51:01 -0700 Subject: [PATCH 330/460] Removes global static variables --- src/auryn_version_info.cpp | 25 ------------------------- src/auryn_version_info.h | 20 -------------------- 2 files changed, 45 deletions(-) delete mode 100644 src/auryn_version_info.cpp delete mode 100644 src/auryn_version_info.h diff --git a/src/auryn_version_info.cpp b/src/auryn_version_info.cpp deleted file mode 100644 index 743eb661..00000000 --- a/src/auryn_version_info.cpp +++ /dev/null @@ -1,25 +0,0 @@ -#include "auryn_version_info.h" -#include "auryn_definitions.h" - -namespace auryn { - -/*! The current Auryn version/revision number. */ -static const int auryn_version=0; -static const int auryn_subversion=8; -static const int auryn_revision_number=0; - -/*! The current Auryn revision suffix. */ -const char auryn_revision_suffix[] = "-dev-eab7157"; - -/*! The current Auryn revision string from git describe */ -const char auryn_git_describe[] = "v0.8.0-dev-1-geab7157"; - -/*! \brief Tag for header in binary encoded spike monitor files. - * - * The first digits are 28796 for Auryn in - * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn - * version */ -static const NeuronID tag_binary_spike_monitor = 287960000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; -static const NeuronID tag_binary_state_monitor = 287961000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; -} - diff --git a/src/auryn_version_info.h b/src/auryn_version_info.h deleted file mode 100644 index 26f0dda6..00000000 --- a/src/auryn_version_info.h +++ /dev/null @@ -1,20 +0,0 @@ -#define AURYN_VERSION_INFO_H_ -#ifndef AURYN_VERSION_INFO_H_ - -#include -#include "auryn_definitions.h" - -namespace auryn { - -extern static const int auryn_version; -extern static const int auryn_subversion; -extern static const int auryn_revision_number; -extern const char auryn_revision_suffix[]; -extern const char auryn_git_describe[]; -extern static const NeuronID tag_binary_spike_monitor; -extern static const NeuronID tag_binary_state_monitor; - -} - -#endif /*AURYN_VERSION_INFO_H__*/ - From 39e8215759bc5c149488b99badd645104eadeb87 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 21:23:19 -0700 Subject: [PATCH 331/460] Adds AurynVersion class --- src/AurynVersion.cpp | 40 ++++++++++++++++++++++++++++ src/AurynVersion.h | 53 ++++++++++++++++++++++++++++++++++++++ src/BinarySpikeMonitor.cpp | 2 +- src/SpikingGroup.cpp | 2 +- src/System.cpp | 25 +++++++++--------- src/System.h | 5 +++- src/auryn_definitions.h | 1 - tools/aube.cpp | 13 ++++++---- 8 files changed, 120 insertions(+), 21 deletions(-) create mode 100644 src/AurynVersion.cpp create mode 100644 src/AurynVersion.h diff --git a/src/AurynVersion.cpp b/src/AurynVersion.cpp new file mode 100644 index 00000000..435f8b7c --- /dev/null +++ b/src/AurynVersion.cpp @@ -0,0 +1,40 @@ +/* +* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "AurynVersion.h" + +namespace auryn { + +int AurynVersion::version = 0; +int AurynVersion::subversion = 0; +int AurynVersion::revision_number = 0; +NeuronID AurynVersion::tag_binary_spike_monitor = 0; +NeuronID AurynVersion::tag_binary_state_monitor = 0; +string AurynVersion::revision_suffix = 0; +string AurynVersion::git_describe = 0; + +} + diff --git a/src/AurynVersion.h b/src/AurynVersion.h new file mode 100644 index 00000000..9fa111dc --- /dev/null +++ b/src/AurynVersion.h @@ -0,0 +1,53 @@ +/* +* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef AURYNVERSION_H_ +#define AURYNVERSION_H_ + +#include +#include "auryn_definitions.h" + +namespace auryn { + + /*! \brief Container class providing Auryn version number */ + class AurynVersion { + public: + static int version; + static int subversion; + static int revision_number; + static NeuronID tag_binary_spike_monitor; + static NeuronID tag_binary_state_monitor; + static string revision_suffix; + static string git_describe; + + AurynVersion() {}; + virtual ~AurynVersion() {}; + }; + +} + + +#endif /*AURYNVERSION_H_*/ diff --git a/src/BinarySpikeMonitor.cpp b/src/BinarySpikeMonitor.cpp index b3e5972d..cceb4678 100644 --- a/src/BinarySpikeMonitor.cpp +++ b/src/BinarySpikeMonitor.cpp @@ -82,7 +82,7 @@ void BinarySpikeMonitor::init(SpikingGroup * source, std::string filename, Neuro // encoding the version number struct SpikeEvent_type spikeData; spikeData.time = (AurynTime)(1.0/dt); - spikeData.neuronID = tag_binary_spike_monitor; + spikeData.neuronID = sys->build.tag_binary_spike_monitor; outfile.write((char*)&spikeData, sizeof(SpikeEvent_type)); } diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 133b42f5..377d4426 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -524,7 +524,7 @@ bool SpikingGroup::write_to_file(const char * filename) throw AurynOpenFileException(); } - outfile << "# Auryn SpikingGroup state file for n="<< get_rank_size() <<" neurons (ver. " << AURYNVERSION << ")" << std::endl; + outfile << "# Auryn SpikingGroup state file for n="<< get_rank_size() <<" neurons" << std::endl; outfile << "# Default field order (might be overwritten): "; for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; diff --git a/src/System.cpp b/src/System.cpp index c99ad76f..50b06dba 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -25,6 +25,7 @@ #include "System.h" + using namespace auryn; void System::init() { @@ -53,7 +54,7 @@ void System::init() { auryn::logger->msg(oss.str(),NOTIFICATION); oss << "Git repository revision " - << auryn_git_describe; + << build.git_describe; auryn::logger->msg(oss.str(),NOTIFICATION); oss.str(""); @@ -103,16 +104,16 @@ void System::init() { string System::get_version_string() { std::stringstream oss; - oss << auryn_version + oss << build.version << "." - << auryn_subversion; + << build.subversion; - if ( auryn_revision_number ) { + if ( build.revision_number ) { oss << "." - << auryn_revision_number; + << build.revision_number; } - oss << auryn_revision_suffix; + oss << build.revision_suffix; return oss.str(); } @@ -617,9 +618,9 @@ void System::save_network_state(std::string basename) auryn::logger->msg("Saving version information ...",VERBOSE); // save simulator version information - oa << auryn_version; - oa << auryn_subversion; - oa << auryn_revision_number; + oa << build.version; + oa << build.subversion; + oa << build.revision_number; auryn::logger->msg("Saving communicator information ...",VERBOSE); // save communicator information @@ -746,11 +747,11 @@ void System::load_network_state(std::string basename) bool pass_version = true; int tmp_version; ia >> tmp_version; - pass_version = pass_version && auryn_version==tmp_version; + pass_version = pass_version && build.version==tmp_version; ia >> tmp_version; - pass_version = pass_version && auryn_subversion==tmp_version; + pass_version = pass_version && build.subversion==tmp_version; ia >> tmp_version; - pass_version = pass_version && auryn_revision_number==tmp_version; + pass_version = pass_version && build.revision_number==tmp_version; if ( !pass_version ) { auryn::logger->msg("WARNING: Version check failed! Current Auryn version " diff --git a/src/System.h b/src/System.h index 94d95d02..23add4d9 100644 --- a/src/System.h +++ b/src/System.h @@ -27,13 +27,13 @@ #define SYSTEM_H_ #include "auryn_definitions.h" -#include "auryn_version_info.h" #include "AurynVector.h" #include "SpikingGroup.h" #include "Connection.h" #include "Monitor.h" #include "Checker.h" #include "SyncBuffer.h" +#include "AurynVersion.h" #include @@ -134,6 +134,9 @@ namespace auryn { /*! \brief Switch to turn output to quiet mode (no progress bar). */ bool quiet; + /*! \brief Version info */ + AurynVersion build; + /*! \brief The progressbar update interval in timesteps of dt. */ unsigned int progressbar_update_interval; diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index ab4552b5..f57a93c5 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -58,7 +58,6 @@ #include #include "Logger.h" -#include "auryn_version_info.h" namespace mpi = boost::mpi; diff --git a/tools/aube.cpp b/tools/aube.cpp index bdadd697..48a9e5ca 100644 --- a/tools/aube.cpp +++ b/tools/aube.cpp @@ -23,6 +23,7 @@ #include #include #include +#include "AurynVersion.h" using namespace auryn; @@ -68,15 +69,16 @@ void read_header( std::ifstream * input, double& dt, AurynLong num_events, doubl dt = 1.0/spike_data.time; // do some version checking + AurynVersion build; NeuronID tag = spike_data.neuronID; - if ( tag/1000 != tag_binary_spike_monitor/1000 ) { + if ( tag/1000 != build.tag_binary_spike_monitor/1000 ) { std::cerr << "Header not recognized. " "Not a binary Auryn monitor file?" << std::endl; exit(EXIT_FAILURE); } - if ( tag != tag_binary_spike_monitor ) { + if ( tag != build.tag_binary_spike_monitor ) { std::cerr << "# Warning: Either the Auryn version does not match " "the version of this tool or this is not a spike " "raster file." << std::endl; @@ -129,10 +131,11 @@ int main(int ac, char* av[]) } if (vm.count("version")) { + AurynVersion build; std::cout << "Auryn Binary Extract version " - << AURYNVERSION << "." - << AURYNSUBVERSION << "." - << AURYNREVISION << "\n"; + << build.version << "." + << build.subversion << "." + << build.revision_number << "\n"; return EXIT_SUCCESS; } From 06f54fe1533b01498b5050adfa7d4db83f0794b2 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 21:38:15 -0700 Subject: [PATCH 332/460] Updates AurynVersion class and mk_version_info --- src/AurynVersion.cpp | 42 +++++++++--------------------------------- src/AurynVersion.h | 22 ++++++++++++++++++++-- src/System.cpp | 19 ++----------------- src/System.h | 4 ---- src/mk_version_info.sh | 35 +++++++++++------------------------ 5 files changed, 42 insertions(+), 80 deletions(-) diff --git a/src/AurynVersion.cpp b/src/AurynVersion.cpp index 435f8b7c..295285a7 100644 --- a/src/AurynVersion.cpp +++ b/src/AurynVersion.cpp @@ -1,40 +1,16 @@ -/* -* -* Copyright 2014-2016 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - +// Please note that his file is created by mk_version_info.sh +// Changes to this file may thous be overwritten #include "AurynVersion.h" namespace auryn { -int AurynVersion::version = 0; -int AurynVersion::subversion = 0; -int AurynVersion::revision_number = 0; -NeuronID AurynVersion::tag_binary_spike_monitor = 0; -NeuronID AurynVersion::tag_binary_state_monitor = 0; -string AurynVersion::revision_suffix = 0; -string AurynVersion::git_describe = 0; + int AurynVersion::version = 0; + int AurynVersion::subversion = 8; + int AurynVersion::revision_number = 0; + NeuronID AurynVersion::tag_binary_spike_monitor = 287960000+100*0+10*8+1*0; //!< file signature for BinarySpikeMonitor files + NeuronID AurynVersion::tag_binary_state_monitor = 287961000+100*0+10*8+1*0; //!< file signature for BinaryStateMonitor files + std::string AurynVersion::revision_suffix = "-dev-39e8215"; + std::string AurynVersion::git_describe = "v0.8.0-dev-4-g39e8215"; } diff --git a/src/AurynVersion.h b/src/AurynVersion.h index 9fa111dc..dc7c6704 100644 --- a/src/AurynVersion.h +++ b/src/AurynVersion.h @@ -28,6 +28,7 @@ #define AURYNVERSION_H_ #include +#include #include "auryn_definitions.h" namespace auryn { @@ -40,11 +41,28 @@ namespace auryn { static int revision_number; static NeuronID tag_binary_spike_monitor; static NeuronID tag_binary_state_monitor; - static string revision_suffix; - static string git_describe; + static std::string revision_suffix; + static std::string git_describe; AurynVersion() {}; virtual ~AurynVersion() {}; + + std::string get_version_string() + { + std::stringstream oss; + oss << version + << "." + << subversion; + + if ( revision_number ) { + oss << "." + << revision_number; + } + + oss << revision_suffix; + + return oss.str(); + } }; } diff --git a/src/System.cpp b/src/System.cpp index 50b06dba..dd0f33df 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -49,10 +49,11 @@ void System::init() { std::stringstream oss; oss << "Auryn version " - << get_version_string() + << build.get_version_string() << " ( compiled " << __DATE__ << " " << __TIME__ << " )"; auryn::logger->msg(oss.str(),NOTIFICATION); + oss.str(""); oss << "Git repository revision " << build.git_describe; auryn::logger->msg(oss.str(),NOTIFICATION); @@ -101,22 +102,6 @@ void System::init() { } -string System::get_version_string() -{ - std::stringstream oss; - oss << build.version - << "." - << build.subversion; - - if ( build.revision_number ) { - oss << "." - << build.revision_number; - } - - oss << build.revision_suffix; - - return oss.str(); -} System::System() { diff --git a/src/System.h b/src/System.h index 23add4d9..c25f3851 100644 --- a/src/System.h +++ b/src/System.h @@ -155,10 +155,6 @@ namespace auryn { virtual ~System(); - - /*! \brief Return formatted version string. */ - string get_version_string(); - /*! \brief Sets the SpikingGroup ID used to display the rate estimate in the * progressbar * diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh index b0338f7b..f22963f3 100755 --- a/src/mk_version_info.sh +++ b/src/mk_version_info.sh @@ -15,34 +15,21 @@ AURYNREVISIONSUFFIXANDHASH="$AURYNREVISIONSUFFIX-$HASH" GITDESCRIBE=`git describe` -cat < auryn_version_info.h -#define AURYN_VERSION_INFO_H_ -#ifndef AURYN_VERSION_INFO_H_ +cat < AurynVersion.cpp +// Please note that his file is created by mk_version_info.sh +// Changes to this file may thous be overwritten +#include "AurynVersion.h" namespace auryn { -/*! The current Auryn version/revision number. - * Should be all ints. */ -const int auryn_version=$AURYNVERSION; -const int auryn_subversion=$AURYNSUBVERSION; -const int auryn_revision_number=$AURYNREVISIONNUMBER; - -/*! The current Auryn revision suffix. */ -const char auryn_revision_suffix[] = "$AURYNREVISIONSUFFIXANDHASH"; - -/*! The current Auryn revision string from git describe */ -const char auryn_git_describe[] = "$GITDESCRIBE"; - -/*! \\brief Tag for header in binary encoded spike monitor files. - * - * The first digits are 28796 for Auryn in - * phone dial notation. The remaining 4 digits encode type of binary file and the current Auryn - * version */ -const NeuronID tag_binary_spike_monitor = 287960000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; -const NeuronID tag_binary_state_monitor = 287961000+100*auryn_version+10*auryn_subversion+1*auryn_revision_number; + int AurynVersion::version = $AURYNVERSION; + int AurynVersion::subversion = $AURYNSUBVERSION; + int AurynVersion::revision_number = $AURYNREVISIONNUMBER; + NeuronID AurynVersion::tag_binary_spike_monitor = 287960000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinarySpikeMonitor files + NeuronID AurynVersion::tag_binary_state_monitor = 287961000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files + std::string AurynVersion::revision_suffix = "$AURYNREVISIONSUFFIXANDHASH"; + std::string AurynVersion::git_describe = "$GITDESCRIBE"; } -#endif /*AURYN_VERSION_INFO_H__*/ - EOF From a34a2bb2e34ab0b1ea7c8fccdaed2a7db7a4857d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 21:41:49 -0700 Subject: [PATCH 333/460] Updates Doxyfile --- src/AurynVersion.cpp | 4 ++-- src/Doxyfile | 2 +- src/mk_version_info.sh | 4 ++++ 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/AurynVersion.cpp b/src/AurynVersion.cpp index 295285a7..74e2226e 100644 --- a/src/AurynVersion.cpp +++ b/src/AurynVersion.cpp @@ -9,8 +9,8 @@ namespace auryn { int AurynVersion::revision_number = 0; NeuronID AurynVersion::tag_binary_spike_monitor = 287960000+100*0+10*8+1*0; //!< file signature for BinarySpikeMonitor files NeuronID AurynVersion::tag_binary_state_monitor = 287961000+100*0+10*8+1*0; //!< file signature for BinaryStateMonitor files - std::string AurynVersion::revision_suffix = "-dev-39e8215"; - std::string AurynVersion::git_describe = "v0.8.0-dev-4-g39e8215"; + std::string AurynVersion::revision_suffix = "-dev-06f54fe"; + std::string AurynVersion::git_describe = "v0.8.0-dev-5-g06f54fe"; } diff --git a/src/Doxyfile b/src/Doxyfile index 2cb4d532..7a85b34d 100644 --- a/src/Doxyfile +++ b/src/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = Auryn # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.8-dev +PROJECT_NUMBER = $(AURYNVERSIONSTRING) # Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that appears at the top of each page and should give viewer a quick idea about the purpose of the project. Keep the description short. diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh index f22963f3..b8f4c639 100755 --- a/src/mk_version_info.sh +++ b/src/mk_version_info.sh @@ -33,3 +33,7 @@ namespace auryn { } EOF + + +export AURYNVERSIONSTRING=$AURYNREVISIONSUFFIXANDHASH +doxygen From 0610aa12f83f90b81fec577ed9c9781eb647d844 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 21:44:38 -0700 Subject: [PATCH 334/460] Moves script lines to mk_doxygen --- src/mk_version_info.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh index b8f4c639..e98d0992 100755 --- a/src/mk_version_info.sh +++ b/src/mk_version_info.sh @@ -35,5 +35,3 @@ namespace auryn { EOF -export AURYNVERSIONSTRING=$AURYNREVISIONSUFFIXANDHASH -doxygen From e54aacd134e1e85e900adaea526e7ec89a861084 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 4 Jul 2016 22:37:00 -0700 Subject: [PATCH 335/460] Adds Doxystring --- src/auryn_global.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/auryn_global.h b/src/auryn_global.h index a7e1767f..272d3418 100644 --- a/src/auryn_global.h +++ b/src/auryn_global.h @@ -33,8 +33,13 @@ namespace auryn { + /*! \brief Global pointer to instance of System which needs to be initialized in every simulation main program. */ extern System * sys; + + /*! \brief Global pointer to instance of Logger which needs to be initialized in every simulation main program. */ extern Logger * logger; + + /*! \brief Global pointer to instance of mpi::communicator which needs to be initialized in every simulation main program. */ extern mpi::communicator * communicator; } From dc11ba7d01babfcf454f9a43d1e00570e1f354dd Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 4 Jul 2016 23:17:47 -0700 Subject: [PATCH 336/460] Improves documentation of WeightMonitor --- src/WeightMonitor.cpp | 2 +- src/WeightMonitor.h | 73 +++++++++++++++++++++++++++++++++---------- 2 files changed, 57 insertions(+), 18 deletions(-) diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 8037a2e5..56df7bf7 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -166,7 +166,7 @@ void WeightMonitor::add_equally_spaced(NeuronID number, NeuronID z) auryn::logger->msg(oss.str(),VERBOSE); } -void WeightMonitor::load_data_range( NeuronID i, NeuronID j ) +void WeightMonitor::load_data_range( AurynLong i, AurynLong j ) { if ( !src->get_destination()->evolve_locally() ) return; diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index dacd2aac..27a363ed 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -56,16 +56,8 @@ enum PatternMode { ALLTOALL, ASSEMBLIES_ONLY}; /*! \brief Monitors the evolution of a single or a set of weights * - * This class can be used to perform online monitoring synaptic weights. By default it records a single synapse at position i,j - * in the designated Connection. This behaviour can be changed by specifying recordingtype=DATARANGE. The parameters i,j are then - * interpreted as range i..j in the data array of the source Connection. Note that in DATARANGE mode the Monitor could in principle - * also monitor zero connections. However in SINGLE it records only non-zero elements. - * \param system The obvious system class - * \param source The connection object to record from - * \param i Parameter i (either row position of synapse in WeightMatrix or start index in data array depending on mode) - * \param j Parameter j (either col position of synapse in WeightMatrix or stop index in data array depending on mode) - * \param filename The file to record to - * \param interval The sampling interval in simulation interval (1s default) + * This class perform online monitoring of synaptic weights in a Connection. The class supports different recording modes + * for single individual weights or multiple weights. Output is written to a human readable text file. */ class WeightMonitor : protected Monitor { @@ -86,18 +78,61 @@ class WeightMonitor : protected Monitor std::vector * load_patfile( string filename, int maxpat ); public: + /*! \brief Default constructor + * + * This initializes the WeightMonitor and specifies and output file and a sampling interval. + * Per default WeightMonitor is in multi recording mode. That means it maintains a list of pointers to weights which you would like + * to monitor. This list is initally empty and needs to be populated after initializating with the appropriate add ... functions. + * \param source The connection object to record from + * \param filename The file to record to + * \param interval The sampling interval in simulation interval in seconds + * */ WeightMonitor(SparseConnection * source, string filename, AurynDouble interval=10.0); + + /*! \brief Specific weight matrix constructor + * + * This initializes the WeightMonitor and specifies and output file and a sampling interval. + * The constructor does not specify which weights to monitor. + * interpreted as range i..j in the data array of the source Connection. Note that in DATARANGE mode the Monitor could in principle + * also monitor zero connections. However in SINGLE it records only non-zero elements. + * \param source The connection object to record from + * \param filename The file to record to + * \param m A pointer to the weight matrix to record from + * \param interval The sampling interval in simulation interval in seconds + * */ WeightMonitor(SparseConnection * source, ForwardMatrix * m, string filename, AurynDouble interval=10.0); + + /*! \brief Single weight constructor + * + * This initializes the WeightMonitor and specifies and output file and a sampling interval. + * It moreover puts the WeightMonitor in RecordingMode mode SINGLE in which it records a single synaptic connection + * specified by i and j. + * If mode is set to DATARANGE instead, the arguments i and j are instead interpreted as + * range i..j in the data index array of the source Connection. + * \param source The connection object to record from + * \param i Parameter i (either row position of synapse in WeightMatrix or start index in data array depending on mode) + * \param j Parameter j (either col position of synapse in WeightMatrix or stop index in data array depending on mode) + * \param filename The file to record to + * \param interval The sampling interval in simulation interval (1s default) + * \param mode The recording mode (one of RecordingMode datatype) + * \param z The z state the complex matrix state to record from + * */ WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynDouble interval=10.0, RecordingMode mode = SINGLE, NeuronID z = 0); + virtual ~WeightMonitor(); + + /*! \brief propagate function used by System class internally */ void propagate(); + /*! \brief Sets target matrix to read from. */ void set_mat(ForwardMatrix * m); - /*! Adds a single element to the recording list which is identified by its data index. */ + /*! \brief Adds a single element to the recording list which is identified by its data index and z-state. + * \param index The index in the data array of this sparse matrix. + * \param z The id of the complex matrix state to record from. */ void add_to_list_by_data_index( AurynLong index, StateID z = 0 ); - /*! Adds a single element to the recording list which is identified by a pointer. */ + /*! \brief Adds a single element to the recording list which is identified by a pointer. */ void add_to_list( AurynWeight * ptr ); /*! \brief Adds a single element identified matrix coordinates (row,col,z) to the recording list. */ @@ -113,13 +148,15 @@ class WeightMonitor : protected Monitor /*! \brief Adds number of elements to the recording list that are equally spaced in the * data vector of SimpleMatrix. * - * This effectively corresponds to number random - * elements if a random matrix is used. The second argument can be used to - * specify which complex synapse state should be used for this operation. + * This effectively corresponds to a number of random + * connection matrix elements (if a random matrix is used). + * The second argument can be used to + * specify which complex synapse state should be used for this operation + * when complex synapses are used. */ void add_equally_spaced( NeuronID number, NeuronID z=0 ); - /*! Adds connections inside a pattern and between patterns. Since such lists + /*! \brief Adds connections inside a pattern and between patterns. Since such lists * can become large quickly the amount of patterns and connections for each * pattern to be monitored can be limited by maxcon and maxpat. * \param filename The filename of the .pat file @@ -130,7 +167,9 @@ class WeightMonitor : protected Monitor */ void load_pattern_connections(string filename, int maxcon = 5, int maxpat = 10, PatternMode patmod = ALLTOALL); void load_pattern_connections(string filename_pre, string filename_post, int maxcon = 5, int maxpat = 10, PatternMode patmod = ALLTOALL); - void load_data_range(NeuronID i, NeuronID j); + + /*! \brief Adds connections from a given range in the sparse matrix data array */ + void load_data_range(AurynLong i, AurynLong j); }; } From d8bb08073ee3fcd0509c2d473d2321068db1c985 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 4 Jul 2016 23:23:00 -0700 Subject: [PATCH 337/460] Fixes typo --- src/WeightMonitor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index 27a363ed..d5910d04 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -146,7 +146,7 @@ class WeightMonitor : protected Monitor void add_to_list( std::vector vec , string label = ""); /*! \brief Adds number of elements to the recording list that are equally spaced in the - * data vector of SimpleMatrix. + * data vector of the connection matrix. * * This effectively corresponds to a number of random * connection matrix elements (if a random matrix is used). From 17b2250dda2a6fa670e113c5eab2268b5ed62d45 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 4 Jul 2016 23:32:40 -0700 Subject: [PATCH 338/460] Updates doxystring in SparseConnection --- src/SparseConnection.cpp | 4 ++++ src/SparseConnection.h | 51 +++++++++++++++++++++++++--------------- 2 files changed, 36 insertions(+), 19 deletions(-) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index 938f26c3..e8542e94 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -199,6 +199,10 @@ void SparseConnection::set_max_weight(AurynWeight maximum_weight) } void SparseConnection::random_data(AurynWeight mean, AurynWeight sigma) +{ +} + +void SparseConnection::random_data_normal(AurynWeight mean, AurynWeight sigma) { std::stringstream oss; oss << get_log_name() << "randomizing non-zero connections (gaussian) with mean=" << mean << " sigma=" << sigma ; diff --git a/src/SparseConnection.h b/src/SparseConnection.h index 6ef7d527..ccfc7687 100644 --- a/src/SparseConnection.h +++ b/src/SparseConnection.h @@ -55,7 +55,7 @@ typedef ComplexMatrix ForwardMatrix; /*! \brief The base class to create sparse random connections * * This direct derivative of the virtual Connection type is the most commonly used - * class to create connections in Auryn. It makes use of the SimpleMatrix container + * class to create connections in Auryn. It makes use of the ComplexMatrix container * to memory efficiently store synaptic weights and to make them easily accessible * in a feed-forward manner for spike propagation. * @@ -108,40 +108,43 @@ class SparseConnection : public Connection void free(); - /*! Allocates memory for a given sparse connectivity matrix. Usually SimpleMatrix or ComplexMatrix */ + /*! Allocates memory for a given sparse connectivity matrix. Usually ComplexMatrix or ComplexMatrix */ void allocate(AurynLong bufsize); public: - /*! Switch that toggles for the load_patterns function whether or + /*! \brief Switch that toggles for the load_patterns function whether or * not to use the intensity (gamma) value. Default is false. */ bool patterns_ignore_gamma; - /*! The every_pre parameter allows to skip presynaptically over pattern IDs + /*! \brief The every_pre parameter allows to skip presynaptically over pattern IDs * when loading patterns. Default is 1. This can be useful to * when loading patterns into the exc->inh connections and * there significantly less inhibitory cells than exc ones. */ NeuronID patterns_every_pre; - /*! The every_post parameter allows to skip postsynaptically over pattern IDs + /*! \brief The every_post parameter allows to skip postsynaptically over pattern IDs * when loading patterns. Default is 1. This can be useful to * when loading patterns into the exc->inh connections and * there significantly less inhibitory cells than exc ones. */ NeuronID patterns_every_post; - /*! Switch that toggles the behavior when loading a pattern to + /*! \brief Switch that toggles the behavior when loading a pattern to * wrap neuron IDs back onto existing cells via the modulo * function. */ bool wrap_patterns; - /*! A pointer that points per default to the ComplexMatrix + /*! \brief A pointer that points per default to the ComplexMatrix * that stores the connectinos. */ ForwardMatrix * w; /*! \brief Empty constructor which should not be used -- TODO should be deprecated at some point. */ SparseConnection(); + /*! \brief Load from wmat file constructor which should not be used -- TODO should be deprecated at some point. */ SparseConnection(const char * filename); + + /*! \brief Constructor for manual filling. */ SparseConnection(NeuronID rows, NeuronID cols); SparseConnection(SpikingGroup * source, NeuronGroup * destination, TransmitterType transmitter = GLUT); @@ -152,7 +155,9 @@ class SparseConnection : public Connection * The constructor takes the weight and sparseness as secondary arguments. The latter allows Auryn to * allocate the approximately right amount of memory inadvance. It is good habit to specify at time of initialization also * a connection name and the transmitter type. Both can be set separately with set_transmitter and set_name if the function call gets - * too long and ugly. A connection name is often handy during debugging and the transmitter type is a crucial for obvious resons ... */ + * too long and ugly. + * A connection name is often handy during debugging and the transmitter type is a crucial for obvious resons ... + * */ SparseConnection( SpikingGroup * source, NeuronGroup * destination, @@ -166,18 +171,24 @@ class SparseConnection : public Connection * except source and destination from another connection instance. */ SparseConnection(SpikingGroup * source, NeuronGroup * destination, SparseConnection * con, string name="SparseConnection"); + /*! \brief Sparse block constructor + * + * This constructor initializes the connection with random sparse weights, but only fills a "block" as specified instead of the + * entire matrix. */ SparseConnection(SpikingGroup * source, NeuronGroup * destination, AurynWeight weight, AurynDouble sparseness, NeuronID lo_row, NeuronID hi_row, NeuronID lo_col, NeuronID hi_col, TransmitterType transmitter=GLUT); /*! \brief The default destructor */ virtual ~SparseConnection(); - /*! \brief Is used whenever memory has to be allocated manually. Automatically adjust for number of ranks and for security margin */ + /*! \brief Is used whenever memory has to be allocated manually. Automatically adjusts for number of ranks and for security margin. */ void allocate_manually(AurynLong expected_size); - /*! \brief This function estimates the required size of the nonzero entry buffer. */ + /*! \brief This function estimates the required size of the nonzero entry buffer. + * + * It's typicall used internally or when you know what you are doing. */ AurynLong estimate_required_nonzero_entires( AurynLong nonzero , double sigma = 5.); - /*! \brief This function seeds the generator for all random fill operatios */ + /*! \brief This function seeds the pseudo random number generator for all random fill operatios. */ void seed(NeuronID randomseed); /*! \brief Returns weight value of a given element if it exists */ @@ -198,21 +209,21 @@ class SparseConnection : public Connection /*! \brief Sets a list of connection to value if they exists */ virtual void set(std::vector element_list, AurynWeight value); - /*! \brief Synonym for random_data_lognormal */ + /*! \brief Synonym for random_data */ void random_data(AurynWeight mean, AurynWeight sigma); - /*! \brief Initialize with random binary at wlo and whi. - * \param wlo The lower weight value. - * \param whi The higher weight value. - * \param prob the probability for the higher value. */ - void init_random_binary(AurynFloat prob=0.5, AurynWeight wlo=0.0, AurynWeight whi=1.0); - /*! \brief Set weights of all existing connections randomly using a normal distrubtion */ void random_data_normal(AurynWeight mean, AurynWeight sigma); /*! \brief Set weights of all existing connections randomly using a lognormal distribution */ void random_data_lognormal(AurynWeight m, AurynWeight s); + /*! \brief Initialize with random binary at wlo and whi. + * \param wlo The lower weight value. + * \param whi The higher weight value. + * \param prob the probability for the higher value. */ + void init_random_binary(AurynFloat prob=0.5, AurynWeight wlo=0.0, AurynWeight whi=1.0); + /*! \brief Sets weights in cols to the same value drewn from a Gaussian distribution */ void random_col_data(AurynWeight mean, AurynWeight sigma); @@ -243,6 +254,7 @@ class SparseConnection : public Connection * * Set dist_optimized to false and seed all ranks the same to get the same * matrix independent of the number of ranks. + * Called internally or when you know what you are doing. */ void connect_block_random(AurynWeight weight, AurynDouble sparseness, @@ -254,7 +266,8 @@ class SparseConnection : public Connection /*! \brief Finalizes connection after random or manual initialization of the weights. * - * Essentially pads zeros or non-existing elements at the end of ComplexMatrix. */ + * Essentially pads zeros or non-existing elements at the end of ComplexMatrix. + * Called interally or after manually filling matrices. */ virtual void finalize(); /*! \brief Pushes a single element to the ComplexMatrix. From ea7300aa2b4964d611e4b1449b07d986a4769e47 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 5 Jul 2016 18:48:06 -0700 Subject: [PATCH 339/460] Fixes bug in random init function --- src/SparseConnection.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index e8542e94..b4deb3c1 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -200,6 +200,7 @@ void SparseConnection::set_max_weight(AurynWeight maximum_weight) void SparseConnection::random_data(AurynWeight mean, AurynWeight sigma) { + random_data_normal(mean, sigma); } void SparseConnection::random_data_normal(AurynWeight mean, AurynWeight sigma) From d6590f6a231f90b5439b8e50d90df6ef2d4e12ef Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 6 Jul 2016 09:34:15 -0700 Subject: [PATCH 340/460] Updates and moves doxygen mainpage --- src/mainpage.dox | 8 -------- src/mainpage.md | 7 +++++++ 2 files changed, 7 insertions(+), 8 deletions(-) delete mode 100644 src/mainpage.dox create mode 100644 src/mainpage.md diff --git a/src/mainpage.dox b/src/mainpage.dox deleted file mode 100644 index 238d6bc6..00000000 --- a/src/mainpage.dox +++ /dev/null @@ -1,8 +0,0 @@ -/** -\mainpage AurynDoc Mainpage - -For documentation and examples please see -http://www.fzenke.net/auryn/ for more details. - - -*/ diff --git a/src/mainpage.md b/src/mainpage.md new file mode 100644 index 00000000..976741fa --- /dev/null +++ b/src/mainpage.md @@ -0,0 +1,7 @@ +\mainpage AurynDoc Mainpage + +This Doxygen generated static web page contains detailed information on the API and usage of Auryn classes. + +High-level documentation and examples are maintained separately in the wiki at +http://www.fzenke.net/auryn/ + From b247706440ad650acfeb36967ceda4dad5f7dd94 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 6 Jul 2016 09:34:43 -0700 Subject: [PATCH 341/460] Adapts AIFGroup to new AurynVector interface Still needs testing --- src/AIFGroup.cpp | 46 ++++++++++++++++++++++------------------------ 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/src/AIFGroup.cpp b/src/AIFGroup.cpp index 8b4698b7..3b67b64a 100644 --- a/src/AIFGroup.cpp +++ b/src/AIFGroup.cpp @@ -48,7 +48,7 @@ void AIFGroup::init() e_rev = -80e-3; thr_rest = -50e-3; dthr = 100e-3; - tau_thr = 2e-3; + tau_thr = 5e-3; tau_mem = 20e-3; tau_ampa = 5e-3; tau_gaba = 10e-3; @@ -112,27 +112,26 @@ AIFGroup::~AIFGroup() void AIFGroup::integrate_linear_nmda_synapses() { // decay of ampa and gaba channel, i.e. multiply by exp(-dt/tau) - auryn_vector_float_scale(scale_ampa,g_ampa); - auryn_vector_float_scale(scale_gaba,g_gaba); - auryn_vector_float_scale(scale_adapt1,g_adapt1); + g_ampa->scale(scale_ampa); + g_gaba->scale(scale_gaba); + g_adapt1->scale(scale_adapt1); // compute dg_nmda = (g_ampa-g_nmda)*dt/tau_nmda and add to g_nmda - AurynFloat mul_nmda = dt/tau_nmda; - auryn_vector_float_saxpy(mul_nmda,g_ampa,g_nmda); - auryn_vector_float_saxpy(-mul_nmda,g_nmda,g_nmda); + const AurynFloat mul_nmda = dt/tau_nmda; + g_nmda->saxpy(mul_nmda, g_ampa); + g_nmda->saxpy(-mul_nmda, g_nmda); // excitatory - auryn_vector_float_copy(g_ampa,t_exc); - auryn_vector_float_scale(-A_ampa,t_exc); - auryn_vector_float_saxpy(-A_nmda,g_nmda,t_exc); - auryn_vector_float_mul(t_exc,mem); + t_exc->copy(g_ampa); + t_exc->scale(-A_ampa); + t_exc->saxpy(-A_nmda,g_nmda); + t_exc->mul(mem); // inhibitory - auryn_vector_float_copy(g_gaba,t_leak); // using t_leak as temp here - auryn_vector_float_saxpy(1,g_adapt1,t_leak); - auryn_vector_float_copy(mem,t_inh); - auryn_vector_float_add_constant(t_inh,-e_rev); - auryn_vector_float_mul(t_inh,t_leak); + t_leak->copy(g_gaba); // using t_leak as temp here + t_leak->saxpy(1.0, g_adapt1); + t_inh->diff(mem,e_rev); + t_inh->mul(t_leak); } /// Integrate the internal state @@ -142,22 +141,21 @@ void AIFGroup::integrate_linear_nmda_synapses() void AIFGroup::integrate_membrane() { // moving threshold - auryn_vector_float_scale(scale_thr,thr); + thr->scale(scale_thr); // leak - auryn_vector_float_copy(mem,t_leak); - auryn_vector_float_add_constant(t_leak,-e_rest); + t_leak->diff(mem,e_rest); // membrane dynamics - AurynFloat mul_tau_mem = dt/tau_mem; - auryn_vector_float_saxpy(mul_tau_mem,t_exc,mem); - auryn_vector_float_saxpy(-mul_tau_mem,t_inh,mem); - auryn_vector_float_saxpy(-mul_tau_mem,t_leak,mem); + const AurynFloat mul_tau_mem = dt/tau_mem; + mem->saxpy(mul_tau_mem,t_exc); + mem->saxpy(-mul_tau_mem,t_inh); + mem->saxpy(-mul_tau_mem,t_leak); } void AIFGroup::check_thresholds() { - auryn_vector_float_clip( mem, e_rev ); + mem->clip( e_rev, 0.0 ); AurynState * thr_ptr = thr->data; for ( AurynState * i = mem->data ; i != mem->data+get_rank_size() ; ++i ) { // it's important to use rank_size here otherwise there might be spikes from units that do not exist From 75d8e2aa3021806355a97b6b45e403007b737759 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 6 Jul 2016 09:38:52 -0700 Subject: [PATCH 342/460] Adds exp() to AurynVector.h --- src/AurynVector.h | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 65db153c..f47297c2 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -67,6 +67,16 @@ namespace auryn { #endif } + /*! \brief Computes approximation of exp(x) via series approximation up to order n. */ + T fast_exp(T x, const int n=5) + { + T sum = 1.0f; // initialize sum of series + + for (int i = n - 1; i > 0; --i ) + sum = 1 + x * sum / i; + + return sum; + } /*! \brief Checks if vector size matches to this instance * * Check only enabled if NDEBUG is not defined.*/ @@ -173,6 +183,15 @@ namespace auryn { } } + /*! \brief Computes an approximation of exp(x) for each vector element. */ + void exp() + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = fast_exp(data[i]); + } + } + + /*! \brief Takes the square root of each element * * */ @@ -466,11 +485,11 @@ namespace auryn { - /*! \brief Derived AurynVectorFloat class for performance computation + /*! \brief Default AurynVectorFloat class for performance computation * - * This class inherits the template AurynVector and overwrites - * some of the functions defined in the template with SIMD intrinsics - * for higher performance. + * This class derives from AurynVector and overwrites + * some performance critical member functions defined in the template + * with SIMD intrinsics for higher performance. */ class AurynVectorFloat : public AurynVector { From f3ca6d1a6c96a46438c7ba834dabcf2dbd8a80ed Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 6 Jul 2016 09:39:31 -0700 Subject: [PATCH 343/460] Makes a variable const in IFGroup --- src/IFGroup.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/IFGroup.cpp b/src/IFGroup.cpp index ace04dc3..280d5662 100644 --- a/src/IFGroup.cpp +++ b/src/IFGroup.cpp @@ -60,7 +60,6 @@ void IFGroup::init() t_leak = get_state_vector("t_leak"); t_exc = get_state_vector("t_exc"); t_inh = get_state_vector("t_inh"); - clear(); } @@ -118,7 +117,7 @@ void IFGroup::integrate_membrane() t_leak->diff(mem,e_rest); // membrane dynamics - AurynFloat mul_tau_mem = dt/tau_mem; + const AurynFloat mul_tau_mem = dt/tau_mem; mem->saxpy(mul_tau_mem,t_exc); mem->saxpy(-mul_tau_mem,t_inh); mem->saxpy(-mul_tau_mem,t_leak); From 60fbff7ec9a08f16aa5c7f1efa645a3471fd8567 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 6 Jul 2016 09:56:15 -0700 Subject: [PATCH 344/460] Updates doxystring --- src/AurynVector.h | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index f47297c2..24436880 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -33,14 +33,17 @@ namespace auryn { /*! \brief Default Auryn vector template * - * This essentially copies the core of GSL vector functionality and makes it a class for easier handling. + * This class implements the base vector class for Auryn. + * Neuronal or synaptic state variables are stored as AurynVectors. * For performance reasons, time critical functions of this template have to be reimplemented in derived - * classes with a specific template parameter T. For instance I will always provide a derived type AurynVectorFloat - * which will per default be synonymous to AurynStateVector which implements SSE instructions for labour - * intensive operations on the vectors. + * classes with a specific template parameter T. For instance I will always provide a derived type AurynVectorFloat (T=float) + * which per default is synonymous to AurynStateVector which implements SSE instructions for labour + * intensive operations on the vectors. When using the AurynStateVector in NeuronGroups etc this will speed up computation + * performance automatically. * Note, that all Auryn vectors should initialized with multiple of 4 elements (later that number might change) when - * we add AVX support to the code. If you use get_vector_size functions from SpikingGroup this will automatically - * be taken care of... + * we add AVX support to the code. This is done automatically \if you rely on the get_state_vector function implemented in SpikingGroup. + * Alternatively, if you use get_vector_size functions from SpikingGroup this will automatically + * be taken care of too. * */ template class AurynVector { From b04565c585b56e80d54b3112d73dd0cd12c4eec4 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 6 Jul 2016 13:41:41 -0700 Subject: [PATCH 345/460] Fixes bug in TripletConnection netstate functions --- src/TripletConnection.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/TripletConnection.h b/src/TripletConnection.h index a908ca66..6fb5e07d 100644 --- a/src/TripletConnection.h +++ b/src/TripletConnection.h @@ -52,13 +52,12 @@ class TripletConnection : public DuplexConnection void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) { DuplexConnection::virtual_serialize(ar,version); - ar & *w; } void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) { DuplexConnection::virtual_serialize(ar,version); - ar & *w; + DuplexConnection::compute_reverse_matrix(); // just in case the buffer location has changed } void init(AurynFloat tau_hom, AurynFloat eta, AurynFloat kappa, AurynFloat maxweight); From cdc9035aba9360c60902e0f0fe39ac8a92f0bc6e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 6 Jul 2016 16:40:47 -0700 Subject: [PATCH 346/460] Moves Doxyfile and starts adding examples to doc --- src/Doxyfile => Doxyfile | 6 +++--- examples/sim_epsp.cpp | 5 +++++ examples/sim_epsp_stp.cpp | 9 +++++++++ 3 files changed, 17 insertions(+), 3 deletions(-) rename src/Doxyfile => Doxyfile (99%) diff --git a/src/Doxyfile b/Doxyfile similarity index 99% rename from src/Doxyfile rename to Doxyfile index 7a85b34d..09e9f55f 100644 --- a/src/Doxyfile +++ b/Doxyfile @@ -42,14 +42,14 @@ PROJECT_BRIEF = "Plastic Spiking Neural Network Simulator" # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. -PROJECT_LOGO = ../doc/auryn_logo_small.png +PROJECT_LOGO = ./doc/auryn_logo_small.png # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. -OUTPUT_DIRECTORY = ../doc +OUTPUT_DIRECTORY = ./doc # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output @@ -598,7 +598,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = +INPUT = ./src ./examples/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is diff --git a/examples/sim_epsp.cpp b/examples/sim_epsp.cpp index 1cd1c22c..98c04231 100644 --- a/examples/sim_epsp.cpp +++ b/examples/sim_epsp.cpp @@ -22,6 +22,11 @@ #define N 1 +/*!\file + * + * \brief Example simulation which simulates one Poisson input onto a single postsynaptic neuron and records the membrane potential + * */ + using namespace auryn; namespace po = boost::program_options; diff --git a/examples/sim_epsp_stp.cpp b/examples/sim_epsp_stp.cpp index a8c38198..1f9d2528 100644 --- a/examples/sim_epsp_stp.cpp +++ b/examples/sim_epsp_stp.cpp @@ -22,6 +22,15 @@ #define N 1 +/*!\file + * + * \brief Example simulation which simulates one Poisson input with short-term plasticity onto a single + * postsynaptic neuron and records the membrane potential + * + * As opposed to sim_epsp.cpp this examples uses a connection with short-term plasticity (Tsodyks Markram model) + * which is implemented in STPConnection. + * */ + using namespace auryn; namespace po = boost::program_options; From 6f3005feeaaaefdde3adc277e9f6d05cfb8a86df Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 6 Jul 2016 16:46:12 -0700 Subject: [PATCH 347/460] Moves Doxyfile and all doc related files to /doc Conflicts: doc/Doxyfile doc/doxygen_footer.html --- Doxyfile => doc/Doxyfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename Doxyfile => doc/Doxyfile (99%) diff --git a/Doxyfile b/doc/Doxyfile similarity index 99% rename from Doxyfile rename to doc/Doxyfile index 09e9f55f..ad9a8ffa 100644 --- a/Doxyfile +++ b/doc/Doxyfile @@ -42,14 +42,14 @@ PROJECT_BRIEF = "Plastic Spiking Neural Network Simulator" # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. -PROJECT_LOGO = ./doc/auryn_logo_small.png +PROJECT_LOGO = ./auryn_logo_small.png # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. -OUTPUT_DIRECTORY = ./doc +OUTPUT_DIRECTORY = . # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output @@ -598,7 +598,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = ./src ./examples/ +INPUT = ../src ../examples/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is From a5ded08e133a8c63e58d33da370ca67c342b54f6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 6 Jul 2016 17:22:28 -0700 Subject: [PATCH 348/460] Adds doxystrings to example sims --- examples/sim_isp_big.cpp | 21 +++++++++++++++++++-- examples/sim_isp_orig.cpp | 23 +++++++++++++++++++---- 2 files changed, 38 insertions(+), 6 deletions(-) diff --git a/examples/sim_isp_big.cpp b/examples/sim_isp_big.cpp index 8b8fb5f8..5fa28c3c 100644 --- a/examples/sim_isp_big.cpp +++ b/examples/sim_isp_big.cpp @@ -20,8 +20,25 @@ #include "auryn.h" -#define NE 160000 -#define NI 40000 +/*!\file + * + * \brief This simulation illustrates inhibitory synaptic plasticity as modeled + * in Vogels et al. (2011) in a larger 200k cell network + * + * This simulation illustrates inhibitory synapitc plasticity as modeled in our + * paper: Vogels, T.P., Sprekeler, H., Zenke, F., Clopath, C., and Gerstner, W. + * (2011). Inhibitory Plasticity Balances Excitation and Inhibition in Sensory + * Pathways and Memory Networks. Science 334, 1569–1573. + * + * Note that this is a parallel implementation of this network which requires a + * larger axonal delay than in the original paper. In this example the delay is + * 0.8ms which corresponds to Auryn's MINDELAY. + * + * */ + + +#define NE 160000 //!< Number of excitatory neurons +#define NI 40000 //!< Number of inhibitory neurons using namespace auryn; namespace po = boost::program_options; diff --git a/examples/sim_isp_orig.cpp b/examples/sim_isp_orig.cpp index 4aba4438..c8bdb277 100644 --- a/examples/sim_isp_orig.cpp +++ b/examples/sim_isp_orig.cpp @@ -20,10 +20,25 @@ #include "auryn.h" -#define NE 8000 -#define NI 2000 -#define NP 1000 -#define NSTIM 20 +/*!\file + * + * \brief This simulation illustrates inhibitory synaptic plasticity as modeled + * in Vogels et al. (2011) + * + * This simulation illustrates inhibitory synapitc plasticity as modeled in our + * paper: Vogels, T.P., Sprekeler, H., Zenke, F., Clopath, C., and Gerstner, W. + * (2011). Inhibitory Plasticity Balances Excitation and Inhibition in Sensory + * Pathways and Memory Networks. Science 334, 1569–1573. + * + * Note that this is a parallel implementation of this network which requires a + * larger axonal delay than in the original paper. In this example the delay is + * 0.8ms which corresponds to Auryn's MINDELAY. + * + * */ + +#define NE 8000 //!< Number of excitatory neurons +#define NI 2000 //!< Number of inhibitory neurons +#define NP 1000 //!< Number of Poisson input neurons using namespace auryn; namespace po = boost::program_options; From 1b42a31bdbc484c4c47970702ddbcc7df23c5eb6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 2 Jul 2016 10:46:48 -0700 Subject: [PATCH 349/460] Updates doxystring --- src/AllToAllConnection.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/AllToAllConnection.h b/src/AllToAllConnection.h index 6d6e53b5..331f4059 100644 --- a/src/AllToAllConnection.h +++ b/src/AllToAllConnection.h @@ -43,14 +43,13 @@ namespace auryn { -/*! \brief Provides a unity matrix like connectivity */ +/*! \brief Provides all to all connectivity */ class AllToAllConnection : public Connection { private: SpikeContainer * spikes; void init(AurynWeight weight); AurynWeight connection_weight; - NeuronID lo_src,hi_src,lo_dst,hi_dst; protected: void free(); From 1c9f29d24355c531788c4da3ed6ea18174433946 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 10 Jul 2016 22:05:09 -0700 Subject: [PATCH 350/460] Adds logger output --- src/SpikingGroup.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 377d4426..bc6439ee 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -199,6 +199,10 @@ void SpikingGroup::free() for ( std::map::const_iterator iter = state_vectors.begin() ; iter != state_vectors.end() ; ++iter ) { + std::stringstream oss; + oss << "Freeing " << get_name() + << ": " << iter->first; + auryn::logger->msg(oss.str(),VERBOSE); if ( iter->first[0] == '_' ) continue; // do not process volatile state_vector delete iter->second; } From b89db19b1e67afbce8ec26e3f6e2f45bb78cbb72 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 10 Jul 2016 23:01:35 -0700 Subject: [PATCH 351/460] Fixes mismatched new [] / delete [] in SyncBuffer --- src/SyncBuffer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SyncBuffer.cpp b/src/SyncBuffer.cpp index 5ea4d7dd..3ca59906 100644 --- a/src/SyncBuffer.cpp +++ b/src/SyncBuffer.cpp @@ -36,9 +36,9 @@ SyncBuffer::SyncBuffer( mpi::communicator * com ) SyncBuffer::~SyncBuffer( ) { - delete pop_offsets; - delete pop_delta_spikes; - delete last_spike_pos; + delete [] pop_offsets; + delete [] pop_delta_spikes; + delete [] last_spike_pos; } void SyncBuffer::init() From 018e346573dbc81da81cf7d877d251e6f8f777e7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 10 Jul 2016 23:14:31 -0700 Subject: [PATCH 352/460] Fixes datatype in WeightMonitor --- src/WeightMonitor.cpp | 2 +- src/WeightMonitor.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 56df7bf7..ed381b22 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -38,7 +38,7 @@ WeightMonitor::WeightMonitor(SparseConnection * source, ForwardMatrix * m, std:: set_mat(m); } -WeightMonitor::WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, std::string filename, AurynDouble interval, RecordingMode mode, NeuronID z ) : Monitor(filename) +WeightMonitor::WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, std::string filename, AurynDouble interval, RecordingMode mode, StateID z ) : Monitor(filename) { init(source,i,j,filename,interval/dt); diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index d5910d04..1d1ffa22 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -117,7 +117,7 @@ class WeightMonitor : protected Monitor * \param mode The recording mode (one of RecordingMode datatype) * \param z The z state the complex matrix state to record from * */ - WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynDouble interval=10.0, RecordingMode mode = SINGLE, NeuronID z = 0); + WeightMonitor(SparseConnection * source, NeuronID i, NeuronID j, string filename, AurynDouble interval=10.0, RecordingMode mode = SINGLE, StateID z = 0); virtual ~WeightMonitor(); From 43cbe91e09cc5230922a76120d9f01b6f35ace54 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 10 Jul 2016 23:32:24 -0700 Subject: [PATCH 353/460] Fixes bug which affected complex synapses --- src/WeightMonitor.cpp | 10 ++++++++-- src/WeightMonitor.h | 3 +++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index ed381b22..27f73fcd 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -315,8 +315,14 @@ void WeightMonitor::load_pattern_connections( std::string filename_pre, std::str void WeightMonitor::record_single_synapses() { - for (std::vector::iterator iter = element_list->begin() ; iter != element_list->end() ; ++iter) - outfile << mat->get_data( (*iter) ) << " "; + for (std::vector::iterator iter = element_list->begin() ; iter != element_list->end() ; ++iter) { + // the following is a workaround for the old WeightMonitor data_index ptr log to work with the new state vector + // based ComplexMatrix class + // thus we need to translate the data index to a state variable z and the actual new data_index + const AurynLong data_index = (*iter)%src->w->get_statesize(); + const StateID z = (*iter)/src->w->get_statesize(); + outfile << mat->get_data( data_index, z ) << " "; + } } void WeightMonitor::record_synapse_groups() diff --git a/src/WeightMonitor.h b/src/WeightMonitor.h index 1d1ffa22..ae87557f 100644 --- a/src/WeightMonitor.h +++ b/src/WeightMonitor.h @@ -58,7 +58,10 @@ enum PatternMode { ALLTOALL, ASSEMBLIES_ONLY}; * * This class perform online monitoring of synaptic weights in a Connection. The class supports different recording modes * for single individual weights or multiple weights. Output is written to a human readable text file. + * + * \todo Implement a new data_index based element list which can deal with Complex Matrix states in a clean fashion */ + class WeightMonitor : protected Monitor { protected: From 4c5e9f639cfbd0b49295449a0e98cf572c20127f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 13 Jul 2016 19:17:57 -0700 Subject: [PATCH 354/460] Implements BinaryStateMonitor and the decoder tool/aubs --- src/AurynVersion.cpp | 2 +- src/AurynVersion.h | 2 +- src/BinarySpikeMonitor.cpp | 4 +- src/BinaryStateMonitor.cpp | 173 +++++++++++++++++++++ src/BinaryStateMonitor.h | 124 +++++++++++++++ src/auryn.h | 1 + src/auryn_definitions.h | 7 +- tools/CMakeLists.txt | 4 + tools/aubs.cpp | 306 +++++++++++++++++++++++++++++++++++++ 9 files changed, 618 insertions(+), 5 deletions(-) create mode 100644 src/BinaryStateMonitor.cpp create mode 100644 src/BinaryStateMonitor.h create mode 100644 tools/aubs.cpp diff --git a/src/AurynVersion.cpp b/src/AurynVersion.cpp index 74e2226e..b5775a7d 100644 --- a/src/AurynVersion.cpp +++ b/src/AurynVersion.cpp @@ -8,7 +8,7 @@ namespace auryn { int AurynVersion::subversion = 8; int AurynVersion::revision_number = 0; NeuronID AurynVersion::tag_binary_spike_monitor = 287960000+100*0+10*8+1*0; //!< file signature for BinarySpikeMonitor files - NeuronID AurynVersion::tag_binary_state_monitor = 287961000+100*0+10*8+1*0; //!< file signature for BinaryStateMonitor files + AurynState AurynVersion::tag_binary_state_monitor = 287961000+100*0+10*8+1*0; //!< file signature for BinaryStateMonitor files std::string AurynVersion::revision_suffix = "-dev-06f54fe"; std::string AurynVersion::git_describe = "v0.8.0-dev-5-g06f54fe"; diff --git a/src/AurynVersion.h b/src/AurynVersion.h index dc7c6704..0cb56bef 100644 --- a/src/AurynVersion.h +++ b/src/AurynVersion.h @@ -40,7 +40,7 @@ namespace auryn { static int subversion; static int revision_number; static NeuronID tag_binary_spike_monitor; - static NeuronID tag_binary_state_monitor; + static AurynState tag_binary_state_monitor; static std::string revision_suffix; static std::string git_describe; diff --git a/src/BinarySpikeMonitor.cpp b/src/BinarySpikeMonitor.cpp index cceb4678..6adbfaf7 100644 --- a/src/BinarySpikeMonitor.cpp +++ b/src/BinarySpikeMonitor.cpp @@ -80,7 +80,7 @@ void BinarySpikeMonitor::init(SpikingGroup * source, std::string filename, Neuro // the number of timesteps per second // the neuronID field contains a tag // encoding the version number - struct SpikeEvent_type spikeData; + SpikeEvent_type spikeData; spikeData.time = (AurynTime)(1.0/dt); spikeData.neuronID = sys->build.tag_binary_spike_monitor; outfile.write((char*)&spikeData, sizeof(SpikeEvent_type)); @@ -104,7 +104,7 @@ void BinarySpikeMonitor::propagate() { if ( !active ) return; - struct SpikeEvent_type spikeData; + SpikeEvent_type spikeData; spikeData.time = auryn::sys->get_clock(); for (it = src->get_spikes_immediate()->begin() ; it < src->get_spikes_immediate()->end() ; ++it ) { if (*it >= n_from ) { diff --git a/src/BinaryStateMonitor.cpp b/src/BinaryStateMonitor.cpp new file mode 100644 index 00000000..c1f24d6f --- /dev/null +++ b/src/BinaryStateMonitor.cpp @@ -0,0 +1,173 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "BinaryStateMonitor.h" + +using namespace auryn; + + +BinaryStateMonitor::BinaryStateMonitor(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynDouble sampling_interval) +{ + + if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank + + init(filename, sampling_interval); + auryn::sys->register_monitor(this); + src = source; + nid = src->global2rank(id); + + if ( nid >= src->get_rank_size() ) { + auryn::logger->msg("Error: BinaryStateMonitor trying to read from non-existing neuron.",ERROR); + throw AurynStateVectorException(); + } + + // TODO test if state exists -- use find_state_vector instead .. + if ( source->evolve_locally() ) { + target_variable = src->get_state_vector(statename)->data+nid; + } else { + nid = src->get_rank_size() + 1; + } +} + +BinaryStateMonitor::BinaryStateMonitor(auryn_vector_float * state, NeuronID id, std::string filename, AurynDouble sampling_interval) +{ + if ( id >= state->size ) return; // do not register if neuron is out of vector range + + init(filename, sampling_interval); + + auryn::sys->register_monitor(this); + src = NULL; + nid = id; + target_variable = state->data+nid; + lastval = *target_variable; +} + +BinaryStateMonitor::BinaryStateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval) +{ + if ( id >= trace->get_state_ptr()->size ) return; // do not register if neuron is out of vector range + + init(filename, sampling_interval); + + auryn::sys->register_monitor(this); + src = NULL; + nid = id; + target_variable = trace->get_state_ptr()->data+nid; + lastval = *target_variable; +} + +void BinaryStateMonitor::open_output_file(std::string filename) +{ + if ( filename.empty() ) return; // stimulators do not necessary need an outputfile + + outfile.open( filename.c_str(), std::ios::binary ); + if (!outfile) { + std::stringstream oss; + oss << "Can't open binary output file " << filename; + auryn::logger->msg(oss.str(),ERROR); + exit(1); + } +} + +void BinaryStateMonitor::init(std::string filename, AurynDouble sampling_interval) +{ + open_output_file(filename); + + set_stop_time(10.0); + ssize = sampling_interval/dt; + if ( ssize < 1 ) ssize = 1; + + enable_compression = true; + lastval = 0.0; + lastder = 0.0; + + + // per convention the first entry contains + // the number of timesteps per second + // the neuronID field contains a tag + // encoding the version number + StateValue_type headerFrame; + headerFrame.time = (AurynTime)(1.0/dt); + headerFrame.value = sys->build.tag_binary_state_monitor; + outfile.write((char*)&headerFrame, sizeof(StateValue_type)); +} + + + +BinaryStateMonitor::~BinaryStateMonitor() +{ + AurynState value = *target_variable; + AurynState deriv = value-lastval; + if ( enable_compression && deriv==lastder ) { //terminate output with last value, but only if wasn't written already + const AurynTime t = auryn::sys->get_clock()-ssize; + write_frame(t, lastval); + } +} + + +void BinaryStateMonitor::write_frame(const AurynTime time, const AurynState value) +{ + StateValue_type frame; + frame.time = time; + frame.value = value; + outfile.write((char*)&frame, sizeof(StateValue_type)); +} + +void BinaryStateMonitor::propagate() +{ + if ( auryn::sys->get_clock() < t_stop && auryn::sys->get_clock()%ssize==0 ) { + char buffer[255]; + if ( enable_compression && auryn::sys->get_clock()>0 ) { + AurynState value = *target_variable; + AurynState deriv = value-lastval; + + if ( deriv != lastder ) { + const AurynTime t = auryn::sys->get_clock()-ssize; + write_frame(t, lastval); + } + + lastval = value; + lastder = deriv; + + } else { + const AurynTime t = auryn::sys->get_clock(); + write_frame(t, *target_variable); + } + } +} + +void BinaryStateMonitor::set_stop_time(AurynDouble time) +{ + AurynDouble stoptime = std::min( time, std::numeric_limits::max()*dt ); + t_stop = stoptime/dt; +} + +void BinaryStateMonitor::record_for(AurynDouble time) +{ + if (time < 0) { + auryn::logger->msg("Warning: Negative stop times not supported -- ingoring.",WARNING); + } + else t_stop = auryn::sys->get_clock() + time/dt; + auryn::logger->debug("Set record for times for monitor."); +} diff --git a/src/BinaryStateMonitor.h b/src/BinaryStateMonitor.h new file mode 100644 index 00000000..7599858f --- /dev/null +++ b/src/BinaryStateMonitor.h @@ -0,0 +1,124 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef BINARYSTATEMONITOR_H_ +#define BINARYSTATEMONITOR_H_ + +#include "auryn_definitions.h" +#include "AurynVector.h" +#include "Monitor.h" +#include "System.h" +#include "Connection.h" +#include +#include + +namespace auryn { + +/*! \brief Records from an arbitray state vector of one unit from the source SpikingGroup to a file.*/ +class BinaryStateMonitor : public Monitor +{ +private: + void write_frame(const AurynTime time, const AurynState value); + void open_output_file(std::string filename); + +protected: + /*! \brief The source SpikingGroup to record from */ + SpikingGroup * src; + + /*! \brief Target variable */ + AurynState * target_variable; + + /*! \brief Last value (used for compression) */ + AurynState lastval; + AurynState lastder; + + /*! \brief The source neuron id to record from */ + NeuronID nid; + + /*! \brief The step size (sampling interval) in units of dt */ + AurynTime ssize; + + /*! \brief Defines the maximum recording time in AurynTime to save space. */ + AurynTime t_stop; + + /*! \brief Standard initialization */ + void init(string filename, AurynDouble stepsize); + +public: + /*! \brief Switch to enable/disable output compression + * + * When set to true, Auryn will compute the derivative of two consecutive datapoints of the state + * and only a value if the derivative changes. The correct function can then be recovered with linear + * interpolation (i.e. plotting in gnuplot with lines will yield the correct output). + * When compression is enabled the last value written to file always by one timestep with respect to + * the simulation clock. + * enable_compression is true by default. + */ + bool enable_compression; + + /*! \brief Standard constructor + * + * \param source The neuron group to record from + * \param id The neuron id in the group to record from + * \param statename The name of the StateVector to record from + * \param filename The filename of the file to dump the output to + * \param sampling_interval The sampling interval in seconds + */ + BinaryStateMonitor(SpikingGroup * source, NeuronID id, string statename, string filename, AurynDouble sampling_interval=dt); + + /*! \brief Alternative constructor + * + * \param state The source state vector + * \param filename The filename of the file to dump the output to + * \param sampling_interval The sampling interval in seconds + */ + BinaryStateMonitor(auryn_vector_float * state, NeuronID id, string filename, AurynDouble sampling_interval=dt); + + /*! \brief EulerTrace constructor + * + * \param trace The source synaptic trace + * \param filename The filename of the file to dump the output to + * \param sampling_interval The sampling interval in seconds + */ + BinaryStateMonitor(EulerTrace * trace, NeuronID id, string filename, AurynDouble sampling_interval=dt); + + /*! \brief Sets relative time at which to stop recording + * + * The time is given in seconds and interpreted as relative time with + * respect to the current clock value. This features is useful to decrease + * IO. The stop time can be set again after calling run to record multiple + * snippets. */ + void record_for(AurynDouble time=10.0); + + /*! \brief Set an absolute time when to stop recording. */ + void set_stop_time(AurynDouble time=10.0); + + virtual ~BinaryStateMonitor(); + void propagate(); +}; + +} + +#endif /*BINARYSTATEMONITOR_H_*/ diff --git a/src/auryn.h b/src/auryn.h index 5883272f..9e77eeb4 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -97,6 +97,7 @@ #include "VoltageMonitor.h" #include "SpikeMonitor.h" #include "BinarySpikeMonitor.h" +#include "BinaryStateMonitor.h" #include "DelayedSpikeMonitor.h" #include "RealTimeMonitor.h" #include "RateMonitor.h" diff --git a/src/auryn_definitions.h b/src/auryn_definitions.h index f57a93c5..cab09539 100644 --- a/src/auryn_definitions.h +++ b/src/auryn_definitions.h @@ -179,7 +179,6 @@ namespace auryn { /*! \brief Rounds vector size to multiple of four to allow using the SSE optimizations. */ NeuronID calculate_vector_size(NeuronID i); - /*! \brief Auryn spike event for binary monitors */ struct SpikeEvent_type { @@ -187,6 +186,12 @@ namespace auryn { NeuronID neuronID; }; + /*! \brief Auryn spike event for binary monitors */ + struct StateValue_type + { + AurynTime time; + AurynState value; + }; // Exceptions class AurynOpenFileException: public std::exception diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 62b0859b..bb3187e3 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,3 +1,7 @@ ADD_EXECUTABLE( aube aube.cpp ) TARGET_LINK_LIBRARIES( aube auryn ${Boost_LIBRARIES} ) INSTALL (TARGETS aube DESTINATION bin) + +ADD_EXECUTABLE( aubs aubs.cpp ) +TARGET_LINK_LIBRARIES( aubs auryn ${Boost_LIBRARIES} ) +INSTALL (TARGETS aubs DESTINATION bin) diff --git a/tools/aubs.cpp b/tools/aubs.cpp new file mode 100644 index 00000000..7e9e983e --- /dev/null +++ b/tools/aubs.cpp @@ -0,0 +1,306 @@ +/* +* Copyright 2014 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + + +#include "auryn.h" +#include +#include +#include +#include "AurynVersion.h" + +using namespace auryn; + +namespace po = boost::program_options; + +/*! \file + * Implements helper program to decode files written with BinaryStateMonitor + */ + + +/*! Perform binary search on ifstream to extract frame number + * from a target time reference that should be given in discrete time. */ +AurynLong find_frame( std::ifstream * file, AurynTime target ) +{ + // get number of elements + file->seekg (0, file->end); + AurynLong num_of_frames = file->tellg()/sizeof(StateValue_type); + + AurynLong lo = 1; // first frame is used for header + AurynLong hi = num_of_frames; + + while ( lo+1 < hi ) { + AurynLong pivot = lo + (hi-lo)/2; + file->seekg (pivot*sizeof(StateValue_type), file->beg); + + StateValue_type state_data; + file->read((char*)&state_data, sizeof(StateValue_type)); + + if ( state_data.time < target ) lo = pivot; + else hi = pivot; + } + + return hi; +} + + +void read_header( std::ifstream * input, double& dt, AurynLong num_events, double& last_time, std::string filename ) +{ + // get length of the file + StateValue_type state_data; + input->seekg (0, input->end); + num_events = input->tellg()/sizeof(StateValue_type)-1; + + // read first entry to infer dt + input->seekg (0, input->beg); + input->read((char*)&state_data, sizeof(StateValue_type)); + dt = 1.0/state_data.time; + + // do some version checking + AurynVersion build; + AurynState tag = state_data.value; + if ( tag/1000 != build.tag_binary_state_monitor/1000 ) { + std::cerr << "Header not recognized. " + "Not a BinaryStateMonitor file?" + << std::endl; + exit(EXIT_FAILURE); + } + + if ( tag != build.tag_binary_state_monitor ) { + std::cerr << "# Warning: Either the Auryn version does not match " + "the version of this tool or this is not a BinaryStateMonitor " + "file." << std::endl; + // TODO tell user if it is a state file + } + + // read out last time + input->seekg (num_events*sizeof(StateValue_type), input->beg); + input->read((char*)&state_data, sizeof(StateValue_type)); + last_time = (state_data.time+1)*dt; + // places last_time _behind_ the last time because we are the + // exclusive interval end +} + +int main(int ac, char* av[]) +{ + std::string input_filename; + std::ifstream * input; + + std::string output_file_name = ""; + double from_time = 0.0; + double to_time = -1.0; + double seconds_to_extract_from_end = -1.0; // negative means disabled + // one more decimal than neede to show values are not rounded + int decimal_places = -std::log(dt)/std::log(10)+2; + bool debug_output = false; + + try { + po::options_description desc("Allowed options"); + desc.add_options() + ("help,h", "produce help message") + ("version,v", "show version information") + ("debug,d", "show verbose debug output") + ("input,i", po::value(), "input file") + ("output,o", po::value(), "output file (output to stout if not given)") + ("from,f", po::value(), "'from time' in seconds") + ("to,t", po::value(), "'to time' in seconds") + ("last,l", po::value(), "last x seconds (overrides from/to)") + ; + + po::variables_map vm; + po::store(po::parse_command_line(ac, av, desc), vm); + po::notify(vm); + + if (vm.count("help")) { + std::cout << desc << "\n"; + return 1; + } + + if (vm.count("version")) { + AurynVersion build; + std::cout << "Auryn Binary Extract version " + << build.version << "." + << build.subversion << "." + << build.revision_number << "\n"; + return EXIT_SUCCESS; + } + + if (vm.count("debug")) { + debug_output = true; + } + + if (vm.count("input")) { + input_filename = vm["input"].as(); + } + + if (vm.count("output")) { + output_file_name = vm["output"].as(); + } + + if (vm.count("from")) { + from_time = vm["from"].as(); + } + + if (vm.count("to")) { + to_time = vm["to"].as(); + } + + if (vm.count("last")) { + seconds_to_extract_from_end = vm["last"].as(); + } + + } + catch(std::exception& e) { + std::cerr << "error: " << e.what() << "\n"; + return 1; + } + catch(...) { + std::cerr << "Exception of unknown type!\n"; + } + + double last_time = 0.0; + double dt = 0.0; + + if ( input_filename.empty() ) { + std::cerr << "Missing input file." << std::endl; + exit(EXIT_FAILURE); + } + + input = new std::ifstream( input_filename.c_str(), std::ios::binary ); + if (!(*input)) { + std::cerr << "Unable to open input file " + << input_filename + << std::endl; + exit(EXIT_FAILURE); + } + + double tmp_last_time = 0; + double tmp_dt = 0; + AurynLong tmp_num_events = 0; + read_header( input, tmp_dt, tmp_num_events, tmp_last_time, input_filename ); + + if ( debug_output ) { + std::cerr << "# Last frame in file:" << tmp_num_events << std::endl; + } + + if ( dt == 0 ) { + dt = tmp_dt; + } else { + if ( dt != tmp_dt ) { // should not happen + std::cerr << "Not all input file headers match." << std::endl; + exit(EXIT_FAILURE); + } + } + + if ( tmp_last_time > last_time ) { + last_time = tmp_last_time; + } + + + if ( to_time < 0 ) { + to_time = last_time; + } + + if ( seconds_to_extract_from_end > 0 ) { + from_time = to_time-seconds_to_extract_from_end; + } + + if ( from_time < 0 ) from_time = 0.0 ; + + if ( from_time > to_time || from_time < 0 ) { + std::cerr << "Times must be positive and start " + "time needs to be < to time." << std::endl; + exit(EXIT_FAILURE); + } + + // translate second times into auryn time + AurynTime to_auryn_time = to_time/dt; + + + if ( debug_output ) { + std::cerr << "# Timestep: " << dt << std::endl; + std::cerr << "# Sizeof SpikeEvent struct: " << sizeof(StateValue_type) << std::endl; + std::cerr << "# Time of last event in files: " << last_time << std::endl; + std::cerr << "# From time: " << from_time << std::endl; + std::cerr << "# To time: " << to_time << std::endl; + } + + + // set stream to respetive start frame + + // compute start and end frames + AurynLong start_frame = find_frame(input, from_time/dt); + + // prepare input stream + input->seekg (start_frame*sizeof(StateValue_type), input->beg); + input->clear(); + if ( debug_output ) { + std::cerr << "# Start frame stream: " + << start_frame << std::endl; + } + + + StateValue_type frame; + input->read((char*)&frame, sizeof(StateValue_type)); + + AurynTime time_reference = from_time/dt; + + // open output filestream if needed + std::ofstream of; + bool write_to_stdout = true; + if( !output_file_name.empty() ) { + write_to_stdout = false; + of.open( output_file_name.c_str(), std::ofstream::out ); + of << std::fixed << std::setprecision(decimal_places); + } + // sets output format to right number of decimal places + std::cout << std::fixed << std::setprecision(decimal_places); + + while ( true ) { + time_reference = frame.time; + if ( time_reference >= to_auryn_time || input->eof() ) break; + + if ( debug_output && false ) { + std::cout << "# time_reference " << time_reference << std::endl; + } + + // output from next_stream + while ( frame.time <= time_reference && !input->eof() ) { + if ( write_to_stdout ) + std::cout << std::fixed << std::setprecision(decimal_places) + << frame.time*dt << " " + << std::scientific // << std::setprecision(8) + << frame.value << "\n"; + else + of << std::fixed << std::setprecision(decimal_places) + << frame.time*dt << " " + << std::scientific // << std::setprecision(8) + << frame.value << "\n"; + input->read((char*)&frame, sizeof(StateValue_type)); + } + } + + if ( !write_to_stdout ) + of.close(); + + // close input stream + input->close(); + + return EXIT_SUCCESS; +} From 08a97a1c73d4aaf8115c7254ee3645c6b9133607 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 14 Jul 2016 07:49:16 -0700 Subject: [PATCH 355/460] Adds doxystring --- src/BinaryStateMonitor.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/BinaryStateMonitor.h b/src/BinaryStateMonitor.h index 7599858f..008798cb 100644 --- a/src/BinaryStateMonitor.h +++ b/src/BinaryStateMonitor.h @@ -36,7 +36,9 @@ namespace auryn { -/*! \brief Records from an arbitray state vector of one unit from the source SpikingGroup to a file.*/ +/*! \brief Records from an arbitray state vector of one unit from the source SpikingGroup to a binary file. + * + * Binary state files need to be read with the command line tool aubs or with custom code. */ class BinaryStateMonitor : public Monitor { private: From 095fff1f5a4213fa3ef31db9ae64c65e0706a0b4 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 14 Jul 2016 07:54:00 -0700 Subject: [PATCH 356/460] Small bugfix --- tools/aubs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/aubs.cpp b/tools/aubs.cpp index 7e9e983e..b067043b 100644 --- a/tools/aubs.cpp +++ b/tools/aubs.cpp @@ -75,7 +75,7 @@ void read_header( std::ifstream * input, double& dt, AurynLong num_events, doubl // do some version checking AurynVersion build; AurynState tag = state_data.value; - if ( tag/1000 != build.tag_binary_state_monitor/1000 ) { + if ( (int)tag/1000 != (int)(build.tag_binary_state_monitor)/1000 ) { std::cerr << "Header not recognized. " "Not a BinaryStateMonitor file?" << std::endl; From 0d9d6f134833f68082c129d8c675423af0bb36ee Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Jul 2016 12:14:20 -0700 Subject: [PATCH 357/460] Adds Izhikevich neuron model als IzhikevichGroup --- examples/sim_step_current.cpp | 96 ++++++++++++++ src/IzhikevichGroup.cpp | 232 ++++++++++++++++++++++++++++++++++ src/IzhikevichGroup.h | 109 ++++++++++++++++ src/auryn.h | 27 ++-- 4 files changed, 452 insertions(+), 12 deletions(-) create mode 100644 examples/sim_step_current.cpp create mode 100644 src/IzhikevichGroup.cpp create mode 100644 src/IzhikevichGroup.h diff --git a/examples/sim_step_current.cpp b/examples/sim_step_current.cpp new file mode 100644 index 00000000..7d1ae211 --- /dev/null +++ b/examples/sim_step_current.cpp @@ -0,0 +1,96 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + +#include "auryn.h" + +#define N 1 + +/*!\file + * + * \brief Example simulation which simulates a neuron during current step injection + * */ + +using namespace auryn; + +namespace po = boost::program_options; +namespace mpi = boost::mpi; + +int main(int ac, char* av[]) +{ + + int errcode = 0; + char strbuf [255]; + string simname = "step_current"; + string tmpstr; + AurynWeight w = 1.0; + + // BEGIN Global definitions + mpi::environment env(ac, av); + mpi::communicator world; + communicator = &world; + + try + { + sprintf(strbuf, "step_current.%d.log", world.rank()); + string logfile = strbuf; + logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + } + catch ( AurynOpenFileException excpt ) + { + std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; + env.abort(1); + } + + sys = new System(&world); + sys->set_simulation_name(simname); + // END Global definitions + + // define neuron group + IzhikevichGroup * neuron = new IzhikevichGroup(1); + + // define current input + CurrentInjector * curinject = new CurrentInjector(neuron, "mem"); + + // define monitors + SpikeMonitor * smon = new SpikeMonitor( neuron, sys->fn("ras") ); + StateMonitor * vmon = new StateMonitor( neuron, 0, "mem", sys->fn("mem") ); + StateMonitor * amon = new StateMonitor( neuron, 0, "g_ampa", sys->fn("ampa") ); + StateMonitor * nmon = new StateMonitor( neuron, 0, "g_nmda", sys->fn("nmda") ); + + // run simulation + logger->msg("Running ...",PROGRESS); + + // simulate 1 second + sys->run(0.1); + + // turn current on + curinject->set_current(0,10.0); + + // simulate 1 second + sys->run(0.1); + + // clean up + logger->msg("Freeing ...",PROGRESS,true); + delete sys; + + if (errcode) + env.abort(errcode); + return errcode; +} diff --git a/src/IzhikevichGroup.cpp b/src/IzhikevichGroup.cpp new file mode 100644 index 00000000..7db6b1a6 --- /dev/null +++ b/src/IzhikevichGroup.cpp @@ -0,0 +1,232 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "IzhikevichGroup.h" + +using namespace auryn; + +IzhikevichGroup::IzhikevichGroup(NeuronID size) : NeuronGroup(size) +{ + auryn::sys->register_spiking_group(this); + if ( evolve_locally() ) init(); +} + +void IzhikevichGroup::init() +{ + e_rev_gaba = -80e-3; + tau_ampa = 5e-3; + tau_gaba = 10e-3; + r_mem = 1e8; + c_mem = 200e-12; + tau_mem = r_mem*c_mem; + + avar = 0.02; // adaptation variable rate constant + bvar = 0.2; // subtreshold adaptation + cvar = -65e-3; // reset voltage + dvar = 2.0e-3; // spike triggered adaptation + + e_rest = cvar; + thr = 30e-3; + + bg_current = get_state_vector("bg_current"); + adaptation_vector = get_state_vector("izhi_adaptation"); + i_exc = get_state_vector("i_exc"); + i_inh = get_state_vector("i_inh"); + temp_vector = get_state_vector("_temp"); + + + clear(); + calculate_scale_constants(); +} + +void IzhikevichGroup::clear() +{ + clear_spikes(); + mem->set_all(e_rest); + g_ampa->set_all(0.); + g_gaba->set_all(0.); + bg_current->set_all(0.); +} + + +IzhikevichGroup::~IzhikevichGroup() +{ + if ( !evolve_locally() ) return; +} + +void IzhikevichGroup::check_thresholds() +{ + for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) { + if ( mem->get(i) > thr ) { + push_spike(i); + mem->set( i, cvar); // reset mem + adaptation_vector->add_specific( i, dvar); // increase adapt variable + } + } + +} + +void IzhikevichGroup::calculate_scale_constants() +{ + scale_ampa = exp(-dt/tau_ampa) ; + scale_gaba = exp(-dt/tau_gaba) ; +} + + +void IzhikevichGroup::evolve() +{ + // TODO do not hardcode parameters and convert to mV + + // compute synaptic conductance based currents + // excitatory + i_exc->copy(g_ampa); + i_exc->scale(-1); + i_exc->mul(mem); + + // inhibitory + i_inh->diff(mem,e_rev_gaba); + i_inh->mul(g_gaba); + + // compute izhikevich neuronal dynamics + temp_vector->copy(mem); + temp_vector->sqr(); + temp_vector->scale(40); + + temp_vector->saxpy(5,mem); + temp_vector->add(0.140); + temp_vector->sub(adaptation_vector); + + // add bg current + temp_vector->add(bg_current); + + // add synaptic currents + temp_vector->add(i_exc); + temp_vector->sub(i_inh); + + mem->saxpy(dt/1e-3,temp_vector); // division by 1e-3 due to rescaling of time from ms -> s + + // update adaptation variable + temp_vector->copy(mem); + temp_vector->scale(bvar); + temp_vector->sub(adaptation_vector); + + adaptation_vector->saxpy(avar*dt/1e-3,temp_vector); + + check_thresholds(); + + // decay synaptic conductances + g_ampa->scale(scale_ampa); + g_gaba->scale(scale_gaba); +} + +void IzhikevichGroup::set_bg_current(NeuronID i, AurynFloat current) { + if ( localrank(i) ) + auryn_vector_float_set ( bg_current , global2rank(i) , current ) ; +} + +void IzhikevichGroup::set_bg_currents(AurynFloat current) { + for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) + auryn_vector_float_set ( bg_current , i , current ) ; +} + +void IzhikevichGroup::set_tau_mem(AurynFloat taum) +{ + tau_mem = taum; + calculate_scale_constants(); +} + +void IzhikevichGroup::set_r_mem(AurynFloat rm) +{ + r_mem = rm; + tau_mem = r_mem*c_mem; + calculate_scale_constants(); +} + +void IzhikevichGroup::set_c_mem(AurynFloat cm) +{ + c_mem = cm; + tau_mem = r_mem*c_mem; + calculate_scale_constants(); +} + +AurynFloat IzhikevichGroup::get_bg_current(NeuronID i) { + if ( localrank(i) ) + return auryn_vector_float_get ( bg_current , global2rank(i) ) ; + else + return 0; +} + +std::string IzhikevichGroup::get_output_line(NeuronID i) +{ + std::stringstream oss; + oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " + << bg_current->get(i) <<"\n"; + return oss.str(); +} + +void IzhikevichGroup::load_input_line(NeuronID i, const char * buf) +{ + float vmem,vampa,vgaba,vbgcur; + sscanf (buf,"%f %f %f %f",&vmem,&vampa,&vgaba,&vbgcur); + if ( localrank(i) ) { + NeuronID trans = global2rank(i); + mem->set(trans,vmem); + g_ampa->set(trans,vampa); + g_gaba->set(trans,vgaba); + bg_current->set(trans, vbgcur); + } +} + +void IzhikevichGroup::set_tau_ampa(AurynFloat taum) +{ + tau_ampa = taum; + calculate_scale_constants(); +} + +AurynFloat IzhikevichGroup::get_tau_ampa() +{ + return tau_ampa; +} + +void IzhikevichGroup::set_tau_gaba(AurynFloat taum) +{ + tau_gaba = taum; + calculate_scale_constants(); +} + +AurynFloat IzhikevichGroup::get_tau_gaba() +{ + return tau_gaba; +} + +void IzhikevichGroup::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) +{ + SpikingGroup::virtual_serialize(ar,version); +} + +void IzhikevichGroup::virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) +{ + SpikingGroup::virtual_serialize(ar,version); +} diff --git a/src/IzhikevichGroup.h b/src/IzhikevichGroup.h new file mode 100644 index 00000000..f00d3c79 --- /dev/null +++ b/src/IzhikevichGroup.h @@ -0,0 +1,109 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef IZHIKEVICHGROUP_H_ +#define IZHIKEVICHGROUP_H_ + +#include "auryn_definitions.h" +#include "AurynVector.h" +#include "NeuronGroup.h" +#include "System.h" + +namespace auryn { + +/*! \brief Conductance based LIF neuron model with absolute refractoriness as used in Vogels and Abbott 2005. + */ +class IzhikevichGroup : public NeuronGroup +{ +private: + AurynStateVector * bg_current; + AurynStateVector * adaptation_vector; + AurynStateVector * temp_vector; + AurynStateVector * i_exc, * i_inh; + + AurynFloat e_rest,e_rev_gaba,thr,tau_mem, r_mem, c_mem; + AurynFloat tau_ampa,tau_gaba; + AurynFloat scale_ampa, scale_gaba; + AurynFloat avar, bvar, cvar, dvar; + + + + void init(); + void calculate_scale_constants(); + inline void integrate_state(); + inline void check_thresholds(); + virtual string get_output_line(NeuronID i); + virtual void load_input_line(NeuronID i, const char * buf); + + void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ); + void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ); +public: + /*! \brief The default constructor of this NeuronGroup */ + IzhikevichGroup(NeuronID size); + virtual ~IzhikevichGroup(); + + /*! \brief Controls the constant current input (per default set so zero) to neuron i */ + void set_bg_current(NeuronID i, AurynFloat current); + + /*! \brief Controls the constant current input to all neurons */ + void set_bg_currents(AurynFloat current); + + /*! \brief Gets the current background current value for neuron i */ + AurynFloat get_bg_current(NeuronID i); + + /*! \brief Sets the membrane time constant (default 20ms) */ + void set_tau_mem(AurynFloat taum); + + /*! \brief Sets the membrane resistance (default 100 M-ohm) */ + void set_r_mem(AurynFloat rm); + + /*! \brief Sets the membrane capacitance (default 200pF) */ + void set_c_mem(AurynFloat cm); + + /*! \brief Sets the exponential time constant for the AMPA channel (default 5ms) */ + void set_tau_ampa(AurynFloat tau); + + /*! \brief Gets the exponential time constant for the AMPA channel */ + AurynFloat get_tau_ampa(); + + /*! \brief Sets the exponential time constant for the GABA channel (default 10ms) */ + void set_tau_gaba(AurynFloat tau); + + /*! \brief Gets the exponential time constant for the GABA channel */ + AurynFloat get_tau_gaba(); + + /*! \brief Resets all neurons to defined and identical initial state. */ + void clear(); + + /*! \brief Integrates the NeuronGroup state + * + * The evolve method internally used by System. */ + void evolve(); +}; + +} + +#endif /*IZHIKEVICHGROUP_H_*/ + diff --git a/src/auryn.h b/src/auryn.h index 9e77eeb4..2fdb0a2f 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -65,26 +65,29 @@ #include "IdentityConnection.h" #include "AllToAllConnection.h" -// Spiking and Neuron group definitions -#include "AIF2Group.h" -#include "IFGroup.h" -#include "AIFGroup.h" -#include "AdExGroup.h" -#include "CubaIFGroup.h" -#include "TIFGroup.h" -#include "IafPscDeltaGroup.h" -#include "IafPscExpGroup.h" +// Spiking and input group definitions #include "SpikingGroup.h" #include "NeuronGroup.h" #include "PoissonGroup.h" +#include "FileInputGroup.h" +#include "FileModulatedPoissonGroup.h" +#include "StimulusGroup.h" #include "ProfilePoissonGroup.h" #include "StructuredPoissonGroup.h" #include "CorrelatedPoissonGroup.h" #include "MovingBumpGroup.h" -#include "FileModulatedPoissonGroup.h" #include "AuditoryBeepGroup.h" -#include "StimulusGroup.h" -#include "FileInputGroup.h" + +// NeuronGroups +#include "IFGroup.h" +#include "CubaIFGroup.h" +#include "TIFGroup.h" +#include "AIFGroup.h" +#include "AIF2Group.h" +#include "AdExGroup.h" +#include "IafPscDeltaGroup.h" +#include "IafPscExpGroup.h" +#include "IzhikevichGroup.h" // Checker definitions From ddf0a0cf42f18619b6accff0f1fa23b7b9f35eab Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Jul 2016 12:17:28 -0700 Subject: [PATCH 358/460] Removes unused params --- src/IzhikevichGroup.cpp | 58 ++++------------------------------------- src/IzhikevichGroup.h | 39 +++++++++++++-------------- 2 files changed, 23 insertions(+), 74 deletions(-) diff --git a/src/IzhikevichGroup.cpp b/src/IzhikevichGroup.cpp index 7db6b1a6..2efe74f7 100644 --- a/src/IzhikevichGroup.cpp +++ b/src/IzhikevichGroup.cpp @@ -38,19 +38,13 @@ void IzhikevichGroup::init() e_rev_gaba = -80e-3; tau_ampa = 5e-3; tau_gaba = 10e-3; - r_mem = 1e8; - c_mem = 200e-12; - tau_mem = r_mem*c_mem; avar = 0.02; // adaptation variable rate constant bvar = 0.2; // subtreshold adaptation cvar = -65e-3; // reset voltage dvar = 2.0e-3; // spike triggered adaptation + thr = 30e-3; // spike cutoff (reset threshold) - e_rest = cvar; - thr = 30e-3; - - bg_current = get_state_vector("bg_current"); adaptation_vector = get_state_vector("izhi_adaptation"); i_exc = get_state_vector("i_exc"); i_inh = get_state_vector("i_inh"); @@ -64,10 +58,9 @@ void IzhikevichGroup::init() void IzhikevichGroup::clear() { clear_spikes(); - mem->set_all(e_rest); + mem->set_all(cvar); g_ampa->set_all(0.); g_gaba->set_all(0.); - bg_current->set_all(0.); } @@ -118,9 +111,6 @@ void IzhikevichGroup::evolve() temp_vector->add(0.140); temp_vector->sub(adaptation_vector); - // add bg current - temp_vector->add(bg_current); - // add synaptic currents temp_vector->add(i_exc); temp_vector->sub(i_inh); @@ -141,61 +131,23 @@ void IzhikevichGroup::evolve() g_gaba->scale(scale_gaba); } -void IzhikevichGroup::set_bg_current(NeuronID i, AurynFloat current) { - if ( localrank(i) ) - auryn_vector_float_set ( bg_current , global2rank(i) , current ) ; -} - -void IzhikevichGroup::set_bg_currents(AurynFloat current) { - for ( NeuronID i = 0 ; i < get_rank_size() ; ++i ) - auryn_vector_float_set ( bg_current , i , current ) ; -} - -void IzhikevichGroup::set_tau_mem(AurynFloat taum) -{ - tau_mem = taum; - calculate_scale_constants(); -} - -void IzhikevichGroup::set_r_mem(AurynFloat rm) -{ - r_mem = rm; - tau_mem = r_mem*c_mem; - calculate_scale_constants(); -} - -void IzhikevichGroup::set_c_mem(AurynFloat cm) -{ - c_mem = cm; - tau_mem = r_mem*c_mem; - calculate_scale_constants(); -} - -AurynFloat IzhikevichGroup::get_bg_current(NeuronID i) { - if ( localrank(i) ) - return auryn_vector_float_get ( bg_current , global2rank(i) ) ; - else - return 0; -} - std::string IzhikevichGroup::get_output_line(NeuronID i) { std::stringstream oss; oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " - << bg_current->get(i) <<"\n"; + << "\n"; return oss.str(); } void IzhikevichGroup::load_input_line(NeuronID i, const char * buf) { - float vmem,vampa,vgaba,vbgcur; - sscanf (buf,"%f %f %f %f",&vmem,&vampa,&vgaba,&vbgcur); + float vmem,vampa,vgaba; + sscanf (buf,"%f %f %f",&vmem,&vampa,&vgaba); if ( localrank(i) ) { NeuronID trans = global2rank(i); mem->set(trans,vmem); g_ampa->set(trans,vampa); g_gaba->set(trans,vgaba); - bg_current->set(trans, vbgcur); } } diff --git a/src/IzhikevichGroup.h b/src/IzhikevichGroup.h index f00d3c79..8c2cf525 100644 --- a/src/IzhikevichGroup.h +++ b/src/IzhikevichGroup.h @@ -33,20 +33,28 @@ namespace auryn { -/*! \brief Conductance based LIF neuron model with absolute refractoriness as used in Vogels and Abbott 2005. +/*! \brief This NeuronGroup implements the Izhikevich neuron model + * + * This NeuronGroup implements the nonlinear integrate and fire neuron model by Eugene M. Izhikevich as described in + * Izhikevich, E.M. (2003). Simple model of spiking neurons. IEEE Transactions on Neural Networks 14, 1569–1572. + * + * In this implementation the state variables have been rescaled to V and seconds for consistency. The model is controlled + * via the public members: avar, bvar, cvar, dvar which correspond to the a,b,c and d parameters in the paper. + * + * Note that since this model has been rescaled to volts and seconds the reset and jump size paramters (cvar and dvar) + * also need to be given in volts (i.e. scaled by 1e-3). + * */ class IzhikevichGroup : public NeuronGroup { private: - AurynStateVector * bg_current; AurynStateVector * adaptation_vector; AurynStateVector * temp_vector; AurynStateVector * i_exc, * i_inh; - AurynFloat e_rest,e_rev_gaba,thr,tau_mem, r_mem, c_mem; + AurynFloat e_rev_gaba,thr; AurynFloat tau_ampa,tau_gaba; AurynFloat scale_ampa, scale_gaba; - AurynFloat avar, bvar, cvar, dvar; @@ -64,23 +72,12 @@ class IzhikevichGroup : public NeuronGroup IzhikevichGroup(NeuronID size); virtual ~IzhikevichGroup(); - /*! \brief Controls the constant current input (per default set so zero) to neuron i */ - void set_bg_current(NeuronID i, AurynFloat current); - - /*! \brief Controls the constant current input to all neurons */ - void set_bg_currents(AurynFloat current); - - /*! \brief Gets the current background current value for neuron i */ - AurynFloat get_bg_current(NeuronID i); - - /*! \brief Sets the membrane time constant (default 20ms) */ - void set_tau_mem(AurynFloat taum); - - /*! \brief Sets the membrane resistance (default 100 M-ohm) */ - void set_r_mem(AurynFloat rm); - - /*! \brief Sets the membrane capacitance (default 200pF) */ - void set_c_mem(AurynFloat cm); + AurynFloat avar; /*< The "a" parameter in the Izhikevich model which controls the time course of the adaptation variable u */ + AurynFloat bvar; /*< The "b" parameter in the Izhikevich model which controls the fixed point of the adaptation variable u */ + AurynFloat cvar; /*< The "c" parameter in the Izhikevich model which is the reset voltage */ + AurynFloat dvar; /*< The "d" parameter in the Integrates model which is the spike triggered jump size of the adaptation variable u + (note that it needs to be rescaled to units of V (i.e. multiplied by 1e-3) when paramters from Izhikevich's + original publication are used because the model has been renormalized to volts for consistency reasons. */ /*! \brief Sets the exponential time constant for the AMPA channel (default 5ms) */ void set_tau_ampa(AurynFloat tau); From d38ce223f2adddc54fbedb0d3dd5f904d0ea5ed8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Jul 2016 12:27:50 -0700 Subject: [PATCH 359/460] Updates doxystrings --- src/CurrentInjector.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/CurrentInjector.h b/src/CurrentInjector.h index 65cdb105..f64e2cb4 100644 --- a/src/CurrentInjector.h +++ b/src/CurrentInjector.h @@ -70,21 +70,25 @@ class CurrentInjector : protected Monitor public: - /*! Default Constructor + /*! \brief Default Constructor * @param[target] Initializes all currents with this value * @param[initial_current] Initializes all currents with this value */ CurrentInjector(NeuronGroup * target, std::string neuron_state_name="mem", AurynFloat initial_current=0.0 ); - /*! Sets the state to add the "current" in every timestep to */ + /*! \brief Sets the state to add the "current" in every timestep to */ void set_target_state( std::string state_name = "mem" ); - /*! Default Destructor */ + /*! \brief Default Destructor */ virtual ~CurrentInjector(); - /*! Sets the state that is stimulated with Current input. - * This must be a valid state vector name (default = mem) */ + /*! \brief Sets the state that is stimulated with Current input. + * + * This must be a valid state vector name (default = mem) + * + * \param i Index of neuron + * \param current Current value to set*/ void set_current( NeuronID i, AurynFloat current ); /*! Implementation of necessary propagate() function. */ From ef5b923b06fb898b71902b2557dd53de802cd01a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Jul 2016 12:28:07 -0700 Subject: [PATCH 360/460] Removes make from bootstrap file --- README.md | 2 +- build/release/bootstrap.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c736721d..052adc53 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ To download and compile the examples try: ``` sudo apt-get install cmake git build-essential libboost-all-dev git clone https://github.com/fzenke/auryn.git && cd auryn/build/release -./bootstrap.sh +./bootstrap.sh && make ``` Documentation & Installation/Use diff --git a/build/release/bootstrap.sh b/build/release/bootstrap.sh index c129612d..1927cba7 100755 --- a/build/release/bootstrap.sh +++ b/build/release/bootstrap.sh @@ -1,4 +1,4 @@ #!/bin/sh -cmake ../../ -DCMAKE_BUILD_TYPE=Release && make +cmake ../../ -DCMAKE_BUILD_TYPE=Release From 3f963bcbead125c897b9d3de90a20aba588eadfb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Jul 2016 12:36:30 -0700 Subject: [PATCH 361/460] Small changes to synaptic input in IzhikevichGroup --- src/IzhikevichGroup.cpp | 21 ++++++++++----------- src/IzhikevichGroup.h | 12 +++++++----- 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/IzhikevichGroup.cpp b/src/IzhikevichGroup.cpp index 2efe74f7..97217cbe 100644 --- a/src/IzhikevichGroup.cpp +++ b/src/IzhikevichGroup.cpp @@ -46,8 +46,8 @@ void IzhikevichGroup::init() thr = 30e-3; // spike cutoff (reset threshold) adaptation_vector = get_state_vector("izhi_adaptation"); - i_exc = get_state_vector("i_exc"); - i_inh = get_state_vector("i_inh"); + cur_exc = get_state_vector("cur_exc"); + cur_inh = get_state_vector("cur_inh"); temp_vector = get_state_vector("_temp"); @@ -90,17 +90,15 @@ void IzhikevichGroup::calculate_scale_constants() void IzhikevichGroup::evolve() { - // TODO do not hardcode parameters and convert to mV - // compute synaptic conductance based currents // excitatory - i_exc->copy(g_ampa); - i_exc->scale(-1); - i_exc->mul(mem); + cur_exc->copy(g_ampa); + cur_exc->scale(-1); + cur_exc->mul(mem); // inhibitory - i_inh->diff(mem,e_rev_gaba); - i_inh->mul(g_gaba); + cur_inh->diff(mem,e_rev_gaba); + cur_inh->mul(g_gaba); // compute izhikevich neuronal dynamics temp_vector->copy(mem); @@ -112,9 +110,10 @@ void IzhikevichGroup::evolve() temp_vector->sub(adaptation_vector); // add synaptic currents - temp_vector->add(i_exc); - temp_vector->sub(i_inh); + temp_vector->add(cur_exc); + temp_vector->sub(cur_inh); + // update membrane voltage mem->saxpy(dt/1e-3,temp_vector); // division by 1e-3 due to rescaling of time from ms -> s // update adaptation variable diff --git a/src/IzhikevichGroup.h b/src/IzhikevichGroup.h index 8c2cf525..a069d34e 100644 --- a/src/IzhikevichGroup.h +++ b/src/IzhikevichGroup.h @@ -33,7 +33,7 @@ namespace auryn { -/*! \brief This NeuronGroup implements the Izhikevich neuron model +/*! \brief This NeuronGroup implements the Izhikevich neuron model with conductance based AMPA and GABA synapses * * This NeuronGroup implements the nonlinear integrate and fire neuron model by Eugene M. Izhikevich as described in * Izhikevich, E.M. (2003). Simple model of spiking neurons. IEEE Transactions on Neural Networks 14, 1569–1572. @@ -41,23 +41,25 @@ namespace auryn { * In this implementation the state variables have been rescaled to V and seconds for consistency. The model is controlled * via the public members: avar, bvar, cvar, dvar which correspond to the a,b,c and d parameters in the paper. * - * Note that since this model has been rescaled to volts and seconds the reset and jump size paramters (cvar and dvar) + * Note that since this model has been rescaled to volts and seconds the reset and jump size parameters (cvar and dvar) * also need to be given in volts (i.e. scaled by 1e-3). * + * Also keep in mind that the default interpretation of synaptic synaptic strength given in multiples of the leak + * conductance is not longer true for this group and you will need to "gauge" synaptic strength according to the size of + * membrane potential deflection it causes. + * */ class IzhikevichGroup : public NeuronGroup { private: AurynStateVector * adaptation_vector; AurynStateVector * temp_vector; - AurynStateVector * i_exc, * i_inh; + AurynStateVector * cur_exc, * cur_inh; AurynFloat e_rev_gaba,thr; AurynFloat tau_ampa,tau_gaba; AurynFloat scale_ampa, scale_gaba; - - void init(); void calculate_scale_constants(); inline void integrate_state(); From 7c25ba2a24dfc8063641fe8587160c8236b1d078 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Jul 2016 12:57:00 -0700 Subject: [PATCH 362/460] Removes unused state mons from example --- examples/sim_step_current.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/sim_step_current.cpp b/examples/sim_step_current.cpp index 7d1ae211..619b544d 100644 --- a/examples/sim_step_current.cpp +++ b/examples/sim_step_current.cpp @@ -71,8 +71,6 @@ int main(int ac, char* av[]) // define monitors SpikeMonitor * smon = new SpikeMonitor( neuron, sys->fn("ras") ); StateMonitor * vmon = new StateMonitor( neuron, 0, "mem", sys->fn("mem") ); - StateMonitor * amon = new StateMonitor( neuron, 0, "g_ampa", sys->fn("ampa") ); - StateMonitor * nmon = new StateMonitor( neuron, 0, "g_nmda", sys->fn("nmda") ); // run simulation logger->msg("Running ...",PROGRESS); From ab4b36bd430c3cd30b1af191f3eb7289f4d501a4 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Jul 2016 13:16:40 -0700 Subject: [PATCH 363/460] Fixes doxygen string --- src/IzhikevichGroup.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/IzhikevichGroup.h b/src/IzhikevichGroup.h index a069d34e..7c5c214e 100644 --- a/src/IzhikevichGroup.h +++ b/src/IzhikevichGroup.h @@ -74,10 +74,10 @@ class IzhikevichGroup : public NeuronGroup IzhikevichGroup(NeuronID size); virtual ~IzhikevichGroup(); - AurynFloat avar; /*< The "a" parameter in the Izhikevich model which controls the time course of the adaptation variable u */ - AurynFloat bvar; /*< The "b" parameter in the Izhikevich model which controls the fixed point of the adaptation variable u */ - AurynFloat cvar; /*< The "c" parameter in the Izhikevich model which is the reset voltage */ - AurynFloat dvar; /*< The "d" parameter in the Integrates model which is the spike triggered jump size of the adaptation variable u + AurynFloat avar; /*!< The "a" parameter in the Izhikevich model which controls the time course of the adaptation variable u */ + AurynFloat bvar; /*!< The "b" parameter in the Izhikevich model which controls the fixed point of the adaptation variable u */ + AurynFloat cvar; /*!< The "c" parameter in the Izhikevich model which is the reset voltage */ + AurynFloat dvar; /*!< The "d" parameter in the Integrates model which is the spike triggered jump size of the adaptation variable u (note that it needs to be rescaled to units of V (i.e. multiplied by 1e-3) when paramters from Izhikevich's original publication are used because the model has been renormalized to volts for consistency reasons. */ From c39f3c21040e2c0d2e9d264e5536768ee1e0e3eb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Jul 2016 14:12:33 -0700 Subject: [PATCH 364/460] Adds example simulation --- examples/sim_current_steps.cpp | 104 +++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 examples/sim_current_steps.cpp diff --git a/examples/sim_current_steps.cpp b/examples/sim_current_steps.cpp new file mode 100644 index 00000000..45c0c669 --- /dev/null +++ b/examples/sim_current_steps.cpp @@ -0,0 +1,104 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + +#include "auryn.h" + +#define N 1 + +/*!\file + * + * \brief Simulates multiple step currents of increasing amplitude to a neuron + * */ + +using namespace auryn; + +namespace po = boost::program_options; +namespace mpi = boost::mpi; + +int main(int ac, char* av[]) +{ + + int errcode = 0; + char strbuf [255]; + string simname = "current_steps"; + string tmpstr; + AurynWeight w = 1.0; + + // BEGIN Global definitions + mpi::environment env(ac, av); + mpi::communicator world; + communicator = &world; + + try + { + sprintf(strbuf, "current_steps.%d.log", world.rank()); + string logfile = strbuf; + logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + } + catch ( AurynOpenFileException excpt ) + { + std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; + env.abort(1); + } + + sys = new System(&world); + sys->set_simulation_name(simname); + // END Global definitions + + // define neuron group + IzhikevichGroup * neuron = new IzhikevichGroup(1); + + // define current input + CurrentInjector * curinject = new CurrentInjector(neuron, "mem"); + + // define monitors + SpikeMonitor * smon = new SpikeMonitor( neuron, sys->fn("ras") ); + StateMonitor * vmon = new StateMonitor( neuron, 0, "mem", sys->fn("mem") ); + + // run simulation + logger->msg("Running ...",PROGRESS); + + const double simtime = 0.2; + // simulate + sys->run(simtime); + + // simulate current steps of increasing size + for ( int i = 0 ; i < 10 ; ++i ) { + // turn current on + curinject->set_current(0,1.0*i); // current is in arbitrary units + + // simulate + sys->run(simtime); + + // turn current off + curinject->set_current(0,0.0); + + // simulate + sys->run(simtime); + } + + // clean up + logger->msg("Freeing ...",PROGRESS,true); + delete sys; + + if (errcode) + env.abort(errcode); + return errcode; +} From 1ef3cad891db727eca1d9442724d69f0d76ee4fc Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 20 Jul 2016 16:52:47 -0700 Subject: [PATCH 365/460] Updates transmit() in Connection --- src/Connection.h | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/src/Connection.h b/src/Connection.h index 3d32c74a..551bda5a 100644 --- a/src/Connection.h +++ b/src/Connection.h @@ -238,14 +238,19 @@ class Connection /*! \brief Implements load from file functionality. Also called in save_network_state from System class. */ virtual bool load_from_file(std::string filename) = 0; - /*! \brief Transmits a spike to a postsynaptic partner + /*! \brief Default way to transmit a spike to a postsynaptic partner * * The method adds a given amount to the respective element in the target/transmitter array of the postsynaptic * neuron specifeid by id. This is a new approach which replaces tadd to old method, increments * transmitter specific state variables in neuron id. It turned out much faster that way, because the transmit * function is one of the most often called function in the simulation and it can be efficiently inlined by the * compiler. */ - inline void transmit(NeuronID id, AurynWeight amount); + void transmit(const NeuronID id, const AurynWeight amount); + + /*! \brief Transmits a spike to a given target group and state + * + * The method exposes the transmit interface and should not be used unless you know exactly what you are doing. */ + void targeted_transmit(NeuronGroup * target_group, AurynStateVector * target_state, const NeuronID id, const AurynWeight amount); /*! \brief Same as transmit but first checks if the target neuron exists and avoids segfaults that way (but it's also slower). */ void safe_transmit(NeuronID id, AurynWeight amount); @@ -278,11 +283,18 @@ class Connection BOOST_SERIALIZATION_ASSUME_ABSTRACT(Connection) -inline void Connection::transmit(NeuronID id, AurynWeight amount) + +inline void Connection::targeted_transmit(NeuronGroup * target_group, AurynStateVector * target_state, const NeuronID id, const AurynWeight amount) { - const NeuronID localid = dst->global2rank(id); - target_state_vector->data[localid]+=amount; + const NeuronID localid = target_group->global2rank(id); + target_state->data[localid]+=amount; } + +inline void Connection::transmit(const NeuronID id, const AurynWeight amount) +{ + targeted_transmit(dst, target_state_vector, id, amount); +} + } #endif /*CONNECTION_H_*/ From ad066084f2b8343e2064324b0979bab12298d0ed Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 30 Jul 2016 21:42:53 -0700 Subject: [PATCH 366/460] Hotfix bug in benchmark script --- build/release/run_benchmark.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/release/run_benchmark.sh b/build/release/run_benchmark.sh index a05194be..a65a59ca 100755 --- a/build/release/run_benchmark.sh +++ b/build/release/run_benchmark.sh @@ -2,7 +2,7 @@ # Compile code make clean -./bootstrap.sh +./bootstrap.sh && make sleep 2 # Benchmark parameters From 0a09b5be29477cd86cc2d427328cbb54312fbb92 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sun, 31 Jul 2016 12:15:39 -0700 Subject: [PATCH 367/460] Fixes label in plot_benchmark_results.gnu --- build/release/plot_benchmark_results.gnu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/release/plot_benchmark_results.gnu b/build/release/plot_benchmark_results.gnu index 73a28577..f37acf10 100644 --- a/build/release/plot_benchmark_results.gnu +++ b/build/release/plot_benchmark_results.gnu @@ -27,7 +27,7 @@ set multiplot layout 1,3 set label 1 at screen 0.001, screen 0.1 'Commit:' left set title 'Vogels \& Abbott benchmark' -set ylabel 'Time (s)' +set ylabel 'Wall time (s)' plot 'benchmark_results.dat' using 3:4:xticlabels(revname(strcol(2))) lc -1 unset ylabel From a63ed50bef013cb50f477bfe0494af1c8175d2f8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 12:50:03 -0700 Subject: [PATCH 368/460] Hotfix default parameters in AdExGroup --- src/AdExGroup.cpp | 95 +++++++++++++++++++++-------------------------- src/AdExGroup.h | 78 ++++++++++++++++++++++++++------------ 2 files changed, 97 insertions(+), 76 deletions(-) diff --git a/src/AdExGroup.cpp b/src/AdExGroup.cpp index e623eb76..8d3411eb 100644 --- a/src/AdExGroup.cpp +++ b/src/AdExGroup.cpp @@ -36,38 +36,40 @@ AdExGroup::AdExGroup(NeuronID size) : NeuronGroup(size) void AdExGroup::calculate_scale_constants() { scale_mem = dt/tau_mem; - scale_w = dt/tau_w; + scale_w = dt/tau_w; scale_ampa = exp(-dt/tau_ampa); scale_gaba = exp(-dt/tau_gaba); } void AdExGroup::init() { - g_leak = 10e-9; - e_rest = -70e-3; - e_reset = -58e-3; + e_rest = -70.6e-3; // resting potential + e_reset = e_rest; // reset voltage + e_thr = -50.4e-3; // V_t spike threshold + g_leak = 30e-9; // leak conductance + tau_w = 144e-3; // adaptation time constant + c_mem = 281e-12; // membrane capacitance + tau_mem = c_mem/g_leak; + deltat = 2e-3; // slope factor + set_a(4e-9); // subthreshold adaptation variable in units of Siemens + set_b(0.0805e-9); // spike triggered adaptation variable in units of nA + + // conductance based synaptic parameters + tau_ampa = 5e-3; + tau_gaba = 10e-3; e_rev_ampa = 0; e_rev_gaba = -80e-3; - e_thr = -50e-3; - tau_ampa = 5e-3; - tau_gaba = 10e-3; - tau_w = 30e-3; - c_mem = 200e-12; - tau_mem = c_mem/g_leak; - deltat = 2e-3; - a = 2e-9/g_leak; - b = 0./g_leak; - set_refractory_period(0e-3); + set_refractory_period(0); + + // init adaptation current variable "w" w = get_state_vector("w"); calculate_scale_constants(); ref = auryn_vector_ushort_alloc (get_vector_size()); - bg_current = get_state_vector("bg_current"); t_g_ampa = auryn_vector_float_ptr ( g_ampa , 0 ); t_g_gaba = auryn_vector_float_ptr ( g_gaba , 0 ); - t_bg_cur = auryn_vector_float_ptr ( bg_current , 0 ); t_mem = auryn_vector_float_ptr ( mem , 0 ); t_w = auryn_vector_float_ptr ( w , 0 ); t_ref = auryn_vector_ushort_ptr ( ref , 0 ); @@ -79,13 +81,12 @@ void AdExGroup::init() void AdExGroup::clear() { clear_spikes(); - for (NeuronID i = 0; i < get_rank_size(); i++) { - mem->set( i, e_rest); - g_ampa->set( i, 0.); - auryn_vector_ushort_set (ref, i, 0); - auryn_vector_float_set (g_gaba, i, 0.); - auryn_vector_float_set (bg_current, i, 0.); - } + + mem->set_all(e_rest); + g_ampa->set_zero(); + g_gaba->set_zero(); + w->set_zero(); + ref->set_zero(); } @@ -105,15 +106,14 @@ void AdExGroup::evolve() // for the exponential for (NeuronID i = 0 ; i < get_rank_size() ; ++i ) { if (t_ref[i]==0) { - t_w[i] += scale_w * (a * (t_mem[i]-e_rest) - t_w[i]); + // Euler upgrade membrane potentital t_mem[i] += scale_mem * ( e_rest-t_mem[i] + deltat * exp((t_mem[i]-e_thr)/deltat) - t_g_ampa[i] * (t_mem[i]-e_rev_ampa) - - t_g_gaba[i] * (t_mem[i]-e_rev_gaba) - + t_bg_cur[i]-t_w[i]); - + - t_g_gaba[i] * (t_mem[i]-e_rev_gaba) + -t_w[i] ) ; if (t_mem[i]>0.0) { push_spike(i); @@ -125,16 +125,13 @@ void AdExGroup::evolve() t_ref[i]-- ; t_mem[i] = e_rest ; } - } - auryn_vector_float_scale(scale_ampa,g_ampa); - auryn_vector_float_scale(scale_gaba,g_gaba); -} + // Euler upgrade adaptation variable + t_w[i] += scale_w * (a * (t_mem[i]-e_rest) - t_w[i]); + } -void AdExGroup::set_bg_current(NeuronID i, AurynFloat current) -{ - if ( localrank(i) ) - auryn_vector_float_set ( bg_current , global2rank(i) , current ) ; + g_ampa->scale(scale_ampa); + g_gaba->scale(scale_gaba); } void AdExGroup::set_tau_w(AurynFloat tauw) @@ -143,11 +140,6 @@ void AdExGroup::set_tau_w(AurynFloat tauw) calculate_scale_constants(); } -void AdExGroup::set_b(AurynFloat _b) -{ - b = _b; -} - void AdExGroup::set_e_reset(AurynFloat ereset) { e_reset = ereset; @@ -166,12 +158,17 @@ void AdExGroup::set_e_rest(AurynFloat erest) void AdExGroup::set_a(AurynFloat _a) { - a = _a; + a = _a/g_leak; +} + +void AdExGroup::set_b(AurynFloat _b) +{ + b = _b/g_leak; } void AdExGroup::set_delta_t(AurynFloat d) { - deltat = d; + deltat = d/g_leak; } void AdExGroup::set_g_leak(AurynFloat g) @@ -188,12 +185,6 @@ void AdExGroup::set_c_mem(AurynFloat cm) calculate_scale_constants(); } -AurynFloat AdExGroup::get_bg_current(NeuronID i) { - if ( localrank(i) ) - return bg_current->get( global2rank(i) ) ; - else - return 0; -} std::string AdExGroup::get_output_line(NeuronID i) { @@ -201,23 +192,21 @@ std::string AdExGroup::get_output_line(NeuronID i) oss << mem->get(i) << " " << g_ampa->get(i) << " " << g_gaba->get(i) << " " - << ref->get(i) << " " - << bg_current->get( i) <<"\n"; + << ref->get(i) <<"\n"; return oss.str(); } void AdExGroup::load_input_line(NeuronID i, const char * buf) { - float vmem,vampa,vgaba,vbgcur; + float vmem,vampa,vgaba; NeuronID vref; - sscanf (buf,"%f %f %f %u %f",&vmem,&vampa,&vgaba,&vref,&vbgcur); + sscanf (buf,"%f %f %f %u",&vmem,&vampa,&vgaba,&vref); if ( localrank(i) ) { NeuronID trans = global2rank(i); mem->set(trans,vmem); g_ampa->set(trans,vampa); g_gaba->set(trans,vgaba); ref->set( trans, vref); - bg_current->set( trans, vbgcur); } } diff --git a/src/AdExGroup.h b/src/AdExGroup.h index 75c38e7b..24fc308f 100644 --- a/src/AdExGroup.h +++ b/src/AdExGroup.h @@ -34,26 +34,34 @@ namespace auryn { -/*! \brief Conductance based Adaptive Exponential neuron model - Brette and Gerstner (2005). Default values are taken from Table 1 (4a) of Naud, Marcille, Clopath and Gerstner (2008) -*/ +/*! \brief Conductance based Adaptive Exponential neuron model - Brette and Gerstner (2005). + * + * This implements a NeuronGroup of AdEx neurons with default parameters from + * Brette, R., and Gerstner, W. (2005). Adaptive Exponential Integrate-and-Fire + * Model as an Effective Description of Neuronal Activity. J Neurophysiol 94, + * 3637–3642. + * + * \todo Implement vectorization for the model. + * + * */ class AdExGroup : public NeuronGroup { private: - auryn_vector_float * bg_current; AurynFloat e_rest, e_reset, e_rev_gaba, e_rev_ampa,e_thr, g_leak, c_mem, deltat; AurynFloat tau_ampa, tau_gaba, tau_mem; - AurynFloat scale_ampa, scale_gaba, scale_mem, scale_w; + AurynFloat scale_ampa, scale_gaba, scale_mem, scale_w, scale_current; AurynFloat * t_w; - AurynFloat a, tau_w, b; + AurynFloat a; //!< subthreshold adaptation variable in S/g_leak + AurynFloat b; //!< spike triggered adaptation variable in A/g_leak + AurynFloat tau_w; //!< adaptation time constant in s unsigned short refractory_time; auryn_vector_ushort * ref; /*! Stores the adaptation current. */ - auryn_vector_float * w __attribute__((aligned(16))); + auryn_vector_float * w; AurynFloat * t_g_ampa; AurynFloat * t_g_gaba; - AurynFloat * t_bg_cur; AurynFloat * t_mem; unsigned short * t_ref; @@ -71,41 +79,65 @@ class AdExGroup : public NeuronGroup AdExGroup(NeuronID size); virtual ~AdExGroup(); - /*! Controls the constant current input to neuron i in natural units of g_leak (default 500pA/10ns) */ - void set_bg_current(NeuronID i, AurynFloat current); - /*! Setter for refractory time [s] */ void set_refractory_period(AurynDouble t); - /*! Set value of slope factor deltat (default 2mV) */ + + /*! \brief Set value of slope factor deltat (default 2mV) */ void set_delta_t(AurynFloat d); - /*! Set value of a in natural units of g_leak (default 2nS/10ns) */ + + /*! \brief Sets the leak conductance (default 30nS) + * + * Because these units are used to derive internal numerical values, they need to be set first! */ + void set_g_leak(AurynFloat g); + + /*! \brief Sets the membrane capacitance (default 281pF) + * + * Because these units are used to derive internal numerical values, they need to be set first! + * */ + void set_c_mem(AurynFloat cm); + + /*! \brief Set value of a in units S ( default 4nS ) + * + * Internally this is value s converted to natural units of g_leak for numerical stability. + * Thus, make sure you set g_leak first! + * */ void set_a(AurynFloat _a); - /*! Set value of b in natural units of g_leak (default 0nS/10ns) */ + + /*! \brief Set value of b in units of A ( default 0.0805nA ) + * + * Internally this is value s converted to natural units of g_leak for numerical stability. + * Thus, make sure you set g_leak first! + * */ void set_b(AurynFloat _b); - /*! Set value of V_r (default -70mV) */ + + /*! Set value of V_r (default -70.6mV) */ void set_e_reset(AurynFloat ereset); - /*! Set value of E_l (default -70mV) */ + + /*! Set value of E_l (default -70.6mV) */ void set_e_rest(AurynFloat erest); - /*! Set value of V_t (default -50mV) */ + + /*! Set value of V_t (default -50.4mV) */ void set_e_thr(AurynFloat ethr); - /*! Sets the w time constant (default 30ms) */ + + /*! Sets the w time constant (default 144ms) */ void set_tau_w(AurynFloat tauw); - /*! Gets the current background current value for neuron i */ - AurynFloat get_bg_current(NeuronID i); - /*! Sets the leak conductance (default 10nS) */ - void set_g_leak(AurynFloat g); - /*! Sets the membrane capacitance (default 200pF) */ - void set_c_mem(AurynFloat cm); + + /*! Sets the exponential time constant for the AMPA channel (default 5ms) */ void set_tau_ampa(AurynFloat tau); + /*! Gets the exponential time constant for the AMPA channel */ AurynFloat get_tau_ampa(); + /*! Sets the exponential time constant for the GABA channel (default 10ms) */ void set_tau_gaba(AurynFloat tau); + /*! Gets the exponential time constant for the GABA channel */ AurynFloat get_tau_gaba(); + /*! Resets all neurons to defined and identical initial state. */ void clear(); + /*! The evolve method internally used by System. */ void evolve(); }; From 38b39e4d8efbfe138972f722b9434104e3c1fc44 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 12:50:18 -0700 Subject: [PATCH 369/460] Adds functionality to Connection Gives default names to connections based on neuron group names. --- src/Connection.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Connection.cpp b/src/Connection.cpp index 65e491d1..7ff0184a 100644 --- a/src/Connection.cpp +++ b/src/Connection.cpp @@ -51,8 +51,15 @@ Connection::Connection(SpikingGroup * source, NeuronGroup * destination, Transmi void Connection::init(TransmitterType transmitter) { set_transmitter(transmitter); - set_name("Unspecified"); + // set a default name based on the neuron group names + std::stringstream s; + s << src->get_name() + << " -> " + << dst->get_name(); + set_name(s.str()); + + // init default parameters number_of_spike_attributes = 0; // Here we store how many spike attributes have already been From 39cb9ebe356a7de6a0ec74e3b97b1830a16d22ef Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 12:53:08 -0700 Subject: [PATCH 370/460] Updates example sim Now illustrates AdEx responses for variable current step sizes in sim_current_steps.cpp --- examples/sim_current_steps.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/sim_current_steps.cpp b/examples/sim_current_steps.cpp index 45c0c669..20f104d6 100644 --- a/examples/sim_current_steps.cpp +++ b/examples/sim_current_steps.cpp @@ -63,14 +63,18 @@ int main(int ac, char* av[]) // END Global definitions // define neuron group - IzhikevichGroup * neuron = new IzhikevichGroup(1); + AdExGroup * neuron = new AdExGroup(1); + // alternatively you can also use an + // IzhikevichGroup * neuron = new IzhikevichGroup(1); + // define current input CurrentInjector * curinject = new CurrentInjector(neuron, "mem"); // define monitors SpikeMonitor * smon = new SpikeMonitor( neuron, sys->fn("ras") ); - StateMonitor * vmon = new StateMonitor( neuron, 0, "mem", sys->fn("mem") ); + VoltageMonitor * vmon = new VoltageMonitor( neuron, 0, sys->fn("mem") ); + StateMonitor * wmon = new StateMonitor( neuron, 0, "w", sys->fn("w") ); // run simulation logger->msg("Running ...",PROGRESS); From e99b787c9e69df4d19cc6f18e2fbbb3f2baa32bf Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 13:42:56 -0700 Subject: [PATCH 371/460] Replaces Monitor with abstract base class Device --- src/BinarySpikeMonitor.cpp | 2 +- src/BinaryStateMonitor.cpp | 6 ++-- src/CurrentInjector.cpp | 4 +-- src/CurrentInjector.h | 4 +-- src/DelayedSpikeMonitor.cpp | 2 +- src/Monitor.cpp | 13 +++++--- src/Monitor.h | 17 ++++------ src/NormalStimulator.cpp | 4 +-- src/NormalStimulator.h | 2 +- src/PatternMonitor.cpp | 2 +- src/PatternStimulator.cpp | 2 +- src/PoissonStimulator.cpp | 4 +-- src/PoissonStimulator.h | 4 +-- src/PopulationRateMonitor.cpp | 2 +- src/RateMonitor.cpp | 2 +- src/RealTimeMonitor.cpp | 2 +- src/SpikeMonitor.cpp | 2 +- src/StateMonitor.cpp | 6 ++-- src/System.cpp | 61 ++++++++++++++++++++--------------- src/System.h | 22 +++++++------ src/VoltageMonitor.cpp | 2 +- src/WeightMatrixMonitor.cpp | 2 +- src/WeightMonitor.cpp | 2 +- src/WeightPatternMonitor.cpp | 2 +- src/WeightStatsMonitor.cpp | 2 +- src/WeightSumMonitor.cpp | 2 +- src/auryn.h | 1 + 27 files changed, 94 insertions(+), 82 deletions(-) diff --git a/src/BinarySpikeMonitor.cpp b/src/BinarySpikeMonitor.cpp index 6adbfaf7..9baf8f81 100644 --- a/src/BinarySpikeMonitor.cpp +++ b/src/BinarySpikeMonitor.cpp @@ -67,7 +67,7 @@ void BinarySpikeMonitor::open_output_file(std::string filename) void BinarySpikeMonitor::init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); // sys = system; n_from = from; diff --git a/src/BinaryStateMonitor.cpp b/src/BinaryStateMonitor.cpp index c1f24d6f..ad287f6e 100644 --- a/src/BinaryStateMonitor.cpp +++ b/src/BinaryStateMonitor.cpp @@ -34,7 +34,7 @@ BinaryStateMonitor::BinaryStateMonitor(SpikingGroup * source, NeuronID id, std:: if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank init(filename, sampling_interval); - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = source; nid = src->global2rank(id); @@ -57,7 +57,7 @@ BinaryStateMonitor::BinaryStateMonitor(auryn_vector_float * state, NeuronID id, init(filename, sampling_interval); - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = NULL; nid = id; target_variable = state->data+nid; @@ -70,7 +70,7 @@ BinaryStateMonitor::BinaryStateMonitor(EulerTrace * trace, NeuronID id, std::str init(filename, sampling_interval); - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = NULL; nid = id; target_variable = trace->get_state_ptr()->data+nid; diff --git a/src/CurrentInjector.cpp b/src/CurrentInjector.cpp index 5a1d81ac..1860f1e8 100644 --- a/src/CurrentInjector.cpp +++ b/src/CurrentInjector.cpp @@ -28,9 +28,9 @@ using namespace auryn; -CurrentInjector::CurrentInjector(NeuronGroup * target, std::string neuron_state_name, AurynFloat initial_current ) : Monitor( ) +CurrentInjector::CurrentInjector(NeuronGroup * target, std::string neuron_state_name, AurynFloat initial_current ) : Device( ) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); dst = target; set_target_state(neuron_state_name); diff --git a/src/CurrentInjector.h b/src/CurrentInjector.h index f64e2cb4..db2fede5 100644 --- a/src/CurrentInjector.h +++ b/src/CurrentInjector.h @@ -30,7 +30,7 @@ #include "AurynVector.h" #include "System.h" #include "Logger.h" -#include "Monitor.h" +#include "Device.h" #include "NeuronGroup.h" @@ -44,7 +44,7 @@ namespace auryn { * */ -class CurrentInjector : protected Monitor +class CurrentInjector : protected Device { private: diff --git a/src/DelayedSpikeMonitor.cpp b/src/DelayedSpikeMonitor.cpp index 063e3802..1d2dc1ca 100644 --- a/src/DelayedSpikeMonitor.cpp +++ b/src/DelayedSpikeMonitor.cpp @@ -52,7 +52,7 @@ DelayedSpikeMonitor::~DelayedSpikeMonitor() void DelayedSpikeMonitor::init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); // sys = system; n_from = from; diff --git a/src/Monitor.cpp b/src/Monitor.cpp index 4625c1b7..c7d4fa7e 100644 --- a/src/Monitor.cpp +++ b/src/Monitor.cpp @@ -36,10 +36,15 @@ void Monitor::init(std::string filename) open_output_file(filename); } -Monitor::Monitor() +Monitor::Monitor() : Device() { } +Monitor::Monitor( std::string filename ) : Device() +{ + init(filename); +} + void Monitor::open_output_file(std::string filename) { if ( filename.empty() ) return; // stimulators do not necessary need an outputfile @@ -53,10 +58,6 @@ void Monitor::open_output_file(std::string filename) } } -Monitor::Monitor( std::string filename ) -{ - init(filename); -} Monitor::~Monitor() { @@ -76,8 +77,10 @@ void Monitor::flush() void Monitor::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) { + Device::virtual_serialize(ar, version); } void Monitor::virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) { + Device::virtual_serialize(ar, version); } diff --git a/src/Monitor.h b/src/Monitor.h index 9a4ddfb7..bc80812e 100644 --- a/src/Monitor.h +++ b/src/Monitor.h @@ -28,6 +28,7 @@ #include "auryn_definitions.h" #include "AurynVector.h" +#include "Device.h" #include #include @@ -41,16 +42,9 @@ namespace auryn { * Classes inheriting from Monitor have to implement the method propagate. Unlike Checker objects propagate returns void. Use Checker if you need the Monitor to be able to interrupt a run. */ - class Monitor + class Monitor : public Device { private: - /*! Functions necesssary for serialization and loading saving to netstate files. */ - friend class boost::serialization::access; - template - void serialize(Archive & ar, const unsigned int version) - { - virtual_serialize(ar, version); - } protected: @@ -74,20 +68,21 @@ namespace auryn { bool active; /*! \brief Flush to file */ - void flush(); + virtual void flush(); /*! \brief Standard constructor */ Monitor(); + /*! \brief Standard constructor with file name*/ Monitor(std::string filename); + /*! \brief Standard destructor */ virtual ~Monitor(); + /*! Virtual propagate function to be called in central simulation loop in System */ virtual void propagate() = 0; }; - BOOST_SERIALIZATION_ASSUME_ABSTRACT(Checker) - extern System * sys; extern Logger * logger; } diff --git a/src/NormalStimulator.cpp b/src/NormalStimulator.cpp index 30959a0d..5e74b8fd 100644 --- a/src/NormalStimulator.cpp +++ b/src/NormalStimulator.cpp @@ -24,7 +24,7 @@ using namespace auryn; boost::mt19937 NormalStimulator::gen = boost::mt19937(); -NormalStimulator::NormalStimulator(NeuronGroup * target, AurynWeight sigma, std::string target_state ) : Monitor( ) +NormalStimulator::NormalStimulator(NeuronGroup * target, AurynWeight sigma, std::string target_state ) : Device( ) { init(target, sigma, target_state); } @@ -32,7 +32,7 @@ NormalStimulator::NormalStimulator(NeuronGroup * target, AurynWeight sigma, std: void NormalStimulator::init( NeuronGroup * target, AurynWeight sigma, std::string target_state ) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); dst = target; set_target_state(target_state); diff --git a/src/NormalStimulator.h b/src/NormalStimulator.h index 029d03f7..5fbfcf83 100644 --- a/src/NormalStimulator.h +++ b/src/NormalStimulator.h @@ -39,7 +39,7 @@ namespace auryn { * Instances of this class inject currents that vary over time to subpopulations of the NeuronGroup assigned. */ -class NormalStimulator : protected Monitor +class NormalStimulator : protected Device { private: diff --git a/src/PatternMonitor.cpp b/src/PatternMonitor.cpp index 5abfcb23..bb4f1f33 100644 --- a/src/PatternMonitor.cpp +++ b/src/PatternMonitor.cpp @@ -54,7 +54,7 @@ PatternMonitor::~PatternMonitor() void PatternMonitor::init(SpikingGroup * source, std::string filename, NeuronID maximum_patterns, AurynFloat binsize) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); linked_to_stimgroup = false; diff --git a/src/PatternStimulator.cpp b/src/PatternStimulator.cpp index af143706..e9b1ecdf 100644 --- a/src/PatternStimulator.cpp +++ b/src/PatternStimulator.cpp @@ -51,7 +51,7 @@ PatternStimulator::~PatternStimulator() void PatternStimulator::init(NeuronGroup * target, std::string filename, AurynFloat scale, NeuronID maximum_patterns) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); dst = target; set_scale(scale); diff --git a/src/PoissonStimulator.cpp b/src/PoissonStimulator.cpp index 1755ffde..5cdec953 100644 --- a/src/PoissonStimulator.cpp +++ b/src/PoissonStimulator.cpp @@ -29,7 +29,7 @@ using namespace auryn; boost::mt19937 PoissonStimulator::gen = boost::mt19937(); -PoissonStimulator::PoissonStimulator(NeuronGroup * target, AurynFloat rate, AurynWeight w ) : Monitor( ) +PoissonStimulator::PoissonStimulator(NeuronGroup * target, AurynFloat rate, AurynWeight w ) : Device( ) { init(target,rate,w); } @@ -37,7 +37,7 @@ PoissonStimulator::PoissonStimulator(NeuronGroup * target, AurynFloat rate, Aury void PoissonStimulator::init( NeuronGroup * target, AurynFloat rate, AurynWeight w ) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); dst = target; set_target_state(); diff --git a/src/PoissonStimulator.h b/src/PoissonStimulator.h index 1bb09d87..d9e39da4 100644 --- a/src/PoissonStimulator.h +++ b/src/PoissonStimulator.h @@ -30,7 +30,7 @@ #include "AurynVector.h" #include "System.h" #include "Logger.h" -#include "Monitor.h" +#include "Device.h" #include "NeuronGroup.h" #include @@ -44,7 +44,7 @@ namespace auryn { * Instances of this class inject independent currents from a Poisson distribution to the NeuronGroup assigned. */ -class PoissonStimulator : protected Monitor +class PoissonStimulator : protected Device { private: diff --git a/src/PopulationRateMonitor.cpp b/src/PopulationRateMonitor.cpp index e5cb4733..51beebee 100644 --- a/src/PopulationRateMonitor.cpp +++ b/src/PopulationRateMonitor.cpp @@ -38,7 +38,7 @@ PopulationRateMonitor::~PopulationRateMonitor() void PopulationRateMonitor::init(SpikingGroup * source, std::string filename, AurynDouble binsize) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = source; invbsize = 1.0/binsize; diff --git a/src/RateMonitor.cpp b/src/RateMonitor.cpp index 652c6528..6a84e703 100644 --- a/src/RateMonitor.cpp +++ b/src/RateMonitor.cpp @@ -38,7 +38,7 @@ RateMonitor::~RateMonitor() void RateMonitor::init(SpikingGroup * source, std::string filename, AurynFloat samplinginterval) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = source; ssize = samplinginterval/dt; diff --git a/src/RealTimeMonitor.cpp b/src/RealTimeMonitor.cpp index 0c7ff1af..1a350a14 100644 --- a/src/RealTimeMonitor.cpp +++ b/src/RealTimeMonitor.cpp @@ -29,7 +29,7 @@ using namespace auryn; RealTimeMonitor::RealTimeMonitor(std::string filename, AurynDouble start, AurynDouble stop) : Monitor(filename) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); t_start = start/dt; t_stop = stop/dt; diff --git a/src/SpikeMonitor.cpp b/src/SpikeMonitor.cpp index 73217a66..7ca368b2 100644 --- a/src/SpikeMonitor.cpp +++ b/src/SpikeMonitor.cpp @@ -52,7 +52,7 @@ SpikeMonitor::~SpikeMonitor() void SpikeMonitor::init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); // sys = system; active = true; diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index 934e2951..8f4f324e 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -34,7 +34,7 @@ StateMonitor::StateMonitor(SpikingGroup * source, NeuronID id, std::string state if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank init(filename, sampling_interval); - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = source; nid = src->global2rank(id); @@ -57,7 +57,7 @@ StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string init(filename, sampling_interval); - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = NULL; nid = id; target_variable = state->data+nid; @@ -70,7 +70,7 @@ StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename init(filename, sampling_interval); - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = NULL; nid = id; target_variable = trace->get_state_ptr()->data+nid; diff --git a/src/System.cpp b/src/System.cpp index dd0f33df..89f2f507 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -140,8 +140,8 @@ void System::free() { for ( unsigned int i = 0 ; i < checkers.size() ; ++i ) delete checkers[i]; - for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) - delete monitors[i]; + for ( unsigned int i = 0 ; i < devices.size() ; ++i ) + delete devices[i]; for ( unsigned int i = 0 ; i < connections.size() ; ++i ) delete connections[i]; for ( unsigned int i = 0 ; i < spiking_groups.size() ; ++i ) @@ -149,7 +149,7 @@ void System::free() spiking_groups.clear(); connections.clear(); - monitors.clear(); + devices.clear(); checkers.clear(); delete syncbuffer; @@ -216,9 +216,9 @@ void System::register_connection(Connection * connection) connections.push_back(connection); } -void System::register_monitor(Monitor * monitor) +void System::register_device(Device * device) { - monitors.push_back(monitor); + devices.push_back(device); } void System::register_checker(Checker * checker) @@ -286,19 +286,24 @@ void System::propagate() (*iter)->propagate(); } -bool System::monitor(bool checking) +void System::execute_devices() { - std::vector::const_iterator iter; - for ( iter = monitors.begin() ; iter != monitors.end() ; ++iter ) + std::vector::const_iterator iter; + for ( iter = devices.begin() ; iter != devices.end() ; ++iter ) (*iter)->propagate(); +} - for ( unsigned int i = 0 ; i < checkers.size() ; ++i ) - if (!checkers[i]->propagate() && checking) { + +bool System::execute_checkers() +{ + for ( unsigned int i = 0 ; i < checkers.size() ; ++i ) { + if (!checkers[i]->propagate() ) { std::stringstream oss; - oss << "Checker " << i << " broke run!"; + oss << "Checker " << i << " triggered abort of simulation!"; auryn::logger->msg(oss.str(),WARNING); return false; } + } return true; } @@ -432,9 +437,13 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, evolve(); propagate(); + execute_devices(); - if (!monitor(checking)) - return false; + if ( checking ) { + if (!execute_checkers()) { + return false; + } + } evolve_independent(); // used to run in parallel to the sync (and could still in principle) // what is important for event based integration such as done in LinearTrace that this stays @@ -645,17 +654,17 @@ void System::save_network_state(std::string basename) oa << *(spiking_groups[i]); } - // Save Monitors - auryn::logger->msg("Saving Monitors ...",VERBOSE); - for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) { + // Save Devices + auryn::logger->msg("Saving Devices ...",VERBOSE); + for ( unsigned int i = 0 ; i < devices.size() ; ++i ) { std::stringstream oss; - oss << "Saving Monitor " + oss << "Saving Device " << i << " to stream"; auryn::logger->msg(oss.str(),VERBOSE); - oa << *(monitors[i]); + oa << *(devices[i]); } auryn::logger->msg("Saving Checkers ...",VERBOSE); @@ -787,16 +796,16 @@ void System::load_network_state(std::string basename) ia >> *(spiking_groups[i]); } - // Loading Monitors states - auryn::logger->msg("Loading Monitors ...",VERBOSE); - for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) { + // Loading Devices states + auryn::logger->msg("Loading Devices ...",VERBOSE); + for ( unsigned int i = 0 ; i < devices.size() ; ++i ) { std::stringstream oss; - oss << "Loading Monitor " + oss << "Loading Device " << i; auryn::logger->msg(oss.str(),VERBOSE); - ia >> *(monitors[i]); + ia >> *(devices[i]); } @@ -851,10 +860,10 @@ AurynDouble System::get_total_elapsed_time() return elapsed; } -void System::flush_monitors() +void System::flush_devices() { - for ( unsigned int i = 0 ; i < monitors.size() ; ++i ) - monitors[i]->flush(); + for ( unsigned int i = 0 ; i < devices.size() ; ++i ) + devices[i]->flush(); } #ifdef CODE_COLLECT_SYNC_TIMING_STATS diff --git a/src/System.h b/src/System.h index c25f3851..dd16cfc2 100644 --- a/src/System.h +++ b/src/System.h @@ -30,7 +30,7 @@ #include "AurynVector.h" #include "SpikingGroup.h" #include "Connection.h" -#include "Monitor.h" +#include "Device.h" #include "Checker.h" #include "SyncBuffer.h" #include "AurynVersion.h" @@ -70,7 +70,7 @@ namespace auryn { std::vector spiking_groups; std::vector connections; - std::vector monitors; + std::vector devices; std::vector checkers; string outputdir; @@ -113,13 +113,17 @@ namespace auryn { void propagate(); - /*! Performs integration of Connection objects. + /*! \brief Performs integration of Connection objects. + * * Since this is independent of the SpikingGroup evolve we * can do this while we are waiting for synchronization. */ void evolve_independent(); - /*! Calls all monitors. */ - bool monitor(bool checking); + /*! \brief Calls all monitors. */ + void execute_devices(); + + /*! \brief Calls all checkers. */ + bool execute_checkers(); /*! Implements integration and spike propagation of a single integration step. */ void step(); @@ -208,10 +212,10 @@ namespace auryn { void save_network_state_text(std::string basename); - /*! \brief Flush monitors + /*! \brief Flush devices * * Write monitor data buffers to file. */ - void flush_monitors(); + void flush_devices(); /*! \brief Registers an instance of SpikingGroup to the spiking_groups vector. @@ -224,10 +228,10 @@ namespace auryn { * Called internally by constructor of Connection. */ void register_connection(Connection * connection); - /*! \brief Registers an instance of Monitor to the monitors vector. + /*! \brief Registers an instance of Device to the devices vector. * * Called internally by constructor of Monitor. */ - void register_monitor(Monitor * monitor); + void register_device(Device * device); /*! \brief Registers an instance of Checker to the checkers vector. * diff --git a/src/VoltageMonitor.cpp b/src/VoltageMonitor.cpp index 1d649db4..889e008c 100644 --- a/src/VoltageMonitor.cpp +++ b/src/VoltageMonitor.cpp @@ -50,7 +50,7 @@ void VoltageMonitor::init(NeuronGroup * source, NeuronID id, std::string filenam tStop = -1; // at the end of all times ... if ( nid < src->get_post_size() ) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); outfile << std::setiosflags(std::ios::fixed) << std::setprecision(6); outfile << "# Recording from neuron " << gid << "\n"; } diff --git a/src/WeightMatrixMonitor.cpp b/src/WeightMatrixMonitor.cpp index 7532d5b4..66374569 100644 --- a/src/WeightMatrixMonitor.cpp +++ b/src/WeightMatrixMonitor.cpp @@ -38,7 +38,7 @@ WeightMatrixMonitor::~WeightMatrixMonitor() void WeightMatrixMonitor::init(Connection * source, AurynFloat stepsize) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = source; ssize = (AurynTime) (stepsize/dt); diff --git a/src/WeightMonitor.cpp b/src/WeightMonitor.cpp index 27f73fcd..a38ee572 100644 --- a/src/WeightMonitor.cpp +++ b/src/WeightMonitor.cpp @@ -66,7 +66,7 @@ WeightMonitor::~WeightMonitor() void WeightMonitor::init(SparseConnection * source, NeuronID i, NeuronID j, std::string filename, AurynTime stepsize) { - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = source; set_mat(src->w); ssize = stepsize; diff --git a/src/WeightPatternMonitor.cpp b/src/WeightPatternMonitor.cpp index 97e4f386..f1359fc5 100644 --- a/src/WeightPatternMonitor.cpp +++ b/src/WeightPatternMonitor.cpp @@ -40,7 +40,7 @@ void WeightPatternMonitor::init(Connection * source, std::string filename,AurynT { if ( !source->get_destination()->evolve_locally() ) return; - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = source; ssize = stepsize; diff --git a/src/WeightStatsMonitor.cpp b/src/WeightStatsMonitor.cpp index f852a4ff..e1f6569c 100644 --- a/src/WeightStatsMonitor.cpp +++ b/src/WeightStatsMonitor.cpp @@ -40,7 +40,7 @@ void WeightStatsMonitor::init(Connection * source, std::string filename,AurynTim { if ( !source->get_destination()->evolve_locally() ) return; - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = source; ssize = stepsize; diff --git a/src/WeightSumMonitor.cpp b/src/WeightSumMonitor.cpp index 5af8fe27..29357d2d 100644 --- a/src/WeightSumMonitor.cpp +++ b/src/WeightSumMonitor.cpp @@ -40,7 +40,7 @@ void WeightSumMonitor::init(Connection * source, std::string filename,AurynTime { if ( !source->get_destination()->evolve_locally() ) return; - auryn::sys->register_monitor(this); + auryn::sys->register_device(this); src = source; ssize = stepsize; diff --git a/src/auryn.h b/src/auryn.h index 2fdb0a2f..c9f4d5a8 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -96,6 +96,7 @@ #include "WeightChecker.h" // Monitor and stimulator definitions +#include "Device.h" #include "Monitor.h" #include "VoltageMonitor.h" #include "SpikeMonitor.h" From b52c1a846042ffb6494629253114f5b6b2653256 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 14:37:42 -0700 Subject: [PATCH 372/460] Implements names for Devices and Monitors --- src/BinarySpikeMonitor.cpp | 17 ++++++++++------- src/BinarySpikeMonitor.h | 2 +- src/BinaryStateMonitor.cpp | 12 ++++++++---- src/BinaryStateMonitor.h | 6 +++--- src/Monitor.cpp | 29 +++++++++++++++++++++-------- src/Monitor.h | 26 +++++++++++++++++++------- src/PopulationRateMonitor.h | 5 ++++- src/StateMonitor.cpp | 7 +++---- 8 files changed, 69 insertions(+), 35 deletions(-) diff --git a/src/BinarySpikeMonitor.cpp b/src/BinarySpikeMonitor.cpp index 9baf8f81..f80fe8f4 100644 --- a/src/BinarySpikeMonitor.cpp +++ b/src/BinarySpikeMonitor.cpp @@ -29,20 +29,17 @@ using namespace auryn; -BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) - : Monitor(filename) +BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) : Monitor() { init(source,filename,from,to); } -BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to) - : Monitor(filename) +BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to) : Monitor() { init(source,filename,0,to); } -BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename) - : Monitor(filename ) +BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename) : Monitor() { init(source,filename,0,source->get_size()); } @@ -54,7 +51,9 @@ BinarySpikeMonitor::~BinarySpikeMonitor() void BinarySpikeMonitor::open_output_file(std::string filename) { - if ( filename.empty() ) return; // stimulators do not necessary need an outputfile + if ( filename.empty() ) { // generate a default name + filename = generate_filename(); + } outfile.open( filename.c_str(), std::ios::binary ); if (!outfile) { @@ -67,6 +66,10 @@ void BinarySpikeMonitor::open_output_file(std::string filename) void BinarySpikeMonitor::init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) { + default_file_extension = "spk"; + + open_output_file(filename); + auryn::sys->register_device(this); // sys = system; diff --git a/src/BinarySpikeMonitor.h b/src/BinarySpikeMonitor.h index b7611152..33d763f8 100644 --- a/src/BinarySpikeMonitor.h +++ b/src/BinarySpikeMonitor.h @@ -59,7 +59,7 @@ class BinarySpikeMonitor : public Monitor void free(); public: - BinarySpikeMonitor(SpikingGroup * source, std::string filename); + BinarySpikeMonitor(SpikingGroup * source, std::string filename=""); BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to); BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to); void set_offset(NeuronID of); diff --git a/src/BinaryStateMonitor.cpp b/src/BinaryStateMonitor.cpp index ad287f6e..307ab714 100644 --- a/src/BinaryStateMonitor.cpp +++ b/src/BinaryStateMonitor.cpp @@ -28,7 +28,7 @@ using namespace auryn; -BinaryStateMonitor::BinaryStateMonitor(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynDouble sampling_interval) +BinaryStateMonitor::BinaryStateMonitor(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynDouble sampling_interval) : Monitor() { if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank @@ -51,7 +51,7 @@ BinaryStateMonitor::BinaryStateMonitor(SpikingGroup * source, NeuronID id, std:: } } -BinaryStateMonitor::BinaryStateMonitor(auryn_vector_float * state, NeuronID id, std::string filename, AurynDouble sampling_interval) +BinaryStateMonitor::BinaryStateMonitor(auryn_vector_float * state, NeuronID id, std::string filename, AurynDouble sampling_interval): Monitor() { if ( id >= state->size ) return; // do not register if neuron is out of vector range @@ -64,7 +64,7 @@ BinaryStateMonitor::BinaryStateMonitor(auryn_vector_float * state, NeuronID id, lastval = *target_variable; } -BinaryStateMonitor::BinaryStateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval) +BinaryStateMonitor::BinaryStateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval): Monitor() { if ( id >= trace->get_state_ptr()->size ) return; // do not register if neuron is out of vector range @@ -79,7 +79,9 @@ BinaryStateMonitor::BinaryStateMonitor(EulerTrace * trace, NeuronID id, std::str void BinaryStateMonitor::open_output_file(std::string filename) { - if ( filename.empty() ) return; // stimulators do not necessary need an outputfile + if ( filename.empty() ) { // generate a default name + filename = generate_filename(); + } outfile.open( filename.c_str(), std::ios::binary ); if (!outfile) { @@ -92,6 +94,8 @@ void BinaryStateMonitor::open_output_file(std::string filename) void BinaryStateMonitor::init(std::string filename, AurynDouble sampling_interval) { + default_file_extension = "bst"; + open_output_file(filename); set_stop_time(10.0); diff --git a/src/BinaryStateMonitor.h b/src/BinaryStateMonitor.h index 008798cb..1dd67b63 100644 --- a/src/BinaryStateMonitor.h +++ b/src/BinaryStateMonitor.h @@ -88,7 +88,7 @@ class BinaryStateMonitor : public Monitor * \param filename The filename of the file to dump the output to * \param sampling_interval The sampling interval in seconds */ - BinaryStateMonitor(SpikingGroup * source, NeuronID id, string statename, string filename, AurynDouble sampling_interval=dt); + BinaryStateMonitor(SpikingGroup * source, NeuronID id, string statename, std::string filename="", AurynDouble sampling_interval=dt); /*! \brief Alternative constructor * @@ -96,7 +96,7 @@ class BinaryStateMonitor : public Monitor * \param filename The filename of the file to dump the output to * \param sampling_interval The sampling interval in seconds */ - BinaryStateMonitor(auryn_vector_float * state, NeuronID id, string filename, AurynDouble sampling_interval=dt); + BinaryStateMonitor(auryn_vector_float * state, NeuronID id, std::string filename="", AurynDouble sampling_interval=dt); /*! \brief EulerTrace constructor * @@ -104,7 +104,7 @@ class BinaryStateMonitor : public Monitor * \param filename The filename of the file to dump the output to * \param sampling_interval The sampling interval in seconds */ - BinaryStateMonitor(EulerTrace * trace, NeuronID id, string filename, AurynDouble sampling_interval=dt); + BinaryStateMonitor(EulerTrace * trace, NeuronID id, std::string filename="", AurynDouble sampling_interval=dt); /*! \brief Sets relative time at which to stop recording * diff --git a/src/Monitor.cpp b/src/Monitor.cpp index c7d4fa7e..bc629603 100644 --- a/src/Monitor.cpp +++ b/src/Monitor.cpp @@ -29,26 +29,28 @@ using namespace auryn; void Monitor::init(std::string filename) { - fname = filename; + if ( filename.empty() ) { // generate default filename from device id + fname = generate_filename(); + } else + fname = filename; active = true; - - open_output_file(filename); + open_output_file(fname); } -Monitor::Monitor() : Device() +Monitor::Monitor( std::string filename, std::string default_extension ) : Device() { + default_file_extension = default_extension; + init(filename); } -Monitor::Monitor( std::string filename ) : Device() +Monitor::Monitor( ) : Device() { - init(filename); + default_file_extension = "dat"; } void Monitor::open_output_file(std::string filename) { - if ( filename.empty() ) return; // stimulators do not necessary need an outputfile - outfile.open( filename.c_str(), std::ios::out ); if (!outfile) { std::stringstream oss; @@ -58,6 +60,17 @@ void Monitor::open_output_file(std::string filename) } } +std::string Monitor::generate_filename(std::string name_hint) +{ + std::stringstream oss; + oss << get_name() << name_hint; + std::string tmpstr = oss.str(); + std::transform(tmpstr.begin(), tmpstr.end(), tmpstr.begin(), ::tolower); + tmpstr.erase(std::remove(tmpstr.begin(),tmpstr.end(),' '),tmpstr.end()); + tmpstr = sys->fn(get_name(), default_file_extension); + std::cout << tmpstr << std::endl; + return tmpstr; +} Monitor::~Monitor() { diff --git a/src/Monitor.h b/src/Monitor.h index bc80812e..7c8d2ac7 100644 --- a/src/Monitor.h +++ b/src/Monitor.h @@ -29,8 +29,10 @@ #include "auryn_definitions.h" #include "AurynVector.h" #include "Device.h" +#include "System.h" #include #include +#include namespace auryn { @@ -45,19 +47,26 @@ namespace auryn { class Monitor : public Device { private: + /*! Standard initializer to be called by the constructor */ + void init(std::string filename); + /*! Standard free function to be called by the destructor - closes the file stream. */ + void free(); protected: /*! Output filestream to be used in the derived classes */ std::ofstream outfile; + /*! Stores output filename */ std::string fname; - /*! Standard initializer to be called by the constructor */ - void init(std::string filename); + + /*! Default extension */ + std::string default_file_extension; + + /*! Opens a text outputfile -- for binary files redefine this function in derived class. */ virtual void open_output_file(std::string filename); - /*! Standard free function to be called by the destructor - closes the file stream. */ - void free(); + /*! Functions necesssary for serialization and loading saving to netstate files. */ virtual void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) ; @@ -70,11 +79,14 @@ namespace auryn { /*! \brief Flush to file */ virtual void flush(); - /*! \brief Standard constructor */ + /*! \brief Standard constructor with file name*/ + Monitor(std::string filename, std::string default_extension = "dat"); + + /*! \brief Constructor which does not open a text file for output */ Monitor(); - /*! \brief Standard constructor with file name*/ - Monitor(std::string filename); + /*! \brief Generates a default filename from the device ID. */ + std::string generate_filename(std::string name_hint=""); /*! \brief Standard destructor */ virtual ~Monitor(); diff --git a/src/PopulationRateMonitor.h b/src/PopulationRateMonitor.h index 41087ee3..3fecc59c 100644 --- a/src/PopulationRateMonitor.h +++ b/src/PopulationRateMonitor.h @@ -56,6 +56,7 @@ class PopulationRateMonitor : protected Monitor protected: /*! The source SpikingGroup */ SpikingGroup * src; + /*! Default init method */ void init(SpikingGroup * source, string filename, AurynDouble binsize); @@ -66,9 +67,11 @@ class PopulationRateMonitor : protected Monitor @param[source] The source spiking group. @param[filename] The filename to write to (should be different for each rank.) @param[binsize] The binsize used for counting in seconds.*/ - PopulationRateMonitor(SpikingGroup * source, string filename, AurynDouble binsize=1.0); + PopulationRateMonitor(SpikingGroup * source, string filename="", AurynDouble binsize=0.1); + /*! Default Destructor */ virtual ~PopulationRateMonitor(); + /*! Implementation of necessary propagate() function. */ void propagate(); }; diff --git a/src/StateMonitor.cpp b/src/StateMonitor.cpp index 8f4f324e..d4fd15c6 100644 --- a/src/StateMonitor.cpp +++ b/src/StateMonitor.cpp @@ -28,7 +28,7 @@ using namespace auryn; -StateMonitor::StateMonitor(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynDouble sampling_interval) +StateMonitor::StateMonitor(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynDouble sampling_interval) : Monitor(filename, "state") { if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank @@ -51,7 +51,7 @@ StateMonitor::StateMonitor(SpikingGroup * source, NeuronID id, std::string state } } -StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string filename, AurynDouble sampling_interval) +StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string filename, AurynDouble sampling_interval): Monitor(filename, "state") { if ( id >= state->size ) return; // do not register if neuron is out of vector range @@ -64,7 +64,7 @@ StateMonitor::StateMonitor(auryn_vector_float * state, NeuronID id, std::string lastval = *target_variable; } -StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval) +StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval): Monitor(filename, "state") { if ( id >= trace->get_state_ptr()->size ) return; // do not register if neuron is out of vector range @@ -79,7 +79,6 @@ StateMonitor::StateMonitor(EulerTrace * trace, NeuronID id, std::string filename void StateMonitor::init(std::string filename, AurynDouble sampling_interval) { - Monitor::init(filename); outfile << setiosflags(std::ios::fixed) << std::setprecision(6); set_stop_time(10.0); From 401291e5711f293762bf4bc9d0cb62334bc283bc Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 15:05:28 -0700 Subject: [PATCH 373/460] Implements smart auto names for monitors --- src/BinarySpikeMonitor.cpp | 44 ++++++++++++++++++++------------------ src/BinarySpikeMonitor.h | 1 + src/BinaryStateMonitor.cpp | 13 ++++++----- src/BinaryStateMonitor.h | 2 ++ src/Monitor.cpp | 4 ++-- src/System.cpp | 3 ++- 6 files changed, 36 insertions(+), 31 deletions(-) diff --git a/src/BinarySpikeMonitor.cpp b/src/BinarySpikeMonitor.cpp index f80fe8f4..5a8b3870 100644 --- a/src/BinarySpikeMonitor.cpp +++ b/src/BinarySpikeMonitor.cpp @@ -28,18 +28,19 @@ using namespace auryn; +const std::string BinarySpikeMonitor::default_extension = "spk"; -BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) : Monitor() +BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) : Monitor(filename, default_extension) { init(source,filename,from,to); } -BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to) : Monitor() +BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename, NeuronID to) : Monitor(filename, default_extension) { init(source,filename,0,to); } -BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename) : Monitor() +BinarySpikeMonitor::BinarySpikeMonitor(SpikingGroup * source, std::string filename) : Monitor(filename, default_extension) { init(source,filename,0,source->get_size()); } @@ -49,27 +50,9 @@ BinarySpikeMonitor::~BinarySpikeMonitor() free(); } -void BinarySpikeMonitor::open_output_file(std::string filename) -{ - if ( filename.empty() ) { // generate a default name - filename = generate_filename(); - } - - outfile.open( filename.c_str(), std::ios::binary ); - if (!outfile) { - std::stringstream oss; - oss << "Can't open binary output file " << filename; - auryn::logger->msg(oss.str(),ERROR); - exit(1); - } -} void BinarySpikeMonitor::init(SpikingGroup * source, std::string filename, NeuronID from, NeuronID to) { - default_file_extension = "spk"; - - open_output_file(filename); - auryn::sys->register_device(this); // sys = system; @@ -91,6 +74,25 @@ void BinarySpikeMonitor::init(SpikingGroup * source, std::string filename, Neuro void BinarySpikeMonitor::free() { + outfile.close(); +} + +void BinarySpikeMonitor::open_output_file(std::string filename) +{ + if ( filename.empty() ) { // generate a default name + auryn::logger->debug("Auto generating filename for BinarySpikeMonitor"); + filename = generate_filename(); + } + + + std::cout << filename << std::endl; + outfile.open( filename.c_str(), std::ios::binary ); + if (!outfile) { + std::stringstream oss; + oss << "Can't open binary output file " << filename; + auryn::logger->msg(oss.str(),ERROR); + exit(1); + } } void BinarySpikeMonitor::set_offset(NeuronID of) diff --git a/src/BinarySpikeMonitor.h b/src/BinarySpikeMonitor.h index 33d763f8..f9f3488c 100644 --- a/src/BinarySpikeMonitor.h +++ b/src/BinarySpikeMonitor.h @@ -48,6 +48,7 @@ namespace auryn { class BinarySpikeMonitor : public Monitor { private: + static const std::string default_extension; NeuronID n_from; NeuronID n_to; NeuronID n_every; diff --git a/src/BinaryStateMonitor.cpp b/src/BinaryStateMonitor.cpp index 307ab714..fbe70a41 100644 --- a/src/BinaryStateMonitor.cpp +++ b/src/BinaryStateMonitor.cpp @@ -27,8 +27,9 @@ using namespace auryn; +const std::string BinaryStateMonitor::default_extension = "bst"; -BinaryStateMonitor::BinaryStateMonitor(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynDouble sampling_interval) : Monitor() +BinaryStateMonitor::BinaryStateMonitor(SpikingGroup * source, NeuronID id, std::string statename, std::string filename, AurynDouble sampling_interval) : Monitor(filename, default_extension) { if ( !source->localrank(id) ) return; // do not register if neuron is not on the local rank @@ -51,7 +52,7 @@ BinaryStateMonitor::BinaryStateMonitor(SpikingGroup * source, NeuronID id, std:: } } -BinaryStateMonitor::BinaryStateMonitor(auryn_vector_float * state, NeuronID id, std::string filename, AurynDouble sampling_interval): Monitor() +BinaryStateMonitor::BinaryStateMonitor(auryn_vector_float * state, NeuronID id, std::string filename, AurynDouble sampling_interval): Monitor(filename, default_extension) { if ( id >= state->size ) return; // do not register if neuron is out of vector range @@ -64,7 +65,7 @@ BinaryStateMonitor::BinaryStateMonitor(auryn_vector_float * state, NeuronID id, lastval = *target_variable; } -BinaryStateMonitor::BinaryStateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval): Monitor() +BinaryStateMonitor::BinaryStateMonitor(EulerTrace * trace, NeuronID id, std::string filename, AurynDouble sampling_interval): Monitor(filename, default_extension) { if ( id >= trace->get_state_ptr()->size ) return; // do not register if neuron is out of vector range @@ -94,10 +95,6 @@ void BinaryStateMonitor::open_output_file(std::string filename) void BinaryStateMonitor::init(std::string filename, AurynDouble sampling_interval) { - default_file_extension = "bst"; - - open_output_file(filename); - set_stop_time(10.0); ssize = sampling_interval/dt; if ( ssize < 1 ) ssize = 1; @@ -127,6 +124,8 @@ BinaryStateMonitor::~BinaryStateMonitor() const AurynTime t = auryn::sys->get_clock()-ssize; write_frame(t, lastval); } + + outfile.close(); } diff --git a/src/BinaryStateMonitor.h b/src/BinaryStateMonitor.h index 1dd67b63..ac578e93 100644 --- a/src/BinaryStateMonitor.h +++ b/src/BinaryStateMonitor.h @@ -42,6 +42,8 @@ namespace auryn { class BinaryStateMonitor : public Monitor { private: + static const std::string default_extension; + void write_frame(const AurynTime time, const AurynState value); void open_output_file(std::string filename); diff --git a/src/Monitor.cpp b/src/Monitor.cpp index bc629603..a1b6e432 100644 --- a/src/Monitor.cpp +++ b/src/Monitor.cpp @@ -65,9 +65,9 @@ std::string Monitor::generate_filename(std::string name_hint) std::stringstream oss; oss << get_name() << name_hint; std::string tmpstr = oss.str(); - std::transform(tmpstr.begin(), tmpstr.end(), tmpstr.begin(), ::tolower); tmpstr.erase(std::remove(tmpstr.begin(),tmpstr.end(),' '),tmpstr.end()); - tmpstr = sys->fn(get_name(), default_file_extension); + std::transform(tmpstr.begin(), tmpstr.end(), tmpstr.begin(), ::tolower); + tmpstr = sys->fn(tmpstr, default_file_extension); std::cout << tmpstr << std::endl; return tmpstr; } diff --git a/src/System.cpp b/src/System.cpp index 89f2f507..6ec8d5bd 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -289,8 +289,9 @@ void System::propagate() void System::execute_devices() { std::vector::const_iterator iter; - for ( iter = devices.begin() ; iter != devices.end() ; ++iter ) + for ( iter = devices.begin() ; iter != devices.end() ; ++iter ) { (*iter)->propagate(); + } } From 02463699ec6d4c103f49bdc31296faadd8b845a9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 15:08:46 -0700 Subject: [PATCH 374/460] Removes debug cout --- src/Monitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monitor.cpp b/src/Monitor.cpp index a1b6e432..6e10271e 100644 --- a/src/Monitor.cpp +++ b/src/Monitor.cpp @@ -68,7 +68,7 @@ std::string Monitor::generate_filename(std::string name_hint) tmpstr.erase(std::remove(tmpstr.begin(),tmpstr.end(),' '),tmpstr.end()); std::transform(tmpstr.begin(), tmpstr.end(), tmpstr.begin(), ::tolower); tmpstr = sys->fn(tmpstr, default_file_extension); - std::cout << tmpstr << std::endl; + // std::cout << tmpstr << std::endl; return tmpstr; } From 8c32e9e8190c588d47eec7f5dd1594951c3da9d0 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 16:18:45 -0700 Subject: [PATCH 375/460] Improvements in AurynVector Adds fast_exp and neg() function. --- src/AurynVector.cpp | 8 ++++++++ src/AurynVector.h | 47 ++++++++++++++++++++++++++++++++++++--------- 2 files changed, 46 insertions(+), 9 deletions(-) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 091562e0..8ca7b4fa 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -272,6 +272,14 @@ void AurynVectorFloat::diff(AurynVectorFloat * a, AurynVectorFloat * b) void AurynVectorFloat::diff(AurynVectorFloat * a, const float b) { + check_size(a); sum(a,-b); } +void AurynVectorFloat::diff(const float a, AurynVectorFloat * b ) +{ + check_size(b); + sum(b,-a); + neg(); +} + diff --git a/src/AurynVector.h b/src/AurynVector.h index 24436880..29d5fb60 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -70,16 +70,16 @@ namespace auryn { #endif } - /*! \brief Computes approximation of exp(x) via series approximation up to order n. */ - T fast_exp(T x, const int n=5) + /*! \brief Computes approximation of exp(x) via fast series approximation up to n=256. */ + T fast_exp256(T x) { - T sum = 1.0f; // initialize sum of series + x = 1.0 + x / 256.0; + x *= x; x *= x; x *= x; x *= x; + x *= x; x *= x; x *= x; x *= x; - for (int i = n - 1; i > 0; --i ) - sum = 1 + x * sum / i; - - return sum; + return x; } + /*! \brief Checks if vector size matches to this instance * * Check only enabled if NDEBUG is not defined.*/ @@ -186,11 +186,21 @@ namespace auryn { } } - /*! \brief Computes an approximation of exp(x) for each vector element. */ + /*! \brief Computes an approximation of exp(x) for each vector element. + * + * \param n accuracy */ + void fast_exp() + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = fast_exp256(data[i]); + } + } + + /*! \brief Computes exp(x) for each vector element. */ void exp() { for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] = fast_exp(data[i]); + data[i] = std::exp(data[i]); } } @@ -270,6 +280,14 @@ namespace auryn { } } + /*! \brief Flips the sign of all elements. */ + void neg() + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = -data[i]; + } + } + /*! \brief Computes the sum a+b and stores the result in this instance * * */ @@ -313,6 +331,16 @@ namespace auryn { sum(a,-b); } + /*! \brief Computes the difference a-b and stores the result in this instance + * + * */ + void diff(const T a, AurynVector * b) + { + check_size(b); + sum(b,-a); + neg(); + } + /*! \brief Copies vector v * @@ -517,6 +545,7 @@ namespace auryn { void sum(AurynVectorFloat * a, const float b); void diff(AurynVectorFloat * a, AurynVectorFloat * b); void diff(AurynVectorFloat * a, const float b); + void diff(const float a, AurynVectorFloat * b ); // TODO add pow function with intrinsics _mm_pow_ps From 65f189ea3098dfee033d8e859a923da3a7752fd6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 16:22:55 -0700 Subject: [PATCH 376/460] Vectorizes AdEx and makes it about 4x faster --- src/AdExGroup.cpp | 64 ++++++++++++++++++++++++++++++++++++----------- src/AdExGroup.h | 7 +++++- 2 files changed, 55 insertions(+), 16 deletions(-) diff --git a/src/AdExGroup.cpp b/src/AdExGroup.cpp index 8d3411eb..a530b08b 100644 --- a/src/AdExGroup.cpp +++ b/src/AdExGroup.cpp @@ -74,6 +74,11 @@ void AdExGroup::init() t_w = auryn_vector_float_ptr ( w , 0 ); t_ref = auryn_vector_ushort_ptr ( ref , 0 ); + I_leak = get_state_vector("I_leak"); + I_exc = get_state_vector("I_exc"); + I_inh = get_state_vector("I_inh"); + temp = get_state_vector("_temp"); + clear(); } @@ -101,20 +106,42 @@ AdExGroup::~AdExGroup() void AdExGroup::evolve() { - // TODO we should vectorize this code and use some fast SSE - // library such as http://gruntthepeon.free.fr/ssemath/ - // for the exponential - for (NeuronID i = 0 ; i < get_rank_size() ; ++i ) { - if (t_ref[i]==0) { + // Compute + // t_mem[i] += scale_mem * ( + // e_rest-t_mem[i] + // + deltat * exp((t_mem[i]-e_thr)/deltat) + // - t_g_ampa[i] * (t_mem[i]-e_rev_ampa) + // - t_g_gaba[i] * (t_mem[i]-e_rev_gaba) + // -t_w[i] ) ; + // as vectorized code + + // Compute currents + I_leak->diff(e_rest,mem); + + I_exc->diff(e_rev_ampa, mem); + I_exc->mul(g_ampa); + + I_inh->diff(e_rev_gaba, mem); + I_inh->mul(g_gaba); + + // compute spike generating current + temp->diff(mem,e_thr); + temp->scale(1.0/deltat); + temp->fast_exp(); + temp->scale(deltat); - // Euler upgrade membrane potentital - t_mem[i] += scale_mem * ( - e_rest-t_mem[i] - + deltat * exp((t_mem[i]-e_thr)/deltat) - - t_g_ampa[i] * (t_mem[i]-e_rev_ampa) - - t_g_gaba[i] * (t_mem[i]-e_rev_gaba) - -t_w[i] ) ; + // sum up all the currents + temp->add(I_leak); + temp->add(I_exc); + temp->add(I_inh); + temp->sub(w); // adaptation current + // Euler update membrane + mem->saxpy(scale_mem, temp); + + // check thresholds + for (NeuronID i = 0 ; i < get_rank_size() ; ++i ) { + if (t_ref[i]==0) { if (t_mem[i]>0.0) { push_spike(i); t_mem[i] = e_reset; @@ -125,11 +152,18 @@ void AdExGroup::evolve() t_ref[i]-- ; t_mem[i] = e_rest ; } - - // Euler upgrade adaptation variable - t_w[i] += scale_w * (a * (t_mem[i]-e_rest) - t_w[i]); } + // computes + // dw = scale_w * (a * (t_mem[i]-e_rest) - t_w[i]); + // in vector lingo + temp->diff(mem,e_rest); + temp->scale(a); + temp->sub(w); + // Euler upgrade adaptation variable + w->saxpy(scale_w,temp); + + g_ampa->scale(scale_ampa); g_gaba->scale(scale_gaba); } diff --git a/src/AdExGroup.h b/src/AdExGroup.h index 24fc308f..0111764d 100644 --- a/src/AdExGroup.h +++ b/src/AdExGroup.h @@ -58,7 +58,12 @@ class AdExGroup : public NeuronGroup auryn_vector_ushort * ref; /*! Stores the adaptation current. */ - auryn_vector_float * w; + AurynStateVector * w; + + AurynStateVector * I_exc; + AurynStateVector * I_inh; + AurynStateVector * I_leak; + AurynStateVector * temp; AurynFloat * t_g_ampa; AurynFloat * t_g_gaba; From 7f4cf93d23484129a90c1002841437fa23baa75e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 16:39:46 -0700 Subject: [PATCH 377/460] Adds forgotten Device files --- src/Device.cpp | 76 +++++++++++++++++++++++++++++++++++ src/Device.h | 105 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 181 insertions(+) create mode 100644 src/Device.cpp create mode 100644 src/Device.h diff --git a/src/Device.cpp b/src/Device.cpp new file mode 100644 index 00000000..3002055e --- /dev/null +++ b/src/Device.cpp @@ -0,0 +1,76 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "Device.h" + +using namespace auryn; + +int Device::device_id_count = 0; + +void Device::init() +{ + device_id = device_id_count++; + std::stringstream default_name; + default_name << "Device" << get_id(); + set_name(default_name.str()); + active = true; +} + +Device::Device( ) +{ + init(); +} + +Device::~Device() +{ +} + +void Device::virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) +{ +} + +void Device::virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) +{ +} + +void Device::flush() +{ +} + +void Device::set_name( std::string str ) +{ + device_name = str; +} + +std::string Device::get_name() +{ + return device_name; +} + +int Device::get_id() +{ + return device_id; +} + diff --git a/src/Device.h b/src/Device.h new file mode 100644 index 00000000..0cd89ae4 --- /dev/null +++ b/src/Device.h @@ -0,0 +1,105 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef DEVICE_H_ +#define DEVICE_H_ + +#include "auryn_definitions.h" +#include "AurynVector.h" +#include +#include + +namespace auryn { + + class System; + + /*! \brief Abstract base class for all Device, Stimulator, etc objects. + * + * Devices are executed after SpikingGroups and Connection objects in the Auryn duty cycle. + * Most commonly a Device will be a Monitor, but it could be a stimulator or something else too. + */ + + class Device + { + private: + /*! Stores the unique device_id of this Device */ + int device_id; + + /*! Stores the current value of the gid count */ + static int device_id_count; + + /*! Functions necesssary for serialization and loading saving to netstate files. */ + friend class boost::serialization::access; + template + void serialize(Archive & ar, const unsigned int version) + { + virtual_serialize(ar, version); + } + + + protected: + /*! \brief Identifying name for device */ + std::string device_name; + + /*! \brief Standard initializer to be called by the constructor */ + void init(); + + /* Functions necesssary for serialization and loading saving to netstate files. */ + virtual void virtual_serialize(boost::archive::binary_oarchive & ar, const unsigned int version ) ; + virtual void virtual_serialize(boost::archive::binary_iarchive & ar, const unsigned int version ) ; + + public: + /*! \brief Standard active switch */ + bool active; + + /*! \brief Standard constructor */ + Device(); + + /*! \brief Set device name */ + void set_name(std::string s); + + /*! \brief Get device name */ + std::string get_name(); + + /*! \brief Get numeric device id */ + int get_id(); + + /*! \brief Flush to file */ + virtual void flush(); + + /*! \brief Standard destructor */ + virtual ~Device(); + + /*! Virtual propagate function to be called in central simulation loop in System */ + virtual void propagate() = 0; + }; + + BOOST_SERIALIZATION_ASSUME_ABSTRACT(Device) + + extern System * sys; + extern Logger * logger; +} + +#endif /*DEVICE_H_*/ From aab5eb11fdaad47d69824e9a9ee8cc3255874d71 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 21:12:29 -0700 Subject: [PATCH 378/460] Adds API function to SpikingGroup --- src/SpikingGroup.cpp | 4 ++++ src/SpikingGroup.h | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index bc6439ee..dbc12408 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -717,6 +717,10 @@ AurynStateVector * SpikingGroup::get_state_vector(std::string key) } } +AurynStateVector * SpikingGroup::get_new_state_vector(std::string key) { + return get_state_vector(key); +} + AurynStateVector * SpikingGroup::find_state_vector(std::string key) { if ( state_vectors.find(key) == state_vectors.end() ) { diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index ae9a16e1..86667c5a 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -154,6 +154,11 @@ class SpikingGroup /*! \brief Creates a new or returns an existing state vector by name. */ AurynStateVector * get_state_vector(std::string key); + /*! \brief Returns an new state vector by name. + * + * \todo Implement an exception when a state vector already exists. */ + AurynStateVector * get_new_state_vector(std::string key); + /*! \brief Creates a new group-wide state variable or returns an existing group-wide variable by name then returns a pointer to it. */ AurynState * get_state_variable(std::string key); From 6735819aebb29b9193701c107639deb3a02ea35e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 22:07:47 -0700 Subject: [PATCH 379/460] Modifications to progressbar (System) --- src/System.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index 6ec8d5bd..63ab3bbc 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -331,8 +331,11 @@ void System::progressbar ( double fraction, AurynTime clk ) { std::cout<< percent << "% "<< setiosflags(std::ios::fixed) << " t=" << time ; - if ( online_rate_monitor_id >= 0 ) - std::cout << std::setprecision(1) << " f=" << online_rate_monitor_state << " Hz "; + if ( online_rate_monitor_id >= 0 ) { + std::cout << std::setprecision(1) << " f=" << online_rate_monitor_state << " Hz" + << " in " << spiking_groups.at(online_rate_monitor_id)->get_name(); + + } std::cout << std::flush; @@ -426,10 +429,10 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, << "s with SpeedFactor=" << td/(LOGGER_MARK_INTERVAL*dt); AurynTime simtime_left = total_time-dt*(get_clock()-starttime+1); - AurynDouble remaining = simtime_left*td/(LOGGER_MARK_INTERVAL*dt)/60; // in minutes - if ( remaining > 5 ) { // only show when more than 5min + AurynDouble remaining_minutes = simtime_left*td/(LOGGER_MARK_INTERVAL*dt)/60; // in minutes + if ( remaining_minutes > 5 ) { // only show when more than 5min oss << ", approximately " - << remaining + << remaining_minutes << "min of runtime remaining"; } From 0d4b19e131bc321ecf4767b87cde0002143d8323 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 22:12:50 -0700 Subject: [PATCH 380/460] Fixes progressbar bug --- src/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.cpp b/src/System.cpp index 63ab3bbc..86f0550a 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -333,7 +333,7 @@ void System::progressbar ( double fraction, AurynTime clk ) { if ( online_rate_monitor_id >= 0 ) { std::cout << std::setprecision(1) << " f=" << online_rate_monitor_state << " Hz" - << " in " << spiking_groups.at(online_rate_monitor_id)->get_name(); + << " in " << spiking_groups.at(online_rate_monitor_id)->get_name() << " "; } From fb1d63e29179f34289c64ef73038a735420e257a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Mon, 1 Aug 2016 22:36:15 -0700 Subject: [PATCH 381/460] Adds mem clipping to AdEx for stability --- src/AdExGroup.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AdExGroup.cpp b/src/AdExGroup.cpp index a530b08b..e5033fb5 100644 --- a/src/AdExGroup.cpp +++ b/src/AdExGroup.cpp @@ -138,6 +138,7 @@ void AdExGroup::evolve() // Euler update membrane mem->saxpy(scale_mem, temp); + mem->clip(e_rev_gaba, 20e-3); // needs to be larger than 0.0 // check thresholds for (NeuronID i = 0 ; i < get_rank_size() ; ++i ) { From e1beea78e0d5b722894d74c3849e6e455dfe154d Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 11:27:11 -0700 Subject: [PATCH 382/460] Adds doxystrings --- src/AurynVector.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/AurynVector.h b/src/AurynVector.h index 29d5fb60..a6724681 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -111,7 +111,16 @@ namespace auryn { protected: public: + /*! \brief Size of the vector + * + * \todo Consider including a non_zero size paramter too, + * because we are using this template also in sparse matrices now + * for complex synaptic dynamics in which not all elements are necessarily + * used... + * */ IndexType size; + + /*! \brief Pointer to the array housing the data */ T * data; /*! \brief Default constructor */ From 23ccc842fba3549b094646185162310177d12cfa Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 17:11:33 -0700 Subject: [PATCH 383/460] Adds unit test files for ComplexMatrix and AurynVector --- CMakeLists.txt | 8 +- tests/src/CMakeLists.txt | 9 ++ tests/src/test_AurynVector.cpp | 42 +++++++ tests/src/test_ComplexMatrix.cpp | 102 +++++++++++++++++ tests/src/test_send.cpp | 79 -------------- tests/src/test_simplematrix.cpp | 64 ----------- tests/src/test_sync.cpp | 182 ------------------------------- tests/src/test_traces.cpp | 88 --------------- 8 files changed, 160 insertions(+), 414 deletions(-) create mode 100644 tests/src/CMakeLists.txt create mode 100644 tests/src/test_AurynVector.cpp create mode 100644 tests/src/test_ComplexMatrix.cpp delete mode 100644 tests/src/test_send.cpp delete mode 100644 tests/src/test_simplematrix.cpp delete mode 100644 tests/src/test_sync.cpp delete mode 100644 tests/src/test_traces.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 3097153b..73056da3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,11 @@ FIND_PACKAGE(MPI REQUIRED) # Required Boost libraries SET(BOOST_MIN_VERSION "1.41.0") -FIND_PACKAGE(Boost ${BOOST_MIN_VERSION} REQUIRED COMPONENTS mpi serialization program_options date_time) +FIND_PACKAGE(Boost ${BOOST_MIN_VERSION} REQUIRED COMPONENTS mpi serialization program_options date_time unit_test_framework) + +# Recommended: Doxygen +FIND_PACKAGE(Doxygen) + INCLUDE_DIRECTORIES( ${MPI_CXX_INCLUDE_PATH} ) INCLUDE_DIRECTORIES( ${Boost_INCLUDE_DIRS} ) @@ -28,3 +32,5 @@ ADD_SUBDIRECTORY(src) ADD_SUBDIRECTORY(examples) ADD_SUBDIRECTORY(tools) +# Unit tests +ADD_SUBDIRECTORY(tests/src) diff --git a/tests/src/CMakeLists.txt b/tests/src/CMakeLists.txt new file mode 100644 index 00000000..7383c9b0 --- /dev/null +++ b/tests/src/CMakeLists.txt @@ -0,0 +1,9 @@ +file( GLOB TEST_SOURCES test_*.cpp ) +ADD_DEFINITIONS(-DBOOST_TEST_DYN_LINK) +foreach( sourcepath ${TEST_SOURCES} ) + get_filename_component( sourcefile ${sourcepath} NAME ) + string( REPLACE ".cpp" "" simname ${sourcefile} ) + add_executable( ${simname} ${sourcefile} ) + target_link_libraries( ${simname} auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) +endforeach( sourcepath ${TEST_SOURCES} ) + diff --git a/tests/src/test_AurynVector.cpp b/tests/src/test_AurynVector.cpp new file mode 100644 index 00000000..800ed55c --- /dev/null +++ b/tests/src/test_AurynVector.cpp @@ -0,0 +1,42 @@ +#define BOOST_TEST_MODULE AurynVector test +#include +#include "../../src/AurynVector.h" + +BOOST_AUTO_TEST_CASE( resizing ) { + + int n = 10; + auryn::AurynVector v( n ); + for ( int i = 0 ; i < n ; ++i ) v.set(i,i); + + BOOST_CHECK_EQUAL( v.size, n ); + + for ( int i = 0 ; i < n ; ++i ) + BOOST_CHECK_EQUAL( v.data[i], i ); + + v.resize( 2*n ); + BOOST_CHECK_EQUAL( v.size, 2*n ); + + for ( int i = 0 ; i < n ; ++i ) + BOOST_CHECK_EQUAL( v.data[i], i ); + + for ( int i = n ; i < 2*n ; ++i ) + BOOST_CHECK_EQUAL( v.data[i], 0 ); + + v.resize( n/2 ); + BOOST_CHECK_EQUAL( v.size, n/2 ); + + for ( int i = 0 ; i < n/2 ; ++i ) + BOOST_CHECK_EQUAL( v.data[i] , i ); +} + +BOOST_AUTO_TEST_CASE( pow2 ) { + int n = 10; + auryn::AurynVector v( n ); + for ( int i = 0 ; i < n ; ++i ) v.set(i,i); + + v.pow(2); + for ( int i = 0 ; i < n ; ++i ) + BOOST_CHECK_EQUAL( v.data[i] , (float)i*(float)i ); +} + +// EOF diff --git a/tests/src/test_ComplexMatrix.cpp b/tests/src/test_ComplexMatrix.cpp new file mode 100644 index 00000000..49cd7f86 --- /dev/null +++ b/tests/src/test_ComplexMatrix.cpp @@ -0,0 +1,102 @@ +#define BOOST_TEST_MODULE ComplexMatrix test +#include +#include +#include "ComplexMatrix.cpp" + +// using namespace auryn; + +int element(int i, int j, int offset=1) { return (i*(j+offset))%257; } + +BOOST_AUTO_TEST_CASE( dense_fill_and_read ) { + + int nb_pre = 123; + int nb_post = 13; + auryn::ComplexMatrix mat(nb_pre,nb_post,nb_pre*nb_post); + + for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); + + int count = 0; + for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); +// mat.set_num_synaptic_states(3); +// +// // sparse fill +// for (int j = 0 ; j * sv = mat.get_synaptic_state_vector(2); +// sv->set_random_normal(0.0,20); +// auryn::AurynVector * cp = new auryn::AurynVector(mat.get_synaptic_state_vector(2)); +// mat.get_synaptic_state_vector(1)->diff(mat.get_synaptic_state_vector(0),mat.get_synaptic_state_vector(2)); +// +// for (int j = 0 ; j. -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include -#include -#include -#include -#include -#include "SpikeContainer.h" - -namespace mpi = boost::mpi; -using namespace std; - -int msgtag(int x, int y, int s) { - return x*s+y; -} - -int main(int argc, char* argv[]) -{ - int len = 10; - - mpi::environment env(argc, argv); - mpi::communicator world; - - mpi::request sendreqs[10]; // TODO max num of requests - mpi::request recvreqs[10]; // TODO max num of requests - SpikeContainer out_msg; - SpikeContainer msg[10]; - for (int i = 0 ; i < len ; ++i) - out_msg.push_back(i+len*world.rank()); - - // cout << "This is out msg " << world.rank() << endl; - // out_msg.print_spikes(); - // cout << " Sending ... " << endl; - - for (int i = 0 ; i < world.size()-1 ; ++i) { - int dst = (world.rank()+i+1)%world.size(); - int src = dst; - int tag = msgtag(world.rank(),dst,world.size()); - cout << "isend: " << world.rank() << "::" << dst << " tag " << tag << endl; - sendreqs[i] = world.isend(dst, tag, out_msg); - tag = msgtag(src,world.rank(),world.size()); - cout << "irecv: " << world.rank() << "::" << src << " tag " << tag << endl; - recvreqs[i] = world.irecv(src, tag, msg[i]); - } - - mpi::wait_all(recvreqs, recvreqs + world.size()-1); - - if (world.rank()==1) { - for (int i = 0 ; i < world.size()-1 ; ++i) { - cout << "This is rank " << world.rank() << endl; - msg[i].print_spikes(); - } - } - return 0; -} - diff --git a/tests/src/test_simplematrix.cpp b/tests/src/test_simplematrix.cpp deleted file mode 100644 index d442f708..00000000 --- a/tests/src/test_simplematrix.cpp +++ /dev/null @@ -1,64 +0,0 @@ -/* -* Copyright 2014-2015 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include -#include "SimpleMatrix.cpp" - -using namespace std; - -int main() { - int size = 3; - SimpleMatrix mat(size,size,size*size); - - // cout << "fill" << endl; - // for (int x = 0 ; x. -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include -#include -#include -#include - -#include -#include -#include -#include - -#include "auryn_global.h" -#include "auryn_definitions.h" -#include "System.h" -#include "Logger.h" -#include "PoissonGroup.h" -#include "IFGroup.h" -#include "P09Connection.h" -#include "SpikeMonitor.h" -#include "DelayedSpikeMonitor.h" -#include "PopulationRateMonitor.h" -#include "RateChecker.h" - -using namespace std; - -namespace po = boost::program_options; -namespace mpi = boost::mpi; - -/*! \brief Small simultion to test the functionality of SyncBuffer at a high level. - * - * Run the test using for instance - * mpirun -n 3 ./test_sync - * - * Then in gnuplot review the output as follows: - * plot '< peep.sh test_sync.a.0.ras' w d, '< peep.sh test_sync.a.1.ras' w d, '< peep.sh test_sync.a.2.ras' w d, '< peep.sh test_sync.a.1.dras' using ($1-0.0008):2 w d lc -1 - * - * In the last third all spikes should be covered by black dots. Vice versa, when reversing the order all black dots should be covered by colored dots. - */ -int main(int ac, char* av[]) -{ - - string dir = "./"; - string file_prefix = "test_sync"; - - char strbuf [255]; - string msg; - - NeuronID size = 1000; - NeuronID seed = 1; - double kappa = 5.; - double simtime = 1.; - - int errcode = 0; - - try { - - po::options_description desc("Allowed options"); - desc.add_options() - ("help", "produce help message") - ("simtime", po::value(), "simulation time") - ("kappa", po::value(), "poisson group rate") - ("size", po::value(), "poisson group size") - ("seed", po::value(), "random seed") - ; - - po::variables_map vm; - po::store(po::parse_command_line(ac, av, desc), vm); - po::notify(vm); - - if (vm.count("help")) { - cout << desc << "\n"; - return 1; - } - - - if (vm.count("kappa")) { - cout << "kappa set to " - << vm["kappa"].as() << ".\n"; - kappa = vm["kappa"].as(); - } - - if (vm.count("simtime")) { - cout << "simtime set to " - << vm["simtime"].as() << ".\n"; - simtime = vm["simtime"].as(); - } - - if (vm.count("size")) { - cout << "size set to " - << vm["size"].as() << ".\n"; - size = vm["size"].as(); - } - - if (vm.count("seed")) { - cout << "seed set to " - << vm["seed"].as() << ".\n"; - seed = vm["seed"].as(); - } - } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; - return 1; - } - catch(...) { - cerr << "Exception of unknown type!\n"; - } - - // BEGIN Global stuff - mpi::environment env(ac, av); - mpi::communicator world; - communicator = &world; - - sprintf(strbuf, "%s/%s.%d.log", dir.c_str(), file_prefix.c_str(), world.rank()); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - - sys = new System(&world); - // END Global stuff - - PoissonGroup * poisson = new PoissonGroup(size,kappa); - PoissonGroup * poisson2 = new PoissonGroup(size,kappa); - - IFGroup * neurons = new IFGroup(100); - - P09Connection * con = new P09Connection( - poisson,neurons, - 0.1,0.1); - - P09Connection * con2 = new P09Connection( - poisson2,neurons, - 0.1,0.1); - - sprintf(strbuf, "%s/%s.a.%d.ras", dir.c_str(), file_prefix.c_str(), world.rank() ); - SpikeMonitor * smon_e = new SpikeMonitor( poisson, strbuf, size); - - sprintf(strbuf, "%s/%s.a.%d.dras", dir.c_str(), file_prefix.c_str(), world.rank() ); - DelayedSpikeMonitor * dsmon_e = new DelayedSpikeMonitor( poisson, strbuf, size); - - sprintf(strbuf, "%s/%s.b.%d.ras", dir.c_str(), file_prefix.c_str(), world.rank() ); - SpikeMonitor * smon_e2 = new SpikeMonitor( poisson2, strbuf, size); - - sprintf(strbuf, "%s/%s.b.%d.dras", dir.c_str(), file_prefix.c_str(), world.rank() ); - DelayedSpikeMonitor * dsmon_e2 = new DelayedSpikeMonitor( poisson2, strbuf, size); - - sprintf(strbuf, "%s/%s.%d.prate", dir.c_str(), file_prefix.c_str(), world.rank() ); - PopulationRateMonitor * pmon_e = new PopulationRateMonitor( poisson, strbuf, 1.0 ); - - RateChecker * chk = new RateChecker( poisson , -1 , 20.*kappa , 10); - if (!sys->run(simtime,false)) - errcode = 1; - - logger->msg("Freeing ...",PROGRESS,true); - delete sys; - - if (errcode) - env.abort(errcode); - return errcode; -} diff --git a/tests/src/test_traces.cpp b/tests/src/test_traces.cpp deleted file mode 100644 index 0db24b75..00000000 --- a/tests/src/test_traces.cpp +++ /dev/null @@ -1,88 +0,0 @@ -/* -* Copyright 2014-2015 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include "System.h" -#include "Logger.h" -#include "EulerTrace.h" -#include "LinearTrace.h" - - -int main(int ac, char* av[]) -{ - // BEGIN Global stuff - mpi::environment env(ac, av); - mpi::communicator world; - communicator = &world; - - char strbuf [255]; - sprintf(strbuf, "%s/%s.log", ".", "test_traces" ); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - - sys = new System(&world); - // END Global stuff - - double tau = 20e-3; - EulerTrace * tr_euler = new EulerTrace(2,tau); - LinearTrace * tr_linear = new LinearTrace(2,tau,sys->get_clock_ptr()); - - for ( int i = 0 ; i < 10000 ; ++i ) { - if ( i % 332 == 0 ) { - tr_euler->inc(0); - tr_linear->inc(0); - } - if ( i % 100 == 0 ) { - cout << i*1e-4 << " " << tr_euler->get(0) - << " " << tr_linear->get(0) - << " " << tr_euler->get(0) - << " " << tr_linear->get(0) - << endl; - } - - tr_euler->evolve(); - tr_linear->evolve(); - - sys->step(); - } - - for ( int i = 10000 ; i < 200000 ; ++i ) { - if ( i % 1024 == 0 ) { - tr_euler->inc(0); - tr_linear->inc(0); - } - if ( i % 1050 == 0 ) { - cout << i*1e-4 << " " << tr_euler->get(0) - << " " << tr_linear->get(0) - << " " << tr_euler->get(0) - << " " << tr_linear->get(0) - << endl; - } - tr_euler->evolve(); - tr_linear->evolve(); - sys->step(); - } - - return 0; -} From d22f17a55e85c1b4078410b6b0ee42c49585e637 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 17:12:25 -0700 Subject: [PATCH 384/460] Adds random init and resize func to AurynVector --- src/AurynVector.h | 38 ++++++++++++++++++++++++++++++++++---- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index a6724681..576007e6 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -26,6 +26,7 @@ #ifndef AURYNVECTOR_H_ #define AURYNVECTOR_H_ +#include #include "auryn_definitions.h" @@ -76,7 +77,6 @@ namespace auryn { x = 1.0 + x / 256.0; x *= x; x *= x; x *= x; x *= x; x *= x; x *= x; x *= x; x *= x; - return x; } @@ -145,14 +145,23 @@ namespace auryn { freebuf(); } - /*! \brief resize data array to new_size */ + /*! \brief resize data array to new_size + * + * The function tries to preserve data while resizing. + * If a vector is downsized elements at the end are simply dropped. + * When the vector size is increased the new elements at the end are + * intialized with zeros.*/ void resize(IndexType new_size) { if ( size != new_size ) { - freebuf(); + T * old_data = data; + IndexType old_size = size; allocate(new_size); + // copy old data + const size_t copy_size = std::min(old_size,new_size) * sizeof(T); + std::memcpy(data, old_data, copy_size); + free(old_data); } - set_zero(); } /*! \brief Set all elements to value v. */ @@ -169,6 +178,27 @@ namespace auryn { set_all(0.0); } + void set_random_normal(AurynState mean=0.0, AurynState sigma=1.0, unsigned int seed=8721) + { + if ( seed == 0 ) + seed = static_cast(std::time(0)); + boost::mt19937 randgen(seed); + boost::normal_distribution<> dist((double)mean, (double)sigma); + boost::variate_generator > die(randgen, dist); + AurynState rv; + for ( IndexType i = 0 ; i Date: Tue, 2 Aug 2016 17:53:50 -0700 Subject: [PATCH 385/460] Fixes bug in bisec in SimpleMatrix --- src/SimpleMatrix.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SimpleMatrix.h b/src/SimpleMatrix.h index 1f55c2a6..20db7cea 100644 --- a/src/SimpleMatrix.h +++ b/src/SimpleMatrix.h @@ -436,6 +436,9 @@ T * SimpleMatrix::get_ptr(NeuronID i, NeuronID j) NeuronID * lo = rowptrs[i]; NeuronID * hi = rowptrs[i+1]; NeuronID * c = hi; + + if ( lo >= hi ) // no elements/targets in this row + return NULL; while ( lo < hi ) { c = lo + (hi-lo)/2; From 46587e7b6ac114be89fd8f1d9f7f3a5502a83ceb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 17:54:04 -0700 Subject: [PATCH 386/460] Fixes two bugs in complex matrix --- src/ComplexMatrix.h | 38 +++++++++++++++----------------------- 1 file changed, 15 insertions(+), 23 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 56c3a58f..729faa2c 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -195,10 +195,6 @@ class ComplexMatrix /*! \brief Sames as get_synaptic_state_vector(StateID z) */ AurynVector * get_state_vector(StateID z=0); - /*! \brief Resizes one state vector and copies existing data - * */ - AurynVector * resize_state_vector(AurynVector * old, AurynLong oldsize, AurynLong newsize); - /*! \brief Resize buffer * * Allocates a new buffer of size and copies the @@ -500,21 +496,11 @@ void ComplexMatrix::init(NeuronID m, NeuronID n, AurynLong size, NeuronID z) } template -AurynVector * ComplexMatrix::resize_state_vector(AurynVector * old, AurynLong oldsize, AurynLong newsize) -{ - AurynVector * new_elementdata = new AurynVector(newsize); - AurynLong element_count = std::min(newsize,oldsize); - std::copy(old->data, old->data+element_count, new_elementdata->data); - delete [] old; - return new_elementdata; -} - -template -void ComplexMatrix::resize_buffers(AurynLong size) +void ComplexMatrix::resize_buffers(AurynLong new_size) { AurynLong oldsize = get_statesize(); - if ( oldsize == size ) return; - statesize = size; + if ( oldsize == new_size ) return; + statesize = new_size; NeuronID * new_colinds = new NeuronID [get_datasize()]; std::copy(colinds, colinds+get_nonzero(), new_colinds); @@ -529,10 +515,8 @@ void ComplexMatrix::resize_buffers(AurynLong size) colinds = new_colinds; for ( StateID i = 0 ; i < get_num_synaptic_states() ; ++i ) { - AurynVector * nvec = resize_state_vector(statevectors[i], oldsize, size); - statevectors[i] = nvec; + statevectors[i]->resize(new_size); } - } template @@ -731,6 +715,10 @@ T * ComplexMatrix::get_state_end(StateID z) template AurynLong ComplexMatrix::get_data_index(NeuronID i, NeuronID j) { +#ifdef DEBUG + std::cout << "cm: starting bisect " << i << ":" << j << std::endl; +#endif // DEBUG + // check bounds if ( !(i < m_rows && j < n_cols) ) return data_index_error_value; @@ -738,26 +726,29 @@ AurynLong ComplexMatrix::get_data_index(NeuronID i, NeuronID j) NeuronID * lo = rowptrs[i]; NeuronID * hi = rowptrs[i+1]; NeuronID * c = hi; + + if ( lo >= hi ) // no elements/targets in this row + return data_index_error_value; while ( lo < hi ) { c = lo + (hi-lo)/2; if ( *c < j ) lo = c+1; else hi = c; #ifdef DEBUG - std::cout << i << ":" << j << " " << *lo << ":" << *hi << std::endl; + std::cout << "cm: " << i << ":" << j << " " << *lo << ":" << *hi << std::endl; #endif // DEBUG } if ( *lo == j ) { #ifdef DEBUG - std::cout << "found element at data array position " + std::cout << "cm: " << "found element at data array position " << (lo-colinds) << std::endl; #endif // DEBUG return (lo-colinds); } #ifdef DEBUG - std::cout << "element not found" << std::endl; + std::cout << "cm: " << "element not found" << std::endl; #endif // DEBUG return data_index_error_value; @@ -969,6 +960,7 @@ NeuronID ComplexMatrix::get_n_cols() template void ComplexMatrix::print() { + std::cout << get_nonzero() << " elements in sparse matrix:" << std::endl; for (NeuronID i = 0 ; i < m_rows ; ++i) { for (NeuronID * r = get_row_begin(i) ; r != get_row_end(i) ; ++r ) { std::cout << i << " " << *r << " " << *get_ptr(r-colinds) << "\n"; From c5978b5dda309538eb4969a893635f204ccd0315 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 17:54:39 -0700 Subject: [PATCH 387/460] Updates unite test suite for ComplexMatrix --- tests/src/test_ComplexMatrix.cpp | 114 ++++++++++++++++++++----------- 1 file changed, 75 insertions(+), 39 deletions(-) diff --git a/tests/src/test_ComplexMatrix.cpp b/tests/src/test_ComplexMatrix.cpp index 49cd7f86..26ba4011 100644 --- a/tests/src/test_ComplexMatrix.cpp +++ b/tests/src/test_ComplexMatrix.cpp @@ -35,8 +35,8 @@ BOOST_AUTO_TEST_CASE( dense_fill_and_read ) { BOOST_AUTO_TEST_CASE( sparse_fill_and_read ) { - int nb_pre = 12; - int nb_post = 17; + int nb_pre = 52; + int nb_post = 21; auryn::ComplexMatrix mat(nb_pre,nb_post,nb_pre*nb_post); int count = 0; @@ -52,51 +52,87 @@ BOOST_AUTO_TEST_CASE( sparse_fill_and_read ) { mat.fill_zeros(); BOOST_CHECK_EQUAL( mat.get_nonzero(), count ); - for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); -// mat.set_num_synaptic_states(3); -// -// // sparse fill -// for (int j = 0 ; j * sv = mat.get_synaptic_state_vector(2); -// sv->set_random_normal(0.0,20); -// auryn::AurynVector * cp = new auryn::AurynVector(mat.get_synaptic_state_vector(2)); -// mat.get_synaptic_state_vector(1)->diff(mat.get_synaptic_state_vector(0),mat.get_synaptic_state_vector(2)); -// -// for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); + mat.set_num_synaptic_states(3); + + // sparse fill + for (int j = 0 ; jcopy(mat.get_synaptic_state_vector(0)); + mat.get_synaptic_state_vector(1)->scale(2); + mat.get_synaptic_state_vector(2)->copy(mat.get_synaptic_state_vector(1)); + mat.get_synaptic_state_vector(2)->mul(mat.get_synaptic_state_vector(0)); + + for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); + mat.set_num_synaptic_states(3); + + // sparse fill + for (int j = 0 ; jcopy(mat.get_synaptic_state_vector(0)); + mat.get_synaptic_state_vector(1)->scale(2); + mat.get_synaptic_state_vector(2)->copy(mat.get_synaptic_state_vector(1)); + mat.get_synaptic_state_vector(2)->mul(mat.get_synaptic_state_vector(0)); + + for (int j = 0 ; j Date: Tue, 2 Aug 2016 17:12:25 -0700 Subject: [PATCH 388/460] Adds random init and resize func to AurynVector Conflicts: src/AurynVector.h --- src/AurynVector.h | 94 ++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 81 insertions(+), 13 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 24436880..576007e6 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -26,6 +26,7 @@ #ifndef AURYNVECTOR_H_ #define AURYNVECTOR_H_ +#include #include "auryn_definitions.h" @@ -70,16 +71,15 @@ namespace auryn { #endif } - /*! \brief Computes approximation of exp(x) via series approximation up to order n. */ - T fast_exp(T x, const int n=5) + /*! \brief Computes approximation of exp(x) via fast series approximation up to n=256. */ + T fast_exp256(T x) { - T sum = 1.0f; // initialize sum of series - - for (int i = n - 1; i > 0; --i ) - sum = 1 + x * sum / i; - - return sum; + x = 1.0 + x / 256.0; + x *= x; x *= x; x *= x; x *= x; + x *= x; x *= x; x *= x; x *= x; + return x; } + /*! \brief Checks if vector size matches to this instance * * Check only enabled if NDEBUG is not defined.*/ @@ -111,7 +111,16 @@ namespace auryn { protected: public: + /*! \brief Size of the vector + * + * \todo Consider including a non_zero size paramter too, + * because we are using this template also in sparse matrices now + * for complex synaptic dynamics in which not all elements are necessarily + * used... + * */ IndexType size; + + /*! \brief Pointer to the array housing the data */ T * data; /*! \brief Default constructor */ @@ -136,14 +145,23 @@ namespace auryn { freebuf(); } - /*! \brief resize data array to new_size */ + /*! \brief resize data array to new_size + * + * The function tries to preserve data while resizing. + * If a vector is downsized elements at the end are simply dropped. + * When the vector size is increased the new elements at the end are + * intialized with zeros.*/ void resize(IndexType new_size) { if ( size != new_size ) { - freebuf(); + T * old_data = data; + IndexType old_size = size; allocate(new_size); + // copy old data + const size_t copy_size = std::min(old_size,new_size) * sizeof(T); + std::memcpy(data, old_data, copy_size); + free(old_data); } - set_zero(); } /*! \brief Set all elements to value v. */ @@ -160,6 +178,27 @@ namespace auryn { set_all(0.0); } + void set_random_normal(AurynState mean=0.0, AurynState sigma=1.0, unsigned int seed=8721) + { + if ( seed == 0 ) + seed = static_cast(std::time(0)); + boost::mt19937 randgen(seed); + boost::normal_distribution<> dist((double)mean, (double)sigma); + boost::variate_generator > die(randgen, dist); + AurynState rv; + for ( IndexType i = 0 ; i Date: Tue, 2 Aug 2016 17:53:50 -0700 Subject: [PATCH 389/460] Fixes bug in bisec in SimpleMatrix --- src/SimpleMatrix.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SimpleMatrix.h b/src/SimpleMatrix.h index 1f55c2a6..20db7cea 100644 --- a/src/SimpleMatrix.h +++ b/src/SimpleMatrix.h @@ -436,6 +436,9 @@ T * SimpleMatrix::get_ptr(NeuronID i, NeuronID j) NeuronID * lo = rowptrs[i]; NeuronID * hi = rowptrs[i+1]; NeuronID * c = hi; + + if ( lo >= hi ) // no elements/targets in this row + return NULL; while ( lo < hi ) { c = lo + (hi-lo)/2; From f5fde415cae4e7852131743cbd2875df95df5b1f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 17:54:04 -0700 Subject: [PATCH 390/460] Fixes two bugs in complex matrix --- src/ComplexMatrix.h | 38 +++++++++++++++----------------------- 1 file changed, 15 insertions(+), 23 deletions(-) diff --git a/src/ComplexMatrix.h b/src/ComplexMatrix.h index 56c3a58f..729faa2c 100644 --- a/src/ComplexMatrix.h +++ b/src/ComplexMatrix.h @@ -195,10 +195,6 @@ class ComplexMatrix /*! \brief Sames as get_synaptic_state_vector(StateID z) */ AurynVector * get_state_vector(StateID z=0); - /*! \brief Resizes one state vector and copies existing data - * */ - AurynVector * resize_state_vector(AurynVector * old, AurynLong oldsize, AurynLong newsize); - /*! \brief Resize buffer * * Allocates a new buffer of size and copies the @@ -500,21 +496,11 @@ void ComplexMatrix::init(NeuronID m, NeuronID n, AurynLong size, NeuronID z) } template -AurynVector * ComplexMatrix::resize_state_vector(AurynVector * old, AurynLong oldsize, AurynLong newsize) -{ - AurynVector * new_elementdata = new AurynVector(newsize); - AurynLong element_count = std::min(newsize,oldsize); - std::copy(old->data, old->data+element_count, new_elementdata->data); - delete [] old; - return new_elementdata; -} - -template -void ComplexMatrix::resize_buffers(AurynLong size) +void ComplexMatrix::resize_buffers(AurynLong new_size) { AurynLong oldsize = get_statesize(); - if ( oldsize == size ) return; - statesize = size; + if ( oldsize == new_size ) return; + statesize = new_size; NeuronID * new_colinds = new NeuronID [get_datasize()]; std::copy(colinds, colinds+get_nonzero(), new_colinds); @@ -529,10 +515,8 @@ void ComplexMatrix::resize_buffers(AurynLong size) colinds = new_colinds; for ( StateID i = 0 ; i < get_num_synaptic_states() ; ++i ) { - AurynVector * nvec = resize_state_vector(statevectors[i], oldsize, size); - statevectors[i] = nvec; + statevectors[i]->resize(new_size); } - } template @@ -731,6 +715,10 @@ T * ComplexMatrix::get_state_end(StateID z) template AurynLong ComplexMatrix::get_data_index(NeuronID i, NeuronID j) { +#ifdef DEBUG + std::cout << "cm: starting bisect " << i << ":" << j << std::endl; +#endif // DEBUG + // check bounds if ( !(i < m_rows && j < n_cols) ) return data_index_error_value; @@ -738,26 +726,29 @@ AurynLong ComplexMatrix::get_data_index(NeuronID i, NeuronID j) NeuronID * lo = rowptrs[i]; NeuronID * hi = rowptrs[i+1]; NeuronID * c = hi; + + if ( lo >= hi ) // no elements/targets in this row + return data_index_error_value; while ( lo < hi ) { c = lo + (hi-lo)/2; if ( *c < j ) lo = c+1; else hi = c; #ifdef DEBUG - std::cout << i << ":" << j << " " << *lo << ":" << *hi << std::endl; + std::cout << "cm: " << i << ":" << j << " " << *lo << ":" << *hi << std::endl; #endif // DEBUG } if ( *lo == j ) { #ifdef DEBUG - std::cout << "found element at data array position " + std::cout << "cm: " << "found element at data array position " << (lo-colinds) << std::endl; #endif // DEBUG return (lo-colinds); } #ifdef DEBUG - std::cout << "element not found" << std::endl; + std::cout << "cm: " << "element not found" << std::endl; #endif // DEBUG return data_index_error_value; @@ -969,6 +960,7 @@ NeuronID ComplexMatrix::get_n_cols() template void ComplexMatrix::print() { + std::cout << get_nonzero() << " elements in sparse matrix:" << std::endl; for (NeuronID i = 0 ; i < m_rows ; ++i) { for (NeuronID * r = get_row_begin(i) ; r != get_row_end(i) ; ++r ) { std::cout << i << " " << *r << " " << *get_ptr(r-colinds) << "\n"; From 9c59de4ab93cb8c233e3cbc0f46137f794b66c3e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 17:11:33 -0700 Subject: [PATCH 391/460] Adds unit test files for ComplexMatrix and AurynVector --- CMakeLists.txt | 8 +- tests/src/CMakeLists.txt | 9 ++ tests/src/test_AurynVector.cpp | 42 +++++++ tests/src/test_ComplexMatrix.cpp | 102 +++++++++++++++++ tests/src/test_send.cpp | 79 -------------- tests/src/test_simplematrix.cpp | 64 ----------- tests/src/test_sync.cpp | 182 ------------------------------- tests/src/test_traces.cpp | 88 --------------- 8 files changed, 160 insertions(+), 414 deletions(-) create mode 100644 tests/src/CMakeLists.txt create mode 100644 tests/src/test_AurynVector.cpp create mode 100644 tests/src/test_ComplexMatrix.cpp delete mode 100644 tests/src/test_send.cpp delete mode 100644 tests/src/test_simplematrix.cpp delete mode 100644 tests/src/test_sync.cpp delete mode 100644 tests/src/test_traces.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index 3097153b..73056da3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,11 @@ FIND_PACKAGE(MPI REQUIRED) # Required Boost libraries SET(BOOST_MIN_VERSION "1.41.0") -FIND_PACKAGE(Boost ${BOOST_MIN_VERSION} REQUIRED COMPONENTS mpi serialization program_options date_time) +FIND_PACKAGE(Boost ${BOOST_MIN_VERSION} REQUIRED COMPONENTS mpi serialization program_options date_time unit_test_framework) + +# Recommended: Doxygen +FIND_PACKAGE(Doxygen) + INCLUDE_DIRECTORIES( ${MPI_CXX_INCLUDE_PATH} ) INCLUDE_DIRECTORIES( ${Boost_INCLUDE_DIRS} ) @@ -28,3 +32,5 @@ ADD_SUBDIRECTORY(src) ADD_SUBDIRECTORY(examples) ADD_SUBDIRECTORY(tools) +# Unit tests +ADD_SUBDIRECTORY(tests/src) diff --git a/tests/src/CMakeLists.txt b/tests/src/CMakeLists.txt new file mode 100644 index 00000000..7383c9b0 --- /dev/null +++ b/tests/src/CMakeLists.txt @@ -0,0 +1,9 @@ +file( GLOB TEST_SOURCES test_*.cpp ) +ADD_DEFINITIONS(-DBOOST_TEST_DYN_LINK) +foreach( sourcepath ${TEST_SOURCES} ) + get_filename_component( sourcefile ${sourcepath} NAME ) + string( REPLACE ".cpp" "" simname ${sourcefile} ) + add_executable( ${simname} ${sourcefile} ) + target_link_libraries( ${simname} auryn ${MPI_C_LIBRARIES} ${Boost_LIBRARIES} ) +endforeach( sourcepath ${TEST_SOURCES} ) + diff --git a/tests/src/test_AurynVector.cpp b/tests/src/test_AurynVector.cpp new file mode 100644 index 00000000..800ed55c --- /dev/null +++ b/tests/src/test_AurynVector.cpp @@ -0,0 +1,42 @@ +#define BOOST_TEST_MODULE AurynVector test +#include +#include "../../src/AurynVector.h" + +BOOST_AUTO_TEST_CASE( resizing ) { + + int n = 10; + auryn::AurynVector v( n ); + for ( int i = 0 ; i < n ; ++i ) v.set(i,i); + + BOOST_CHECK_EQUAL( v.size, n ); + + for ( int i = 0 ; i < n ; ++i ) + BOOST_CHECK_EQUAL( v.data[i], i ); + + v.resize( 2*n ); + BOOST_CHECK_EQUAL( v.size, 2*n ); + + for ( int i = 0 ; i < n ; ++i ) + BOOST_CHECK_EQUAL( v.data[i], i ); + + for ( int i = n ; i < 2*n ; ++i ) + BOOST_CHECK_EQUAL( v.data[i], 0 ); + + v.resize( n/2 ); + BOOST_CHECK_EQUAL( v.size, n/2 ); + + for ( int i = 0 ; i < n/2 ; ++i ) + BOOST_CHECK_EQUAL( v.data[i] , i ); +} + +BOOST_AUTO_TEST_CASE( pow2 ) { + int n = 10; + auryn::AurynVector v( n ); + for ( int i = 0 ; i < n ; ++i ) v.set(i,i); + + v.pow(2); + for ( int i = 0 ; i < n ; ++i ) + BOOST_CHECK_EQUAL( v.data[i] , (float)i*(float)i ); +} + +// EOF diff --git a/tests/src/test_ComplexMatrix.cpp b/tests/src/test_ComplexMatrix.cpp new file mode 100644 index 00000000..49cd7f86 --- /dev/null +++ b/tests/src/test_ComplexMatrix.cpp @@ -0,0 +1,102 @@ +#define BOOST_TEST_MODULE ComplexMatrix test +#include +#include +#include "ComplexMatrix.cpp" + +// using namespace auryn; + +int element(int i, int j, int offset=1) { return (i*(j+offset))%257; } + +BOOST_AUTO_TEST_CASE( dense_fill_and_read ) { + + int nb_pre = 123; + int nb_post = 13; + auryn::ComplexMatrix mat(nb_pre,nb_post,nb_pre*nb_post); + + for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); + + int count = 0; + for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); +// mat.set_num_synaptic_states(3); +// +// // sparse fill +// for (int j = 0 ; j * sv = mat.get_synaptic_state_vector(2); +// sv->set_random_normal(0.0,20); +// auryn::AurynVector * cp = new auryn::AurynVector(mat.get_synaptic_state_vector(2)); +// mat.get_synaptic_state_vector(1)->diff(mat.get_synaptic_state_vector(0),mat.get_synaptic_state_vector(2)); +// +// for (int j = 0 ; j. -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include -#include -#include -#include -#include -#include "SpikeContainer.h" - -namespace mpi = boost::mpi; -using namespace std; - -int msgtag(int x, int y, int s) { - return x*s+y; -} - -int main(int argc, char* argv[]) -{ - int len = 10; - - mpi::environment env(argc, argv); - mpi::communicator world; - - mpi::request sendreqs[10]; // TODO max num of requests - mpi::request recvreqs[10]; // TODO max num of requests - SpikeContainer out_msg; - SpikeContainer msg[10]; - for (int i = 0 ; i < len ; ++i) - out_msg.push_back(i+len*world.rank()); - - // cout << "This is out msg " << world.rank() << endl; - // out_msg.print_spikes(); - // cout << " Sending ... " << endl; - - for (int i = 0 ; i < world.size()-1 ; ++i) { - int dst = (world.rank()+i+1)%world.size(); - int src = dst; - int tag = msgtag(world.rank(),dst,world.size()); - cout << "isend: " << world.rank() << "::" << dst << " tag " << tag << endl; - sendreqs[i] = world.isend(dst, tag, out_msg); - tag = msgtag(src,world.rank(),world.size()); - cout << "irecv: " << world.rank() << "::" << src << " tag " << tag << endl; - recvreqs[i] = world.irecv(src, tag, msg[i]); - } - - mpi::wait_all(recvreqs, recvreqs + world.size()-1); - - if (world.rank()==1) { - for (int i = 0 ; i < world.size()-1 ; ++i) { - cout << "This is rank " << world.rank() << endl; - msg[i].print_spikes(); - } - } - return 0; -} - diff --git a/tests/src/test_simplematrix.cpp b/tests/src/test_simplematrix.cpp deleted file mode 100644 index d442f708..00000000 --- a/tests/src/test_simplematrix.cpp +++ /dev/null @@ -1,64 +0,0 @@ -/* -* Copyright 2014-2015 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include -#include "SimpleMatrix.cpp" - -using namespace std; - -int main() { - int size = 3; - SimpleMatrix mat(size,size,size*size); - - // cout << "fill" << endl; - // for (int x = 0 ; x. -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include -#include -#include -#include - -#include -#include -#include -#include - -#include "auryn_global.h" -#include "auryn_definitions.h" -#include "System.h" -#include "Logger.h" -#include "PoissonGroup.h" -#include "IFGroup.h" -#include "P09Connection.h" -#include "SpikeMonitor.h" -#include "DelayedSpikeMonitor.h" -#include "PopulationRateMonitor.h" -#include "RateChecker.h" - -using namespace std; - -namespace po = boost::program_options; -namespace mpi = boost::mpi; - -/*! \brief Small simultion to test the functionality of SyncBuffer at a high level. - * - * Run the test using for instance - * mpirun -n 3 ./test_sync - * - * Then in gnuplot review the output as follows: - * plot '< peep.sh test_sync.a.0.ras' w d, '< peep.sh test_sync.a.1.ras' w d, '< peep.sh test_sync.a.2.ras' w d, '< peep.sh test_sync.a.1.dras' using ($1-0.0008):2 w d lc -1 - * - * In the last third all spikes should be covered by black dots. Vice versa, when reversing the order all black dots should be covered by colored dots. - */ -int main(int ac, char* av[]) -{ - - string dir = "./"; - string file_prefix = "test_sync"; - - char strbuf [255]; - string msg; - - NeuronID size = 1000; - NeuronID seed = 1; - double kappa = 5.; - double simtime = 1.; - - int errcode = 0; - - try { - - po::options_description desc("Allowed options"); - desc.add_options() - ("help", "produce help message") - ("simtime", po::value(), "simulation time") - ("kappa", po::value(), "poisson group rate") - ("size", po::value(), "poisson group size") - ("seed", po::value(), "random seed") - ; - - po::variables_map vm; - po::store(po::parse_command_line(ac, av, desc), vm); - po::notify(vm); - - if (vm.count("help")) { - cout << desc << "\n"; - return 1; - } - - - if (vm.count("kappa")) { - cout << "kappa set to " - << vm["kappa"].as() << ".\n"; - kappa = vm["kappa"].as(); - } - - if (vm.count("simtime")) { - cout << "simtime set to " - << vm["simtime"].as() << ".\n"; - simtime = vm["simtime"].as(); - } - - if (vm.count("size")) { - cout << "size set to " - << vm["size"].as() << ".\n"; - size = vm["size"].as(); - } - - if (vm.count("seed")) { - cout << "seed set to " - << vm["seed"].as() << ".\n"; - seed = vm["seed"].as(); - } - } - catch(exception& e) { - cerr << "error: " << e.what() << "\n"; - return 1; - } - catch(...) { - cerr << "Exception of unknown type!\n"; - } - - // BEGIN Global stuff - mpi::environment env(ac, av); - mpi::communicator world; - communicator = &world; - - sprintf(strbuf, "%s/%s.%d.log", dir.c_str(), file_prefix.c_str(), world.rank()); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - - sys = new System(&world); - // END Global stuff - - PoissonGroup * poisson = new PoissonGroup(size,kappa); - PoissonGroup * poisson2 = new PoissonGroup(size,kappa); - - IFGroup * neurons = new IFGroup(100); - - P09Connection * con = new P09Connection( - poisson,neurons, - 0.1,0.1); - - P09Connection * con2 = new P09Connection( - poisson2,neurons, - 0.1,0.1); - - sprintf(strbuf, "%s/%s.a.%d.ras", dir.c_str(), file_prefix.c_str(), world.rank() ); - SpikeMonitor * smon_e = new SpikeMonitor( poisson, strbuf, size); - - sprintf(strbuf, "%s/%s.a.%d.dras", dir.c_str(), file_prefix.c_str(), world.rank() ); - DelayedSpikeMonitor * dsmon_e = new DelayedSpikeMonitor( poisson, strbuf, size); - - sprintf(strbuf, "%s/%s.b.%d.ras", dir.c_str(), file_prefix.c_str(), world.rank() ); - SpikeMonitor * smon_e2 = new SpikeMonitor( poisson2, strbuf, size); - - sprintf(strbuf, "%s/%s.b.%d.dras", dir.c_str(), file_prefix.c_str(), world.rank() ); - DelayedSpikeMonitor * dsmon_e2 = new DelayedSpikeMonitor( poisson2, strbuf, size); - - sprintf(strbuf, "%s/%s.%d.prate", dir.c_str(), file_prefix.c_str(), world.rank() ); - PopulationRateMonitor * pmon_e = new PopulationRateMonitor( poisson, strbuf, 1.0 ); - - RateChecker * chk = new RateChecker( poisson , -1 , 20.*kappa , 10); - if (!sys->run(simtime,false)) - errcode = 1; - - logger->msg("Freeing ...",PROGRESS,true); - delete sys; - - if (errcode) - env.abort(errcode); - return errcode; -} diff --git a/tests/src/test_traces.cpp b/tests/src/test_traces.cpp deleted file mode 100644 index 0db24b75..00000000 --- a/tests/src/test_traces.cpp +++ /dev/null @@ -1,88 +0,0 @@ -/* -* Copyright 2014-2015 Friedemann Zenke -* -* This file is part of Auryn, a simulation package for plastic -* spiking neural networks. -* -* Auryn is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* Auryn is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with Auryn. If not, see . -* -* If you are using Auryn or parts of it for your work please cite: -* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations -* of spiking neural networks using general-purpose computers. -* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 -*/ - -#include "System.h" -#include "Logger.h" -#include "EulerTrace.h" -#include "LinearTrace.h" - - -int main(int ac, char* av[]) -{ - // BEGIN Global stuff - mpi::environment env(ac, av); - mpi::communicator world; - communicator = &world; - - char strbuf [255]; - sprintf(strbuf, "%s/%s.log", ".", "test_traces" ); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - - sys = new System(&world); - // END Global stuff - - double tau = 20e-3; - EulerTrace * tr_euler = new EulerTrace(2,tau); - LinearTrace * tr_linear = new LinearTrace(2,tau,sys->get_clock_ptr()); - - for ( int i = 0 ; i < 10000 ; ++i ) { - if ( i % 332 == 0 ) { - tr_euler->inc(0); - tr_linear->inc(0); - } - if ( i % 100 == 0 ) { - cout << i*1e-4 << " " << tr_euler->get(0) - << " " << tr_linear->get(0) - << " " << tr_euler->get(0) - << " " << tr_linear->get(0) - << endl; - } - - tr_euler->evolve(); - tr_linear->evolve(); - - sys->step(); - } - - for ( int i = 10000 ; i < 200000 ; ++i ) { - if ( i % 1024 == 0 ) { - tr_euler->inc(0); - tr_linear->inc(0); - } - if ( i % 1050 == 0 ) { - cout << i*1e-4 << " " << tr_euler->get(0) - << " " << tr_linear->get(0) - << " " << tr_euler->get(0) - << " " << tr_linear->get(0) - << endl; - } - tr_euler->evolve(); - tr_linear->evolve(); - sys->step(); - } - - return 0; -} From ce361d6573d5ac2044e78c6d21959064dbd8dd38 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 17:54:39 -0700 Subject: [PATCH 392/460] Updates unite test suite for ComplexMatrix --- tests/src/test_ComplexMatrix.cpp | 114 ++++++++++++++++++++----------- 1 file changed, 75 insertions(+), 39 deletions(-) diff --git a/tests/src/test_ComplexMatrix.cpp b/tests/src/test_ComplexMatrix.cpp index 49cd7f86..26ba4011 100644 --- a/tests/src/test_ComplexMatrix.cpp +++ b/tests/src/test_ComplexMatrix.cpp @@ -35,8 +35,8 @@ BOOST_AUTO_TEST_CASE( dense_fill_and_read ) { BOOST_AUTO_TEST_CASE( sparse_fill_and_read ) { - int nb_pre = 12; - int nb_post = 17; + int nb_pre = 52; + int nb_post = 21; auryn::ComplexMatrix mat(nb_pre,nb_post,nb_pre*nb_post); int count = 0; @@ -52,51 +52,87 @@ BOOST_AUTO_TEST_CASE( sparse_fill_and_read ) { mat.fill_zeros(); BOOST_CHECK_EQUAL( mat.get_nonzero(), count ); - for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); -// mat.set_num_synaptic_states(3); -// -// // sparse fill -// for (int j = 0 ; j * sv = mat.get_synaptic_state_vector(2); -// sv->set_random_normal(0.0,20); -// auryn::AurynVector * cp = new auryn::AurynVector(mat.get_synaptic_state_vector(2)); -// mat.get_synaptic_state_vector(1)->diff(mat.get_synaptic_state_vector(0),mat.get_synaptic_state_vector(2)); -// -// for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); + mat.set_num_synaptic_states(3); + + // sparse fill + for (int j = 0 ; jcopy(mat.get_synaptic_state_vector(0)); + mat.get_synaptic_state_vector(1)->scale(2); + mat.get_synaptic_state_vector(2)->copy(mat.get_synaptic_state_vector(1)); + mat.get_synaptic_state_vector(2)->mul(mat.get_synaptic_state_vector(0)); + + for (int j = 0 ; j mat(nb_pre,nb_post,nb_pre*nb_post); + mat.set_num_synaptic_states(3); + + // sparse fill + for (int j = 0 ; jcopy(mat.get_synaptic_state_vector(0)); + mat.get_synaptic_state_vector(1)->scale(2); + mat.get_synaptic_state_vector(2)->copy(mat.get_synaptic_state_vector(1)); + mat.get_synaptic_state_vector(2)->mul(mat.get_synaptic_state_vector(0)); + + for (int j = 0 ; j Date: Tue, 2 Aug 2016 18:06:48 -0700 Subject: [PATCH 393/460] Merge AurynVector from develop branch --- src/AurynVector.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/AurynVector.cpp b/src/AurynVector.cpp index 091562e0..8ca7b4fa 100644 --- a/src/AurynVector.cpp +++ b/src/AurynVector.cpp @@ -272,6 +272,14 @@ void AurynVectorFloat::diff(AurynVectorFloat * a, AurynVectorFloat * b) void AurynVectorFloat::diff(AurynVectorFloat * a, const float b) { + check_size(a); sum(a,-b); } +void AurynVectorFloat::diff(const float a, AurynVectorFloat * b ) +{ + check_size(b); + sum(b,-a); + neg(); +} + From 0978f7e09bbff8fa515685b83acb06d9d25d2549 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 18:22:22 -0700 Subject: [PATCH 394/460] Updates test scripts to run units tests --- tests/run_network_tests.sh | 6 ++++++ tests/run_tests.sh | 5 ++--- tests/run_unit_tests.sh | 4 ++++ 3 files changed, 12 insertions(+), 3 deletions(-) create mode 100755 tests/run_network_tests.sh create mode 100755 tests/run_unit_tests.sh diff --git a/tests/run_network_tests.sh b/tests/run_network_tests.sh new file mode 100755 index 00000000..1b8cf511 --- /dev/null +++ b/tests/run_network_tests.sh @@ -0,0 +1,6 @@ +#!/bin/sh + + +# Run COBA tests +cd coba_test +./run_coba_test.sh && ./run_coba_parallel_test.sh diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 5374b43f..4c0e3cef 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -1,5 +1,4 @@ #!/bin/sh -# Run COBA tests -cd coba_test -./run_coba_test.sh && ./run_coba_parallel_test.sh +./run_unit_tests.sh && \ +./run_network_tests.sh diff --git a/tests/run_unit_tests.sh b/tests/run_unit_tests.sh new file mode 100755 index 00000000..2a636a80 --- /dev/null +++ b/tests/run_unit_tests.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +BUILDDIR="../build/release" +$BUILDDIR/tests/src/test_AurynVector && $BUILDDIR/tests/src/test_ComplexMatrix From 7c356438cf16d1674a8b3132b0c4046200141ad9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 19:05:15 -0700 Subject: [PATCH 395/460] Updates test_Aurynvector --- tests/src/test_AurynVector.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/tests/src/test_AurynVector.cpp b/tests/src/test_AurynVector.cpp index 800ed55c..fe447d1f 100644 --- a/tests/src/test_AurynVector.cpp +++ b/tests/src/test_AurynVector.cpp @@ -39,4 +39,25 @@ BOOST_AUTO_TEST_CASE( pow2 ) { BOOST_CHECK_EQUAL( v.data[i] , (float)i*(float)i ); } +BOOST_AUTO_TEST_CASE( fast_exp ) { + // checks for less than one percent relative + // deviation on the interval -2.0..1.6 + float max = 2.0; + float tolerance = 1e-2; + int n = 10; + + auryn::AurynVector v( n ); + for ( int i = 0 ; i < n ; ++i ) { + v.set(i,1.0*(i-n/2)/(n/2)*max); + } + + v.fast_exp(); + for ( int i = 0 ; i < n ; ++i ) { + float answer = std::exp(1.0*(i-n/2)/(n/2)*max); + float deviation = std::abs(v.data[i]-answer)/answer; + // std::cout << deviation << std::endl; + BOOST_CHECK( deviation < tolerance ); + } +} + // EOF From f2cb656c979fe4b2eeba51580bed55f0c3843c63 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 19:10:32 -0700 Subject: [PATCH 396/460] Adds abs and new fast_exp to AurynVector --- src/AurynVector.h | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 576007e6..2c0e6dc8 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -227,11 +227,18 @@ namespace auryn { /*! \brief Computes an approximation of exp(x) for each vector element. * - * \param n accuracy */ + * Computes + * + * x = 1.0 + x / 256.0; + * x *= x; x *= x; x *= x; x *= x;\ + * x *= x; x *= x; x *= x; x *= x; + * */ void fast_exp() { - for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] = fast_exp256(data[i]); + mul(0.00390625); // ie. 1.0/256.0 + add(1.0); + for ( int i = 0 ; i < 8 ; ++i ) { + sqr(); } } @@ -437,6 +444,15 @@ namespace auryn { this->mul(this); } + /*! \brief Takes absolute value of each element + * + * */ + void abs() + { + sqr(); + sqrt(); + } + /*! \brief Rectifies all elements */ void rect() From 1678839024039694d161e2fe0c807e02c389e861 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 19:21:40 -0700 Subject: [PATCH 397/460] Reorders functions in AurynVector --- src/AurynVector.h | 266 ++++++++++++++++++++++------------------------ 1 file changed, 128 insertions(+), 138 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 2c0e6dc8..6c1ee9c3 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -71,15 +71,6 @@ namespace auryn { #endif } - /*! \brief Computes approximation of exp(x) via fast series approximation up to n=256. */ - T fast_exp256(T x) - { - x = 1.0 + x / 256.0; - x *= x; x *= x; x *= x; x *= x; - x *= x; x *= x; x *= x; x *= x; - return x; - } - /*! \brief Checks if vector size matches to this instance * * Check only enabled if NDEBUG is not defined.*/ @@ -164,105 +155,65 @@ namespace auryn { } } - /*! \brief Set all elements to value v. */ - void set_all(T v) - { - for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] = v; - } - } - - /*! \brief Set all elements to zero. */ - void set_zero() + /*! \brief Copies vector v + * + * */ + void copy(AurynVector * v) { - set_all(0.0); + check_size(v); + std::copy(v->data, v->data+v->size, data); } - void set_random_normal(AurynState mean=0.0, AurynState sigma=1.0, unsigned int seed=8721) + /*! \brief Gets element i from vector */ + T get(IndexType i) { - if ( seed == 0 ) - seed = static_cast(std::time(0)); - boost::mt19937 randgen(seed); - boost::normal_distribution<> dist((double)mean, (double)sigma); - boost::variate_generator > die(randgen, dist); - AurynState rv; - for ( IndexType i = 0 ; i * v, const float rate) - { - for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] += rate*(v->data[i]-data[i]); - } - } - /*! \brief Takes each element to the n-th power. - * - * \param n the exponent */ - void pow(const unsigned int n) + /*! \brief Set all elements to value v. */ + void set_all(const T v) { for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] = std::pow(data[i],n); + data[i] = v; } } - /*! \brief Computes an approximation of exp(x) for each vector element. - * - * Computes - * - * x = 1.0 + x / 256.0; - * x *= x; x *= x; x *= x; x *= x;\ - * x *= x; x *= x; x *= x; x *= x; - * */ - void fast_exp() + /*! \brief Set all elements to zero. */ + void set_zero() { - mul(0.00390625); // ie. 1.0/256.0 - add(1.0); - for ( int i = 0 ; i < 8 ; ++i ) { - sqr(); - } + set_all(0.0); } - /*! \brief Computes exp(x) for each vector element. */ - void exp() + /*! \brief Scales all vector elements by a. */ + virtual void scale(const T a) { for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] = std::exp(data[i]); + data[i] *= a; } } - /*! \brief Takes the square root of each element - * - * */ - void sqrt() - { - for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] = std::sqrt(data[i]); - } - } - /*! \brief Adds constant c to each vector element */ - void add(const T c) + virtual void add(const T c) { for ( IndexType i = 0 ; i < size ; ++i ) { data[i] += c; @@ -286,7 +237,7 @@ namespace auryn { /*! \brief Adds a vector v to the vector * * No checking of the dimensions match! */ - void add(AurynVector * v) + virtual void add(AurynVector * v) { check_size(v); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -295,13 +246,13 @@ namespace auryn { } /*! \brief Subtract constant c to each vector element */ - void sub(const T c) + virtual void sub(const T c) { add(-c); } /*! \brief Elementwise subtraction */ - void sub(AurynVector * v) + virtual void sub(AurynVector * v) { check_size(v); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -310,7 +261,7 @@ namespace auryn { } /*! \brief Multiply all vector elements by constant */ - void mul(const T a) + virtual void mul(const T a) { scale(a); } @@ -318,7 +269,7 @@ namespace auryn { /*! \brief Element-wise vector multiply * * */ - void mul(AurynVector * v) + virtual void mul(AurynVector * v) { check_size(v); for ( IndexType i = 0 ; i < size ; ++i ) { @@ -326,6 +277,74 @@ namespace auryn { } } + /*! \brief SAXPY operation as in GSL + * + * Computes a*x + y and stores the result to y where y is the present instance. + * \param a The scaling factor for the additional vector + * \param x The additional vector to add + * */ + virtual void saxpy(const T a, AurynVector * x) + { + check_size(x); + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] += a * x->data[i]; + } + } + + + /*! \brief Scales all vector elements by a. TODO */ + void follow(AurynVector * v, const float rate) + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] += rate*(v->data[i]-data[i]); + } + } + + /*! \brief Takes each element to the n-th power. + * + * \param n the exponent */ + void pow(const unsigned int n) + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = std::pow(data[i],n); + } + } + + /*! \brief Computes an approximation of exp(x) for each vector element. + * + * Computes: + * x = 1.0 + x / 256.0; + * x *= x; x *= x; x *= x; x *= x; + * x *= x; x *= x; x *= x; x *= x; + * */ + void fast_exp() + { + mul(0.00390625); // ie. 1.0/256.0 + add(1.0); + for ( int i = 0 ; i < 8 ; ++i ) { + sqr(); + } + } + + /*! \brief Computes exp(x) for each vector element. */ + void exp() + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = std::exp(data[i]); + } + } + + + /*! \brief Takes the square root of each element + * + * */ + void sqrt() + { + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = std::sqrt(data[i]); + } + } + /*! \brief Flips the sign of all elements. */ void neg() { @@ -388,54 +407,6 @@ namespace auryn { } - /*! \brief Copies vector v - * - * */ - void copy(AurynVector * v) - { - check_size(v); - std::copy(v->data, v->data+v->size, data); - } - - - /*! \brief SAXPY operation as in GSL - * - * Computes a*x + y and stores the result to y where y is the present instance. - * \param a The scaling factor for the additional vector - * \param x The additional vector to add - * */ - void saxpy(const T a, AurynVector * x) - { - check_size(x); - for ( IndexType i = 0 ; i < size ; ++i ) { - data[i] += a * x->data[i]; - } - } - - /*! \brief Gets element i from vector */ - T get(IndexType i) - { - check_size(i); - return data[i]; - } - - /*! \brief Gets pointer to element i from vector - * - * When no argument is given the function returns the first element of - * data array of the vector. */ - T * ptr(IndexType i = 0) - { - check_size(i); - return data+i; - } - - /*! \brief Sets element i in vector to value */ - void set(IndexType i, T value) - { - check_size(i); - data[i] = value; - } - /*! \brief Squares each element * * */ @@ -559,6 +530,28 @@ namespace auryn { return sum; } + void set_random_normal(AurynState mean=0.0, AurynState sigma=1.0, unsigned int seed=8721) + { + if ( seed == 0 ) + seed = static_cast(std::time(0)); + boost::mt19937 randgen(seed); + boost::normal_distribution<> dist((double)mean, (double)sigma); + boost::variate_generator > die(randgen, dist); + AurynState rv; + for ( IndexType i = 0 ; i Date: Tue, 2 Aug 2016 19:30:57 -0700 Subject: [PATCH 398/460] Revers back to naive fast_exp256 implementation in AurynVector --- src/AurynVector.h | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/src/AurynVector.h b/src/AurynVector.h index 6c1ee9c3..6e25b7f4 100644 --- a/src/AurynVector.h +++ b/src/AurynVector.h @@ -99,6 +99,15 @@ namespace auryn { free(data); } + /*! \brief Computes approximation of exp(x) via fast series approximation up to n=256. */ + T fast_exp256(T x) + { + x = 1.0 + x / 256.0; + x *= x; x *= x; x *= x; x *= x; + x *= x; x *= x; x *= x; x *= x; + return x; + } + protected: public: @@ -312,17 +321,17 @@ namespace auryn { /*! \brief Computes an approximation of exp(x) for each vector element. * - * Computes: - * x = 1.0 + x / 256.0; - * x *= x; x *= x; x *= x; x *= x; - * x *= x; x *= x; x *= x; x *= x; * */ void fast_exp() { - mul(0.00390625); // ie. 1.0/256.0 - add(1.0); - for ( int i = 0 ; i < 8 ; ++i ) { - sqr(); + // mul(0.00390625); // ie. 1.0/256.0 + // add(1.0); + // for ( int i = 0 ; i < 8 ; ++i ) { + // sqr(); + // } + // seems as if the naive version is faster + for ( IndexType i = 0 ; i < size ; ++i ) { + data[i] = fast_exp256(data[i]); } } From 1b9f6511c668feb74302f8aa90d3b38e73ba2385 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 19:38:54 -0700 Subject: [PATCH 399/460] Adds check to test_ComplexMatrix --- tests/src/test_ComplexMatrix.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/src/test_ComplexMatrix.cpp b/tests/src/test_ComplexMatrix.cpp index 26ba4011..22c96c7b 100644 --- a/tests/src/test_ComplexMatrix.cpp +++ b/tests/src/test_ComplexMatrix.cpp @@ -117,7 +117,9 @@ BOOST_AUTO_TEST_CASE( sparse_complex_prune ) { } mat.fill_zeros(); + // Prune the matrix mat.prune(); + BOOST_CHECK_EQUAL( mat.get_nonzero(), mat.get_datasize() ); mat.get_synaptic_state_vector(1)->copy(mat.get_synaptic_state_vector(0)); mat.get_synaptic_state_vector(1)->scale(2); From 5f0ea6022ee333d2d3e2f5eb80471f534374e679 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 20:12:31 -0700 Subject: [PATCH 400/460] Adds unit test for EulerTrace --- tests/run_unit_tests.sh | 2 +- tests/src/test_EulerTrace.cpp | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 tests/src/test_EulerTrace.cpp diff --git a/tests/run_unit_tests.sh b/tests/run_unit_tests.sh index 2a636a80..06cf39cc 100755 --- a/tests/run_unit_tests.sh +++ b/tests/run_unit_tests.sh @@ -1,4 +1,4 @@ #!/bin/sh BUILDDIR="../build/release" -$BUILDDIR/tests/src/test_AurynVector && $BUILDDIR/tests/src/test_ComplexMatrix +$BUILDDIR/tests/src/test_AurynVector && $BUILDDIR/tests/src/test_EulerTrace && $BUILDDIR/tests/src/test_ComplexMatrix diff --git a/tests/src/test_EulerTrace.cpp b/tests/src/test_EulerTrace.cpp new file mode 100644 index 00000000..94c7eb46 --- /dev/null +++ b/tests/src/test_EulerTrace.cpp @@ -0,0 +1,28 @@ +#define BOOST_TEST_MODULE Traces test +#include +#include +#include "auryn.h" + +using namespace auryn; + +BOOST_AUTO_TEST_CASE( EulerTrace_decay ) { + + double tau = 20e-3; + EulerTrace * tr_euler = new EulerTrace(4,tau); + tr_euler->get_state_ptr()->set_all(1.0); + // LinearTrace * tr_linear = new LinearTrace(2,tau,sys->get_clock_ptr()); + + float simtime = 0.1; + float maxdev = 0.0; + + for ( int i = 0 ; i < (int)(simtime/dt) ; ++i ) { + float solution = std::exp(-i*dt/tau); + float deviation = std::abs(tr_euler->get(0)-solution)/solution; + if ( maxdev < deviation ) maxdev = deviation; + tr_euler->evolve(); + } + + float precision = 1e-3; + BOOST_REQUIRE( maxdev < precision ); +} + From 4eae8aebf138705631bb13ba6affafa7944e8837 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 22:30:54 -0700 Subject: [PATCH 401/460] Moves tests to test dir --- CMakeLists.txt | 2 +- {tests => test}/coba_test/coba_checksums.ref | 0 {tests => test}/coba_test/pynn.ee.wmat | 0 {tests => test}/coba_test/pynn.ei.wmat | 0 {tests => test}/coba_test/pynn.ie.wmat | 0 {tests => test}/coba_test/pynn.ii.wmat | 0 {tests => test}/coba_test/run_coba_parallel_test.sh | 0 {tests => test}/coba_test/run_coba_test.sh | 0 {tests => test}/run_network_tests.sh | 0 {tests => test}/run_tests.sh | 0 {tests => test}/run_unit_tests.sh | 0 {tests => test}/src/CMakeLists.txt | 0 {tests => test}/src/test_AurynVector.cpp | 0 {tests => test}/src/test_ComplexMatrix.cpp | 0 {tests => test}/src/test_EulerTrace.cpp | 0 15 files changed, 1 insertion(+), 1 deletion(-) rename {tests => test}/coba_test/coba_checksums.ref (100%) rename {tests => test}/coba_test/pynn.ee.wmat (100%) rename {tests => test}/coba_test/pynn.ei.wmat (100%) rename {tests => test}/coba_test/pynn.ie.wmat (100%) rename {tests => test}/coba_test/pynn.ii.wmat (100%) rename {tests => test}/coba_test/run_coba_parallel_test.sh (100%) rename {tests => test}/coba_test/run_coba_test.sh (100%) rename {tests => test}/run_network_tests.sh (100%) rename {tests => test}/run_tests.sh (100%) rename {tests => test}/run_unit_tests.sh (100%) rename {tests => test}/src/CMakeLists.txt (100%) rename {tests => test}/src/test_AurynVector.cpp (100%) rename {tests => test}/src/test_ComplexMatrix.cpp (100%) rename {tests => test}/src/test_EulerTrace.cpp (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73056da3..cf453df2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,4 +33,4 @@ ADD_SUBDIRECTORY(examples) ADD_SUBDIRECTORY(tools) # Unit tests -ADD_SUBDIRECTORY(tests/src) +ADD_SUBDIRECTORY(test/src) diff --git a/tests/coba_test/coba_checksums.ref b/test/coba_test/coba_checksums.ref similarity index 100% rename from tests/coba_test/coba_checksums.ref rename to test/coba_test/coba_checksums.ref diff --git a/tests/coba_test/pynn.ee.wmat b/test/coba_test/pynn.ee.wmat similarity index 100% rename from tests/coba_test/pynn.ee.wmat rename to test/coba_test/pynn.ee.wmat diff --git a/tests/coba_test/pynn.ei.wmat b/test/coba_test/pynn.ei.wmat similarity index 100% rename from tests/coba_test/pynn.ei.wmat rename to test/coba_test/pynn.ei.wmat diff --git a/tests/coba_test/pynn.ie.wmat b/test/coba_test/pynn.ie.wmat similarity index 100% rename from tests/coba_test/pynn.ie.wmat rename to test/coba_test/pynn.ie.wmat diff --git a/tests/coba_test/pynn.ii.wmat b/test/coba_test/pynn.ii.wmat similarity index 100% rename from tests/coba_test/pynn.ii.wmat rename to test/coba_test/pynn.ii.wmat diff --git a/tests/coba_test/run_coba_parallel_test.sh b/test/coba_test/run_coba_parallel_test.sh similarity index 100% rename from tests/coba_test/run_coba_parallel_test.sh rename to test/coba_test/run_coba_parallel_test.sh diff --git a/tests/coba_test/run_coba_test.sh b/test/coba_test/run_coba_test.sh similarity index 100% rename from tests/coba_test/run_coba_test.sh rename to test/coba_test/run_coba_test.sh diff --git a/tests/run_network_tests.sh b/test/run_network_tests.sh similarity index 100% rename from tests/run_network_tests.sh rename to test/run_network_tests.sh diff --git a/tests/run_tests.sh b/test/run_tests.sh similarity index 100% rename from tests/run_tests.sh rename to test/run_tests.sh diff --git a/tests/run_unit_tests.sh b/test/run_unit_tests.sh similarity index 100% rename from tests/run_unit_tests.sh rename to test/run_unit_tests.sh diff --git a/tests/src/CMakeLists.txt b/test/src/CMakeLists.txt similarity index 100% rename from tests/src/CMakeLists.txt rename to test/src/CMakeLists.txt diff --git a/tests/src/test_AurynVector.cpp b/test/src/test_AurynVector.cpp similarity index 100% rename from tests/src/test_AurynVector.cpp rename to test/src/test_AurynVector.cpp diff --git a/tests/src/test_ComplexMatrix.cpp b/test/src/test_ComplexMatrix.cpp similarity index 100% rename from tests/src/test_ComplexMatrix.cpp rename to test/src/test_ComplexMatrix.cpp diff --git a/tests/src/test_EulerTrace.cpp b/test/src/test_EulerTrace.cpp similarity index 100% rename from tests/src/test_EulerTrace.cpp rename to test/src/test_EulerTrace.cpp From 8391ef1b5dc60d7d80bdf6420fa2defe401096e8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 23:15:36 -0700 Subject: [PATCH 402/460] Adds test for LinearTrace --- test/src/test_LinearTrace.cpp | 98 +++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 test/src/test_LinearTrace.cpp diff --git a/test/src/test_LinearTrace.cpp b/test/src/test_LinearTrace.cpp new file mode 100644 index 00000000..c11bdfb3 --- /dev/null +++ b/test/src/test_LinearTrace.cpp @@ -0,0 +1,98 @@ +#define BOOST_TEST_MODULE LinearTrace test +#include +#include +#include "auryn.h" + +using namespace auryn; + +const NeuronID idx = 1; +const double tau = 20e-3; +const float precision = 1e-3; + +/*! \brief Test decay from 1 of LinearTrace */ +BOOST_AUTO_TEST_CASE( LinearTrace_decay ) { + // LinearTrace needs a clock to compute time intervals + AurynTime clk = 0; + LinearTrace * tr_linear = new LinearTrace(4,tau,&clk); + + BOOST_CHECK_EQUAL( tr_linear->get(idx), 0.0 ); + + tr_linear->inc(idx); + BOOST_CHECK_EQUAL( tr_linear->get(idx), 1.0 ); + + + for ( int i = 0 ; i < 10 ; ++i ) { + clk = i*123; + float solution = std::exp(-dt*clk/tau); + float deviation = std::abs(tr_linear->get(idx)-solution)/solution; + // std::cout << solution << " " << tr_linear->get(idx) << std::endl; + BOOST_CHECK( deviation < precision ); + } +} + +/*! \brief Test decay from 1 of LinearTrace for ver large tau=500s + * + * EulerTrace fails to get this right. */ +BOOST_AUTO_TEST_CASE( LinearTrace_slow_decay ) { + // EulerTrace typically failes for tau > 200s + double tau_long = 500; + + // LinearTrace needs a clock to compute time intervals + AurynTime clk = 0; + LinearTrace * tr_linear = new LinearTrace(4,tau_long,&clk); + + BOOST_CHECK_EQUAL( tr_linear->get(idx), 0.0 ); + + tr_linear->inc(idx); + BOOST_CHECK_EQUAL( tr_linear->get(idx), 1.0 ); + + + for ( int i = 0 ; i < 10 ; ++i ) { + clk = i*123.0/dt; + float solution = std::exp(-dt*clk/tau_long); + float deviation = std::abs(tr_linear->get(idx)-solution)/solution; + // std::cout << solution << " " << tr_linear->get(idx) << std::endl; + BOOST_CHECK( deviation < precision ); + } +} + +/*! \brief Test multiple 'spikes' and compare to EulerTrace */ +BOOST_AUTO_TEST_CASE( LinearTrace_pileup ) { + + // LinearTrace needs a clock to compute time intervals + AurynTime clk = 0; + + + EulerTrace * tr_euler = new EulerTrace(4,tau); // we use an EulerTrace as reference + LinearTrace * tr_linear = new LinearTrace(4,tau,&clk); + + float maxdev = 0.0; + int simsteps = 1.0e-3/dt; + for ( int k = 0 ; k < 10 ; ++ k ) { + tr_euler->inc(idx); + tr_linear->inc(idx); + + // evolve EulerTrace for some time steps + for ( int i = 0 ; i < simsteps ; ++i ) { + tr_euler->evolve(); + // std::cout << tr_euler->get(idx) << std::endl; + clk++; + } + + // compare + const float solution = tr_euler->get(idx); + const float deviation = std::abs(tr_linear->get(idx)-solution)/solution; + if ( maxdev < deviation ) maxdev = deviation; + // std::cout << solution << " " << tr_linear->get(idx) << std::endl; + + // evolve EulerTrace for some time steps + for ( int i = 0 ; i < k*simsteps ; ++i ) { + tr_euler->evolve(); + clk++; + } + + } + + BOOST_REQUIRE( maxdev < precision ); +} + From b4831173c19546343215bd4b090c0e8638e42cee Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 23:15:58 -0700 Subject: [PATCH 403/460] Corrections to test_EulerTrace --- test/src/test_EulerTrace.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/src/test_EulerTrace.cpp b/test/src/test_EulerTrace.cpp index 94c7eb46..f6f1be7d 100644 --- a/test/src/test_EulerTrace.cpp +++ b/test/src/test_EulerTrace.cpp @@ -1,4 +1,4 @@ -#define BOOST_TEST_MODULE Traces test +#define BOOST_TEST_MODULE EulerTrace test #include #include #include "auryn.h" @@ -7,7 +7,7 @@ using namespace auryn; BOOST_AUTO_TEST_CASE( EulerTrace_decay ) { - double tau = 20e-3; + double tau = 20e-3; // a typical STDP time constant EulerTrace * tr_euler = new EulerTrace(4,tau); tr_euler->get_state_ptr()->set_all(1.0); // LinearTrace * tr_linear = new LinearTrace(2,tau,sys->get_clock_ptr()); From 8b716a9bc4a935d24740021a5c2154533c45170e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 23:17:33 -0700 Subject: [PATCH 404/460] Updates run test script --- test/run_unit_tests.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/run_unit_tests.sh b/test/run_unit_tests.sh index 06cf39cc..815fe0c1 100755 --- a/test/run_unit_tests.sh +++ b/test/run_unit_tests.sh @@ -1,4 +1,7 @@ #!/bin/sh BUILDDIR="../build/release" -$BUILDDIR/tests/src/test_AurynVector && $BUILDDIR/tests/src/test_EulerTrace && $BUILDDIR/tests/src/test_ComplexMatrix +$BUILDDIR/test/src/test_AurynVector && \ +$BUILDDIR/test/src/test_EulerTrace && \ +$BUILDDIR/test/src/test_LinearTrace && \ +$BUILDDIR/test/src/test_ComplexMatrix From 8907339acb78f07a34336dc85ac5c66f3ec035d7 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 23:19:23 -0700 Subject: [PATCH 405/460] Fixes precision problem in LinearTrace Removes LUT from LinearTrace and instead computes updates using std::exp explicitly. Doing so doesn't make it suboptimal if we use a very large tau. --- src/LinearTrace.cpp | 21 +++------------------ src/LinearTrace.h | 1 - 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/src/LinearTrace.cpp b/src/LinearTrace.cpp index c698ede6..42f95b7d 100644 --- a/src/LinearTrace.cpp +++ b/src/LinearTrace.cpp @@ -45,19 +45,12 @@ void LinearTrace::init(NeuronID n, AurynFloat timeconstant, AurynTime * clk) state[i] = 0.; timestamp[i] = 0; } - - // set up exp lookuptable - explut = new AurynFloat[zerointerval]; - for ( AurynTime i = 0 ; i < zerointerval ; ++i ) { - explut[i] = exp( - (AurynDouble) (i)/tau_auryntime); - } } void LinearTrace::free() { delete [] state; delete [] timestamp; - delete [] explut; } LinearTrace::LinearTrace(NeuronID n, AurynFloat timeconstant, AurynTime * clk) @@ -87,13 +80,11 @@ void LinearTrace::add(NeuronID i, AurynFloat value) state[i] += value; } - AurynFloat * LinearTrace::get_state_ptr() { return state; } - AurynFloat LinearTrace::get_tau() { return tau; @@ -105,25 +96,19 @@ inline void LinearTrace::update(NeuronID i) if ( timediff >= zerointerval ) state[i] = 0.0; else { - // state[i] *= exp( - (AurynDouble) (timediff)/tau_auryntime); - state[i] *= explut[timediff]; // reading from our LUT + state[i] *= std::exp( -(dt*timediff)/tau); } timestamp[i] = *clock; } void LinearTrace::inc(NeuronID i) { - if ( *clock > timestamp[i]+zerointerval ) { // meaning the last spike has faded away - state[i] = 1.0; - } else { - update(i); - state[i] += 1.0; - } + update(i); + state[i] += 1.0; } AurynFloat LinearTrace::get(NeuronID i) { - // if ( timestamp[i] == zerotime_auryntime ) return state[i]; update(i); return state[i]; } diff --git a/src/LinearTrace.h b/src/LinearTrace.h index b9cb2667..29bec6b1 100644 --- a/src/LinearTrace.h +++ b/src/LinearTrace.h @@ -43,7 +43,6 @@ class LinearTrace private: NeuronID size; AurynFloat * state; - AurynFloat * explut; AurynFloat tau; AurynTime tau_auryntime; AurynTime zerointerval; From 37757e570e63efb63c4c89fbada97e4ec43dc16f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 23:19:23 -0700 Subject: [PATCH 406/460] Fixes precision problem in LinearTrace Removes LUT from LinearTrace and instead computes updates using std::exp explicitly. Doing so doesn't make it suboptimal if we use a very large tau. --- src/LinearTrace.cpp | 21 +++------------------ src/LinearTrace.h | 1 - 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/src/LinearTrace.cpp b/src/LinearTrace.cpp index c698ede6..42f95b7d 100644 --- a/src/LinearTrace.cpp +++ b/src/LinearTrace.cpp @@ -45,19 +45,12 @@ void LinearTrace::init(NeuronID n, AurynFloat timeconstant, AurynTime * clk) state[i] = 0.; timestamp[i] = 0; } - - // set up exp lookuptable - explut = new AurynFloat[zerointerval]; - for ( AurynTime i = 0 ; i < zerointerval ; ++i ) { - explut[i] = exp( - (AurynDouble) (i)/tau_auryntime); - } } void LinearTrace::free() { delete [] state; delete [] timestamp; - delete [] explut; } LinearTrace::LinearTrace(NeuronID n, AurynFloat timeconstant, AurynTime * clk) @@ -87,13 +80,11 @@ void LinearTrace::add(NeuronID i, AurynFloat value) state[i] += value; } - AurynFloat * LinearTrace::get_state_ptr() { return state; } - AurynFloat LinearTrace::get_tau() { return tau; @@ -105,25 +96,19 @@ inline void LinearTrace::update(NeuronID i) if ( timediff >= zerointerval ) state[i] = 0.0; else { - // state[i] *= exp( - (AurynDouble) (timediff)/tau_auryntime); - state[i] *= explut[timediff]; // reading from our LUT + state[i] *= std::exp( -(dt*timediff)/tau); } timestamp[i] = *clock; } void LinearTrace::inc(NeuronID i) { - if ( *clock > timestamp[i]+zerointerval ) { // meaning the last spike has faded away - state[i] = 1.0; - } else { - update(i); - state[i] += 1.0; - } + update(i); + state[i] += 1.0; } AurynFloat LinearTrace::get(NeuronID i) { - // if ( timestamp[i] == zerotime_auryntime ) return state[i]; update(i); return state[i]; } diff --git a/src/LinearTrace.h b/src/LinearTrace.h index b9cb2667..29bec6b1 100644 --- a/src/LinearTrace.h +++ b/src/LinearTrace.h @@ -43,7 +43,6 @@ class LinearTrace private: NeuronID size; AurynFloat * state; - AurynFloat * explut; AurynFloat tau; AurynTime tau_auryntime; AurynTime zerointerval; From 358fdc69a0672f664d299e7f8123e890808ba2a5 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 23:21:00 -0700 Subject: [PATCH 407/460] Updates test pathname in travis cl yml file --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a836335a..e1f95ac5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ install: - sudo apt-get install -y -qq libboost-all-dev openmpi-bin libopenmpi-dev - sudo apt-get install -y -qq cmake script: - - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make && cd ../../tests && ./run_tests.sh + - cd build/release && cmake ../../ -DCMAKE_BUILD_TYPE=Release && make && cd ../../test && ./run_tests.sh notifications: email: From e4012ffc10722b434e9f84844ff77c1a1927eb6a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 23:29:25 -0700 Subject: [PATCH 408/460] Adds another check to LinearTrace --- src/LinearTrace.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/LinearTrace.cpp b/src/LinearTrace.cpp index 42f95b7d..19a6e2cb 100644 --- a/src/LinearTrace.cpp +++ b/src/LinearTrace.cpp @@ -92,12 +92,15 @@ AurynFloat LinearTrace::get_tau() inline void LinearTrace::update(NeuronID i) { - int timediff = *clock - timestamp[i]; - if ( timediff >= zerointerval ) + const int timediff = *clock - timestamp[i]; + if ( timediff == 0 ) return; + + if ( timediff >= zerointerval ) { state[i] = 0.0; - else { + } else { // as a last resort call exp state[i] *= std::exp( -(dt*timediff)/tau); } + timestamp[i] = *clock; } From 773e19a8c5ce11c452e60a9c900b5c8ad079b92e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 2 Aug 2016 23:48:08 -0700 Subject: [PATCH 409/460] Removes unused variable --- src/LinearTrace.cpp | 2 -- src/LinearTrace.h | 1 - 2 files changed, 3 deletions(-) diff --git a/src/LinearTrace.cpp b/src/LinearTrace.cpp index 19a6e2cb..04336598 100644 --- a/src/LinearTrace.cpp +++ b/src/LinearTrace.cpp @@ -34,8 +34,6 @@ void LinearTrace::init(NeuronID n, AurynFloat timeconstant, AurynTime * clk) tau_auryntime = (AurynTime) (timeconstant/dt); zerointerval = 5*tau_auryntime; - zerotime_auryntime = 0; - // clock = auryn::sys->get_clock_ptr(); clock = clk; state = new AurynFloat[size]; diff --git a/src/LinearTrace.h b/src/LinearTrace.h index 29bec6b1..377885f4 100644 --- a/src/LinearTrace.h +++ b/src/LinearTrace.h @@ -46,7 +46,6 @@ class LinearTrace AurynFloat tau; AurynTime tau_auryntime; AurynTime zerointerval; - AurynTime zerotime_auryntime; AurynTime * timestamp; AurynTime * clock; void init(NeuronID n, AurynFloat timeconstant, AurynTime * clk); From caa16f96269a7487e6ac21f9d1a42a79d4e75f45 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 3 Aug 2016 09:24:32 -0700 Subject: [PATCH 410/460] Adds initial version of SpikeTimingStimGroup --- src/SpikeTimingStimGroup.cpp | 166 +++++++++++++++++++++++++++++++++++ src/SpikeTimingStimGroup.h | 76 ++++++++++++++++ src/auryn.h | 1 + 3 files changed, 243 insertions(+) create mode 100644 src/SpikeTimingStimGroup.cpp create mode 100644 src/SpikeTimingStimGroup.h diff --git a/src/SpikeTimingStimGroup.cpp b/src/SpikeTimingStimGroup.cpp new file mode 100644 index 00000000..a3069ee3 --- /dev/null +++ b/src/SpikeTimingStimGroup.cpp @@ -0,0 +1,166 @@ +/* +* Copyright 2014-2015 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#include "SpikeTimingStimGroup.h" + +using namespace auryn; + + +SpikeTimingStimGroup::SpikeTimingStimGroup(NeuronID n, std::string filename, std::string stimfile, StimulusGroupModeType stimulusmode, AurynFloat timeframe) : StimulusGroup( n, filename, stimfile, stimulusmode, timeframe ) +{ + init(); +} + +SpikeTimingStimGroup::SpikeTimingStimGroup(NeuronID n, std::string stimfile, StimulusGroupModeType stimulusmode, AurynFloat timeframe) : StimulusGroup( n, stimfile, stimulusmode, timeframe ) +{ + init(); +} + +SpikeTimingStimGroup::~SpikeTimingStimGroup() +{ +} + +void SpikeTimingStimGroup::init() +{ + refractory_period = 0.0; +} + +void SpikeTimingStimGroup::redraw() +{ + for ( NeuronID i = 0; i < get_rank_size() ; ++i ) { + ttl[i] = sys->get_clock() + activity[i]/dt; + } +} + +void SpikeTimingStimGroup::evolve() +{ + if ( !active ) return; + + if ( stimulus_active ) { // during active stimulation + + for ( NeuronID i = 0; i < get_rank_size() ; ++i ) { + if ( ttl[i] == sys->get_clock() ) { + push_spike(i); + } + } + + } else { // while stimulation is off + if ( background_rate ) { + boost::exponential_distribution<> dist(background_rate); + boost::variate_generator > die(poisson_gen, dist); + + while ( bgx < get_rank_size() ) { + push_spike ( bgx ); + AurynDouble r = die(); + bgx += 1+(NeuronID)(r/dt); + } + bgx -= get_rank_size(); + } + } + + // update stimulus properties + if ( auryn::sys->get_clock() >= next_action_time ) { // action required + last_action_time = next_action_time; // store last time before updating next_action_time + + if ( stimuli.size() == 0 ) { + set_next_action_time(10); // TODO make this a bit smarter at some point -- i.e. could send this to the end of time + return; + } + + write_stimulus_file(dt*(auryn::sys->get_clock())); + + if ( stimulus_order == STIMFILE ) { + AurynDouble t = 0.0; + int a,i; + while ( t <= auryn::sys->get_time() ) { + read_next_stimulus_from_file(t,a,i); + next_action_time = (AurynTime) (t/dt); + if (a==0) stimulus_active = true; + else stimulus_active = false; + cur_stim_index = i; + // std::cout << auryn::sys->get_time() << " " << t << " " << a << " " << i << std::endl; + } + } else { // we have to generate stimulus times + + if ( stimulus_active ) { // stimulus was active and going inactive now + + set_all( 0.0 ); // turns off currently active stimulus + stimulus_active = false ; + + if ( randomintervals ) { + boost::exponential_distribution<> dist(1./mean_off_period); + boost::variate_generator > die(order_gen, dist); + next_action_time = auryn::sys->get_clock() + (AurynTime)(std::max(0.0,die()+refractory_period)/dt); + } else { + next_action_time = auryn::sys->get_clock() + (AurynTime)((mean_off_period+refractory_period)/dt); + } + } else { // stimulus was not active and is going active now + if ( active && stimuli.size() ) { // the group is active and there are stimuli in the array + + // chooses stimulus according to schema specified in stimulusmode + double draw, cummulative; + switch ( stimulus_order ) { + case RANDOM: + // TODO make this less greedy + // and do not compute this every draw + draw = order_die(); + cummulative = 0; + cur_stim_index = 0; + // std::cout.precision(5); + // std::cout << " draw " << draw << std::endl; + for ( unsigned int i = 0 ; i < probabilities.size() ; ++i ) { + cummulative += probabilities[i]; + // std::cout << cummulative << std::endl; + if ( draw <= cummulative ) { + cur_stim_index = i; + break; + } + } + break; + case SEQUENTIAL: + cur_stim_index = (cur_stim_index+1)%stimuli.size(); + break; + case SEQUENTIAL_REV: + --cur_stim_index; + if ( cur_stim_index <= 0 ) + cur_stim_index = stimuli.size() - 1 ; + break; + case MANUAL: + default: + break; + } + + // sets the activity + set_active_pattern( cur_stim_index, 1e20 ); // puts default spikes into the not forseeable future + stimulus_active = true; + + next_action_time = auryn::sys->get_clock() + (AurynTime)(mean_on_period/dt); + } + } + write_stimulus_file(dt*(auryn::sys->get_clock()+1)); + } + } +} + diff --git a/src/SpikeTimingStimGroup.h b/src/SpikeTimingStimGroup.h new file mode 100644 index 00000000..10d89504 --- /dev/null +++ b/src/SpikeTimingStimGroup.h @@ -0,0 +1,76 @@ +/* +* Copyright 2014-2015 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +* +* If you are using Auryn or parts of it for your work please cite: +* Zenke, F. and Gerstner, W., 2014. Limits to high-speed simulations +* of spiking neural networks using general-purpose computers. +* Front Neuroinform 8, 76. doi: 10.3389/fninf.2014.00076 +*/ + +#ifndef SPIKETIMINGSTIMGROUP_H_ + +#define SPIKETIMINGSTIMGROUP_H_ + +#include "auryn_definitions.h" +#include "System.h" +#include "StimulusGroup.h" + +#include +#include +#include +#include +#include +#include +#include + +namespace auryn { + + +class SpikeTimingStimGroup : public StimulusGroup +{ +private: + void init(); + +protected: + + virtual void redraw(); + +public: + /*! \brief Refractory period + * + * Refractory period in seconds gets adde to the potentially stochastic off time and ensures a minimum interval between stimuli. + * */ + AurynDouble refractory_period; + + /*! \brief Default constructor */ + SpikeTimingStimGroup(NeuronID n, string filename, string stimfile, StimulusGroupModeType stimulusmode=RANDOM, AurynFloat timeframe=0.0 ); + + /*! \brief Constructor without stimfile. Patterns can be loaded afterwards using the load_patterns method. */ + SpikeTimingStimGroup(NeuronID n, string stimfile, StimulusGroupModeType stimulusmode=RANDOM, AurynFloat timeframe=0.0 ); + + virtual ~SpikeTimingStimGroup(); + + /*! Standard virtual evolve function */ + virtual void evolve(); + +}; + +} + +#endif /*SPIKETIMINGSTIMGROUP_H_*/ diff --git a/src/auryn.h b/src/auryn.h index c9f4d5a8..4a0848f2 100644 --- a/src/auryn.h +++ b/src/auryn.h @@ -72,6 +72,7 @@ #include "FileInputGroup.h" #include "FileModulatedPoissonGroup.h" #include "StimulusGroup.h" +#include "SpikeTimingStimGroup.h" #include "ProfilePoissonGroup.h" #include "StructuredPoissonGroup.h" #include "CorrelatedPoissonGroup.h" From c9c79fe025ff393dba425a2fe94a62011133f0e0 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 3 Aug 2016 14:49:11 -0700 Subject: [PATCH 411/460] Removes old code fom SpikingGroup --- src/SpikingGroup.cpp | 6 ------ src/SpikingGroup.h | 1 - 2 files changed, 7 deletions(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index dbc12408..1520d79d 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -210,12 +210,6 @@ void SpikingGroup::free() } -inline int SpikingGroup::msgtag(int x, int y) { - mpi::communicator * mpicom = communicator; - return x*mpicom->size()+y + (mpicom->size()*mpicom->size()) * get_uid(); // make messages unique for each SpikingGroup -} - - void SpikingGroup::set_clock_ptr(AurynTime * clock) { clock_ptr = clock; delay->set_clock_ptr(clock); diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 86667c5a..b7888ea3 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -81,7 +81,6 @@ class SpikingGroup static int last_locked_rank; bool evolve_locally_bool; - inline int msgtag(int x, int y); /*! Parameter that characterizes the computational load the SpikingGroup causes with respect to IFGroup. It's used vor load balancing*/ double effective_load_multiplier; From f2cf051ccc5dc6a01dfd44fc11b1f8c3a13639de Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 3 Aug 2016 14:49:30 -0700 Subject: [PATCH 412/460] Adds mpi rank proxy variables to System --- src/System.cpp | 114 ++++++++++++++++++++++++++++++------------------- src/System.h | 15 +++++++ 2 files changed, 85 insertions(+), 44 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index 86f0550a..f02ccfbb 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -45,7 +45,14 @@ void System::init() { progressbar_update_interval = PROGRESSBAR_DEFAULT_UPDATE_INTERVAL; - syncbuffer = new SyncBuffer(mpicom); + mpi_size_ = 1; + mpi_rank_ = 0; + syncbuffer = NULL; + if ( mpicom ) { + syncbuffer = new SyncBuffer(mpicom); + mpi_size_ = mpicom->size(); + mpi_rank_ = mpicom->rank(); + } std::stringstream oss; oss << "Auryn version " @@ -105,6 +112,7 @@ void System::init() { System::System() { + mpicom = NULL; init(); } @@ -115,14 +123,14 @@ System::System(mpi::communicator * communicator) std::stringstream oss; - if ( mpicom->size() > 1 ) { + if ( mpi_size() > 1 ) { oss << "MPI run rank " - << mpicom->rank() << " out of " - << mpicom->size() << " ranks total."; + << mpi_rank() << " out of " + << mpi_size() << " ranks total."; auryn::logger->msg(oss.str(),NOTIFICATION); } - if ( mpicom->size() > 0 && (mpicom->size() & (mpicom->size()-1)) ) { + if ( mpi_size() > 0 && (mpi_size() & (mpi_size()-1)) ) { oss.str(""); oss << "WARNING! The number of processes is not a power of two. " << "This causes impaired performance or even crashes " @@ -152,7 +160,8 @@ void System::free() devices.clear(); checkers.clear(); - delete syncbuffer; + if ( mpicom ) + delete syncbuffer; } void System::step() @@ -377,27 +386,28 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, << "runtime=" << runtime << "s )"; auryn::logger->msg(oss.str(),NOTIFICATION); - oss.str(""); - oss << "On this rank: neurons_total="<< get_total_neurons() - << ", effective_load=" << get_total_effective_load() - << ", synapses_total=" << get_total_synapses(); - auryn::logger->msg(oss.str(),SETTINGS); - + if ( clock == 0 && mpicom ) { // only show this once for clock==0 + oss.str(""); + oss << "On this rank: neurons_total="<< get_total_neurons() + << ", effective_load=" << get_total_effective_load() + << ", synapses_total=" << get_total_synapses(); + auryn::logger->msg(oss.str(),SETTINGS); - if (mpicom->rank() == 0) { - AurynLong all_ranks_total_neurons; - reduce(*mpicom, get_total_neurons(), all_ranks_total_neurons, std::plus(), 0); + if ( mpi_rank() == 0 ) { + AurynLong all_ranks_total_neurons; + reduce(*mpicom, get_total_neurons(), all_ranks_total_neurons, std::plus(), 0); - AurynLong all_ranks_total_synapses; - reduce(*mpicom, get_total_synapses(), all_ranks_total_synapses, std::plus(), 0); + AurynLong all_ranks_total_synapses; + reduce(*mpicom, get_total_synapses(), all_ranks_total_synapses, std::plus(), 0); - oss.str(""); - oss << "On all ranks: neurons_total="<< all_ranks_total_neurons - << ", synapses_total=" << all_ranks_total_synapses; - auryn::logger->msg(oss.str(),SETTINGS); - } else { - reduce(*mpicom, get_total_neurons(), std::plus(), 0); - reduce(*mpicom, get_total_synapses(), std::plus(), 0); + oss.str(""); + oss << "On all ranks: neurons_total="<< all_ranks_total_neurons + << ", synapses_total=" << all_ranks_total_synapses; + auryn::logger->msg(oss.str(),SETTINGS); + } else { + reduce(*mpicom, get_total_neurons(), std::plus(), 0); + reduce(*mpicom, get_total_synapses(), std::plus(), 0); + } } #ifdef CODE_COLLECT_SYNC_TIMING_STATS @@ -410,7 +420,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, while ( get_clock() < stoptime ) { - if ( (mpicom->rank()==0) && (not quiet) && ( (get_clock()%progressbar_update_interval==0) || get_clock()==(stoptime-1) ) ) { + if ( (mpi_rank()==0) && (not quiet) && ( (get_clock()%progressbar_update_interval==0) || get_clock()==(stoptime-1) ) ) { double fraction = 1.0*(get_clock()-starttime+1)*dt/total_time; progressbar(fraction,get_clock()); // TODO find neat solution for the rate } @@ -425,14 +435,16 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, oss.str(""); oss << "Mark set (" << get_time() - << "s). Ran for " << td - << "s with SpeedFactor=" << td/(LOGGER_MARK_INTERVAL*dt); + << "s). Ran for " << td << "s "; + + oss << "with SpeedFactor=" + << std::scientific << td/(LOGGER_MARK_INTERVAL*dt); AurynTime simtime_left = total_time-dt*(get_clock()-starttime+1); AurynDouble remaining_minutes = simtime_left*td/(LOGGER_MARK_INTERVAL*dt)/60; // in minutes if ( remaining_minutes > 5 ) { // only show when more than 5min oss << ", approximately " - << remaining_minutes + << std::setprecision(0) << remaining_minutes << "min of runtime remaining"; } @@ -456,7 +468,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, step(); - if ( mpicom->size()>1 && (get_clock())%(MINDELAY) == 0 ) { + if ( mpi_size()>1 && (get_clock())%(MINDELAY) == 0 ) { sync(); } @@ -485,15 +497,18 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, oss.str(""); oss << "Simulation finished. Ran for " - << elapsed - << "s with SpeedFactor=" - << elapsed/runtime - << " (network clock=" << get_clock() << ")"; + << elapsed << "s "; + + if ( elapsed > 50 ) { // only display if we have some stats + oss << "with SpeedFactor=" + << std::scientific << elapsed/runtime + << " (network clock=" << get_clock() << ")"; + } auryn::logger->msg(oss.str(),NOTIFICATION); #ifdef CODE_COLLECT_SYNC_TIMING_STATS - if (mpicom->rank() == 0) { + if (mpi_rank() == 0) { double minimum; reduce(*mpicom, elapsed, minimum, mpi::minimum(), 0); @@ -575,7 +590,7 @@ string System::fn(std::string name, std::string extension) { std::stringstream oss; oss << outputdir << "/" << name - << "." << mpicom->rank() + << "." << mpi_rank() << "." << extension; return oss.str(); } @@ -586,7 +601,7 @@ string System::fn(std::string name, NeuronID index, std::string extension) oss << outputdir << "/" << name << index - << "." << mpicom->rank() + << "." << mpi_rank() << "." << extension; return oss.str(); } @@ -605,7 +620,7 @@ void System::save_network_state(std::string basename) std::stringstream oss; oss << outputdir << "/" << basename - << "." << mpicom->rank() + << "." << mpi_rank() << ".netstate"; netstate_filename = oss.str(); } // oss goes out of focus @@ -622,9 +637,9 @@ void System::save_network_state(std::string basename) auryn::logger->msg("Saving communicator information ...",VERBOSE); // save communicator information - int tmp_int = mpicom->size(); + int tmp_int = mpi_size(); oa << tmp_int; - tmp_int = mpicom->rank(); + tmp_int = mpi_rank(); oa << tmp_int; @@ -692,7 +707,7 @@ void System::save_network_state_text(std::string basename) char filename [255]; for ( unsigned int i = 0 ; i < connections.size() ; ++i ) { - sprintf(filename, "%s.%d.%d.wmat", basename.c_str(), i, mpicom->rank()); + sprintf(filename, "%s.%d.%d.wmat", basename.c_str(), i, mpi_rank()); std::stringstream oss; oss << "Saving connection " @@ -703,7 +718,7 @@ void System::save_network_state_text(std::string basename) } for ( unsigned int i = 0 ; i < spiking_groups.size() ; ++i ) { - sprintf(filename, "%s.%d.%d.gstate", basename.c_str(), i, mpicom->rank()); + sprintf(filename, "%s.%d.%d.gstate", basename.c_str(), i, mpi_rank()); std::stringstream oss; oss << "Saving group " @@ -723,7 +738,7 @@ void System::load_network_state(std::string basename) { std::stringstream oss; oss << basename - << "." << mpicom->rank() + << "." << mpi_rank() << ".netstate"; netstate_filename = oss.str(); } // oss goes out of focus @@ -762,9 +777,9 @@ void System::load_network_state(std::string basename) bool pass_comm = true; int tmp_int; ia >> tmp_int; - pass_comm = pass_comm && (tmp_int == mpicom->size()); + pass_comm = pass_comm && (tmp_int == mpi_size()); ia >> tmp_int; - pass_comm = pass_comm && (tmp_int == mpicom->rank()); + pass_comm = pass_comm && (tmp_int == mpi_rank()); if ( !pass_comm ) { auryn::logger->msg("ERROR: Communicator size or rank do not match! " @@ -897,3 +912,14 @@ void System::reset_sync_time() } #endif + + +unsigned int System::mpi_size() +{ + return mpi_size_; +} + +unsigned int System::mpi_rank() +{ + return mpi_rank_; +} diff --git a/src/System.h b/src/System.h index dd16cfc2..afaf3c21 100644 --- a/src/System.h +++ b/src/System.h @@ -63,6 +63,9 @@ namespace auryn { private: AurynTime clock; mpi::communicator * mpicom; + unsigned int mpi_size_; + unsigned int mpi_rank_; + std::string simulation_name; SyncBuffer * syncbuffer; @@ -304,6 +307,18 @@ namespace auryn { /*! \brief Returns global mpi communicator */ mpi::communicator * get_com(); + /*! \brief Returns number of ranks + * + * like mpicom->size(), but also defined when run + * without mpi. */ + unsigned int mpi_size(); + + /*! \brief Returns current rank + * + * like mpicom->rank(), but also defined when run + * without mpi. */ + unsigned int mpi_rank(); + #ifdef CODE_COLLECT_SYNC_TIMING_STATS AurynDouble deltaT; AurynDouble measurement_start; From 257d60ce11ad78c3be0d272f8bfc5971e4599944 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 3 Aug 2016 14:50:48 -0700 Subject: [PATCH 413/460] Mod to log output System --- src/System.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index f02ccfbb..47b0f0a0 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -496,8 +496,8 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, last_elapsed_time = elapsed; oss.str(""); - oss << "Simulation finished. Ran for " - << elapsed << "s "; + oss << "Simulation finished. Elapsed wall time " + << elapsed << "s "; if ( elapsed > 50 ) { // only display if we have some stats oss << "with SpeedFactor=" From 60fb201b64e1750b80d21ea25a513b8af403ec39 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 3 Aug 2016 14:55:21 -0700 Subject: [PATCH 414/460] System: cleans up logger output --- src/System.cpp | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/System.cpp b/src/System.cpp index 47b0f0a0..4c04d2b6 100644 --- a/src/System.cpp +++ b/src/System.cpp @@ -383,7 +383,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, std::stringstream oss; oss << "Simulation triggered ( " - << "runtime=" << runtime << "s )"; + << "runtime=" << runtime << "s ) ..."; auryn::logger->msg(oss.str(),NOTIFICATION); if ( clock == 0 && mpicom ) { // only show this once for clock==0 @@ -435,10 +435,13 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, oss.str(""); oss << "Mark set (" << get_time() - << "s). Ran for " << td << "s "; + << "s). "; - oss << "with SpeedFactor=" - << std::scientific << td/(LOGGER_MARK_INTERVAL*dt); + if ( td > 50 ) { + oss << "Ran for " << td << "s " + << "with SpeedFactor=" + << std::scientific << td/(LOGGER_MARK_INTERVAL*dt); + } AurynTime simtime_left = total_time-dt*(get_clock()-starttime+1); AurynDouble remaining_minutes = simtime_left*td/(LOGGER_MARK_INTERVAL*dt)/60; // in minutes @@ -497,7 +500,7 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, oss.str(""); oss << "Simulation finished. Elapsed wall time " - << elapsed << "s "; + << elapsed << "s. "; if ( elapsed > 50 ) { // only display if we have some stats oss << "with SpeedFactor=" @@ -539,16 +542,15 @@ bool System::run(AurynTime starttime, AurynTime stoptime, AurynFloat total_time, bool System::run(AurynFloat simulation_time, bool checking) { - - AurynTime starttime = get_clock(); - AurynTime stoptime = get_clock() + (AurynTime) (simulation_time/dt); - // throw an exception if the stoptime is post the range of AurynTime if ( get_time() + simulation_time > std::numeric_limits::max()*dt ) { auryn::logger->msg("The requested simulation time exceeds the number of possible timesteps limited by AurynTime datatype.",ERROR); throw AurynTimeOverFlowException(); } + AurynTime starttime = get_clock(); + AurynTime stoptime = get_clock() + (AurynTime) (simulation_time/dt); + return run(starttime, stoptime, simulation_time, checking); } From a20488451a332b499ad6b2fe3b38f3e1cfe38cc6 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 3 Aug 2016 15:17:36 -0700 Subject: [PATCH 415/460] Fixes mk_version_info.sh --- src/mk_version_info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh index e98d0992..365b6c29 100755 --- a/src/mk_version_info.sh +++ b/src/mk_version_info.sh @@ -26,7 +26,7 @@ namespace auryn { int AurynVersion::subversion = $AURYNSUBVERSION; int AurynVersion::revision_number = $AURYNREVISIONNUMBER; NeuronID AurynVersion::tag_binary_spike_monitor = 287960000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinarySpikeMonitor files - NeuronID AurynVersion::tag_binary_state_monitor = 287961000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files + AurynState AurynVersion::tag_binary_state_monitor = 287961000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files std::string AurynVersion::revision_suffix = "$AURYNREVISIONSUFFIXANDHASH"; std::string AurynVersion::git_describe = "$GITDESCRIBE"; From a933ddc8b762bf25b27d348e9a344d199726ec23 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 3 Aug 2016 15:17:36 -0700 Subject: [PATCH 416/460] Fixes mk_version_info.sh --- src/mk_version_info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh index e98d0992..365b6c29 100755 --- a/src/mk_version_info.sh +++ b/src/mk_version_info.sh @@ -26,7 +26,7 @@ namespace auryn { int AurynVersion::subversion = $AURYNSUBVERSION; int AurynVersion::revision_number = $AURYNREVISIONNUMBER; NeuronID AurynVersion::tag_binary_spike_monitor = 287960000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinarySpikeMonitor files - NeuronID AurynVersion::tag_binary_state_monitor = 287961000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files + AurynState AurynVersion::tag_binary_state_monitor = 287961000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files std::string AurynVersion::revision_suffix = "$AURYNREVISIONSUFFIXANDHASH"; std::string AurynVersion::git_describe = "$GITDESCRIBE"; From 45e0fa11854bbfec4fdb620f8e8f209b6ad73af0 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 4 Aug 2016 16:19:47 -0700 Subject: [PATCH 417/460] Adds a loop grid for easier temporal alignment in FileInputGroup --- src/FileInputGroup.cpp | 18 ++++++++++++++++++ src/FileInputGroup.h | 19 +++++++++++++++---- 2 files changed, 33 insertions(+), 4 deletions(-) diff --git a/src/FileInputGroup.cpp b/src/FileInputGroup.cpp index d96ef594..7bee0741 100644 --- a/src/FileInputGroup.cpp +++ b/src/FileInputGroup.cpp @@ -38,6 +38,8 @@ void FileInputGroup::init(std::string filename) active = true; + loop_grid_size = 1; + if ( evolve_locally() ) { spkfile.open(filename.c_str(),std::ifstream::in); if (!spkfile) { @@ -70,6 +72,9 @@ FileInputGroup::~FileInputGroup() spkfile.close(); } +void FileInputGroup::read_event(AurynTime & event_time, NeuronID & neuron_id, const AurynTime time_offset) +{ +} void FileInputGroup::evolve() { @@ -84,6 +89,7 @@ void FileInputGroup::evolve() therewasalastspike = false; } + char buffer[255]; while (ftime <= auryn::sys->get_clock() && spkfile.getline(buffer, 256) ) { std::stringstream line ( buffer ) ; line >> t; @@ -101,6 +107,9 @@ void FileInputGroup::evolve() if ( playinloop && spkfile.eof() ) { off = ftime+dly; + if ( off%loop_grid_size ) { + off = (off/loop_grid_size+1)*loop_grid_size; + } spkfile.clear(); spkfile.seekg(0,std::ios::beg); } @@ -110,3 +119,12 @@ void FileInputGroup::evolve() ftime = off; } } + + +void FileInputGroup::set_loop_grid(AurynDouble grid_size) +{ + if ( grid_size > 0 ) { + loop_grid_size = grid_size/dt; + if ( loop_grid_size == 0 ) loop_grid_size = 1; + } +} diff --git a/src/FileInputGroup.h b/src/FileInputGroup.h index 2e783796..c52f063d 100644 --- a/src/FileInputGroup.h +++ b/src/FileInputGroup.h @@ -48,21 +48,32 @@ class FileInputGroup : public SpikingGroup private: AurynTime ftime; NeuronID lastspike; + AurynTime next_event_time; + NeuronID next_event_spike; bool therewasalastspike; bool playinloop; + + /*! \brief Aligns looped file input to a grid of this size */ + AurynTime loop_grid_size; + AurynTime dly; AurynTime off; std::ifstream spkfile; - char buffer[255]; void init(string filename ); - + void read_event(AurynTime & event_time, NeuronID & neuron_id, const AurynTime time_offset); + public: - bool active ; + FileInputGroup(NeuronID n, string filename ); - FileInputGroup(NeuronID n, string filename , bool loop, AurynFloat delay=0.0 ); + FileInputGroup(NeuronID n, string filename , bool loop=true, AurynFloat delay=0.0 ); virtual ~FileInputGroup(); virtual void evolve(); + /*!\brief Aligned loop blocks to a temporal grid of this size + * + * */ + void set_loop_grid(AurynDouble grid_size); + }; } From f5bcb645a157d4a381a99a31435e0d9b112cb5fb Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 4 Aug 2016 18:21:10 -0700 Subject: [PATCH 418/460] Refactors FileInputGroup to first load all spikes to memory --- src/FileInputGroup.cpp | 111 +++++++++++++++++++++-------------------- src/FileInputGroup.h | 29 ++++++----- 2 files changed, 74 insertions(+), 66 deletions(-) diff --git a/src/FileInputGroup.cpp b/src/FileInputGroup.cpp index 7bee0741..bef5cc26 100644 --- a/src/FileInputGroup.cpp +++ b/src/FileInputGroup.cpp @@ -31,29 +31,16 @@ using namespace auryn; void FileInputGroup::init(std::string filename) { auryn::sys->register_spiking_group(this); - - ftime = 0; - lastspike = 0; - therewasalastspike = false; - active = true; - loop_grid_size = 1; - - if ( evolve_locally() ) { - spkfile.open(filename.c_str(),std::ifstream::in); - if (!spkfile) { - std::cerr << "Can't open input file " << filename << std::endl; - std::exit(1); - } - } + load_spikes(filename); } FileInputGroup::FileInputGroup(NeuronID n, std::string filename) : SpikingGroup(n, 0.0 ) // last 0 enforces RankLock { playinloop = false; - dly = 0; - off = 0; + time_delay = 0; + time_offset = 0; init(filename); } @@ -62,62 +49,78 @@ FileInputGroup::FileInputGroup(NeuronID n, std::string filename, : SpikingGroup( n , 0.0 ) { playinloop = loop; - dly = (AurynTime) (delay/dt); - off = 0; + time_delay = (AurynTime) (delay/dt); + time_offset = 0; init(filename); } FileInputGroup::~FileInputGroup() { - spkfile.close(); } -void FileInputGroup::read_event(AurynTime & event_time, NeuronID & neuron_id, const AurynTime time_offset) -{ -} +bool time_compare (SpikeEvent_type a,SpikeEvent_type b) { return (a.timeget_clock() && therewasalastspike) { - if (localrank(lastspike)) - spikes->push_back(lastspike); - therewasalastspike = false; + char buffer[255]; + while ( spkfile.getline(buffer, 256) ) { + SpikeEvent_type event; + std::stringstream line ( buffer ) ; + double t_tmp; + line >> t_tmp; + event.time = t_tmp/dt; + line >> event.neuronID; + if ( localrank(event.neuronID) ) { + input_spikes.push_back(event); + // std::cout << event.time << std::endl; } + } + spkfile.close(); - char buffer[255]; - while (ftime <= auryn::sys->get_clock() && spkfile.getline(buffer, 256) ) { - std::stringstream line ( buffer ) ; - line >> t; - ftime = t/dt+off; - line >> i; - if ( i >= get_rank_size() ) continue; // ignore too large i - if (ftime == auryn::sys->get_clock()) { - if (localrank(lastspike)) - spikes->push_back(i); - } else { - lastspike = i; - therewasalastspike = true; - } + // TODO check if this is not too slow + std::sort (input_spikes.begin(), input_spikes.end(), time_compare); + + std::stringstream oss; + oss << get_log_name() << ":: Finished loading " << input_spikes.size() + << " spike events"; + logger->info(oss.str()); + + spike_iter = input_spikes.begin(); +} + + +AurynTime FileInputGroup::get_offset_clock() { + return sys->get_clock() - time_offset; +} + +void FileInputGroup::evolve() +{ + if (active) { + while ( spike_iter != input_spikes.end() && (*spike_iter).time <= get_offset_clock() ) { + spikes->push_back((*spike_iter).neuronID); + ++spike_iter; + //std::cout << sys->get_time() << std::endl; } - if ( playinloop && spkfile.eof() ) { - off = ftime+dly; - if ( off%loop_grid_size ) { - off = (off/loop_grid_size+1)*loop_grid_size; + if ( (input_spikes.back()).time+time_delay == get_offset_clock() && playinloop ) { + time_offset = sys->get_clock()+time_delay; + if ( time_offset%loop_grid_size ) { + time_offset = (time_offset/loop_grid_size+1)*loop_grid_size; } - spkfile.clear(); - spkfile.seekg(0,std::ios::beg); + spike_iter = input_spikes.begin(); } } - else { // keep track of time - off = auryn::sys->get_clock(); - ftime = off; - } } diff --git a/src/FileInputGroup.h b/src/FileInputGroup.h index c52f063d..7f06329c 100644 --- a/src/FileInputGroup.h +++ b/src/FileInputGroup.h @@ -36,31 +36,32 @@ namespace auryn { -/*! \brief Reads files from a ras file and emits them as SpikingGroup in a simulation. +/*! \brief Reads spikes from a ras file and emits them as SpikingGroup in a simulation. * - * When the FileInputGroup reaches the end of a designated ras file it can - * depending on the settings start over again at the beginning or do nothing. - * This is controlled by the loop directive. In addition to that it is - * possible to specify a certain delay between loops. + * FileInputGroup first reads the entire ras file into memory and emits the spikes then during the simulation + * without file access. It supports looping over the input spikes by setting the loop argument with the constructor + * to true. */ class FileInputGroup : public SpikingGroup { private: - AurynTime ftime; - NeuronID lastspike; AurynTime next_event_time; NeuronID next_event_spike; - bool therewasalastspike; bool playinloop; /*! \brief Aligns looped file input to a grid of this size */ AurynTime loop_grid_size; - AurynTime dly; - AurynTime off; - std::ifstream spkfile; + AurynTime time_delay; + AurynTime time_offset; + + + std::vector input_spikes; + std::vector::const_iterator spike_iter; + void init(string filename ); - void read_event(AurynTime & event_time, NeuronID & neuron_id, const AurynTime time_offset); + + AurynTime get_offset_clock(); public: @@ -74,6 +75,10 @@ class FileInputGroup : public SpikingGroup * */ void set_loop_grid(AurynDouble grid_size); + /*!\brief Load spikes from file + * + * */ + void load_spikes(std::string filename); }; } From 8157486de59f8a82607b925b3575f877f88878d9 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 4 Aug 2016 19:33:30 -0700 Subject: [PATCH 419/460] Fixes some of the issues in FileInputGroup --- src/FileInputGroup.cpp | 36 ++++++++++++++++++++++++++---------- src/FileInputGroup.h | 2 ++ 2 files changed, 28 insertions(+), 10 deletions(-) diff --git a/src/FileInputGroup.cpp b/src/FileInputGroup.cpp index bef5cc26..1e70aa11 100644 --- a/src/FileInputGroup.cpp +++ b/src/FileInputGroup.cpp @@ -97,6 +97,7 @@ void FileInputGroup::load_spikes(std::string filename) logger->info(oss.str()); spike_iter = input_spikes.begin(); + reset_time = 0; } @@ -104,21 +105,35 @@ AurynTime FileInputGroup::get_offset_clock() { return sys->get_clock() - time_offset; } +AurynTime FileInputGroup::get_next_grid_point( AurynTime time ) { + AurynTime result = time+time_delay; + if ( result%loop_grid_size ) { // align to temporal grid + result = (result/loop_grid_size+1)*loop_grid_size; + } + return result; +} + void FileInputGroup::evolve() { - if (active) { + if (active && input_spikes.size()) { + // when reset_time is reached reset the spike_iterator to The beginning and update time offset + if ( sys->get_clock() == reset_time ) { + spike_iter = input_spikes.begin(); + time_offset = sys->get_clock(); + // std::cout << "set to" << reset_time*dt << " " << time_offset << std::endl; + } + while ( spike_iter != input_spikes.end() && (*spike_iter).time <= get_offset_clock() ) { spikes->push_back((*spike_iter).neuronID); ++spike_iter; - //std::cout << sys->get_time() << std::endl; + // std::cout << "spike " << sys->get_time() << std::endl; } - if ( (input_spikes.back()).time+time_delay == get_offset_clock() && playinloop ) { - time_offset = sys->get_clock()+time_delay; - if ( time_offset%loop_grid_size ) { - time_offset = (time_offset/loop_grid_size+1)*loop_grid_size; - } - spike_iter = input_spikes.begin(); + // TODO Fix the bug which eats the first spike + if ( spike_iter==input_spikes.end() && reset_time < sys->get_clock() && playinloop ) { // at last spike on file set new reset time + // schedule reset for next grid point after delay + reset_time = get_next_grid_point(sys->get_clock()); + // std::cout << "set rt" << reset_time << std::endl; } } } @@ -126,8 +141,9 @@ void FileInputGroup::evolve() void FileInputGroup::set_loop_grid(AurynDouble grid_size) { - if ( grid_size > 0 ) { - loop_grid_size = grid_size/dt; + if ( grid_size > 0.0 ) { + loop_grid_size = 1.0/dt*grid_size; if ( loop_grid_size == 0 ) loop_grid_size = 1; } } + diff --git a/src/FileInputGroup.h b/src/FileInputGroup.h index 7f06329c..4f92e8de 100644 --- a/src/FileInputGroup.h +++ b/src/FileInputGroup.h @@ -54,6 +54,7 @@ class FileInputGroup : public SpikingGroup AurynTime time_delay; AurynTime time_offset; + AurynTime reset_time; std::vector input_spikes; @@ -62,6 +63,7 @@ class FileInputGroup : public SpikingGroup void init(string filename ); AurynTime get_offset_clock(); + AurynTime get_next_grid_point( AurynTime time ); public: From 829d30cb72e2112553b14912805f697a474de4c8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Thu, 4 Aug 2016 19:34:45 -0700 Subject: [PATCH 420/460] Adds todo to Fileinputgroup --- src/FileInputGroup.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/FileInputGroup.h b/src/FileInputGroup.h index 4f92e8de..8b2a2b32 100644 --- a/src/FileInputGroup.h +++ b/src/FileInputGroup.h @@ -41,6 +41,8 @@ namespace auryn { * FileInputGroup first reads the entire ras file into memory and emits the spikes then during the simulation * without file access. It supports looping over the input spikes by setting the loop argument with the constructor * to true. + * + * \todo Somehow this group seems to swallow the first spike -- have to luck into this */ class FileInputGroup : public SpikingGroup { From 84862561513c808ad0f02c2c2227520c3f00c47a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 6 Aug 2016 14:51:05 -0700 Subject: [PATCH 421/460] Moves active switch to SpikingGroup --- src/SpikingGroup.cpp | 1 + src/SpikingGroup.h | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 1520d79d..6f42f215 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -55,6 +55,7 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) group_name = "SpikingGroup"; unique_id = unique_id_count++; size = n; + active = true; effective_load_multiplier = loadmultiplier; if ( total > 0 ) { diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index b7888ea3..475dbd39 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -131,6 +131,12 @@ class SpikingGroup public: SpikeDelay * delay; + /*! \brief Toggles group active + * + * Groups do not necessarily obey this toggle though. */ + bool active; + + /*! Can hold single neuron vectors such as target rates or STP states etc */ std::map state_vectors; From d63e8be63ff5d2ddeba69af2bb9b1189c085509c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 6 Aug 2016 14:51:47 -0700 Subject: [PATCH 422/460] Adds prune function to DuplexConnection --- src/DuplexConnection.cpp | 6 ++++++ src/DuplexConnection.h | 3 +++ 2 files changed, 9 insertions(+) diff --git a/src/DuplexConnection.cpp b/src/DuplexConnection.cpp index 7c66d299..e0c3452e 100644 --- a/src/DuplexConnection.cpp +++ b/src/DuplexConnection.cpp @@ -152,3 +152,9 @@ void DuplexConnection::compute_reverse_matrix( int z ) } } +void DuplexConnection::prune( ) +{ + auryn::logger->msg("Pruning weight matrix",VERBOSE); + fwd->prune(); + compute_reverse_matrix(); +} diff --git a/src/DuplexConnection.h b/src/DuplexConnection.h index 8ee73f58..1d5996c6 100644 --- a/src/DuplexConnection.h +++ b/src/DuplexConnection.h @@ -72,6 +72,9 @@ class DuplexConnection : public SparseConnection virtual ~DuplexConnection(); virtual void finalize(); + /*! \brief Prune weight matrices. */ + void prune(); + }; } From 1714b39eed0f42be36f85eabb6d66b5cfddb065a Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 6 Aug 2016 14:52:09 -0700 Subject: [PATCH 423/460] Removes active switch --- src/StimulusGroup.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/StimulusGroup.h b/src/StimulusGroup.h index 3cc772c2..2b21b9c8 100644 --- a/src/StimulusGroup.h +++ b/src/StimulusGroup.h @@ -141,9 +141,6 @@ class StimulusGroup : public SpikingGroup /*! \brief Enables a finite refractory time specified in AurynTime (only works for non-binary-pattern mode. */ AurynTime refractory_period; - /*! \brief Determines if the Group is active or bypassed upon evolution. */ - bool active; - /*! \brief Determines if the Group is using random activation intervals */ bool randomintervals; From 5003205fe9b6d427be94b61d2a593d338bba9728 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Sat, 6 Aug 2016 14:52:30 -0700 Subject: [PATCH 424/460] Updates mk_version_info --- src/mk_version_info.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh index 365b6c29..f2d23a37 100755 --- a/src/mk_version_info.sh +++ b/src/mk_version_info.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Script generates auryn_revision.h according to the following values +# Script generates auryn_revision.cpp according to the following values AURYNVERSION=0 AURYNSUBVERSION=8 @@ -10,12 +10,14 @@ AURYNREVISIONSUFFIX="-dev" # Do not edit below +OUTDIR=`dirname $0` + HASH=`git log --pretty=format:'%h' -n 1` AURYNREVISIONSUFFIXANDHASH="$AURYNREVISIONSUFFIX-$HASH" GITDESCRIBE=`git describe` -cat < AurynVersion.cpp +cat < $OUTDIR/AurynVersion.cpp // Please note that his file is created by mk_version_info.sh // Changes to this file may thous be overwritten #include "AurynVersion.h" From 933da4806201d97527a90d83d5a7e0daf0f35081 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 17:56:49 -0700 Subject: [PATCH 425/460] Renames a type in EulerTrace --- src/EulerTrace.cpp | 10 +++++----- src/EulerTrace.h | 18 +++++++++--------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/EulerTrace.cpp b/src/EulerTrace.cpp index 8af5c9b8..55c4947f 100644 --- a/src/EulerTrace.cpp +++ b/src/EulerTrace.cpp @@ -31,8 +31,8 @@ void EulerTrace::init(NeuronID n, AurynFloat timeconstant) { size = n; set_timeconstant(timeconstant); - state = new AurynVectorFloat ( calculate_vector_size(size) ); - temp = new AurynVectorFloat ( calculate_vector_size(size) ); // temp vector + state = new AurynStateVector ( calculate_vector_size(size) ); + temp = new AurynStateVector ( calculate_vector_size(size) ); // temp vector set_all(0.); target_ptr = NULL; } @@ -69,7 +69,7 @@ void EulerTrace::set_all(AurynFloat value) state->set_all(value); } -void EulerTrace::add(AurynVectorFloat * values) +void EulerTrace::add(AurynStateVector * values) { state->add( values ); } @@ -80,7 +80,7 @@ void EulerTrace::add(NeuronID i, AurynFloat value) state->data[i] += value; } -void EulerTrace::set_target( AurynVectorFloat * target ) +void EulerTrace::set_target( AurynStateVector * target ) { if ( target != NULL ) { target_ptr = target ; @@ -107,7 +107,7 @@ void EulerTrace::follow() auryn_vector_float_saxpy( -dt/tau, temp, state ); } -AurynVectorFloat * EulerTrace::get_state_ptr() +AurynStateVector * EulerTrace::get_state_ptr() { return state; } diff --git a/src/EulerTrace.h b/src/EulerTrace.h index c1026f14..9c90abcb 100644 --- a/src/EulerTrace.h +++ b/src/EulerTrace.h @@ -56,11 +56,11 @@ class EulerTrace /*! The size of the group. */ NeuronID size; /*! The internal state vector. */ - AurynVectorFloat * state; + AurynStateVector * state; /*! The target vector for follow operation. */ - AurynVectorFloat * target_ptr; + AurynStateVector * target_ptr; /*! Temp update vector for follow operation. */ - AurynVectorFloat * temp; + AurynStateVector * temp; /*! Multiplicative factor to downscale the values in every timestep. */ AurynFloat scale_const; /*! Decay time constant in [s]. */ @@ -92,10 +92,10 @@ class EulerTrace void set(NeuronID i , AurynFloat value); /*! Set all traces to same value */ void set_all( AurynFloat value); - /*! Add AurynVectorFloat to state vector - * \param values AurynVectorFloat to add + /*! Add AurynStateVector to state vector + * \param values AurynStateVector to add */ - void add(AurynVectorFloat * values); + void add(AurynStateVector * values); /*! Add designated value to single trace in the group. * \param i index of trace to change * \param value value to add to the trace @@ -115,7 +115,7 @@ class EulerTrace void set_timeconstant( AurynFloat timeconstant ); /*! set the target vector for follow operation */ - void set_target( AurynVectorFloat * target ); + void set_target( AurynStateVector * target ); /*! set the target vector for follow operation */ void set_target( EulerTrace * target ); @@ -134,8 +134,8 @@ class EulerTrace * \param i index of trace to get */ AurynFloat normalized_get(NeuronID i); - /*! Get pointer to state AurynVectorFloat for fast processing within the GSL vector framekwork. */ - AurynVectorFloat * get_state_ptr(); + /*! Get pointer to state AurynStateVector for fast processing within the GSL vector framekwork. */ + AurynStateVector * get_state_ptr(); }; inline AurynFloat EulerTrace::get(NeuronID i) From 402e2ee504105f050d87db83d966c832aa85196b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 17:57:54 -0700 Subject: [PATCH 426/460] Adds an if check to to evolve_traces() in SpikingGroup --- src/SpikingGroup.cpp | 12 +++++++----- src/SpikingGroup.h | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index 6f42f215..e6b0abc0 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -458,11 +458,13 @@ void SpikingGroup::evolve_traces() for ( NeuronID i = 0 ; i < post_state_traces.size() ; i++ ) { // spike triggered component - for (SpikeContainer::const_iterator spike = get_spikes_immediate()->begin() ; - spike != get_spikes_immediate()->end() ; - ++spike ) { - NeuronID translated_spike = global2rank(*spike); // only to be used for post traces - post_state_traces[i]->add(translated_spike, post_state_traces_spike_biases[i]); + if ( post_state_traces_spike_biases[i] != 0 ) { + for (SpikeContainer::const_iterator spike = get_spikes_immediate()->begin() ; + spike != get_spikes_immediate()->end() ; + ++spike ) { + NeuronID translated_spike = global2rank(*spike); // only to be used for post traces + post_state_traces[i]->add(translated_spike, post_state_traces_spike_biases[i]); + } } // follow the target vector (instead of evolve) diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 475dbd39..3c9a6582 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -306,7 +306,7 @@ class SpikingGroup * */ EulerTrace * get_post_state_trace( std::string state_name="mem", AurynFloat tau=10e-3, AurynFloat b=0.0 ); - /*! \brief Returns a post trace of a neuronal state variable specifcied by pointer + /*! \brief Returns a post trace of a neuronal state variable specified by pointer * * This trace is an cotinuously integrated EulerTrace which uses the follow * function on the mem state vector. From 6ab79e1d3527e33b00771b85213d2274cff752b5 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 18:47:51 -0700 Subject: [PATCH 427/460] First code of python based spike extraction tool --- tools/pyaube.py | 73 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100755 tools/pyaube.py diff --git a/tools/pyaube.py b/tools/pyaube.py new file mode 100755 index 00000000..7183325a --- /dev/null +++ b/tools/pyaube.py @@ -0,0 +1,73 @@ +#!/usr/bin/python +import numpy as np +import struct + + +filename = "/home/zenke/data/sim/rf3.0.e.spk" +datafile = open(filename, "rb") +data_format = "@II" +data_struct_size = struct.calcsize(data_format) + +# Reader spk file header +data = datafile.read(100) +header = struct.unpack_from(data_format, data) +timestep = 1.0/header[0] +version_code = header[1]%1000 +file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) +print "File version",file_version +print "File data struct size",data_struct_size + +datafile.seek(0,2) +filesize = datafile.tell() +num_frames = filesize/data_struct_size-1 +datafile.seek(data_struct_size,0) +print "Filesize", filesize +print "Number of frames",num_frames + + +def get_frame(idx): + ''' + Returns decoded contents of a frame with index idx as tuple + ''' + pos = (idx+1)*data_struct_size + datafile.seek(pos,0) + data = datafile.read(data_struct_size) + frame = struct.unpack(data_format, data) + return frame + +def find_frame(time=0, lower=False): + ''' + Find frame index of given time by bisection. + ''' + idx_lo = 0 + idx_hi = num_frames + while idx_lo+1time: + idx_hi = pivot + else: + idx_lo = pivot + if lower: + return idx_lo + else: + return idx_hi + +def get_spikes( t_start, t_stop ): + idx_start = find_frame( t_start, lower=False ) + idx_stop = find_frame( t_stop, lower=True ) + start_pos = (idx_start+1)*data_struct_size + datafile.seek(start_pos,0) + num_elements = idx_stop-idx_start + data = datafile.read(num_elements*data_struct_size) + + spikes = [] + for i in xrange(num_elements): + at, nid = struct.unpack_from(data_format, data, i*data_struct_size) + spikes.append((timestep*at, nid)) + return spikes + + +spikes = get_spikes(1.0, 2.0) +print np.array(spikes) From 3e6ef6f0a9ddd3f82070be0d271b0c624b40beff Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 19:47:19 -0700 Subject: [PATCH 428/460] Makes python tool a class --- tools/pyaube.py | 212 +++++++++++++++++++++++++++++++++--------------- 1 file changed, 145 insertions(+), 67 deletions(-) diff --git a/tools/pyaube.py b/tools/pyaube.py index 7183325a..ad75d398 100755 --- a/tools/pyaube.py +++ b/tools/pyaube.py @@ -1,73 +1,151 @@ #!/usr/bin/python import numpy as np +import pylab as pl import struct -filename = "/home/zenke/data/sim/rf3.0.e.spk" -datafile = open(filename, "rb") -data_format = "@II" -data_struct_size = struct.calcsize(data_format) - -# Reader spk file header -data = datafile.read(100) -header = struct.unpack_from(data_format, data) -timestep = 1.0/header[0] -version_code = header[1]%1000 -file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) -print "File version",file_version -print "File data struct size",data_struct_size - -datafile.seek(0,2) -filesize = datafile.tell() -num_frames = filesize/data_struct_size-1 -datafile.seek(data_struct_size,0) -print "Filesize", filesize -print "Number of frames",num_frames - - -def get_frame(idx): - ''' - Returns decoded contents of a frame with index idx as tuple - ''' - pos = (idx+1)*data_struct_size - datafile.seek(pos,0) - data = datafile.read(data_struct_size) - frame = struct.unpack(data_format, data) - return frame - -def find_frame(time=0, lower=False): - ''' - Find frame index of given time by bisection. - ''' - idx_lo = 0 - idx_hi = num_frames - while idx_lo+1time: - idx_hi = pivot +class AurynBinarySpikeFile: + def __init__(self, filename): + self.filename = filename + self.data_format = "@II" + self.frame_size = struct.calcsize(self.data_format) + self.datafile = open(filename, "rb") + + # Reader spk file header + data = self.datafile.read(self.frame_size) + self.header = struct.unpack(self.data_format, data) + self.timestep = 1.0/self.header[0] + version_code = self.header[1]%1000 + self.file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) + print "File version", self.file_version + print "File data struct size", self.frame_size + + # Determine size of file + self.datafile.seek(0,2) + self.filesize = self.datafile.tell() + self.num_frames = self.filesize/self.frame_size-1 + self.datafile.seek(self.frame_size,0) + print "Filesize", self.filesize + print "Number of frames", self.num_frames + + def unpack(self, data): + return struct.unpack(self.data_format, data) + + def get_frame(self,idx): + ''' + Returns decoded contents of a frame with index idx as tuple + ''' + pos = (idx+1)*self.frame_size + self.datafile.seek(pos,0) + data = self.datafile.read(self.frame_size) + frame = self.unpack(data) + return frame + + def find_frame(self, time=0, lower=False): + ''' + Find frame index of given time by bisection. + ''' + idx_lo = 1 + idx_hi = self.num_frames + while idx_lo+1time: + idx_hi = pivot + else: + idx_lo = pivot + if lower: + return idx_lo else: - idx_lo = pivot - if lower: - return idx_lo - else: - return idx_hi - -def get_spikes( t_start, t_stop ): - idx_start = find_frame( t_start, lower=False ) - idx_stop = find_frame( t_stop, lower=True ) - start_pos = (idx_start+1)*data_struct_size - datafile.seek(start_pos,0) - num_elements = idx_stop-idx_start - data = datafile.read(num_elements*data_struct_size) - - spikes = [] - for i in xrange(num_elements): - at, nid = struct.unpack_from(data_format, data, i*data_struct_size) - spikes.append((timestep*at, nid)) - return spikes - - -spikes = get_spikes(1.0, 2.0) -print np.array(spikes) + return idx_hi + + + def read_frames(self, bufsize): + return self.datafile.read(bufsize*self.frame_size) + + + def get_spikes_from_interval( self, t_start, t_stop ): + idx_start = self.find_frame( t_start, lower=False ) + idx_stop = self.find_frame( t_stop, lower=True ) + start_pos = idx_start*self.frame_size + num_elements = idx_stop-idx_start + + self.datafile.seek(start_pos,0) + data = self.datafile.read(num_elements*self.frame_size) + + spikes = [] + for i in xrange(num_elements): + at, nid = struct.unpack_from(self.data_format, data, i*self.frame_size) + spikes.append((self.timestep*at, nid)) + return spikes + + def get_spike_times_from_interval( self, neuron_id=0, t_start=0, t_stop=1e32 ): + idx_start = self.find_frame( t_start, lower=False ) + idx_stop = self.find_frame( t_stop, lower=True ) + + idx_cur = idx_start + start_pos = idx_start*self.frame_size + self.datafile.seek(start_pos,0) + + bufsize = 2048 + spike_times = [] + while idx_cur < idx_stop: + if idx_stop-idx_cur Date: Tue, 9 Aug 2016 19:54:20 -0700 Subject: [PATCH 429/460] Moves example file --- tools/{pyaube.py => experimental/loadspk.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tools/{pyaube.py => experimental/loadspk.py} (100%) diff --git a/tools/pyaube.py b/tools/experimental/loadspk.py similarity index 100% rename from tools/pyaube.py rename to tools/experimental/loadspk.py From aa80e1f2168ca5857b1a36c33c532ea0adf68705 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 20:12:42 -0700 Subject: [PATCH 430/460] Some small changes --- tools/experimental/loadspk.py | 62 ++++++++++++++++++++++------------- 1 file changed, 39 insertions(+), 23 deletions(-) diff --git a/tools/experimental/loadspk.py b/tools/experimental/loadspk.py index ad75d398..f07564a0 100755 --- a/tools/experimental/loadspk.py +++ b/tools/experimental/loadspk.py @@ -5,9 +5,14 @@ class AurynBinarySpikeFile: - def __init__(self, filename): - self.filename = filename + def __init__(self, filename, debug_output=False): + # These params might have to adapted ot different Auryn datatypes and versions self.data_format = "@II" + self.class_version = (0,8,0) + + self.debug = debug_output + + self.filename = filename self.frame_size = struct.calcsize(self.data_format) self.datafile = open(filename, "rb") @@ -17,16 +22,22 @@ def __init__(self, filename): self.timestep = 1.0/self.header[0] version_code = self.header[1]%1000 self.file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) - print "File version", self.file_version - print "File data struct size", self.frame_size + if self.class_version != self.file_version: + print("Warning! Version mismatch between the decoding tool and the file version.") + print("AurynBinarySpikeFile %s"%str(self.class_version)) + print("Fileversion %s"%str(self.file_version)) # Determine size of file self.datafile.seek(0,2) self.filesize = self.datafile.tell() self.num_frames = self.filesize/self.frame_size-1 self.datafile.seek(self.frame_size,0) - print "Filesize", self.filesize - print "Number of frames", self.num_frames + if self.debug: + print "Filesize", self.filesize + print "Number of frames", self.num_frames + + def __del__(self): + self.datafile.close() def unpack(self, data): return struct.unpack(self.data_format, data) @@ -88,7 +99,7 @@ def get_spike_times_from_interval( self, neuron_id=0, t_start=0, t_stop=1e32 ): start_pos = idx_start*self.frame_size self.datafile.seek(start_pos,0) - bufsize = 2048 + bufsize = 1024*1024 spike_times = [] while idx_cur < idx_stop: if idx_stop-idx_cur Date: Tue, 9 Aug 2016 20:28:36 -0700 Subject: [PATCH 431/460] Faster implementation for RF --- tools/experimental/loadspk.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tools/experimental/loadspk.py b/tools/experimental/loadspk.py index f07564a0..b715c4cd 100755 --- a/tools/experimental/loadspk.py +++ b/tools/experimental/loadspk.py @@ -131,10 +131,12 @@ def compute_linear_receptive_field(self, stim_times, time_window=100e-3, max_neu hist = np.zeros(max_neuron_id) for t_spike in stim_times: spikes = self.get_spikes_from_interval(t_spike-time_window, t_spike) - sar = np.array(spikes)[:,1] - for spk in sar: - if spk < max_neuron_id: - hist[spk] += 1 + sar = np.array(spikes, dtype=int)[:,1] + #for spk in sar: + # if spk < max_neuron_id: + # hist[spk] += 1 + counts = np.bincount(sar, minlength=max_neuron_id) + hist += counts return hist @@ -151,7 +153,7 @@ def compute_linear_receptive_field(self, stim_times, time_window=100e-3, max_neu spkf = AurynBinarySpikeFile(filename) print "Getting firing times" -t_spikes = spkf.get_spike_times_from_interval(nid, 1000, 1200) +t_spikes = spkf.get_spike_times_from_interval(nid, 1000, 2000) filenames = ["/home/zenke/data/sim/rf2.0.s.spk", "/home/zenke/data/sim/rf2.1.s.spk", From 6b235433ccbbbb470d789460ba4f8d7c18fc3798 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 22:24:43 -0700 Subject: [PATCH 432/460] Adds if main to python spk import lib --- .../loadspk.py => python/spkimport.py} | 44 ++++++++++--------- 1 file changed, 23 insertions(+), 21 deletions(-) rename tools/{experimental/loadspk.py => python/spkimport.py} (86%) diff --git a/tools/experimental/loadspk.py b/tools/python/spkimport.py similarity index 86% rename from tools/experimental/loadspk.py rename to tools/python/spkimport.py index b715c4cd..9357781e 100755 --- a/tools/experimental/loadspk.py +++ b/tools/python/spkimport.py @@ -15,6 +15,7 @@ def __init__(self, filename, debug_output=False): self.filename = filename self.frame_size = struct.calcsize(self.data_format) self.datafile = open(filename, "rb") + # TODO add exception handling # Reader spk file header data = self.datafile.read(self.frame_size) @@ -139,31 +140,32 @@ def compute_linear_receptive_field(self, stim_times, time_window=100e-3, max_neu hist += counts return hist - -# spikes = get_spikes_from_interval(200.0, 220.0) -# sar = np.array(spikes) -# pl.scatter(sar[:,0],sar[:,1]) +def main(): + t_win = 100e-3 + num_neurons = 4096 + nid = 12 + + filename = "/home/zenke/data/sim/rf2.0.e.spk" + spkf = AurynBinarySpikeFile(filename) -t_win = 100e-3 -num_neurons = 4096 -nid = 12 + print "Getting firing times" + t_spikes = spkf.get_spike_times_from_interval(nid, 1000, 2000) -filename = "/home/zenke/data/sim/rf2.0.e.spk" -spkf = AurynBinarySpikeFile(filename) + filenames = ["/home/zenke/data/sim/rf2.0.s.spk", + "/home/zenke/data/sim/rf2.1.s.spk", + "/home/zenke/data/sim/rf2.2.s.spk", + "/home/zenke/data/sim/rf2.3.s.spk" ] + spks = AurynBinarySpikes(filenames) -print "Getting firing times" -t_spikes = spkf.get_spike_times_from_interval(nid, 1000, 2000) -filenames = ["/home/zenke/data/sim/rf2.0.s.spk", - "/home/zenke/data/sim/rf2.1.s.spk", - "/home/zenke/data/sim/rf2.2.s.spk", - "/home/zenke/data/sim/rf2.3.s.spk" ] -spks = AurynBinarySpikes(filenames) + print "Computing RF" + hist = spks.compute_linear_receptive_field(t_spikes, t_win, num_neurons) + pl.imshow(hist.reshape((64,64)), origin='lower') + pl.colorbar() + pl.show() + +if __name__ == "__main__": + main() -print "Computing RF" -hist = spks.compute_linear_receptive_field(t_spikes, t_win, num_neurons) -pl.imshow(hist.reshape((64,64)), origin='lower') -pl.colorbar() -pl.show() From 7517655027cc2be4ead7d083d3d9a64ce46308b3 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 22:35:04 -0700 Subject: [PATCH 433/460] Adds some doc strings --- tools/python/spkimport.py | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/tools/python/spkimport.py b/tools/python/spkimport.py index 9357781e..baf63563 100755 --- a/tools/python/spkimport.py +++ b/tools/python/spkimport.py @@ -5,6 +5,13 @@ class AurynBinarySpikeFile: + ''' + This class gives abstract access to binary Auryn spike raster file (spk). + + Public methods: + get_spikes_from_interval: extracts spikes (tuples of time and neuron id) for a given temporal range. + get_spike_times_from_interval: extracts the spike times of a single unit and a given temporal range. + ''' def __init__(self, filename, debug_output=False): # These params might have to adapted ot different Auryn datatypes and versions self.data_format = "@II" @@ -114,6 +121,9 @@ def get_spike_times_from_interval( self, neuron_id=0, t_start=0, t_stop=1e32 ): return spike_times class AurynBinarySpikes: + ''' + A wrapper class for easy extraction of spikes from multiple spk files from different ranks. + ''' def __init__(self, filenames): self.filenames = filenames self.spike_files = [] @@ -128,14 +138,23 @@ def get_spikes_from_interval( self, t_start, t_stop ): spikes.sort(key=lambda tup: tup[0]) return spikes - def compute_linear_receptive_field(self, stim_times, time_window=100e-3, max_neuron_id=1024): + def time_triggered_histogram(self, trigger_times, time_window=100e-3, max_neuron_id=1024): + ''' + Sums spikes within a given time window which precede given trigger times. + + This function can be used to compute reverese correlations, for instance to + compute a linear receptive field. Note that for that reason the given time + window precedes the trigger time. + + Keyword arguments: + trigger_times -- list of trigger times + time_window -- size of time window to sum over in seconds (default 0.1s) + max_neuron_id -- the number of neurons + ''' hist = np.zeros(max_neuron_id) - for t_spike in stim_times: + for t_spike in trigger_times: spikes = self.get_spikes_from_interval(t_spike-time_window, t_spike) sar = np.array(spikes, dtype=int)[:,1] - #for spk in sar: - # if spk < max_neuron_id: - # hist[spk] += 1 counts = np.bincount(sar, minlength=max_neuron_id) hist += counts return hist @@ -160,7 +179,7 @@ def main(): print "Computing RF" - hist = spks.compute_linear_receptive_field(t_spikes, t_win, num_neurons) + hist = spks.time_triggered_histogram(t_spikes, t_win, num_neurons) pl.imshow(hist.reshape((64,64)), origin='lower') pl.colorbar() pl.show() From 6c70f48b63a68459fc5e1de4f054096b1b704b2c Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 22:45:10 -0700 Subject: [PATCH 434/460] Adds an example --- tools/python/spkimport.py | 42 +++++++++++++++++---------------------- 1 file changed, 18 insertions(+), 24 deletions(-) diff --git a/tools/python/spkimport.py b/tools/python/spkimport.py index baf63563..e31fa539 100755 --- a/tools/python/spkimport.py +++ b/tools/python/spkimport.py @@ -9,7 +9,7 @@ class AurynBinarySpikeFile: This class gives abstract access to binary Auryn spike raster file (spk). Public methods: - get_spikes_from_interval: extracts spikes (tuples of time and neuron id) for a given temporal range. + get_spikes: extracts spikes (tuples of time and neuron id) for a given temporal range. get_spike_times_from_interval: extracts the spike times of a single unit and a given temporal range. ''' def __init__(self, filename, debug_output=False): @@ -84,7 +84,7 @@ def read_frames(self, bufsize): return self.datafile.read(bufsize*self.frame_size) - def get_spikes_from_interval( self, t_start, t_stop ): + def get_spikes( self, t_start=0.0, t_stop=1e32, max_id=1e32 ): idx_start = self.find_frame( t_start, lower=False ) idx_stop = self.find_frame( t_stop, lower=True ) start_pos = idx_start*self.frame_size @@ -96,7 +96,8 @@ def get_spikes_from_interval( self, t_start, t_stop ): spikes = [] for i in xrange(num_elements): at, nid = struct.unpack_from(self.data_format, data, i*self.frame_size) - spikes.append((self.timestep*at, nid)) + if nid Date: Tue, 9 Aug 2016 19:54:20 -0700 Subject: [PATCH 435/460] Moves example file Conflicts: tools/experimental/loadspk.py --- tools/experimental/loadspk.py | 151 ++++++++++++++++++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100755 tools/experimental/loadspk.py diff --git a/tools/experimental/loadspk.py b/tools/experimental/loadspk.py new file mode 100755 index 00000000..ad75d398 --- /dev/null +++ b/tools/experimental/loadspk.py @@ -0,0 +1,151 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +import struct + + +class AurynBinarySpikeFile: + def __init__(self, filename): + self.filename = filename + self.data_format = "@II" + self.frame_size = struct.calcsize(self.data_format) + self.datafile = open(filename, "rb") + + # Reader spk file header + data = self.datafile.read(self.frame_size) + self.header = struct.unpack(self.data_format, data) + self.timestep = 1.0/self.header[0] + version_code = self.header[1]%1000 + self.file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) + print "File version", self.file_version + print "File data struct size", self.frame_size + + # Determine size of file + self.datafile.seek(0,2) + self.filesize = self.datafile.tell() + self.num_frames = self.filesize/self.frame_size-1 + self.datafile.seek(self.frame_size,0) + print "Filesize", self.filesize + print "Number of frames", self.num_frames + + def unpack(self, data): + return struct.unpack(self.data_format, data) + + def get_frame(self,idx): + ''' + Returns decoded contents of a frame with index idx as tuple + ''' + pos = (idx+1)*self.frame_size + self.datafile.seek(pos,0) + data = self.datafile.read(self.frame_size) + frame = self.unpack(data) + return frame + + def find_frame(self, time=0, lower=False): + ''' + Find frame index of given time by bisection. + ''' + idx_lo = 1 + idx_hi = self.num_frames + while idx_lo+1time: + idx_hi = pivot + else: + idx_lo = pivot + if lower: + return idx_lo + else: + return idx_hi + + + def read_frames(self, bufsize): + return self.datafile.read(bufsize*self.frame_size) + + + def get_spikes_from_interval( self, t_start, t_stop ): + idx_start = self.find_frame( t_start, lower=False ) + idx_stop = self.find_frame( t_stop, lower=True ) + start_pos = idx_start*self.frame_size + num_elements = idx_stop-idx_start + + self.datafile.seek(start_pos,0) + data = self.datafile.read(num_elements*self.frame_size) + + spikes = [] + for i in xrange(num_elements): + at, nid = struct.unpack_from(self.data_format, data, i*self.frame_size) + spikes.append((self.timestep*at, nid)) + return spikes + + def get_spike_times_from_interval( self, neuron_id=0, t_start=0, t_stop=1e32 ): + idx_start = self.find_frame( t_start, lower=False ) + idx_stop = self.find_frame( t_stop, lower=True ) + + idx_cur = idx_start + start_pos = idx_start*self.frame_size + self.datafile.seek(start_pos,0) + + bufsize = 2048 + spike_times = [] + while idx_cur < idx_stop: + if idx_stop-idx_cur Date: Tue, 9 Aug 2016 20:12:42 -0700 Subject: [PATCH 436/460] Some small changes --- tools/experimental/loadspk.py | 62 ++++++++++++++++++++++------------- 1 file changed, 39 insertions(+), 23 deletions(-) diff --git a/tools/experimental/loadspk.py b/tools/experimental/loadspk.py index ad75d398..f07564a0 100755 --- a/tools/experimental/loadspk.py +++ b/tools/experimental/loadspk.py @@ -5,9 +5,14 @@ class AurynBinarySpikeFile: - def __init__(self, filename): - self.filename = filename + def __init__(self, filename, debug_output=False): + # These params might have to adapted ot different Auryn datatypes and versions self.data_format = "@II" + self.class_version = (0,8,0) + + self.debug = debug_output + + self.filename = filename self.frame_size = struct.calcsize(self.data_format) self.datafile = open(filename, "rb") @@ -17,16 +22,22 @@ def __init__(self, filename): self.timestep = 1.0/self.header[0] version_code = self.header[1]%1000 self.file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) - print "File version", self.file_version - print "File data struct size", self.frame_size + if self.class_version != self.file_version: + print("Warning! Version mismatch between the decoding tool and the file version.") + print("AurynBinarySpikeFile %s"%str(self.class_version)) + print("Fileversion %s"%str(self.file_version)) # Determine size of file self.datafile.seek(0,2) self.filesize = self.datafile.tell() self.num_frames = self.filesize/self.frame_size-1 self.datafile.seek(self.frame_size,0) - print "Filesize", self.filesize - print "Number of frames", self.num_frames + if self.debug: + print "Filesize", self.filesize + print "Number of frames", self.num_frames + + def __del__(self): + self.datafile.close() def unpack(self, data): return struct.unpack(self.data_format, data) @@ -88,7 +99,7 @@ def get_spike_times_from_interval( self, neuron_id=0, t_start=0, t_stop=1e32 ): start_pos = idx_start*self.frame_size self.datafile.seek(start_pos,0) - bufsize = 2048 + bufsize = 1024*1024 spike_times = [] while idx_cur < idx_stop: if idx_stop-idx_cur Date: Tue, 9 Aug 2016 20:28:36 -0700 Subject: [PATCH 437/460] Faster implementation for RF --- tools/experimental/loadspk.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tools/experimental/loadspk.py b/tools/experimental/loadspk.py index f07564a0..b715c4cd 100755 --- a/tools/experimental/loadspk.py +++ b/tools/experimental/loadspk.py @@ -131,10 +131,12 @@ def compute_linear_receptive_field(self, stim_times, time_window=100e-3, max_neu hist = np.zeros(max_neuron_id) for t_spike in stim_times: spikes = self.get_spikes_from_interval(t_spike-time_window, t_spike) - sar = np.array(spikes)[:,1] - for spk in sar: - if spk < max_neuron_id: - hist[spk] += 1 + sar = np.array(spikes, dtype=int)[:,1] + #for spk in sar: + # if spk < max_neuron_id: + # hist[spk] += 1 + counts = np.bincount(sar, minlength=max_neuron_id) + hist += counts return hist @@ -151,7 +153,7 @@ def compute_linear_receptive_field(self, stim_times, time_window=100e-3, max_neu spkf = AurynBinarySpikeFile(filename) print "Getting firing times" -t_spikes = spkf.get_spike_times_from_interval(nid, 1000, 1200) +t_spikes = spkf.get_spike_times_from_interval(nid, 1000, 2000) filenames = ["/home/zenke/data/sim/rf2.0.s.spk", "/home/zenke/data/sim/rf2.1.s.spk", From 08a86b6e41068eaa47268e8ef414b782946ab973 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 22:24:43 -0700 Subject: [PATCH 438/460] Adds if main to python spk import lib --- .../loadspk.py => python/spkimport.py} | 44 ++++++++++--------- 1 file changed, 23 insertions(+), 21 deletions(-) rename tools/{experimental/loadspk.py => python/spkimport.py} (86%) diff --git a/tools/experimental/loadspk.py b/tools/python/spkimport.py similarity index 86% rename from tools/experimental/loadspk.py rename to tools/python/spkimport.py index b715c4cd..9357781e 100755 --- a/tools/experimental/loadspk.py +++ b/tools/python/spkimport.py @@ -15,6 +15,7 @@ def __init__(self, filename, debug_output=False): self.filename = filename self.frame_size = struct.calcsize(self.data_format) self.datafile = open(filename, "rb") + # TODO add exception handling # Reader spk file header data = self.datafile.read(self.frame_size) @@ -139,31 +140,32 @@ def compute_linear_receptive_field(self, stim_times, time_window=100e-3, max_neu hist += counts return hist - -# spikes = get_spikes_from_interval(200.0, 220.0) -# sar = np.array(spikes) -# pl.scatter(sar[:,0],sar[:,1]) +def main(): + t_win = 100e-3 + num_neurons = 4096 + nid = 12 + + filename = "/home/zenke/data/sim/rf2.0.e.spk" + spkf = AurynBinarySpikeFile(filename) -t_win = 100e-3 -num_neurons = 4096 -nid = 12 + print "Getting firing times" + t_spikes = spkf.get_spike_times_from_interval(nid, 1000, 2000) -filename = "/home/zenke/data/sim/rf2.0.e.spk" -spkf = AurynBinarySpikeFile(filename) + filenames = ["/home/zenke/data/sim/rf2.0.s.spk", + "/home/zenke/data/sim/rf2.1.s.spk", + "/home/zenke/data/sim/rf2.2.s.spk", + "/home/zenke/data/sim/rf2.3.s.spk" ] + spks = AurynBinarySpikes(filenames) -print "Getting firing times" -t_spikes = spkf.get_spike_times_from_interval(nid, 1000, 2000) -filenames = ["/home/zenke/data/sim/rf2.0.s.spk", - "/home/zenke/data/sim/rf2.1.s.spk", - "/home/zenke/data/sim/rf2.2.s.spk", - "/home/zenke/data/sim/rf2.3.s.spk" ] -spks = AurynBinarySpikes(filenames) + print "Computing RF" + hist = spks.compute_linear_receptive_field(t_spikes, t_win, num_neurons) + pl.imshow(hist.reshape((64,64)), origin='lower') + pl.colorbar() + pl.show() + +if __name__ == "__main__": + main() -print "Computing RF" -hist = spks.compute_linear_receptive_field(t_spikes, t_win, num_neurons) -pl.imshow(hist.reshape((64,64)), origin='lower') -pl.colorbar() -pl.show() From 135b03a7e367941487d03f06beb2bac157babd77 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 22:35:04 -0700 Subject: [PATCH 439/460] Adds some doc strings --- tools/python/spkimport.py | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/tools/python/spkimport.py b/tools/python/spkimport.py index 9357781e..baf63563 100755 --- a/tools/python/spkimport.py +++ b/tools/python/spkimport.py @@ -5,6 +5,13 @@ class AurynBinarySpikeFile: + ''' + This class gives abstract access to binary Auryn spike raster file (spk). + + Public methods: + get_spikes_from_interval: extracts spikes (tuples of time and neuron id) for a given temporal range. + get_spike_times_from_interval: extracts the spike times of a single unit and a given temporal range. + ''' def __init__(self, filename, debug_output=False): # These params might have to adapted ot different Auryn datatypes and versions self.data_format = "@II" @@ -114,6 +121,9 @@ def get_spike_times_from_interval( self, neuron_id=0, t_start=0, t_stop=1e32 ): return spike_times class AurynBinarySpikes: + ''' + A wrapper class for easy extraction of spikes from multiple spk files from different ranks. + ''' def __init__(self, filenames): self.filenames = filenames self.spike_files = [] @@ -128,14 +138,23 @@ def get_spikes_from_interval( self, t_start, t_stop ): spikes.sort(key=lambda tup: tup[0]) return spikes - def compute_linear_receptive_field(self, stim_times, time_window=100e-3, max_neuron_id=1024): + def time_triggered_histogram(self, trigger_times, time_window=100e-3, max_neuron_id=1024): + ''' + Sums spikes within a given time window which precede given trigger times. + + This function can be used to compute reverese correlations, for instance to + compute a linear receptive field. Note that for that reason the given time + window precedes the trigger time. + + Keyword arguments: + trigger_times -- list of trigger times + time_window -- size of time window to sum over in seconds (default 0.1s) + max_neuron_id -- the number of neurons + ''' hist = np.zeros(max_neuron_id) - for t_spike in stim_times: + for t_spike in trigger_times: spikes = self.get_spikes_from_interval(t_spike-time_window, t_spike) sar = np.array(spikes, dtype=int)[:,1] - #for spk in sar: - # if spk < max_neuron_id: - # hist[spk] += 1 counts = np.bincount(sar, minlength=max_neuron_id) hist += counts return hist @@ -160,7 +179,7 @@ def main(): print "Computing RF" - hist = spks.compute_linear_receptive_field(t_spikes, t_win, num_neurons) + hist = spks.time_triggered_histogram(t_spikes, t_win, num_neurons) pl.imshow(hist.reshape((64,64)), origin='lower') pl.colorbar() pl.show() From c6e9aedd267e3b76960ec2915b67d79215c1bffa Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Tue, 9 Aug 2016 22:45:10 -0700 Subject: [PATCH 440/460] Adds an example --- tools/python/spkimport.py | 42 +++++++++++++++++---------------------- 1 file changed, 18 insertions(+), 24 deletions(-) diff --git a/tools/python/spkimport.py b/tools/python/spkimport.py index baf63563..e31fa539 100755 --- a/tools/python/spkimport.py +++ b/tools/python/spkimport.py @@ -9,7 +9,7 @@ class AurynBinarySpikeFile: This class gives abstract access to binary Auryn spike raster file (spk). Public methods: - get_spikes_from_interval: extracts spikes (tuples of time and neuron id) for a given temporal range. + get_spikes: extracts spikes (tuples of time and neuron id) for a given temporal range. get_spike_times_from_interval: extracts the spike times of a single unit and a given temporal range. ''' def __init__(self, filename, debug_output=False): @@ -84,7 +84,7 @@ def read_frames(self, bufsize): return self.datafile.read(bufsize*self.frame_size) - def get_spikes_from_interval( self, t_start, t_stop ): + def get_spikes( self, t_start=0.0, t_stop=1e32, max_id=1e32 ): idx_start = self.find_frame( t_start, lower=False ) idx_stop = self.find_frame( t_stop, lower=True ) start_pos = idx_start*self.frame_size @@ -96,7 +96,8 @@ def get_spikes_from_interval( self, t_start, t_stop ): spikes = [] for i in xrange(num_elements): at, nid = struct.unpack_from(self.data_format, data, i*self.frame_size) - spikes.append((self.timestep*at, nid)) + if nid Date: Tue, 9 Aug 2016 23:08:33 -0700 Subject: [PATCH 441/460] Adds readme to python subdir --- tools/python/README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tools/python/README.md diff --git a/tools/python/README.md b/tools/python/README.md new file mode 100644 index 00000000..5c848ddf --- /dev/null +++ b/tools/python/README.md @@ -0,0 +1,4 @@ +# Code to import BinarySpikeMonitor (spk) files + +This experimental code in this directory can be used to import spike raster +files generated with BinarySpikeMonitor into Python. From 7c203a4ce065bd513ca181dbb97eac3dc2cbe74b Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 10:25:24 -0700 Subject: [PATCH 442/460] Moves file --- tools/python/{spkimport.py => auryn_binary_tools.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tools/python/{spkimport.py => auryn_binary_tools.py} (100%) diff --git a/tools/python/spkimport.py b/tools/python/auryn_binary_tools.py similarity index 100% rename from tools/python/spkimport.py rename to tools/python/auryn_binary_tools.py From d83380fd1ddd9dfd13653873f59b7e7e2a33bd4e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 10:25:48 -0700 Subject: [PATCH 443/460] Creates new base class for Auryn binary tools --- tools/python/auryn_binary_tools.py | 139 +++++++++++++++++------------ 1 file changed, 84 insertions(+), 55 deletions(-) diff --git a/tools/python/auryn_binary_tools.py b/tools/python/auryn_binary_tools.py index e31fa539..4c57fc0e 100755 --- a/tools/python/auryn_binary_tools.py +++ b/tools/python/auryn_binary_tools.py @@ -3,50 +3,10 @@ import pylab as pl import struct - -class AurynBinarySpikeFile: +class AurynBinaryFile: ''' - This class gives abstract access to binary Auryn spike raster file (spk). - - Public methods: - get_spikes: extracts spikes (tuples of time and neuron id) for a given temporal range. - get_spike_times_from_interval: extracts the spike times of a single unit and a given temporal range. + This class is the abstract base class to access binary Auryn files. ''' - def __init__(self, filename, debug_output=False): - # These params might have to adapted ot different Auryn datatypes and versions - self.data_format = "@II" - self.class_version = (0,8,0) - - self.debug = debug_output - - self.filename = filename - self.frame_size = struct.calcsize(self.data_format) - self.datafile = open(filename, "rb") - # TODO add exception handling - - # Reader spk file header - data = self.datafile.read(self.frame_size) - self.header = struct.unpack(self.data_format, data) - self.timestep = 1.0/self.header[0] - version_code = self.header[1]%1000 - self.file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) - if self.class_version != self.file_version: - print("Warning! Version mismatch between the decoding tool and the file version.") - print("AurynBinarySpikeFile %s"%str(self.class_version)) - print("Fileversion %s"%str(self.file_version)) - - # Determine size of file - self.datafile.seek(0,2) - self.filesize = self.datafile.tell() - self.num_frames = self.filesize/self.frame_size-1 - self.datafile.seek(self.frame_size,0) - if self.debug: - print "Filesize", self.filesize - print "Number of frames", self.num_frames - - def __del__(self): - self.datafile.close() - def unpack(self, data): return struct.unpack(self.data_format, data) @@ -54,7 +14,7 @@ def get_frame(self,idx): ''' Returns decoded contents of a frame with index idx as tuple ''' - pos = (idx+1)*self.frame_size + pos = idx*self.frame_size self.datafile.seek(pos,0) data = self.datafile.read(self.frame_size) frame = self.unpack(data) @@ -65,7 +25,7 @@ def find_frame(self, time=0, lower=False): Find frame index of given time by bisection. ''' idx_lo = 1 - idx_hi = self.num_frames + idx_hi = self.last_frame while idx_lo+1 Date: Wed, 10 Aug 2016 10:29:29 -0700 Subject: [PATCH 444/460] Imports new version of Python binary tools --- .../{spkimport.py => auryn_binary_tools.py} | 139 +++++++++++------- 1 file changed, 84 insertions(+), 55 deletions(-) rename tools/python/{spkimport.py => auryn_binary_tools.py} (75%) diff --git a/tools/python/spkimport.py b/tools/python/auryn_binary_tools.py similarity index 75% rename from tools/python/spkimport.py rename to tools/python/auryn_binary_tools.py index e31fa539..4c57fc0e 100755 --- a/tools/python/spkimport.py +++ b/tools/python/auryn_binary_tools.py @@ -3,50 +3,10 @@ import pylab as pl import struct - -class AurynBinarySpikeFile: +class AurynBinaryFile: ''' - This class gives abstract access to binary Auryn spike raster file (spk). - - Public methods: - get_spikes: extracts spikes (tuples of time and neuron id) for a given temporal range. - get_spike_times_from_interval: extracts the spike times of a single unit and a given temporal range. + This class is the abstract base class to access binary Auryn files. ''' - def __init__(self, filename, debug_output=False): - # These params might have to adapted ot different Auryn datatypes and versions - self.data_format = "@II" - self.class_version = (0,8,0) - - self.debug = debug_output - - self.filename = filename - self.frame_size = struct.calcsize(self.data_format) - self.datafile = open(filename, "rb") - # TODO add exception handling - - # Reader spk file header - data = self.datafile.read(self.frame_size) - self.header = struct.unpack(self.data_format, data) - self.timestep = 1.0/self.header[0] - version_code = self.header[1]%1000 - self.file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) - if self.class_version != self.file_version: - print("Warning! Version mismatch between the decoding tool and the file version.") - print("AurynBinarySpikeFile %s"%str(self.class_version)) - print("Fileversion %s"%str(self.file_version)) - - # Determine size of file - self.datafile.seek(0,2) - self.filesize = self.datafile.tell() - self.num_frames = self.filesize/self.frame_size-1 - self.datafile.seek(self.frame_size,0) - if self.debug: - print "Filesize", self.filesize - print "Number of frames", self.num_frames - - def __del__(self): - self.datafile.close() - def unpack(self, data): return struct.unpack(self.data_format, data) @@ -54,7 +14,7 @@ def get_frame(self,idx): ''' Returns decoded contents of a frame with index idx as tuple ''' - pos = (idx+1)*self.frame_size + pos = idx*self.frame_size self.datafile.seek(pos,0) data = self.datafile.read(self.frame_size) frame = self.unpack(data) @@ -65,7 +25,7 @@ def find_frame(self, time=0, lower=False): Find frame index of given time by bisection. ''' idx_lo = 1 - idx_hi = self.num_frames + idx_hi = self.last_frame while idx_lo+1 Date: Wed, 10 Aug 2016 11:20:22 -0700 Subject: [PATCH 445/460] Adds examples for Auryn Python toolkit --- tools/python/auryn_binary_tools.py | 4 +-- tools/python/linear_receptive_field.py | 39 ++++++++++++++++++++++++++ tools/python/merged_spike_raster.py | 24 ++++++++++++++++ tools/python/simple_spike_raster.py | 23 +++++++++++++++ 4 files changed, 88 insertions(+), 2 deletions(-) create mode 100755 tools/python/linear_receptive_field.py create mode 100755 tools/python/merged_spike_raster.py create mode 100755 tools/python/simple_spike_raster.py diff --git a/tools/python/auryn_binary_tools.py b/tools/python/auryn_binary_tools.py index 4c57fc0e..a340bf1d 100755 --- a/tools/python/auryn_binary_tools.py +++ b/tools/python/auryn_binary_tools.py @@ -199,8 +199,8 @@ def main(): t_end = 0.3 n_max = 200 - spikecontainer = AurynBinarySpikeView(filenames) - spikes = np.array(spikecontainer.get_spikes(t_start,t_end,max_id=n_max)) + spkfile = AurynBinarySpikeView(filenames) + spikes = np.array(spkfile.get_spikes(t_start,t_end,max_id=n_max)) pl.scatter(spikes[:,0], spikes[:,1]) pl.xlabel("Time [s]") diff --git a/tools/python/linear_receptive_field.py b/tools/python/linear_receptive_field.py new file mode 100755 index 00000000..87a52475 --- /dev/null +++ b/tools/python/linear_receptive_field.py @@ -0,0 +1,39 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +from auryn_binary_tools import * + +# This example assumes that you have run the code from +# https://github.com/fzenke/pub2015orchestrated/ +# using BinarySpikeMonitors (the development branch does that per default) + +datadir = "/home/zenke/data/sim" # Set this to your data path +num_mpi_ranks = 4 + +dim = 64 +n_max = dim**2 +t_bin = 100e-3 +integration_time = 400 +neuron_id = 28 + +outputfile = "%s/rf2.0.e.spk"%datadir +sf = AurynBinarySpikeFile(outputfile) + +stimfiles = ["%s/rf2.%i.s.spk"%(datadir,i) for i in range(num_mpi_ranks)] +sfo = AurynBinarySpikeView(stimfiles) + +start_times = np.arange(6)*500 +for i,t_start in enumerate(start_times): + t_end = t_start+integration_time + print("Analyzing %is..%is"%(t_start,t_end)) + spike_times = np.array(sf.get_spike_times(neuron_id, t_start, t_end)) + hist = sfo.time_triggered_histogram( spike_times, time_offset=-t_bin, time_window=t_bin, max_neuron_id=n_max ) + pl.subplot(2,3,i+1) + pl.title("t=%is"%t_start) + pl.imshow(hist.reshape((dim,dim)), origin='bottom') +pl.show() + + + + + diff --git a/tools/python/merged_spike_raster.py b/tools/python/merged_spike_raster.py new file mode 100755 index 00000000..23a33049 --- /dev/null +++ b/tools/python/merged_spike_raster.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +from auryn_binary_tools import * + +# This code snipped assumes that you have run the example simulation +# sim_coba_binmon with mpirun and default paramters. +# This generates spk output files under /tmp/ + +num_mpi_ranks = 4 +seconds = 0.1 + +filenames = [ "/tmp/coba.%i.e.spk"%i for i in range(num_mpi_ranks) ] + +sf = AurynBinarySpikeView(filenames) +spikes = np.array(sf.get_last(seconds)) + +pl.scatter(spikes[:,0], spikes[:,1]) +pl.xlabel("Time [s]") +pl.ylabel("Neuron ID") +pl.show() + + + diff --git a/tools/python/simple_spike_raster.py b/tools/python/simple_spike_raster.py new file mode 100755 index 00000000..1b60e967 --- /dev/null +++ b/tools/python/simple_spike_raster.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +from auryn_binary_tools import * + +# This code snipped assumes that you have run the example simulation +# sim_coba_binmon with default paramters. +# This generates spk output files under /tmp/ + + +filename = "/tmp/coba.0.e.spk" +seconds = 0.1 + +sf = AurynBinarySpikeFile(filename) +spikes = np.array(sf.get_last(seconds)) + +pl.scatter(spikes[:,0], spikes[:,1]) +pl.xlabel("Time [s]") +pl.ylabel("Neuron ID") +pl.show() + + + From a78f5b6cad3f720af6b544cc53f96cd0bcdbe9c2 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 11:20:22 -0700 Subject: [PATCH 446/460] Adds examples for Auryn Python toolkit --- tools/python/auryn_binary_tools.py | 4 +-- tools/python/linear_receptive_field.py | 39 ++++++++++++++++++++++++++ tools/python/merged_spike_raster.py | 24 ++++++++++++++++ tools/python/simple_spike_raster.py | 23 +++++++++++++++ 4 files changed, 88 insertions(+), 2 deletions(-) create mode 100755 tools/python/linear_receptive_field.py create mode 100755 tools/python/merged_spike_raster.py create mode 100755 tools/python/simple_spike_raster.py diff --git a/tools/python/auryn_binary_tools.py b/tools/python/auryn_binary_tools.py index 4c57fc0e..a340bf1d 100755 --- a/tools/python/auryn_binary_tools.py +++ b/tools/python/auryn_binary_tools.py @@ -199,8 +199,8 @@ def main(): t_end = 0.3 n_max = 200 - spikecontainer = AurynBinarySpikeView(filenames) - spikes = np.array(spikecontainer.get_spikes(t_start,t_end,max_id=n_max)) + spkfile = AurynBinarySpikeView(filenames) + spikes = np.array(spkfile.get_spikes(t_start,t_end,max_id=n_max)) pl.scatter(spikes[:,0], spikes[:,1]) pl.xlabel("Time [s]") diff --git a/tools/python/linear_receptive_field.py b/tools/python/linear_receptive_field.py new file mode 100755 index 00000000..87a52475 --- /dev/null +++ b/tools/python/linear_receptive_field.py @@ -0,0 +1,39 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +from auryn_binary_tools import * + +# This example assumes that you have run the code from +# https://github.com/fzenke/pub2015orchestrated/ +# using BinarySpikeMonitors (the development branch does that per default) + +datadir = "/home/zenke/data/sim" # Set this to your data path +num_mpi_ranks = 4 + +dim = 64 +n_max = dim**2 +t_bin = 100e-3 +integration_time = 400 +neuron_id = 28 + +outputfile = "%s/rf2.0.e.spk"%datadir +sf = AurynBinarySpikeFile(outputfile) + +stimfiles = ["%s/rf2.%i.s.spk"%(datadir,i) for i in range(num_mpi_ranks)] +sfo = AurynBinarySpikeView(stimfiles) + +start_times = np.arange(6)*500 +for i,t_start in enumerate(start_times): + t_end = t_start+integration_time + print("Analyzing %is..%is"%(t_start,t_end)) + spike_times = np.array(sf.get_spike_times(neuron_id, t_start, t_end)) + hist = sfo.time_triggered_histogram( spike_times, time_offset=-t_bin, time_window=t_bin, max_neuron_id=n_max ) + pl.subplot(2,3,i+1) + pl.title("t=%is"%t_start) + pl.imshow(hist.reshape((dim,dim)), origin='bottom') +pl.show() + + + + + diff --git a/tools/python/merged_spike_raster.py b/tools/python/merged_spike_raster.py new file mode 100755 index 00000000..23a33049 --- /dev/null +++ b/tools/python/merged_spike_raster.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +from auryn_binary_tools import * + +# This code snipped assumes that you have run the example simulation +# sim_coba_binmon with mpirun and default paramters. +# This generates spk output files under /tmp/ + +num_mpi_ranks = 4 +seconds = 0.1 + +filenames = [ "/tmp/coba.%i.e.spk"%i for i in range(num_mpi_ranks) ] + +sf = AurynBinarySpikeView(filenames) +spikes = np.array(sf.get_last(seconds)) + +pl.scatter(spikes[:,0], spikes[:,1]) +pl.xlabel("Time [s]") +pl.ylabel("Neuron ID") +pl.show() + + + diff --git a/tools/python/simple_spike_raster.py b/tools/python/simple_spike_raster.py new file mode 100755 index 00000000..1b60e967 --- /dev/null +++ b/tools/python/simple_spike_raster.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +from auryn_binary_tools import * + +# This code snipped assumes that you have run the example simulation +# sim_coba_binmon with default paramters. +# This generates spk output files under /tmp/ + + +filename = "/tmp/coba.0.e.spk" +seconds = 0.1 + +sf = AurynBinarySpikeFile(filename) +spikes = np.array(sf.get_last(seconds)) + +pl.scatter(spikes[:,0], spikes[:,1]) +pl.xlabel("Time [s]") +pl.ylabel("Neuron ID") +pl.show() + + + From b008c6a33c38992920104b98fee6b4f8ab8b2cb3 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 11:27:27 -0700 Subject: [PATCH 447/460] Updates Auryn binary toolkit README.md --- tools/python/README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tools/python/README.md b/tools/python/README.md index 5c848ddf..47a75239 100644 --- a/tools/python/README.md +++ b/tools/python/README.md @@ -1,4 +1,7 @@ -# Code to import BinarySpikeMonitor (spk) files +# Auryn Python toolkit -This experimental code in this directory can be used to import spike raster -files generated with BinarySpikeMonitor into Python. +This code allows you to efficiently import spikes +written by BinarySpikeMonitor into Python. + +See https://www.fzenke.net/auryn/doku.php?id=manual:python_binary_toolkit +for examples. From 87e549908fb51157fffa8546c34ea8fbc6bd8413 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 11:27:27 -0700 Subject: [PATCH 448/460] Updates Auryn binary toolkit README.md Conflicts: tools/python/README.md --- tools/python/README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tools/python/README.md diff --git a/tools/python/README.md b/tools/python/README.md new file mode 100644 index 00000000..47a75239 --- /dev/null +++ b/tools/python/README.md @@ -0,0 +1,7 @@ +# Auryn Python toolkit + +This code allows you to efficiently import spikes +written by BinarySpikeMonitor into Python. + +See https://www.fzenke.net/auryn/doku.php?id=manual:python_binary_toolkit +for examples. From 161cb0b7fc105fe8632e5ab23f1639b694b33d38 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 12:04:45 -0700 Subject: [PATCH 449/460] Adds example to read BinaryStateMonitor file with Python toolkit --- examples/sim_epsp_binmon.cpp | 89 ++++++++++++++++++++++++++++++ tools/python/auryn_binary_tools.py | 58 +++++++++++++++---- tools/python/membrane_potential.py | 23 ++++++++ 3 files changed, 160 insertions(+), 10 deletions(-) create mode 100644 examples/sim_epsp_binmon.cpp create mode 100755 tools/python/membrane_potential.py diff --git a/examples/sim_epsp_binmon.cpp b/examples/sim_epsp_binmon.cpp new file mode 100644 index 00000000..e8275acc --- /dev/null +++ b/examples/sim_epsp_binmon.cpp @@ -0,0 +1,89 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + +#include "auryn.h" + +#define N 1 + +/*!\file + * + * \brief Example simulation which simulates one Poisson input onto a single postsynaptic neuron and records the membrane potential + * */ + +using namespace auryn; + +namespace po = boost::program_options; +namespace mpi = boost::mpi; + +int main(int ac, char* av[]) +{ + + int errcode = 0; + char strbuf [255]; + string simname = "out_epsp"; + string tmpstr; + AurynWeight w = 1.0; + + // BEGIN Global definitions + mpi::environment env(ac, av); + mpi::communicator world; + communicator = &world; + + try + { + sprintf(strbuf, "out_epsp.%d.log", world.rank()); + string logfile = strbuf; + logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + } + catch ( AurynOpenFileException excpt ) + { + std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; + env.abort(1); + } + + sys = new System(&world); + sys->set_simulation_name(simname); + // END Global definitions + + // define input group + PoissonGroup * poisson = new PoissonGroup(N,1.); + + // define receiving group + IFGroup * neuron = new IFGroup(1); + + // define connection + IdentityConnection * con = new IdentityConnection(poisson,neuron,w,GLUT); + + // define monitors + BinaryStateMonitor * stmon = new BinaryStateMonitor( neuron, 0, "mem", sys->fn("bmem"), 1e-3 ); + BinaryStateMonitor * amon = new BinaryStateMonitor( neuron, 0, "g_ampa", sys->fn("bampa") ); + BinaryStateMonitor * nmon = new BinaryStateMonitor( neuron, 0, "g_nmda", sys->fn("bnmda") ); + + // run simulation + logger->msg("Running ...",PROGRESS); + sys->run(10); + + logger->msg("Freeing ...",PROGRESS,true); + delete sys; + + if (errcode) + env.abort(errcode); + return errcode; +} diff --git a/tools/python/auryn_binary_tools.py b/tools/python/auryn_binary_tools.py index a340bf1d..a01ffc92 100755 --- a/tools/python/auryn_binary_tools.py +++ b/tools/python/auryn_binary_tools.py @@ -3,6 +3,9 @@ import pylab as pl import struct + +current_version = (0,8,0) + class AurynBinaryFile: ''' This class is the abstract base class to access binary Auryn files. @@ -42,12 +45,18 @@ def find_frame(self, time=0, lower=False): def read_frames(self, bufsize): return self.datafile.read(bufsize*self.frame_size) - def init_file_info(self): + def open_file(self): + + # TODO add exception handling + self.frame_size = struct.calcsize(self.data_format) + self.datafile = open(self.filename, "rb") + # Reader spk file header data = self.datafile.read(self.frame_size) self.header = struct.unpack(self.data_format, data) self.timestep = 1.0/self.header[0] - version_code = self.header[1]%1000 + version_code = int(self.header[1])%1000 + # TODO add header signature checks self.file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) if self.class_version != self.file_version: print("Warning! Version mismatch between the decoding tool and the file version.") @@ -70,6 +79,41 @@ def init_file_info(self): at,val = self.get_frame(self.last_frame) self.t_max = at*self.timestep +class AurynBinaryStateFile(AurynBinaryFile): + ''' + This class gives abstract access to binary Auryn state monitor file. + + Public methods: + get_data: extracts time series data from the specified interval + ''' + def __init__(self, filename, debug_output=False): + # These params might have to adapted ot different Auryn datatypes and versions + self.data_format = "@If" + self.class_version = current_version + + self.debug = debug_output + self.filename = filename + self.open_file() + + def __del__(self): + self.datafile.close() + + def get_data(self, t_start=0.0, t_stop=1e32): + ''' Returns timeseries of state for given temporal interval''' + idx_start = self.find_frame( t_start, lower=False ) + idx_stop = self.find_frame( t_stop, lower=True ) + start_pos = idx_start*self.frame_size + num_elements = idx_stop-idx_start + + self.datafile.seek(start_pos,0) + raw_data = self.datafile.read(num_elements*self.frame_size) + + data = [] + for i in xrange(num_elements): + at, val = struct.unpack_from(self.data_format, raw_data, i*self.frame_size) + data.append((self.timestep*at, val)) + return data + class AurynBinarySpikeFile(AurynBinaryFile): ''' @@ -82,17 +126,11 @@ class AurynBinarySpikeFile(AurynBinaryFile): def __init__(self, filename, debug_output=False): # These params might have to adapted ot different Auryn datatypes and versions self.data_format = "@II" - self.class_version = (0,8,0) + self.class_version = current_version self.debug = debug_output self.filename = filename - - self.frame_size = struct.calcsize(self.data_format) - self.datafile = open(filename, "rb") - # TODO add exception handling - - self.init_file_info() - + self.open_file() def __del__(self): self.datafile.close() diff --git a/tools/python/membrane_potential.py b/tools/python/membrane_potential.py new file mode 100755 index 00000000..1f5c5fc5 --- /dev/null +++ b/tools/python/membrane_potential.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +from auryn_binary_tools import * + +# This code snipped assumes that you have run the example simulation +# sim_epsp_binmon with default paramters and adjusted the below +# filename to its output. + +filename = "../../build/release/examples/out_epsp.0.bmem" +t_from=0.2 +t_to =2.5 + +sf = AurynBinaryStateFile(filename) +spikes = np.array(sf.get_data(t_from, t_to)) + +pl.plot(spikes[:,0], spikes[:,1]) +pl.xlabel("Time [s]") +pl.ylabel("Membrane potential [V]") +pl.show() + + + From 7021e4c75d0de970c6256dfb41cf6e8aad3ff640 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 12:05:57 -0700 Subject: [PATCH 450/460] Change header tag for StateMonitor --- src/mk_version_info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh index f2d23a37..efbe8990 100755 --- a/src/mk_version_info.sh +++ b/src/mk_version_info.sh @@ -28,7 +28,7 @@ namespace auryn { int AurynVersion::subversion = $AURYNSUBVERSION; int AurynVersion::revision_number = $AURYNREVISIONNUMBER; NeuronID AurynVersion::tag_binary_spike_monitor = 287960000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinarySpikeMonitor files - AurynState AurynVersion::tag_binary_state_monitor = 287961000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files + AurynState AurynVersion::tag_binary_state_monitor = 61000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files std::string AurynVersion::revision_suffix = "$AURYNREVISIONSUFFIXANDHASH"; std::string AurynVersion::git_describe = "$GITDESCRIBE"; From e6748ef2136bd668ab5581c731359be0972b9f42 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 12:04:45 -0700 Subject: [PATCH 451/460] Adds example to read BinaryStateMonitor file with Python toolkit --- examples/sim_epsp_binmon.cpp | 89 ++++++++++++++++++++++++++++++ tools/python/auryn_binary_tools.py | 58 +++++++++++++++---- tools/python/membrane_potential.py | 23 ++++++++ 3 files changed, 160 insertions(+), 10 deletions(-) create mode 100644 examples/sim_epsp_binmon.cpp create mode 100755 tools/python/membrane_potential.py diff --git a/examples/sim_epsp_binmon.cpp b/examples/sim_epsp_binmon.cpp new file mode 100644 index 00000000..e8275acc --- /dev/null +++ b/examples/sim_epsp_binmon.cpp @@ -0,0 +1,89 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + +#include "auryn.h" + +#define N 1 + +/*!\file + * + * \brief Example simulation which simulates one Poisson input onto a single postsynaptic neuron and records the membrane potential + * */ + +using namespace auryn; + +namespace po = boost::program_options; +namespace mpi = boost::mpi; + +int main(int ac, char* av[]) +{ + + int errcode = 0; + char strbuf [255]; + string simname = "out_epsp"; + string tmpstr; + AurynWeight w = 1.0; + + // BEGIN Global definitions + mpi::environment env(ac, av); + mpi::communicator world; + communicator = &world; + + try + { + sprintf(strbuf, "out_epsp.%d.log", world.rank()); + string logfile = strbuf; + logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + } + catch ( AurynOpenFileException excpt ) + { + std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; + env.abort(1); + } + + sys = new System(&world); + sys->set_simulation_name(simname); + // END Global definitions + + // define input group + PoissonGroup * poisson = new PoissonGroup(N,1.); + + // define receiving group + IFGroup * neuron = new IFGroup(1); + + // define connection + IdentityConnection * con = new IdentityConnection(poisson,neuron,w,GLUT); + + // define monitors + BinaryStateMonitor * stmon = new BinaryStateMonitor( neuron, 0, "mem", sys->fn("bmem"), 1e-3 ); + BinaryStateMonitor * amon = new BinaryStateMonitor( neuron, 0, "g_ampa", sys->fn("bampa") ); + BinaryStateMonitor * nmon = new BinaryStateMonitor( neuron, 0, "g_nmda", sys->fn("bnmda") ); + + // run simulation + logger->msg("Running ...",PROGRESS); + sys->run(10); + + logger->msg("Freeing ...",PROGRESS,true); + delete sys; + + if (errcode) + env.abort(errcode); + return errcode; +} diff --git a/tools/python/auryn_binary_tools.py b/tools/python/auryn_binary_tools.py index a340bf1d..a01ffc92 100755 --- a/tools/python/auryn_binary_tools.py +++ b/tools/python/auryn_binary_tools.py @@ -3,6 +3,9 @@ import pylab as pl import struct + +current_version = (0,8,0) + class AurynBinaryFile: ''' This class is the abstract base class to access binary Auryn files. @@ -42,12 +45,18 @@ def find_frame(self, time=0, lower=False): def read_frames(self, bufsize): return self.datafile.read(bufsize*self.frame_size) - def init_file_info(self): + def open_file(self): + + # TODO add exception handling + self.frame_size = struct.calcsize(self.data_format) + self.datafile = open(self.filename, "rb") + # Reader spk file header data = self.datafile.read(self.frame_size) self.header = struct.unpack(self.data_format, data) self.timestep = 1.0/self.header[0] - version_code = self.header[1]%1000 + version_code = int(self.header[1])%1000 + # TODO add header signature checks self.file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) if self.class_version != self.file_version: print("Warning! Version mismatch between the decoding tool and the file version.") @@ -70,6 +79,41 @@ def init_file_info(self): at,val = self.get_frame(self.last_frame) self.t_max = at*self.timestep +class AurynBinaryStateFile(AurynBinaryFile): + ''' + This class gives abstract access to binary Auryn state monitor file. + + Public methods: + get_data: extracts time series data from the specified interval + ''' + def __init__(self, filename, debug_output=False): + # These params might have to adapted ot different Auryn datatypes and versions + self.data_format = "@If" + self.class_version = current_version + + self.debug = debug_output + self.filename = filename + self.open_file() + + def __del__(self): + self.datafile.close() + + def get_data(self, t_start=0.0, t_stop=1e32): + ''' Returns timeseries of state for given temporal interval''' + idx_start = self.find_frame( t_start, lower=False ) + idx_stop = self.find_frame( t_stop, lower=True ) + start_pos = idx_start*self.frame_size + num_elements = idx_stop-idx_start + + self.datafile.seek(start_pos,0) + raw_data = self.datafile.read(num_elements*self.frame_size) + + data = [] + for i in xrange(num_elements): + at, val = struct.unpack_from(self.data_format, raw_data, i*self.frame_size) + data.append((self.timestep*at, val)) + return data + class AurynBinarySpikeFile(AurynBinaryFile): ''' @@ -82,17 +126,11 @@ class AurynBinarySpikeFile(AurynBinaryFile): def __init__(self, filename, debug_output=False): # These params might have to adapted ot different Auryn datatypes and versions self.data_format = "@II" - self.class_version = (0,8,0) + self.class_version = current_version self.debug = debug_output self.filename = filename - - self.frame_size = struct.calcsize(self.data_format) - self.datafile = open(filename, "rb") - # TODO add exception handling - - self.init_file_info() - + self.open_file() def __del__(self): self.datafile.close() diff --git a/tools/python/membrane_potential.py b/tools/python/membrane_potential.py new file mode 100755 index 00000000..1f5c5fc5 --- /dev/null +++ b/tools/python/membrane_potential.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +from auryn_binary_tools import * + +# This code snipped assumes that you have run the example simulation +# sim_epsp_binmon with default paramters and adjusted the below +# filename to its output. + +filename = "../../build/release/examples/out_epsp.0.bmem" +t_from=0.2 +t_to =2.5 + +sf = AurynBinaryStateFile(filename) +spikes = np.array(sf.get_data(t_from, t_to)) + +pl.plot(spikes[:,0], spikes[:,1]) +pl.xlabel("Time [s]") +pl.ylabel("Membrane potential [V]") +pl.show() + + + From bb1f0804c7448299bf1f3047199a36a846e89685 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 12:05:57 -0700 Subject: [PATCH 452/460] Change header tag for StateMonitor --- src/mk_version_info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh index f2d23a37..efbe8990 100755 --- a/src/mk_version_info.sh +++ b/src/mk_version_info.sh @@ -28,7 +28,7 @@ namespace auryn { int AurynVersion::subversion = $AURYNSUBVERSION; int AurynVersion::revision_number = $AURYNREVISIONNUMBER; NeuronID AurynVersion::tag_binary_spike_monitor = 287960000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinarySpikeMonitor files - AurynState AurynVersion::tag_binary_state_monitor = 287961000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files + AurynState AurynVersion::tag_binary_state_monitor = 61000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files std::string AurynVersion::revision_suffix = "$AURYNREVISIONSUFFIXANDHASH"; std::string AurynVersion::git_describe = "$GITDESCRIBE"; From b87adc1e3c3c08e5bd100bfda09b7325ffb4960f Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 12:04:45 -0700 Subject: [PATCH 453/460] Adds example to read BinaryStateMonitor file with Python toolkit --- examples/sim_epsp_binmon.cpp | 89 ++++++++++++++++++++++++++++++ tools/python/auryn_binary_tools.py | 58 +++++++++++++++---- tools/python/membrane_potential.py | 23 ++++++++ 3 files changed, 160 insertions(+), 10 deletions(-) create mode 100644 examples/sim_epsp_binmon.cpp create mode 100755 tools/python/membrane_potential.py diff --git a/examples/sim_epsp_binmon.cpp b/examples/sim_epsp_binmon.cpp new file mode 100644 index 00000000..e8275acc --- /dev/null +++ b/examples/sim_epsp_binmon.cpp @@ -0,0 +1,89 @@ +/* +* Copyright 2014-2016 Friedemann Zenke +* +* This file is part of Auryn, a simulation package for plastic +* spiking neural networks. +* +* Auryn is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published by +* the Free Software Foundation, either version 3 of the License, or +* (at your option) any later version. +* +* Auryn is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with Auryn. If not, see . +*/ + +#include "auryn.h" + +#define N 1 + +/*!\file + * + * \brief Example simulation which simulates one Poisson input onto a single postsynaptic neuron and records the membrane potential + * */ + +using namespace auryn; + +namespace po = boost::program_options; +namespace mpi = boost::mpi; + +int main(int ac, char* av[]) +{ + + int errcode = 0; + char strbuf [255]; + string simname = "out_epsp"; + string tmpstr; + AurynWeight w = 1.0; + + // BEGIN Global definitions + mpi::environment env(ac, av); + mpi::communicator world; + communicator = &world; + + try + { + sprintf(strbuf, "out_epsp.%d.log", world.rank()); + string logfile = strbuf; + logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); + } + catch ( AurynOpenFileException excpt ) + { + std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; + env.abort(1); + } + + sys = new System(&world); + sys->set_simulation_name(simname); + // END Global definitions + + // define input group + PoissonGroup * poisson = new PoissonGroup(N,1.); + + // define receiving group + IFGroup * neuron = new IFGroup(1); + + // define connection + IdentityConnection * con = new IdentityConnection(poisson,neuron,w,GLUT); + + // define monitors + BinaryStateMonitor * stmon = new BinaryStateMonitor( neuron, 0, "mem", sys->fn("bmem"), 1e-3 ); + BinaryStateMonitor * amon = new BinaryStateMonitor( neuron, 0, "g_ampa", sys->fn("bampa") ); + BinaryStateMonitor * nmon = new BinaryStateMonitor( neuron, 0, "g_nmda", sys->fn("bnmda") ); + + // run simulation + logger->msg("Running ...",PROGRESS); + sys->run(10); + + logger->msg("Freeing ...",PROGRESS,true); + delete sys; + + if (errcode) + env.abort(errcode); + return errcode; +} diff --git a/tools/python/auryn_binary_tools.py b/tools/python/auryn_binary_tools.py index a340bf1d..a01ffc92 100755 --- a/tools/python/auryn_binary_tools.py +++ b/tools/python/auryn_binary_tools.py @@ -3,6 +3,9 @@ import pylab as pl import struct + +current_version = (0,8,0) + class AurynBinaryFile: ''' This class is the abstract base class to access binary Auryn files. @@ -42,12 +45,18 @@ def find_frame(self, time=0, lower=False): def read_frames(self, bufsize): return self.datafile.read(bufsize*self.frame_size) - def init_file_info(self): + def open_file(self): + + # TODO add exception handling + self.frame_size = struct.calcsize(self.data_format) + self.datafile = open(self.filename, "rb") + # Reader spk file header data = self.datafile.read(self.frame_size) self.header = struct.unpack(self.data_format, data) self.timestep = 1.0/self.header[0] - version_code = self.header[1]%1000 + version_code = int(self.header[1])%1000 + # TODO add header signature checks self.file_version = (version_code%10, (version_code%100)/10, (version_code%1000)/100) if self.class_version != self.file_version: print("Warning! Version mismatch between the decoding tool and the file version.") @@ -70,6 +79,41 @@ def init_file_info(self): at,val = self.get_frame(self.last_frame) self.t_max = at*self.timestep +class AurynBinaryStateFile(AurynBinaryFile): + ''' + This class gives abstract access to binary Auryn state monitor file. + + Public methods: + get_data: extracts time series data from the specified interval + ''' + def __init__(self, filename, debug_output=False): + # These params might have to adapted ot different Auryn datatypes and versions + self.data_format = "@If" + self.class_version = current_version + + self.debug = debug_output + self.filename = filename + self.open_file() + + def __del__(self): + self.datafile.close() + + def get_data(self, t_start=0.0, t_stop=1e32): + ''' Returns timeseries of state for given temporal interval''' + idx_start = self.find_frame( t_start, lower=False ) + idx_stop = self.find_frame( t_stop, lower=True ) + start_pos = idx_start*self.frame_size + num_elements = idx_stop-idx_start + + self.datafile.seek(start_pos,0) + raw_data = self.datafile.read(num_elements*self.frame_size) + + data = [] + for i in xrange(num_elements): + at, val = struct.unpack_from(self.data_format, raw_data, i*self.frame_size) + data.append((self.timestep*at, val)) + return data + class AurynBinarySpikeFile(AurynBinaryFile): ''' @@ -82,17 +126,11 @@ class AurynBinarySpikeFile(AurynBinaryFile): def __init__(self, filename, debug_output=False): # These params might have to adapted ot different Auryn datatypes and versions self.data_format = "@II" - self.class_version = (0,8,0) + self.class_version = current_version self.debug = debug_output self.filename = filename - - self.frame_size = struct.calcsize(self.data_format) - self.datafile = open(filename, "rb") - # TODO add exception handling - - self.init_file_info() - + self.open_file() def __del__(self): self.datafile.close() diff --git a/tools/python/membrane_potential.py b/tools/python/membrane_potential.py new file mode 100755 index 00000000..1f5c5fc5 --- /dev/null +++ b/tools/python/membrane_potential.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +import numpy as np +import pylab as pl +from auryn_binary_tools import * + +# This code snipped assumes that you have run the example simulation +# sim_epsp_binmon with default paramters and adjusted the below +# filename to its output. + +filename = "../../build/release/examples/out_epsp.0.bmem" +t_from=0.2 +t_to =2.5 + +sf = AurynBinaryStateFile(filename) +spikes = np.array(sf.get_data(t_from, t_to)) + +pl.plot(spikes[:,0], spikes[:,1]) +pl.xlabel("Time [s]") +pl.ylabel("Membrane potential [V]") +pl.show() + + + From ded8c5893de281f7835d0c7fbef7959c5e3cfc44 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 12:05:57 -0700 Subject: [PATCH 454/460] Change header tag for StateMonitor --- src/mk_version_info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mk_version_info.sh b/src/mk_version_info.sh index 365b6c29..73060541 100755 --- a/src/mk_version_info.sh +++ b/src/mk_version_info.sh @@ -26,7 +26,7 @@ namespace auryn { int AurynVersion::subversion = $AURYNSUBVERSION; int AurynVersion::revision_number = $AURYNREVISIONNUMBER; NeuronID AurynVersion::tag_binary_spike_monitor = 287960000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinarySpikeMonitor files - AurynState AurynVersion::tag_binary_state_monitor = 287961000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files + AurynState AurynVersion::tag_binary_state_monitor = 61000+100*$AURYNVERSION+10*$AURYNSUBVERSION+1*$AURYNREVISIONNUMBER; //!< file signature for BinaryStateMonitor files std::string AurynVersion::revision_suffix = "$AURYNREVISIONSUFFIXANDHASH"; std::string AurynVersion::git_describe = "$GITDESCRIBE"; From 146b2b06c6e5812572deca4dfe9c4e71587e576e Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 12:15:39 -0700 Subject: [PATCH 455/460] Fixes typo --- tools/python/membrane_potential.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/membrane_potential.py b/tools/python/membrane_potential.py index 1f5c5fc5..ee46bff3 100755 --- a/tools/python/membrane_potential.py +++ b/tools/python/membrane_potential.py @@ -4,7 +4,7 @@ from auryn_binary_tools import * # This code snipped assumes that you have run the example simulation -# sim_epsp_binmon with default paramters and adjusted the below +# sim_epsp_binmon with default parameters and adjusted the below # filename to its output. filename = "../../build/release/examples/out_epsp.0.bmem" From 81bd9398553de6b96aed605cc13f607d9cbbc7a5 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 12:24:07 -0700 Subject: [PATCH 456/460] Fixes typo --- tools/python/membrane_potential.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python/membrane_potential.py b/tools/python/membrane_potential.py index ee46bff3..fe89ffb6 100755 --- a/tools/python/membrane_potential.py +++ b/tools/python/membrane_potential.py @@ -12,9 +12,9 @@ t_to =2.5 sf = AurynBinaryStateFile(filename) -spikes = np.array(sf.get_data(t_from, t_to)) +mem = np.array(sf.get_data(t_from, t_to)) -pl.plot(spikes[:,0], spikes[:,1]) +pl.plot(mem[:,0], mem[:,1]) pl.xlabel("Time [s]") pl.ylabel("Membrane potential [V]") pl.show() From ebdd21bf7dabe7b071d23baf423f81593282cbf2 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 16:02:49 -0700 Subject: [PATCH 457/460] Renames global variable communicator to mpicommunicator --- examples/sim_background.cpp | 2 +- examples/sim_bg_lowpass.cpp | 2 +- examples/sim_bg_scaling.cpp | 2 +- examples/sim_bg_static.cpp | 2 +- examples/sim_brunel2k.cpp | 2 +- examples/sim_brunel2k_pl.cpp | 2 +- examples/sim_coba_benchmark.cpp | 2 +- examples/sim_coba_binmon.cpp | 2 +- examples/sim_current_steps.cpp | 2 +- examples/sim_current_stim.cpp | 2 +- examples/sim_dense.cpp | 2 +- examples/sim_epsp.cpp | 22 +++----------------- examples/sim_epsp_binmon.cpp | 2 +- examples/sim_epsp_stp.cpp | 2 +- examples/sim_isp_big.cpp | 2 +- examples/sim_isp_orig.cpp | 2 +- examples/sim_poisson.cpp | 2 +- examples/sim_step_current.cpp | 2 +- src/CorrelatedPoissonGroup.cpp | 4 ++-- src/NeuronGroup.cpp | 4 ++-- src/NormalStimulator.cpp | 2 +- src/PoissonGroup.cpp | 4 ++-- src/PoissonStimulator.cpp | 2 +- src/ProfilePoissonGroup.cpp | 4 ++-- src/SparseConnection.cpp | 4 ++-- src/SpikeTimingStimGroup.cpp | 1 + src/SpikingGroup.cpp | 36 ++++++++++++++++---------------- src/SpikingGroup.h | 2 +- src/StimulusGroup.cpp | 4 ++-- src/auryn_global.cpp | 5 +++-- src/auryn_global.h | 37 +++++++++++++++++++++++++++++++-- 31 files changed, 92 insertions(+), 73 deletions(-) diff --git a/examples/sim_background.cpp b/examples/sim_background.cpp index 8b2daa9d..fa5b5ff3 100644 --- a/examples/sim_background.cpp +++ b/examples/sim_background.cpp @@ -478,7 +478,7 @@ int main(int ac, char* av[]) // BEGIN Global stuff mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.log", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); std::string logfile = strbuf; diff --git a/examples/sim_bg_lowpass.cpp b/examples/sim_bg_lowpass.cpp index edb5df72..51867b01 100644 --- a/examples/sim_bg_lowpass.cpp +++ b/examples/sim_bg_lowpass.cpp @@ -482,7 +482,7 @@ int main(int ac, char* av[]) // BEGIN Global stuff mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.log", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); std::string logfile = strbuf; diff --git a/examples/sim_bg_scaling.cpp b/examples/sim_bg_scaling.cpp index 041a5441..0f7f4251 100644 --- a/examples/sim_bg_scaling.cpp +++ b/examples/sim_bg_scaling.cpp @@ -254,7 +254,7 @@ int main(int ac, char* av[]) // BEGIN Global stuff mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.log", dir.c_str(), file_prefix, beta_scaling, tau_hom, label.c_str(), world.rank()); string logfile = strbuf; diff --git a/examples/sim_bg_static.cpp b/examples/sim_bg_static.cpp index b80bcf43..a3016c10 100644 --- a/examples/sim_bg_static.cpp +++ b/examples/sim_bg_static.cpp @@ -245,7 +245,7 @@ int main(int ac, char* av[]) // BEGIN Global init mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; sprintf(strbuf, "%s/bg_static.%d.log", dir.c_str(), world.rank()); string logfile = strbuf; diff --git a/examples/sim_brunel2k.cpp b/examples/sim_brunel2k.cpp index 675c968d..5971e9db 100644 --- a/examples/sim_brunel2k.cpp +++ b/examples/sim_brunel2k.cpp @@ -134,7 +134,7 @@ int main(int ac,char *av[]) { // BEGIN Auryn init mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; oss << dir << "/brunel." << world.rank() << "."; std::string outputfile = oss.str(); diff --git a/examples/sim_brunel2k_pl.cpp b/examples/sim_brunel2k_pl.cpp index f7a47539..f6a0cd98 100644 --- a/examples/sim_brunel2k_pl.cpp +++ b/examples/sim_brunel2k_pl.cpp @@ -143,7 +143,7 @@ int main(int ac,char *av[]) { // BEGIN Auryn init mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; oss << dir << "/brunel." << world.rank() << "."; string outputfile = oss.str(); diff --git a/examples/sim_coba_benchmark.cpp b/examples/sim_coba_benchmark.cpp index 3f870208..8e4efa06 100644 --- a/examples/sim_coba_benchmark.cpp +++ b/examples/sim_coba_benchmark.cpp @@ -116,7 +116,7 @@ int main(int ac,char *av[]) { // BEGIN Global stuff mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; oss << dir << "/coba." << world.rank() << "."; string outputfile = oss.str(); diff --git a/examples/sim_coba_binmon.cpp b/examples/sim_coba_binmon.cpp index 0a65f094..c49d0d32 100644 --- a/examples/sim_coba_binmon.cpp +++ b/examples/sim_coba_binmon.cpp @@ -119,7 +119,7 @@ int main(int ac,char *av[]) { // BEGIN Global stuff mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; oss << dir << "/coba." << world.rank() << "."; string outputfile = oss.str(); diff --git a/examples/sim_current_steps.cpp b/examples/sim_current_steps.cpp index 20f104d6..ffba1cab 100644 --- a/examples/sim_current_steps.cpp +++ b/examples/sim_current_steps.cpp @@ -44,7 +44,7 @@ int main(int ac, char* av[]) // BEGIN Global definitions mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; try { diff --git a/examples/sim_current_stim.cpp b/examples/sim_current_stim.cpp index 14ab11f6..5056f0b8 100644 --- a/examples/sim_current_stim.cpp +++ b/examples/sim_current_stim.cpp @@ -44,7 +44,7 @@ int main(int ac, char* av[]) // BEGIN Global definitions mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; try { diff --git a/examples/sim_dense.cpp b/examples/sim_dense.cpp index 263f7f50..71c7a5ed 100644 --- a/examples/sim_dense.cpp +++ b/examples/sim_dense.cpp @@ -101,7 +101,7 @@ int main(int ac,char *av[]) { // BEGIN Global definitions mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; std::stringstream oss; oss << dir << "/" << simname << "." << world.rank() << "."; diff --git a/examples/sim_epsp.cpp b/examples/sim_epsp.cpp index 98c04231..b7c2cbb5 100644 --- a/examples/sim_epsp.cpp +++ b/examples/sim_epsp.cpp @@ -36,29 +36,13 @@ int main(int ac, char* av[]) { int errcode = 0; - char strbuf [255]; string simname = "out_epsp"; + string logfile = simname; string tmpstr; AurynWeight w = 1.0; // BEGIN Global definitions - mpi::environment env(ac, av); - mpi::communicator world; - communicator = &world; - - try - { - sprintf(strbuf, "out_epsp.%d.log", world.rank()); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - } - catch ( AurynOpenFileException excpt ) - { - std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; - env.abort(1); - } - - sys = new System(&world); + auryn_init( ac, av ); sys->set_simulation_name(simname); // END Global definitions @@ -85,6 +69,6 @@ int main(int ac, char* av[]) delete sys; if (errcode) - env.abort(errcode); + mpienv->abort(errcode); return errcode; } diff --git a/examples/sim_epsp_binmon.cpp b/examples/sim_epsp_binmon.cpp index e8275acc..2f3881a8 100644 --- a/examples/sim_epsp_binmon.cpp +++ b/examples/sim_epsp_binmon.cpp @@ -44,7 +44,7 @@ int main(int ac, char* av[]) // BEGIN Global definitions mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; try { diff --git a/examples/sim_epsp_stp.cpp b/examples/sim_epsp_stp.cpp index 1f9d2528..3a3e2fe6 100644 --- a/examples/sim_epsp_stp.cpp +++ b/examples/sim_epsp_stp.cpp @@ -48,7 +48,7 @@ int main(int ac, char* av[]) // BEGIN Global definitions mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; sprintf(strbuf, "out_epsp_stp.%d.log", world.rank()); string logfile = strbuf; diff --git a/examples/sim_isp_big.cpp b/examples/sim_isp_big.cpp index 5fa28c3c..0353514f 100644 --- a/examples/sim_isp_big.cpp +++ b/examples/sim_isp_big.cpp @@ -197,7 +197,7 @@ int main(int ac, char* av[]) // BEGIN Global stuff mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; std::stringstream oss; oss << dir << "/" << simname << "." << world.rank(); diff --git a/examples/sim_isp_orig.cpp b/examples/sim_isp_orig.cpp index c8bdb277..ca9f4613 100644 --- a/examples/sim_isp_orig.cpp +++ b/examples/sim_isp_orig.cpp @@ -197,7 +197,7 @@ int main(int ac, char* av[]) // BEGIN Global definitions mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; netstatfile = outputfile; std::stringstream oss; diff --git a/examples/sim_poisson.cpp b/examples/sim_poisson.cpp index d025b6ba..85df7f26 100644 --- a/examples/sim_poisson.cpp +++ b/examples/sim_poisson.cpp @@ -103,7 +103,7 @@ int main(int ac, char* av[]) // BEGIN Global stuff mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; try { diff --git a/examples/sim_step_current.cpp b/examples/sim_step_current.cpp index 619b544d..f25d40b6 100644 --- a/examples/sim_step_current.cpp +++ b/examples/sim_step_current.cpp @@ -44,7 +44,7 @@ int main(int ac, char* av[]) // BEGIN Global definitions mpi::environment env(ac, av); mpi::communicator world; - communicator = &world; + mpicommunicator = &world; try { diff --git a/src/CorrelatedPoissonGroup.cpp b/src/CorrelatedPoissonGroup.cpp index 0637e91a..a9922a56 100644 --- a/src/CorrelatedPoissonGroup.cpp +++ b/src/CorrelatedPoissonGroup.cpp @@ -68,7 +68,7 @@ void CorrelatedPoissonGroup::init(AurynDouble rate, NeuronID gsize, AurynDouble dist = new boost::uniform_01<> (); die = new boost::variate_generator > ( gen, *dist ); - seed(auryn::communicator->rank()); // seeding problem + seed(sys->mpi_rank()); // seeding problem x = new NeuronID [ngroups]; for ( int i = 0 ; i < ngroups ; ++i ) { @@ -77,7 +77,7 @@ void CorrelatedPoissonGroup::init(AurynDouble rate, NeuronID gsize, AurynDouble } oss.str(""); - oss << "CorrelatedPoissonGroup:: Seeding with " << auryn::communicator->rank(); + oss << "CorrelatedPoissonGroup:: Seeding with " << sys->mpi_rank(); auryn::logger->msg(oss.str(),NOTIFICATION); } } diff --git a/src/NeuronGroup.cpp b/src/NeuronGroup.cpp index d878a72f..dea7f283 100644 --- a/src/NeuronGroup.cpp +++ b/src/NeuronGroup.cpp @@ -77,7 +77,7 @@ void NeuronGroup::random_mem(AurynState mean, AurynState sigma) void NeuronGroup::random_uniform_mem(AurynState lo, AurynState hi) { - boost::mt19937 ng_gen(42+auryn::communicator->rank()); // produces same series every time + boost::mt19937 ng_gen(42+auryn::mpicommunicator->rank()); // produces same series every time boost::uniform_01 die = boost::uniform_01 (ng_gen); AurynState rv; @@ -91,7 +91,7 @@ void NeuronGroup::random_uniform_mem(AurynState lo, AurynState hi) void NeuronGroup::random_nmda(AurynState mean, AurynState sigma) { - boost::mt19937 ng_gen(53+auryn::communicator->rank()); // produces same series every time + boost::mt19937 ng_gen(53+auryn::mpicommunicator->rank()); // produces same series every time boost::normal_distribution<> dist((double)mean, (double)sigma); boost::variate_generator > die(ng_gen, dist); AurynState rv; diff --git a/src/NormalStimulator.cpp b/src/NormalStimulator.cpp index 5e74b8fd..8b080823 100644 --- a/src/NormalStimulator.cpp +++ b/src/NormalStimulator.cpp @@ -44,7 +44,7 @@ void NormalStimulator::init( NeuronGroup * target, AurynWeight sigma, std::strin oss << std::scientific << "NormalStimulator:: initializing with mean " << get_lambda(); auryn::logger->msg(oss.str(),NOTIFICATION); - seed(61093*auryn::communicator->rank()); + seed(61093*sys->mpi_rank()); dist = new boost::normal_distribution (0.0, get_lambda()); die = new boost::variate_generator > ( gen, *dist ); } diff --git a/src/PoissonGroup.cpp b/src/PoissonGroup.cpp index 581aa060..9eeab364 100644 --- a/src/PoissonGroup.cpp +++ b/src/PoissonGroup.cpp @@ -41,7 +41,7 @@ void PoissonGroup::init(AurynDouble rate) set_rate( rate ); std::stringstream oss; - oss << "PoissonGroup:: Seeding with " << auryn::communicator->rank(); + oss << "PoissonGroup:: Seeding with " << sys->mpi_rank(); auryn::logger->msg(oss.str(),NOTIFICATION); } } @@ -96,6 +96,6 @@ void PoissonGroup::evolve() void PoissonGroup::seed(int s) { - gen.seed(s+auryn::communicator->rank()); // TODO solve seeding problem + gen.seed(s+sys->mpi_rank()); // TODO solve seeding problem } diff --git a/src/PoissonStimulator.cpp b/src/PoissonStimulator.cpp index 5cdec953..5d44baea 100644 --- a/src/PoissonStimulator.cpp +++ b/src/PoissonStimulator.cpp @@ -50,7 +50,7 @@ void PoissonStimulator::init( NeuronGroup * target, AurynFloat rate, AurynWeight oss << std::scientific << "PoissonStimulator:: initializing with mean " << get_lambda(); auryn::logger->msg(oss.str(),NOTIFICATION); - seed(61093*auryn::communicator->rank()); + seed(61093*sys->mpi_rank()); dist = new boost::poisson_distribution (get_lambda()); die = new boost::variate_generator > ( gen, *dist ); } diff --git a/src/ProfilePoissonGroup.cpp b/src/ProfilePoissonGroup.cpp index 825421fa..48c07bd8 100644 --- a/src/ProfilePoissonGroup.cpp +++ b/src/ProfilePoissonGroup.cpp @@ -37,7 +37,7 @@ void ProfilePoissonGroup::init(AurynDouble rate) dist = new boost::uniform_01<> (); die = new boost::variate_generator > ( gen, *dist ); - seed(auryn::communicator->rank()); // seeding problem + seed(sys->mpi_rank()); // seeding problem x = 0; jumpsize = 0; @@ -46,7 +46,7 @@ void ProfilePoissonGroup::init(AurynDouble rate) set_flat_profile(); std::stringstream oss; - oss << "ProfilePoissonGroup:: Seeding with " << auryn::communicator->rank(); + oss << "ProfilePoissonGroup:: Seeding with " << sys->mpi_rank(); auryn::logger->msg(oss.str(),NOTIFICATION); } } diff --git a/src/SparseConnection.cpp b/src/SparseConnection.cpp index b4deb3c1..bf0ad194 100644 --- a/src/SparseConnection.cpp +++ b/src/SparseConnection.cpp @@ -131,7 +131,7 @@ void SparseConnection::init() else skip_diagonal = false; if ( !has_been_seeded ) { // seed it only once - int rseed = 12345*auryn::communicator->rank() ; + int rseed = 12345*sys->mpi_rank() ; seed(rseed); } @@ -342,7 +342,7 @@ void SparseConnection::connect_block_random(AurynWeight weight, int r = 0; // these variables are used to speed up building the matrix if the destination is distributed int s = 1; - r = auryn::communicator->rank()-dst->get_locked_rank(); + r = sys->mpi_rank()-dst->get_locked_rank(); s = dst->get_locked_range(); // correction for "refractoriness" diff --git a/src/SpikeTimingStimGroup.cpp b/src/SpikeTimingStimGroup.cpp index a3069ee3..5afd5cda 100644 --- a/src/SpikeTimingStimGroup.cpp +++ b/src/SpikeTimingStimGroup.cpp @@ -45,6 +45,7 @@ SpikeTimingStimGroup::~SpikeTimingStimGroup() void SpikeTimingStimGroup::init() { refractory_period = 0.0; + scale = 1.0; } void SpikeTimingStimGroup::redraw() diff --git a/src/SpikingGroup.cpp b/src/SpikingGroup.cpp index e6b0abc0..daa79d2a 100644 --- a/src/SpikingGroup.cpp +++ b/src/SpikingGroup.cpp @@ -68,7 +68,7 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) // setting up default values evolve_locally_bool = true; locked_rank = 0; - locked_range = auryn::communicator->size(); + locked_range = auryn::mpicommunicator->size(); rank_size = calculate_rank_size(); // set the rank size double fraction = (double)calculate_rank_size(0)*effective_load_multiplier/DEFAULT_MINDISTRIBUTEDSIZE; @@ -80,7 +80,7 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) lock_range( fraction ); } else { // ROUNDROBIN which is default locked_rank = 0; - locked_range = auryn::communicator->size(); + locked_range = auryn::mpicommunicator->size(); std::stringstream oss; oss << get_log_name() << ":: Size " << get_rank_size() << " (ROUNDROBIN)"; @@ -115,7 +115,7 @@ void SpikingGroup::init(NeuronID n, double loadmultiplier, NeuronID total ) void SpikingGroup::lock_range( double rank_fraction ) { - locked_rank = last_locked_rank%auryn::communicator->size(); // TODO might cause a bug with the block lock stuff + locked_rank = last_locked_rank%auryn::mpicommunicator->size(); // TODO might cause a bug with the block lock stuff // TODO get the loads for the different ranks and try to minimize this @@ -125,9 +125,9 @@ void SpikingGroup::lock_range( double rank_fraction ) auryn::logger->msg(oss.str(),NOTIFICATION); locked_range = 1; } else { // this is for multiple rank ranges - unsigned int free_ranks = auryn::communicator->size()-last_locked_rank; + unsigned int free_ranks = auryn::mpicommunicator->size()-last_locked_rank; - locked_range = rank_fraction*auryn::communicator->size()+0.5; + locked_range = rank_fraction*auryn::mpicommunicator->size()+0.5; if ( locked_range == 0 ) { // needs at least one rank locked_range = 1; } @@ -138,15 +138,15 @@ void SpikingGroup::lock_range( double rank_fraction ) oss << get_log_name() << ":: Not enough free ranks for RANGELOCK. Starting to fill at zero again."; auryn::logger->msg(oss.str(),NOTIFICATION); locked_rank = 0; - free_ranks = auryn::communicator->size(); + free_ranks = auryn::mpicommunicator->size(); // return; } } - unsigned int rank = (unsigned int) auryn::communicator->rank(); + unsigned int rank = (unsigned int) auryn::mpicommunicator->rank(); evolve_locally_bool = ( rank >= locked_rank && rank < (locked_rank+locked_range) ); - last_locked_rank = (locked_rank+locked_range)%auryn::communicator->size(); + last_locked_rank = (locked_rank+locked_range)%auryn::mpicommunicator->size(); rank_size = calculate_rank_size(); // recalculate the rank size // logging @@ -270,7 +270,7 @@ NeuronID SpikingGroup::calculate_rank_size(int rank) if ( rank >= 0 ) comrank = rank; else - comrank = (unsigned int) auryn::communicator->rank(); + comrank = (unsigned int) auryn::mpicommunicator->rank(); if ( comrank >= locked_rank && comrank < (locked_rank+locked_range) ) { if (comrank-locked_rank >= size%locked_range) @@ -309,7 +309,7 @@ AurynDouble SpikingGroup::get_effective_load() NeuronID SpikingGroup::rank2global(NeuronID i) { - return i*locked_range+(auryn::communicator->rank()-locked_rank); + return i*locked_range+(auryn::mpicommunicator->rank()-locked_rank); } bool SpikingGroup::evolve_locally() @@ -499,16 +499,16 @@ std::string SpikingGroup::get_log_name() bool SpikingGroup::localrank(NeuronID i) { #ifdef DEBUG - std::cout << ( (i%locked_range+locked_rank)==auryn::communicator->rank() ) << " " - << ( (int) auryn::communicator->rank() >= locked_rank) << " " - << ( (int) auryn::communicator->rank() >= locked_rank) << " " - << ( (int) auryn::communicator->rank() < (locked_rank+locked_range) ) << " " + std::cout << ( (i%locked_range+locked_rank)==auryn::mpicommunicator->rank() ) << " " + << ( (int) auryn::mpicommunicator->rank() >= locked_rank) << " " + << ( (int) auryn::mpicommunicator->rank() >= locked_rank) << " " + << ( (int) auryn::mpicommunicator->rank() < (locked_rank+locked_range) ) << " " << ( i/locked_range < get_rank_size() ) << std::endl; #endif //DEBUG - bool t = ( (i%locked_range+locked_rank)==auryn::communicator->rank() ) - && (int) auryn::communicator->rank() >= locked_rank - && (int) auryn::communicator->rank() < (locked_rank+locked_range) + bool t = ( (i%locked_range+locked_rank)==auryn::mpicommunicator->rank() ) + && (int) auryn::mpicommunicator->rank() >= locked_rank + && (int) auryn::mpicommunicator->rank() < (locked_rank+locked_range) && i/locked_range < get_rank_size(); return t; } @@ -729,7 +729,7 @@ AurynStateVector * SpikingGroup::find_state_vector(std::string key) void SpikingGroup::randomize_state_vector_gauss(std::string state_vector_name, AurynState mean, AurynState sigma, int seed) { - boost::mt19937 ng_gen(seed+auryn::communicator->rank()); // produces same series every time + boost::mt19937 ng_gen(seed+auryn::mpicommunicator->rank()); // produces same series every time boost::normal_distribution<> dist((double)mean, (double)sigma); boost::variate_generator > die(ng_gen, dist); AurynState rv; diff --git a/src/SpikingGroup.h b/src/SpikingGroup.h index 3c9a6582..30eba83d 100644 --- a/src/SpikingGroup.h +++ b/src/SpikingGroup.h @@ -356,7 +356,7 @@ BOOST_SERIALIZATION_ASSUME_ABSTRACT(SpikingGroup) extern System * sys; extern Logger * logger; - extern mpi::communicator * communicator; + extern mpi::communicator * mpicommunicator; inline NeuronID SpikingGroup::global2rank(NeuronID i) { diff --git a/src/StimulusGroup.cpp b/src/StimulusGroup.cpp index 2ed1315c..4fe95644 100644 --- a/src/StimulusGroup.cpp +++ b/src/StimulusGroup.cpp @@ -54,7 +54,7 @@ void StimulusGroup::init(StimulusGroupModeType stimulusmode, std::string stimfil mean_on_period = 0.2 ; randomintensities = false; - scale = 2.0; // TODO does this need to be initialized at 2 ? + scale = 1.0; // TODO does this need to be initialized at 2 ? curscale = scale; background_during_stimulus = false; @@ -560,7 +560,7 @@ void StimulusGroup::seed(int rndseed) boost::variate_generator > die(order_gen, dist); NeuronID rnd = die(); - for (int i = 0 ; i < auryn::communicator->rank() ; ++i ) { + for (int i = 0 ; i < sys->mpi_rank() ; ++i ) { rnd = die(); } diff --git a/src/auryn_global.cpp b/src/auryn_global.cpp index 64946d5d..d3fd2668 100644 --- a/src/auryn_global.cpp +++ b/src/auryn_global.cpp @@ -27,7 +27,8 @@ namespace auryn { - System * sys; + mpi::communicator * mpicommunicator; + mpi::environment * mpienv; Logger * logger; - mpi::communicator * communicator; + System * sys; } diff --git a/src/auryn_global.h b/src/auryn_global.h index 272d3418..d2369480 100644 --- a/src/auryn_global.h +++ b/src/auryn_global.h @@ -39,8 +39,41 @@ namespace auryn { /*! \brief Global pointer to instance of Logger which needs to be initialized in every simulation main program. */ extern Logger * logger; - /*! \brief Global pointer to instance of mpi::communicator which needs to be initialized in every simulation main program. */ - extern mpi::communicator * communicator; + /*! \brief Global pointer to instance of mpi::environment which needs to be initialized in every simulation main program. */ + extern mpi::environment * mpienv; + + /*! \brief Global pointer to instance of mpi::mpicommunicator which needs to be initialized in every simulation main program. */ + extern mpi::communicator * mpicommunicator; + + /*! Initalizes Auryn simulation environment. */ + inline void auryn_init(int ac, char* av[], string dir=".", string simulation_name="", string logfile_prefix="" ) + { + // init MPI environment + mpienv = new mpi::environment(ac, av); + mpicommunicator = new mpi::communicator(); + + + // Init logger environment + try + { + char strbuf_tmp [255]; + string log_prefix_ = av[0]; + if ( !logfile_prefix.empty() ) log_prefix_ = logfile_prefix; + sprintf(strbuf_tmp, "%s/%s.%d.log", dir.c_str(), log_prefix_.c_str(), mpicommunicator->rank()); + string auryn_simulation_logfile = strbuf_tmp; + logger = new Logger(auryn_simulation_logfile,mpicommunicator->rank(),PROGRESS,EVERYTHING); + } + catch ( AurynOpenFileException excpt ) + { + std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << std::endl; + mpienv->abort(1); + } + + // Init Auryn Kernel + auryn::sys = new System(mpicommunicator); + sys->set_output_dir(dir); + sys->set_simulation_name(simulation_name); + } } #endif /*AURYN_GLOBAL_H__*/ From a459823257c413e8f32d09cb935a720d2244a1c0 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 16:03:02 -0700 Subject: [PATCH 458/460] Adds loglevel setters to Logger --- src/Logger.cpp | 10 ++++++++++ src/Logger.h | 12 ++++++++++++ 2 files changed, 22 insertions(+) diff --git a/src/Logger.cpp b/src/Logger.cpp index 8f12ba4b..94350948 100644 --- a/src/Logger.cpp +++ b/src/Logger.cpp @@ -55,6 +55,16 @@ Logger::~Logger() outfile.close(); } +void Logger::set_console_loglevel(LogMessageType level) +{ + console_out = level; +} + +void Logger::set_logfile_loglevel(LogMessageType level) +{ + file_out = level; +} + void Logger::msg( std::string text, LogMessageType type, bool global, int line, std::string srcfile ) { time_t rawtime; diff --git a/src/Logger.h b/src/Logger.h index b419fb00..20be1d44 100644 --- a/src/Logger.h +++ b/src/Logger.h @@ -70,6 +70,18 @@ class Logger void notification ( std::string text ); void set_rank(int rank); + /*!\brief Sets loglevel for console output + * + * \param level The log level + * */ + void set_console_loglevel(LogMessageType level = PROGRESS); + + /*!\brief Sets loglevel for file output + * + * \param level The log level + * */ + void set_logfile_loglevel(LogMessageType level = NOTIFICATION); + template void parameter(std::string name, T value) { From 191f62a65373c51a943e14c59cdde513166a8ac8 Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 16:24:38 -0700 Subject: [PATCH 459/460] Adapts examples to new API --- examples/sim_background.cpp | 67 +++++++++++++++------------------ examples/sim_bg_lowpass.cpp | 68 +++++++++++++--------------------- examples/sim_current_steps.cpp | 22 ++--------- examples/sim_current_stim.cpp | 20 +--------- examples/sim_dense.cpp | 16 ++------ examples/sim_epsp_binmon.cpp | 20 +--------- examples/sim_epsp_stp.cpp | 13 ++----- examples/sim_isp_big.cpp | 20 +++------- examples/sim_isp_orig.cpp | 20 +++------- examples/tests.sh | 4 ++ 10 files changed, 82 insertions(+), 188 deletions(-) create mode 100755 examples/tests.sh diff --git a/examples/sim_background.cpp b/examples/sim_background.cpp index fa5b5ff3..a907b0fb 100644 --- a/examples/sim_background.cpp +++ b/examples/sim_background.cpp @@ -475,27 +475,18 @@ int main(int ac, char* av[]) double primetime = 3*tau_hom; - // BEGIN Global stuff - mpi::environment env(ac, av); - mpi::communicator world; - mpicommunicator = &world; + sprintf(strbuf, "%s/%s_e%.2et%.2f%s", dir.c_str(), file_prefix, eta, tau_hom, label.c_str()); + std::string logfile_prefix = strbuf; - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.log", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); - std::string logfile = strbuf; + auryn_init(ac, av, dir=".", "", logfile_prefix); - LogMessageType log_level_file = PROGRESS; - if ( verbose ) log_level_file = EVERYTHING; - logger = new Logger(logfile,world.rank(),PROGRESS,log_level_file); + logger->set_logfile_loglevel( PROGRESS ); + if ( verbose ) logger->set_logfile_loglevel( EVERYTHING ); - sys = new System(&world); - // boost::filesystem::path p = av[0]; - // string binaryname = p.stem().string(); - // sys->set_simulation_name(binaryname); - // END Global stuff if (!infilename.empty()) { std::stringstream iss; - iss << infilename << "." << world.rank(); + iss << infilename << "." << sys->mpi_rank(); infilename = iss.str(); } @@ -615,12 +606,12 @@ int main(int ac, char* av[]) logger->msg(msg,PROGRESS,true); if (wmatdump) { - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.weight", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.weight", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); WeightMatrixMonitor * wmatmon = new WeightMatrixMonitor( con_ee, strbuf , wmat_interval ); } if ( !fast ) { - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.syn", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.syn", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); WeightMonitor * wmon = new WeightMonitor( con_ee, strbuf, 10 ); for ( int i = 0 ; i < 5 ; ++i ) { for ( int j = 0 ; j < 5 ; ++j ) { @@ -630,28 +621,28 @@ int main(int ac, char* av[]) } } - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'e'); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'e'); SpikeMonitor * smon_e = new SpikeMonitor( neurons_e, strbuf , 2500); - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'p'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'p'); // SpikeMonitor * smon_p = new SpikeMonitor( poisson, strbuf , 2500); } - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.prate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'e'); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.prate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'e'); PopulationRateMonitor * pmon_e = new PopulationRateMonitor( neurons_e, strbuf, 1.0 ); if ( wall ) { - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.rt", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.rt", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); RealTimeMonitor * rtmon = new RealTimeMonitor( strbuf ); } - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.prate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'i'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.prate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'i'); // PopulationRateMonitor * pmon_i = new PopulationRateMonitor( neurons_i, strbuf, 1.0 ); - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.mem", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'e'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.mem", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'e'); // VoltageMonitor * vmon_e = new VoltageMonitor( neurons_e, 33, strbuf ); - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'i'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'i'); // SpikeMonitor * smon_i = new SpikeMonitor( neurons_i, strbuf , 500); RateChecker * chk = new RateChecker( neurons_e , 0.1 , 20.*kappa , tau_chk); @@ -669,11 +660,11 @@ int main(int ac, char* av[]) oss << "Changing cell input ... "; logger->msg(oss.str(),PROGRESS,true); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.pat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.pat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); PatternMonitor * patmon = new PatternMonitor(neurons_e,strbuf,patfile.c_str(), 10, 1.); PatternStimulator * patstim = new PatternStimulator(neurons_e,currentfile.c_str(),patfile.c_str()); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.scal", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.scal", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); WeightMonitor * wmon_scal = new WeightMonitor( con_ee, 0, 0, strbuf, 1, ELEMENTLIST); wmon_scal->add_to_list( con_ee->get_pre_partners(0) ); wmon_scal->add_to_list( con_ee->get_pre_partners(10) ); @@ -681,7 +672,7 @@ int main(int ac, char* av[]) } // if ( corr ) { - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.pat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'c'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.pat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'c'); // PatternMonitor * pmon_c = new PatternMonitor( neurons_e, strbuf,corr_pat_file.c_str() ); // } @@ -719,7 +710,7 @@ int main(int ac, char* av[]) SparseConnection * con_corr_i = new SparseConnection(corr_e,neurons_i,w*strength,sparseness*plen*psize/ni,GLUT); // set up Weight monitor - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'c'); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'c'); SpikeMonitor * smon_c = new SpikeMonitor( corr_e, strbuf , psize ); } @@ -762,7 +753,7 @@ int main(int ac, char* av[]) // SparseConnection * con_corr_i = new SparseConnection(corr_e,neurons_i,w*strength,sparseness*plen*psize/ni,GLUT); // set up Weight monitor - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'c'); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'c'); SpikeMonitor * smon_c = new SpikeMonitor( corr_e, strbuf , psize ); } @@ -796,7 +787,7 @@ if ( prefile != "" ) { // adding patterns if ( patfile != "" ) { logger->msg("Preparing stimulus ...",PROGRESS,true); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.stim", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.stim", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); StimulusGroup * stimgroup = new StimulusGroup(ne,patfile,strbuf); stimgroup->set_mean_on_period(onperiod); stimgroup->set_mean_off_period(offperiod); @@ -829,33 +820,33 @@ if ( patfile != "" ) { if (!fast) { logger->msg("Saving neurons state ...",PROGRESS,true); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.e.nstate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.e.nstate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); neurons_e->write_to_file(strbuf); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.i.nstate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.i.nstate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); neurons_i->write_to_file(strbuf); logger->msg("Saving weight matrix ...",PROGRESS,true); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); con_ee->write_to_file(strbuf); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.ei.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.ei.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); con_ei->write_to_file(strbuf); for ( int i = 0 ; i < corr_connections.size() ; ++i ) { - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%d.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), i, world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%d.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), i, sys->mpi_rank()); corr_connections[i]->write_to_file(strbuf); } } // save lifetime - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.lifetime", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.lifetime", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); std::ofstream killfile; killfile.open(strbuf); killfile << sys->get_time()-primetime << std::endl; killfile.close(); - if ( world.rank() == 0 ) { + if ( sys->mpi_rank() == 0 ) { logger->msg("Saving elapsed time ..." ,PROGRESS,true); char filenamebuf [255]; sprintf(filenamebuf, "%s/elapsed.dat", dir.c_str()); @@ -869,7 +860,7 @@ if ( patfile != "" ) { delete sys; if (errcode) { - env.abort(errcode); + mpienv->abort(errcode); } return errcode; diff --git a/examples/sim_bg_lowpass.cpp b/examples/sim_bg_lowpass.cpp index 51867b01..32354a7a 100644 --- a/examples/sim_bg_lowpass.cpp +++ b/examples/sim_bg_lowpass.cpp @@ -479,26 +479,10 @@ int main(int ac, char* av[]) double primetime = 3*tau_hom; - // BEGIN Global stuff - mpi::environment env(ac, av); - mpi::communicator world; - mpicommunicator = &world; - - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.log", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); - std::string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - - sys = new System(&world); - // boost::filesystem::path p = av[0]; - // string binaryname = p.stem().string(); - // sys->set_simulation_name(binaryname); - // END Global stuff - - if (!infilename.empty()) { - std::stringstream iss; - iss << infilename << "." << world.rank(); - infilename = iss.str(); - } + sprintf(strbuf, "%s/%s_e%.2et%.2f%s", dir.c_str(), file_prefix, eta, tau_hom, label.c_str()); + std::string logfile_prefix = strbuf; + + auryn_init(ac, av, dir=".", "", logfile_prefix); logger->msg("Setting up neuron groups ...",PROGRESS,true); @@ -606,12 +590,12 @@ int main(int ac, char* av[]) logger->msg(msg,PROGRESS,true); if (wmatdump) { - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.weight", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.weight", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); WeightMatrixMonitor * wmatmon = new WeightMatrixMonitor( con_ee, strbuf , wmat_interval ); } if ( !fast ) { - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.syn", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.syn", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); WeightMonitor * wmon = new WeightMonitor( con_ee, strbuf, 10 ); for ( int i = 0 ; i < 5 ; ++i ) { for ( int j = 0 ; j < 5 ; ++j ) { @@ -620,28 +604,28 @@ int main(int ac, char* av[]) } } - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'e'); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'e'); SpikeMonitor * smon_e = new SpikeMonitor( neurons_e, strbuf , 2500); - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'p'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'p'); // SpikeMonitor * smon_p = new SpikeMonitor( poisson, strbuf , 2500); } - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.prate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'e'); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.prate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'e'); PopulationRateMonitor * pmon_e = new PopulationRateMonitor( neurons_e, strbuf, 1.0 ); if ( wall ) { - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.rt", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.rt", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); RealTimeMonitor * rtmon = new RealTimeMonitor( strbuf ); } - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.prate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'i'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.prate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'i'); // PopulationRateMonitor * pmon_i = new PopulationRateMonitor( neurons_i, strbuf, 1.0 ); - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.mem", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'e'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.mem", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'e'); // VoltageMonitor * vmon_e = new VoltageMonitor( neurons_e, 33, strbuf ); - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'i'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'i'); // SpikeMonitor * smon_i = new SpikeMonitor( neurons_i, strbuf , 500); RateChecker * chk = new RateChecker( neurons_e , 0.1 , 20.*kappa , tau_chk); @@ -653,11 +637,11 @@ int main(int ac, char* av[]) oss << "Changing cell input ... "; logger->msg(oss.str(),PROGRESS,true); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.pat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.pat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); PatternMonitor * patmon = new PatternMonitor(neurons_e,strbuf,patfile.c_str(), 10, 1.); PatternStimulator * patstim = new PatternStimulator(neurons_e,currentfile.c_str(),patfile.c_str()); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.scal", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.scal", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); WeightMonitor * wmon_scal = new WeightMonitor( con_ee, 0, 0, strbuf, 1, ELEMENTLIST); wmon_scal->add_to_list( con_ee->get_pre_partners(0) ); wmon_scal->add_to_list( con_ee->get_pre_partners(10) ); @@ -665,7 +649,7 @@ int main(int ac, char* av[]) } // if ( corr ) { - // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.pat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'c'); + // sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.pat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'c'); // PatternMonitor * pmon_c = new PatternMonitor( neurons_e, strbuf,corr_pat_file.c_str() ); // } @@ -703,7 +687,7 @@ int main(int ac, char* av[]) SparseConnection * con_corr_i = new SparseConnection(corr_e,neurons_i,w*strength,sparseness*plen*psize/ni,GLUT); // set up Weight monitor - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'c'); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'c'); SpikeMonitor * smon_c = new SpikeMonitor( corr_e, strbuf , psize ); } @@ -746,7 +730,7 @@ int main(int ac, char* av[]) // SparseConnection * con_corr_i = new SparseConnection(corr_e,neurons_i,w*strength,sparseness*plen*psize/ni,GLUT); // set up Weight monitor - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank(), 'c'); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%c.ras", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank(), 'c'); SpikeMonitor * smon_c = new SpikeMonitor( corr_e, strbuf , psize ); } @@ -780,7 +764,7 @@ if ( prefile != "" ) { // adding patterns if ( patfile != "" ) { logger->msg("Preparing stimulus ...",PROGRESS,true); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.stim", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.stim", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); StimulusGroup * stimgroup = new StimulusGroup(ne,patfile,strbuf); stimgroup->set_mean_on_period(onperiod); stimgroup->set_mean_off_period(offperiod); @@ -813,27 +797,27 @@ if ( patfile != "" ) { if (!fast) { logger->msg("Saving neurons state ...",PROGRESS,true); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.e.nstate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.e.nstate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); neurons_e->write_to_file(strbuf); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.i.nstate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.i.nstate", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); neurons_i->write_to_file(strbuf); logger->msg("Saving weight matrix ...",PROGRESS,true); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); con_ee->write_to_file(strbuf); - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.ei.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.ei.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); con_ei->write_to_file(strbuf); for ( int i = 0 ; i < corr_connections.size() ; ++i ) { - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%d.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), i, world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.%d.wmat", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), i, sys->mpi_rank()); corr_connections[i]->write_to_file(strbuf); } } // save lifetime - sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.lifetime", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), world.rank()); + sprintf(strbuf, "%s/%s_e%.2et%.2f%s.%d.lifetime", dir.c_str(), file_prefix, eta, tau_hom, label.c_str(), sys->mpi_rank()); std::ofstream killfile; killfile.open(strbuf); killfile << sys->get_time()-primetime << std::endl; @@ -843,7 +827,7 @@ if ( patfile != "" ) { delete sys; if (errcode) { - env.abort(errcode); + mpienv->abort(errcode); } return errcode; diff --git a/examples/sim_current_steps.cpp b/examples/sim_current_steps.cpp index ffba1cab..74527a84 100644 --- a/examples/sim_current_steps.cpp +++ b/examples/sim_current_steps.cpp @@ -41,25 +41,9 @@ int main(int ac, char* av[]) string tmpstr; AurynWeight w = 1.0; - // BEGIN Global definitions - mpi::environment env(ac, av); - mpi::communicator world; - mpicommunicator = &world; - - try - { - sprintf(strbuf, "current_steps.%d.log", world.rank()); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - } - catch ( AurynOpenFileException excpt ) - { - std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; - env.abort(1); - } - sys = new System(&world); - sys->set_simulation_name(simname); + // BEGIN Global definitions + auryn_init( ac, av, ".", simname ); // END Global definitions // define neuron group @@ -103,6 +87,6 @@ int main(int ac, char* av[]) delete sys; if (errcode) - env.abort(errcode); + mpienv->abort(errcode); return errcode; } diff --git a/examples/sim_current_stim.cpp b/examples/sim_current_stim.cpp index 5056f0b8..708c0fae 100644 --- a/examples/sim_current_stim.cpp +++ b/examples/sim_current_stim.cpp @@ -42,23 +42,7 @@ int main(int ac, char* av[]) string tmpstr; // BEGIN Global definitions - mpi::environment env(ac, av); - mpi::communicator world; - mpicommunicator = &world; - - try - { - sprintf(strbuf, "out_current_stim.%d.log", world.rank()); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - } - catch ( AurynOpenFileException excpt ) - { - std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; - env.abort(1); - } - - sys = new System(&world); + auryn_init( ac, av, ".", outputfile ); // END Global definitions IFGroup * neurons = new IFGroup(2); @@ -83,6 +67,6 @@ int main(int ac, char* av[]) delete sys; if (errcode) - env.abort(errcode); + mpienv->abort(errcode); return errcode; } diff --git a/examples/sim_dense.cpp b/examples/sim_dense.cpp index 71c7a5ed..8e11f9a7 100644 --- a/examples/sim_dense.cpp +++ b/examples/sim_dense.cpp @@ -98,22 +98,12 @@ int main(int ac,char *av[]) { std::cerr << "Exception of unknown type!\n"; } - // BEGIN Global definitions - mpi::environment env(ac, av); - mpi::communicator world; - mpicommunicator = &world; + auryn_init(ac, av, dir, simname); std::stringstream oss; - oss << dir << "/" << simname << "." << world.rank() << "."; + oss << dir << "/" << simname << "." << sys->mpi_rank() << "."; string outputfile = oss.str(); - char tmp [255]; - std::stringstream logfile; - logfile << outputfile << "log"; - logger = new Logger(logfile.str(),world.rank()); - - sys = new System(&world); - // END Global definitions logger->msg("Setting up neuron groups ...",PROGRESS,true); @@ -204,7 +194,7 @@ int main(int ac,char *av[]) { delete sys; if (errcode) - env.abort(errcode); + mpienv->abort(errcode); return errcode; } diff --git a/examples/sim_epsp_binmon.cpp b/examples/sim_epsp_binmon.cpp index 2f3881a8..d0a4d23f 100644 --- a/examples/sim_epsp_binmon.cpp +++ b/examples/sim_epsp_binmon.cpp @@ -42,23 +42,7 @@ int main(int ac, char* av[]) AurynWeight w = 1.0; // BEGIN Global definitions - mpi::environment env(ac, av); - mpi::communicator world; - mpicommunicator = &world; - - try - { - sprintf(strbuf, "out_epsp.%d.log", world.rank()); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - } - catch ( AurynOpenFileException excpt ) - { - std::cerr << "Cannot proceed without log file. Exiting all ranks ..." << '\n'; - env.abort(1); - } - - sys = new System(&world); + auryn_init( ac, av ); sys->set_simulation_name(simname); // END Global definitions @@ -84,6 +68,6 @@ int main(int ac, char* av[]) delete sys; if (errcode) - env.abort(errcode); + mpienv->abort(errcode); return errcode; } diff --git a/examples/sim_epsp_stp.cpp b/examples/sim_epsp_stp.cpp index 3a3e2fe6..1d212763 100644 --- a/examples/sim_epsp_stp.cpp +++ b/examples/sim_epsp_stp.cpp @@ -46,15 +46,8 @@ int main(int ac, char* av[]) AurynWeight w = 1.0; // BEGIN Global definitions - mpi::environment env(ac, av); - mpi::communicator world; - mpicommunicator = &world; - - sprintf(strbuf, "out_epsp_stp.%d.log", world.rank()); - string logfile = strbuf; - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - - sys = new System(&world); + auryn_init( ac, av ); + sys->set_simulation_name(outputfile); // END Global definitions // Sets up a single presynaptic Poisson neuron which fires at 1Hz @@ -122,6 +115,6 @@ int main(int ac, char* av[]) delete sys; if (errcode) - env.abort(errcode); + mpienv->abort(errcode); return errcode; } diff --git a/examples/sim_isp_big.cpp b/examples/sim_isp_big.cpp index 0353514f..f5503bbe 100644 --- a/examples/sim_isp_big.cpp +++ b/examples/sim_isp_big.cpp @@ -194,20 +194,10 @@ int main(int ac, char* av[]) std::cerr << "Exception of unknown type!\n"; } - // BEGIN Global stuff - mpi::environment env(ac, av); - mpi::communicator world; - mpicommunicator = &world; - - std::stringstream oss; - oss << dir << "/" << simname << "." << world.rank(); - outputfile = oss.str(); - oss << ".log"; - string logfile = oss.str(); - logger = new Logger(logfile,world.rank(),PROGRESS,EVERYTHING); - sys = new System(&world); - // END Global stuff - + // BEGIN Global definitions + auryn_init( ac, av ); + sys->set_simulation_name(simname); + // END Global definitions logger->msg("Setting up neuron groups ...",PROGRESS,true); @@ -357,6 +347,6 @@ int main(int ac, char* av[]) delete sys; if (errcode) - env.abort(errcode); + mpienv->abort(errcode); return errcode; } diff --git a/examples/sim_isp_orig.cpp b/examples/sim_isp_orig.cpp index ca9f4613..9e13321d 100644 --- a/examples/sim_isp_orig.cpp +++ b/examples/sim_isp_orig.cpp @@ -195,22 +195,12 @@ int main(int ac, char* av[]) } // BEGIN Global definitions - mpi::environment env(ac, av); - mpi::communicator world; - mpicommunicator = &world; - - netstatfile = outputfile; - std::stringstream oss; - oss << outputfile << "." << world.rank(); - string basename = oss.str(); - oss << ".log"; - string logfile = oss.str(); - logger = new Logger(logfile,world.rank()); - - sys = new System(&world); + auryn_init( ac, av ); // END Global definitions - - + std::stringstream oss; + oss << outputfile << "." << sys->mpi_rank(); + string basename = oss.str(); + logger->msg("Setting up neuron groups ...",PROGRESS,true); TIFGroup * neurons_e = new TIFGroup(NE); diff --git a/examples/tests.sh b/examples/tests.sh new file mode 100755 index 00000000..a0307f56 --- /dev/null +++ b/examples/tests.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +./sim_isp_orig --out /tmp/out --simtime 10 +./sim_background --dir /tmp/ --tau 10 --simtime 10 From 33a573df871ebed3474846ac03f4ab38002147ab Mon Sep 17 00:00:00 2001 From: Friedemann Zenke Date: Wed, 10 Aug 2016 16:25:19 -0700 Subject: [PATCH 460/460] Updates gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 54411e8c..b638f5f6 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,9 @@ *.l[oa] */.libs +*.pyc + + # Ignore docs docs/*